From 4ec54e5725c298e27a9424374da63140d0e1c4c3 Mon Sep 17 00:00:00 2001 From: blindfs Date: Sat, 28 Dec 2024 20:59:10 +0800 Subject: [PATCH] fix: comma in `_match_pattern_record` and `_match_pattern_list` --- grammar.js | 19 +- src/grammar.json | 112 +- src/node-types.json | 10 +- src/parser.c | 506315 +++++++++++++++++------------------ test/corpus/ctrl/match.nu | 11 + 5 files changed, 252740 insertions(+), 253727 deletions(-) diff --git a/grammar.js b/grammar.js index 5b9c10b..835b036 100644 --- a/grammar.js +++ b/grammar.js @@ -38,8 +38,8 @@ module.exports = grammar({ [$._block_body, $.val_closure], [$._expression_parenthesized, $._expr_binary_expression_parenthesized], [$._match_pattern_list, $.val_list], + [$._match_pattern_record, $._value], [$._match_pattern_record, $.val_record], - [$._match_pattern_record_variable, $._value], [$._match_pattern_value, $._value], [$._parenthesized_body], [$.block, $.val_closure], @@ -482,15 +482,15 @@ module.exports = grammar({ seq( BRACK().open_brack, repeat( - field( - "item", - seq( + seq( + field( + "entry", choice( $._match_pattern_expression, alias($._unquoted_in_list, $.val_string), ), - optional(PUNC().comma), ), + optional(PUNC().comma), ), ), optional( @@ -515,18 +515,15 @@ module.exports = grammar({ seq( BRACK().open_brace, repeat( - field( - "entry", - choice($.record_entry, $._match_pattern_record_variable), + seq( + field("entry", choice($.record_entry, $.val_variable)), + optional(PUNC().comma), ), ), BRACK().close_brace, optional($.cell_path), ), - _match_pattern_record_variable: ($) => - seq($.val_variable, optional(PUNC().comma)), - ctrl_try: _ctrl_try_rule(false), ctrl_try_parenthesized: _ctrl_try_rule(true), diff --git a/src/grammar.json b/src/grammar.json index 1fdcff4..e89dc8c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -4218,12 +4218,12 @@ { "type": "REPEAT", "content": { - "type": "FIELD", - "name": "item", - "content": { - "type": "SEQ", - "members": [ - { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { "type": "CHOICE", "members": [ { @@ -4240,21 +4240,21 @@ "value": "val_string" } ] - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] } }, { @@ -4328,21 +4328,38 @@ { "type": "REPEAT", "content": { - "type": "FIELD", - "name": "entry", - "content": { - "type": "CHOICE", - "members": [ - { - "type": "SYMBOL", - "name": "record_entry" - }, - { - "type": "SYMBOL", - "name": "_match_pattern_record_variable" + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "entry", + "content": { + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "record_entry" + }, + { + "type": "SYMBOL", + "name": "val_variable" + } + ] } - ] - } + }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + } + ] } }, { @@ -4363,27 +4380,6 @@ } ] }, - "_match_pattern_record_variable": { - "type": "SEQ", - "members": [ - { - "type": "SYMBOL", - "name": "val_variable" - }, - { - "type": "CHOICE", - "members": [ - { - "type": "STRING", - "value": "," - }, - { - "type": "BLANK" - } - ] - } - ] - }, "ctrl_try": { "type": "SEQ", "members": [ @@ -20255,11 +20251,11 @@ ], [ "_match_pattern_record", - "val_record" + "_value" ], [ - "_match_pattern_record_variable", - "_value" + "_match_pattern_record", + "val_record" ], [ "_match_pattern_value", diff --git a/src/node-types.json b/src/node-types.json index e76208c..b6f6cf5 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -4608,14 +4608,10 @@ "type": "val_list", "named": true, "fields": { - "item": { + "entry": { "multiple": true, "required": false, "types": [ - { - "type": ",", - "named": false - }, { "type": "expr_parenthesized", "named": true @@ -4782,10 +4778,6 @@ "multiple": true, "required": false, "types": [ - { - "type": ",", - "named": false - }, { "type": "record_entry", "named": true diff --git a/src/parser.c b/src/parser.c index 27f5f6a..74fae97 100644 --- a/src/parser.c +++ b/src/parser.c @@ -13,15 +13,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 7776 -#define LARGE_STATE_COUNT 1705 -#define SYMBOL_COUNT 517 +#define STATE_COUNT 7757 +#define LARGE_STATE_COUNT 1692 +#define SYMBOL_COUNT 516 #define ALIAS_COUNT 4 #define TOKEN_COUNT 309 #define EXTERNAL_TOKEN_COUNT 3 #define FIELD_COUNT 72 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 286 +#define PRODUCTION_ID_COUNT 283 enum ts_symbol_identifiers { sym_identifier = 1, @@ -409,141 +409,140 @@ enum ts_symbol_identifiers { sym__match_pattern_list = 383, sym__match_pattern_rest = 384, sym__match_pattern_record = 385, - sym__match_pattern_record_variable = 386, - sym_ctrl_try = 387, - sym_ctrl_try_parenthesized = 388, - sym_ctrl_return = 389, - sym_pipe_element = 390, - sym_pipe_element_parenthesized = 391, - sym_stmt_source = 392, - sym_stmt_register = 393, - sym__stmt_hide = 394, - sym_hide_mod = 395, - sym_hide_env = 396, - sym__stmt_overlay = 397, - sym_overlay_list = 398, - sym_overlay_hide = 399, - sym_overlay_new = 400, - sym_overlay_use = 401, - sym_scope_pattern = 402, - sym_wild_card = 403, - sym_command_list = 404, - sym_block = 405, - sym__blosure = 406, - sym__where_predicate_lhs = 407, - sym_where_command = 408, - sym_where_command_parenthesized = 409, - sym__binary_predicate = 410, - sym__binary_predicate_parenthesized = 411, - sym__predicate = 412, - sym__expression = 413, - sym__expression_parenthesized = 414, - sym_expr_unary = 415, - sym__expr_unary_minus = 416, - sym_expr_binary = 417, - sym_expr_binary_parenthesized = 418, - sym__expr_binary_expression = 419, - sym__expr_binary_expression_parenthesized = 420, - sym_expr_parenthesized = 421, - sym__spread_parenthesized = 422, - sym__expr_parenthesized_immediate = 423, - sym__parenthesized_body = 424, - sym_val_range = 425, - sym__val_range = 426, - sym__val_range_with_end = 427, - sym__immediate_decimal = 428, - sym__value = 429, - sym_val_nothing = 430, - sym_val_bool = 431, - sym__spread_variable = 432, - sym_val_variable = 433, - sym_val_number = 434, - sym__val_number_decimal = 435, - sym__val_number = 436, - sym_val_duration = 437, - sym_val_filesize = 438, - sym_val_binary = 439, - sym_val_string = 440, - sym__raw_str = 441, - sym__str_double_quotes = 442, - sym_val_interpolated = 443, - sym__inter_single_quotes = 444, - sym__inter_double_quotes = 445, - sym_expr_interpolated = 446, - sym_val_list = 447, - sym__spread_list = 448, - sym_list_body = 449, - sym_val_entry = 450, - sym_val_record = 451, - sym__spread_record = 452, - sym_record_body = 453, - sym_record_entry = 454, - sym__record_key = 455, - sym_val_table = 456, - sym_val_closure = 457, - sym_cell_path = 458, - sym_path = 459, - sym_env_var = 460, - sym_command = 461, - sym__command_parenthesized = 462, - sym__cmd_arg = 463, - sym_redirection = 464, - sym__flag = 465, - sym__flags_parenthesized = 466, - sym_short_flag = 467, - sym_long_flag = 468, - sym_unquoted = 469, - sym__unquoted_in_list = 470, - sym__unquoted_in_record = 471, - sym__unquoted_with_expr = 472, - sym__unquoted_in_list_with_expr = 473, - sym__unquoted_in_record_with_expr = 474, - sym__unquoted_anonymous_prefix = 475, - sym_comment = 476, - aux_sym_shebang_repeat1 = 477, - aux_sym_pipeline_repeat1 = 478, - aux_sym_pipeline_parenthesized_repeat1 = 479, - aux_sym__block_body_repeat1 = 480, - aux_sym__block_body_repeat2 = 481, - aux_sym_decl_def_repeat1 = 482, - aux_sym__multiple_types_repeat1 = 483, - aux_sym__multiple_types_repeat2 = 484, - aux_sym_parameter_parens_repeat1 = 485, - aux_sym_parameter_repeat1 = 486, - aux_sym_parameter_repeat2 = 487, - aux_sym_collection_type_repeat1 = 488, - aux_sym_ctrl_do_repeat1 = 489, - aux_sym_ctrl_do_repeat2 = 490, - aux_sym_ctrl_do_parenthesized_repeat1 = 491, - aux_sym_ctrl_do_parenthesized_repeat2 = 492, - aux_sym_ctrl_do_parenthesized_repeat3 = 493, - aux_sym_ctrl_match_repeat1 = 494, - aux_sym_match_pattern_repeat1 = 495, - aux_sym__match_pattern_list_repeat1 = 496, - aux_sym__match_pattern_record_repeat1 = 497, - aux_sym_pipe_element_repeat1 = 498, - aux_sym_pipe_element_repeat2 = 499, - aux_sym_pipe_element_parenthesized_repeat1 = 500, - aux_sym_command_list_repeat1 = 501, - aux_sym__parenthesized_body_repeat1 = 502, - aux_sym__parenthesized_body_repeat2 = 503, - aux_sym_val_binary_repeat1 = 504, - aux_sym__str_double_quotes_repeat1 = 505, - aux_sym__inter_single_quotes_repeat1 = 506, - aux_sym__inter_double_quotes_repeat1 = 507, - aux_sym_list_body_repeat1 = 508, - aux_sym_record_body_repeat1 = 509, - aux_sym_val_table_repeat1 = 510, - aux_sym_cell_path_repeat1 = 511, - aux_sym_command_repeat1 = 512, - aux_sym__command_parenthesized_repeat1 = 513, - aux_sym__unquoted_with_expr_repeat1 = 514, - aux_sym__unquoted_in_list_with_expr_repeat1 = 515, - aux_sym__unquoted_in_record_with_expr_repeat1 = 516, - anon_alias_sym__head = 517, - anon_alias_sym__prefix = 518, - anon_alias_sym__unit = 519, - anon_alias_sym_quoted = 520, + sym_ctrl_try = 386, + sym_ctrl_try_parenthesized = 387, + sym_ctrl_return = 388, + sym_pipe_element = 389, + sym_pipe_element_parenthesized = 390, + sym_stmt_source = 391, + sym_stmt_register = 392, + sym__stmt_hide = 393, + sym_hide_mod = 394, + sym_hide_env = 395, + sym__stmt_overlay = 396, + sym_overlay_list = 397, + sym_overlay_hide = 398, + sym_overlay_new = 399, + sym_overlay_use = 400, + sym_scope_pattern = 401, + sym_wild_card = 402, + sym_command_list = 403, + sym_block = 404, + sym__blosure = 405, + sym__where_predicate_lhs = 406, + sym_where_command = 407, + sym_where_command_parenthesized = 408, + sym__binary_predicate = 409, + sym__binary_predicate_parenthesized = 410, + sym__predicate = 411, + sym__expression = 412, + sym__expression_parenthesized = 413, + sym_expr_unary = 414, + sym__expr_unary_minus = 415, + sym_expr_binary = 416, + sym_expr_binary_parenthesized = 417, + sym__expr_binary_expression = 418, + sym__expr_binary_expression_parenthesized = 419, + sym_expr_parenthesized = 420, + sym__spread_parenthesized = 421, + sym__expr_parenthesized_immediate = 422, + sym__parenthesized_body = 423, + sym_val_range = 424, + sym__val_range = 425, + sym__val_range_with_end = 426, + sym__immediate_decimal = 427, + sym__value = 428, + sym_val_nothing = 429, + sym_val_bool = 430, + sym__spread_variable = 431, + sym_val_variable = 432, + sym_val_number = 433, + sym__val_number_decimal = 434, + sym__val_number = 435, + sym_val_duration = 436, + sym_val_filesize = 437, + sym_val_binary = 438, + sym_val_string = 439, + sym__raw_str = 440, + sym__str_double_quotes = 441, + sym_val_interpolated = 442, + sym__inter_single_quotes = 443, + sym__inter_double_quotes = 444, + sym_expr_interpolated = 445, + sym_val_list = 446, + sym__spread_list = 447, + sym_list_body = 448, + sym_val_entry = 449, + sym_val_record = 450, + sym__spread_record = 451, + sym_record_body = 452, + sym_record_entry = 453, + sym__record_key = 454, + sym_val_table = 455, + sym_val_closure = 456, + sym_cell_path = 457, + sym_path = 458, + sym_env_var = 459, + sym_command = 460, + sym__command_parenthesized = 461, + sym__cmd_arg = 462, + sym_redirection = 463, + sym__flag = 464, + sym__flags_parenthesized = 465, + sym_short_flag = 466, + sym_long_flag = 467, + sym_unquoted = 468, + sym__unquoted_in_list = 469, + sym__unquoted_in_record = 470, + sym__unquoted_with_expr = 471, + sym__unquoted_in_list_with_expr = 472, + sym__unquoted_in_record_with_expr = 473, + sym__unquoted_anonymous_prefix = 474, + sym_comment = 475, + aux_sym_shebang_repeat1 = 476, + aux_sym_pipeline_repeat1 = 477, + aux_sym_pipeline_parenthesized_repeat1 = 478, + aux_sym__block_body_repeat1 = 479, + aux_sym__block_body_repeat2 = 480, + aux_sym_decl_def_repeat1 = 481, + aux_sym__multiple_types_repeat1 = 482, + aux_sym__multiple_types_repeat2 = 483, + aux_sym_parameter_parens_repeat1 = 484, + aux_sym_parameter_repeat1 = 485, + aux_sym_parameter_repeat2 = 486, + aux_sym_collection_type_repeat1 = 487, + aux_sym_ctrl_do_repeat1 = 488, + aux_sym_ctrl_do_repeat2 = 489, + aux_sym_ctrl_do_parenthesized_repeat1 = 490, + aux_sym_ctrl_do_parenthesized_repeat2 = 491, + aux_sym_ctrl_do_parenthesized_repeat3 = 492, + aux_sym_ctrl_match_repeat1 = 493, + aux_sym_match_pattern_repeat1 = 494, + aux_sym__match_pattern_list_repeat1 = 495, + aux_sym__match_pattern_record_repeat1 = 496, + aux_sym_pipe_element_repeat1 = 497, + aux_sym_pipe_element_repeat2 = 498, + aux_sym_pipe_element_parenthesized_repeat1 = 499, + aux_sym_command_list_repeat1 = 500, + aux_sym__parenthesized_body_repeat1 = 501, + aux_sym__parenthesized_body_repeat2 = 502, + aux_sym_val_binary_repeat1 = 503, + aux_sym__str_double_quotes_repeat1 = 504, + aux_sym__inter_single_quotes_repeat1 = 505, + aux_sym__inter_double_quotes_repeat1 = 506, + aux_sym_list_body_repeat1 = 507, + aux_sym_record_body_repeat1 = 508, + aux_sym_val_table_repeat1 = 509, + aux_sym_cell_path_repeat1 = 510, + aux_sym_command_repeat1 = 511, + aux_sym__command_parenthesized_repeat1 = 512, + aux_sym__unquoted_with_expr_repeat1 = 513, + aux_sym__unquoted_in_list_with_expr_repeat1 = 514, + aux_sym__unquoted_in_record_with_expr_repeat1 = 515, + anon_alias_sym__head = 516, + anon_alias_sym__prefix = 517, + anon_alias_sym__unit = 518, + anon_alias_sym_quoted = 519, }; static const char * const ts_symbol_names[] = { @@ -933,7 +932,6 @@ static const char * const ts_symbol_names[] = { [sym__match_pattern_list] = "val_list", [sym__match_pattern_rest] = "val_variable", [sym__match_pattern_record] = "val_record", - [sym__match_pattern_record_variable] = "_match_pattern_record_variable", [sym_ctrl_try] = "ctrl_try", [sym_ctrl_try_parenthesized] = "ctrl_try", [sym_ctrl_return] = "ctrl_return", @@ -1457,7 +1455,6 @@ static const TSSymbol ts_symbol_map[] = { [sym__match_pattern_list] = sym_val_list, [sym__match_pattern_rest] = sym_val_variable, [sym__match_pattern_record] = sym_val_record, - [sym__match_pattern_record_variable] = sym__match_pattern_record_variable, [sym_ctrl_try] = sym_ctrl_try, [sym_ctrl_try_parenthesized] = sym_ctrl_try, [sym_ctrl_return] = sym_ctrl_return, @@ -3139,10 +3136,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym__match_pattern_record_variable] = { - .visible = false, - .named = true, - }, [sym_ctrl_try] = { .visible = true, .named = true, @@ -4022,97 +4015,94 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [192] = {.index = 382, .length = 3}, [193] = {.index = 382, .length = 3}, [194] = {.index = 385, .length = 1}, - [195] = {.index = 386, .length = 2}, - [196] = {.index = 388, .length = 1}, + [195] = {.index = 386, .length = 1}, + [196] = {.index = 387, .length = 2}, [197] = {.index = 389, .length = 2}, [198] = {.index = 391, .length = 1}, - [199] = {.index = 392, .length = 2}, - [200] = {.index = 394, .length = 2}, - [201] = {.index = 396, .length = 1}, - [202] = {.index = 397, .length = 4}, - [203] = {.index = 401, .length = 4}, - [204] = {.index = 405, .length = 6}, - [205] = {.index = 411, .length = 1}, - [206] = {.index = 412, .length = 1}, - [207] = {.index = 411, .length = 1}, - [208] = {.index = 412, .length = 1}, - [209] = {.index = 413, .length = 6}, + [199] = {.index = 392, .length = 4}, + [200] = {.index = 396, .length = 4}, + [201] = {.index = 400, .length = 6}, + [202] = {.index = 406, .length = 1}, + [203] = {.index = 407, .length = 1}, + [204] = {.index = 406, .length = 1}, + [205] = {.index = 407, .length = 1}, + [206] = {.index = 408, .length = 6}, + [207] = {.index = 414, .length = 2}, + [208] = {.index = 416, .length = 1}, + [209] = {.index = 417, .length = 2}, [210] = {.index = 419, .length = 2}, - [211] = {.index = 421, .length = 1}, - [212] = {.index = 422, .length = 2}, - [213] = {.index = 424, .length = 2}, - [214] = {.index = 426, .length = 6}, - [215] = {.index = 432, .length = 3}, - [216] = {.index = 435, .length = 2}, - [217] = {.index = 437, .length = 3}, - [218] = {.index = 440, .length = 3}, - [219] = {.index = 443, .length = 3}, - [220] = {.index = 446, .length = 3}, - [221] = {.index = 449, .length = 3}, - [222] = {.index = 452, .length = 3}, - [223] = {.index = 455, .length = 3}, - [224] = {.index = 458, .length = 2}, - [225] = {.index = 460, .length = 2}, - [226] = {.index = 462, .length = 9}, - [227] = {.index = 471, .length = 2}, + [211] = {.index = 421, .length = 6}, + [212] = {.index = 427, .length = 3}, + [213] = {.index = 430, .length = 2}, + [214] = {.index = 432, .length = 3}, + [215] = {.index = 435, .length = 3}, + [216] = {.index = 438, .length = 3}, + [217] = {.index = 441, .length = 3}, + [218] = {.index = 444, .length = 3}, + [219] = {.index = 447, .length = 3}, + [220] = {.index = 450, .length = 3}, + [221] = {.index = 453, .length = 2}, + [222] = {.index = 455, .length = 2}, + [223] = {.index = 457, .length = 9}, + [224] = {.index = 466, .length = 2}, + [225] = {.index = 468, .length = 1}, + [226] = {.index = 469, .length = 4}, + [227] = {.index = 473, .length = 1}, [228] = {.index = 473, .length = 1}, [229] = {.index = 474, .length = 4}, - [230] = {.index = 478, .length = 1}, - [231] = {.index = 478, .length = 1}, - [232] = {.index = 479, .length = 4}, - [233] = {.index = 479, .length = 4}, - [234] = {.index = 483, .length = 3}, - [235] = {.index = 486, .length = 2}, - [236] = {.index = 488, .length = 3}, - [237] = {.index = 491, .length = 3}, - [238] = {.index = 494, .length = 3}, - [239] = {.index = 497, .length = 3}, - [240] = {.index = 500, .length = 3}, - [241] = {.index = 503, .length = 3}, - [242] = {.index = 506, .length = 3}, - [243] = {.index = 509, .length = 3}, - [244] = {.index = 512, .length = 3}, - [245] = {.index = 515, .length = 2}, - [246] = {.index = 517, .length = 2}, - [247] = {.index = 519, .length = 2}, - [248] = {.index = 521, .length = 2}, - [249] = {.index = 519, .length = 2}, - [250] = {.index = 521, .length = 2}, - [251] = {.index = 523, .length = 4}, - [252] = {.index = 523, .length = 4}, - [253] = {.index = 527, .length = 3}, - [254] = {.index = 530, .length = 3}, - [255] = {.index = 533, .length = 3}, - [256] = {.index = 536, .length = 3}, - [257] = {.index = 539, .length = 3}, - [258] = {.index = 542, .length = 3}, - [259] = {.index = 545, .length = 3}, - [260] = {.index = 548, .length = 3}, - [261] = {.index = 551, .length = 2}, - [262] = {.index = 553, .length = 3}, - [263] = {.index = 556, .length = 3}, - [264] = {.index = 553, .length = 3}, - [265] = {.index = 556, .length = 3}, - [266] = {.index = 559, .length = 2}, - [267] = {.index = 559, .length = 2}, - [268] = {.index = 561, .length = 5}, - [269] = {.index = 561, .length = 5}, - [270] = {.index = 566, .length = 3}, - [271] = {.index = 569, .length = 3}, - [272] = {.index = 572, .length = 3}, - [273] = {.index = 575, .length = 3}, - [274] = {.index = 578, .length = 3}, - [275] = {.index = 581, .length = 3}, - [276] = {.index = 584, .length = 3}, - [277] = {.index = 584, .length = 3}, - [278] = {.index = 587, .length = 5}, - [279] = {.index = 587, .length = 5}, - [280] = {.index = 592, .length = 6}, - [281] = {.index = 592, .length = 6}, - [282] = {.index = 598, .length = 3}, - [283] = {.index = 601, .length = 3}, - [284] = {.index = 604, .length = 6}, - [285] = {.index = 604, .length = 6}, + [230] = {.index = 474, .length = 4}, + [231] = {.index = 478, .length = 3}, + [232] = {.index = 481, .length = 2}, + [233] = {.index = 483, .length = 3}, + [234] = {.index = 486, .length = 3}, + [235] = {.index = 489, .length = 3}, + [236] = {.index = 492, .length = 3}, + [237] = {.index = 495, .length = 3}, + [238] = {.index = 498, .length = 3}, + [239] = {.index = 501, .length = 3}, + [240] = {.index = 504, .length = 3}, + [241] = {.index = 507, .length = 3}, + [242] = {.index = 510, .length = 2}, + [243] = {.index = 512, .length = 2}, + [244] = {.index = 514, .length = 2}, + [245] = {.index = 516, .length = 2}, + [246] = {.index = 514, .length = 2}, + [247] = {.index = 516, .length = 2}, + [248] = {.index = 518, .length = 4}, + [249] = {.index = 518, .length = 4}, + [250] = {.index = 522, .length = 3}, + [251] = {.index = 525, .length = 3}, + [252] = {.index = 528, .length = 3}, + [253] = {.index = 531, .length = 3}, + [254] = {.index = 534, .length = 3}, + [255] = {.index = 537, .length = 3}, + [256] = {.index = 540, .length = 3}, + [257] = {.index = 543, .length = 3}, + [258] = {.index = 546, .length = 2}, + [259] = {.index = 548, .length = 3}, + [260] = {.index = 551, .length = 3}, + [261] = {.index = 548, .length = 3}, + [262] = {.index = 551, .length = 3}, + [263] = {.index = 554, .length = 2}, + [264] = {.index = 554, .length = 2}, + [265] = {.index = 556, .length = 5}, + [266] = {.index = 556, .length = 5}, + [267] = {.index = 561, .length = 3}, + [268] = {.index = 564, .length = 3}, + [269] = {.index = 567, .length = 3}, + [270] = {.index = 570, .length = 3}, + [271] = {.index = 573, .length = 3}, + [272] = {.index = 576, .length = 3}, + [273] = {.index = 579, .length = 3}, + [274] = {.index = 579, .length = 3}, + [275] = {.index = 582, .length = 5}, + [276] = {.index = 582, .length = 5}, + [277] = {.index = 587, .length = 6}, + [278] = {.index = 587, .length = 6}, + [279] = {.index = 593, .length = 3}, + [280] = {.index = 596, .length = 3}, + [281] = {.index = 599, .length = 6}, + [282] = {.index = 599, .length = 6}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -4419,7 +4409,7 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [206] = {field_scrutinee, 1}, [207] = - {field_item, 0, .inherited = true}, + {field_entry, 0, .inherited = true}, {field_rest, 0, .inherited = true}, [209] = {field_entry, 0, .inherited = true}, @@ -4661,111 +4651,103 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [385] = {field_rest, 1}, [386] = - {field_item, 0}, - {field_item, 1}, - [388] = - {field_item, 1, .inherited = true}, - [389] = - {field_item, 0, .inherited = true}, - {field_item, 1, .inherited = true}, - [391] = {field_entry, 1, .inherited = true}, - [392] = + [387] = {field_default_pattern, 0}, {field_expression, 2}, - [394] = + [389] = {field_expression, 2}, {field_pattern, 0}, - [396] = + [391] = {field_param_value, 2}, - [397] = + [392] = {field_overlay, 2}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [401] = + [396] = {field_overlay, 3}, {field_quoted_name, 5, .inherited = true}, {field_rename, 5}, {field_unquoted_name, 5, .inherited = true}, - [405] = + [400] = {field_body, 6}, {field_name, 3}, {field_parameters, 4}, {field_quoted_name, 3, .inherited = true}, {field_return_type, 5}, {field_unquoted_name, 3, .inherited = true}, - [411] = + [406] = {field_key, 2}, - [412] = + [407] = {field_key, 0}, - [413] = + [408] = {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}, - [419] = + [414] = {field_inner, 2}, {field_type, 2, .inherited = true}, - [421] = + [416] = {field_completion, 2}, - [422] = + [417] = {field_completion, 4}, {field_type, 3, .inherited = true}, - [424] = + [419] = {field_type, 1, .inherited = true}, {field_type, 2, .inherited = true}, - [426] = + [421] = {field_cmd, 2, .inherited = true}, {field_cmd, 3}, {field_quoted_name, 2, .inherited = true}, {field_quoted_name, 3, .inherited = true}, {field_unquoted_name, 2, .inherited = true}, {field_unquoted_name, 3, .inherited = true}, - [432] = + [427] = {field_head, 1}, {field_row, 4, .inherited = true}, {field_row, 5}, - [435] = + [430] = {field_head, 2}, {field_row, 5}, - [437] = + [432] = {field_head, 2}, {field_row, 4, .inherited = true}, {field_row, 5}, - [440] = + [435] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 2}, - [443] = + [438] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 2}, - [446] = + [441] = {field_condition, 1}, {field_else_branch, 5}, {field_then_branch, 3}, - [449] = + [444] = {field_condition, 1}, {field_else_block, 5}, {field_then_branch, 3}, - [452] = + [447] = {field_condition, 2}, {field_else_branch, 5}, {field_then_branch, 3}, - [455] = + [450] = {field_condition, 2}, {field_else_block, 5}, {field_then_branch, 3}, - [458] = + [453] = {field_catch_branch, 5}, {field_try_branch, 1}, - [460] = + [455] = {field_catch_branch, 5}, {field_try_branch, 2}, - [462] = + [457] = {field_lhs, 0}, {field_lhs, 0, .inherited = true}, {field_lhs, 4, .inherited = true}, @@ -4775,185 +4757,185 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_rhs, 0, .inherited = true}, {field_rhs, 4}, {field_rhs, 4, .inherited = true}, - [471] = - {field_item, 1, .inherited = true}, + [466] = + {field_entry, 1, .inherited = true}, {field_rest, 2}, - [473] = + [468] = {field_param_value, 3}, - [474] = + [469] = {field_overlay, 3}, {field_quoted_name, 6, .inherited = true}, {field_rename, 6}, {field_unquoted_name, 6, .inherited = true}, - [478] = + [473] = {field_key, 3}, - [479] = + [474] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, - [483] = + [478] = {field_completion, 3}, {field_inner, 2}, {field_type, 2, .inherited = true}, - [486] = + [481] = {field_type, 2, .inherited = true}, {field_type, 3, .inherited = true}, - [488] = + [483] = {field_head, 2}, {field_row, 5, .inherited = true}, {field_row, 6}, - [491] = + [486] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 2}, - [494] = + [489] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 2}, - [497] = + [492] = {field_condition, 1}, {field_else_branch, 6}, {field_then_branch, 3}, - [500] = + [495] = {field_condition, 1}, {field_else_block, 6}, {field_then_branch, 3}, - [503] = + [498] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 3}, - [506] = + [501] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 3}, - [509] = + [504] = {field_condition, 2}, {field_else_branch, 6}, {field_then_branch, 4}, - [512] = + [507] = {field_condition, 2}, {field_else_block, 6}, {field_then_branch, 4}, - [515] = + [510] = {field_catch_branch, 6}, {field_try_branch, 1}, - [517] = + [512] = {field_catch_branch, 6}, {field_try_branch, 2}, - [519] = + [514] = {field_key, 2}, {field_type, 4, .inherited = true}, - [521] = + [516] = {field_key, 0}, {field_type, 2, .inherited = true}, - [523] = + [518] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, - [527] = + [522] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 2}, - [530] = + [525] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 2}, - [533] = + [528] = {field_condition, 1}, {field_else_branch, 7}, {field_then_branch, 3}, - [536] = + [531] = {field_condition, 1}, {field_else_block, 7}, {field_then_branch, 3}, - [539] = + [534] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 3}, - [542] = + [537] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 3}, - [545] = + [540] = {field_condition, 2}, {field_else_branch, 7}, {field_then_branch, 4}, - [548] = + [543] = {field_condition, 2}, {field_else_block, 7}, {field_then_branch, 4}, - [551] = + [546] = {field_catch_branch, 7}, {field_try_branch, 2}, - [553] = + [548] = {field_completion, 5}, {field_key, 2}, {field_type, 4, .inherited = true}, - [556] = + [551] = {field_completion, 3}, {field_key, 0}, {field_type, 2, .inherited = true}, - [559] = + [554] = {field_key, 3}, {field_type, 5, .inherited = true}, - [561] = + [556] = {field_completion, 2, .inherited = true}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [566] = + [561] = {field_condition, 1}, {field_else_branch, 8}, {field_then_branch, 3}, - [569] = + [564] = {field_condition, 1}, {field_else_block, 8}, {field_then_branch, 3}, - [572] = + [567] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 3}, - [575] = + [570] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 3}, - [578] = + [573] = {field_condition, 2}, {field_else_branch, 8}, {field_then_branch, 4}, - [581] = + [576] = {field_condition, 2}, {field_else_block, 8}, {field_then_branch, 4}, - [584] = + [579] = {field_completion, 6}, {field_key, 3}, {field_type, 5, .inherited = true}, - [587] = + [582] = {field_completion, 3, .inherited = true}, {field_key, 3, .inherited = true}, {field_key, 4}, {field_type, 3, .inherited = true}, {field_type, 6, .inherited = true}, - [592] = + [587] = {field_completion, 2, .inherited = true}, {field_completion, 6}, {field_key, 2, .inherited = true}, {field_key, 3}, {field_type, 2, .inherited = true}, {field_type, 5, .inherited = true}, - [598] = + [593] = {field_condition, 2}, {field_else_branch, 9}, {field_then_branch, 4}, - [601] = + [596] = {field_condition, 2}, {field_else_block, 9}, {field_then_branch, 4}, - [604] = + [599] = {field_completion, 3, .inherited = true}, {field_completion, 7}, {field_key, 3, .inherited = true}, @@ -5089,49 +5071,49 @@ static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE [193] = { [4] = sym_val_string, }, - [207] = { + [204] = { [2] = sym_identifier, }, - [208] = { + [205] = { [0] = sym_identifier, }, - [231] = { + [228] = { [3] = sym_identifier, }, - [233] = { + [230] = { [3] = sym_identifier, }, - [249] = { + [246] = { [2] = sym_identifier, }, - [250] = { + [247] = { [0] = sym_identifier, }, - [252] = { + [249] = { [4] = sym_identifier, }, - [264] = { + [261] = { [2] = sym_identifier, }, - [265] = { + [262] = { [0] = sym_identifier, }, - [267] = { + [264] = { [3] = sym_identifier, }, - [269] = { + [266] = { [3] = sym_identifier, }, - [277] = { + [274] = { [3] = sym_identifier, }, - [279] = { + [276] = { [4] = sym_identifier, }, - [281] = { + [278] = { [3] = sym_identifier, }, - [285] = { + [282] = { [4] = sym_identifier, }, }; @@ -5171,23 +5153,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 5, - [6] = 3, - [7] = 5, - [8] = 3, - [9] = 5, - [10] = 3, - [11] = 3, - [12] = 3, - [13] = 3, - [14] = 3, - [15] = 3, - [16] = 3, - [17] = 3, - [18] = 3, - [19] = 3, - [20] = 3, + [4] = 4, + [5] = 3, + [6] = 4, + [7] = 3, + [8] = 4, + [9] = 4, + [10] = 4, + [11] = 4, + [12] = 4, + [13] = 4, + [14] = 4, + [15] = 4, + [16] = 4, + [17] = 4, + [18] = 4, + [19] = 4, + [20] = 4, [21] = 21, [22] = 21, [23] = 21, @@ -5206,11 +5188,11 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [36] = 34, [37] = 34, [38] = 38, - [39] = 39, - [40] = 38, - [41] = 38, - [42] = 39, - [43] = 38, + [39] = 38, + [40] = 40, + [41] = 40, + [42] = 40, + [43] = 40, [44] = 44, [45] = 44, [46] = 44, @@ -5226,84 +5208,84 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [56] = 44, [57] = 57, [58] = 58, - [59] = 57, - [60] = 57, - [61] = 57, - [62] = 62, - [63] = 57, - [64] = 62, - [65] = 65, - [66] = 57, - [67] = 67, - [68] = 57, - [69] = 57, - [70] = 57, + [59] = 58, + [60] = 60, + [61] = 58, + [62] = 60, + [63] = 58, + [64] = 57, + [65] = 58, + [66] = 58, + [67] = 58, + [68] = 58, + [69] = 60, + [70] = 58, [71] = 57, - [72] = 57, - [73] = 57, - [74] = 57, - [75] = 57, - [76] = 57, - [77] = 62, - [78] = 57, - [79] = 67, - [80] = 62, - [81] = 65, - [82] = 62, + [72] = 58, + [73] = 58, + [74] = 58, + [75] = 58, + [76] = 58, + [77] = 58, + [78] = 58, + [79] = 58, + [80] = 80, + [81] = 80, + [82] = 60, [83] = 57, - [84] = 57, - [85] = 65, - [86] = 62, - [87] = 65, - [88] = 57, - [89] = 57, - [90] = 65, - [91] = 62, - [92] = 57, + [84] = 58, + [85] = 60, + [86] = 57, + [87] = 60, + [88] = 58, + [89] = 58, + [90] = 58, + [91] = 60, + [92] = 92, [93] = 93, - [94] = 93, - [95] = 95, - [96] = 93, + [94] = 94, + [95] = 93, + [96] = 96, [97] = 97, - [98] = 98, - [99] = 99, - [100] = 98, - [101] = 101, - [102] = 97, - [103] = 99, - [104] = 101, + [98] = 94, + [99] = 93, + [100] = 100, + [101] = 94, + [102] = 93, + [103] = 96, + [104] = 94, [105] = 93, - [106] = 99, - [107] = 93, - [108] = 99, - [109] = 98, - [110] = 93, - [111] = 99, - [112] = 93, - [113] = 99, + [106] = 93, + [107] = 94, + [108] = 108, + [109] = 100, + [110] = 94, + [111] = 93, + [112] = 108, + [113] = 94, [114] = 93, - [115] = 99, - [116] = 93, - [117] = 99, - [118] = 93, - [119] = 99, + [115] = 100, + [116] = 94, + [117] = 93, + [118] = 94, + [119] = 94, [120] = 93, - [121] = 99, - [122] = 93, - [123] = 99, - [124] = 93, - [125] = 99, - [126] = 99, + [121] = 93, + [122] = 94, + [123] = 93, + [124] = 94, + [125] = 94, + [126] = 93, [127] = 127, [128] = 128, [129] = 129, - [130] = 130, - [131] = 129, + [130] = 127, + [131] = 131, [132] = 132, - [133] = 130, + [133] = 133, [134] = 129, - [135] = 135, - [136] = 130, + [135] = 129, + [136] = 127, [137] = 137, [138] = 138, [139] = 139, @@ -5324,52 +5306,52 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [154] = 154, [155] = 155, [156] = 156, - [157] = 151, - [158] = 158, - [159] = 153, - [160] = 154, - [161] = 156, - [162] = 162, - [163] = 163, - [164] = 152, - [165] = 162, + [157] = 157, + [158] = 156, + [159] = 157, + [160] = 160, + [161] = 161, + [162] = 152, + [163] = 152, + [164] = 161, + [165] = 160, [166] = 151, - [167] = 162, - [168] = 163, - [169] = 163, - [170] = 152, - [171] = 152, - [172] = 155, - [173] = 162, - [174] = 174, + [167] = 153, + [168] = 168, + [169] = 161, + [170] = 160, + [171] = 151, + [172] = 153, + [173] = 168, + [174] = 154, [175] = 155, - [176] = 174, - [177] = 163, - [178] = 158, + [176] = 152, + [177] = 161, + [178] = 160, [179] = 151, - [180] = 155, + [180] = 153, [181] = 181, - [182] = 182, + [182] = 181, [183] = 183, [184] = 183, [185] = 183, [186] = 183, [187] = 187, - [188] = 182, + [188] = 188, [189] = 189, [190] = 190, [191] = 191, [192] = 192, - [193] = 193, - [194] = 193, - [195] = 193, - [196] = 192, + [193] = 192, + [194] = 194, + [195] = 192, + [196] = 194, [197] = 197, [198] = 198, [199] = 199, - [200] = 198, - [201] = 197, - [202] = 202, + [200] = 200, + [201] = 199, + [202] = 200, [203] = 203, [204] = 204, [205] = 205, @@ -5381,401 +5363,401 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [211] = 211, [212] = 212, [213] = 213, - [214] = 214, - [215] = 215, + [214] = 207, + [215] = 189, [216] = 216, [217] = 217, [218] = 218, [219] = 219, [220] = 220, [221] = 221, - [222] = 222, + [222] = 208, [223] = 223, [224] = 224, - [225] = 210, + [225] = 225, [226] = 226, [227] = 227, [228] = 228, [229] = 229, [230] = 230, [231] = 231, - [232] = 232, + [232] = 211, [233] = 233, - [234] = 216, - [235] = 217, - [236] = 218, - [237] = 219, - [238] = 220, - [239] = 221, - [240] = 205, - [241] = 222, - [242] = 223, - [243] = 224, - [244] = 190, - [245] = 226, - [246] = 227, - [247] = 211, - [248] = 228, - [249] = 249, - [250] = 229, - [251] = 211, - [252] = 212, - [253] = 213, + [234] = 210, + [235] = 212, + [236] = 213, + [237] = 221, + [238] = 223, + [239] = 227, + [240] = 228, + [241] = 241, + [242] = 242, + [243] = 241, + [244] = 216, + [245] = 217, + [246] = 218, + [247] = 219, + [248] = 224, + [249] = 225, + [250] = 233, + [251] = 242, + [252] = 252, + [253] = 253, [254] = 254, - [255] = 215, - [256] = 216, + [255] = 230, + [256] = 256, [257] = 217, - [258] = 218, - [259] = 219, - [260] = 220, - [261] = 221, - [262] = 222, - [263] = 223, - [264] = 224, - [265] = 210, - [266] = 226, - [267] = 227, - [268] = 228, - [269] = 229, - [270] = 230, - [271] = 231, - [272] = 232, - [273] = 233, - [274] = 230, - [275] = 231, - [276] = 232, - [277] = 233, - [278] = 189, - [279] = 279, - [280] = 212, + [258] = 252, + [259] = 253, + [260] = 218, + [261] = 254, + [262] = 219, + [263] = 224, + [264] = 226, + [265] = 225, + [266] = 233, + [267] = 242, + [268] = 252, + [269] = 253, + [270] = 254, + [271] = 189, + [272] = 190, + [273] = 231, + [274] = 229, + [275] = 230, + [276] = 231, + [277] = 211, + [278] = 278, + [279] = 212, + [280] = 223, [281] = 213, - [282] = 214, - [283] = 204, - [284] = 249, - [285] = 206, - [286] = 249, - [287] = 215, - [288] = 288, - [289] = 208, - [290] = 189, - [291] = 214, - [292] = 191, + [282] = 221, + [283] = 227, + [284] = 228, + [285] = 226, + [286] = 210, + [287] = 206, + [288] = 229, + [289] = 241, + [290] = 209, + [291] = 216, + [292] = 256, [293] = 293, [294] = 294, [295] = 295, [296] = 296, - [297] = 297, - [298] = 279, + [297] = 191, + [298] = 298, [299] = 299, [300] = 300, [301] = 301, - [302] = 302, - [303] = 300, + [302] = 299, + [303] = 303, [304] = 304, [305] = 305, [306] = 306, [307] = 307, - [308] = 301, - [309] = 299, - [310] = 300, + [308] = 308, + [309] = 309, + [310] = 310, [311] = 311, - [312] = 301, - [313] = 301, - [314] = 299, - [315] = 301, - [316] = 299, - [317] = 299, - [318] = 318, - [319] = 319, - [320] = 302, - [321] = 321, - [322] = 322, - [323] = 323, - [324] = 321, - [325] = 325, - [326] = 326, - [327] = 322, - [328] = 319, - [329] = 318, + [312] = 312, + [313] = 309, + [314] = 300, + [315] = 315, + [316] = 310, + [317] = 310, + [318] = 300, + [319] = 300, + [320] = 309, + [321] = 310, + [322] = 300, + [323] = 310, + [324] = 324, + [325] = 301, + [326] = 307, + [327] = 308, + [328] = 328, + [329] = 329, [330] = 330, - [331] = 331, - [332] = 323, + [331] = 304, + [332] = 305, [333] = 333, [334] = 334, [335] = 335, - [336] = 137, - [337] = 337, - [338] = 338, - [339] = 339, + [336] = 336, + [337] = 333, + [338] = 329, + [339] = 335, [340] = 340, [341] = 341, - [342] = 342, - [343] = 331, - [344] = 330, - [345] = 326, - [346] = 333, - [347] = 334, - [348] = 335, - [349] = 325, - [350] = 350, - [351] = 351, - [352] = 340, - [353] = 353, - [354] = 350, - [355] = 341, - [356] = 137, - [357] = 342, - [358] = 337, - [359] = 139, - [360] = 339, + [342] = 137, + [343] = 343, + [344] = 344, + [345] = 324, + [346] = 346, + [347] = 328, + [348] = 348, + [349] = 349, + [350] = 330, + [351] = 334, + [352] = 341, + [353] = 137, + [354] = 138, + [355] = 139, + [356] = 340, + [357] = 336, + [358] = 349, + [359] = 343, + [360] = 344, [361] = 361, - [362] = 138, - [363] = 338, - [364] = 351, - [365] = 361, - [366] = 141, - [367] = 367, + [362] = 346, + [363] = 363, + [364] = 348, + [365] = 348, + [366] = 139, + [367] = 141, [368] = 140, - [369] = 369, + [369] = 138, [370] = 370, [371] = 371, - [372] = 138, - [373] = 142, - [374] = 353, - [375] = 375, - [376] = 143, - [377] = 351, - [378] = 144, - [379] = 379, - [380] = 145, - [381] = 137, - [382] = 339, + [372] = 142, + [373] = 143, + [374] = 144, + [375] = 145, + [376] = 361, + [377] = 377, + [378] = 378, + [379] = 363, + [380] = 380, + [381] = 381, + [382] = 346, [383] = 383, [384] = 384, - [385] = 139, - [386] = 386, - [387] = 351, - [388] = 361, - [389] = 353, - [390] = 339, - [391] = 339, - [392] = 139, - [393] = 138, - [394] = 394, - [395] = 141, - [396] = 140, - [397] = 148, + [385] = 385, + [386] = 148, + [387] = 146, + [388] = 137, + [389] = 389, + [390] = 390, + [391] = 142, + [392] = 143, + [393] = 144, + [394] = 145, + [395] = 395, + [396] = 396, + [397] = 397, [398] = 398, - [399] = 367, - [400] = 147, - [401] = 146, - [402] = 137, + [399] = 399, + [400] = 400, + [401] = 401, + [402] = 402, [403] = 403, - [404] = 404, - [405] = 142, - [406] = 143, - [407] = 144, - [408] = 145, - [409] = 371, - [410] = 410, - [411] = 411, + [404] = 377, + [405] = 137, + [406] = 406, + [407] = 370, + [408] = 408, + [409] = 380, + [410] = 381, + [411] = 346, [412] = 412, [413] = 413, [414] = 414, - [415] = 415, - [416] = 416, + [415] = 141, + [416] = 140, [417] = 417, - [418] = 418, - [419] = 419, - [420] = 420, - [421] = 421, + [418] = 346, + [419] = 361, + [420] = 147, + [421] = 363, [422] = 422, - [423] = 423, - [424] = 375, + [423] = 348, + [424] = 348, [425] = 425, [426] = 426, - [427] = 384, + [427] = 427, [428] = 428, - [429] = 379, - [430] = 370, + [429] = 429, + [430] = 371, [431] = 431, [432] = 432, [433] = 433, - [434] = 434, - [435] = 383, - [436] = 351, - [437] = 437, + [434] = 378, + [435] = 401, + [436] = 139, + [437] = 138, [438] = 438, - [439] = 404, - [440] = 421, - [441] = 422, - [442] = 423, - [443] = 137, - [444] = 148, - [445] = 139, - [446] = 150, - [447] = 375, - [448] = 138, + [439] = 439, + [440] = 440, + [441] = 441, + [442] = 428, + [443] = 433, + [444] = 444, + [445] = 406, + [446] = 408, + [447] = 412, + [448] = 414, [449] = 147, - [450] = 146, - [451] = 426, - [452] = 413, - [453] = 428, - [454] = 437, - [455] = 384, - [456] = 361, - [457] = 379, - [458] = 370, - [459] = 459, - [460] = 142, - [461] = 143, - [462] = 144, - [463] = 145, - [464] = 339, - [465] = 412, - [466] = 141, - [467] = 398, - [468] = 140, - [469] = 414, - [470] = 415, - [471] = 353, - [472] = 431, - [473] = 473, - [474] = 386, - [475] = 475, - [476] = 476, - [477] = 351, - [478] = 478, - [479] = 479, - [480] = 432, - [481] = 433, - [482] = 434, - [483] = 416, - [484] = 417, - [485] = 485, - [486] = 361, - [487] = 418, + [450] = 139, + [451] = 150, + [452] = 346, + [453] = 361, + [454] = 454, + [455] = 363, + [456] = 138, + [457] = 422, + [458] = 148, + [459] = 146, + [460] = 460, + [461] = 461, + [462] = 361, + [463] = 463, + [464] = 377, + [465] = 378, + [466] = 380, + [467] = 381, + [468] = 348, + [469] = 425, + [470] = 384, + [471] = 385, + [472] = 389, + [473] = 390, + [474] = 474, + [475] = 395, + [476] = 396, + [477] = 397, + [478] = 398, + [479] = 426, + [480] = 427, + [481] = 399, + [482] = 400, + [483] = 402, + [484] = 383, + [485] = 403, + [486] = 486, + [487] = 487, [488] = 488, - [489] = 489, - [490] = 490, - [491] = 353, - [492] = 410, - [493] = 493, - [494] = 403, - [495] = 419, - [496] = 438, - [497] = 420, - [498] = 498, - [499] = 411, - [500] = 425, - [501] = 353, - [502] = 339, - [503] = 503, - [504] = 504, - [505] = 475, - [506] = 147, - [507] = 146, + [489] = 431, + [490] = 432, + [491] = 429, + [492] = 417, + [493] = 363, + [494] = 144, + [495] = 143, + [496] = 440, + [497] = 377, + [498] = 145, + [499] = 438, + [500] = 378, + [501] = 501, + [502] = 380, + [503] = 381, + [504] = 141, + [505] = 140, + [506] = 506, + [507] = 507, [508] = 508, [509] = 509, - [510] = 510, - [511] = 379, - [512] = 139, - [513] = 476, - [514] = 141, - [515] = 478, - [516] = 138, - [517] = 479, - [518] = 140, - [519] = 361, - [520] = 520, + [510] = 346, + [511] = 511, + [512] = 512, + [513] = 439, + [514] = 348, + [515] = 515, + [516] = 361, + [517] = 363, + [518] = 377, + [519] = 486, + [520] = 142, [521] = 521, - [522] = 522, - [523] = 523, - [524] = 375, - [525] = 384, + [522] = 487, + [523] = 488, + [524] = 454, + [525] = 142, [526] = 526, - [527] = 527, + [527] = 380, [528] = 528, - [529] = 370, - [530] = 530, + [529] = 381, + [530] = 143, [531] = 531, - [532] = 485, + [532] = 441, [533] = 533, - [534] = 375, - [535] = 488, - [536] = 489, - [537] = 490, - [538] = 493, - [539] = 150, - [540] = 540, - [541] = 351, - [542] = 384, - [543] = 379, - [544] = 142, - [545] = 143, - [546] = 370, - [547] = 498, - [548] = 144, - [549] = 459, - [550] = 145, - [551] = 473, - [552] = 148, - [553] = 553, - [554] = 143, - [555] = 555, - [556] = 556, - [557] = 148, - [558] = 558, - [559] = 559, - [560] = 560, - [561] = 530, - [562] = 504, - [563] = 520, - [564] = 509, - [565] = 508, - [566] = 379, - [567] = 522, - [568] = 370, - [569] = 521, - [570] = 570, - [571] = 523, - [572] = 375, - [573] = 573, - [574] = 147, - [575] = 361, - [576] = 540, - [577] = 146, - [578] = 578, - [579] = 579, - [580] = 533, - [581] = 141, - [582] = 353, - [583] = 510, - [584] = 142, - [585] = 140, - [586] = 553, - [587] = 351, - [588] = 526, - [589] = 527, - [590] = 528, - [591] = 384, - [592] = 150, - [593] = 503, + [534] = 150, + [535] = 141, + [536] = 536, + [537] = 537, + [538] = 538, + [539] = 539, + [540] = 144, + [541] = 145, + [542] = 463, + [543] = 140, + [544] = 444, + [545] = 461, + [546] = 460, + [547] = 378, + [548] = 378, + [549] = 147, + [550] = 515, + [551] = 521, + [552] = 511, + [553] = 501, + [554] = 377, + [555] = 148, + [556] = 147, + [557] = 536, + [558] = 537, + [559] = 538, + [560] = 533, + [561] = 539, + [562] = 346, + [563] = 146, + [564] = 564, + [565] = 565, + [566] = 566, + [567] = 567, + [568] = 380, + [569] = 569, + [570] = 381, + [571] = 348, + [572] = 146, + [573] = 361, + [574] = 526, + [575] = 508, + [576] = 509, + [577] = 506, + [578] = 507, + [579] = 363, + [580] = 528, + [581] = 512, + [582] = 531, + [583] = 148, + [584] = 584, + [585] = 585, + [586] = 586, + [587] = 587, + [588] = 588, + [589] = 589, + [590] = 590, + [591] = 591, + [592] = 592, + [593] = 593, [594] = 594, - [595] = 144, - [596] = 145, + [595] = 595, + [596] = 596, [597] = 597, - [598] = 339, - [599] = 531, + [598] = 598, + [599] = 599, [600] = 600, - [601] = 190, + [601] = 601, [602] = 602, [603] = 603, [604] = 604, [605] = 605, [606] = 606, [607] = 607, - [608] = 608, + [608] = 150, [609] = 609, [610] = 610, [611] = 611, @@ -5784,33 +5766,33 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [614] = 614, [615] = 615, [616] = 616, - [617] = 617, + [617] = 150, [618] = 618, [619] = 619, - [620] = 620, - [621] = 621, - [622] = 622, + [620] = 565, + [621] = 566, + [622] = 567, [623] = 623, - [624] = 594, + [624] = 624, [625] = 625, [626] = 626, [627] = 627, [628] = 628, [629] = 629, [630] = 630, - [631] = 631, - [632] = 632, + [631] = 363, + [632] = 569, [633] = 633, [634] = 634, [635] = 635, [636] = 636, - [637] = 637, + [637] = 142, [638] = 638, - [639] = 639, - [640] = 640, + [639] = 143, + [640] = 144, [641] = 641, [642] = 642, - [643] = 643, + [643] = 145, [644] = 644, [645] = 645, [646] = 646, @@ -5823,248 +5805,248 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [653] = 653, [654] = 654, [655] = 655, - [656] = 148, - [657] = 147, - [658] = 146, - [659] = 473, - [660] = 475, - [661] = 150, - [662] = 662, - [663] = 142, - [664] = 143, - [665] = 144, - [666] = 145, + [656] = 377, + [657] = 657, + [658] = 438, + [659] = 659, + [660] = 660, + [661] = 661, + [662] = 378, + [663] = 439, + [664] = 380, + [665] = 381, + [666] = 666, [667] = 667, [668] = 668, - [669] = 361, - [670] = 353, - [671] = 555, - [672] = 556, - [673] = 673, - [674] = 674, - [675] = 375, - [676] = 384, - [677] = 677, - [678] = 379, - [679] = 370, - [680] = 558, - [681] = 681, - [682] = 682, - [683] = 683, - [684] = 684, - [685] = 685, - [686] = 620, - [687] = 610, - [688] = 634, - [689] = 635, - [690] = 636, - [691] = 611, - [692] = 637, - [693] = 638, - [694] = 639, - [695] = 640, - [696] = 641, - [697] = 642, - [698] = 643, - [699] = 600, - [700] = 685, - [701] = 645, - [702] = 646, - [703] = 647, - [704] = 648, - [705] = 649, - [706] = 650, - [707] = 651, - [708] = 652, - [709] = 653, - [710] = 654, - [711] = 612, - [712] = 613, - [713] = 614, - [714] = 615, - [715] = 616, - [716] = 617, - [717] = 618, - [718] = 619, - [719] = 621, - [720] = 622, - [721] = 623, - [722] = 625, + [669] = 669, + [670] = 361, + [671] = 599, + [672] = 592, + [673] = 666, + [674] = 668, + [675] = 618, + [676] = 619, + [677] = 648, + [678] = 641, + [679] = 650, + [680] = 680, + [681] = 588, + [682] = 590, + [683] = 591, + [684] = 624, + [685] = 627, + [686] = 651, + [687] = 377, + [688] = 630, + [689] = 652, + [690] = 633, + [691] = 636, + [692] = 378, + [693] = 438, + [694] = 380, + [695] = 381, + [696] = 593, + [697] = 439, + [698] = 654, + [699] = 634, + [700] = 594, + [701] = 701, + [702] = 595, + [703] = 616, + [704] = 597, + [705] = 598, + [706] = 600, + [707] = 601, + [708] = 604, + [709] = 605, + [710] = 584, + [711] = 142, + [712] = 659, + [713] = 606, + [714] = 609, + [715] = 143, + [716] = 660, + [717] = 144, + [718] = 610, + [719] = 611, + [720] = 612, + [721] = 145, + [722] = 613, [723] = 723, - [724] = 724, - [725] = 725, - [726] = 626, - [727] = 473, - [728] = 633, - [729] = 602, - [730] = 142, - [731] = 143, - [732] = 144, - [733] = 150, - [734] = 145, - [735] = 667, - [736] = 668, - [737] = 603, - [738] = 604, - [739] = 632, - [740] = 673, - [741] = 674, - [742] = 677, - [743] = 743, - [744] = 681, - [745] = 682, - [746] = 605, - [747] = 606, - [748] = 375, - [749] = 384, - [750] = 379, - [751] = 370, - [752] = 607, - [753] = 608, + [724] = 190, + [725] = 667, + [726] = 669, + [727] = 628, + [728] = 623, + [729] = 645, + [730] = 614, + [731] = 646, + [732] = 647, + [733] = 615, + [734] = 625, + [735] = 626, + [736] = 629, + [737] = 635, + [738] = 638, + [739] = 642, + [740] = 644, + [741] = 649, + [742] = 653, + [743] = 655, + [744] = 585, + [745] = 586, + [746] = 587, + [747] = 596, + [748] = 748, + [749] = 749, + [750] = 191, + [751] = 751, + [752] = 752, + [753] = 190, [754] = 754, - [755] = 627, - [756] = 609, - [757] = 628, - [758] = 629, - [759] = 630, - [760] = 631, - [761] = 683, - [762] = 684, - [763] = 644, - [764] = 191, - [765] = 475, + [755] = 754, + [756] = 756, + [757] = 757, + [758] = 758, + [759] = 759, + [760] = 760, + [761] = 761, + [762] = 191, + [763] = 763, + [764] = 764, + [765] = 765, [766] = 766, - [767] = 766, - [768] = 768, - [769] = 190, + [767] = 767, + [768] = 308, + [769] = 307, [770] = 770, - [771] = 319, + [771] = 771, [772] = 772, - [773] = 773, - [774] = 774, - [775] = 775, - [776] = 776, - [777] = 777, - [778] = 778, - [779] = 779, - [780] = 780, - [781] = 781, - [782] = 782, - [783] = 191, - [784] = 784, - [785] = 318, - [786] = 770, - [787] = 775, - [788] = 773, - [789] = 318, - [790] = 772, - [791] = 318, - [792] = 319, - [793] = 774, - [794] = 318, - [795] = 326, - [796] = 319, - [797] = 331, - [798] = 319, - [799] = 341, - [800] = 318, - [801] = 319, - [802] = 331, - [803] = 331, - [804] = 804, - [805] = 326, - [806] = 326, - [807] = 350, - [808] = 326, - [809] = 342, - [810] = 331, - [811] = 340, - [812] = 342, - [813] = 342, - [814] = 318, - [815] = 804, - [816] = 326, - [817] = 331, - [818] = 350, - [819] = 804, - [820] = 804, + [773] = 764, + [774] = 772, + [775] = 308, + [776] = 307, + [777] = 324, + [778] = 330, + [779] = 307, + [780] = 767, + [781] = 308, + [782] = 761, + [783] = 759, + [784] = 308, + [785] = 307, + [786] = 786, + [787] = 330, + [788] = 343, + [789] = 324, + [790] = 336, + [791] = 341, + [792] = 344, + [793] = 330, + [794] = 324, + [795] = 324, + [796] = 308, + [797] = 307, + [798] = 330, + [799] = 308, + [800] = 343, + [801] = 344, + [802] = 341, + [803] = 336, + [804] = 336, + [805] = 343, + [806] = 344, + [807] = 786, + [808] = 336, + [809] = 330, + [810] = 343, + [811] = 307, + [812] = 341, + [813] = 786, + [814] = 786, + [815] = 344, + [816] = 341, + [817] = 324, + [818] = 343, + [819] = 786, + [820] = 336, [821] = 341, - [822] = 350, - [823] = 341, - [824] = 342, - [825] = 340, - [826] = 319, - [827] = 341, - [828] = 340, - [829] = 340, - [830] = 350, - [831] = 331, - [832] = 340, - [833] = 342, - [834] = 804, - [835] = 350, - [836] = 326, - [837] = 341, - [838] = 838, - [839] = 838, - [840] = 341, - [841] = 342, - [842] = 842, - [843] = 842, - [844] = 842, - [845] = 842, - [846] = 842, - [847] = 842, - [848] = 842, - [849] = 842, - [850] = 842, - [851] = 842, - [852] = 842, - [853] = 842, - [854] = 842, - [855] = 340, - [856] = 842, - [857] = 842, - [858] = 804, + [822] = 330, + [823] = 324, + [824] = 344, + [825] = 825, + [826] = 786, + [827] = 827, + [828] = 827, + [829] = 343, + [830] = 827, + [831] = 336, + [832] = 832, + [833] = 827, + [834] = 825, + [835] = 827, + [836] = 827, + [837] = 827, + [838] = 827, + [839] = 827, + [840] = 832, + [841] = 341, + [842] = 827, + [843] = 827, + [844] = 827, + [845] = 827, + [846] = 827, + [847] = 827, + [848] = 344, + [849] = 832, + [850] = 827, + [851] = 851, + [852] = 852, + [853] = 851, + [854] = 851, + [855] = 852, + [856] = 851, + [857] = 852, + [858] = 852, [859] = 859, - [860] = 838, - [861] = 842, - [862] = 350, + [860] = 860, + [861] = 852, + [862] = 851, [863] = 859, - [864] = 864, - [865] = 864, - [866] = 866, - [867] = 864, - [868] = 866, - [869] = 866, - [870] = 864, - [871] = 866, - [872] = 872, - [873] = 872, - [874] = 872, - [875] = 875, - [876] = 872, - [877] = 864, - [878] = 872, - [879] = 866, - [880] = 872, - [881] = 872, - [882] = 872, - [883] = 872, - [884] = 872, - [885] = 872, - [886] = 872, - [887] = 872, - [888] = 872, - [889] = 872, - [890] = 872, - [891] = 872, - [892] = 864, - [893] = 866, + [864] = 859, + [865] = 859, + [866] = 859, + [867] = 859, + [868] = 859, + [869] = 859, + [870] = 859, + [871] = 859, + [872] = 859, + [873] = 859, + [874] = 859, + [875] = 859, + [876] = 859, + [877] = 859, + [878] = 859, + [879] = 851, + [880] = 852, + [881] = 881, + [882] = 882, + [883] = 883, + [884] = 884, + [885] = 885, + [886] = 886, + [887] = 887, + [888] = 888, + [889] = 889, + [890] = 890, + [891] = 891, + [892] = 892, + [893] = 893, [894] = 894, [895] = 895, [896] = 896, - [897] = 894, + [897] = 897, [898] = 898, [899] = 899, [900] = 900, @@ -6081,1350 +6063,1350 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [911] = 911, [912] = 912, [913] = 913, - [914] = 895, - [915] = 894, - [916] = 898, - [917] = 899, - [918] = 900, - [919] = 903, - [920] = 904, - [921] = 905, - [922] = 907, - [923] = 908, - [924] = 909, - [925] = 910, - [926] = 911, + [914] = 914, + [915] = 915, + [916] = 916, + [917] = 917, + [918] = 918, + [919] = 919, + [920] = 920, + [921] = 921, + [922] = 922, + [923] = 881, + [924] = 924, + [925] = 925, + [926] = 926, [927] = 927, [928] = 928, [929] = 929, [930] = 930, [931] = 931, - [932] = 932, - [933] = 933, - [934] = 934, - [935] = 935, - [936] = 906, - [937] = 937, - [938] = 938, - [939] = 896, - [940] = 902, - [941] = 941, - [942] = 942, - [943] = 943, - [944] = 901, - [945] = 945, - [946] = 946, - [947] = 947, - [948] = 948, - [949] = 949, - [950] = 950, - [951] = 913, - [952] = 952, - [953] = 912, - [954] = 954, - [955] = 955, - [956] = 956, - [957] = 957, - [958] = 958, - [959] = 959, - [960] = 960, - [961] = 961, - [962] = 962, - [963] = 963, - [964] = 964, - [965] = 965, - [966] = 954, - [967] = 955, - [968] = 956, - [969] = 945, - [970] = 946, - [971] = 957, - [972] = 958, + [932] = 882, + [933] = 883, + [934] = 884, + [935] = 885, + [936] = 886, + [937] = 887, + [938] = 888, + [939] = 890, + [940] = 891, + [941] = 892, + [942] = 893, + [943] = 894, + [944] = 895, + [945] = 896, + [946] = 897, + [947] = 898, + [948] = 899, + [949] = 900, + [950] = 901, + [951] = 902, + [952] = 903, + [953] = 904, + [954] = 905, + [955] = 906, + [956] = 907, + [957] = 908, + [958] = 909, + [959] = 910, + [960] = 911, + [961] = 912, + [962] = 913, + [963] = 914, + [964] = 931, + [965] = 918, + [966] = 919, + [967] = 920, + [968] = 921, + [969] = 922, + [970] = 881, + [971] = 924, + [972] = 925, [973] = 973, - [974] = 927, - [975] = 959, - [976] = 960, - [977] = 928, - [978] = 943, - [979] = 961, - [980] = 962, - [981] = 895, - [982] = 898, - [983] = 899, - [984] = 900, - [985] = 903, - [986] = 904, - [987] = 905, - [988] = 907, - [989] = 908, - [990] = 909, - [991] = 910, - [992] = 911, - [993] = 927, - [994] = 928, - [995] = 929, - [996] = 930, - [997] = 931, - [998] = 932, - [999] = 933, - [1000] = 934, - [1001] = 935, - [1002] = 906, - [1003] = 937, - [1004] = 938, - [1005] = 896, - [1006] = 902, - [1007] = 941, - [1008] = 942, - [1009] = 943, - [1010] = 901, - [1011] = 945, - [1012] = 946, - [1013] = 947, - [1014] = 948, - [1015] = 949, - [1016] = 950, - [1017] = 913, - [1018] = 952, - [1019] = 912, - [1020] = 954, - [1021] = 955, - [1022] = 956, - [1023] = 957, - [1024] = 958, - [1025] = 959, - [1026] = 960, - [1027] = 961, - [1028] = 962, - [1029] = 963, - [1030] = 964, - [1031] = 965, - [1032] = 934, - [1033] = 941, - [1034] = 930, - [1035] = 931, - [1036] = 952, - [1037] = 932, - [1038] = 937, - [1039] = 963, - [1040] = 964, - [1041] = 965, - [1042] = 948, - [1043] = 949, - [1044] = 950, - [1045] = 935, - [1046] = 933, - [1047] = 947, - [1048] = 1048, - [1049] = 1049, - [1050] = 942, - [1051] = 938, - [1052] = 929, - [1053] = 1053, - [1054] = 1054, - [1055] = 1055, + [974] = 974, + [975] = 975, + [976] = 976, + [977] = 977, + [978] = 973, + [979] = 974, + [980] = 975, + [981] = 976, + [982] = 977, + [983] = 926, + [984] = 927, + [985] = 928, + [986] = 929, + [987] = 930, + [988] = 931, + [989] = 882, + [990] = 883, + [991] = 884, + [992] = 885, + [993] = 886, + [994] = 887, + [995] = 888, + [996] = 890, + [997] = 891, + [998] = 892, + [999] = 893, + [1000] = 894, + [1001] = 895, + [1002] = 896, + [1003] = 897, + [1004] = 898, + [1005] = 899, + [1006] = 900, + [1007] = 901, + [1008] = 902, + [1009] = 903, + [1010] = 904, + [1011] = 905, + [1012] = 906, + [1013] = 907, + [1014] = 908, + [1015] = 909, + [1016] = 910, + [1017] = 911, + [1018] = 912, + [1019] = 913, + [1020] = 914, + [1021] = 915, + [1022] = 918, + [1023] = 919, + [1024] = 920, + [1025] = 921, + [1026] = 922, + [1027] = 924, + [1028] = 925, + [1029] = 973, + [1030] = 974, + [1031] = 975, + [1032] = 976, + [1033] = 977, + [1034] = 926, + [1035] = 927, + [1036] = 928, + [1037] = 929, + [1038] = 930, + [1039] = 915, + [1040] = 1040, + [1041] = 1041, + [1042] = 1042, + [1043] = 1043, + [1044] = 1044, + [1045] = 1045, + [1046] = 1046, + [1047] = 1047, + [1048] = 1041, + [1049] = 1046, + [1050] = 1047, + [1051] = 1041, + [1052] = 1042, + [1053] = 1043, + [1054] = 1044, + [1055] = 1045, [1056] = 1056, [1057] = 1057, [1058] = 1058, [1059] = 1059, [1060] = 1060, [1061] = 1061, - [1062] = 1062, - [1063] = 1063, - [1064] = 1056, - [1065] = 1057, - [1066] = 1066, - [1067] = 1067, - [1068] = 1054, - [1069] = 1055, - [1070] = 1070, - [1071] = 1066, - [1072] = 1067, - [1073] = 1058, - [1074] = 1059, - [1075] = 1060, - [1076] = 1061, - [1077] = 1058, - [1078] = 1060, - [1079] = 1061, - [1080] = 1058, - [1081] = 1059, - [1082] = 1062, - [1083] = 1063, - [1084] = 1059, + [1062] = 1042, + [1063] = 1043, + [1064] = 1044, + [1065] = 1045, + [1066] = 1056, + [1067] = 1057, + [1068] = 1058, + [1069] = 1059, + [1070] = 1060, + [1071] = 1061, + [1072] = 1056, + [1073] = 1057, + [1074] = 1058, + [1075] = 1059, + [1076] = 1060, + [1077] = 1061, + [1078] = 1078, + [1079] = 1046, + [1080] = 1047, + [1081] = 1041, + [1082] = 1042, + [1083] = 1043, + [1084] = 1044, [1085] = 1056, - [1086] = 1058, - [1087] = 1059, - [1088] = 1060, - [1089] = 1061, - [1090] = 1062, - [1091] = 1063, - [1092] = 1056, - [1093] = 1057, - [1094] = 1066, - [1095] = 1067, - [1096] = 1062, - [1097] = 1063, - [1098] = 1070, - [1099] = 1057, - [1100] = 1066, - [1101] = 1058, - [1102] = 1059, - [1103] = 1060, - [1104] = 1061, - [1105] = 1062, - [1106] = 1063, - [1107] = 1056, - [1108] = 1057, - [1109] = 1066, - [1110] = 1067, - [1111] = 1054, - [1112] = 1055, - [1113] = 1070, - [1114] = 1067, - [1115] = 1054, - [1116] = 1055, + [1086] = 1057, + [1087] = 1058, + [1088] = 1059, + [1089] = 1060, + [1090] = 1061, + [1091] = 1046, + [1092] = 1047, + [1093] = 1046, + [1094] = 1047, + [1095] = 1041, + [1096] = 1042, + [1097] = 1043, + [1098] = 1044, + [1099] = 1045, + [1100] = 1056, + [1101] = 1057, + [1102] = 1058, + [1103] = 1059, + [1104] = 1060, + [1105] = 1061, + [1106] = 1046, + [1107] = 1047, + [1108] = 1041, + [1109] = 1042, + [1110] = 1043, + [1111] = 1044, + [1112] = 1045, + [1113] = 1056, + [1114] = 1057, + [1115] = 1058, + [1116] = 1059, [1117] = 1060, - [1118] = 1070, - [1119] = 1061, - [1120] = 1062, - [1121] = 1063, - [1122] = 1056, - [1123] = 1057, - [1124] = 1066, - [1125] = 1067, - [1126] = 1054, - [1127] = 1127, - [1128] = 1054, - [1129] = 1055, - [1130] = 1070, - [1131] = 1127, - [1132] = 1070, - [1133] = 1055, + [1118] = 1061, + [1119] = 1078, + [1120] = 1045, + [1121] = 1121, + [1122] = 1121, + [1123] = 1121, + [1124] = 1124, + [1125] = 1124, + [1126] = 1126, + [1127] = 1121, + [1128] = 1128, + [1129] = 1126, + [1130] = 1130, + [1131] = 1128, + [1132] = 1132, + [1133] = 190, [1134] = 1134, - [1135] = 1134, - [1136] = 1134, + [1135] = 1135, + [1136] = 1136, [1137] = 1137, [1138] = 1138, - [1139] = 1139, - [1140] = 1137, - [1141] = 1138, + [1139] = 1121, + [1140] = 1140, + [1141] = 307, [1142] = 1142, - [1143] = 1143, - [1144] = 1134, - [1145] = 1143, - [1146] = 1146, - [1147] = 1134, - [1148] = 1148, - [1149] = 1149, - [1150] = 190, - [1151] = 1151, + [1143] = 308, + [1144] = 307, + [1145] = 1145, + [1146] = 307, + [1147] = 308, + [1148] = 308, + [1149] = 1140, + [1150] = 1150, + [1151] = 191, [1152] = 1152, [1153] = 1153, - [1154] = 319, - [1155] = 1153, - [1156] = 318, + [1154] = 1154, + [1155] = 1145, + [1156] = 324, [1157] = 1157, - [1158] = 1158, - [1159] = 319, - [1160] = 191, - [1161] = 1161, - [1162] = 318, - [1163] = 1163, + [1158] = 307, + [1159] = 308, + [1160] = 330, + [1161] = 330, + [1162] = 324, + [1163] = 324, [1164] = 1164, - [1165] = 318, - [1166] = 1161, - [1167] = 319, - [1168] = 1168, - [1169] = 1169, - [1170] = 1170, - [1171] = 319, - [1172] = 318, - [1173] = 1169, - [1174] = 1170, - [1175] = 331, - [1176] = 326, - [1177] = 331, - [1178] = 326, - [1179] = 331, - [1180] = 326, - [1181] = 341, - [1182] = 318, - [1183] = 1183, - [1184] = 1183, - [1185] = 350, - [1186] = 1186, - [1187] = 342, - [1188] = 1188, - [1189] = 1186, - [1190] = 1183, - [1191] = 340, - [1192] = 341, - [1193] = 350, - [1194] = 326, - [1195] = 342, - [1196] = 1188, - [1197] = 340, - [1198] = 319, - [1199] = 350, - [1200] = 1186, - [1201] = 342, - [1202] = 804, - [1203] = 340, - [1204] = 341, - [1205] = 1188, - [1206] = 804, - [1207] = 331, - [1208] = 804, - [1209] = 326, - [1210] = 1210, - [1211] = 1211, - [1212] = 340, - [1213] = 1213, - [1214] = 1214, - [1215] = 341, - [1216] = 350, - [1217] = 342, - [1218] = 1211, - [1219] = 1219, - [1220] = 1213, - [1221] = 1214, - [1222] = 1219, - [1223] = 1223, - [1224] = 1210, - [1225] = 1225, - [1226] = 804, - [1227] = 331, - [1228] = 1223, - [1229] = 1229, - [1230] = 342, - [1231] = 340, - [1232] = 341, - [1233] = 804, - [1234] = 302, - [1235] = 350, - [1236] = 1229, - [1237] = 302, - [1238] = 137, - [1239] = 322, - [1240] = 323, - [1241] = 318, - [1242] = 319, - [1243] = 321, - [1244] = 1244, - [1245] = 1245, - [1246] = 1246, - [1247] = 1245, - [1248] = 323, - [1249] = 1249, - [1250] = 139, - [1251] = 138, - [1252] = 1249, - [1253] = 321, - [1254] = 1245, - [1255] = 318, - [1256] = 1249, - [1257] = 1245, - [1258] = 1244, - [1259] = 1246, - [1260] = 322, - [1261] = 319, - [1262] = 318, - [1263] = 1249, - [1264] = 1245, - [1265] = 1244, - [1266] = 1246, - [1267] = 1249, - [1268] = 1245, - [1269] = 1244, - [1270] = 1246, - [1271] = 1249, - [1272] = 326, - [1273] = 1244, - [1274] = 1246, - [1275] = 1249, - [1276] = 1245, - [1277] = 1244, - [1278] = 1246, - [1279] = 1249, - [1280] = 1245, - [1281] = 1244, - [1282] = 1246, - [1283] = 1249, - [1284] = 1245, - [1285] = 1244, - [1286] = 1246, - [1287] = 1249, - [1288] = 1244, - [1289] = 1289, - [1290] = 335, - [1291] = 1244, - [1292] = 1245, - [1293] = 1293, - [1294] = 1249, - [1295] = 1244, - [1296] = 1249, - [1297] = 325, - [1298] = 1244, - [1299] = 333, - [1300] = 331, - [1301] = 1246, - [1302] = 1289, - [1303] = 1246, - [1304] = 1246, - [1305] = 319, - [1306] = 334, - [1307] = 1245, - [1308] = 142, - [1309] = 337, - [1310] = 137, - [1311] = 326, - [1312] = 334, - [1313] = 335, - [1314] = 325, - [1315] = 319, - [1316] = 331, - [1317] = 143, - [1318] = 326, - [1319] = 144, - [1320] = 318, - [1321] = 137, - [1322] = 340, - [1323] = 341, - [1324] = 342, - [1325] = 864, - [1326] = 331, - [1327] = 350, - [1328] = 1328, - [1329] = 338, - [1330] = 145, - [1331] = 866, - [1332] = 864, - [1333] = 339, - [1334] = 141, - [1335] = 140, - [1336] = 866, - [1337] = 864, - [1338] = 1293, - [1339] = 333, - [1340] = 351, - [1341] = 866, - [1342] = 350, - [1343] = 139, - [1344] = 341, - [1345] = 139, - [1346] = 337, - [1347] = 137, - [1348] = 341, - [1349] = 323, - [1350] = 138, - [1351] = 302, - [1352] = 353, - [1353] = 338, - [1354] = 331, - [1355] = 339, - [1356] = 342, - [1357] = 338, - [1358] = 866, - [1359] = 1359, + [1165] = 1157, + [1166] = 1164, + [1167] = 330, + [1168] = 344, + [1169] = 344, + [1170] = 341, + [1171] = 307, + [1172] = 308, + [1173] = 324, + [1174] = 1174, + [1175] = 786, + [1176] = 330, + [1177] = 1174, + [1178] = 343, + [1179] = 1179, + [1180] = 1180, + [1181] = 1179, + [1182] = 1180, + [1183] = 786, + [1184] = 336, + [1185] = 341, + [1186] = 336, + [1187] = 343, + [1188] = 344, + [1189] = 336, + [1190] = 786, + [1191] = 341, + [1192] = 1174, + [1193] = 1179, + [1194] = 1180, + [1195] = 343, + [1196] = 344, + [1197] = 786, + [1198] = 336, + [1199] = 1199, + [1200] = 1200, + [1201] = 1201, + [1202] = 324, + [1203] = 341, + [1204] = 330, + [1205] = 343, + [1206] = 1206, + [1207] = 1207, + [1208] = 1208, + [1209] = 1209, + [1210] = 1200, + [1211] = 1209, + [1212] = 1201, + [1213] = 1206, + [1214] = 1208, + [1215] = 1199, + [1216] = 336, + [1217] = 299, + [1218] = 343, + [1219] = 341, + [1220] = 1220, + [1221] = 344, + [1222] = 1220, + [1223] = 786, + [1224] = 305, + [1225] = 307, + [1226] = 304, + [1227] = 299, + [1228] = 137, + [1229] = 301, + [1230] = 308, + [1231] = 1231, + [1232] = 307, + [1233] = 308, + [1234] = 1234, + [1235] = 1235, + [1236] = 1234, + [1237] = 1237, + [1238] = 1231, + [1239] = 1237, + [1240] = 1240, + [1241] = 1240, + [1242] = 1237, + [1243] = 1231, + [1244] = 324, + [1245] = 330, + [1246] = 304, + [1247] = 1247, + [1248] = 139, + [1249] = 138, + [1250] = 1234, + [1251] = 1234, + [1252] = 329, + [1253] = 1234, + [1254] = 1237, + [1255] = 1240, + [1256] = 1231, + [1257] = 308, + [1258] = 1247, + [1259] = 1234, + [1260] = 1237, + [1261] = 1240, + [1262] = 1231, + [1263] = 333, + [1264] = 334, + [1265] = 335, + [1266] = 1234, + [1267] = 1237, + [1268] = 1240, + [1269] = 1231, + [1270] = 1234, + [1271] = 1237, + [1272] = 1240, + [1273] = 1231, + [1274] = 1234, + [1275] = 1237, + [1276] = 1240, + [1277] = 1231, + [1278] = 1234, + [1279] = 1237, + [1280] = 1240, + [1281] = 1231, + [1282] = 1234, + [1283] = 1237, + [1284] = 1240, + [1285] = 1231, + [1286] = 1234, + [1287] = 1240, + [1288] = 305, + [1289] = 1240, + [1290] = 1237, + [1291] = 1231, + [1292] = 1240, + [1293] = 301, + [1294] = 307, + [1295] = 330, + [1296] = 308, + [1297] = 142, + [1298] = 143, + [1299] = 144, + [1300] = 145, + [1301] = 349, + [1302] = 852, + [1303] = 851, + [1304] = 137, + [1305] = 852, + [1306] = 851, + [1307] = 324, + [1308] = 329, + [1309] = 330, + [1310] = 346, + [1311] = 348, + [1312] = 141, + [1313] = 333, + [1314] = 334, + [1315] = 335, + [1316] = 1316, + [1317] = 140, + [1318] = 336, + [1319] = 851, + [1320] = 341, + [1321] = 307, + [1322] = 343, + [1323] = 344, + [1324] = 137, + [1325] = 852, + [1326] = 324, + [1327] = 340, + [1328] = 1235, + [1329] = 330, + [1330] = 852, + [1331] = 1331, + [1332] = 137, + [1333] = 346, + [1334] = 147, + [1335] = 299, + [1336] = 139, + [1337] = 301, + [1338] = 139, + [1339] = 363, + [1340] = 340, + [1341] = 1341, + [1342] = 336, + [1343] = 148, + [1344] = 1344, + [1345] = 343, + [1346] = 341, + [1347] = 349, + [1348] = 344, + [1349] = 138, + [1350] = 851, + [1351] = 349, + [1352] = 146, + [1353] = 324, + [1354] = 343, + [1355] = 336, + [1356] = 344, + [1357] = 361, + [1358] = 340, + [1359] = 348, [1360] = 138, - [1361] = 361, - [1362] = 864, - [1363] = 148, - [1364] = 350, - [1365] = 340, - [1366] = 351, - [1367] = 1367, - [1368] = 147, - [1369] = 146, - [1370] = 326, - [1371] = 342, - [1372] = 337, - [1373] = 1373, - [1374] = 340, - [1375] = 342, - [1376] = 138, - [1377] = 137, - [1378] = 322, - [1379] = 144, - [1380] = 139, - [1381] = 375, - [1382] = 367, - [1383] = 379, - [1384] = 340, - [1385] = 141, - [1386] = 334, - [1387] = 1387, - [1388] = 335, - [1389] = 141, - [1390] = 361, - [1391] = 140, - [1392] = 143, - [1393] = 350, - [1394] = 370, - [1395] = 864, - [1396] = 1373, - [1397] = 339, - [1398] = 325, - [1399] = 144, - [1400] = 150, - [1401] = 371, - [1402] = 333, - [1403] = 140, - [1404] = 353, - [1405] = 866, - [1406] = 138, - [1407] = 321, - [1408] = 142, - [1409] = 145, - [1410] = 145, - [1411] = 302, - [1412] = 351, - [1413] = 142, - [1414] = 139, - [1415] = 143, - [1416] = 384, - [1417] = 341, - [1418] = 1418, - [1419] = 146, + [1361] = 341, + [1362] = 851, + [1363] = 304, + [1364] = 138, + [1365] = 139, + [1366] = 363, + [1367] = 141, + [1368] = 140, + [1369] = 852, + [1370] = 145, + [1371] = 380, + [1372] = 378, + [1373] = 137, + [1374] = 371, + [1375] = 145, + [1376] = 361, + [1377] = 329, + [1378] = 144, + [1379] = 299, + [1380] = 370, + [1381] = 143, + [1382] = 142, + [1383] = 336, + [1384] = 140, + [1385] = 1385, + [1386] = 138, + [1387] = 144, + [1388] = 348, + [1389] = 344, + [1390] = 305, + [1391] = 333, + [1392] = 377, + [1393] = 334, + [1394] = 335, + [1395] = 150, + [1396] = 1396, + [1397] = 381, + [1398] = 346, + [1399] = 343, + [1400] = 341, + [1401] = 1344, + [1402] = 143, + [1403] = 139, + [1404] = 142, + [1405] = 141, + [1406] = 140, + [1407] = 148, + [1408] = 150, + [1409] = 307, + [1410] = 142, + [1411] = 433, + [1412] = 143, + [1413] = 144, + [1414] = 137, + [1415] = 145, + [1416] = 141, + [1417] = 140, + [1418] = 346, + [1419] = 1419, [1420] = 142, - [1421] = 150, - [1422] = 398, - [1423] = 351, - [1424] = 404, - [1425] = 319, - [1426] = 403, - [1427] = 339, - [1428] = 143, - [1429] = 144, - [1430] = 148, - [1431] = 367, - [1432] = 145, - [1433] = 438, - [1434] = 142, - [1435] = 143, - [1436] = 144, - [1437] = 411, - [1438] = 145, - [1439] = 412, - [1440] = 413, - [1441] = 414, - [1442] = 415, - [1443] = 416, - [1444] = 141, - [1445] = 140, - [1446] = 410, - [1447] = 437, - [1448] = 339, - [1449] = 148, - [1450] = 418, - [1451] = 147, - [1452] = 146, - [1453] = 140, - [1454] = 1454, - [1455] = 321, - [1456] = 419, - [1457] = 375, - [1458] = 420, - [1459] = 421, - [1460] = 137, - [1461] = 371, - [1462] = 422, - [1463] = 423, - [1464] = 425, - [1465] = 384, - [1466] = 426, - [1467] = 379, - [1468] = 370, - [1469] = 322, - [1470] = 428, - [1471] = 361, - [1472] = 351, - [1473] = 147, - [1474] = 318, - [1475] = 141, - [1476] = 353, - [1477] = 1359, - [1478] = 323, - [1479] = 417, - [1480] = 325, - [1481] = 422, - [1482] = 423, - [1483] = 147, - [1484] = 148, - [1485] = 425, - [1486] = 426, - [1487] = 428, - [1488] = 437, - [1489] = 146, - [1490] = 1490, - [1491] = 398, - [1492] = 335, - [1493] = 438, - [1494] = 138, - [1495] = 404, - [1496] = 459, - [1497] = 148, - [1498] = 351, - [1499] = 353, - [1500] = 333, - [1501] = 150, - [1502] = 498, - [1503] = 1490, - [1504] = 485, - [1505] = 137, - [1506] = 339, - [1507] = 1507, - [1508] = 473, - [1509] = 1387, - [1510] = 410, - [1511] = 411, - [1512] = 339, - [1513] = 412, - [1514] = 413, - [1515] = 414, - [1516] = 421, - [1517] = 1490, - [1518] = 147, - [1519] = 415, - [1520] = 1418, - [1521] = 488, - [1522] = 489, - [1523] = 490, - [1524] = 416, - [1525] = 475, - [1526] = 375, - [1527] = 353, - [1528] = 318, - [1529] = 417, - [1530] = 493, - [1531] = 319, - [1532] = 139, - [1533] = 361, - [1534] = 146, - [1535] = 351, - [1536] = 331, - [1537] = 334, - [1538] = 326, - [1539] = 1293, - [1540] = 384, - [1541] = 418, - [1542] = 403, - [1543] = 379, + [1421] = 143, + [1422] = 144, + [1423] = 145, + [1424] = 147, + [1425] = 371, + [1426] = 377, + [1427] = 348, + [1428] = 301, + [1429] = 308, + [1430] = 378, + [1431] = 141, + [1432] = 346, + [1433] = 304, + [1434] = 380, + [1435] = 381, + [1436] = 370, + [1437] = 1331, + [1438] = 348, + [1439] = 305, + [1440] = 417, + [1441] = 148, + [1442] = 147, + [1443] = 361, + [1444] = 401, + [1445] = 146, + [1446] = 406, + [1447] = 363, + [1448] = 408, + [1449] = 412, + [1450] = 414, + [1451] = 422, + [1452] = 425, + [1453] = 384, + [1454] = 385, + [1455] = 389, + [1456] = 390, + [1457] = 395, + [1458] = 396, + [1459] = 397, + [1460] = 398, + [1461] = 399, + [1462] = 400, + [1463] = 402, + [1464] = 403, + [1465] = 428, + [1466] = 146, + [1467] = 334, + [1468] = 146, + [1469] = 417, + [1470] = 330, + [1471] = 433, + [1472] = 346, + [1473] = 1473, + [1474] = 348, + [1475] = 463, + [1476] = 137, + [1477] = 348, + [1478] = 1235, + [1479] = 401, + [1480] = 444, + [1481] = 461, + [1482] = 460, + [1483] = 1483, + [1484] = 329, + [1485] = 406, + [1486] = 361, + [1487] = 363, + [1488] = 1488, + [1489] = 139, + [1490] = 408, + [1491] = 308, + [1492] = 454, + [1493] = 307, + [1494] = 438, + [1495] = 1473, + [1496] = 138, + [1497] = 412, + [1498] = 414, + [1499] = 346, + [1500] = 422, + [1501] = 333, + [1502] = 363, + [1503] = 148, + [1504] = 335, + [1505] = 1396, + [1506] = 1385, + [1507] = 425, + [1508] = 148, + [1509] = 146, + [1510] = 384, + [1511] = 385, + [1512] = 389, + [1513] = 377, + [1514] = 390, + [1515] = 440, + [1516] = 395, + [1517] = 396, + [1518] = 378, + [1519] = 397, + [1520] = 441, + [1521] = 398, + [1522] = 380, + [1523] = 381, + [1524] = 150, + [1525] = 1473, + [1526] = 399, + [1527] = 400, + [1528] = 402, + [1529] = 403, + [1530] = 428, + [1531] = 147, + [1532] = 361, + [1533] = 147, + [1534] = 324, + [1535] = 439, + [1536] = 444, + [1537] = 440, + [1538] = 1483, + [1539] = 1539, + [1540] = 1540, + [1541] = 324, + [1542] = 1542, + [1543] = 361, [1544] = 1544, - [1545] = 370, - [1546] = 419, - [1547] = 420, - [1548] = 361, - [1549] = 384, - [1550] = 422, - [1551] = 1507, - [1552] = 416, - [1553] = 438, - [1554] = 493, - [1555] = 339, - [1556] = 531, - [1557] = 417, - [1558] = 142, - [1559] = 342, + [1545] = 385, + [1546] = 412, + [1547] = 461, + [1548] = 1548, + [1549] = 414, + [1550] = 140, + [1551] = 454, + [1552] = 460, + [1553] = 139, + [1554] = 440, + [1555] = 1555, + [1556] = 330, + [1557] = 142, + [1558] = 441, + [1559] = 336, [1560] = 143, [1561] = 144, - [1562] = 533, - [1563] = 150, - [1564] = 145, - [1565] = 1565, - [1566] = 361, - [1567] = 423, - [1568] = 425, - [1569] = 426, - [1570] = 428, - [1571] = 437, - [1572] = 379, - [1573] = 485, - [1574] = 1574, - [1575] = 473, - [1576] = 498, - [1577] = 353, - [1578] = 488, - [1579] = 489, - [1580] = 1580, - [1581] = 1581, - [1582] = 490, - [1583] = 1583, - [1584] = 1584, - [1585] = 459, - [1586] = 418, - [1587] = 419, - [1588] = 521, - [1589] = 503, - [1590] = 1544, - [1591] = 504, - [1592] = 370, - [1593] = 421, - [1594] = 459, + [1562] = 389, + [1563] = 138, + [1564] = 441, + [1565] = 363, + [1566] = 390, + [1567] = 145, + [1568] = 395, + [1569] = 396, + [1570] = 397, + [1571] = 1571, + [1572] = 515, + [1573] = 438, + [1574] = 398, + [1575] = 399, + [1576] = 533, + [1577] = 400, + [1578] = 402, + [1579] = 343, + [1580] = 380, + [1581] = 403, + [1582] = 507, + [1583] = 422, + [1584] = 511, + [1585] = 425, + [1586] = 1488, + [1587] = 341, + [1588] = 384, + [1589] = 501, + [1590] = 1590, + [1591] = 150, + [1592] = 381, + [1593] = 463, + [1594] = 377, [1595] = 141, - [1596] = 375, - [1597] = 350, - [1598] = 530, - [1599] = 508, - [1600] = 340, - [1601] = 140, - [1602] = 1490, - [1603] = 475, - [1604] = 510, - [1605] = 540, - [1606] = 509, - [1607] = 384, - [1608] = 331, - [1609] = 1609, - [1610] = 361, + [1596] = 506, + [1597] = 1473, + [1598] = 439, + [1599] = 378, + [1600] = 363, + [1601] = 380, + [1602] = 1235, + [1603] = 348, + [1604] = 521, + [1605] = 508, + [1606] = 406, + [1607] = 509, + [1608] = 377, + [1609] = 408, + [1610] = 381, [1611] = 1611, - [1612] = 379, - [1613] = 370, - [1614] = 139, - [1615] = 498, - [1616] = 326, - [1617] = 138, - [1618] = 411, - [1619] = 413, - [1620] = 1620, - [1621] = 353, - [1622] = 1293, - [1623] = 341, - [1624] = 414, - [1625] = 415, - [1626] = 420, - [1627] = 412, - [1628] = 351, - [1629] = 375, - [1630] = 403, - [1631] = 337, - [1632] = 144, - [1633] = 341, - [1634] = 503, - [1635] = 531, - [1636] = 143, - [1637] = 351, - [1638] = 628, - [1639] = 504, - [1640] = 1640, - [1641] = 1609, - [1642] = 339, - [1643] = 1643, - [1644] = 145, - [1645] = 1645, - [1646] = 533, - [1647] = 150, - [1648] = 594, - [1649] = 384, - [1650] = 540, - [1651] = 475, - [1652] = 398, - [1653] = 1580, - [1654] = 1654, - [1655] = 530, - [1656] = 375, - [1657] = 531, - [1658] = 339, - [1659] = 148, - [1660] = 1660, - [1661] = 379, - [1662] = 350, - [1663] = 1581, - [1664] = 370, - [1665] = 137, - [1666] = 473, - [1667] = 375, - [1668] = 138, - [1669] = 510, - [1670] = 351, - [1671] = 342, - [1672] = 1620, - [1673] = 1583, - [1674] = 1674, - [1675] = 1611, - [1676] = 370, - [1677] = 410, - [1678] = 1584, - [1679] = 384, - [1680] = 146, - [1681] = 340, - [1682] = 141, - [1683] = 140, - [1684] = 139, - [1685] = 1685, - [1686] = 533, - [1687] = 404, - [1688] = 379, - [1689] = 1689, - [1690] = 1690, - [1691] = 510, - [1692] = 508, + [1612] = 378, + [1613] = 346, + [1614] = 361, + [1615] = 512, + [1616] = 344, + [1617] = 1617, + [1618] = 512, + [1619] = 145, + [1620] = 147, + [1621] = 348, + [1622] = 508, + [1623] = 509, + [1624] = 433, + [1625] = 1611, + [1626] = 1540, + [1627] = 1539, + [1628] = 1628, + [1629] = 1590, + [1630] = 401, + [1631] = 1631, + [1632] = 1544, + [1633] = 1542, + [1634] = 142, + [1635] = 521, + [1636] = 1636, + [1637] = 508, + [1638] = 509, + [1639] = 138, + [1640] = 438, + [1641] = 377, + [1642] = 143, + [1643] = 336, + [1644] = 137, + [1645] = 515, + [1646] = 377, + [1647] = 341, + [1648] = 507, + [1649] = 511, + [1650] = 515, + [1651] = 378, + [1652] = 343, + [1653] = 346, + [1654] = 144, + [1655] = 141, + [1656] = 140, + [1657] = 1657, + [1658] = 349, + [1659] = 439, + [1660] = 346, + [1661] = 344, + [1662] = 650, + [1663] = 381, + [1664] = 1664, + [1665] = 340, + [1666] = 565, + [1667] = 1667, + [1668] = 139, + [1669] = 1669, + [1670] = 506, + [1671] = 1671, + [1672] = 148, + [1673] = 1571, + [1674] = 150, + [1675] = 146, + [1676] = 348, + [1677] = 501, + [1678] = 378, + [1679] = 428, + [1680] = 380, + [1681] = 381, + [1682] = 648, + [1683] = 533, + [1684] = 1671, + [1685] = 521, + [1686] = 361, + [1687] = 1687, + [1688] = 512, + [1689] = 363, + [1690] = 417, + [1691] = 380, + [1692] = 146, [1693] = 1693, - [1694] = 521, - [1695] = 353, - [1696] = 147, - [1697] = 338, - [1698] = 530, - [1699] = 509, - [1700] = 361, - [1701] = 540, - [1702] = 142, - [1703] = 627, - [1704] = 1689, - [1705] = 1643, - [1706] = 190, - [1707] = 1640, - [1708] = 1708, - [1709] = 1674, - [1710] = 1643, - [1711] = 1711, - [1712] = 1690, - [1713] = 1713, - [1714] = 144, - [1715] = 1660, - [1716] = 1716, - [1717] = 1717, - [1718] = 610, - [1719] = 612, - [1720] = 142, - [1721] = 1721, + [1694] = 1694, + [1695] = 626, + [1696] = 634, + [1697] = 150, + [1698] = 1667, + [1699] = 147, + [1700] = 438, + [1701] = 508, + [1702] = 509, + [1703] = 1669, + [1704] = 1636, + [1705] = 145, + [1706] = 363, + [1707] = 439, + [1708] = 635, + [1709] = 1709, + [1710] = 144, + [1711] = 190, + [1712] = 1628, + [1713] = 142, + [1714] = 363, + [1715] = 1715, + [1716] = 512, + [1717] = 1694, + [1718] = 1631, + [1719] = 591, + [1720] = 148, + [1721] = 361, [1722] = 1722, - [1723] = 1723, - [1724] = 616, - [1725] = 353, - [1726] = 367, - [1727] = 1727, - [1728] = 1728, - [1729] = 371, + [1723] = 143, + [1724] = 1687, + [1725] = 645, + [1726] = 140, + [1727] = 648, + [1728] = 646, + [1729] = 667, [1730] = 1730, - [1731] = 1731, - [1732] = 603, - [1733] = 606, - [1734] = 607, - [1735] = 608, - [1736] = 609, - [1737] = 613, - [1738] = 614, - [1739] = 615, - [1740] = 617, - [1741] = 618, - [1742] = 619, - [1743] = 620, - [1744] = 621, - [1745] = 622, + [1731] = 650, + [1732] = 371, + [1733] = 652, + [1734] = 1734, + [1735] = 1671, + [1736] = 654, + [1737] = 590, + [1738] = 1664, + [1739] = 651, + [1740] = 638, + [1741] = 642, + [1742] = 644, + [1743] = 1743, + [1744] = 1744, + [1745] = 628, [1746] = 623, - [1747] = 148, - [1748] = 147, - [1749] = 146, - [1750] = 627, - [1751] = 602, - [1752] = 628, - [1753] = 631, - [1754] = 604, - [1755] = 605, - [1756] = 634, - [1757] = 611, - [1758] = 637, - [1759] = 638, - [1760] = 639, - [1761] = 640, - [1762] = 641, - [1763] = 642, - [1764] = 643, + [1747] = 144, + [1748] = 588, + [1749] = 515, + [1750] = 649, + [1751] = 145, + [1752] = 1671, + [1753] = 625, + [1754] = 653, + [1755] = 629, + [1756] = 655, + [1757] = 593, + [1758] = 585, + [1759] = 1667, + [1760] = 586, + [1761] = 587, + [1762] = 592, + [1763] = 377, + [1764] = 1764, [1765] = 594, - [1766] = 685, - [1767] = 645, - [1768] = 646, - [1769] = 647, - [1770] = 648, - [1771] = 649, - [1772] = 650, - [1773] = 651, - [1774] = 652, - [1775] = 653, - [1776] = 654, - [1777] = 625, - [1778] = 626, - [1779] = 629, - [1780] = 630, - [1781] = 632, - [1782] = 633, - [1783] = 1690, - [1784] = 635, - [1785] = 636, - [1786] = 142, - [1787] = 143, - [1788] = 144, - [1789] = 473, - [1790] = 145, - [1791] = 475, - [1792] = 150, - [1793] = 510, - [1794] = 530, - [1795] = 361, - [1796] = 531, - [1797] = 533, - [1798] = 353, - [1799] = 540, + [1766] = 1766, + [1767] = 370, + [1768] = 616, + [1769] = 595, + [1770] = 641, + [1771] = 1771, + [1772] = 1772, + [1773] = 596, + [1774] = 1774, + [1775] = 597, + [1776] = 598, + [1777] = 599, + [1778] = 1778, + [1779] = 600, + [1780] = 142, + [1781] = 565, + [1782] = 601, + [1783] = 604, + [1784] = 1784, + [1785] = 605, + [1786] = 606, + [1787] = 609, + [1788] = 610, + [1789] = 611, + [1790] = 612, + [1791] = 613, + [1792] = 143, + [1793] = 614, + [1794] = 521, + [1795] = 615, + [1796] = 1796, + [1797] = 141, + [1798] = 378, + [1799] = 1669, [1800] = 361, - [1801] = 1693, - [1802] = 1721, - [1803] = 1803, - [1804] = 1804, - [1805] = 1689, - [1806] = 375, - [1807] = 384, - [1808] = 379, - [1809] = 370, - [1810] = 145, - [1811] = 1645, - [1812] = 1812, - [1813] = 1813, - [1814] = 1814, - [1815] = 1689, - [1816] = 143, - [1817] = 141, - [1818] = 140, - [1819] = 600, - [1820] = 490, - [1821] = 654, - [1822] = 367, - [1823] = 143, - [1824] = 144, - [1825] = 604, - [1826] = 1826, - [1827] = 605, - [1828] = 145, - [1829] = 625, - [1830] = 603, - [1831] = 634, - [1832] = 1814, - [1833] = 606, - [1834] = 626, - [1835] = 607, - [1836] = 608, - [1837] = 609, - [1838] = 371, - [1839] = 610, - [1840] = 611, - [1841] = 612, - [1842] = 613, - [1843] = 1580, - [1844] = 1581, - [1845] = 614, - [1846] = 1583, - [1847] = 1584, - [1848] = 615, - [1849] = 1643, - [1850] = 1690, - [1851] = 379, - [1852] = 637, - [1853] = 473, - [1854] = 638, - [1855] = 616, - [1856] = 617, - [1857] = 475, - [1858] = 618, - [1859] = 619, - [1860] = 620, - [1861] = 148, - [1862] = 150, - [1863] = 621, - [1864] = 622, - [1865] = 1803, - [1866] = 623, - [1867] = 1804, - [1868] = 370, - [1869] = 639, - [1870] = 1870, - [1871] = 1871, - [1872] = 351, - [1873] = 640, - [1874] = 641, - [1875] = 339, - [1876] = 375, - [1877] = 642, - [1878] = 643, - [1879] = 600, - [1880] = 384, - [1881] = 685, - [1882] = 379, - [1883] = 370, - [1884] = 1812, - [1885] = 645, - [1886] = 1813, - [1887] = 375, - [1888] = 646, - [1889] = 647, - [1890] = 648, - [1891] = 1891, - [1892] = 631, - [1893] = 1643, - [1894] = 485, - [1895] = 629, - [1896] = 630, - [1897] = 1711, - [1898] = 147, - [1899] = 146, - [1900] = 1900, - [1901] = 632, - [1902] = 633, - [1903] = 649, - [1904] = 1904, - [1905] = 1708, - [1906] = 1690, - [1907] = 1907, - [1908] = 635, - [1909] = 636, - [1910] = 1910, - [1911] = 1911, - [1912] = 1912, - [1913] = 1913, - [1914] = 1914, - [1915] = 1915, - [1916] = 1916, + [1801] = 380, + [1802] = 666, + [1803] = 381, + [1804] = 669, + [1805] = 668, + [1806] = 647, + [1807] = 1744, + [1808] = 594, + [1809] = 1809, + [1810] = 463, + [1811] = 147, + [1812] = 1734, + [1813] = 651, + [1814] = 142, + [1815] = 649, + [1816] = 1715, + [1817] = 1669, + [1818] = 653, + [1819] = 652, + [1820] = 371, + [1821] = 1730, + [1822] = 610, + [1823] = 378, + [1824] = 381, + [1825] = 641, + [1826] = 655, + [1827] = 1774, + [1828] = 1828, + [1829] = 614, + [1830] = 667, + [1831] = 585, + [1832] = 586, + [1833] = 1833, + [1834] = 588, + [1835] = 587, + [1836] = 645, + [1837] = 143, + [1838] = 612, + [1839] = 592, + [1840] = 616, + [1841] = 595, + [1842] = 596, + [1843] = 1843, + [1844] = 144, + [1845] = 348, + [1846] = 148, + [1847] = 377, + [1848] = 1764, + [1849] = 646, + [1850] = 1611, + [1851] = 597, + [1852] = 1852, + [1853] = 1853, + [1854] = 1539, + [1855] = 598, + [1856] = 647, + [1857] = 1857, + [1858] = 145, + [1859] = 1859, + [1860] = 1766, + [1861] = 666, + [1862] = 668, + [1863] = 1863, + [1864] = 1864, + [1865] = 599, + [1866] = 600, + [1867] = 1867, + [1868] = 1868, + [1869] = 1869, + [1870] = 615, + [1871] = 438, + [1872] = 146, + [1873] = 634, + [1874] = 454, + [1875] = 613, + [1876] = 1771, + [1877] = 1833, + [1878] = 625, + [1879] = 606, + [1880] = 1880, + [1881] = 380, + [1882] = 439, + [1883] = 590, + [1884] = 1784, + [1885] = 370, + [1886] = 378, + [1887] = 1796, + [1888] = 1693, + [1889] = 1772, + [1890] = 1778, + [1891] = 611, + [1892] = 1540, + [1893] = 1544, + [1894] = 346, + [1895] = 628, + [1896] = 626, + [1897] = 629, + [1898] = 601, + [1899] = 635, + [1900] = 591, + [1901] = 623, + [1902] = 609, + [1903] = 191, + [1904] = 1709, + [1905] = 1905, + [1906] = 1906, + [1907] = 604, + [1908] = 1908, + [1909] = 605, + [1910] = 380, + [1911] = 654, + [1912] = 444, + [1913] = 669, + [1914] = 461, + [1915] = 638, + [1916] = 1667, [1917] = 1917, - [1918] = 1918, + [1918] = 642, [1919] = 1919, - [1920] = 1920, - [1921] = 1921, + [1920] = 644, + [1921] = 593, [1922] = 1922, - [1923] = 1923, - [1924] = 1924, - [1925] = 1716, - [1926] = 1717, + [1923] = 150, + [1924] = 1667, + [1925] = 1925, + [1926] = 565, [1927] = 1927, - [1928] = 650, - [1929] = 1722, - [1930] = 1723, - [1931] = 651, - [1932] = 594, - [1933] = 493, - [1934] = 488, - [1935] = 489, - [1936] = 1927, - [1937] = 1727, - [1938] = 1728, - [1939] = 652, - [1940] = 653, - [1941] = 191, - [1942] = 1730, - [1943] = 1731, - [1944] = 627, - [1945] = 142, - [1946] = 602, - [1947] = 628, - [1948] = 1826, - [1949] = 1927, - [1950] = 1826, - [1951] = 384, - [1952] = 641, + [1928] = 1928, + [1929] = 648, + [1930] = 1743, + [1931] = 381, + [1932] = 460, + [1933] = 377, + [1934] = 1669, + [1935] = 1809, + [1936] = 1833, + [1937] = 1809, + [1938] = 650, + [1939] = 408, + [1940] = 1940, + [1941] = 1941, + [1942] = 1942, + [1943] = 1943, + [1944] = 1944, + [1945] = 1945, + [1946] = 1946, + [1947] = 1947, + [1948] = 1948, + [1949] = 1949, + [1950] = 1950, + [1951] = 1951, + [1952] = 1952, [1953] = 1953, [1954] = 1954, [1955] = 1955, [1956] = 1956, - [1957] = 351, + [1957] = 1957, [1958] = 1958, [1959] = 1959, [1960] = 1960, [1961] = 1961, [1962] = 1962, [1963] = 1963, - [1964] = 339, - [1965] = 1965, - [1966] = 1966, - [1967] = 1967, - [1968] = 1968, - [1969] = 411, + [1964] = 348, + [1965] = 414, + [1966] = 422, + [1967] = 425, + [1968] = 384, + [1969] = 401, [1970] = 1970, [1971] = 1971, [1972] = 1972, - [1973] = 412, - [1974] = 1974, + [1973] = 1973, + [1974] = 346, [1975] = 1975, [1976] = 1976, [1977] = 1977, - [1978] = 410, - [1979] = 413, - [1980] = 414, - [1981] = 415, - [1982] = 416, + [1978] = 1978, + [1979] = 1979, + [1980] = 1980, + [1981] = 1981, + [1982] = 1982, [1983] = 1983, - [1984] = 361, - [1985] = 353, - [1986] = 339, - [1987] = 1987, - [1988] = 1988, - [1989] = 1989, - [1990] = 1990, - [1991] = 1991, - [1992] = 1992, - [1993] = 1993, - [1994] = 1994, - [1995] = 1995, - [1996] = 1996, - [1997] = 1997, - [1998] = 1998, + [1984] = 428, + [1985] = 385, + [1986] = 389, + [1987] = 390, + [1988] = 395, + [1989] = 396, + [1990] = 397, + [1991] = 361, + [1992] = 363, + [1993] = 398, + [1994] = 399, + [1995] = 400, + [1996] = 402, + [1997] = 348, + [1998] = 403, [1999] = 1999, - [2000] = 2000, + [2000] = 406, [2001] = 2001, [2002] = 2002, [2003] = 2003, - [2004] = 417, - [2005] = 418, - [2006] = 419, - [2007] = 420, - [2008] = 421, - [2009] = 422, + [2004] = 2004, + [2005] = 654, + [2006] = 2006, + [2007] = 669, + [2008] = 2008, + [2009] = 2009, [2010] = 2010, - [2011] = 423, - [2012] = 425, - [2013] = 426, - [2014] = 2014, - [2015] = 437, - [2016] = 403, + [2011] = 588, + [2012] = 645, + [2013] = 2013, + [2014] = 646, + [2015] = 647, + [2016] = 625, [2017] = 2017, [2018] = 2018, [2019] = 2019, [2020] = 2020, - [2021] = 2021, - [2022] = 2022, - [2023] = 404, - [2024] = 2024, + [2021] = 638, + [2022] = 642, + [2023] = 644, + [2024] = 593, [2025] = 2025, - [2026] = 398, - [2027] = 2027, - [2028] = 631, - [2029] = 603, - [2030] = 634, - [2031] = 606, - [2032] = 2032, - [2033] = 607, - [2034] = 608, - [2035] = 609, - [2036] = 2036, - [2037] = 438, - [2038] = 613, - [2039] = 614, - [2040] = 615, - [2041] = 637, - [2042] = 2042, - [2043] = 638, - [2044] = 617, - [2045] = 618, - [2046] = 619, - [2047] = 620, - [2048] = 621, - [2049] = 622, - [2050] = 623, - [2051] = 639, - [2052] = 640, - [2053] = 642, - [2054] = 643, - [2055] = 600, - [2056] = 2056, - [2057] = 1976, - [2058] = 1977, - [2059] = 2002, - [2060] = 685, - [2061] = 645, + [2026] = 594, + [2027] = 653, + [2028] = 655, + [2029] = 585, + [2030] = 586, + [2031] = 587, + [2032] = 592, + [2033] = 616, + [2034] = 595, + [2035] = 433, + [2036] = 596, + [2037] = 597, + [2038] = 598, + [2039] = 2039, + [2040] = 599, + [2041] = 600, + [2042] = 601, + [2043] = 604, + [2044] = 605, + [2045] = 606, + [2046] = 609, + [2047] = 610, + [2048] = 611, + [2049] = 612, + [2050] = 613, + [2051] = 614, + [2052] = 615, + [2053] = 2053, + [2054] = 417, + [2055] = 2055, + [2056] = 412, + [2057] = 2039, + [2058] = 2053, + [2059] = 2055, + [2060] = 2060, + [2061] = 2061, [2062] = 2062, - [2063] = 646, - [2064] = 647, - [2065] = 648, - [2066] = 649, - [2067] = 650, - [2068] = 651, - [2069] = 652, - [2070] = 2070, - [2071] = 653, - [2072] = 654, - [2073] = 2073, - [2074] = 428, - [2075] = 2075, - [2076] = 498, - [2077] = 475, - [2078] = 636, - [2079] = 521, - [2080] = 503, - [2081] = 2081, - [2082] = 504, - [2083] = 493, - [2084] = 1900, - [2085] = 1891, - [2086] = 531, - [2087] = 533, + [2063] = 508, + [2064] = 634, + [2065] = 377, + [2066] = 509, + [2067] = 628, + [2068] = 623, + [2069] = 378, + [2070] = 150, + [2071] = 380, + [2072] = 381, + [2073] = 507, + [2074] = 363, + [2075] = 506, + [2076] = 511, + [2077] = 641, + [2078] = 533, + [2079] = 2079, + [2080] = 626, + [2081] = 629, + [2082] = 635, + [2083] = 2083, + [2084] = 2084, + [2085] = 2085, + [2086] = 1905, + [2087] = 2087, [2088] = 2088, - [2089] = 2089, - [2090] = 2090, - [2091] = 530, - [2092] = 473, - [2093] = 508, - [2094] = 150, - [2095] = 509, - [2096] = 510, + [2089] = 649, + [2090] = 444, + [2091] = 461, + [2092] = 460, + [2093] = 1880, + [2094] = 2094, + [2095] = 2095, + [2096] = 2096, [2097] = 2097, [2098] = 2098, - [2099] = 1910, + [2099] = 441, [2100] = 2100, [2101] = 2101, [2102] = 2102, [2103] = 2103, [2104] = 2104, - [2105] = 2105, - [2106] = 375, + [2105] = 501, + [2106] = 2106, [2107] = 2107, [2108] = 2108, [2109] = 2109, [2110] = 2110, [2111] = 2111, [2112] = 2112, - [2113] = 632, - [2114] = 2114, + [2113] = 2113, + [2114] = 438, [2115] = 2115, [2116] = 2116, - [2117] = 2117, - [2118] = 633, - [2119] = 353, - [2120] = 2120, - [2121] = 2121, - [2122] = 540, - [2123] = 384, - [2124] = 488, - [2125] = 489, - [2126] = 2126, - [2127] = 490, - [2128] = 1924, - [2129] = 379, - [2130] = 2130, - [2131] = 602, - [2132] = 485, - [2133] = 370, - [2134] = 625, - [2135] = 604, - [2136] = 605, - [2137] = 459, - [2138] = 626, - [2139] = 610, - [2140] = 611, - [2141] = 612, - [2142] = 616, - [2143] = 630, + [2117] = 1843, + [2118] = 515, + [2119] = 651, + [2120] = 652, + [2121] = 515, + [2122] = 439, + [2123] = 666, + [2124] = 668, + [2125] = 2125, + [2126] = 590, + [2127] = 591, + [2128] = 2128, + [2129] = 521, + [2130] = 454, + [2131] = 1917, + [2132] = 2110, + [2133] = 2125, + [2134] = 667, + [2135] = 512, + [2136] = 463, + [2137] = 2079, + [2138] = 2125, + [2139] = 2125, + [2140] = 2125, + [2141] = 361, + [2142] = 440, + [2143] = 2143, [2144] = 2144, - [2145] = 2103, - [2146] = 2100, - [2147] = 635, - [2148] = 2103, - [2149] = 629, - [2150] = 2103, - [2151] = 2103, - [2152] = 361, - [2153] = 540, - [2154] = 2144, + [2145] = 2145, + [2146] = 2146, + [2147] = 2147, + [2148] = 2148, + [2149] = 2149, + [2150] = 2150, + [2151] = 2151, + [2152] = 2152, + [2153] = 2153, + [2154] = 137, [2155] = 2155, [2156] = 2156, - [2157] = 1911, - [2158] = 1912, - [2159] = 1913, + [2157] = 2157, + [2158] = 2158, + [2159] = 2159, [2160] = 2160, [2161] = 2161, - [2162] = 1914, + [2162] = 2162, [2163] = 2163, - [2164] = 1915, - [2165] = 1916, - [2166] = 521, + [2164] = 2164, + [2165] = 2165, + [2166] = 2166, [2167] = 2167, [2168] = 2168, - [2169] = 2169, + [2169] = 377, [2170] = 2170, - [2171] = 370, - [2172] = 337, - [2173] = 2173, + [2171] = 2171, + [2172] = 2172, + [2173] = 378, [2174] = 2174, - [2175] = 2160, - [2176] = 530, + [2175] = 2175, + [2176] = 2176, [2177] = 2177, [2178] = 2178, [2179] = 2179, [2180] = 2180, - [2181] = 508, + [2181] = 380, [2182] = 2182, [2183] = 2183, - [2184] = 2184, + [2184] = 381, [2185] = 2185, [2186] = 2186, [2187] = 2187, - [2188] = 504, + [2188] = 2188, [2189] = 2189, [2190] = 2190, [2191] = 2191, - [2192] = 509, + [2192] = 2192, [2193] = 2193, [2194] = 2194, [2195] = 2195, [2196] = 2196, - [2197] = 531, + [2197] = 2197, [2198] = 2198, - [2199] = 1917, - [2200] = 1918, - [2201] = 1919, - [2202] = 1920, + [2199] = 2199, + [2200] = 2200, + [2201] = 2201, + [2202] = 2202, [2203] = 2203, - [2204] = 533, + [2204] = 2204, [2205] = 2205, [2206] = 2206, - [2207] = 1921, - [2208] = 1922, - [2209] = 1923, - [2210] = 384, + [2207] = 2207, + [2208] = 2208, + [2209] = 2209, + [2210] = 2210, [2211] = 2211, [2212] = 2212, [2213] = 2213, [2214] = 2214, [2215] = 2215, [2216] = 2216, - [2217] = 2217, - [2218] = 510, + [2217] = 299, + [2218] = 2218, [2219] = 2219, - [2220] = 137, - [2221] = 2221, - [2222] = 1643, - [2223] = 2223, - [2224] = 379, - [2225] = 2225, - [2226] = 2226, - [2227] = 1690, - [2228] = 2228, - [2229] = 2229, - [2230] = 2230, - [2231] = 2231, - [2232] = 2232, - [2233] = 2233, + [2220] = 1908, + [2221] = 1919, + [2222] = 1927, + [2223] = 1928, + [2224] = 348, + [2225] = 1828, + [2226] = 1852, + [2227] = 2227, + [2228] = 1857, + [2229] = 1859, + [2230] = 1863, + [2231] = 1867, + [2232] = 1868, + [2233] = 1869, [2234] = 2234, [2235] = 2235, [2236] = 2236, [2237] = 2237, - [2238] = 302, + [2238] = 2238, [2239] = 2239, - [2240] = 2240, - [2241] = 2241, + [2240] = 515, + [2241] = 1667, [2242] = 2242, [2243] = 2243, [2244] = 2244, [2245] = 2245, [2246] = 2246, [2247] = 2247, - [2248] = 2248, - [2249] = 2249, - [2250] = 2250, + [2248] = 1669, + [2249] = 340, + [2250] = 1671, [2251] = 2251, [2252] = 2252, [2253] = 2253, [2254] = 2254, [2255] = 2255, - [2256] = 1580, - [2257] = 1581, + [2256] = 2256, + [2257] = 2257, [2258] = 2258, [2259] = 2259, [2260] = 2260, @@ -7432,71 +7414,71 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2262] = 2262, [2263] = 2263, [2264] = 2264, - [2265] = 2265, + [2265] = 349, [2266] = 2266, [2267] = 2267, - [2268] = 1583, - [2269] = 1584, - [2270] = 2270, + [2268] = 1611, + [2269] = 1539, + [2270] = 2254, [2271] = 2271, [2272] = 2272, [2273] = 2273, - [2274] = 339, - [2275] = 2275, - [2276] = 2276, - [2277] = 2169, + [2274] = 2274, + [2275] = 1540, + [2276] = 1544, + [2277] = 2277, [2278] = 2278, [2279] = 2279, [2280] = 2280, - [2281] = 540, + [2281] = 2281, [2282] = 2282, - [2283] = 2283, - [2284] = 2284, - [2285] = 2285, - [2286] = 2286, - [2287] = 2287, - [2288] = 2288, - [2289] = 2289, - [2290] = 2290, - [2291] = 338, + [2283] = 533, + [2284] = 507, + [2285] = 511, + [2286] = 501, + [2287] = 506, + [2288] = 521, + [2289] = 512, + [2290] = 2259, + [2291] = 2291, [2292] = 2292, - [2293] = 2293, - [2294] = 2294, + [2293] = 508, + [2294] = 509, [2295] = 2295, [2296] = 2296, - [2297] = 2297, - [2298] = 1689, + [2297] = 1853, + [2298] = 2298, [2299] = 2299, [2300] = 2300, - [2301] = 503, - [2302] = 2302, + [2301] = 2301, + [2302] = 139, [2303] = 2303, [2304] = 2304, [2305] = 2305, - [2306] = 2306, + [2306] = 349, [2307] = 2307, [2308] = 2308, - [2309] = 375, + [2309] = 2309, [2310] = 2310, [2311] = 2311, [2312] = 2312, [2313] = 2313, [2314] = 2314, - [2315] = 2315, - [2316] = 2316, + [2315] = 307, + [2316] = 308, [2317] = 2317, [2318] = 2318, [2319] = 2319, [2320] = 2320, [2321] = 2321, - [2322] = 319, + [2322] = 2322, [2323] = 2323, [2324] = 2324, - [2325] = 321, - [2326] = 2326, + [2325] = 2325, + [2326] = 565, [2327] = 2327, - [2328] = 2328, - [2329] = 322, + [2328] = 137, + [2329] = 2329, [2330] = 2330, [2331] = 2331, [2332] = 2332, @@ -7505,7 +7487,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2335] = 2335, [2336] = 2336, [2337] = 2337, - [2338] = 318, + [2338] = 2338, [2339] = 2339, [2340] = 2340, [2341] = 2341, @@ -7525,7 +7507,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2355] = 2355, [2356] = 2356, [2357] = 2357, - [2358] = 2358, + [2358] = 138, [2359] = 2359, [2360] = 2360, [2361] = 2361, @@ -7551,5398 +7533,5379 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [2381] = 2381, [2382] = 2382, [2383] = 2383, - [2384] = 2384, + [2384] = 307, [2385] = 2385, [2386] = 2386, [2387] = 2387, - [2388] = 319, - [2389] = 318, + [2388] = 2388, + [2389] = 2389, [2390] = 2390, [2391] = 2391, - [2392] = 338, + [2392] = 2392, [2393] = 2393, [2394] = 2394, [2395] = 2395, [2396] = 2396, - [2397] = 337, + [2397] = 2397, [2398] = 2398, - [2399] = 594, + [2399] = 2399, [2400] = 2400, - [2401] = 2401, - [2402] = 2402, + [2401] = 304, + [2402] = 305, [2403] = 2403, [2404] = 2404, - [2405] = 2405, - [2406] = 2406, + [2405] = 1671, + [2406] = 308, [2407] = 2407, [2408] = 2408, [2409] = 2409, [2410] = 2410, [2411] = 2411, [2412] = 2412, - [2413] = 137, + [2413] = 2413, [2414] = 2414, - [2415] = 2415, + [2415] = 340, [2416] = 2416, [2417] = 2417, [2418] = 2418, - [2419] = 2419, - [2420] = 2420, + [2419] = 2298, + [2420] = 2314, [2421] = 2421, - [2422] = 1689, - [2423] = 323, - [2424] = 2424, - [2425] = 2425, - [2426] = 139, - [2427] = 2427, + [2422] = 2422, + [2423] = 301, + [2424] = 2417, + [2425] = 2413, + [2426] = 2374, + [2427] = 2335, [2428] = 2428, [2429] = 2429, [2430] = 2430, - [2431] = 138, + [2431] = 2431, [2432] = 2432, [2433] = 2433, [2434] = 2434, - [2435] = 2435, - [2436] = 2366, - [2437] = 2420, - [2438] = 2438, - [2439] = 2439, - [2440] = 2440, - [2441] = 2441, - [2442] = 2442, - [2443] = 2350, - [2444] = 2414, - [2445] = 2439, - [2446] = 2395, - [2447] = 2447, - [2448] = 602, - [2449] = 2121, - [2450] = 326, - [2451] = 631, - [2452] = 614, - [2453] = 616, - [2454] = 615, - [2455] = 638, - [2456] = 685, - [2457] = 645, - [2458] = 646, - [2459] = 647, - [2460] = 648, - [2461] = 649, - [2462] = 604, - [2463] = 650, - [2464] = 651, + [2435] = 645, + [2436] = 2395, + [2437] = 2109, + [2438] = 2396, + [2439] = 623, + [2440] = 2111, + [2441] = 2087, + [2442] = 668, + [2443] = 646, + [2444] = 647, + [2445] = 2112, + [2446] = 625, + [2447] = 2113, + [2448] = 648, + [2449] = 141, + [2450] = 641, + [2451] = 2084, + [2452] = 324, + [2453] = 140, + [2454] = 330, + [2455] = 2085, + [2456] = 650, + [2457] = 333, + [2458] = 334, + [2459] = 335, + [2460] = 2088, + [2461] = 651, + [2462] = 649, + [2463] = 628, + [2464] = 666, [2465] = 652, - [2466] = 331, - [2467] = 617, - [2468] = 653, - [2469] = 605, - [2470] = 326, - [2471] = 618, - [2472] = 654, - [2473] = 2126, - [2474] = 619, - [2475] = 2475, - [2476] = 620, - [2477] = 138, - [2478] = 621, - [2479] = 2097, - [2480] = 603, - [2481] = 634, - [2482] = 635, - [2483] = 636, - [2484] = 2098, - [2485] = 2088, - [2486] = 2101, - [2487] = 2401, - [2488] = 2102, - [2489] = 2402, - [2490] = 2104, - [2491] = 2403, - [2492] = 622, - [2493] = 2105, - [2494] = 623, - [2495] = 2404, - [2496] = 2130, - [2497] = 2107, - [2498] = 2405, - [2499] = 2108, - [2500] = 2406, - [2501] = 637, - [2502] = 141, - [2503] = 140, - [2504] = 627, - [2505] = 2109, - [2506] = 2407, - [2507] = 2110, - [2508] = 2408, - [2509] = 2111, - [2510] = 2112, - [2511] = 2114, - [2512] = 2409, - [2513] = 2115, - [2514] = 2410, - [2515] = 2116, - [2516] = 2411, - [2517] = 2117, - [2518] = 2412, - [2519] = 2075, - [2520] = 606, - [2521] = 607, - [2522] = 608, - [2523] = 323, - [2524] = 640, - [2525] = 610, - [2526] = 2155, - [2527] = 609, - [2528] = 2120, - [2529] = 632, - [2530] = 633, - [2531] = 625, - [2532] = 2532, - [2533] = 331, - [2534] = 142, + [2466] = 653, + [2467] = 655, + [2468] = 585, + [2469] = 588, + [2470] = 601, + [2471] = 604, + [2472] = 2472, + [2473] = 586, + [2474] = 605, + [2475] = 606, + [2476] = 609, + [2477] = 587, + [2478] = 329, + [2479] = 610, + [2480] = 592, + [2481] = 590, + [2482] = 591, + [2483] = 324, + [2484] = 616, + [2485] = 2128, + [2486] = 330, + [2487] = 595, + [2488] = 611, + [2489] = 612, + [2490] = 613, + [2491] = 614, + [2492] = 2492, + [2493] = 615, + [2494] = 634, + [2495] = 654, + [2496] = 2094, + [2497] = 2115, + [2498] = 2385, + [2499] = 596, + [2500] = 301, + [2501] = 2095, + [2502] = 2386, + [2503] = 2096, + [2504] = 2504, + [2505] = 2387, + [2506] = 2097, + [2507] = 2388, + [2508] = 2098, + [2509] = 2389, + [2510] = 667, + [2511] = 2100, + [2512] = 626, + [2513] = 629, + [2514] = 635, + [2515] = 638, + [2516] = 642, + [2517] = 644, + [2518] = 2116, + [2519] = 142, + [2520] = 143, + [2521] = 593, + [2522] = 2083, + [2523] = 144, + [2524] = 515, + [2525] = 594, + [2526] = 2390, + [2527] = 145, + [2528] = 2101, + [2529] = 2391, + [2530] = 597, + [2531] = 2102, + [2532] = 2392, + [2533] = 598, + [2534] = 2103, [2535] = 139, - [2536] = 143, - [2537] = 626, - [2538] = 144, - [2539] = 333, - [2540] = 611, - [2541] = 2541, - [2542] = 613, - [2543] = 145, - [2544] = 628, - [2545] = 2090, - [2546] = 2089, - [2547] = 612, - [2548] = 334, - [2549] = 335, - [2550] = 629, - [2551] = 325, - [2552] = 630, - [2553] = 641, - [2554] = 642, - [2555] = 643, - [2556] = 600, - [2557] = 540, - [2558] = 639, - [2559] = 141, - [2560] = 148, - [2561] = 351, - [2562] = 337, - [2563] = 143, - [2564] = 140, - [2565] = 144, - [2566] = 339, - [2567] = 2567, - [2568] = 333, - [2569] = 341, + [2536] = 2104, + [2537] = 599, + [2538] = 2062, + [2539] = 2393, + [2540] = 138, + [2541] = 2107, + [2542] = 2394, + [2543] = 600, + [2544] = 2108, + [2545] = 669, + [2546] = 148, + [2547] = 340, + [2548] = 308, + [2549] = 2549, + [2550] = 143, + [2551] = 336, + [2552] = 336, + [2553] = 341, + [2554] = 2554, + [2555] = 343, + [2556] = 344, + [2557] = 341, + [2558] = 343, + [2559] = 344, + [2560] = 334, + [2561] = 144, + [2562] = 2562, + [2563] = 346, + [2564] = 335, + [2565] = 140, + [2566] = 2566, + [2567] = 348, + [2568] = 146, + [2569] = 1344, [2570] = 2570, - [2571] = 350, - [2572] = 2572, - [2573] = 342, - [2574] = 1373, - [2575] = 350, - [2576] = 340, - [2577] = 341, - [2578] = 334, - [2579] = 2579, - [2580] = 2580, - [2581] = 319, - [2582] = 325, - [2583] = 142, - [2584] = 2584, - [2585] = 342, - [2586] = 318, - [2587] = 2587, - [2588] = 2567, - [2589] = 2572, - [2590] = 137, - [2591] = 2570, - [2592] = 338, - [2593] = 147, - [2594] = 146, - [2595] = 2580, - [2596] = 2579, - [2597] = 2587, - [2598] = 145, - [2599] = 340, - [2600] = 335, - [2601] = 142, - [2602] = 138, - [2603] = 144, - [2604] = 2604, - [2605] = 338, + [2571] = 349, + [2572] = 145, + [2573] = 2573, + [2574] = 2574, + [2575] = 2566, + [2576] = 2554, + [2577] = 2562, + [2578] = 2570, + [2579] = 2549, + [2580] = 2573, + [2581] = 142, + [2582] = 333, + [2583] = 307, + [2584] = 147, + [2585] = 141, + [2586] = 137, + [2587] = 329, + [2588] = 147, + [2589] = 2589, + [2590] = 2590, + [2591] = 441, + [2592] = 145, + [2593] = 651, + [2594] = 2594, + [2595] = 668, + [2596] = 652, + [2597] = 2597, + [2598] = 2598, + [2599] = 2599, + [2600] = 361, + [2601] = 2601, + [2602] = 143, + [2603] = 2603, + [2604] = 363, + [2605] = 440, [2606] = 2606, [2607] = 137, - [2608] = 498, + [2608] = 2608, [2609] = 2609, - [2610] = 2610, - [2611] = 1643, + [2610] = 330, + [2611] = 2589, [2612] = 2612, - [2613] = 326, + [2613] = 2613, [2614] = 2614, - [2615] = 145, - [2616] = 2616, - [2617] = 2617, + [2615] = 2615, + [2616] = 1667, + [2617] = 2608, [2618] = 2618, [2619] = 2619, - [2620] = 630, - [2621] = 337, - [2622] = 2622, - [2623] = 635, - [2624] = 633, - [2625] = 1690, - [2626] = 2626, - [2627] = 2627, - [2628] = 636, - [2629] = 2604, - [2630] = 2619, - [2631] = 2631, - [2632] = 2614, - [2633] = 139, - [2634] = 2616, - [2635] = 2606, - [2636] = 2636, - [2637] = 361, - [2638] = 2638, - [2639] = 2610, - [2640] = 146, - [2641] = 2641, - [2642] = 2638, - [2643] = 2643, - [2644] = 2644, - [2645] = 2631, - [2646] = 150, - [2647] = 143, - [2648] = 2622, - [2649] = 629, - [2650] = 2650, - [2651] = 353, - [2652] = 632, - [2653] = 2636, - [2654] = 2654, - [2655] = 2643, - [2656] = 2616, - [2657] = 148, - [2658] = 2638, - [2659] = 2641, - [2660] = 331, - [2661] = 2616, - [2662] = 2638, - [2663] = 2663, - [2664] = 2622, - [2665] = 459, - [2666] = 2650, - [2667] = 2612, - [2668] = 2618, - [2669] = 2617, + [2620] = 2620, + [2621] = 2621, + [2622] = 1669, + [2623] = 2598, + [2624] = 2624, + [2625] = 139, + [2626] = 2589, + [2627] = 148, + [2628] = 2628, + [2629] = 2629, + [2630] = 2603, + [2631] = 2620, + [2632] = 150, + [2633] = 2618, + [2634] = 2590, + [2635] = 2628, + [2636] = 2629, + [2637] = 144, + [2638] = 142, + [2639] = 349, + [2640] = 666, + [2641] = 138, + [2642] = 340, + [2643] = 2612, + [2644] = 2619, + [2645] = 2618, + [2646] = 2628, + [2647] = 2618, + [2648] = 2628, + [2649] = 2613, + [2650] = 324, + [2651] = 2624, + [2652] = 2652, + [2653] = 2601, + [2654] = 2652, + [2655] = 590, + [2656] = 591, + [2657] = 2594, + [2658] = 146, + [2659] = 138, + [2660] = 433, + [2661] = 380, + [2662] = 590, + [2663] = 381, + [2664] = 142, + [2665] = 395, + [2666] = 396, + [2667] = 2667, + [2668] = 591, + [2669] = 2614, [2670] = 2670, - [2671] = 147, - [2672] = 414, - [2673] = 367, - [2674] = 350, - [2675] = 342, - [2676] = 340, - [2677] = 341, - [2678] = 371, - [2679] = 142, - [2680] = 143, - [2681] = 144, - [2682] = 145, + [2671] = 2671, + [2672] = 2615, + [2673] = 137, + [2674] = 150, + [2675] = 346, + [2676] = 666, + [2677] = 343, + [2678] = 344, + [2679] = 397, + [2680] = 2680, + [2681] = 668, + [2682] = 398, [2683] = 2683, - [2684] = 422, - [2685] = 2685, - [2686] = 423, - [2687] = 413, - [2688] = 351, - [2689] = 425, - [2690] = 629, - [2691] = 630, - [2692] = 2654, - [2693] = 426, - [2694] = 339, - [2695] = 375, - [2696] = 415, - [2697] = 384, - [2698] = 379, - [2699] = 370, - [2700] = 632, - [2701] = 633, - [2702] = 2702, - [2703] = 351, - [2704] = 416, - [2705] = 410, - [2706] = 2663, - [2707] = 498, - [2708] = 428, - [2709] = 437, - [2710] = 339, - [2711] = 398, - [2712] = 635, - [2713] = 636, - [2714] = 417, - [2715] = 139, - [2716] = 412, - [2717] = 138, - [2718] = 1690, - [2719] = 2719, + [2684] = 441, + [2685] = 346, + [2686] = 348, + [2687] = 145, + [2688] = 607, + [2689] = 399, + [2690] = 400, + [2691] = 2691, + [2692] = 406, + [2693] = 408, + [2694] = 412, + [2695] = 402, + [2696] = 403, + [2697] = 2697, + [2698] = 139, + [2699] = 348, + [2700] = 2700, + [2701] = 371, + [2702] = 2597, + [2703] = 2606, + [2704] = 1667, + [2705] = 2670, + [2706] = 651, + [2707] = 652, + [2708] = 2708, + [2709] = 2621, + [2710] = 414, + [2711] = 2609, + [2712] = 422, + [2713] = 2599, + [2714] = 377, + [2715] = 336, + [2716] = 1669, + [2717] = 143, + [2718] = 145, + [2719] = 428, [2720] = 2720, [2721] = 2721, - [2722] = 2626, - [2723] = 142, - [2724] = 2627, - [2725] = 2670, - [2726] = 2609, - [2727] = 143, - [2728] = 144, - [2729] = 150, - [2730] = 145, - [2731] = 1643, - [2732] = 404, - [2733] = 560, - [2734] = 2734, - [2735] = 2735, - [2736] = 403, - [2737] = 438, - [2738] = 418, - [2739] = 419, - [2740] = 420, - [2741] = 141, - [2742] = 140, - [2743] = 2743, - [2744] = 421, - [2745] = 2745, - [2746] = 2746, - [2747] = 2702, - [2748] = 2746, - [2749] = 2644, - [2750] = 137, - [2751] = 411, - [2752] = 459, - [2753] = 143, - [2754] = 416, - [2755] = 422, - [2756] = 139, - [2757] = 302, - [2758] = 423, - [2759] = 2759, - [2760] = 425, - [2761] = 426, - [2762] = 2762, - [2763] = 2763, - [2764] = 418, - [2765] = 428, - [2766] = 2766, - [2767] = 419, - [2768] = 142, - [2769] = 319, - [2770] = 2770, - [2771] = 2759, - [2772] = 662, - [2773] = 437, - [2774] = 420, - [2775] = 417, - [2776] = 144, - [2777] = 138, - [2778] = 2721, - [2779] = 351, - [2780] = 141, - [2781] = 140, - [2782] = 411, - [2783] = 421, - [2784] = 351, - [2785] = 2763, - [2786] = 412, - [2787] = 148, - [2788] = 361, - [2789] = 145, - [2790] = 353, - [2791] = 438, - [2792] = 147, - [2793] = 146, - [2794] = 339, - [2795] = 2762, - [2796] = 339, - [2797] = 190, - [2798] = 413, - [2799] = 361, - [2800] = 137, - [2801] = 414, - [2802] = 415, - [2803] = 353, - [2804] = 2804, - [2805] = 490, - [2806] = 2806, - [2807] = 438, - [2808] = 425, - [2809] = 2809, - [2810] = 190, - [2811] = 426, - [2812] = 150, - [2813] = 473, - [2814] = 2814, - [2815] = 2815, - [2816] = 428, - [2817] = 190, - [2818] = 370, - [2819] = 411, - [2820] = 412, - [2821] = 437, - [2822] = 413, - [2823] = 361, - [2824] = 191, - [2825] = 414, - [2826] = 2826, - [2827] = 353, - [2828] = 2828, - [2829] = 141, - [2830] = 415, - [2831] = 2831, + [2722] = 425, + [2723] = 370, + [2724] = 143, + [2725] = 417, + [2726] = 401, + [2727] = 384, + [2728] = 440, + [2729] = 385, + [2730] = 142, + [2731] = 389, + [2732] = 144, + [2733] = 378, + [2734] = 341, + [2735] = 141, + [2736] = 140, + [2737] = 144, + [2738] = 390, + [2739] = 2691, + [2740] = 2740, + [2741] = 137, + [2742] = 2742, + [2743] = 406, + [2744] = 142, + [2745] = 408, + [2746] = 143, + [2747] = 144, + [2748] = 412, + [2749] = 145, + [2750] = 414, + [2751] = 422, + [2752] = 425, + [2753] = 384, + [2754] = 385, + [2755] = 389, + [2756] = 390, + [2757] = 395, + [2758] = 396, + [2759] = 397, + [2760] = 398, + [2761] = 399, + [2762] = 400, + [2763] = 402, + [2764] = 2721, + [2765] = 361, + [2766] = 363, + [2767] = 2767, + [2768] = 346, + [2769] = 346, + [2770] = 361, + [2771] = 363, + [2772] = 348, + [2773] = 348, + [2774] = 2742, + [2775] = 2775, + [2776] = 2767, + [2777] = 2777, + [2778] = 307, + [2779] = 139, + [2780] = 138, + [2781] = 680, + [2782] = 141, + [2783] = 140, + [2784] = 2777, + [2785] = 147, + [2786] = 148, + [2787] = 146, + [2788] = 190, + [2789] = 299, + [2790] = 403, + [2791] = 396, + [2792] = 144, + [2793] = 363, + [2794] = 377, + [2795] = 305, + [2796] = 378, + [2797] = 145, + [2798] = 380, + [2799] = 381, + [2800] = 143, + [2801] = 385, + [2802] = 389, + [2803] = 2803, + [2804] = 390, + [2805] = 2805, + [2806] = 395, + [2807] = 324, + [2808] = 397, + [2809] = 398, + [2810] = 399, + [2811] = 400, + [2812] = 402, + [2813] = 403, + [2814] = 191, + [2815] = 190, + [2816] = 377, + [2817] = 441, + [2818] = 378, + [2819] = 2819, + [2820] = 1571, + [2821] = 2821, + [2822] = 141, + [2823] = 140, + [2824] = 380, + [2825] = 454, + [2826] = 607, + [2827] = 2827, + [2828] = 381, + [2829] = 2829, + [2830] = 414, + [2831] = 142, [2832] = 2832, - [2833] = 140, - [2834] = 361, - [2835] = 493, - [2836] = 560, - [2837] = 2837, - [2838] = 384, - [2839] = 416, - [2840] = 302, - [2841] = 148, - [2842] = 353, - [2843] = 459, - [2844] = 322, - [2845] = 137, - [2846] = 321, - [2847] = 417, - [2848] = 375, - [2849] = 418, - [2850] = 419, - [2851] = 384, - [2852] = 1611, - [2853] = 2815, - [2854] = 379, - [2855] = 370, - [2856] = 2832, - [2857] = 420, - [2858] = 2858, - [2859] = 379, - [2860] = 421, - [2861] = 331, - [2862] = 422, - [2863] = 475, - [2864] = 423, - [2865] = 147, - [2866] = 146, - [2867] = 375, - [2868] = 498, - [2869] = 139, - [2870] = 138, - [2871] = 142, - [2872] = 488, - [2873] = 143, - [2874] = 144, - [2875] = 145, - [2876] = 326, - [2877] = 2804, - [2878] = 489, - [2879] = 2858, - [2880] = 322, - [2881] = 540, - [2882] = 321, - [2883] = 498, - [2884] = 493, - [2885] = 142, - [2886] = 143, - [2887] = 473, - [2888] = 144, - [2889] = 145, - [2890] = 540, - [2891] = 339, - [2892] = 521, - [2893] = 531, - [2894] = 489, - [2895] = 533, - [2896] = 503, - [2897] = 459, - [2898] = 475, - [2899] = 351, - [2900] = 350, - [2901] = 504, - [2902] = 2902, - [2903] = 2903, - [2904] = 191, - [2905] = 490, - [2906] = 340, - [2907] = 139, - [2908] = 594, - [2909] = 148, - [2910] = 150, - [2911] = 342, - [2912] = 508, - [2913] = 339, - [2914] = 138, - [2915] = 375, - [2916] = 384, - [2917] = 2917, - [2918] = 379, - [2919] = 662, - [2920] = 370, - [2921] = 191, - [2922] = 375, - [2923] = 2923, - [2924] = 384, - [2925] = 379, - [2926] = 370, - [2927] = 147, - [2928] = 146, - [2929] = 190, + [2833] = 2833, + [2834] = 2819, + [2835] = 2832, + [2836] = 2833, + [2837] = 147, + [2838] = 330, + [2839] = 438, + [2840] = 422, + [2841] = 425, + [2842] = 439, + [2843] = 148, + [2844] = 146, + [2845] = 299, + [2846] = 444, + [2847] = 461, + [2848] = 460, + [2849] = 150, + [2850] = 2829, + [2851] = 408, + [2852] = 406, + [2853] = 361, + [2854] = 412, + [2855] = 384, + [2856] = 363, + [2857] = 137, + [2858] = 361, + [2859] = 304, + [2860] = 190, + [2861] = 440, + [2862] = 2862, + [2863] = 139, + [2864] = 138, + [2865] = 2865, + [2866] = 2866, + [2867] = 147, + [2868] = 2868, + [2869] = 346, + [2870] = 508, + [2871] = 191, + [2872] = 348, + [2873] = 377, + [2874] = 509, + [2875] = 378, + [2876] = 380, + [2877] = 381, + [2878] = 377, + [2879] = 2879, + [2880] = 378, + [2881] = 515, + [2882] = 380, + [2883] = 381, + [2884] = 307, + [2885] = 308, + [2886] = 2886, + [2887] = 438, + [2888] = 346, + [2889] = 439, + [2890] = 343, + [2891] = 348, + [2892] = 565, + [2893] = 680, + [2894] = 148, + [2895] = 146, + [2896] = 341, + [2897] = 1628, + [2898] = 190, + [2899] = 533, + [2900] = 444, + [2901] = 521, + [2902] = 507, + [2903] = 336, + [2904] = 501, + [2905] = 506, + [2906] = 461, + [2907] = 454, + [2908] = 150, + [2909] = 142, + [2910] = 143, + [2911] = 144, + [2912] = 304, + [2913] = 460, + [2914] = 440, + [2915] = 145, + [2916] = 191, + [2917] = 139, + [2918] = 344, + [2919] = 138, + [2920] = 521, + [2921] = 512, + [2922] = 508, + [2923] = 1671, + [2924] = 441, + [2925] = 509, + [2926] = 515, + [2927] = 141, + [2928] = 140, + [2929] = 305, [2930] = 2930, - [2931] = 1640, - [2932] = 1689, - [2933] = 319, - [2934] = 318, - [2935] = 341, - [2936] = 510, - [2937] = 141, - [2938] = 140, - [2939] = 509, - [2940] = 488, - [2941] = 530, - [2942] = 351, - [2943] = 531, - [2944] = 533, - [2945] = 530, - [2946] = 339, - [2947] = 643, - [2948] = 318, - [2949] = 1643, - [2950] = 144, - [2951] = 600, - [2952] = 634, - [2953] = 145, - [2954] = 640, - [2955] = 635, - [2956] = 150, - [2957] = 647, - [2958] = 638, - [2959] = 632, - [2960] = 648, - [2961] = 685, - [2962] = 636, + [2931] = 2931, + [2932] = 511, + [2933] = 635, + [2934] = 601, + [2935] = 604, + [2936] = 605, + [2937] = 2937, + [2938] = 606, + [2939] = 2939, + [2940] = 588, + [2941] = 1766, + [2942] = 1667, + [2943] = 591, + [2944] = 150, + [2945] = 594, + [2946] = 2946, + [2947] = 565, + [2948] = 611, + [2949] = 2949, + [2950] = 2950, + [2951] = 667, + [2952] = 346, + [2953] = 191, + [2954] = 2954, + [2955] = 609, + [2956] = 1669, + [2957] = 324, + [2958] = 142, + [2959] = 190, + [2960] = 634, + [2961] = 648, + [2962] = 612, [2963] = 2963, - [2964] = 145, - [2965] = 2965, - [2966] = 361, - [2967] = 602, - [2968] = 1727, - [2969] = 641, - [2970] = 353, - [2971] = 1728, - [2972] = 650, - [2973] = 2973, - [2974] = 651, - [2975] = 2975, - [2976] = 604, - [2977] = 594, - [2978] = 1293, - [2979] = 560, - [2980] = 142, - [2981] = 1690, - [2982] = 639, - [2983] = 625, - [2984] = 652, - [2985] = 629, - [2986] = 2986, - [2987] = 2987, - [2988] = 605, - [2989] = 646, - [2990] = 351, - [2991] = 141, - [2992] = 633, - [2993] = 630, - [2994] = 144, - [2995] = 2975, - [2996] = 2996, - [2997] = 1730, - [2998] = 140, - [2999] = 331, - [3000] = 626, - [3001] = 610, - [3002] = 2986, - [3003] = 612, - [3004] = 1731, - [3005] = 326, - [3006] = 3006, - [3007] = 2987, - [3008] = 611, - [3009] = 645, - [3010] = 3010, - [3011] = 653, - [3012] = 319, - [3013] = 637, - [3014] = 148, - [3015] = 654, - [3016] = 191, - [3017] = 3010, - [3018] = 3018, - [3019] = 147, - [3020] = 3018, - [3021] = 146, - [3022] = 616, - [3023] = 631, - [3024] = 318, - [3025] = 642, - [3026] = 627, - [3027] = 361, - [3028] = 143, - [3029] = 2996, - [3030] = 142, - [3031] = 353, - [3032] = 649, - [3033] = 143, - [3034] = 190, - [3035] = 628, - [3036] = 649, - [3037] = 654, - [3038] = 370, - [3039] = 148, - [3040] = 473, - [3041] = 607, - [3042] = 608, - [3043] = 351, - [3044] = 609, - [3045] = 627, - [3046] = 3046, - [3047] = 3047, - [3048] = 3048, - [3049] = 3049, - [3050] = 628, - [3051] = 631, - [3052] = 606, - [3053] = 530, - [3054] = 3054, - [3055] = 3055, - [3056] = 594, - [3057] = 3057, - [3058] = 2963, - [3059] = 613, - [3060] = 361, - [3061] = 531, - [3062] = 533, + [2964] = 330, + [2965] = 651, + [2966] = 597, + [2967] = 2967, + [2968] = 2963, + [2969] = 652, + [2970] = 613, + [2971] = 2971, + [2972] = 2972, + [2973] = 143, + [2974] = 614, + [2975] = 2949, + [2976] = 2950, + [2977] = 650, + [2978] = 629, + [2979] = 641, + [2980] = 598, + [2981] = 626, + [2982] = 595, + [2983] = 307, + [2984] = 144, + [2985] = 1764, + [2986] = 666, + [2987] = 668, + [2988] = 361, + [2989] = 308, + [2990] = 649, + [2991] = 1235, + [2992] = 2967, + [2993] = 145, + [2994] = 596, + [2995] = 141, + [2996] = 140, + [2997] = 361, + [2998] = 363, + [2999] = 593, + [3000] = 623, + [3001] = 1771, + [3002] = 1772, + [3003] = 363, + [3004] = 610, + [3005] = 142, + [3006] = 615, + [3007] = 2971, + [3008] = 2972, + [3009] = 147, + [3010] = 143, + [3011] = 144, + [3012] = 654, + [3013] = 590, + [3014] = 308, + [3015] = 148, + [3016] = 146, + [3017] = 628, + [3018] = 348, + [3019] = 145, + [3020] = 600, + [3021] = 607, + [3022] = 599, + [3023] = 380, + [3024] = 594, + [3025] = 565, + [3026] = 645, + [3027] = 3027, + [3028] = 378, + [3029] = 646, + [3030] = 147, + [3031] = 647, + [3032] = 438, + [3033] = 625, + [3034] = 377, + [3035] = 669, + [3036] = 324, + [3037] = 595, + [3038] = 439, + [3039] = 596, + [3040] = 148, + [3041] = 146, + [3042] = 597, + [3043] = 598, + [3044] = 599, + [3045] = 600, + [3046] = 601, + [3047] = 346, + [3048] = 191, + [3049] = 650, + [3050] = 604, + [3051] = 361, + [3052] = 605, + [3053] = 606, + [3054] = 190, + [3055] = 381, + [3056] = 609, + [3057] = 587, + [3058] = 610, + [3059] = 378, + [3060] = 611, + [3061] = 612, + [3062] = 613, [3063] = 614, [3064] = 615, - [3065] = 475, - [3066] = 142, - [3067] = 3067, - [3068] = 1293, - [3069] = 662, - [3070] = 143, - [3071] = 634, - [3072] = 603, - [3073] = 144, - [3074] = 350, - [3075] = 339, - [3076] = 375, - [3077] = 3077, - [3078] = 147, - [3079] = 342, - [3080] = 146, - [3081] = 145, - [3082] = 340, - [3083] = 341, - [3084] = 331, - [3085] = 617, - [3086] = 540, - [3087] = 618, - [3088] = 190, - [3089] = 619, + [3065] = 648, + [3066] = 336, + [3067] = 588, + [3068] = 3068, + [3069] = 521, + [3070] = 381, + [3071] = 380, + [3072] = 586, + [3073] = 508, + [3074] = 509, + [3075] = 638, + [3076] = 642, + [3077] = 653, + [3078] = 644, + [3079] = 341, + [3080] = 654, + [3081] = 616, + [3082] = 377, + [3083] = 142, + [3084] = 3084, + [3085] = 655, + [3086] = 143, + [3087] = 144, + [3088] = 343, + [3089] = 145, [3090] = 3090, - [3091] = 620, - [3092] = 637, - [3093] = 326, - [3094] = 621, - [3095] = 622, - [3096] = 623, - [3097] = 191, - [3098] = 638, - [3099] = 150, - [3100] = 384, - [3101] = 375, - [3102] = 639, - [3103] = 379, - [3104] = 640, - [3105] = 641, - [3106] = 642, - [3107] = 643, - [3108] = 600, - [3109] = 685, - [3110] = 645, - [3111] = 384, - [3112] = 379, - [3113] = 370, - [3114] = 646, - [3115] = 647, - [3116] = 648, - [3117] = 650, - [3118] = 651, - [3119] = 652, - [3120] = 653, - [3121] = 353, - [3122] = 646, + [3091] = 344, + [3092] = 330, + [3093] = 3093, + [3094] = 3094, + [3095] = 680, + [3096] = 363, + [3097] = 585, + [3098] = 515, + [3099] = 3099, + [3100] = 3100, + [3101] = 2937, + [3102] = 1235, + [3103] = 593, + [3104] = 3104, + [3105] = 3105, + [3106] = 150, + [3107] = 348, + [3108] = 592, + [3109] = 377, + [3110] = 438, + [3111] = 596, + [3112] = 646, + [3113] = 595, + [3114] = 647, + [3115] = 599, + [3116] = 363, + [3117] = 625, + [3118] = 3118, + [3119] = 439, + [3120] = 2939, + [3121] = 3121, + [3122] = 3122, [3123] = 3123, - [3124] = 3124, - [3125] = 144, - [3126] = 615, - [3127] = 370, - [3128] = 353, - [3129] = 634, - [3130] = 339, - [3131] = 685, - [3132] = 641, - [3133] = 645, + [3124] = 341, + [3125] = 638, + [3126] = 588, + [3127] = 142, + [3128] = 597, + [3129] = 600, + [3130] = 653, + [3131] = 143, + [3132] = 655, + [3133] = 144, [3134] = 3134, - [3135] = 638, - [3136] = 651, - [3137] = 622, + [3135] = 585, + [3136] = 586, + [3137] = 587, [3138] = 3138, - [3139] = 3139, - [3140] = 3140, - [3141] = 614, - [3142] = 618, - [3143] = 350, - [3144] = 627, - [3145] = 3145, - [3146] = 3146, - [3147] = 603, - [3148] = 623, - [3149] = 342, - [3150] = 619, - [3151] = 475, - [3152] = 617, - [3153] = 652, - [3154] = 142, - [3155] = 340, - [3156] = 642, - [3157] = 631, - [3158] = 3158, - [3159] = 600, - [3160] = 647, - [3161] = 648, - [3162] = 639, - [3163] = 3163, + [3139] = 145, + [3140] = 592, + [3141] = 3141, + [3142] = 616, + [3143] = 378, + [3144] = 343, + [3145] = 191, + [3146] = 648, + [3147] = 601, + [3148] = 604, + [3149] = 605, + [3150] = 606, + [3151] = 609, + [3152] = 380, + [3153] = 344, + [3154] = 381, + [3155] = 650, + [3156] = 3156, + [3157] = 645, + [3158] = 642, + [3159] = 610, + [3160] = 644, + [3161] = 346, + [3162] = 611, + [3163] = 150, [3164] = 3164, - [3165] = 653, - [3166] = 628, - [3167] = 2965, - [3168] = 2973, - [3169] = 375, - [3170] = 654, + [3165] = 654, + [3166] = 612, + [3167] = 613, + [3168] = 348, + [3169] = 3169, + [3170] = 614, [3171] = 361, - [3172] = 3172, - [3173] = 351, - [3174] = 150, - [3175] = 191, - [3176] = 643, - [3177] = 607, - [3178] = 143, - [3179] = 620, - [3180] = 649, - [3181] = 473, - [3182] = 384, - [3183] = 640, - [3184] = 621, - [3185] = 609, - [3186] = 613, - [3187] = 606, - [3188] = 379, - [3189] = 3189, - [3190] = 650, - [3191] = 608, - [3192] = 145, - [3193] = 637, - [3194] = 341, - [3195] = 384, - [3196] = 379, - [3197] = 371, + [3172] = 669, + [3173] = 593, + [3174] = 615, + [3175] = 594, + [3176] = 2946, + [3177] = 3177, + [3178] = 3178, + [3179] = 3179, + [3180] = 598, + [3181] = 336, + [3182] = 363, + [3183] = 3183, + [3184] = 361, + [3185] = 378, + [3186] = 371, + [3187] = 377, + [3188] = 380, + [3189] = 381, + [3190] = 370, + [3191] = 3191, + [3192] = 3192, + [3193] = 370, + [3194] = 371, + [3195] = 3195, + [3196] = 3196, + [3197] = 3197, [3198] = 3198, - [3199] = 367, - [3200] = 361, - [3201] = 375, - [3202] = 370, - [3203] = 353, - [3204] = 351, - [3205] = 3205, - [3206] = 370, - [3207] = 367, - [3208] = 371, - [3209] = 3209, - [3210] = 3210, - [3211] = 375, - [3212] = 384, - [3213] = 379, - [3214] = 3214, - [3215] = 3215, - [3216] = 3216, - [3217] = 339, - [3218] = 3124, - [3219] = 3214, - [3220] = 3215, - [3221] = 3216, - [3222] = 3222, + [3199] = 381, + [3200] = 3195, + [3201] = 3201, + [3202] = 3202, + [3203] = 3196, + [3204] = 3201, + [3205] = 3198, + [3206] = 346, + [3207] = 3207, + [3208] = 3191, + [3209] = 380, + [3210] = 348, + [3211] = 3197, + [3212] = 3192, + [3213] = 377, + [3214] = 3156, + [3215] = 378, + [3216] = 3202, + [3217] = 363, + [3218] = 3207, + [3219] = 361, + [3220] = 348, + [3221] = 346, + [3222] = 363, [3223] = 3223, - [3224] = 3205, - [3225] = 3209, - [3226] = 3210, - [3227] = 3227, - [3228] = 3222, - [3229] = 3223, - [3230] = 3227, - [3231] = 351, - [3232] = 339, - [3233] = 361, - [3234] = 353, - [3235] = 533, - [3236] = 370, - [3237] = 521, - [3238] = 503, - [3239] = 504, - [3240] = 508, - [3241] = 509, - [3242] = 361, - [3243] = 353, - [3244] = 3244, - [3245] = 3245, - [3246] = 375, - [3247] = 384, - [3248] = 3248, - [3249] = 379, - [3250] = 531, - [3251] = 510, - [3252] = 530, - [3253] = 540, - [3254] = 504, - [3255] = 3255, - [3256] = 530, - [3257] = 503, - [3258] = 531, - [3259] = 533, - [3260] = 508, - [3261] = 510, - [3262] = 384, - [3263] = 509, - [3264] = 521, - [3265] = 379, - [3266] = 370, - [3267] = 1689, - [3268] = 540, - [3269] = 375, - [3270] = 2408, - [3271] = 2412, - [3272] = 3272, - [3273] = 3273, - [3274] = 1689, - [3275] = 3272, - [3276] = 3276, - [3277] = 3277, - [3278] = 3278, - [3279] = 2433, - [3280] = 2311, - [3281] = 2425, - [3282] = 2365, - [3283] = 2398, - [3284] = 2367, - [3285] = 2441, - [3286] = 2396, - [3287] = 2421, - [3288] = 2373, - [3289] = 2417, - [3290] = 2440, - [3291] = 1814, - [3292] = 3272, - [3293] = 2351, - [3294] = 2355, - [3295] = 2358, - [3296] = 2361, - [3297] = 2363, - [3298] = 2364, - [3299] = 2368, - [3300] = 2370, - [3301] = 2371, - [3302] = 2376, - [3303] = 2382, - [3304] = 2447, - [3305] = 2390, - [3306] = 2391, - [3307] = 2393, - [3308] = 2394, - [3309] = 2400, - [3310] = 2416, - [3311] = 2418, - [3312] = 2419, - [3313] = 2424, - [3314] = 2427, - [3315] = 2428, - [3316] = 2429, - [3317] = 2430, - [3318] = 2434, - [3319] = 2435, - [3320] = 2438, - [3321] = 2442, - [3322] = 2387, - [3323] = 2312, - [3324] = 2313, - [3325] = 2314, - [3326] = 2315, - [3327] = 2316, - [3328] = 2317, - [3329] = 3329, - [3330] = 2319, - [3331] = 2320, - [3332] = 2321, - [3333] = 2323, - [3334] = 2324, - [3335] = 2326, - [3336] = 2327, - [3337] = 2328, - [3338] = 2330, - [3339] = 2331, - [3340] = 2332, - [3341] = 2333, - [3342] = 2334, - [3343] = 2335, - [3344] = 2336, - [3345] = 2337, - [3346] = 2339, - [3347] = 2340, - [3348] = 2341, - [3349] = 2342, - [3350] = 2343, - [3351] = 2344, - [3352] = 2345, - [3353] = 2346, - [3354] = 2347, - [3355] = 2348, - [3356] = 2349, - [3357] = 2352, - [3358] = 2353, - [3359] = 2354, - [3360] = 2356, - [3361] = 2357, - [3362] = 2359, - [3363] = 2360, - [3364] = 2362, - [3365] = 3365, - [3366] = 2372, - [3367] = 2374, - [3368] = 2375, - [3369] = 2377, - [3370] = 2378, - [3371] = 2379, - [3372] = 2380, - [3373] = 2381, - [3374] = 2383, - [3375] = 2384, - [3376] = 2385, - [3377] = 2386, + [3224] = 501, + [3225] = 512, + [3226] = 380, + [3227] = 507, + [3228] = 381, + [3229] = 515, + [3230] = 361, + [3231] = 521, + [3232] = 377, + [3233] = 533, + [3234] = 506, + [3235] = 3235, + [3236] = 378, + [3237] = 3237, + [3238] = 508, + [3239] = 509, + [3240] = 511, + [3241] = 521, + [3242] = 377, + [3243] = 511, + [3244] = 507, + [3245] = 1671, + [3246] = 378, + [3247] = 533, + [3248] = 508, + [3249] = 506, + [3250] = 381, + [3251] = 515, + [3252] = 501, + [3253] = 380, + [3254] = 509, + [3255] = 512, + [3256] = 3256, + [3257] = 2368, + [3258] = 3258, + [3259] = 3259, + [3260] = 3260, + [3261] = 3261, + [3262] = 1671, + [3263] = 3263, + [3264] = 3264, + [3265] = 299, + [3266] = 3266, + [3267] = 2318, + [3268] = 2320, + [3269] = 2323, + [3270] = 2329, + [3271] = 2332, + [3272] = 2336, + [3273] = 2341, + [3274] = 2346, + [3275] = 2355, + [3276] = 2359, + [3277] = 2361, + [3278] = 2364, + [3279] = 3266, + [3280] = 2428, + [3281] = 2430, + [3282] = 2432, + [3283] = 2411, + [3284] = 2412, + [3285] = 2379, + [3286] = 2350, + [3287] = 2324, + [3288] = 2383, + [3289] = 2305, + [3290] = 2313, + [3291] = 2345, + [3292] = 2367, + [3293] = 2376, + [3294] = 2398, + [3295] = 2404, + [3296] = 2372, + [3297] = 2431, + [3298] = 2331, + [3299] = 2334, + [3300] = 2382, + [3301] = 2408, + [3302] = 2304, + [3303] = 2309, + [3304] = 2312, + [3305] = 2327, + [3306] = 2344, + [3307] = 2348, + [3308] = 2356, + [3309] = 2366, + [3310] = 2370, + [3311] = 2377, + [3312] = 2400, + [3313] = 2403, + [3314] = 2418, + [3315] = 2365, + [3316] = 2325, + [3317] = 2399, + [3318] = 2340, + [3319] = 2434, + [3320] = 2410, + [3321] = 2308, + [3322] = 2362, + [3323] = 2407, + [3324] = 2414, + [3325] = 2433, + [3326] = 2321, + [3327] = 2333, + [3328] = 2352, + [3329] = 2369, + [3330] = 2380, + [3331] = 2409, + [3332] = 2416, + [3333] = 2421, + [3334] = 2300, + [3335] = 2311, + [3336] = 2330, + [3337] = 2338, + [3338] = 2347, + [3339] = 2354, + [3340] = 2363, + [3341] = 2378, + [3342] = 2381, + [3343] = 2422, + [3344] = 2429, + [3345] = 2299, + [3346] = 2301, + [3347] = 2303, + [3348] = 2310, + [3349] = 2319, + [3350] = 2322, + [3351] = 2337, + [3352] = 2339, + [3353] = 2342, + [3354] = 2349, + [3355] = 2351, + [3356] = 2353, + [3357] = 2357, + [3358] = 2360, + [3359] = 2371, + [3360] = 2373, + [3361] = 2375, + [3362] = 2385, + [3363] = 2386, + [3364] = 2387, + [3365] = 2388, + [3366] = 2389, + [3367] = 2390, + [3368] = 2391, + [3369] = 2392, + [3370] = 2393, + [3371] = 2394, + [3372] = 2395, + [3373] = 2396, + [3374] = 1709, + [3375] = 3266, + [3376] = 3376, + [3377] = 2397, [3378] = 3378, - [3379] = 302, - [3380] = 2401, - [3381] = 2402, - [3382] = 2403, - [3383] = 2404, - [3384] = 2405, - [3385] = 2406, - [3386] = 2407, - [3387] = 2409, - [3388] = 2410, - [3389] = 2411, - [3390] = 2318, - [3391] = 2405, - [3392] = 2404, - [3393] = 2412, - [3394] = 322, - [3395] = 2406, - [3396] = 2407, - [3397] = 3397, - [3398] = 3398, - [3399] = 3399, - [3400] = 3397, - [3401] = 2408, - [3402] = 2409, - [3403] = 302, - [3404] = 3404, - [3405] = 321, - [3406] = 2410, - [3407] = 2411, - [3408] = 3408, - [3409] = 3409, - [3410] = 3410, - [3411] = 3245, - [3412] = 3244, - [3413] = 3404, - [3414] = 3399, - [3415] = 1814, - [3416] = 2401, - [3417] = 2402, - [3418] = 2403, - [3419] = 3409, - [3420] = 321, - [3421] = 318, - [3422] = 322, - [3423] = 3423, - [3424] = 3423, - [3425] = 1359, - [3426] = 319, - [3427] = 323, + [3379] = 2396, + [3380] = 1709, + [3381] = 3381, + [3382] = 3382, + [3383] = 305, + [3384] = 3384, + [3385] = 3384, + [3386] = 3235, + [3387] = 3237, + [3388] = 3388, + [3389] = 3389, + [3390] = 3382, + [3391] = 304, + [3392] = 3381, + [3393] = 2385, + [3394] = 2386, + [3395] = 2387, + [3396] = 2388, + [3397] = 299, + [3398] = 2389, + [3399] = 2390, + [3400] = 2391, + [3401] = 2395, + [3402] = 2392, + [3403] = 3378, + [3404] = 2393, + [3405] = 2394, + [3406] = 3406, + [3407] = 3407, + [3408] = 308, + [3409] = 307, + [3410] = 301, + [3411] = 1331, + [3412] = 305, + [3413] = 3407, + [3414] = 304, + [3415] = 3415, + [3416] = 1396, + [3417] = 1385, + [3418] = 3418, + [3419] = 3419, + [3420] = 3420, + [3421] = 3421, + [3422] = 324, + [3423] = 330, + [3424] = 308, + [3425] = 307, + [3426] = 3426, + [3427] = 3427, [3428] = 3428, - [3429] = 560, - [3430] = 1293, + [3429] = 3429, + [3430] = 3419, [3431] = 3431, - [3432] = 1387, + [3432] = 1235, [3433] = 3433, [3434] = 3434, - [3435] = 3435, - [3436] = 1418, - [3437] = 3437, - [3438] = 3435, - [3439] = 331, - [3440] = 326, - [3441] = 318, - [3442] = 319, - [3443] = 3443, - [3444] = 3444, - [3445] = 3428, - [3446] = 3446, - [3447] = 3447, - [3448] = 3448, - [3449] = 3444, - [3450] = 333, - [3451] = 334, - [3452] = 335, - [3453] = 325, - [3454] = 3437, - [3455] = 3443, - [3456] = 3428, - [3457] = 3446, - [3458] = 3447, - [3459] = 3448, - [3460] = 3460, - [3461] = 3431, - [3462] = 3437, - [3463] = 3443, - [3464] = 3446, - [3465] = 3447, - [3466] = 3448, - [3467] = 3460, - [3468] = 3431, - [3469] = 3460, - [3470] = 3470, - [3471] = 340, - [3472] = 3472, - [3473] = 341, - [3474] = 1293, - [3475] = 331, - [3476] = 351, - [3477] = 662, - [3478] = 350, - [3479] = 326, - [3480] = 339, - [3481] = 3481, - [3482] = 3482, - [3483] = 342, - [3484] = 353, - [3485] = 340, - [3486] = 190, - [3487] = 342, - [3488] = 341, - [3489] = 3489, - [3490] = 350, - [3491] = 318, - [3492] = 361, - [3493] = 351, - [3494] = 339, - [3495] = 379, - [3496] = 384, - [3497] = 370, - [3498] = 361, - [3499] = 375, - [3500] = 353, - [3501] = 191, - [3502] = 371, - [3503] = 367, - [3504] = 351, - [3505] = 379, - [3506] = 319, - [3507] = 367, - [3508] = 384, - [3509] = 3124, - [3510] = 375, - [3511] = 370, - [3512] = 318, - [3513] = 371, - [3514] = 339, - [3515] = 339, - [3516] = 331, - [3517] = 318, - [3518] = 353, - [3519] = 326, - [3520] = 319, - [3521] = 351, - [3522] = 361, - [3523] = 340, - [3524] = 533, - [3525] = 3525, - [3526] = 3526, - [3527] = 509, - [3528] = 370, - [3529] = 361, - [3530] = 341, - [3531] = 353, - [3532] = 540, - [3533] = 508, - [3534] = 530, - [3535] = 326, - [3536] = 504, - [3537] = 1891, - [3538] = 485, - [3539] = 531, - [3540] = 1910, - [3541] = 1924, - [3542] = 510, - [3543] = 342, - [3544] = 384, - [3545] = 503, - [3546] = 350, - [3547] = 331, - [3548] = 379, - [3549] = 3549, - [3550] = 493, - [3551] = 488, - [3552] = 489, - [3553] = 490, - [3554] = 375, - [3555] = 521, - [3556] = 1900, - [3557] = 3557, - [3558] = 2376, - [3559] = 2382, - [3560] = 2447, - [3561] = 2390, - [3562] = 2391, - [3563] = 342, - [3564] = 2393, - [3565] = 2394, - [3566] = 2400, - [3567] = 1689, - [3568] = 2416, - [3569] = 2418, - [3570] = 2419, - [3571] = 2424, - [3572] = 2427, - [3573] = 2428, - [3574] = 2429, - [3575] = 2430, - [3576] = 2434, - [3577] = 2435, - [3578] = 2438, - [3579] = 2442, - [3580] = 2387, - [3581] = 2312, - [3582] = 2313, - [3583] = 2314, - [3584] = 2315, - [3585] = 2316, - [3586] = 2317, - [3587] = 2440, - [3588] = 531, - [3589] = 533, - [3590] = 339, - [3591] = 2318, - [3592] = 2319, - [3593] = 2320, - [3594] = 2321, - [3595] = 2323, + [3435] = 329, + [3436] = 333, + [3437] = 334, + [3438] = 335, + [3439] = 607, + [3440] = 3418, + [3441] = 3420, + [3442] = 3421, + [3443] = 3431, + [3444] = 3433, + [3445] = 3434, + [3446] = 3426, + [3447] = 3415, + [3448] = 3427, + [3449] = 3420, + [3450] = 3421, + [3451] = 3431, + [3452] = 3433, + [3453] = 3434, + [3454] = 3426, + [3455] = 3427, + [3456] = 3415, + [3457] = 346, + [3458] = 341, + [3459] = 348, + [3460] = 343, + [3461] = 344, + [3462] = 1235, + [3463] = 680, + [3464] = 324, + [3465] = 3465, + [3466] = 330, + [3467] = 3467, + [3468] = 3468, + [3469] = 3469, + [3470] = 336, + [3471] = 308, + [3472] = 190, + [3473] = 363, + [3474] = 346, + [3475] = 336, + [3476] = 3476, + [3477] = 341, + [3478] = 361, + [3479] = 343, + [3480] = 344, + [3481] = 348, + [3482] = 361, + [3483] = 363, + [3484] = 381, + [3485] = 380, + [3486] = 377, + [3487] = 370, + [3488] = 371, + [3489] = 378, + [3490] = 191, + [3491] = 380, + [3492] = 370, + [3493] = 348, + [3494] = 377, + [3495] = 307, + [3496] = 346, + [3497] = 3156, + [3498] = 378, + [3499] = 371, + [3500] = 381, + [3501] = 308, + [3502] = 307, + [3503] = 324, + [3504] = 361, + [3505] = 308, + [3506] = 363, + [3507] = 330, + [3508] = 348, + [3509] = 346, + [3510] = 515, + [3511] = 336, + [3512] = 378, + [3513] = 533, + [3514] = 380, + [3515] = 3515, + [3516] = 381, + [3517] = 511, + [3518] = 377, + [3519] = 508, + [3520] = 343, + [3521] = 506, + [3522] = 509, + [3523] = 521, + [3524] = 341, + [3525] = 361, + [3526] = 507, + [3527] = 463, + [3528] = 1917, + [3529] = 1905, + [3530] = 1880, + [3531] = 324, + [3532] = 363, + [3533] = 501, + [3534] = 512, + [3535] = 3535, + [3536] = 330, + [3537] = 3537, + [3538] = 454, + [3539] = 444, + [3540] = 461, + [3541] = 460, + [3542] = 344, + [3543] = 1843, + [3544] = 512, + [3545] = 377, + [3546] = 2370, + [3547] = 2365, + [3548] = 378, + [3549] = 2325, + [3550] = 380, + [3551] = 381, + [3552] = 2399, + [3553] = 3553, + [3554] = 3553, + [3555] = 506, + [3556] = 2340, + [3557] = 515, + [3558] = 343, + [3559] = 1671, + [3560] = 507, + [3561] = 3553, + [3562] = 2434, + [3563] = 2410, + [3564] = 341, + [3565] = 521, + [3566] = 508, + [3567] = 2318, + [3568] = 2320, + [3569] = 2323, + [3570] = 2329, + [3571] = 2332, + [3572] = 2336, + [3573] = 509, + [3574] = 2341, + [3575] = 2346, + [3576] = 2355, + [3577] = 2359, + [3578] = 2308, + [3579] = 2361, + [3580] = 2364, + [3581] = 2362, + [3582] = 2407, + [3583] = 2414, + [3584] = 2433, + [3585] = 2321, + [3586] = 2333, + [3587] = 2352, + [3588] = 2428, + [3589] = 2430, + [3590] = 2432, + [3591] = 2411, + [3592] = 2412, + [3593] = 2369, + [3594] = 2379, + [3595] = 2350, [3596] = 2324, - [3597] = 2326, - [3598] = 375, - [3599] = 2327, - [3600] = 2328, - [3601] = 384, - [3602] = 2330, - [3603] = 379, - [3604] = 370, - [3605] = 2331, - [3606] = 2332, - [3607] = 2333, - [3608] = 504, - [3609] = 2334, - [3610] = 340, - [3611] = 2335, - [3612] = 2336, - [3613] = 2337, - [3614] = 2339, - [3615] = 2340, - [3616] = 508, - [3617] = 2341, - [3618] = 2342, - [3619] = 2343, - [3620] = 2344, - [3621] = 509, - [3622] = 2345, - [3623] = 2346, - [3624] = 2347, - [3625] = 2348, - [3626] = 2349, - [3627] = 2352, - [3628] = 2421, + [3597] = 2383, + [3598] = 2305, + [3599] = 2313, + [3600] = 2345, + [3601] = 2367, + [3602] = 2376, + [3603] = 2398, + [3604] = 2404, + [3605] = 2372, + [3606] = 2431, + [3607] = 2380, + [3608] = 2348, + [3609] = 344, + [3610] = 2416, + [3611] = 3553, + [3612] = 2421, + [3613] = 2331, + [3614] = 2334, + [3615] = 3553, + [3616] = 2300, + [3617] = 2311, + [3618] = 3553, + [3619] = 2382, + [3620] = 2408, + [3621] = 3553, + [3622] = 2330, + [3623] = 2304, + [3624] = 2309, + [3625] = 336, + [3626] = 2312, + [3627] = 2338, + [3628] = 2347, [3629] = 2354, - [3630] = 530, - [3631] = 2433, - [3632] = 2311, - [3633] = 2356, - [3634] = 2357, - [3635] = 2359, - [3636] = 2360, - [3637] = 3557, - [3638] = 2425, - [3639] = 2362, - [3640] = 3557, - [3641] = 2365, - [3642] = 2372, - [3643] = 2374, - [3644] = 3557, - [3645] = 3557, - [3646] = 2375, - [3647] = 2377, - [3648] = 2378, - [3649] = 3557, - [3650] = 2379, - [3651] = 2380, - [3652] = 2381, - [3653] = 2383, - [3654] = 2384, - [3655] = 2398, - [3656] = 2367, - [3657] = 2385, - [3658] = 2386, - [3659] = 2373, - [3660] = 341, - [3661] = 521, - [3662] = 2417, - [3663] = 2351, - [3664] = 2355, - [3665] = 2358, - [3666] = 2361, - [3667] = 2441, - [3668] = 3557, - [3669] = 2363, - [3670] = 510, - [3671] = 503, - [3672] = 540, - [3673] = 2364, - [3674] = 2368, - [3675] = 350, - [3676] = 2370, - [3677] = 2371, - [3678] = 2396, - [3679] = 2353, + [3630] = 2363, + [3631] = 511, + [3632] = 2378, + [3633] = 2381, + [3634] = 501, + [3635] = 2422, + [3636] = 2429, + [3637] = 2299, + [3638] = 2301, + [3639] = 2303, + [3640] = 2310, + [3641] = 2319, + [3642] = 2322, + [3643] = 2337, + [3644] = 2339, + [3645] = 2342, + [3646] = 2349, + [3647] = 2351, + [3648] = 2353, + [3649] = 2357, + [3650] = 348, + [3651] = 2360, + [3652] = 2368, + [3653] = 2371, + [3654] = 2373, + [3655] = 2375, + [3656] = 2327, + [3657] = 2377, + [3658] = 2397, + [3659] = 2356, + [3660] = 2400, + [3661] = 2403, + [3662] = 2418, + [3663] = 2366, + [3664] = 533, + [3665] = 2344, + [3666] = 2409, + [3667] = 3667, + [3668] = 1671, + [3669] = 3669, + [3670] = 3670, + [3671] = 3671, + [3672] = 3672, + [3673] = 3667, + [3674] = 3674, + [3675] = 3675, + [3676] = 3676, + [3677] = 3677, + [3678] = 3678, + [3679] = 3679, [3680] = 3680, [3681] = 3681, [3682] = 3682, [3683] = 3683, - [3684] = 3684, + [3684] = 3669, [3685] = 3685, [3686] = 3686, [3687] = 3687, [3688] = 3688, - [3689] = 3689, + [3689] = 3667, [3690] = 3690, [3691] = 3691, - [3692] = 3692, + [3692] = 3685, [3693] = 3693, [3694] = 3694, [3695] = 3695, - [3696] = 3696, + [3696] = 3685, [3697] = 3697, [3698] = 3698, [3699] = 3699, [3700] = 3700, [3701] = 3701, - [3702] = 3682, - [3703] = 3700, + [3702] = 2386, + [3703] = 3687, [3704] = 3704, - [3705] = 1689, - [3706] = 3682, - [3707] = 3700, - [3708] = 3708, - [3709] = 3709, - [3710] = 3697, - [3711] = 3711, - [3712] = 3712, - [3713] = 3713, - [3714] = 3714, - [3715] = 3715, - [3716] = 2404, - [3717] = 3715, - [3718] = 2405, - [3719] = 2406, - [3720] = 2407, - [3721] = 2408, - [3722] = 2409, - [3723] = 2406, - [3724] = 2410, - [3725] = 2411, - [3726] = 2412, - [3727] = 2402, - [3728] = 2407, - [3729] = 2408, - [3730] = 2403, - [3731] = 3715, - [3732] = 2403, - [3733] = 3712, - [3734] = 2402, - [3735] = 3715, - [3736] = 3736, - [3737] = 3688, + [3705] = 3704, + [3706] = 3706, + [3707] = 3701, + [3708] = 3704, + [3709] = 2385, + [3710] = 2387, + [3711] = 2388, + [3712] = 2389, + [3713] = 2390, + [3714] = 2391, + [3715] = 2392, + [3716] = 2393, + [3717] = 2395, + [3718] = 2396, + [3719] = 3704, + [3720] = 3704, + [3721] = 3704, + [3722] = 3704, + [3723] = 3704, + [3724] = 2385, + [3725] = 2386, + [3726] = 2387, + [3727] = 2388, + [3728] = 2389, + [3729] = 2390, + [3730] = 2391, + [3731] = 3731, + [3732] = 2392, + [3733] = 2393, + [3734] = 2394, + [3735] = 2395, + [3736] = 2396, + [3737] = 2394, [3738] = 3738, - [3739] = 2412, - [3740] = 3715, - [3741] = 3715, - [3742] = 2410, - [3743] = 3715, - [3744] = 2411, - [3745] = 2404, - [3746] = 2401, - [3747] = 3715, - [3748] = 2405, - [3749] = 2401, - [3750] = 2409, - [3751] = 3751, - [3752] = 3752, - [3753] = 3753, - [3754] = 3754, - [3755] = 3755, - [3756] = 3755, - [3757] = 3757, - [3758] = 3755, - [3759] = 3759, - [3760] = 3757, - [3761] = 3753, - [3762] = 3751, - [3763] = 3752, - [3764] = 3764, - [3765] = 3755, - [3766] = 3759, - [3767] = 3754, - [3768] = 3755, - [3769] = 3755, - [3770] = 150, - [3771] = 3764, - [3772] = 302, - [3773] = 323, - [3774] = 322, - [3775] = 321, - [3776] = 302, + [3739] = 3738, + [3740] = 3738, + [3741] = 3738, + [3742] = 3742, + [3743] = 3743, + [3744] = 3744, + [3745] = 3745, + [3746] = 3738, + [3747] = 3747, + [3748] = 3747, + [3749] = 3749, + [3750] = 3750, + [3751] = 3744, + [3752] = 3742, + [3753] = 3745, + [3754] = 3738, + [3755] = 3749, + [3756] = 3750, + [3757] = 150, + [3758] = 299, + [3759] = 3743, + [3760] = 305, + [3761] = 299, + [3762] = 301, + [3763] = 304, + [3764] = 301, + [3765] = 307, + [3766] = 304, + [3767] = 334, + [3768] = 335, + [3769] = 308, + [3770] = 299, + [3771] = 333, + [3772] = 329, + [3773] = 305, + [3774] = 307, + [3775] = 329, + [3776] = 137, [3777] = 333, - [3778] = 325, - [3779] = 323, - [3780] = 302, - [3781] = 319, - [3782] = 318, - [3783] = 321, - [3784] = 322, - [3785] = 334, - [3786] = 335, - [3787] = 321, - [3788] = 323, - [3789] = 322, - [3790] = 319, - [3791] = 333, - [3792] = 318, - [3793] = 331, - [3794] = 326, - [3795] = 335, - [3796] = 334, - [3797] = 325, - [3798] = 137, - [3799] = 1293, - [3800] = 302, - [3801] = 340, - [3802] = 318, - [3803] = 137, + [3778] = 334, + [3779] = 335, + [3780] = 301, + [3781] = 1235, + [3782] = 330, + [3783] = 304, + [3784] = 305, + [3785] = 299, + [3786] = 308, + [3787] = 324, + [3788] = 346, + [3789] = 324, + [3790] = 341, + [3791] = 343, + [3792] = 348, + [3793] = 344, + [3794] = 336, + [3795] = 304, + [3796] = 137, + [3797] = 329, + [3798] = 305, + [3799] = 301, + [3800] = 330, + [3801] = 307, + [3802] = 1235, + [3803] = 333, [3804] = 334, [3805] = 335, - [3806] = 325, - [3807] = 326, - [3808] = 342, - [3809] = 333, - [3810] = 351, - [3811] = 319, - [3812] = 321, - [3813] = 341, - [3814] = 339, - [3815] = 322, - [3816] = 1293, - [3817] = 331, - [3818] = 323, - [3819] = 350, - [3820] = 335, - [3821] = 319, - [3822] = 341, - [3823] = 342, - [3824] = 339, - [3825] = 361, - [3826] = 1293, - [3827] = 353, - [3828] = 318, - [3829] = 350, - [3830] = 325, - [3831] = 334, + [3806] = 308, + [3807] = 348, + [3808] = 333, + [3809] = 341, + [3810] = 344, + [3811] = 307, + [3812] = 1235, + [3813] = 324, + [3814] = 190, + [3815] = 343, + [3816] = 330, + [3817] = 346, + [3818] = 329, + [3819] = 363, + [3820] = 361, + [3821] = 334, + [3822] = 299, + [3823] = 336, + [3824] = 335, + [3825] = 308, + [3826] = 378, + [3827] = 381, + [3828] = 336, + [3829] = 1235, + [3830] = 377, + [3831] = 304, [3832] = 340, - [3833] = 326, - [3834] = 331, - [3835] = 333, - [3836] = 351, - [3837] = 190, - [3838] = 302, - [3839] = 340, - [3840] = 342, - [3841] = 361, - [3842] = 319, - [3843] = 353, - [3844] = 318, - [3845] = 337, - [3846] = 321, - [3847] = 323, - [3848] = 375, - [3849] = 384, - [3850] = 379, - [3851] = 370, - [3852] = 367, - [3853] = 338, - [3854] = 322, - [3855] = 351, - [3856] = 341, - [3857] = 326, - [3858] = 350, - [3859] = 371, - [3860] = 137, - [3861] = 339, - [3862] = 331, - [3863] = 191, - [3864] = 1293, - [3865] = 325, - [3866] = 338, - [3867] = 379, - [3868] = 367, - [3869] = 371, - [3870] = 351, - [3871] = 370, - [3872] = 139, - [3873] = 375, - [3874] = 339, - [3875] = 384, - [3876] = 137, - [3877] = 339, - [3878] = 353, - [3879] = 341, - [3880] = 351, - [3881] = 1373, - [3882] = 326, - [3883] = 333, - [3884] = 334, - [3885] = 340, - [3886] = 342, - [3887] = 138, - [3888] = 350, - [3889] = 335, - [3890] = 361, - [3891] = 330, - [3892] = 337, - [3893] = 331, - [3894] = 342, - [3895] = 339, - [3896] = 337, - [3897] = 145, - [3898] = 340, - [3899] = 3899, + [3833] = 305, + [3834] = 371, + [3835] = 348, + [3836] = 349, + [3837] = 341, + [3838] = 346, + [3839] = 330, + [3840] = 361, + [3841] = 343, + [3842] = 307, + [3843] = 344, + [3844] = 363, + [3845] = 191, + [3846] = 308, + [3847] = 137, + [3848] = 370, + [3849] = 301, + [3850] = 380, + [3851] = 324, + [3852] = 333, + [3853] = 370, + [3854] = 343, + [3855] = 378, + [3856] = 330, + [3857] = 341, + [3858] = 324, + [3859] = 363, + [3860] = 139, + [3861] = 380, + [3862] = 381, + [3863] = 346, + [3864] = 377, + [3865] = 137, + [3866] = 346, + [3867] = 328, + [3868] = 371, + [3869] = 348, + [3870] = 336, + [3871] = 138, + [3872] = 1344, + [3873] = 334, + [3874] = 335, + [3875] = 344, + [3876] = 329, + [3877] = 348, + [3878] = 340, + [3879] = 349, + [3880] = 361, + [3881] = 343, + [3882] = 141, + [3883] = 144, + [3884] = 344, + [3885] = 381, + [3886] = 363, + [3887] = 378, + [3888] = 145, + [3889] = 3889, + [3890] = 346, + [3891] = 142, + [3892] = 143, + [3893] = 139, + [3894] = 1344, + [3895] = 142, + [3896] = 140, + [3897] = 144, + [3898] = 348, + [3899] = 371, [3900] = 3900, - [3901] = 3901, - [3902] = 341, - [3903] = 143, - [3904] = 3904, - [3905] = 137, - [3906] = 351, - [3907] = 138, - [3908] = 144, - [3909] = 141, - [3910] = 140, - [3911] = 1373, - [3912] = 139, - [3913] = 339, - [3914] = 361, - [3915] = 353, - [3916] = 142, - [3917] = 371, - [3918] = 351, - [3919] = 367, - [3920] = 361, - [3921] = 145, - [3922] = 142, - [3923] = 370, - [3924] = 350, - [3925] = 144, - [3926] = 338, - [3927] = 143, - [3928] = 384, - [3929] = 379, - [3930] = 353, - [3931] = 485, - [3932] = 493, - [3933] = 488, - [3934] = 489, - [3935] = 490, - [3936] = 375, - [3937] = 419, - [3938] = 143, - [3939] = 415, - [3940] = 3940, - [3941] = 411, - [3942] = 438, - [3943] = 141, - [3944] = 416, - [3945] = 412, - [3946] = 531, - [3947] = 423, - [3948] = 375, - [3949] = 425, - [3950] = 533, - [3951] = 384, - [3952] = 2644, - [3953] = 379, - [3954] = 370, - [3955] = 2654, - [3956] = 3900, - [3957] = 426, - [3958] = 147, - [3959] = 367, - [3960] = 432, - [3961] = 433, - [3962] = 3962, - [3963] = 417, - [3964] = 428, - [3965] = 146, - [3966] = 418, - [3967] = 503, - [3968] = 361, - [3969] = 2626, - [3970] = 434, - [3971] = 3971, - [3972] = 371, - [3973] = 353, - [3974] = 398, - [3975] = 148, - [3976] = 145, - [3977] = 504, - [3978] = 375, - [3979] = 509, - [3980] = 351, - [3981] = 410, - [3982] = 540, - [3983] = 2670, - [3984] = 2609, - [3985] = 404, - [3986] = 2663, - [3987] = 3901, - [3988] = 384, - [3989] = 493, - [3990] = 485, - [3991] = 488, - [3992] = 489, - [3993] = 490, - [3994] = 141, - [3995] = 140, - [3996] = 138, - [3997] = 142, - [3998] = 2627, - [3999] = 3999, - [4000] = 361, - [4001] = 437, - [4002] = 510, - [4003] = 370, - [4004] = 339, - [4005] = 353, - [4006] = 4006, - [4007] = 521, - [4008] = 420, - [4009] = 421, - [4010] = 422, - [4011] = 530, - [4012] = 379, - [4013] = 139, - [4014] = 3899, - [4015] = 403, - [4016] = 413, - [4017] = 414, - [4018] = 144, - [4019] = 508, - [4020] = 140, - [4021] = 1689, - [4022] = 415, - [4023] = 432, - [4024] = 433, - [4025] = 416, - [4026] = 426, - [4027] = 414, - [4028] = 361, - [4029] = 485, - [4030] = 404, - [4031] = 3962, - [4032] = 4032, - [4033] = 498, - [4034] = 4034, - [4035] = 510, - [4036] = 521, - [4037] = 339, - [4038] = 375, - [4039] = 384, - [4040] = 367, - [4041] = 379, - [4042] = 370, - [4043] = 428, - [4044] = 150, - [4045] = 437, - [4046] = 3940, - [4047] = 4047, - [4048] = 371, - [4049] = 503, - [4050] = 504, - [4051] = 410, - [4052] = 4052, - [4053] = 4006, - [4054] = 434, - [4055] = 3971, - [4056] = 403, - [4057] = 540, - [4058] = 508, - [4059] = 4032, - [4060] = 375, - [4061] = 384, - [4062] = 379, - [4063] = 370, - [4064] = 417, - [4065] = 425, - [4066] = 509, - [4067] = 147, - [4068] = 488, - [4069] = 489, - [4070] = 4070, - [4071] = 531, - [4072] = 533, - [4073] = 148, - [4074] = 142, - [4075] = 351, - [4076] = 143, - [4077] = 144, - [4078] = 418, - [4079] = 146, - [4080] = 490, - [4081] = 473, - [4082] = 413, - [4083] = 493, - [4084] = 145, - [4085] = 419, - [4086] = 4086, - [4087] = 420, - [4088] = 438, - [4089] = 421, - [4090] = 459, - [4091] = 353, - [4092] = 4092, - [4093] = 422, - [4094] = 4094, + [3901] = 349, + [3902] = 361, + [3903] = 346, + [3904] = 348, + [3905] = 3905, + [3906] = 341, + [3907] = 336, + [3908] = 363, + [3909] = 3909, + [3910] = 143, + [3911] = 380, + [3912] = 137, + [3913] = 340, + [3914] = 145, + [3915] = 463, + [3916] = 454, + [3917] = 444, + [3918] = 461, + [3919] = 460, + [3920] = 370, + [3921] = 377, + [3922] = 138, + [3923] = 361, + [3924] = 403, + [3925] = 389, + [3926] = 431, + [3927] = 432, + [3928] = 3928, + [3929] = 390, + [3930] = 406, + [3931] = 395, + [3932] = 2597, + [3933] = 361, + [3934] = 396, + [3935] = 397, + [3936] = 2599, + [3937] = 363, + [3938] = 398, + [3939] = 142, + [3940] = 381, + [3941] = 399, + [3942] = 463, + [3943] = 400, + [3944] = 402, + [3945] = 515, + [3946] = 429, + [3947] = 377, + [3948] = 533, + [3949] = 378, + [3950] = 380, + [3951] = 381, + [3952] = 417, + [3953] = 346, + [3954] = 2606, + [3955] = 2615, + [3956] = 3956, + [3957] = 428, + [3958] = 401, + [3959] = 145, + [3960] = 370, + [3961] = 377, + [3962] = 361, + [3963] = 363, + [3964] = 3964, + [3965] = 380, + [3966] = 3966, + [3967] = 3967, + [3968] = 2621, + [3969] = 139, + [3970] = 3909, + [3971] = 3900, + [3972] = 3905, + [3973] = 2609, + [3974] = 141, + [3975] = 140, + [3976] = 507, + [3977] = 138, + [3978] = 511, + [3979] = 512, + [3980] = 147, + [3981] = 144, + [3982] = 2614, + [3983] = 501, + [3984] = 433, + [3985] = 408, + [3986] = 412, + [3987] = 454, + [3988] = 506, + [3989] = 444, + [3990] = 461, + [3991] = 460, + [3992] = 148, + [3993] = 146, + [3994] = 378, + [3995] = 143, + [3996] = 509, + [3997] = 414, + [3998] = 422, + [3999] = 425, + [4000] = 141, + [4001] = 140, + [4002] = 384, + [4003] = 521, + [4004] = 371, + [4005] = 348, + [4006] = 385, + [4007] = 508, + [4008] = 385, + [4009] = 148, + [4010] = 3964, + [4011] = 378, + [4012] = 3966, + [4013] = 461, + [4014] = 3967, + [4015] = 4015, + [4016] = 4016, + [4017] = 4015, + [4018] = 433, + [4019] = 440, + [4020] = 508, + [4021] = 509, + [4022] = 4022, + [4023] = 146, + [4024] = 417, + [4025] = 380, + [4026] = 381, + [4027] = 363, + [4028] = 370, + [4029] = 425, + [4030] = 1671, + [4031] = 511, + [4032] = 148, + [4033] = 146, + [4034] = 147, + [4035] = 4035, + [4036] = 4036, + [4037] = 4015, + [4038] = 384, + [4039] = 428, + [4040] = 4040, + [4041] = 4041, + [4042] = 402, + [4043] = 454, + [4044] = 377, + [4045] = 399, + [4046] = 521, + [4047] = 439, + [4048] = 512, + [4049] = 533, + [4050] = 460, + [4051] = 4051, + [4052] = 346, + [4053] = 389, + [4054] = 371, + [4055] = 429, + [4056] = 390, + [4057] = 3956, + [4058] = 377, + [4059] = 403, + [4060] = 348, + [4061] = 378, + [4062] = 361, + [4063] = 380, + [4064] = 381, + [4065] = 150, + [4066] = 501, + [4067] = 438, + [4068] = 142, + [4069] = 431, + [4070] = 507, + [4071] = 432, + [4072] = 395, + [4073] = 396, + [4074] = 143, + [4075] = 144, + [4076] = 4076, + [4077] = 3928, + [4078] = 414, + [4079] = 422, + [4080] = 463, + [4081] = 506, + [4082] = 145, + [4083] = 515, + [4084] = 441, + [4085] = 406, + [4086] = 408, + [4087] = 412, + [4088] = 401, + [4089] = 397, + [4090] = 400, + [4091] = 147, + [4092] = 398, + [4093] = 444, + [4094] = 4015, [4095] = 4095, - [4096] = 4032, - [4097] = 4032, - [4098] = 475, - [4099] = 423, - [4100] = 398, - [4101] = 148, - [4102] = 411, - [4103] = 147, - [4104] = 146, - [4105] = 3999, - [4106] = 412, - [4107] = 530, - [4108] = 493, + [4096] = 4096, + [4097] = 1571, + [4098] = 346, + [4099] = 508, + [4100] = 4100, + [4101] = 4101, + [4102] = 509, + [4103] = 4103, + [4104] = 1542, + [4105] = 417, + [4106] = 4106, + [4107] = 4107, + [4108] = 4108, [4109] = 4109, [4110] = 4110, - [4111] = 4111, - [4112] = 361, - [4113] = 4113, + [4111] = 137, + [4112] = 4112, + [4113] = 454, [4114] = 4114, [4115] = 4115, [4116] = 4116, [4117] = 4117, - [4118] = 508, + [4118] = 4118, [4119] = 4119, - [4120] = 4120, + [4120] = 348, [4121] = 4121, [4122] = 4122, - [4123] = 4123, + [4123] = 401, [4124] = 4124, [4125] = 4125, [4126] = 4126, [4127] = 4127, - [4128] = 540, + [4128] = 395, [4129] = 4129, - [4130] = 318, - [4131] = 4131, - [4132] = 510, + [4130] = 4130, + [4131] = 396, + [4132] = 397, [4133] = 4133, [4134] = 4134, [4135] = 4135, [4136] = 4136, [4137] = 4137, [4138] = 4138, - [4139] = 375, + [4139] = 4139, [4140] = 4140, [4141] = 4141, [4142] = 4142, [4143] = 4143, - [4144] = 4144, + [4144] = 399, [4145] = 4145, [4146] = 4146, [4147] = 4147, [4148] = 4148, [4149] = 4149, - [4150] = 4150, + [4150] = 1671, [4151] = 4151, [4152] = 4152, - [4153] = 4153, + [4153] = 400, [4154] = 4154, [4155] = 4155, - [4156] = 4156, - [4157] = 4157, + [4156] = 402, + [4157] = 515, [4158] = 4158, [4159] = 4159, - [4160] = 438, + [4160] = 4160, [4161] = 4161, [4162] = 4162, [4163] = 4163, - [4164] = 339, - [4165] = 4165, - [4166] = 4166, + [4164] = 4164, + [4165] = 398, + [4166] = 380, [4167] = 4167, - [4168] = 4168, + [4168] = 308, [4169] = 4169, [4170] = 4170, [4171] = 4171, - [4172] = 531, - [4173] = 353, + [4172] = 4172, + [4173] = 4173, [4174] = 4174, [4175] = 4175, [4176] = 4176, [4177] = 4177, [4178] = 4178, [4179] = 4179, - [4180] = 4180, - [4181] = 4181, - [4182] = 4182, + [4180] = 406, + [4181] = 1611, + [4182] = 1539, [4183] = 4183, [4184] = 4184, [4185] = 4185, [4186] = 4186, - [4187] = 4187, - [4188] = 4188, - [4189] = 4189, - [4190] = 4190, - [4191] = 411, - [4192] = 412, + [4187] = 1540, + [4188] = 1544, + [4189] = 521, + [4190] = 512, + [4191] = 4191, + [4192] = 433, [4193] = 4193, - [4194] = 4194, - [4195] = 4086, + [4194] = 361, + [4195] = 4195, [4196] = 4196, [4197] = 4197, - [4198] = 530, + [4198] = 463, [4199] = 4199, - [4200] = 4200, + [4200] = 377, [4201] = 4201, - [4202] = 498, - [4203] = 384, + [4202] = 4202, + [4203] = 4203, [4204] = 4204, [4205] = 4205, - [4206] = 485, + [4206] = 4206, [4207] = 4207, [4208] = 4208, [4209] = 4209, - [4210] = 351, - [4211] = 4211, - [4212] = 4212, - [4213] = 4213, - [4214] = 509, + [4210] = 4210, + [4211] = 381, + [4212] = 150, + [4213] = 4173, + [4214] = 4214, [4215] = 4215, [4216] = 4216, [4217] = 4217, - [4218] = 413, - [4219] = 414, - [4220] = 415, + [4218] = 378, + [4219] = 4219, + [4220] = 363, [4221] = 4221, [4222] = 4222, - [4223] = 416, + [4223] = 4223, [4224] = 4224, - [4225] = 1583, - [4226] = 4226, - [4227] = 4227, + [4225] = 4225, + [4226] = 403, + [4227] = 348, [4228] = 4228, - [4229] = 417, + [4229] = 428, [4230] = 4230, - [4231] = 533, - [4232] = 404, + [4231] = 4231, + [4232] = 4232, [4233] = 4233, - [4234] = 418, - [4235] = 403, + [4234] = 408, + [4235] = 412, [4236] = 4236, [4237] = 4237, [4238] = 4238, [4239] = 4239, [4240] = 4240, - [4241] = 4241, - [4242] = 339, - [4243] = 419, - [4244] = 521, + [4241] = 438, + [4242] = 4242, + [4243] = 533, + [4244] = 4244, [4245] = 4245, [4246] = 4246, [4247] = 4247, [4248] = 4248, - [4249] = 150, + [4249] = 4249, [4250] = 4250, - [4251] = 370, - [4252] = 4252, - [4253] = 420, + [4251] = 414, + [4252] = 422, + [4253] = 4253, [4254] = 4254, - [4255] = 421, - [4256] = 422, + [4255] = 440, + [4256] = 506, [4257] = 4257, [4258] = 4258, - [4259] = 473, - [4260] = 488, - [4261] = 4250, - [4262] = 475, + [4259] = 4259, + [4260] = 4260, + [4261] = 4261, + [4262] = 425, [4263] = 4263, - [4264] = 4264, - [4265] = 504, - [4266] = 4266, + [4264] = 444, + [4265] = 461, + [4266] = 460, [4267] = 4267, - [4268] = 489, + [4268] = 4035, [4269] = 4269, - [4270] = 4270, - [4271] = 137, + [4270] = 501, + [4271] = 4271, [4272] = 4272, - [4273] = 4273, - [4274] = 423, - [4275] = 4275, - [4276] = 425, - [4277] = 426, - [4278] = 4278, - [4279] = 379, - [4280] = 4280, - [4281] = 428, + [4273] = 384, + [4274] = 4274, + [4275] = 385, + [4276] = 389, + [4277] = 4277, + [4278] = 507, + [4279] = 4279, + [4280] = 511, + [4281] = 390, [4282] = 4282, - [4283] = 398, - [4284] = 1611, - [4285] = 437, - [4286] = 1580, + [4283] = 4283, + [4284] = 441, + [4285] = 4285, + [4286] = 439, [4287] = 4287, - [4288] = 1581, - [4289] = 4289, - [4290] = 490, - [4291] = 1584, - [4292] = 410, + [4288] = 4288, + [4289] = 1539, + [4290] = 440, + [4291] = 506, + [4292] = 4103, [4293] = 4293, - [4294] = 459, - [4295] = 1689, + [4294] = 4294, + [4295] = 4138, [4296] = 4296, - [4297] = 1609, + [4297] = 4297, [4298] = 4298, - [4299] = 503, - [4300] = 4226, - [4301] = 4201, - [4302] = 4302, - [4303] = 4303, - [4304] = 475, - [4305] = 1611, - [4306] = 4140, - [4307] = 4205, - [4308] = 4272, - [4309] = 493, - [4310] = 533, - [4311] = 384, - [4312] = 361, - [4313] = 319, - [4314] = 4154, - [4315] = 1690, - [4316] = 4157, - [4317] = 4273, - [4318] = 353, - [4319] = 375, - [4320] = 4275, - [4321] = 318, + [4299] = 4298, + [4300] = 515, + [4301] = 377, + [4302] = 521, + [4303] = 4139, + [4304] = 4140, + [4305] = 501, + [4306] = 441, + [4307] = 4141, + [4308] = 1631, + [4309] = 1628, + [4310] = 4250, + [4311] = 512, + [4312] = 4312, + [4313] = 378, + [4314] = 508, + [4315] = 4315, + [4316] = 509, + [4317] = 1669, + [4318] = 4318, + [4319] = 4293, + [4320] = 4107, + [4321] = 533, [4322] = 4322, - [4323] = 488, - [4324] = 489, - [4325] = 459, - [4326] = 4326, - [4327] = 490, - [4328] = 4215, - [4329] = 4329, - [4330] = 4326, - [4331] = 530, - [4332] = 1689, - [4333] = 4222, - [4334] = 4334, - [4335] = 4335, - [4336] = 339, - [4337] = 508, - [4338] = 4338, - [4339] = 4339, - [4340] = 4340, + [4323] = 454, + [4324] = 444, + [4325] = 461, + [4326] = 4110, + [4327] = 460, + [4328] = 150, + [4329] = 507, + [4330] = 438, + [4331] = 4137, + [4332] = 361, + [4333] = 439, + [4334] = 4185, + [4335] = 1542, + [4336] = 4119, + [4337] = 1540, + [4338] = 1571, + [4339] = 4121, + [4340] = 1544, [4341] = 4341, - [4342] = 1708, - [4343] = 4303, - [4344] = 150, - [4345] = 4228, - [4346] = 4263, - [4347] = 1645, - [4348] = 1640, - [4349] = 594, - [4350] = 4350, - [4351] = 540, - [4352] = 4352, - [4353] = 4174, - [4354] = 4354, - [4355] = 4207, - [4356] = 4211, - [4357] = 4357, - [4358] = 1643, - [4359] = 4359, - [4360] = 473, - [4361] = 4361, - [4362] = 4340, - [4363] = 1580, - [4364] = 1581, - [4365] = 4212, - [4366] = 4194, - [4367] = 509, - [4368] = 498, - [4369] = 4168, - [4370] = 4370, - [4371] = 370, - [4372] = 4170, - [4373] = 1609, - [4374] = 1584, - [4375] = 521, - [4376] = 4190, - [4377] = 379, - [4378] = 503, - [4379] = 510, - [4380] = 485, - [4381] = 504, - [4382] = 4213, - [4383] = 4350, - [4384] = 1583, - [4385] = 531, - [4386] = 614, - [4387] = 504, - [4388] = 641, - [4389] = 4389, - [4390] = 642, - [4391] = 1708, - [4392] = 4361, - [4393] = 1640, - [4394] = 594, - [4395] = 643, - [4396] = 4396, - [4397] = 510, - [4398] = 540, - [4399] = 1711, - [4400] = 2626, - [4401] = 626, - [4402] = 4402, - [4403] = 616, - [4404] = 610, + [4342] = 4114, + [4343] = 4343, + [4344] = 4344, + [4345] = 463, + [4346] = 4115, + [4347] = 1667, + [4348] = 363, + [4349] = 4294, + [4350] = 4126, + [4351] = 348, + [4352] = 4133, + [4353] = 4353, + [4354] = 1671, + [4355] = 381, + [4356] = 565, + [4357] = 4297, + [4358] = 4118, + [4359] = 308, + [4360] = 4360, + [4361] = 4146, + [4362] = 4172, + [4363] = 4363, + [4364] = 4364, + [4365] = 1715, + [4366] = 1611, + [4367] = 307, + [4368] = 4134, + [4369] = 4135, + [4370] = 4136, + [4371] = 380, + [4372] = 511, + [4373] = 613, + [4374] = 1771, + [4375] = 4375, + [4376] = 515, + [4377] = 521, + [4378] = 652, + [4379] = 348, + [4380] = 501, + [4381] = 1772, + [4382] = 4353, + [4383] = 660, + [4384] = 4384, + [4385] = 634, + [4386] = 512, + [4387] = 1715, + [4388] = 1671, + [4389] = 1774, + [4390] = 2606, + [4391] = 506, + [4392] = 4392, + [4393] = 508, + [4394] = 629, + [4395] = 4395, + [4396] = 595, + [4397] = 641, + [4398] = 628, + [4399] = 4296, + [4400] = 4400, + [4401] = 4312, + [4402] = 623, + [4403] = 4403, + [4404] = 4404, [4405] = 4405, [4406] = 4406, - [4407] = 600, + [4407] = 4407, [4408] = 4408, - [4409] = 685, - [4410] = 638, - [4411] = 4302, - [4412] = 612, - [4413] = 4413, - [4414] = 4322, - [4415] = 645, - [4416] = 617, - [4417] = 646, - [4418] = 647, - [4419] = 618, - [4420] = 648, - [4421] = 2644, - [4422] = 4422, - [4423] = 4423, - [4424] = 4424, - [4425] = 4425, - [4426] = 4426, - [4427] = 4427, - [4428] = 1645, - [4429] = 4429, - [4430] = 4430, - [4431] = 508, - [4432] = 4432, - [4433] = 621, - [4434] = 4434, - [4435] = 4335, - [4436] = 509, - [4437] = 2627, - [4438] = 4341, - [4439] = 4439, + [4409] = 4409, + [4410] = 509, + [4411] = 4411, + [4412] = 4412, + [4413] = 4322, + [4414] = 4414, + [4415] = 648, + [4416] = 4416, + [4417] = 4417, + [4418] = 4418, + [4419] = 1631, + [4420] = 638, + [4421] = 4360, + [4422] = 2597, + [4423] = 4315, + [4424] = 653, + [4425] = 4288, + [4426] = 588, + [4427] = 2599, + [4428] = 626, + [4429] = 647, + [4430] = 635, + [4431] = 4431, + [4432] = 1796, + [4433] = 1693, + [4434] = 642, + [4435] = 593, + [4436] = 4436, + [4437] = 667, + [4438] = 4438, + [4439] = 590, [4440] = 4440, - [4441] = 627, - [4442] = 1730, - [4443] = 649, - [4444] = 1731, - [4445] = 650, + [4441] = 4441, + [4442] = 4442, + [4443] = 4443, + [4444] = 2609, + [4445] = 655, [4446] = 4446, - [4447] = 319, + [4447] = 645, [4448] = 4448, - [4449] = 651, - [4450] = 652, + [4449] = 1743, + [4450] = 1744, [4451] = 4451, [4452] = 4452, - [4453] = 1643, - [4454] = 683, - [4455] = 684, + [4453] = 584, + [4454] = 4454, + [4455] = 659, [4456] = 4456, - [4457] = 2654, - [4458] = 4458, - [4459] = 4459, - [4460] = 632, - [4461] = 4461, - [4462] = 4462, - [4463] = 4463, - [4464] = 4359, - [4465] = 318, - [4466] = 331, - [4467] = 633, - [4468] = 375, - [4469] = 604, - [4470] = 605, - [4471] = 625, - [4472] = 384, - [4473] = 326, - [4474] = 503, + [4457] = 4457, + [4458] = 591, + [4459] = 4287, + [4460] = 594, + [4461] = 565, + [4462] = 644, + [4463] = 650, + [4464] = 2621, + [4465] = 4465, + [4466] = 597, + [4467] = 4467, + [4468] = 4468, + [4469] = 565, + [4470] = 4470, + [4471] = 4471, + [4472] = 4472, + [4473] = 649, + [4474] = 598, [4475] = 4475, - [4476] = 379, - [4477] = 622, - [4478] = 370, - [4479] = 4479, - [4480] = 634, - [4481] = 653, - [4482] = 635, - [4483] = 636, - [4484] = 602, - [4485] = 4485, - [4486] = 4486, - [4487] = 4487, - [4488] = 606, - [4489] = 4489, - [4490] = 654, - [4491] = 644, - [4492] = 4492, - [4493] = 1727, - [4494] = 607, - [4495] = 623, - [4496] = 608, + [4476] = 646, + [4477] = 585, + [4478] = 625, + [4479] = 1669, + [4480] = 599, + [4481] = 586, + [4482] = 600, + [4483] = 587, + [4484] = 666, + [4485] = 601, + [4486] = 533, + [4487] = 668, + [4488] = 604, + [4489] = 605, + [4490] = 2606, + [4491] = 4491, + [4492] = 606, + [4493] = 307, + [4494] = 1628, + [4495] = 609, + [4496] = 654, [4497] = 4497, - [4498] = 631, + [4498] = 4498, [4499] = 4499, - [4500] = 1722, - [4501] = 4501, + [4500] = 610, + [4501] = 2621, [4502] = 4502, - [4503] = 4503, - [4504] = 553, - [4505] = 526, - [4506] = 2663, - [4507] = 4507, - [4508] = 521, - [4509] = 527, - [4510] = 609, - [4511] = 528, - [4512] = 339, - [4513] = 4513, - [4514] = 4514, + [4503] = 592, + [4504] = 2609, + [4505] = 651, + [4506] = 308, + [4507] = 324, + [4508] = 377, + [4509] = 611, + [4510] = 1667, + [4511] = 378, + [4512] = 612, + [4513] = 669, + [4514] = 330, [4515] = 4515, - [4516] = 620, - [4517] = 4517, - [4518] = 4357, - [4519] = 530, - [4520] = 594, - [4521] = 628, - [4522] = 611, - [4523] = 619, - [4524] = 4524, - [4525] = 629, - [4526] = 630, - [4527] = 1716, - [4528] = 2644, - [4529] = 1717, - [4530] = 531, - [4531] = 4531, - [4532] = 2663, - [4533] = 1728, - [4534] = 603, - [4535] = 533, - [4536] = 4329, - [4537] = 2626, - [4538] = 639, - [4539] = 1690, - [4540] = 1689, - [4541] = 640, - [4542] = 2415, - [4543] = 2654, - [4544] = 637, - [4545] = 613, - [4546] = 615, - [4547] = 2627, - [4548] = 1723, - [4549] = 4549, - [4550] = 644, - [4551] = 604, - [4552] = 652, - [4553] = 4492, - [4554] = 648, - [4555] = 631, - [4556] = 4556, - [4557] = 4557, + [4516] = 507, + [4517] = 511, + [4518] = 536, + [4519] = 2597, + [4520] = 537, + [4521] = 2599, + [4522] = 1764, + [4523] = 1766, + [4524] = 380, + [4525] = 614, + [4526] = 615, + [4527] = 381, + [4528] = 4528, + [4529] = 4529, + [4530] = 4530, + [4531] = 2343, + [4532] = 616, + [4533] = 538, + [4534] = 539, + [4535] = 596, + [4536] = 654, + [4537] = 1772, + [4538] = 4538, + [4539] = 599, + [4540] = 597, + [4541] = 666, + [4542] = 668, + [4543] = 2606, + [4544] = 611, + [4545] = 587, + [4546] = 4546, + [4547] = 660, + [4548] = 4384, + [4549] = 584, + [4550] = 654, + [4551] = 2343, + [4552] = 4552, + [4553] = 4553, + [4554] = 4554, + [4555] = 596, + [4556] = 598, + [4557] = 594, [4558] = 4558, - [4559] = 1727, + [4559] = 655, [4560] = 4560, - [4561] = 4524, - [4562] = 629, + [4561] = 4561, + [4562] = 659, [4563] = 604, - [4564] = 653, - [4565] = 634, - [4566] = 649, - [4567] = 4567, - [4568] = 617, - [4569] = 618, - [4570] = 331, + [4564] = 612, + [4565] = 4565, + [4566] = 566, + [4567] = 567, + [4568] = 1344, + [4569] = 1774, + [4570] = 4570, [4571] = 4571, - [4572] = 4572, - [4573] = 605, - [4574] = 4574, - [4575] = 4575, - [4576] = 619, - [4577] = 4577, - [4578] = 1722, - [4579] = 628, - [4580] = 1723, - [4581] = 620, - [4582] = 2541, - [4583] = 4583, - [4584] = 4584, - [4585] = 558, + [4572] = 2621, + [4573] = 4573, + [4574] = 586, + [4575] = 590, + [4576] = 4576, + [4577] = 591, + [4578] = 4578, + [4579] = 4579, + [4580] = 4580, + [4581] = 4581, + [4582] = 301, + [4583] = 594, + [4584] = 615, + [4585] = 1743, [4586] = 4586, - [4587] = 621, - [4588] = 622, + [4587] = 4456, + [4588] = 4588, [4589] = 4589, - [4590] = 2627, - [4591] = 623, - [4592] = 2654, - [4593] = 650, - [4594] = 639, - [4595] = 651, - [4596] = 637, - [4597] = 645, - [4598] = 4598, - [4599] = 4599, - [4600] = 640, - [4601] = 2415, - [4602] = 646, + [4590] = 588, + [4591] = 648, + [4592] = 616, + [4593] = 667, + [4594] = 593, + [4595] = 1744, + [4596] = 650, + [4597] = 651, + [4598] = 652, + [4599] = 4443, + [4600] = 4600, + [4601] = 609, + [4602] = 4602, [4603] = 4603, - [4604] = 4604, - [4605] = 641, - [4606] = 4606, - [4607] = 652, - [4608] = 4524, - [4609] = 642, + [4604] = 340, + [4605] = 4404, + [4606] = 596, + [4607] = 4561, + [4608] = 2492, + [4609] = 601, [4610] = 4610, - [4611] = 1804, - [4612] = 4612, + [4611] = 4611, + [4612] = 669, [4613] = 4613, - [4614] = 4614, - [4615] = 4615, - [4616] = 631, - [4617] = 4617, - [4618] = 4502, + [4614] = 1730, + [4615] = 634, + [4616] = 649, + [4617] = 611, + [4618] = 613, [4619] = 4619, - [4620] = 643, + [4620] = 4620, [4621] = 4621, - [4622] = 647, - [4623] = 4623, - [4624] = 302, + [4622] = 4622, + [4623] = 324, + [4624] = 4624, [4625] = 4625, - [4626] = 4586, - [4627] = 653, + [4626] = 595, + [4627] = 4627, [4628] = 4628, - [4629] = 1728, - [4630] = 643, - [4631] = 4631, - [4632] = 4632, - [4633] = 4425, - [4634] = 4634, - [4635] = 4635, - [4636] = 1730, - [4637] = 4637, - [4638] = 4638, - [4639] = 337, - [4640] = 634, - [4641] = 4641, - [4642] = 650, - [4643] = 4575, - [4644] = 4583, - [4645] = 635, - [4646] = 4603, - [4647] = 636, - [4648] = 4648, - [4649] = 4649, - [4650] = 606, - [4651] = 4424, + [4629] = 4629, + [4630] = 4630, + [4631] = 4538, + [4632] = 2599, + [4633] = 4546, + [4634] = 612, + [4635] = 666, + [4636] = 668, + [4637] = 604, + [4638] = 1734, + [4639] = 641, + [4640] = 4400, + [4641] = 614, + [4642] = 4403, + [4643] = 4643, + [4644] = 4644, + [4645] = 4645, + [4646] = 4646, + [4647] = 4647, + [4648] = 649, + [4649] = 1764, + [4650] = 4650, + [4651] = 4651, [4652] = 4652, - [4653] = 4653, - [4654] = 4654, - [4655] = 639, - [4656] = 4426, - [4657] = 4657, - [4658] = 630, - [4659] = 4659, - [4660] = 649, - [4661] = 323, + [4653] = 2597, + [4654] = 1766, + [4655] = 4655, + [4656] = 4656, + [4657] = 569, + [4658] = 4658, + [4659] = 605, + [4660] = 595, + [4661] = 629, [4662] = 4662, - [4663] = 602, - [4664] = 4427, - [4665] = 654, - [4666] = 611, - [4667] = 1373, + [4663] = 1796, + [4664] = 4664, + [4665] = 600, + [4666] = 4666, + [4667] = 1693, [4668] = 4668, - [4669] = 326, - [4670] = 4429, - [4671] = 607, - [4672] = 627, - [4673] = 4673, - [4674] = 4432, - [4675] = 4632, - [4676] = 626, - [4677] = 1716, - [4678] = 1717, - [4679] = 555, - [4680] = 642, + [4669] = 626, + [4670] = 4670, + [4671] = 606, + [4672] = 610, + [4673] = 613, + [4674] = 4674, + [4675] = 330, + [4676] = 4580, + [4677] = 4677, + [4678] = 301, + [4679] = 4679, + [4680] = 4680, [4681] = 4681, - [4682] = 556, - [4683] = 602, + [4682] = 609, + [4683] = 4683, [4684] = 4684, [4685] = 4685, - [4686] = 608, - [4687] = 600, - [4688] = 638, - [4689] = 4557, - [4690] = 628, - [4691] = 4558, - [4692] = 638, - [4693] = 616, - [4694] = 600, - [4695] = 350, - [4696] = 640, - [4697] = 603, - [4698] = 4698, - [4699] = 302, - [4700] = 611, - [4701] = 610, - [4702] = 632, - [4703] = 633, - [4704] = 685, - [4705] = 4705, - [4706] = 4706, - [4707] = 4707, - [4708] = 4485, - [4709] = 4402, - [4710] = 4439, - [4711] = 4440, - [4712] = 4458, - [4713] = 4459, - [4714] = 4461, - [4715] = 4462, - [4716] = 632, - [4717] = 685, - [4718] = 4489, - [4719] = 4513, - [4720] = 4396, - [4721] = 4434, - [4722] = 2644, - [4723] = 342, - [4724] = 633, - [4725] = 4503, - [4726] = 637, - [4727] = 635, + [4686] = 4686, + [4687] = 4405, + [4688] = 4688, + [4689] = 4689, + [4690] = 4690, + [4691] = 4691, + [4692] = 4692, + [4693] = 4693, + [4694] = 4694, + [4695] = 4412, + [4696] = 4467, + [4697] = 4468, + [4698] = 4470, + [4699] = 4431, + [4700] = 4438, + [4701] = 4440, + [4702] = 4452, + [4703] = 4703, + [4704] = 4704, + [4705] = 4497, + [4706] = 4499, + [4707] = 4502, + [4708] = 4708, + [4709] = 626, + [4710] = 651, + [4711] = 592, + [4712] = 4436, + [4713] = 652, + [4714] = 601, + [4715] = 635, + [4716] = 4603, + [4717] = 336, + [4718] = 4408, + [4719] = 4719, + [4720] = 4409, + [4721] = 628, + [4722] = 615, + [4723] = 4723, + [4724] = 341, + [4725] = 597, + [4726] = 4726, + [4727] = 4727, [4728] = 4728, - [4729] = 654, - [4730] = 683, - [4731] = 616, - [4732] = 636, - [4733] = 4733, - [4734] = 613, - [4735] = 1803, + [4729] = 299, + [4730] = 349, + [4731] = 605, + [4732] = 606, + [4733] = 299, + [4734] = 628, + [4735] = 623, [4736] = 4736, - [4737] = 4737, - [4738] = 4738, - [4739] = 4739, - [4740] = 614, + [4737] = 343, + [4738] = 4630, + [4739] = 4443, + [4740] = 588, [4741] = 4741, - [4742] = 610, - [4743] = 612, - [4744] = 4557, - [4745] = 629, - [4746] = 630, - [4747] = 4747, - [4748] = 4748, - [4749] = 4749, - [4750] = 4750, - [4751] = 4751, - [4752] = 4752, + [4742] = 590, + [4743] = 591, + [4744] = 645, + [4745] = 4745, + [4746] = 599, + [4747] = 646, + [4748] = 647, + [4749] = 4414, + [4750] = 653, + [4751] = 625, + [4752] = 635, [4753] = 4753, - [4754] = 4754, - [4755] = 4755, - [4756] = 4756, - [4757] = 2626, + [4754] = 4580, + [4755] = 593, + [4756] = 650, + [4757] = 623, [4758] = 4758, [4759] = 4759, [4760] = 4760, - [4761] = 4761, + [4761] = 344, [4762] = 4762, - [4763] = 4763, + [4763] = 2609, [4764] = 4764, [4765] = 4765, - [4766] = 4766, - [4767] = 4767, - [4768] = 612, - [4769] = 4769, - [4770] = 615, - [4771] = 651, - [4772] = 4772, - [4773] = 648, - [4774] = 1711, - [4775] = 645, + [4766] = 4558, + [4767] = 4560, + [4768] = 585, + [4769] = 614, + [4770] = 4770, + [4771] = 4771, + [4772] = 598, + [4773] = 4773, + [4774] = 4475, + [4775] = 4775, [4776] = 4776, - [4777] = 340, - [4778] = 2663, - [4779] = 646, - [4780] = 338, - [4781] = 684, + [4777] = 4777, + [4778] = 4778, + [4779] = 610, + [4780] = 2472, + [4781] = 600, [4782] = 4782, - [4783] = 4783, - [4784] = 4784, - [4785] = 4785, - [4786] = 4786, - [4787] = 4787, - [4788] = 4788, - [4789] = 4789, + [4783] = 629, + [4784] = 648, + [4785] = 1771, + [4786] = 638, + [4787] = 642, + [4788] = 644, + [4789] = 667, [4790] = 4790, - [4791] = 4456, - [4792] = 2532, - [4793] = 647, - [4794] = 4625, - [4795] = 323, - [4796] = 605, - [4797] = 627, - [4798] = 641, - [4799] = 625, + [4791] = 4573, + [4792] = 4610, + [4793] = 4793, + [4794] = 4794, + [4795] = 4795, + [4796] = 4796, + [4797] = 307, + [4798] = 4798, + [4799] = 4799, [4800] = 4800, - [4801] = 609, - [4802] = 341, - [4803] = 1731, - [4804] = 4698, - [4805] = 4805, + [4801] = 4801, + [4802] = 4802, + [4803] = 4803, + [4804] = 4804, + [4805] = 2343, [4806] = 4806, [4807] = 4807, - [4808] = 4808, - [4809] = 319, - [4810] = 318, - [4811] = 4811, - [4812] = 4812, - [4813] = 4813, - [4814] = 4814, + [4808] = 4736, + [4809] = 333, + [4810] = 334, + [4811] = 335, + [4812] = 4728, + [4813] = 304, + [4814] = 4565, [4815] = 4815, - [4816] = 4816, - [4817] = 4817, - [4818] = 2415, + [4816] = 305, + [4817] = 336, + [4818] = 4818, [4819] = 4819, - [4820] = 4820, - [4821] = 4623, - [4822] = 334, - [4823] = 335, - [4824] = 325, - [4825] = 4631, - [4826] = 321, - [4827] = 4668, - [4828] = 4828, - [4829] = 322, - [4830] = 4830, - [4831] = 4831, - [4832] = 4832, - [4833] = 4833, - [4834] = 350, - [4835] = 4835, - [4836] = 342, - [4837] = 340, - [4838] = 341, - [4839] = 4839, - [4840] = 4840, - [4841] = 603, - [4842] = 139, - [4843] = 606, - [4844] = 607, - [4845] = 608, - [4846] = 609, - [4847] = 138, - [4848] = 613, - [4849] = 614, - [4850] = 615, - [4851] = 617, - [4852] = 618, - [4853] = 619, - [4854] = 620, - [4855] = 621, - [4856] = 622, - [4857] = 623, - [4858] = 1803, - [4859] = 1804, - [4860] = 4860, - [4861] = 4621, - [4862] = 1359, + [4820] = 341, + [4821] = 4821, + [4822] = 4822, + [4823] = 343, + [4824] = 4824, + [4825] = 344, + [4826] = 4826, + [4827] = 4827, + [4828] = 669, + [4829] = 139, + [4830] = 645, + [4831] = 646, + [4832] = 647, + [4833] = 625, + [4834] = 138, + [4835] = 638, + [4836] = 642, + [4837] = 644, + [4838] = 653, + [4839] = 655, + [4840] = 585, + [4841] = 586, + [4842] = 587, + [4843] = 592, + [4844] = 616, + [4845] = 1730, + [4846] = 1734, + [4847] = 4847, + [4848] = 4782, + [4849] = 1331, + [4850] = 4850, + [4851] = 4723, + [4852] = 4852, + [4853] = 4853, + [4854] = 4854, + [4855] = 4855, + [4856] = 4795, + [4857] = 4741, + [4858] = 4858, + [4859] = 4745, + [4860] = 4443, + [4861] = 4847, + [4862] = 4862, [4863] = 4863, - [4864] = 4681, + [4864] = 4864, [4865] = 4865, [4866] = 4866, [4867] = 4867, [4868] = 4868, - [4869] = 4617, - [4870] = 4807, - [4871] = 4619, - [4872] = 4524, + [4869] = 4869, + [4870] = 4870, + [4871] = 4871, + [4872] = 4872, [4873] = 4873, [4874] = 4874, - [4875] = 4860, - [4876] = 4876, - [4877] = 4877, - [4878] = 4878, - [4879] = 4879, - [4880] = 4880, + [4875] = 4875, + [4876] = 4866, + [4877] = 1344, + [4878] = 305, + [4879] = 4576, + [4880] = 4586, [4881] = 4881, [4882] = 4882, - [4883] = 4883, + [4883] = 4602, [4884] = 4884, [4885] = 4885, - [4886] = 4886, - [4887] = 4887, - [4888] = 4888, - [4889] = 1373, - [4890] = 4879, - [4891] = 322, - [4892] = 4685, - [4893] = 4733, + [4886] = 4771, + [4887] = 4773, + [4888] = 308, + [4889] = 4889, + [4890] = 4855, + [4891] = 307, + [4892] = 4892, + [4893] = 4893, [4894] = 4894, [4895] = 4895, - [4896] = 4584, - [4897] = 4897, - [4898] = 4634, - [4899] = 4637, - [4900] = 318, + [4896] = 4896, + [4897] = 2472, + [4898] = 4898, + [4899] = 4899, + [4900] = 4900, [4901] = 4901, [4902] = 4902, - [4903] = 4868, - [4904] = 319, - [4905] = 4905, + [4903] = 4903, + [4904] = 4904, + [4905] = 329, [4906] = 4906, - [4907] = 4907, - [4908] = 4908, - [4909] = 4909, - [4910] = 2532, - [4911] = 4911, - [4912] = 4912, - [4913] = 4913, - [4914] = 4914, - [4915] = 4915, - [4916] = 4916, + [4907] = 333, + [4908] = 334, + [4909] = 335, + [4910] = 4910, + [4911] = 4680, + [4912] = 4708, + [4913] = 4776, + [4914] = 4777, + [4915] = 4866, + [4916] = 2492, [4917] = 4917, [4918] = 4918, [4919] = 4919, - [4920] = 333, - [4921] = 4684, - [4922] = 334, - [4923] = 335, - [4924] = 325, - [4925] = 4705, - [4926] = 4652, - [4927] = 4653, - [4928] = 2541, + [4920] = 4920, + [4921] = 4921, + [4922] = 4922, + [4923] = 4923, + [4924] = 4719, + [4925] = 4925, + [4926] = 4926, + [4927] = 4927, + [4928] = 4928, [4929] = 4929, - [4930] = 4879, + [4930] = 4930, [4931] = 4931, [4932] = 4932, [4933] = 4933, - [4934] = 4934, + [4934] = 137, [4935] = 4935, [4936] = 4936, - [4937] = 4628, - [4938] = 4938, - [4939] = 4939, - [4940] = 4940, - [4941] = 4941, - [4942] = 4942, - [4943] = 4943, - [4944] = 4944, - [4945] = 4945, - [4946] = 4946, - [4947] = 137, - [4948] = 4948, - [4949] = 4949, - [4950] = 625, - [4951] = 626, - [4952] = 2745, - [4953] = 321, - [4954] = 4874, - [4955] = 333, - [4956] = 4485, - [4957] = 4402, - [4958] = 4439, - [4959] = 4440, - [4960] = 4458, - [4961] = 4459, - [4962] = 4461, - [4963] = 4462, - [4964] = 4489, - [4965] = 4513, - [4966] = 4396, - [4967] = 4503, - [4968] = 319, - [4969] = 4571, - [4970] = 4574, - [4971] = 4901, - [4972] = 318, - [4973] = 4557, - [4974] = 4577, - [4975] = 4556, + [4937] = 634, + [4938] = 641, + [4939] = 2667, + [4940] = 304, + [4941] = 4412, + [4942] = 4858, + [4943] = 4467, + [4944] = 4468, + [4945] = 4470, + [4946] = 4431, + [4947] = 4438, + [4948] = 4440, + [4949] = 4452, + [4950] = 4497, + [4951] = 4499, + [4952] = 4502, + [4953] = 329, + [4954] = 4436, + [4955] = 307, + [4956] = 4588, + [4957] = 4589, + [4958] = 4885, + [4959] = 4580, + [4960] = 308, + [4961] = 4600, + [4962] = 308, + [4963] = 408, + [4964] = 301, + [4965] = 4965, + [4966] = 4966, + [4967] = 1396, + [4968] = 4968, + [4969] = 330, + [4970] = 4970, + [4971] = 4971, + [4972] = 4965, + [4973] = 324, + [4974] = 4965, + [4975] = 308, [4976] = 4976, - [4977] = 403, - [4978] = 323, - [4979] = 1387, - [4980] = 4980, + [4977] = 4977, + [4978] = 4978, + [4979] = 4979, + [4980] = 1385, [4981] = 4981, - [4982] = 4982, - [4983] = 326, - [4984] = 4984, - [4985] = 4985, - [4986] = 326, - [4987] = 4980, - [4988] = 2532, - [4989] = 4980, - [4990] = 4990, - [4991] = 4991, - [4992] = 4992, - [4993] = 4993, - [4994] = 1418, - [4995] = 319, - [4996] = 4996, - [4997] = 398, - [4998] = 318, - [4999] = 404, - [5000] = 438, - [5001] = 5001, - [5002] = 411, - [5003] = 412, - [5004] = 319, - [5005] = 414, - [5006] = 415, - [5007] = 416, - [5008] = 417, - [5009] = 418, - [5010] = 419, - [5011] = 420, - [5012] = 421, - [5013] = 422, - [5014] = 423, - [5015] = 425, - [5016] = 426, - [5017] = 428, - [5018] = 437, - [5019] = 137, - [5020] = 5001, - [5021] = 331, - [5022] = 5022, - [5023] = 5023, - [5024] = 4991, - [5025] = 5025, - [5026] = 331, - [5027] = 331, - [5028] = 4980, - [5029] = 410, - [5030] = 326, - [5031] = 4991, - [5032] = 4557, - [5033] = 318, - [5034] = 319, - [5035] = 5035, - [5036] = 2541, - [5037] = 318, - [5038] = 413, - [5039] = 331, - [5040] = 413, - [5041] = 414, - [5042] = 415, - [5043] = 416, - [5044] = 417, - [5045] = 418, - [5046] = 419, - [5047] = 420, - [5048] = 421, - [5049] = 422, - [5050] = 423, - [5051] = 425, - [5052] = 426, - [5053] = 428, - [5054] = 437, - [5055] = 144, - [5056] = 137, - [5057] = 319, - [5058] = 1373, - [5059] = 190, - [5060] = 403, + [4982] = 428, + [4983] = 4983, + [4984] = 307, + [4985] = 2472, + [4986] = 330, + [4987] = 433, + [4988] = 308, + [4989] = 406, + [4990] = 308, + [4991] = 401, + [4992] = 414, + [4993] = 422, + [4994] = 425, + [4995] = 384, + [4996] = 385, + [4997] = 389, + [4998] = 390, + [4999] = 395, + [5000] = 396, + [5001] = 397, + [5002] = 398, + [5003] = 399, + [5004] = 400, + [5005] = 402, + [5006] = 403, + [5007] = 137, + [5008] = 4970, + [5009] = 307, + [5010] = 5010, + [5011] = 5011, + [5012] = 5011, + [5013] = 5013, + [5014] = 5014, + [5015] = 324, + [5016] = 4965, + [5017] = 5017, + [5018] = 5011, + [5019] = 324, + [5020] = 330, + [5021] = 4580, + [5022] = 417, + [5023] = 307, + [5024] = 2492, + [5025] = 412, + [5026] = 336, + [5027] = 412, + [5028] = 324, + [5029] = 414, + [5030] = 422, + [5031] = 425, + [5032] = 384, + [5033] = 385, + [5034] = 389, + [5035] = 390, + [5036] = 395, + [5037] = 396, + [5038] = 397, + [5039] = 398, + [5040] = 399, + [5041] = 400, + [5042] = 402, + [5043] = 403, + [5044] = 343, + [5045] = 145, + [5046] = 341, + [5047] = 349, + [5048] = 5048, + [5049] = 4966, + [5050] = 330, + [5051] = 4976, + [5052] = 348, + [5053] = 328, + [5054] = 4968, + [5055] = 401, + [5056] = 343, + [5057] = 336, + [5058] = 5058, + [5059] = 4977, + [5060] = 143, [5061] = 5061, - [5062] = 1373, - [5063] = 339, - [5064] = 333, - [5065] = 318, - [5066] = 5066, - [5067] = 2475, - [5068] = 340, - [5069] = 5035, - [5070] = 341, - [5071] = 5071, - [5072] = 337, - [5073] = 331, - [5074] = 342, - [5075] = 5075, - [5076] = 5076, - [5077] = 5075, - [5078] = 398, - [5079] = 5076, - [5080] = 5080, - [5081] = 5081, - [5082] = 341, - [5083] = 334, - [5084] = 335, - [5085] = 5080, - [5086] = 5081, - [5087] = 5087, - [5088] = 5088, - [5089] = 5087, - [5090] = 5080, - [5091] = 5081, - [5092] = 325, - [5093] = 5080, - [5094] = 5081, - [5095] = 5088, - [5096] = 5080, - [5097] = 5081, - [5098] = 139, - [5099] = 143, - [5100] = 5081, - [5101] = 5080, - [5102] = 5081, - [5103] = 5080, - [5104] = 5081, - [5105] = 5080, - [5106] = 5081, - [5107] = 5081, - [5108] = 5061, - [5109] = 138, - [5110] = 404, - [5111] = 4982, - [5112] = 5075, - [5113] = 351, - [5114] = 5087, - [5115] = 5087, - [5116] = 338, - [5117] = 5088, - [5118] = 5088, - [5119] = 330, - [5120] = 5120, - [5121] = 5121, - [5122] = 5122, - [5123] = 319, - [5124] = 350, - [5125] = 340, - [5126] = 350, - [5127] = 145, - [5128] = 5071, + [5062] = 1344, + [5063] = 5063, + [5064] = 5064, + [5065] = 5065, + [5066] = 5063, + [5067] = 5067, + [5068] = 5068, + [5069] = 5064, + [5070] = 428, + [5071] = 5065, + [5072] = 5067, + [5073] = 5068, + [5074] = 344, + [5075] = 5048, + [5076] = 5061, + [5077] = 333, + [5078] = 344, + [5079] = 5067, + [5080] = 5068, + [5081] = 334, + [5082] = 5067, + [5083] = 5068, + [5084] = 5067, + [5085] = 5068, + [5086] = 307, + [5087] = 5067, + [5088] = 5068, + [5089] = 5061, + [5090] = 5067, + [5091] = 5068, + [5092] = 5067, + [5093] = 5068, + [5094] = 5067, + [5095] = 5068, + [5096] = 5068, + [5097] = 5097, + [5098] = 335, + [5099] = 433, + [5100] = 5097, + [5101] = 2504, + [5102] = 307, + [5103] = 139, + [5104] = 5048, + [5105] = 5061, + [5106] = 138, + [5107] = 308, + [5108] = 5067, + [5109] = 190, + [5110] = 5064, + [5111] = 5068, + [5112] = 340, + [5113] = 5113, + [5114] = 341, + [5115] = 1344, + [5116] = 336, + [5117] = 329, + [5118] = 137, + [5119] = 5119, + [5120] = 341, + [5121] = 5065, + [5122] = 308, + [5123] = 5067, + [5124] = 330, + [5125] = 406, + [5126] = 5068, + [5127] = 343, + [5128] = 4979, [5129] = 142, - [5130] = 342, - [5131] = 5076, - [5132] = 326, - [5133] = 5080, - [5134] = 318, - [5135] = 5080, - [5136] = 438, - [5137] = 340, - [5138] = 5081, - [5139] = 5066, - [5140] = 5140, - [5141] = 341, - [5142] = 137, - [5143] = 410, - [5144] = 5081, - [5145] = 5025, - [5146] = 4984, - [5147] = 4985, - [5148] = 326, - [5149] = 326, - [5150] = 5080, - [5151] = 411, - [5152] = 342, - [5153] = 412, - [5154] = 331, - [5155] = 350, - [5156] = 5080, - [5157] = 139, - [5158] = 5158, - [5159] = 331, - [5160] = 339, - [5161] = 410, - [5162] = 361, - [5163] = 326, - [5164] = 5164, - [5165] = 138, - [5166] = 139, - [5167] = 403, - [5168] = 5168, - [5169] = 5169, - [5170] = 398, - [5171] = 410, - [5172] = 404, - [5173] = 403, - [5174] = 438, - [5175] = 411, - [5176] = 412, - [5177] = 413, - [5178] = 414, - [5179] = 415, - [5180] = 416, - [5181] = 417, - [5182] = 418, - [5183] = 419, - [5184] = 420, - [5185] = 421, - [5186] = 422, - [5187] = 423, - [5188] = 425, - [5189] = 426, - [5190] = 428, - [5191] = 437, - [5192] = 5192, - [5193] = 5164, - [5194] = 138, - [5195] = 339, - [5196] = 5196, - [5197] = 353, - [5198] = 142, - [5199] = 143, - [5200] = 144, - [5201] = 145, - [5202] = 5158, - [5203] = 5192, - [5204] = 318, - [5205] = 351, - [5206] = 319, - [5207] = 5168, - [5208] = 5169, - [5209] = 1609, - [5210] = 5168, - [5211] = 5169, - [5212] = 5192, - [5213] = 5164, - [5214] = 5196, - [5215] = 5158, - [5216] = 5168, - [5217] = 5196, - [5218] = 5168, - [5219] = 5168, - [5220] = 5196, - [5221] = 340, - [5222] = 5196, - [5223] = 5168, - [5224] = 5196, - [5225] = 5168, - [5226] = 5196, - [5227] = 5168, - [5228] = 5196, - [5229] = 5168, - [5230] = 5192, - [5231] = 5196, - [5232] = 5168, - [5233] = 5196, - [5234] = 5168, - [5235] = 5235, - [5236] = 5196, - [5237] = 5168, - [5238] = 5196, - [5239] = 5196, - [5240] = 5196, - [5241] = 5196, - [5242] = 5196, - [5243] = 5196, - [5244] = 5164, - [5245] = 350, - [5246] = 5246, - [5247] = 5246, - [5248] = 342, - [5249] = 5249, - [5250] = 340, - [5251] = 191, - [5252] = 5249, - [5253] = 5253, - [5254] = 5168, - [5255] = 5158, + [5130] = 5130, + [5131] = 344, + [5132] = 5132, + [5133] = 346, + [5134] = 324, + [5135] = 144, + [5136] = 5058, + [5137] = 330, + [5138] = 5067, + [5139] = 417, + [5140] = 137, + [5141] = 408, + [5142] = 324, + [5143] = 5048, + [5144] = 1344, + [5145] = 5145, + [5146] = 5146, + [5147] = 5147, + [5148] = 5148, + [5149] = 142, + [5150] = 348, + [5151] = 5151, + [5152] = 143, + [5153] = 5153, + [5154] = 363, + [5155] = 144, + [5156] = 1571, + [5157] = 5151, + [5158] = 343, + [5159] = 145, + [5160] = 5160, + [5161] = 141, + [5162] = 140, + [5163] = 344, + [5164] = 139, + [5165] = 324, + [5166] = 5160, + [5167] = 308, + [5168] = 344, + [5169] = 5160, + [5170] = 330, + [5171] = 138, + [5172] = 348, + [5173] = 5145, + [5174] = 307, + [5175] = 343, + [5176] = 5153, + [5177] = 324, + [5178] = 417, + [5179] = 361, + [5180] = 5153, + [5181] = 5181, + [5182] = 1542, + [5183] = 5153, + [5184] = 5181, + [5185] = 5145, + [5186] = 5146, + [5187] = 5151, + [5188] = 5160, + [5189] = 5153, + [5190] = 5151, + [5191] = 5153, + [5192] = 5151, + [5193] = 5153, + [5194] = 5151, + [5195] = 5153, + [5196] = 5151, + [5197] = 5153, + [5198] = 346, + [5199] = 330, + [5200] = 5146, + [5201] = 5151, + [5202] = 5153, + [5203] = 5151, + [5204] = 5153, + [5205] = 5153, + [5206] = 5151, + [5207] = 5153, + [5208] = 5151, + [5209] = 5153, + [5210] = 5151, + [5211] = 5153, + [5212] = 5151, + [5213] = 5151, + [5214] = 5151, + [5215] = 5151, + [5216] = 5151, + [5217] = 5217, + [5218] = 5151, + [5219] = 401, + [5220] = 5220, + [5221] = 5153, + [5222] = 5181, + [5223] = 5145, + [5224] = 5220, + [5225] = 5146, + [5226] = 139, + [5227] = 5147, + [5228] = 336, + [5229] = 138, + [5230] = 346, + [5231] = 341, + [5232] = 191, + [5233] = 428, + [5234] = 5153, + [5235] = 417, + [5236] = 433, + [5237] = 401, + [5238] = 406, + [5239] = 408, + [5240] = 5220, + [5241] = 412, + [5242] = 414, + [5243] = 5147, + [5244] = 422, + [5245] = 425, + [5246] = 384, + [5247] = 385, + [5248] = 389, + [5249] = 390, + [5250] = 395, + [5251] = 396, + [5252] = 336, + [5253] = 397, + [5254] = 398, + [5255] = 341, [5256] = 341, - [5257] = 5246, - [5258] = 5249, - [5259] = 1611, - [5260] = 5168, - [5261] = 331, - [5262] = 350, - [5263] = 5196, - [5264] = 342, - [5265] = 1373, - [5266] = 340, - [5267] = 326, - [5268] = 341, - [5269] = 141, - [5270] = 350, - [5271] = 140, - [5272] = 342, - [5273] = 5168, - [5274] = 5169, - [5275] = 351, - [5276] = 341, - [5277] = 5168, - [5278] = 5278, - [5279] = 5278, - [5280] = 141, - [5281] = 1609, - [5282] = 140, - [5283] = 5283, + [5257] = 399, + [5258] = 400, + [5259] = 343, + [5260] = 402, + [5261] = 403, + [5262] = 344, + [5263] = 336, + [5264] = 5181, + [5265] = 5265, + [5266] = 5266, + [5267] = 5267, + [5268] = 5268, + [5269] = 5269, + [5270] = 346, + [5271] = 141, + [5272] = 348, + [5273] = 5273, + [5274] = 5274, + [5275] = 5275, + [5276] = 5276, + [5277] = 5277, + [5278] = 141, + [5279] = 5279, + [5280] = 341, + [5281] = 5281, + [5282] = 5282, + [5283] = 137, [5284] = 5284, - [5285] = 1373, - [5286] = 139, - [5287] = 138, - [5288] = 137, - [5289] = 140, - [5290] = 1640, - [5291] = 510, + [5285] = 565, + [5286] = 5265, + [5287] = 380, + [5288] = 5288, + [5289] = 5289, + [5290] = 5290, + [5291] = 140, [5292] = 5292, - [5293] = 350, - [5294] = 379, - [5295] = 5295, + [5293] = 5265, + [5294] = 5294, + [5295] = 5265, [5296] = 5296, [5297] = 5297, - [5298] = 370, - [5299] = 5299, - [5300] = 361, - [5301] = 331, + [5298] = 1628, + [5299] = 5265, + [5300] = 343, + [5301] = 5301, [5302] = 5302, - [5303] = 351, - [5304] = 5304, - [5305] = 5305, + [5303] = 5274, + [5304] = 5265, + [5305] = 5277, [5306] = 5306, - [5307] = 5307, - [5308] = 5308, - [5309] = 5235, - [5310] = 5310, - [5311] = 5311, + [5307] = 341, + [5308] = 1671, + [5309] = 344, + [5310] = 5265, + [5311] = 515, [5312] = 5312, - [5313] = 5313, - [5314] = 5314, - [5315] = 5299, - [5316] = 5316, - [5317] = 5317, - [5318] = 5318, - [5319] = 5319, - [5320] = 5320, - [5321] = 5292, - [5322] = 5295, - [5323] = 5296, - [5324] = 5297, - [5325] = 5325, - [5326] = 5302, - [5327] = 5304, - [5328] = 5305, - [5329] = 5306, - [5330] = 5307, - [5331] = 5308, - [5332] = 5312, - [5333] = 5313, - [5334] = 5314, - [5335] = 5319, - [5336] = 5320, - [5337] = 5325, - [5338] = 5338, - [5339] = 5339, - [5340] = 5338, - [5341] = 5339, - [5342] = 1611, - [5343] = 5278, - [5344] = 147, - [5345] = 5316, - [5346] = 375, - [5347] = 530, - [5348] = 5317, - [5349] = 353, - [5350] = 339, - [5351] = 594, - [5352] = 342, - [5353] = 137, - [5354] = 5278, - [5355] = 5310, - [5356] = 531, - [5357] = 5278, - [5358] = 5311, - [5359] = 533, - [5360] = 5278, - [5361] = 340, - [5362] = 141, - [5363] = 326, - [5364] = 5318, - [5365] = 5278, - [5366] = 4982, - [5367] = 5278, - [5368] = 5278, - [5369] = 5278, - [5370] = 353, - [5371] = 5299, - [5372] = 5278, - [5373] = 5316, - [5374] = 5317, - [5375] = 5318, - [5376] = 5278, - [5377] = 5278, - [5378] = 5292, - [5379] = 5295, - [5380] = 5296, - [5381] = 5278, - [5382] = 5297, - [5383] = 5278, - [5384] = 146, - [5385] = 5278, - [5386] = 5302, - [5387] = 5278, - [5388] = 5304, - [5389] = 5278, - [5390] = 5305, - [5391] = 5278, - [5392] = 5278, - [5393] = 5278, - [5394] = 5278, - [5395] = 5278, - [5396] = 5278, - [5397] = 5278, - [5398] = 5278, - [5399] = 5278, - [5400] = 5278, - [5401] = 5278, - [5402] = 5306, - [5403] = 5307, - [5404] = 5308, - [5405] = 5312, - [5406] = 142, - [5407] = 5313, - [5408] = 1689, - [5409] = 5314, - [5410] = 143, - [5411] = 144, - [5412] = 5319, - [5413] = 5320, - [5414] = 5310, - [5415] = 5311, - [5416] = 5325, - [5417] = 5338, - [5418] = 5339, - [5419] = 5278, - [5420] = 341, - [5421] = 350, - [5422] = 145, - [5423] = 540, - [5424] = 342, - [5425] = 384, - [5426] = 148, - [5427] = 560, - [5428] = 340, - [5429] = 4982, - [5430] = 1645, - [5431] = 361, - [5432] = 5278, - [5433] = 341, - [5434] = 642, - [5435] = 625, - [5436] = 635, - [5437] = 636, - [5438] = 1373, - [5439] = 412, - [5440] = 340, - [5441] = 339, - [5442] = 437, - [5443] = 637, - [5444] = 638, - [5445] = 384, - [5446] = 2814, - [5447] = 1730, - [5448] = 147, - [5449] = 398, - [5450] = 639, - [5451] = 640, - [5452] = 641, - [5453] = 423, - [5454] = 420, - [5455] = 367, - [5456] = 432, - [5457] = 643, - [5458] = 600, - [5459] = 1731, - [5460] = 137, - [5461] = 146, - [5462] = 1711, - [5463] = 685, - [5464] = 645, - [5465] = 646, - [5466] = 647, - [5467] = 370, - [5468] = 648, - [5469] = 1727, - [5470] = 1640, - [5471] = 604, - [5472] = 649, - [5473] = 650, - [5474] = 651, - [5475] = 605, - [5476] = 652, + [5313] = 5217, + [5314] = 1542, + [5315] = 5279, + [5316] = 5265, + [5317] = 140, + [5318] = 343, + [5319] = 344, + [5320] = 363, + [5321] = 5265, + [5322] = 381, + [5323] = 5323, + [5324] = 330, + [5325] = 5281, + [5326] = 5265, + [5327] = 5282, + [5328] = 521, + [5329] = 361, + [5330] = 5265, + [5331] = 5284, + [5332] = 5288, + [5333] = 5265, + [5334] = 5312, + [5335] = 5335, + [5336] = 5265, + [5337] = 148, + [5338] = 5265, + [5339] = 336, + [5340] = 5265, + [5341] = 5266, + [5342] = 5265, + [5343] = 146, + [5344] = 5265, + [5345] = 5265, + [5346] = 5335, + [5347] = 5265, + [5348] = 147, + [5349] = 512, + [5350] = 5265, + [5351] = 5265, + [5352] = 5265, + [5353] = 5265, + [5354] = 5265, + [5355] = 5267, + [5356] = 1571, + [5357] = 5266, + [5358] = 5265, + [5359] = 5267, + [5360] = 5268, + [5361] = 5269, + [5362] = 378, + [5363] = 143, + [5364] = 508, + [5365] = 5289, + [5366] = 5312, + [5367] = 509, + [5368] = 4966, + [5369] = 144, + [5370] = 5335, + [5371] = 5273, + [5372] = 5274, + [5373] = 145, + [5374] = 5275, + [5375] = 5265, + [5376] = 5276, + [5377] = 5290, + [5378] = 363, + [5379] = 5277, + [5380] = 5279, + [5381] = 5281, + [5382] = 5282, + [5383] = 5284, + [5384] = 5288, + [5385] = 5292, + [5386] = 5289, + [5387] = 5290, + [5388] = 5292, + [5389] = 5296, + [5390] = 5297, + [5391] = 5301, + [5392] = 5302, + [5393] = 5265, + [5394] = 5306, + [5395] = 336, + [5396] = 5296, + [5397] = 5297, + [5398] = 5301, + [5399] = 377, + [5400] = 5273, + [5401] = 5268, + [5402] = 5265, + [5403] = 1631, + [5404] = 5275, + [5405] = 5302, + [5406] = 607, + [5407] = 1344, + [5408] = 5276, + [5409] = 5306, + [5410] = 5265, + [5411] = 4966, + [5412] = 142, + [5413] = 139, + [5414] = 138, + [5415] = 5269, + [5416] = 137, + [5417] = 361, + [5418] = 324, + [5419] = 5265, + [5420] = 428, + [5421] = 5421, + [5422] = 667, + [5423] = 1693, + [5424] = 5421, + [5425] = 406, + [5426] = 146, + [5427] = 1764, + [5428] = 5428, + [5429] = 381, + [5430] = 381, + [5431] = 1766, + [5432] = 628, + [5433] = 623, + [5434] = 5434, + [5435] = 5435, + [5436] = 148, + [5437] = 146, + [5438] = 344, + [5439] = 370, + [5440] = 626, + [5441] = 629, + [5442] = 635, + [5443] = 521, + [5444] = 1743, + [5445] = 1771, + [5446] = 1772, + [5447] = 649, + [5448] = 5448, + [5449] = 1744, + [5450] = 414, + [5451] = 422, + [5452] = 425, + [5453] = 384, + [5454] = 512, + [5455] = 2827, + [5456] = 508, + [5457] = 509, + [5458] = 1667, + [5459] = 385, + [5460] = 389, + [5461] = 1669, + [5462] = 634, + [5463] = 390, + [5464] = 395, + [5465] = 396, + [5466] = 397, + [5467] = 398, + [5468] = 399, + [5469] = 400, + [5470] = 402, + [5471] = 641, + [5472] = 5472, + [5473] = 5473, + [5474] = 565, + [5475] = 433, + [5476] = 1671, [5477] = 5477, - [5478] = 1716, - [5479] = 413, - [5480] = 653, - [5481] = 654, - [5482] = 414, - [5483] = 5483, - [5484] = 1728, - [5485] = 1717, - [5486] = 410, - [5487] = 342, - [5488] = 626, - [5489] = 371, - [5490] = 415, - [5491] = 438, + [5478] = 5478, + [5479] = 377, + [5480] = 403, + [5481] = 378, + [5482] = 648, + [5483] = 650, + [5484] = 380, + [5485] = 651, + [5486] = 652, + [5487] = 654, + [5488] = 666, + [5489] = 668, + [5490] = 336, + [5491] = 147, [5492] = 5492, - [5493] = 367, - [5494] = 433, - [5495] = 370, - [5496] = 350, - [5497] = 610, - [5498] = 611, - [5499] = 612, - [5500] = 422, - [5501] = 147, - [5502] = 146, - [5503] = 190, - [5504] = 616, - [5505] = 530, - [5506] = 5506, - [5507] = 5507, - [5508] = 1722, - [5509] = 1723, - [5510] = 421, - [5511] = 5511, - [5512] = 411, - [5513] = 5513, - [5514] = 434, - [5515] = 5513, - [5516] = 371, - [5517] = 5517, - [5518] = 404, - [5519] = 1142, + [5493] = 361, + [5494] = 5494, + [5495] = 588, + [5496] = 346, + [5497] = 591, + [5498] = 1774, + [5499] = 593, + [5500] = 363, + [5501] = 594, + [5502] = 428, + [5503] = 595, + [5504] = 5504, + [5505] = 596, + [5506] = 597, + [5507] = 598, + [5508] = 5508, + [5509] = 371, + [5510] = 378, + [5511] = 431, + [5512] = 599, + [5513] = 600, + [5514] = 137, + [5515] = 5428, + [5516] = 3156, + [5517] = 601, + [5518] = 604, + [5519] = 605, [5520] = 5520, - [5521] = 5521, - [5522] = 379, - [5523] = 510, - [5524] = 5524, - [5525] = 353, - [5526] = 425, - [5527] = 5517, - [5528] = 5528, - [5529] = 3124, - [5530] = 426, - [5531] = 627, - [5532] = 428, - [5533] = 4982, - [5534] = 1643, - [5535] = 2837, - [5536] = 341, - [5537] = 379, - [5538] = 628, - [5539] = 148, - [5540] = 416, - [5541] = 662, - [5542] = 540, - [5543] = 1645, - [5544] = 5520, - [5545] = 629, - [5546] = 148, - [5547] = 5528, - [5548] = 630, - [5549] = 631, - [5550] = 602, - [5551] = 404, - [5552] = 2809, - [5553] = 5553, - [5554] = 632, - [5555] = 633, - [5556] = 531, - [5557] = 5235, - [5558] = 5558, - [5559] = 594, - [5560] = 634, - [5561] = 2828, - [5562] = 1689, - [5563] = 375, - [5564] = 417, - [5565] = 403, - [5566] = 375, - [5567] = 398, - [5568] = 418, - [5569] = 351, - [5570] = 533, - [5571] = 1690, - [5572] = 384, - [5573] = 419, - [5574] = 361, - [5575] = 1152, - [5576] = 1731, - [5577] = 611, - [5578] = 612, - [5579] = 635, - [5580] = 5580, - [5581] = 654, - [5582] = 642, - [5583] = 636, - [5584] = 2902, - [5585] = 5585, - [5586] = 339, - [5587] = 5587, - [5588] = 5588, + [5521] = 147, + [5522] = 606, + [5523] = 609, + [5524] = 515, + [5525] = 348, + [5526] = 610, + [5527] = 611, + [5528] = 612, + [5529] = 613, + [5530] = 614, + [5531] = 615, + [5532] = 341, + [5533] = 417, + [5534] = 432, + [5535] = 5504, + [5536] = 190, + [5537] = 429, + [5538] = 370, + [5539] = 5448, + [5540] = 380, + [5541] = 1628, + [5542] = 1130, + [5543] = 4966, + [5544] = 371, + [5545] = 148, + [5546] = 343, + [5547] = 408, + [5548] = 2805, + [5549] = 412, + [5550] = 680, + [5551] = 1344, + [5552] = 1631, + [5553] = 433, + [5554] = 2862, + [5555] = 5217, + [5556] = 2821, + [5557] = 1796, + [5558] = 401, + [5559] = 377, + [5560] = 590, + [5561] = 612, + [5562] = 649, + [5563] = 641, + [5564] = 5564, + [5565] = 441, + [5566] = 5566, + [5567] = 5567, + [5568] = 5568, + [5569] = 5569, + [5570] = 5570, + [5571] = 439, + [5572] = 363, + [5573] = 611, + [5574] = 5574, + [5575] = 1771, + [5576] = 5568, + [5577] = 515, + [5578] = 5578, + [5579] = 5579, + [5580] = 648, + [5581] = 2827, + [5582] = 5578, + [5583] = 5583, + [5584] = 650, + [5585] = 651, + [5586] = 652, + [5587] = 654, + [5588] = 1772, [5589] = 5589, - [5590] = 2903, - [5591] = 5585, - [5592] = 5592, - [5593] = 5592, - [5594] = 5594, - [5595] = 5595, - [5596] = 1611, - [5597] = 5580, - [5598] = 375, + [5590] = 634, + [5591] = 1667, + [5592] = 666, + [5593] = 5593, + [5594] = 668, + [5595] = 5568, + [5596] = 5578, + [5597] = 5597, + [5598] = 5598, [5599] = 5599, - [5600] = 5600, - [5601] = 602, - [5602] = 5602, - [5603] = 5587, - [5604] = 5588, - [5605] = 5589, - [5606] = 5585, - [5607] = 5607, - [5608] = 5592, - [5609] = 351, + [5600] = 5589, + [5601] = 5597, + [5602] = 1743, + [5603] = 5579, + [5604] = 5597, + [5605] = 346, + [5606] = 346, + [5607] = 641, + [5608] = 4441, + [5609] = 4442, [5610] = 5610, - [5611] = 5587, - [5612] = 2837, - [5613] = 5588, - [5614] = 5580, - [5615] = 1609, - [5616] = 384, - [5617] = 475, - [5618] = 1643, - [5619] = 5587, - [5620] = 5588, - [5621] = 5589, - [5622] = 640, - [5623] = 5585, - [5624] = 379, - [5625] = 5592, - [5626] = 625, - [5627] = 5627, - [5628] = 530, - [5629] = 510, - [5630] = 5580, - [5631] = 5631, - [5632] = 370, - [5633] = 633, - [5634] = 5634, - [5635] = 5587, - [5636] = 5588, - [5637] = 5589, - [5638] = 5553, - [5639] = 5585, - [5640] = 5592, - [5641] = 5641, - [5642] = 353, - [5643] = 5580, - [5644] = 5644, - [5645] = 5645, - [5646] = 5646, - [5647] = 5587, - [5648] = 643, - [5649] = 5585, - [5650] = 5592, - [5651] = 498, - [5652] = 5580, - [5653] = 5589, - [5654] = 351, - [5655] = 5587, - [5656] = 5585, - [5657] = 5592, - [5658] = 600, - [5659] = 5580, - [5660] = 488, - [5661] = 361, - [5662] = 5587, - [5663] = 493, - [5664] = 5585, - [5665] = 5592, - [5666] = 5587, - [5667] = 5580, - [5668] = 5580, - [5669] = 5588, - [5670] = 3962, - [5671] = 5592, + [5611] = 613, + [5612] = 5593, + [5613] = 191, + [5614] = 5568, + [5615] = 5578, + [5616] = 5616, + [5617] = 5599, + [5618] = 5589, + [5619] = 614, + [5620] = 5579, + [5621] = 427, + [5622] = 348, + [5623] = 5623, + [5624] = 5593, + [5625] = 5568, + [5626] = 5578, + [5627] = 5599, + [5628] = 5628, + [5629] = 5589, + [5630] = 383, + [5631] = 377, + [5632] = 5579, + [5633] = 615, + [5634] = 588, + [5635] = 5593, + [5636] = 5568, + [5637] = 5578, + [5638] = 5599, + [5639] = 5589, + [5640] = 590, + [5641] = 591, + [5642] = 5579, + [5643] = 378, + [5644] = 5593, + [5645] = 5568, + [5646] = 5578, + [5647] = 5599, + [5648] = 1571, + [5649] = 5589, + [5650] = 5650, + [5651] = 5579, + [5652] = 380, + [5653] = 5593, + [5654] = 5568, + [5655] = 5578, + [5656] = 5599, + [5657] = 5589, + [5658] = 381, + [5659] = 5579, + [5660] = 5593, + [5661] = 5568, + [5662] = 5578, + [5663] = 5599, + [5664] = 5589, + [5665] = 5579, + [5666] = 5579, + [5667] = 1744, + [5668] = 5593, + [5669] = 5568, + [5670] = 5578, + [5671] = 5599, [5672] = 5589, - [5673] = 5580, - [5674] = 5594, - [5675] = 5592, - [5676] = 4446, - [5677] = 5580, - [5678] = 5585, - [5679] = 4448, - [5680] = 5592, - [5681] = 628, - [5682] = 5682, - [5683] = 531, - [5684] = 5684, - [5685] = 1609, - [5686] = 641, - [5687] = 5580, - [5688] = 5688, - [5689] = 533, - [5690] = 629, - [5691] = 630, - [5692] = 631, - [5693] = 5693, - [5694] = 5694, - [5695] = 1690, - [5696] = 685, - [5697] = 3971, - [5698] = 647, - [5699] = 5595, - [5700] = 5641, - [5701] = 5701, - [5702] = 5702, - [5703] = 5592, - [5704] = 5587, - [5705] = 5580, - [5706] = 5592, - [5707] = 5707, - [5708] = 616, - [5709] = 1711, - [5710] = 5588, - [5711] = 5589, - [5712] = 339, - [5713] = 191, - [5714] = 5594, - [5715] = 150, - [5716] = 459, - [5717] = 5717, - [5718] = 645, - [5719] = 1727, - [5720] = 5720, - [5721] = 5587, + [5673] = 1571, + [5674] = 610, + [5675] = 5579, + [5676] = 461, + [5677] = 1669, + [5678] = 634, + [5679] = 5593, + [5680] = 5568, + [5681] = 5578, + [5682] = 5599, + [5683] = 5589, + [5684] = 460, + [5685] = 5579, + [5686] = 5686, + [5687] = 1542, + [5688] = 5593, + [5689] = 5599, + [5690] = 5589, + [5691] = 5579, + [5692] = 463, + [5693] = 5593, + [5694] = 5599, + [5695] = 5589, + [5696] = 150, + [5697] = 5579, + [5698] = 150, + [5699] = 5593, + [5700] = 5599, + [5701] = 5589, + [5702] = 5579, + [5703] = 2821, + [5704] = 5589, + [5705] = 5705, + [5706] = 5579, + [5707] = 593, + [5708] = 5520, + [5709] = 5589, + [5710] = 5710, + [5711] = 5579, + [5712] = 3207, + [5713] = 348, + [5714] = 667, + [5715] = 346, + [5716] = 594, + [5717] = 521, + [5718] = 512, + [5719] = 361, + [5720] = 454, + [5721] = 3928, [5722] = 5722, - [5723] = 5588, - [5724] = 5589, + [5723] = 5566, + [5724] = 5583, [5725] = 5610, - [5726] = 5585, - [5727] = 5585, - [5728] = 5592, - [5729] = 604, - [5730] = 605, - [5731] = 1728, - [5732] = 649, - [5733] = 5733, - [5734] = 5580, - [5735] = 5735, - [5736] = 493, - [5737] = 540, - [5738] = 488, - [5739] = 489, - [5740] = 490, - [5741] = 5592, - [5742] = 139, - [5743] = 646, - [5744] = 627, - [5745] = 5587, - [5746] = 5587, - [5747] = 5747, - [5748] = 5748, - [5749] = 5588, - [5750] = 490, - [5751] = 5589, - [5752] = 5585, - [5753] = 5701, - [5754] = 2828, - [5755] = 5592, - [5756] = 626, - [5757] = 637, - [5758] = 650, - [5759] = 651, - [5760] = 150, - [5761] = 5580, - [5762] = 632, - [5763] = 351, - [5764] = 489, - [5765] = 1611, - [5766] = 5587, - [5767] = 5767, - [5768] = 5768, - [5769] = 652, - [5770] = 138, - [5771] = 5588, - [5772] = 5589, - [5773] = 1716, - [5774] = 5580, - [5775] = 625, - [5776] = 638, - [5777] = 1717, - [5778] = 339, - [5779] = 5585, - [5780] = 5780, - [5781] = 5585, - [5782] = 5592, - [5783] = 5588, - [5784] = 485, - [5785] = 5589, - [5786] = 5594, - [5787] = 653, - [5788] = 5580, - [5789] = 5610, - [5790] = 610, - [5791] = 5610, - [5792] = 1730, - [5793] = 634, - [5794] = 3227, - [5795] = 431, - [5796] = 473, - [5797] = 386, - [5798] = 5587, - [5799] = 1722, - [5800] = 1723, - [5801] = 5588, - [5802] = 626, - [5803] = 5589, - [5804] = 5585, - [5805] = 5735, - [5806] = 639, - [5807] = 648, - [5808] = 5808, - [5809] = 144, - [5810] = 5808, - [5811] = 4758, - [5812] = 4759, - [5813] = 4760, - [5814] = 1731, - [5815] = 4761, - [5816] = 4762, - [5817] = 361, - [5818] = 5818, - [5819] = 4763, - [5820] = 4764, - [5821] = 4765, - [5822] = 5822, - [5823] = 5823, - [5824] = 5824, - [5825] = 5825, + [5726] = 5726, + [5727] = 1764, + [5728] = 3956, + [5729] = 595, + [5730] = 5579, + [5731] = 5589, + [5732] = 1766, + [5733] = 596, + [5734] = 597, + [5735] = 440, + [5736] = 508, + [5737] = 509, + [5738] = 5593, + [5739] = 1774, + [5740] = 628, + [5741] = 623, + [5742] = 348, + [5743] = 5599, + [5744] = 5744, + [5745] = 5745, + [5746] = 454, + [5747] = 5599, + [5748] = 444, + [5749] = 461, + [5750] = 460, + [5751] = 5751, + [5752] = 5752, + [5753] = 5628, + [5754] = 139, + [5755] = 626, + [5756] = 629, + [5757] = 5757, + [5758] = 5758, + [5759] = 5759, + [5760] = 1542, + [5761] = 598, + [5762] = 5762, + [5763] = 635, + [5764] = 2931, + [5765] = 2868, + [5766] = 5766, + [5767] = 599, + [5768] = 600, + [5769] = 5769, + [5770] = 5770, + [5771] = 5771, + [5772] = 5593, + [5773] = 138, + [5774] = 5568, + [5775] = 1796, + [5776] = 5578, + [5777] = 5597, + [5778] = 1693, + [5779] = 601, + [5780] = 1136, + [5781] = 604, + [5782] = 5593, + [5783] = 605, + [5784] = 5628, + [5785] = 5628, + [5786] = 606, + [5787] = 609, + [5788] = 5567, + [5789] = 5599, + [5790] = 5589, + [5791] = 438, + [5792] = 5792, + [5793] = 444, + [5794] = 1571, + [5795] = 346, + [5796] = 487, + [5797] = 4664, + [5798] = 4666, + [5799] = 5799, + [5800] = 4727, + [5801] = 4668, + [5802] = 1669, + [5803] = 5803, + [5804] = 4670, + [5805] = 486, + [5806] = 2821, + [5807] = 348, + [5808] = 4644, + [5809] = 4571, + [5810] = 5726, + [5811] = 5650, + [5812] = 5812, + [5813] = 4679, + [5814] = 145, + [5815] = 5799, + [5816] = 4753, + [5817] = 4790, + [5818] = 361, + [5819] = 4645, + [5820] = 5803, + [5821] = 4620, + [5822] = 4681, + [5823] = 414, + [5824] = 398, + [5825] = 422, [5826] = 5826, - [5827] = 145, - [5828] = 4766, - [5829] = 5829, - [5830] = 4767, - [5831] = 4769, - [5832] = 5832, - [5833] = 5833, - [5834] = 5834, + [5827] = 363, + [5828] = 4625, + [5829] = 4646, + [5830] = 1671, + [5831] = 5799, + [5832] = 380, + [5833] = 5803, + [5834] = 4621, [5835] = 5835, - [5836] = 4772, - [5837] = 5837, - [5838] = 5838, - [5839] = 5839, - [5840] = 5840, - [5841] = 4776, - [5842] = 4782, - [5843] = 4783, - [5844] = 4784, - [5845] = 4785, - [5846] = 4786, - [5847] = 1643, - [5848] = 398, - [5849] = 5822, - [5850] = 4549, - [5851] = 5823, - [5852] = 4787, - [5853] = 4788, - [5854] = 4648, - [5855] = 398, - [5856] = 4649, - [5857] = 339, - [5858] = 4789, - [5859] = 4790, - [5860] = 4654, - [5861] = 5767, - [5862] = 5768, - [5863] = 1690, - [5864] = 4657, - [5865] = 5865, - [5866] = 5840, - [5867] = 4572, - [5868] = 5868, - [5869] = 479, - [5870] = 4599, - [5871] = 5865, - [5872] = 4659, - [5873] = 5873, - [5874] = 353, - [5875] = 4662, - [5876] = 5780, - [5877] = 478, - [5878] = 5865, - [5879] = 5822, - [5880] = 5823, - [5881] = 5881, - [5882] = 5882, - [5883] = 5868, - [5884] = 5884, - [5885] = 353, - [5886] = 361, - [5887] = 5865, - [5888] = 5832, - [5889] = 5833, - [5890] = 5868, - [5891] = 5834, - [5892] = 5835, - [5893] = 404, - [5894] = 351, + [5836] = 433, + [5837] = 425, + [5838] = 4647, + [5839] = 5799, + [5840] = 5803, + [5841] = 5841, + [5842] = 5799, + [5843] = 4683, + [5844] = 399, + [5845] = 5803, + [5846] = 384, + [5847] = 4684, + [5848] = 5848, + [5849] = 4685, + [5850] = 361, + [5851] = 433, + [5852] = 400, + [5853] = 5799, + [5854] = 5803, + [5855] = 5803, + [5856] = 1631, + [5857] = 5857, + [5858] = 1917, + [5859] = 4578, + [5860] = 4764, + [5861] = 402, + [5862] = 4627, + [5863] = 4759, + [5864] = 5864, + [5865] = 378, + [5866] = 5866, + [5867] = 5867, + [5868] = 5857, + [5869] = 361, + [5870] = 5870, + [5871] = 5799, + [5872] = 5872, + [5873] = 4686, + [5874] = 4441, + [5875] = 4688, + [5876] = 4442, + [5877] = 4650, + [5878] = 5878, + [5879] = 1764, + [5880] = 5880, + [5881] = 488, + [5882] = 5803, + [5883] = 4689, + [5884] = 1766, + [5885] = 377, + [5886] = 5886, + [5887] = 4690, + [5888] = 403, + [5889] = 5880, + [5890] = 5890, + [5891] = 1667, + [5892] = 5892, + [5893] = 4765, + [5894] = 4691, [5895] = 5895, - [5896] = 2837, - [5897] = 5865, - [5898] = 5838, - [5899] = 5839, - [5900] = 5682, - [5901] = 5868, - [5902] = 370, - [5903] = 1645, - [5904] = 1900, - [5905] = 4446, - [5906] = 5865, - [5907] = 4448, - [5908] = 5868, - [5909] = 379, - [5910] = 5910, - [5911] = 1727, - [5912] = 5865, - [5913] = 1728, - [5914] = 5868, - [5915] = 5733, - [5916] = 2828, - [5917] = 5865, - [5918] = 5918, - [5919] = 339, - [5920] = 5868, - [5921] = 1924, + [5896] = 428, + [5897] = 5799, + [5898] = 4692, + [5899] = 5866, + [5900] = 4651, + [5901] = 5758, + [5902] = 5902, + [5903] = 5902, + [5904] = 142, + [5905] = 5520, + [5906] = 5906, + [5907] = 5907, + [5908] = 1774, + [5909] = 1631, + [5910] = 363, + [5911] = 385, + [5912] = 5906, + [5913] = 5751, + [5914] = 5799, + [5915] = 4674, + [5916] = 5848, + [5917] = 389, + [5918] = 363, + [5919] = 1771, + [5920] = 5920, + [5921] = 5857, [5922] = 5922, - [5923] = 5865, - [5924] = 476, - [5925] = 5868, - [5926] = 5926, - [5927] = 5910, - [5928] = 5818, - [5929] = 5837, - [5930] = 5930, - [5931] = 1716, - [5932] = 5865, - [5933] = 1717, - [5934] = 5868, - [5935] = 5865, - [5936] = 361, - [5937] = 5884, - [5938] = 5840, - [5939] = 5865, - [5940] = 5868, - [5941] = 5865, - [5942] = 5865, - [5943] = 5840, - [5944] = 5868, - [5945] = 375, - [5946] = 5865, - [5947] = 5868, - [5948] = 438, - [5949] = 5868, - [5950] = 5950, - [5951] = 5868, - [5952] = 4612, - [5953] = 4706, - [5954] = 1689, - [5955] = 4613, - [5956] = 143, - [5957] = 4707, - [5958] = 353, - [5959] = 5832, - [5960] = 4728, - [5961] = 5833, - [5962] = 4736, - [5963] = 4614, - [5964] = 4737, - [5965] = 4615, - [5966] = 4738, - [5967] = 5553, - [5968] = 5895, - [5969] = 5969, - [5970] = 1711, - [5971] = 5834, - [5972] = 5950, - [5973] = 4739, - [5974] = 5974, - [5975] = 5835, - [5976] = 411, - [5977] = 1645, - [5978] = 5978, - [5979] = 412, - [5980] = 4741, - [5981] = 5969, - [5982] = 5808, - [5983] = 5747, - [5984] = 5868, - [5985] = 5985, - [5986] = 413, - [5987] = 414, - [5988] = 1722, - [5989] = 1723, - [5990] = 1609, - [5991] = 1640, - [5992] = 1689, - [5993] = 415, - [5994] = 1611, - [5995] = 416, - [5996] = 339, - [5997] = 4598, - [5998] = 5748, - [5999] = 1640, - [6000] = 5910, - [6001] = 5818, - [6002] = 5837, - [6003] = 417, - [6004] = 5884, - [6005] = 418, - [6006] = 419, - [6007] = 5969, - [6008] = 420, - [6009] = 5808, - [6010] = 421, - [6011] = 404, - [6012] = 422, - [6013] = 4747, - [6014] = 4748, - [6015] = 6015, - [6016] = 5910, - [6017] = 5818, - [6018] = 5837, - [6019] = 5884, - [6020] = 6020, - [6021] = 5974, - [6022] = 4749, - [6023] = 5969, - [6024] = 423, - [6025] = 5969, - [6026] = 5808, - [6027] = 141, - [6028] = 140, - [6029] = 4750, - [6030] = 5969, - [6031] = 5808, - [6032] = 5969, - [6033] = 5808, - [6034] = 4751, - [6035] = 5969, - [6036] = 5808, - [6037] = 5969, - [6038] = 5808, - [6039] = 5969, - [6040] = 5808, - [6041] = 425, - [6042] = 5969, - [6043] = 5808, - [6044] = 6044, - [6045] = 5969, - [6046] = 5808, - [6047] = 426, - [6048] = 428, - [6049] = 1730, - [6050] = 5969, - [6051] = 5808, - [6052] = 5969, - [6053] = 5808, - [6054] = 5969, - [6055] = 5808, - [6056] = 5969, - [6057] = 5808, - [6058] = 5969, - [6059] = 5808, - [6060] = 4752, - [6061] = 5824, - [6062] = 5825, - [6063] = 5826, - [6064] = 6020, - [6065] = 437, - [6066] = 5838, - [6067] = 4753, - [6068] = 142, - [6069] = 5839, - [6070] = 4754, - [6071] = 4755, - [6072] = 384, - [6073] = 4756, - [6074] = 137, - [6075] = 5693, - [6076] = 6076, - [6077] = 4572, - [6078] = 503, - [6079] = 4755, - [6080] = 6076, - [6081] = 533, + [5923] = 4552, + [5924] = 1772, + [5925] = 348, + [5926] = 4652, + [5927] = 5803, + [5928] = 4677, + [5929] = 5929, + [5930] = 4656, + [5931] = 5931, + [5932] = 4579, + [5933] = 4693, + [5934] = 4694, + [5935] = 5880, + [5936] = 4553, + [5937] = 1542, + [5938] = 5938, + [5939] = 1628, + [5940] = 381, + [5941] = 4570, + [5942] = 5938, + [5943] = 5943, + [5944] = 5757, + [5945] = 428, + [5946] = 4762, + [5947] = 5803, + [5948] = 4658, + [5949] = 5949, + [5950] = 1743, + [5951] = 1744, + [5952] = 5878, + [5953] = 5870, + [5954] = 5812, + [5955] = 137, + [5956] = 5892, + [5957] = 4726, + [5958] = 5958, + [5959] = 4554, + [5960] = 1880, + [5961] = 5864, + [5962] = 5906, + [5963] = 5878, + [5964] = 5848, + [5965] = 5965, + [5966] = 1628, + [5967] = 5870, + [5968] = 5812, + [5969] = 5864, + [5970] = 5867, + [5971] = 412, + [5972] = 4622, + [5973] = 5799, + [5974] = 5895, + [5975] = 5872, + [5976] = 390, + [5977] = 143, + [5978] = 5799, + [5979] = 5922, + [5980] = 4703, + [5981] = 5938, + [5982] = 5878, + [5983] = 5870, + [5984] = 5812, + [5985] = 5892, + [5986] = 5886, + [5987] = 5906, + [5988] = 5848, + [5989] = 5803, + [5990] = 5990, + [5991] = 4704, + [5992] = 2827, + [5993] = 5906, + [5994] = 5848, + [5995] = 406, + [5996] = 5996, + [5997] = 5906, + [5998] = 5848, + [5999] = 1671, + [6000] = 5906, + [6001] = 5848, + [6002] = 5907, + [6003] = 5799, + [6004] = 5906, + [6005] = 5848, + [6006] = 1796, + [6007] = 5799, + [6008] = 5906, + [6009] = 5848, + [6010] = 141, + [6011] = 140, + [6012] = 5906, + [6013] = 5848, + [6014] = 6014, + [6015] = 5906, + [6016] = 5848, + [6017] = 5938, + [6018] = 5906, + [6019] = 5848, + [6020] = 395, + [6021] = 1693, + [6022] = 5906, + [6023] = 5848, + [6024] = 5906, + [6025] = 5848, + [6026] = 5906, + [6027] = 5848, + [6028] = 5906, + [6029] = 5848, + [6030] = 5906, + [6031] = 5848, + [6032] = 348, + [6033] = 5867, + [6034] = 5895, + [6035] = 4624, + [6036] = 5799, + [6037] = 5929, + [6038] = 5958, + [6039] = 5965, + [6040] = 5996, + [6041] = 6041, + [6042] = 5872, + [6043] = 6043, + [6044] = 5705, + [6045] = 5710, + [6046] = 5892, + [6047] = 5803, + [6048] = 4628, + [6049] = 5803, + [6050] = 144, + [6051] = 5803, + [6052] = 4629, + [6053] = 5886, + [6054] = 408, + [6055] = 5803, + [6056] = 396, + [6057] = 5922, + [6058] = 5722, + [6059] = 397, + [6060] = 4643, + [6061] = 5799, + [6062] = 6062, + [6063] = 4683, + [6064] = 4684, + [6065] = 4685, + [6066] = 4686, + [6067] = 4688, + [6068] = 4689, + [6069] = 4690, + [6070] = 4691, + [6071] = 4692, + [6072] = 4693, + [6073] = 4694, + [6074] = 4703, + [6075] = 4704, + [6076] = 2621, + [6077] = 515, + [6078] = 508, + [6079] = 509, + [6080] = 6080, + [6081] = 6081, [6082] = 6082, [6083] = 6083, - [6084] = 485, - [6085] = 6085, - [6086] = 2663, + [6084] = 361, + [6085] = 363, + [6086] = 515, [6087] = 6087, - [6088] = 6088, - [6089] = 504, - [6090] = 4760, - [6091] = 509, - [6092] = 4787, - [6093] = 530, + [6088] = 528, + [6089] = 6089, + [6090] = 378, + [6091] = 6089, + [6092] = 6092, + [6093] = 6093, [6094] = 6094, [6095] = 6095, - [6096] = 205, - [6097] = 6097, - [6098] = 6098, - [6099] = 6099, + [6096] = 6096, + [6097] = 2606, + [6098] = 139, + [6099] = 521, [6100] = 6100, - [6101] = 6101, - [6102] = 6102, - [6103] = 6103, - [6104] = 6104, - [6105] = 6105, - [6106] = 1689, + [6101] = 209, + [6102] = 531, + [6103] = 5826, + [6104] = 1671, + [6105] = 512, + [6106] = 138, [6107] = 6107, - [6108] = 510, - [6109] = 6076, + [6108] = 6108, + [6109] = 6109, [6110] = 6110, - [6111] = 6082, - [6112] = 4756, - [6113] = 6113, - [6114] = 4788, + [6111] = 6111, + [6112] = 6112, + [6113] = 6062, + [6114] = 6114, [6115] = 6115, [6116] = 6116, - [6117] = 6087, - [6118] = 4789, - [6119] = 6119, - [6120] = 370, - [6121] = 4598, - [6122] = 6122, - [6123] = 4790, - [6124] = 4599, - [6125] = 375, - [6126] = 3329, - [6127] = 3276, - [6128] = 6097, - [6129] = 6098, - [6130] = 6099, - [6131] = 6100, - [6132] = 6101, - [6133] = 6102, - [6134] = 6103, - [6135] = 6104, - [6136] = 3277, - [6137] = 508, - [6138] = 6138, - [6139] = 3365, - [6140] = 6076, - [6141] = 6141, - [6142] = 6082, - [6143] = 4761, - [6144] = 4762, + [6117] = 6117, + [6118] = 346, + [6119] = 4753, + [6120] = 6120, + [6121] = 515, + [6122] = 2597, + [6123] = 6123, + [6124] = 6124, + [6125] = 6125, + [6126] = 2599, + [6127] = 6127, + [6128] = 6128, + [6129] = 6129, + [6130] = 6130, + [6131] = 6131, + [6132] = 6132, + [6133] = 6133, + [6134] = 6134, + [6135] = 6135, + [6136] = 6136, + [6137] = 6080, + [6138] = 506, + [6139] = 6139, + [6140] = 6140, + [6141] = 380, + [6142] = 6142, + [6143] = 6143, + [6144] = 6081, [6145] = 6145, [6146] = 6146, - [6147] = 6087, - [6148] = 6148, - [6149] = 6149, + [6147] = 6147, + [6148] = 3376, + [6149] = 3258, [6150] = 6150, - [6151] = 351, + [6151] = 6151, [6152] = 6152, - [6153] = 6153, - [6154] = 488, - [6155] = 489, - [6156] = 490, + [6153] = 377, + [6154] = 6154, + [6155] = 6155, + [6156] = 6156, [6157] = 6157, [6158] = 6158, - [6159] = 6097, - [6160] = 6098, - [6161] = 6099, - [6162] = 6100, - [6163] = 6101, - [6164] = 6102, - [6165] = 6103, - [6166] = 6104, - [6167] = 2626, - [6168] = 509, - [6169] = 2654, - [6170] = 6076, - [6171] = 138, - [6172] = 6082, - [6173] = 6173, - [6174] = 2627, - [6175] = 6098, - [6176] = 4763, + [6159] = 3084, + [6160] = 533, + [6161] = 3259, + [6162] = 6083, + [6163] = 3260, + [6164] = 536, + [6165] = 537, + [6166] = 1130, + [6167] = 6167, + [6168] = 6083, + [6169] = 6169, + [6170] = 6170, + [6171] = 6171, + [6172] = 6062, + [6173] = 6129, + [6174] = 6080, + [6175] = 6130, + [6176] = 6081, [6177] = 6177, - [6178] = 6087, - [6179] = 6076, - [6180] = 384, - [6181] = 520, - [6182] = 6182, + [6178] = 6131, + [6179] = 6132, + [6180] = 3093, + [6181] = 6181, + [6182] = 6083, [6183] = 6183, - [6184] = 6184, - [6185] = 6101, - [6186] = 6082, - [6187] = 6187, - [6188] = 6097, - [6189] = 6098, - [6190] = 6099, - [6191] = 6100, - [6192] = 6101, - [6193] = 6102, - [6194] = 6103, - [6195] = 6104, - [6196] = 6076, - [6197] = 3077, - [6198] = 6198, - [6199] = 6076, - [6200] = 530, - [6201] = 6082, - [6202] = 339, + [6184] = 6082, + [6185] = 6089, + [6186] = 6100, + [6187] = 6062, + [6188] = 6114, + [6189] = 6115, + [6190] = 6133, + [6191] = 6134, + [6192] = 6135, + [6193] = 6150, + [6194] = 6107, + [6195] = 377, + [6196] = 378, + [6197] = 2609, + [6198] = 6114, + [6199] = 565, + [6200] = 4760, + [6201] = 6201, + [6202] = 6202, [6203] = 6203, - [6204] = 3273, + [6204] = 6204, [6205] = 6205, [6206] = 6206, - [6207] = 6087, - [6208] = 6208, - [6209] = 6082, - [6210] = 540, - [6211] = 531, + [6207] = 6080, + [6208] = 6081, + [6209] = 521, + [6210] = 512, + [6211] = 6083, [6212] = 6212, - [6213] = 4764, - [6214] = 6097, - [6215] = 6098, - [6216] = 6099, - [6217] = 6100, - [6218] = 6101, - [6219] = 6102, - [6220] = 6103, - [6221] = 6104, - [6222] = 6222, - [6223] = 6076, - [6224] = 6076, - [6225] = 533, - [6226] = 6082, - [6227] = 6087, - [6228] = 553, - [6229] = 6229, - [6230] = 6087, - [6231] = 4765, - [6232] = 4612, - [6233] = 6082, - [6234] = 493, - [6235] = 6099, - [6236] = 6097, - [6237] = 6098, - [6238] = 6099, - [6239] = 6100, - [6240] = 6101, - [6241] = 6102, - [6242] = 6103, - [6243] = 6104, - [6244] = 4613, - [6245] = 526, - [6246] = 521, - [6247] = 6076, - [6248] = 6082, - [6249] = 384, - [6250] = 6102, + [6213] = 6213, + [6214] = 6133, + [6215] = 6100, + [6216] = 6114, + [6217] = 6115, + [6218] = 6133, + [6219] = 6134, + [6220] = 6135, + [6221] = 6150, + [6222] = 6111, + [6223] = 6080, + [6224] = 6081, + [6225] = 6225, + [6226] = 6083, + [6227] = 6134, + [6228] = 381, + [6229] = 6135, + [6230] = 6230, + [6231] = 6100, + [6232] = 6062, + [6233] = 6114, + [6234] = 6115, + [6235] = 6133, + [6236] = 6134, + [6237] = 6135, + [6238] = 6150, + [6239] = 6239, + [6240] = 6080, + [6241] = 6081, + [6242] = 6112, + [6243] = 6115, + [6244] = 380, + [6245] = 508, + [6246] = 509, + [6247] = 6083, + [6248] = 2614, + [6249] = 6249, + [6250] = 2615, [6251] = 6251, - [6252] = 6087, - [6253] = 523, - [6254] = 4614, - [6255] = 1142, - [6256] = 4615, - [6257] = 6257, - [6258] = 6097, - [6259] = 6098, - [6260] = 6099, - [6261] = 6100, - [6262] = 6101, - [6263] = 6102, - [6264] = 6103, - [6265] = 6104, - [6266] = 6266, + [6252] = 507, + [6253] = 6253, + [6254] = 6100, + [6255] = 6062, + [6256] = 6114, + [6257] = 6115, + [6258] = 6133, + [6259] = 6134, + [6260] = 6135, + [6261] = 6150, + [6262] = 511, + [6263] = 377, + [6264] = 6080, + [6265] = 6265, + [6266] = 6081, [6267] = 6267, - [6268] = 6097, - [6269] = 384, - [6270] = 6082, - [6271] = 4758, - [6272] = 540, - [6273] = 6273, - [6274] = 6087, - [6275] = 6275, - [6276] = 6276, - [6277] = 6083, - [6278] = 6087, - [6279] = 6088, - [6280] = 6097, - [6281] = 6098, - [6282] = 6099, + [6268] = 6268, + [6269] = 6083, + [6270] = 6270, + [6271] = 6100, + [6272] = 6062, + [6273] = 6114, + [6274] = 6115, + [6275] = 6133, + [6276] = 6134, + [6277] = 6135, + [6278] = 6150, + [6279] = 6080, + [6280] = 6081, + [6281] = 6083, + [6282] = 6282, [6283] = 6100, - [6284] = 6101, - [6285] = 6102, - [6286] = 6103, - [6287] = 6104, - [6288] = 6146, - [6289] = 6289, - [6290] = 6076, - [6291] = 6082, - [6292] = 6087, - [6293] = 6087, - [6294] = 370, - [6295] = 6087, - [6296] = 6148, - [6297] = 6097, - [6298] = 6098, - [6299] = 6099, - [6300] = 6100, - [6301] = 6101, - [6302] = 6102, - [6303] = 6103, - [6304] = 6104, - [6305] = 6305, - [6306] = 6076, - [6307] = 6082, - [6308] = 6087, - [6309] = 6309, - [6310] = 6082, - [6311] = 6311, - [6312] = 6097, - [6313] = 6098, - [6314] = 6099, - [6315] = 6100, - [6316] = 6101, - [6317] = 6102, - [6318] = 6103, - [6319] = 6104, - [6320] = 6097, - [6321] = 6076, - [6322] = 6082, - [6323] = 6323, - [6324] = 6087, - [6325] = 6098, - [6326] = 6326, - [6327] = 6076, - [6328] = 6082, + [6284] = 6062, + [6285] = 6114, + [6286] = 6115, + [6287] = 6133, + [6288] = 6134, + [6289] = 6135, + [6290] = 6150, + [6291] = 6080, + [6292] = 6081, + [6293] = 6083, + [6294] = 6100, + [6295] = 6295, + [6296] = 6296, + [6297] = 6297, + [6298] = 6100, + [6299] = 6062, + [6300] = 6114, + [6301] = 6115, + [6302] = 6133, + [6303] = 6134, + [6304] = 6135, + [6305] = 6150, + [6306] = 501, + [6307] = 381, + [6308] = 6080, + [6309] = 6081, + [6310] = 6310, + [6311] = 6083, + [6312] = 4726, + [6313] = 6313, + [6314] = 6100, + [6315] = 6315, + [6316] = 6100, + [6317] = 6062, + [6318] = 6114, + [6319] = 6115, + [6320] = 6133, + [6321] = 6134, + [6322] = 6135, + [6323] = 6150, + [6324] = 6324, + [6325] = 4727, + [6326] = 6080, + [6327] = 6081, + [6328] = 6083, [6329] = 6329, - [6330] = 6087, - [6331] = 6099, - [6332] = 6076, - [6333] = 6082, - [6334] = 6100, - [6335] = 6087, - [6336] = 6336, - [6337] = 6076, - [6338] = 6082, - [6339] = 6101, - [6340] = 6087, - [6341] = 6083, - [6342] = 6076, - [6343] = 6082, - [6344] = 6087, - [6345] = 6088, - [6346] = 6076, - [6347] = 6082, - [6348] = 6087, - [6349] = 6122, - [6350] = 6076, - [6351] = 6082, - [6352] = 6087, - [6353] = 6102, - [6354] = 6076, - [6355] = 6082, - [6356] = 6087, - [6357] = 6146, - [6358] = 6076, - [6359] = 6082, - [6360] = 6087, - [6361] = 6103, - [6362] = 6076, - [6363] = 6082, - [6364] = 6087, - [6365] = 6104, - [6366] = 6076, - [6367] = 6082, - [6368] = 6087, - [6369] = 6148, - [6370] = 6076, - [6371] = 6082, - [6372] = 6087, - [6373] = 6076, - [6374] = 6082, - [6375] = 6087, - [6376] = 6076, - [6377] = 6082, - [6378] = 6087, - [6379] = 6076, - [6380] = 6082, - [6381] = 6087, - [6382] = 6076, - [6383] = 6082, - [6384] = 6087, - [6385] = 6076, - [6386] = 6082, - [6387] = 6087, - [6388] = 6388, - [6389] = 6087, - [6390] = 6082, - [6391] = 6087, - [6392] = 6082, - [6393] = 6087, - [6394] = 6082, - [6395] = 6087, - [6396] = 6082, - [6397] = 6087, - [6398] = 6101, - [6399] = 6102, - [6400] = 6076, - [6401] = 6401, - [6402] = 6402, - [6403] = 6403, - [6404] = 6404, - [6405] = 6094, - [6406] = 6100, - [6407] = 6407, - [6408] = 6408, - [6409] = 6103, - [6410] = 6103, - [6411] = 594, - [6412] = 6412, - [6413] = 503, - [6414] = 4606, - [6415] = 504, - [6416] = 6416, - [6417] = 6417, - [6418] = 527, - [6419] = 6419, - [6420] = 6420, - [6421] = 6421, - [6422] = 6422, - [6423] = 6423, - [6424] = 6424, - [6425] = 531, - [6426] = 533, - [6427] = 6110, - [6428] = 6412, - [6429] = 5873, - [6430] = 6430, - [6431] = 6431, - [6432] = 6432, - [6433] = 3047, - [6434] = 4549, - [6435] = 1609, - [6436] = 6436, - [6437] = 4766, - [6438] = 4754, - [6439] = 6439, - [6440] = 2644, - [6441] = 4648, - [6442] = 4649, - [6443] = 6443, - [6444] = 6444, - [6445] = 6445, - [6446] = 4654, - [6447] = 6311, - [6448] = 6336, - [6449] = 4657, - [6450] = 521, - [6451] = 4659, - [6452] = 6116, - [6453] = 4662, - [6454] = 530, - [6455] = 5881, - [6456] = 6456, - [6457] = 510, - [6458] = 6097, - [6459] = 6076, - [6460] = 6101, - [6461] = 4767, - [6462] = 6462, - [6463] = 379, - [6464] = 6082, - [6465] = 4769, - [6466] = 379, - [6467] = 528, - [6468] = 1689, - [6469] = 6309, - [6470] = 6470, - [6471] = 6471, - [6472] = 6472, - [6473] = 6102, - [6474] = 4772, - [6475] = 6087, - [6476] = 6471, - [6477] = 6173, - [6478] = 6103, - [6479] = 4776, - [6480] = 375, - [6481] = 6184, - [6482] = 6482, - [6483] = 148, - [6484] = 3055, - [6485] = 375, - [6486] = 6104, - [6487] = 522, - [6488] = 6203, - [6489] = 6098, - [6490] = 6097, - [6491] = 6098, - [6492] = 6492, - [6493] = 6493, - [6494] = 6494, - [6495] = 6099, - [6496] = 6496, - [6497] = 4706, - [6498] = 1645, + [6330] = 3263, + [6331] = 6100, + [6332] = 6062, + [6333] = 6114, + [6334] = 6115, + [6335] = 6133, + [6336] = 6134, + [6337] = 6135, + [6338] = 6150, + [6339] = 3264, + [6340] = 501, + [6341] = 6080, + [6342] = 6081, + [6343] = 6343, + [6344] = 6344, + [6345] = 6083, + [6346] = 6346, + [6347] = 6347, + [6348] = 6348, + [6349] = 6349, + [6350] = 6100, + [6351] = 6062, + [6352] = 6114, + [6353] = 6115, + [6354] = 6133, + [6355] = 6134, + [6356] = 6135, + [6357] = 6150, + [6358] = 6358, + [6359] = 6080, + [6360] = 6081, + [6361] = 6083, + [6362] = 6100, + [6363] = 6062, + [6364] = 6114, + [6365] = 6115, + [6366] = 6133, + [6367] = 6134, + [6368] = 6135, + [6369] = 6150, + [6370] = 4681, + [6371] = 6081, + [6372] = 6083, + [6373] = 6111, + [6374] = 6112, + [6375] = 6100, + [6376] = 6062, + [6377] = 6114, + [6378] = 6115, + [6379] = 6133, + [6380] = 6134, + [6381] = 6135, + [6382] = 6150, + [6383] = 521, + [6384] = 6080, + [6385] = 6081, + [6386] = 6083, + [6387] = 506, + [6388] = 6062, + [6389] = 6100, + [6390] = 6062, + [6391] = 6114, + [6392] = 6115, + [6393] = 6133, + [6394] = 6134, + [6395] = 6135, + [6396] = 6150, + [6397] = 6114, + [6398] = 6080, + [6399] = 6081, + [6400] = 6115, + [6401] = 6083, + [6402] = 6100, + [6403] = 6062, + [6404] = 6114, + [6405] = 6115, + [6406] = 6133, + [6407] = 6134, + [6408] = 6135, + [6409] = 6150, + [6410] = 6080, + [6411] = 6081, + [6412] = 6083, + [6413] = 538, + [6414] = 6414, + [6415] = 6080, + [6416] = 6081, + [6417] = 6083, + [6418] = 6080, + [6419] = 6081, + [6420] = 6083, + [6421] = 6080, + [6422] = 6081, + [6423] = 6083, + [6424] = 539, + [6425] = 6080, + [6426] = 6081, + [6427] = 6083, + [6428] = 6080, + [6429] = 6081, + [6430] = 6083, + [6431] = 6080, + [6432] = 6081, + [6433] = 6083, + [6434] = 6080, + [6435] = 6081, + [6436] = 6083, + [6437] = 5835, + [6438] = 6080, + [6439] = 6081, + [6440] = 6083, + [6441] = 526, + [6442] = 6080, + [6443] = 6081, + [6444] = 6083, + [6445] = 6080, + [6446] = 6081, + [6447] = 6083, + [6448] = 6080, + [6449] = 6081, + [6450] = 6083, + [6451] = 6080, + [6452] = 6081, + [6453] = 6083, + [6454] = 6080, + [6455] = 6081, + [6456] = 6083, + [6457] = 6080, + [6458] = 6081, + [6459] = 6083, + [6460] = 6080, + [6461] = 6081, + [6462] = 6083, + [6463] = 6081, + [6464] = 6083, + [6465] = 6081, + [6466] = 6083, + [6467] = 6081, + [6468] = 6083, + [6469] = 6081, + [6470] = 6083, + [6471] = 6081, + [6472] = 6083, + [6473] = 533, + [6474] = 6080, + [6475] = 6475, + [6476] = 3068, + [6477] = 6145, + [6478] = 521, + [6479] = 6479, + [6480] = 6480, + [6481] = 6481, + [6482] = 6152, + [6483] = 6483, + [6484] = 6484, + [6485] = 6485, + [6486] = 6486, + [6487] = 6487, + [6488] = 6488, + [6489] = 507, + [6490] = 6490, + [6491] = 4759, + [6492] = 511, + [6493] = 4762, + [6494] = 4764, + [6495] = 6495, + [6496] = 6096, + [6497] = 4765, + [6498] = 6498, [6499] = 6499, [6500] = 6500, - [6501] = 6100, - [6502] = 6101, - [6503] = 6102, - [6504] = 4707, + [6501] = 6143, + [6502] = 508, + [6503] = 509, + [6504] = 6146, [6505] = 6505, - [6506] = 531, - [6507] = 533, - [6508] = 6103, - [6509] = 6509, - [6510] = 6510, - [6511] = 6104, - [6512] = 5985, - [6513] = 6513, - [6514] = 4728, - [6515] = 6515, - [6516] = 6408, + [6506] = 6129, + [6507] = 6130, + [6508] = 6131, + [6509] = 6132, + [6510] = 6147, + [6511] = 6133, + [6512] = 6134, + [6513] = 6135, + [6514] = 1542, + [6515] = 348, + [6516] = 508, [6517] = 6517, [6518] = 6518, - [6519] = 1640, - [6520] = 4736, - [6521] = 6076, - [6522] = 6099, - [6523] = 4737, - [6524] = 1611, - [6525] = 6076, - [6526] = 379, - [6527] = 6082, - [6528] = 6100, + [6519] = 509, + [6520] = 454, + [6521] = 6521, + [6522] = 6522, + [6523] = 378, + [6524] = 6524, + [6525] = 6146, + [6526] = 6147, + [6527] = 1671, + [6528] = 6528, [6529] = 6529, - [6530] = 139, - [6531] = 6436, - [6532] = 3057, - [6533] = 6533, - [6534] = 2670, - [6535] = 4738, - [6536] = 370, - [6537] = 6537, - [6538] = 6087, - [6539] = 6539, - [6540] = 3067, - [6541] = 2609, - [6542] = 4782, + [6530] = 6150, + [6531] = 4552, + [6532] = 4553, + [6533] = 1631, + [6534] = 4554, + [6535] = 4570, + [6536] = 147, + [6537] = 4571, + [6538] = 4578, + [6539] = 4579, + [6540] = 6540, + [6541] = 6541, + [6542] = 1571, [6543] = 6543, - [6544] = 6173, + [6544] = 6544, [6545] = 6545, - [6546] = 4783, - [6547] = 6104, - [6548] = 361, - [6549] = 4739, - [6550] = 4784, - [6551] = 6097, + [6546] = 6546, + [6547] = 6547, + [6548] = 6548, + [6549] = 1628, + [6550] = 3099, + [6551] = 6481, [6552] = 6552, - [6553] = 6309, - [6554] = 6098, - [6555] = 6471, - [6556] = 6099, - [6557] = 6098, - [6558] = 6099, - [6559] = 6100, - [6560] = 6100, - [6561] = 6101, - [6562] = 6102, - [6563] = 6103, - [6564] = 6104, - [6565] = 6184, - [6566] = 4741, - [6567] = 353, - [6568] = 6568, + [6553] = 6081, + [6554] = 6554, + [6555] = 380, + [6556] = 3100, + [6557] = 381, + [6558] = 4620, + [6559] = 4621, + [6560] = 4622, + [6561] = 463, + [6562] = 6142, + [6563] = 6563, + [6564] = 5943, + [6565] = 4624, + [6566] = 6080, + [6567] = 4625, + [6568] = 6150, [6569] = 6569, - [6570] = 6076, - [6571] = 6229, - [6572] = 6082, - [6573] = 6097, - [6574] = 6574, - [6575] = 4759, - [6576] = 6576, - [6577] = 6104, - [6578] = 530, - [6579] = 6579, - [6580] = 6087, - [6581] = 4785, - [6582] = 4747, - [6583] = 6336, - [6584] = 3046, - [6585] = 6585, - [6586] = 6586, - [6587] = 6587, - [6588] = 3278, - [6589] = 540, - [6590] = 6590, - [6591] = 6585, - [6592] = 6443, - [6593] = 6444, - [6594] = 6095, + [6570] = 4627, + [6571] = 515, + [6572] = 4628, + [6573] = 4629, + [6574] = 4643, + [6575] = 4644, + [6576] = 4645, + [6577] = 4646, + [6578] = 4647, + [6579] = 4650, + [6580] = 4651, + [6581] = 4652, + [6582] = 4656, + [6583] = 4658, + [6584] = 6584, + [6585] = 6517, + [6586] = 6518, + [6587] = 6347, + [6588] = 6552, + [6589] = 4664, + [6590] = 6495, + [6591] = 4666, + [6592] = 4668, + [6593] = 4670, + [6594] = 6584, [6595] = 6517, - [6596] = 4786, - [6597] = 4748, - [6598] = 147, - [6599] = 510, - [6600] = 146, - [6601] = 6601, - [6602] = 6585, - [6603] = 6443, - [6604] = 6444, - [6605] = 6095, - [6606] = 531, - [6607] = 6097, - [6608] = 6098, - [6609] = 6099, - [6610] = 6100, - [6611] = 4749, - [6612] = 4750, - [6613] = 540, - [6614] = 6101, - [6615] = 6102, - [6616] = 6103, - [6617] = 4751, + [6596] = 6518, + [6597] = 6347, + [6598] = 3027, + [6599] = 6171, + [6600] = 6584, + [6601] = 4790, + [6602] = 4674, + [6603] = 148, + [6604] = 512, + [6605] = 146, + [6606] = 4677, + [6607] = 4679, + [6608] = 6087, + [6609] = 444, + [6610] = 461, + [6611] = 460, + [6612] = 6080, + [6613] = 1542, + [6614] = 649, + [6615] = 6615, + [6616] = 6547, + [6617] = 6617, [6618] = 6618, [6619] = 6619, [6620] = 6620, - [6621] = 4752, - [6622] = 4753, - [6623] = 6289, - [6624] = 6104, - [6625] = 508, - [6626] = 6626, + [6621] = 6621, + [6622] = 6622, + [6623] = 6623, + [6624] = 6624, + [6625] = 189, + [6626] = 6268, [6627] = 6627, - [6628] = 6628, - [6629] = 6082, - [6630] = 6630, - [6631] = 6631, - [6632] = 6632, - [6633] = 6633, - [6634] = 6634, - [6635] = 144, - [6636] = 6636, + [6628] = 651, + [6629] = 6618, + [6630] = 6297, + [6631] = 6615, + [6632] = 6548, + [6633] = 6619, + [6634] = 6620, + [6635] = 6128, + [6636] = 6139, [6637] = 6637, - [6638] = 6638, - [6639] = 6639, + [6638] = 650, + [6639] = 2599, [6640] = 6640, [6641] = 6641, - [6642] = 6642, - [6643] = 646, - [6644] = 6276, - [6645] = 647, - [6646] = 1645, + [6642] = 3093, + [6643] = 6643, + [6644] = 6627, + [6645] = 521, + [6646] = 6646, [6647] = 6647, - [6648] = 3046, - [6649] = 145, - [6650] = 648, - [6651] = 6651, - [6652] = 540, - [6653] = 649, - [6654] = 5511, - [6655] = 6655, - [6656] = 6401, - [6657] = 531, - [6658] = 6658, - [6659] = 6659, - [6660] = 533, - [6661] = 6661, - [6662] = 5492, - [6663] = 6632, - [6664] = 6633, - [6665] = 6634, - [6666] = 6636, + [6648] = 4528, + [6649] = 6615, + [6650] = 6618, + [6651] = 6619, + [6652] = 6620, + [6653] = 6622, + [6654] = 6623, + [6655] = 6624, + [6656] = 6627, + [6657] = 6657, + [6658] = 2937, + [6659] = 6140, + [6660] = 6282, + [6661] = 4530, + [6662] = 6647, + [6663] = 6295, + [6664] = 6206, + [6665] = 6665, + [6666] = 6641, [6667] = 6667, - [6668] = 6470, - [6669] = 6637, - [6670] = 6638, - [6671] = 530, - [6672] = 6115, - [6673] = 6641, - [6674] = 6674, - [6675] = 6119, - [6676] = 4517, - [6677] = 6677, - [6678] = 6678, - [6679] = 6679, - [6680] = 6651, - [6681] = 6681, - [6682] = 650, - [6683] = 6683, - [6684] = 651, - [6685] = 6659, - [6686] = 6153, - [6687] = 6661, - [6688] = 652, - [6689] = 6632, - [6690] = 6633, - [6691] = 6634, - [6692] = 653, - [6693] = 6636, - [6694] = 634, - [6695] = 3047, - [6696] = 6637, - [6697] = 6638, - [6698] = 6641, - [6699] = 6699, - [6700] = 6419, - [6701] = 6701, - [6702] = 638, - [6703] = 6651, - [6704] = 3134, - [6705] = 6205, - [6706] = 6651, - [6707] = 6206, - [6708] = 6212, - [6709] = 6158, - [6710] = 6222, - [6711] = 6711, - [6712] = 3139, - [6713] = 3140, - [6714] = 6659, - [6715] = 2973, - [6716] = 6661, - [6717] = 3146, - [6718] = 654, - [6719] = 6632, - [6720] = 6633, - [6721] = 6634, - [6722] = 610, - [6723] = 6636, - [6724] = 6637, - [6725] = 6638, - [6726] = 6726, - [6727] = 6641, - [6728] = 6728, - [6729] = 353, - [6730] = 6730, - [6731] = 6651, - [6732] = 540, - [6733] = 6733, - [6734] = 6659, - [6735] = 631, - [6736] = 6275, - [6737] = 6661, - [6738] = 611, - [6739] = 6632, - [6740] = 6633, - [6741] = 6634, - [6742] = 6636, - [6743] = 612, - [6744] = 6637, - [6745] = 6638, - [6746] = 2626, - [6747] = 6641, - [6748] = 616, - [6749] = 626, - [6750] = 6651, - [6751] = 6751, - [6752] = 6404, - [6753] = 6182, - [6754] = 6651, - [6755] = 6257, - [6756] = 6659, - [6757] = 3055, - [6758] = 531, - [6759] = 6661, - [6760] = 2627, - [6761] = 6658, - [6762] = 3057, - [6763] = 6632, - [6764] = 6633, - [6765] = 6634, - [6766] = 6266, - [6767] = 6636, - [6768] = 6637, - [6769] = 6638, + [6668] = 6623, + [6669] = 6669, + [6670] = 6230, + [6671] = 6522, + [6672] = 3068, + [6673] = 6647, + [6674] = 5494, + [6675] = 6543, + [6676] = 6615, + [6677] = 6624, + [6678] = 6618, + [6679] = 6619, + [6680] = 6620, + [6681] = 6554, + [6682] = 6622, + [6683] = 6479, + [6684] = 6623, + [6685] = 6624, + [6686] = 6541, + [6687] = 6627, + [6688] = 1136, + [6689] = 515, + [6690] = 593, + [6691] = 6691, + [6692] = 6267, + [6693] = 5508, + [6694] = 6694, + [6695] = 653, + [6696] = 6120, + [6697] = 655, + [6698] = 585, + [6699] = 6641, + [6700] = 6700, + [6701] = 586, + [6702] = 6647, + [6703] = 6703, + [6704] = 6704, + [6705] = 6615, + [6706] = 6706, + [6707] = 2939, + [6708] = 6618, + [6709] = 6619, + [6710] = 6620, + [6711] = 6265, + [6712] = 6622, + [6713] = 6480, + [6714] = 6623, + [6715] = 6624, + [6716] = 6627, + [6717] = 587, + [6718] = 592, + [6719] = 6167, + [6720] = 6617, + [6721] = 616, + [6722] = 6151, + [6723] = 6641, + [6724] = 6724, + [6725] = 6725, + [6726] = 6154, + [6727] = 566, + [6728] = 6647, + [6729] = 6155, + [6730] = 6615, + [6731] = 6618, + [6732] = 6619, + [6733] = 6620, + [6734] = 6622, + [6735] = 6622, + [6736] = 6646, + [6737] = 6623, + [6738] = 6624, + [6739] = 6623, + [6740] = 6624, + [6741] = 6627, + [6742] = 521, + [6743] = 6157, + [6744] = 6169, + [6745] = 6158, + [6746] = 6746, + [6747] = 6747, + [6748] = 2946, + [6749] = 6641, + [6750] = 3121, + [6751] = 6618, + [6752] = 6619, + [6753] = 6620, + [6754] = 6746, + [6755] = 6647, + [6756] = 6756, + [6757] = 6747, + [6758] = 6615, + [6759] = 6618, + [6760] = 6619, + [6761] = 6620, + [6762] = 6296, + [6763] = 6622, + [6764] = 6203, + [6765] = 6623, + [6766] = 6624, + [6767] = 3122, + [6768] = 6627, + [6769] = 590, [6770] = 6770, - [6771] = 6273, - [6772] = 6641, - [6773] = 533, - [6774] = 6658, - [6775] = 6183, - [6776] = 6601, - [6777] = 6659, - [6778] = 6651, - [6779] = 6779, - [6780] = 6661, - [6781] = 613, - [6782] = 614, - [6783] = 6659, - [6784] = 615, - [6785] = 6659, - [6786] = 6661, - [6787] = 6482, - [6788] = 6632, - [6789] = 6633, - [6790] = 6634, - [6791] = 6636, - [6792] = 6543, - [6793] = 6637, - [6794] = 6638, - [6795] = 6492, - [6796] = 6796, - [6797] = 6641, - [6798] = 6138, - [6799] = 510, - [6800] = 6198, - [6801] = 6493, - [6802] = 6494, + [6771] = 6771, + [6772] = 591, + [6773] = 6343, + [6774] = 660, + [6775] = 6204, + [6776] = 654, + [6777] = 6641, + [6778] = 6778, + [6779] = 3123, + [6780] = 6641, + [6781] = 6781, + [6782] = 141, + [6783] = 6618, + [6784] = 6784, + [6785] = 6647, + [6786] = 6619, + [6787] = 6615, + [6788] = 6788, + [6789] = 6789, + [6790] = 6618, + [6791] = 6619, + [6792] = 6620, + [6793] = 6622, + [6794] = 6794, + [6795] = 6623, + [6796] = 6624, + [6797] = 377, + [6798] = 6627, + [6799] = 6799, + [6800] = 569, + [6801] = 6801, + [6802] = 6620, [6803] = 6803, - [6804] = 6658, - [6805] = 617, + [6804] = 6177, + [6805] = 6641, [6806] = 6806, - [6807] = 6651, - [6808] = 6641, - [6809] = 6659, - [6810] = 6661, - [6811] = 3067, - [6812] = 6632, - [6813] = 6633, - [6814] = 6634, - [6815] = 6636, - [6816] = 618, - [6817] = 6637, - [6818] = 6638, - [6819] = 6641, - [6820] = 619, - [6821] = 6821, - [6822] = 6821, - [6823] = 620, - [6824] = 189, - [6825] = 6661, - [6826] = 6826, - [6827] = 6651, - [6828] = 279, - [6829] = 4451, - [6830] = 6529, - [6831] = 6659, - [6832] = 6632, - [6833] = 6661, - [6834] = 6633, - [6835] = 6634, - [6836] = 6632, - [6837] = 6633, - [6838] = 6634, - [6839] = 6636, - [6840] = 621, - [6841] = 6637, - [6842] = 6638, - [6843] = 4452, - [6844] = 6659, - [6845] = 6641, - [6846] = 6422, - [6847] = 622, - [6848] = 623, - [6849] = 555, - [6850] = 6850, - [6851] = 3077, - [6852] = 6651, - [6853] = 6423, - [6854] = 629, - [6855] = 6659, - [6856] = 6661, - [6857] = 6857, - [6858] = 6496, - [6859] = 6632, - [6860] = 6633, - [6861] = 6634, - [6862] = 2654, - [6863] = 6636, - [6864] = 6864, - [6865] = 6865, - [6866] = 6637, - [6867] = 6638, - [6868] = 630, - [6869] = 6641, - [6870] = 6870, - [6871] = 6267, - [6872] = 6872, - [6873] = 6208, - [6874] = 6651, - [6875] = 6417, - [6876] = 6430, - [6877] = 6659, - [6878] = 6661, - [6879] = 6632, - [6880] = 6633, - [6881] = 6634, - [6882] = 2644, - [6883] = 6636, - [6884] = 6432, - [6885] = 530, - [6886] = 6637, - [6887] = 6638, - [6888] = 6677, - [6889] = 6733, - [6890] = 6641, - [6891] = 6826, - [6892] = 6892, - [6893] = 6661, - [6894] = 6636, - [6895] = 6632, - [6896] = 6633, - [6897] = 6634, - [6898] = 6898, - [6899] = 6636, - [6900] = 6637, - [6901] = 6637, - [6902] = 6638, - [6903] = 6638, - [6904] = 6904, - [6905] = 6641, + [6807] = 2609, + [6808] = 6808, + [6809] = 6641, + [6810] = 256, + [6811] = 6811, + [6812] = 588, + [6813] = 641, + [6814] = 6647, + [6815] = 6615, + [6816] = 6212, + [6817] = 6618, + [6818] = 6619, + [6819] = 6620, + [6820] = 6622, + [6821] = 652, + [6822] = 6623, + [6823] = 6624, + [6824] = 6627, + [6825] = 6825, + [6826] = 6627, + [6827] = 6827, + [6828] = 6213, + [6829] = 6181, + [6830] = 6641, + [6831] = 2614, + [6832] = 2615, + [6833] = 140, + [6834] = 378, + [6835] = 6647, + [6836] = 6615, + [6837] = 6344, + [6838] = 6618, + [6839] = 6619, + [6840] = 6620, + [6841] = 6622, + [6842] = 6623, + [6843] = 6624, + [6844] = 515, + [6845] = 6627, + [6846] = 6094, + [6847] = 567, + [6848] = 508, + [6849] = 380, + [6850] = 3134, + [6851] = 595, + [6852] = 6641, + [6853] = 509, + [6854] = 3138, + [6855] = 6647, + [6856] = 3141, + [6857] = 6615, + [6858] = 6858, + [6859] = 6618, + [6860] = 6619, + [6861] = 6620, + [6862] = 6622, + [6863] = 6623, + [6864] = 6624, + [6865] = 381, + [6866] = 641, + [6867] = 6627, + [6868] = 629, + [6869] = 6869, + [6870] = 6183, + [6871] = 6641, + [6872] = 2606, + [6873] = 6647, + [6874] = 6724, + [6875] = 6615, + [6876] = 6876, + [6877] = 6618, + [6878] = 6619, + [6879] = 6620, + [6880] = 6622, + [6881] = 6881, + [6882] = 6346, + [6883] = 6623, + [6884] = 6624, + [6885] = 6885, + [6886] = 6239, + [6887] = 6627, + [6888] = 6646, + [6889] = 596, + [6890] = 6890, + [6891] = 6615, + [6892] = 6622, + [6893] = 6618, + [6894] = 6619, + [6895] = 6620, + [6896] = 6896, + [6897] = 6622, + [6898] = 6781, + [6899] = 6623, + [6900] = 6624, + [6901] = 6770, + [6902] = 6902, + [6903] = 6627, + [6904] = 6778, + [6905] = 6110, [6906] = 6906, - [6907] = 6907, - [6908] = 6636, - [6909] = 6909, - [6910] = 6661, - [6911] = 6911, - [6912] = 6912, - [6913] = 6632, - [6914] = 6633, - [6915] = 6634, - [6916] = 6568, - [6917] = 6636, - [6918] = 644, - [6919] = 6637, - [6920] = 6638, - [6921] = 6641, - [6922] = 6898, - [6923] = 6907, - [6924] = 6552, - [6925] = 6925, - [6926] = 6632, - [6927] = 6633, - [6928] = 6631, - [6929] = 6634, - [6930] = 6679, - [6931] = 2670, - [6932] = 2609, - [6933] = 6892, - [6934] = 6632, - [6935] = 6630, - [6936] = 6633, - [6937] = 6937, - [6938] = 6403, - [6939] = 6634, - [6940] = 6940, - [6941] = 6941, - [6942] = 375, - [6943] = 6943, - [6944] = 6944, - [6945] = 6641, - [6946] = 6141, - [6947] = 6439, - [6948] = 384, - [6949] = 556, - [6950] = 1609, - [6951] = 6445, - [6952] = 639, - [6953] = 379, - [6954] = 6145, - [6955] = 370, - [6956] = 6149, - [6957] = 640, - [6958] = 6639, - [6959] = 606, - [6960] = 3145, - [6961] = 3163, - [6962] = 3172, - [6963] = 6642, - [6964] = 361, - [6965] = 6770, - [6966] = 6779, - [6967] = 6323, - [6968] = 6826, - [6969] = 6969, - [6970] = 6970, - [6971] = 683, - [6972] = 6904, - [6973] = 684, - [6974] = 6906, - [6975] = 632, - [6976] = 6911, - [6977] = 6892, - [6978] = 633, - [6979] = 6925, - [6980] = 6980, - [6981] = 603, - [6982] = 6631, + [6907] = 6799, + [6908] = 6801, + [6909] = 6623, + [6910] = 6624, + [6911] = 6615, + [6912] = 6618, + [6913] = 6619, + [6914] = 6620, + [6915] = 6622, + [6916] = 6916, + [6917] = 6623, + [6918] = 6624, + [6919] = 6896, + [6920] = 6627, + [6921] = 6921, + [6922] = 6621, + [6923] = 6704, + [6924] = 6641, + [6925] = 6921, + [6926] = 6647, + [6927] = 6927, + [6928] = 6928, + [6929] = 594, + [6930] = 6486, + [6931] = 3084, + [6932] = 6932, + [6933] = 6615, + [6934] = 6934, + [6935] = 3099, + [6936] = 645, + [6937] = 6483, + [6938] = 6484, + [6939] = 6617, + [6940] = 6487, + [6941] = 6546, + [6942] = 6942, + [6943] = 3169, + [6944] = 3177, + [6945] = 3178, + [6946] = 3179, + [6947] = 3100, + [6948] = 363, + [6949] = 6949, + [6950] = 6881, + [6951] = 2621, + [6952] = 6952, + [6953] = 6270, + [6954] = 6756, + [6955] = 6529, + [6956] = 6563, + [6957] = 6694, + [6958] = 348, + [6959] = 6959, + [6960] = 6641, + [6961] = 1571, + [6962] = 6885, + [6963] = 6963, + [6964] = 584, + [6965] = 508, + [6966] = 659, + [6967] = 6967, + [6968] = 6646, + [6969] = 669, + [6970] = 6108, + [6971] = 6615, + [6972] = 638, + [6973] = 6973, + [6974] = 6974, + [6975] = 142, + [6976] = 642, + [6977] = 6646, + [6978] = 6725, + [6979] = 6979, + [6980] = 6647, + [6981] = 6974, + [6982] = 6906, [6983] = 6983, - [6984] = 637, - [6985] = 6655, - [6986] = 6661, - [6987] = 6987, - [6988] = 6639, - [6989] = 6989, - [6990] = 6636, - [6991] = 6642, - [6992] = 6329, - [6993] = 6637, - [6994] = 6638, + [6984] = 6928, + [6985] = 6784, + [6986] = 6806, + [6987] = 597, + [6988] = 598, + [6989] = 6109, + [6990] = 6990, + [6991] = 6669, + [6992] = 6615, + [6993] = 6622, + [6994] = 6627, [6995] = 6995, - [6996] = 6107, - [6997] = 6997, - [6998] = 6637, - [6999] = 6999, - [7000] = 7000, - [7001] = 6638, - [7002] = 7002, - [7003] = 141, - [7004] = 140, - [7005] = 6872, - [7006] = 6420, - [7007] = 7007, - [7008] = 6987, - [7009] = 339, - [7010] = 607, - [7011] = 1611, - [7012] = 7012, - [7013] = 6630, - [7014] = 2963, - [7015] = 6941, - [7016] = 608, - [7017] = 6999, - [7018] = 6431, - [7019] = 6113, - [7020] = 7000, - [7021] = 626, - [7022] = 7022, - [7023] = 6619, - [7024] = 6626, - [7025] = 6513, - [7026] = 7026, - [7027] = 6627, - [7028] = 6628, - [7029] = 641, - [7030] = 642, - [7031] = 1152, - [7032] = 6574, - [7033] = 6533, - [7034] = 7034, - [7035] = 6579, - [7036] = 6647, - [7037] = 6150, - [7038] = 6667, - [7039] = 6305, - [7040] = 643, - [7041] = 1640, - [7042] = 6587, - [7043] = 6989, - [7044] = 600, - [7045] = 6590, - [7046] = 558, - [7047] = 2965, - [7048] = 6904, - [7049] = 6999, - [7050] = 6983, - [7051] = 6651, - [7052] = 6641, - [7053] = 6576, - [7054] = 6987, - [7055] = 6630, - [7056] = 6941, - [7057] = 7057, - [7058] = 4515, - [7059] = 609, - [7060] = 7000, - [7061] = 6152, - [7062] = 625, - [7063] = 7063, - [7064] = 3164, - [7065] = 6658, - [7066] = 6659, - [7067] = 3189, - [7068] = 7068, - [7069] = 6661, - [7070] = 7070, - [7071] = 627, - [7072] = 1689, - [7073] = 6904, - [7074] = 7074, - [7075] = 6999, - [7076] = 6826, - [7077] = 6987, - [7078] = 6630, - [7079] = 6569, - [7080] = 6941, - [7081] = 7000, - [7082] = 6632, - [7083] = 6633, - [7084] = 6904, - [7085] = 7085, - [7086] = 6634, - [7087] = 6999, - [7088] = 6987, - [7089] = 6630, - [7090] = 6941, - [7091] = 7000, - [7092] = 6904, - [7093] = 6999, - [7094] = 6636, - [7095] = 6987, - [7096] = 6630, - [7097] = 6941, - [7098] = 7000, - [7099] = 6904, - [7100] = 6637, - [7101] = 6999, - [7102] = 7102, - [7103] = 6638, - [7104] = 6987, - [7105] = 6630, - [7106] = 6941, - [7107] = 7000, - [7108] = 6904, - [7109] = 6999, - [7110] = 7110, - [7111] = 6987, - [7112] = 6630, - [7113] = 6641, - [7114] = 6941, - [7115] = 7000, - [7116] = 6904, - [7117] = 625, - [7118] = 6999, - [7119] = 7119, - [7120] = 6462, - [7121] = 6987, - [7122] = 6424, - [7123] = 6941, - [7124] = 7000, - [7125] = 6904, - [7126] = 6537, - [7127] = 6999, - [7128] = 602, - [7129] = 3123, - [7130] = 6987, - [7131] = 6630, - [7132] = 635, - [7133] = 6941, - [7134] = 7000, - [7135] = 6904, - [7136] = 636, - [7137] = 6999, - [7138] = 7138, - [7139] = 6987, - [7140] = 6630, - [7141] = 6941, - [7142] = 7000, - [7143] = 6904, - [7144] = 6969, - [7145] = 6999, - [7146] = 6987, - [7147] = 6630, - [7148] = 190, - [7149] = 6941, - [7150] = 7000, - [7151] = 6904, - [7152] = 3158, - [7153] = 6651, - [7154] = 6999, - [7155] = 6987, - [7156] = 6630, - [7157] = 6941, - [7158] = 7000, - [7159] = 6904, - [7160] = 6999, - [7161] = 6987, - [7162] = 6630, - [7163] = 6770, - [7164] = 6941, - [7165] = 7000, - [7166] = 6904, - [7167] = 6999, - [7168] = 6499, - [7169] = 6987, - [7170] = 6630, - [7171] = 6941, - [7172] = 7000, - [7173] = 6904, - [7174] = 6999, - [7175] = 6987, - [7176] = 6630, - [7177] = 6779, - [7178] = 6941, - [7179] = 7000, - [7180] = 6904, - [7181] = 6999, - [7182] = 7182, - [7183] = 6987, - [7184] = 6630, - [7185] = 6500, - [7186] = 6941, - [7187] = 7000, - [7188] = 6505, - [7189] = 6509, - [7190] = 6510, - [7191] = 6970, - [7192] = 604, - [7193] = 6980, - [7194] = 2663, - [7195] = 628, - [7196] = 142, - [7197] = 605, - [7198] = 1689, - [7199] = 6651, - [7200] = 685, - [7201] = 6906, - [7202] = 6911, - [7203] = 645, - [7204] = 6658, - [7205] = 6659, - [7206] = 6545, - [7207] = 6925, - [7208] = 6661, - [7209] = 143, - [7210] = 3067, + [6996] = 143, + [6997] = 144, + [6998] = 509, + [6999] = 6724, + [7000] = 6706, + [7001] = 6617, + [7002] = 646, + [7003] = 599, + [7004] = 6973, + [7005] = 6618, + [7006] = 6170, + [7007] = 145, + [7008] = 600, + [7009] = 7009, + [7010] = 6619, + [7011] = 6569, + [7012] = 6620, + [7013] = 7013, + [7014] = 7014, + [7015] = 7015, + [7016] = 6205, + [7017] = 6756, + [7018] = 6622, + [7019] = 635, + [7020] = 6973, + [7021] = 6623, + [7022] = 6624, + [7023] = 1628, + [7024] = 6974, + [7025] = 6784, + [7026] = 6806, + [7027] = 361, + [7028] = 6881, + [7029] = 6627, + [7030] = 6669, + [7031] = 6885, + [7032] = 647, + [7033] = 601, + [7034] = 6315, + [7035] = 644, + [7036] = 6116, + [7037] = 6647, + [7038] = 604, + [7039] = 6117, + [7040] = 7040, + [7041] = 634, + [7042] = 6414, + [7043] = 634, + [7044] = 7044, + [7045] = 3164, + [7046] = 7046, + [7047] = 6963, + [7048] = 605, + [7049] = 6770, + [7050] = 6778, + [7051] = 606, + [7052] = 6756, + [7053] = 4491, + [7054] = 6973, + [7055] = 6974, + [7056] = 6784, + [7057] = 609, + [7058] = 6806, + [7059] = 6669, + [7060] = 6799, + [7061] = 6756, + [7062] = 648, + [7063] = 6801, + [7064] = 6973, + [7065] = 7065, + [7066] = 6540, + [7067] = 6974, + [7068] = 6784, + [7069] = 6806, + [7070] = 6669, + [7071] = 6756, + [7072] = 6973, + [7073] = 6896, + [7074] = 610, + [7075] = 6974, + [7076] = 6784, + [7077] = 6921, + [7078] = 6806, + [7079] = 6669, + [7080] = 6756, + [7081] = 1671, + [7082] = 6973, + [7083] = 6485, + [7084] = 6974, + [7085] = 6784, + [7086] = 4395, + [7087] = 6806, + [7088] = 6669, + [7089] = 6756, + [7090] = 7090, + [7091] = 6123, + [7092] = 6973, + [7093] = 6498, + [7094] = 6974, + [7095] = 6784, + [7096] = 6806, + [7097] = 6669, + [7098] = 6756, + [7099] = 190, + [7100] = 7100, + [7101] = 6973, + [7102] = 6348, + [7103] = 667, + [7104] = 6974, + [7105] = 6784, + [7106] = 6967, + [7107] = 6806, + [7108] = 6669, + [7109] = 6756, + [7110] = 666, + [7111] = 6499, + [7112] = 6973, + [7113] = 6974, + [7114] = 6784, + [7115] = 668, + [7116] = 6806, + [7117] = 6669, + [7118] = 6756, + [7119] = 6973, + [7120] = 6202, + [7121] = 6974, + [7122] = 6784, + [7123] = 6806, + [7124] = 6669, + [7125] = 6756, + [7126] = 7126, + [7127] = 6973, + [7128] = 1631, + [7129] = 6974, + [7130] = 6784, + [7131] = 6890, + [7132] = 6806, + [7133] = 6669, + [7134] = 6756, + [7135] = 6973, + [7136] = 3027, + [7137] = 6974, + [7138] = 6784, + [7139] = 611, + [7140] = 6806, + [7141] = 6669, + [7142] = 6756, + [7143] = 6973, + [7144] = 612, + [7145] = 6974, + [7146] = 6784, + [7147] = 613, + [7148] = 6806, + [7149] = 6669, + [7150] = 6756, + [7151] = 6973, + [7152] = 6974, + [7153] = 6784, + [7154] = 6806, + [7155] = 6669, + [7156] = 6756, + [7157] = 6973, + [7158] = 614, + [7159] = 6974, + [7160] = 6784, + [7161] = 6505, + [7162] = 6806, + [7163] = 6669, + [7164] = 6756, + [7165] = 6973, + [7166] = 6974, + [7167] = 6784, + [7168] = 6806, + [7169] = 6669, + [7170] = 2597, + [7171] = 6124, + [7172] = 6544, + [7173] = 7173, + [7174] = 6858, + [7175] = 615, + [7176] = 6528, + [7177] = 6641, + [7178] = 512, + [7179] = 6125, + [7180] = 7180, + [7181] = 625, + [7182] = 6349, + [7183] = 6869, + [7184] = 628, + [7185] = 6545, + [7186] = 623, + [7187] = 1671, + [7188] = 6646, + [7189] = 6253, + [7190] = 626, + [7191] = 6647, + [7192] = 6490, + [7193] = 7193, + [7194] = 3235, + [7195] = 3068, + [7196] = 3237, + [7197] = 7197, + [7198] = 1628, + [7199] = 7199, + [7200] = 624, + [7201] = 7201, + [7202] = 7202, + [7203] = 7203, + [7204] = 7204, + [7205] = 7205, + [7206] = 7206, + [7207] = 7207, + [7208] = 4384, + [7209] = 7209, + [7210] = 7210, [7211] = 7211, - [7212] = 3077, - [7213] = 7213, + [7212] = 7212, + [7213] = 148, [7214] = 7214, [7215] = 7215, - [7216] = 7216, + [7216] = 380, [7217] = 7217, - [7218] = 7218, - [7219] = 7219, + [7218] = 146, + [7219] = 2116, [7220] = 7220, [7221] = 7221, - [7222] = 7222, - [7223] = 7223, + [7222] = 1631, + [7223] = 2112, [7224] = 7224, - [7225] = 7225, - [7226] = 7226, - [7227] = 7220, - [7228] = 668, - [7229] = 530, - [7230] = 7230, - [7231] = 673, - [7232] = 375, - [7233] = 4606, - [7234] = 7234, - [7235] = 7216, + [7225] = 7193, + [7226] = 7199, + [7227] = 7227, + [7228] = 7228, + [7229] = 4456, + [7230] = 3099, + [7231] = 7231, + [7232] = 515, + [7233] = 7233, + [7234] = 3100, + [7235] = 7193, [7236] = 7236, - [7237] = 7221, - [7238] = 2098, - [7239] = 7239, - [7240] = 7240, + [7237] = 7237, + [7238] = 7238, + [7239] = 7224, + [7240] = 191, [7241] = 7241, - [7242] = 7219, - [7243] = 7234, + [7242] = 7242, + [7243] = 2113, [7244] = 7244, - [7245] = 148, - [7246] = 7246, - [7247] = 4456, - [7248] = 7216, - [7249] = 7249, - [7250] = 7250, + [7245] = 7245, + [7246] = 7205, + [7247] = 4775, + [7248] = 7202, + [7249] = 7206, + [7250] = 381, [7251] = 7251, - [7252] = 7252, - [7253] = 7253, + [7252] = 7224, + [7253] = 7193, [7254] = 7254, [7255] = 7255, - [7256] = 6865, - [7257] = 7257, + [7256] = 7245, + [7257] = 7202, [7258] = 7258, - [7259] = 191, + [7259] = 1709, [7260] = 7260, - [7261] = 510, - [7262] = 7262, + [7261] = 7254, + [7262] = 7206, [7263] = 7263, - [7264] = 7264, - [7265] = 7265, - [7266] = 7266, - [7267] = 1640, - [7268] = 370, - [7269] = 7269, - [7270] = 7270, - [7271] = 7236, - [7272] = 7257, + [7264] = 147, + [7265] = 4760, + [7266] = 618, + [7267] = 7236, + [7268] = 7221, + [7269] = 2083, + [7270] = 7245, + [7271] = 619, + [7272] = 6803, [7273] = 7273, - [7274] = 147, - [7275] = 146, - [7276] = 7220, - [7277] = 7277, - [7278] = 7244, + [7274] = 7254, + [7275] = 7236, + [7276] = 7251, + [7277] = 7221, + [7278] = 7245, [7279] = 7279, - [7280] = 7222, - [7281] = 7281, - [7282] = 7255, - [7283] = 681, - [7284] = 3245, - [7285] = 7234, - [7286] = 3244, - [7287] = 7287, - [7288] = 7222, - [7289] = 7223, - [7290] = 7220, - [7291] = 7221, - [7292] = 7216, - [7293] = 7252, - [7294] = 7294, - [7295] = 7265, - [7296] = 540, - [7297] = 7297, - [7298] = 7265, - [7299] = 7264, - [7300] = 7236, - [7301] = 2130, - [7302] = 1689, - [7303] = 531, - [7304] = 379, - [7305] = 7305, - [7306] = 533, - [7307] = 7220, - [7308] = 7221, - [7309] = 7265, - [7310] = 7310, - [7311] = 2088, - [7312] = 2126, - [7313] = 7264, - [7314] = 3055, - [7315] = 7236, - [7316] = 7265, - [7317] = 7264, - [7318] = 7234, - [7319] = 7216, - [7320] = 674, - [7321] = 7321, - [7322] = 7240, - [7323] = 7241, - [7324] = 7264, - [7325] = 384, - [7326] = 7264, - [7327] = 7327, - [7328] = 7240, - [7329] = 3046, - [7330] = 3057, - [7331] = 7222, - [7332] = 7223, - [7333] = 7333, - [7334] = 7334, - [7335] = 7335, - [7336] = 7221, - [7337] = 7321, - [7338] = 4635, - [7339] = 7223, - [7340] = 7297, - [7341] = 7341, - [7342] = 7224, - [7343] = 7220, - [7344] = 7221, - [7345] = 7251, - [7346] = 7346, + [7280] = 7237, + [7281] = 7254, + [7282] = 7202, + [7283] = 7206, + [7284] = 7205, + [7285] = 377, + [7286] = 7286, + [7287] = 627, + [7288] = 7288, + [7289] = 3093, + [7290] = 2088, + [7291] = 515, + [7292] = 7292, + [7293] = 7293, + [7294] = 7251, + [7295] = 1671, + [7296] = 7279, + [7297] = 7237, + [7298] = 7205, + [7299] = 7299, + [7300] = 7300, + [7301] = 7251, + [7302] = 508, + [7303] = 7303, + [7304] = 3027, + [7305] = 7237, + [7306] = 521, + [7307] = 7307, + [7308] = 7245, + [7309] = 509, + [7310] = 7237, + [7311] = 7254, + [7312] = 7238, + [7313] = 7313, + [7314] = 7314, + [7315] = 7315, + [7316] = 7316, + [7317] = 7242, + [7318] = 7224, + [7319] = 7319, + [7320] = 7237, + [7321] = 630, + [7322] = 7236, + [7323] = 7288, + [7324] = 7299, + [7325] = 7221, + [7326] = 7214, + [7327] = 7260, + [7328] = 636, + [7329] = 7197, + [7330] = 7220, + [7331] = 7331, + [7332] = 512, + [7333] = 7307, + [7334] = 7314, + [7335] = 7242, + [7336] = 7336, + [7337] = 7337, + [7338] = 7338, + [7339] = 2128, + [7340] = 7340, + [7341] = 7224, + [7342] = 7342, + [7343] = 7193, + [7344] = 7300, + [7345] = 7345, + [7346] = 7224, [7347] = 7347, - [7348] = 7230, + [7348] = 7193, [7349] = 7349, - [7350] = 2155, - [7351] = 682, - [7352] = 7234, - [7353] = 7216, - [7354] = 7251, - [7355] = 540, - [7356] = 7240, - [7357] = 7241, - [7358] = 7234, - [7359] = 7359, - [7360] = 677, - [7361] = 7218, - [7362] = 7250, - [7363] = 2120, - [7364] = 7327, + [7350] = 378, + [7351] = 7340, + [7352] = 7352, + [7353] = 633, + [7354] = 7354, + [7355] = 7315, + [7356] = 7349, + [7357] = 7245, + [7358] = 7251, + [7359] = 7254, + [7360] = 7360, + [7361] = 7361, + [7362] = 7362, + [7363] = 7363, + [7364] = 7364, [7365] = 7365, - [7366] = 1814, - [7367] = 7294, + [7366] = 7366, + [7367] = 7367, [7368] = 7368, - [7369] = 1645, - [7370] = 7241, + [7369] = 7369, + [7370] = 7361, [7371] = 7371, - [7372] = 7273, - [7373] = 667, - [7374] = 7277, - [7375] = 4492, + [7372] = 7363, + [7373] = 7367, + [7374] = 7374, + [7375] = 7369, [7376] = 7376, [7377] = 7377, - [7378] = 7378, + [7378] = 7374, [7379] = 7379, - [7380] = 7380, + [7380] = 7376, [7381] = 7381, [7382] = 7382, [7383] = 7383, - [7384] = 7384, - [7385] = 7381, + [7384] = 7367, + [7385] = 7363, [7386] = 7386, - [7387] = 7387, + [7387] = 7363, [7388] = 7388, [7389] = 7389, - [7390] = 7390, - [7391] = 7391, - [7392] = 7392, - [7393] = 7393, + [7390] = 7363, + [7391] = 7360, + [7392] = 7377, + [7393] = 7381, [7394] = 7394, - [7395] = 7380, - [7396] = 7379, + [7395] = 7395, + [7396] = 7396, [7397] = 7397, [7398] = 7398, - [7399] = 7383, - [7400] = 7381, - [7401] = 7384, + [7399] = 7361, + [7400] = 7379, + [7401] = 7386, [7402] = 7402, - [7403] = 7390, - [7404] = 7387, - [7405] = 7383, - [7406] = 7406, - [7407] = 7388, - [7408] = 7390, - [7409] = 7409, - [7410] = 7381, - [7411] = 7397, - [7412] = 7390, - [7413] = 7413, - [7414] = 7393, - [7415] = 7402, - [7416] = 7390, - [7417] = 7417, - [7418] = 7418, - [7419] = 7419, - [7420] = 7420, - [7421] = 7378, - [7422] = 7402, - [7423] = 7381, - [7424] = 7381, - [7425] = 7425, - [7426] = 7402, - [7427] = 7427, - [7428] = 475, - [7429] = 7429, - [7430] = 7430, - [7431] = 7417, - [7432] = 7432, + [7403] = 7363, + [7404] = 7404, + [7405] = 7405, + [7406] = 7395, + [7407] = 7363, + [7408] = 7371, + [7409] = 7402, + [7410] = 7371, + [7411] = 7367, + [7412] = 7381, + [7413] = 7363, + [7414] = 7414, + [7415] = 7415, + [7416] = 7416, + [7417] = 7395, + [7418] = 7374, + [7419] = 7361, + [7420] = 7371, + [7421] = 7363, + [7422] = 7367, + [7423] = 7396, + [7424] = 7363, + [7425] = 7397, + [7426] = 7379, + [7427] = 7374, + [7428] = 7428, + [7429] = 7404, + [7430] = 7363, + [7431] = 7431, + [7432] = 7396, [7433] = 7381, - [7434] = 7378, - [7435] = 7435, - [7436] = 7436, + [7434] = 7434, + [7435] = 7363, + [7436] = 7395, [7437] = 7437, - [7438] = 7438, - [7439] = 7379, - [7440] = 7397, - [7441] = 7381, - [7442] = 7406, - [7443] = 7417, - [7444] = 7381, - [7445] = 7383, - [7446] = 7446, - [7447] = 7381, - [7448] = 7437, - [7449] = 7381, - [7450] = 7390, - [7451] = 7386, - [7452] = 7452, - [7453] = 7453, - [7454] = 7454, - [7455] = 7379, - [7456] = 7456, - [7457] = 7383, - [7458] = 7388, - [7459] = 7459, - [7460] = 7391, - [7461] = 7454, - [7462] = 7384, - [7463] = 7387, - [7464] = 7464, - [7465] = 7381, - [7466] = 7381, - [7467] = 7388, - [7468] = 7468, - [7469] = 7393, - [7470] = 7381, - [7471] = 7379, - [7472] = 7384, - [7473] = 7387, - [7474] = 7390, - [7475] = 7453, - [7476] = 7388, - [7477] = 7393, - [7478] = 7417, - [7479] = 7386, - [7480] = 7381, - [7481] = 7391, - [7482] = 7452, - [7483] = 7381, - [7484] = 475, - [7485] = 7485, - [7486] = 7390, - [7487] = 7446, - [7488] = 7386, - [7489] = 7406, - [7490] = 7490, - [7491] = 7491, - [7492] = 7397, - [7493] = 7390, - [7494] = 7485, - [7495] = 7495, - [7496] = 473, - [7497] = 7384, - [7498] = 7406, - [7499] = 7397, - [7500] = 7378, - [7501] = 7501, - [7502] = 7390, - [7503] = 7409, + [7438] = 7397, + [7439] = 7363, + [7440] = 7363, + [7441] = 7441, + [7442] = 7379, + [7443] = 7443, + [7444] = 7444, + [7445] = 7434, + [7446] = 7363, + [7447] = 7447, + [7448] = 7361, + [7449] = 7402, + [7450] = 7416, + [7451] = 7451, + [7452] = 7404, + [7453] = 7395, + [7454] = 7405, + [7455] = 7415, + [7456] = 7396, + [7457] = 7398, + [7458] = 7395, + [7459] = 439, + [7460] = 7363, + [7461] = 7415, + [7462] = 7367, + [7463] = 7381, + [7464] = 7286, + [7465] = 7465, + [7466] = 7397, + [7467] = 7363, + [7468] = 7374, + [7469] = 7469, + [7470] = 7363, + [7471] = 7434, + [7472] = 7367, + [7473] = 7437, + [7474] = 7364, + [7475] = 7475, + [7476] = 7363, + [7477] = 7363, + [7478] = 7397, + [7479] = 7381, + [7480] = 7363, + [7481] = 7396, + [7482] = 7397, + [7483] = 7379, + [7484] = 7484, + [7485] = 7404, + [7486] = 7379, + [7487] = 7487, + [7488] = 7363, + [7489] = 7489, + [7490] = 7365, + [7491] = 7381, + [7492] = 7395, + [7493] = 7396, + [7494] = 7397, + [7495] = 7361, + [7496] = 7371, + [7497] = 7367, + [7498] = 7379, + [7499] = 7499, + [7500] = 7363, + [7501] = 7363, + [7502] = 7444, + [7503] = 7404, [7504] = 7504, - [7505] = 7485, - [7506] = 7381, - [7507] = 7402, - [7508] = 7417, - [7509] = 7378, - [7510] = 7388, - [7511] = 7491, - [7512] = 7381, + [7505] = 7447, + [7506] = 7506, + [7507] = 7404, + [7508] = 7374, + [7509] = 7394, + [7510] = 7510, + [7511] = 7511, + [7512] = 7363, [7513] = 7513, - [7514] = 473, - [7515] = 7393, - [7516] = 7393, - [7517] = 7517, - [7518] = 7381, - [7519] = 7454, - [7520] = 7381, - [7521] = 473, - [7522] = 7464, - [7523] = 7501, + [7514] = 7451, + [7515] = 7515, + [7516] = 7516, + [7517] = 7416, + [7518] = 7444, + [7519] = 439, + [7520] = 7428, + [7521] = 7521, + [7522] = 7522, + [7523] = 7444, [7524] = 7381, - [7525] = 7525, - [7526] = 7435, - [7527] = 7527, - [7528] = 7453, - [7529] = 7406, - [7530] = 7417, - [7531] = 7417, - [7532] = 7381, - [7533] = 7381, - [7534] = 7446, - [7535] = 7381, - [7536] = 7379, - [7537] = 7383, - [7538] = 7384, - [7539] = 7397, - [7540] = 7454, - [7541] = 7541, - [7542] = 7464, - [7543] = 7387, - [7544] = 7388, - [7545] = 7393, - [7546] = 7546, - [7547] = 7454, - [7548] = 7390, - [7549] = 7549, - [7550] = 7550, - [7551] = 7432, - [7552] = 7491, - [7553] = 7553, - [7554] = 7381, - [7555] = 7454, - [7556] = 7464, - [7557] = 7379, - [7558] = 7390, - [7559] = 7559, - [7560] = 7384, - [7561] = 7464, - [7562] = 7387, - [7563] = 7387, - [7564] = 7393, - [7565] = 7437, - [7566] = 7566, - [7567] = 7379, - [7568] = 7568, - [7569] = 7454, - [7570] = 7464, + [7525] = 7447, + [7526] = 7526, + [7527] = 7381, + [7528] = 7447, + [7529] = 7529, + [7530] = 7361, + [7531] = 7447, + [7532] = 7532, + [7533] = 7533, + [7534] = 7534, + [7535] = 7535, + [7536] = 7361, + [7537] = 438, + [7538] = 7444, + [7539] = 7447, + [7540] = 7395, + [7541] = 7367, + [7542] = 7542, + [7543] = 7371, + [7544] = 7416, + [7545] = 7371, + [7546] = 7367, + [7547] = 7547, + [7548] = 7402, + [7549] = 7363, + [7550] = 7381, + [7551] = 7396, + [7552] = 7444, + [7553] = 7447, + [7554] = 7397, + [7555] = 7555, + [7556] = 7404, + [7557] = 7484, + [7558] = 7558, + [7559] = 7394, + [7560] = 7560, + [7561] = 7506, + [7562] = 7437, + [7563] = 439, + [7564] = 7367, + [7565] = 7444, + [7566] = 7447, + [7567] = 7396, + [7568] = 7397, + [7569] = 7374, + [7570] = 7555, [7571] = 7571, - [7572] = 7417, - [7573] = 7381, - [7574] = 7381, - [7575] = 7390, - [7576] = 7413, - [7577] = 7468, - [7578] = 7383, - [7579] = 7417, - [7580] = 7456, - [7581] = 7379, - [7582] = 7454, - [7583] = 7464, - [7584] = 7384, - [7585] = 7585, - [7586] = 7553, - [7587] = 7383, - [7588] = 7406, - [7589] = 7589, - [7590] = 7397, - [7591] = 7390, - [7592] = 7387, - [7593] = 7388, - [7594] = 7378, - [7595] = 7454, - [7596] = 7406, - [7597] = 7393, - [7598] = 7598, - [7599] = 7387, + [7572] = 7572, + [7573] = 7573, + [7574] = 7574, + [7575] = 7575, + [7576] = 7487, + [7577] = 7402, + [7578] = 7444, + [7579] = 7447, + [7580] = 7431, + [7581] = 7363, + [7582] = 7367, + [7583] = 7361, + [7584] = 7371, + [7585] = 7368, + [7586] = 7367, + [7587] = 7371, + [7588] = 7382, + [7589] = 7379, + [7590] = 7590, + [7591] = 7444, + [7592] = 7447, + [7593] = 7367, + [7594] = 7365, + [7595] = 7595, + [7596] = 7402, + [7597] = 7597, + [7598] = 7404, + [7599] = 7389, [7600] = 7600, - [7601] = 7391, - [7602] = 7602, - [7603] = 7603, - [7604] = 7417, - [7605] = 7213, - [7606] = 7382, - [7607] = 7598, - [7608] = 7454, - [7609] = 7464, - [7610] = 7417, - [7611] = 7495, - [7612] = 7419, - [7613] = 7613, - [7614] = 7379, + [7601] = 7363, + [7602] = 7396, + [7603] = 7397, + [7604] = 7444, + [7605] = 7447, + [7606] = 7404, + [7607] = 7371, + [7608] = 7363, + [7609] = 7394, + [7610] = 7363, + [7611] = 7374, + [7612] = 7396, + [7613] = 7379, + [7614] = 7374, [7615] = 7381, - [7616] = 7384, - [7617] = 7387, - [7618] = 7393, - [7619] = 7550, - [7620] = 7417, - [7621] = 7454, - [7622] = 7464, - [7623] = 7623, - [7624] = 7383, - [7625] = 7384, - [7626] = 7384, + [7616] = 7571, + [7617] = 7444, + [7618] = 7447, + [7619] = 7367, + [7620] = 7382, + [7621] = 7621, + [7622] = 7622, + [7623] = 7363, + [7624] = 7396, + [7625] = 7484, + [7626] = 7555, [7627] = 7397, - [7628] = 7628, - [7629] = 7390, - [7630] = 7386, - [7631] = 7623, + [7628] = 7451, + [7629] = 438, + [7630] = 7444, + [7631] = 7447, [7632] = 7632, - [7633] = 7387, - [7634] = 7454, - [7635] = 7464, - [7636] = 7381, - [7637] = 7387, - [7638] = 7436, - [7639] = 7388, - [7640] = 7452, - [7641] = 7641, - [7642] = 7418, - [7643] = 7643, - [7644] = 7456, - [7645] = 7645, - [7646] = 7495, - [7647] = 7454, - [7648] = 7464, - [7649] = 7649, - [7650] = 7381, - [7651] = 7388, - [7652] = 7393, - [7653] = 7381, - [7654] = 7413, - [7655] = 7406, - [7656] = 7397, - [7657] = 7393, - [7658] = 7468, - [7659] = 7381, - [7660] = 7454, - [7661] = 7464, - [7662] = 7437, - [7663] = 7381, - [7664] = 7406, - [7665] = 7665, - [7666] = 7379, - [7667] = 7381, - [7668] = 7384, - [7669] = 7453, - [7670] = 7454, - [7671] = 7464, - [7672] = 7390, - [7673] = 7673, - [7674] = 7390, - [7675] = 7623, - [7676] = 7379, - [7677] = 7378, - [7678] = 7417, - [7679] = 7386, - [7680] = 7454, - [7681] = 7452, - [7682] = 7381, - [7683] = 7683, - [7684] = 7684, - [7685] = 7485, - [7686] = 7379, - [7687] = 7687, - [7688] = 7383, - [7689] = 7454, - [7690] = 7384, - [7691] = 7387, - [7692] = 7388, - [7693] = 7393, - [7694] = 7402, - [7695] = 7381, - [7696] = 7386, - [7697] = 7406, - [7698] = 7454, - [7699] = 7454, - [7700] = 7454, - [7701] = 7454, - [7702] = 7454, - [7703] = 7454, - [7704] = 7454, - [7705] = 7454, - [7706] = 7454, - [7707] = 7454, - [7708] = 7454, - [7709] = 7454, - [7710] = 7454, - [7711] = 7454, - [7712] = 7454, - [7713] = 7454, - [7714] = 7454, - [7715] = 7454, - [7716] = 7454, - [7717] = 7454, - [7718] = 7454, - [7719] = 7454, - [7720] = 7720, - [7721] = 7438, - [7722] = 7384, - [7723] = 7381, - [7724] = 7724, - [7725] = 7384, - [7726] = 7568, - [7727] = 7446, - [7728] = 7406, - [7729] = 7568, + [7633] = 7571, + [7634] = 7572, + [7635] = 7379, + [7636] = 7636, + [7637] = 7637, + [7638] = 7363, + [7639] = 7374, + [7640] = 7361, + [7641] = 7381, + [7642] = 7395, + [7643] = 7444, + [7644] = 7447, + [7645] = 7396, + [7646] = 7381, + [7647] = 7397, + [7648] = 7395, + [7649] = 7379, + [7650] = 7367, + [7651] = 7362, + [7652] = 7363, + [7653] = 7444, + [7654] = 7447, + [7655] = 7396, + [7656] = 7404, + [7657] = 7526, + [7658] = 7555, + [7659] = 7382, + [7660] = 7404, + [7661] = 7367, + [7662] = 7368, + [7663] = 7444, + [7664] = 7394, + [7665] = 7363, + [7666] = 7396, + [7667] = 7667, + [7668] = 7668, + [7669] = 7371, + [7670] = 7404, + [7671] = 7367, + [7672] = 7444, + [7673] = 7374, + [7674] = 7397, + [7675] = 7382, + [7676] = 7676, + [7677] = 438, + [7678] = 7382, + [7679] = 7361, + [7680] = 7371, + [7681] = 7444, + [7682] = 7444, + [7683] = 7444, + [7684] = 7444, + [7685] = 7444, + [7686] = 7444, + [7687] = 7444, + [7688] = 7444, + [7689] = 7444, + [7690] = 7444, + [7691] = 7444, + [7692] = 7444, + [7693] = 7444, + [7694] = 7444, + [7695] = 7444, + [7696] = 7444, + [7697] = 7444, + [7698] = 7444, + [7699] = 7444, + [7700] = 7444, + [7701] = 7444, + [7702] = 7367, + [7703] = 7703, + [7704] = 7402, + [7705] = 7363, + [7706] = 7405, + [7707] = 7374, + [7708] = 7363, + [7709] = 7394, + [7710] = 7397, + [7711] = 7379, + [7712] = 7383, + [7713] = 7362, + [7714] = 7405, + [7715] = 7381, + [7716] = 7395, + [7717] = 7394, + [7718] = 7555, + [7719] = 7396, + [7720] = 7404, + [7721] = 7397, + [7722] = 7363, + [7723] = 7379, + [7724] = 7404, + [7725] = 7415, + [7726] = 7703, + [7727] = 7396, + [7728] = 7398, + [7729] = 7396, [7730] = 7730, - [7731] = 7613, - [7732] = 7720, - [7733] = 475, - [7734] = 7734, - [7735] = 7381, - [7736] = 7390, - [7737] = 7737, - [7738] = 7383, - [7739] = 7739, - [7740] = 7379, - [7741] = 7378, - [7742] = 7383, - [7743] = 7384, - [7744] = 7391, - [7745] = 7384, - [7746] = 7387, - [7747] = 7387, - [7748] = 7388, - [7749] = 7393, - [7750] = 7750, - [7751] = 7394, - [7752] = 7730, - [7753] = 7402, - [7754] = 7491, - [7755] = 7386, - [7756] = 7464, - [7757] = 7388, - [7758] = 7446, - [7759] = 7406, - [7760] = 7397, - [7761] = 7491, - [7762] = 7393, - [7763] = 7397, - [7764] = 7390, - [7765] = 7406, - [7766] = 7397, - [7767] = 7390, - [7768] = 7525, - [7769] = 7402, - [7770] = 7381, - [7771] = 7378, - [7772] = 7397, - [7773] = 7390, - [7774] = 7464, - [7775] = 7775, + [7731] = 7402, + [7732] = 7367, + [7733] = 7374, + [7734] = 7434, + [7735] = 7363, + [7736] = 7444, + [7737] = 7573, + [7738] = 7382, + [7739] = 7434, + [7740] = 7404, + [7741] = 7741, + [7742] = 7571, + [7743] = 7443, + [7744] = 7394, + [7745] = 7395, + [7746] = 7558, + [7747] = 7361, + [7748] = 7748, + [7749] = 7371, + [7750] = 7571, + [7751] = 7367, + [7752] = 7394, + [7753] = 7382, + [7754] = 7365, + [7755] = 7361, + [7756] = 7756, }; static TSCharacterRange aux_sym_cmd_identifier_token1_character_set_1[] = { @@ -13388,1094 +13351,1089 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5464, - '$', 3713, - '\'', 4078, - '(', 3793, - ')', 3916, - '*', 3080, - '+', 3085, - ',', 3595, - '-', 3086, - '.', 3835, - '/', 3082, - '0', 3282, - ':', 4089, - ';', 3555, - '<', 3103, - '=', 1786, - '>', 3106, - '?', 3618, - '@', 3615, - '[', 4036, - ']', 3592, - '^', 4110, - '_', 3705, - '`', 481, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5465, + '$', 3714, + '\'', 4079, + '(', 3794, + ')', 3917, + '*', 3081, + '+', 3086, + ',', 3596, + '-', 3087, + '.', 3836, + '/', 3083, + '0', 3283, + ':', 4090, + ';', 3556, + '<', 3104, + '=', 1787, + '>', 3107, + '?', 3619, + '@', 3616, + '[', 4037, + ']', 3593, + '^', 4111, + '_', 3706, + '`', 482, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1673); + lookahead == ' ') SKIP(1674); if (lookahead == '!' || - lookahead == '&') ADVANCE(5269); + lookahead == '&') ADVANCE(5270); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3335); + lookahead == 'i') ADVANCE(3336); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3329); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3283); + lookahead == 'n') ADVANCE(3330); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3284); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3343); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3344); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\n') ADVANCE(3553); END_STATE(); case 2: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 2426, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '*', 3761, - '+', 3811, - ',', 3595, - '-', 3636, - '.', 4097, - '/', 3800, - '0', 3949, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2622, - 'b', 2588, - 'c', 2461, - 'd', 2515, - 'e', 1900, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2456, - 'n', 2689, - 'o', 1901, - 'r', 2516, - 's', 2670, - 't', 2709, - 'u', 2751, - 'w', 2580, - 'x', 2678, - '|', 3556, - '}', 3702, + '!', 2427, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '*', 3762, + '+', 3812, + ',', 3596, + '-', 3637, + '.', 4098, + '/', 3801, + '0', 3950, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2623, + 'b', 2589, + 'c', 2462, + 'd', 2516, + 'e', 1901, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2457, + 'n', 2690, + 'o', 1902, + 'r', 2517, + 's', 2671, + 't', 2710, + 'u', 2752, + 'w', 2581, + 'x', 2679, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 3: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 2426, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '*', 3761, - '+', 3811, - ',', 3595, - '-', 3636, - '.', 4098, - '/', 3800, - '0', 3949, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2622, - 'b', 2588, - 'c', 2461, - 'd', 2515, - 'e', 1900, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2456, - 'n', 2689, - 'o', 1901, - 'r', 2516, - 's', 2670, - 't', 2709, - 'u', 2751, - 'w', 2580, - 'x', 2678, - '|', 3556, - '}', 3702, + '!', 2427, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '*', 3762, + '+', 3812, + ',', 3596, + '-', 3637, + '.', 4099, + '/', 3801, + '0', 3950, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2623, + 'b', 2589, + 'c', 2462, + 'd', 2516, + 'e', 1901, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2457, + 'n', 2690, + 'o', 1902, + 'r', 2517, + 's', 2671, + 't', 2710, + 'u', 2752, + 'w', 2581, + 'x', 2679, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(3); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 4: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 2426, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '*', 3761, - '+', 3811, - ',', 3595, - '-', 3636, - '.', 2064, - '/', 3800, - '0', 3949, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2622, - 'b', 2588, - 'c', 2461, - 'd', 2515, - 'e', 1900, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2456, - 'n', 2689, - 'o', 1901, - 'r', 2516, - 's', 2670, - 't', 2709, - 'u', 2751, - 'w', 2580, - 'x', 2678, - '|', 3556, - '}', 3702, + '!', 2427, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '*', 3762, + '+', 3812, + ',', 3596, + '-', 3637, + '.', 2065, + '/', 3801, + '0', 3950, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2623, + 'b', 2589, + 'c', 2462, + 'd', 2516, + 'e', 1901, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2457, + 'n', 2690, + 'o', 1902, + 'r', 2517, + 's', 2671, + 't', 2710, + 'u', 2752, + 'w', 2581, + 'x', 2679, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 5: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 2426, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '*', 3761, - '+', 3811, - ',', 3595, - '-', 3636, - '.', 2065, - '/', 3800, - '0', 3949, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2622, - 'b', 2588, - 'c', 2461, - 'd', 2515, - 'e', 1900, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2456, - 'n', 2689, - 'o', 1901, - 'r', 2516, - 's', 2670, - 't', 2709, - 'u', 2751, - 'w', 2580, - 'x', 2678, - '|', 3556, - '}', 3702, + '!', 2427, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '*', 3762, + '+', 3812, + ',', 3596, + '-', 3637, + '.', 2066, + '/', 3801, + '0', 3950, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2623, + 'b', 2589, + 'c', 2462, + 'd', 2516, + 'e', 1901, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2457, + 'n', 2690, + 'o', 1902, + 'r', 2517, + 's', 2671, + 't', 2710, + 'u', 2752, + 'w', 2581, + 'x', 2679, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(5); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 6: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 3858, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 7: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 4508, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4509, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 8: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4497, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '{', 3701, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4498, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 9: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 10: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4497, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '{', 3701, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4498, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 11: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4497, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '{', 3701, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4498, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 12: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4500, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '{', 3701, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4501, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 13: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, + '_', 4507, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 14: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 15: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 16: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3834, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 17: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, + '_', 4507, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 18: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 19: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 4487, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, - '{', 3701, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4488, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 20: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4681, - '#', 5468, - '(', 3793, - '*', 3762, - '+', 3813, - '-', 3646, - '/', 3801, - '<', 3783, - '=', 4683, - '>', 3614, - 'a', 4770, - 'b', 4753, - 'e', 4775, - 'i', 4771, - 'm', 4783, - 'n', 4786, - 'o', 4795, - 's', 4824, - 'x', 4785, - '{', 3701, + '!', 4682, + '#', 5469, + '(', 3794, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + '<', 3784, + '=', 4684, + '>', 3615, + 'a', 4771, + 'b', 4754, + 'e', 4776, + 'i', 4772, + 'm', 4784, + 'n', 4787, + 'o', 4796, + 's', 4825, + 'x', 4786, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 21: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '$', 3596, - '*', 3760, - '+', 3809, - '-', 3641, - '.', 474, - '/', 3799, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 1165, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 1286, - 's', 1491, - 'x', 1218, - '{', 3701, + '!', 451, + '#', 5463, + '$', 3597, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 475, + '/', 3800, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 1166, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 1287, + 's', 1492, + 'x', 1219, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(21); END_STATE(); case 22: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, + '!', 451, + '#', 5463, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(22); END_STATE(); case 23: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 382, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 386, - 's', 1491, - 'x', 1218, - '|', 3556, + '!', 451, + '#', 5463, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 383, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 387, + 's', 1492, + 'x', 1219, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(23); END_STATE(); case 24: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); END_STATE(); case 25: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(25); END_STATE(); case 26: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 382, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 386, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 383, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 387, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(26); END_STATE(); case 27: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(27); END_STATE(); case 28: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 382, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 386, - 's', 1491, - 'x', 1218, - '|', 3556, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 383, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 387, + 's', 1492, + 'x', 1219, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(28); END_STATE(); case 29: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 1165, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 1286, - 's', 1491, - 'x', 1218, - '{', 3701, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 1166, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 1287, + 's', 1492, + 'x', 1219, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(29); END_STATE(); case 30: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 4103, - ':', 3589, - ';', 3555, - '<', 3103, - '=', 1786, - '>', 3612, - '?', 3763, - '@', 3615, - '[', 3591, - ']', 3592, - '`', 481, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + ')', 3595, + '-', 3625, + '.', 4100, + ':', 4090, + ';', 3556, + '=', 1787, + '>', 3613, + '?', 3764, + '[', 3592, + '`', 482, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); @@ -14483,33 +14441,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(3343); + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 31: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 4102, - ':', 3589, - ';', 3555, - '=', 1786, - '>', 3612, - '?', 3763, - '[', 3591, - ']', 3592, - '`', 481, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + ')', 3595, + '-', 3625, + '.', 4094, + ':', 4090, + ';', 3556, + '=', 1787, + '>', 3613, + '?', 3764, + '[', 3592, + '`', 482, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(31); @@ -14519,8080 +14476,8160 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || '.' < lookahead) && (lookahead < ':' || '@' < lookahead) && lookahead != ']' && - lookahead != '^') ADVANCE(3343); + lookahead != '^' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 32: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2065, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + '-', 3638, + '.', 2066, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(32); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 33: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 429, - '.', 4360, - '0', 3943, - 'N', 4422, - '[', 3591, - '_', 3706, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4418, - 'o', 4356, - 't', 4405, - '{', 3701, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 430, + '.', 4361, + '0', 3944, + 'N', 4423, + '[', 3592, + '_', 3707, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4419, + 'o', 4357, + 't', 4406, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(33); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); case 34: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4907, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4908, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(34); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 35: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1908, - '0', 3950, - 'I', 2038, - 'N', 2035, - '[', 4036, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + ';', 3556, + '=', 4293, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2232, + 'b', 2206, + 'c', 2079, + 'd', 2108, + 'e', 2082, + 'f', 2085, + 'g', 2198, + 'h', 2097, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2159, + 'm', 2087, + 'n', 2282, + 'o', 2390, + 'p', 2102, + 'q', 2384, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2210, + 'w', 2195, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(32); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == ' ') SKIP(36); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); case 36: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - ';', 3555, - '=', 4292, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2231, - 'b', 2205, - 'c', 2078, - 'd', 2107, - 'e', 2081, - 'f', 2084, - 'g', 2197, - 'h', 2096, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2158, - 'm', 2086, - 'n', 2281, - 'o', 2389, - 'p', 2101, - 'q', 2383, - 'r', 2088, - 's', 2125, - 't', 2091, - 'u', 2291, - 'v', 2209, - 'w', 2194, - '{', 3701, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + ';', 3556, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2232, + 'b', 2206, + 'c', 2079, + 'd', 2108, + 'e', 2082, + 'f', 2085, + 'g', 2198, + 'h', 2097, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2159, + 'm', 2087, + 'n', 2282, + 'o', 2390, + 'p', 2102, + 'q', 2384, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2210, + 'w', 2195, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(37); + lookahead == ' ') SKIP(36); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); case 37: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - ';', 3555, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2231, - 'b', 2205, - 'c', 2078, - 'd', 2107, - 'e', 2081, - 'f', 2084, - 'g', 2197, - 'h', 2096, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2158, - 'm', 2086, - 'n', 2281, - 'o', 2389, - 'p', 2101, - 'q', 2383, - 'r', 2088, - 's', 2125, - 't', 2091, - 'u', 2291, - 'v', 2209, - 'w', 2194, - '{', 3701, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + '=', 4293, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2246, + 'b', 2207, + 'c', 2081, + 'd', 2110, + 'e', 2083, + 'f', 2086, + 'g', 2198, + 'h', 2098, + 'i', 2077, + 'j', 2334, + 'k', 2139, + 'l', 2169, + 'm', 2114, + 'n', 2282, + 'o', 2391, + 'p', 2102, + 'q', 2384, + 'r', 2090, + 's', 2127, + 't', 2093, + 'u', 2293, + 'v', 2210, + 'w', 2200, + '{', 3702, + '\t', 3555, + ' ', 3555, + '!', 2856, + '&', 2856, + '*', 2856, + ',', 2856, + '?', 2856, + '@', 2856, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(37); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); case 38: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - '=', 4292, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2245, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2246, 'b', 2206, 'c', 2080, 'd', 2109, - 'e', 2082, - 'f', 2085, - 'g', 2197, - 'h', 2097, - 'i', 2076, - 'j', 2333, - 'k', 2138, - 'l', 2168, - 'm', 2113, - 'n', 2281, - 'o', 2390, - 'p', 2101, - 'q', 2383, - 'r', 2089, - 's', 2126, + 'e', 1904, + 'f', 2086, + 'g', 2198, + 'h', 2098, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2169, + 'm', 2088, + 'n', 2282, + 'o', 1906, + 'p', 2102, + 'q', 2384, + 'r', 2091, + 's', 2127, 't', 2092, - 'u', 2292, - 'v', 2209, - 'w', 2199, - '{', 3701, - '\t', 3554, - ' ', 3554, - '!', 2855, - '&', 2855, - '*', 2855, - ',', 2855, - '?', 2855, - '@', 2855, + 'u', 2293, + 'v', 2210, + 'w', 2205, + '{', 3702, + '|', 3557, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (lookahead == '\t' || + lookahead == ' ') SKIP(38); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); case 39: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2245, - 'b', 2205, - 'c', 2079, - 'd', 2108, - 'e', 1903, - 'f', 2085, - 'g', 2197, - 'h', 2097, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2168, - 'm', 2087, - 'n', 2281, - 'o', 1905, - 'p', 2101, - 'q', 2383, - 'r', 2090, - 's', 2126, - 't', 2091, - 'u', 2292, - 'v', 2209, - 'w', 2204, - '{', 3701, - '|', 3556, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + 'I', 2842, + 'N', 2835, + '[', 3592, + '^', 4111, + '_', 2446, + '`', 482, + 'a', 2645, + 'b', 2601, + 'c', 2461, + 'd', 2480, + 'e', 2481, + 'f', 2484, + 'g', 2580, + 'h', 2471, + 'i', 2440, + 'j', 2756, + 'k', 2531, + 'l', 2563, + 'm', 2464, + 'n', 2684, + 'o', 2825, + 'p', 2473, + 'q', 2823, + 'r', 2479, + 's', 2494, + 't', 2465, + 'u', 2699, + 'v', 2602, + 'w', 2588, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(39); - if (lookahead == '!' || - lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 40: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - 'I', 2841, - 'N', 2834, - '[', 3591, - '^', 4110, - '_', 2445, - '`', 481, - 'a', 2644, - 'b', 2600, - 'c', 2460, - 'd', 2479, - 'e', 2480, - 'f', 2483, - 'g', 2579, - 'h', 2470, - 'i', 2439, - 'j', 2755, - 'k', 2530, - 'l', 2562, - 'm', 2463, - 'n', 2683, - 'o', 2824, - 'p', 2472, - 'q', 2822, - 'r', 2478, - 's', 2493, - 't', 2464, - 'u', 2698, - 'v', 2601, - 'w', 2587, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 398, + '.', 2443, + ':', 4090, + '=', 4293, + 'I', 2844, + 'N', 2836, + '[', 4037, + ']', 3593, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(40); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == ' ') SKIP(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 41: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 397, - '.', 2442, - ':', 4089, - '=', 4292, - 'I', 2843, - 'N', 2835, - '[', 4036, - ']', 3592, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 398, + '.', 2443, + ':', 4090, + 'I', 2844, + 'N', 2836, + ']', 3593, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == ' ') SKIP(41); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 42: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 397, - '.', 2442, - ':', 4089, - 'I', 2843, - 'N', 2835, - ']', 3592, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 3626, + '.', 4364, + '0', 3944, + ':', 4090, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, + '\t', 3554, + ' ', 3554, + 'I', 4426, + 'i', 4426, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(42); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + lookahead != ']') ADVANCE(4446); END_STATE(); case 43: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 3625, - '.', 4363, - '0', 3943, - ':', 4089, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, - '\t', 3553, - ' ', 3553, - 'I', 4425, - 'i', 4425, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3944, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4419, + 'o', 4357, + 't', 4406, + '{', 3702, ); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead == '\t' || + lookahead == ' ') SKIP(43); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ';' && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); case 44: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3943, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4418, - 'o', 4356, - 't', 4405, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 3639, + '.', 4361, + '0', 3944, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4403, + 'o', 4357, + 't', 4406, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(44); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); case 45: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 3638, - '.', 4360, - '0', 3943, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4402, - 'o', 4356, - 't', 4405, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4913, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(45); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 46: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4912, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 5180, + '-', 5179, + '.', 5178, + '0', 3947, + 'N', 5212, + '[', 3592, + '_', 5189, + '`', 482, + 'e', 5172, + 'f', 5191, + 'n', 5208, + 'o', 5173, + 't', 5201, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(46); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(5218); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '+' || '.' < lookahead) && + (lookahead < '0' || ';' < lookahead) && + lookahead != ']' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5232); END_STATE(); case 47: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, + '#', 5463, '$', 3597, - '\'', 375, - '(', 3593, - '+', 5179, - '-', 5178, - '.', 5177, - '0', 3946, - 'N', 5211, - '[', 3591, - '_', 5188, - '`', 481, - 'e', 5171, - 'f', 5190, - 'n', 5207, - 'o', 5172, - 't', 5200, - '{', 3701, + '(', 3794, + ')', 3595, + '+', 5238, + ',', 3596, + '-', 3630, + '.', 5236, + ':', 3590, + '=', 1787, + ']', 3593, + '_', 3285, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(47); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5217); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3969); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - (lookahead < '+' || '.' < lookahead) && - (lookahead < '0' || ';' < lookahead) && - lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5231); + lookahead == ' ') SKIP(64); + if (lookahead == '!' || + lookahead == '&' || + lookahead == '*' || + ('<' <= lookahead && lookahead <= '@') || + lookahead == '^') ADVANCE(5270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 48: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '+', 5239, - ',', 3595, - '-', 3629, - '.', 5235, - ':', 3589, - '=', 1786, - ']', 3592, - '_', 3284, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '+', 5238, + ',', 3596, + '-', 3630, + '.', 3856, + ':', 3590, + '=', 1787, + ']', 3593, + '_', 3285, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(64); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 49: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '+', 5239, - ',', 3595, - '-', 3629, - '.', 3855, - ':', 3589, - '=', 1786, - ']', 3592, - '_', 3284, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 3858, + ':', 3590, + '=', 1787, + 'E', 3271, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + ']', 3593, + 'd', 3287, + 'e', 3270, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + '|', 3557, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); + lookahead == ' ') SKIP(67); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || + lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 50: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 3857, - ':', 3589, - '=', 1786, - 'E', 3270, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - ']', 3592, - 'd', 3286, - 'e', 3269, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - '|', 3556, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 3858, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == ' ') SKIP(67); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3272); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 51: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 3857, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5239, + ':', 3590, + '=', 1787, + 'E', 3271, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + ']', 3593, + '_', 3285, + 'd', 3287, + 'e', 3270, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + '|', 3557, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3271); + lookahead == ' ') SKIP(67); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 52: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5238, - ':', 3589, - '=', 1786, - 'E', 3270, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - ']', 3592, - '_', 3284, - 'd', 3286, - 'e', 3269, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - '|', 3556, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5239, + ':', 3590, + '=', 1787, + 'E', 3271, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + ']', 3593, + 'd', 3287, + 'e', 3270, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + '|', 3557, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 53: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5238, - ':', 3589, - '=', 1786, - 'E', 3270, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - ']', 3592, - 'd', 3286, - 'e', 3269, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - '|', 3556, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5239, + ':', 3590, + '=', 1787, + 'E', 3281, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + ']', 3593, + 'd', 3287, + 'e', 3280, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + '|', 3557, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 54: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5238, - ':', 3589, - '=', 1786, - 'E', 3280, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - ']', 3592, - 'd', 3286, - 'e', 3279, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - '|', 3556, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5239, + ':', 3590, + '=', 1787, + '[', 4037, + ']', 3593, + '{', 3702, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == ' ') SKIP(66); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 55: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5238, - ':', 3589, - '=', 1786, - '[', 4036, - ']', 3592, - '{', 3701, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5239, + ':', 3590, + '=', 1787, + ']', 3593, + '_', 3285, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(67); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(3272); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < ' ' || '$' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < ':' || '@' < lookahead) && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 56: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5238, - ':', 3589, - '=', 1786, - ']', 3592, - '_', 3284, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5239, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3271); + lookahead == 'e') ADVANCE(3272); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 57: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5238, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 3855, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3271); + lookahead == 'e') ADVANCE(3272); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 58: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 3854, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5237, + ':', 3590, + '=', 1787, + ']', 3593, + '_', 3285, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3271); + lookahead == 'e') ADVANCE(3272); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 59: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5236, - ':', 3589, - '=', 1786, - ']', 3592, - '_', 3284, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5237, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3271); + lookahead == 'e') ADVANCE(3272); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 60: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5236, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 5237, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(3271); + lookahead == ' ') SKIP(67); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(5270); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 61: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 5236, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3594, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 4104, + ':', 3590, + ';', 3556, + '<', 3104, + '=', 1787, + '>', 3613, + '?', 3764, + '@', 3616, + '[', 3592, + ']', 3593, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '*' || - lookahead == '+' || - ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5269); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(62); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(3344); END_STATE(); case 62: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3593, - ')', 3594, - '-', 3624, - '.', 4099, - ':', 4089, - ';', 3555, - '=', 1786, - '>', 3612, - '?', 3763, - '[', 3591, - '{', 3701, - '}', 3702, + '#', 5463, + '$', 3597, + '(', 3594, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 4103, + ':', 3590, + ';', 3556, + '=', 1787, + '>', 3613, + '?', 3764, + '[', 3592, + ']', 3593, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(63); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(62); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < ' ' || '$' < lookahead) && + (lookahead < '&' || '.' < lookahead) && + (lookahead < ':' || '@' < lookahead) && + lookahead != ']' && + lookahead != '^' && + lookahead != '`') ADVANCE(3344); END_STATE(); case 63: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3593, - ')', 3594, - '-', 3624, - '.', 4093, - ':', 4089, - ';', 3555, - '=', 1786, - '>', 3612, - '?', 3763, - '[', 3591, - '{', 3701, - '}', 3702, + '#', 5463, + '$', 3597, + '(', 3594, + '+', 433, + '-', 3639, + '.', 472, + '0', 3283, + ':', 3590, + '=', 1787, + 'N', 3330, + '_', 3284, + 'f', 3289, + 'n', 3311, + 't', 3320, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(63); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3336); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3284); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 64: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3593, - '+', 432, - '-', 3638, - '.', 471, - '0', 3282, - ':', 3589, - '=', 1786, - 'N', 3329, - '_', 3283, - 'f', 3288, - 'n', 3310, - 't', 3319, - '{', 3701, + '#', 5463, + '$', 3597, + ')', 3595, + '+', 438, + ',', 3596, + '-', 3628, + '.', 437, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(64); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3335); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3283); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 65: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '+', 437, - ',', 3595, - '-', 3627, + '#', 5463, + '$', 3597, + ')', 3595, + ',', 3596, + '-', 3625, '.', 436, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + ':', 3590, + '=', 1787, + '?', 3619, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(65); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(67); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 66: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 435, - ':', 3589, - '=', 1786, - '?', 3618, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 436, + ':', 3590, + '=', 1787, + ']', 3593, + '{', 3702, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(66); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 67: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 435, - ':', 3589, - '=', 1786, - ']', 3592, - '{', 3701, - '|', 3556, + '#', 5463, + '$', 3597, + ')', 3595, + ',', 3596, + '-', 3625, + '.', 436, + ':', 3590, + '=', 1787, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(67); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 68: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - ',', 3595, - '-', 3624, - '.', 435, - ':', 3589, - '=', 1786, - ']', 3592, - '|', 3556, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + '.', 4094, + ':', 3590, + ';', 3556, + '=', 1787, + '>', 3613, + '@', 3616, + '[', 3592, + ']', 3593, + 'c', 3293, + 'e', 3319, + 'f', 3328, + 'i', 3307, + 'o', 3310, + 'v', 3288, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 69: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - '.', 4093, - ':', 3589, - ';', 3555, - '=', 1786, - '>', 3612, - '@', 3615, - '[', 3591, - ']', 3592, - 'c', 3292, - 'e', 3318, - 'f', 3327, - 'i', 3306, - 'o', 3309, - 'v', 3287, - '{', 3701, - '}', 3702, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + '.', 4094, + ':', 3590, + ';', 3556, + '=', 1787, + '>', 3613, + '[', 3592, + ']', 3593, + 'c', 3293, + 'e', 3319, + 'f', 3328, + 'i', 3307, + 'o', 3310, + 'v', 3288, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(69); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 70: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - '.', 4093, - ':', 3589, - ';', 3555, - '=', 1786, - '>', 3612, - '[', 3591, - ']', 3592, - 'c', 3292, - 'e', 3318, - 'f', 3327, - 'i', 3306, - 'o', 3309, - 'v', 3287, - '{', 3701, - '}', 3702, + '#', 5463, + '.', 3849, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(70); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 71: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '.', 3848, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + '#', 5463, + '.', 4480, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 72: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '.', 4479, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + '#', 5463, + '.', 4480, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 73: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '.', 4479, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + '#', 5463, + '.', 4480, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4503, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 74: - ADVANCE_MAP( - '\n', 3552, - '\r', 1, - '#', 5462, - '.', 4479, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4502, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\n') ADVANCE(3553); + if (lookahead == '\r') ADVANCE(1); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4293); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3555); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3517); END_STATE(); case 75: - if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\n') ADVANCE(3553); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4292); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4293); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3554); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + lookahead == ' ') ADVANCE(3555); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 76: - if (lookahead == '\n') ADVANCE(3552); + if (lookahead == '\n') ADVANCE(3553); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4292); + if (lookahead == '#') ADVANCE(5463); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3554); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == ' ') ADVANCE(3555); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 77: - if (lookahead == '\n') ADVANCE(3552); - if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3554); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); - END_STATE(); - case 78: ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5465, - '$', 3599, - '(', 3793, - ')', 3594, - ',', 3595, - '-', 3635, - '.', 5347, - ':', 3589, - '=', 1788, - ']', 3592, - '|', 3556, + '#', 5466, + '$', 3600, + '(', 3794, + ')', 3595, + ',', 3596, + '-', 3636, + '.', 5348, + ':', 3590, + '=', 1789, + ']', 3593, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(68); + lookahead == ' ') SKIP(67); if (lookahead == '!' || lookahead == '&' || lookahead == '*' || lookahead == '+' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(5455); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5454); + lookahead == '^') ADVANCE(5456); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5455); END_STATE(); - case 79: - if (lookahead == '\n') ADVANCE(3552); + case 78: + if (lookahead == '\n') ADVANCE(3553); if (lookahead == '\r') ADVANCE(1); - if (lookahead == '#') ADVANCE(5468); - if (lookahead == '(') ADVANCE(3793); + if (lookahead == '#') ADVANCE(5469); + if (lookahead == '(') ADVANCE(3794); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3554); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == ' ') ADVANCE(3555); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); + END_STATE(); + case 79: + if (lookahead == ' ') ADVANCE(706); END_STATE(); case 80: - if (lookahead == ' ') ADVANCE(705); + if (lookahead == ' ') ADVANCE(617); END_STATE(); case 81: - if (lookahead == ' ') ADVANCE(616); + ADVANCE_MAP( + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 82: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 3858, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4509, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(97); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(96); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 83: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 4508, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4498, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(97); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 84: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4497, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'E', 4517, + 'a', 4556, + 'b', 4545, + 'e', 4514, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 85: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4514, - 'i', 4554, - 'm', 4560, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4498, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 86: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4497, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4498, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 87: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4497, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'B', 4016, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4501, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4568, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 88: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'B', 4015, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4500, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4567, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'E', 4517, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4514, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 89: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 90: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 91: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'E', 4517, + 'a', 4556, + 'b', 4545, + 'e', 4514, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 92: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3834, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, + '_', 4507, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 93: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, + 'a', 4556, + 'b', 4545, 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 94: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4514, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + '!', 4486, + '#', 5463, + '(', 3794, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 4487, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4557, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4568, + 's', 4590, + 'x', 4565, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 95: ADVANCE_MAP( - '!', 4485, - '#', 5462, - '(', 3793, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 4486, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4556, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4567, - 's', 4589, - 'x', 4564, + '!', 4682, + '#', 5469, + '(', 3794, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + '<', 3784, + '=', 4683, + '>', 3615, + 'a', 4771, + 'b', 4754, + 'e', 4776, + 'i', 4772, + 'm', 4784, + 'n', 4787, + 'o', 4796, + 's', 4825, + 'x', 4786, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(97); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 96: ADVANCE_MAP( - '!', 4681, - '#', 5468, - '(', 3793, - '*', 3762, - '+', 3813, - '-', 3646, - '/', 3801, + '!', 451, + '#', 5463, + '$', 3597, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 475, + '/', 3800, '<', 3783, - '=', 4682, + '=', 452, '>', 3614, - 'a', 4770, - 'b', 4753, - 'e', 4775, - 'i', 4771, - 'm', 4783, - 'n', 4786, - 'o', 4795, - 's', 4824, - 'x', 4785, + 'a', 1134, + 'b', 946, + 'e', 1166, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 1287, + 's', 1492, + 'x', 1219, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(98); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == ' ') SKIP(96); END_STATE(); case 97: ADVANCE_MAP( - '!', 450, - '#', 5462, - '$', 3596, - '*', 3760, + '!', 451, + '#', 5463, + '*', 3761, '+', 3809, - '-', 3641, - '.', 474, - '/', 3799, - '<', 3782, - '=', 451, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 1165, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 1286, - 's', 1491, - 'x', 1218, + '-', 3624, + '/', 3800, + '<', 3783, + '=', 452, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 1166, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 1287, + 's', 1492, + 'x', 1219, ); if (lookahead == '\t' || lookahead == ' ') SKIP(97); END_STATE(); case 98: ADVANCE_MAP( - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - '<', 3782, - '=', 451, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 1165, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 1286, - 's', 1491, - 'x', 1218, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4908, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(98); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 99: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4907, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4998, + ',', 3596, + '-', 4997, + '.', 4993, + '0', 3876, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (lookahead == '\t' || + lookahead == ' ') SKIP(219); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 100: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4997, - ',', 3595, - '-', 4996, - '.', 4992, - '0', 3875, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4998, + ',', 3596, + '-', 4997, + '.', 3840, + '0', 3876, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(218); + lookahead == ' ') SKIP(219); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 101: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4997, - ',', 3595, - '-', 4996, - '.', 3839, - '0', 3875, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4998, + ',', 4085, + '-', 4997, + '.', 4993, + '0', 3876, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(218); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 102: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4997, - ',', 4084, - '-', 4996, - '.', 4992, - '0', 3875, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4998, + ',', 4085, + '-', 4997, + '.', 3840, + '0', 3876, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 103: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4997, - ',', 4084, - '-', 4996, - '.', 3839, - '0', 3875, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3817, + ',', 3596, + '-', 3644, + '.', 3847, + '0', 3879, + 'I', 2039, + 'N', 2036, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (lookahead == '\t' || + lookahead == ' ') SKIP(216); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 104: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1908, - '0', 3878, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3817, + ',', 3596, + '-', 3644, + '.', 1909, + '0', 3879, + 'I', 2039, + 'N', 2036, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(171); + lookahead == ' ') SKIP(216); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 105: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1908, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3817, + ',', 4085, + '-', 3644, + '.', 3847, + '0', 3879, + ':', 3590, + 'I', 2039, + 'N', 2036, + '[', 3592, + ']', 3593, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 106: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1908, - '0', 3950, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3817, + ',', 4085, + '-', 3644, + '.', 1909, + '0', 3879, + 'I', 2039, + 'N', 2036, + '[', 4037, + ']', 3593, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 107: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 3856, - '0', 3950, - 'B', 4015, - 'E', 1915, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1914, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4995, + '0', 3876, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'd', 5028, + 'e', 4988, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, + '\t', 4086, + ' ', 4086, + 'B', 4016, + 'b', 4016, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 108: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 3856, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4995, + '0', 3876, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 109: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1911, - '0', 3878, - 'B', 4015, - 'E', 1915, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1914, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4995, + '0', 3949, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'd', 5028, + 'e', 4988, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, + '\t', 4086, + ' ', 4086, + 'B', 4016, + 'b', 4016, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 110: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1911, - '0', 3878, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4995, + '0', 3949, + 'E', 5012, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'd', 5028, + 'e', 4985, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, + '\t', 4086, + ' ', 4086, + 'B', 4016, + 'b', 4016, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 111: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1911, - '0', 3950, - 'B', 4015, - 'E', 1915, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1914, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4995, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 112: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1911, - '0', 3950, - 'B', 4015, - 'E', 1920, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1917, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4995, + '0', 3949, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 113: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1911, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4994, + '0', 3876, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 114: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 1911, - '0', 3950, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4994, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 115: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 2855, - '-', 3643, - '.', 3846, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4994, + '0', 3949, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 116: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1908, - '0', 3878, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 3854, + '0', 3949, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'd', 5028, + 'e', 4988, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, + '\t', 4086, + ' ', 4086, + 'B', 4016, + 'b', 4016, + 'I', 5064, + 'i', 5064, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 117: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1908, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 3854, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 118: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1908, - '0', 3950, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 3844, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 119: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 3856, - '0', 3950, - 'B', 4015, - 'E', 1915, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '[', 4036, - ']', 3592, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1914, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 3857, + '0', 3951, + 'B', 4016, + 'E', 1916, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1915, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 120: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 3856, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 3857, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 121: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1911, - '0', 3878, - 'B', 4015, - 'E', 1915, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1914, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1912, + '0', 3879, + 'B', 4016, + 'E', 1916, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1915, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 122: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1911, - '0', 3878, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1912, + '0', 3879, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 123: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1911, - '0', 3950, - 'B', 4015, - 'E', 1915, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1914, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1912, + '0', 3951, + 'B', 4016, + 'E', 1916, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1915, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 124: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1911, - '0', 3950, - 'B', 4015, - 'E', 1920, - 'G', 1920, - 'I', 2038, - 'K', 1920, - 'M', 1920, - 'N', 2035, - 'P', 1920, - 'T', 1920, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 4019, - 'c', 1935, - 'd', 1941, - 'e', 1917, - 'f', 1936, - 'g', 1919, - 'h', 1973, - 'i', 1921, - 'k', 1919, - 'l', 1959, - 'm', 1916, - 'n', 2012, - 'o', 2032, - 'p', 1919, - 'r', 1950, - 's', 1962, - 't', 1918, - 'u', 2014, - 'w', 1971, - '}', 3702, - 0xb5, 2013, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1912, + '0', 3951, + 'B', 4016, + 'E', 1921, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1918, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 125: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1911, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1912, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 126: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1911, - '0', 3950, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1912, + '0', 3951, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 127: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 3846, - '0', 3950, - 'E', 1933, - 'I', 2038, - 'N', 2035, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1932, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 3848, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 128: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3818, - ',', 2855, - '-', 3644, - '.', 3847, - '0', 3878, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1910, + '0', 3879, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(217); + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 129: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3818, - ',', 2855, - '-', 3644, - '.', 1909, - '0', 3878, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1910, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(217); + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 130: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3818, - ',', 4084, - '-', 3644, - '.', 3847, - '0', 3878, - ':', 3589, - 'I', 2038, - 'N', 2035, - '[', 3591, - ']', 3592, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1910, + '0', 3951, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 131: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 3818, - ',', 4084, - '-', 3644, - '.', 1909, - '0', 3878, - 'I', 2038, - 'N', 2035, - '_', 1927, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 3857, + '0', 3951, + 'B', 4016, + 'E', 1916, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1915, + 'f', 1937, + 'g', 1920, 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, 'u', 2015, 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '}', 3703, + 0xb5, 2014, + '\t', 4086, + ' ', 4086, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 132: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4994, - '0', 3875, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'd', 5027, - 'e', 4987, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, - '\t', 4085, - ' ', 4085, - 'B', 4015, - 'b', 4015, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 3857, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 133: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4994, - '0', 3875, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1912, + '0', 3879, + 'B', 4016, + 'E', 1916, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1915, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 134: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4994, - '0', 3948, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'd', 5027, - 'e', 4987, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, - '\t', 4085, - ' ', 4085, - 'B', 4015, - 'b', 4015, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1912, + '0', 3879, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 135: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4994, - '0', 3948, - 'E', 5011, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'd', 5027, - 'e', 4984, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, - '\t', 4085, - ' ', 4085, - 'B', 4015, - 'b', 4015, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1912, + '0', 3951, + 'B', 4016, + 'E', 1916, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1915, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 136: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4994, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1912, + '0', 3951, + 'B', 4016, + 'E', 1921, + 'G', 1921, + 'I', 2039, + 'K', 1921, + 'M', 1921, + 'N', 2036, + 'P', 1921, + 'T', 1921, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 4020, + 'c', 1936, + 'd', 1942, + 'e', 1918, + 'f', 1937, + 'g', 1920, + 'h', 1974, + 'i', 1922, + 'k', 1920, + 'l', 1960, + 'm', 1917, + 'n', 2013, + 'o', 2033, + 'p', 1920, + 'r', 1951, + 's', 1963, + 't', 1919, + 'u', 2015, + 'w', 1972, + '}', 3703, + 0xb5, 2014, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'i' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 137: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4994, - '0', 3948, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1912, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 138: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4993, - '0', 3875, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1912, + '0', 3951, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 139: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4993, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 3848, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 140: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4993, - '0', 3948, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1910, + '0', 3879, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1923, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 141: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 3852, - '0', 3948, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'd', 5027, - 'e', 4987, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, - '\t', 4085, - ' ', 4085, - 'B', 4015, - 'b', 4015, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1910, + '0', 3951, + 'E', 1931, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1930, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 142: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 3852, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1910, + '0', 3951, + 'I', 2039, + 'N', 2036, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '0' || '>' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 143: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 3842, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4915, + ',', 3596, + '-', 4914, + '.', 4909, + '0', 3877, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (lookahead == '\t' || + lookahead == ' ') SKIP(219); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 144: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4914, - ',', 3595, - '-', 4913, - '.', 4908, - '0', 3876, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4915, + ',', 3596, + '-', 4914, + '.', 3842, + '0', 3877, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(218); + lookahead == ' ') SKIP(219); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 145: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4914, - ',', 3595, - '-', 4913, - '.', 3841, - '0', 3876, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4915, + ',', 4085, + '-', 4914, + '.', 4909, + '0', 3877, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(218); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 146: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4914, - ',', 4084, - '-', 4913, - '.', 4908, - '0', 3876, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3794, + '+', 4915, + ',', 4085, + '-', 4914, + '.', 3842, + '0', 3877, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 147: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3793, - '+', 4914, - ',', 4084, - '-', 4913, - '.', 3841, - '0', 3876, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 4098, + '0', 3950, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + if (lookahead == '\t' || + lookahead == ' ') SKIP(151); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '0' || '?' < lookahead) && + lookahead != '[' && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 148: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 3595, - '-', 3637, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, '.', 4098, - '0', 3949, - ':', 4089, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(148); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == ' ') SKIP(152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 149: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 3595, - '-', 3637, - '.', 4098, - '0', 3949, - ':', 4089, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 4099, + '0', 3950, + ':', 4090, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(149); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 150: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 3595, - '-', 3637, - '.', 2065, - '0', 3949, - ':', 4089, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 4099, + '0', 3950, + ':', 4090, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(150); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 151: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 4097, - '0', 3949, - ':', 3589, - '>', 3612, - 'I', 2841, - 'N', 2834, - ']', 3592, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 4099, + '0', 3950, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(151); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 152: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 4097, - '0', 3949, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 4099, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(152); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 153: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 4098, - '0', 3949, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 3845, + '0', 3950, + 'E', 2452, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2451, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 154: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 4098, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2065, + '0', 3950, + 'E', 2452, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2451, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 155: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 3844, - '0', 3949, - 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2065, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 156: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 2064, - '0', 3949, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2065, + '0', 3878, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2454, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 157: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 2064, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2066, + '0', 3950, + ':', 4090, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(157); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 158: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 2064, - '0', 3877, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2066, + '0', 3950, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2450, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 159: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 2065, - '0', 3949, - 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2066, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 160: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 2065, - '0', 3877, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 2066, + '0', 3878, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2450, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2454, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 161: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - ',', 4084, - '-', 3637, - '.', 3845, - '0', 3949, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 3596, + '-', 3638, + '.', 3846, + '0', 3950, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, - '\t', 4085, - ' ', 4085, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(159); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 162: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 4097, - '0', 3949, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 4098, + '0', 3950, + ':', 3590, + '>', 3613, + 'I', 2842, + 'N', 2835, + ']', 3593, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '?' < lookahead) && + (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 163: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 4097, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 4098, + '0', 3950, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(165); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 164: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 4098, - '0', 3949, - '?', 3763, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 4099, + '0', 3950, + '?', 3764, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(164); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '?' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 165: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 4098, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 4099, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(165); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 166: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 3844, - '0', 3949, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 3845, + '0', 3950, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 167: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2064, - '0', 3949, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 2065, + '0', 3950, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 168: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2064, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 2065, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 169: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2064, - '0', 3877, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 2065, + '0', 3878, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2450, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2454, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 170: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2065, - '0', 3949, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 2066, + '0', 3950, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 171: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2065, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 2066, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 172: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 2065, - '0', 3877, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 2066, + '0', 3878, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2450, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2454, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 173: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3814, - '-', 3637, - '.', 3845, - '0', 3949, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3815, + ',', 4085, + '-', 3638, + '.', 3846, + '0', 3950, 'E', 2452, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, 'e', 2451, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, + '\t', 4086, + ' ', 4086, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(171); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 174: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4364, - ',', 4084, - '-', 430, - '.', 4360, - '0', 3943, - 'N', 4422, - '[', 3591, - '_', 3706, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4418, - 'o', 4356, - 't', 4405, - '{', 3701, - '}', 3702, - '\t', 4085, - ' ', 4085, - 'I', 4425, - 'i', 4425, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4365, + ',', 4085, + '-', 431, + '.', 4361, + '0', 3944, + 'N', 4423, + '[', 3592, + '_', 3707, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4419, + 'o', 4357, + 't', 4406, + '{', 3702, + '}', 3703, + '\t', 4086, + ' ', 4086, + 'I', 4426, + 'i', 4426, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); case 175: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4907, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4908, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 176: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4907, - '0', 3944, - 'N', 4955, - '[', 4036, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4908, + '0', 3945, + 'N', 4956, + '[', 4037, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 177: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4907, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4908, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 178: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4907, - '0', 3876, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4908, + '0', 3877, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 179: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4101, - '0', 3944, - '?', 3763, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4102, + '0', 3945, + '?', 3764, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 180: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4101, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4102, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(186); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 181: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4909, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4910, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 182: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4909, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4910, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 183: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4909, - '0', 3876, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4910, + '0', 3877, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 184: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4096, - '0', 3944, - ';', 4092, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4097, + '0', 3945, + ';', 4093, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, '\t', 184, ' ', 184, - 'I', 4961, - 'i', 4961, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 185: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4096, - '0', 3944, - '?', 3763, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4097, + '0', 3945, + '?', 3764, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(185); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 186: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 4096, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 4097, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(186); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 187: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 3851, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 3852, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 188: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 3595, - '-', 4910, - '.', 3837, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 3596, + '-', 4911, + '.', 3838, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 189: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4907, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4908, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 190: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4907, - '0', 3944, - 'N', 4955, - '[', 4036, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4908, + '0', 3945, + 'N', 4956, + '[', 4037, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 191: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4907, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4908, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 192: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4907, - '0', 3876, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4908, + '0', 3877, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 193: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4101, - '0', 3944, - '?', 3763, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4102, + '0', 3945, + '?', 3764, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 194: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4101, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4102, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 195: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4909, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4910, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 196: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4909, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4910, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 197: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4909, - '0', 3876, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4931, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4910, + '0', 3877, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4932, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3892); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 198: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4096, - '0', 3944, - ';', 4092, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4086, - ' ', 4086, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4097, + '0', 3945, + ';', 4093, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4087, + ' ', 4087, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4087); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4088); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 199: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4096, - '0', 3944, - '?', 3763, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4097, + '0', 3945, + '?', 3764, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 200: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 4096, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 4097, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 201: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 3851, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 3852, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 202: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4911, - ',', 4084, - '-', 4910, - '.', 3837, - '0', 3944, - 'E', 4933, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4903, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4912, + ',', 4085, + '-', 4911, + '.', 3838, + '0', 3945, + 'E', 4934, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4904, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 4962, + 'i', 4962, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); case 203: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3816, - ',', 4084, - '-', 3643, - '.', 1908, - '0', 3950, - 'I', 2038, - 'N', 2035, - '[', 4036, - '_', 1922, - '`', 481, - 'a', 1981, - 'b', 2004, - 'c', 1935, - 'd', 1949, - 'e', 1987, - 'f', 1936, - 'h', 1974, - 'i', 1921, - 'l', 1959, - 'm', 1937, - 'n', 2026, - 'o', 2032, - 'r', 1950, - 's', 1994, - 't', 2000, - 'u', 2015, - 'w', 1972, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4995, + '0', 3876, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'd', 5028, + 'e', 4988, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, ); - if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5269); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '\t' || + lookahead == ' ') SKIP(177); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && - (lookahead < '0' || '>' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2043); + lookahead != ';' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 204: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4994, - '0', 3875, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'd', 5027, - 'e', 4987, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4995, + '0', 3876, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 205: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4994, - '0', 3875, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4995, + '0', 3949, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'd', 5028, 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 206: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4994, - '0', 3948, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'd', 5027, - 'e', 4987, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4995, + '0', 3949, + 'E', 5012, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'd', 5028, + 'e', 4985, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 207: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4994, - '0', 3948, - 'E', 5011, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'd', 5027, - 'e', 4984, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4995, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 208: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4994, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4995, + '0', 3949, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 209: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, '.', 4994, - '0', 3948, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '0', 3876, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5014, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3891); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 210: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4993, - '0', 3875, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5013, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4994, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 211: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4993, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 4994, + '0', 3949, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 212: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 4993, - '0', 3948, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 3854, + '0', 3949, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'N', 5057, + 'P', 5012, + 'T', 5012, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'd', 5028, + 'e', 4988, + 'f', 5027, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5048, + 'o', 4987, + 'p', 5011, + 's', 5033, + 't', 5010, + 'u', 5049, + 'w', 5036, + '{', 3702, + 0xb5, 5049, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 213: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 3852, - '0', 3948, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'N', 5056, - 'P', 5011, - 'T', 5011, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'd', 5027, - 'e', 4987, - 'f', 5026, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5047, - 'o', 4986, - 'p', 5010, - 's', 5032, - 't', 5009, - 'u', 5048, - 'w', 5035, - '{', 3701, - 0xb5, 5048, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 3854, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 214: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 3852, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 3596, + '-', 4999, + '.', 3844, + '0', 3949, + 'E', 5022, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4989, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + lookahead == 'i') ADVANCE(5064); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 215: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 3595, - '-', 4998, - '.', 3842, - '0', 3948, - 'E', 5021, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4988, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 5000, + ',', 4085, + '-', 4999, + '.', 4994, + '0', 3949, + 'N', 5057, + '[', 3592, + ']', 3593, + '_', 5026, + '`', 482, + 'e', 4986, + 'f', 5027, + 'n', 5053, + 'o', 4987, + 't', 5044, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5064, + 'i', 5064, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(177); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5063); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 216: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4999, - ',', 4084, - '-', 4998, - '.', 4993, - '0', 3948, - 'N', 5056, - '[', 3591, - ']', 3592, - '_', 5025, - '`', 481, - 'e', 4985, - 'f', 5026, - 'n', 5052, - 'o', 4986, - 't', 5043, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5063, - 'i', 5063, - ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); - if (lookahead != 0 && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); - END_STATE(); - case 217: - ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 3817, - '-', 3640, - '.', 2066, - '0', 3949, - 'I', 2841, - 'N', 2834, - '_', 2445, - '`', 481, - 'a', 2623, - 'b', 2718, - 'c', 2461, - 'd', 2515, - 'e', 2636, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2457, - 'n', 2805, - 'o', 2823, - 'r', 2516, - 's', 2671, - 't', 2709, - 'u', 2751, - 'w', 2580, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3818, + ',', 3596, + '-', 3641, + '.', 2067, + '0', 3950, + 'I', 2842, + 'N', 2835, + '_', 2446, + '`', 482, + 'a', 2624, + 'b', 2719, + 'c', 2462, + 'd', 2516, + 'e', 2637, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2458, + 'n', 2806, + 'o', 2824, + 'r', 2517, + 's', 2672, + 't', 2710, + 'u', 2752, + 'w', 2581, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(217); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == ' ') SKIP(216); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); + END_STATE(); + case 217: + ADVANCE_MAP( + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3819, + ',', 3596, + '-', 3645, + '.', 1910, + '0', 3951, + ':', 4090, + 'I', 2039, + 'N', 2036, + '[', 4037, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(157); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); END_STATE(); case 218: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - '+', 4914, - ',', 3595, - '-', 4913, - '.', 4908, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 3819, + ',', 4085, + '-', 3645, + '.', 1910, + '0', 3951, + 'I', 2039, + 'N', 2036, + '[', 4037, + '_', 1935, + '`', 482, + 'a', 1982, + 'b', 2005, + 'c', 1936, + 'd', 1950, + 'e', 1988, + 'f', 1937, + 'h', 1975, + 'i', 1922, + 'l', 1960, + 'm', 1938, + 'n', 2027, + 'o', 2033, + 'r', 1951, + 's', 1995, + 't', 2001, + 'u', 2016, + 'w', 1973, + '}', 3703, + '\t', 4086, + ' ', 4086, + ); + if (('<' <= lookahead && lookahead <= '>') || + lookahead == '^') ADVANCE(5270); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead != 0 && + (lookahead < '\'' || ')' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2044); + END_STATE(); + case 219: + ADVANCE_MAP( + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + '+', 4915, + ',', 3596, + '-', 4914, + '.', 4909, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(218); + lookahead == ' ') SKIP(219); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4961); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == 'i') ADVANCE(4962); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); - case 219: + case 220: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - ';', 4092, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2245, - 'b', 2205, - 'c', 2079, - 'd', 2108, - 'e', 2082, - 'f', 2085, - 'g', 2197, - 'h', 2097, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2168, - 'm', 2087, - 'n', 2281, - 'o', 2390, - 'p', 2101, - 'q', 2383, - 'r', 2090, - 's', 2126, - 't', 2091, - 'u', 2292, - 'v', 2209, - 'w', 2204, - '{', 3701, - '\t', 219, - ' ', 219, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + ';', 4093, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2246, + 'b', 2206, + 'c', 2080, + 'd', 2109, + 'e', 2083, + 'f', 2086, + 'g', 2198, + 'h', 2098, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2169, + 'm', 2088, + 'n', 2282, + 'o', 2391, + 'p', 2102, + 'q', 2384, + 'r', 2091, + 's', 2127, + 't', 2092, + 'u', 2293, + 'v', 2210, + 'w', 2205, + '{', 3702, + '\t', 220, + ' ', 220, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); - case 220: + case 221: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2245, - 'b', 2206, - 'c', 2080, - 'd', 2109, - 'e', 2082, - 'f', 2085, - 'g', 2197, - 'h', 2097, - 'i', 2076, - 'j', 2333, - 'k', 2138, - 'l', 2168, - 'm', 2113, - 'n', 2281, - 'o', 2390, - 'p', 2101, - 'q', 2383, - 'r', 2089, - 's', 2126, - 't', 2092, - 'u', 2292, - 'v', 2209, - 'w', 2199, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2246, + 'b', 2207, + 'c', 2081, + 'd', 2110, + 'e', 2083, + 'f', 2086, + 'g', 2198, + 'h', 2098, + 'i', 2077, + 'j', 2334, + 'k', 2139, + 'l', 2169, + 'm', 2114, + 'n', 2282, + 'o', 2391, + 'p', 2102, + 'q', 2384, + 'r', 2090, + 's', 2127, + 't', 2093, + 'u', 2293, + 'v', 2210, + 'w', 2200, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(220); + lookahead == ' ') SKIP(221); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '@' < lookahead) && (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); - case 221: + case 222: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 430, - '.', 4360, - '0', 3943, - ':', 4089, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4418, - 'o', 4356, - 't', 4405, - '{', 3701, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 431, + '.', 4361, + '0', 3944, + ':', 4090, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4419, + 'o', 4357, + 't', 4406, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(221); + lookahead == ' ') SKIP(222); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); - case 222: + case 223: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 430, - '.', 4360, - ':', 4089, - 'N', 4422, - '_', 4377, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4418, - 'o', 4356, - 't', 4405, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 431, + '.', 4361, + ':', 4090, + 'N', 4423, + '_', 4378, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4419, + 'o', 4357, + 't', 4406, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(222); + lookahead == ' ') SKIP(223); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || ';' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); - case 223: + case 224: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4364, - '-', 430, - '.', 4360, - 'N', 4422, - '_', 4377, - '`', 481, - 'e', 4355, - 'f', 4390, - 'n', 4418, - 'o', 4356, - 't', 4405, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4365, + '-', 431, + '.', 4361, + 'N', 4423, + '_', 4378, + '`', 482, + 'e', 4356, + 'f', 4391, + 'n', 4419, + 'o', 4357, + 't', 4406, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(223); + lookahead == ' ') SKIP(224); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4446); END_STATE(); - case 224: + case 225: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - '+', 4911, - '-', 4910, - '.', 4912, - '0', 3944, - 'N', 4955, - '[', 3591, - ']', 3592, - '_', 4922, - '`', 481, - 'e', 4901, - 'f', 4935, - 'n', 4952, - 'o', 4902, - 't', 4945, - '{', 3701, - '\t', 4088, - ' ', 4088, - 'I', 4961, - 'i', 4961, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 4912, + '-', 4911, + '.', 4913, + '0', 3945, + 'N', 4956, + '[', 3592, + ']', 3593, + '_', 4923, + '`', 482, + 'e', 4902, + 'f', 4936, + 'n', 4953, + 'o', 4903, + 't', 4946, + '{', 3702, + '\t', 4089, + ' ', 4089, + 'I', 4962, + 'i', 4962, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); + lookahead == ',') ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4983); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4984); END_STATE(); - case 225: - if (lookahead == '"') ADVANCE(4066); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3597); - if (lookahead == '\'') ADVANCE(4346); - if (lookahead == '(') ADVANCE(3593); - if (lookahead == '`') ADVANCE(4347); + case 226: + if (lookahead == '"') ADVANCE(4067); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3598); + if (lookahead == '\'') ADVANCE(4347); + if (lookahead == '(') ADVANCE(3594); + if (lookahead == '`') ADVANCE(4348); if (lookahead == '\t' || - lookahead == ' ') SKIP(225); + lookahead == ' ') SKIP(226); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4348); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4349); END_STATE(); - case 226: + case 227: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - ',', 4084, - '-', 431, - '.', 2442, - 'I', 2843, - 'N', 2835, - ']', 3592, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + ',', 4085, + '-', 432, + '.', 2443, + 'I', 2844, + 'N', 2836, + ']', 3593, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, + '\t', 4086, + ' ', 4086, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 227: + case 228: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 397, - '.', 4104, - '?', 3763, - 'I', 2843, - 'N', 2835, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 398, + '.', 4105, + '?', 3764, + 'I', 2844, + 'N', 2836, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(227); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2855); + lookahead == ' ') SKIP(228); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2856); END_STATE(); - case 228: + case 229: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 397, - '.', 4104, - 'I', 2843, - 'N', 2835, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 398, + '.', 4105, + 'I', 2844, + 'N', 2836, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(228); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2855); + lookahead == ' ') SKIP(229); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2856); END_STATE(); - case 229: + case 230: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 397, - '.', 2442, - '=', 4292, - 'I', 3496, - 'N', 3484, - '_', 3362, - '`', 481, - 'a', 3415, - 'b', 3445, - 'c', 3370, - 'd', 3380, - 'e', 3420, - 'f', 3372, - 'h', 3406, - 'i', 3359, - 'l', 3386, - 'm', 3367, - 'n', 3471, - 'o', 3476, - 'r', 3381, - 's', 3433, - 't', 3440, - 'u', 3455, - 'w', 3403, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 398, + '.', 2443, + '=', 4293, + 'I', 3497, + 'N', 3485, + '_', 3363, + '`', 482, + 'a', 3416, + 'b', 3446, + 'c', 3371, + 'd', 3381, + 'e', 3421, + 'f', 3373, + 'h', 3407, + 'i', 3360, + 'l', 3387, + 'm', 3368, + 'n', 3472, + 'o', 3477, + 'r', 3382, + 's', 3434, + 't', 3441, + 'u', 3456, + 'w', 3404, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + lookahead == ' ') SKIP(231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3517); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < 'A' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(2855); + (lookahead < ']' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 230: + case 231: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 397, - '.', 2442, - 'I', 2843, - 'N', 2835, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 398, + '.', 2443, + 'I', 2844, + 'N', 2836, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2855); + lookahead == ' ') SKIP(231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_1, 11, lookahead))) ADVANCE(2856); END_STATE(); - case 231: + case 232: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 4470, - '.', 2442, - 'I', 2843, - 'N', 2835, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 4471, + '.', 2443, + 'I', 2844, + 'N', 2836, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(231); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 232: + case 233: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 4470, - '.', 2067, - 'B', 4015, - 'E', 2432, - 'G', 2437, - 'I', 2843, - 'K', 2437, - 'M', 2437, - 'N', 2835, - 'P', 2437, - 'T', 2437, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 4020, - 'c', 2477, - 'd', 2468, - 'e', 2431, - 'f', 2455, - 'g', 2436, - 'h', 2606, - 'i', 2440, - 'k', 2436, - 'l', 2562, - 'm', 2433, - 'n', 2747, - 'o', 2824, - 'p', 2436, - 'r', 2563, - 's', 2538, - 't', 2435, - 'u', 2749, - 'w', 2586, - 0xb5, 2748, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 4471, + '.', 2068, + 'B', 4016, + 'E', 2433, + 'G', 2438, + 'I', 2844, + 'K', 2438, + 'M', 2438, + 'N', 2836, + 'P', 2438, + 'T', 2438, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 4021, + 'c', 2478, + 'd', 2469, + 'e', 2432, + 'f', 2456, + 'g', 2437, + 'h', 2607, + 'i', 2441, + 'k', 2437, + 'l', 2563, + 'm', 2434, + 'n', 2748, + 'o', 2825, + 'p', 2437, + 'r', 2564, + 's', 2539, + 't', 2436, + 'u', 2750, + 'w', 2587, + 0xb5, 2749, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(231); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 233: + case 234: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 4470, - '.', 2067, - 'B', 4015, - 'E', 2432, - 'G', 2437, - 'I', 2843, - 'K', 2437, - 'M', 2437, - 'N', 2835, - 'P', 2437, - 'T', 2437, - '_', 2450, - '`', 481, - 'a', 2645, - 'b', 4020, - 'c', 2477, - 'd', 2468, - 'e', 2431, - 'f', 2455, - 'g', 2436, - 'h', 2606, - 'i', 2440, - 'k', 2436, - 'l', 2562, - 'm', 2433, - 'n', 2747, - 'o', 2824, - 'p', 2436, - 'r', 2563, - 's', 2538, - 't', 2435, - 'u', 2749, - 'w', 2586, - 0xb5, 2748, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 4471, + '.', 2068, + 'B', 4016, + 'E', 2433, + 'G', 2438, + 'I', 2844, + 'K', 2438, + 'M', 2438, + 'N', 2836, + 'P', 2438, + 'T', 2438, + '_', 2454, + '`', 482, + 'a', 2646, + 'b', 4021, + 'c', 2478, + 'd', 2469, + 'e', 2432, + 'f', 2456, + 'g', 2437, + 'h', 2607, + 'i', 2441, + 'k', 2437, + 'l', 2563, + 'm', 2434, + 'n', 2748, + 'o', 2825, + 'p', 2437, + 'r', 2564, + 's', 2539, + 't', 2436, + 'u', 2750, + 'w', 2587, + 0xb5, 2749, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(231); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == '^') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 234: + case 235: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 4470, - '.', 2067, - 'B', 4015, - 'E', 2437, - 'G', 2437, - 'I', 2843, - 'K', 2437, - 'M', 2437, - 'N', 2835, - 'P', 2437, - 'T', 2437, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 4020, - 'c', 2477, - 'd', 2468, - 'e', 2434, - 'f', 2455, - 'g', 2436, - 'h', 2606, - 'i', 2440, - 'k', 2436, - 'l', 2562, - 'm', 2433, - 'n', 2747, - 'o', 2824, - 'p', 2436, - 'r', 2563, - 's', 2538, - 't', 2435, - 'u', 2749, - 'w', 2586, - 0xb5, 2748, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 4471, + '.', 2068, + 'B', 4016, + 'E', 2438, + 'G', 2438, + 'I', 2844, + 'K', 2438, + 'M', 2438, + 'N', 2836, + 'P', 2438, + 'T', 2438, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 4021, + 'c', 2478, + 'd', 2469, + 'e', 2435, + 'f', 2456, + 'g', 2437, + 'h', 2607, + 'i', 2441, + 'k', 2437, + 'l', 2563, + 'm', 2434, + 'n', 2748, + 'o', 2825, + 'p', 2437, + 'r', 2564, + 's', 2539, + 't', 2436, + 'u', 2750, + 'w', 2587, + 0xb5, 2749, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(231); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 235: + case 236: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '+', 2060, - '-', 4470, - '.', 3849, - 'B', 4015, - 'E', 2432, - 'G', 2437, - 'I', 2843, - 'K', 2437, - 'M', 2437, - 'N', 2835, - 'P', 2437, - 'T', 2437, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 4020, - 'c', 2477, - 'd', 2468, - 'e', 2431, - 'f', 2455, - 'g', 2436, - 'h', 2606, - 'i', 2440, - 'k', 2436, - 'l', 2562, - 'm', 2433, - 'n', 2747, - 'o', 2824, - 'p', 2436, - 'r', 2563, - 's', 2538, - 't', 2435, - 'u', 2749, - 'w', 2586, - 0xb5, 2748, + '"', 4067, + '#', 5463, + '\'', 376, + '+', 2061, + '-', 4471, + '.', 3850, + 'B', 4016, + 'E', 2433, + 'G', 2438, + 'I', 2844, + 'K', 2438, + 'M', 2438, + 'N', 2836, + 'P', 2438, + 'T', 2438, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 4021, + 'c', 2478, + 'd', 2469, + 'e', 2432, + 'f', 2456, + 'g', 2437, + 'h', 2607, + 'i', 2441, + 'k', 2437, + 'l', 2563, + 'm', 2434, + 'n', 2748, + 'o', 2825, + 'p', 2437, + 'r', 2564, + 's', 2539, + 't', 2436, + 'u', 2750, + 'w', 2587, + 0xb5, 2749, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(231); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4643); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == '^') ADVANCE(4644); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'i' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 236: + case 237: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 375, - '.', 4093, - ';', 4092, - '?', 3763, - '`', 481, - '\t', 236, - ' ', 236, + '"', 4067, + '#', 5463, + '\'', 376, + '.', 4094, + ';', 4093, + '?', 3764, + '`', 482, + '\t', 237, + ' ', 237, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); END_STATE(); - case 237: - if (lookahead == '"') ADVANCE(4066); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '\'') ADVANCE(375); - if (lookahead == '>') ADVANCE(3612); - if (lookahead == '`') ADVANCE(481); + case 238: + if (lookahead == '"') ADVANCE(4067); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '\'') ADVANCE(376); + if (lookahead == '>') ADVANCE(3613); + if (lookahead == '`') ADVANCE(482); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -22600,21 +22637,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != ']' && lookahead != '^' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3344); END_STATE(); - case 238: + case 239: ADVANCE_MAP( - '"', 4066, - '#', 5462, - '\'', 4105, - '.', 4093, - ';', 4092, - '?', 3763, - '`', 4106, - '\t', 236, - ' ', 236, + '"', 4067, + '#', 5463, + '\'', 4106, + '.', 4094, + ';', 4093, + '?', 3764, + '`', 4107, + '\t', 237, + ' ', 237, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ',' && @@ -22622,300 +22659,300 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != ']' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4107); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4108); END_STATE(); - case 239: + case 240: ADVANCE_MAP( - '"', 4066, - '#', 5465, - '$', 3599, - '\'', 375, - '(', 3793, - '+', 3815, - ',', 2855, - '-', 3639, - '.', 5344, - '0', 5349, - 'I', 5447, - 'N', 5444, - '_', 5351, - '`', 481, - 'a', 5395, - 'b', 5417, - 'c', 5355, - 'd', 5366, - 'e', 5401, - 'f', 5356, - 'h', 5388, - 'i', 5348, - 'l', 5376, - 'm', 5357, - 'n', 5436, - 'o', 5442, - 'r', 5367, - 's', 5407, - 't', 5413, - 'u', 5425, - 'w', 5387, - '}', 3702, + '"', 4067, + '#', 5466, + '$', 3600, + '\'', 376, + '(', 3794, + '+', 3816, + ',', 3596, + '-', 3640, + '.', 5345, + '0', 5350, + 'I', 5448, + 'N', 5445, + '_', 5352, + '`', 482, + 'a', 5396, + 'b', 5418, + 'c', 5356, + 'd', 5367, + 'e', 5402, + 'f', 5357, + 'h', 5389, + 'i', 5349, + 'l', 5377, + 'm', 5358, + 'n', 5437, + 'o', 5443, + 'r', 5368, + 's', 5408, + 't', 5414, + 'u', 5426, + 'w', 5388, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(171); + lookahead == ' ') SKIP(159); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5455); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5351); + lookahead == '^') ADVANCE(5456); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5352); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5454); END_STATE(); - case 240: + case 241: ADVANCE_MAP( - '"', 4066, - '#', 5465, - '$', 3599, - '\'', 375, - '(', 3793, - '+', 3815, - ',', 4084, - '-', 3639, - '.', 5344, - '0', 5349, - 'I', 5447, - 'N', 5444, - '_', 5351, - '`', 481, - 'a', 5395, - 'b', 5417, - 'c', 5355, - 'd', 5366, - 'e', 5401, - 'f', 5356, - 'h', 5388, - 'i', 5348, - 'l', 5376, - 'm', 5357, - 'n', 5436, - 'o', 5442, - 'r', 5367, - 's', 5407, - 't', 5413, - 'u', 5425, - 'w', 5387, - '}', 3702, - '\t', 4085, - ' ', 4085, + '"', 4067, + '#', 5466, + '$', 3600, + '\'', 376, + '(', 3794, + '+', 3816, + ',', 4085, + '-', 3640, + '.', 5345, + '0', 5350, + 'I', 5448, + 'N', 5445, + '_', 5352, + '`', 482, + 'a', 5396, + 'b', 5418, + 'c', 5356, + 'd', 5367, + 'e', 5402, + 'f', 5357, + 'h', 5389, + 'i', 5349, + 'l', 5377, + 'm', 5358, + 'n', 5437, + 'o', 5443, + 'r', 5368, + 's', 5408, + 't', 5414, + 'u', 5426, + 'w', 5388, + '}', 3703, + '\t', 4086, + ' ', 4086, ); if (('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(5455); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5351); + lookahead == '^') ADVANCE(5456); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5352); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5453); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5454); END_STATE(); - case 241: + case 242: ADVANCE_MAP( - '"', 4066, - '#', 5468, - '\'', 375, - '+', 4675, - '-', 4665, - '.', 4702, - 'I', 4871, - 'N', 4860, - '_', 4706, - '`', 481, - 'a', 4765, - 'b', 4801, - 'c', 4708, - 'd', 4727, - 'e', 4762, - 'f', 4709, - 'h', 4748, - 'i', 4693, - 'l', 4731, - 'm', 4710, - 'n', 4838, - 'o', 4846, - 'r', 4728, - 's', 4780, - 't', 4800, - 'u', 4818, - 'w', 4747, + '"', 4067, + '#', 5469, + '\'', 376, + '+', 4676, + '-', 4666, + '.', 4703, + 'I', 4872, + 'N', 4861, + '_', 4707, + '`', 482, + 'a', 4766, + 'b', 4802, + 'c', 4709, + 'd', 4728, + 'e', 4763, + 'f', 4710, + 'h', 4749, + 'i', 4694, + 'l', 4732, + 'm', 4711, + 'n', 4839, + 'o', 4847, + 'r', 4729, + 's', 4781, + 't', 4801, + 'u', 4819, + 'w', 4748, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(230); + lookahead == ' ') SKIP(231); if (lookahead == '$' || lookahead == ':' || ('<' <= lookahead && lookahead <= '>') || - lookahead == '^') ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4706); + lookahead == '^') ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && (lookahead < '0' || '>' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4880); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4881); END_STATE(); - case 242: + case 243: ADVANCE_MAP( - '"', 4066, - '#', 5467, - '$', 3600, - '\'', 375, - '(', 3793, - '+', 5102, - ',', 4084, - '-', 5101, - '.', 5103, - '0', 5114, - 'N', 5143, - '[', 3591, - ']', 3592, - '_', 5116, - '`', 481, - 'e', 5095, - 'f', 5122, - 'n', 5139, - 'o', 5096, - 't', 5132, - '{', 3701, - '\t', 4085, - ' ', 4085, - 'I', 5148, - 'i', 5148, + '"', 4067, + '#', 5468, + '$', 3601, + '\'', 376, + '(', 3794, + '+', 5103, + ',', 4085, + '-', 5102, + '.', 5104, + '0', 5115, + 'N', 5144, + '[', 3592, + ']', 3593, + '_', 5117, + '`', 482, + 'e', 5096, + 'f', 5123, + 'n', 5140, + 'o', 5097, + 't', 5133, + '{', 3702, + '\t', 4086, + ' ', 4086, + 'I', 5149, + 'i', 5149, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5119); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5120); if (lookahead != 0 && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5170); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); - case 243: + case 244: ADVANCE_MAP( - '"', 4066, - '#', 5467, - '$', 3600, - '\'', 375, - '(', 3593, - '+', 5102, - ',', 3595, - '-', 5101, - '.', 5103, - '0', 5114, - 'N', 5143, - '[', 3591, - ']', 3592, - '_', 5116, - '`', 481, - 'e', 5095, - 'f', 5122, - 'n', 5139, - 'o', 5096, - 't', 5132, - '{', 3701, + '"', 4067, + '#', 5468, + '$', 3601, + '\'', 376, + '(', 3594, + '+', 5103, + ',', 3596, + '-', 5102, + '.', 5104, + '0', 5115, + 'N', 5144, + '[', 3592, + ']', 3593, + '_', 5117, + '`', 482, + 'e', 5096, + 'f', 5123, + 'n', 5140, + 'o', 5097, + 't', 5133, + '{', 3702, ); if (lookahead == '\t' || lookahead == ' ') SKIP(177); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5148); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5119); + lookahead == 'i') ADVANCE(5149); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(5120); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '\'' || ')' < lookahead) && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5170); - END_STATE(); - case 244: - if (lookahead == '"') ADVANCE(4066); - if (lookahead == '#') ADVANCE(4068); - if (lookahead == '\\') ADVANCE(1524); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4067); - if (lookahead != 0) ADVANCE(4068); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 245: - if (lookahead == '"') ADVANCE(4080); - if (lookahead == '#') ADVANCE(4073); - if (lookahead == '(') ADVANCE(3593); - if (lookahead == '\\') ADVANCE(1495); + if (lookahead == '"') ADVANCE(4067); + if (lookahead == '#') ADVANCE(4069); + if (lookahead == '\\') ADVANCE(1525); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4072); - if (lookahead != 0) ADVANCE(4073); + lookahead == ' ') ADVANCE(4068); + if (lookahead != 0) ADVANCE(4069); END_STATE(); case 246: - ADVANCE_MAP( - '#', 5462, - '$', 3596, - '(', 3793, - '.', 3858, - '=', 4488, - '_', 4506, - 'i', 4539, - '|', 3556, - ); + if (lookahead == '"') ADVANCE(4081); + if (lookahead == '#') ADVANCE(4074); + if (lookahead == '(') ADVANCE(3594); + if (lookahead == '\\') ADVANCE(1496); if (lookahead == '\t' || - lookahead == ' ') SKIP(275); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') ADVANCE(4073); + if (lookahead != 0) ADVANCE(4074); END_STATE(); case 247: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(3858); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '|') ADVANCE(3556); + ADVANCE_MAP( + '#', 5463, + '$', 3597, + '(', 3794, + '.', 3859, + '=', 4489, + '_', 4507, + 'i', 4540, + '|', 3557, + ); if (lookahead == '\t' || lookahead == ' ') SKIP(276); if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 248: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(3858); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(278); + lookahead == ' ') SKIP(277); if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 249: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '{') ADVANCE(3702); + if (lookahead == '\t' || + lookahead == ' ') SKIP(279); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 250: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '(', 3793, - '.', 3860, - ']', 3592, - '_', 5255, - '}', 3702, - '\t', 4088, - ' ', 4088, - '+', 5239, - '-', 5239, + '#', 5463, + '$', 3597, + '(', 3794, + '.', 3861, + ']', 3593, + '_', 5256, + '}', 3703, + '\t', 4089, + ' ', 4089, + '+', 5238, + '-', 5238, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -22923,71 +22960,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5269); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5270); END_STATE(); - case 250: + case 251: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '(', 3793, - '.', 4508, - '=', 4488, - '_', 4506, - 'i', 4539, - '|', 3556, + '#', 5463, + '$', 3597, + '(', 3794, + '.', 4509, + '=', 4489, + '_', 4507, + 'i', 4540, + '|', 3557, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(275); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); - END_STATE(); - case 251: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(4508); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '|') ADVANCE(3556); if (lookahead == '\t' || lookahead == ' ') SKIP(276); if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 252: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(4508); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4509); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(278); + lookahead == ' ') SKIP(277); if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 253: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4509); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '{') ADVANCE(3702); + if (lookahead == '\t' || + lookahead == ' ') SKIP(279); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 254: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '(', 3793, - '.', 3859, - ']', 3592, - '_', 5013, - '\t', 4088, - ' ', 4088, - '+', 4997, - '-', 4997, + '#', 5463, + '$', 3597, + '(', 3794, + '.', 3860, + ']', 3593, + '_', 5014, + '\t', 4089, + ' ', 4089, + '+', 4998, + '-', 4998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -22995,24 +23032,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 254: + case 255: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '(', 3793, - '.', 5015, - ']', 3592, - '_', 5013, - '\t', 4088, - ' ', 4088, - '+', 4997, - '-', 4997, + '#', 5463, + '$', 3597, + '(', 3794, + '.', 5016, + ']', 3593, + '_', 5014, + '\t', 4089, + ' ', 4089, + '+', 4998, + '-', 4998, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || ')' < lookahead) && @@ -23020,328 +23057,328 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 255: + case 256: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '(', 3793, - '.', 5250, - '_', 5255, - '}', 3702, - '\t', 4088, - ' ', 4088, - '+', 5239, - '-', 5239, + '#', 5463, + '$', 3597, + '(', 3794, + '.', 5251, + '_', 5256, + '}', 3703, + '\t', 4089, + ' ', 4089, + '+', 5238, + '-', 5238, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5270); END_STATE(); - case 256: + case 257: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 3848, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 3849, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 257: + case 258: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 3848, - 'E', 3273, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - 'd', 3286, - 'e', 3272, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 3849, + 'E', 3274, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + 'd', 3287, + 'e', 3273, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 258: + case 259: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 4479, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 4480, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 259: + case 260: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 4479, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 4480, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 260: + case 261: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 4479, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4502, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 4480, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4503, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(270); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 261: + case 262: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 4479, - 'E', 3280, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - 'd', 3286, - 'e', 3279, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 4480, + 'E', 3281, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + 'd', 3287, + 'e', 3280, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 262: + case 263: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 4479, - 'E', 3273, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - '_', 3284, - 'd', 3286, - 'e', 3272, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 4480, + 'E', 3274, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + '_', 3285, + 'd', 3287, + 'e', 3273, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 263: + case 264: ADVANCE_MAP( - '#', 5462, - '$', 3596, - '-', 3624, - '.', 4479, - 'E', 3273, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - 'd', 3286, - 'e', 3272, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '$', 3597, + '-', 3625, + '.', 4480, + 'E', 3274, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + 'd', 3287, + 'e', 3273, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(273); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 264: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == ';') ADVANCE(4092); - if (lookahead == '{') ADVANCE(3701); + case 265: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == ';') ADVANCE(4093); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(265); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); + lookahead == ' ') ADVANCE(266); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || (':' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); + lookahead == '^') ADVANCE(4644); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -23349,199 +23386,199 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); - END_STATE(); - case 265: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == ';') ADVANCE(4092); - if (lookahead == '{') ADVANCE(3701); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(265); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(449); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 266: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '=') ADVANCE(4292); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == ';') ADVANCE(4093); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + lookahead == ' ') ADVANCE(266); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(450); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 267: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '=') ADVANCE(4292); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '=') ADVANCE(4293); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3482); + lookahead == ' ') SKIP(270); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3517); + END_STATE(); + case 268: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '=') ADVANCE(4293); + if (lookahead == '\t' || + lookahead == ' ') SKIP(273); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3483); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3343); - END_STATE(); - case 268: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '=') ADVANCE(4292); - if (lookahead == '\t' || - lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 269: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '=') ADVANCE(4293); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); + lookahead == ' ') SKIP(273); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 270: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(270); END_STATE(); case 271: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(270); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 272: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3624); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || lookahead == ' ') SKIP(272); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 273: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3634); - if (lookahead == '=') ADVANCE(4292); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(269); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == ' ') SKIP(273); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 274: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '-') ADVANCE(3634); - if (lookahead == '=') ADVANCE(4292); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3633); + if (lookahead == '=') ADVANCE(4293); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(272); + lookahead == ' ') SKIP(270); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); + END_STATE(); + case 275: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '-') ADVANCE(3633); + if (lookahead == '=') ADVANCE(4293); + if (lookahead == '\t' || + lookahead == ' ') SKIP(273); if (lookahead == '!' || lookahead == '?' || - lookahead == '@') ADVANCE(4345); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4335); + lookahead == '@') ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4336); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '.' < lookahead) && (lookahead < '0' || '[' < lookahead) && - (lookahead < ']' || '}' < lookahead)) ADVANCE(3343); - END_STATE(); - case 275: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '.') ADVANCE(474); - if (lookahead == '=') ADVANCE(454); - if (lookahead == 'i') ADVANCE(836); - if (lookahead == '|') ADVANCE(3556); - if (lookahead == '\t' || - lookahead == ' ') SKIP(275); - if (lookahead == '+' || - lookahead == '-') ADVANCE(437); + (lookahead < ']' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 276: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '.') ADVANCE(474); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '.') ADVANCE(475); + if (lookahead == '=') ADVANCE(455); + if (lookahead == 'i') ADVANCE(837); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(276); if (lookahead == '+' || - lookahead == '-') ADVANCE(437); + lookahead == '-') ADVANCE(438); END_STATE(); case 277: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '.') ADVANCE(474); - if (lookahead == ']') ADVANCE(3592); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '.') ADVANCE(475); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(277); if (lookahead == '+' || - lookahead == '-') ADVANCE(437); + lookahead == '-') ADVANCE(438); END_STATE(); case 278: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '.') ADVANCE(474); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '.') ADVANCE(475); + if (lookahead == ']') ADVANCE(3593); if (lookahead == '\t' || lookahead == ' ') SKIP(278); if (lookahead == '+' || - lookahead == '-') ADVANCE(437); + lookahead == '-') ADVANCE(438); END_STATE(); case 279: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '.') ADVANCE(474); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '.') ADVANCE(475); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || lookahead == ' ') SKIP(279); if (lookahead == '+' || - lookahead == '-') ADVANCE(437); + lookahead == '-') ADVANCE(438); END_STATE(); case 280: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '.') ADVANCE(475); + if (lookahead == '\t' || + lookahead == ' ') SKIP(280); + if (lookahead == '+' || + lookahead == '-') ADVANCE(438); + END_STATE(); + case 281: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 3848, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'P', 5011, - 'T', 5011, - ']', 3592, - 'd', 5027, - 'e', 5007, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5048, - 'p', 5010, - 's', 5032, - 't', 5010, - 'u', 5048, - 'w', 5035, - '}', 3702, - 0xb5, 5048, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 3849, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'P', 5012, + 'T', 5012, + ']', 3593, + 'd', 5028, + 'e', 5008, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5049, + 'p', 5011, + 's', 5033, + 't', 5011, + 'u', 5049, + 'w', 5036, + '}', 3703, + 0xb5, 5049, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23549,56 +23586,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 281: + case 282: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 3848, - 'E', 5241, - 'G', 5243, - 'K', 5243, - 'M', 5243, - 'P', 5243, - 'T', 5243, - 'd', 5256, - 'e', 5240, - 'g', 5242, - 'h', 5262, - 'k', 5242, - 'm', 5244, - 'n', 5263, - 'p', 5242, - 's', 5259, - 't', 5242, - 'u', 5263, - 'w', 5260, - '}', 3702, - 0xb5, 5263, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 3849, + 'E', 5242, + 'G', 5244, + 'K', 5244, + 'M', 5244, + 'P', 5244, + 'T', 5244, + 'd', 5257, + 'e', 5241, + 'g', 5243, + 'h', 5263, + 'k', 5243, + 'm', 5245, + 'n', 5264, + 'p', 5243, + 's', 5260, + 't', 5243, + 'u', 5264, + 'w', 5261, + '}', 3703, + 0xb5, 5264, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); - case 282: + case 283: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 3848, - ']', 3592, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5021, - 'e', 5021, + '#', 5463, + '(', 3794, + '.', 3849, + ']', 3593, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5022, + 'e', 5022, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23606,37 +23643,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 283: + case 284: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 3848, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5253, - 'e', 5253, + '#', 5463, + '(', 3794, + '.', 3849, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5254, + 'e', 5254, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); - case 284: + case 285: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 3834, - ']', 3592, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5253, - 'e', 5253, + '#', 5463, + '(', 3794, + '.', 3835, + ']', 3593, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5254, + 'e', 5254, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23645,21 +23682,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5269); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5270); END_STATE(); - case 285: + case 286: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 3834, - ']', 3592, - '\t', 4088, - ' ', 4088, - 'E', 5021, - 'e', 5021, + '#', 5463, + '(', 3794, + '.', 3835, + ']', 3593, + '\t', 4089, + ' ', 4089, + 'E', 5022, + 'e', 5022, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23667,43 +23704,43 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 286: + case 287: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 4995, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'P', 5011, - 'T', 5011, - ']', 3592, - '_', 5013, - 'd', 5027, - 'e', 5007, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5048, - 'p', 5010, - 's', 5032, - 't', 5010, - 'u', 5048, - 'w', 5035, - '}', 3702, - 0xb5, 5048, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 4996, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'P', 5012, + 'T', 5012, + ']', 3593, + '_', 5014, + 'd', 5028, + 'e', 5008, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5049, + 'p', 5011, + 's', 5033, + 't', 5011, + 'u', 5049, + 'w', 5036, + '}', 3703, + 0xb5, 5049, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23712,41 +23749,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 287: + case 288: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 4995, - 'E', 5008, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'P', 5011, - 'T', 5011, - ']', 3592, - 'd', 5027, - 'e', 5007, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5048, - 'p', 5010, - 's', 5032, - 't', 5010, - 'u', 5048, - 'w', 5035, - '}', 3702, - 0xb5, 5048, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 4996, + 'E', 5009, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'P', 5012, + 'T', 5012, + ']', 3593, + 'd', 5028, + 'e', 5008, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5049, + 'p', 5011, + 's', 5033, + 't', 5011, + 'u', 5049, + 'w', 5036, + '}', 3703, + 0xb5, 5049, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23754,41 +23791,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 288: + case 289: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 4995, - 'E', 5011, - 'G', 5011, - 'K', 5011, - 'M', 5011, - 'P', 5011, - 'T', 5011, - ']', 3592, - 'd', 5027, - 'e', 5010, - 'g', 5010, - 'h', 5042, - 'k', 5010, - 'm', 5012, - 'n', 5048, - 'p', 5010, - 's', 5032, - 't', 5010, - 'u', 5048, - 'w', 5035, - '}', 3702, - 0xb5, 5048, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 4996, + 'E', 5012, + 'G', 5012, + 'K', 5012, + 'M', 5012, + 'P', 5012, + 'T', 5012, + ']', 3593, + 'd', 5028, + 'e', 5011, + 'g', 5011, + 'h', 5043, + 'k', 5011, + 'm', 5013, + 'n', 5049, + 'p', 5011, + 's', 5033, + 't', 5011, + 'u', 5049, + 'w', 5036, + '}', 3703, + 0xb5, 5049, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23796,24 +23833,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 289: + case 290: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 4995, - ']', 3592, - '_', 5013, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5021, - 'e', 5021, + '#', 5463, + '(', 3794, + '.', 4996, + ']', 3593, + '_', 5014, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5022, + 'e', 5022, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23822,22 +23859,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 290: + case 291: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 4995, - ']', 3592, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5021, - 'e', 5021, + '#', 5463, + '(', 3794, + '.', 4996, + ']', 3593, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5022, + 'e', 5022, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23845,18 +23882,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 291: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(4995); - if (lookahead == ']') ADVANCE(3592); - if (lookahead == '}') ADVANCE(3702); + case 292: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4996); + if (lookahead == ']') ADVANCE(3593); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -23864,169 +23901,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); - END_STATE(); - case 292: - ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 5233, - 'E', 5241, - 'G', 5243, - 'K', 5243, - 'M', 5243, - 'P', 5243, - 'T', 5243, - '_', 5255, - 'd', 5256, - 'e', 5240, - 'g', 5242, - 'h', 5262, - 'k', 5242, - 'm', 5244, - 'n', 5263, - 'p', 5242, - 's', 5259, - 't', 5242, - 'u', 5263, - 'w', 5260, - '}', 3702, - 0xb5, 5263, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, - ); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); case 293: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 5233, - 'E', 5241, - 'G', 5243, - 'K', 5243, - 'M', 5243, - 'P', 5243, - 'T', 5243, - 'd', 5256, - 'e', 5240, - 'g', 5242, - 'h', 5262, - 'k', 5242, - 'm', 5244, - 'n', 5263, - 'p', 5242, - 's', 5259, - 't', 5242, - 'u', 5263, - 'w', 5260, - '}', 3702, - 0xb5, 5263, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 5234, + 'E', 5242, + 'G', 5244, + 'K', 5244, + 'M', 5244, + 'P', 5244, + 'T', 5244, + '_', 5256, + 'd', 5257, + 'e', 5241, + 'g', 5243, + 'h', 5263, + 'k', 5243, + 'm', 5245, + 'n', 5264, + 'p', 5243, + 's', 5260, + 't', 5243, + 'u', 5264, + 'w', 5261, + '}', 3703, + 0xb5, 5264, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 294: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 5233, - 'E', 5243, - 'G', 5243, - 'K', 5243, - 'M', 5243, - 'P', 5243, - 'T', 5243, - 'd', 5256, - 'e', 5242, - 'g', 5242, - 'h', 5262, - 'k', 5242, - 'm', 5244, - 'n', 5263, - 'p', 5242, - 's', 5259, - 't', 5242, - 'u', 5263, - 'w', 5260, - '}', 3702, - 0xb5, 5263, - '\t', 4088, - ' ', 4088, - 'B', 4015, - 'b', 4015, + '#', 5463, + '(', 3794, + '.', 5234, + 'E', 5242, + 'G', 5244, + 'K', 5244, + 'M', 5244, + 'P', 5244, + 'T', 5244, + 'd', 5257, + 'e', 5241, + 'g', 5243, + 'h', 5263, + 'k', 5243, + 'm', 5245, + 'n', 5264, + 'p', 5243, + 's', 5260, + 't', 5243, + 'u', 5264, + 'w', 5261, + '}', 3703, + 0xb5, 5264, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 295: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 5233, - '_', 5255, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5253, - 'e', 5253, + '#', 5463, + '(', 3794, + '.', 5234, + 'E', 5244, + 'G', 5244, + 'K', 5244, + 'M', 5244, + 'P', 5244, + 'T', 5244, + 'd', 5257, + 'e', 5243, + 'g', 5243, + 'h', 5263, + 'k', 5243, + 'm', 5245, + 'n', 5264, + 'p', 5243, + 's', 5260, + 't', 5243, + 'u', 5264, + 'w', 5261, + '}', 3703, + 0xb5, 5264, + '\t', 4089, + ' ', 4089, + 'B', 4016, + 'b', 4016, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 296: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '.', 5233, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5253, - 'e', 5253, + '#', 5463, + '(', 3794, + '.', 5234, + '_', 5256, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5254, + 'e', 5254, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 297: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(5233); - if (lookahead == '}') ADVANCE(3702); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + ADVANCE_MAP( + '#', 5463, + '(', 3794, + '.', 5234, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5254, + 'e', 5254, + ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 298: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5234); + if (lookahead == '}') ADVANCE(3703); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4089); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); + END_STATE(); + case 299: ADVANCE_MAP( - '#', 5462, - '(', 3793, - ']', 3592, - '_', 5013, - '\t', 4088, - ' ', 4088, - 'E', 5021, - 'e', 5021, + '#', 5463, + '(', 3794, + ']', 3593, + '_', 5014, + '\t', 4089, + ' ', 4089, + 'E', 5022, + 'e', 5022, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24035,18 +24072,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '[' && lookahead != '_' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 299: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == ']') ADVANCE(3592); + case 300: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == ']') ADVANCE(3593); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5021); + lookahead == 'e') ADVANCE(5022); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24054,16 +24091,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 300: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == ']') ADVANCE(3592); + case 301: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == ']') ADVANCE(3593); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -24071,428 +24108,428 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5085); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5086); END_STATE(); - case 301: + case 302: ADVANCE_MAP( - '#', 5462, - '(', 3793, - '_', 5255, - '}', 3702, - '\t', 4088, - ' ', 4088, - 'E', 5253, - 'e', 5253, + '#', 5463, + '(', 3794, + '_', 5256, + '}', 3703, + '\t', 4089, + ' ', 4089, + 'E', 5254, + 'e', 5254, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); - case 302: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '}') ADVANCE(3702); + case 303: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5253); + lookahead == 'e') ADVANCE(5254); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); - case 303: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '}') ADVANCE(3702); + case 304: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); - case 304: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == ',') ADVANCE(3595); - if (lookahead == ']') ADVANCE(3592); + case 305: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == ',') ADVANCE(3596); + if (lookahead == ']') ADVANCE(3593); if (lookahead == '\t' || - lookahead == ' ') SKIP(304); + lookahead == ' ') SKIP(305); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4037); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4038); END_STATE(); - case 305: + case 306: ADVANCE_MAP( - '#', 5462, - ',', 4084, - '.', 4093, - ';', 4092, - '?', 3763, - ']', 3592, - '\t', 4086, - ' ', 4086, + '#', 5463, + ',', 4085, + '.', 4094, + ';', 4093, + '?', 3764, + ']', 3593, + '\t', 4087, + ' ', 4087, ); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4087); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4088); END_STATE(); - case 306: + case 307: ADVANCE_MAP( - '#', 5462, - '-', 3624, - '.', 3848, - 'E', 3273, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - 'd', 3286, - 'e', 3272, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '-', 3625, + '.', 3849, + 'E', 3274, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + 'd', 3287, + 'e', 3273, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(311); + lookahead == ' ') SKIP(312); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 307: + case 308: ADVANCE_MAP( - '#', 5462, - '-', 3624, - '.', 4479, - 'E', 3280, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - 'd', 3286, - 'e', 3279, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '-', 3625, + '.', 4480, + 'E', 3281, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + 'd', 3287, + 'e', 3280, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(311); + lookahead == ' ') SKIP(312); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 308: + case 309: ADVANCE_MAP( - '#', 5462, - '-', 3624, - '.', 4479, - 'E', 3273, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - '_', 3284, - 'd', 3286, - 'e', 3272, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '-', 3625, + '.', 4480, + 'E', 3274, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + '_', 3285, + 'd', 3287, + 'e', 3273, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(311); + lookahead == ' ') SKIP(312); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 309: + case 310: ADVANCE_MAP( - '#', 5462, - '-', 3624, - '.', 4479, - 'E', 3273, - 'G', 3280, - 'K', 3280, - 'M', 3280, - 'P', 3280, - 'T', 3280, - 'd', 3286, - 'e', 3272, - 'g', 3279, - 'h', 3317, - 'k', 3279, - 'm', 3281, - 'n', 3321, - 'p', 3279, - 's', 3296, - 't', 3279, - 'u', 3321, - 'w', 3300, - 0xb5, 3321, + '#', 5463, + '-', 3625, + '.', 4480, + 'E', 3274, + 'G', 3281, + 'K', 3281, + 'M', 3281, + 'P', 3281, + 'T', 3281, + 'd', 3287, + 'e', 3273, + 'g', 3280, + 'h', 3318, + 'k', 3280, + 'm', 3282, + 'n', 3322, + 'p', 3280, + 's', 3297, + 't', 3280, + 'u', 3322, + 'w', 3301, + 0xb5, 3322, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(311); + lookahead == ' ') SKIP(312); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); + lookahead == 'b') ADVANCE(4022); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= ',') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); - case 310: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '-') ADVANCE(3624); + case 311: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(311); + lookahead == ' ') SKIP(312); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4643); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3343); - END_STATE(); - case 311: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '-') ADVANCE(3624); - if (lookahead == '\t' || - lookahead == ' ') SKIP(311); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == '^') ADVANCE(4644); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(3344); END_STATE(); case 312: - ADVANCE_MAP( - '#', 5462, - '-', 459, - ':', 4089, - '<', 3103, - '=', 1786, - '>', 3612, - '@', 3615, - 'h', 3299, - 'u', 3323, - '{', 3701, - ); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '-') ADVANCE(3625); if (lookahead == '\t' || - lookahead == ' ') SKIP(313); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(312); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 313: ADVANCE_MAP( - '#', 5462, - '-', 459, - ':', 4089, - '=', 1786, - '>', 3612, - 'h', 3299, - 'u', 3323, - '{', 3701, + '#', 5463, + '-', 460, + ':', 4090, + '<', 3104, + '=', 1787, + '>', 3613, + '@', 3616, + 'h', 3300, + 'u', 3324, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(313); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(314); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 314: ADVANCE_MAP( - '#', 5462, - '.', 3848, - '=', 4488, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'i', 4539, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '-', 460, + ':', 4090, + '=', 1787, + '>', 3613, + 'h', 3300, + 'u', 3324, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(314); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 315: ADVANCE_MAP( - '#', 5462, - '.', 3848, - '=', 4488, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '.', 3849, + '=', 4489, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'i', 4540, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 316: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3848); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + ADVANCE_MAP( + '#', 5463, + '.', 3849, + '=', 4489, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(348); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 317: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3848); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3849); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 318: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3849); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '|') ADVANCE(3557); + if (lookahead == '\t' || + lookahead == ' ') SKIP(348); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 319: ADVANCE_MAP( - '#', 5462, - '.', 3848, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '.', 3849, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(358); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 319: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3848); - if (lookahead == '{') ADVANCE(3701); + case 320: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3849); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(358); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 320: + case 321: ADVANCE_MAP( - '#', 5462, - '.', 4099, - ':', 3589, - '<', 3103, - '>', 3612, - '?', 3763, - '@', 3615, - '[', 3591, - ']', 3592, - 'c', 3292, - 'e', 3318, - 'f', 3327, - 'i', 3306, - 'o', 3309, - 'v', 3287, - '}', 3702, - '\t', 4088, - ' ', 4088, + '#', 5463, + '.', 4100, + ':', 3590, + '<', 3104, + '>', 3613, + '?', 3764, + '@', 3616, + '[', 3592, + ']', 3593, + 'c', 3293, + 'e', 3319, + 'f', 3328, + 'i', 3307, + 'o', 3310, + 'v', 3288, + '}', 3703, + '\t', 4089, + ' ', 4089, ); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && (lookahead < ' ' || '$' < lookahead) && (lookahead < '&' || '.' < lookahead) && @@ -24500,704 +24537,704 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ']' && lookahead != '^' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(3343); - END_STATE(); - case 321: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3858); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '\t' || - lookahead == ' ') SKIP(344); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + (lookahead < '{' || '}' < lookahead)) ADVANCE(3344); END_STATE(); case 322: - ADVANCE_MAP( - '#', 5462, - '.', 4479, - '=', 4488, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'i', 4539, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, - ); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3859); + if (lookahead == '_') ADVANCE(4507); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(345); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 323: ADVANCE_MAP( - '#', 5462, - '.', 4479, - '=', 4488, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '.', 4480, + '=', 4489, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'i', 4540, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 324: ADVANCE_MAP( - '#', 5462, - '.', 4479, - '=', 4488, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'i', 4539, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '.', 4480, + '=', 4489, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); + lookahead == ' ') SKIP(348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 325: ADVANCE_MAP( - '#', 5462, - '.', 4479, - '=', 4488, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '.', 4480, + '=', 4489, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'i', 4540, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 326: ADVANCE_MAP( - '#', 5462, - '.', 4479, - '=', 4488, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4502, - 'g', 4502, - 'h', 4571, - 'i', 4539, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '.', 4480, + '=', 4489, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); + lookahead == ' ') SKIP(348); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 327: ADVANCE_MAP( - '#', 5462, - '.', 4479, - '=', 4488, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4502, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - 0xb5, 4581, + '#', 5463, + '.', 4480, + '=', 4489, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4503, + 'g', 4503, + 'h', 4572, + 'i', 4540, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 328: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + ADVANCE_MAP( + '#', 5463, + '.', 4480, + '=', 4489, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4503, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + 0xb5, 4582, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(348); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 329: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 330: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); + lookahead == ' ') SKIP(348); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 331: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(347); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 332: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 333: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(348); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 334: - ADVANCE_MAP( - '#', 5462, - '.', 4479, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, - ); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(348); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 335: ADVANCE_MAP( - '#', 5462, - '.', 4479, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '.', 4480, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(358); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 336: ADVANCE_MAP( - '#', 5462, - '.', 4479, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4502, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '{', 3701, - 0xb5, 4581, + '#', 5463, + '.', 4480, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(358); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 337: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '{') ADVANCE(3701); + ADVANCE_MAP( + '#', 5463, + '.', 4480, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4503, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '{', 3702, + 0xb5, 4582, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 338: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(358); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 339: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4479); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 340: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3834); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4480); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 341: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3834); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3835); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 342: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(3834); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3835); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(348); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 343: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4508); - if (lookahead == '_') ADVANCE(4506); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(3835); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 344: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(474); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4509); + if (lookahead == '_') ADVANCE(4507); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(345); if (lookahead == '+' || - lookahead == '-') ADVANCE(437); + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 345: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == ':') ADVANCE(4089); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(475); if (lookahead == '\t' || lookahead == ' ') SKIP(345); + if (lookahead == '+' || + lookahead == '-') ADVANCE(438); END_STATE(); case 346: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(454); - if (lookahead == 'i') ADVANCE(836); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == ':') ADVANCE(4090); if (lookahead == '\t' || lookahead == ' ') SKIP(346); END_STATE(); case 347: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(454); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(455); + if (lookahead == 'i') ADVANCE(837); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); END_STATE(); case 348: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4292); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(455); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == ' ') SKIP(348); END_STATE(); case 349: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4293); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 350: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 351: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(346); + lookahead == ' ') SKIP(348); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 352: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == 'i') ADVANCE(4539); - if (lookahead == '|') ADVANCE(3556); - if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); - END_STATE(); - case 353: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 354: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '=') ADVANCE(4488); - if (lookahead == '|') ADVANCE(3556); + case 353: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == 'i') ADVANCE(4540); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 355: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '_') ADVANCE(4506); - if (lookahead == '{') ADVANCE(3701); + case 354: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); + lookahead == ' ') SKIP(348); if (lookahead == 'E' || lookahead == 'e') ADVANCE(4517); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 355: + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '=') ADVANCE(4489); + if (lookahead == '|') ADVANCE(3557); + if (lookahead == '\t' || + lookahead == ' ') SKIP(348); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 356: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == 'i') ADVANCE(3308); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '_') ADVANCE(4507); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(356); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3343); + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 357: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == 'i') ADVANCE(3309); if (lookahead == '\t' || lookahead == ' ') SKIP(357); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(3344); END_STATE(); case 358: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4517); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); END_STATE(); case 359: - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(358); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4517); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 360: - if (lookahead == '#') ADVANCE(5462); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 361: - if (lookahead == '#') ADVANCE(5462); + if (lookahead == '#') ADVANCE(5463); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3647); + lookahead == ' ') SKIP(361); END_STATE(); case 362: - if (lookahead == '#') ADVANCE(5462); + if (lookahead == '#') ADVANCE(5463); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4109); + lookahead == ' ') SKIP(361); + if (set_contains(sym_param_short_flag_identifier_character_set_1, 724, lookahead)) ADVANCE(3648); END_STATE(); case 363: - if (lookahead == '#') ADVANCE(5462); + if (lookahead == '#') ADVANCE(5463); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(sym_identifier_character_set_1, 9, lookahead))) ADVANCE(4110); END_STATE(); case 364: - if (lookahead == '#') ADVANCE(5462); + if (lookahead == '#') ADVANCE(5463); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 365: - if (lookahead == '#') ADVANCE(5465); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '}') ADVANCE(3702); + if (lookahead == '#') ADVANCE(5463); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 366: - if (lookahead == '#') ADVANCE(5465); - if (lookahead == '(') ADVANCE(3793); + if (lookahead == '#') ADVANCE(5466); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '}') ADVANCE(3703); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + lookahead == ' ') ADVANCE(4089); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4085); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 367: - if (lookahead == '#') ADVANCE(5468); - if (lookahead == '$') ADVANCE(3601); - if (lookahead == '-') ADVANCE(3632); - if (lookahead == '{') ADVANCE(3701); + if (lookahead == '#') ADVANCE(5466); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '\t' || + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); + END_STATE(); + case 368: + if (lookahead == '#') ADVANCE(5469); + if (lookahead == '$') ADVANCE(3602); + if (lookahead == '-') ADVANCE(3635); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(271); + lookahead == ' ') SKIP(272); if (lookahead == '!' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4899); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4883); + lookahead == '^') ADVANCE(4900); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4884); END_STATE(); - case 368: - if (lookahead == '#') ADVANCE(5468); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '{') ADVANCE(3701); + case 369: + if (lookahead == '#') ADVANCE(5469); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '{') ADVANCE(3702); if (lookahead == '\t' || - lookahead == ' ') SKIP(357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == ' ') SKIP(358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); - case 369: - if (lookahead == '#') ADVANCE(5468); - if (lookahead == '-') ADVANCE(3632); + case 370: + if (lookahead == '#') ADVANCE(5469); + if (lookahead == '-') ADVANCE(3635); if (lookahead == '\t' || - lookahead == ' ') SKIP(311); + lookahead == ' ') SKIP(312); if (lookahead == '!' || lookahead == '$' || lookahead == '&' || ('*' <= lookahead && lookahead <= '.') || lookahead == ':' || ('<' <= lookahead && lookahead <= '@') || - lookahead == '^') ADVANCE(4899); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4883); - END_STATE(); - case 370: - if (lookahead == '#') ADVANCE(5468); - if (lookahead == '=') ADVANCE(4688); - if (lookahead == 'i') ADVANCE(4741); - if (lookahead == '|') ADVANCE(3556); - if (lookahead == '\t' || - lookahead == ' ') SKIP(346); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == '^') ADVANCE(4900); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(4884); END_STATE(); case 371: - if (lookahead == '#') ADVANCE(5468); - if (lookahead == '=') ADVANCE(4688); - if (lookahead == '|') ADVANCE(3556); + if (lookahead == '#') ADVANCE(5469); + if (lookahead == '=') ADVANCE(4689); + if (lookahead == 'i') ADVANCE(4742); + if (lookahead == '|') ADVANCE(3557); if (lookahead == '\t' || lookahead == ' ') SKIP(347); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 372: - if (lookahead == '#') ADVANCE(5467); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == ']') ADVANCE(3592); + if (lookahead == '#') ADVANCE(5469); + if (lookahead == '=') ADVANCE(4689); + if (lookahead == '|') ADVANCE(3557); + if (lookahead == '\t' || + lookahead == ' ') SKIP(348); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); + END_STATE(); + case 373: + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == ']') ADVANCE(3593); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); + lookahead == ' ') ADVANCE(4089); if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + lookahead == ',') ADVANCE(4085); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && @@ -25205,4257 +25242,4253 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ';' && lookahead != '[' && lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5170); - END_STATE(); - case 373: - if (lookahead == '#') ADVANCE(5467); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5171); END_STATE(); case 374: - if (lookahead == '#') ADVANCE(4075); - if (lookahead == '\'') ADVANCE(4077); - if (lookahead == '(') ADVANCE(3593); + if (lookahead == '#') ADVANCE(5468); + if (lookahead == '(') ADVANCE(3794); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4074); - if (lookahead != 0) ADVANCE(4075); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 375: - if (lookahead == '\'') ADVANCE(4069); - if (lookahead != 0) ADVANCE(375); + if (lookahead == '#') ADVANCE(4076); + if (lookahead == '\'') ADVANCE(4078); + if (lookahead == '(') ADVANCE(3594); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4075); + if (lookahead != 0) ADVANCE(4076); END_STATE(); case 376: - ADVANCE_MAP( - '+', 478, - '-', 480, - '>', 4245, - 'I', 1584, - '_', 480, - 'i', 1584, - 'n', 709, - 'r', 1291, - 'B', 4015, - 'b', 4015, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if (lookahead == '\'') ADVANCE(4070); + if (lookahead != 0) ADVANCE(376); END_STATE(); case 377: - if (lookahead == '+') ADVANCE(478); - if (lookahead == '-') ADVANCE(480); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == '_') ADVANCE(480); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 'n') ADVANCE(709); - if (lookahead == 'r') ADVANCE(1291); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + ADVANCE_MAP( + '+', 479, + '-', 481, + '>', 4246, + 'I', 1585, + '_', 481, + 'i', 1585, + 'n', 710, + 'r', 1292, + 'B', 4016, + 'b', 4016, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 378: - if (lookahead == '+') ADVANCE(1176); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 'n') ADVANCE(709); - if (lookahead == 'r') ADVANCE(1291); + if (lookahead == '+') ADVANCE(479); + if (lookahead == '-') ADVANCE(481); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == '_') ADVANCE(481); + if (lookahead == 'l') ADVANCE(1392); + if (lookahead == 'n') ADVANCE(710); + if (lookahead == 'r') ADVANCE(1292); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 379: - if (lookahead == '+') ADVANCE(1176); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'n') ADVANCE(709); - if (lookahead == 'r') ADVANCE(1291); + if (lookahead == '+') ADVANCE(1177); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'l') ADVANCE(1392); + if (lookahead == 'n') ADVANCE(710); + if (lookahead == 'r') ADVANCE(1292); END_STATE(); case 380: - if (lookahead == '+') ADVANCE(1211); - if (lookahead == '>') ADVANCE(4237); + if (lookahead == '+') ADVANCE(1177); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'n') ADVANCE(710); + if (lookahead == 'r') ADVANCE(1292); END_STATE(); case 381: - if (lookahead == '+') ADVANCE(1185); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'l') ADVANCE(1391); - if (lookahead == 'r') ADVANCE(1300); - if (lookahead == 'x') ADVANCE(1463); + if (lookahead == '+') ADVANCE(1212); + if (lookahead == '>') ADVANCE(4238); END_STATE(); case 382: - if (lookahead == '+') ADVANCE(1185); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'n') ADVANCE(709); - if (lookahead == 'r') ADVANCE(1300); + if (lookahead == '+') ADVANCE(1186); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'l') ADVANCE(1392); + if (lookahead == 'r') ADVANCE(1301); + if (lookahead == 'x') ADVANCE(1464); END_STATE(); case 383: - if (lookahead == '+') ADVANCE(1185); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(1300); + if (lookahead == '+') ADVANCE(1186); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'n') ADVANCE(710); + if (lookahead == 'r') ADVANCE(1301); END_STATE(); case 384: - if (lookahead == '+') ADVANCE(738); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'r') ADVANCE(3769); - if (lookahead == 'u') ADVANCE(1416); + if (lookahead == '+') ADVANCE(1186); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'r') ADVANCE(1301); END_STATE(); case 385: - if (lookahead == '+') ADVANCE(803); - if (lookahead == '>') ADVANCE(4241); + if (lookahead == '+') ADVANCE(739); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(1417); END_STATE(); case 386: - if (lookahead == '+') ADVANCE(759); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'r') ADVANCE(3769); - if (lookahead == 'u') ADVANCE(1422); + if (lookahead == '+') ADVANCE(804); + if (lookahead == '>') ADVANCE(4242); END_STATE(); case 387: - if (lookahead == '+') ADVANCE(759); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(1422); + if (lookahead == '+') ADVANCE(760); + if (lookahead == '>') ADVANCE(1575); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(1423); END_STATE(); case 388: - if (lookahead == '+') ADVANCE(1230); - if (lookahead == '>') ADVANCE(1576); + if (lookahead == '+') ADVANCE(760); + if (lookahead == '>') ADVANCE(1575); + if (lookahead == 'u') ADVANCE(1423); END_STATE(); case 389: - if (lookahead == '+') ADVANCE(817); - if (lookahead == '>') ADVANCE(1578); + if (lookahead == '+') ADVANCE(1231); + if (lookahead == '>') ADVANCE(1577); END_STATE(); case 390: - if (lookahead == '-') ADVANCE(1249); + if (lookahead == '+') ADVANCE(818); + if (lookahead == '>') ADVANCE(1579); END_STATE(); case 391: - if (lookahead == '-') ADVANCE(693); + if (lookahead == '-') ADVANCE(1250); END_STATE(); case 392: - if (lookahead == '-') ADVANCE(849); + if (lookahead == '-') ADVANCE(694); END_STATE(); case 393: - if (lookahead == '-') ADVANCE(1070); + if (lookahead == '-') ADVANCE(850); END_STATE(); case 394: - if (lookahead == '-') ADVANCE(980); - if (lookahead == 'f') ADVANCE(1450); + if (lookahead == '-') ADVANCE(1071); END_STATE(); case 395: - if (lookahead == '-') ADVANCE(683); + if (lookahead == '-') ADVANCE(981); + if (lookahead == 'f') ADVANCE(1451); END_STATE(); case 396: - if (lookahead == '-') ADVANCE(857); + if (lookahead == '-') ADVANCE(684); END_STATE(); case 397: - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '-') ADVANCE(858); END_STATE(); case 398: - if (lookahead == '-') ADVANCE(582); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(433); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 399: - if (lookahead == '-') ADVANCE(989); + if (lookahead == '-') ADVANCE(583); END_STATE(); case 400: - if (lookahead == '-') ADVANCE(1323); + if (lookahead == '-') ADVANCE(990); END_STATE(); case 401: - if (lookahead == '-') ADVANCE(663); + if (lookahead == '-') ADVANCE(1324); END_STATE(); case 402: - if (lookahead == '-') ADVANCE(1544); + if (lookahead == '-') ADVANCE(664); END_STATE(); case 403: - if (lookahead == '-') ADVANCE(611); + if (lookahead == '-') ADVANCE(1545); END_STATE(); case 404: - if (lookahead == '-') ADVANCE(1529); - if (lookahead == 'o') ADVANCE(1406); + if (lookahead == '-') ADVANCE(612); END_STATE(); case 405: - if (lookahead == '-') ADVANCE(1260); + if (lookahead == '-') ADVANCE(1530); + if (lookahead == 'o') ADVANCE(1407); END_STATE(); case 406: - if (lookahead == '-') ADVANCE(1384); + if (lookahead == '-') ADVANCE(1261); END_STATE(); case 407: - if (lookahead == '-') ADVANCE(662); + if (lookahead == '-') ADVANCE(1385); END_STATE(); case 408: - if (lookahead == '-') ADVANCE(1402); + if (lookahead == '-') ADVANCE(663); END_STATE(); case 409: - if (lookahead == '-') ADVANCE(1505); + if (lookahead == '-') ADVANCE(1403); END_STATE(); case 410: - if (lookahead == '-') ADVANCE(1128); + if (lookahead == '-') ADVANCE(1506); END_STATE(); case 411: - if (lookahead == '-') ADVANCE(1115); + if (lookahead == '-') ADVANCE(1129); END_STATE(); case 412: - if (lookahead == '-') ADVANCE(1153); + if (lookahead == '-') ADVANCE(1116); END_STATE(); case 413: - if (lookahead == '-') ADVANCE(1417); + if (lookahead == '-') ADVANCE(1154); END_STATE(); case 414: - if (lookahead == '-') ADVANCE(1172); + if (lookahead == '-') ADVANCE(1418); END_STATE(); case 415: - if (lookahead == '-') ADVANCE(1486); + if (lookahead == '-') ADVANCE(1173); END_STATE(); case 416: - if (lookahead == '-') ADVANCE(1227); + if (lookahead == '-') ADVANCE(1487); END_STATE(); case 417: - if (lookahead == '-') ADVANCE(1508); + if (lookahead == '-') ADVANCE(1228); END_STATE(); case 418: - if (lookahead == '-') ADVANCE(655); + if (lookahead == '-') ADVANCE(1509); END_STATE(); case 419: - if (lookahead == '-') ADVANCE(1615); + if (lookahead == '-') ADVANCE(656); END_STATE(); case 420: - if (lookahead == '-') ADVANCE(1469); + if (lookahead == '-') ADVANCE(1616); END_STATE(); case 421: - if (lookahead == '-') ADVANCE(1385); + if (lookahead == '-') ADVANCE(1470); END_STATE(); case 422: - if (lookahead == '-') ADVANCE(944); + if (lookahead == '-') ADVANCE(1386); END_STATE(); case 423: - if (lookahead == '-') ADVANCE(944); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3792); + if (lookahead == '-') ADVANCE(945); END_STATE(); case 424: - if (lookahead == '-') ADVANCE(1547); + if (lookahead == '-') ADVANCE(945); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); END_STATE(); case 425: - if (lookahead == '-') ADVANCE(644); + if (lookahead == '-') ADVANCE(1548); END_STATE(); case 426: - if (lookahead == '-') ADVANCE(1274); + if (lookahead == '-') ADVANCE(645); END_STATE(); case 427: - if (lookahead == '-') ADVANCE(1277); + if (lookahead == '-') ADVANCE(1275); END_STATE(); case 428: - if (lookahead == '-') ADVANCE(1551); + if (lookahead == '-') ADVANCE(1278); END_STATE(); case 429: - if (lookahead == '.') ADVANCE(468); - if (lookahead == '>') ADVANCE(3590); - if (lookahead == '_') ADVANCE(432); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '-') ADVANCE(1552); END_STATE(); case 430: - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '>') ADVANCE(3591); + if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 431: - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1597); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 432: - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(433); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1598); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 433: - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(471); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(433); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 434: - if (lookahead == '.') ADVANCE(3616); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); END_STATE(); case 435: - if (lookahead == '.') ADVANCE(434); + if (lookahead == '.') ADVANCE(3617); END_STATE(); case 436: - if (lookahead == '.') ADVANCE(434); - if (lookahead == '_') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + if (lookahead == '.') ADVANCE(435); END_STATE(); case 437: - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '.') ADVANCE(435); + if (lookahead == '_') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 438: - if (lookahead == '2') ADVANCE(4235); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '_') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 439: - if (lookahead == '2') ADVANCE(1604); - if (lookahead == '0' || - lookahead == '1') ADVANCE(1610); + if (lookahead == '2') ADVANCE(4236); END_STATE(); case 440: - if (lookahead == '2') ADVANCE(445); + if (lookahead == '2') ADVANCE(1605); + if (lookahead == '0' || + lookahead == '1') ADVANCE(1611); END_STATE(); case 441: - if (lookahead == '2') ADVANCE(4169); + if (lookahead == '2') ADVANCE(446); END_STATE(); case 442: - if (lookahead == '3') ADVANCE(441); - if (lookahead == '6') ADVANCE(443); + if (lookahead == '2') ADVANCE(4170); END_STATE(); case 443: - if (lookahead == '4') ADVANCE(4235); + if (lookahead == '3') ADVANCE(442); + if (lookahead == '6') ADVANCE(444); END_STATE(); case 444: - if (lookahead == '5') ADVANCE(4235); + if (lookahead == '4') ADVANCE(4236); END_STATE(); case 445: - if (lookahead == '5') ADVANCE(446); + if (lookahead == '5') ADVANCE(4236); END_STATE(); case 446: - if (lookahead == '6') ADVANCE(4235); + if (lookahead == '5') ADVANCE(447); END_STATE(); case 447: - if (lookahead == ':') ADVANCE(1611); + if (lookahead == '6') ADVANCE(4236); END_STATE(); case 448: if (lookahead == ':') ADVANCE(1612); END_STATE(); case 449: - if (lookahead == ';') ADVANCE(4092); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(449); + if (lookahead == ':') ADVANCE(1613); END_STATE(); case 450: - if (lookahead == '=') ADVANCE(3779); - if (lookahead == '~') ADVANCE(3790); + if (lookahead == ';') ADVANCE(4093); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(450); END_STATE(); case 451: - if (lookahead == '=') ADVANCE(3777); - if (lookahead == '>') ADVANCE(3703); - if (lookahead == '~') ADVANCE(3788); + if (lookahead == '=') ADVANCE(3780); + if (lookahead == '~') ADVANCE(3791); END_STATE(); case 452: - if (lookahead == '=') ADVANCE(3777); - if (lookahead == '~') ADVANCE(3788); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '>') ADVANCE(3704); + if (lookahead == '~') ADVANCE(3789); END_STATE(); case 453: - if (lookahead == '=') ADVANCE(3101); - if (lookahead == '~') ADVANCE(3089); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '~') ADVANCE(3789); END_STATE(); case 454: - if (lookahead == '>') ADVANCE(3703); + if (lookahead == '=') ADVANCE(3102); + if (lookahead == '~') ADVANCE(3090); END_STATE(); case 455: - if (lookahead == '>') ADVANCE(4265); + if (lookahead == '>') ADVANCE(3704); END_STATE(); case 456: - if (lookahead == '>') ADVANCE(4261); + if (lookahead == '>') ADVANCE(4266); END_STATE(); case 457: - if (lookahead == '>') ADVANCE(4253); + if (lookahead == '>') ADVANCE(4262); END_STATE(); case 458: - if (lookahead == '>') ADVANCE(4257); + if (lookahead == '>') ADVANCE(4254); END_STATE(); case 459: - if (lookahead == '>') ADVANCE(3590); + if (lookahead == '>') ADVANCE(4258); END_STATE(); case 460: - if (lookahead == '>') ADVANCE(1575); + if (lookahead == '>') ADVANCE(3591); END_STATE(); case 461: - if (lookahead == '>') ADVANCE(1577); + if (lookahead == '>') ADVANCE(1576); END_STATE(); case 462: - if (lookahead == '>') ADVANCE(1579); + if (lookahead == '>') ADVANCE(1578); END_STATE(); case 463: if (lookahead == '>') ADVANCE(1580); END_STATE(); case 464: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == '_') ADVANCE(480); - if (lookahead == 'i') ADVANCE(608); - if (lookahead == '+' || - lookahead == '-') ADVANCE(480); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if (lookahead == '>') ADVANCE(1581); END_STATE(); case 465: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(1584); + if (lookahead == 'I') ADVANCE(1585); + if (lookahead == '_') ADVANCE(481); + if (lookahead == 'i') ADVANCE(609); + if (lookahead == '+' || + lookahead == '-') ADVANCE(481); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 466: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(1108); - if (lookahead == 'o') ADVANCE(680); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'I') ADVANCE(1585); + if (lookahead == 'i') ADVANCE(1585); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); END_STATE(); case 467: - if (lookahead == 'I') ADVANCE(1584); - if (lookahead == 'i') ADVANCE(608); + if (lookahead == 'I') ADVANCE(1585); + if (lookahead == 'i') ADVANCE(1109); + if (lookahead == 'o') ADVANCE(681); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); END_STATE(); case 468: - if (lookahead == '_') ADVANCE(468); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if (lookahead == 'I') ADVANCE(1585); + if (lookahead == 'i') ADVANCE(609); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 469: if (lookahead == '_') ADVANCE(469); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); END_STATE(); case 470: if (lookahead == '_') ADVANCE(470); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); END_STATE(); case 471: if (lookahead == '_') ADVANCE(471); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 472: - if (lookahead == '_') ADVANCE(473); - if (lookahead == '+' || - lookahead == '-') ADVANCE(473); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + if (lookahead == '_') ADVANCE(472); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); END_STATE(); case 473: - if (lookahead == '_') ADVANCE(473); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); + if (lookahead == '_') ADVANCE(474); + if (lookahead == '+' || + lookahead == '-') ADVANCE(474); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 474: if (lookahead == '_') ADVANCE(474); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 475: - if (lookahead == '_') ADVANCE(476); - if (lookahead == '+' || - lookahead == '-') ADVANCE(476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if (lookahead == '_') ADVANCE(475); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 476: - if (lookahead == '_') ADVANCE(476); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if (lookahead == '_') ADVANCE(477); + if (lookahead == '+' || + lookahead == '-') ADVANCE(477); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); END_STATE(); case 477: if (lookahead == '_') ADVANCE(477); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); END_STATE(); case 478: - if (lookahead == '_') ADVANCE(480); - if (lookahead == 'o') ADVANCE(455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if (lookahead == '_') ADVANCE(478); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 479: - if (lookahead == '_') ADVANCE(480); - if (lookahead == '+' || - lookahead == '-') ADVANCE(480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if (lookahead == '_') ADVANCE(481); + if (lookahead == 'o') ADVANCE(456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 480: - if (lookahead == '_') ADVANCE(480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if (lookahead == '_') ADVANCE(481); + if (lookahead == '+' || + lookahead == '-') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 481: - if (lookahead == '`') ADVANCE(4070); - if (lookahead != 0) ADVANCE(481); + if (lookahead == '_') ADVANCE(481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); END_STATE(); case 482: - ADVANCE_MAP( - 'a', 681, - 'b', 952, - 'c', 881, - 'd', 896, - 'f', 807, - 'g', 1321, - 'h', 732, - 'i', 1124, - 'l', 1173, - 'p', 1306, - 'r', 716, - 's', 1426, - 't', 505, - 'w', 1200, - ); + if (lookahead == '`') ADVANCE(4071); + if (lookahead != 0) ADVANCE(482); END_STATE(); case 483: ADVANCE_MAP( - 'a', 681, - 'b', 776, - 'c', 885, - 'd', 1192, - 'h', 732, - 'i', 1104, - 'm', 823, - 'n', 710, - 'p', 1498, - 'r', 1504, - 's', 827, - 't', 740, - 'u', 1156, + 'a', 682, + 'b', 953, + 'c', 882, + 'd', 897, + 'f', 808, + 'g', 1322, + 'h', 733, + 'i', 1125, + 'l', 1174, + 'p', 1307, + 'r', 717, + 's', 1427, + 't', 506, + 'w', 1201, ); END_STATE(); case 484: - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'd') ADVANCE(896); - if (lookahead == 'f') ADVANCE(1178); - if (lookahead == 'n') ADVANCE(1166); - if (lookahead == 'p') ADVANCE(517); - if (lookahead == 't') ADVANCE(1167); - if (lookahead == 'u') ADVANCE(1407); + ADVANCE_MAP( + 'a', 682, + 'b', 777, + 'c', 886, + 'd', 1193, + 'h', 733, + 'i', 1105, + 'm', 824, + 'n', 711, + 'p', 1499, + 'r', 1505, + 's', 828, + 't', 741, + 'u', 1157, + ); END_STATE(); case 485: - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'g') ADVANCE(798); - if (lookahead == 'r') ADVANCE(736); - if (lookahead == 's') ADVANCE(798); + if (lookahead == 'a') ADVANCE(682); + if (lookahead == 'd') ADVANCE(897); + if (lookahead == 'f') ADVANCE(1179); + if (lookahead == 'n') ADVANCE(1167); + if (lookahead == 'p') ADVANCE(518); + if (lookahead == 't') ADVANCE(1168); + if (lookahead == 'u') ADVANCE(1408); END_STATE(); case 486: - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'l') ADVANCE(907); - if (lookahead == 'm') ADVANCE(1222); - if (lookahead == 'p') ADVANCE(1305); - if (lookahead == 'r') ADVANCE(772); - if (lookahead == 'u') ADVANCE(1158); + if (lookahead == 'a') ADVANCE(682); + if (lookahead == 'g') ADVANCE(799); + if (lookahead == 'r') ADVANCE(737); + if (lookahead == 's') ADVANCE(799); END_STATE(); case 487: - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'l') ADVANCE(906); - if (lookahead == 'r') ADVANCE(1066); - if (lookahead == 's') ADVANCE(1454); - if (lookahead == 'u') ADVANCE(1382); + if (lookahead == 'a') ADVANCE(682); + if (lookahead == 'l') ADVANCE(908); + if (lookahead == 'm') ADVANCE(1223); + if (lookahead == 'p') ADVANCE(1306); + if (lookahead == 'r') ADVANCE(773); + if (lookahead == 'u') ADVANCE(1159); END_STATE(); case 488: - if (lookahead == 'a') ADVANCE(681); - if (lookahead == 'r') ADVANCE(772); + if (lookahead == 'a') ADVANCE(682); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'r') ADVANCE(1067); + if (lookahead == 's') ADVANCE(1455); + if (lookahead == 'u') ADVANCE(1383); END_STATE(); case 489: - ADVANCE_MAP( - 'a', 1000, - 'b', 1301, - 'c', 504, - 'e', 1554, - 'g', 950, - 'i', 1367, - 'l', 491, - 'o', 1294, - 'p', 1282, - 'r', 712, - 's', 713, - 'v', 522, - 'w', 1186, - ); + if (lookahead == 'a') ADVANCE(682); + if (lookahead == 'r') ADVANCE(773); END_STATE(); case 490: - if (lookahead == 'a') ADVANCE(4235); + ADVANCE_MAP( + 'a', 1001, + 'b', 1302, + 'c', 505, + 'e', 1555, + 'g', 951, + 'i', 1368, + 'l', 492, + 'o', 1295, + 'p', 1283, + 'r', 713, + 's', 714, + 'v', 523, + 'w', 1187, + ); END_STATE(); case 491: - if (lookahead == 'a') ADVANCE(615); + if (lookahead == 'a') ADVANCE(4236); END_STATE(); case 492: - if (lookahead == 'a') ADVANCE(1067); + if (lookahead == 'a') ADVANCE(616); END_STATE(); case 493: - if (lookahead == 'a') ADVANCE(1067); - if (lookahead == 'm') ADVANCE(993); + if (lookahead == 'a') ADVANCE(1068); END_STATE(); case 494: - if (lookahead == 'a') ADVANCE(993); + if (lookahead == 'a') ADVANCE(1068); + if (lookahead == 'm') ADVANCE(994); END_STATE(); case 495: - ADVANCE_MAP( - 'a', 614, - 'c', 777, - 'e', 1556, - 'f', 1028, - 'l', 1102, - 'm', 519, - 'p', 1342, - 'r', 1191, - 's', 927, - 't', 544, - 'v', 590, - ); + if (lookahead == 'a') ADVANCE(994); END_STATE(); case 496: - if (lookahead == 'a') ADVANCE(1098); - if (lookahead == 'o') ADVANCE(1078); - END_STATE(); - case 497: ADVANCE_MAP( - 'a', 682, - 'b', 1528, - 'c', 1204, - 'e', 1149, - 'i', 1129, - 'l', 760, - 'r', 720, - 's', 1479, + 'a', 615, + 'c', 778, + 'e', 1557, + 'f', 1029, + 'l', 1103, + 'm', 520, + 'p', 1343, + 'r', 1192, + 's', 928, + 't', 545, + 'v', 591, ); END_STATE(); + case 497: + if (lookahead == 'a') ADVANCE(1099); + if (lookahead == 'o') ADVANCE(1079); + END_STATE(); case 498: - if (lookahead == 'a') ADVANCE(1371); + ADVANCE_MAP( + 'a', 683, + 'b', 1529, + 'c', 1205, + 'e', 1150, + 'i', 1130, + 'l', 761, + 'r', 721, + 's', 1480, + ); END_STATE(); case 499: - if (lookahead == 'a') ADVANCE(1320); + if (lookahead == 'a') ADVANCE(1372); END_STATE(); case 500: - ADVANCE_MAP( - 'a', 856, - 'c', 501, - 'd', 584, - 'e', 1559, - 'f', 808, - 'g', 790, - 'i', 1096, - 'j', 1225, - 'l', 512, - 'm', 518, - 'n', 404, - 'o', 1268, - 'p', 905, - 'q', 1494, - 'r', 721, - 's', 502, - 't', 569, - 'u', 1106, - 'v', 511, - 'w', 891, - ); + if (lookahead == 'a') ADVANCE(1321); END_STATE(); case 501: - if (lookahead == 'a') ADVANCE(639); - if (lookahead == 'o') ADVANCE(996); - if (lookahead == 'u') ADVANCE(1080); - END_STATE(); - case 502: ADVANCE_MAP( - 'a', 1099, - 'c', 888, - 'e', 1043, - 'h', 563, - 'l', 924, - 'o', 1327, - 't', 675, - 'u', 1069, + 'a', 857, + 'c', 502, + 'd', 585, + 'e', 1560, + 'f', 809, + 'g', 791, + 'i', 1097, + 'j', 1226, + 'l', 513, + 'm', 519, + 'n', 405, + 'o', 1269, + 'p', 906, + 'q', 1495, + 'r', 722, + 's', 503, + 't', 570, + 'u', 1107, + 'v', 512, + 'w', 892, ); END_STATE(); + case 502: + if (lookahead == 'a') ADVANCE(640); + if (lookahead == 'o') ADVANCE(997); + if (lookahead == 'u') ADVANCE(1081); + END_STATE(); case 503: - if (lookahead == 'a') ADVANCE(674); + ADVANCE_MAP( + 'a', 1100, + 'c', 889, + 'e', 1044, + 'h', 564, + 'l', 925, + 'o', 1328, + 't', 676, + 'u', 1070, + ); END_STATE(); case 504: - if (lookahead == 'a') ADVANCE(638); - if (lookahead == 'o') ADVANCE(688); + if (lookahead == 'a') ADVANCE(675); END_STATE(); case 505: - if (lookahead == 'a') ADVANCE(851); + if (lookahead == 'a') ADVANCE(639); + if (lookahead == 'o') ADVANCE(689); END_STATE(); case 506: - if (lookahead == 'a') ADVANCE(440); + if (lookahead == 'a') ADVANCE(852); END_STATE(); case 507: - if (lookahead == 'a') ADVANCE(991); - if (lookahead == 'o') ADVANCE(708); + if (lookahead == 'a') ADVANCE(441); END_STATE(); case 508: - if (lookahead == 'a') ADVANCE(1423); + if (lookahead == 'a') ADVANCE(992); + if (lookahead == 'o') ADVANCE(709); END_STATE(); case 509: - if (lookahead == 'a') ADVANCE(1059); - if (lookahead == 'c') ADVANCE(1189); - if (lookahead == 'e') ADVANCE(1393); - if (lookahead == 'm') ADVANCE(1184); - if (lookahead == 'o') ADVANCE(1259); + if (lookahead == 'a') ADVANCE(1424); END_STATE(); case 510: - if (lookahead == 'a') ADVANCE(1059); - if (lookahead == 'c') ADVANCE(1189); - if (lookahead == 'e') ADVANCE(1126); - if (lookahead == 'm') ADVANCE(1184); - if (lookahead == 'v') ADVANCE(601); + if (lookahead == 'a') ADVANCE(1060); + if (lookahead == 'c') ADVANCE(1190); + if (lookahead == 'e') ADVANCE(1394); + if (lookahead == 'm') ADVANCE(1185); + if (lookahead == 'o') ADVANCE(1260); END_STATE(); case 511: - if (lookahead == 'a') ADVANCE(1053); + if (lookahead == 'a') ADVANCE(1060); + if (lookahead == 'c') ADVANCE(1190); + if (lookahead == 'e') ADVANCE(1127); + if (lookahead == 'm') ADVANCE(1185); + if (lookahead == 'v') ADVANCE(602); END_STATE(); case 512: - if (lookahead == 'a') ADVANCE(1365); - if (lookahead == 'e') ADVANCE(1101); - if (lookahead == 'i') ADVANCE(1406); - if (lookahead == 'o') ADVANCE(1545); + if (lookahead == 'a') ADVANCE(1054); END_STATE(); case 513: - if (lookahead == 'a') ADVANCE(1112); + if (lookahead == 'a') ADVANCE(1366); + if (lookahead == 'e') ADVANCE(1102); + if (lookahead == 'i') ADVANCE(1407); + if (lookahead == 'o') ADVANCE(1546); END_STATE(); case 514: - if (lookahead == 'a') ADVANCE(1112); - if (lookahead == 'n') ADVANCE(1181); - if (lookahead == 'o') ADVANCE(1281); - if (lookahead == 'r') ADVANCE(1170); - if (lookahead == 's') ADVANCE(869); - if (lookahead == 'x') ADVANCE(1196); + if (lookahead == 'a') ADVANCE(1113); END_STATE(); case 515: - if (lookahead == 'a') ADVANCE(1562); + if (lookahead == 'a') ADVANCE(1113); + if (lookahead == 'n') ADVANCE(1182); + if (lookahead == 'o') ADVANCE(1282); + if (lookahead == 'r') ADVANCE(1171); + if (lookahead == 's') ADVANCE(870); + if (lookahead == 'x') ADVANCE(1197); END_STATE(); case 516: - if (lookahead == 'a') ADVANCE(1406); + if (lookahead == 'a') ADVANCE(1563); END_STATE(); case 517: - if (lookahead == 'a') ADVANCE(1304); + if (lookahead == 'a') ADVANCE(1407); END_STATE(); case 518: - if (lookahead == 'a') ADVANCE(1552); - if (lookahead == 'e') ADVANCE(531); - if (lookahead == 'i') ADVANCE(1101); + if (lookahead == 'a') ADVANCE(1305); END_STATE(); case 519: - if (lookahead == 'a') ADVANCE(1552); - if (lookahead == 'e') ADVANCE(702); - if (lookahead == 'i') ADVANCE(1101); - if (lookahead == 'o') ADVANCE(695); + if (lookahead == 'a') ADVANCE(1553); + if (lookahead == 'e') ADVANCE(532); + if (lookahead == 'i') ADVANCE(1102); END_STATE(); case 520: - if (lookahead == 'a') ADVANCE(1552); - if (lookahead == 'i') ADVANCE(1101); + if (lookahead == 'a') ADVANCE(1553); + if (lookahead == 'e') ADVANCE(703); + if (lookahead == 'i') ADVANCE(1102); + if (lookahead == 'o') ADVANCE(696); END_STATE(); case 521: - if (lookahead == 'a') ADVANCE(1568); + if (lookahead == 'a') ADVANCE(1553); + if (lookahead == 'i') ADVANCE(1102); END_STATE(); case 522: - if (lookahead == 'a') ADVANCE(1340); + if (lookahead == 'a') ADVANCE(1569); END_STATE(); case 523: - if (lookahead == 'a') ADVANCE(623); + if (lookahead == 'a') ADVANCE(1341); END_STATE(); case 524: - if (lookahead == 'a') ADVANCE(623); - if (lookahead == 'i') ADVANCE(1091); + if (lookahead == 'a') ADVANCE(624); END_STATE(); case 525: - if (lookahead == 'a') ADVANCE(1239); + if (lookahead == 'a') ADVANCE(624); + if (lookahead == 'i') ADVANCE(1092); END_STATE(); case 526: - if (lookahead == 'a') ADVANCE(1427); + if (lookahead == 'a') ADVANCE(1240); END_STATE(); case 527: - if (lookahead == 'a') ADVANCE(1397); + if (lookahead == 'a') ADVANCE(1428); END_STATE(); case 528: - if (lookahead == 'a') ADVANCE(613); + if (lookahead == 'a') ADVANCE(1398); END_STATE(); case 529: - if (lookahead == 'a') ADVANCE(694); + if (lookahead == 'a') ADVANCE(614); END_STATE(); case 530: - if (lookahead == 'a') ADVANCE(1101); + if (lookahead == 'a') ADVANCE(695); END_STATE(); case 531: - if (lookahead == 'a') ADVANCE(1101); - if (lookahead == 'd') ADVANCE(959); + if (lookahead == 'a') ADVANCE(1102); END_STATE(); case 532: - if (lookahead == 'a') ADVANCE(1101); - if (lookahead == 'u') ADVANCE(994); + if (lookahead == 'a') ADVANCE(1102); + if (lookahead == 'd') ADVANCE(960); END_STATE(); case 533: - if (lookahead == 'a') ADVANCE(1285); - if (lookahead == 'l') ADVANCE(906); - if (lookahead == 'n') ADVANCE(851); + if (lookahead == 'a') ADVANCE(1102); + if (lookahead == 'u') ADVANCE(995); END_STATE(); case 534: - if (lookahead == 'a') ADVANCE(1355); + if (lookahead == 'a') ADVANCE(1286); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'n') ADVANCE(852); END_STATE(); case 535: - if (lookahead == 'a') ADVANCE(1281); + if (lookahead == 'a') ADVANCE(1356); END_STATE(); case 536: - if (lookahead == 'a') ADVANCE(642); + if (lookahead == 'a') ADVANCE(1282); END_STATE(); case 537: - if (lookahead == 'a') ADVANCE(1004); + if (lookahead == 'a') ADVANCE(643); END_STATE(); case 538: - if (lookahead == 'a') ADVANCE(1341); + if (lookahead == 'a') ADVANCE(1005); END_STATE(); case 539: - if (lookahead == 'a') ADVANCE(1341); - if (lookahead == 'c') ADVANCE(1311); + if (lookahead == 'a') ADVANCE(1342); END_STATE(); case 540: - if (lookahead == 'a') ADVANCE(1401); + if (lookahead == 'a') ADVANCE(1342); + if (lookahead == 'c') ADVANCE(1312); END_STATE(); case 541: - if (lookahead == 'a') ADVANCE(1148); + if (lookahead == 'a') ADVANCE(1402); END_STATE(); case 542: - if (lookahead == 'a') ADVANCE(1344); + if (lookahead == 'a') ADVANCE(1149); END_STATE(); case 543: - if (lookahead == 'a') ADVANCE(652); + if (lookahead == 'a') ADVANCE(1345); END_STATE(); case 544: - if (lookahead == 'a') ADVANCE(1105); + if (lookahead == 'a') ADVANCE(653); END_STATE(); case 545: - if (lookahead == 'a') ADVANCE(660); - if (lookahead == 's') ADVANCE(743); + if (lookahead == 'a') ADVANCE(1106); END_STATE(); case 546: - if (lookahead == 'a') ADVANCE(1481); + if (lookahead == 'a') ADVANCE(661); + if (lookahead == 's') ADVANCE(744); END_STATE(); case 547: - if (lookahead == 'a') ADVANCE(1010); + if (lookahead == 'a') ADVANCE(1482); END_STATE(); case 548: - if (lookahead == 'a') ADVANCE(1315); + if (lookahead == 'a') ADVANCE(1011); END_STATE(); case 549: - if (lookahead == 'a') ADVANCE(1516); + if (lookahead == 'a') ADVANCE(1316); END_STATE(); case 550: - if (lookahead == 'a') ADVANCE(1527); - if (lookahead == 'p') ADVANCE(1329); + if (lookahead == 'a') ADVANCE(1517); END_STATE(); case 551: - if (lookahead == 'a') ADVANCE(1431); + if (lookahead == 'a') ADVANCE(1528); + if (lookahead == 'p') ADVANCE(1330); END_STATE(); case 552: - if (lookahead == 'a') ADVANCE(1296); + if (lookahead == 'a') ADVANCE(1432); END_STATE(); case 553: - if (lookahead == 'a') ADVANCE(1359); + if (lookahead == 'a') ADVANCE(1297); END_STATE(); case 554: - if (lookahead == 'a') ADVANCE(1319); + if (lookahead == 'a') ADVANCE(1360); END_STATE(); case 555: - if (lookahead == 'a') ADVANCE(994); + if (lookahead == 'a') ADVANCE(1320); END_STATE(); case 556: - if (lookahead == 'a') ADVANCE(1428); + if (lookahead == 'a') ADVANCE(995); END_STATE(); case 557: - if (lookahead == 'a') ADVANCE(1051); + if (lookahead == 'a') ADVANCE(1429); END_STATE(); case 558: - if (lookahead == 'a') ADVANCE(1466); - if (lookahead == 'o') ADVANCE(1365); - if (lookahead == 'u') ADVANCE(1406); + if (lookahead == 'a') ADVANCE(1052); END_STATE(); case 559: - if (lookahead == 'a') ADVANCE(1310); - if (lookahead == 'o') ADVANCE(1210); + if (lookahead == 'a') ADVANCE(1467); + if (lookahead == 'o') ADVANCE(1366); + if (lookahead == 'u') ADVANCE(1407); END_STATE(); case 560: - if (lookahead == 'a') ADVANCE(990); + if (lookahead == 'a') ADVANCE(1311); + if (lookahead == 'o') ADVANCE(1211); END_STATE(); case 561: - if (lookahead == 'a') ADVANCE(1451); + if (lookahead == 'a') ADVANCE(991); END_STATE(); case 562: - if (lookahead == 'a') ADVANCE(1451); - if (lookahead == 'u') ADVANCE(1348); + if (lookahead == 'a') ADVANCE(1452); END_STATE(); case 563: - if (lookahead == 'a') ADVANCE(1258); - if (lookahead == 'i') ADVANCE(843); + if (lookahead == 'a') ADVANCE(1452); + if (lookahead == 'u') ADVANCE(1349); END_STATE(); case 564: - if (lookahead == 'a') ADVANCE(1083); + if (lookahead == 'a') ADVANCE(1259); + if (lookahead == 'i') ADVANCE(844); END_STATE(); case 565: - if (lookahead == 'a') ADVANCE(1343); + if (lookahead == 'a') ADVANCE(1084); END_STATE(); case 566: - if (lookahead == 'a') ADVANCE(1487); + if (lookahead == 'a') ADVANCE(1344); END_STATE(); case 567: - if (lookahead == 'a') ADVANCE(1131); + if (lookahead == 'a') ADVANCE(1488); END_STATE(); case 568: - if (lookahead == 'a') ADVANCE(1312); + if (lookahead == 'a') ADVANCE(1132); END_STATE(); case 569: - if (lookahead == 'a') ADVANCE(987); + if (lookahead == 'a') ADVANCE(1313); END_STATE(); case 570: - if (lookahead == 'a') ADVANCE(1136); + if (lookahead == 'a') ADVANCE(988); END_STATE(); case 571: - if (lookahead == 'a') ADVANCE(1100); + if (lookahead == 'a') ADVANCE(1137); END_STATE(); case 572: - if (lookahead == 'a') ADVANCE(1261); + if (lookahead == 'a') ADVANCE(1101); END_STATE(); case 573: - if (lookahead == 'a') ADVANCE(1382); + if (lookahead == 'a') ADVANCE(1262); END_STATE(); case 574: - if (lookahead == 'a') ADVANCE(1015); + if (lookahead == 'a') ADVANCE(1383); END_STATE(); case 575: - if (lookahead == 'a') ADVANCE(656); + if (lookahead == 'a') ADVANCE(1016); END_STATE(); case 576: - if (lookahead == 'a') ADVANCE(1116); + if (lookahead == 'a') ADVANCE(657); END_STATE(); case 577: - if (lookahead == 'a') ADVANCE(1470); - if (lookahead == 'u') ADVANCE(1348); + if (lookahead == 'a') ADVANCE(1117); END_STATE(); case 578: - if (lookahead == 'a') ADVANCE(1034); + if (lookahead == 'a') ADVANCE(1471); + if (lookahead == 'u') ADVANCE(1349); END_STATE(); case 579: - if (lookahead == 'a') ADVANCE(1452); + if (lookahead == 'a') ADVANCE(1035); END_STATE(); case 580: - if (lookahead == 'a') ADVANCE(1439); + if (lookahead == 'a') ADVANCE(1453); END_STATE(); case 581: - if (lookahead == 'a') ADVANCE(1456); + if (lookahead == 'a') ADVANCE(1440); END_STATE(); case 582: - if (lookahead == 'a') ADVANCE(1135); - if (lookahead == 'o') ADVANCE(1288); - if (lookahead == 's') ADVANCE(879); - if (lookahead == 'x') ADVANCE(1220); + if (lookahead == 'a') ADVANCE(1457); END_STATE(); case 583: - if (lookahead == 'a') ADVANCE(1441); + if (lookahead == 'a') ADVANCE(1136); + if (lookahead == 'o') ADVANCE(1289); + if (lookahead == 's') ADVANCE(880); + if (lookahead == 'x') ADVANCE(1221); END_STATE(); case 584: - if (lookahead == 'a') ADVANCE(1460); - if (lookahead == 'e') ADVANCE(653); - if (lookahead == 'r') ADVANCE(1202); - if (lookahead == 'u') ADVANCE(1097); + if (lookahead == 'a') ADVANCE(1442); END_STATE(); case 585: - if (lookahead == 'a') ADVANCE(1389); + if (lookahead == 'a') ADVANCE(1461); + if (lookahead == 'e') ADVANCE(654); + if (lookahead == 'r') ADVANCE(1203); + if (lookahead == 'u') ADVANCE(1098); END_STATE(); case 586: - if (lookahead == 'a') ADVANCE(938); + if (lookahead == 'a') ADVANCE(1390); END_STATE(); case 587: - if (lookahead == 'a') ADVANCE(1388); + if (lookahead == 'a') ADVANCE(939); END_STATE(); case 588: - if (lookahead == 'a') ADVANCE(1462); + if (lookahead == 'a') ADVANCE(1389); END_STATE(); case 589: - if (lookahead == 'a') ADVANCE(942); + if (lookahead == 'a') ADVANCE(1463); END_STATE(); case 590: - if (lookahead == 'a') ADVANCE(1346); + if (lookahead == 'a') ADVANCE(943); END_STATE(); case 591: - if (lookahead == 'a') ADVANCE(622); + if (lookahead == 'a') ADVANCE(1347); END_STATE(); case 592: - if (lookahead == 'a') ADVANCE(1160); - if (lookahead == 'e') ADVANCE(1296); + if (lookahead == 'a') ADVANCE(623); END_STATE(); case 593: - if (lookahead == 'a') ADVANCE(706); + if (lookahead == 'a') ADVANCE(1161); + if (lookahead == 'e') ADVANCE(1297); END_STATE(); case 594: - if (lookahead == 'a') ADVANCE(1483); + if (lookahead == 'a') ADVANCE(707); END_STATE(); case 595: - if (lookahead == 'a') ADVANCE(1468); + if (lookahead == 'a') ADVANCE(1484); END_STATE(); case 596: - if (lookahead == 'a') ADVANCE(1484); + if (lookahead == 'a') ADVANCE(1469); END_STATE(); case 597: - if (lookahead == 'a') ADVANCE(1058); + if (lookahead == 'a') ADVANCE(1485); END_STATE(); case 598: - if (lookahead == 'a') ADVANCE(1476); + if (lookahead == 'a') ADVANCE(1059); END_STATE(); case 599: - if (lookahead == 'a') ADVANCE(1476); - if (lookahead == 'o') ADVANCE(1164); + if (lookahead == 'a') ADVANCE(1477); END_STATE(); case 600: - if (lookahead == 'a') ADVANCE(1490); + if (lookahead == 'a') ADVANCE(1477); + if (lookahead == 'o') ADVANCE(1165); END_STATE(); case 601: - if (lookahead == 'a') ADVANCE(1353); + if (lookahead == 'a') ADVANCE(1491); END_STATE(); case 602: if (lookahead == 'a') ADVANCE(1354); END_STATE(); case 603: - ADVANCE_MAP( - 'b', 1567, - 'c', 1356, - 'e', 1067, - 'g', 1566, - 'i', 643, - 'j', 1370, - 'm', 1361, - 'n', 1501, - 'o', 687, - 'p', 533, - 's', 1356, - 't', 1168, - 'u', 1283, - 'v', 631, - 'x', 1016, - 'y', 493, - 'z', 1365, - ); + if (lookahead == 'a') ADVANCE(1355); END_STATE(); case 604: ADVANCE_MAP( - 'b', 1567, - 'c', 1356, - 'g', 1566, - 'h', 1408, - 'j', 1370, - 'm', 676, - 'n', 1501, - 'p', 533, - 't', 809, - 'x', 1068, - 'y', 492, - 'z', 1365, + 'b', 1568, + 'c', 1357, + 'e', 1068, + 'g', 1567, + 'i', 644, + 'j', 1371, + 'm', 1362, + 'n', 1502, + 'o', 688, + 'p', 534, + 's', 1357, + 't', 1169, + 'u', 1284, + 'v', 632, + 'x', 1017, + 'y', 494, + 'z', 1366, ); END_STATE(); case 605: - if (lookahead == 'b') ADVANCE(4235); - END_STATE(); - case 606: ADVANCE_MAP( - 'b', 899, - 'c', 765, - 'd', 577, - 'f', 962, - 'g', 1026, - 'i', 1119, - 'r', 751, - 's', 1279, - 'v', 537, + 'b', 1568, + 'c', 1357, + 'g', 1567, + 'h', 1409, + 'j', 1371, + 'm', 677, + 'n', 1502, + 'p', 534, + 't', 810, + 'x', 1069, + 'y', 493, + 'z', 1366, ); END_STATE(); + case 606: + if (lookahead == 'b') ADVANCE(4236); + END_STATE(); case 607: - if (lookahead == 'b') ADVANCE(4204); + ADVANCE_MAP( + 'b', 900, + 'c', 766, + 'd', 578, + 'f', 963, + 'g', 1027, + 'i', 1120, + 'r', 752, + 's', 1280, + 'v', 538, + ); END_STATE(); case 608: - if (lookahead == 'b') ADVANCE(4015); + if (lookahead == 'b') ADVANCE(4205); END_STATE(); case 609: - if (lookahead == 'b') ADVANCE(1507); - if (lookahead == 'd') ADVANCE(747); - if (lookahead == 'e') ADVANCE(1121); - if (lookahead == 'j') ADVANCE(1225); - if (lookahead == 'p') ADVANCE(542); - if (lookahead == 's') ADVANCE(1246); + if (lookahead == 'b') ADVANCE(4016); END_STATE(); case 610: - if (lookahead == 'b') ADVANCE(936); - if (lookahead == 'c') ADVANCE(893); - if (lookahead == 'd') ADVANCE(924); - if (lookahead == 'f') ADVANCE(1025); - if (lookahead == 'i') ADVANCE(1119); - if (lookahead == 'u') ADVANCE(1513); + if (lookahead == 'b') ADVANCE(1508); + if (lookahead == 'd') ADVANCE(748); + if (lookahead == 'e') ADVANCE(1122); + if (lookahead == 'j') ADVANCE(1226); + if (lookahead == 'p') ADVANCE(543); + if (lookahead == 's') ADVANCE(1247); END_STATE(); case 611: - if (lookahead == 'b') ADVANCE(1561); + if (lookahead == 'b') ADVANCE(937); + if (lookahead == 'c') ADVANCE(894); + if (lookahead == 'd') ADVANCE(925); + if (lookahead == 'f') ADVANCE(1026); + if (lookahead == 'i') ADVANCE(1120); + if (lookahead == 'u') ADVANCE(1514); END_STATE(); case 612: - ADVANCE_MAP( - 'b', 739, - 'c', 496, - 'd', 717, - 'e', 1150, - 'i', 1118, - 'j', 1225, - 'k', 731, - 'l', 760, - 'p', 527, - 'r', 718, - 's', 664, - 't', 915, - 'u', 1242, - 'w', 1316, - ); + if (lookahead == 'b') ADVANCE(1562); END_STATE(); case 613: - if (lookahead == 'b') ADVANCE(401); + ADVANCE_MAP( + 'b', 740, + 'c', 497, + 'd', 718, + 'e', 1151, + 'i', 1119, + 'j', 1226, + 'k', 732, + 'l', 761, + 'p', 528, + 'r', 719, + 's', 665, + 't', 916, + 'u', 1243, + 'w', 1317, + ); END_STATE(); case 614: - if (lookahead == 'b') ADVANCE(1355); - if (lookahead == 'r') ADVANCE(627); - if (lookahead == 'v') ADVANCE(851); + if (lookahead == 'b') ADVANCE(402); END_STATE(); case 615: - if (lookahead == 'b') ADVANCE(715); + if (lookahead == 'b') ADVANCE(1356); + if (lookahead == 'r') ADVANCE(628); + if (lookahead == 'v') ADVANCE(852); END_STATE(); case 616: - if (lookahead == 'b') ADVANCE(503); - if (lookahead == 'g') ADVANCE(1215); - if (lookahead == 'r') ADVANCE(825); - if (lookahead == 's') ADVANCE(986); + if (lookahead == 'b') ADVANCE(716); END_STATE(); case 617: - if (lookahead == 'b') ADVANCE(528); + if (lookahead == 'b') ADVANCE(504); + if (lookahead == 'g') ADVANCE(1216); + if (lookahead == 'r') ADVANCE(826); + if (lookahead == 's') ADVANCE(987); END_STATE(); case 618: - ADVANCE_MAP( - 'b', 540, - 'd', 931, - 'e', 1553, - 'j', 1225, - 'p', 542, - 'r', 773, - 's', 1251, - 't', 1564, - ); + if (lookahead == 'b') ADVANCE(529); END_STATE(); case 619: - if (lookahead == 'b') ADVANCE(573); - if (lookahead == 'f') ADVANCE(1005); - if (lookahead == 'm') ADVANCE(1235); - if (lookahead == 's') ADVANCE(1480); + ADVANCE_MAP( + 'b', 541, + 'd', 932, + 'e', 1554, + 'j', 1226, + 'p', 543, + 'r', 774, + 's', 1252, + 't', 1565, + ); END_STATE(); case 620: - if (lookahead == 'b') ADVANCE(1398); + if (lookahead == 'b') ADVANCE(574); + if (lookahead == 'f') ADVANCE(1006); + if (lookahead == 'm') ADVANCE(1236); + if (lookahead == 's') ADVANCE(1481); END_STATE(); case 621: - if (lookahead == 'b') ADVANCE(585); - if (lookahead == 'h') ADVANCE(745); + if (lookahead == 'b') ADVANCE(1399); END_STATE(); case 622: - if (lookahead == 'b') ADVANCE(1041); + if (lookahead == 'b') ADVANCE(586); + if (lookahead == 'h') ADVANCE(746); END_STATE(); case 623: - if (lookahead == 'b') ADVANCE(1033); + if (lookahead == 'b') ADVANCE(1042); END_STATE(); case 624: - if (lookahead == 'b') ADVANCE(1052); + if (lookahead == 'b') ADVANCE(1034); END_STATE(); case 625: - if (lookahead == 'c') ADVANCE(4235); + if (lookahead == 'b') ADVANCE(1053); END_STATE(); case 626: - if (lookahead == 'c') ADVANCE(766); - if (lookahead == 'l') ADVANCE(906); - if (lookahead == 'r') ADVANCE(1166); - if (lookahead == 'w') ADVANCE(1207); + if (lookahead == 'c') ADVANCE(4236); END_STATE(); case 627: - if (lookahead == 'c') ADVANCE(654); + if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'r') ADVANCE(1167); + if (lookahead == 'w') ADVANCE(1208); END_STATE(); case 628: - if (lookahead == 'c') ADVANCE(1045); - if (lookahead == 'd') ADVANCE(816); - if (lookahead == 'e') ADVANCE(685); - if (lookahead == 'l') ADVANCE(906); - if (lookahead == 'r') ADVANCE(784); - if (lookahead == 'v') ADVANCE(939); + if (lookahead == 'c') ADVANCE(655); END_STATE(); case 629: - if (lookahead == 'c') ADVANCE(1045); - if (lookahead == 'f') ADVANCE(1214); - if (lookahead == 'l') ADVANCE(906); - if (lookahead == 'v') ADVANCE(939); + if (lookahead == 'c') ADVANCE(1046); + if (lookahead == 'd') ADVANCE(817); + if (lookahead == 'e') ADVANCE(686); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'r') ADVANCE(785); + if (lookahead == 'v') ADVANCE(940); END_STATE(); case 630: - if (lookahead == 'c') ADVANCE(4022); + if (lookahead == 'c') ADVANCE(1046); + if (lookahead == 'f') ADVANCE(1215); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'v') ADVANCE(940); END_STATE(); case 631: - if (lookahead == 'c') ADVANCE(835); + if (lookahead == 'c') ADVANCE(4023); END_STATE(); case 632: - if (lookahead == 'c') ADVANCE(892); - if (lookahead == 'd') ADVANCE(561); + if (lookahead == 'c') ADVANCE(836); END_STATE(); case 633: - if (lookahead == 'c') ADVANCE(1245); - if (lookahead == 'd') ADVANCE(916); - if (lookahead == 'h') ADVANCE(1179); - if (lookahead == 'm') ADVANCE(748); - if (lookahead == 'n') ADVANCE(743); - if (lookahead == 't') ADVANCE(753); - if (lookahead == 'u') ADVANCE(1379); + if (lookahead == 'c') ADVANCE(893); + if (lookahead == 'd') ADVANCE(562); END_STATE(); case 634: - if (lookahead == 'c') ADVANCE(1406); + if (lookahead == 'c') ADVANCE(1246); + if (lookahead == 'd') ADVANCE(917); + if (lookahead == 'h') ADVANCE(1180); + if (lookahead == 'm') ADVANCE(749); + if (lookahead == 'n') ADVANCE(744); + if (lookahead == 't') ADVANCE(754); + if (lookahead == 'u') ADVANCE(1380); END_STATE(); case 635: - if (lookahead == 'c') ADVANCE(867); + if (lookahead == 'c') ADVANCE(1407); END_STATE(); case 636: - if (lookahead == 'c') ADVANCE(1113); + if (lookahead == 'c') ADVANCE(868); END_STATE(); case 637: - if (lookahead == 'c') ADVANCE(981); + if (lookahead == 'c') ADVANCE(1114); END_STATE(); case 638: - if (lookahead == 'c') ADVANCE(884); + if (lookahead == 'c') ADVANCE(982); END_STATE(); case 639: - if (lookahead == 'c') ADVANCE(884); - if (lookahead == 's') ADVANCE(1406); + if (lookahead == 'c') ADVANCE(885); END_STATE(); case 640: - if (lookahead == 'c') ADVANCE(988); + if (lookahead == 'c') ADVANCE(885); + if (lookahead == 's') ADVANCE(1407); END_STATE(); case 641: - if (lookahead == 'c') ADVANCE(988); - if (lookahead == 'r') ADVANCE(1299); + if (lookahead == 'c') ADVANCE(989); END_STATE(); case 642: - if (lookahead == 'c') ADVANCE(982); + if (lookahead == 'c') ADVANCE(989); + if (lookahead == 'r') ADVANCE(1300); END_STATE(); case 643: - if (lookahead == 'c') ADVANCE(1355); - if (lookahead == 'n') ADVANCE(897); + if (lookahead == 'c') ADVANCE(983); END_STATE(); case 644: - if (lookahead == 'c') ADVANCE(1190); + if (lookahead == 'c') ADVANCE(1356); + if (lookahead == 'n') ADVANCE(898); END_STATE(); case 645: - if (lookahead == 'c') ADVANCE(1190); - if (lookahead == 'n') ADVANCE(1423); + if (lookahead == 'c') ADVANCE(1191); END_STATE(); case 646: - if (lookahead == 'c') ADVANCE(873); + if (lookahead == 'c') ADVANCE(1191); + if (lookahead == 'n') ADVANCE(1424); END_STATE(); case 647: if (lookahead == 'c') ADVANCE(874); END_STATE(); case 648: - if (lookahead == 'c') ADVANCE(1415); + if (lookahead == 'c') ADVANCE(875); END_STATE(); case 649: - if (lookahead == 'c') ADVANCE(572); + if (lookahead == 'c') ADVANCE(1416); END_STATE(); case 650: - if (lookahead == 'c') ADVANCE(1228); - if (lookahead == 'd') ADVANCE(752); - if (lookahead == 'u') ADVANCE(1139); + if (lookahead == 'c') ADVANCE(573); END_STATE(); case 651: - if (lookahead == 'c') ADVANCE(1224); + if (lookahead == 'c') ADVANCE(1229); + if (lookahead == 'd') ADVANCE(753); + if (lookahead == 'u') ADVANCE(1140); END_STATE(); case 652: - if (lookahead == 'c') ADVANCE(711); + if (lookahead == 'c') ADVANCE(1225); END_STATE(); case 653: - if (lookahead == 'c') ADVANCE(963); + if (lookahead == 'c') ADVANCE(712); END_STATE(); case 654: - if (lookahead == 'c') ADVANCE(1198); - if (lookahead == 's') ADVANCE(926); - if (lookahead == 't') ADVANCE(544); + if (lookahead == 'c') ADVANCE(964); END_STATE(); case 655: - if (lookahead == 'c') ADVANCE(1232); + if (lookahead == 'c') ADVANCE(1199); + if (lookahead == 's') ADVANCE(927); + if (lookahead == 't') ADVANCE(545); END_STATE(); case 656: - if (lookahead == 'c') ADVANCE(767); + if (lookahead == 'c') ADVANCE(1233); END_STATE(); case 657: - if (lookahead == 'c') ADVANCE(886); + if (lookahead == 'c') ADVANCE(768); END_STATE(); case 658: - if (lookahead == 'c') ADVANCE(895); + if (lookahead == 'c') ADVANCE(887); END_STATE(); case 659: - if (lookahead == 'c') ADVANCE(547); + if (lookahead == 'c') ADVANCE(896); END_STATE(); case 660: - if (lookahead == 'c') ADVANCE(671); + if (lookahead == 'c') ADVANCE(548); END_STATE(); case 661: - if (lookahead == 'c') ADVANCE(1330); - if (lookahead == 'd') ADVANCE(816); - if (lookahead == 'e') ADVANCE(1558); - if (lookahead == 'i') ADVANCE(1076); - if (lookahead == 'o') ADVANCE(1267); - if (lookahead == 'r') ADVANCE(825); - if (lookahead == 'u') ADVANCE(1247); + if (lookahead == 'c') ADVANCE(672); END_STATE(); case 662: - if (lookahead == 'c') ADVANCE(1518); + if (lookahead == 'c') ADVANCE(1331); + if (lookahead == 'd') ADVANCE(817); + if (lookahead == 'e') ADVANCE(1559); + if (lookahead == 'i') ADVANCE(1077); + if (lookahead == 'o') ADVANCE(1268); + if (lookahead == 'r') ADVANCE(826); + if (lookahead == 'u') ADVANCE(1248); END_STATE(); case 663: - if (lookahead == 'c') ADVANCE(573); + if (lookahead == 'c') ADVANCE(1519); END_STATE(); case 664: - if (lookahead == 'c') ADVANCE(1332); - if (lookahead == 'i') ADVANCE(1093); - if (lookahead == 'n') ADVANCE(560); - if (lookahead == 't') ADVANCE(499); - if (lookahead == 'u') ADVANCE(620); + if (lookahead == 'c') ADVANCE(574); END_STATE(); case 665: - if (lookahead == 'c') ADVANCE(821); + if (lookahead == 'c') ADVANCE(1333); + if (lookahead == 'i') ADVANCE(1094); + if (lookahead == 'n') ADVANCE(561); + if (lookahead == 't') ADVANCE(500); + if (lookahead == 'u') ADVANCE(621); END_STATE(); case 666: - if (lookahead == 'c') ADVANCE(1212); + if (lookahead == 'c') ADVANCE(822); END_STATE(); case 667: - if (lookahead == 'c') ADVANCE(568); - if (lookahead == 'r') ADVANCE(1533); + if (lookahead == 'c') ADVANCE(1213); END_STATE(); case 668: - if (lookahead == 'c') ADVANCE(556); - if (lookahead == 't') ADVANCE(586); + if (lookahead == 'c') ADVANCE(569); + if (lookahead == 'r') ADVANCE(1534); END_STATE(); case 669: - if (lookahead == 'c') ADVANCE(1237); + if (lookahead == 'c') ADVANCE(557); + if (lookahead == 't') ADVANCE(587); END_STATE(); case 670: - ADVANCE_MAP( - 'c', 1234, - 'd', 754, - 'h', 732, - 'o', 1539, - 'r', 1504, - 's', 734, - 't', 559, - 'u', 1247, - ); + if (lookahead == 'c') ADVANCE(1238); END_STATE(); case 671: - if (lookahead == 'c') ADVANCE(818); + ADVANCE_MAP( + 'c', 1235, + 'd', 755, + 'h', 733, + 'o', 1540, + 'r', 1505, + 's', 735, + 't', 560, + 'u', 1248, + ); END_STATE(); case 672: - if (lookahead == 'c') ADVANCE(588); + if (lookahead == 'c') ADVANCE(819); END_STATE(); case 673: - if (lookahead == 'c') ADVANCE(832); + if (lookahead == 'c') ADVANCE(589); END_STATE(); case 674: - if (lookahead == 'd') ADVANCE(4235); + if (lookahead == 'c') ADVANCE(833); END_STATE(); case 675: - if (lookahead == 'd') ADVANCE(4235); - if (lookahead == 'o') ADVANCE(1339); - if (lookahead == 'r') ADVANCE(394); + if (lookahead == 'd') ADVANCE(4236); END_STATE(); case 676: - if (lookahead == 'd') ADVANCE(4235); - if (lookahead == 's') ADVANCE(865); + if (lookahead == 'd') ADVANCE(4236); + if (lookahead == 'o') ADVANCE(1340); + if (lookahead == 'r') ADVANCE(395); END_STATE(); case 677: - if (lookahead == 'd') ADVANCE(444); + if (lookahead == 'd') ADVANCE(4236); + if (lookahead == 's') ADVANCE(866); END_STATE(); case 678: - if (lookahead == 'd') ADVANCE(3765); + if (lookahead == 'd') ADVANCE(445); END_STATE(); case 679: - if (lookahead == 'd') ADVANCE(3823); + if (lookahead == 'd') ADVANCE(3766); END_STATE(); case 680: - if (lookahead == 'd') ADVANCE(3803); + if (lookahead == 'd') ADVANCE(3824); END_STATE(); case 681: - if (lookahead == 'd') ADVANCE(674); + if (lookahead == 'd') ADVANCE(3804); END_STATE(); case 682: - if (lookahead == 'd') ADVANCE(674); - if (lookahead == 't') ADVANCE(4235); + if (lookahead == 'd') ADVANCE(675); END_STATE(); case 683: - if (lookahead == 'd') ADVANCE(835); - if (lookahead == 'l') ADVANCE(521); - if (lookahead == 'n') ADVANCE(1493); + if (lookahead == 'd') ADVANCE(675); + if (lookahead == 't') ADVANCE(4236); END_STATE(); case 684: - if (lookahead == 'd') ADVANCE(605); - if (lookahead == 'g') ADVANCE(909); - if (lookahead == 'j') ADVANCE(1370); - if (lookahead == 'w') ADVANCE(755); - if (lookahead == 'x') ADVANCE(1067); + if (lookahead == 'd') ADVANCE(836); + if (lookahead == 'l') ADVANCE(522); + if (lookahead == 'n') ADVANCE(1494); END_STATE(); case 685: - if (lookahead == 'd') ADVANCE(909); + if (lookahead == 'd') ADVANCE(606); + if (lookahead == 'g') ADVANCE(910); + if (lookahead == 'j') ADVANCE(1371); + if (lookahead == 'w') ADVANCE(756); + if (lookahead == 'x') ADVANCE(1068); END_STATE(); case 686: - if (lookahead == 'd') ADVANCE(427); + if (lookahead == 'd') ADVANCE(910); END_STATE(); case 687: - if (lookahead == 'd') ADVANCE(1355); + if (lookahead == 'd') ADVANCE(428); END_STATE(); case 688: - if (lookahead == 'd') ADVANCE(770); - if (lookahead == 'm') ADVANCE(1248); - if (lookahead == 'n') ADVANCE(845); + if (lookahead == 'd') ADVANCE(1356); END_STATE(); case 689: - if (lookahead == 'd') ADVANCE(1531); + if (lookahead == 'd') ADVANCE(771); + if (lookahead == 'm') ADVANCE(1249); + if (lookahead == 'n') ADVANCE(846); END_STATE(); case 690: - if (lookahead == 'd') ADVANCE(1510); + if (lookahead == 'd') ADVANCE(1532); END_STATE(); case 691: - if (lookahead == 'd') ADVANCE(1362); + if (lookahead == 'd') ADVANCE(1511); END_STATE(); case 692: - if (lookahead == 'd') ADVANCE(1183); - if (lookahead == 'l') ADVANCE(746); - if (lookahead == 'r') ADVANCE(908); - if (lookahead == 'u') ADVANCE(1239); + if (lookahead == 'd') ADVANCE(1363); END_STATE(); case 693: - if (lookahead == 'd') ADVANCE(1534); - if (lookahead == 'i') ADVANCE(1101); - if (lookahead == 'n') ADVANCE(1213); - if (lookahead == 'u') ADVANCE(1146); + if (lookahead == 'd') ADVANCE(1184); + if (lookahead == 'l') ADVANCE(747); + if (lookahead == 'r') ADVANCE(909); + if (lookahead == 'u') ADVANCE(1240); END_STATE(); case 694: - if (lookahead == 'd') ADVANCE(967); + if (lookahead == 'd') ADVANCE(1535); + if (lookahead == 'i') ADVANCE(1102); + if (lookahead == 'n') ADVANCE(1214); + if (lookahead == 'u') ADVANCE(1147); END_STATE(); case 695: - if (lookahead == 'd') ADVANCE(711); + if (lookahead == 'd') ADVANCE(968); END_STATE(); case 696: - if (lookahead == 'd') ADVANCE(735); + if (lookahead == 'd') ADVANCE(712); END_STATE(); case 697: - if (lookahead == 'd') ADVANCE(754); - if (lookahead == 'l') ADVANCE(971); + if (lookahead == 'd') ADVANCE(736); END_STATE(); case 698: - if (lookahead == 'd') ADVANCE(714); + if (lookahead == 'd') ADVANCE(755); + if (lookahead == 'l') ADVANCE(972); END_STATE(); case 699: - if (lookahead == 'd') ADVANCE(758); + if (lookahead == 'd') ADVANCE(715); END_STATE(); case 700: - if (lookahead == 'd') ADVANCE(816); - if (lookahead == 'g') ADVANCE(743); - if (lookahead == 'h') ADVANCE(780); - if (lookahead == 'o') ADVANCE(1250); - if (lookahead == 'p') ADVANCE(558); + if (lookahead == 'd') ADVANCE(759); END_STATE(); case 701: - if (lookahead == 'd') ADVANCE(561); + if (lookahead == 'd') ADVANCE(817); + if (lookahead == 'g') ADVANCE(744); + if (lookahead == 'h') ADVANCE(781); + if (lookahead == 'o') ADVANCE(1251); + if (lookahead == 'p') ADVANCE(559); END_STATE(); case 702: - if (lookahead == 'd') ADVANCE(959); + if (lookahead == 'd') ADVANCE(562); END_STATE(); case 703: - if (lookahead == 'd') ADVANCE(750); + if (lookahead == 'd') ADVANCE(960); END_STATE(); case 704: - if (lookahead == 'd') ADVANCE(698); + if (lookahead == 'd') ADVANCE(751); END_STATE(); case 705: - if (lookahead == 'd') ADVANCE(1331); - if (lookahead == 'l') ADVANCE(906); - if (lookahead == 'p') ADVANCE(1188); - if (lookahead == 's') ADVANCE(877); + if (lookahead == 'd') ADVANCE(699); END_STATE(); case 706: - if (lookahead == 'd') ADVANCE(581); + if (lookahead == 'd') ADVANCE(1332); + if (lookahead == 'l') ADVANCE(907); + if (lookahead == 'p') ADVANCE(1189); + if (lookahead == 's') ADVANCE(878); END_STATE(); case 707: - if (lookahead == 'd') ADVANCE(562); - if (lookahead == 'f') ADVANCE(961); - if (lookahead == 'p') ADVANCE(546); + if (lookahead == 'd') ADVANCE(582); END_STATE(); case 708: - if (lookahead == 'd') ADVANCE(1532); + if (lookahead == 'd') ADVANCE(563); + if (lookahead == 'f') ADVANCE(962); + if (lookahead == 'p') ADVANCE(547); END_STATE(); case 709: - if (lookahead == 'd') ADVANCE(1404); + if (lookahead == 'd') ADVANCE(1533); END_STATE(); case 710: - if (lookahead == 'e') ADVANCE(1541); + if (lookahead == 'd') ADVANCE(1405); END_STATE(); case 711: - if (lookahead == 'e') ADVANCE(4235); + if (lookahead == 'e') ADVANCE(1542); END_STATE(); case 712: - if (lookahead == 'e') ADVANCE(1019); - if (lookahead == 'u') ADVANCE(1020); + if (lookahead == 'e') ADVANCE(4236); END_STATE(); case 713: - if (lookahead == 'e') ADVANCE(539); - if (lookahead == 's') ADVANCE(868); - if (lookahead == 't') ADVANCE(526); + if (lookahead == 'e') ADVANCE(1020); + if (lookahead == 'u') ADVANCE(1021); END_STATE(); case 714: - if (lookahead == 'e') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(540); + if (lookahead == 's') ADVANCE(869); + if (lookahead == 't') ADVANCE(527); END_STATE(); case 715: - if (lookahead == 'e') ADVANCE(993); + if (lookahead == 'e') ADVANCE(1537); END_STATE(); case 716: - if (lookahead == 'e') ADVANCE(619); - if (lookahead == 'm') ADVANCE(4235); + if (lookahead == 'e') ADVANCE(994); END_STATE(); case 717: - if (lookahead == 'e') ADVANCE(650); - if (lookahead == 'i') ADVANCE(1395); - if (lookahead == 'o') ADVANCE(1546); + if (lookahead == 'e') ADVANCE(620); + if (lookahead == 'm') ADVANCE(4236); END_STATE(); case 718: - if (lookahead == 'e') ADVANCE(1253); + if (lookahead == 'e') ADVANCE(651); + if (lookahead == 'i') ADVANCE(1396); + if (lookahead == 'o') ADVANCE(1547); END_STATE(); case 719: - if (lookahead == 'e') ADVANCE(641); + if (lookahead == 'e') ADVANCE(1254); END_STATE(); case 720: - if (lookahead == 'e') ADVANCE(1086); + if (lookahead == 'e') ADVANCE(642); END_STATE(); case 721: - if (lookahead == 'e') ADVANCE(1144); - if (lookahead == 'o') ADVANCE(1027); + if (lookahead == 'e') ADVANCE(1087); END_STATE(); case 722: - if (lookahead == 'e') ADVANCE(442); + if (lookahead == 'e') ADVANCE(1145); + if (lookahead == 'o') ADVANCE(1028); END_STATE(); case 723: - if (lookahead == 'e') ADVANCE(3917); + if (lookahead == 'e') ADVANCE(443); END_STATE(); case 724: - if (lookahead == 'e') ADVANCE(3925); + if (lookahead == 'e') ADVANCE(3918); END_STATE(); case 725: - if (lookahead == 'e') ADVANCE(3583); + if (lookahead == 'e') ADVANCE(3926); END_STATE(); case 726: - if (lookahead == 'e') ADVANCE(3691); + if (lookahead == 'e') ADVANCE(3584); END_STATE(); case 727: - if (lookahead == 'e') ADVANCE(3671); + if (lookahead == 'e') ADVANCE(3692); END_STATE(); case 728: - if (lookahead == 'e') ADVANCE(3578); + if (lookahead == 'e') ADVANCE(3672); END_STATE(); case 729: - if (lookahead == 'e') ADVANCE(3611); + if (lookahead == 'e') ADVANCE(3579); END_STATE(); case 730: - if (lookahead == 'e') ADVANCE(674); + if (lookahead == 'e') ADVANCE(3612); END_STATE(); case 731: - if (lookahead == 'e') ADVANCE(617); + if (lookahead == 'e') ADVANCE(675); END_STATE(); case 732: - if (lookahead == 'e') ADVANCE(1009); + if (lookahead == 'e') ADVANCE(618); END_STATE(); case 733: - if (lookahead == 'e') ADVANCE(1561); + if (lookahead == 'e') ADVANCE(1010); END_STATE(); case 734: - if (lookahead == 'e') ADVANCE(1002); + if (lookahead == 'e') ADVANCE(1562); END_STATE(); case 735: - if (lookahead == 'e') ADVANCE(1120); + if (lookahead == 'e') ADVANCE(1003); END_STATE(); case 736: - if (lookahead == 'e') ADVANCE(1085); + if (lookahead == 'e') ADVANCE(1121); END_STATE(); case 737: - if (lookahead == 'e') ADVANCE(4113); + if (lookahead == 'e') ADVANCE(1086); END_STATE(); case 738: - if (lookahead == 'e') ADVANCE(456); + if (lookahead == 'e') ADVANCE(4114); END_STATE(); case 739: - if (lookahead == 'e') ADVANCE(1560); + if (lookahead == 'e') ADVANCE(457); END_STATE(); case 740: - if (lookahead == 'e') ADVANCE(1365); + if (lookahead == 'e') ADVANCE(1561); END_STATE(); case 741: - if (lookahead == 'e') ADVANCE(1570); + if (lookahead == 'e') ADVANCE(1366); END_STATE(); case 742: - if (lookahead == 'e') ADVANCE(1112); + if (lookahead == 'e') ADVANCE(1571); END_STATE(); case 743: - if (lookahead == 'e') ADVANCE(1406); + if (lookahead == 'e') ADVANCE(1113); END_STATE(); case 744: - if (lookahead == 'e') ADVANCE(1304); + if (lookahead == 'e') ADVANCE(1407); END_STATE(); case 745: - if (lookahead == 'e') ADVANCE(1552); + if (lookahead == 'e') ADVANCE(1305); END_STATE(); case 746: - if (lookahead == 'e') ADVANCE(843); + if (lookahead == 'e') ADVANCE(1553); END_STATE(); case 747: - if (lookahead == 'e') ADVANCE(651); + if (lookahead == 'e') ADVANCE(844); END_STATE(); case 748: - if (lookahead == 'e') ADVANCE(1066); + if (lookahead == 'e') ADVANCE(652); END_STATE(); case 749: - if (lookahead == 'e') ADVANCE(4115); + if (lookahead == 'e') ADVANCE(1067); END_STATE(); case 750: - if (lookahead == 'e') ADVANCE(1557); + if (lookahead == 'e') ADVANCE(4116); END_STATE(); case 751: - if (lookahead == 'e') ADVANCE(666); + if (lookahead == 'e') ADVANCE(1558); END_STATE(); case 752: - if (lookahead == 'e') ADVANCE(1119); + if (lookahead == 'e') ADVANCE(667); END_STATE(); case 753: - if (lookahead == 'e') ADVANCE(1073); + if (lookahead == 'e') ADVANCE(1120); END_STATE(); case 754: - if (lookahead == 'e') ADVANCE(848); + if (lookahead == 'e') ADVANCE(1074); END_STATE(); case 755: - if (lookahead == 'e') ADVANCE(607); + if (lookahead == 'e') ADVANCE(849); END_STATE(); case 756: - if (lookahead == 'e') ADVANCE(1239); + if (lookahead == 'e') ADVANCE(608); END_STATE(); case 757: - if (lookahead == 'e') ADVANCE(401); + if (lookahead == 'e') ADVANCE(1240); END_STATE(); case 758: - if (lookahead == 'e') ADVANCE(4117); + if (lookahead == 'e') ADVANCE(402); END_STATE(); case 759: - if (lookahead == 'e') ADVANCE(461); + if (lookahead == 'e') ADVANCE(4118); END_STATE(); case 760: - if (lookahead == 'e') ADVANCE(1122); + if (lookahead == 'e') ADVANCE(462); END_STATE(); case 761: - if (lookahead == 'e') ADVANCE(839); - if (lookahead == 'o') ADVANCE(3680); + if (lookahead == 'e') ADVANCE(1123); END_STATE(); case 762: - if (lookahead == 'e') ADVANCE(1101); + if (lookahead == 'e') ADVANCE(840); + if (lookahead == 'o') ADVANCE(3681); END_STATE(); case 763: - if (lookahead == 'e') ADVANCE(1355); + if (lookahead == 'e') ADVANCE(1102); END_STATE(); case 764: - if (lookahead == 'e') ADVANCE(648); + if (lookahead == 'e') ADVANCE(1356); END_STATE(); case 765: - if (lookahead == 'e') ADVANCE(1022); + if (lookahead == 'e') ADVANCE(649); END_STATE(); case 766: - if (lookahead == 'e') ADVANCE(1022); - if (lookahead == 'h') ADVANCE(548); - if (lookahead == 'o') ADVANCE(1017); + if (lookahead == 'e') ADVANCE(1023); END_STATE(); case 767: - if (lookahead == 'e') ADVANCE(4129); + if (lookahead == 'e') ADVANCE(1023); + if (lookahead == 'h') ADVANCE(549); + if (lookahead == 'o') ADVANCE(1018); END_STATE(); case 768: - if (lookahead == 'e') ADVANCE(1281); + if (lookahead == 'e') ADVANCE(4130); END_STATE(); case 769: - if (lookahead == 'e') ADVANCE(685); - if (lookahead == 'g') ADVANCE(800); - if (lookahead == 's') ADVANCE(800); + if (lookahead == 'e') ADVANCE(1282); END_STATE(); case 770: - if (lookahead == 'e') ADVANCE(1400); + if (lookahead == 'e') ADVANCE(686); + if (lookahead == 'g') ADVANCE(801); + if (lookahead == 's') ADVANCE(801); END_STATE(); case 771: - if (lookahead == 'e') ADVANCE(637); + if (lookahead == 'e') ADVANCE(1401); END_STATE(); case 772: - if (lookahead == 'e') ADVANCE(1084); + if (lookahead == 'e') ADVANCE(638); END_STATE(); case 773: - if (lookahead == 'e') ADVANCE(1055); + if (lookahead == 'e') ADVANCE(1085); END_STATE(); case 774: - if (lookahead == 'e') ADVANCE(640); + if (lookahead == 'e') ADVANCE(1056); END_STATE(); case 775: - if (lookahead == 'e') ADVANCE(1137); + if (lookahead == 'e') ADVANCE(641); END_STATE(); case 776: - if (lookahead == 'e') ADVANCE(1148); - if (lookahead == 'u') ADVANCE(937); + if (lookahead == 'e') ADVANCE(1138); END_STATE(); case 777: - if (lookahead == 'e') ADVANCE(898); - if (lookahead == 'o') ADVANCE(1357); + if (lookahead == 'e') ADVANCE(1149); + if (lookahead == 'u') ADVANCE(938); END_STATE(); case 778: - if (lookahead == 'e') ADVANCE(1344); + if (lookahead == 'e') ADVANCE(899); + if (lookahead == 'o') ADVANCE(1358); END_STATE(); case 779: - if (lookahead == 'e') ADVANCE(634); + if (lookahead == 'e') ADVANCE(1345); END_STATE(); case 780: - if (lookahead == 'e') ADVANCE(503); + if (lookahead == 'e') ADVANCE(635); END_STATE(); case 781: - if (lookahead == 'e') ADVANCE(1376); + if (lookahead == 'e') ADVANCE(504); END_STATE(); case 782: - if (lookahead == 'e') ADVANCE(1103); - if (lookahead == 'n') ADVANCE(1493); - if (lookahead == 'r') ADVANCE(825); + if (lookahead == 'e') ADVANCE(1377); END_STATE(); case 783: - if (lookahead == 'e') ADVANCE(396); + if (lookahead == 'e') ADVANCE(1104); + if (lookahead == 'n') ADVANCE(1494); + if (lookahead == 'r') ADVANCE(826); END_STATE(); case 784: - if (lookahead == 'e') ADVANCE(1143); + if (lookahead == 'e') ADVANCE(397); END_STATE(); case 785: - if (lookahead == 'e') ADVANCE(1238); + if (lookahead == 'e') ADVANCE(1144); END_STATE(); case 786: - if (lookahead == 'e') ADVANCE(421); + if (lookahead == 'e') ADVANCE(1239); END_STATE(); case 787: - if (lookahead == 'e') ADVANCE(1010); + if (lookahead == 'e') ADVANCE(422); END_STATE(); case 788: - if (lookahead == 'e') ADVANCE(1315); + if (lookahead == 'e') ADVANCE(1011); END_STATE(); case 789: - if (lookahead == 'e') ADVANCE(630); - if (lookahead == 't') ADVANCE(602); + if (lookahead == 'e') ADVANCE(1316); END_STATE(); case 790: - if (lookahead == 'e') ADVANCE(1419); - if (lookahead == 'r') ADVANCE(1205); + if (lookahead == 'e') ADVANCE(631); + if (lookahead == 't') ADVANCE(603); END_STATE(); case 791: - if (lookahead == 'e') ADVANCE(1296); + if (lookahead == 'e') ADVANCE(1420); + if (lookahead == 'r') ADVANCE(1206); END_STATE(); case 792: - if (lookahead == 'e') ADVANCE(1326); + if (lookahead == 'e') ADVANCE(1297); END_STATE(); case 793: - if (lookahead == 'e') ADVANCE(571); + if (lookahead == 'e') ADVANCE(1327); END_STATE(); case 794: - if (lookahead == 'e') ADVANCE(1424); + if (lookahead == 'e') ADVANCE(572); END_STATE(); case 795: - if (lookahead == 'e') ADVANCE(1345); + if (lookahead == 'e') ADVANCE(1425); END_STATE(); case 796: - if (lookahead == 'e') ADVANCE(1012); + if (lookahead == 'e') ADVANCE(1346); END_STATE(); case 797: - if (lookahead == 'e') ADVANCE(1303); + if (lookahead == 'e') ADVANCE(1013); END_STATE(); case 798: - if (lookahead == 'e') ADVANCE(1443); + if (lookahead == 'e') ADVANCE(1304); END_STATE(); case 799: - if (lookahead == 'e') ADVANCE(1309); + if (lookahead == 'e') ADVANCE(1444); END_STATE(); case 800: - if (lookahead == 'e') ADVANCE(1444); + if (lookahead == 'e') ADVANCE(1310); END_STATE(); case 801: - if (lookahead == 'e') ADVANCE(1313); + if (lookahead == 'e') ADVANCE(1445); END_STATE(); case 802: - if (lookahead == 'e') ADVANCE(1351); + if (lookahead == 'e') ADVANCE(1314); END_STATE(); case 803: - if (lookahead == 'e') ADVANCE(1336); + if (lookahead == 'e') ADVANCE(1352); END_STATE(); case 804: - if (lookahead == 'e') ADVANCE(1334); + if (lookahead == 'e') ADVANCE(1337); END_STATE(); case 805: if (lookahead == 'e') ADVANCE(1335); END_STATE(); case 806: - if (lookahead == 'e') ADVANCE(749); + if (lookahead == 'e') ADVANCE(1336); END_STATE(); case 807: - if (lookahead == 'e') ADVANCE(1466); + if (lookahead == 'e') ADVANCE(750); END_STATE(); case 808: - if (lookahead == 'e') ADVANCE(1466); - if (lookahead == 'i') ADVANCE(1003); - if (lookahead == 'l') ADVANCE(566); + if (lookahead == 'e') ADVANCE(1467); END_STATE(); case 809: - if (lookahead == 'e') ADVANCE(1555); - if (lookahead == 'o') ADVANCE(1067); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'e') ADVANCE(1467); + if (lookahead == 'i') ADVANCE(1004); + if (lookahead == 'l') ADVANCE(567); END_STATE(); case 810: - if (lookahead == 'e') ADVANCE(1378); + if (lookahead == 'e') ADVANCE(1556); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 's') ADVANCE(1537); END_STATE(); case 811: - if (lookahead == 'e') ADVANCE(561); + if (lookahead == 'e') ADVANCE(1379); END_STATE(); case 812: - if (lookahead == 'e') ADVANCE(1451); + if (lookahead == 'e') ADVANCE(562); END_STATE(); case 813: - if (lookahead == 'e') ADVANCE(413); + if (lookahead == 'e') ADVANCE(1452); END_STATE(); case 814: - if (lookahead == 'e') ADVANCE(862); - if (lookahead == 'o') ADVANCE(395); + if (lookahead == 'e') ADVANCE(414); END_STATE(); case 815: - if (lookahead == 'e') ADVANCE(1151); + if (lookahead == 'e') ADVANCE(863); + if (lookahead == 'o') ADVANCE(396); END_STATE(); case 816: - if (lookahead == 'e') ADVANCE(1039); + if (lookahead == 'e') ADVANCE(1152); END_STATE(); case 817: - if (lookahead == 'e') ADVANCE(1337); + if (lookahead == 'e') ADVANCE(1040); END_STATE(); case 818: - if (lookahead == 'e') ADVANCE(1375); + if (lookahead == 'e') ADVANCE(1338); END_STATE(); case 819: - if (lookahead == 'e') ADVANCE(530); - if (lookahead == 'i') ADVANCE(1252); + if (lookahead == 'e') ADVANCE(1376); END_STATE(); case 820: - if (lookahead == 'e') ADVANCE(1145); + if (lookahead == 'e') ADVANCE(531); + if (lookahead == 'i') ADVANCE(1253); END_STATE(); case 821: - if (lookahead == 'e') ADVANCE(1029); + if (lookahead == 'e') ADVANCE(1146); END_STATE(); case 822: - if (lookahead == 'e') ADVANCE(1450); + if (lookahead == 'e') ADVANCE(1030); END_STATE(); case 823: - if (lookahead == 'e') ADVANCE(1453); + if (lookahead == 'e') ADVANCE(1451); END_STATE(); case 824: - if (lookahead == 'e') ADVANCE(573); + if (lookahead == 'e') ADVANCE(1454); END_STATE(); case 825: - if (lookahead == 'e') ADVANCE(1372); + if (lookahead == 'e') ADVANCE(574); END_STATE(); case 826: - if (lookahead == 'e') ADVANCE(1090); + if (lookahead == 'e') ADVANCE(1373); END_STATE(); case 827: - if (lookahead == 'e') ADVANCE(538); + if (lookahead == 'e') ADVANCE(1091); END_STATE(); case 828: - if (lookahead == 'e') ADVANCE(1328); + if (lookahead == 'e') ADVANCE(539); END_STATE(); case 829: - if (lookahead == 'e') ADVANCE(1468); + if (lookahead == 'e') ADVANCE(1329); END_STATE(); case 830: - if (lookahead == 'e') ADVANCE(418); + if (lookahead == 'e') ADVANCE(1469); END_STATE(); case 831: - if (lookahead == 'e') ADVANCE(1350); + if (lookahead == 'e') ADVANCE(419); END_STATE(); case 832: - if (lookahead == 'e') ADVANCE(1061); + if (lookahead == 'e') ADVANCE(1351); END_STATE(); case 833: - if (lookahead == 'e') ADVANCE(1489); + if (lookahead == 'e') ADVANCE(1062); END_STATE(); case 834: - if (lookahead == 'f') ADVANCE(1178); - if (lookahead == 'h') ADVANCE(1525); - if (lookahead == 'l') ADVANCE(965); - if (lookahead == 'n') ADVANCE(1166); - if (lookahead == 't') ADVANCE(1174); + if (lookahead == 'e') ADVANCE(1490); END_STATE(); case 835: - if (lookahead == 'f') ADVANCE(4235); + if (lookahead == 'f') ADVANCE(1179); + if (lookahead == 'h') ADVANCE(1526); + if (lookahead == 'l') ADVANCE(966); + if (lookahead == 'n') ADVANCE(1167); + if (lookahead == 't') ADVANCE(1175); END_STATE(); case 836: - if (lookahead == 'f') ADVANCE(3685); + if (lookahead == 'f') ADVANCE(4236); END_STATE(); case 837: - if (lookahead == 'f') ADVANCE(3685); - if (lookahead == 'n') ADVANCE(3660); + if (lookahead == 'f') ADVANCE(3686); END_STATE(); case 838: - if (lookahead == 'f') ADVANCE(3685); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1588); + if (lookahead == 'f') ADVANCE(3686); + if (lookahead == 'n') ADVANCE(3661); END_STATE(); case 839: - if (lookahead == 'f') ADVANCE(3565); + if (lookahead == 'f') ADVANCE(3686); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1589); END_STATE(); case 840: - if (lookahead == 'f') ADVANCE(3610); + if (lookahead == 'f') ADVANCE(3566); END_STATE(); case 841: - if (lookahead == 'f') ADVANCE(835); + if (lookahead == 'f') ADVANCE(3611); END_STATE(); case 842: - if (lookahead == 'f') ADVANCE(1167); + if (lookahead == 'f') ADVANCE(836); END_STATE(); case 843: - if (lookahead == 'f') ADVANCE(1406); + if (lookahead == 'f') ADVANCE(1168); END_STATE(); case 844: - if (lookahead == 'f') ADVANCE(970); - if (lookahead == 'i') ADVANCE(1281); - if (lookahead == 's') ADVANCE(1194); + if (lookahead == 'f') ADVANCE(1407); END_STATE(); case 845: - if (lookahead == 'f') ADVANCE(901); + if (lookahead == 'f') ADVANCE(971); + if (lookahead == 'i') ADVANCE(1282); + if (lookahead == 's') ADVANCE(1195); END_STATE(); case 846: - if (lookahead == 'f') ADVANCE(1001); + if (lookahead == 'f') ADVANCE(902); END_STATE(); case 847: - if (lookahead == 'f') ADVANCE(409); + if (lookahead == 'f') ADVANCE(1002); END_STATE(); case 848: - if (lookahead == 'f') ADVANCE(549); + if (lookahead == 'f') ADVANCE(410); END_STATE(); case 849: - if (lookahead == 'f') ADVANCE(557); - if (lookahead == 't') ADVANCE(1302); + if (lookahead == 'f') ADVANCE(550); END_STATE(); case 850: - if (lookahead == 'f') ADVANCE(973); + if (lookahead == 'f') ADVANCE(558); + if (lookahead == 't') ADVANCE(1303); END_STATE(); case 851: - if (lookahead == 'g') ADVANCE(4235); + if (lookahead == 'f') ADVANCE(974); END_STATE(); case 852: - if (lookahead == 'g') ADVANCE(399); + if (lookahead == 'g') ADVANCE(4236); END_STATE(); case 853: - if (lookahead == 'g') ADVANCE(4122); + if (lookahead == 'g') ADVANCE(400); END_STATE(); case 854: - if (lookahead == 'g') ADVANCE(1167); + if (lookahead == 'g') ADVANCE(4123); END_STATE(); case 855: - if (lookahead == 'g') ADVANCE(1423); + if (lookahead == 'g') ADVANCE(1168); END_STATE(); case 856: - if (lookahead == 'g') ADVANCE(853); - if (lookahead == 'l') ADVANCE(1018); - if (lookahead == 'p') ADVANCE(1262); - if (lookahead == 'r') ADVANCE(859); - if (lookahead == 's') ADVANCE(4121); + if (lookahead == 'g') ADVANCE(1424); END_STATE(); case 857: - if (lookahead == 'g') ADVANCE(743); - if (lookahead == 'l') ADVANCE(1355); - if (lookahead == 'r') ADVANCE(1066); + if (lookahead == 'g') ADVANCE(854); + if (lookahead == 'l') ADVANCE(1019); + if (lookahead == 'p') ADVANCE(1263); + if (lookahead == 'r') ADVANCE(860); + if (lookahead == 's') ADVANCE(4122); END_STATE(); case 858: - if (lookahead == 'g') ADVANCE(878); + if (lookahead == 'g') ADVANCE(744); + if (lookahead == 'l') ADVANCE(1356); + if (lookahead == 'r') ADVANCE(1067); END_STATE(); case 859: - if (lookahead == 'g') ADVANCE(393); + if (lookahead == 'g') ADVANCE(879); END_STATE(); case 860: - if (lookahead == 'g') ADVANCE(406); + if (lookahead == 'g') ADVANCE(394); END_STATE(); case 861: - if (lookahead == 'g') ADVANCE(794); + if (lookahead == 'g') ADVANCE(407); END_STATE(); case 862: - if (lookahead == 'g') ADVANCE(768); + if (lookahead == 'g') ADVANCE(795); END_STATE(); case 863: - if (lookahead == 'g') ADVANCE(1432); + if (lookahead == 'g') ADVANCE(769); END_STATE(); case 864: - if (lookahead == 'g') ADVANCE(1317); - if (lookahead == 'l') ADVANCE(918); - if (lookahead == 's') ADVANCE(1438); + if (lookahead == 'g') ADVANCE(1433); END_STATE(); case 865: - if (lookahead == 'g') ADVANCE(1256); + if (lookahead == 'g') ADVANCE(1318); + if (lookahead == 'l') ADVANCE(919); + if (lookahead == 's') ADVANCE(1439); END_STATE(); case 866: - if (lookahead == 'g') ADVANCE(954); + if (lookahead == 'g') ADVANCE(1257); END_STATE(); case 867: - if (lookahead == 'h') ADVANCE(4235); + if (lookahead == 'g') ADVANCE(955); END_STATE(); case 868: - if (lookahead == 'h') ADVANCE(399); + if (lookahead == 'h') ADVANCE(4236); END_STATE(); case 869: - if (lookahead == 'h') ADVANCE(1603); + if (lookahead == 'h') ADVANCE(400); END_STATE(); case 870: - if (lookahead == 'h') ADVANCE(80); + if (lookahead == 'h') ADVANCE(1604); END_STATE(); case 871: - if (lookahead == 'h') ADVANCE(3775); + if (lookahead == 'h') ADVANCE(79); END_STATE(); case 872: - if (lookahead == 'h') ADVANCE(3773); + if (lookahead == 'h') ADVANCE(3776); END_STATE(); case 873: - if (lookahead == 'h') ADVANCE(3719); + if (lookahead == 'h') ADVANCE(3774); END_STATE(); case 874: - if (lookahead == 'h') ADVANCE(3696); + if (lookahead == 'h') ADVANCE(3720); END_STATE(); case 875: - if (lookahead == 'h') ADVANCE(3602); + if (lookahead == 'h') ADVANCE(3697); END_STATE(); case 876: - if (lookahead == 'h') ADVANCE(3608); + if (lookahead == 'h') ADVANCE(3603); END_STATE(); case 877: - if (lookahead == 'h') ADVANCE(1166); + if (lookahead == 'h') ADVANCE(3609); END_STATE(); case 878: - if (lookahead == 'h') ADVANCE(1406); + if (lookahead == 'h') ADVANCE(1167); END_STATE(); case 879: - if (lookahead == 'h') ADVANCE(997); + if (lookahead == 'h') ADVANCE(1407); END_STATE(); case 880: - if (lookahead == 'h') ADVANCE(1355); + if (lookahead == 'h') ADVANCE(998); END_STATE(); case 881: - if (lookahead == 'h') ADVANCE(719); - if (lookahead == 'l') ADVANCE(1201); - if (lookahead == 'o') ADVANCE(1092); + if (lookahead == 'h') ADVANCE(1356); END_STATE(); case 882: - if (lookahead == 'h') ADVANCE(506); + if (lookahead == 'h') ADVANCE(720); + if (lookahead == 'l') ADVANCE(1202); + if (lookahead == 'o') ADVANCE(1093); END_STATE(); case 883: - if (lookahead == 'h') ADVANCE(425); + if (lookahead == 'h') ADVANCE(507); END_STATE(); case 884: - if (lookahead == 'h') ADVANCE(711); + if (lookahead == 'h') ADVANCE(426); END_STATE(); case 885: - if (lookahead == 'h') ADVANCE(771); - if (lookahead == 'l') ADVANCE(819); + if (lookahead == 'h') ADVANCE(712); END_STATE(); case 886: - if (lookahead == 'h') ADVANCE(774); + if (lookahead == 'h') ADVANCE(772); + if (lookahead == 'l') ADVANCE(820); END_STATE(); case 887: - if (lookahead == 'h') ADVANCE(799); + if (lookahead == 'h') ADVANCE(775); END_STATE(); case 888: - if (lookahead == 'h') ADVANCE(826); + if (lookahead == 'h') ADVANCE(800); END_STATE(); case 889: - if (lookahead == 'h') ADVANCE(828); + if (lookahead == 'h') ADVANCE(827); END_STATE(); case 890: - if (lookahead == 'h') ADVANCE(416); + if (lookahead == 'h') ADVANCE(829); END_STATE(); case 891: - if (lookahead == 'h') ADVANCE(762); - if (lookahead == 'i') ADVANCE(1465); + if (lookahead == 'h') ADVANCE(417); END_STATE(); case 892: - if (lookahead == 'h') ADVANCE(535); + if (lookahead == 'h') ADVANCE(763); + if (lookahead == 'i') ADVANCE(1466); END_STATE(); case 893: - if (lookahead == 'h') ADVANCE(548); + if (lookahead == 'h') ADVANCE(536); END_STATE(); case 894: - if (lookahead == 'h') ADVANCE(973); + if (lookahead == 'h') ADVANCE(549); END_STATE(); case 895: - if (lookahead == 'h') ADVANCE(589); + if (lookahead == 'h') ADVANCE(974); END_STATE(); case 896: - if (lookahead == 'i') ADVANCE(841); + if (lookahead == 'h') ADVANCE(590); END_STATE(); case 897: - if (lookahead == 'i') ADVANCE(4235); + if (lookahead == 'i') ADVANCE(842); END_STATE(); case 898: - if (lookahead == 'i') ADVANCE(993); + if (lookahead == 'i') ADVANCE(4236); END_STATE(); case 899: - if (lookahead == 'i') ADVANCE(1162); - if (lookahead == 'o') ADVANCE(1169); + if (lookahead == 'i') ADVANCE(994); END_STATE(); case 900: - if (lookahead == 'i') ADVANCE(674); + if (lookahead == 'i') ADVANCE(1163); + if (lookahead == 'o') ADVANCE(1170); END_STATE(); case 901: - if (lookahead == 'i') ADVANCE(851); + if (lookahead == 'i') ADVANCE(675); END_STATE(); case 902: - if (lookahead == 'i') ADVANCE(1423); + if (lookahead == 'i') ADVANCE(852); END_STATE(); case 903: - if (lookahead == 'i') ADVANCE(1569); + if (lookahead == 'i') ADVANCE(1424); END_STATE(); case 904: - if (lookahead == 'i') ADVANCE(1537); + if (lookahead == 'i') ADVANCE(1570); END_STATE(); case 905: - if (lookahead == 'i') ADVANCE(1537); - if (lookahead == 'r') ADVANCE(1223); + if (lookahead == 'i') ADVANCE(1538); END_STATE(); case 906: - if (lookahead == 'i') ADVANCE(1365); + if (lookahead == 'i') ADVANCE(1538); + if (lookahead == 'r') ADVANCE(1224); END_STATE(); case 907: - if (lookahead == 'i') ADVANCE(1365); - if (lookahead == 'o') ADVANCE(637); + if (lookahead == 'i') ADVANCE(1366); END_STATE(); case 908: - if (lookahead == 'i') ADVANCE(858); + if (lookahead == 'i') ADVANCE(1366); + if (lookahead == 'o') ADVANCE(638); END_STATE(); case 909: - if (lookahead == 'i') ADVANCE(1406); + if (lookahead == 'i') ADVANCE(859); END_STATE(); case 910: - if (lookahead == 'i') ADVANCE(1406); - if (lookahead == 's') ADVANCE(1474); + if (lookahead == 'i') ADVANCE(1407); END_STATE(); case 911: - if (lookahead == 'i') ADVANCE(651); + if (lookahead == 'i') ADVANCE(1407); + if (lookahead == 's') ADVANCE(1475); END_STATE(); case 912: - if (lookahead == 'i') ADVANCE(1066); + if (lookahead == 'i') ADVANCE(652); END_STATE(); case 913: - if (lookahead == 'i') ADVANCE(1239); + if (lookahead == 'i') ADVANCE(1067); END_STATE(); case 914: - if (lookahead == 'i') ADVANCE(1193); + if (lookahead == 'i') ADVANCE(1240); END_STATE(); case 915: - if (lookahead == 'i') ADVANCE(1477); - if (lookahead == 'r') ADVANCE(912); + if (lookahead == 'i') ADVANCE(1194); END_STATE(); case 916: - if (lookahead == 'i') ADVANCE(1364); + if (lookahead == 'i') ADVANCE(1478); + if (lookahead == 'r') ADVANCE(913); END_STATE(); case 917: - if (lookahead == 'i') ADVANCE(1101); + if (lookahead == 'i') ADVANCE(1365); END_STATE(); case 918: - if (lookahead == 'i') ADVANCE(1123); + if (lookahead == 'i') ADVANCE(1102); END_STATE(); case 919: - if (lookahead == 'i') ADVANCE(1281); + if (lookahead == 'i') ADVANCE(1124); END_STATE(); case 920: - if (lookahead == 'i') ADVANCE(1091); + if (lookahead == 'i') ADVANCE(1282); END_STATE(); case 921: - if (lookahead == 'i') ADVANCE(637); + if (lookahead == 'i') ADVANCE(1092); END_STATE(); case 922: - if (lookahead == 'i') ADVANCE(1125); - if (lookahead == 'p') ADVANCE(1329); + if (lookahead == 'i') ADVANCE(638); END_STATE(); case 923: - if (lookahead == 'i') ADVANCE(523); + if (lookahead == 'i') ADVANCE(1126); + if (lookahead == 'p') ADVANCE(1330); END_STATE(); case 924: - if (lookahead == 'i') ADVANCE(652); + if (lookahead == 'i') ADVANCE(524); END_STATE(); case 925: - if (lookahead == 'i') ADVANCE(1014); + if (lookahead == 'i') ADVANCE(653); END_STATE(); case 926: - if (lookahead == 'i') ADVANCE(1105); + if (lookahead == 'i') ADVANCE(1015); END_STATE(); case 927: - if (lookahead == 'i') ADVANCE(1105); - if (lookahead == 'q') ADVANCE(1304); - if (lookahead == 't') ADVANCE(704); - if (lookahead == 'u') ADVANCE(1066); + if (lookahead == 'i') ADVANCE(1106); END_STATE(); case 928: - if (lookahead == 'i') ADVANCE(1430); + if (lookahead == 'i') ADVANCE(1106); + if (lookahead == 'q') ADVANCE(1305); + if (lookahead == 't') ADVANCE(705); + if (lookahead == 'u') ADVANCE(1067); END_STATE(); case 929: - if (lookahead == 'i') ADVANCE(1368); + if (lookahead == 'i') ADVANCE(1431); END_STATE(); case 930: - if (lookahead == 'i') ADVANCE(672); + if (lookahead == 'i') ADVANCE(1369); END_STATE(); case 931: - if (lookahead == 'i') ADVANCE(1324); + if (lookahead == 'i') ADVANCE(673); END_STATE(); case 932: - if (lookahead == 'i') ADVANCE(1163); + if (lookahead == 'i') ADVANCE(1325); END_STATE(); case 933: - if (lookahead == 'i') ADVANCE(1163); - if (lookahead == 'u') ADVANCE(1155); + if (lookahead == 'i') ADVANCE(1164); END_STATE(); case 934: - if (lookahead == 'i') ADVANCE(1114); + if (lookahead == 'i') ADVANCE(1164); + if (lookahead == 'u') ADVANCE(1156); END_STATE(); case 935: - if (lookahead == 'i') ADVANCE(1057); + if (lookahead == 'i') ADVANCE(1115); END_STATE(); case 936: - if (lookahead == 'i') ADVANCE(1161); - if (lookahead == 'o') ADVANCE(1169); + if (lookahead == 'i') ADVANCE(1058); END_STATE(); case 937: - if (lookahead == 'i') ADVANCE(999); + if (lookahead == 'i') ADVANCE(1162); + if (lookahead == 'o') ADVANCE(1170); END_STATE(); case 938: - if (lookahead == 'i') ADVANCE(1130); + if (lookahead == 'i') ADVANCE(1000); END_STATE(); case 939: - if (lookahead == 'i') ADVANCE(710); + if (lookahead == 'i') ADVANCE(1131); END_STATE(); case 940: - if (lookahead == 'i') ADVANCE(1154); + if (lookahead == 'i') ADVANCE(711); END_STATE(); case 941: - if (lookahead == 'i') ADVANCE(570); + if (lookahead == 'i') ADVANCE(1155); END_STATE(); case 942: - if (lookahead == 'i') ADVANCE(1127); + if (lookahead == 'i') ADVANCE(571); END_STATE(); case 943: - if (lookahead == 'i') ADVANCE(1413); + if (lookahead == 'i') ADVANCE(1128); END_STATE(); case 944: - if (lookahead == 'i') ADVANCE(1107); + if (lookahead == 'i') ADVANCE(1414); END_STATE(); case 945: - if (lookahead == 'i') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(1108); END_STATE(); case 946: - if (lookahead == 'i') ADVANCE(763); + if (lookahead == 'i') ADVANCE(1448); END_STATE(); case 947: - if (lookahead == 'i') ADVANCE(1466); + if (lookahead == 'i') ADVANCE(764); END_STATE(); case 948: - if (lookahead == 'i') ADVANCE(1538); + if (lookahead == 'i') ADVANCE(1467); END_STATE(); case 949: - if (lookahead == 'i') ADVANCE(1451); + if (lookahead == 'i') ADVANCE(1539); END_STATE(); case 950: - if (lookahead == 'i') ADVANCE(1369); - if (lookahead == 'p') ADVANCE(852); + if (lookahead == 'i') ADVANCE(1452); END_STATE(); case 951: - if (lookahead == 'i') ADVANCE(534); + if (lookahead == 'i') ADVANCE(1370); + if (lookahead == 'p') ADVANCE(853); END_STATE(); case 952: - if (lookahead == 'i') ADVANCE(1383); - if (lookahead == 'r') ADVANCE(541); + if (lookahead == 'i') ADVANCE(535); END_STATE(); case 953: - if (lookahead == 'i') ADVANCE(1083); + if (lookahead == 'i') ADVANCE(1384); + if (lookahead == 'r') ADVANCE(542); END_STATE(); case 954: - if (lookahead == 'i') ADVANCE(1147); + if (lookahead == 'i') ADVANCE(1084); END_STATE(); case 955: - if (lookahead == 'i') ADVANCE(1540); + if (lookahead == 'i') ADVANCE(1148); END_STATE(); case 956: - if (lookahead == 'i') ADVANCE(1433); + if (lookahead == 'i') ADVANCE(1541); END_STATE(); case 957: - if (lookahead == 'i') ADVANCE(1382); + if (lookahead == 'i') ADVANCE(1434); END_STATE(); case 958: - if (lookahead == 'i') ADVANCE(1075); - if (lookahead == 's') ADVANCE(810); + if (lookahead == 'i') ADVANCE(1383); END_STATE(); case 959: - if (lookahead == 'i') ADVANCE(530); + if (lookahead == 'i') ADVANCE(1076); + if (lookahead == 's') ADVANCE(811); END_STATE(); case 960: - if (lookahead == 'i') ADVANCE(1208); + if (lookahead == 'i') ADVANCE(531); END_STATE(); case 961: - if (lookahead == 'i') ADVANCE(1047); + if (lookahead == 'i') ADVANCE(1209); END_STATE(); case 962: - if (lookahead == 'i') ADVANCE(1047); - if (lookahead == 'l') ADVANCE(1231); + if (lookahead == 'i') ADVANCE(1048); END_STATE(); case 963: - if (lookahead == 'i') ADVANCE(1089); + if (lookahead == 'i') ADVANCE(1048); + if (lookahead == 'l') ADVANCE(1232); END_STATE(); case 964: - if (lookahead == 'i') ADVANCE(1434); + if (lookahead == 'i') ADVANCE(1090); END_STATE(); case 965: - if (lookahead == 'i') ADVANCE(1377); + if (lookahead == 'i') ADVANCE(1435); END_STATE(); case 966: - if (lookahead == 'i') ADVANCE(699); + if (lookahead == 'i') ADVANCE(1378); END_STATE(); case 967: - if (lookahead == 'i') ADVANCE(752); + if (lookahead == 'i') ADVANCE(700); END_STATE(); case 968: - if (lookahead == 'i') ADVANCE(1229); + if (lookahead == 'i') ADVANCE(753); END_STATE(); case 969: - if (lookahead == 'i') ADVANCE(1455); + if (lookahead == 'i') ADVANCE(1230); END_STATE(); case 970: - if (lookahead == 'i') ADVANCE(1041); + if (lookahead == 'i') ADVANCE(1456); END_STATE(); case 971: - if (lookahead == 'i') ADVANCE(1380); + if (lookahead == 'i') ADVANCE(1042); END_STATE(); case 972: - if (lookahead == 'i') ADVANCE(553); + if (lookahead == 'i') ADVANCE(1381); END_STATE(); case 973: - if (lookahead == 'i') ADVANCE(1033); + if (lookahead == 'i') ADVANCE(554); END_STATE(); case 974: - if (lookahead == 'i') ADVANCE(1381); - if (lookahead == 'p') ADVANCE(513); + if (lookahead == 'i') ADVANCE(1034); END_STATE(); case 975: - if (lookahead == 'i') ADVANCE(1276); + if (lookahead == 'i') ADVANCE(1382); + if (lookahead == 'p') ADVANCE(514); END_STATE(); case 976: - if (lookahead == 'i') ADVANCE(1276); - if (lookahead == 'n') ADVANCE(740); - if (lookahead == 'p') ADVANCE(904); + if (lookahead == 'i') ADVANCE(1277); END_STATE(); case 977: - if (lookahead == 'i') ADVANCE(591); + if (lookahead == 'i') ADVANCE(1277); + if (lookahead == 'n') ADVANCE(741); + if (lookahead == 'p') ADVANCE(905); END_STATE(); case 978: - if (lookahead == 'i') ADVANCE(1471); + if (lookahead == 'i') ADVANCE(592); END_STATE(); case 979: - if (lookahead == 'i') ADVANCE(587); + if (lookahead == 'i') ADVANCE(1472); END_STATE(); case 980: - if (lookahead == 'j') ADVANCE(1225); - if (lookahead == 'l') ADVANCE(815); - if (lookahead == 's') ADVANCE(1024); + if (lookahead == 'i') ADVANCE(588); END_STATE(); case 981: - if (lookahead == 'k') ADVANCE(4235); + if (lookahead == 'j') ADVANCE(1226); + if (lookahead == 'l') ADVANCE(816); + if (lookahead == 's') ADVANCE(1025); END_STATE(); case 982: - if (lookahead == 'k') ADVANCE(4234); + if (lookahead == 'k') ADVANCE(4236); END_STATE(); case 983: - if (lookahead == 'k') ADVANCE(4022); + if (lookahead == 'k') ADVANCE(4235); END_STATE(); case 984: - if (lookahead == 'k') ADVANCE(846); + if (lookahead == 'k') ADVANCE(4023); END_STATE(); case 985: - if (lookahead == 'k') ADVANCE(1355); + if (lookahead == 'k') ADVANCE(847); END_STATE(); case 986: - if (lookahead == 'k') ADVANCE(913); - if (lookahead == 't') ADVANCE(517); + if (lookahead == 'k') ADVANCE(1356); END_STATE(); case 987: - if (lookahead == 'k') ADVANCE(711); + if (lookahead == 'k') ADVANCE(914); + if (lookahead == 't') ADVANCE(518); END_STATE(); case 988: - if (lookahead == 'k') ADVANCE(1203); + if (lookahead == 'k') ADVANCE(712); END_STATE(); case 989: - if (lookahead == 'k') ADVANCE(733); + if (lookahead == 'k') ADVANCE(1204); END_STATE(); case 990: - if (lookahead == 'k') ADVANCE(757); + if (lookahead == 'k') ADVANCE(734); END_STATE(); case 991: - if (lookahead == 'k') ADVANCE(727); - if (lookahead == 't') ADVANCE(647); + if (lookahead == 'k') ADVANCE(758); END_STATE(); case 992: - if (lookahead == 'k') ADVANCE(1482); + if (lookahead == 'k') ADVANCE(728); + if (lookahead == 't') ADVANCE(648); END_STATE(); case 993: - if (lookahead == 'l') ADVANCE(4235); + if (lookahead == 'k') ADVANCE(1483); END_STATE(); case 994: - if (lookahead == 'l') ADVANCE(993); + if (lookahead == 'l') ADVANCE(4236); END_STATE(); case 995: - if (lookahead == 'l') ADVANCE(993); - if (lookahead == 's') ADVANCE(867); + if (lookahead == 'l') ADVANCE(994); END_STATE(); case 996: - if (lookahead == 'l') ADVANCE(4182); - if (lookahead == 'n') ADVANCE(668); - if (lookahead == 'u') ADVANCE(1142); + if (lookahead == 'l') ADVANCE(994); + if (lookahead == 's') ADVANCE(868); END_STATE(); case 997: - if (lookahead == 'l') ADVANCE(3819); - if (lookahead == 'r') ADVANCE(3821); + if (lookahead == 'l') ADVANCE(4183); + if (lookahead == 'n') ADVANCE(669); + if (lookahead == 'u') ADVANCE(1143); END_STATE(); case 998: - if (lookahead == 'l') ADVANCE(3909); + if (lookahead == 'l') ADVANCE(3820); + if (lookahead == 'r') ADVANCE(3822); END_STATE(); case 999: - if (lookahead == 'l') ADVANCE(674); + if (lookahead == 'l') ADVANCE(3910); END_STATE(); case 1000: - if (lookahead == 'l') ADVANCE(951); - if (lookahead == 'p') ADVANCE(897); - if (lookahead == 'u') ADVANCE(1423); + if (lookahead == 'l') ADVANCE(675); END_STATE(); case 1001: - if (lookahead == 'l') ADVANCE(1166); + if (lookahead == 'l') ADVANCE(952); + if (lookahead == 'p') ADVANCE(898); + if (lookahead == 'u') ADVANCE(1424); END_STATE(); case 1002: - if (lookahead == 'l') ADVANCE(835); - if (lookahead == 't') ADVANCE(4114); + if (lookahead == 'l') ADVANCE(1167); END_STATE(); case 1003: - if (lookahead == 'l') ADVANCE(1048); - if (lookahead == 'r') ADVANCE(1365); + if (lookahead == 'l') ADVANCE(836); + if (lookahead == 't') ADVANCE(4115); END_STATE(); case 1004: - if (lookahead == 'l') ADVANCE(1514); + if (lookahead == 'l') ADVANCE(1049); + if (lookahead == 'r') ADVANCE(1366); END_STATE(); case 1005: - if (lookahead == 'l') ADVANCE(1173); + if (lookahead == 'l') ADVANCE(1515); END_STATE(); case 1006: - if (lookahead == 'l') ADVANCE(1406); + if (lookahead == 'l') ADVANCE(1174); END_STATE(); case 1007: - if (lookahead == 'l') ADVANCE(390); + if (lookahead == 'l') ADVANCE(1407); END_STATE(); case 1008: - if (lookahead == 'l') ADVANCE(909); + if (lookahead == 'l') ADVANCE(391); END_STATE(); case 1009: - if (lookahead == 'l') ADVANCE(1239); + if (lookahead == 'l') ADVANCE(910); END_STATE(); case 1010: - if (lookahead == 'l') ADVANCE(401); + if (lookahead == 'l') ADVANCE(1240); END_STATE(); case 1011: - if (lookahead == 'l') ADVANCE(4130); + if (lookahead == 'l') ADVANCE(402); END_STATE(); case 1012: - if (lookahead == 'l') ADVANCE(847); + if (lookahead == 'l') ADVANCE(4131); END_STATE(); case 1013: - if (lookahead == 'l') ADVANCE(1355); + if (lookahead == 'l') ADVANCE(848); END_STATE(); case 1014: - if (lookahead == 'l') ADVANCE(686); + if (lookahead == 'l') ADVANCE(1356); END_STATE(); case 1015: - if (lookahead == 'l') ADVANCE(903); + if (lookahead == 'l') ADVANCE(687); END_STATE(); case 1016: - if (lookahead == 'l') ADVANCE(1366); - if (lookahead == 'm') ADVANCE(993); - if (lookahead == 'z') ADVANCE(4235); + if (lookahead == 'l') ADVANCE(904); END_STATE(); case 1017: - if (lookahead == 'l') ADVANCE(1503); + if (lookahead == 'l') ADVANCE(1367); + if (lookahead == 'm') ADVANCE(994); + if (lookahead == 'z') ADVANCE(4236); END_STATE(); case 1018: - if (lookahead == 'l') ADVANCE(392); + if (lookahead == 'l') ADVANCE(1504); END_STATE(); case 1019: - if (lookahead == 'l') ADVANCE(824); - if (lookahead == 'p') ADVANCE(1175); + if (lookahead == 'l') ADVANCE(393); END_STATE(); case 1020: if (lookahead == 'l') ADVANCE(825); - if (lookahead == 'n') ADVANCE(4235); + if (lookahead == 'p') ADVANCE(1176); END_STATE(); case 1021: - if (lookahead == 'l') ADVANCE(928); + if (lookahead == 'l') ADVANCE(826); + if (lookahead == 'n') ADVANCE(4236); END_STATE(); case 1022: - if (lookahead == 'l') ADVANCE(1007); + if (lookahead == 'l') ADVANCE(929); END_STATE(); case 1023: - if (lookahead == 'l') ADVANCE(949); + if (lookahead == 'l') ADVANCE(1008); END_STATE(); case 1024: - if (lookahead == 'l') ADVANCE(924); + if (lookahead == 'l') ADVANCE(950); END_STATE(); case 1025: - if (lookahead == 'l') ADVANCE(1231); + if (lookahead == 'l') ADVANCE(925); END_STATE(); case 1026: - if (lookahead == 'l') ADVANCE(1180); + if (lookahead == 'l') ADVANCE(1232); END_STATE(); case 1027: - if (lookahead == 'l') ADVANCE(1054); + if (lookahead == 'l') ADVANCE(1181); END_STATE(); case 1028: - if (lookahead == 'l') ADVANCE(1233); + if (lookahead == 'l') ADVANCE(1055); END_STATE(); case 1029: - if (lookahead == 'l') ADVANCE(1013); + if (lookahead == 'l') ADVANCE(1234); END_STATE(); case 1030: - if (lookahead == 'l') ADVANCE(1224); + if (lookahead == 'l') ADVANCE(1014); END_STATE(); case 1031: - if (lookahead == 'l') ADVANCE(1224); - if (lookahead == 'r') ADVANCE(410); + if (lookahead == 'l') ADVANCE(1225); END_STATE(); case 1032: - if (lookahead == 'l') ADVANCE(543); + if (lookahead == 'l') ADVANCE(1225); + if (lookahead == 'r') ADVANCE(411); END_STATE(); case 1033: - if (lookahead == 'l') ADVANCE(711); + if (lookahead == 'l') ADVANCE(544); END_STATE(); case 1034: - if (lookahead == 'l') ADVANCE(1011); + if (lookahead == 'l') ADVANCE(712); END_STATE(); case 1035: - if (lookahead == 'l') ADVANCE(998); + if (lookahead == 'l') ADVANCE(1012); END_STATE(); case 1036: - if (lookahead == 'l') ADVANCE(930); + if (lookahead == 'l') ADVANCE(999); END_STATE(); case 1037: - if (lookahead == 'l') ADVANCE(829); + if (lookahead == 'l') ADVANCE(931); END_STATE(); case 1038: - if (lookahead == 'l') ADVANCE(1197); + if (lookahead == 'l') ADVANCE(830); END_STATE(); case 1039: - if (lookahead == 'l') ADVANCE(812); + if (lookahead == 'l') ADVANCE(1198); END_STATE(); case 1040: - if (lookahead == 'l') ADVANCE(757); + if (lookahead == 'l') ADVANCE(813); END_STATE(); case 1041: - if (lookahead == 'l') ADVANCE(763); + if (lookahead == 'l') ADVANCE(758); END_STATE(); case 1042: - if (lookahead == 'l') ADVANCE(779); + if (lookahead == 'l') ADVANCE(764); END_STATE(); case 1043: - if (lookahead == 'l') ADVANCE(779); - if (lookahead == 't') ADVANCE(4124); + if (lookahead == 'l') ADVANCE(780); END_STATE(); case 1044: - if (lookahead == 'l') ADVANCE(728); + if (lookahead == 'l') ADVANCE(780); + if (lookahead == 't') ADVANCE(4125); END_STATE(); case 1045: - if (lookahead == 'l') ADVANCE(1201); - if (lookahead == 'r') ADVANCE(811); + if (lookahead == 'l') ADVANCE(729); END_STATE(); case 1046: - if (lookahead == 'l') ADVANCE(1526); + if (lookahead == 'l') ADVANCE(1202); + if (lookahead == 'r') ADVANCE(812); END_STATE(); case 1047: - if (lookahead == 'l') ADVANCE(781); + if (lookahead == 'l') ADVANCE(1527); END_STATE(); case 1048: - if (lookahead == 'l') ADVANCE(411); - if (lookahead == 't') ADVANCE(802); + if (lookahead == 'l') ADVANCE(782); END_STATE(); case 1049: - if (lookahead == 'l') ADVANCE(575); + if (lookahead == 'l') ADVANCE(412); + if (lookahead == 't') ADVANCE(803); END_STATE(); case 1050: - if (lookahead == 'l') ADVANCE(658); + if (lookahead == 'l') ADVANCE(576); END_STATE(); case 1051: - if (lookahead == 'l') ADVANCE(1382); + if (lookahead == 'l') ADVANCE(659); END_STATE(); case 1052: - if (lookahead == 'l') ADVANCE(929); + if (lookahead == 'l') ADVANCE(1383); END_STATE(); case 1053: - if (lookahead == 'l') ADVANCE(1521); - if (lookahead == 'r') ADVANCE(4235); + if (lookahead == 'l') ADVANCE(930); END_STATE(); case 1054: - if (lookahead == 'l') ADVANCE(934); + if (lookahead == 'l') ADVANCE(1522); + if (lookahead == 'r') ADVANCE(4236); END_STATE(); case 1055: - if (lookahead == 'l') ADVANCE(579); + if (lookahead == 'l') ADVANCE(935); END_STATE(); case 1056: - if (lookahead == 'l') ADVANCE(1042); + if (lookahead == 'l') ADVANCE(580); END_STATE(); case 1057: - if (lookahead == 'l') ADVANCE(565); + if (lookahead == 'l') ADVANCE(1043); END_STATE(); case 1058: - if (lookahead == 'l') ADVANCE(1392); + if (lookahead == 'l') ADVANCE(566); END_STATE(); case 1059: - if (lookahead == 'l') ADVANCE(979); + if (lookahead == 'l') ADVANCE(1393); END_STATE(); case 1060: - if (lookahead == 'l') ADVANCE(426); + if (lookahead == 'l') ADVANCE(980); END_STATE(); case 1061: - if (lookahead == 'l') ADVANCE(1060); + if (lookahead == 'l') ADVANCE(427); END_STATE(); case 1062: - if (lookahead == 'l') ADVANCE(833); - if (lookahead == 'o') ADVANCE(1159); + if (lookahead == 'l') ADVANCE(1061); END_STATE(); case 1063: - if (lookahead == 'l') ADVANCE(971); + if (lookahead == 'l') ADVANCE(834); + if (lookahead == 'o') ADVANCE(1160); END_STATE(); case 1064: - if (lookahead == 'l') ADVANCE(600); + if (lookahead == 'l') ADVANCE(972); END_STATE(); case 1065: - if (lookahead == 'l') ADVANCE(972); + if (lookahead == 'l') ADVANCE(601); END_STATE(); case 1066: - if (lookahead == 'm') ADVANCE(4235); + if (lookahead == 'l') ADVANCE(973); END_STATE(); case 1067: - if (lookahead == 'm') ADVANCE(993); + if (lookahead == 'm') ADVANCE(4236); END_STATE(); case 1068: - if (lookahead == 'm') ADVANCE(993); - if (lookahead == 'z') ADVANCE(4235); + if (lookahead == 'm') ADVANCE(994); END_STATE(); case 1069: - if (lookahead == 'm') ADVANCE(4188); + if (lookahead == 'm') ADVANCE(994); + if (lookahead == 'z') ADVANCE(4236); END_STATE(); case 1070: - if (lookahead == 'm') ADVANCE(520); - if (lookahead == 's') ADVANCE(1182); - if (lookahead == 't') ADVANCE(1302); - if (lookahead == 'u') ADVANCE(1146); - if (lookahead == 'w') ADVANCE(889); + if (lookahead == 'm') ADVANCE(4189); END_STATE(); case 1071: - if (lookahead == 'm') ADVANCE(677); - if (lookahead == 's') ADVANCE(882); + if (lookahead == 'm') ADVANCE(521); + if (lookahead == 's') ADVANCE(1183); + if (lookahead == 't') ADVANCE(1303); + if (lookahead == 'u') ADVANCE(1147); + if (lookahead == 'w') ADVANCE(890); END_STATE(); case 1072: - if (lookahead == 'm') ADVANCE(909); + if (lookahead == 'm') ADVANCE(678); + if (lookahead == 's') ADVANCE(883); END_STATE(); case 1073: - if (lookahead == 'm') ADVANCE(1239); + if (lookahead == 'm') ADVANCE(910); END_STATE(); case 1074: - if (lookahead == 'm') ADVANCE(1101); + if (lookahead == 'm') ADVANCE(1240); END_STATE(); case 1075: - if (lookahead == 'm') ADVANCE(1273); + if (lookahead == 'm') ADVANCE(1102); END_STATE(); case 1076: - if (lookahead == 'm') ADVANCE(1273); - if (lookahead == 'n') ADVANCE(1387); + if (lookahead == 'm') ADVANCE(1274); END_STATE(); case 1077: - if (lookahead == 'm') ADVANCE(1271); + if (lookahead == 'm') ADVANCE(1274); + if (lookahead == 'n') ADVANCE(1388); END_STATE(); case 1078: - if (lookahead == 'm') ADVANCE(1271); - if (lookahead == 'n') ADVANCE(1445); + if (lookahead == 'm') ADVANCE(1272); END_STATE(); case 1079: - if (lookahead == 'm') ADVANCE(1240); + if (lookahead == 'm') ADVANCE(1272); + if (lookahead == 'n') ADVANCE(1446); END_STATE(); case 1080: - if (lookahead == 'm') ADVANCE(1535); + if (lookahead == 'm') ADVANCE(1241); END_STATE(); case 1081: - if (lookahead == 'm') ADVANCE(567); + if (lookahead == 'm') ADVANCE(1536); END_STATE(); case 1082: - if (lookahead == 'm') ADVANCE(1130); + if (lookahead == 'm') ADVANCE(568); END_STATE(); case 1083: - if (lookahead == 'm') ADVANCE(711); + if (lookahead == 'm') ADVANCE(1131); END_STATE(); case 1084: - if (lookahead == 'm') ADVANCE(1222); + if (lookahead == 'm') ADVANCE(712); END_STATE(); case 1085: - if (lookahead == 'm') ADVANCE(1222); - if (lookahead == 'n') ADVANCE(564); + if (lookahead == 'm') ADVANCE(1223); END_STATE(); case 1086: - if (lookahead == 'm') ADVANCE(1222); - if (lookahead == 'p') ADVANCE(1032); - if (lookahead == 'v') ADVANCE(778); + if (lookahead == 'm') ADVANCE(1223); + if (lookahead == 'n') ADVANCE(565); END_STATE(); case 1087: - if (lookahead == 'm') ADVANCE(576); + if (lookahead == 'm') ADVANCE(1223); + if (lookahead == 'p') ADVANCE(1033); + if (lookahead == 'v') ADVANCE(779); END_STATE(); case 1088: - if (lookahead == 'm') ADVANCE(946); + if (lookahead == 'm') ADVANCE(577); END_STATE(); case 1089: - if (lookahead == 'm') ADVANCE(494); + if (lookahead == 'm') ADVANCE(947); END_STATE(); case 1090: - if (lookahead == 'm') ADVANCE(490); + if (lookahead == 'm') ADVANCE(495); END_STATE(); case 1091: - if (lookahead == 'm') ADVANCE(741); + if (lookahead == 'm') ADVANCE(491); END_STATE(); case 1092: - if (lookahead == 'm') ADVANCE(1072); + if (lookahead == 'm') ADVANCE(742); END_STATE(); case 1093: - if (lookahead == 'm') ADVANCE(935); + if (lookahead == 'm') ADVANCE(1073); END_STATE(); case 1094: - if (lookahead == 'm') ADVANCE(1087); + if (lookahead == 'm') ADVANCE(936); END_STATE(); case 1095: - if (lookahead == 'm') ADVANCE(516); + if (lookahead == 'm') ADVANCE(1088); END_STATE(); case 1096: - if (lookahead == 'm') ADVANCE(1269); - if (lookahead == 'n') ADVANCE(1418); - if (lookahead == 's') ADVANCE(391); + if (lookahead == 'm') ADVANCE(517); END_STATE(); case 1097: - if (lookahead == 'm') ADVANCE(1088); + if (lookahead == 'm') ADVANCE(1270); + if (lookahead == 'n') ADVANCE(1419); + if (lookahead == 's') ADVANCE(392); END_STATE(); case 1098: - if (lookahead == 'm') ADVANCE(787); - if (lookahead == 'p') ADVANCE(969); + if (lookahead == 'm') ADVANCE(1089); END_STATE(); case 1099: - if (lookahead == 'm') ADVANCE(1272); - if (lookahead == 'v') ADVANCE(711); + if (lookahead == 'm') ADVANCE(788); + if (lookahead == 'p') ADVANCE(970); END_STATE(); case 1100: - if (lookahead == 'm') ADVANCE(940); + if (lookahead == 'm') ADVANCE(1273); + if (lookahead == 'v') ADVANCE(712); END_STATE(); case 1101: - if (lookahead == 'n') ADVANCE(4235); + if (lookahead == 'm') ADVANCE(941); END_STATE(); case 1102: - if (lookahead == 'n') ADVANCE(4235); - if (lookahead == 'o') ADVANCE(851); + if (lookahead == 'n') ADVANCE(4236); END_STATE(); case 1103: - if (lookahead == 'n') ADVANCE(1536); + if (lookahead == 'n') ADVANCE(4236); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 1104: - if (lookahead == 'n') ADVANCE(910); + if (lookahead == 'n') ADVANCE(1537); END_STATE(); case 1105: - if (lookahead == 'n') ADVANCE(4168); + if (lookahead == 'n') ADVANCE(911); END_STATE(); case 1106: - if (lookahead == 'n') ADVANCE(976); - if (lookahead == 'p') ADVANCE(1263); + if (lookahead == 'n') ADVANCE(4169); END_STATE(); case 1107: - if (lookahead == 'n') ADVANCE(3771); + if (lookahead == 'n') ADVANCE(977); + if (lookahead == 'p') ADVANCE(1264); END_STATE(); case 1108: - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + if (lookahead == 'n') ADVANCE(3772); END_STATE(); case 1109: - if (lookahead == 'n') ADVANCE(3660); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 1110: - if (lookahead == 'n') ADVANCE(3573); + if (lookahead == 'n') ADVANCE(3661); END_STATE(); case 1111: - if (lookahead == 'n') ADVANCE(3609); + if (lookahead == 'n') ADVANCE(3574); END_STATE(); case 1112: - if (lookahead == 'n') ADVANCE(674); + if (lookahead == 'n') ADVANCE(3610); END_STATE(); case 1113: - if (lookahead == 'n') ADVANCE(1166); + if (lookahead == 'n') ADVANCE(675); END_STATE(); case 1114: - if (lookahead == 'n') ADVANCE(851); + if (lookahead == 'n') ADVANCE(1167); END_STATE(); case 1115: - if (lookahead == 'n') ADVANCE(532); + if (lookahead == 'n') ADVANCE(852); END_STATE(); case 1116: - if (lookahead == 'n') ADVANCE(687); + if (lookahead == 'n') ADVANCE(533); END_STATE(); case 1117: - if (lookahead == 'n') ADVANCE(663); + if (lookahead == 'n') ADVANCE(688); END_STATE(); case 1118: - if (lookahead == 'n') ADVANCE(696); + if (lookahead == 'n') ADVANCE(664); END_STATE(); case 1119: - if (lookahead == 'n') ADVANCE(1406); + if (lookahead == 'n') ADVANCE(697); END_STATE(); case 1120: - if (lookahead == 'n') ADVANCE(1406); - if (lookahead == 'x') ADVANCE(414); + if (lookahead == 'n') ADVANCE(1407); END_STATE(); case 1121: - if (lookahead == 'n') ADVANCE(651); + if (lookahead == 'n') ADVANCE(1407); + if (lookahead == 'x') ADVANCE(415); END_STATE(); case 1122: - if (lookahead == 'n') ADVANCE(855); + if (lookahead == 'n') ADVANCE(652); END_STATE(); case 1123: - if (lookahead == 'n') ADVANCE(981); + if (lookahead == 'n') ADVANCE(856); END_STATE(); case 1124: - if (lookahead == 'n') ADVANCE(909); + if (lookahead == 'n') ADVANCE(982); END_STATE(); case 1125: - if (lookahead == 'n') ADVANCE(842); + if (lookahead == 'n') ADVANCE(910); END_STATE(); case 1126: - if (lookahead == 'n') ADVANCE(866); - if (lookahead == 'x') ADVANCE(1458); + if (lookahead == 'n') ADVANCE(843); END_STATE(); case 1127: - if (lookahead == 'n') ADVANCE(4118); + if (lookahead == 'n') ADVANCE(867); + if (lookahead == 'x') ADVANCE(1459); END_STATE(); case 1128: - if (lookahead == 'n') ADVANCE(1181); + if (lookahead == 'n') ADVANCE(4119); END_STATE(); case 1129: - if (lookahead == 'n') ADVANCE(703); + if (lookahead == 'n') ADVANCE(1182); END_STATE(); case 1130: - if (lookahead == 'n') ADVANCE(1355); + if (lookahead == 'n') ADVANCE(704); END_STATE(); case 1131: - if (lookahead == 'n') ADVANCE(903); + if (lookahead == 'n') ADVANCE(1356); END_STATE(); case 1132: - if (lookahead == 'n') ADVANCE(560); + if (lookahead == 'n') ADVANCE(904); END_STATE(); case 1133: - if (lookahead == 'n') ADVANCE(678); + if (lookahead == 'n') ADVANCE(561); END_STATE(); case 1134: - if (lookahead == 'n') ADVANCE(678); - if (lookahead == 's') ADVANCE(3751); + if (lookahead == 'n') ADVANCE(679); END_STATE(); case 1135: if (lookahead == 'n') ADVANCE(679); + if (lookahead == 's') ADVANCE(3752); END_STATE(); case 1136: - if (lookahead == 'n') ADVANCE(652); + if (lookahead == 'n') ADVANCE(680); END_STATE(); case 1137: - if (lookahead == 'n') ADVANCE(1396); + if (lookahead == 'n') ADVANCE(653); END_STATE(); case 1138: - if (lookahead == 'n') ADVANCE(1374); + if (lookahead == 'n') ADVANCE(1397); END_STATE(); case 1139: - if (lookahead == 'n') ADVANCE(911); + if (lookahead == 'n') ADVANCE(1375); END_STATE(); case 1140: - if (lookahead == 'n') ADVANCE(1431); + if (lookahead == 'n') ADVANCE(912); END_STATE(); case 1141: - if (lookahead == 'n') ADVANCE(711); + if (lookahead == 'n') ADVANCE(1432); END_STATE(); case 1142: - if (lookahead == 'n') ADVANCE(1425); + if (lookahead == 'n') ADVANCE(712); END_STATE(); case 1143: - if (lookahead == 'n') ADVANCE(564); + if (lookahead == 'n') ADVANCE(1426); END_STATE(); case 1144: - if (lookahead == 'n') ADVANCE(564); - if (lookahead == 'p') ADVANCE(1049); - if (lookahead == 'v') ADVANCE(778); + if (lookahead == 'n') ADVANCE(565); END_STATE(); case 1145: - if (lookahead == 'n') ADVANCE(1424); + if (lookahead == 'n') ADVANCE(565); + if (lookahead == 'p') ADVANCE(1050); + if (lookahead == 'v') ADVANCE(779); END_STATE(); case 1146: - if (lookahead == 'n') ADVANCE(975); + if (lookahead == 'n') ADVANCE(1425); END_STATE(); case 1147: - if (lookahead == 'n') ADVANCE(786); + if (lookahead == 'n') ADVANCE(976); END_STATE(); case 1148: - if (lookahead == 'n') ADVANCE(635); + if (lookahead == 'n') ADVANCE(787); END_STATE(); case 1149: - if (lookahead == 'n') ADVANCE(691); + if (lookahead == 'n') ADVANCE(636); END_STATE(); case 1150: - if (lookahead == 'n') ADVANCE(691); - if (lookahead == 'x') ADVANCE(1255); + if (lookahead == 'n') ADVANCE(692); END_STATE(); case 1151: - if (lookahead == 'n') ADVANCE(863); + if (lookahead == 'n') ADVANCE(692); + if (lookahead == 'x') ADVANCE(1256); END_STATE(); case 1152: - if (lookahead == 'n') ADVANCE(1435); + if (lookahead == 'n') ADVANCE(864); END_STATE(); case 1153: - if (lookahead == 'n') ADVANCE(1515); + if (lookahead == 'n') ADVANCE(1436); END_STATE(); case 1154: - if (lookahead == 'n') ADVANCE(860); + if (lookahead == 'n') ADVANCE(1516); END_STATE(); case 1155: - if (lookahead == 'n') ADVANCE(932); + if (lookahead == 'n') ADVANCE(861); END_STATE(); case 1156: - if (lookahead == 'n') ADVANCE(932); - if (lookahead == 'p') ADVANCE(701); + if (lookahead == 'n') ADVANCE(933); END_STATE(); case 1157: - if (lookahead == 'n') ADVANCE(1372); + if (lookahead == 'n') ADVANCE(933); + if (lookahead == 'p') ADVANCE(702); END_STATE(); case 1158: - if (lookahead == 'n') ADVANCE(1038); + if (lookahead == 'n') ADVANCE(1373); END_STATE(); case 1159: - if (lookahead == 'n') ADVANCE(820); + if (lookahead == 'n') ADVANCE(1039); END_STATE(); case 1160: - if (lookahead == 'n') ADVANCE(1488); + if (lookahead == 'n') ADVANCE(821); END_STATE(); case 1161: - if (lookahead == 'n') ADVANCE(552); + if (lookahead == 'n') ADVANCE(1489); END_STATE(); case 1162: - if (lookahead == 'n') ADVANCE(552); - if (lookahead == 't') ADVANCE(1355); + if (lookahead == 'n') ADVANCE(553); END_STATE(); case 1163: - if (lookahead == 'n') ADVANCE(1403); + if (lookahead == 'n') ADVANCE(553); + if (lookahead == 't') ADVANCE(1356); END_STATE(); case 1164: - if (lookahead == 'n') ADVANCE(1386); + if (lookahead == 'n') ADVANCE(1404); END_STATE(); case 1165: - if (lookahead == 'n') ADVANCE(709); + if (lookahead == 'n') ADVANCE(1387); END_STATE(); case 1166: - if (lookahead == 'o') ADVANCE(1541); + if (lookahead == 'n') ADVANCE(710); END_STATE(); case 1167: - if (lookahead == 'o') ADVANCE(4235); + if (lookahead == 'o') ADVANCE(1542); END_STATE(); case 1168: - if (lookahead == 'o') ADVANCE(1067); - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 'o') ADVANCE(4236); END_STATE(); case 1169: - if (lookahead == 'o') ADVANCE(993); + if (lookahead == 'o') ADVANCE(1068); + if (lookahead == 's') ADVANCE(1537); END_STATE(); case 1170: - if (lookahead == 'o') ADVANCE(1603); + if (lookahead == 'o') ADVANCE(994); END_STATE(); case 1171: - if (lookahead == 'o') ADVANCE(674); + if (lookahead == 'o') ADVANCE(1604); END_STATE(); case 1172: - if (lookahead == 'o') ADVANCE(835); + if (lookahead == 'o') ADVANCE(675); END_STATE(); case 1173: - if (lookahead == 'o') ADVANCE(851); + if (lookahead == 'o') ADVANCE(836); END_STATE(); case 1174: - if (lookahead == 'o') ADVANCE(400); + if (lookahead == 'o') ADVANCE(852); END_STATE(); case 1175: - if (lookahead == 'o') ADVANCE(4112); + if (lookahead == 'o') ADVANCE(401); END_STATE(); case 1176: - if (lookahead == 'o') ADVANCE(455); + if (lookahead == 'o') ADVANCE(4113); END_STATE(); case 1177: - if (lookahead == 'o') ADVANCE(1548); + if (lookahead == 'o') ADVANCE(456); END_STATE(); case 1178: - if (lookahead == 'o') ADVANCE(1295); + if (lookahead == 'o') ADVANCE(1549); END_STATE(); case 1179: - if (lookahead == 'o') ADVANCE(1365); + if (lookahead == 'o') ADVANCE(1296); END_STATE(); case 1180: - if (lookahead == 'o') ADVANCE(605); + if (lookahead == 'o') ADVANCE(1366); END_STATE(); case 1181: - if (lookahead == 'o') ADVANCE(1406); + if (lookahead == 'o') ADVANCE(606); END_STATE(); case 1182: - if (lookahead == 'o') ADVANCE(1304); + if (lookahead == 'o') ADVANCE(1407); END_STATE(); case 1183: - if (lookahead == 'o') ADVANCE(1543); + if (lookahead == 'o') ADVANCE(1305); END_STATE(); case 1184: - if (lookahead == 'o') ADVANCE(689); + if (lookahead == 'o') ADVANCE(1544); END_STATE(); case 1185: - if (lookahead == 'o') ADVANCE(460); + if (lookahead == 'o') ADVANCE(690); END_STATE(); case 1186: - if (lookahead == 'o') ADVANCE(1284); + if (lookahead == 'o') ADVANCE(461); END_STATE(); case 1187: - if (lookahead == 'o') ADVANCE(1239); + if (lookahead == 'o') ADVANCE(1285); END_STATE(); case 1188: - if (lookahead == 'o') ADVANCE(1239); - if (lookahead == 'u') ADVANCE(1368); + if (lookahead == 'o') ADVANCE(1240); END_STATE(); case 1189: - if (lookahead == 'o') ADVANCE(1094); + if (lookahead == 'o') ADVANCE(1240); + if (lookahead == 'u') ADVANCE(1369); END_STATE(); case 1190: - if (lookahead == 'o') ADVANCE(1017); + if (lookahead == 'o') ADVANCE(1095); END_STATE(); case 1191: - if (lookahead == 'o') ADVANCE(1496); + if (lookahead == 'o') ADVANCE(1018); END_STATE(); case 1192: - if (lookahead == 'o') ADVANCE(625); + if (lookahead == 'o') ADVANCE(1497); END_STATE(); case 1193: - if (lookahead == 'o') ADVANCE(1101); + if (lookahead == 'o') ADVANCE(626); END_STATE(); case 1194: - if (lookahead == 'o') ADVANCE(1512); - if (lookahead == 'p') ADVANCE(530); + if (lookahead == 'o') ADVANCE(1102); END_STATE(); case 1195: - if (lookahead == 'o') ADVANCE(840); + if (lookahead == 'o') ADVANCE(1513); + if (lookahead == 'p') ADVANCE(531); END_STATE(); case 1196: - if (lookahead == 'o') ADVANCE(1281); + if (lookahead == 'o') ADVANCE(841); END_STATE(); case 1197: - if (lookahead == 'o') ADVANCE(637); + if (lookahead == 'o') ADVANCE(1282); END_STATE(); case 1198: - if (lookahead == 'o') ADVANCE(1357); + if (lookahead == 'o') ADVANCE(638); END_STATE(); case 1199: - if (lookahead == 'o') ADVANCE(680); + if (lookahead == 'o') ADVANCE(1358); END_STATE(); case 1200: - if (lookahead == 'o') ADVANCE(1298); + if (lookahead == 'o') ADVANCE(681); END_STATE(); case 1201: - if (lookahead == 'o') ADVANCE(1141); + if (lookahead == 'o') ADVANCE(1299); END_STATE(); case 1202: - if (lookahead == 'o') ADVANCE(1244); + if (lookahead == 'o') ADVANCE(1142); END_STATE(); case 1203: - if (lookahead == 'o') ADVANCE(1497); + if (lookahead == 'o') ADVANCE(1245); END_STATE(); case 1204: - if (lookahead == 'o') ADVANCE(1056); + if (lookahead == 'o') ADVANCE(1498); END_STATE(); case 1205: - if (lookahead == 'o') ADVANCE(1511); + if (lookahead == 'o') ADVANCE(1057); END_STATE(); case 1206: - if (lookahead == 'o') ADVANCE(1315); + if (lookahead == 'o') ADVANCE(1512); END_STATE(); case 1207: - if (lookahead == 'o') ADVANCE(1297); + if (lookahead == 'o') ADVANCE(1316); END_STATE(); case 1208: - if (lookahead == 'o') ADVANCE(1130); + if (lookahead == 'o') ADVANCE(1298); END_STATE(); case 1209: - if (lookahead == 'o') ADVANCE(408); + if (lookahead == 'o') ADVANCE(1131); END_STATE(); case 1210: - if (lookahead == 'o') ADVANCE(1050); + if (lookahead == 'o') ADVANCE(409); END_STATE(); case 1211: - if (lookahead == 'o') ADVANCE(1519); + if (lookahead == 'o') ADVANCE(1051); END_STATE(); case 1212: - if (lookahead == 'o') ADVANCE(1293); + if (lookahead == 'o') ADVANCE(1520); END_STATE(); case 1213: - if (lookahead == 'o') ADVANCE(1475); - if (lookahead == 'u') ADVANCE(994); + if (lookahead == 'o') ADVANCE(1294); END_STATE(); case 1214: - if (lookahead == 'o') ADVANCE(1307); + if (lookahead == 'o') ADVANCE(1476); + if (lookahead == 'u') ADVANCE(995); END_STATE(); case 1215: - if (lookahead == 'o') ADVANCE(1171); + if (lookahead == 'o') ADVANCE(1308); END_STATE(); case 1216: - if (lookahead == 'o') ADVANCE(1449); + if (lookahead == 'o') ADVANCE(1172); END_STATE(); case 1217: - if (lookahead == 'o') ADVANCE(1449); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'o') ADVANCE(1450); END_STATE(); case 1218: - if (lookahead == 'o') ADVANCE(1287); + if (lookahead == 'o') ADVANCE(1450); + if (lookahead == 's') ADVANCE(4023); END_STATE(); case 1219: - if (lookahead == 'o') ADVANCE(1410); - if (lookahead == 'u') ADVANCE(1035); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1593); + if (lookahead == 'o') ADVANCE(1288); END_STATE(); case 1220: - if (lookahead == 'o') ADVANCE(1289); + if (lookahead == 'o') ADVANCE(1411); + if (lookahead == 'u') ADVANCE(1036); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1594); END_STATE(); case 1221: - if (lookahead == 'o') ADVANCE(1412); + if (lookahead == 'o') ADVANCE(1290); END_STATE(); case 1222: - if (lookahead == 'o') ADVANCE(1538); + if (lookahead == 'o') ADVANCE(1413); END_STATE(); case 1223: - if (lookahead == 'o') ADVANCE(850); + if (lookahead == 'o') ADVANCE(1539); END_STATE(); case 1224: - if (lookahead == 'o') ADVANCE(695); + if (lookahead == 'o') ADVANCE(851); END_STATE(); case 1225: - if (lookahead == 'o') ADVANCE(917); + if (lookahead == 'o') ADVANCE(696); END_STATE(); case 1226: - if (lookahead == 'o') ADVANCE(690); + if (lookahead == 'o') ADVANCE(918); END_STATE(); case 1227: - if (lookahead == 'o') ADVANCE(1266); + if (lookahead == 'o') ADVANCE(691); END_STATE(); case 1228: - if (lookahead == 'o') ADVANCE(1077); + if (lookahead == 'o') ADVANCE(1267); END_STATE(); case 1229: - if (lookahead == 'o') ADVANCE(1138); + if (lookahead == 'o') ADVANCE(1078); END_STATE(); case 1230: - if (lookahead == 'o') ADVANCE(1520); + if (lookahead == 'o') ADVANCE(1139); END_STATE(); case 1231: - if (lookahead == 'o') ADVANCE(516); + if (lookahead == 'o') ADVANCE(1521); END_STATE(); case 1232: - if (lookahead == 'o') ADVANCE(1530); + if (lookahead == 'o') ADVANCE(517); END_STATE(); case 1233: - if (lookahead == 'o') ADVANCE(1196); + if (lookahead == 'o') ADVANCE(1531); END_STATE(); case 1234: - if (lookahead == 'o') ADVANCE(1079); + if (lookahead == 'o') ADVANCE(1197); END_STATE(); case 1235: - if (lookahead == 'o') ADVANCE(1459); + if (lookahead == 'o') ADVANCE(1080); END_STATE(); case 1236: - if (lookahead == 'o') ADVANCE(1328); + if (lookahead == 'o') ADVANCE(1460); END_STATE(); case 1237: - if (lookahead == 'o') ADVANCE(1046); + if (lookahead == 'o') ADVANCE(1329); END_STATE(); case 1238: - if (lookahead == 'p') ADVANCE(517); + if (lookahead == 'o') ADVANCE(1047); END_STATE(); case 1239: - if (lookahead == 'p') ADVANCE(4235); + if (lookahead == 'p') ADVANCE(518); END_STATE(); case 1240: - if (lookahead == 'p') ADVANCE(1062); + if (lookahead == 'p') ADVANCE(4236); END_STATE(); case 1241: - if (lookahead == 'p') ADVANCE(1561); + if (lookahead == 'p') ADVANCE(1063); END_STATE(); case 1242: - if (lookahead == 'p') ADVANCE(663); + if (lookahead == 'p') ADVANCE(1562); END_STATE(); case 1243: - if (lookahead == 'p') ADVANCE(1031); + if (lookahead == 'p') ADVANCE(664); END_STATE(); case 1244: - if (lookahead == 'p') ADVANCE(4125); + if (lookahead == 'p') ADVANCE(1032); END_STATE(); case 1245: - if (lookahead == 'p') ADVANCE(1493); + if (lookahead == 'p') ADVANCE(4126); END_STATE(); case 1246: - if (lookahead == 'p') ADVANCE(1021); + if (lookahead == 'p') ADVANCE(1494); END_STATE(); case 1247: - if (lookahead == 'p') ADVANCE(701); + if (lookahead == 'p') ADVANCE(1022); END_STATE(); case 1248: - if (lookahead == 'p') ADVANCE(1037); + if (lookahead == 'p') ADVANCE(702); END_STATE(); case 1249: - if (lookahead == 'p') ADVANCE(508); + if (lookahead == 'p') ADVANCE(1038); END_STATE(); case 1250: - if (lookahead == 'p') ADVANCE(1442); + if (lookahead == 'p') ADVANCE(509); END_STATE(); case 1251: - if (lookahead == 'p') ADVANCE(1008); + if (lookahead == 'p') ADVANCE(1443); END_STATE(); case 1252: - if (lookahead == 'p') ADVANCE(1241); + if (lookahead == 'p') ADVANCE(1009); END_STATE(); case 1253: - if (lookahead == 'p') ADVANCE(1032); - if (lookahead == 'v') ADVANCE(778); + if (lookahead == 'p') ADVANCE(1242); END_STATE(); case 1254: - if (lookahead == 'p') ADVANCE(403); + if (lookahead == 'p') ADVANCE(1033); + if (lookahead == 'v') ADVANCE(779); END_STATE(); case 1255: - if (lookahead == 'p') ADVANCE(513); + if (lookahead == 'p') ADVANCE(404); END_STATE(); case 1256: - if (lookahead == 'p') ADVANCE(536); + if (lookahead == 'p') ADVANCE(514); END_STATE(); case 1257: - if (lookahead == 'p') ADVANCE(543); + if (lookahead == 'p') ADVANCE(537); END_STATE(); case 1258: - if (lookahead == 'p') ADVANCE(711); + if (lookahead == 'p') ADVANCE(544); END_STATE(); case 1259: - if (lookahead == 'p') ADVANCE(831); + if (lookahead == 'p') ADVANCE(712); END_STATE(); case 1260: - if (lookahead == 'p') ADVANCE(921); + if (lookahead == 'p') ADVANCE(832); END_STATE(); case 1261: - if (lookahead == 'p') ADVANCE(763); + if (lookahead == 'p') ADVANCE(922); END_STATE(); case 1262: - if (lookahead == 'p') ADVANCE(742); + if (lookahead == 'p') ADVANCE(764); END_STATE(); case 1263: - if (lookahead == 'p') ADVANCE(797); + if (lookahead == 'p') ADVANCE(743); END_STATE(); case 1264: - if (lookahead == 'p') ADVANCE(729); + if (lookahead == 'p') ADVANCE(798); END_STATE(); case 1265: - if (lookahead == 'p') ADVANCE(580); + if (lookahead == 'p') ADVANCE(730); END_STATE(); case 1266: - if (lookahead == 'p') ADVANCE(1472); + if (lookahead == 'p') ADVANCE(581); END_STATE(); case 1267: - if (lookahead == 'p') ADVANCE(762); + if (lookahead == 'p') ADVANCE(1473); END_STATE(); case 1268: - if (lookahead == 'p') ADVANCE(762); - if (lookahead == 't') ADVANCE(887); + if (lookahead == 'p') ADVANCE(763); END_STATE(); case 1269: - if (lookahead == 'p') ADVANCE(1030); + if (lookahead == 'p') ADVANCE(763); + if (lookahead == 't') ADVANCE(888); END_STATE(); case 1270: - if (lookahead == 'p') ADVANCE(1036); + if (lookahead == 'p') ADVANCE(1031); END_STATE(); case 1271: - if (lookahead == 'p') ADVANCE(1352); + if (lookahead == 'p') ADVANCE(1037); END_STATE(); case 1272: - if (lookahead == 'p') ADVANCE(1033); + if (lookahead == 'p') ADVANCE(1353); END_STATE(); case 1273: - if (lookahead == 'p') ADVANCE(1182); + if (lookahead == 'p') ADVANCE(1034); END_STATE(); case 1274: - if (lookahead == 'p') ADVANCE(583); + if (lookahead == 'p') ADVANCE(1183); END_STATE(); case 1275: - if (lookahead == 'p') ADVANCE(596); + if (lookahead == 'p') ADVANCE(584); END_STATE(); case 1276: - if (lookahead == 'q') ADVANCE(1514); + if (lookahead == 'p') ADVANCE(597); END_STATE(); case 1277: - if (lookahead == 'q') ADVANCE(1517); + if (lookahead == 'q') ADVANCE(1515); END_STATE(); case 1278: - if (lookahead == 'q') ADVANCE(1517); - if (lookahead == 's') ADVANCE(903); + if (lookahead == 'q') ADVANCE(1518); END_STATE(); case 1279: - if (lookahead == 'q') ADVANCE(1023); - if (lookahead == 't') ADVANCE(1347); + if (lookahead == 'q') ADVANCE(1518); + if (lookahead == 's') ADVANCE(904); END_STATE(); case 1280: - if (lookahead == 'q') ADVANCE(1502); + if (lookahead == 'q') ADVANCE(1024); + if (lookahead == 't') ADVANCE(1348); END_STATE(); case 1281: - if (lookahead == 'r') ADVANCE(4235); + if (lookahead == 'q') ADVANCE(1503); END_STATE(); case 1282: - if (lookahead == 'r') ADVANCE(4120); + if (lookahead == 'r') ADVANCE(4236); END_STATE(); case 1283: - if (lookahead == 'r') ADVANCE(993); + if (lookahead == 'r') ADVANCE(4121); END_STATE(); case 1284: - if (lookahead == 'r') ADVANCE(984); + if (lookahead == 'r') ADVANCE(994); END_STATE(); case 1285: - if (lookahead == 'r') ADVANCE(1280); + if (lookahead == 'r') ADVANCE(985); END_STATE(); case 1286: - if (lookahead == 'r') ADVANCE(3769); + if (lookahead == 'r') ADVANCE(1281); END_STATE(); case 1287: - if (lookahead == 'r') ADVANCE(3767); + if (lookahead == 'r') ADVANCE(3770); END_STATE(); case 1288: - if (lookahead == 'r') ADVANCE(3827); + if (lookahead == 'r') ADVANCE(3768); END_STATE(); case 1289: - if (lookahead == 'r') ADVANCE(3825); + if (lookahead == 'r') ADVANCE(3828); END_STATE(); case 1290: - if (lookahead == 'r') ADVANCE(4022); + if (lookahead == 'r') ADVANCE(3826); END_STATE(); case 1291: - if (lookahead == 'r') ADVANCE(380); + if (lookahead == 'r') ADVANCE(4023); END_STATE(); case 1292: - if (lookahead == 'r') ADVANCE(1523); + if (lookahead == 'r') ADVANCE(381); END_STATE(); case 1293: - if (lookahead == 'r') ADVANCE(674); + if (lookahead == 'r') ADVANCE(1524); END_STATE(); case 1294: - if (lookahead == 'r') ADVANCE(851); + if (lookahead == 'r') ADVANCE(675); END_STATE(); case 1295: - if (lookahead == 'r') ADVANCE(1095); + if (lookahead == 'r') ADVANCE(852); END_STATE(); case 1296: - if (lookahead == 'r') ADVANCE(1561); + if (lookahead == 'r') ADVANCE(1096); END_STATE(); case 1297: - if (lookahead == 'r') ADVANCE(687); + if (lookahead == 'r') ADVANCE(1562); END_STATE(); case 1298: - if (lookahead == 'r') ADVANCE(992); + if (lookahead == 'r') ADVANCE(688); END_STATE(); case 1299: - if (lookahead == 'r') ADVANCE(1563); + if (lookahead == 'r') ADVANCE(993); END_STATE(); case 1300: - if (lookahead == 'r') ADVANCE(388); + if (lookahead == 'r') ADVANCE(1564); END_STATE(); case 1301: - if (lookahead == 'r') ADVANCE(1177); + if (lookahead == 'r') ADVANCE(389); END_STATE(); case 1302: - if (lookahead == 'r') ADVANCE(1514); + if (lookahead == 'r') ADVANCE(1178); END_STATE(); case 1303: - if (lookahead == 'r') ADVANCE(663); + if (lookahead == 'r') ADVANCE(1515); END_STATE(); case 1304: - if (lookahead == 'r') ADVANCE(1406); + if (lookahead == 'r') ADVANCE(664); END_STATE(); case 1305: - if (lookahead == 'r') ADVANCE(1509); + if (lookahead == 'r') ADVANCE(1407); END_STATE(); case 1306: - if (lookahead == 'r') ADVANCE(1509); - if (lookahead == 'u') ADVANCE(995); + if (lookahead == 'r') ADVANCE(1510); END_STATE(); case 1307: - if (lookahead == 'r') ADVANCE(981); + if (lookahead == 'r') ADVANCE(1510); + if (lookahead == 'u') ADVANCE(996); END_STATE(); case 1308: - if (lookahead == 'r') ADVANCE(458); + if (lookahead == 'r') ADVANCE(982); END_STATE(); case 1309: - if (lookahead == 'r') ADVANCE(1550); + if (lookahead == 'r') ADVANCE(459); END_STATE(); case 1310: - if (lookahead == 'r') ADVANCE(861); + if (lookahead == 'r') ADVANCE(1551); END_STATE(); case 1311: - if (lookahead == 'r') ADVANCE(743); + if (lookahead == 'r') ADVANCE(862); END_STATE(); case 1312: - if (lookahead == 'r') ADVANCE(854); + if (lookahead == 'r') ADVANCE(744); END_STATE(); case 1313: - if (lookahead == 'r') ADVANCE(1101); + if (lookahead == 'r') ADVANCE(855); END_STATE(); case 1314: - if (lookahead == 'r') ADVANCE(463); + if (lookahead == 'r') ADVANCE(1102); END_STATE(); case 1315: - if (lookahead == 'r') ADVANCE(1355); + if (lookahead == 'r') ADVANCE(464); END_STATE(); case 1316: - if (lookahead == 'r') ADVANCE(525); + if (lookahead == 'r') ADVANCE(1356); END_STATE(); case 1317: - if (lookahead == 'r') ADVANCE(529); + if (lookahead == 'r') ADVANCE(526); END_STATE(); case 1318: - if (lookahead == 'r') ADVANCE(652); + if (lookahead == 'r') ADVANCE(530); END_STATE(); case 1319: - if (lookahead == 'r') ADVANCE(1436); + if (lookahead == 'r') ADVANCE(653); END_STATE(); case 1320: - if (lookahead == 'r') ADVANCE(1436); - if (lookahead == 't') ADVANCE(1355); + if (lookahead == 'r') ADVANCE(1437); END_STATE(); case 1321: - if (lookahead == 'r') ADVANCE(756); + if (lookahead == 'r') ADVANCE(1437); + if (lookahead == 't') ADVANCE(1356); END_STATE(); case 1322: - if (lookahead == 'r') ADVANCE(913); + if (lookahead == 'r') ADVANCE(757); END_STATE(); case 1323: - if (lookahead == 'r') ADVANCE(751); - if (lookahead == 't') ADVANCE(524); + if (lookahead == 'r') ADVANCE(914); END_STATE(); case 1324: - if (lookahead == 'r') ADVANCE(1143); + if (lookahead == 'r') ADVANCE(752); + if (lookahead == 't') ADVANCE(525); END_STATE(); case 1325: - if (lookahead == 'r') ADVANCE(1399); + if (lookahead == 'r') ADVANCE(1144); END_STATE(); case 1326: - if (lookahead == 'r') ADVANCE(1130); + if (lookahead == 'r') ADVANCE(1400); END_STATE(); case 1327: - if (lookahead == 'r') ADVANCE(1437); + if (lookahead == 'r') ADVANCE(1131); END_STATE(); case 1328: - if (lookahead == 'r') ADVANCE(711); + if (lookahead == 'r') ADVANCE(1438); END_STATE(); case 1329: - if (lookahead == 'r') ADVANCE(1223); + if (lookahead == 'r') ADVANCE(712); END_STATE(); case 1330: - if (lookahead == 'r') ADVANCE(811); + if (lookahead == 'r') ADVANCE(1224); END_STATE(); case 1331: - if (lookahead == 'r') ADVANCE(1187); + if (lookahead == 'r') ADVANCE(812); END_STATE(); case 1332: - if (lookahead == 'r') ADVANCE(793); + if (lookahead == 'r') ADVANCE(1188); END_STATE(); case 1333: - if (lookahead == 'r') ADVANCE(966); + if (lookahead == 'r') ADVANCE(794); END_STATE(); case 1334: - if (lookahead == 'r') ADVANCE(1110); + if (lookahead == 'r') ADVANCE(967); END_STATE(); case 1335: if (lookahead == 'r') ADVANCE(1111); END_STATE(); case 1336: - if (lookahead == 'r') ADVANCE(1308); + if (lookahead == 'r') ADVANCE(1112); END_STATE(); case 1337: - if (lookahead == 'r') ADVANCE(1314); + if (lookahead == 'r') ADVANCE(1309); END_STATE(); case 1338: - if (lookahead == 'r') ADVANCE(806); + if (lookahead == 'r') ADVANCE(1315); END_STATE(); case 1339: - if (lookahead == 'r') ADVANCE(783); + if (lookahead == 'r') ADVANCE(807); END_STATE(); case 1340: - if (lookahead == 'r') ADVANCE(923); + if (lookahead == 'r') ADVANCE(784); END_STATE(); case 1341: - if (lookahead == 'r') ADVANCE(635); + if (lookahead == 'r') ADVANCE(924); END_STATE(); case 1342: - if (lookahead == 'r') ADVANCE(1226); + if (lookahead == 'r') ADVANCE(636); END_STATE(); case 1343: - if (lookahead == 'r') ADVANCE(943); + if (lookahead == 'r') ADVANCE(1227); END_STATE(); case 1344: - if (lookahead == 'r') ADVANCE(1382); + if (lookahead == 'r') ADVANCE(944); END_STATE(); case 1345: - if (lookahead == 'r') ADVANCE(1333); + if (lookahead == 'r') ADVANCE(1383); END_STATE(); case 1346: - if (lookahead == 'r') ADVANCE(941); + if (lookahead == 'r') ADVANCE(1334); END_STATE(); case 1347: - if (lookahead == 'r') ADVANCE(934); + if (lookahead == 'r') ADVANCE(942); END_STATE(); case 1348: - if (lookahead == 'r') ADVANCE(595); + if (lookahead == 'r') ADVANCE(935); END_STATE(); case 1349: - if (lookahead == 'r') ADVANCE(1522); + if (lookahead == 'r') ADVANCE(596); END_STATE(); case 1350: - if (lookahead == 'r') ADVANCE(594); + if (lookahead == 'r') ADVANCE(1523); END_STATE(); case 1351: - if (lookahead == 'r') ADVANCE(4132); + if (lookahead == 'r') ADVANCE(595); END_STATE(); case 1352: - if (lookahead == 'r') ADVANCE(818); + if (lookahead == 'r') ADVANCE(4133); END_STATE(); case 1353: - if (lookahead == 'r') ADVANCE(977); + if (lookahead == 'r') ADVANCE(819); END_STATE(); case 1354: - if (lookahead == 'r') ADVANCE(1492); + if (lookahead == 'r') ADVANCE(978); END_STATE(); case 1355: - if (lookahead == 's') ADVANCE(4235); + if (lookahead == 'r') ADVANCE(1493); END_STATE(); case 1356: - if (lookahead == 's') ADVANCE(1536); + if (lookahead == 's') ADVANCE(4236); END_STATE(); case 1357: - if (lookahead == 's') ADVANCE(4168); + if (lookahead == 's') ADVANCE(1537); END_STATE(); case 1358: - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 's') ADVANCE(4169); END_STATE(); case 1359: - if (lookahead == 's') ADVANCE(1781); + if (lookahead == 's') ADVANCE(4023); END_STATE(); case 1360: - if (lookahead == 's') ADVANCE(3751); + if (lookahead == 's') ADVANCE(1782); END_STATE(); case 1361: - if (lookahead == 's') ADVANCE(865); + if (lookahead == 's') ADVANCE(3752); END_STATE(); case 1362: - if (lookahead == 's') ADVANCE(402); + if (lookahead == 's') ADVANCE(866); END_STATE(); case 1363: - if (lookahead == 's') ADVANCE(1514); + if (lookahead == 's') ADVANCE(403); END_STATE(); case 1364: - if (lookahead == 's') ADVANCE(985); + if (lookahead == 's') ADVANCE(1515); END_STATE(); case 1365: - if (lookahead == 's') ADVANCE(1406); + if (lookahead == 's') ADVANCE(986); END_STATE(); case 1366: - if (lookahead == 's') ADVANCE(1552); + if (lookahead == 's') ADVANCE(1407); END_STATE(); case 1367: - if (lookahead == 's') ADVANCE(1363); + if (lookahead == 's') ADVANCE(1553); END_STATE(); case 1368: - if (lookahead == 's') ADVANCE(867); + if (lookahead == 's') ADVANCE(1364); END_STATE(); case 1369: - if (lookahead == 's') ADVANCE(1409); + if (lookahead == 's') ADVANCE(868); END_STATE(); case 1370: - if (lookahead == 's') ADVANCE(1193); + if (lookahead == 's') ADVANCE(1410); END_STATE(); case 1371: - if (lookahead == 's') ADVANCE(870); - if (lookahead == 't') ADVANCE(1506); + if (lookahead == 's') ADVANCE(1194); END_STATE(); case 1372: - if (lookahead == 's') ADVANCE(743); + if (lookahead == 's') ADVANCE(871); + if (lookahead == 't') ADVANCE(1507); END_STATE(); case 1373: - if (lookahead == 's') ADVANCE(743); - if (lookahead == 'u') ADVANCE(1157); + if (lookahead == 's') ADVANCE(744); END_STATE(); case 1374: - if (lookahead == 's') ADVANCE(4119); + if (lookahead == 's') ADVANCE(744); + if (lookahead == 'u') ADVANCE(1158); END_STATE(); case 1375: - if (lookahead == 's') ADVANCE(1355); + if (lookahead == 's') ADVANCE(4120); END_STATE(); case 1376: - if (lookahead == 's') ADVANCE(903); + if (lookahead == 's') ADVANCE(1356); END_STATE(); case 1377: - if (lookahead == 's') ADVANCE(1420); + if (lookahead == 's') ADVANCE(904); END_STATE(); case 1378: - if (lookahead == 's') ADVANCE(1396); + if (lookahead == 's') ADVANCE(1421); END_STATE(); case 1379: - if (lookahead == 's') ADVANCE(788); + if (lookahead == 's') ADVANCE(1397); END_STATE(); case 1380: - if (lookahead == 's') ADVANCE(1414); + if (lookahead == 's') ADVANCE(789); END_STATE(); case 1381: - if (lookahead == 's') ADVANCE(1431); + if (lookahead == 's') ADVANCE(1415); END_STATE(); case 1382: - if (lookahead == 's') ADVANCE(711); + if (lookahead == 's') ADVANCE(1432); END_STATE(); case 1383: - if (lookahead == 's') ADVANCE(764); + if (lookahead == 's') ADVANCE(712); END_STATE(); case 1384: - if (lookahead == 's') ADVANCE(1132); + if (lookahead == 's') ADVANCE(765); END_STATE(); case 1385: - if (lookahead == 's') ADVANCE(1485); + if (lookahead == 's') ADVANCE(1133); END_STATE(); case 1386: - if (lookahead == 's') ADVANCE(1411); + if (lookahead == 's') ADVANCE(1486); END_STATE(); case 1387: - if (lookahead == 's') ADVANCE(744); + if (lookahead == 's') ADVANCE(1412); END_STATE(); case 1388: - if (lookahead == 's') ADVANCE(763); + if (lookahead == 's') ADVANCE(745); END_STATE(); case 1389: - if (lookahead == 's') ADVANCE(722); + if (lookahead == 's') ADVANCE(764); END_STATE(); case 1390: - if (lookahead == 's') ADVANCE(725); + if (lookahead == 's') ADVANCE(723); END_STATE(); case 1391: if (lookahead == 's') ADVANCE(726); END_STATE(); case 1392: - if (lookahead == 's') ADVANCE(724); + if (lookahead == 's') ADVANCE(727); END_STATE(); case 1393: - if (lookahead == 's') ADVANCE(649); - if (lookahead == 'x') ADVANCE(1458); + if (lookahead == 's') ADVANCE(725); END_STATE(); case 1394: - if (lookahead == 's') ADVANCE(1446); + if (lookahead == 's') ADVANCE(650); + if (lookahead == 'x') ADVANCE(1459); END_STATE(); case 1395: - if (lookahead == 's') ADVANCE(1448); + if (lookahead == 's') ADVANCE(1447); END_STATE(); case 1396: - if (lookahead == 's') ADVANCE(914); + if (lookahead == 's') ADVANCE(1449); END_STATE(); case 1397: - if (lookahead == 's') ADVANCE(659); + if (lookahead == 's') ADVANCE(915); END_STATE(); case 1398: - if (lookahead == 's') ADVANCE(1440); + if (lookahead == 's') ADVANCE(660); END_STATE(); case 1399: - if (lookahead == 's') ADVANCE(1196); + if (lookahead == 's') ADVANCE(1441); END_STATE(); case 1400: - if (lookahead == 's') ADVANCE(1257); + if (lookahead == 's') ADVANCE(1197); END_STATE(); case 1401: - if (lookahead == 's') ADVANCE(784); + if (lookahead == 's') ADVANCE(1258); END_STATE(); case 1402: - if (lookahead == 's') ADVANCE(796); + if (lookahead == 's') ADVANCE(785); END_STATE(); case 1403: - if (lookahead == 's') ADVANCE(1478); + if (lookahead == 's') ADVANCE(797); END_STATE(); case 1404: - if (lookahead == 's') ADVANCE(424); + if (lookahead == 's') ADVANCE(1479); END_STATE(); case 1405: - if (lookahead == 's') ADVANCE(428); + if (lookahead == 's') ADVANCE(425); END_STATE(); case 1406: - if (lookahead == 't') ADVANCE(4235); + if (lookahead == 's') ADVANCE(429); END_STATE(); case 1407: - if (lookahead == 't') ADVANCE(636); + if (lookahead == 't') ADVANCE(4236); END_STATE(); case 1408: - if (lookahead == 't') ADVANCE(1067); + if (lookahead == 't') ADVANCE(637); END_STATE(); case 1409: - if (lookahead == 't') ADVANCE(4111); + if (lookahead == 't') ADVANCE(1068); END_STATE(); case 1410: - if (lookahead == 't') ADVANCE(1605); + if (lookahead == 't') ADVANCE(4112); END_STATE(); case 1411: - if (lookahead == 't') ADVANCE(1800); + if (lookahead == 't') ADVANCE(1606); END_STATE(); case 1412: - if (lookahead == 't') ADVANCE(423); + if (lookahead == 't') ADVANCE(1801); END_STATE(); case 1413: - if (lookahead == 't') ADVANCE(1561); + if (lookahead == 't') ADVANCE(424); END_STATE(); case 1414: - if (lookahead == 't') ADVANCE(4156); + if (lookahead == 't') ADVANCE(1562); END_STATE(); case 1415: - if (lookahead == 't') ADVANCE(81); + if (lookahead == 't') ADVANCE(4157); END_STATE(); case 1416: - if (lookahead == 't') ADVANCE(385); + if (lookahead == 't') ADVANCE(80); END_STATE(); case 1417: - if (lookahead == 't') ADVANCE(1167); + if (lookahead == 't') ADVANCE(386); END_STATE(); case 1418: - if (lookahead == 't') ADVANCE(814); + if (lookahead == 't') ADVANCE(1168); END_STATE(); case 1419: - if (lookahead == 't') ADVANCE(4123); + if (lookahead == 't') ADVANCE(815); END_STATE(); case 1420: - if (lookahead == 't') ADVANCE(420); + if (lookahead == 't') ADVANCE(4124); END_STATE(); case 1421: - if (lookahead == 't') ADVANCE(457); + if (lookahead == 't') ADVANCE(421); END_STATE(); case 1422: - if (lookahead == 't') ADVANCE(389); + if (lookahead == 't') ADVANCE(458); END_STATE(); case 1423: - if (lookahead == 't') ADVANCE(867); + if (lookahead == 't') ADVANCE(390); END_STATE(); case 1424: - if (lookahead == 't') ADVANCE(4116); + if (lookahead == 't') ADVANCE(868); END_STATE(); case 1425: - if (lookahead == 't') ADVANCE(4127); + if (lookahead == 't') ADVANCE(4117); END_STATE(); case 1426: - if (lookahead == 't') ADVANCE(498); - if (lookahead == 'w') ADVANCE(947); + if (lookahead == 't') ADVANCE(4128); END_STATE(); case 1427: - if (lookahead == 't') ADVANCE(1506); + if (lookahead == 't') ADVANCE(499); + if (lookahead == 'w') ADVANCE(948); END_STATE(); case 1428: - if (lookahead == 't') ADVANCE(4126); + if (lookahead == 't') ADVANCE(1507); END_STATE(); case 1429: - if (lookahead == 't') ADVANCE(462); + if (lookahead == 't') ADVANCE(4127); END_STATE(); case 1430: - if (lookahead == 't') ADVANCE(427); + if (lookahead == 't') ADVANCE(463); END_STATE(); case 1431: - if (lookahead == 't') ADVANCE(1355); + if (lookahead == 't') ADVANCE(428); END_STATE(); case 1432: - if (lookahead == 't') ADVANCE(880); + if (lookahead == 't') ADVANCE(1356); END_STATE(); case 1433: - if (lookahead == 't') ADVANCE(871); + if (lookahead == 't') ADVANCE(881); END_STATE(); case 1434: if (lookahead == 't') ADVANCE(872); END_STATE(); case 1435: - if (lookahead == 't') ADVANCE(898); + if (lookahead == 't') ADVANCE(873); END_STATE(); case 1436: - if (lookahead == 't') ADVANCE(1362); + if (lookahead == 't') ADVANCE(899); END_STATE(); case 1437: - if (lookahead == 't') ADVANCE(403); + if (lookahead == 't') ADVANCE(1363); END_STATE(); case 1438: - if (lookahead == 't') ADVANCE(1322); + if (lookahead == 't') ADVANCE(404); END_STATE(); case 1439: - if (lookahead == 't') ADVANCE(875); + if (lookahead == 't') ADVANCE(1323); END_STATE(); case 1440: - if (lookahead == 't') ADVANCE(1347); + if (lookahead == 't') ADVANCE(876); END_STATE(); case 1441: - if (lookahead == 't') ADVANCE(876); + if (lookahead == 't') ADVANCE(1348); END_STATE(); case 1442: - if (lookahead == 't') ADVANCE(960); + if (lookahead == 't') ADVANCE(877); END_STATE(); case 1443: - if (lookahead == 't') ADVANCE(417); + if (lookahead == 't') ADVANCE(961); END_STATE(); case 1444: - if (lookahead == 't') ADVANCE(407); + if (lookahead == 't') ADVANCE(418); END_STATE(); case 1445: - if (lookahead == 't') ADVANCE(586); + if (lookahead == 't') ADVANCE(408); END_STATE(); case 1446: - if (lookahead == 't') ADVANCE(1500); + if (lookahead == 't') ADVANCE(587); END_STATE(); case 1447: - if (lookahead == 't') ADVANCE(398); + if (lookahead == 't') ADVANCE(1501); END_STATE(); case 1448: - if (lookahead == 't') ADVANCE(570); + if (lookahead == 't') ADVANCE(399); END_STATE(); case 1449: - if (lookahead == 't') ADVANCE(422); + if (lookahead == 't') ADVANCE(571); END_STATE(); case 1450: - if (lookahead == 't') ADVANCE(953); + if (lookahead == 't') ADVANCE(423); END_STATE(); case 1451: - if (lookahead == 't') ADVANCE(711); + if (lookahead == 't') ADVANCE(954); END_STATE(); case 1452: - if (lookahead == 't') ADVANCE(955); + if (lookahead == 't') ADVANCE(712); END_STATE(); case 1453: - if (lookahead == 't') ADVANCE(593); + if (lookahead == 't') ADVANCE(956); END_STATE(); case 1454: - if (lookahead == 't') ADVANCE(1187); + if (lookahead == 't') ADVANCE(594); END_STATE(); case 1455: - if (lookahead == 't') ADVANCE(574); + if (lookahead == 't') ADVANCE(1188); END_STATE(); case 1456: - if (lookahead == 't') ADVANCE(490); + if (lookahead == 't') ADVANCE(575); END_STATE(); case 1457: - if (lookahead == 't') ADVANCE(1209); + if (lookahead == 't') ADVANCE(491); END_STATE(); case 1458: - if (lookahead == 't') ADVANCE(792); + if (lookahead == 't') ADVANCE(1210); END_STATE(); case 1459: - if (lookahead == 't') ADVANCE(737); + if (lookahead == 't') ADVANCE(793); END_STATE(); case 1460: - if (lookahead == 't') ADVANCE(785); + if (lookahead == 't') ADVANCE(738); END_STATE(); case 1461: - if (lookahead == 't') ADVANCE(801); + if (lookahead == 't') ADVANCE(786); END_STATE(); case 1462: - if (lookahead == 't') ADVANCE(730); + if (lookahead == 't') ADVANCE(802); END_STATE(); case 1463: - if (lookahead == 't') ADVANCE(804); + if (lookahead == 't') ADVANCE(731); END_STATE(); case 1464: if (lookahead == 't') ADVANCE(805); END_STATE(); case 1465: - if (lookahead == 't') ADVANCE(883); + if (lookahead == 't') ADVANCE(806); END_STATE(); case 1466: - if (lookahead == 't') ADVANCE(635); + if (lookahead == 't') ADVANCE(884); END_STATE(); case 1467: - if (lookahead == 't') ADVANCE(775); + if (lookahead == 't') ADVANCE(636); END_STATE(); case 1468: - if (lookahead == 't') ADVANCE(914); + if (lookahead == 't') ADVANCE(776); END_STATE(); case 1469: - if (lookahead == 't') ADVANCE(920); + if (lookahead == 't') ADVANCE(915); END_STATE(); case 1470: - if (lookahead == 't') ADVANCE(822); + if (lookahead == 't') ADVANCE(921); END_STATE(); case 1471: - if (lookahead == 't') ADVANCE(890); + if (lookahead == 't') ADVANCE(823); END_STATE(); case 1472: - if (lookahead == 't') ADVANCE(415); + if (lookahead == 't') ADVANCE(891); END_STATE(); case 1473: - if (lookahead == 't') ADVANCE(762); + if (lookahead == 't') ADVANCE(416); END_STATE(); case 1474: - if (lookahead == 't') ADVANCE(578); + if (lookahead == 't') ADVANCE(763); END_STATE(); case 1475: - if (lookahead == 't') ADVANCE(412); + if (lookahead == 't') ADVANCE(579); END_STATE(); case 1476: - if (lookahead == 't') ADVANCE(646); + if (lookahead == 't') ADVANCE(413); END_STATE(); case 1477: - if (lookahead == 't') ADVANCE(1040); + if (lookahead == 't') ADVANCE(647); END_STATE(); case 1478: - if (lookahead == 't') ADVANCE(555); + if (lookahead == 't') ADVANCE(1041); END_STATE(); case 1479: - if (lookahead == 't') ADVANCE(554); + if (lookahead == 't') ADVANCE(556); END_STATE(); case 1480: - if (lookahead == 't') ADVANCE(1236); + if (lookahead == 't') ADVANCE(555); END_STATE(); case 1481: - if (lookahead == 't') ADVANCE(1461); + if (lookahead == 't') ADVANCE(1237); END_STATE(); case 1482: - if (lookahead == 't') ADVANCE(1338); + if (lookahead == 't') ADVANCE(1462); END_STATE(); case 1483: - if (lookahead == 't') ADVANCE(1206); + if (lookahead == 't') ADVANCE(1339); END_STATE(); case 1484: - if (lookahead == 't') ADVANCE(1464); + if (lookahead == 't') ADVANCE(1207); END_STATE(); case 1485: - if (lookahead == 't') ADVANCE(551); + if (lookahead == 't') ADVANCE(1465); END_STATE(); case 1486: - if (lookahead == 't') ADVANCE(1565); + if (lookahead == 't') ADVANCE(552); END_STATE(); case 1487: - if (lookahead == 't') ADVANCE(1473); + if (lookahead == 't') ADVANCE(1566); END_STATE(); case 1488: - if (lookahead == 't') ADVANCE(973); + if (lookahead == 't') ADVANCE(1474); END_STATE(); case 1489: - if (lookahead == 't') ADVANCE(968); + if (lookahead == 't') ADVANCE(974); END_STATE(); case 1490: - if (lookahead == 't') ADVANCE(948); + if (lookahead == 't') ADVANCE(969); END_STATE(); case 1491: - if (lookahead == 't') ADVANCE(602); + if (lookahead == 't') ADVANCE(949); END_STATE(); case 1492: - if (lookahead == 't') ADVANCE(1405); + if (lookahead == 't') ADVANCE(603); END_STATE(); case 1493: - if (lookahead == 'u') ADVANCE(4235); + if (lookahead == 't') ADVANCE(1406); END_STATE(); case 1494: - if (lookahead == 'u') ADVANCE(592); + if (lookahead == 'u') ADVANCE(4236); END_STATE(); case 1495: - if (lookahead == 'u') ADVANCE(1571); - if (lookahead == 'x') ADVANCE(1624); - if (lookahead != 0) ADVANCE(4081); + if (lookahead == 'u') ADVANCE(593); END_STATE(); case 1496: - if (lookahead == 'u') ADVANCE(1112); + if (lookahead == 'u') ADVANCE(1572); + if (lookahead == 'x') ADVANCE(1625); + if (lookahead != 0) ADVANCE(4082); END_STATE(); case 1497: - if (lookahead == 'u') ADVANCE(1406); + if (lookahead == 'u') ADVANCE(1113); END_STATE(); case 1498: - if (lookahead == 'u') ADVANCE(624); + if (lookahead == 'u') ADVANCE(1407); END_STATE(); case 1499: - if (lookahead == 'u') ADVANCE(1152); - if (lookahead == 'w') ADVANCE(894); + if (lookahead == 'u') ADVANCE(625); END_STATE(); case 1500: - if (lookahead == 'u') ADVANCE(1239); + if (lookahead == 'u') ADVANCE(1153); + if (lookahead == 'w') ADVANCE(895); END_STATE(); case 1501: - if (lookahead == 'u') ADVANCE(1193); + if (lookahead == 'u') ADVANCE(1240); END_STATE(); case 1502: - if (lookahead == 'u') ADVANCE(743); + if (lookahead == 'u') ADVANCE(1194); END_STATE(); case 1503: - if (lookahead == 'u') ADVANCE(1074); + if (lookahead == 'u') ADVANCE(744); END_STATE(); case 1504: - if (lookahead == 'u') ADVANCE(1101); + if (lookahead == 'u') ADVANCE(1075); END_STATE(); case 1505: - if (lookahead == 'u') ADVANCE(1247); + if (lookahead == 'u') ADVANCE(1102); END_STATE(); case 1506: - if (lookahead == 'u') ADVANCE(1355); + if (lookahead == 'u') ADVANCE(1248); END_STATE(); case 1507: - if (lookahead == 'u') ADVANCE(925); + if (lookahead == 'u') ADVANCE(1356); END_STATE(); case 1508: - if (lookahead == 'u') ADVANCE(1283); + if (lookahead == 'u') ADVANCE(926); END_STATE(); case 1509: - if (lookahead == 'u') ADVANCE(1141); + if (lookahead == 'u') ADVANCE(1284); END_STATE(); case 1510: - if (lookahead == 'u') ADVANCE(634); + if (lookahead == 'u') ADVANCE(1142); END_STATE(); case 1511: - if (lookahead == 'u') ADVANCE(1254); + if (lookahead == 'u') ADVANCE(635); END_STATE(); case 1512: - if (lookahead == 'u') ADVANCE(1318); + if (lookahead == 'u') ADVANCE(1255); END_STATE(); case 1513: - if (lookahead == 'u') ADVANCE(900); + if (lookahead == 'u') ADVANCE(1319); END_STATE(); case 1514: - if (lookahead == 'u') ADVANCE(711); + if (lookahead == 'u') ADVANCE(901); END_STATE(); case 1515: - if (lookahead == 'u') ADVANCE(994); + if (lookahead == 'u') ADVANCE(712); END_STATE(); case 1516: - if (lookahead == 'u') ADVANCE(1006); + if (lookahead == 'u') ADVANCE(995); END_STATE(); case 1517: - if (lookahead == 'u') ADVANCE(791); + if (lookahead == 'u') ADVANCE(1007); END_STATE(); case 1518: - if (lookahead == 'u') ADVANCE(1325); + if (lookahead == 'u') ADVANCE(792); END_STATE(); case 1519: - if (lookahead == 'u') ADVANCE(1421); + if (lookahead == 'u') ADVANCE(1326); END_STATE(); case 1520: - if (lookahead == 'u') ADVANCE(1429); + if (lookahead == 'u') ADVANCE(1422); END_STATE(); case 1521: - if (lookahead == 'u') ADVANCE(830); + if (lookahead == 'u') ADVANCE(1430); END_STATE(); case 1522: - if (lookahead == 'u') ADVANCE(723); + if (lookahead == 'u') ADVANCE(831); END_STATE(); case 1523: - if (lookahead == 'u') ADVANCE(723); - if (lookahead == 'y') ADVANCE(3714); + if (lookahead == 'u') ADVANCE(724); END_STATE(); case 1524: - if (lookahead == 'u') ADVANCE(1572); - if (lookahead == 'x') ADVANCE(1625); - if (lookahead != 0) ADVANCE(4071); + if (lookahead == 'u') ADVANCE(724); + if (lookahead == 'y') ADVANCE(3715); END_STATE(); case 1525: - if (lookahead == 'u') ADVANCE(1081); + if (lookahead == 'u') ADVANCE(1573); + if (lookahead == 'x') ADVANCE(1626); + if (lookahead != 0) ADVANCE(4072); END_STATE(); case 1526: if (lookahead == 'u') ADVANCE(1082); END_STATE(); case 1527: - if (lookahead == 'u') ADVANCE(1457); + if (lookahead == 'u') ADVANCE(1083); END_STATE(); case 1528: - if (lookahead == 'u') ADVANCE(937); + if (lookahead == 'u') ADVANCE(1458); END_STATE(); case 1529: - if (lookahead == 'u') ADVANCE(1146); + if (lookahead == 'u') ADVANCE(938); END_STATE(); case 1530: - if (lookahead == 'u') ADVANCE(1140); + if (lookahead == 'u') ADVANCE(1147); END_STATE(); case 1531: - if (lookahead == 'u') ADVANCE(1041); + if (lookahead == 'u') ADVANCE(1141); END_STATE(); case 1532: - if (lookahead == 'u') ADVANCE(1044); + if (lookahead == 'u') ADVANCE(1042); END_STATE(); case 1533: - if (lookahead == 'u') ADVANCE(1394); + if (lookahead == 'u') ADVANCE(1045); END_STATE(); case 1534: - if (lookahead == 'u') ADVANCE(1270); + if (lookahead == 'u') ADVANCE(1395); END_STATE(); case 1535: - if (lookahead == 'u') ADVANCE(1064); + if (lookahead == 'u') ADVANCE(1271); END_STATE(); case 1536: - if (lookahead == 'v') ADVANCE(4235); + if (lookahead == 'u') ADVANCE(1065); END_STATE(); case 1537: - if (lookahead == 'v') ADVANCE(1181); + if (lookahead == 'v') ADVANCE(4236); END_STATE(); case 1538: - if (lookahead == 'v') ADVANCE(711); + if (lookahead == 'v') ADVANCE(1182); END_STATE(); case 1539: - if (lookahead == 'v') ADVANCE(795); + if (lookahead == 'v') ADVANCE(712); END_STATE(); case 1540: - if (lookahead == 'v') ADVANCE(813); + if (lookahead == 'v') ADVANCE(796); END_STATE(); case 1541: - if (lookahead == 'w') ADVANCE(4235); + if (lookahead == 'v') ADVANCE(814); END_STATE(); case 1542: - if (lookahead == 'w') ADVANCE(894); + if (lookahead == 'w') ADVANCE(4236); END_STATE(); case 1543: - if (lookahead == 'w') ADVANCE(1101); + if (lookahead == 'w') ADVANCE(895); END_STATE(); case 1544: - if (lookahead == 'w') ADVANCE(902); + if (lookahead == 'w') ADVANCE(1102); END_STATE(); case 1545: - if (lookahead == 'w') ADVANCE(797); + if (lookahead == 'w') ADVANCE(903); END_STATE(); case 1546: - if (lookahead == 'w') ADVANCE(1117); + if (lookahead == 'w') ADVANCE(798); END_STATE(); case 1547: - if (lookahead == 'w') ADVANCE(956); + if (lookahead == 'w') ADVANCE(1118); END_STATE(); case 1548: - if (lookahead == 'w') ADVANCE(1382); + if (lookahead == 'w') ADVANCE(957); END_STATE(); case 1549: - if (lookahead == 'w') ADVANCE(978); + if (lookahead == 'w') ADVANCE(1383); END_STATE(); case 1550: - if (lookahead == 'w') ADVANCE(957); + if (lookahead == 'w') ADVANCE(979); END_STATE(); case 1551: - if (lookahead == 'w') ADVANCE(964); + if (lookahead == 'w') ADVANCE(958); END_STATE(); case 1552: - if (lookahead == 'x') ADVANCE(4235); + if (lookahead == 'w') ADVANCE(965); END_STATE(); case 1553: - if (lookahead == 'x') ADVANCE(974); + if (lookahead == 'x') ADVANCE(4236); END_STATE(); case 1554: - if (lookahead == 'x') ADVANCE(1467); + if (lookahead == 'x') ADVANCE(975); END_STATE(); case 1555: - if (lookahead == 'x') ADVANCE(1406); + if (lookahead == 'x') ADVANCE(1468); END_STATE(); case 1556: - if (lookahead == 'x') ADVANCE(1239); + if (lookahead == 'x') ADVANCE(1407); END_STATE(); case 1557: - if (lookahead == 'x') ADVANCE(414); + if (lookahead == 'x') ADVANCE(1240); END_STATE(); case 1558: - if (lookahead == 'x') ADVANCE(1273); + if (lookahead == 'x') ADVANCE(415); END_STATE(); case 1559: - if (lookahead == 'x') ADVANCE(1243); + if (lookahead == 'x') ADVANCE(1274); END_STATE(); case 1560: - if (lookahead == 'x') ADVANCE(1255); + if (lookahead == 'x') ADVANCE(1244); END_STATE(); case 1561: - if (lookahead == 'y') ADVANCE(4235); + if (lookahead == 'x') ADVANCE(1256); END_STATE(); case 1562: - if (lookahead == 'y') ADVANCE(4022); + if (lookahead == 'y') ADVANCE(4236); END_STATE(); case 1563: - if (lookahead == 'y') ADVANCE(405); + if (lookahead == 'y') ADVANCE(4023); END_STATE(); case 1564: - if (lookahead == 'y') ADVANCE(1258); + if (lookahead == 'y') ADVANCE(406); END_STATE(); case 1565: - if (lookahead == 'y') ADVANCE(1264); + if (lookahead == 'y') ADVANCE(1259); END_STATE(); case 1566: - if (lookahead == 'z') ADVANCE(4235); + if (lookahead == 'y') ADVANCE(1265); END_STATE(); case 1567: - if (lookahead == 'z') ADVANCE(438); + if (lookahead == 'z') ADVANCE(4236); END_STATE(); case 1568: - if (lookahead == 'z') ADVANCE(1561); + if (lookahead == 'z') ADVANCE(439); END_STATE(); case 1569: - if (lookahead == 'z') ADVANCE(711); + if (lookahead == 'z') ADVANCE(1562); END_STATE(); case 1570: - if (lookahead == 'z') ADVANCE(1201); + if (lookahead == 'z') ADVANCE(712); END_STATE(); case 1571: - if (lookahead == '{') ADVANCE(1621); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1619); + if (lookahead == 'z') ADVANCE(1202); END_STATE(); case 1572: - if (lookahead == '{') ADVANCE(1623); + if (lookahead == '{') ADVANCE(1622); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1626); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1620); END_STATE(); case 1573: - if (lookahead == '|') ADVANCE(3559); + if (lookahead == '{') ADVANCE(1624); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1627); END_STATE(); case 1574: if (lookahead == '|') ADVANCE(3560); END_STATE(); case 1575: - if (lookahead == '|') ADVANCE(3564); + if (lookahead == '|') ADVANCE(3561); END_STATE(); case 1576: - if (lookahead == '|') ADVANCE(3557); + if (lookahead == '|') ADVANCE(3565); END_STATE(); case 1577: - if (lookahead == '|') ADVANCE(3563); + if (lookahead == '|') ADVANCE(3558); END_STATE(); case 1578: - if (lookahead == '|') ADVANCE(3558); + if (lookahead == '|') ADVANCE(3564); END_STATE(); case 1579: - if (lookahead == '|') ADVANCE(3561); + if (lookahead == '|') ADVANCE(3559); END_STATE(); case 1580: if (lookahead == '|') ADVANCE(3562); END_STATE(); case 1581: - if (lookahead == '}') ADVANCE(4081); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1581); + if (lookahead == '|') ADVANCE(3563); END_STATE(); case 1582: - if (lookahead == '}') ADVANCE(4071); + if (lookahead == '}') ADVANCE(4082); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); END_STATE(); case 1583: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(1593); + if (lookahead == '}') ADVANCE(4072); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1583); END_STATE(); case 1584: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(1594); END_STATE(); case 1585: - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4000); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); END_STATE(); case 1586: if (lookahead == 'F' || @@ -29463,21904 +29496,21908 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 1587: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(1589); + lookahead == 'f') ADVANCE(4002); END_STATE(); case 1588: if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3997); + lookahead == 'f') ADVANCE(1590); END_STATE(); case 1589: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3998); END_STATE(); case 1590: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1599); + lookahead == 'i') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 1591: if (lookahead == 'I' || lookahead == 'i') ADVANCE(1600); END_STATE(); case 1592: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1585); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1601); END_STATE(); case 1593: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4006); + lookahead == 'n') ADVANCE(1586); END_STATE(); case 1594: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1590); + lookahead == 'n') ADVANCE(4007); END_STATE(); case 1595: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1586); + lookahead == 'n') ADVANCE(1591); END_STATE(); case 1596: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1588); + lookahead == 'n') ADVANCE(1587); END_STATE(); case 1597: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1587); + lookahead == 'n') ADVANCE(1589); END_STATE(); case 1598: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(1591); + lookahead == 'n') ADVANCE(1588); END_STATE(); case 1599: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(1602); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(1592); END_STATE(); case 1600: if (lookahead == 'T' || - lookahead == 't') ADVANCE(1601); + lookahead == 't') ADVANCE(1603); END_STATE(); case 1601: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3988); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(1602); END_STATE(); case 1602: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3998); + lookahead == 'y') ADVANCE(3989); END_STATE(); case 1603: - if (lookahead == 'l' || - lookahead == 'r') ADVANCE(4235); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3999); END_STATE(); case 1604: - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4044); + if (lookahead == 'l' || + lookahead == 'r') ADVANCE(4236); END_STATE(); case 1605: - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3792); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4045); END_STATE(); case 1606: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); END_STATE(); case 1607: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(449); END_STATE(); case 1608: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); END_STATE(); case 1609: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); END_STATE(); case 1610: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); END_STATE(); case 1611: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1606); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); END_STATE(); case 1612: if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1607); END_STATE(); case 1613: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1608); END_STATE(); case 1614: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1616); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); END_STATE(); case 1615: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1613); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); END_STATE(); case 1616: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(419); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1614); END_STATE(); case 1617: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(447); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(420); END_STATE(); case 1618: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1617); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(448); END_STATE(); case 1619: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(1618); END_STATE(); case 1620: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4081); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1625); END_STATE(); case 1621: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1581); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4082); END_STATE(); case 1622: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4071); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); END_STATE(); case 1623: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1582); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4072); END_STATE(); case 1624: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1620); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1583); END_STATE(); case 1625: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1622); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1621); END_STATE(); case 1626: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1625); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1623); END_STATE(); case 1627: - if (eof) ADVANCE(1772); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(1626); + END_STATE(); + case 1628: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 2426, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - ')', 3594, - '*', 3761, - '+', 3811, - ',', 3595, - '-', 3636, - '.', 4097, - '/', 3800, - '0', 3949, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - 'I', 2841, - 'N', 2834, - '[', 4036, - ']', 3592, - '_', 2445, - '`', 481, - 'a', 2622, - 'b', 2588, - 'c', 2461, - 'd', 2515, - 'e', 1900, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2456, - 'n', 2689, - 'o', 1901, - 'r', 2516, - 's', 2670, - 't', 2709, - 'u', 2751, - 'w', 2580, - 'x', 2678, - '|', 3556, - '}', 3702, + '!', 2427, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + ')', 3595, + '*', 3762, + '+', 3812, + ',', 3596, + '-', 3637, + '.', 4098, + '/', 3801, + '0', 3950, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + 'I', 2842, + 'N', 2835, + '[', 4037, + ']', 3593, + '_', 2446, + '`', 482, + 'a', 2623, + 'b', 2589, + 'c', 2462, + 'd', 2516, + 'e', 1901, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2457, + 'n', 2690, + 'o', 1902, + 'r', 2517, + 's', 2671, + 't', 2710, + 'u', 2752, + 'w', 2581, + 'x', 2679, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == ' ') SKIP(1629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 1628: - if (eof) ADVANCE(1772); + case 1629: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 2426, - '"', 4066, - '#', 5462, - '$', 3596, - '\'', 375, - '(', 3593, - ')', 3594, - '*', 3761, - '+', 3811, - ',', 3595, - '-', 3636, - '.', 4098, - '/', 3800, - '0', 3949, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - 'I', 2841, - 'N', 2834, - ']', 3592, - '_', 2445, - '`', 481, - 'a', 2622, - 'b', 2588, - 'c', 2461, - 'd', 2515, - 'e', 1900, - 'f', 2454, - 'h', 2590, - 'i', 2438, - 'l', 2532, - 'm', 2456, - 'n', 2689, - 'o', 1901, - 'r', 2516, - 's', 2670, - 't', 2709, - 'u', 2751, - 'w', 2580, - 'x', 2678, - '|', 3556, - '}', 3702, + '!', 2427, + '"', 4067, + '#', 5463, + '$', 3597, + '\'', 376, + '(', 3594, + ')', 3595, + '*', 3762, + '+', 3812, + ',', 3596, + '-', 3637, + '.', 4099, + '/', 3801, + '0', 3950, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + 'I', 2842, + 'N', 2835, + ']', 3593, + '_', 2446, + '`', 482, + 'a', 2623, + 'b', 2589, + 'c', 2462, + 'd', 2516, + 'e', 1901, + 'f', 2455, + 'h', 2591, + 'i', 2439, + 'l', 2533, + 'm', 2457, + 'n', 2690, + 'o', 1902, + 'r', 2517, + 's', 2671, + 't', 2710, + 'u', 2752, + 'w', 2581, + 'x', 2679, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1628); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3972); + lookahead == ' ') SKIP(1629); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '[' && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); - case 1629: - if (eof) ADVANCE(1772); + case 1630: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 3858, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4448, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '{', 3701, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4449, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1661); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ' ') SKIP(1662); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4643); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4644); END_STATE(); - case 1630: - if (eof) ADVANCE(1772); + case 1631: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 3858, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4464, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 3859, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4465, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 1631: - if (eof) ADVANCE(1772); + case 1632: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 4508, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4448, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4509, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4449, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1662); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1663); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 1632: - if (eof) ADVANCE(1772); + case 1633: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3810, - '-', 3642, - '.', 4508, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4464, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3811, + '-', 3643, + '.', 4509, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4465, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1663); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1664); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 1633: - if (eof) ADVANCE(1772); + case 1634: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4452, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4450, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4453, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4451, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4643); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4644); END_STATE(); - case 1634: - if (eof) ADVANCE(1772); + case 1635: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4457, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4466, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4458, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4467, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 1635: - if (eof) ADVANCE(1772); + case 1636: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4454, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '{', 3701, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4455, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4643); - END_STATE(); - case 1636: - if (eof) ADVANCE(1772); - ADVANCE_MAP( - '\n', 3552, - '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3848, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4459, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4644); END_STATE(); case 1637: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4452, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4450, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3849, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'E', 4517, + 'a', 4556, + 'b', 4545, + 'e', 4460, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1638: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4457, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4466, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4453, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4451, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1639: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4452, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4450, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4458, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4467, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1640: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4457, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4466, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4453, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4451, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1641: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4446, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4450, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4458, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4467, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1642: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'B', 4015, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'b', 4017, - 'd', 4522, - 'e', 4462, - 'g', 4502, - 'h', 4571, - 'i', 4554, - 'k', 4502, - 'm', 4504, - 'n', 4561, - 'o', 4466, - 'p', 4502, - 's', 4533, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4447, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, + 'n', 4562, + 'o', 4451, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1643: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4454, - 'i', 4554, - 'm', 4560, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'B', 4016, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'b', 4018, + 'd', 4523, + 'e', 4463, + 'g', 4503, + 'h', 4572, + 'i', 4555, + 'k', 4503, + 'm', 4505, 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '{', 3701, - '|', 3556, - '}', 3702, + 'o', 4467, + 'p', 4503, + 's', 4534, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 1644: + if (eof) ADVANCE(1773); + ADVANCE_MAP( + '\n', 3553, + '\r', 1, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'E', 4517, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4455, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '{', 3702, + '|', 3557, + '}', 3703, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1668); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '_' || 'b' < lookahead)) ADVANCE(4643); + (lookahead < '_' || 'b' < lookahead)) ADVANCE(4644); END_STATE(); - case 1644: - if (eof) ADVANCE(1772); + case 1645: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4459, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4460, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 1645: - if (eof) ADVANCE(1772); + case 1646: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4454, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '{', 3701, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4455, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4643); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4644); END_STATE(); - case 1646: - if (eof) ADVANCE(1772); + case 1647: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4459, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4460, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 1647: - if (eof) ADVANCE(1772); + case 1648: + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4448, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '{', 3701, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4449, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1667); + lookahead == ' ') SKIP(1668); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < ' ' || '#' < lookahead) && (lookahead < '\'' || '+' < lookahead) && lookahead != '[' && lookahead != ']' && - (lookahead < '`' || 'b' < lookahead)) ADVANCE(4643); - END_STATE(); - case 1648: - if (eof) ADVANCE(1772); - ADVANCE_MAP( - '\n', 3552, - '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4479, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4464, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + (lookahead < '`' || 'b' < lookahead)) ADVANCE(4644); END_STATE(); case 1649: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3834, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4454, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4480, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4465, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1650: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3834, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4459, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4455, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1651: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 3835, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4454, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4460, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1652: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - '_', 4506, - 'a', 4555, - 'b', 4544, - 'e', 4459, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4455, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1653: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4454, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '_', 4507, + 'a', 4556, + 'b', 4545, + 'e', 4460, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1654: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, 'E', 4517, - 'a', 4555, - 'b', 4544, - 'e', 4459, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4455, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1655: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4448, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4450, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'E', 4517, + 'a', 4556, + 'b', 4545, + 'e', 4460, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1656: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4485, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 4487, - '>', 3613, - 'a', 4555, - 'b', 4544, - 'e', 4464, - 'i', 4554, - 'm', 4560, - 'n', 4562, - 'o', 4466, - 's', 4589, - 'x', 4564, - '|', 3556, - '}', 3702, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 4488, + '>', 3614, + 'a', 4556, + 'b', 4545, + 'e', 4449, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4451, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1657: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4681, - '#', 5468, - '(', 3793, - ')', 3594, - '*', 3762, - '+', 3813, - '-', 3646, - '/', 3801, - ';', 3555, + '!', 4486, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, '<', 3783, - '=', 4683, + '=', 4488, '>', 3614, - 'a', 4770, - 'b', 4753, - 'e', 4653, - 'i', 4771, - 'm', 4783, - 'n', 4786, - 'o', 4655, - 's', 4824, - 'x', 4785, - '|', 3556, - '}', 3702, + 'a', 4556, + 'b', 4545, + 'e', 4465, + 'i', 4555, + 'm', 4561, + 'n', 4563, + 'o', 4467, + 's', 4590, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1658: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 4681, - '#', 5468, - '(', 3793, - ')', 3594, - '*', 3762, - '+', 3813, - '-', 3646, - '/', 3801, - ';', 3555, - '<', 3783, - '=', 4683, - '>', 3614, - 'a', 4770, - 'b', 4753, - 'e', 4659, - 'i', 4771, - 'm', 4783, - 'n', 4786, - 'o', 4661, - 's', 4824, - 'x', 4785, - '|', 3556, - '}', 3702, + '!', 4682, + '#', 5469, + '(', 3794, + ')', 3595, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + ';', 3556, + '<', 3784, + '=', 4684, + '>', 3615, + 'a', 4771, + 'b', 4754, + 'e', 4654, + 'i', 4772, + 'm', 4784, + 'n', 4787, + 'o', 4656, + 's', 4825, + 'x', 4786, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 1659: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '$', 3596, - '(', 3593, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4093, - '/', 3799, - ':', 3589, - ';', 3555, - '<', 3782, - '=', 451, - '>', 3613, - '?', 3763, - '[', 3591, - 'a', 1133, - 'b', 945, - 'c', 598, - 'e', 378, - 'f', 597, - 'i', 837, - 'm', 1199, - 'n', 1221, - 'o', 384, - 's', 1491, - 't', 1349, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '!', 4682, + '#', 5469, + '(', 3794, + ')', 3595, + '*', 3763, + '+', 3814, + '-', 3647, + '/', 3802, + ';', 3556, + '<', 3784, + '=', 4684, + '>', 3615, + 'a', 4771, + 'b', 4754, + 'e', 4660, + 'i', 4772, + 'm', 4784, + 'n', 4787, + 'o', 4662, + 's', 4825, + 'x', 4786, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1659); + lookahead == ' ') SKIP(1670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 1660: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '$', 3596, - '(', 3593, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 3834, - '/', 3799, - ':', 3589, - ';', 3555, - '<', 3782, - '=', 451, - '>', 3613, - '?', 3763, - 'E', 479, - '[', 3591, - 'a', 1133, - 'b', 945, - 'c', 598, - 'e', 377, - 'f', 597, - 'i', 837, - 'm', 1199, - 'n', 1221, - 'o', 384, - 's', 1491, - 't', 1349, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '$', 3597, + '(', 3594, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4094, + '/', 3800, + ':', 3590, + ';', 3556, + '<', 3783, + '=', 452, + '>', 3614, + '?', 3764, + '[', 3592, + 'a', 1134, + 'b', 946, + 'c', 599, + 'e', 379, + 'f', 598, + 'i', 838, + 'm', 1200, + 'n', 1222, + 'o', 385, + 's', 1492, + 't', 1350, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1659); + lookahead == ' ') SKIP(1660); END_STATE(); case 1661: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '$', 3596, - ')', 3594, - '*', 3760, + '!', 451, + '#', 5463, + '$', 3597, + '(', 3594, + ')', 3595, + '*', 3761, '+', 3809, - '-', 3641, - '.', 474, - '/', 3799, - ';', 3555, - '<', 3782, + '-', 3624, + '.', 3835, + '/', 3800, + ':', 3590, + ';', 3556, + '<', 3783, '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '>', 3614, + '?', 3764, + 'E', 480, + '[', 3592, + 'a', 1134, + 'b', 946, + 'c', 599, + 'e', 378, + 'f', 598, + 'i', 838, + 'm', 1200, + 'n', 1222, + 'o', 385, + 's', 1492, + 't', 1350, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1661); + lookahead == ' ') SKIP(1660); END_STATE(); case 1662: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '$', 3596, - ')', 3594, - '*', 3760, - '+', 3809, - '-', 3641, - '.', 474, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '$', 3597, + ')', 3595, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 475, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1662); END_STATE(); case 1663: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '$', 3596, - ')', 3594, - '*', 3760, - '+', 3809, - '-', 3641, - '.', 474, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 382, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 386, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '$', 3597, + ')', 3595, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 475, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1663); END_STATE(); case 1664: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '(', 3793, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4099, - '/', 3799, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 451, - '>', 3613, - '?', 3763, - 'B', 4015, - 'E', 464, - 'G', 467, - 'K', 467, - 'M', 467, - 'P', 467, - 'T', 467, - '[', 4036, - '_', 477, - 'a', 1133, - 'b', 4018, - 'd', 515, - 'e', 376, - 'g', 465, - 'h', 1290, - 'i', 837, - 'k', 465, - 'm', 466, + '!', 451, + '#', 5463, + '$', 3597, + ')', 3595, + '*', 3761, + '+', 3810, + '-', 3642, + '.', 475, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 383, + 'i', 1110, + 'm', 1200, 'n', 1217, - 'o', 384, - 'p', 465, - 's', 789, - 't', 465, - 'u', 1358, - 'w', 983, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 1358, + 'o', 387, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1666); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + lookahead == ' ') SKIP(1664); END_STATE(); case 1665: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '(', 3793, - ')', 3594, + '!', 451, + '#', 5463, + '(', 3794, + ')', 3595, '*', 3761, - '+', 3812, - '-', 3645, - '.', 4099, + '+', 3809, + '-', 3624, + '.', 4100, '/', 3800, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - '?', 3763, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 452, + '>', 3614, + '?', 3764, + 'B', 4016, + 'E', 465, + 'G', 468, + 'K', 468, + 'M', 468, + 'P', 468, + 'T', 468, + '[', 4037, + '_', 478, + 'a', 1134, + 'b', 4019, + 'd', 516, + 'e', 377, + 'g', 466, + 'h', 1291, + 'i', 838, + 'k', 466, + 'm', 467, + 'n', 1218, + 'o', 385, + 'p', 466, + 's', 790, + 't', 466, + 'u', 1359, + 'w', 984, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 1359, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1670); + lookahead == ' ') SKIP(1667); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 1666: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '.', 4093, - '/', 3799, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 451, - '>', 3613, - '?', 3763, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 837, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '(', 3794, + ')', 3595, + '*', 3762, + '+', 3813, + '-', 3646, + '.', 4100, + '/', 3801, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + '?', 3764, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1666); + lookahead == ' ') SKIP(1671); END_STATE(); case 1667: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, + '!', 451, + '#', 5463, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '.', 4094, + '/', 3800, + ':', 4090, + ';', 3556, + '<', 3783, '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '>', 3614, + '?', 3764, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 838, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1667); END_STATE(); case 1668: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1668); END_STATE(); case 1669: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 382, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 386, - 's', 1491, - 'x', 1218, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + ')', 3595, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1669); END_STATE(); case 1670: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - ')', 3594, + '!', 451, + '#', 5463, + ')', 3595, '*', 3761, - '+', 3812, - '-', 3645, - '.', 4093, + '+', 3809, + '-', 3624, '/', 3800, - ':', 4089, - ';', 3555, - '<', 3782, - '=', 1787, - '>', 3613, - '?', 3763, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 383, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 387, + 's', 1492, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1670); END_STATE(); case 1671: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 379, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 384, - 's', 1491, - 'x', 1218, - '|', 3556, + '!', 451, + '#', 5463, + ')', 3595, + '*', 3762, + '+', 3813, + '-', 3646, + '.', 4094, + '/', 3801, + ':', 4090, + ';', 3556, + '<', 3783, + '=', 1788, + '>', 3614, + '?', 3764, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1671); END_STATE(); case 1672: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 450, - '#', 5462, - '*', 3760, - '+', 3808, - '-', 3623, - '/', 3799, - ';', 3555, - '<', 3782, - '=', 452, - '>', 3613, - 'a', 1133, - 'b', 945, - 'e', 382, - 'i', 1109, - 'm', 1199, - 'n', 1216, - 'o', 386, - 's', 1491, - 'x', 1218, - '|', 3556, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 380, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 385, + 's', 1492, + 'x', 1219, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1672); END_STATE(); case 1673: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5464, - '$', 3596, - '\'', 375, - '(', 3593, - ')', 3594, - '*', 3760, - '+', 3808, - ',', 3595, - '-', 3623, - '.', 4094, - '/', 3802, - '0', 3282, - ':', 4089, - ';', 3555, - '<', 3781, - '=', 1786, - '>', 3612, - '?', 3763, - '[', 3591, - ']', 3592, - '^', 4110, - '_', 3705, - '`', 481, - '{', 3701, - '|', 3556, - '}', 3702, + '!', 451, + '#', 5463, + '*', 3761, + '+', 3809, + '-', 3624, + '/', 3800, + ';', 3556, + '<', 3783, + '=', 453, + '>', 3614, + 'a', 1134, + 'b', 946, + 'e', 383, + 'i', 1110, + 'm', 1200, + 'n', 1217, + 'o', 387, + 's', 1492, + 'x', 1219, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1673); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3335); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3329); - if (lookahead == '!' || - lookahead == '&' || - lookahead == '@') ADVANCE(5231); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3283); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3343); END_STATE(); case 1674: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5464, + '"', 4067, + '#', 5465, '$', 3597, - '\'', 375, - '(', 3593, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - ';', 3555, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2231, - 'b', 2205, - 'c', 2078, - 'd', 2107, - 'e', 2081, - 'f', 2084, - 'g', 2197, - 'h', 2096, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2158, - 'm', 2086, - 'n', 2281, - 'o', 2389, - 'p', 2101, - 'q', 2383, - 'r', 2088, - 's', 2125, - 't', 2091, - 'u', 2291, - 'v', 2209, - 'w', 2194, - '{', 3701, + '\'', 376, + '(', 3594, + ')', 3595, + '*', 3761, + '+', 3809, + ',', 3596, + '-', 3624, + '.', 4095, + '/', 3803, + '0', 3283, + ':', 4090, + ';', 3556, + '<', 3782, + '=', 1787, + '>', 3613, + '?', 3764, + '[', 3592, + ']', 3593, + '^', 4111, + '_', 3706, + '`', 482, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1674); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3336); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3330); if (lookahead == '!' || lookahead == '&' || - ('*' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == '@') ADVANCE(5232); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3284); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '&' || '.' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2402); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(3344); END_STATE(); case 1675: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, + '"', 4067, + '#', 5465, + '$', 3598, + '\'', 376, + '(', 3594, + '+', 2061, + '-', 3638, + '.', 2062, '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + ';', 3556, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2232, + 'b', 2206, + 'c', 2079, + 'd', 2108, + 'e', 2082, + 'f', 2085, + 'g', 2198, + 'h', 2097, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2159, + 'm', 2087, + 'n', 2282, + 'o', 2390, + 'p', 2102, + 'q', 2384, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2210, + 'w', 2195, + '{', 3702, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); + lookahead == ' ') SKIP(1675); + if (lookahead == '!' || + lookahead == '&' || + ('*' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + (lookahead < '&' || '.' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2403); END_STATE(); case 1676: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4480, - '-', 3628, - '.', 4476, - '0', 3873, - ';', 3555, - 'N', 4611, - '[', 3591, - '_', 4506, - '`', 481, - 'e', 4449, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1677: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4480, - '-', 3628, - '.', 3838, - '0', 3873, - ';', 3555, - 'N', 4611, - '[', 3591, - '_', 4506, - '`', 481, - 'e', 4449, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4481, + '-', 3629, + '.', 4477, + '0', 3874, + ';', 3556, + 'N', 4612, + '[', 3592, + '_', 4507, + '`', 482, + 'e', 4450, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1720); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1678: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, '+', 4481, - '-', 3630, - '.', 4478, - '0', 3873, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4506, - '`', 481, - 'd', 4522, - 'e', 4453, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '-', 3629, + '.', 3839, + '0', 3874, + ';', 3556, + 'N', 4612, + '[', 3592, + '_', 4507, + '`', 482, + 'e', 4450, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == ' ') SKIP(1720); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1679: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3873, - ';', 3555, - 'E', 4517, - 'N', 4611, - '[', 3591, - '_', 4506, - '`', 481, - 'e', 4455, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3874, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4507, + '`', 482, + 'd', 4523, + 'e', 4454, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1680: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3947, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4511, - '`', 481, - 'd', 4522, - 'e', 4453, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3874, + ';', 3556, + 'E', 4517, + 'N', 4612, + '[', 3592, + '_', 4507, + '`', 482, + 'e', 4456, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1681: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3947, - ';', 3555, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4511, - '`', 481, - 'd', 4522, - 'e', 4447, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3948, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4521, + '`', 482, + 'd', 4523, + 'e', 4454, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1682: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3947, - ';', 3555, - 'E', 4517, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4455, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3948, + ';', 3556, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4521, + '`', 482, + 'd', 4523, + 'e', 4448, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1683: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3947, - ';', 3555, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4449, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3948, + ';', 3556, + 'E', 4517, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4456, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1684: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4477, - '0', 3873, - ';', 3555, - 'E', 4517, - 'N', 4611, - '[', 3591, - '_', 4506, - '`', 481, - 'e', 4455, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3948, + ';', 3556, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4450, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1685: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4477, - '0', 3947, - ';', 3555, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4478, + '0', 3874, + ';', 3556, 'E', 4517, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4455, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + 'N', 4612, + '[', 3592, + '_', 4507, + '`', 482, + 'e', 4456, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1686: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4477, - '0', 3947, - ';', 3555, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4449, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4478, + '0', 3948, + ';', 3556, + 'E', 4517, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4456, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1687: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 3853, - '0', 3947, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4511, - '`', 481, - 'd', 4522, - 'e', 4453, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4478, + '0', 3948, + ';', 3556, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4450, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1688: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, '.', 3853, - '0', 3947, - ';', 3555, - 'E', 4517, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4455, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '0', 3948, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4521, + '`', 482, + 'd', 4523, + 'e', 4454, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1689: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 3843, - '0', 3947, - ';', 3555, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 3853, + '0', 3948, + ';', 3556, 'E', 4517, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4455, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4456, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1690: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4365, - '-', 3626, - '.', 4361, - '0', 3874, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4386, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 3843, + '0', 3948, + ';', 3556, + 'E', 4517, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4456, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1691: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4365, - '-', 3626, - '.', 3840, - '0', 3874, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4386, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4366, + '-', 3627, + '.', 4362, + '0', 3875, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4387, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1720); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1692: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3916, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - ':', 4089, - ';', 3555, - '=', 454, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2231, - 'b', 2205, - 'c', 2078, - 'd', 2107, - 'e', 2081, - 'f', 2084, - 'g', 2197, - 'h', 2096, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2158, - 'm', 2086, - 'n', 2281, - 'o', 2389, - 'p', 2101, - 'q', 2383, - 'r', 2088, - 's', 2125, - 't', 2091, - 'u', 2291, - 'v', 2209, - 'w', 2194, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4366, + '-', 3627, + '.', 3841, + '0', 3875, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4387, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == ' ') SKIP(1720); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2402); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1693: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 2060, - '-', 3637, - '.', 2061, - '0', 3942, - ':', 4089, - ';', 3555, - '=', 454, - 'I', 2399, - 'N', 2397, - '[', 3591, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2231, - 'b', 2205, - 'c', 2078, - 'd', 2107, - 'e', 2081, - 'f', 2084, - 'g', 2197, - 'h', 2096, - 'i', 2074, - 'j', 2333, - 'k', 2138, - 'l', 2158, - 'm', 2086, - 'n', 2281, - 'o', 2389, - 'p', 2101, - 'q', 2383, - 'r', 2088, - 's', 2125, - 't', 2091, - 'u', 2291, - 'v', 2209, - 'w', 2194, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3917, + '+', 2061, + '-', 3638, + '.', 2062, + '0', 3943, + ':', 4090, + ';', 3556, + '=', 455, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2232, + 'b', 2206, + 'c', 2079, + 'd', 2108, + 'e', 2082, + 'f', 2085, + 'g', 2198, + 'h', 2097, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2159, + 'm', 2087, + 'n', 2282, + 'o', 2390, + 'p', 2102, + 'q', 2384, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2210, + 'w', 2195, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1693); + lookahead == ' ') SKIP(1694); if (lookahead == '!' || ('&' <= lookahead && lookahead <= ',') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '0' || '@' < lookahead) && - (lookahead < ']' || 'w' < lookahead)) ADVANCE(2402); + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2403); END_STATE(); case 1694: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 432, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 2061, '-', 3638, - '.', 433, - '0', 3945, - ':', 4089, - ';', 3555, - '=', 454, - '>', 3612, - '@', 3615, - 'I', 1596, - 'N', 1583, - '[', 3591, - '_', 470, - '`', 481, - 'a', 1065, - 'c', 599, - 'd', 761, - 'e', 381, - 'f', 597, - 'i', 838, - 'm', 507, - 'n', 1219, - 'o', 387, - 't', 1292, - 'u', 1390, - '{', 3701, - '|', 3556, - '}', 3702, + '.', 2062, + '0', 3943, + ':', 4090, + ';', 3556, + '=', 455, + 'I', 2400, + 'N', 2398, + '[', 3592, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2232, + 'b', 2206, + 'c', 2079, + 'd', 2108, + 'e', 2082, + 'f', 2085, + 'g', 2198, + 'h', 2097, + 'i', 2075, + 'j', 2334, + 'k', 2139, + 'l', 2159, + 'm', 2087, + 'n', 2282, + 'o', 2390, + 'p', 2102, + 'q', 2384, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2210, + 'w', 2195, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); + lookahead == ' ') SKIP(1694); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '0' || '@' < lookahead) && + (lookahead < ']' || 'w' < lookahead)) ADVANCE(2403); END_STATE(); case 1695: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 432, - '-', 3638, - '.', 433, - '0', 3945, - ':', 4089, - ';', 3555, - '=', 454, - '>', 3612, - 'I', 1596, - 'N', 1583, - '[', 3591, - '_', 470, - '`', 481, - 'a', 1065, - 'c', 599, - 'd', 761, - 'e', 381, - 'f', 597, - 'i', 838, - 'm', 507, - 'n', 1219, - 'o', 387, - 't', 1292, - 'u', 1390, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 433, + '-', 3639, + '.', 434, + '0', 3946, + ':', 4090, + ';', 3556, + '=', 455, + '>', 3613, + '@', 3616, + 'I', 1597, + 'N', 1584, + '[', 3592, + '_', 471, + '`', 482, + 'a', 1066, + 'c', 600, + 'd', 762, + 'e', 382, + 'f', 598, + 'i', 839, + 'm', 508, + 'n', 1220, + 'o', 388, + 't', 1293, + 'u', 1391, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1695); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3968); + lookahead == ' ') SKIP(1696); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3969); END_STATE(); case 1696: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 3814, - '-', 3637, - '.', 2062, - '0', 3942, - ':', 3589, - ';', 3555, - '=', 1786, - '>', 3612, - 'I', 2399, - 'N', 2397, - '[', 3591, - ']', 3592, - '^', 4110, - '_', 2077, - '`', 481, - 'a', 2230, - 'b', 2205, - 'c', 2112, - 'd', 2107, - 'e', 2083, - 'f', 2084, - 'g', 2197, - 'h', 2096, - 'i', 2075, - 'j', 2333, - 'k', 2138, - 'l', 2158, - 'm', 2105, - 'n', 2281, - 'o', 2389, - 'p', 2101, - 'q', 2383, - 'r', 2088, - 's', 2125, - 't', 2091, - 'u', 2291, - 'v', 2209, - 'w', 2194, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 433, + '-', 3639, + '.', 434, + '0', 3946, + ':', 4090, + ';', 3556, + '=', 455, + '>', 3613, + 'I', 1597, + 'N', 1584, + '[', 3592, + '_', 471, + '`', 482, + 'a', 1066, + 'c', 600, + 'd', 762, + 'e', 382, + 'f', 598, + 'i', 839, + 'm', 508, + 'n', 1220, + 'o', 388, + 't', 1293, + 'u', 1391, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1696); - if (lookahead == '!' || - ('&' <= lookahead && lookahead <= ',') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3965); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '0' || '@' < lookahead)) ADVANCE(2402); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3969); END_STATE(); case 1697: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4363, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 3815, + '-', 3638, + '.', 2063, '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, - 'I', 4425, - 'i', 4425, + ':', 3590, + ';', 3556, + '=', 1787, + '>', 3613, + 'I', 2400, + 'N', 2398, + '[', 3592, + ']', 3593, + '^', 4111, + '_', 2078, + '`', 482, + 'a', 2231, + 'b', 2206, + 'c', 2113, + 'd', 2108, + 'e', 2084, + 'f', 2085, + 'g', 2198, + 'h', 2097, + 'i', 2076, + 'j', 2334, + 'k', 2139, + 'l', 2159, + 'm', 2106, + 'n', 2282, + 'o', 2390, + 'p', 2102, + 'q', 2384, + 'r', 2089, + 's', 2126, + 't', 2092, + 'u', 2292, + 'v', 2210, + 'w', 2195, + '{', 3702, + '|', 3557, + '}', 3703, ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1697); + if (lookahead == '!' || + ('&' <= lookahead && lookahead <= ',') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + (lookahead < '0' || '@' < lookahead)) ADVANCE(2403); END_STATE(); case 1698: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3361, - ';', 3555, - '=', 4292, - 'N', 3483, - '[', 3591, - '_', 3362, - '`', 481, - 'e', 3344, - 'f', 3366, - 'n', 3469, - 'o', 3345, - 't', 3438, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4364, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, + 'I', 4426, + 'i', 4426, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3495); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3365); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1699: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3943, - ';', 3555, - '=', 4292, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3362, + ';', 3556, + '=', 4293, + 'N', 3484, + '[', 3592, + '_', 3363, + '`', 482, + 'e', 3345, + 'f', 3367, + 'n', 3470, + 'o', 3346, + 't', 3439, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(3496); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3366); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3517); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1700: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3943, - ';', 3555, - 'E', 4388, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4352, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3944, + ';', 3556, + '=', 4293, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1701: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3943, - ';', 3555, - 'N', 4422, - '[', 4036, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3944, + ';', 3556, + 'E', 4389, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4353, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1702: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 4037, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1703: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4360, - '0', 3874, - ';', 3555, - 'E', 4388, - 'N', 4422, - '[', 3591, - '_', 4386, - '`', 481, - 'e', 4352, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1704: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4100, - '0', 3943, - ';', 3555, - '?', 3763, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4361, + '0', 3875, + ';', 3556, + 'E', 4389, + 'N', 4423, + '[', 3592, + '_', 4387, + '`', 482, + 'e', 4353, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1706); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1705: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4100, - '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4101, + '0', 3944, + ';', 3556, + '?', 3764, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1707); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1706: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4095, - '0', 3943, - ';', 3555, - '?', 3763, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4101, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1706); + lookahead == ' ') SKIP(1708); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1707: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4095, - '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4096, + '0', 3944, + ';', 3556, + '?', 3764, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1707); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1708: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4362, - '0', 3943, - ';', 3555, - 'E', 4388, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4352, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4096, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1708); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1709: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4362, - '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4363, + '0', 3944, + ';', 3556, + 'E', 4389, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4353, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1710: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 4362, - '0', 3874, - ';', 3555, - 'E', 4388, - 'N', 4422, - '[', 3591, - '_', 4386, - '`', 481, - 'e', 4352, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4363, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1711: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 3850, - '0', 3943, - ';', 3555, - 'E', 4388, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4352, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 4363, + '0', 3875, + ';', 3556, + 'E', 4389, + 'N', 4423, + '[', 3592, + '_', 4387, + '`', 482, + 'e', 4353, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3890); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1712: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3625, - '.', 3836, - '0', 3943, - ';', 3555, - 'E', 4388, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4352, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 3851, + '0', 3944, + ';', 3556, + 'E', 4389, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4353, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1713: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4364, - '-', 3633, - '.', 4360, - '0', 4306, - ';', 3555, - '=', 4292, - 'N', 4326, - '[', 3591, - '_', 4307, - '`', 481, - 'e', 4293, - 'f', 4311, - 'n', 4325, - 'o', 4294, - 't', 4317, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3626, + '.', 3837, + '0', 3944, + ';', 3556, + 'E', 4389, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4353, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4331); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4310); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1714: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3873, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4506, - '`', 481, - 'd', 4522, - 'e', 4453, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4365, + '-', 3632, + '.', 4361, + '0', 4307, + ';', 3556, + '=', 4293, + 'N', 4327, + '[', 3592, + '_', 4308, + '`', 482, + 'e', 4294, + 'f', 4312, + 'n', 4326, + 'o', 4295, + 't', 4318, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3888); + lookahead == 'i') ADVANCE(4332); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4311); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1715: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3947, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4511, - '`', 481, - 'd', 4522, - 'e', 4453, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3874, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4507, + '`', 482, + 'd', 4523, + 'e', 4454, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3889); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1716: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4478, - '0', 3947, - ';', 3555, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4511, - '`', 481, - 'd', 4522, - 'e', 4447, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3948, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4521, + '`', 482, + 'd', 4523, + 'e', 4454, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1717: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 4477, - '0', 3947, - ';', 3555, - 'N', 4611, - '[', 3591, - '_', 4511, - '`', 481, - 'e', 4449, - 'f', 4521, - 'n', 4596, - 'o', 4451, - 't', 4572, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4479, + '0', 3948, + ';', 3556, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4521, + '`', 482, + 'd', 4523, + 'e', 4448, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1718: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4481, - '-', 3630, - '.', 3853, - '0', 3947, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'N', 4611, - 'P', 4503, - 'T', 4503, - '[', 3591, - '_', 4511, - '`', 481, - 'd', 4522, - 'e', 4453, - 'f', 4521, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4580, - 'o', 4451, - 'p', 4502, - 's', 4534, - 't', 4501, - 'u', 4581, - 'w', 4547, - '{', 3701, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 4478, + '0', 3948, + ';', 3556, + 'N', 4612, + '[', 3592, + '_', 4521, + '`', 482, + 'e', 4450, + 'f', 4522, + 'n', 4597, + 'o', 4452, + 't', 4573, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4620); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3970); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4643); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1719: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '$', 3597, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4365, - '-', 3626, - '.', 4361, - '0', 3943, - ';', 3555, - 'N', 4422, - '[', 3591, - '_', 4377, - '`', 481, - 'e', 4350, - 'f', 4390, - 'n', 4418, - 'o', 4351, - 't', 4405, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4482, + '-', 3631, + '.', 3853, + '0', 3948, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'N', 4612, + 'P', 4504, + 'T', 4504, + '[', 3592, + '_', 4521, + '`', 482, + 'd', 4523, + 'e', 4454, + 'f', 4522, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4581, + 'o', 4452, + 'p', 4503, + 's', 4535, + 't', 4502, + 'u', 4582, + 'w', 4548, + '{', 3702, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1719); + lookahead == ' ') SKIP(1703); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4425); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3966); + lookahead == 'i') ADVANCE(4621); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3971); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4445); + lookahead != ']') ADVANCE(4644); END_STATE(); case 1720: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '\'', 375, - ')', 3594, - '*', 3759, - '+', 2060, - '-', 431, - '.', 4104, - ';', 3555, - '?', 3763, - 'I', 2843, - 'N', 2835, - '[', 3591, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, - '}', 3702, + '"', 4067, + '#', 5463, + '$', 3598, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4366, + '-', 3627, + '.', 4362, + '0', 3944, + ';', 3556, + 'N', 4423, + '[', 3592, + '_', 4378, + '`', 482, + 'e', 4351, + 'f', 4391, + 'n', 4419, + 'o', 4352, + 't', 4406, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1720); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4426); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(3967); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '?' < lookahead) && - (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + lookahead != ']') ADVANCE(4446); END_STATE(); case 1721: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '\'', 375, - ')', 3594, - '*', 3759, - '+', 2060, - '-', 431, - '.', 4104, - ';', 3555, - 'I', 2843, - 'N', 2835, - '[', 3591, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, - '}', 3702, + '"', 4067, + '#', 5463, + '\'', 376, + ')', 3595, + '*', 3760, + '+', 2061, + '-', 432, + '.', 4105, + ';', 3556, + '?', 3764, + 'I', 2844, + 'N', 2836, + '[', 3592, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1721); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && - (lookahead < '0' || '>' < lookahead) && + (lookahead < '0' || '?' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 1722: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5462, - '\'', 375, - ')', 3594, - '*', 3759, - '+', 2060, - '-', 431, - '.', 2442, - ';', 3555, - 'I', 2843, - 'N', 2835, - '[', 3591, - '_', 2445, - '`', 481, - 'a', 2645, - 'b', 2735, - 'c', 2477, - 'd', 2527, - 'e', 2641, - 'f', 2455, - 'h', 2607, - 'i', 2440, - 'l', 2562, - 'm', 2476, - 'n', 2806, - 'o', 2824, - 'r', 2563, - 's', 2694, - 't', 2736, - 'u', 2761, - 'w', 2587, - '}', 3702, + '"', 4067, + '#', 5463, + '\'', 376, + ')', 3595, + '*', 3760, + '+', 2061, + '-', 432, + '.', 4105, + ';', 3556, + 'I', 2844, + 'N', 2836, + '[', 3592, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1722); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && (lookahead < '\'' || '+' < lookahead) && (lookahead < '0' || '>' < lookahead) && (lookahead < ']' || 'f' < lookahead) && - (lookahead < '{' || '}' < lookahead)) ADVANCE(2855); + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 1723: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5468, - '$', 3598, - '\'', 375, - '(', 3793, - ')', 3594, - '+', 4673, - '-', 3631, - '.', 4674, - '0', 4695, - ';', 3555, - 'N', 4859, - '[', 3591, - '_', 4697, - '`', 481, - 'e', 4654, - 'f', 4707, - 'n', 4835, - 'o', 4656, - 't', 4793, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5463, + '\'', 376, + ')', 3595, + '*', 3760, + '+', 2061, + '-', 432, + '.', 2443, + ';', 3556, + 'I', 2844, + 'N', 2836, + '[', 3592, + '_', 2446, + '`', 482, + 'a', 2646, + 'b', 2736, + 'c', 2478, + 'd', 2528, + 'e', 2642, + 'f', 2456, + 'h', 2608, + 'i', 2441, + 'l', 2563, + 'm', 2477, + 'n', 2807, + 'o', 2825, + 'r', 2564, + 's', 2695, + 't', 2737, + 'u', 2762, + 'w', 2588, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4700); + lookahead == ' ') SKIP(1723); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4899); + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || '+' < lookahead) && + (lookahead < '0' || '>' < lookahead) && + (lookahead < ']' || 'f' < lookahead) && + (lookahead < '{' || '}' < lookahead)) ADVANCE(2856); END_STATE(); case 1724: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '"', 4066, - '#', 5468, - '$', 3598, - '\'', 375, - '(', 3593, - ')', 3594, - '+', 4673, - '-', 3631, - '.', 4674, - '0', 4695, - ';', 3555, - 'N', 4859, - '[', 3591, - '_', 4697, - '`', 481, - 'e', 4654, - 'f', 4707, - 'n', 4835, - 'o', 4656, - 't', 4793, - '{', 3701, - '|', 3556, - '}', 3702, + '"', 4067, + '#', 5469, + '$', 3599, + '\'', 376, + '(', 3794, + ')', 3595, + '+', 4674, + '-', 3634, + '.', 4675, + '0', 4696, + ';', 3556, + 'N', 4860, + '[', 3592, + '_', 4698, + '`', 482, + 'e', 4655, + 'f', 4708, + 'n', 4836, + 'o', 4657, + 't', 4794, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1702); + lookahead == ' ') SKIP(1703); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4869); - if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4700); + lookahead == 'i') ADVANCE(4870); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4701); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ']') ADVANCE(4899); + lookahead != ']') ADVANCE(4900); END_STATE(); case 1725: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '.', 3858, - ';', 3555, - '[', 4036, - '_', 4506, - 'e', 4465, - 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, - '+', 4480, - '-', 4480, + '"', 4067, + '#', 5469, + '$', 3599, + '\'', 376, + '(', 3594, + ')', 3595, + '+', 4674, + '-', 3634, + '.', 4675, + '0', 4696, + ';', 3556, + 'N', 4860, + '[', 3592, + '_', 4698, + '`', 482, + 'e', 4655, + 'f', 4708, + 'n', 4836, + 'o', 4657, + 't', 4794, + '{', 3702, + '|', 3557, + '}', 3703, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1703); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4870); + if (('1' <= lookahead && lookahead <= '9')) ADVANCE(4701); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - (lookahead < '"' || '$' < lookahead) && - (lookahead < '\'' || ')' < lookahead) && - lookahead != ']' && - lookahead != '_' && - lookahead != '`' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4643); + lookahead != ']') ADVANCE(4900); END_STATE(); case 1726: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '.', 3858, - ';', 3555, - '_', 4506, - 'a', 4555, - 'e', 4465, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '.', 3859, + ';', 3556, + '[', 4037, + '_', 4507, + 'e', 4466, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, + '+', 4481, + '-', 4481, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1734); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if (lookahead != 0 && + (lookahead < '\t' || '\r' < lookahead) && + (lookahead < '"' || '$' < lookahead) && + (lookahead < '\'' || ')' < lookahead) && + lookahead != ']' && + lookahead != '_' && + lookahead != '`' && + (lookahead < '{' || '}' < lookahead)) ADVANCE(4644); END_STATE(); case 1727: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '.', 4508, - ';', 3555, - '_', 4506, - 'a', 4555, - 'e', 4465, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '.', 3859, + ';', 3556, + '_', 4507, + 'a', 4556, + 'e', 4466, + 'o', 4467, + 'x', 4565, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1734); + lookahead == ' ') SKIP(1735); if (lookahead == '+' || - lookahead == '-') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1728: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - '(', 3793, - ')', 3594, - '.', 4508, - ';', 3555, - '_', 4506, - 'e', 4465, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '.', 4509, + ';', 3556, + '_', 4507, + 'a', 4556, + 'e', 4466, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, - '+', 4480, - '-', 4480, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1735); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1729: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - '.', 4099, - ':', 3589, - ';', 3555, - '=', 1786, - '?', 3763, - '[', 4036, - 'a', 1134, - 'e', 383, - 'i', 1109, - 'o', 386, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '#', 5463, + '$', 3597, + '(', 3794, + ')', 3595, + '.', 4509, + ';', 3556, + '_', 4507, + 'e', 4466, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, + '+', 4481, + '-', 4481, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1731); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1730: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - '.', 4099, - ';', 3555, - '=', 4292, - '?', 3763, - 'e', 3348, - 'o', 3349, - '{', 3701, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + '.', 4100, + ':', 3590, + ';', 3556, + '=', 1787, + '?', 3764, + '[', 4037, + 'a', 1135, + 'e', 384, + 'i', 1110, + 'o', 387, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1732); END_STATE(); case 1731: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - '.', 4093, - ':', 3589, - ';', 3555, - '=', 1786, - '?', 3763, - 'a', 1134, - 'e', 383, - 'i', 1109, - 'o', 386, - 'x', 1218, - '{', 3701, - '|', 3556, - '}', 3702, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + '.', 4100, + ';', 3556, + '=', 4293, + '?', 3764, + 'e', 3349, + 'o', 3350, + '{', 3702, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1731); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3517); END_STATE(); case 1732: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - ';', 3555, - '=', 4292, - 'a', 3452, - '{', 3701, - '}', 3702, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + '.', 4094, + ':', 3590, + ';', 3556, + '=', 1787, + '?', 3764, + 'a', 1135, + 'e', 384, + 'i', 1110, + 'o', 387, + 'x', 1219, + '{', 3702, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1733); - if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3516); + lookahead == ' ') SKIP(1732); END_STATE(); case 1733: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '-', 3624, - ';', 3555, - 'a', 1360, - '{', 3701, - '}', 3702, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + ';', 3556, + '=', 4293, + 'a', 3453, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1733); + lookahead == ' ') SKIP(1734); + if (set_contains(sym_long_flag_identifier_character_set_1, 669, lookahead)) ADVANCE(3517); END_STATE(); case 1734: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '$', 3596, - ')', 3594, - '.', 474, - ';', 3555, - 'a', 1133, - 'e', 383, - 'o', 386, - 'x', 1218, - '|', 3556, - '}', 3702, + '#', 5463, + '$', 3597, + ')', 3595, + '-', 3625, + ';', 3556, + 'a', 1361, + '{', 3702, + '}', 3703, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1734); - if (lookahead == '+' || - lookahead == '-') ADVANCE(437); END_STATE(); case 1735: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 3848, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'd', 4522, - 'e', 4458, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'o', 4466, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '#', 5463, + '$', 3597, + ')', 3595, + '.', 475, + ';', 3556, + 'a', 1134, + 'e', 384, + 'o', 387, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1735); + if (lookahead == '+' || + lookahead == '-') ADVANCE(438); END_STATE(); case 1736: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 3848, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4458, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 3849, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'd', 4523, + 'e', 4459, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, 'o', 4467, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - '}', 3702, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1737: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 3848, - ';', 3555, - 'E', 4517, - 'a', 4555, - 'e', 4460, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 3849, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4459, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'o', 4468, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + '}', 3703, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1738: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 3848, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 3849, + ';', 3556, 'E', 4517, - 'e', 4460, + 'a', 4556, + 'e', 4461, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1739: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'a', 4555, - 'd', 4522, - 'e', 4458, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'o', 4466, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 3849, + ';', 3556, + 'E', 4517, + 'e', 4461, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1740: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'd', 4522, - 'e', 4458, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'a', 4556, + 'd', 4523, + 'e', 4459, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, 'o', 4467, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - '}', 3702, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1741: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'd', 4522, - 'e', 4458, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'o', 4466, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'd', 4523, + 'e', 4459, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'o', 4468, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + '}', 3703, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1742: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4458, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'd', 4523, + 'e', 4459, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, 'o', 4467, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - '}', 3702, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1743: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4555, - 'd', 4522, - 'e', 4463, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'o', 4466, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - 'x', 4564, - '|', 3556, - '}', 3702, - 0xb5, 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4459, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'o', 4468, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + '}', 3703, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1744: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'd', 4522, - 'e', 4463, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4556, + 'd', 4523, + 'e', 4464, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, 'o', 4467, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '|', 3556, - '}', 3702, - 0xb5, 4581, - '\t', 3554, - ' ', 3554, - 'B', 4015, - 'b', 4015, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + 'x', 4565, + '|', 3557, + '}', 3703, + 0xb5, 4582, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1745: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'E', 4517, - '_', 4506, - 'a', 4555, - 'e', 4460, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'd', 4523, + 'e', 4464, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'o', 4468, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '|', 3557, + '}', 3703, + 0xb5, 4582, + '\t', 3555, + ' ', 3555, + 'B', 4016, + 'b', 4016, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1746: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, 'E', 4517, - '_', 4506, - 'e', 4460, + '_', 4507, + 'a', 4556, + 'e', 4461, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1747: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, 'E', 4517, - 'a', 4555, - 'e', 4460, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '_', 4507, + 'e', 4461, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1748: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, 'E', 4517, - 'e', 4460, + 'a', 4556, + 'e', 4461, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1749: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'a', 4555, - 'e', 4465, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'E', 4517, + 'e', 4461, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1750: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 4479, - ';', 3555, - 'e', 4465, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'a', 4556, + 'e', 4466, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1751: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 3834, - ';', 3555, - 'E', 4517, - 'a', 4555, - 'e', 4460, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 4480, + ';', 3556, + 'e', 4466, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1752: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - '.', 3834, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 3835, + ';', 3556, 'E', 4517, - 'e', 4460, + 'a', 4556, + 'e', 4461, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1753: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + '.', 3835, + ';', 3556, 'E', 4517, - '_', 4506, - 'a', 4555, - 'e', 4460, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + 'e', 4461, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1754: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + ';', 3556, 'E', 4517, - '_', 4506, - 'e', 4460, + '_', 4507, + 'a', 4556, + 'e', 4461, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1755: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + ';', 3556, 'E', 4517, - 'a', 4555, - 'e', 4460, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '_', 4507, + 'e', 4461, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1756: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - ';', 3555, + '#', 5463, + '(', 3794, + ')', 3595, + ';', 3556, 'E', 4517, - 'e', 4460, + 'a', 4556, + 'e', 4461, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1757: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - ';', 3555, - 'a', 4555, - 'e', 4465, - 'o', 4466, - 'x', 4564, - '|', 3556, - '}', 3702, + '#', 5463, + '(', 3794, + ')', 3595, + ';', 3556, + 'E', 4517, + 'e', 4461, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1758: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - '(', 3793, - ')', 3594, - ';', 3555, - 'e', 4465, + '#', 5463, + '(', 3794, + ')', 3595, + ';', 3556, + 'a', 4556, + 'e', 4466, 'o', 4467, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4565, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1759: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - '.', 3848, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4582, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '}', 3702, - 0xb5, 4581, + '#', 5463, + '(', 3794, + ')', 3595, + ';', 3556, + 'e', 4466, + 'o', 4468, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1760: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - '.', 4479, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - '_', 4506, - 'a', 4582, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '}', 3702, - 0xb5, 4581, + '#', 5463, + ')', 3595, + '-', 3625, + '.', 3849, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4583, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); + lookahead == ' ') SKIP(1766); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1761: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - '.', 4479, - ';', 3555, - 'E', 4499, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4582, - 'd', 4522, - 'e', 4498, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '}', 3702, - 0xb5, 4581, + '#', 5463, + ')', 3595, + '-', 3625, + '.', 4480, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + '_', 4507, + 'a', 4583, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); + lookahead == ' ') SKIP(1766); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1762: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - '.', 4479, - ';', 3555, - 'E', 4503, - 'G', 4503, - 'K', 4503, - 'M', 4503, - 'P', 4503, - 'T', 4503, - 'a', 4582, - 'd', 4522, - 'e', 4502, - 'g', 4502, - 'h', 4571, - 'k', 4502, - 'm', 4505, - 'n', 4581, - 'p', 4502, - 's', 4534, - 't', 4502, - 'u', 4581, - 'w', 4547, - '}', 3702, - 0xb5, 4581, + '#', 5463, + ')', 3595, + '-', 3625, + '.', 4480, + ';', 3556, + 'E', 4500, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4583, + 'd', 4523, + 'e', 4499, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); + lookahead == ' ') SKIP(1766); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1763: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - ';', 3555, - '=', 4292, - 'a', 1360, - '}', 3702, + '#', 5463, + ')', 3595, + '-', 3625, + '.', 4480, + ';', 3556, + 'E', 4504, + 'G', 4504, + 'K', 4504, + 'M', 4504, + 'P', 4504, + 'T', 4504, + 'a', 4583, + 'd', 4523, + 'e', 4503, + 'g', 4503, + 'h', 4572, + 'k', 4503, + 'm', 4506, + 'n', 4582, + 'p', 4503, + 's', 4535, + 't', 4503, + 'u', 4582, + 'w', 4548, + '}', 3703, + 0xb5, 4582, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); + lookahead == ' ') SKIP(1766); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1764: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - ';', 3555, - 'a', 4582, - '}', 3702, + '#', 5463, + ')', 3595, + '-', 3625, + ';', 3556, + '=', 4293, + 'a', 1361, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == ' ') SKIP(1766); END_STATE(); case 1765: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3624, - ';', 3555, - 'a', 1360, - '}', 3702, + '#', 5463, + ')', 3595, + '-', 3625, + ';', 3556, + 'a', 4583, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); + lookahead == ' ') SKIP(1766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 1766: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - '-', 3634, - ';', 3555, - '=', 4292, - 'a', 4320, - '}', 3702, + '#', 5463, + ')', 3595, + '-', 3625, + ';', 3556, + 'a', 1361, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == ' ') SKIP(1766); END_STATE(); case 1767: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - ';', 3555, - '=', 4292, - 'e', 4297, - 'o', 4298, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + '#', 5463, + ')', 3595, + '-', 3633, + ';', 3556, + '=', 4293, + 'a', 4321, + '}', 3703, ); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1766); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 1768: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5462, - ')', 3594, - ';', 3555, - 'a', 1133, - 'e', 383, - 'o', 386, - 'x', 1218, - '|', 3556, - '}', 3702, + '#', 5463, + ')', 3595, + ';', 3556, + '=', 4293, + 'e', 4298, + 'o', 4299, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 1769: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5468, - '(', 3793, - ')', 3594, - ';', 3555, - 'a', 4770, - 'e', 4660, - 'o', 4661, - 'x', 4785, - '|', 3556, - '}', 3702, + '#', 5463, + ')', 3595, + ';', 3556, + 'a', 1134, + 'e', 384, + 'o', 387, + 'x', 1219, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == ' ') SKIP(1769); END_STATE(); case 1770: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5468, - '(', 3793, - ')', 3594, - ';', 3555, - 'e', 4660, + '#', 5469, + '(', 3794, + ')', 3595, + ';', 3556, + 'a', 4771, + 'e', 4661, 'o', 4662, - '|', 3556, - '}', 3702, - '\t', 3554, - ' ', 3554, + 'x', 4786, + '|', 3557, + '}', 3703, ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 1771: - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '#', 5468, - ')', 3594, - '-', 3632, - ';', 3555, - 'a', 4814, - '}', 3702, + '#', 5469, + '(', 3794, + ')', 3595, + ';', 3556, + 'e', 4661, + 'o', 4663, + '|', 3557, + '}', 3703, + '\t', 3555, + ' ', 3555, ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 1772: - ACCEPT_TOKEN(ts_builtin_sym_end); + if (eof) ADVANCE(1773); + ADVANCE_MAP( + '\n', 3553, + '\r', 1, + '#', 5469, + ')', 3595, + '-', 3635, + ';', 3556, + 'a', 4815, + '}', 3703, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 1773: - ACCEPT_TOKEN(anon_sym_POUND_BANG); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 1774: - ACCEPT_TOKEN(aux_sym_shebang_token1); + ACCEPT_TOKEN(anon_sym_POUND_BANG); END_STATE(); case 1775: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1774); - if (lookahead == '\r') ADVANCE(1776); - if (lookahead == '#') ADVANCE(5463); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(1775); - if (lookahead != 0) ADVANCE(1776); END_STATE(); case 1776: ACCEPT_TOKEN(aux_sym_shebang_token1); - if (lookahead == '\n') ADVANCE(1774); - if (lookahead == '\r') ADVANCE(1776); - if (lookahead != 0) ADVANCE(1776); + if (lookahead == '\n') ADVANCE(1775); + if (lookahead == '\r') ADVANCE(1777); + if (lookahead == '#') ADVANCE(5464); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(1776); + if (lookahead != 0) ADVANCE(1777); END_STATE(); case 1777: - ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == '-') ADVANCE(3028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); + ACCEPT_TOKEN(aux_sym_shebang_token1); + if (lookahead == '\n') ADVANCE(1775); + if (lookahead == '\r') ADVANCE(1777); + if (lookahead != 0) ADVANCE(1777); END_STATE(); case 1778: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == '-') ADVANCE(5327); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5330); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == '-') ADVANCE(3029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); END_STATE(); case 1779: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3032); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == '-') ADVANCE(5328); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 1780: ACCEPT_TOKEN(anon_sym_export); - if (lookahead == '-') ADVANCE(3032); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == '-') ADVANCE(3033); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3039); END_STATE(); case 1781: - ACCEPT_TOKEN(anon_sym_alias); + ACCEPT_TOKEN(anon_sym_export); + if (lookahead == '-') ADVANCE(3033); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 1782: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2889); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5319); END_STATE(); case 1783: ACCEPT_TOKEN(anon_sym_alias); - if (lookahead == ',') ADVANCE(2889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); + if (lookahead == ',') ADVANCE(2890); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); case 1784: ACCEPT_TOKEN(anon_sym_alias); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2889); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2888); + if (lookahead == ',') ADVANCE(2890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2888); END_STATE(); case 1785: ACCEPT_TOKEN(anon_sym_alias); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2890); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2889); END_STATE(); case 1786: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_alias); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); END_STATE(); case 1787: ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') ADVANCE(3777); - if (lookahead == '~') ADVANCE(3788); END_STATE(); case 1788: ACCEPT_TOKEN(anon_sym_EQ); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '~') ADVANCE(3789); END_STATE(); case 1789: - ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == '-') ADVANCE(2901); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); + ACCEPT_TOKEN(anon_sym_EQ); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 1790: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == '-') ADVANCE(5297); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == '-') ADVANCE(2902); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 1791: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2905); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2912); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2911); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == '-') ADVANCE(5298); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 1792: ACCEPT_TOKEN(anon_sym_let); - if (lookahead == '-') ADVANCE(2905); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == '-') ADVANCE(2906); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2913); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2912); END_STATE(); case 1793: - ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2912); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); + ACCEPT_TOKEN(anon_sym_let); + if (lookahead == '-') ADVANCE(2906); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 1794: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if (lookahead == ',') ADVANCE(2912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); + if (lookahead == ',') ADVANCE(2913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 1795: ACCEPT_TOKEN(anon_sym_let_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == ',') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 1796: - ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2915); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); + ACCEPT_TOKEN(anon_sym_let_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 1797: ACCEPT_TOKEN(anon_sym_mut); - if (lookahead == ',') ADVANCE(2915); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); + if (lookahead == ',') ADVANCE(2916); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5302); END_STATE(); case 1798: ACCEPT_TOKEN(anon_sym_mut); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2915); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2914); + if (lookahead == ',') ADVANCE(2916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2914); END_STATE(); case 1799: ACCEPT_TOKEN(anon_sym_mut); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2916); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2915); END_STATE(); case 1800: - ACCEPT_TOKEN(anon_sym_const); + ACCEPT_TOKEN(anon_sym_mut); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); END_STATE(); case 1801: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2918); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); END_STATE(); case 1802: ACCEPT_TOKEN(anon_sym_const); - if (lookahead == ',') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); + if (lookahead == ',') ADVANCE(2919); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5323); END_STATE(); case 1803: ACCEPT_TOKEN(anon_sym_const); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2918); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2917); + if (lookahead == ',') ADVANCE(2919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); case 1804: ACCEPT_TOKEN(anon_sym_const); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2919); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2918); END_STATE(); case 1805: - ACCEPT_TOKEN(anon_sym_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_const); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2919); END_STATE(); case 1806: - ACCEPT_TOKEN(anon_sym_DASH_EQ); + ACCEPT_TOKEN(anon_sym_PLUS_EQ); END_STATE(); case 1807: - ACCEPT_TOKEN(anon_sym_STAR_EQ); + ACCEPT_TOKEN(anon_sym_DASH_EQ); END_STATE(); case 1808: - ACCEPT_TOKEN(anon_sym_SLASH_EQ); + ACCEPT_TOKEN(anon_sym_STAR_EQ); END_STATE(); case 1809: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); + ACCEPT_TOKEN(anon_sym_SLASH_EQ); END_STATE(); case 1810: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(484); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS_EQ); END_STATE(); case 1811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(484); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(485); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(489); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(489); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(490); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(604); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(605); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(482); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(482); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(483); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(632); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(483); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(633); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(612); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(612); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(613); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(633); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(613); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(634); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(609); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(610); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(864); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(865); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(514); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(865); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(514); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(515); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(834); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(515); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(834); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(835); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(645); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(835); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(645); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(646); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(603); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(646); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(603); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(604); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1071); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(604); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(1072); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(509); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(1072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(509); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(510); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(700); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(510); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(701); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1249); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(1250); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(495); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(1250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(495); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(496); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(618); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(618); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(619); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(692); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(619); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(693); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1499); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1499); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(1500); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(661); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(1500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(662); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1278); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1278); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(1279); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(844); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(1279); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(845); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(497); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(498); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(483); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(498); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(483); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(484); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(684); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(484); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(685); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(510); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(511); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(626); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(626); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(627); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(782); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(627); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(783); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(621); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(622); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(487); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(487); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(488); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(500); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(500); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(501); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(610); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(501); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(610); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(611); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(670); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(611); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(671); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(545); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(546); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(769); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(546); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(769); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(770); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1884: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(697); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(770); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(698); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(922); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1887: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(923); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1542); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(1542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(1543); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1890: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(958); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(1543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(959); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(665); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1893: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(666); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(669); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1895: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(670); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(919); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ' ') ADVANCE(670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ' ') ADVANCE(919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ' ') ADVANCE(920); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1898: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3933); - if (lookahead == '(') ADVANCE(3829); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '{') ADVANCE(4083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ' ') ADVANCE(920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '$') ADVANCE(3933); - if (lookahead == '(') ADVANCE(3829); - if (lookahead == '{') ADVANCE(4083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '{') ADVANCE(4084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2672); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'l') ADVANCE(2752); - if (lookahead == 'n') ADVANCE(2503); - if (lookahead == 'r') ADVANCE(2710); - if (lookahead == 'x') ADVANCE(2706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '{') ADVANCE(4084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1901: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2528); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'r') ADVANCE(3769); - if (lookahead == 'u') ADVANCE(2775); - if (lookahead == 'v') ADVANCE(2536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '+') ADVANCE(2673); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'l') ADVANCE(2753); + if (lookahead == 'n') ADVANCE(2504); + if (lookahead == 'r') ADVANCE(2711); + if (lookahead == 'x') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2674); - if (lookahead == '>') ADVANCE(4237); - if (lookahead == 'o') ADVANCE(2713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '+') ADVANCE(2529); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(2776); + if (lookahead == 'v') ADVANCE(2537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '+', 2272, - '=', 4108, - '>', 1573, - 'a', 2117, - 'l', 2336, - 'n', 2120, - 'r', 2307, - 'x', 2300, - ); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == '+') ADVANCE(2675); + if (lookahead == '>') ADVANCE(4238); + if (lookahead == 'o') ADVANCE(2714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2279); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '>') ADVANCE(1576); - if (lookahead == 'o') ADVANCE(2315); + ADVANCE_MAP( + '+', 2273, + '=', 4109, + '>', 1574, + 'a', 2118, + 'l', 2337, + 'n', 2121, + 'r', 2308, + 'x', 2301, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2180); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(2354); - if (lookahead == 'v') ADVANCE(2182); + if (lookahead == '+') ADVANCE(2280); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '>') ADVANCE(1577); + if (lookahead == 'o') ADVANCE(2316); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2545); - if (lookahead == '>') ADVANCE(4241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '+') ADVANCE(2181); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '>') ADVANCE(1575); + if (lookahead == 'u') ADVANCE(2355); + if (lookahead == 'v') ADVANCE(2183); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '+') ADVANCE(2172); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '>') ADVANCE(1578); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == '+') ADVANCE(2546); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 1908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '.') ADVANCE(1910); - if (lookahead == '_') ADVANCE(1924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == '+') ADVANCE(2173); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '>') ADVANCE(1579); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 1909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '.') ADVANCE(1910); - if (lookahead == '_') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '.') ADVANCE(1911); + if (lookahead == '_') ADVANCE(1925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '.') ADVANCE(1898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '.') ADVANCE(1911); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '.') ADVANCE(3831); - if (lookahead == '_') ADVANCE(1924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '.') ADVANCE(1899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '.') ADVANCE(1923); - if (lookahead == '_') ADVANCE(1912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '.') ADVANCE(3832); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1913: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '.') ADVANCE(1928); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '.') ADVANCE(1924); if (lookahead == '_') ADVANCE(1913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - ',', 2855, - 'I', 2036, - '_', 1934, - 'i', 2036, - 'l', 2017, - 'r', 2006, - 'x', 1999, - '+', 1934, - '-', 1934, - 'B', 4015, - 'b', 4015, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '.') ADVANCE(1928); + if (lookahead == '_') ADVANCE(1914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 2855, - 'I', 2036, - '_', 1934, - 'i', 1942, - '+', 1934, - '-', 1934, - 'B', 4015, - 'b', 4015, + ',', 2856, + 'I', 2037, + '_', 1932, + 'i', 2037, + 'l', 2018, + 'r', 2007, + 'x', 2000, + '+', 1932, + '-', 1932, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1916: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 2855, - 'I', 2036, - 'a', 1980, - 'i', 1992, - 'o', 1947, - 's', 4022, - 'u', 2022, - 'B', 4015, - 'b', 4015, + ',', 2856, + 'I', 2037, + '_', 1932, + 'i', 1943, + '+', 1932, + '-', 1932, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - ',', 2855, - 'I', 2036, - 'i', 2036, - 'l', 2017, - 'r', 2006, - 'x', 1999, - 'B', 4015, - 'b', 4015, + ',', 2856, + 'I', 2037, + 'a', 1981, + 'i', 1993, + 'o', 1948, + 's', 4023, + 'u', 2023, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'I') ADVANCE(2036); - if (lookahead == 'i') ADVANCE(2036); - if (lookahead == 'r') ADVANCE(2028); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + ADVANCE_MAP( + ',', 2856, + 'I', 2037, + 'i', 2037, + 'l', 2018, + 'r', 2007, + 'x', 2000, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1919: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'I') ADVANCE(2036); - if (lookahead == 'i') ADVANCE(2036); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'I') ADVANCE(2037); + if (lookahead == 'i') ADVANCE(2037); + if (lookahead == 'r') ADVANCE(2029); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'I') ADVANCE(2036); - if (lookahead == 'i') ADVANCE(1942); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'I') ADVANCE(2037); + if (lookahead == 'i') ADVANCE(2037); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'N') ADVANCE(2037); - if (lookahead == 'f') ADVANCE(3687); - if (lookahead == 'n') ADVANCE(3661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'I') ADVANCE(2037); + if (lookahead == 'i') ADVANCE(1943); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '_') ADVANCE(1922); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'N') ADVANCE(2038); + if (lookahead == 'f') ADVANCE(3688); + if (lookahead == 'n') ADVANCE(3662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1923); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '_') ADVANCE(1926); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '_') ADVANCE(1925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '_') ADVANCE(1926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '_') ADVANCE(1927); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1927); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '_') ADVANCE(1931); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '_') ADVANCE(1932); + if (lookahead == 'l') ADVANCE(2018); + if (lookahead == 'r') ADVANCE(2007); + if (lookahead == 'x') ADVANCE(2000); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1931: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '_') ADVANCE(1931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '_') ADVANCE(1932); + if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '_') ADVANCE(1934); - if (lookahead == 'l') ADVANCE(2017); - if (lookahead == 'r') ADVANCE(2006); - if (lookahead == 'x') ADVANCE(1999); - if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '_') ADVANCE(1932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1934); if (('+' <= lookahead && lookahead <= '-')) ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == '_') ADVANCE(1934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(2020); - if (lookahead == 'o') ADVANCE(1989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '_') ADVANCE(1935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(1988); - if (lookahead == 'o') ADVANCE(2001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(2021); + if (lookahead == 'o') ADVANCE(1990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(1980); - if (lookahead == 'o') ADVANCE(1947); - if (lookahead == 'u') ADVANCE(2022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(1989); + if (lookahead == 'o') ADVANCE(2002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(1979); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(1981); + if (lookahead == 'o') ADVANCE(1948); + if (lookahead == 'u') ADVANCE(2023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(2033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(1980); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(2011); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(2034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'a') ADVANCE(2034); - if (lookahead == 'e') ADVANCE(1967); - if (lookahead == 'o') ADVANCE(3682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(2012); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'a') ADVANCE(2035); + if (lookahead == 'e') ADVANCE(1968); + if (lookahead == 'o') ADVANCE(3683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1943: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'c') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'c') ADVANCE(1969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == 'c') ADVANCE(1970); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1946: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'c') ADVANCE(1957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'c') ADVANCE(1971); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'd') ADVANCE(2031); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'c') ADVANCE(1958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'd') ADVANCE(1953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'd') ADVANCE(2032); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1949: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(1967); - if (lookahead == 'o') ADVANCE(3682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'd') ADVANCE(1954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == 'e') ADVANCE(1968); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == 'o') ADVANCE(3683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(1969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3739); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3740); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1958: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(3653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(2021); - if (lookahead == 'o') ADVANCE(1995); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(3654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(1938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(2022); + if (lookahead == 'o') ADVANCE(1996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1961: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(2045); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(1939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(1943); - if (lookahead == 'o') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(2046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(2046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(1944); + if (lookahead == 'o') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1964: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(2010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(2047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(2007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(2011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'e') ADVANCE(2003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(2008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1967: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'f') ADVANCE(3567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'e') ADVANCE(2004); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'g') ADVANCE(1977); - if (lookahead == 't') ADVANCE(2029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'f') ADVANCE(3568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'h') ADVANCE(3721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'g') ADVANCE(1978); + if (lookahead == 't') ADVANCE(2030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1970: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'h') ADVANCE(3698); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'h') ADVANCE(3722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'h') ADVANCE(1978); - if (lookahead == 'k') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'h') ADVANCE(3699); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'h') ADVANCE(1978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'h') ADVANCE(1979); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1973: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'i') ADVANCE(1948); - if (lookahead == 'r') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'h') ADVANCE(1979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'i') ADVANCE(1948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'i') ADVANCE(1949); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'i') ADVANCE(1940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'i') ADVANCE(1949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1976: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'i') ADVANCE(1993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'i') ADVANCE(1941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'i') ADVANCE(2018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'i') ADVANCE(1994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'i') ADVANCE(1985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'i') ADVANCE(2019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1979: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'k') ADVANCE(3649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'i') ADVANCE(1986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'k') ADVANCE(1954); - if (lookahead == 't') ADVANCE(1945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'k') ADVANCE(3650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(1975); - if (lookahead == 's') ADVANCE(3753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'k') ADVANCE(1955); + if (lookahead == 't') ADVANCE(1946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1982: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(2044); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(1976); + if (lookahead == 's') ADVANCE(3754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(1982); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(2045); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(1939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(1983); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1985: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(1955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(1940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == 'l') ADVANCE(1956); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(2017); - if (lookahead == 'r') ADVANCE(2006); - if (lookahead == 'x') ADVANCE(1999); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(1957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1988: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'l') ADVANCE(2019); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(2018); + if (lookahead == 'r') ADVANCE(2007); + if (lookahead == 'x') ADVANCE(2000); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'n') ADVANCE(2016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'l') ADVANCE(2020); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'n') ADVANCE(3575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'n') ADVANCE(2017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1991: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'n') ADVANCE(3725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'n') ADVANCE(3576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'n') ADVANCE(3726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'n') ADVANCE(2030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1994: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'o') ADVANCE(2027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'n') ADVANCE(2031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'o') ADVANCE(1998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'o') ADVANCE(2028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'o') ADVANCE(2002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'o') ADVANCE(1999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1997: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'o') ADVANCE(2009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'o') ADVANCE(2003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'p') ADVANCE(3668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'o') ADVANCE(2010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 1999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'p') ADVANCE(1997); - if (lookahead == 't') ADVANCE(1965); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'p') ADVANCE(3669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(2028); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'p') ADVANCE(1998); + if (lookahead == 't') ADVANCE(1966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(3657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(2029); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(3604); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(3658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(3736); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(3605); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(1960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(3737); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(1946); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(1961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(1996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(1947); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(1990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(1997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == 'r') ADVANCE(1991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(2024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(1992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'r') ADVANCE(1984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(2025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(1783); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'r') ADVANCE(1985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(4022); - if (lookahead == 'u') ADVANCE(1983); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(1784); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(1984); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == 's') ADVANCE(4023); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(1951); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(4024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(2023); - if (lookahead == 't') ADVANCE(1976); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(1952); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(1952); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(2024); + if (lookahead == 't') ADVANCE(1977); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(2025); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(1953); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 's') ADVANCE(1963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(2026); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 't') ADVANCE(1944); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 's') ADVANCE(1964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 't') ADVANCE(1789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 't') ADVANCE(1945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 't') ADVANCE(1797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 't') ADVANCE(1790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 't') ADVANCE(1802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 't') ADVANCE(1798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 't') ADVANCE(1777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 't') ADVANCE(1803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2025: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 't') ADVANCE(1966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 't') ADVANCE(1778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'u') ADVANCE(1983); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 't') ADVANCE(1967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'u') ADVANCE(2005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(1984); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2028: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'u') ADVANCE(1961); - if (lookahead == 'y') ADVANCE(3716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(2006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'u') ADVANCE(2008); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(1962); + if (lookahead == 'y') ADVANCE(3717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'u') ADVANCE(1958); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(2009); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'u') ADVANCE(1986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(1959); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'v') ADVANCE(1964); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'u') ADVANCE(1987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'y') ADVANCE(3748); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'v') ADVANCE(1965); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'y') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'y') ADVANCE(3749); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3989); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); + if (lookahead == ',') ADVANCE(2856); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4007); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + lookahead == 'n') ADVANCE(2038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4008); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2041: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == ',') ADVANCE(2856); + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(3987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2043); + if (lookahead == ',') ADVANCE(2856); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2044: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); + if (lookahead == ',') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2044); END_STATE(); case 2045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3041); + if (lookahead == ',') ADVANCE(3050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); END_STATE(); case 2046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ',') ADVANCE(3046); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); + if (lookahead == ',') ADVANCE(3044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); END_STATE(); case 2047: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2462); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == ',') ADVANCE(3047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); END_STATE(); case 2048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '-') ADVANCE(2463); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2594); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '-') ADVANCE(2826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2050: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2852); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '-') ADVANCE(2595); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2906); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2912); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2911); + if (lookahead == '-') ADVANCE(2853); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == '-') ADVANCE(2907); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2912); END_STATE(); case 2053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2924); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2929); + if (lookahead == '-') ADVANCE(2907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2924); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == '-') ADVANCE(2925); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2930); END_STATE(); case 2055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3033); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3038); + if (lookahead == '-') ADVANCE(2925); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(3033); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == '-') ADVANCE(3034); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3039); END_STATE(); case 2057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2936); - if (lookahead == '=') ADVANCE(4108); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2941); + if (lookahead == '-') ADVANCE(3034); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 2058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2936); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == '-') ADVANCE(2937); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2942); END_STATE(); case 2059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '-') ADVANCE(2827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '-') ADVANCE(2937); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2441); - if (lookahead == '_') ADVANCE(2060); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '-') ADVANCE(2828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(2442); + if (lookahead == '_') ADVANCE(2061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3707); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(1899); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(3708); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3830); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(1900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2065: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2063); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(3831); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2063); - if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(2064); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(2064); + if (lookahead == '_') ADVANCE(2448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '.') ADVANCE(2446); - if (lookahead == '_') ADVANCE(2068); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == ':') ADVANCE(1611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '.') ADVANCE(2447); + if (lookahead == '_') ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '>') ADVANCE(1575); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + if (lookahead == ':') ADVANCE(1612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '>') ADVANCE(1577); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '>') ADVANCE(1576); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '>') ADVANCE(1579); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '>') ADVANCE(1578); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if (lookahead == '>') ADVANCE(1580); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'N') ADVANCE(2398); - if (lookahead == 'f') ADVANCE(3688); - if (lookahead == 'n') ADVANCE(2289); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '>') ADVANCE(1581); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2075: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'N') ADVANCE(2398); - if (lookahead == 'f') ADVANCE(3688); - if (lookahead == 'n') ADVANCE(3663); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'N') ADVANCE(2399); + if (lookahead == 'f') ADVANCE(3689); + if (lookahead == 'n') ADVANCE(2290); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'N') ADVANCE(2398); - if (lookahead == 'f') ADVANCE(2405); - if (lookahead == 'n') ADVANCE(2289); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'N') ADVANCE(2399); + if (lookahead == 'f') ADVANCE(3689); + if (lookahead == 'n') ADVANCE(3664); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == '_') ADVANCE(2077); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'N') ADVANCE(2399); + if (lookahead == 'f') ADVANCE(2406); + if (lookahead == 'n') ADVANCE(2290); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2078: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2302); - if (lookahead == 'o') ADVANCE(2250); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == '_') ADVANCE(2078); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2079: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2302); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2303); if (lookahead == 'o') ADVANCE(2251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2080: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2302); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2303); if (lookahead == 'o') ADVANCE(2252); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2081: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2117); - if (lookahead == 'l') ADVANCE(2336); - if (lookahead == 'n') ADVANCE(2120); - if (lookahead == 'r') ADVANCE(2312); - if (lookahead == 'x') ADVANCE(2288); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2303); + if (lookahead == 'o') ADVANCE(2253); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2082: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2117); - if (lookahead == 'l') ADVANCE(2336); - if (lookahead == 'n') ADVANCE(2120); - if (lookahead == 'r') ADVANCE(2329); - if (lookahead == 'x') ADVANCE(2300); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2118); + if (lookahead == 'l') ADVANCE(2337); + if (lookahead == 'n') ADVANCE(2121); + if (lookahead == 'r') ADVANCE(2313); + if (lookahead == 'x') ADVANCE(2289); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2083: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2117); - if (lookahead == 'l') ADVANCE(2341); - if (lookahead == 'n') ADVANCE(2120); - if (lookahead == 'r') ADVANCE(2312); - if (lookahead == 'x') ADVANCE(2288); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2118); + if (lookahead == 'l') ADVANCE(2337); + if (lookahead == 'n') ADVANCE(2121); + if (lookahead == 'r') ADVANCE(2330); + if (lookahead == 'x') ADVANCE(2301); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2084: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2246); - if (lookahead == 'o') ADVANCE(2304); - if (lookahead == 'r') ADVANCE(2274); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2118); + if (lookahead == 'l') ADVANCE(2342); + if (lookahead == 'n') ADVANCE(2121); + if (lookahead == 'r') ADVANCE(2313); + if (lookahead == 'x') ADVANCE(2289); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2085: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2246); - if (lookahead == 'o') ADVANCE(2309); - if (lookahead == 'r') ADVANCE(2274); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2247); + if (lookahead == 'o') ADVANCE(2305); + if (lookahead == 'r') ADVANCE(2275); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2086: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2224); - if (lookahead == 'e') ADVANCE(2355); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 'u') ADVANCE(2349); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2247); + if (lookahead == 'o') ADVANCE(2310); + if (lookahead == 'r') ADVANCE(2275); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2087: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2224); - if (lookahead == 'e') ADVANCE(2355); - if (lookahead == 'o') ADVANCE(2137); - if (lookahead == 'u') ADVANCE(2361); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2225); + if (lookahead == 'e') ADVANCE(2356); + if (lookahead == 'o') ADVANCE(2129); + if (lookahead == 'u') ADVANCE(2350); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2088: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2260); - if (lookahead == 'e') ADVANCE(2186); - if (lookahead == 'o') ADVANCE(2249); - if (lookahead == 'u') ADVANCE(2339); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2225); + if (lookahead == 'e') ADVANCE(2356); + if (lookahead == 'o') ADVANCE(2138); + if (lookahead == 'u') ADVANCE(2362); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2089: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2260); - if (lookahead == 'e') ADVANCE(2193); - if (lookahead == 'o') ADVANCE(2249); - if (lookahead == 'u') ADVANCE(2339); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2261); + if (lookahead == 'e') ADVANCE(2187); + if (lookahead == 'o') ADVANCE(2250); + if (lookahead == 'u') ADVANCE(2340); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2090: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2260); - if (lookahead == 'e') ADVANCE(2192); - if (lookahead == 'o') ADVANCE(2249); - if (lookahead == 'u') ADVANCE(2339); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2261); + if (lookahead == 'e') ADVANCE(2194); + if (lookahead == 'o') ADVANCE(2250); + if (lookahead == 'u') ADVANCE(2340); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2091: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2228); - if (lookahead == 'e') ADVANCE(2323); - if (lookahead == 'o') ADVANCE(1814); - if (lookahead == 'r') ADVANCE(2377); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2261); + if (lookahead == 'e') ADVANCE(2193); + if (lookahead == 'o') ADVANCE(2250); + if (lookahead == 'u') ADVANCE(2340); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2092: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2228); - if (lookahead == 'e') ADVANCE(2323); - if (lookahead == 'o') ADVANCE(1814); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2229); + if (lookahead == 'e') ADVANCE(2324); + if (lookahead == 'o') ADVANCE(1815); if (lookahead == 'r') ADVANCE(2378); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2093: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2223); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2229); + if (lookahead == 'e') ADVANCE(2324); + if (lookahead == 'o') ADVANCE(1815); + if (lookahead == 'r') ADVANCE(2379); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2094: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2393); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2224); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2095: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2227); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2394); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2096: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2345); - if (lookahead == 'e') ADVANCE(2244); - if (lookahead == 'i') ADVANCE(2131); - if (lookahead == 't') ADVANCE(2367); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2228); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2097: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2345); - if (lookahead == 'e') ADVANCE(2244); - if (lookahead == 'i') ADVANCE(2133); - if (lookahead == 't') ADVANCE(2367); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2346); + if (lookahead == 'e') ADVANCE(2245); + if (lookahead == 'i') ADVANCE(2132); + if (lookahead == 't') ADVANCE(2368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2098: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2394); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2346); + if (lookahead == 'e') ADVANCE(2245); + if (lookahead == 'i') ADVANCE(2134); + if (lookahead == 't') ADVANCE(2368); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2099: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2332); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2395); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2100: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2337); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2333); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2101: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2369); - if (lookahead == 'l') ADVANCE(2374); - if (lookahead == 'o') ADVANCE(2232); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2338); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2102: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2330); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2370); + if (lookahead == 'l') ADVANCE(2375); + if (lookahead == 'o') ADVANCE(2233); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2103: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2362); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2331); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2104: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(1880); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2363); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2105: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2226); - if (lookahead == 'e') ADVANCE(2355); - if (lookahead == 'o') ADVANCE(2128); - if (lookahead == 'u') ADVANCE(2349); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(1881); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2106: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2262); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2227); + if (lookahead == 'e') ADVANCE(2356); + if (lookahead == 'o') ADVANCE(2129); + if (lookahead == 'u') ADVANCE(2350); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2107: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2360); - if (lookahead == 'e') ADVANCE(2115); - if (lookahead == 'o') ADVANCE(3683); - if (lookahead == 'r') ADVANCE(2271); - if (lookahead == 't') ADVANCE(1810); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2263); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2108: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2360); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2361); if (lookahead == 'e') ADVANCE(2116); - if (lookahead == 'o') ADVANCE(3683); - if (lookahead == 'r') ADVANCE(2271); - if (lookahead == 't') ADVANCE(1810); + if (lookahead == 'o') ADVANCE(3684); + if (lookahead == 'r') ADVANCE(2272); + if (lookahead == 't') ADVANCE(1811); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2109: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2360); - if (lookahead == 'e') ADVANCE(2116); - if (lookahead == 'o') ADVANCE(2404); - if (lookahead == 'r') ADVANCE(2271); - if (lookahead == 't') ADVANCE(1810); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2361); + if (lookahead == 'e') ADVANCE(2117); + if (lookahead == 'o') ADVANCE(3684); + if (lookahead == 'r') ADVANCE(2272); + if (lookahead == 't') ADVANCE(1811); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2130); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2361); + if (lookahead == 'e') ADVANCE(2117); + if (lookahead == 'o') ADVANCE(2405); + if (lookahead == 'r') ADVANCE(2272); + if (lookahead == 't') ADVANCE(1811); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2372); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2131); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2303); - if (lookahead == 'o') ADVANCE(2250); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2373); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'a') ADVANCE(2225); - if (lookahead == 'e') ADVANCE(2355); - if (lookahead == 'o') ADVANCE(2137); - if (lookahead == 'u') ADVANCE(2361); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2304); + if (lookahead == 'o') ADVANCE(2251); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'b') ADVANCE(2218); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'a') ADVANCE(2226); + if (lookahead == 'e') ADVANCE(2356); + if (lookahead == 'o') ADVANCE(2138); + if (lookahead == 'u') ADVANCE(2362); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'b') ADVANCE(2375); - if (lookahead == 'c') ADVANCE(2277); - if (lookahead == 'f') ADVANCE(3568); - if (lookahead == 't') ADVANCE(2154); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'b') ADVANCE(2219); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'b') ADVANCE(2375); - if (lookahead == 'c') ADVANCE(2277); - if (lookahead == 'f') ADVANCE(2406); - if (lookahead == 't') ADVANCE(2154); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'b') ADVANCE(2376); + if (lookahead == 'c') ADVANCE(2278); + if (lookahead == 'f') ADVANCE(3569); + if (lookahead == 't') ADVANCE(2155); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2200); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'b') ADVANCE(2376); + if (lookahead == 'c') ADVANCE(2278); + if (lookahead == 'f') ADVANCE(2407); + if (lookahead == 't') ADVANCE(2155); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2198); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2201); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2195); - if (lookahead == 'h') ADVANCE(1844); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2199); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2277); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2196); + if (lookahead == 'h') ADVANCE(1845); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2196); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2278); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2147); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2197); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2157); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2148); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2203); - if (lookahead == 'h') ADVANCE(1844); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2158); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - ADVANCE_MAP( - '=', 4108, - 'c', 2276, - 'e', 2301, - 'k', 2220, - 'o', 2376, - 'p', 2233, - 't', 2280, - 'y', 2335, - ); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2204); + if (lookahead == 'h') ADVANCE(1845); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - '=', 4108, - 'c', 2276, - 'e', 2301, - 'k', 2220, - 'o', 2384, - 'p', 2233, - 't', 2280, - 'y', 2335, + '=', 4109, + 'c', 2277, + 'e', 2302, + 'k', 2221, + 'o', 2377, + 'p', 2234, + 't', 2281, + 'y', 2336, ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'c') ADVANCE(2365); + ADVANCE_MAP( + '=', 4109, + 'c', 2277, + 'e', 2302, + 'k', 2221, + 'o', 2385, + 'p', 2234, + 't', 2281, + 'y', 2336, + ); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2385); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'c') ADVANCE(2366); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2111); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2386); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2103); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2112); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2141); - if (lookahead == 's') ADVANCE(2370); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2104); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2210); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2142); + if (lookahead == 's') ADVANCE(2371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2152); - if (lookahead == 's') ADVANCE(2370); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2211); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2238); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2153); + if (lookahead == 's') ADVANCE(2371); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2176); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2239); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2287); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2177); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'd') ADVANCE(2387); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2288); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2392); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'd') ADVANCE(2388); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3586); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2393); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2391); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3587); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3741); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2392); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3918); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3742); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3926); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3919); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3764); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3927); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3678); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3765); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3581); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3679); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3730); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3582); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3654); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3731); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3694); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3655); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(3674); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3695); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2093); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(3675); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2053); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2094); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2153: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2410); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2054); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2127); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2411); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2412); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2128); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2325); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2413); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2057); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2326); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2348); - if (lookahead == 'o') ADVANCE(2275); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2058); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2308); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2349); + if (lookahead == 'o') ADVANCE(2276); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2409); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2309); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2161: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2317); - if (lookahead == 'i') ADVANCE(2239); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2410); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2317); - if (lookahead == 'i') ADVANCE(2242); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2318); + if (lookahead == 'i') ADVANCE(2240); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1830); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2318); + if (lookahead == 'i') ADVANCE(2243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2311); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1831); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2095); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2312); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2419); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2096); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2421); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2420); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2353); - if (lookahead == 'o') ADVANCE(2278); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2422); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2306); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2354); + if (lookahead == 'o') ADVANCE(2279); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2314); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2307); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2318); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2315); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2320); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2319); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1850); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2321); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2424); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1851); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1864); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2425); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1870); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1865); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1892); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1871); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1896); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1893); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2179: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(1882); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1897); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2071); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(1883); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2342); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2072); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'e') ADVANCE(2327); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2343); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'f') ADVANCE(2217); - if (lookahead == 's') ADVANCE(2351); - if (lookahead == 't') ADVANCE(2208); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'e') ADVANCE(2328); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'f') ADVANCE(2217); - if (lookahead == 's') ADVANCE(2363); - if (lookahead == 't') ADVANCE(2208); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'f') ADVANCE(2218); + if (lookahead == 's') ADVANCE(2352); + if (lookahead == 't') ADVANCE(2209); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'f') ADVANCE(2217); - if (lookahead == 's') ADVANCE(2363); - if (lookahead == 't') ADVANCE(2221); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'f') ADVANCE(2218); + if (lookahead == 's') ADVANCE(2364); + if (lookahead == 't') ADVANCE(2209); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(2212); - if (lookahead == 't') ADVANCE(2379); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'f') ADVANCE(2218); + if (lookahead == 's') ADVANCE(2364); + if (lookahead == 't') ADVANCE(2222); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(2285); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(2213); + if (lookahead == 't') ADVANCE(2380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(2215); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(2286); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(1886); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(2216); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(1868); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(1887); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(2344); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(1869); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(2222); - if (lookahead == 't') ADVANCE(2379); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(2345); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'g') ADVANCE(2222); - if (lookahead == 't') ADVANCE(2386); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(2223); + if (lookahead == 't') ADVANCE(2380); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(2161); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'g') ADVANCE(2223); + if (lookahead == 't') ADVANCE(2387); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(3699); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(2162); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(3722); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(3700); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(1812); - if (lookahead == 'i') ADVANCE(2357); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(3723); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(2415); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(1813); + if (lookahead == 'i') ADVANCE(2358); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(2219); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(2416); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(1888); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(2220); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(1836); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(1889); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(1846); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(1837); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(2418); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(1847); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'h') ADVANCE(2162); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(2419); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2366); - if (lookahead == 'r') ADVANCE(2151); - if (lookahead == 'y') ADVANCE(2359); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'h') ADVANCE(2163); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2366); - if (lookahead == 'r') ADVANCE(2165); - if (lookahead == 'y') ADVANCE(2359); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2367); + if (lookahead == 'r') ADVANCE(2152); + if (lookahead == 'y') ADVANCE(2360); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2099); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2367); + if (lookahead == 'r') ADVANCE(2166); + if (lookahead == 'y') ADVANCE(2360); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2268); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2100); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2140); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2269); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2261); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2141); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2270); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2262); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2346); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2271); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(1826); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2347); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2100); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(1827); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2267); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2101); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2364); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2268); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2190); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2365); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2263); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2191); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2242); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2264); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2297); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2243); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2269); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2298); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'i') ADVANCE(2347); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2270); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'k') ADVANCE(3650); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'i') ADVANCE(2348); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'k') ADVANCE(2155); - if (lookahead == 't') ADVANCE(2119); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'k') ADVANCE(3651); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'k') ADVANCE(2155); - if (lookahead == 't') ADVANCE(2124); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'k') ADVANCE(2156); + if (lookahead == 't') ADVANCE(2120); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'k') ADVANCE(2150); - if (lookahead == 't') ADVANCE(2119); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'k') ADVANCE(2156); + if (lookahead == 't') ADVANCE(2125); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'k') ADVANCE(2414); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'k') ADVANCE(2151); + if (lookahead == 't') ADVANCE(2120); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'k') ADVANCE(2173); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'k') ADVANCE(2415); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(3910); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'k') ADVANCE(2174); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2207); - if (lookahead == 'n') ADVANCE(2334); - if (lookahead == 's') ADVANCE(3754); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(3911); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2207); - if (lookahead == 'n') ADVANCE(2334); - if (lookahead == 's') ADVANCE(2403); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2208); + if (lookahead == 'n') ADVANCE(2335); + if (lookahead == 's') ADVANCE(3755); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2102); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2208); + if (lookahead == 'n') ADVANCE(2335); + if (lookahead == 's') ADVANCE(2404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2216); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2103); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2229); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2217); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(1824); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2230); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2094); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(1825); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2098); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2095); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2211); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2099); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2145); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2212); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if (lookahead == 'l') ADVANCE(2146); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(1848); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2147); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2166); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(1849); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if (lookahead == 'l') ADVANCE(2167); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2295); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2168); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2214); - if (lookahead == 'n') ADVANCE(2334); - if (lookahead == 's') ADVANCE(2403); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2296); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2340); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2215); + if (lookahead == 'n') ADVANCE(2335); + if (lookahead == 's') ADVANCE(2404); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2283); - if (lookahead == 'o') ADVANCE(2316); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2341); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2283); - if (lookahead == 'o') ADVANCE(2319); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2284); + if (lookahead == 'o') ADVANCE(2317); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'l') ADVANCE(2241); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2284); + if (lookahead == 'o') ADVANCE(2320); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(2254); - if (lookahead == 'n') ADVANCE(2183); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'l') ADVANCE(2242); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(2254); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(2255); if (lookahead == 'n') ADVANCE(2184); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(2254); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(2255); if (lookahead == 'n') ADVANCE(2185); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(2952); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(2255); + if (lookahead == 'n') ADVANCE(2186); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2956); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(2106); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(2953); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2957); END_STATE(); case 2255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(1834); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(2107); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(1854); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(1835); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'm') ADVANCE(1876); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(1855); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(3576); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'm') ADVANCE(1877); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(3726); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(3577); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2136); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(3727); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2191); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2137); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2134); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2192); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2132); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2135); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2420); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2133); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(1842); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2421); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2422); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(1843); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(1872); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2423); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2380); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(1873); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2269: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2382); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2381); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2270: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'n') ADVANCE(2179); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2383); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2271: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2294); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'n') ADVANCE(2180); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2272: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2070); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2295); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2273: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2265); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2071); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2274: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2255); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2266); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2275: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2290); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2256); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2276: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2299); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2291); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2277: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2135); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2300); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2278: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2293); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2136); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2279: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2381); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2294); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2280: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2321); - if (lookahead == 'r') ADVANCE(1820); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2382); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2281: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2350); - if (lookahead == 'u') ADVANCE(2234); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2400); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2322); + if (lookahead == 'r') ADVANCE(1821); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2282: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2305); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2351); + if (lookahead == 'u') ADVANCE(2235); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2283: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2331); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2306); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2284: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2315); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2332); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2285: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(1860); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2316); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2286: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2322); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(1861); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2287: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'o') ADVANCE(2257); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2323); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2288: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(2247); - if (lookahead == 't') ADVANCE(2164); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'o') ADVANCE(2258); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2289: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(3011); - if (lookahead == 't') ADVANCE(3007); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3013); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(2248); + if (lookahead == 't') ADVANCE(2165); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3023); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2290: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(3669); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(3012); + if (lookahead == 't') ADVANCE(3008); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3014); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3024); END_STATE(); case 2291: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(2129); - if (lookahead == 'r') ADVANCE(2235); - if (lookahead == 's') ADVANCE(2139); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(3670); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2292: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(2129); - if (lookahead == 'r') ADVANCE(2235); - if (lookahead == 's') ADVANCE(2160); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(2130); + if (lookahead == 'r') ADVANCE(2236); + if (lookahead == 's') ADVANCE(2140); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2293: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(2411); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(2130); + if (lookahead == 'r') ADVANCE(2236); + if (lookahead == 's') ADVANCE(2161); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2294: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(1832); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(2412); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2295: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(1838); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(1833); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2296: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(1840); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(1839); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2297: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(1850); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(1841); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2298: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(1878); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(1851); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2299: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(2175); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(1879); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2300: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'p') ADVANCE(2248); - if (lookahead == 't') ADVANCE(2170); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(2176); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2301: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'q') ADVANCE(1818); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'p') ADVANCE(2249); + if (lookahead == 't') ADVANCE(2171); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2302: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2187); - if (lookahead == 't') ADVANCE(2118); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'q') ADVANCE(1819); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2303: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2187); - if (lookahead == 't') ADVANCE(2121); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2188); + if (lookahead == 't') ADVANCE(2119); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2304: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(3658); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2188); + if (lookahead == 't') ADVANCE(2122); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2305: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(3605); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(3659); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2306: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(3737); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(3606); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2307: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(1904); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(3738); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2308: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2395); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(1905); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2309: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2253); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2396); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2310: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2122); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2254); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2311: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2258); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2123); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2312: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2282); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2259); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2313: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2259); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2283); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2314: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2264); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2260); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2315: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2417); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2265); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2316: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2352); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2418); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2317: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2144); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2353); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2318: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2425); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2145); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2319: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2356); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2426); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2320: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2328); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2357); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2321: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(1852); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2329); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2322: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2396); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(1853); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2323: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2256); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2397); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2324: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2123); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2257); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2325: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2236); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2124); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2326: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2266); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2237); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2327: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2237); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2267); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2328: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2073); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2238); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2329: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2284); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2074); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2330: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2343); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2285); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2331: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'r') ADVANCE(2178); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2344); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2332: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(1784); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'r') ADVANCE(2179); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2333: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2273); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(1785); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2334: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2213); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2274); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2335: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(1822); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2214); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2336: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2153); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(1823); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2337: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2413); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2154); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2338: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(1828); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2414); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2339: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2358); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(1829); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2340: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2143); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2359); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2341: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2149); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2144); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2342: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(1858); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2150); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2343: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(1874); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(1859); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2344: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(1884); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(1875); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2345: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2201); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(1885); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2346: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2371); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2202); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2347: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 's') ADVANCE(2373); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2372); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2348: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1791); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 's') ADVANCE(2374); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2349: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1798); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1792); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2350: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2401); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1799); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2351: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1803); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2402); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2352: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1779); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1804); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2353: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2051); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1780); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2354: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1907); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2052); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2355: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2110); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1908); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2356: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2055); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2111); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2357: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1816); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2056); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2358: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2388); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1817); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2359: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2181); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2389); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2360: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2163); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2182); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2361: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2407); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2164); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2362: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2104); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2408); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2363: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2416); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2105); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2364: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1866); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2417); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2365: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(1894); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1867); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2366: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2338); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(1895); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2367: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2296); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2339); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2368: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2072); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2297); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2369: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2202); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2073); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2370: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2286); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2203); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2371: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2169); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2287); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2372: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2177); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2170); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2373: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 't') ADVANCE(2171); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2178); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2374: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2188); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 't') ADVANCE(2172); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2375: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if (lookahead == 'u') ADVANCE(2189); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2376: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2310); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2190); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2377: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2142); - if (lookahead == 'y') ADVANCE(3717); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2311); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2378: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2142); - if (lookahead == 'y') ADVANCE(2408); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2143); + if (lookahead == 'y') ADVANCE(3718); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2379: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2313); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2143); + if (lookahead == 'y') ADVANCE(2409); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2380: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2148); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2314); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2381: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2368); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2149); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2382: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2174); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2369); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2383: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2159); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2175); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2384: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2324); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2160); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2385: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2240); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2325); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2386: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2326); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2241); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2387: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2243); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2327); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2388: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'u') ADVANCE(2298); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2244); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2389: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'v') ADVANCE(2156); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'u') ADVANCE(2299); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2390: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'v') ADVANCE(2182); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'v') ADVANCE(2157); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2391: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'w') ADVANCE(1856); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'v') ADVANCE(2183); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2392: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'y') ADVANCE(2114); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'w') ADVANCE(1857); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2393: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'y') ADVANCE(3749); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'y') ADVANCE(2115); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2394: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'y') ADVANCE(2423); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'y') ADVANCE(3750); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2395: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'y') ADVANCE(1862); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'y') ADVANCE(2424); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2396: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'y') ADVANCE(1890); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'y') ADVANCE(1863); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2397: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2400); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'y') ADVANCE(1891); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2398: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3990); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2401); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2399: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2398); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3991); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2400: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4008); + lookahead == 'n') ADVANCE(2399); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2401: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4009); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3792); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2402: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2855); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2402); + lookahead == '@') ADVANCE(2856); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2403: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2996); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2995); + lookahead == '@') ADVANCE(2856); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2403); END_STATE(); case 2404: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2969); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2968); + lookahead == '@') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2996); END_STATE(); case 2405: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2972); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2971); + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2969); END_STATE(); case 2406: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2885); + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2972); END_STATE(); case 2407: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2915); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2914); + lookahead == '@') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2886); END_STATE(); case 2408: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2977); + lookahead == '@') ADVANCE(2916); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2915); END_STATE(); case 2409: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2892); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2891); + lookahead == '@') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2978); END_STATE(); case 2410: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2975); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2974); + lookahead == '@') ADVANCE(2893); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2892); END_STATE(); case 2411: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2960); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2959); + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2975); END_STATE(); case 2412: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3027); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3026); + lookahead == '@') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2960); END_STATE(); case 2413: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2889); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2888); + lookahead == '@') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(3027); END_STATE(); case 2414: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2987); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2986); + lookahead == '@') ADVANCE(2890); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2889); END_STATE(); case 2415: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2981); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2980); + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2987); END_STATE(); case 2416: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2918); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2917); + lookahead == '@') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2981); END_STATE(); case 2417: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2965); + lookahead == '@') ADVANCE(2919); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2918); END_STATE(); case 2418: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2983); + lookahead == '@') ADVANCE(2967); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2966); END_STATE(); case 2419: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2963); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2962); + lookahead == '@') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2984); END_STATE(); case 2420: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2896); + lookahead == '@') ADVANCE(2964); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2963); END_STATE(); case 2421: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2900); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2899); + lookahead == '@') ADVANCE(2898); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2897); END_STATE(); case 2422: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2992); + lookahead == '@') ADVANCE(2901); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2900); END_STATE(); case 2423: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2944); + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2993); END_STATE(); case 2424: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2990); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2989); + lookahead == '@') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2945); END_STATE(); case 2425: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(4108); + if (lookahead == '=') ADVANCE(4109); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2947); + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2990); END_STATE(); case 2426: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '=') ADVANCE(3779); - if (lookahead == '~') ADVANCE(3790); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '=') ADVANCE(4109); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2949); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(2948); END_STATE(); case 2427: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '=') ADVANCE(3780); + if (lookahead == '~') ADVANCE(3791); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2428: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2429: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2430: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '>') ADVANCE(4257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '>') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2431: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); + END_STATE(); + case 2432: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 2836, + 'I', 2837, '_', 2453, - 'i', 2836, - 'l', 2762, - 'r', 2745, - 'x', 2707, + 'i', 2837, + 'l', 2763, + 'r', 2746, + 'x', 2708, '+', 2453, '-', 2453, - 'B', 4015, - 'b', 4015, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); - case 2432: + case 2433: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2836); + if (lookahead == 'I') ADVANCE(2837); if (lookahead == '_') ADVANCE(2453); - if (lookahead == 'i') ADVANCE(2485); + if (lookahead == 'i') ADVANCE(2486); if (lookahead == '+' || lookahead == '-') ADVANCE(2453); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); - case 2433: + case 2434: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); ADVANCE_MAP( - 'I', 2836, - 'a', 2617, - 'i', 2656, - 'o', 2514, - 's', 4022, - 'u', 2789, - 'B', 4015, - 'b', 4015, + 'I', 2837, + 'a', 2618, + 'i', 2657, + 'o', 2515, + 's', 4023, + 'u', 2790, + 'B', 4016, + 'b', 4016, ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); - END_STATE(); - case 2434: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2836); - if (lookahead == 'i') ADVANCE(2836); - if (lookahead == 'l') ADVANCE(2762); - if (lookahead == 'r') ADVANCE(2745); - if (lookahead == 'x') ADVANCE(2707); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2435: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2836); - if (lookahead == 'i') ADVANCE(2836); - if (lookahead == 'r') ADVANCE(2811); + if (lookahead == 'I') ADVANCE(2837); + if (lookahead == 'i') ADVANCE(2837); + if (lookahead == 'l') ADVANCE(2763); + if (lookahead == 'r') ADVANCE(2746); + if (lookahead == 'x') ADVANCE(2708); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2436: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2836); - if (lookahead == 'i') ADVANCE(2836); + if (lookahead == 'I') ADVANCE(2837); + if (lookahead == 'i') ADVANCE(2837); + if (lookahead == 'r') ADVANCE(2812); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2437: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I') ADVANCE(2836); - if (lookahead == 'i') ADVANCE(2485); + if (lookahead == 'I') ADVANCE(2837); + if (lookahead == 'i') ADVANCE(2837); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2438: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2837); - if (lookahead == 'f') ADVANCE(3689); - if (lookahead == 'n') ADVANCE(3664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'I') ADVANCE(2837); + if (lookahead == 'i') ADVANCE(2486); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2439: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2837); - if (lookahead == 'f') ADVANCE(3689); - if (lookahead == 'n') ADVANCE(2697); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'N') ADVANCE(2838); + if (lookahead == 'f') ADVANCE(3690); + if (lookahead == 'n') ADVANCE(3665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2440: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N') ADVANCE(2839); - if (lookahead == 'f') ADVANCE(2858); - if (lookahead == 'n') ADVANCE(2838); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'N') ADVANCE(2838); + if (lookahead == 'f') ADVANCE(3690); + if (lookahead == 'n') ADVANCE(2698); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2441: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2441); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'N') ADVANCE(2840); + if (lookahead == 'f') ADVANCE(2859); + if (lookahead == 'n') ADVANCE(2839); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2442: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2443: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2444); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2444: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2444); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '_') ADVANCE(2445); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2445: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2445); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2446: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2446); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2447: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2447); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2448: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2449); - if (lookahead == '+' || - lookahead == '-') ADVANCE(2449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '_') ADVANCE(2448); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2449: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '_') ADVANCE(2449); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '_') ADVANCE(2450); + if (lookahead == '+' || + lookahead == '-') ADVANCE(2450); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2450: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2450); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2451: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2453); - if (lookahead == 'l') ADVANCE(2752); - if (lookahead == 'r') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2706); + if (lookahead == 'l') ADVANCE(2753); + if (lookahead == 'r') ADVANCE(2743); + if (lookahead == 'x') ADVANCE(2707); if (lookahead == '+' || lookahead == '-') ADVANCE(2453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2452: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2453); if (lookahead == '+' || lookahead == '-') ADVANCE(2453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2453: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == '_') ADVANCE(2453); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2454: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2639); - if (lookahead == 'o') ADVANCE(2711); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '_') ADVANCE(2454); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2455: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2639); - if (lookahead == 'o') ADVANCE(2734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2640); + if (lookahead == 'o') ADVANCE(2712); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2456: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2614); - if (lookahead == 'o') ADVANCE(2501); - if (lookahead == 'u') ADVANCE(2774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2640); + if (lookahead == 'o') ADVANCE(2735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2457: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2614); - if (lookahead == 'o') ADVANCE(2504); - if (lookahead == 'u') ADVANCE(2774); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2615); + if (lookahead == 'o') ADVANCE(2502); + if (lookahead == 'u') ADVANCE(2775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2458: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2613); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2615); + if (lookahead == 'o') ADVANCE(2505); + if (lookahead == 'u') ADVANCE(2775); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2459: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2828); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2614); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2460: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2717); - if (lookahead == 'o') ADVANCE(2646); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2829); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2461: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2772); - if (lookahead == 'o') ADVANCE(2652); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2718); + if (lookahead == 'o') ADVANCE(2647); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2462: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2659); - if (lookahead == 'o') ADVANCE(2714); - if (lookahead == 's') ADVANCE(2576); - if (lookahead == 'x') ADVANCE(2682); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2773); + if (lookahead == 'o') ADVANCE(2653); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2463: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2616); - if (lookahead == 'e') ADVANCE(2786); - if (lookahead == 'o') ADVANCE(2514); - if (lookahead == 'u') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2660); + if (lookahead == 'o') ADVANCE(2715); + if (lookahead == 's') ADVANCE(2577); + if (lookahead == 'x') ADVANCE(2683); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2464: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2618); - if (lookahead == 'e') ADVANCE(2739); - if (lookahead == 'o') ADVANCE(1815); - if (lookahead == 'r') ADVANCE(2815); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2617); + if (lookahead == 'e') ADVANCE(2787); + if (lookahead == 'o') ADVANCE(2515); + if (lookahead == 'u') ADVANCE(2790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2465: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2619); + if (lookahead == 'e') ADVANCE(2740); + if (lookahead == 'o') ADVANCE(1816); + if (lookahead == 'r') ADVANCE(2816); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2466: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2615); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2467: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2616); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2468: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2830); - if (lookahead == 'e') ADVANCE(2565); - if (lookahead == 'o') ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2469: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2726); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2831); + if (lookahead == 'e') ADVANCE(2566); + if (lookahead == 'o') ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2470: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2769); - if (lookahead == 'e') ADVANCE(2638); - if (lookahead == 'i') ADVANCE(2509); - if (lookahead == 't') ADVANCE(2797); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2727); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2471: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2760); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2770); + if (lookahead == 'e') ADVANCE(2639); + if (lookahead == 'i') ADVANCE(2510); + if (lookahead == 't') ADVANCE(2798); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2472: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2798); - if (lookahead == 'l') ADVANCE(2807); - if (lookahead == 'o') ADVANCE(2637); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2761); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2473: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2741); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2799); + if (lookahead == 'l') ADVANCE(2808); + if (lookahead == 'o') ADVANCE(2638); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2474: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2791); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2742); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2475: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(1881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2792); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2476: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2617); - if (lookahead == 'o') ADVANCE(2514); - if (lookahead == 'u') ADVANCE(2789); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(1882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2477: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2800); - if (lookahead == 'o') ADVANCE(2667); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2618); + if (lookahead == 'o') ADVANCE(2515); + if (lookahead == 'u') ADVANCE(2790); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2478: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2660); - if (lookahead == 'e') ADVANCE(2573); - if (lookahead == 'o') ADVANCE(2630); - if (lookahead == 'u') ADVANCE(2763); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2801); + if (lookahead == 'o') ADVANCE(2668); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2479: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2794); - if (lookahead == 'e') ADVANCE(2486); - if (lookahead == 'o') ADVANCE(2857); - if (lookahead == 'r') ADVANCE(2675); - if (lookahead == 't') ADVANCE(1811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2661); + if (lookahead == 'e') ADVANCE(2574); + if (lookahead == 'o') ADVANCE(2631); + if (lookahead == 'u') ADVANCE(2764); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2480: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2491); - if (lookahead == 'l') ADVANCE(2762); - if (lookahead == 'n') ADVANCE(2494); - if (lookahead == 'r') ADVANCE(2745); - if (lookahead == 'x') ADVANCE(2696); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2795); + if (lookahead == 'e') ADVANCE(2487); + if (lookahead == 'o') ADVANCE(2858); + if (lookahead == 'r') ADVANCE(2676); + if (lookahead == 't') ADVANCE(1812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2481: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2661); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2492); + if (lookahead == 'l') ADVANCE(2763); + if (lookahead == 'n') ADVANCE(2495); + if (lookahead == 'r') ADVANCE(2746); + if (lookahead == 'x') ADVANCE(2697); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2482: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2662); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2483: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2642); - if (lookahead == 'o') ADVANCE(2720); - if (lookahead == 'r') ADVANCE(2677); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2484: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'a') ADVANCE(2512); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2643); + if (lookahead == 'o') ADVANCE(2721); + if (lookahead == 'r') ADVANCE(2678); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2485: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'a') ADVANCE(2513); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2486: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2808); - if (lookahead == 'c') ADVANCE(2690); - if (lookahead == 'f') ADVANCE(2860); - if (lookahead == 't') ADVANCE(2535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2487: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'b') ADVANCE(2609); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'b') ADVANCE(2809); + if (lookahead == 'c') ADVANCE(2691); + if (lookahead == 'f') ADVANCE(2861); + if (lookahead == 't') ADVANCE(2536); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2488: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'b') ADVANCE(2610); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2489: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2574); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2490: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'c') ADVANCE(2575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2491: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2581); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2492: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2583); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2582); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2493: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2679); - if (lookahead == 'e') ADVANCE(2708); - if (lookahead == 'k') ADVANCE(2610); - if (lookahead == 'o') ADVANCE(2818); - if (lookahead == 'p') ADVANCE(2640); - if (lookahead == 't') ADVANCE(2684); - if (lookahead == 'y') ADVANCE(2754); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2584); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2494: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2690); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2680); + if (lookahead == 'e') ADVANCE(2709); + if (lookahead == 'k') ADVANCE(2611); + if (lookahead == 'o') ADVANCE(2819); + if (lookahead == 'p') ADVANCE(2641); + if (lookahead == 't') ADVANCE(2685); + if (lookahead == 'y') ADVANCE(2755); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2495: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2691); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2496: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2497: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2584); - if (lookahead == 'h') ADVANCE(1845); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2498: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2584); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2585); + if (lookahead == 'h') ADVANCE(1846); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2499: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'c') ADVANCE(2796); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2585); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2500: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'c') ADVANCE(2797); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2501: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(3766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2502: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(3823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(3805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2503: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(3824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2504: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2505: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2519); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2506: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2482); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2520); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2507: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2632); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2483); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2508: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2595); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2633); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2509: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2539); - if (lookahead == 's') ADVANCE(2802); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2596); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2510: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2540); + if (lookahead == 's') ADVANCE(2803); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2511: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2693); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2540); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2512: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2474); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2694); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2513: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2556); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2475); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2514: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'd') ADVANCE(2820); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2557); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2515: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2564); - if (lookahead == 'o') ADVANCE(3684); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'd') ADVANCE(2821); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2516: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2567); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2565); + if (lookahead == 'o') ADVANCE(3685); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2517: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3588); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2568); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2518: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3589); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2519: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3742); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2520: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3675); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3743); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2521: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3679); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3676); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2522: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3680); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2523: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2524: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2525: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3922); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2526: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(3930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3923); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2527: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2565); - if (lookahead == 'o') ADVANCE(2857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(3931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2528: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2428); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2566); + if (lookahead == 'o') ADVANCE(2858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2529: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2826); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2429); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2530: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2827); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2531: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2532: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2773); - if (lookahead == 'o') ADVANCE(2673); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2533: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2458); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2774); + if (lookahead == 'o') ADVANCE(2674); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2534: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2459); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2535: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2499); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2536: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2724); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2500); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2537: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2466); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2725); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2538: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2488); - if (lookahead == 'o') ADVANCE(2818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2467); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2539: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2489); + if (lookahead == 'o') ADVANCE(2819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2540: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2541: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2722); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2542: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2864); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2723); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2543: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'e') ADVANCE(2865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2544: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1831); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2545: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2730); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1832); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2546: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2731); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2547: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2716); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2548: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2717); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2549: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2721); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2550: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2722); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2551: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2552: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2728); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2553: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2882); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2729); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2554: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2883); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2555: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1865); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2556: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1866); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2557: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2558: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2559: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(1883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2560: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2729); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(1884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2561: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2766); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2730); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2562: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2783); - if (lookahead == 'o') ADVANCE(2676); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2767); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2563: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'e') ADVANCE(2573); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2784); + if (lookahead == 'o') ADVANCE(2677); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2564: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(3569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'e') ADVANCE(2574); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2565: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2860); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'f') ADVANCE(3570); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2566: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'f') ADVANCE(2604); - if (lookahead == 's') ADVANCE(2792); - if (lookahead == 't') ADVANCE(2611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'f') ADVANCE(2861); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2567: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2592); - if (lookahead == 't') ADVANCE(2812); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'f') ADVANCE(2605); + if (lookahead == 's') ADVANCE(2793); + if (lookahead == 't') ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2568: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2688); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(2593); + if (lookahead == 't') ADVANCE(2813); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2569: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2605); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(2689); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2570: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1887); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(2606); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2571: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(1869); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(1888); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2572: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2768); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(1870); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2573: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'g') ADVANCE(2612); - if (lookahead == 't') ADVANCE(2819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(2769); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2574: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'g') ADVANCE(2613); + if (lookahead == 't') ADVANCE(2820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2575: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(3724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2576: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2619); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(3701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2577: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3775); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(2620); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2578: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(3773); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(3776); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2579: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1813); - if (lookahead == 'i') ADVANCE(2782); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(3774); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2580: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2593); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(1814); + if (lookahead == 'i') ADVANCE(2783); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2581: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1889); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(2594); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2582: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(1890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2583: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2872); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(1838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2584: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2876); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(2873); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2585: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(1847); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(2877); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2586: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2608); - if (lookahead == 'k') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(1848); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2587: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'h') ADVANCE(2608); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(2609); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2588: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2779); - if (lookahead == 'r') ADVANCE(2533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'h') ADVANCE(2609); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2589: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2465); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2780); + if (lookahead == 'r') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2590: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2505); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2466); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2591: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2657); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2506); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2592: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2756); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2658); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2593: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2629); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2757); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2594: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2654); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2630); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2595: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2658); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2655); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2596: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(1827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2659); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2597: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2669); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(1828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2598: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2784); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2670); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2599: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'i') ADVANCE(2785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2600: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2790); - if (lookahead == 'r') ADVANCE(2537); - if (lookahead == 'y') ADVANCE(2793); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2601: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2791); + if (lookahead == 'r') ADVANCE(2538); + if (lookahead == 'y') ADVANCE(2794); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2602: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2603: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2471); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2604: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2472); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2605: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2666); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2606: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2510); - if (lookahead == 'r') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2667); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2607: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2510); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2511); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2608: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2634); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2511); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2609: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2662); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2635); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2610: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2703); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2663); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2611: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2668); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2704); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2612: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'i') ADVANCE(2771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2669); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2613: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(3651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'i') ADVANCE(2772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2614: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2520); - if (lookahead == 't') ADVANCE(2490); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'k') ADVANCE(3652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2615: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2871); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'k') ADVANCE(2521); + if (lookahead == 't') ADVANCE(2491); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2616: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2546); - if (lookahead == 't') ADVANCE(2497); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'k') ADVANCE(2872); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2617: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2546); + if (lookahead == 'k') ADVANCE(2547); if (lookahead == 't') ADVANCE(2498); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2618: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'k') ADVANCE(2551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'k') ADVANCE(2547); + if (lookahead == 't') ADVANCE(2499); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2619: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3819); - if (lookahead == 'r') ADVANCE(3821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'k') ADVANCE(2552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2620: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(3913); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(3820); + if (lookahead == 'r') ADVANCE(3822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2621: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2868); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(3914); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2622: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2589); - if (lookahead == 'n') ADVANCE(2500); - if (lookahead == 's') ADVANCE(3757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2869); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2623: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2589); - if (lookahead == 's') ADVANCE(3757); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2590); + if (lookahead == 'n') ADVANCE(2501); + if (lookahead == 's') ADVANCE(3758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2624: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2621); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2590); + if (lookahead == 's') ADVANCE(3758); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2625: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2459); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2622); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2626: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2460); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2627: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2467); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2628: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2620); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2468); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2629: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2621); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2630: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2633); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2522); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2631: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2634); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2632: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2597); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2523); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2633: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(1849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2598); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2634: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(1850); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2635: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2636: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2752); - if (lookahead == 'r') ADVANCE(2742); - if (lookahead == 'x') ADVANCE(2706); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2551); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2637: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2473); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2753); + if (lookahead == 'r') ADVANCE(2743); + if (lookahead == 'x') ADVANCE(2707); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2638: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2701); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2474); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2639: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2758); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2702); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2640: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2602); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2759); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2641: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2762); - if (lookahead == 'r') ADVANCE(2745); - if (lookahead == 'x') ADVANCE(2707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2603); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2642: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2765); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2763); + if (lookahead == 'r') ADVANCE(2746); + if (lookahead == 'x') ADVANCE(2708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2643: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2687); - if (lookahead == 'o') ADVANCE(2743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2766); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2644: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2603); - if (lookahead == 'n') ADVANCE(2757); - if (lookahead == 's') ADVANCE(2856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2688); + if (lookahead == 'o') ADVANCE(2744); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2645: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'l') ADVANCE(2603); - if (lookahead == 's') ADVANCE(2856); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2604); + if (lookahead == 'n') ADVANCE(2758); + if (lookahead == 's') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2646: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2648); - if (lookahead == 'n') ADVANCE(2566); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'l') ADVANCE(2604); + if (lookahead == 's') ADVANCE(2857); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2647: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2953); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if (lookahead == 'm') ADVANCE(2649); + if (lookahead == 'n') ADVANCE(2567); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2648: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(2481); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'm') ADVANCE(2954); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2649: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1835); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'm') ADVANCE(2482); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2650: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1855); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'm') ADVANCE(1836); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2651: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'm') ADVANCE(1877); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'm') ADVANCE(1856); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2652: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2753); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'm') ADVANCE(1878); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2653: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2754); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2654: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3771); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(3578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2655: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(3727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2656: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(3728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2657: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2814); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2658: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2815); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2659: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2502); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2660: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2511); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2503); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2661: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2507); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2512); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2662: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'n') ADVANCE(2508); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2663: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1843); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2509); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2664: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2878); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(1844); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2665: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2880); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2879); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2666: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(1873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2881); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2667: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2764); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(1874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2668: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2816); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2765); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2669: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'n') ADVANCE(2559); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2817); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2670: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2809); - if (lookahead == 't') ADVANCE(2469); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'n') ADVANCE(2560); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2671: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2809); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2810); + if (lookahead == 't') ADVANCE(2470); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2672: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2427); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2810); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2673: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2695); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2428); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2674: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2813); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2696); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2675: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2700); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2814); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2676: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2699); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2701); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2677: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2649); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2700); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2678: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2712); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2650); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2679: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2704); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2713); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2680: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2663); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2705); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2681: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2713); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2664); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2682: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2715); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2714); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2683: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2778); - if (lookahead == 'u') ADVANCE(2628); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2716); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2684: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2732); - if (lookahead == 'r') ADVANCE(1821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2779); + if (lookahead == 'u') ADVANCE(2629); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2685: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2731); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2733); + if (lookahead == 'r') ADVANCE(1822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2686: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2743); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2732); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2687: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'o') ADVANCE(2744); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2688: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(1861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2745); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2689: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2780); - if (lookahead == 'u') ADVANCE(2624); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(1862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2690: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2513); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2781); + if (lookahead == 'u') ADVANCE(2625); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2691: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2727); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2514); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2692: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2728); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2693: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2651); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2694: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'o') ADVANCE(2818); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2652); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2695: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3670); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'o') ADVANCE(2819); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2696: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2643); - if (lookahead == 't') ADVANCE(2552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(3671); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2697: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(3012); - if (lookahead == 't') ADVANCE(3008); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if (lookahead == 'p') ADVANCE(2644); + if (lookahead == 't') ADVANCE(2553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2698: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2506); - if (lookahead == 'r') ADVANCE(2626); - if (lookahead == 's') ADVANCE(2542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(3013); + if (lookahead == 't') ADVANCE(3009); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 2699: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2866); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(2507); + if (lookahead == 'r') ADVANCE(2627); + if (lookahead == 's') ADVANCE(2543); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2700: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(2867); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2701: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(1834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2702: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1841); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(1840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2703: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1851); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(1842); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2704: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2555); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(1852); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2705: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(1879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(2556); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2706: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2691); - if (lookahead == 't') ADVANCE(2541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(1880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2707: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'p') ADVANCE(2686); - if (lookahead == 't') ADVANCE(2552); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(2692); + if (lookahead == 't') ADVANCE(2542); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2708: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'q') ADVANCE(1819); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'p') ADVANCE(2687); + if (lookahead == 't') ADVANCE(2553); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2709: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2810); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'q') ADVANCE(1820); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2710: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2811); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2711: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3659); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2712: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3660); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2713: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3607); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2714: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3827); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3608); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2715: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2716: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(3738); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2717: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2568); - if (lookahead == 't') ADVANCE(2492); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(3739); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2718: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2569); + if (lookahead == 't') ADVANCE(2493); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2719: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2495); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2534); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2720: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2647); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2496); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2721: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2832); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2648); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2722: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2653); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2833); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2723: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2430); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2654); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2724: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2625); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2431); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2725: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2655); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2626); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2726: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2656); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2727: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2777); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2728: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2664); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2778); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2729: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2627); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2665); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2730: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2723); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2628); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2731: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2874); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2724); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2732: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(1853); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2875); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2733: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2883); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(1854); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2734: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2861); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2884); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2735: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2862); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2736: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2811); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2538); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2737: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2496); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2812); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2738: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2497); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2739: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2650); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2740: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2665); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2651); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2741: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2767); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2666); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2742: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2681); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2768); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2743: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2787); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2682); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2744: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2558); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2788); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2745: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'r') ADVANCE(2685); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2559); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2746: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1785); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'r') ADVANCE(2686); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2747: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4022); - if (lookahead == 'u') ADVANCE(2624); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(1786); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2748: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(2625); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2749: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(4024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2750: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2048); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(4025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2751: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2517); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2752: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(2518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2753: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2776); - if (lookahead == 't') ADVANCE(2591); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2519); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2754: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1823); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2777); + if (lookahead == 't') ADVANCE(2592); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2755: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2680); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(1824); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2756: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2801); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2681); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2757: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2596); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2802); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2758: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2597); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2759: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1829); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2535); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2760: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2870); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(1830); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2761: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2871); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2762: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 's') ADVANCE(2543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2763: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2788); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2544); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2764: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2792); - if (lookahead == 't') ADVANCE(2611); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2789); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2765: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2793); + if (lookahead == 't') ADVANCE(2612); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2766: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2527); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2767: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1875); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(1860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2768: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(1885); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(1876); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2769: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2582); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(1886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2770: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2059); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2583); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2771: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 's') ADVANCE(2803); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2060); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2772: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2489); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 's') ADVANCE(2804); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2773: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2490); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2774: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1799); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2775: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1906); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1800); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2776: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1804); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1907); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2777: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1780); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1805); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2778: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2846); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1781); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2779: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2047); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2847); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2780: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2048); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2781: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2429); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2782: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1817); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2430); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2783: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1818); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2784: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2785: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 't') ADVANCE(2578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2786: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2484); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2787: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2485); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2788: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2821); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2789: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2862); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2822); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2790: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2759); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2863); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2791: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2475); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2760); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2792: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2873); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2476); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2793: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2561); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2874); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2794: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2562); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2795: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1867); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2545); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2796: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(1895); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1868); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2797: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2702); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(1896); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2798: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2585); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2703); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2799: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2557); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2586); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2800: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2492); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2558); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2801: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2493); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2802: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2692); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2548); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2803: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2554); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2693); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2804: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 't') ADVANCE(2770); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2555); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2805: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2624); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 't') ADVANCE(2771); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2806: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2624); + if (lookahead == 'u') ADVANCE(2625); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'a') ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2807: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2569); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2625); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2808: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'u') ADVANCE(2570); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2809: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2719); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2571); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2810: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2531); - if (lookahead == 'y') ADVANCE(3718); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2720); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2811: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2531); - if (lookahead == 'y') ADVANCE(2863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2532); + if (lookahead == 'y') ADVANCE(3719); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2812: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2725); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2532); + if (lookahead == 'y') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2813: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2781); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2726); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2814: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2782); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2815: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'u') ADVANCE(2525); - if (lookahead == 'y') ADVANCE(2863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2816: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2553); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2526); + if (lookahead == 'y') ADVANCE(2864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2817: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2631); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2554); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2818: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2737); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2632); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2819: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2740); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2738); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2820: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2635); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2741); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2821: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2705); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2636); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2822: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'u') ADVANCE(2549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2706); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2823: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'u') ADVANCE(2550); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2824: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'v') ADVANCE(2560); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'v') ADVANCE(2537); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2825: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2598); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'v') ADVANCE(2561); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2826: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(1857); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'w') ADVANCE(2599); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2827: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'w') ADVANCE(2599); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'w') ADVANCE(1858); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2828: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(3750); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'w') ADVANCE(2600); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2829: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2487); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'y') ADVANCE(3751); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2830: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'y') ADVANCE(2488); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2831: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(2881); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2832: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1863); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'y') ADVANCE(2882); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2833: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'y') ADVANCE(1891); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'y') ADVANCE(1864); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2834: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2842); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'y') ADVANCE(1892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2835: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(2844); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'a') ADVANCE(2843); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2836: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(2845); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2837: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3991); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2838: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'f') ADVANCE(3992); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2839: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(2840); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'f') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 2840: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(2841); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2841: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2837); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 2842: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4009); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'n') ADVANCE(2838); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2843: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2839); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'n') ADVANCE(4010); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2844: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(2859); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + lookahead == 'n') ADVANCE(2840); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2845: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3986); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(2860); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2846: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3792); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(3987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2847: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2848: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2849: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4049); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2850: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2851: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2848); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2852: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2849); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2853: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2850); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2854: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3985); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(2851); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2855: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2856: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2856); END_STATE(); case 2857: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); case 2858: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 2859: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 2860: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3078); END_STATE(); case 2861: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); END_STATE(); case 2862: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2863: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); END_STATE(); case 2864: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 2865: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); END_STATE(); case 2866: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 2867: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); case 2868: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3028); END_STATE(); case 2869: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3050); END_STATE(); case 2870: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); case 2871: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); END_STATE(); case 2872: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2873: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 2874: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2919); END_STATE(); case 2875: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); END_STATE(); case 2876: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); case 2877: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 2878: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); case 2879: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); END_STATE(); case 2880: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2901); END_STATE(); case 2881: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 2882: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); END_STATE(); case 2883: ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 2884: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if (lookahead == ',') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2884); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token1); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2949); END_STATE(); case 2885: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2886); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2885); + if (lookahead == ',') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2885); END_STATE(); case 2886: ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2886); END_STATE(); case 2887: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if (lookahead == ',') ADVANCE(2889); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token2); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); END_STATE(); case 2888: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2889); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2888); + if (lookahead == ',') ADVANCE(2890); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2888); END_STATE(); case 2889: ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2890); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2889); END_STATE(); case 2890: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if (lookahead == ',') ADVANCE(2892); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token3); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); END_STATE(); case 2891: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); END_STATE(); case 2892: ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2892); END_STATE(); case 2893: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); - if (lookahead == ',') ADVANCE(2894); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token4); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); END_STATE(); case 2894: ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); + if (lookahead == ',') ADVANCE(2895); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); END_STATE(); case 2895: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if (lookahead == ',') ADVANCE(2897); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token5); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); END_STATE(); case 2896: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2897); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2896); + if (lookahead == ',') ADVANCE(2898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2896); END_STATE(); case 2897: ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2897); END_STATE(); case 2898: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if (lookahead == ',') ADVANCE(2900); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token6); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); END_STATE(); case 2899: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2900); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2899); + if (lookahead == ',') ADVANCE(2901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); END_STATE(); case 2900: ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2901); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2900); END_STATE(); case 2901: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == 'e') ADVANCE(2902); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token7); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2901); END_STATE(); case 2902: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == 'n') ADVANCE(2903); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == 'e') ADVANCE(2903); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 2903: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == 'v') ADVANCE(1794); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == 'n') ADVANCE(2904); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 2904: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == ',') ADVANCE(2912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2904); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == 'v') ADVANCE(1795); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 2905: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'e') ADVANCE(2907); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == ',') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2905); END_STATE(); case 2906: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if (lookahead == 'e') ADVANCE(2908); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2907: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2910); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'e') ADVANCE(2909); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2908: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'n') ADVANCE(2909); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'n') ADVANCE(2911); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2909: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(2912); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'n') ADVANCE(2910); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2910: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if (lookahead == 'v') ADVANCE(1795); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'v') ADVANCE(2913); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2911: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2912); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2911); + if (lookahead == 'v') ADVANCE(1796); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2912: ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2913); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2912); END_STATE(); case 2913: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if (lookahead == ',') ADVANCE(2915); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token8); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 2914: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2915); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2914); + if (lookahead == ',') ADVANCE(2916); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2914); END_STATE(); case 2915: ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2916); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2915); END_STATE(); case 2916: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if (lookahead == ',') ADVANCE(2918); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token10); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); END_STATE(); case 2917: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2918); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2917); + if (lookahead == ',') ADVANCE(2919); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2917); END_STATE(); case 2918: ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2919); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2918); END_STATE(); case 2919: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == 'e') ADVANCE(2920); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token11); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2919); END_STATE(); case 2920: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == 'n') ADVANCE(2921); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(2921); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); END_STATE(); case 2921: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == 'v') ADVANCE(3745); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(2922); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); END_STATE(); case 2922: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == ',') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'v') ADVANCE(3746); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); END_STATE(); case 2923: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'e') ADVANCE(2925); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == ',') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); END_STATE(); case 2924: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); if (lookahead == 'e') ADVANCE(2926); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2925: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2928); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == 'e') ADVANCE(2927); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2926: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'n') ADVANCE(2927); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == 'n') ADVANCE(2929); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2927: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == 'n') ADVANCE(2928); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2928: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if (lookahead == 'v') ADVANCE(3746); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == 'v') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2929: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2929); + if (lookahead == 'v') ADVANCE(3747); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2930: ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2930); END_STATE(); case 2931: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == 'e') ADVANCE(2932); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token12); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 2932: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == 'n') ADVANCE(2933); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'e') ADVANCE(2933); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2933: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == 'v') ADVANCE(3733); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'n') ADVANCE(2934); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2934: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == ',') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'v') ADVANCE(3734); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2935: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'e') ADVANCE(2937); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == ',') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 2936: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if (lookahead == 'e') ADVANCE(2938); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2937: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2940); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'e') ADVANCE(2939); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2938: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'n') ADVANCE(2939); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'n') ADVANCE(2941); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2939: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'n') ADVANCE(2940); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2940: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if (lookahead == 'v') ADVANCE(3734); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'v') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2941: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2942); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2941); + if (lookahead == 'v') ADVANCE(3735); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2942: ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2942); END_STATE(); case 2943: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if (lookahead == ',') ADVANCE(2945); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token14); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 2944: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2945); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2944); + if (lookahead == ',') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2944); END_STATE(); case 2945: ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2946); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2945); END_STATE(); case 2946: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if (lookahead == ',') ADVANCE(2948); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token16); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); END_STATE(); case 2947: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2948); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2947); + if (lookahead == ',') ADVANCE(2949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); case 2948: ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); - END_STATE(); - case 2949: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(707); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(2957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); + lookahead == '@') ADVANCE(2949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2948); + END_STATE(); + case 2949: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token17); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2949); END_STATE(); case 2950: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ' ') ADVANCE(707); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if (lookahead == ' ') ADVANCE(708); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); case 2951: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == ',') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + if (lookahead == ' ') ADVANCE(708); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2952: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 'a') ADVANCE(2954); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); + if (lookahead == ',') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2952); END_STATE(); case 2953: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if (lookahead == 'a') ADVANCE(2955); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); case 2954: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if (lookahead == 't') ADVANCE(2949); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); + if (lookahead == 'a') ADVANCE(2956); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2955: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if (lookahead == 't') ADVANCE(2950); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); case 2956: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); + if (lookahead == 't') ADVANCE(2951); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2957: ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); case 2958: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if (lookahead == ',') ADVANCE(2960); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token18); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 2959: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2960); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2959); + if (lookahead == ',') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2959); END_STATE(); case 2960: ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2960); END_STATE(); case 2961: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if (lookahead == ',') ADVANCE(2963); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token19); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); case 2962: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2963); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2962); + if (lookahead == ',') ADVANCE(2964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); END_STATE(); case 2963: ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2964); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2963); END_STATE(); case 2964: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if (lookahead == ',') ADVANCE(2966); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token20); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); case 2965: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2966); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2965); + if (lookahead == ',') ADVANCE(2967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); END_STATE(); case 2966: ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2967); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2966); END_STATE(); case 2967: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if (lookahead == ',') ADVANCE(2969); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token21); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); END_STATE(); case 2968: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2969); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2968); + if (lookahead == ',') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); END_STATE(); case 2969: ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); case 2970: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if (lookahead == ',') ADVANCE(2972); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token22); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 2971: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2971); + if (lookahead == ',') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); END_STATE(); case 2972: ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); END_STATE(); case 2973: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if (lookahead == ',') ADVANCE(2975); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token23); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 2974: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2975); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2974); + if (lookahead == ',') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); END_STATE(); case 2975: ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); END_STATE(); case 2976: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if (lookahead == ',') ADVANCE(2978); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token24); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 2977: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2978); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2977); + if (lookahead == ',') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); END_STATE(); case 2978: ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2979); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2978); END_STATE(); case 2979: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if (lookahead == ',') ADVANCE(2981); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token25); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 2980: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); case 2981: ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2981); END_STATE(); case 2982: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if (lookahead == ',') ADVANCE(2984); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token26); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 2983: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2984); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2983); + if (lookahead == ',') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); END_STATE(); case 2984: ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2985); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2984); END_STATE(); case 2985: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if (lookahead == ',') ADVANCE(2987); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token27); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 2986: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2987); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2986); + if (lookahead == ',') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); END_STATE(); case 2987: ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); END_STATE(); case 2988: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if (lookahead == ',') ADVANCE(2990); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token28); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 2989: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2990); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2989); + if (lookahead == ',') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); END_STATE(); case 2990: ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); END_STATE(); case 2991: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if (lookahead == ',') ADVANCE(2993); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token29); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 2992: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + if (lookahead == ',') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); END_STATE(); case 2993: ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); END_STATE(); case 2994: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if (lookahead == ',') ADVANCE(2996); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token30); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 2995: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2996); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2995); + if (lookahead == ',') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); END_STATE(); case 2996: ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); - END_STATE(); - case 2997: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(606); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + lookahead == '@') ADVANCE(2997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2996); + END_STATE(); + case 2997: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token31); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); case 2998: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(606); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if (lookahead == ' ') ADVANCE(607); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 2999: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1063); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == ' ') ADVANCE(607); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3000: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ' ') ADVANCE(1063); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if (lookahead == ' ') ADVANCE(1064); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3001: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3003); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == ' ') ADVANCE(1064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3002: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3024); + if (lookahead == ',') ADVANCE(3025); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3004); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3003: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3002); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3005); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3004: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3005); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3003); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3005: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3006); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3006); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3006: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == ',') ADVANCE(3024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3007); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3007: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'o') ADVANCE(2997); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == ',') ADVANCE(3025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3008: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'o') ADVANCE(2998); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3009: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 't') ADVANCE(2999); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == 'o') ADVANCE(2999); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3010: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 't') ADVANCE(3000); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3011: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'u') ADVANCE(3009); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == 't') ADVANCE(3001); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3012: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'u') ADVANCE(3010); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3013: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3017); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == 'u') ADVANCE(3011); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3014: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3019); + lookahead == 'i') ADVANCE(3018); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3015: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3018); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'i') ADVANCE(3020); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3016: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3020); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'i') ADVANCE(3019); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3017: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3014); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3021); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3018: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3016); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'n') ADVANCE(3015); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3019: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3022); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3017); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3020: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3021); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 't') ADVANCE(3023); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3021: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3024); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3022); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3022: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3023); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + lookahead == 'y') ADVANCE(3025); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3023: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3024); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3024: ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3025: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if (lookahead == ',') ADVANCE(3027); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token32); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3026: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3026); + if (lookahead == ',') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3026); END_STATE(); case 3027: ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3027); END_STATE(); case 3028: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == 'e') ADVANCE(3029); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token33); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3028); END_STATE(); case 3029: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == 'n') ADVANCE(3030); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == 'e') ADVANCE(3030); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); END_STATE(); case 3030: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == 'v') ADVANCE(3571); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == 'n') ADVANCE(3031); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); END_STATE(); case 3031: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == ',') ADVANCE(3039); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3031); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == 'v') ADVANCE(3572); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); END_STATE(); case 3032: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'e') ADVANCE(3034); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == ',') ADVANCE(3040); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3032); END_STATE(); case 3033: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if (lookahead == 'e') ADVANCE(3035); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3034: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'n') ADVANCE(3036); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == 'e') ADVANCE(3036); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3035: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); if (lookahead == 'n') ADVANCE(3037); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3036: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3572); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == 'n') ADVANCE(3038); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3037: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if (lookahead == 'v') ADVANCE(3040); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == 'v') ADVANCE(3573); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3038: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3039); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3038); + if (lookahead == 'v') ADVANCE(3041); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3039: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3040); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3039); END_STATE(); case 3040: ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3041: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if (lookahead == ',') ADVANCE(3043); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3041); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token34); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); END_STATE(); case 3042: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3043); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3042); + if (lookahead == ',') ADVANCE(3044); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3042); END_STATE(); case 3043: ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3043); END_STATE(); case 3044: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if (lookahead == ',') ADVANCE(3046); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token35); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); case 3045: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3045); + if (lookahead == ',') ADVANCE(3047); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3045); END_STATE(); case 3046: ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3047); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3046); END_STATE(); case 3047: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if (lookahead == ',') ADVANCE(3049); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token36); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); case 3048: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3048); + if (lookahead == ',') ADVANCE(3050); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3048); END_STATE(); case 3049: ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3049); END_STATE(); case 3050: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3052); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token37); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3050); END_STATE(); case 3051: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3050); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3053); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); case 3052: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3053); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3051); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); case 3053: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3054); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3054); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); case 3054: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == ',') ADVANCE(3064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3055); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); case 3055: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3059); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); + if (lookahead == ',') ADVANCE(3065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); case 3056: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3060); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3064); END_STATE(); case 3057: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3055); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3061); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3058: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3056); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3064); END_STATE(); case 3059: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3062); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3057); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3060: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3061); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + lookahead == 't') ADVANCE(3063); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3064); END_STATE(); case 3061: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3064); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3062); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3062: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3063); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); + lookahead == 'y') ADVANCE(3065); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3063: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3064); if ((',' <= lookahead && lookahead <= '.') || lookahead == '?' || - lookahead == '@') ADVANCE(3064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); + lookahead == '@') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3064); END_STATE(); case 3064: ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3064); END_STATE(); case 3065: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3067); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token38); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3066: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3065); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3068); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); case 3067: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3068); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3066); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); case 3068: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3069); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3069); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); case 3069: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == ',') ADVANCE(3074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3070); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); case 3070: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3072); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == ',') ADVANCE(3075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); case 3071: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3070); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3073); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 3072: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3073); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3071); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 3073: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3074); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3074); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 3074: ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3075); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 3075: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if (lookahead == ',') ADVANCE(3077); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token39); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 3076: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3077); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); + if (lookahead == ',') ADVANCE(3078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3076); END_STATE(); case 3077: ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3077); END_STATE(); case 3078: - ACCEPT_TOKEN(anon_sym_STAR_STAR); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token40); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3078); END_STATE(); case 3079: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS); + ACCEPT_TOKEN(anon_sym_STAR_STAR); END_STATE(); case 3080: - ACCEPT_TOKEN(anon_sym_STAR); - if (lookahead == '*') ADVANCE(3078); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS); END_STATE(); case 3081: - ACCEPT_TOKEN(anon_sym_SLASH); - if (lookahead == '/') ADVANCE(3084); + ACCEPT_TOKEN(anon_sym_STAR); + if (lookahead == '*') ADVANCE(3079); END_STATE(); case 3082: ACCEPT_TOKEN(anon_sym_SLASH); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '/') ADVANCE(3085); END_STATE(); case 3083: - ACCEPT_TOKEN(anon_sym_mod); + ACCEPT_TOKEN(anon_sym_SLASH); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3084: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH); + ACCEPT_TOKEN(anon_sym_mod); END_STATE(); case 3085: - ACCEPT_TOKEN(anon_sym_PLUS); - if (lookahead == '+') ADVANCE(3079); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH); END_STATE(); case 3086: - ACCEPT_TOKEN(anon_sym_DASH); + ACCEPT_TOKEN(anon_sym_PLUS); + if (lookahead == '+') ADVANCE(3080); END_STATE(); case 3087: - ACCEPT_TOKEN(anon_sym_bit_DASHshl); + ACCEPT_TOKEN(anon_sym_DASH); END_STATE(); case 3088: - ACCEPT_TOKEN(anon_sym_bit_DASHshr); + ACCEPT_TOKEN(anon_sym_bit_DASHshl); END_STATE(); case 3089: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_bit_DASHshr); END_STATE(); case 3090: - ACCEPT_TOKEN(anon_sym_BANG_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 3091: - ACCEPT_TOKEN(anon_sym_bit_DASHand); + ACCEPT_TOKEN(anon_sym_BANG_TILDE); END_STATE(); case 3092: - ACCEPT_TOKEN(anon_sym_bit_DASHxor); + ACCEPT_TOKEN(anon_sym_bit_DASHand); END_STATE(); case 3093: - ACCEPT_TOKEN(anon_sym_bit_DASHor); + ACCEPT_TOKEN(anon_sym_bit_DASHxor); END_STATE(); case 3094: - ACCEPT_TOKEN(anon_sym_and); + ACCEPT_TOKEN(anon_sym_bit_DASHor); END_STATE(); case 3095: - ACCEPT_TOKEN(anon_sym_xor); + ACCEPT_TOKEN(anon_sym_and); END_STATE(); case 3096: - ACCEPT_TOKEN(anon_sym_or); + ACCEPT_TOKEN(anon_sym_xor); END_STATE(); case 3097: - ACCEPT_TOKEN(anon_sym_in); + ACCEPT_TOKEN(anon_sym_or); END_STATE(); case 3098: - ACCEPT_TOKEN(anon_sym_not_DASHin); + ACCEPT_TOKEN(anon_sym_in); END_STATE(); case 3099: - ACCEPT_TOKEN(anon_sym_starts_DASHwith); + ACCEPT_TOKEN(anon_sym_not_DASHin); END_STATE(); case 3100: - ACCEPT_TOKEN(anon_sym_ends_DASHwith); + ACCEPT_TOKEN(anon_sym_starts_DASHwith); END_STATE(); case 3101: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_ends_DASHwith); END_STATE(); case 3102: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 3103: - ACCEPT_TOKEN(anon_sym_LT); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 3104: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(3105); END_STATE(); case 3105: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_LT); + if (lookahead == '=') ADVANCE(3106); END_STATE(); case 3106: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 3107: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(3108); END_STATE(); case 3108: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(3109); END_STATE(); case 3109: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '\n', 3552, - '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 3110: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3111: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3112: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(22); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3113: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3157, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(23); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3114: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3159, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3115: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3116: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3158, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3117: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3158, - 'i', 3214, - 'm', 3221, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3160, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, 'n', 3225, - 'o', 3154, - 's', 3243, - 'x', 3220, - '|', 3556, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(22); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3118: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - ')', 3594, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3160, - 'i', 3214, - 'm', 3221, - 'n', 3225, - 'o', 3162, - 's', 3243, - 'x', 3220, - '|', 3556, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3159, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3155, + 's', 3244, + 'x', 3221, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(23); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(22); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3119: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ':', 4089, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + ')', 3595, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3161, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3163, + 's', 3244, + 'x', 3221, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(23); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3120: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ':', 4089, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ':', 4090, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3121: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ':', 4089, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3157, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3122: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3123: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3124: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3125: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ':', 4090, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(24); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3126: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3157, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ':', 4090, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3127: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3159, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ':', 4090, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3158, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(24); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3128: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(25); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3129: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(26); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3130: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3131: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3132: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3157, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3158, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3133: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3159, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3160, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + '}', 3703, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3134: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ':', 4089, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(24); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(27); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3135: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(28); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3136: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - '}', 3702, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3137: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3138: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3158, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3139: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3158, - 'i', 3214, - 'm', 3221, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3160, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, 'n', 3225, - 'o', 3154, - 's', 3243, - 'x', 3220, - '|', 3556, - '}', 3702, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(25); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3140: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3160, - 'i', 3214, - 'm', 3221, - 'n', 3225, - 'o', 3162, - 's', 3243, - 'x', 3220, - '|', 3556, - '}', 3702, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3159, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3155, + 's', 3244, + 'x', 3221, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(26); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(25); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3141: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3158, - 'i', 3214, - 'm', 3221, - 'n', 3225, - 'o', 3154, - 's', 3243, - 'x', 3220, - '|', 3556, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3161, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3163, + 's', 3244, + 'x', 3221, + '|', 3557, + '}', 3703, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(27); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(26); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3142: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3160, - 'i', 3214, - 'm', 3221, - 'n', 3225, - 'o', 3162, - 's', 3243, - 'x', 3220, - '|', 3556, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3159, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3155, + 's', 3244, + 'x', 3221, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(28); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(27); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3143: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3834, - '/', 3081, - ':', 4089, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3179, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '\n', 3553, + '\r', 1, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3161, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3163, + 's', 3244, + 'x', 3221, + '|', 3557, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(28); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3144: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3834, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3179, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3835, + '/', 3082, + ':', 4090, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3180, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3145: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ':', 4089, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3179, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3835, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3180, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3146: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ':', 4089, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3179, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ':', 4090, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3180, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(346); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3147: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ':', 4089, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3181, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ':', 4090, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3180, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(345); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3148: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3179, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ':', 4090, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3182, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(346); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3149: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3179, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3180, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(361); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3150: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3181, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3228, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3180, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3151: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3216, - 'i', 3214, - 'm', 3221, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3182, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, 'n', 3225, - 'o', 3228, - 's', 3243, - 'x', 3220, + 'o', 3229, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3152: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '#') ADVANCE(5462); + ADVANCE_MAP( + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3217, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3229, + 's', 3244, + 'x', 3221, + ); if (lookahead == '\t' || - lookahead == ' ') SKIP(360); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3153: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '\t' || + lookahead == ' ') SKIP(361); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + END_STATE(); + case 3154: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( '+', 3186, '-', 3188, - '>', 4245, - 'I', 3257, + '>', 4246, + 'I', 3258, '_', 3188, - 'i', 3257, - 'n', 3197, - 'r', 3229, - 'B', 4015, - 'b', 4015, + 'i', 3258, + 'n', 3198, + 'r', 3230, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); - END_STATE(); - case 3154: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3199); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'r') ADVANCE(3096); - if (lookahead == 'u') ADVANCE(3245); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3155: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3219); - if (lookahead == '>') ADVANCE(4237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3200); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(3097); + if (lookahead == 'u') ADVANCE(3246); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3156: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3200); - if (lookahead == '>') ADVANCE(4241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3220); + if (lookahead == '>') ADVANCE(4238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3157: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 3218, - '>', 4245, - 'I', 3257, - 'i', 3257, - 'n', 3197, - 'r', 3229, - 'B', 4015, - 'b', 4015, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3201); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3158: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3218); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'n') ADVANCE(3197); - if (lookahead == 'r') ADVANCE(3229); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + ADVANCE_MAP( + '+', 3219, + '>', 4246, + 'I', 3258, + 'i', 3258, + 'n', 3198, + 'r', 3230, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3159: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - ADVANCE_MAP( - '+', 3222, - '>', 1573, - 'I', 3257, - 'i', 3257, - 'n', 3197, - 'r', 3234, - 'B', 4015, - 'b', 4015, - ); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3219); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'n') ADVANCE(3198); + if (lookahead == 'r') ADVANCE(3230); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3160: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3222); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'n') ADVANCE(3197); - if (lookahead == 'r') ADVANCE(3234); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + ADVANCE_MAP( + '+', 3223, + '>', 1574, + 'I', 3258, + 'i', 3258, + 'n', 3198, + 'r', 3235, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3161: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '+') ADVANCE(3223); + if (lookahead == '>') ADVANCE(1574); + if (lookahead == 'n') ADVANCE(3198); + if (lookahead == 'r') ADVANCE(3235); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + END_STATE(); + case 3162: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( '+', 3187, '-', 3188, - '>', 1573, - 'I', 3257, + '>', 1574, + 'I', 3258, '_', 3188, - 'i', 3257, - 'n', 3197, - 'r', 3234, - 'B', 4015, - 'b', 4015, + 'i', 3258, + 'n', 3198, + 'r', 3235, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); - END_STATE(); - case 3162: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3201); - if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'r') ADVANCE(3096); - if (lookahead == 'u') ADVANCE(3249); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3163: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3226); - if (lookahead == '>') ADVANCE(1576); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3202); + if (lookahead == '>') ADVANCE(1575); + if (lookahead == 'r') ADVANCE(3097); + if (lookahead == 'u') ADVANCE(3250); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3164: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '+') ADVANCE(3202); - if (lookahead == '>') ADVANCE(1578); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3227); + if (lookahead == '>') ADVANCE(1577); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3165: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3191); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '+') ADVANCE(3203); + if (lookahead == '>') ADVANCE(1579); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3166: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3207); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '-') ADVANCE(3192); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3167: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '-') ADVANCE(3254); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '-') ADVANCE(3208); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3168: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '-') ADVANCE(3255); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3169: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '.') ADVANCE(3833); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '-') ADVANCE(3256); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3170: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '=') ADVANCE(3102); - if (lookahead == '~') ADVANCE(3090); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3171: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '=') ADVANCE(3103); + if (lookahead == '~') ADVANCE(3091); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3172: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4261); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3173: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3174: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(4257); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '>') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3175: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1575); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3176: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1577); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '>') ADVANCE(1576); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3177: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '>') ADVANCE(1579); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '>') ADVANCE(1578); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3178: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '>') ADVANCE(1580); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3179: + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (lookahead == '>') ADVANCE(1581); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); + END_STATE(); + case 3180: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); ADVANCE_MAP( - 'I', 3257, + 'I', 3258, '_', 3188, - 'i', 3257, - 'n', 3197, + 'i', 3258, + 'n', 3198, '+', 3188, '-', 3188, - 'B', 4015, - 'b', 4015, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); - case 3180: + case 3181: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3257); + if (lookahead == 'I') ADVANCE(3258); if (lookahead == '_') ADVANCE(3188); - if (lookahead == 'i') ADVANCE(3192); + if (lookahead == 'i') ADVANCE(3193); if (lookahead == '+' || lookahead == '-') ADVANCE(3188); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); - END_STATE(); - case 3181: - ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3257); - if (lookahead == 'i') ADVANCE(3257); - if (lookahead == 'n') ADVANCE(3197); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3182: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3257); - if (lookahead == 'i') ADVANCE(3257); + if (lookahead == 'I') ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3258); + if (lookahead == 'n') ADVANCE(3198); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3183: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3257); - if (lookahead == 'i') ADVANCE(3192); + if (lookahead == 'I') ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3258); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3184: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'I') ADVANCE(3257); - if (lookahead == 'i') ADVANCE(3212); - if (lookahead == 'o') ADVANCE(3195); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'I') ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3193); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3185: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == '_') ADVANCE(3185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'I') ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3213); + if (lookahead == 'o') ADVANCE(3196); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3186: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(3188); - if (lookahead == 'o') ADVANCE(3171); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3172); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3187: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(3188); - if (lookahead == 'o') ADVANCE(3175); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3176); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3188: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == '_') ADVANCE(3188); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3189: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3256); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == '_') ADVANCE(3189); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3190: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3233); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'a') ADVANCE(3257); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3191: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'a') ADVANCE(3217); - if (lookahead == 'o') ADVANCE(3231); - if (lookahead == 's') ADVANCE(3203); - if (lookahead == 'x') ADVANCE(3223); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'a') ADVANCE(3234); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3192: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'a') ADVANCE(3218); + if (lookahead == 'o') ADVANCE(3232); + if (lookahead == 's') ADVANCE(3204); + if (lookahead == 'x') ADVANCE(3224); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3193: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'c') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3194: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3094); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3195: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3083); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'd') ADVANCE(3095); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3196: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3091); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'd') ADVANCE(3084); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3197: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'd') ADVANCE(3240); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'd') ADVANCE(3092); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3198: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3193); - if (lookahead == 't') ADVANCE(3190); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'd') ADVANCE(3241); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3199: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3172); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'e') ADVANCE(3194); + if (lookahead == 't') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3200: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3236); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'e') ADVANCE(3173); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3201: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3176); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'e') ADVANCE(3237); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3202: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'e') ADVANCE(3238); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'e') ADVANCE(3177); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3203: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3211); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'e') ADVANCE(3239); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3204: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3100); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'h') ADVANCE(3212); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3205: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'h') ADVANCE(3099); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'h') ADVANCE(3101); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3206: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3242); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'h') ADVANCE(3100); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3207: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3215); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3243); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3208: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3246); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3216); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3209: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'i') ADVANCE(3248); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3247); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3210: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'k') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'i') ADVANCE(3249); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3211: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'l') ADVANCE(3087); - if (lookahead == 'r') ADVANCE(3088); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3212: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'l') ADVANCE(3088); + if (lookahead == 'r') ADVANCE(3089); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3213: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3194); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3214: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3097); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'n') ADVANCE(3195); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3215: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'n') ADVANCE(3098); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3216: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3197); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'n') ADVANCE(3099); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3217: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'n') ADVANCE(3196); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'n') ADVANCE(3198); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3218: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3171); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'n') ADVANCE(3197); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3219: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3252); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3172); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3220: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3230); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3253); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3221: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3195); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3231); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3222: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3175); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3196); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3223: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3232); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3176); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3224: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3244); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3233); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3225: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3244); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3245); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3226: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'o') ADVANCE(3253); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3245); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3227: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'o') ADVANCE(3254); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3228: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3096); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3229: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3155); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3097); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3230: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3095); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3156); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3231: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3093); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3096); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3232: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3092); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3094); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3233: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3251); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3093); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3234: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3163); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3252); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3235: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3174); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3164); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3236: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3235); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3175); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3237: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3178); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3236); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3238: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'r') ADVANCE(3237); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3179); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3239: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'r') ADVANCE(3238); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3240: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 's') ADVANCE(3167); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3241: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 's') ADVANCE(3168); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3242: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3165); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 's') ADVANCE(3169); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3243: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3190); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3166); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3244: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3166); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3191); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3245: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3156); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3167); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3246: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3204); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3157); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3247: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3173); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3205); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3248: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3205); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3174); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3249: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3164); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3206); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3250: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3177); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3165); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3251: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 't') ADVANCE(3241); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3178); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3252: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3247); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 't') ADVANCE(3242); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3253: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'u') ADVANCE(3250); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'u') ADVANCE(3248); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3254: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'w') ADVANCE(3208); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'u') ADVANCE(3251); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3255: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); if (lookahead == 'w') ADVANCE(3209); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3256: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'y') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'w') ADVANCE(3210); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3257: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3258: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3259: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); - ADVANCE_MAP( - '\n', 3552, - '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, - ); - if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3260: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - '_', 3185, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1672); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3261: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3849, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3262: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3263: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3157, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + '_', 3189, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(1673); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3264: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3169, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3183, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3159, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3154, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3265: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3153, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3154, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3181, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3162, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3266: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '.', 3848, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'B', 4015, - 'E', 3180, - 'G', 3183, - 'K', 3183, - 'M', 3183, - 'P', 3183, - 'T', 3183, - 'a', 3213, - 'b', 4016, - 'd', 3189, - 'e', 3161, - 'g', 3182, - 'h', 3227, - 'i', 3214, - 'k', 3182, - 'm', 3184, - 'n', 3224, - 'o', 3162, - 'p', 3182, - 's', 3198, - 't', 3182, - 'u', 3239, - 'w', 3210, - 'x', 3220, - '|', 3556, - 0xb5, 3239, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3158, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, + 'n', 3225, + 'o', 3155, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3267: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3158, - 'i', 3214, - 'm', 3221, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '.', 3170, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'B', 4016, + 'E', 3184, + 'G', 3184, + 'K', 3184, + 'M', 3184, + 'P', 3184, + 'T', 3184, + 'a', 3214, + 'b', 4017, + 'd', 3190, + 'e', 3160, + 'g', 3183, + 'h', 3228, + 'i', 3215, + 'k', 3183, + 'm', 3185, 'n', 3225, - 'o', 3154, - 's', 3243, - 'x', 3220, - '|', 3556, + 'o', 3163, + 'p', 3183, + 's', 3199, + 't', 3183, + 'u', 3240, + 'w', 3211, + 'x', 3221, + '|', 3557, + 0xb5, 3240, ); if (lookahead == '\t' || - lookahead == ' ') SKIP(1671); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3268: ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); - if (eof) ADVANCE(1772); + if (eof) ADVANCE(1773); ADVANCE_MAP( - '\n', 3552, + '\n', 3553, '\r', 1, - '!', 3170, - '#', 5462, - '*', 3080, - '+', 3085, - '-', 3086, - '/', 3081, - ';', 3555, - '<', 3104, - '=', 453, - '>', 3107, - 'a', 3213, - 'b', 3206, - 'e', 3160, - 'i', 3214, - 'm', 3221, - 'n', 3225, - 'o', 3162, - 's', 3243, - 'x', 3220, - '|', 3556, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3159, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3155, + 's', 3244, + 'x', 3221, + '|', 3557, ); if (lookahead == '\t' || lookahead == ' ') SKIP(1672); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3258); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3269: - ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3285); - if (lookahead == '-') ADVANCE(5254); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == '_') ADVANCE(3285); - if (lookahead == 'i') ADVANCE(3330); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + ACCEPT_TOKEN(aux_sym_cmd_identifier_token41); + if (eof) ADVANCE(1773); + ADVANCE_MAP( + '\n', 3553, + '\r', 1, + '!', 3171, + '#', 5463, + '*', 3081, + '+', 3086, + '-', 3087, + '/', 3082, + ';', 3556, + '<', 3105, + '=', 454, + '>', 3108, + 'a', 3214, + 'b', 3207, + 'e', 3161, + 'i', 3215, + 'm', 3222, + 'n', 3226, + 'o', 3163, + 's', 3244, + 'x', 3221, + '|', 3557, + ); + if (lookahead == '\t' || + lookahead == ' ') SKIP(1673); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3259); END_STATE(); case 3270: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3285); - if (lookahead == '-') ADVANCE(5254); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == '_') ADVANCE(3285); - if (lookahead == 'i') ADVANCE(3289); + if (lookahead == '+') ADVANCE(3286); + if (lookahead == '-') ADVANCE(5255); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == '_') ADVANCE(3286); + if (lookahead == 'i') ADVANCE(3331); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3271: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3285); - if (lookahead == '-') ADVANCE(5254); - if (lookahead == '_') ADVANCE(3285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '+') ADVANCE(3286); + if (lookahead == '-') ADVANCE(5255); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == '_') ADVANCE(3286); + if (lookahead == 'i') ADVANCE(3290); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3272: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3285); - if (lookahead == '-') ADVANCE(4518); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == '_') ADVANCE(3285); - if (lookahead == 'i') ADVANCE(3330); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '+') ADVANCE(3286); + if (lookahead == '-') ADVANCE(5255); + if (lookahead == '_') ADVANCE(3286); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3273: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '+') ADVANCE(3285); + if (lookahead == '+') ADVANCE(3286); if (lookahead == '-') ADVANCE(4518); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == '_') ADVANCE(3285); - if (lookahead == 'i') ADVANCE(3289); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == '_') ADVANCE(3286); + if (lookahead == 'i') ADVANCE(3331); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3274: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1195); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '+') ADVANCE(3286); + if (lookahead == '-') ADVANCE(4518); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == '_') ADVANCE(3286); + if (lookahead == 'i') ADVANCE(3290); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3275: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1549); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '-') ADVANCE(1196); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3276: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1275); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '-') ADVANCE(1550); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3277: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(1265); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '-') ADVANCE(1276); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3278: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '-') ADVANCE(673); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '-') ADVANCE(1266); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3279: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == 'i') ADVANCE(3330); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '-') ADVANCE(674); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3280: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == 'i') ADVANCE(3289); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == 'i') ADVANCE(3331); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3281: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I') ADVANCE(3330); - if (lookahead == 'i') ADVANCE(3307); - if (lookahead == 's') ADVANCE(4025); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == 'i') ADVANCE(3290); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3282: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3283); - if (lookahead == 'b') ADVANCE(3339); - if (lookahead == 'o') ADVANCE(3341); - if (lookahead == 'x') ADVANCE(3342); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'I') ADVANCE(3331); + if (lookahead == 'i') ADVANCE(3308); + if (lookahead == 's') ADVANCE(4026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3283: ACCEPT_TOKEN(sym_identifier); - if (lookahead == '_') ADVANCE(3283); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '_') ADVANCE(3284); + if (lookahead == 'b') ADVANCE(3340); + if (lookahead == 'o') ADVANCE(3342); + if (lookahead == 'x') ADVANCE(3343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3284); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3284: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(3284); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3284); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3285: ACCEPT_TOKEN(sym_identifier); if (lookahead == '_') ADVANCE(3285); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3286: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3328); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '_') ADVANCE(3286); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3287: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3320); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'a') ADVANCE(3329); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3288: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'a') ADVANCE(3301); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'a') ADVANCE(3321); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3289: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'b') ADVANCE(4021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'a') ADVANCE(3302); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3290: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'c') ADVANCE(4025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3291: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'd') ADVANCE(3298); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'c') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3292: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3302); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'd') ADVANCE(3299); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3293: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3274); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3303); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3294: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3921); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3275); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3295: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3929); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3922); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3296: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3290); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3930); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3297: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3587); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3291); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3298: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'e') ADVANCE(3743); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3588); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3299: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'i') ADVANCE(3291); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(3744); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3300: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'k') ADVANCE(4025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'i') ADVANCE(3292); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3301: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3322); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'k') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3302: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3303); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'l') ADVANCE(3323); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3303: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3277); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'l') ADVANCE(3304); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3304: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'l') ADVANCE(3278); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3305: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'l') ADVANCE(3304); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'l') ADVANCE(3279); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3306: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'm') ADVANCE(3313); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'l') ADVANCE(3305); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3307: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(4025); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'm') ADVANCE(3314); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3308: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3665); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'n') ADVANCE(4026); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3309: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'n') ADVANCE(3293); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'n') ADVANCE(3666); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3310: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3324); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3334); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'n') ADVANCE(3294); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3311: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'o') ADVANCE(3315); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'o') ADVANCE(3325); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3312: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'o') ADVANCE(3316); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3313: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'p') ADVANCE(3312); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'o') ADVANCE(3317); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3314: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3311); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'p') ADVANCE(3313); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3315: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3606); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3312); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3316: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3325); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3607); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3317: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(4025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3326); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3318: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3314); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3319: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3326); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3315); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3320: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'r') ADVANCE(3275); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3327); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3321: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(4025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(3276); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3322: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3295); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 's') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3323: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 's') ADVANCE(3297); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 's') ADVANCE(3296); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3324: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3340); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 's') ADVANCE(3298); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3325: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 't') ADVANCE(3276); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 't') ADVANCE(3341); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3326: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3294); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 't') ADVANCE(3277); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3327: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'u') ADVANCE(3305); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'u') ADVANCE(3295); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3328: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'y') ADVANCE(4025); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'u') ADVANCE(3306); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3329: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3334); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'y') ADVANCE(4026); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3330: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4021); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3335); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3331: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3333); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4022); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3332: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3337); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3334); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3333: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3336); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == 'i') ADVANCE(3338); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3334: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3337); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3335: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3331); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == 'n') ADVANCE(3344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3336: ACCEPT_TOKEN(sym_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3332); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3337: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3338); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3333); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3338: ACCEPT_TOKEN(sym_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3343); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3339); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3339: + ACCEPT_TOKEN(sym_identifier); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3344); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); + END_STATE(); + case 3340: ACCEPT_TOKEN(sym_identifier); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3339); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == '_') ADVANCE(3340); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); - case 3340: + case 3341: ACCEPT_TOKEN(sym_identifier); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3792); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); - case 3341: + case 3342: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3341); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + lookahead == '_') ADVANCE(3342); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); - case 3342: + case 3343: ACCEPT_TOKEN(sym_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3342); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); - END_STATE(); - case 3343: - ACCEPT_TOKEN(sym_identifier); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3343); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3344: - ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4400); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'r') ADVANCE(3439); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + ACCEPT_TOKEN(sym_identifier); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3345: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4393); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'u') ADVANCE(3462); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(4401); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'r') ADVANCE(3440); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3346: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4401); - if (lookahead == '>') ADVANCE(4237); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(4394); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'u') ADVANCE(3463); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3347: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(4394); - if (lookahead == '>') ADVANCE(4241); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(4402); + if (lookahead == '>') ADVANCE(4238); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3348: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1185); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(3442); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(4395); + if (lookahead == '>') ADVANCE(4242); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3349: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(759); + if (lookahead == '+') ADVANCE(1186); if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(3464); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3443); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3350: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(1230); - if (lookahead == '>') ADVANCE(1576); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(760); + if (lookahead == '>') ADVANCE(1575); + if (lookahead == 'u') ADVANCE(3465); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3351: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '+') ADVANCE(817); - if (lookahead == '>') ADVANCE(1578); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(1231); + if (lookahead == '>') ADVANCE(1577); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3352: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3512); - if (lookahead == '_') ADVANCE(3362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '+') ADVANCE(818); + if (lookahead == '>') ADVANCE(1579); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3353: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3382); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == '-') ADVANCE(3513); + if (lookahead == '_') ADVANCE(3363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3354: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3384); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == '-') ADVANCE(3383); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 3355: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3387); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == '-') ADVANCE(3385); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3356: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3389); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == '-') ADVANCE(3388); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3357: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-') ADVANCE(3513); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '-') ADVANCE(3390); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3358: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == ':') ADVANCE(4444); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '-') ADVANCE(3514); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3359: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N') ADVANCE(3486); - if (lookahead == 'f') ADVANCE(3519); - if (lookahead == 'n') ADVANCE(3487); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == ':') ADVANCE(4445); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3360: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T') ADVANCE(3514); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'N') ADVANCE(3487); + if (lookahead == 'f') ADVANCE(3520); + if (lookahead == 'n') ADVANCE(3488); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3361: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3362); - if (lookahead == 'b') ADVANCE(4013); - if (lookahead == 'o') ADVANCE(4029); - if (lookahead == 'x') ADVANCE(4034); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'T') ADVANCE(3515); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3362: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3362); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '_') ADVANCE(3363); + if (lookahead == 'b') ADVANCE(4013); + if (lookahead == 'o') ADVANCE(4029); + if (lookahead == 'x') ADVANCE(4034); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3363: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3352); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '_') ADVANCE(3363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3364: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3362); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3363); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '_') ADVANCE(3363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3353); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3365: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '_') ADVANCE(3362); + if (lookahead == '_') ADVANCE(3363); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3364); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3366: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3413); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '_') ADVANCE(3363); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3365); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3367: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3412); - if (lookahead == 'o') ADVANCE(3376); - if (lookahead == 'u') ADVANCE(3465); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3414); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3368: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3411); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3413); + if (lookahead == 'o') ADVANCE(3377); + if (lookahead == 'u') ADVANCE(3466); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3369: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3481); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3412); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3370: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3460); - if (lookahead == 'o') ADVANCE(3424); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3482); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3371: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3456); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3461); + if (lookahead == 'o') ADVANCE(3425); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3372: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'a') ADVANCE(3421); - if (lookahead == 'o') ADVANCE(3448); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3457); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3373: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3404); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'a') ADVANCE(3422); + if (lookahead == 'o') ADVANCE(3449); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3374: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3388); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'c') ADVANCE(3405); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3375: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'c') ADVANCE(3405); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'c') ADVANCE(3389); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3376: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3475); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'c') ADVANCE(3406); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3377: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'd') ADVANCE(3383); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'd') ADVANCE(3476); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3378: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3919); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'd') ADVANCE(3384); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3379: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3927); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3920); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3380: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3401); - if (lookahead == 'o') ADVANCE(3518); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3928); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3381: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'e') ADVANCE(3402); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'o') ADVANCE(3519); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3382: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3425); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'e') ADVANCE(3403); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3383: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3354); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3426); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 3384: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3426); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == 'e') ADVANCE(3355); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3385: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3368); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3427); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3386: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3461); - if (lookahead == 'o') ADVANCE(3432); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3369); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3387: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3427); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == 'e') ADVANCE(3462); + if (lookahead == 'o') ADVANCE(3433); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3388: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3356); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3428); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3389: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3428); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'e') ADVANCE(3357); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3390: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3447); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3429); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3391: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3444); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3448); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3392: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3526); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3445); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3393: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3528); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3527); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3394: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3531); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3529); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3395: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3533); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3532); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3396: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3539); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3534); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3397: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3542); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3540); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3398: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3544); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3543); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3399: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3549); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3545); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3400: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'e') ADVANCE(3450); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3550); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3401: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'f') ADVANCE(3521); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'e') ADVANCE(3451); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3402: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'g') ADVANCE(3409); - if (lookahead == 't') ADVANCE(3472); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'f') ADVANCE(3522); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3403: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3410); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'g') ADVANCE(3410); + if (lookahead == 't') ADVANCE(3473); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3404: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3536); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'h') ADVANCE(3411); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3405: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'h') ADVANCE(3541); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'h') ADVANCE(3537); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3406: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3377); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'h') ADVANCE(3542); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3407: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3371); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'i') ADVANCE(3378); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3408: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3431); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'i') ADVANCE(3372); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3409: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3454); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'i') ADVANCE(3432); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3410: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'i') ADVANCE(3422); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'i') ADVANCE(3455); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3411: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3535); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'i') ADVANCE(3423); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3412: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'k') ADVANCE(3394); - if (lookahead == 't') ADVANCE(3375); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'k') ADVANCE(3536); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3413: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3453); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'k') ADVANCE(3395); + if (lookahead == 't') ADVANCE(3376); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3414: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3911); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3454); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3415: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3407); - if (lookahead == 's') ADVANCE(3517); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3912); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3416: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3414); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3408); + if (lookahead == 's') ADVANCE(3518); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3417: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3369); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3415); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3418: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3419); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3370); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3419: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3532); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3420); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3420: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3458); - if (lookahead == 'r') ADVANCE(3443); - if (lookahead == 'x') ADVANCE(3437); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3533); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3421: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(3459); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3444); + if (lookahead == 'x') ADVANCE(3438); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3422: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'l') ADVANCE(3397); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3460); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3423: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'l') ADVANCE(3398); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3424: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3457); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'l') ADVANCE(3399); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3425: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3477); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'n') ADVANCE(3458); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3426: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'n') ADVANCE(3478); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 3427: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3480); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == 'n') ADVANCE(3479); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3428: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3479); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'n') ADVANCE(3481); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3429: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3543); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'n') ADVANCE(3480); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3430: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3545); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'n') ADVANCE(3544); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3431: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'n') ADVANCE(3474); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'n') ADVANCE(3546); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3432: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3436); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'n') ADVANCE(3475); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3433: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3470); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'o') ADVANCE(3437); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3434: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3446); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'o') ADVANCE(3471); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3435: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'o') ADVANCE(3449); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'o') ADVANCE(3447); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3436: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3530); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'o') ADVANCE(3450); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3437: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'p') ADVANCE(3434); - if (lookahead == 't') ADVANCE(3391); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'p') ADVANCE(3531); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3438: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3468); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'p') ADVANCE(3435); + if (lookahead == 't') ADVANCE(3392); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3439: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3346); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3469); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3440: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3473); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3347); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3441: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3374); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3474); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3442: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3350); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3375); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3443: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3435); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3351); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3444: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3429); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3436); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3445: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3385); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3430); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3446: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3463); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3386); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3447: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3417); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3464); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3448: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3522); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3418); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3449: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3538); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3523); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3450: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3550); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3539); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3451: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'r') ADVANCE(3430); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3551); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3452: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3755); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'r') ADVANCE(3431); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3453: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3379); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3756); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3454: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3467); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3380); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3455: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3392); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3468); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3456: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3534); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3393); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3457: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3466); - if (lookahead == 't') ADVANCE(3408); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3535); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3458: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3393); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3467); + if (lookahead == 't') ADVANCE(3409); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3459: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 's') ADVANCE(3396); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3394); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3460: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3373); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 's') ADVANCE(3397); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3461: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3353); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3374); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3462: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3347); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3354); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3463: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3355); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3348); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3464: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3351); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3356); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3465: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3524); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3352); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3466: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3537); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3525); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3467: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 't') ADVANCE(3400); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3538); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3468: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3378); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 't') ADVANCE(3401); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3469: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3416); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3494); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3379); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3470: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3441); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3417); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3495); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3471: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3418); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3499); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3442); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3472: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3451); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3419); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3500); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3473: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3395); - if (lookahead == 'y') ADVANCE(3525); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3452); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3474: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3399); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3396); + if (lookahead == 'y') ADVANCE(3526); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3475: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'u') ADVANCE(3423); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3400); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3476: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3390); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'u') ADVANCE(3424); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3477: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3529); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if (lookahead == 'v') ADVANCE(3391); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3478: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3540); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == 'v') ADVANCE(3530); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 3479: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3548); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == 'v') ADVANCE(3541); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3480: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'v') ADVANCE(3551); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if (lookahead == 'v') ADVANCE(3549); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3481: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'y') ADVANCE(3547); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'v') ADVANCE(3552); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3482: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '-' || - lookahead == '?') ADVANCE(3516); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3482); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'y') ADVANCE(3548); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3483: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3494); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == '-' || + lookahead == '?') ADVANCE(3517); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3483); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3484: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(3499); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == 'a') ADVANCE(3495); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3485: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3493); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(3500); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3486: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3489); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == 'f') ADVANCE(3494); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3487: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3491); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'f') ADVANCE(3490); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3488: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3501); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3492); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3489: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3498); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + lookahead == 'i') ADVANCE(3502); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3490: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3502); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + lookahead == 'i') ADVANCE(3499); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3491: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3500); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'i') ADVANCE(3503); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3492: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3503); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'i') ADVANCE(3501); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3493: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3497); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == 'i') ADVANCE(3504); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3494: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3516); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(3498); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3495: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3485); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == 'n') ADVANCE(3517); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3496: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(3486); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3497: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3488); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == 'n') ADVANCE(3487); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3498: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3490); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + lookahead == 'n') ADVANCE(3489); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3499: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3520); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == 'n') ADVANCE(3491); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3500: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(3492); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'n') ADVANCE(3521); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3501: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(3504); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(3493); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3502: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3506); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + lookahead == 't') ADVANCE(3505); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3503: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'T' || - lookahead == 't') ADVANCE(3505); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 't') ADVANCE(3507); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3504: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3516); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(3506); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3505: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3523); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'y') ADVANCE(3517); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3506: ACCEPT_TOKEN(sym_long_flag_identifier); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3527); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + lookahead == 'y') ADVANCE(3524); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3507: ACCEPT_TOKEN(sym_long_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3507); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3528); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3508: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(3508); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3509: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3357); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3509); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3510: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3360); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3511: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3358); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3361); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3512: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3509); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3359); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3513: ACCEPT_TOKEN(sym_long_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3510); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3514: ACCEPT_TOKEN(sym_long_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3511); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3515: ACCEPT_TOKEN(sym_long_flag_identifier); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3515); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3512); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3516: ACCEPT_TOKEN(sym_long_flag_identifier); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3517: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); END_STATE(); case 3518: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3518); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); case 3519: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3519); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 3520: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3520); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 3521: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3521); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3078); END_STATE(); case 3522: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3522); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); END_STATE(); case 3523: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3523); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 3524: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3524); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2915); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3525: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3525); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2916); END_STATE(); case 3526: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3526); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 3527: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3527); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); END_STATE(); case 3528: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3528); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3529: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3529); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2912); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 3530: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3530); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2913); END_STATE(); case 3531: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3531); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); case 3532: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3532); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3028); END_STATE(); case 3533: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3533); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3050); END_STATE(); case 3534: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3534); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2889); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); case 3535: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3535); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); END_STATE(); case 3536: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3536); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3537: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3537); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2918); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 3538: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3538); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2919); END_STATE(); case 3539: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3539); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); END_STATE(); case 3540: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3540); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); case 3541: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3541); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3542: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3542); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 3543: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3543); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); case 3544: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3544); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); END_STATE(); case 3545: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3545); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2901); END_STATE(); case 3546: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3546); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3039); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 3547: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3547); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3040); END_STATE(); case 3548: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3548); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); END_STATE(); case 3549: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3549); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3550: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3550); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 3551: ACCEPT_TOKEN(sym_long_flag_identifier); if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3551); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2949); END_STATE(); case 3552: - ACCEPT_TOKEN(sym__newline); + ACCEPT_TOKEN(sym_long_flag_identifier); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3552); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); END_STATE(); case 3553: - ACCEPT_TOKEN(sym__space); - if (lookahead == ':') ADVANCE(4089); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3553); + ACCEPT_TOKEN(sym__newline); END_STATE(); case 3554: ACCEPT_TOKEN(sym__space); + if (lookahead == ':') ADVANCE(4090); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3554); END_STATE(); case 3555: - ACCEPT_TOKEN(anon_sym_SEMI); + ACCEPT_TOKEN(sym__space); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(3555); END_STATE(); case 3556: - ACCEPT_TOKEN(anon_sym_PIPE); + ACCEPT_TOKEN(anon_sym_SEMI); END_STATE(); case 3557: - ACCEPT_TOKEN(anon_sym_err_GT_PIPE); + ACCEPT_TOKEN(anon_sym_PIPE); END_STATE(); case 3558: - ACCEPT_TOKEN(anon_sym_out_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_GT_PIPE); END_STATE(); case 3559: - ACCEPT_TOKEN(anon_sym_e_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_GT_PIPE); END_STATE(); case 3560: - ACCEPT_TOKEN(anon_sym_o_GT_PIPE); + ACCEPT_TOKEN(anon_sym_e_GT_PIPE); END_STATE(); case 3561: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_GT_PIPE); END_STATE(); case 3562: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_PIPE); END_STATE(); case 3563: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_PIPE); END_STATE(); case 3564: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_PIPE); END_STATE(); case 3565: - ACCEPT_TOKEN(anon_sym_def); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_PIPE); END_STATE(); case 3566: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2886); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5295); END_STATE(); case 3567: ACCEPT_TOKEN(anon_sym_def); - if (lookahead == ',') ADVANCE(2886); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2884); + if (lookahead == ',') ADVANCE(2887); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5296); END_STATE(); case 3568: ACCEPT_TOKEN(anon_sym_def); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2886); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2885); + if (lookahead == ',') ADVANCE(2887); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2885); END_STATE(); case 3569: ACCEPT_TOKEN(anon_sym_def); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2886); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2887); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2886); END_STATE(); case 3570: - ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5341); + ACCEPT_TOKEN(anon_sym_def); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2887); END_STATE(); case 3571: ACCEPT_TOKEN(anon_sym_export_DASHenv); - if (lookahead == ',') ADVANCE(2894); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); + if (lookahead == ',') ADVANCE(2895); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5342); END_STATE(); case 3572: ACCEPT_TOKEN(anon_sym_export_DASHenv); + if (lookahead == ',') ADVANCE(2895); if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2894); END_STATE(); case 3573: - ACCEPT_TOKEN(anon_sym_extern); + ACCEPT_TOKEN(anon_sym_export_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); END_STATE(); case 3574: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2897); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 3575: ACCEPT_TOKEN(anon_sym_extern); - if (lookahead == ',') ADVANCE(2897); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2895); + if (lookahead == ',') ADVANCE(2898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5332); END_STATE(); case 3576: ACCEPT_TOKEN(anon_sym_extern); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2897); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2896); + if (lookahead == ',') ADVANCE(2898); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2896); END_STATE(); case 3577: ACCEPT_TOKEN(anon_sym_extern); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2897); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2898); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2897); END_STATE(); case 3578: - ACCEPT_TOKEN(anon_sym_module); + ACCEPT_TOKEN(anon_sym_extern); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); END_STATE(); case 3579: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2900); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5332); END_STATE(); case 3580: ACCEPT_TOKEN(anon_sym_module); - if (lookahead == ',') ADVANCE(2900); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2898); + if (lookahead == ',') ADVANCE(2901); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5333); END_STATE(); case 3581: ACCEPT_TOKEN(anon_sym_module); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2900); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2899); + if (lookahead == ',') ADVANCE(2901); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2899); END_STATE(); case 3582: ACCEPT_TOKEN(anon_sym_module); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2900); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2901); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2900); END_STATE(); case 3583: - ACCEPT_TOKEN(anon_sym_use); + ACCEPT_TOKEN(anon_sym_module); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2901); END_STATE(); case 3584: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2892); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5303); END_STATE(); case 3585: ACCEPT_TOKEN(anon_sym_use); - if (lookahead == ',') ADVANCE(2892); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2890); + if (lookahead == ',') ADVANCE(2893); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5304); END_STATE(); case 3586: ACCEPT_TOKEN(anon_sym_use); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2891); + if (lookahead == ',') ADVANCE(2893); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2891); END_STATE(); case 3587: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2892); END_STATE(); case 3588: ACCEPT_TOKEN(anon_sym_use); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2892); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3589: - ACCEPT_TOKEN(anon_sym_COLON); + ACCEPT_TOKEN(anon_sym_use); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2893); END_STATE(); case 3590: - ACCEPT_TOKEN(anon_sym_DASH_GT); + ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); case 3591: - ACCEPT_TOKEN(anon_sym_LBRACK); + ACCEPT_TOKEN(anon_sym_DASH_GT); END_STATE(); case 3592: - ACCEPT_TOKEN(anon_sym_RBRACK); + ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); case 3593: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); case 3594: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 3595: - ACCEPT_TOKEN(anon_sym_COMMA); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 3596: - ACCEPT_TOKEN(anon_sym_DOLLAR); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 3597: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4079); - if (lookahead == '\'') ADVANCE(4076); END_STATE(); case 3598: ACCEPT_TOKEN(anon_sym_DOLLAR); - if (lookahead == '"') ADVANCE(4079); - if (lookahead == '\'') ADVANCE(4076); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '"') ADVANCE(4080); + if (lookahead == '\'') ADVANCE(4077); END_STATE(); case 3599: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == '"') ADVANCE(4080); + if (lookahead == '\'') ADVANCE(4077); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3600: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 3601: ACCEPT_TOKEN(anon_sym_DOLLAR); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3602: - ACCEPT_TOKEN(anon_sym_cell_DASHpath); + ACCEPT_TOKEN(anon_sym_DOLLAR); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3603: - ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5323); + ACCEPT_TOKEN(anon_sym_cell_DASHpath); END_STATE(); case 3604: ACCEPT_TOKEN(anon_sym_error); - if (lookahead == ',') ADVANCE(2966); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); + if (lookahead == ',') ADVANCE(2967); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5324); END_STATE(); case 3605: ACCEPT_TOKEN(anon_sym_error); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2966); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2965); + if (lookahead == ',') ADVANCE(2967); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2965); END_STATE(); case 3606: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2967); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2966); END_STATE(); case 3607: ACCEPT_TOKEN(anon_sym_error); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2966); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3608: - ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); + ACCEPT_TOKEN(anon_sym_error); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); END_STATE(); case 3609: - ACCEPT_TOKEN(anon_sym_import_DASHpattern); + ACCEPT_TOKEN(anon_sym_full_DASHcell_DASHpath); END_STATE(); case 3610: - ACCEPT_TOKEN(anon_sym_one_DASHof); + ACCEPT_TOKEN(anon_sym_import_DASHpattern); END_STATE(); case 3611: - ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); + ACCEPT_TOKEN(anon_sym_one_DASHof); END_STATE(); case 3612: - ACCEPT_TOKEN(anon_sym_GT2); + ACCEPT_TOKEN(anon_sym_var_DASHwith_DASHopt_DASHtype); END_STATE(); case 3613: ACCEPT_TOKEN(anon_sym_GT2); - if (lookahead == '=') ADVANCE(3786); END_STATE(); case 3614: ACCEPT_TOKEN(anon_sym_GT2); if (lookahead == '=') ADVANCE(3787); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3615: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(anon_sym_GT2); + if (lookahead == '=') ADVANCE(3788); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3616: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 3617: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); END_STATE(); case 3618: - ACCEPT_TOKEN(anon_sym_QMARK); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 3619: - ACCEPT_TOKEN(anon_sym_DASH_DASH); + ACCEPT_TOKEN(anon_sym_QMARK); END_STATE(); case 3620: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); END_STATE(); case 3621: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3622: ACCEPT_TOKEN(anon_sym_DASH_DASH); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 3623: - ACCEPT_TOKEN(anon_sym_DASH2); + ACCEPT_TOKEN(anon_sym_DASH_DASH); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3624: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); END_STATE(); case 3625: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '-') ADVANCE(3620); END_STATE(); case 3626: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); + if (lookahead == '-') ADVANCE(3620); if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(437); + if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3627: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '_') ADVANCE(438); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3628: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '_') ADVANCE(4480); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '_') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3629: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(5249); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(4508); + if (lookahead == '_') ADVANCE(4481); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3630: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(4512); - if (lookahead == '_') ADVANCE(4481); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4622); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(5249); + if (lookahead == '_') ADVANCE(5238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3631: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3622); - if (lookahead == '.') ADVANCE(4697); - if (lookahead == '_') ADVANCE(4673); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(4512); + if (lookahead == '_') ADVANCE(4482); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4869); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == 'i') ADVANCE(4623); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3632: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3622); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(3621); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(4304); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4332); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3633: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3620); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(4303); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4331); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '-') ADVANCE(3621); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3634: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3620); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '-') ADVANCE(3623); + if (lookahead == '.') ADVANCE(4698); + if (lookahead == '_') ADVANCE(4674); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4870); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3635: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '-') ADVANCE(3621); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == '-') ADVANCE(3623); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3636: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '=') ADVANCE(1806); - if (lookahead == '_') ADVANCE(432); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '-') ADVANCE(3622); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 3637: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '=') ADVANCE(1807); + if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + lookahead == 'i') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3638: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(432); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1595); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + lookahead == 'i') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3639: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5352); - if (lookahead == '_') ADVANCE(5343); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(433); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5448); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + lookahead == 'i') ADVANCE(1596); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3640: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(437); + if (lookahead == '.') ADVANCE(5353); + if (lookahead == '_') ADVANCE(5344); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1592); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + lookahead == 'i') ADVANCE(5449); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5353); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 3641: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '_') ADVANCE(438); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1593); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3642: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '_') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '_') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3643: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '.') ADVANCE(5248); - if (lookahead == '_') ADVANCE(5237); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '.') ADVANCE(4508); + if (lookahead == '_') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3644: ACCEPT_TOKEN(anon_sym_DASH2); if (lookahead == '.') ADVANCE(5249); - if (lookahead == '_') ADVANCE(5239); + if (lookahead == '_') ADVANCE(5238); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5268); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + lookahead == 'i') ADVANCE(5269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3645: ACCEPT_TOKEN(anon_sym_DASH2); - if (lookahead == '=') ADVANCE(1806); + if (lookahead == '.') ADVANCE(5250); + if (lookahead == '_') ADVANCE(5240); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3646: ACCEPT_TOKEN(anon_sym_DASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(1807); END_STATE(); case 3647: - ACCEPT_TOKEN(sym_param_short_flag_identifier); + ACCEPT_TOKEN(anon_sym_DASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3648: - ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2987); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); + ACCEPT_TOKEN(sym_param_short_flag_identifier); END_STATE(); case 3649: ACCEPT_TOKEN(anon_sym_break); - if (lookahead == ',') ADVANCE(2987); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); + if (lookahead == ',') ADVANCE(2988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5321); END_STATE(); case 3650: ACCEPT_TOKEN(anon_sym_break); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2987); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2986); + if (lookahead == ',') ADVANCE(2988); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2986); END_STATE(); case 3651: ACCEPT_TOKEN(anon_sym_break); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2987); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2988); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2987); END_STATE(); case 3652: - ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2990); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); + ACCEPT_TOKEN(anon_sym_break); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); END_STATE(); case 3653: ACCEPT_TOKEN(anon_sym_continue); - if (lookahead == ',') ADVANCE(2990); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2988); + if (lookahead == ',') ADVANCE(2991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5340); END_STATE(); case 3654: ACCEPT_TOKEN(anon_sym_continue); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2990); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2989); + if (lookahead == ',') ADVANCE(2991); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2989); END_STATE(); case 3655: ACCEPT_TOKEN(anon_sym_continue); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2990); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2991); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2990); END_STATE(); case 3656: - ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2957); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5296); + ACCEPT_TOKEN(anon_sym_continue); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); END_STATE(); case 3657: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == ',') ADVANCE(2957); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2951); + if (lookahead == ',') ADVANCE(2958); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5297); END_STATE(); case 3658: ACCEPT_TOKEN(anon_sym_for); - if (lookahead == 'm') ADVANCE(2952); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2957); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2956); + if (lookahead == ',') ADVANCE(2958); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2952); END_STATE(); case 3659: ACCEPT_TOKEN(anon_sym_for); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2957); + if (lookahead == 'm') ADVANCE(2953); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2958); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2957); END_STATE(); case 3660: - ACCEPT_TOKEN(anon_sym_in2); + ACCEPT_TOKEN(anon_sym_for); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); END_STATE(); case 3661: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3001); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3006); END_STATE(); case 3662: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == ',') ADVANCE(3024); + if (lookahead == ',') ADVANCE(3025); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5282); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + lookahead == 'f') ADVANCE(3002); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3007); END_STATE(); case 3663: ACCEPT_TOKEN(anon_sym_in2); - if (lookahead == 'p') ADVANCE(3011); - if (lookahead == 't') ADVANCE(3007); + if (lookahead == ',') ADVANCE(3025); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3013); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3024); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3023); + lookahead == 'f') ADVANCE(5283); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 3664: ACCEPT_TOKEN(anon_sym_in2); + if (lookahead == 'p') ADVANCE(3012); + if (lookahead == 't') ADVANCE(3008); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3015); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3024); + lookahead == 'f') ADVANCE(3014); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3025); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3024); END_STATE(); case 3665: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3016); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); END_STATE(); case 3666: ACCEPT_TOKEN(anon_sym_in2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3667: - ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2960); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); + ACCEPT_TOKEN(anon_sym_in2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3668: ACCEPT_TOKEN(anon_sym_loop); - if (lookahead == ',') ADVANCE(2960); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2958); + if (lookahead == ',') ADVANCE(2961); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5316); END_STATE(); case 3669: ACCEPT_TOKEN(anon_sym_loop); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2960); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2959); + if (lookahead == ',') ADVANCE(2961); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2959); END_STATE(); case 3670: ACCEPT_TOKEN(anon_sym_loop); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2960); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2961); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2960); END_STATE(); case 3671: - ACCEPT_TOKEN(anon_sym_make); + ACCEPT_TOKEN(anon_sym_loop); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); END_STATE(); case 3672: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3027); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5316); END_STATE(); case 3673: ACCEPT_TOKEN(anon_sym_make); - if (lookahead == ',') ADVANCE(3027); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3025); + if (lookahead == ',') ADVANCE(3028); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 3674: ACCEPT_TOKEN(anon_sym_make); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3027); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3026); + if (lookahead == ',') ADVANCE(3028); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3026); END_STATE(); case 3675: ACCEPT_TOKEN(anon_sym_make); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3027); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3028); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3027); END_STATE(); case 3676: - ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2963); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5326); + ACCEPT_TOKEN(anon_sym_make); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3028); END_STATE(); case 3677: ACCEPT_TOKEN(anon_sym_while); - if (lookahead == ',') ADVANCE(2963); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2961); + if (lookahead == ',') ADVANCE(2964); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5327); END_STATE(); case 3678: ACCEPT_TOKEN(anon_sym_while); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2963); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2962); + if (lookahead == ',') ADVANCE(2964); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2962); END_STATE(); case 3679: ACCEPT_TOKEN(anon_sym_while); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2963); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2964); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2963); END_STATE(); case 3680: - ACCEPT_TOKEN(anon_sym_do); + ACCEPT_TOKEN(anon_sym_while); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2964); END_STATE(); case 3681: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2969); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5280); END_STATE(); case 3682: ACCEPT_TOKEN(anon_sym_do); - if (lookahead == ',') ADVANCE(2969); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2967); + if (lookahead == ',') ADVANCE(2970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5281); END_STATE(); case 3683: ACCEPT_TOKEN(anon_sym_do); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2969); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2968); + if (lookahead == ',') ADVANCE(2970); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2968); END_STATE(); case 3684: ACCEPT_TOKEN(anon_sym_do); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2969); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2970); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2969); END_STATE(); case 3685: - ACCEPT_TOKEN(anon_sym_if); + ACCEPT_TOKEN(anon_sym_do); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); END_STATE(); case 3686: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2972); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5281); END_STATE(); case 3687: ACCEPT_TOKEN(anon_sym_if); - if (lookahead == ',') ADVANCE(2972); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2970); + if (lookahead == ',') ADVANCE(2973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5282); END_STATE(); case 3688: ACCEPT_TOKEN(anon_sym_if); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2972); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2971); + if (lookahead == ',') ADVANCE(2973); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2971); END_STATE(); case 3689: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2972); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2973); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2972); END_STATE(); case 3690: ACCEPT_TOKEN(anon_sym_if); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); END_STATE(); case 3691: - ACCEPT_TOKEN(anon_sym_else); + ACCEPT_TOKEN(anon_sym_if); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3692: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2975); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 3693: ACCEPT_TOKEN(anon_sym_else); - if (lookahead == ',') ADVANCE(2975); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2973); + if (lookahead == ',') ADVANCE(2976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5311); END_STATE(); case 3694: ACCEPT_TOKEN(anon_sym_else); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2975); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2974); + if (lookahead == ',') ADVANCE(2976); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2974); END_STATE(); case 3695: ACCEPT_TOKEN(anon_sym_else); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2975); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2976); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2975); END_STATE(); case 3696: - ACCEPT_TOKEN(anon_sym_match); + ACCEPT_TOKEN(anon_sym_else); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); END_STATE(); case 3697: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2984); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5325); END_STATE(); case 3698: ACCEPT_TOKEN(anon_sym_match); - if (lookahead == ',') ADVANCE(2984); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); + if (lookahead == ',') ADVANCE(2985); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5326); END_STATE(); case 3699: ACCEPT_TOKEN(anon_sym_match); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2984); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2983); + if (lookahead == ',') ADVANCE(2985); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2983); END_STATE(); case 3700: ACCEPT_TOKEN(anon_sym_match); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2984); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2985); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2984); END_STATE(); case 3701: - ACCEPT_TOKEN(anon_sym_LBRACE); + ACCEPT_TOKEN(anon_sym_match); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2985); END_STATE(); case 3702: - ACCEPT_TOKEN(anon_sym_RBRACE); + ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); case 3703: - ACCEPT_TOKEN(anon_sym_EQ_GT); + ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); case 3704: ACCEPT_TOKEN(anon_sym_EQ_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3705: - ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(3283); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3283); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + ACCEPT_TOKEN(anon_sym_EQ_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3706: ACCEPT_TOKEN(anon_sym__); - if (lookahead == '_') ADVANCE(4377); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '_') ADVANCE(3284); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3284); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3707: - ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(1899); - if (lookahead == '<') ADVANCE(3864); - if (lookahead == '=') ADVANCE(3861); + ACCEPT_TOKEN(anon_sym__); + if (lookahead == '_') ADVANCE(4378); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3708: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4349); - if (lookahead == '<') ADVANCE(3864); - if (lookahead == '=') ADVANCE(3861); + if (lookahead == '.') ADVANCE(1900); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3709: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '.') ADVANCE(4900); - if (lookahead == '<') ADVANCE(3864); - if (lookahead == '=') ADVANCE(3861); + if (lookahead == '.') ADVANCE(4350); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3710: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3864); - if (lookahead == '=') ADVANCE(3861); + if (lookahead == '.') ADVANCE(4901); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3711: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3866); - if (lookahead == '=') ADVANCE(3863); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '<') ADVANCE(3865); + if (lookahead == '=') ADVANCE(3862); END_STATE(); case 3712: ACCEPT_TOKEN(anon_sym_DOT_DOT); - if (lookahead == '<') ADVANCE(3865); - if (lookahead == '=') ADVANCE(3862); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '<') ADVANCE(3867); + if (lookahead == '=') ADVANCE(3864); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3713: - ACCEPT_TOKEN(anon_sym_DOLLAR2); + ACCEPT_TOKEN(anon_sym_DOT_DOT); + if (lookahead == '<') ADVANCE(3866); + if (lookahead == '=') ADVANCE(3863); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3714: - ACCEPT_TOKEN(anon_sym_try); + ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); case 3715: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5302); END_STATE(); case 3716: ACCEPT_TOKEN(anon_sym_try); - if (lookahead == ',') ADVANCE(2978); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2976); + if (lookahead == ',') ADVANCE(2979); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5303); END_STATE(); case 3717: ACCEPT_TOKEN(anon_sym_try); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2978); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2977); + if (lookahead == ',') ADVANCE(2979); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2977); END_STATE(); case 3718: ACCEPT_TOKEN(anon_sym_try); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2978); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2979); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2978); END_STATE(); case 3719: - ACCEPT_TOKEN(anon_sym_catch); + ACCEPT_TOKEN(anon_sym_try); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); END_STATE(); case 3720: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5321); END_STATE(); case 3721: ACCEPT_TOKEN(anon_sym_catch); - if (lookahead == ',') ADVANCE(2981); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2979); + if (lookahead == ',') ADVANCE(2982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); END_STATE(); case 3722: ACCEPT_TOKEN(anon_sym_catch); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2981); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2980); + if (lookahead == ',') ADVANCE(2982); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2980); END_STATE(); case 3723: ACCEPT_TOKEN(anon_sym_catch); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2981); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2982); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2981); END_STATE(); case 3724: - ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5333); + ACCEPT_TOKEN(anon_sym_catch); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2982); END_STATE(); case 3725: ACCEPT_TOKEN(anon_sym_return); - if (lookahead == ',') ADVANCE(2993); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2991); + if (lookahead == ',') ADVANCE(2994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5334); END_STATE(); case 3726: ACCEPT_TOKEN(anon_sym_return); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2993); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2992); + if (lookahead == ',') ADVANCE(2994); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2992); END_STATE(); case 3727: ACCEPT_TOKEN(anon_sym_return); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2993); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2994); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2993); END_STATE(); case 3728: - ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == '-') ADVANCE(2931); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + ACCEPT_TOKEN(anon_sym_return); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); END_STATE(); case 3729: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == '-') ADVANCE(5334); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == '-') ADVANCE(2932); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 3730: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2935); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2942); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2941); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == '-') ADVANCE(5335); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 3731: ACCEPT_TOKEN(anon_sym_source); - if (lookahead == '-') ADVANCE(2935); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == '-') ADVANCE(2936); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2943); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2942); END_STATE(); case 3732: - ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); + ACCEPT_TOKEN(anon_sym_source); + if (lookahead == '-') ADVANCE(2936); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3733: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if (lookahead == ',') ADVANCE(2942); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2934); + if (lookahead == ',') ADVANCE(2943); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 3734: ACCEPT_TOKEN(anon_sym_source_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2942); + if (lookahead == ',') ADVANCE(2943); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2935); END_STATE(); case 3735: - ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2948); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5340); + ACCEPT_TOKEN(anon_sym_source_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); END_STATE(); case 3736: ACCEPT_TOKEN(anon_sym_register); - if (lookahead == ',') ADVANCE(2948); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); + if (lookahead == ',') ADVANCE(2949); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5341); END_STATE(); case 3737: ACCEPT_TOKEN(anon_sym_register); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2948); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2947); + if (lookahead == ',') ADVANCE(2949); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2947); END_STATE(); case 3738: ACCEPT_TOKEN(anon_sym_register); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2948); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2949); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2948); END_STATE(); case 3739: - ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == '-') ADVANCE(2919); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + ACCEPT_TOKEN(anon_sym_register); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2949); END_STATE(); case 3740: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == '-') ADVANCE(5311); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5314); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '-') ADVANCE(2920); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); END_STATE(); case 3741: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2923); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2930); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2929); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == '-') ADVANCE(5312); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); case 3742: ACCEPT_TOKEN(anon_sym_hide); - if (lookahead == '-') ADVANCE(2923); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == '-') ADVANCE(2924); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2931); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2930); END_STATE(); case 3743: ACCEPT_TOKEN(anon_sym_hide); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '-') ADVANCE(2924); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3744: - ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5314); + ACCEPT_TOKEN(anon_sym_hide); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3745: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if (lookahead == ',') ADVANCE(2930); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2922); + if (lookahead == ',') ADVANCE(2931); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); case 3746: ACCEPT_TOKEN(anon_sym_hide_DASHenv); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2930); + if (lookahead == ',') ADVANCE(2931); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2923); END_STATE(); case 3747: - ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2945); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); + ACCEPT_TOKEN(anon_sym_hide_DASHenv); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2931); END_STATE(); case 3748: ACCEPT_TOKEN(anon_sym_overlay); - if (lookahead == ',') ADVANCE(2945); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2943); + if (lookahead == ',') ADVANCE(2946); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); END_STATE(); case 3749: ACCEPT_TOKEN(anon_sym_overlay); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2945); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2944); + if (lookahead == ',') ADVANCE(2946); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2944); END_STATE(); case 3750: ACCEPT_TOKEN(anon_sym_overlay); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2945); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2946); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2945); END_STATE(); case 3751: - ACCEPT_TOKEN(anon_sym_as); + ACCEPT_TOKEN(anon_sym_overlay); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2946); END_STATE(); case 3752: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2996); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5279); END_STATE(); case 3753: ACCEPT_TOKEN(anon_sym_as); - if (lookahead == ',') ADVANCE(2996); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2994); + if (lookahead == ',') ADVANCE(2997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5280); END_STATE(); case 3754: ACCEPT_TOKEN(anon_sym_as); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(2996); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2995); + if (lookahead == ',') ADVANCE(2997); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2995); END_STATE(); case 3755: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(2997); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(2996); END_STATE(); case 3756: ACCEPT_TOKEN(anon_sym_as); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3757: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2996); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3758: ACCEPT_TOKEN(anon_sym_as); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(2997); END_STATE(); case 3759: - ACCEPT_TOKEN(anon_sym_STAR2); + ACCEPT_TOKEN(anon_sym_as); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3760: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3794); END_STATE(); case 3761: ACCEPT_TOKEN(anon_sym_STAR2); - if (lookahead == '*') ADVANCE(3794); - if (lookahead == '=') ADVANCE(1807); + if (lookahead == '*') ADVANCE(3795); END_STATE(); case 3762: ACCEPT_TOKEN(anon_sym_STAR2); if (lookahead == '*') ADVANCE(3795); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(1808); END_STATE(); case 3763: - ACCEPT_TOKEN(anon_sym_QMARK2); + ACCEPT_TOKEN(anon_sym_STAR2); + if (lookahead == '*') ADVANCE(3796); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3764: - ACCEPT_TOKEN(anon_sym_where); + ACCEPT_TOKEN(anon_sym_QMARK2); END_STATE(); case 3765: - ACCEPT_TOKEN(anon_sym_and2); + ACCEPT_TOKEN(anon_sym_where); END_STATE(); case 3766: ACCEPT_TOKEN(anon_sym_and2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3767: - ACCEPT_TOKEN(anon_sym_xor2); + ACCEPT_TOKEN(anon_sym_and2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3768: ACCEPT_TOKEN(anon_sym_xor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3769: - ACCEPT_TOKEN(anon_sym_or2); + ACCEPT_TOKEN(anon_sym_xor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3770: ACCEPT_TOKEN(anon_sym_or2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3771: - ACCEPT_TOKEN(anon_sym_not_DASHin2); + ACCEPT_TOKEN(anon_sym_or2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3772: ACCEPT_TOKEN(anon_sym_not_DASHin2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3773: - ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + ACCEPT_TOKEN(anon_sym_not_DASHin2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3774: ACCEPT_TOKEN(anon_sym_starts_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3775: - ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + ACCEPT_TOKEN(anon_sym_starts_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3776: ACCEPT_TOKEN(anon_sym_ends_DASHwith2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3777: - ACCEPT_TOKEN(anon_sym_EQ_EQ2); + ACCEPT_TOKEN(anon_sym_ends_DASHwith2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3778: ACCEPT_TOKEN(anon_sym_EQ_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3779: - ACCEPT_TOKEN(anon_sym_BANG_EQ2); + ACCEPT_TOKEN(anon_sym_EQ_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3780: ACCEPT_TOKEN(anon_sym_BANG_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3781: - ACCEPT_TOKEN(anon_sym_LT2); + ACCEPT_TOKEN(anon_sym_BANG_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3782: ACCEPT_TOKEN(anon_sym_LT2); - if (lookahead == '=') ADVANCE(3784); END_STATE(); case 3783: ACCEPT_TOKEN(anon_sym_LT2); if (lookahead == '=') ADVANCE(3785); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3784: - ACCEPT_TOKEN(anon_sym_LT_EQ2); + ACCEPT_TOKEN(anon_sym_LT2); + if (lookahead == '=') ADVANCE(3786); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3785: ACCEPT_TOKEN(anon_sym_LT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3786: - ACCEPT_TOKEN(anon_sym_GT_EQ2); + ACCEPT_TOKEN(anon_sym_LT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3787: ACCEPT_TOKEN(anon_sym_GT_EQ2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3788: - ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + ACCEPT_TOKEN(anon_sym_GT_EQ2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3789: ACCEPT_TOKEN(anon_sym_EQ_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3790: - ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + ACCEPT_TOKEN(anon_sym_EQ_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3791: ACCEPT_TOKEN(anon_sym_BANG_TILDE2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3792: - ACCEPT_TOKEN(aux_sym_expr_unary_token1); + ACCEPT_TOKEN(anon_sym_BANG_TILDE2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3793: - ACCEPT_TOKEN(anon_sym_LPAREN2); + ACCEPT_TOKEN(aux_sym_expr_unary_token1); END_STATE(); case 3794: - ACCEPT_TOKEN(anon_sym_STAR_STAR2); + ACCEPT_TOKEN(anon_sym_LPAREN2); END_STATE(); case 3795: ACCEPT_TOKEN(anon_sym_STAR_STAR2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3796: - ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + ACCEPT_TOKEN(anon_sym_STAR_STAR2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3797: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if (lookahead == '=') ADVANCE(1809); END_STATE(); case 3798: ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(1810); END_STATE(); case 3799: - ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3806); + ACCEPT_TOKEN(anon_sym_PLUS_PLUS2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3800: ACCEPT_TOKEN(anon_sym_SLASH2); - if (lookahead == '/') ADVANCE(3806); - if (lookahead == '=') ADVANCE(1808); + if (lookahead == '/') ADVANCE(3807); END_STATE(); case 3801: ACCEPT_TOKEN(anon_sym_SLASH2); if (lookahead == '/') ADVANCE(3807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(1809); END_STATE(); case 3802: ACCEPT_TOKEN(anon_sym_SLASH2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '/') ADVANCE(3808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3803: - ACCEPT_TOKEN(anon_sym_mod2); + ACCEPT_TOKEN(anon_sym_SLASH2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3804: ACCEPT_TOKEN(anon_sym_mod2); - if (lookahead == 'u') ADVANCE(2631); END_STATE(); case 3805: ACCEPT_TOKEN(anon_sym_mod2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'u') ADVANCE(2632); END_STATE(); case 3806: - ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + ACCEPT_TOKEN(anon_sym_mod2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3807: ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3808: - ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3796); + ACCEPT_TOKEN(anon_sym_SLASH_SLASH2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3809: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3796); - if (lookahead == '.') ADVANCE(469); - if (lookahead == '_') ADVANCE(437); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '+') ADVANCE(3797); END_STATE(); case 3810: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3796); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '_') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '+') ADVANCE(3797); + if (lookahead == '.') ADVANCE(470); + if (lookahead == '_') ADVANCE(438); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3811: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(3797); - if (lookahead == '.') ADVANCE(2441); - if (lookahead == '=') ADVANCE(1805); - if (lookahead == '_') ADVANCE(2060); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '.') ADVANCE(4508); + if (lookahead == '_') ADVANCE(4481); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3812: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '+') ADVANCE(3797); - if (lookahead == '=') ADVANCE(1805); + if (lookahead == '+') ADVANCE(3798); + if (lookahead == '.') ADVANCE(2442); + if (lookahead == '=') ADVANCE(1806); + if (lookahead == '_') ADVANCE(2061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3813: ACCEPT_TOKEN(anon_sym_PLUS2); if (lookahead == '+') ADVANCE(3798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(1806); END_STATE(); case 3814: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2441); - if (lookahead == '_') ADVANCE(2060); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '+') ADVANCE(3799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3815: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(5351); - if (lookahead == '_') ADVANCE(5342); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5351); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == '.') ADVANCE(2442); + if (lookahead == '_') ADVANCE(2061); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3816: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1923); - if (lookahead == '_') ADVANCE(1912); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if (lookahead == '.') ADVANCE(5352); + if (lookahead == '_') ADVANCE(5343); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5352); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 3817: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(2446); - if (lookahead == '_') ADVANCE(2068); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '.') ADVANCE(1924); + if (lookahead == '_') ADVANCE(1913); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3818: ACCEPT_TOKEN(anon_sym_PLUS2); - if (lookahead == '.') ADVANCE(1928); - if (lookahead == '_') ADVANCE(1913); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if (lookahead == '.') ADVANCE(2447); + if (lookahead == '_') ADVANCE(2069); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3819: - ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + ACCEPT_TOKEN(anon_sym_PLUS2); + if (lookahead == '.') ADVANCE(1928); + if (lookahead == '_') ADVANCE(1914); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3820: ACCEPT_TOKEN(anon_sym_bit_DASHshl2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3821: - ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + ACCEPT_TOKEN(anon_sym_bit_DASHshl2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3822: ACCEPT_TOKEN(anon_sym_bit_DASHshr2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3823: - ACCEPT_TOKEN(anon_sym_bit_DASHand2); + ACCEPT_TOKEN(anon_sym_bit_DASHshr2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3824: ACCEPT_TOKEN(anon_sym_bit_DASHand2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3825: - ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + ACCEPT_TOKEN(anon_sym_bit_DASHand2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3826: ACCEPT_TOKEN(anon_sym_bit_DASHxor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3827: - ACCEPT_TOKEN(anon_sym_bit_DASHor2); + ACCEPT_TOKEN(anon_sym_bit_DASHxor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3828: ACCEPT_TOKEN(anon_sym_bit_DASHor2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); END_STATE(); case 3829: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); + ACCEPT_TOKEN(anon_sym_bit_DASHor2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3830: - ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1899); - if (lookahead == '<') ADVANCE(3868); - if (lookahead == '=') ADVANCE(3867); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LPAREN); END_STATE(); case 3831: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(1898); - if (lookahead == '<') ADVANCE(3868); - if (lookahead == '=') ADVANCE(3867); + if (lookahead == '.') ADVANCE(1900); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3832: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '.') ADVANCE(3616); - if (lookahead == '<') ADVANCE(3868); - if (lookahead == '=') ADVANCE(3867); + if (lookahead == '.') ADVANCE(1899); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3833: ACCEPT_TOKEN(anon_sym_DOT_DOT2); - if (lookahead == '<') ADVANCE(3868); - if (lookahead == '=') ADVANCE(3867); + if (lookahead == '.') ADVANCE(3617); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3834: - ACCEPT_TOKEN(anon_sym_DOT); + ACCEPT_TOKEN(anon_sym_DOT_DOT2); + if (lookahead == '<') ADVANCE(3869); + if (lookahead == '=') ADVANCE(3868); END_STATE(); case 3835: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5232); - if (lookahead == '_') ADVANCE(5245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3836: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if (lookahead == '.') ADVANCE(5233); + if (lookahead == '_') ADVANCE(5246); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); END_STATE(); case 3837: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4924); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4380); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3838: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3839: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(5015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); END_STATE(); case 3840: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3841: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); END_STATE(); case 3842: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(5019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); END_STATE(); case 3843: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3710); + if (lookahead == '.') ADVANCE(3711); if (lookahead == '_') ADVANCE(4513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3844: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3830); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 3845: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(2063); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if (lookahead == '.') ADVANCE(3831); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3846: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1910); - if (lookahead == '_') ADVANCE(1924); + if (lookahead == '.') ADVANCE(2064); + if (lookahead == '_') ADVANCE(2443); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3847: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(1910); - if (lookahead == '_') ADVANCE(1929); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if (lookahead == '.') ADVANCE(1911); + if (lookahead == '_') ADVANCE(1925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); END_STATE(); case 3848: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3833); + if (lookahead == '.') ADVANCE(1911); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3849: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if (lookahead == '.') ADVANCE(3834); END_STATE(); case 3850: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3851: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(4924); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4380); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3852: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(5019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3853: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3833); + if (lookahead == '.') ADVANCE(3834); if (lookahead == '_') ADVANCE(4513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3854: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5234); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 3855: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(5234); - if (lookahead == '_') ADVANCE(5250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (lookahead == '.') ADVANCE(5235); END_STATE(); case 3856: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '.') ADVANCE(3831); - if (lookahead == '_') ADVANCE(1924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + if (lookahead == '.') ADVANCE(5235); + if (lookahead == '_') ADVANCE(5251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3857: ACCEPT_TOKEN(anon_sym_DOT); if (lookahead == '.') ADVANCE(3832); + if (lookahead == '_') ADVANCE(1929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3858: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); + if (lookahead == '.') ADVANCE(3833); END_STATE(); case 3859: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); + if (lookahead == '_') ADVANCE(4509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); END_STATE(); case 3860: ACCEPT_TOKEN(anon_sym_DOT); - if (lookahead == '_') ADVANCE(5250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if (lookahead == '_') ADVANCE(5016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3861: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + ACCEPT_TOKEN(anon_sym_DOT); + if (lookahead == '_') ADVANCE(5251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3862: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 3863: ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3864: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3865: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 3866: ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3867: - ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3868: - ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); + ACCEPT_TOKEN(anon_sym_DOT_DOT_EQ2); END_STATE(); case 3869: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4439); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + ACCEPT_TOKEN(anon_sym_DOT_DOT_LT2); END_STATE(); case 3870: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4973); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '-') ADVANCE(4440); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3871: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(4633); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '-') ADVANCE(4974); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3872: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '-') ADVANCE(5075); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3873: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3881); + if (lookahead == '-') ADVANCE(5076); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3874: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3882); END_STATE(); case 3875: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3885); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); END_STATE(); case 3876: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3887); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3886); END_STATE(); case 3877: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(2845); - if (lookahead == 'o') ADVANCE(2847); - if (lookahead == 'x') ADVANCE(2854); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); END_STATE(); case 3878: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (lookahead == 'b') ADVANCE(2040); - if (lookahead == 'o') ADVANCE(2041); - if (lookahead == 'x') ADVANCE(2042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(2846); + if (lookahead == 'o') ADVANCE(2848); + if (lookahead == 'x') ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3879: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); + if (lookahead == '_') ADVANCE(3880); + if (lookahead == 'b') ADVANCE(2041); + if (lookahead == 'o') ADVANCE(2042); + if (lookahead == 'x') ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3880: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3871); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); END_STATE(); case 3881: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3872); END_STATE(); case 3882: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3869); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3881); END_STATE(); case 3883: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3882); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3870); END_STATE(); case 3884: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3872); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); END_STATE(); case 3885: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3873); END_STATE(); case 3886: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3870); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3885); END_STATE(); case 3887: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3886); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3871); END_STATE(); case 3888: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3881); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3887); END_STATE(); case 3889: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3883); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3882); END_STATE(); case 3890: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3885); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3884); END_STATE(); case 3891: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3879); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3887); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3886); END_STATE(); case 3892: ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); - if (lookahead == '_') ADVANCE(3892); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3892); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == '_') ADVANCE(3880); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3888); END_STATE(); case 3893: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token1); if (lookahead == '_') ADVANCE(3893); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3894: ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(3894); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); END_STATE(); case 3895: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token2); if (lookahead == '_') ADVANCE(3895); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3896: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token3); if (lookahead == '_') ADVANCE(3896); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1930); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); END_STATE(); case 3897: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3897); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(1926); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); END_STATE(); case 3898: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3898); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2448); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); END_STATE(); case 3899: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3899); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4509); + lookahead == 'e') ADVANCE(2449); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); END_STATE(); case 3900: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3900); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4384); + lookahead == 'e') ADVANCE(4510); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); END_STATE(); case 3901: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3901); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(475); + lookahead == 'e') ADVANCE(4385); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); END_STATE(); case 3902: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3902); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5016); + lookahead == 'e') ADVANCE(476); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); END_STATE(); case 3903: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3903); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4929); + lookahead == 'e') ADVANCE(5017); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); END_STATE(); case 3904: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3904); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5251); + lookahead == 'e') ADVANCE(4930); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); END_STATE(); case 3905: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3905); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5092); + lookahead == 'e') ADVANCE(5252); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); END_STATE(); case 3906: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3906); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4650); + lookahead == 'e') ADVANCE(5093); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); END_STATE(); case 3907: ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3907); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5275); + lookahead == 'e') ADVANCE(5276); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); END_STATE(); case 3908: - ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token4); if (lookahead == '_') ADVANCE(3908); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4651); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); END_STATE(); case 3909: - ACCEPT_TOKEN(anon_sym_null); + ACCEPT_TOKEN(aux_sym__immediate_decimal_token5); + if (lookahead == '_') ADVANCE(3909); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); END_STATE(); case 3910: ACCEPT_TOKEN(anon_sym_null); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3049); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3048); END_STATE(); case 3911: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3050); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3049); END_STATE(); case 3912: ACCEPT_TOKEN(anon_sym_null); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3913: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3049); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3914: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3050); END_STATE(); case 3915: ACCEPT_TOKEN(anon_sym_null); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3916: - ACCEPT_TOKEN(anon_sym_RPAREN2); + ACCEPT_TOKEN(anon_sym_null); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3917: - ACCEPT_TOKEN(anon_sym_true); + ACCEPT_TOKEN(anon_sym_RPAREN2); END_STATE(); case 3918: ACCEPT_TOKEN(anon_sym_true); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3043); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3042); END_STATE(); case 3919: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3044); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3043); END_STATE(); case 3920: ACCEPT_TOKEN(anon_sym_true); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3921: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3922: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3043); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3923: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3044); END_STATE(); case 3924: ACCEPT_TOKEN(anon_sym_true); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3925: - ACCEPT_TOKEN(anon_sym_false); + ACCEPT_TOKEN(anon_sym_true); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3926: ACCEPT_TOKEN(anon_sym_false); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3046); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3045); END_STATE(); case 3927: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3047); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3046); END_STATE(); case 3928: ACCEPT_TOKEN(anon_sym_false); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 3929: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 3930: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3046); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 3931: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3047); END_STATE(); case 3932: ACCEPT_TOKEN(anon_sym_false); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 3933: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + ACCEPT_TOKEN(anon_sym_false); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 3934: ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); END_STATE(); case 3935: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(2851); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_DOLLAR); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 3936: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4439); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '-') ADVANCE(2852); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3937: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4973); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '-') ADVANCE(4440); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3938: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5227); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '-') ADVANCE(4974); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3939: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(4633); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '-') ADVANCE(5228); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3940: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(5075); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '-') ADVANCE(4634); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3941: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '-') ADVANCE(1614); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '-') ADVANCE(5076); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3942: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (lookahead == '-') ADVANCE(1615); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3943: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3953); END_STATE(); case 3944: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); END_STATE(); case 3945: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); END_STATE(); case 3946: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); END_STATE(); case 3947: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); END_STATE(); case 3948: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(4010); - if (lookahead == 'o') ADVANCE(4026); - if (lookahead == 'x') ADVANCE(4031); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); END_STATE(); case 3949: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(2845); - if (lookahead == 'o') ADVANCE(2847); - if (lookahead == 'x') ADVANCE(2854); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(4011); + if (lookahead == 'o') ADVANCE(4027); + if (lookahead == 'x') ADVANCE(4032); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); END_STATE(); case 3950: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (lookahead == 'b') ADVANCE(2040); - if (lookahead == 'o') ADVANCE(2041); - if (lookahead == 'x') ADVANCE(2042); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(2846); + if (lookahead == 'o') ADVANCE(2848); + if (lookahead == 'x') ADVANCE(2855); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3951: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3935); + if (lookahead == '_') ADVANCE(3973); + if (lookahead == 'b') ADVANCE(2041); + if (lookahead == 'o') ADVANCE(2042); + if (lookahead == 'x') ADVANCE(2043); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3952: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3951); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3936); END_STATE(); case 3953: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3936); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3952); END_STATE(); case 3954: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3953); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3937); END_STATE(); case 3955: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3937); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); END_STATE(); case 3956: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3938); END_STATE(); case 3957: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); END_STATE(); case 3958: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3942); END_STATE(); case 3959: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3938); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); END_STATE(); case 3960: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3939); END_STATE(); case 3961: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3939); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); END_STATE(); case 3962: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3940); END_STATE(); case 3963: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3940); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); END_STATE(); case 3964: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3941); END_STATE(); case 3965: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3952); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); END_STATE(); case 3966: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3954); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3953); END_STATE(); case 3967: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3956); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3955); END_STATE(); case 3968: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3958); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3957); END_STATE(); case 3969: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3960); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3959); END_STATE(); case 3970: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3962); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3961); END_STATE(); case 3971: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3964); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3963); END_STATE(); case 3972: ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); - if (lookahead == '_') ADVANCE(3972); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); + if (lookahead == '_') ADVANCE(3973); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3965); END_STATE(); case 3973: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token1); if (lookahead == '_') ADVANCE(3973); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); END_STATE(); case 3974: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token2); if (lookahead == '_') ADVANCE(3974); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5246); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); END_STATE(); case 3975: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3975); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5247); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); END_STATE(); case 3976: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3976); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5186); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 3977: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3977); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(2443); + lookahead == 'e') ADVANCE(5187); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); END_STATE(); case 3978: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3978); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(1925); + lookahead == 'e') ADVANCE(2444); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 3979: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3979); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4380); + lookahead == 'e') ADVANCE(1933); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); END_STATE(); case 3980: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3980); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4925); + lookahead == 'e') ADVANCE(4381); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 3981: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3981); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(472); + lookahead == 'e') ADVANCE(4926); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 3982: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3982); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4519); + lookahead == 'e') ADVANCE(473); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); END_STATE(); case 3983: ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3983); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5023); + lookahead == 'e') ADVANCE(4519); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); END_STATE(); case 3984: - ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + ACCEPT_TOKEN(aux_sym__val_number_decimal_token3); if (lookahead == '_') ADVANCE(3984); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5024); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); END_STATE(); case 3985: + ACCEPT_TOKEN(aux_sym__val_number_decimal_token4); + if (lookahead == '_') ADVANCE(3985); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + END_STATE(); + case 3986: ACCEPT_TOKEN(aux_sym__val_number_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3985); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); END_STATE(); - case 3986: + case 3987: ACCEPT_TOKEN(aux_sym__val_number_token2); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3986); - END_STATE(); - case 3987: - ACCEPT_TOKEN(aux_sym__val_number_token3); - if (('0' <= lookahead && lookahead <= '7') || lookahead == '_') ADVANCE(3987); END_STATE(); case 3988: - ACCEPT_TOKEN(aux_sym__val_number_token4); + ACCEPT_TOKEN(aux_sym__val_number_token3); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(3988); END_STATE(); case 3989: ACCEPT_TOKEN(aux_sym__val_number_token4); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3051); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3054); END_STATE(); case 3990: ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == ',') ADVANCE(3065); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3057); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3064); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3063); + lookahead == 'i') ADVANCE(3052); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3055); END_STATE(); case 3991: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(3058); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3064); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3065); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3064); END_STATE(); case 3992: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4427); + lookahead == 'i') ADVANCE(3059); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3065); END_STATE(); case 3993: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4962); + lookahead == 'i') ADVANCE(4428); END_STATE(); case 3994: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5218); + lookahead == 'i') ADVANCE(4963); END_STATE(); case 3995: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4621); + lookahead == 'i') ADVANCE(5219); END_STATE(); case 3996: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5064); + lookahead == 'i') ADVANCE(4622); END_STATE(); case 3997: ACCEPT_TOKEN(aux_sym__val_number_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1598); + lookahead == 'i') ADVANCE(5065); END_STATE(); case 3998: - ACCEPT_TOKEN(aux_sym__val_number_token5); + ACCEPT_TOKEN(aux_sym__val_number_token4); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(1599); END_STATE(); case 3999: ACCEPT_TOKEN(aux_sym__val_number_token5); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3066); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3069); END_STATE(); case 4000: ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == ',') ADVANCE(3075); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3071); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + lookahead == 'i') ADVANCE(3067); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3070); END_STATE(); case 4001: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(1594); + lookahead == 'i') ADVANCE(3072); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 4002: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4964); + lookahead == 'i') ADVANCE(1595); END_STATE(); case 4003: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5220); + lookahead == 'i') ADVANCE(4965); END_STATE(); case 4004: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4624); + lookahead == 'i') ADVANCE(5221); END_STATE(); case 4005: ACCEPT_TOKEN(aux_sym__val_number_token5); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5066); + lookahead == 'i') ADVANCE(4625); END_STATE(); case 4006: - ACCEPT_TOKEN(aux_sym__val_number_token6); + ACCEPT_TOKEN(aux_sym__val_number_token5); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5067); END_STATE(); case 4007: ACCEPT_TOKEN(aux_sym__val_number_token6); - if (lookahead == ',') ADVANCE(3077); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 4008: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == '?' || - lookahead == '@') ADVANCE(3077); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3076); + if (lookahead == ',') ADVANCE(3078); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3076); END_STATE(); case 4009: ACCEPT_TOKEN(aux_sym__val_number_token6); - if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3077); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == '?' || + lookahead == '@') ADVANCE(3078); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3077); END_STATE(); case 4010: - ACCEPT_TOKEN(anon_sym_0b); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(3986); + ACCEPT_TOKEN(aux_sym__val_number_token6); + if ((!eof && set_contains(aux_sym_cmd_identifier_token1_character_set_2, 10, lookahead))) ADVANCE(3078); END_STATE(); case 4011: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == '_') ADVANCE(3987); END_STATE(); case 4012: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(4336); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == '_') ADVANCE(4337); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4013: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(3507); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == '_') ADVANCE(3508); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 4014: ACCEPT_TOKEN(anon_sym_0b); if (lookahead == '0' || lookahead == '1' || - lookahead == '_') ADVANCE(5152); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + lookahead == '_') ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4015: - ACCEPT_TOKEN(sym_filesize_unit); + ACCEPT_TOKEN(anon_sym_0b); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4016: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(3242); END_STATE(); case 4017: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(4587); + if (lookahead == 'i') ADVANCE(3243); END_STATE(); case 4018: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'i') ADVANCE(1447); + if (lookahead == 'i') ADVANCE(4588); END_STATE(); case 4019: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(1960); + if (lookahead == 'i') ADVANCE(1448); END_STATE(); case 4020: ACCEPT_TOKEN(sym_filesize_unit); - if (lookahead == 'r') ADVANCE(2537); + if (lookahead == 'r') ADVANCE(1961); END_STATE(); case 4021: ACCEPT_TOKEN(sym_filesize_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'r') ADVANCE(2538); END_STATE(); case 4022: - ACCEPT_TOKEN(sym_duration_unit); + ACCEPT_TOKEN(sym_filesize_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 4023: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(3585); END_STATE(); case 4024: ACCEPT_TOKEN(sym_duration_unit); - if (lookahead == 'e') ADVANCE(2864); + if (lookahead == 'e') ADVANCE(3586); END_STATE(); case 4025: ACCEPT_TOKEN(sym_duration_unit); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'e') ADVANCE(2865); END_STATE(); case 4026: - ACCEPT_TOKEN(anon_sym_0o); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3987); + ACCEPT_TOKEN(sym_duration_unit); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 4027: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == '_') ADVANCE(3988); END_STATE(); case 4028: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4337); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == '_') ADVANCE(4338); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4029: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(3508); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + lookahead == '_') ADVANCE(3509); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 4030: ACCEPT_TOKEN(anon_sym_0o); if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5155); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + lookahead == '_') ADVANCE(4885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4031: - ACCEPT_TOKEN(anon_sym_0x); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3985); + ACCEPT_TOKEN(anon_sym_0o); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4032: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4898); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3986); END_STATE(); case 4033: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4344); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4034: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3515); - if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3516); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(3516); + if (set_contains(sym_long_flag_identifier_character_set_2, 778, lookahead)) ADVANCE(3517); END_STATE(); case 4035: ACCEPT_TOKEN(anon_sym_0x); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5169); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4036: - ACCEPT_TOKEN(anon_sym_LBRACK2); + ACCEPT_TOKEN(anon_sym_0x); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4037: + ACCEPT_TOKEN(anon_sym_LBRACK2); + END_STATE(); + case 4038: ACCEPT_TOKEN(sym_hex_digit); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4037); - END_STATE(); - case 4038: - ACCEPT_TOKEN(sym_val_date); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4038); END_STATE(); case 4039: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(1609); - if (lookahead == '+' || - lookahead == '-') ADVANCE(439); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); END_STATE(); case 4040: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4437); + if (lookahead == '.') ADVANCE(1610); if (lookahead == '+' || - lookahead == '-') ADVANCE(4366); + lookahead == '-') ADVANCE(440); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); END_STATE(); case 4041: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4976); + if (lookahead == '.') ADVANCE(4438); if (lookahead == '+' || - lookahead == '-') ADVANCE(4915); + lookahead == '-') ADVANCE(4367); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); END_STATE(); case 4042: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(4636); + if (lookahead == '.') ADVANCE(4977); if (lookahead == '+' || - lookahead == '-') ADVANCE(4482); + lookahead == '-') ADVANCE(4916); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); END_STATE(); case 4043: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '.') ADVANCE(5079); + if (lookahead == '.') ADVANCE(4637); if (lookahead == '+' || - lookahead == '-') ADVANCE(5000); + lookahead == '-') ADVANCE(4483); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); END_STATE(); case 4044: ACCEPT_TOKEN(sym_val_date); - if (lookahead == ':') ADVANCE(4061); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1608); + if (lookahead == '.') ADVANCE(5080); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5001); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4039); END_STATE(); case 4045: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(4062); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4432); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1609); END_STATE(); case 4046: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(4063); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4970); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4433); END_STATE(); case 4047: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(4064); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4630); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4971); END_STATE(); case 4048: ACCEPT_TOKEN(sym_val_date); if (lookahead == ':') ADVANCE(4065); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5072); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4631); END_STATE(); case 4049: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(2853); + if (lookahead == ':') ADVANCE(4066); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5073); END_STATE(); case 4050: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4441); + if (lookahead == 'T') ADVANCE(2854); END_STATE(); case 4051: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4979); + if (lookahead == 'T') ADVANCE(4442); END_STATE(); case 4052: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5229); + if (lookahead == 'T') ADVANCE(4980); END_STATE(); case 4053: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(4638); + if (lookahead == 'T') ADVANCE(5230); END_STATE(); case 4054: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(5077); + if (lookahead == 'T') ADVANCE(4639); END_STATE(); case 4055: ACCEPT_TOKEN(sym_val_date); - if (lookahead == 'T') ADVANCE(1618); + if (lookahead == 'T') ADVANCE(5078); END_STATE(); case 4056: ACCEPT_TOKEN(sym_val_date); - if (lookahead == '+' || - lookahead == '-') ADVANCE(439); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4056); + if (lookahead == 'T') ADVANCE(1619); END_STATE(); case 4057: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4366); + lookahead == '-') ADVANCE(440); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); END_STATE(); case 4058: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4915); + lookahead == '-') ADVANCE(4367); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); END_STATE(); case 4059: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(4482); + lookahead == '-') ADVANCE(4916); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); END_STATE(); case 4060: ACCEPT_TOKEN(sym_val_date); if (lookahead == '+' || - lookahead == '-') ADVANCE(5000); + lookahead == '-') ADVANCE(4483); if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4038); + lookahead == 'z') ADVANCE(4039); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); END_STATE(); case 4061: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1608); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5001); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4039); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); END_STATE(); case 4062: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4432); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(1609); END_STATE(); case 4063: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4970); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4433); END_STATE(); case 4064: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4630); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4971); END_STATE(); case 4065: ACCEPT_TOKEN(sym_val_date); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5072); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4631); END_STATE(); case 4066: - ACCEPT_TOKEN(anon_sym_DQUOTE); + ACCEPT_TOKEN(sym_val_date); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5073); END_STATE(); case 4067: + ACCEPT_TOKEN(anon_sym_DQUOTE); + END_STATE(); + case 4068: ACCEPT_TOKEN(sym__escaped_str_content); - if (lookahead == '#') ADVANCE(4068); + if (lookahead == '#') ADVANCE(4069); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4067); + lookahead == ' ') ADVANCE(4068); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(4068); + lookahead != '\\') ADVANCE(4069); END_STATE(); - case 4068: + case 4069: ACCEPT_TOKEN(sym__escaped_str_content); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(4068); + lookahead != '\\') ADVANCE(4069); END_STATE(); - case 4069: + case 4070: ACCEPT_TOKEN(sym__str_single_quotes); END_STATE(); - case 4070: + case 4071: ACCEPT_TOKEN(sym__str_back_ticks); END_STATE(); - case 4071: + case 4072: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 4072: + case 4073: ACCEPT_TOKEN(sym_escaped_interpolated_content); - if (lookahead == '#') ADVANCE(4073); + if (lookahead == '#') ADVANCE(4074); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4072); + lookahead == ' ') ADVANCE(4073); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && lookahead != '(' && - lookahead != '\\') ADVANCE(4073); + lookahead != '\\') ADVANCE(4074); END_STATE(); - case 4073: + case 4074: ACCEPT_TOKEN(sym_escaped_interpolated_content); if (lookahead != 0 && lookahead != '"' && lookahead != '(' && - lookahead != '\\') ADVANCE(4073); + lookahead != '\\') ADVANCE(4074); END_STATE(); - case 4074: + case 4075: ACCEPT_TOKEN(sym_unescaped_interpolated_content); - if (lookahead == '#') ADVANCE(4075); + if (lookahead == '#') ADVANCE(4076); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4074); + lookahead == ' ') ADVANCE(4075); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4075); + lookahead != '(') ADVANCE(4076); END_STATE(); - case 4075: + case 4076: ACCEPT_TOKEN(sym_unescaped_interpolated_content); if (lookahead != 0 && lookahead != '\'' && - lookahead != '(') ADVANCE(4075); - END_STATE(); - case 4076: - ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); + lookahead != '(') ADVANCE(4076); END_STATE(); case 4077: - ACCEPT_TOKEN(anon_sym_SQUOTE); + ACCEPT_TOKEN(anon_sym_DOLLAR_SQUOTE); END_STATE(); case 4078: ACCEPT_TOKEN(anon_sym_SQUOTE); - if (lookahead == '\'') ADVANCE(4069); - if (lookahead != 0) ADVANCE(375); END_STATE(); case 4079: - ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); + ACCEPT_TOKEN(anon_sym_SQUOTE); + if (lookahead == '\'') ADVANCE(4070); + if (lookahead != 0) ADVANCE(376); END_STATE(); case 4080: - ACCEPT_TOKEN(anon_sym_DQUOTE2); + ACCEPT_TOKEN(anon_sym_DOLLAR_DQUOTE); END_STATE(); case 4081: - ACCEPT_TOKEN(sym_inter_escape_sequence); + ACCEPT_TOKEN(anon_sym_DQUOTE2); END_STATE(); case 4082: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); + ACCEPT_TOKEN(sym_inter_escape_sequence); END_STATE(); case 4083: - ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACK); END_STATE(); case 4084: - ACCEPT_TOKEN(sym__entry_separator); + ACCEPT_TOKEN(anon_sym_DOT_DOT_DOT_LBRACE); END_STATE(); case 4085: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4084); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4085); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4084); END_STATE(); case 4086: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ',') ADVANCE(4084); + if (lookahead == ',') ADVANCE(4085); if (lookahead == '\t' || lookahead == ' ') ADVANCE(4086); - if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4087); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4085); END_STATE(); case 4087: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == ';') ADVANCE(4092); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(449); + if (lookahead == ',') ADVANCE(4085); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4087); + if (('\n' <= lookahead && lookahead <= '\r')) ADVANCE(4088); END_STATE(); case 4088: ACCEPT_TOKEN(sym__entry_separator); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(4088); - if (('\n' <= lookahead && lookahead <= '\r') || - lookahead == ',') ADVANCE(4084); + if (lookahead == ';') ADVANCE(4093); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(450); END_STATE(); case 4089: - ACCEPT_TOKEN(anon_sym_COLON2); + ACCEPT_TOKEN(sym__entry_separator); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4089); + if (('\n' <= lookahead && lookahead <= '\r') || + lookahead == ',') ADVANCE(4085); END_STATE(); case 4090: - ACCEPT_TOKEN(aux_sym__record_key_token1); - if (lookahead == '#') ADVANCE(5466); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); + ACCEPT_TOKEN(anon_sym_COLON2); END_STATE(); case 4091: ACCEPT_TOKEN(aux_sym__record_key_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); + if (lookahead == '#') ADVANCE(5467); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); END_STATE(); case 4092: - ACCEPT_TOKEN(sym__table_head_separator); + ACCEPT_TOKEN(aux_sym__record_key_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); END_STATE(); case 4093: - ACCEPT_TOKEN(anon_sym_DOT2); + ACCEPT_TOKEN(sym__table_head_separator); END_STATE(); case 4094: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(5176); - if (lookahead == '_') ADVANCE(5185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); END_STATE(); case 4095: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if (lookahead == '.') ADVANCE(5177); + if (lookahead == '_') ADVANCE(5186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); END_STATE(); case 4096: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4924); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4380); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 4097: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3830); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 4098: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(2063); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if (lookahead == '.') ADVANCE(3831); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 4099: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3833); + if (lookahead == '.') ADVANCE(2064); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); END_STATE(); case 4100: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); + if (lookahead == '.') ADVANCE(3834); END_STATE(); case 4101: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(4924); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4380); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); END_STATE(); case 4102: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(434); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); END_STATE(); case 4103: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '.') ADVANCE(3832); + if (lookahead == '.') ADVANCE(435); END_STATE(); case 4104: ACCEPT_TOKEN(anon_sym_DOT2); - if (lookahead == '_') ADVANCE(2442); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if (lookahead == '.') ADVANCE(3833); END_STATE(); case 4105: + ACCEPT_TOKEN(anon_sym_DOT2); + if (lookahead == '_') ADVANCE(2443); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3978); + END_STATE(); + case 4106: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\'') ADVANCE(4069); + if (lookahead == '\'') ADVANCE(4070); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -51372,12 +51409,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(375); - if (lookahead != 0) ADVANCE(4105); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(376); + if (lookahead != 0) ADVANCE(4106); END_STATE(); - case 4106: + case 4107: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '`') ADVANCE(4070); + if (lookahead == '`') ADVANCE(4071); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || @@ -51389,30 +51426,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '?' || lookahead == '[' || lookahead == ']' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(481); - if (lookahead != 0) ADVANCE(4106); - END_STATE(); - case 4107: - ACCEPT_TOKEN(aux_sym_path_token1); - if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4107); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(482); + if (lookahead != 0) ADVANCE(4107); END_STATE(); case 4108: - ACCEPT_TOKEN(aux_sym_env_var_token1); + ACCEPT_TOKEN(aux_sym_path_token1); + if ((!eof && set_contains(aux_sym_path_token1_character_set_1, 11, lookahead))) ADVANCE(4108); END_STATE(); case 4109: - ACCEPT_TOKEN(aux_sym_env_var_token2); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4109); + ACCEPT_TOKEN(aux_sym_env_var_token1); END_STATE(); case 4110: - ACCEPT_TOKEN(anon_sym_CARET); + ACCEPT_TOKEN(aux_sym_env_var_token2); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(4110); END_STATE(); case 4111: - ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(628); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ACCEPT_TOKEN(anon_sym_CARET); END_STATE(); case 4112: ACCEPT_TOKEN(aux_sym_command_token1); @@ -51420,228 +51449,228 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4113: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(485); + if (lookahead == ' ') ADVANCE(630); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4114: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(550); + if (lookahead == ' ') ADVANCE(486); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4115: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(486); + if (lookahead == ' ') ADVANCE(551); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4116: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(488); + if (lookahead == ' ') ADVANCE(487); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4117: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(1373); + if (lookahead == ' ') ADVANCE(489); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4118: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(933); + if (lookahead == ' ') ADVANCE(1374); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4119: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(667); + if (lookahead == ' ') ADVANCE(934); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4120: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == ' ') ADVANCE(657); - if (lookahead == 'o') ADVANCE(4179); + if (lookahead == ' ') ADVANCE(668); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4121: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4149); - if (('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == ' ') ADVANCE(658); + if (lookahead == 'o') ADVANCE(4180); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4122: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4166); + if (lookahead == '-') ADVANCE(4150); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4123: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4151); + if (lookahead == '-') ADVANCE(4167); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4124: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4230); + if (lookahead == '-') ADVANCE(4152); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4125: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4147); + if (lookahead == '-') ADVANCE(4231); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4126: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4213); + if (lookahead == '-') ADVANCE(4148); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4127: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4198); + if (lookahead == '-') ADVANCE(4214); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4128: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4174); + if (lookahead == '-') ADVANCE(4199); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4129: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4140); + if (lookahead == '-') ADVANCE(4175); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4130: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4225); + if (lookahead == '-') ADVANCE(4141); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4131: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4178); + if (lookahead == '-') ADVANCE(4226); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4132: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == '-') ADVANCE(4231); + if (lookahead == '-') ADVANCE(4179); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4133: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4233); - if (lookahead == '-' || - ('A' <= lookahead && lookahead <= 'Z') || + if (lookahead == '-') ADVANCE(4232); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4134: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4220); + if (lookahead == 'a') ADVANCE(4234); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4135: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4167); + if (lookahead == 'a') ADVANCE(4221); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4136: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4209); + if (lookahead == 'a') ADVANCE(4168); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4137: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4208); + if (lookahead == 'a') ADVANCE(4210); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4138: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4181); + if (lookahead == 'a') ADVANCE(4209); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4139: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4193); + if (lookahead == 'a') ADVANCE(4182); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4140: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4186); + if (lookahead == 'a') ADVANCE(4194); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4141: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'a') ADVANCE(4221); + if (lookahead == 'a') ADVANCE(4187); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4142: ACCEPT_TOKEN(aux_sym_command_token1); @@ -51649,675 +51678,675 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4143: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4215); + if (lookahead == 'a') ADVANCE(4223); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4144: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4202); + if (lookahead == 'c') ADVANCE(4216); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4145: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'c') ADVANCE(4142); + if (lookahead == 'c') ADVANCE(4203); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4146: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4235); + if (lookahead == 'c') ADVANCE(4143); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4147: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4224); - if (lookahead == 'n') ADVANCE(4223); + if (lookahead == 'd') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4148: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4232); + if (lookahead == 'd') ADVANCE(4225); + if (lookahead == 'n') ADVANCE(4224); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4149: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4134); + if (lookahead == 'd') ADVANCE(4233); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4150: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4177); + if (lookahead == 'd') ADVANCE(4135); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4151: ACCEPT_TOKEN(aux_sym_command_token1); - ADVANCE_MAP( - 'd', 4133, - 'h', 4201, - 'm', 4175, - 'n', 4139, - 'o', 4210, - 's', 4160, - 'w', 4162, - 'y', 4164, - ); + if (lookahead == 'd') ADVANCE(4178); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4152: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4133); + ADVANCE_MAP( + 'd', 4134, + 'h', 4202, + 'm', 4176, + 'n', 4140, + 'o', 4211, + 's', 4161, + 'w', 4163, + 'y', 4165, + ); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4153: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'd') ADVANCE(4141); + if (lookahead == 'd') ADVANCE(4134); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4154: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4235); + if (lookahead == 'd') ADVANCE(4142); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4155: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4143); + if (lookahead == 'e') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4156: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4190); + if (lookahead == 'e') ADVANCE(4144); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4157: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4212); + if (lookahead == 'e') ADVANCE(4191); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4158: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4180); + if (lookahead == 'e') ADVANCE(4213); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4159: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4232); + if (lookahead == 'e') ADVANCE(4181); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4160: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4144); + if (lookahead == 'e') ADVANCE(4233); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4161: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4218); + if (lookahead == 'e') ADVANCE(4145); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4162: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4158); + if (lookahead == 'e') ADVANCE(4219); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4163: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4131); + if (lookahead == 'e') ADVANCE(4159); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4164: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'e') ADVANCE(4137); + if (lookahead == 'e') ADVANCE(4132); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4165: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'f') ADVANCE(4199); + if (lookahead == 'e') ADVANCE(4138); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4166: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4211); + if (lookahead == 'f') ADVANCE(4200); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4167: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'g') ADVANCE(4163); + if (lookahead == 'g') ADVANCE(4212); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4168: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4235); + if (lookahead == 'g') ADVANCE(4164); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4169: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4159); + if (lookahead == 'h') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4170: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'h') ADVANCE(4128); + if (lookahead == 'h') ADVANCE(4160); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4171: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4145); + if (lookahead == 'h') ADVANCE(4129); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4172: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4217); + if (lookahead == 'i') ADVANCE(4146); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4173: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4189); + if (lookahead == 'i') ADVANCE(4218); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4174: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4148); + if (lookahead == 'i') ADVANCE(4190); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4175: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4195); - if (lookahead == 'o') ADVANCE(4196); + if (lookahead == 'i') ADVANCE(4149); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4176: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4216); + if (lookahead == 'i') ADVANCE(4196); + if (lookahead == 'o') ADVANCE(4197); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4177: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4197); + if (lookahead == 'i') ADVANCE(4217); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4178: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'i') ADVANCE(4192); + if (lookahead == 'i') ADVANCE(4198); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4179: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'j') ADVANCE(4155); + if (lookahead == 'i') ADVANCE(4193); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4180: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'k') ADVANCE(4152); + if (lookahead == 'j') ADVANCE(4156); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4181: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4235); + if (lookahead == 'k') ADVANCE(4153); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4182: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4155); - if (lookahead == 'u') ADVANCE(4187); + if (lookahead == 'l') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4183: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4212); + if (lookahead == 'l') ADVANCE(4156); + if (lookahead == 'u') ADVANCE(4188); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4184: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4183); + if (lookahead == 'l') ADVANCE(4213); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4185: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4171); + if (lookahead == 'l') ADVANCE(4184); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4186: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'l') ADVANCE(4181); + if (lookahead == 'l') ADVANCE(4172); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4187: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4191); + if (lookahead == 'l') ADVANCE(4182); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4188: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4136); + if (lookahead == 'm') ADVANCE(4192); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4189: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'm') ADVANCE(4154); + if (lookahead == 'm') ADVANCE(4137); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4190: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4235); + if (lookahead == 'm') ADVANCE(4155); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4191: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4212); + if (lookahead == 'n') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4192: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4165); + if (lookahead == 'n') ADVANCE(4213); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4193: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4200); + if (lookahead == 'n') ADVANCE(4166); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4194: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4146); + if (lookahead == 'n') ADVANCE(4201); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4195: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4229); + if (lookahead == 'n') ADVANCE(4147); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4196: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4216); + if (lookahead == 'n') ADVANCE(4230); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4197: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4138); + if (lookahead == 'n') ADVANCE(4217); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4198: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'n') ADVANCE(4228); + if (lookahead == 'n') ADVANCE(4139); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4199: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4235); + if (lookahead == 'n') ADVANCE(4229); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4200: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4214); + if (lookahead == 'o') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4201: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4227); + if (lookahead == 'o') ADVANCE(4215); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4202: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4194); + if (lookahead == 'o') ADVANCE(4228); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4203: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'o') ADVANCE(4226); + if (lookahead == 'o') ADVANCE(4195); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4204: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4135); + if (lookahead == 'o') ADVANCE(4227); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4205: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4212); + if (lookahead == 'p') ADVANCE(4136); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4206: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4185); + if (lookahead == 'p') ADVANCE(4213); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4207: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'p') ADVANCE(4153); + if (lookahead == 'p') ADVANCE(4186); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4208: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4235); + if (lookahead == 'p') ADVANCE(4154); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4209: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4233); + if (lookahead == 'r') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4210: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4150); + if (lookahead == 'r') ADVANCE(4234); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4211: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'r') ADVANCE(4203); + if (lookahead == 'r') ADVANCE(4151); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4212: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4235); + if (lookahead == 'r') ADVANCE(4204); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4213: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4219); + if (lookahead == 's') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4214: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 's') ADVANCE(4160); + if (lookahead == 's') ADVANCE(4220); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4215: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4235); + if (lookahead == 's') ADVANCE(4161); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4216: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4168); + if (lookahead == 't') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4217: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4170); + if (lookahead == 't') ADVANCE(4169); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4218: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4173); + if (lookahead == 't') ADVANCE(4171); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4219: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4208); + if (lookahead == 't') ADVANCE(4174); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4220: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4161); + if (lookahead == 't') ADVANCE(4209); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4221: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4154); + if (lookahead == 't') ADVANCE(4162); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4222: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 't') ADVANCE(4157); + if (lookahead == 't') ADVANCE(4155); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4223: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4184); + if (lookahead == 't') ADVANCE(4158); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4224: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4206); + if (lookahead == 'u') ADVANCE(4185); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4225: ACCEPT_TOKEN(aux_sym_command_token1); @@ -52325,669 +52354,677 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4226: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4205); + if (lookahead == 'u') ADVANCE(4208); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4227: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4208); + if (lookahead == 'u') ADVANCE(4206); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4228: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4186); + if (lookahead == 'u') ADVANCE(4209); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4229: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'u') ADVANCE(4221); + if (lookahead == 'u') ADVANCE(4187); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4230: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4172); + if (lookahead == 'u') ADVANCE(4222); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4231: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'w') ADVANCE(4176); + if (lookahead == 'w') ADVANCE(4173); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4232: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'x') ADVANCE(4235); + if (lookahead == 'w') ADVANCE(4177); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4233: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'y') ADVANCE(4235); + if (lookahead == 'x') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4234: ACCEPT_TOKEN(aux_sym_command_token1); - if (lookahead == 'z') ADVANCE(4235); + if (lookahead == 'y') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4235: ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == 'z') ADVANCE(4236); if (lookahead == '-' || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4235); + ('a' <= lookahead && lookahead <= 'y')) ADVANCE(4236); END_STATE(); case 4236: - ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4268); + ACCEPT_TOKEN(aux_sym_command_token1); + if (lookahead == '-' || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(4236); END_STATE(); case 4237: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4268); - if (lookahead == '|') ADVANCE(3557); + if (lookahead == '>') ADVANCE(4269); END_STATE(); case 4238: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4270); - if (lookahead == '|') ADVANCE(3557); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4269); + if (lookahead == '|') ADVANCE(3558); END_STATE(); case 4239: ACCEPT_TOKEN(anon_sym_err_GT); - if (lookahead == '>') ADVANCE(4269); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4271); + if (lookahead == '|') ADVANCE(3558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4240: - ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4271); + ACCEPT_TOKEN(anon_sym_err_GT); + if (lookahead == '>') ADVANCE(4270); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4241: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4271); - if (lookahead == '|') ADVANCE(3558); + if (lookahead == '>') ADVANCE(4272); END_STATE(); case 4242: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4273); - if (lookahead == '|') ADVANCE(3558); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4272); + if (lookahead == '|') ADVANCE(3559); END_STATE(); case 4243: ACCEPT_TOKEN(anon_sym_out_GT); - if (lookahead == '>') ADVANCE(4272); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4274); + if (lookahead == '|') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4244: - ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4274); + ACCEPT_TOKEN(anon_sym_out_GT); + if (lookahead == '>') ADVANCE(4273); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4245: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4274); - if (lookahead == '|') ADVANCE(3559); + if (lookahead == '>') ADVANCE(4275); END_STATE(); case 4246: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4276); - if (lookahead == '|') ADVANCE(3559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4275); + if (lookahead == '|') ADVANCE(3560); END_STATE(); case 4247: ACCEPT_TOKEN(anon_sym_e_GT); - if (lookahead == '>') ADVANCE(4275); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4277); + if (lookahead == '|') ADVANCE(3560); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4248: - ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4277); + ACCEPT_TOKEN(anon_sym_e_GT); + if (lookahead == '>') ADVANCE(4276); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4249: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4277); - if (lookahead == '|') ADVANCE(3560); + if (lookahead == '>') ADVANCE(4278); END_STATE(); case 4250: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4279); - if (lookahead == '|') ADVANCE(3560); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4278); + if (lookahead == '|') ADVANCE(3561); END_STATE(); case 4251: ACCEPT_TOKEN(anon_sym_o_GT); - if (lookahead == '>') ADVANCE(4278); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4280); + if (lookahead == '|') ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4252: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4280); + ACCEPT_TOKEN(anon_sym_o_GT); + if (lookahead == '>') ADVANCE(4279); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4253: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4280); - if (lookahead == '|') ADVANCE(3561); + if (lookahead == '>') ADVANCE(4281); END_STATE(); case 4254: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4282); - if (lookahead == '|') ADVANCE(3561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4281); + if (lookahead == '|') ADVANCE(3562); END_STATE(); case 4255: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); - if (lookahead == '>') ADVANCE(4281); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4283); + if (lookahead == '|') ADVANCE(3562); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4256: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4283); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT); + if (lookahead == '>') ADVANCE(4282); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4257: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4283); - if (lookahead == '|') ADVANCE(3562); + if (lookahead == '>') ADVANCE(4284); END_STATE(); case 4258: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4285); - if (lookahead == '|') ADVANCE(3562); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4284); + if (lookahead == '|') ADVANCE(3563); END_STATE(); case 4259: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); - if (lookahead == '>') ADVANCE(4284); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4286); + if (lookahead == '|') ADVANCE(3563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4260: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4286); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT); + if (lookahead == '>') ADVANCE(4285); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4261: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4286); - if (lookahead == '|') ADVANCE(3563); + if (lookahead == '>') ADVANCE(4287); END_STATE(); case 4262: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4288); - if (lookahead == '|') ADVANCE(3563); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4287); + if (lookahead == '|') ADVANCE(3564); END_STATE(); case 4263: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); - if (lookahead == '>') ADVANCE(4287); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4289); + if (lookahead == '|') ADVANCE(3564); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4264: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4289); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT); + if (lookahead == '>') ADVANCE(4288); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4265: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4289); - if (lookahead == '|') ADVANCE(3564); + if (lookahead == '>') ADVANCE(4290); END_STATE(); case 4266: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4291); - if (lookahead == '|') ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4290); + if (lookahead == '|') ADVANCE(3565); END_STATE(); case 4267: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); - if (lookahead == '>') ADVANCE(4290); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4292); + if (lookahead == '|') ADVANCE(3565); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4268: - ACCEPT_TOKEN(anon_sym_err_GT_GT); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT); + if (lookahead == '>') ADVANCE(4291); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4269: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4270: ACCEPT_TOKEN(anon_sym_err_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4271: - ACCEPT_TOKEN(anon_sym_out_GT_GT); + ACCEPT_TOKEN(anon_sym_err_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4272: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4273: ACCEPT_TOKEN(anon_sym_out_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4274: - ACCEPT_TOKEN(anon_sym_e_GT_GT); + ACCEPT_TOKEN(anon_sym_out_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4275: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4276: ACCEPT_TOKEN(anon_sym_e_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4277: - ACCEPT_TOKEN(anon_sym_o_GT_GT); + ACCEPT_TOKEN(anon_sym_e_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4278: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4279: ACCEPT_TOKEN(anon_sym_o_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4280: - ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + ACCEPT_TOKEN(anon_sym_o_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4281: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4282: ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4283: - ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + ACCEPT_TOKEN(anon_sym_err_PLUSout_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4284: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4285: ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4286: - ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + ACCEPT_TOKEN(anon_sym_out_PLUSerr_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4287: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4288: ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4289: - ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + ACCEPT_TOKEN(anon_sym_o_PLUSe_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4290: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); END_STATE(); case 4291: ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 4292: - ACCEPT_TOKEN(anon_sym_EQ2); + ACCEPT_TOKEN(anon_sym_e_PLUSo_GT_GT); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4293: - ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4400); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'r') ADVANCE(4318); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + ACCEPT_TOKEN(anon_sym_EQ2); END_STATE(); case 4294: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4393); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'u') ADVANCE(4322); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(4401); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'r') ADVANCE(4319); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4295: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4401); - if (lookahead == '>') ADVANCE(4237); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(4394); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'u') ADVANCE(4323); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4296: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(4394); - if (lookahead == '>') ADVANCE(4241); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(4402); + if (lookahead == '>') ADVANCE(4238); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4297: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1185); - if (lookahead == '>') ADVANCE(1573); - if (lookahead == 'r') ADVANCE(4319); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(4395); + if (lookahead == '>') ADVANCE(4242); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4298: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(759); + if (lookahead == '+') ADVANCE(1186); if (lookahead == '>') ADVANCE(1574); - if (lookahead == 'u') ADVANCE(4323); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'r') ADVANCE(4320); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4299: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(1230); - if (lookahead == '>') ADVANCE(1576); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(760); + if (lookahead == '>') ADVANCE(1575); + if (lookahead == 'u') ADVANCE(4324); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4300: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '+') ADVANCE(817); - if (lookahead == '>') ADVANCE(1578); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(1231); + if (lookahead == '>') ADVANCE(1577); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4301: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-') ADVANCE(4341); - if (lookahead == '_') ADVANCE(4307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '+') ADVANCE(818); + if (lookahead == '>') ADVANCE(1579); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4302: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == '-') ADVANCE(4342); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '_') ADVANCE(4308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4303: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '.') ADVANCE(468); - if (lookahead == '_') ADVANCE(4303); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '-') ADVANCE(4343); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4304: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == ':') ADVANCE(4444); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '.') ADVANCE(469); + if (lookahead == '_') ADVANCE(4304); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4305: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T') ADVANCE(4343); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == ':') ADVANCE(4445); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4306: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4307); - if (lookahead == 'b') ADVANCE(4012); - if (lookahead == 'o') ADVANCE(4028); - if (lookahead == 'x') ADVANCE(4033); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4309); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'T') ADVANCE(4344); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4307: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4307); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '_') ADVANCE(4308); + if (lookahead == 'b') ADVANCE(4012); + if (lookahead == 'o') ADVANCE(4028); + if (lookahead == 'x') ADVANCE(4033); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4310); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4308: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4301); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '_') ADVANCE(4308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4309: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4307); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4308); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '_') ADVANCE(4308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4302); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4310: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '_') ADVANCE(4307); + if (lookahead == '_') ADVANCE(4308); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4309); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4311: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'a') ADVANCE(4314); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '_') ADVANCE(4308); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4310); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4312: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(3920); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'a') ADVANCE(4315); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4313: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'e') ADVANCE(3928); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'e') ADVANCE(3921); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4314: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4321); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'e') ADVANCE(3929); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4315: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(3912); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'l') ADVANCE(4322); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4316: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'l') ADVANCE(4315); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'l') ADVANCE(3913); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4317: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4324); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'l') ADVANCE(4316); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4318: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4295); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'r') ADVANCE(4325); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4319: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'r') ADVANCE(4299); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'r') ADVANCE(4296); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4320: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(3756); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'r') ADVANCE(4300); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4321: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 's') ADVANCE(4313); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 's') ADVANCE(3757); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4322: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4296); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 's') ADVANCE(4314); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4323: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 't') ADVANCE(4300); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 't') ADVANCE(4297); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4324: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4312); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 't') ADVANCE(4301); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4325: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'u') ADVANCE(4316); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4330); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'u') ADVANCE(4313); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4326: ACCEPT_TOKEN(sym_short_flag_identifier); + if (lookahead == 'u') ADVANCE(4317); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4330); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == 'a') ADVANCE(4331); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4327: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4329); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4331); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4328: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4333); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4330); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4329: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4332); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == 'i') ADVANCE(4334); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4330: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4345); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4333); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4331: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4327); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + lookahead == 'n') ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4332: ACCEPT_TOKEN(sym_short_flag_identifier); if (lookahead == 'N' || lookahead == 'n') ADVANCE(4328); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4333: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4334); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4329); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4334: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4345); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4335); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4335: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '-' || - lookahead == '?' || - lookahead == '@') ADVANCE(4345); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4335); - if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3343); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4336: ACCEPT_TOKEN(sym_short_flag_identifier); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4336); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (lookahead == '-' || + lookahead == '?' || + lookahead == '@') ADVANCE(4346); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4336); + if ((!eof && set_contains(sym_identifier_character_set_2, 11, lookahead))) ADVANCE(3344); END_STATE(); case 4337: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(4337); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4338: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4302); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4338); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4339: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4305); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4303); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4340: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4304); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4306); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4341: ACCEPT_TOKEN(sym_short_flag_identifier); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4338); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4305); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4342: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4339); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4343: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4340); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); case 4344: + ACCEPT_TOKEN(sym_short_flag_identifier); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4341); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); + END_STATE(); + case 4345: ACCEPT_TOKEN(sym_short_flag_identifier); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4344); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); - case 4345: + case 4346: ACCEPT_TOKEN(sym_short_flag_identifier); - if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4345); + if (set_contains(sym_short_flag_identifier_character_set_1, 779, lookahead)) ADVANCE(4346); END_STATE(); - case 4346: + case 4347: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '\'') ADVANCE(4069); + if (lookahead == '\'') ADVANCE(4070); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(375); - if (lookahead != 0) ADVANCE(4346); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(376); + if (lookahead != 0) ADVANCE(4347); END_STATE(); - case 4347: + case 4348: ACCEPT_TOKEN(sym__unquoted_naive); - if (lookahead == '`') ADVANCE(4070); + if (lookahead == '`') ADVANCE(4071); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '(' || lookahead == ')' || lookahead == ';' || - ('{' <= lookahead && lookahead <= '}')) ADVANCE(481); - if (lookahead != 0) ADVANCE(4347); + ('{' <= lookahead && lookahead <= '}')) ADVANCE(482); + if (lookahead != 0) ADVANCE(4348); END_STATE(); - case 4348: + case 4349: ACCEPT_TOKEN(sym__unquoted_naive); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -52995,6837 +53032,6837 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(4348); - END_STATE(); - case 4349: - ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '$') ADVANCE(3933); - if (lookahead == '(') ADVANCE(3829); - if (lookahead == '[') ADVANCE(4082); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + (lookahead < '{' || '}' < lookahead)) ADVANCE(4349); END_STATE(); case 4350: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4400); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'r') ADVANCE(4406); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '[') ADVANCE(4083); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4351: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4393); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'u') ADVANCE(4414); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4401); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'r') ADVANCE(4407); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4352: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4387); - if (lookahead == '-') ADVANCE(4389); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == '_') ADVANCE(4389); - if (lookahead == 'r') ADVANCE(4406); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4394); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'u') ADVANCE(4415); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4353: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4401); - if (lookahead == '>') ADVANCE(4237); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4388); + if (lookahead == '-') ADVANCE(4390); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == 'r') ADVANCE(4407); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4354: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4394); - if (lookahead == '>') ADVANCE(4241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4402); + if (lookahead == '>') ADVANCE(4238); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4355: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4403); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == 'r') ADVANCE(4407); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4395); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4356: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4395); - if (lookahead == '>') ADVANCE(4248); - if (lookahead == 'u') ADVANCE(4416); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4404); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == 'r') ADVANCE(4408); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4357: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4404); - if (lookahead == '>') ADVANCE(4236); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4396); + if (lookahead == '>') ADVANCE(4249); + if (lookahead == 'u') ADVANCE(4417); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4358: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '+') ADVANCE(4396); - if (lookahead == '>') ADVANCE(4240); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4405); + if (lookahead == '>') ADVANCE(4237); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4359: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '-') ADVANCE(4440); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '+') ADVANCE(4397); + if (lookahead == '>') ADVANCE(4241); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4360: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '-') ADVANCE(4441); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4361: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4362: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4363: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(3708); - if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4364: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4378); - if (lookahead == '_') ADVANCE(4364); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '.') ADVANCE(3709); + if (lookahead == '_') ADVANCE(4380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4365: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '.') ADVANCE(4382); + if (lookahead == '.') ADVANCE(4379); if (lookahead == '_') ADVANCE(4365); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4366: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '2') ADVANCE(4430); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4438); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '.') ADVANCE(4383); + if (lookahead == '_') ADVANCE(4366); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4367: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4442); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '2') ADVANCE(4431); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4439); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4368: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == ':') ADVANCE(4444); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == ':') ADVANCE(4443); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4369: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == ':') ADVANCE(4445); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4370: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4371: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4372: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4373: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4264); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4374: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4260); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4265); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4375: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4252); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4261); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4376: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '>') ADVANCE(4256); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4253); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4377: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4377); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '>') ADVANCE(4257); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4378: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(4378); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4379: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(4379); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3979); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4380: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4381); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4381); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4380); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4381: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4381); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4382); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4382); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4382: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(4382); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4383: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(4383); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4384: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4385); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4384); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3901); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4385: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4385); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4386); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4386); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4386: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == '_') ADVANCE(4386); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4387: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4389); - if (lookahead == 'o') ADVANCE(4369); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4387); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4388: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4389); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == 'o') ADVANCE(4370); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4389: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == '_') ADVANCE(4389); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4390); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4390: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'a') ADVANCE(4397); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == '_') ADVANCE(4390); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4391: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'a') ADVANCE(4398); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4392: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4393: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4370); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4394: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4408); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'e') ADVANCE(4371); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4395: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4374); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'e') ADVANCE(4409); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4396: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'e') ADVANCE(4411); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'e') ADVANCE(4375); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4397: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4412); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'e') ADVANCE(4412); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4398: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(3909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'l') ADVANCE(4413); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4399: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'l') ADVANCE(4398); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4400: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4369); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'l') ADVANCE(4399); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4401: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4420); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'o') ADVANCE(4370); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4402: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4413); - if (lookahead == 'u') ADVANCE(4399); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4426); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'o') ADVANCE(4421); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4403: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4373); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'o') ADVANCE(4414); + if (lookahead == 'u') ADVANCE(4400); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4404: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'o') ADVANCE(4421); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'o') ADVANCE(4374); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4405: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4419); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'o') ADVANCE(4422); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4406: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4353); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4420); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4407: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4357); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4354); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4408: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4409); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4358); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4409: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4372); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4410); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4410: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4376); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4373); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4411: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'r') ADVANCE(4410); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4377); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4412: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 's') ADVANCE(4392); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'r') ADVANCE(4411); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4413: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4431); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 's') ADVANCE(4393); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4414: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4354); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 't') ADVANCE(4432); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4415: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4371); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 't') ADVANCE(4355); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4416: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4358); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 't') ADVANCE(4372); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4417: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 't') ADVANCE(4375); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 't') ADVANCE(4359); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4418: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4399); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4426); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 't') ADVANCE(4376); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4419: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4391); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'u') ADVANCE(4400); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4420: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4415); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'u') ADVANCE(4392); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4421: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'u') ADVANCE(4417); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'u') ADVANCE(4416); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4422: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4426); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'u') ADVANCE(4418); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4423: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3992); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4427); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4424: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4428); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3993); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4425: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4423); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4429); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4426: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4006); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + lookahead == 'n') ADVANCE(4424); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4427: ACCEPT_TOKEN(aux_sym_unquoted_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4424); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4428: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4429); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4425); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4429: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4430); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4430: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4431: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(3792); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4432: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(3793); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4433: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4359); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4434: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4360); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4435: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4050); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4369); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4436: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4040); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4051); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4437: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4057); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4438: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4045); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4439: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4433); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4440: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4435); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4434); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4441: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4434); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4436); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4442: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4436); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4435); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4443: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4367); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4437); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4444: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4443); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4368); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4445: ACCEPT_TOKEN(aux_sym_unquoted_token1); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4445); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4444); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4446: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4558, - '>', 4245, - 'I', 4612, - 'i', 4612, - 'n', 4530, - 'r', 4573, - 'B', 4015, - 'b', 4015, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + ACCEPT_TOKEN(aux_sym_unquoted_token1); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4446); END_STATE(); case 4447: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4558); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4612); - if (lookahead == 'r') ADVANCE(4573); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + ADVANCE_MAP( + '+', 4559, + '>', 4246, + 'I', 4613, + 'i', 4613, + 'n', 4531, + 'r', 4574, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4448: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4558); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'n') ADVANCE(4530); - if (lookahead == 'r') ADVANCE(4573); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4559); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4613); + if (lookahead == 'r') ADVANCE(4574); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4449: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4558); - if (lookahead == '>') ADVANCE(4245); - if (lookahead == 'r') ADVANCE(4573); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4559); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'n') ADVANCE(4531); + if (lookahead == 'r') ADVANCE(4574); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4450: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4535); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'r') ADVANCE(3769); - if (lookahead == 'u') ADVANCE(4586); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4559); + if (lookahead == '>') ADVANCE(4246); + if (lookahead == 'r') ADVANCE(4574); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4451: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4535); - if (lookahead == '>') ADVANCE(4249); - if (lookahead == 'u') ADVANCE(4586); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4536); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(4587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4452: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '+') ADVANCE(4536); + if (lookahead == '>') ADVANCE(4250); + if (lookahead == 'u') ADVANCE(4587); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 4453: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( '+', 4515, '-', 4518, - '>', 4245, - 'I', 4612, + '>', 4246, + 'I', 4613, '_', 4518, - 'i', 4612, - 'n', 4530, - 'r', 4573, - 'B', 4015, - 'b', 4015, + 'i', 4613, + 'n', 4531, + 'r', 4574, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4453: + case 4454: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( '+', 4515, '-', 4518, - '>', 4245, - 'I', 4612, + '>', 4246, + 'I', 4613, '_', 4518, - 'i', 4612, - 'r', 4573, - 'B', 4015, - 'b', 4015, + 'i', 4613, + 'r', 4574, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4454: + case 4455: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '+') ADVANCE(4515); if (lookahead == '-') ADVANCE(4518); - if (lookahead == '>') ADVANCE(4245); + if (lookahead == '>') ADVANCE(4246); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'n') ADVANCE(4530); - if (lookahead == 'r') ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(4531); + if (lookahead == 'r') ADVANCE(4574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4455: + case 4456: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '+') ADVANCE(4515); if (lookahead == '-') ADVANCE(4518); - if (lookahead == '>') ADVANCE(4245); + if (lookahead == '>') ADVANCE(4246); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'r') ADVANCE(4573); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4574); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4456: + case 4457: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4559); - if (lookahead == '>') ADVANCE(4237); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4560); + if (lookahead == '>') ADVANCE(4238); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4457: + case 4458: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( '+', 4516, '-', 4518, - '>', 4603, - 'I', 4612, + '>', 4604, + 'I', 4613, '_', 4518, - 'i', 4612, - 'n', 4530, - 'r', 4574, - 'B', 4015, - 'b', 4015, + 'i', 4613, + 'n', 4531, + 'r', 4575, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4458: + case 4459: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( '+', 4516, '-', 4518, - '>', 4603, - 'I', 4612, + '>', 4604, + 'I', 4613, '_', 4518, - 'i', 4612, - 'r', 4574, - 'B', 4015, - 'b', 4015, + 'i', 4613, + 'r', 4575, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4459: + case 4460: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '+') ADVANCE(4516); if (lookahead == '-') ADVANCE(4518); - if (lookahead == '>') ADVANCE(4603); + if (lookahead == '>') ADVANCE(4604); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'n') ADVANCE(4530); - if (lookahead == 'r') ADVANCE(4574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(4531); + if (lookahead == 'r') ADVANCE(4575); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4460: + case 4461: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '+') ADVANCE(4516); if (lookahead == '-') ADVANCE(4518); - if (lookahead == '>') ADVANCE(4603); + if (lookahead == '>') ADVANCE(4604); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'r') ADVANCE(4574); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); - END_STATE(); - case 4461: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4536); - if (lookahead == '>') ADVANCE(4241); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4575); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4462: ACCEPT_TOKEN(aux_sym_unquoted_token2); - ADVANCE_MAP( - '+', 4563, - '>', 4603, - 'I', 4612, - 'i', 4612, - 'n', 4530, - 'r', 4574, - 'B', 4015, - 'b', 4015, - ); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4537); + if (lookahead == '>') ADVANCE(4242); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4463: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4563); - if (lookahead == '>') ADVANCE(4603); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4612); - if (lookahead == 'r') ADVANCE(4574); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + ADVANCE_MAP( + '+', 4564, + '>', 4604, + 'I', 4613, + 'i', 4613, + 'n', 4531, + 'r', 4575, + 'B', 4016, + 'b', 4016, + ); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4464: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4563); - if (lookahead == '>') ADVANCE(4603); - if (lookahead == 'n') ADVANCE(4530); - if (lookahead == 'r') ADVANCE(4574); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '>') ADVANCE(4604); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4613); + if (lookahead == 'r') ADVANCE(4575); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4465: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4563); - if (lookahead == '>') ADVANCE(4603); - if (lookahead == 'r') ADVANCE(4574); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4564); + if (lookahead == '>') ADVANCE(4604); + if (lookahead == 'n') ADVANCE(4531); + if (lookahead == 'r') ADVANCE(4575); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4466: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4537); + if (lookahead == '+') ADVANCE(4564); if (lookahead == '>') ADVANCE(4604); - if (lookahead == 'r') ADVANCE(3769); - if (lookahead == 'u') ADVANCE(4593); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4575); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4467: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4537); - if (lookahead == '>') ADVANCE(4604); - if (lookahead == 'u') ADVANCE(4593); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4538); + if (lookahead == '>') ADVANCE(4605); + if (lookahead == 'r') ADVANCE(3770); + if (lookahead == 'u') ADVANCE(4594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4468: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4566); - if (lookahead == '>') ADVANCE(4606); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4538); + if (lookahead == '>') ADVANCE(4605); + if (lookahead == 'u') ADVANCE(4594); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4469: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '+') ADVANCE(4538); - if (lookahead == '>') ADVANCE(4608); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4567); + if (lookahead == '>') ADVANCE(4607); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4470: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(3619); - if (lookahead == '.') ADVANCE(4512); - if (lookahead == '_') ADVANCE(4481); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4623); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '+') ADVANCE(4539); + if (lookahead == '>') ADVANCE(4609); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4471: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4524); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '-') ADVANCE(3620); + if (lookahead == '.') ADVANCE(4512); + if (lookahead == '_') ADVANCE(4482); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4624); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4472: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4600); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '-') ADVANCE(4525); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4473: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4543); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '-') ADVANCE(4601); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4474: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4634); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '-') ADVANCE(4544); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4475: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '-') ADVANCE(4601); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '-') ADVANCE(4635); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4476: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '-') ADVANCE(4602); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4477: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4478: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3833); + if (lookahead == '.') ADVANCE(3711); if (lookahead == '_') ADVANCE(4513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4479: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(3833); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4513); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4480: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4507); - if (lookahead == '_') ADVANCE(4480); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4481: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '.') ADVANCE(4512); + if (lookahead == '.') ADVANCE(4508); if (lookahead == '_') ADVANCE(4481); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4482: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '2') ADVANCE(4629); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4637); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '.') ADVANCE(4512); + if (lookahead == '_') ADVANCE(4482); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4483: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4639); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '2') ADVANCE(4630); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4638); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4484: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == ':') ADVANCE(4642); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == ':') ADVANCE(4640); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4485: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3779); - if (lookahead == '~') ADVANCE(3790); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == ':') ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4486: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3777); - if (lookahead == '>') ADVANCE(3703); - if (lookahead == '~') ADVANCE(3788); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '=') ADVANCE(3780); + if (lookahead == '~') ADVANCE(3791); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4487: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '=') ADVANCE(3777); - if (lookahead == '~') ADVANCE(3788); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '>') ADVANCE(3704); + if (lookahead == '~') ADVANCE(3789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4488: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(3703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '=') ADVANCE(3778); + if (lookahead == '~') ADVANCE(3789); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4489: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4265); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(3704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4490: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4261); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(4266); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4491: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4253); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(4262); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4492: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4257); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(4254); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4493: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4605); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(4258); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4494: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4607); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(4606); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4495: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '>') ADVANCE(4609); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '>') ADVANCE(4608); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4496: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '>') ADVANCE(4610); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4497: + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if (lookahead == '>') ADVANCE(4611); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); + END_STATE(); + case 4498: ACCEPT_TOKEN(aux_sym_unquoted_token2); ADVANCE_MAP( - 'I', 4612, + 'I', 4613, '_', 4518, - 'i', 4612, - 'n', 4530, + 'i', 4613, + 'n', 4531, '+', 4518, '-', 4518, - 'B', 4015, - 'b', 4015, + 'B', 4016, + 'b', 4016, ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4498: + case 4499: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); + if (lookahead == 'I') ADVANCE(4613); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'i') ADVANCE(4612); + if (lookahead == 'i') ADVANCE(4613); if (lookahead == '+' || lookahead == '-') ADVANCE(4518); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); - case 4499: + case 4500: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); + if (lookahead == 'I') ADVANCE(4613); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'i') ADVANCE(4525); + if (lookahead == 'i') ADVANCE(4526); if (lookahead == '+' || lookahead == '-') ADVANCE(4518); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); - END_STATE(); - case 4500: - ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4612); - if (lookahead == 'n') ADVANCE(4530); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4501: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4612); - if (lookahead == 'r') ADVANCE(4597); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4613); + if (lookahead == 'n') ADVANCE(4531); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4502: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4612); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4613); + if (lookahead == 'r') ADVANCE(4598); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4503: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4525); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4613); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4504: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4553); - if (lookahead == 'o') ADVANCE(4529); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4526); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4505: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I') ADVANCE(4612); - if (lookahead == 'i') ADVANCE(4553); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4554); + if (lookahead == 'o') ADVANCE(4530); + if (lookahead == 's') ADVANCE(4023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4506: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4506); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'I') ADVANCE(4613); + if (lookahead == 'i') ADVANCE(4554); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4507: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4507); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4508: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4508); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4509: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4510); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4510); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '_') ADVANCE(4509); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4510: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '_') ADVANCE(4510); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '_') ADVANCE(4511); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4511); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4511: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4511); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4512: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4512); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4513: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4513); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3982); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4514: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'n') ADVANCE(4530); + if (lookahead == 'n') ADVANCE(4531); if (lookahead == '+' || lookahead == '-') ADVANCE(4518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4515: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'o') ADVANCE(4489); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4490); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4516: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4518); - if (lookahead == 'o') ADVANCE(4493); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4494); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4517: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4518); if (lookahead == '+' || lookahead == '-') ADVANCE(4518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4518: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4518); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4519: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4520); if (lookahead == '+' || lookahead == '-') ADVANCE(4520); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4520: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '_') ADVANCE(4520); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4521: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4550); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '_') ADVANCE(4521); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4522: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4602); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'a') ADVANCE(4551); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4523: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4577); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'a') ADVANCE(4603); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4524: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'a') ADVANCE(4557); - if (lookahead == 'o') ADVANCE(4569); - if (lookahead == 's') ADVANCE(4542); - if (lookahead == 'x') ADVANCE(4565); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'a') ADVANCE(4578); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4525: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'a') ADVANCE(4558); + if (lookahead == 'o') ADVANCE(4570); + if (lookahead == 's') ADVANCE(4543); + if (lookahead == 'x') ADVANCE(4566); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4526: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'c') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4527: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3765); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4528: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3823); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'd') ADVANCE(3766); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4529: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(3803); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'd') ADVANCE(3824); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4530: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'd') ADVANCE(4584); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'd') ADVANCE(3804); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4531: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3917); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'd') ADVANCE(4585); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4532: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(3925); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4533: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4526); - if (lookahead == 't') ADVANCE(4523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4534: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4526); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(4527); + if (lookahead == 't') ADVANCE(4524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4535: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4490); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(4527); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4536: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4575); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(4491); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4537: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4494); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(4576); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4538: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'e') ADVANCE(4578); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(4495); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4539: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'f') ADVANCE(3685); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'e') ADVANCE(4579); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4540: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3775); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'f') ADVANCE(3686); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4541: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(3773); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'h') ADVANCE(3776); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4542: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'h') ADVANCE(4548); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'h') ADVANCE(3774); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4543: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4552); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'h') ADVANCE(4549); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4544: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4587); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'i') ADVANCE(4553); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4545: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'i') ADVANCE(4588); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4546: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'i') ADVANCE(4592); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'i') ADVANCE(4589); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4547: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'k') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'i') ADVANCE(4593); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4548: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3819); - if (lookahead == 'r') ADVANCE(3821); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4549: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(3909); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'l') ADVANCE(3820); + if (lookahead == 'r') ADVANCE(3822); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4550: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4583); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4551: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'l') ADVANCE(4549); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'l') ADVANCE(4584); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4552: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3771); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'l') ADVANCE(4550); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4553: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(3772); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4554: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(3660); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4555: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4527); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(3661); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4556: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4530); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(4528); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4557: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'n') ADVANCE(4528); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(4531); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4558: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4489); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'n') ADVANCE(4529); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4559: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4598); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4490); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4560: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4529); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4599); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4561: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4591); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4530); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4562: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4591); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4592); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4563: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4493); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4592); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4564: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4568); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4494); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4565: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4570); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4569); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4566: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'o') ADVANCE(4599); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4571); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4567: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3769); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'o') ADVANCE(4600); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4568: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3767); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(3770); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4569: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3827); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(3768); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4570: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(3825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(3828); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4571: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(3826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4572: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4597); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4573: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4456); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4598); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4574: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4468); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4457); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4575: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4576); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4469); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4576: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4492); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4577); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4577: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4595); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4493); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4578: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4579); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4596); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4579: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'r') ADVANCE(4496); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4580); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4580: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4022); - if (lookahead == 'u') ADVANCE(4551); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'r') ADVANCE(4497); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4581: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(4552); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4620); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4582: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(3751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4583: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4532); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 's') ADVANCE(3752); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4584: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4472); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 's') ADVANCE(4533); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4585: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 's') ADVANCE(4475); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 's') ADVANCE(4473); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4586: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4461); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 's') ADVANCE(4476); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4587: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4471); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4462); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4588: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4540); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4472); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4589: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4523); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4541); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4590: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4491); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4524); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4591: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4473); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4492); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4592: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4541); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4474); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4593: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4469); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4542); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4594: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4495); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4470); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4595: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 't') ADVANCE(4585); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4496); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4596: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4551); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 't') ADVANCE(4586); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4597: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4531); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'u') ADVANCE(4552); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4620); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4598: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4590); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'u') ADVANCE(4532); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4599: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'u') ADVANCE(4594); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'u') ADVANCE(4591); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4600: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'w') ADVANCE(4545); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'u') ADVANCE(4595); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4601: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'w') ADVANCE(4546); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4602: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'y') ADVANCE(4022); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'w') ADVANCE(4547); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4603: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4604: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '|') ADVANCE(3560); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4605: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '|') ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4606: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3557); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '|') ADVANCE(3565); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4607: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3563); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '|') ADVANCE(3558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4608: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3558); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '|') ADVANCE(3564); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4609: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == '|') ADVANCE(3561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '|') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4610: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == '|') ADVANCE(3562); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4611: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4619); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == '|') ADVANCE(3563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4612: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4620); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4613: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4616); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4614: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4004); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'f') ADVANCE(4617); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4615: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3995); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'f') ADVANCE(4005); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4616: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(3071); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4643); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3074); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3996); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4617: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4625); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'i') ADVANCE(3072); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4644); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(3075); END_STATE(); case 4618: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'I' || lookahead == 'i') ADVANCE(4626); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4619: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4006); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4627); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4620: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4615); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4621: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4617); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'n') ADVANCE(4616); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4622: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4614); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'n') ADVANCE(4618); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4623: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4613); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'n') ADVANCE(4615); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4624: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4618); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'n') ADVANCE(4614); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4625: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4627); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4619); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4626: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'T' || lookahead == 't') ADVANCE(4628); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4627: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3988); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4629); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4628: ACCEPT_TOKEN(aux_sym_unquoted_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3998); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4629: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4630: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4631: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4474); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4632: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4484); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4475); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4633: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4631); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4485); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4634: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4640); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4632); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4635: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4641); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4636: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4637: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4638: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4632); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4639: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4635); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4633); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4640: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4053); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4636); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4641: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4483); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4054); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4642: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4641); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4484); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4643: ACCEPT_TOKEN(aux_sym_unquoted_token2); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4643); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4642); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4644: - ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(4647); - if (lookahead == '_') ADVANCE(4648); - if (lookahead == '\t' || - lookahead == ' ') SKIP(279); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + ACCEPT_TOKEN(aux_sym_unquoted_token2); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4644); END_STATE(); case 4645: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '.') ADVANCE(4647); - if (lookahead == '_') ADVANCE(4648); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(4648); + if (lookahead == '_') ADVANCE(4649); if (lookahead == '\t' || - lookahead == ' ') SKIP(344); + lookahead == ' ') SKIP(280); if (lookahead == '+' || - lookahead == '-') ADVANCE(4646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + lookahead == '-') ADVANCE(4647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4646: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '.') ADVANCE(4649); - if (lookahead == '_') ADVANCE(4646); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '.') ADVANCE(4648); + if (lookahead == '_') ADVANCE(4649); + if (lookahead == '\t' || + lookahead == ' ') SKIP(345); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4647); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4647: ACCEPT_TOKEN(aux_sym_unquoted_token3); + if (lookahead == '.') ADVANCE(4650); if (lookahead == '_') ADVANCE(4647); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4648: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(4648); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4649: ACCEPT_TOKEN(aux_sym_unquoted_token3); if (lookahead == '_') ADVANCE(4649); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4650: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4651); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4651); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (lookahead == '_') ADVANCE(4650); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4651: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if (lookahead == '_') ADVANCE(4651); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (lookahead == '_') ADVANCE(4652); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4652: ACCEPT_TOKEN(aux_sym_unquoted_token3); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4652); + if (lookahead == '_') ADVANCE(4652); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4653: - ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4779); - if (lookahead == '>') ADVANCE(4246); - if (lookahead == 'n') ADVANCE(4721); - if (lookahead == 'r') ADVANCE(4794); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + ACCEPT_TOKEN(aux_sym_unquoted_token3); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4653); END_STATE(); case 4654: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4779); - if (lookahead == '>') ADVANCE(4246); - if (lookahead == 'r') ADVANCE(4794); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4780); + if (lookahead == '>') ADVANCE(4247); + if (lookahead == 'n') ADVANCE(4722); + if (lookahead == 'r') ADVANCE(4795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4655: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4730); - if (lookahead == '>') ADVANCE(4250); - if (lookahead == 'r') ADVANCE(3770); - if (lookahead == 'u') ADVANCE(4825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4780); + if (lookahead == '>') ADVANCE(4247); + if (lookahead == 'r') ADVANCE(4795); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4656: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4730); - if (lookahead == '>') ADVANCE(4250); - if (lookahead == 'u') ADVANCE(4825); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4731); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'r') ADVANCE(3771); + if (lookahead == 'u') ADVANCE(4826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4657: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4782); - if (lookahead == '>') ADVANCE(4238); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4731); + if (lookahead == '>') ADVANCE(4251); + if (lookahead == 'u') ADVANCE(4826); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4658: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4733); - if (lookahead == '>') ADVANCE(4242); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4783); + if (lookahead == '>') ADVANCE(4239); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4659: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4787); - if (lookahead == '>') ADVANCE(4850); - if (lookahead == 'n') ADVANCE(4721); - if (lookahead == 'r') ADVANCE(4804); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4734); + if (lookahead == '>') ADVANCE(4243); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4660: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4787); - if (lookahead == '>') ADVANCE(4850); - if (lookahead == 'r') ADVANCE(4804); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4788); + if (lookahead == '>') ADVANCE(4851); + if (lookahead == 'n') ADVANCE(4722); + if (lookahead == 'r') ADVANCE(4805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4661: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4737); + if (lookahead == '+') ADVANCE(4788); if (lookahead == '>') ADVANCE(4851); - if (lookahead == 'r') ADVANCE(3770); - if (lookahead == 'u') ADVANCE(4831); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4805); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4662: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4737); - if (lookahead == '>') ADVANCE(4851); - if (lookahead == 'u') ADVANCE(4831); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4738); + if (lookahead == '>') ADVANCE(4852); + if (lookahead == 'r') ADVANCE(3771); + if (lookahead == 'u') ADVANCE(4832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4663: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4790); - if (lookahead == '>') ADVANCE(4853); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4738); + if (lookahead == '>') ADVANCE(4852); + if (lookahead == 'u') ADVANCE(4832); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4664: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+') ADVANCE(4739); - if (lookahead == '>') ADVANCE(4855); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4791); + if (lookahead == '>') ADVANCE(4854); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4665: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(3622); - if (lookahead == '.') ADVANCE(4697); - if (lookahead == '_') ADVANCE(4673); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4872); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+') ADVANCE(4740); + if (lookahead == '>') ADVANCE(4856); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4666: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4892); - if (lookahead == '_') ADVANCE(4697); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(3623); + if (lookahead == '.') ADVANCE(4698); + if (lookahead == '_') ADVANCE(4674); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4873); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4667: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4715); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(4893); + if (lookahead == '_') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4668: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4847); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(4716); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4669: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4751); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(4848); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4670: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4735); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == '-') ADVANCE(4752); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4671: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4893); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(4736); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4672: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '-') ADVANCE(4848); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(4894); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4673: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4697); - if (lookahead == '_') ADVANCE(4673); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '-') ADVANCE(4849); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4674: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(3711); - if (lookahead == '_') ADVANCE(4704); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '.') ADVANCE(4698); + if (lookahead == '_') ADVANCE(4674); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4675: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4706); - if (lookahead == '_') ADVANCE(4675); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == '.') ADVANCE(3712); + if (lookahead == '_') ADVANCE(4705); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4676: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '.') ADVANCE(4890); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4677); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '.') ADVANCE(4707); + if (lookahead == '_') ADVANCE(4676); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4677: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '2') ADVANCE(4881); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4891); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '.') ADVANCE(4891); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4678); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4678: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4882); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '2') ADVANCE(4882); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4892); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4679: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4895); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == ':') ADVANCE(4883); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4680: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':') ADVANCE(4897); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == ':') ADVANCE(4896); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4681: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3780); - if (lookahead == '~') ADVANCE(3791); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == ':') ADVANCE(4898); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4682: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3778); - if (lookahead == '>') ADVANCE(3704); - if (lookahead == '~') ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(3781); + if (lookahead == '~') ADVANCE(3792); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4683: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '=') ADVANCE(3778); - if (lookahead == '~') ADVANCE(3789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(3779); + if (lookahead == '>') ADVANCE(3705); + if (lookahead == '~') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4684: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4266); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '=') ADVANCE(3779); + if (lookahead == '~') ADVANCE(3790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4685: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4262); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4267); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4686: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4254); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4263); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4687: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4258); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4255); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4688: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(3704); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4259); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4689: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4852); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(3705); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4690: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4854); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4853); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4691: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '>') ADVANCE(4856); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '>') ADVANCE(4855); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4692: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '>') ADVANCE(4857); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4693: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N') ADVANCE(4862); - if (lookahead == 'f') ADVANCE(4880); - if (lookahead == 'n') ADVANCE(4862); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == '>') ADVANCE(4858); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4694: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T') ADVANCE(4894); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'N') ADVANCE(4863); + if (lookahead == 'f') ADVANCE(4881); + if (lookahead == 'n') ADVANCE(4863); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4695: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4697); - if (lookahead == 'b') ADVANCE(4011); - if (lookahead == 'o') ADVANCE(4027); - if (lookahead == 'x') ADVANCE(4032); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'T') ADVANCE(4895); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4696: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4697); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4697); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '_') ADVANCE(4698); + if (lookahead == 'b') ADVANCE(4014); + if (lookahead == 'o') ADVANCE(4030); + if (lookahead == 'x') ADVANCE(4035); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4697: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4697); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4697); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '_') ADVANCE(4698); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4698: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4697); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4666); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '_') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4699: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4697); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4698); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '_') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4667); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4700: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4697); + if (lookahead == '_') ADVANCE(4698); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4699); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4701: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4701); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4696); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '_') ADVANCE(4698); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4700); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4702: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4702); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4697); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4703: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4703); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(4705); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4703); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4704: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '_') ADVANCE(4704); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4701); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(4706); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4704); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4705: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4706); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4706); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == '_') ADVANCE(4705); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4702); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4706: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '_') ADVANCE(4706); + if (lookahead == '_') ADVANCE(4707); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4707); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4706); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4707: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4759); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '_') ADVANCE(4707); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4707); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4708: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4822); - if (lookahead == 'o') ADVANCE(4774); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'a') ADVANCE(4760); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4709: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4763); - if (lookahead == 'o') ADVANCE(4799); + if (lookahead == 'a') ADVANCE(4823); + if (lookahead == 'o') ADVANCE(4775); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4710: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4758); - if (lookahead == 'o') ADVANCE(4722); - if (lookahead == 'u') ADVANCE(4821); + if (lookahead == 'a') ADVANCE(4764); + if (lookahead == 'o') ADVANCE(4800); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4711: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4757); + if (lookahead == 'a') ADVANCE(4759); + if (lookahead == 'o') ADVANCE(4723); + if (lookahead == 'u') ADVANCE(4822); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4712: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4849); + if (lookahead == 'a') ADVANCE(4758); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4713: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4813); + if (lookahead == 'a') ADVANCE(4850); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4714: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4810); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'a') ADVANCE(4814); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4715: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'a') ADVANCE(4778); - if (lookahead == 'o') ADVANCE(4797); - if (lookahead == 's') ADVANCE(4743); - if (lookahead == 'x') ADVANCE(4789); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'a') ADVANCE(4811); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4716: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4746); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'a') ADVANCE(4779); + if (lookahead == 'o') ADVANCE(4798); + if (lookahead == 's') ADVANCE(4744); + if (lookahead == 'x') ADVANCE(4790); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4717: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'c') ADVANCE(4729); + if (lookahead == 'c') ADVANCE(4747); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4718: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3766); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'c') ADVANCE(4730); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4719: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3805); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'd') ADVANCE(3767); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4720: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(3824); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'd') ADVANCE(3806); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4721: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4817); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'd') ADVANCE(3825); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4722: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4841); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'd') ADVANCE(4818); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4723: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'd') ADVANCE(4729); + if (lookahead == 'd') ADVANCE(4842); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4724: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3924); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'd') ADVANCE(4730); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4725: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(3932); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'e') ADVANCE(3925); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4726: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'e') ADVANCE(3933); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4727: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4740); - if (lookahead == 'o') ADVANCE(4880); + if (lookahead == 'e') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4728: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4742); + if (lookahead == 'e') ADVANCE(4741); + if (lookahead == 'o') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4729: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4670); + if (lookahead == 'e') ADVANCE(4743); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4730: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4685); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'e') ADVANCE(4671); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4731: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4823); - if (lookahead == 'o') ADVANCE(4781); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'e') ADVANCE(4686); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4732: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4711); + if (lookahead == 'e') ADVANCE(4824); + if (lookahead == 'o') ADVANCE(4782); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4733: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4807); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'e') ADVANCE(4712); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4734: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4799); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'e') ADVANCE(4808); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4735: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4776); + if (lookahead == 'e') ADVANCE(4800); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4736: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4809); + if (lookahead == 'e') ADVANCE(4777); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4737: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'e') ADVANCE(4810); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4738: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4806); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'e') ADVANCE(4691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4739: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'e') ADVANCE(4811); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'e') ADVANCE(4807); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4740: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'e') ADVANCE(4812); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4741: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'f') ADVANCE(3690); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'f') ADVANCE(4881); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4742: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'g') ADVANCE(4752); - if (lookahead == 't') ADVANCE(4843); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'f') ADVANCE(3691); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4743: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4761); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'g') ADVANCE(4753); + if (lookahead == 't') ADVANCE(4844); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4744: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3776); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'h') ADVANCE(4762); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4745: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(3774); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'h') ADVANCE(3777); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4746: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'h') ADVANCE(3775); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4747: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'h') ADVANCE(4754); + if (lookahead == 'h') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4748: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4723); + if (lookahead == 'h') ADVANCE(4755); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4749: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4713); + if (lookahead == 'i') ADVANCE(4724); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4750: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4777); + if (lookahead == 'i') ADVANCE(4714); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4751: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'i') ADVANCE(4778); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4752: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4819); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'i') ADVANCE(4773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4753: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'i') ADVANCE(4820); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4754: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4769); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'i') ADVANCE(4827); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4755: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4827); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'i') ADVANCE(4770); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4756: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'i') ADVANCE(4830); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'i') ADVANCE(4828); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4757: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'i') ADVANCE(4831); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4758: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'k') ADVANCE(4726); - if (lookahead == 't') ADVANCE(4716); + if (lookahead == 'k') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4759: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4815); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'k') ADVANCE(4727); + if (lookahead == 't') ADVANCE(4717); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4760: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3915); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'l') ADVANCE(4816); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4761: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(3820); - if (lookahead == 'r') ADVANCE(3822); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'l') ADVANCE(3916); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4762: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4818); - if (lookahead == 'r') ADVANCE(4805); - if (lookahead == 'x') ADVANCE(4792); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'l') ADVANCE(3821); + if (lookahead == 'r') ADVANCE(3823); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4763: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4818); + if (lookahead == 'l') ADVANCE(4819); + if (lookahead == 'r') ADVANCE(4806); + if (lookahead == 'x') ADVANCE(4793); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4764: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4880); + if (lookahead == 'l') ADVANCE(4819); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4765: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4749); - if (lookahead == 's') ADVANCE(4880); + if (lookahead == 'l') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4766: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4760); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'l') ADVANCE(4750); + if (lookahead == 's') ADVANCE(4881); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4767: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4764); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'l') ADVANCE(4761); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4768: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4712); + if (lookahead == 'l') ADVANCE(4765); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4769: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'l') ADVANCE(4726); + if (lookahead == 'l') ADVANCE(4713); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4770: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4718); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'l') ADVANCE(4727); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4771: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3666); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'n') ADVANCE(4719); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4772: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(3772); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'n') ADVANCE(3667); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4773: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'n') ADVANCE(3773); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4774: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4816); + if (lookahead == 'n') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4775: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4721); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'n') ADVANCE(4817); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4776: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4845); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'n') ADVANCE(4722); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4777: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4840); + if (lookahead == 'n') ADVANCE(4846); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4778: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'n') ADVANCE(4720); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'n') ADVANCE(4841); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4779: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4684); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'n') ADVANCE(4721); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4780: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4842); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'o') ADVANCE(4685); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4781: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4791); + if (lookahead == 'o') ADVANCE(4843); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4782: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4837); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4792); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4783: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4719); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4838); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4784: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4799); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'o') ADVANCE(4720); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4785: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4796); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4800); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4786: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4829); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4797); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4787: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4689); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4830); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4788: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4802); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'o') ADVANCE(4690); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4789: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4798); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4803); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4790: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'o') ADVANCE(4844); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'o') ADVANCE(4799); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4791: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'o') ADVANCE(4845); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4792: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'p') ADVANCE(4788); - if (lookahead == 't') ADVANCE(4738); + if (lookahead == 'p') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4793: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4836); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'p') ADVANCE(4789); + if (lookahead == 't') ADVANCE(4739); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4794: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4657); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4837); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4795: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3770); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4658); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4796: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3768); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(3771); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4797: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3828); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(3769); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4798: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(3826); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(3829); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4799: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'r') ADVANCE(3827); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4800: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4839); + if (lookahead == 'r') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4801: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4732); + if (lookahead == 'r') ADVANCE(4840); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4802: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4823); + if (lookahead == 'r') ADVANCE(4733); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4803: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4717); + if (lookahead == 'r') ADVANCE(4824); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4804: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4663); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4718); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4805: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4784); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'r') ADVANCE(4664); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4806: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4773); + if (lookahead == 'r') ADVANCE(4785); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4807: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4808); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4774); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4808: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4687); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4809); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4809: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4768); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'r') ADVANCE(4688); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4810: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4834); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4769); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4811: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4812); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4835); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4812: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'r') ADVANCE(4692); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'r') ADVANCE(4813); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4813: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'r') ADVANCE(4693); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4814: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(3758); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 's') ADVANCE(4881); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4815: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4725); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 's') ADVANCE(3759); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4816: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4821); - if (lookahead == 't') ADVANCE(4750); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 's') ADVANCE(4726); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4817: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4668); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 's') ADVANCE(4822); + if (lookahead == 't') ADVANCE(4751); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4818: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4726); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 's') ADVANCE(4669); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4819: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4833); + if (lookahead == 's') ADVANCE(4727); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4820: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 's') ADVANCE(4672); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 's') ADVANCE(4834); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4821: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 's') ADVANCE(4673); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4822: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4716); + if (lookahead == 't') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4823: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4670); + if (lookahead == 't') ADVANCE(4717); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4824: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4714); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4671); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4825: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4658); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4715); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4826: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4667); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4659); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4827: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4744); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4668); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4828: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4686); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4745); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4829: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4669); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4687); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4830: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4745); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4670); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4831: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4664); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4746); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4832: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4691); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4665); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4833: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4734); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 't') ADVANCE(4692); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4834: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 't') ADVANCE(4820); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4735); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4835: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4766); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 't') ADVANCE(4821); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4836: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4724); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'u') ADVANCE(4767); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4837: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4828); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'u') ADVANCE(4725); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4838: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4767); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4870); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'u') ADVANCE(4829); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4839: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4726); - if (lookahead == 'y') ADVANCE(4880); + if (lookahead == 'u') ADVANCE(4768); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4871); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4840: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4726); + if (lookahead == 'u') ADVANCE(4727); + if (lookahead == 'y') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4841: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4769); + if (lookahead == 'u') ADVANCE(4727); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4842: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4803); + if (lookahead == 'u') ADVANCE(4770); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4843: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4806); + if (lookahead == 'u') ADVANCE(4804); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4844: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'u') ADVANCE(4832); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'u') ADVANCE(4807); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4845: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'u') ADVANCE(4833); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4846: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'v') ADVANCE(4736); + if (lookahead == 'v') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4847: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'w') ADVANCE(4755); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'v') ADVANCE(4737); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4848: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'w') ADVANCE(4756); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4849: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'y') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == 'w') ADVANCE(4757); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4850: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3559); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'y') ADVANCE(4881); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4851: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '|') ADVANCE(3560); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4852: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3564); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '|') ADVANCE(3561); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4853: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3557); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '|') ADVANCE(3565); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4854: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3563); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '|') ADVANCE(3558); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4855: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3558); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '|') ADVANCE(3564); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4856: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '|') ADVANCE(3561); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '|') ADVANCE(3559); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4857: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == '|') ADVANCE(3562); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4858: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4677); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(4899); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4858); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '|') ADVANCE(3563); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4859: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4868); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4678); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(4900); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4859); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4860: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4870); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + lookahead == 'a') ADVANCE(4869); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4861: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4866); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4871); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4862: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || lookahead == 'f') ADVANCE(4867); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4863: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4867); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == 'f') ADVANCE(4868); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4864: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4875); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4868); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4865: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(4876); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4866: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4873); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == 'i') ADVANCE(4877); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4867: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'I' || lookahead == 'i') ADVANCE(4874); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4868: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4875); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4869: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4861); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + lookahead == 'n') ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4870: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + lookahead == 'n') ADVANCE(4862); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4871: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4862); + lookahead == 'n') ADVANCE(4881); if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4872: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(4863); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4873: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(4864); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4874: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(4865); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4875: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4877); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4866); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4876: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'T' || lookahead == 't') ADVANCE(4878); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4877: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4879); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4878: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(4880); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + lookahead == 'y') ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4879: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(4879); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(4881); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4880: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (lookahead == ':' || - ('<' <= lookahead && lookahead <= '>')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4880); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(4880); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4881: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (lookahead == ':' || + ('<' <= lookahead && lookahead <= '>')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4881); END_STATE(); case 4882: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4885); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4883: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((',' <= lookahead && lookahead <= '.') || - lookahead == ':' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4883); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(4886); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4884: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(4884); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((',' <= lookahead && lookahead <= '.') || + lookahead == ':' || + ('<' <= lookahead && lookahead <= '@')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4884); END_STATE(); case 4885: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4899); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(4885); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4886: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4671); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4900); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4887: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4694); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4672); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4888: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4680); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4695); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4889: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4676); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4681); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4890: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4858); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4677); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4891: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4678); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4859); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4892: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4886); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4679); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4893: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4887); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4894: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4888); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4895: ACCEPT_TOKEN(aux_sym_unquoted_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4889); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4896: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4679); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4890); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4897: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4896); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4680); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4898: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4898); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4897); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4899: ACCEPT_TOKEN(aux_sym_unquoted_token4); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(4899); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4900: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '$') ADVANCE(3933); - if (lookahead == '(') ADVANCE(3829); - if (lookahead == '[') ADVANCE(4082); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + ACCEPT_TOKEN(aux_sym_unquoted_token4); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); END_STATE(); case 4901: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4943); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == 'r') ADVANCE(4946); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '$') ADVANCE(3934); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '[') ADVANCE(4083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4902: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4938); - if (lookahead == '>') ADVANCE(4248); - if (lookahead == 'u') ADVANCE(4950); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '+') ADVANCE(4944); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == 'r') ADVANCE(4947); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4903: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4932); - if (lookahead == '-') ADVANCE(4934); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == '_') ADVANCE(4934); - if (lookahead == 'r') ADVANCE(4946); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '+') ADVANCE(4939); + if (lookahead == '>') ADVANCE(4249); + if (lookahead == 'u') ADVANCE(4951); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4904: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4944); - if (lookahead == '>') ADVANCE(4236); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '+') ADVANCE(4933); + if (lookahead == '-') ADVANCE(4935); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == '_') ADVANCE(4935); + if (lookahead == 'r') ADVANCE(4947); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4905: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '+') ADVANCE(4939); - if (lookahead == '>') ADVANCE(4240); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '+') ADVANCE(4945); + if (lookahead == '>') ADVANCE(4237); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4906: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '-') ADVANCE(4978); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '+') ADVANCE(4940); + if (lookahead == '>') ADVANCE(4241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4907: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '-') ADVANCE(4979); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4908: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(4928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4909: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(4924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(4929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4910: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4923); - if (lookahead == '_') ADVANCE(4911); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4911: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4923); - if (lookahead == '_') ADVANCE(4911); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(4924); + if (lookahead == '_') ADVANCE(4912); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4964); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4912: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(3709); - if (lookahead == '_') ADVANCE(4924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(4924); + if (lookahead == '_') ADVANCE(4912); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4913: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4927); - if (lookahead == '_') ADVANCE(4914); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4963); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(3710); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4914: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '.') ADVANCE(4927); - if (lookahead == '_') ADVANCE(4914); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(4928); + if (lookahead == '_') ADVANCE(4915); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4964); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4915: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '2') ADVANCE(4969); - if (lookahead == '0' || - lookahead == '1') ADVANCE(4977); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '.') ADVANCE(4928); + if (lookahead == '_') ADVANCE(4915); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4916: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4980); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '2') ADVANCE(4970); + if (lookahead == '0' || + lookahead == '1') ADVANCE(4978); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4917: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == ':') ADVANCE(4982); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == ':') ADVANCE(4981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4918: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4264); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == ':') ADVANCE(4983); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4919: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4260); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '>') ADVANCE(4265); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4920: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4252); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '>') ADVANCE(4261); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4921: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '>') ADVANCE(4256); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '>') ADVANCE(4253); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4922: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4922); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '>') ADVANCE(4257); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4923: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(4923); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4924: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(4924); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3980); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4925: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4926); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4925); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3981); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4926: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4926); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4927); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4927); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4927: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(4927); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4928: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(4928); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4929: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4930); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4929); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4930: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4930); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4931); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4931); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4931: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == '_') ADVANCE(4931); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4932: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4934); - if (lookahead == 'o') ADVANCE(4918); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4932); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4933: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4934); - if (lookahead == '+' || - lookahead == '-') ADVANCE(4934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4935); + if (lookahead == 'o') ADVANCE(4919); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4934: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == '_') ADVANCE(4934); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4935); + if (lookahead == '+' || + lookahead == '-') ADVANCE(4935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4935: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'a') ADVANCE(4941); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == '_') ADVANCE(4935); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4936: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'a') ADVANCE(4942); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4937: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(3925); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4938: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4919); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4939: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'e') ADVANCE(4947); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'e') ADVANCE(4920); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4940: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(3909); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'e') ADVANCE(4948); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4941: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4949); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4942: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'l') ADVANCE(4940); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'l') ADVANCE(4950); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4943: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4918); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'l') ADVANCE(4941); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4944: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'o') ADVANCE(4954); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'o') ADVANCE(4919); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4945: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4953); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'o') ADVANCE(4955); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4946: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4904); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'r') ADVANCE(4954); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4947: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4948); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'r') ADVANCE(4905); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4948: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'r') ADVANCE(4921); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'r') ADVANCE(4949); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4949: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 's') ADVANCE(4937); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'r') ADVANCE(4922); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4950: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4905); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 's') ADVANCE(4938); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4951: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 't') ADVANCE(4920); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 't') ADVANCE(4906); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4952: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4942); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4960); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 't') ADVANCE(4921); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4953: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4936); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'u') ADVANCE(4943); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4961); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4954: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'u') ADVANCE(4951); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'u') ADVANCE(4937); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4955: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(4960); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'u') ADVANCE(4952); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4956: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3993); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(4961); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4957: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + lookahead == 'f') ADVANCE(3994); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4958: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(4965); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4959: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(4966); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4960: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4006); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(4967); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4961: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4956); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4962: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4958); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + lookahead == 'n') ADVANCE(4957); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4963: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4957); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + lookahead == 'n') ADVANCE(4959); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4964: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4959); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + lookahead == 'n') ADVANCE(4958); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4965: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(4967); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(4960); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4966: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(4968); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4967: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3988); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(4969); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4968: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4969: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4970: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4971: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4906); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4972: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4907); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4973: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4971); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4974: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4051); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4972); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4975: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4041); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4976: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4058); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4042); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4977: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4059); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4978: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4974); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4979: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4972); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4975); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4980: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4975); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4981: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4916); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4982: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4981); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4917); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4983: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4983); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4982); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4984: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5040); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == 'i') ADVANCE(5057); - if (lookahead == 'r') ADVANCE(5044); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token1); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(4984); END_STATE(); case 4985: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5040); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == 'r') ADVANCE(5044); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '+') ADVANCE(5041); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == 'i') ADVANCE(5058); + if (lookahead == 'r') ADVANCE(5045); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4986: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5033); - if (lookahead == '>') ADVANCE(4248); - if (lookahead == 'u') ADVANCE(5050); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '+') ADVANCE(5041); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == 'r') ADVANCE(5045); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4987: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - ADVANCE_MAP( - '+', 5020, - '-', 5022, - '>', 4244, - 'I', 5057, - '_', 5022, - 'i', 5057, - 'r', 5044, - 'B', 4015, - 'b', 4015, - ); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '+') ADVANCE(5034); + if (lookahead == '>') ADVANCE(4249); + if (lookahead == 'u') ADVANCE(5051); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4988: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5020); - if (lookahead == '-') ADVANCE(5022); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == '_') ADVANCE(5022); - if (lookahead == 'r') ADVANCE(5044); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + ADVANCE_MAP( + '+', 5021, + '-', 5023, + '>', 4245, + 'I', 5058, + '_', 5023, + 'i', 5058, + 'r', 5045, + 'B', 4016, + 'b', 4016, + ); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4989: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5041); - if (lookahead == '>') ADVANCE(4236); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '+') ADVANCE(5021); + if (lookahead == '-') ADVANCE(5023); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == '_') ADVANCE(5023); + if (lookahead == 'r') ADVANCE(5045); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4990: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '+') ADVANCE(5034); - if (lookahead == '>') ADVANCE(4240); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '+') ADVANCE(5042); + if (lookahead == '>') ADVANCE(4237); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4991: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '-') ADVANCE(5076); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '+') ADVANCE(5035); + if (lookahead == '>') ADVANCE(4241); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4992: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(5015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '-') ADVANCE(5077); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4993: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(5019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4994: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3833); - if (lookahead == '_') ADVANCE(5019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4995: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(3833); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(3834); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4996: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5014); - if (lookahead == '_') ADVANCE(4997); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4997: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5014); - if (lookahead == '_') ADVANCE(4997); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(5015); + if (lookahead == '_') ADVANCE(4998); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4998: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5018); - if (lookahead == '_') ADVANCE(4999); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5065); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(5015); + if (lookahead == '_') ADVANCE(4998); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 4999: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '.') ADVANCE(5018); - if (lookahead == '_') ADVANCE(4999); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(5019); + if (lookahead == '_') ADVANCE(5000); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5066); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5000: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '2') ADVANCE(5071); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5080); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '.') ADVANCE(5019); + if (lookahead == '_') ADVANCE(5000); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5001: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5081); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '2') ADVANCE(5072); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5081); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5002: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == ':') ADVANCE(5084); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == ':') ADVANCE(5082); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5003: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4264); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == ':') ADVANCE(5085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5004: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4260); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '>') ADVANCE(4265); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5005: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4252); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '>') ADVANCE(4261); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5006: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '>') ADVANCE(4256); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '>') ADVANCE(4253); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5007: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == '_') ADVANCE(5022); - if (lookahead == 'i') ADVANCE(5057); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '>') ADVANCE(4257); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5008: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == '_') ADVANCE(5022); - if (lookahead == 'i') ADVANCE(5028); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == '_') ADVANCE(5023); + if (lookahead == 'i') ADVANCE(5058); if (lookahead == '+' || - lookahead == '-') ADVANCE(5022); + lookahead == '-') ADVANCE(5023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5009: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == 'i') ADVANCE(5057); - if (lookahead == 'r') ADVANCE(5053); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == '_') ADVANCE(5023); + if (lookahead == 'i') ADVANCE(5029); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5023); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5010: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == 'i') ADVANCE(5057); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == 'i') ADVANCE(5058); + if (lookahead == 'r') ADVANCE(5054); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5011: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == 'i') ADVANCE(5028); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == 'i') ADVANCE(5058); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5012: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I') ADVANCE(5057); - if (lookahead == 'i') ADVANCE(5039); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == 'i') ADVANCE(5029); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5013: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5013); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'I') ADVANCE(5058); + if (lookahead == 'i') ADVANCE(5040); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5014: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(5014); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5015: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(5015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3902); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5016: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5017); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3903); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5017: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5017); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5018); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5018); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5018: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(5018); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5019: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(5019); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3983); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5020: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5022); - if (lookahead == 'o') ADVANCE(5003); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5020); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5021: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5022); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5023); + if (lookahead == 'o') ADVANCE(5004); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5022: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5022); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5023); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5023); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5023: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5024); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5023); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5024: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == '_') ADVANCE(5024); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5025); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5025); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5025: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == '_') ADVANCE(5025); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5026: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5037); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == '_') ADVANCE(5026); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5027: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'a') ADVANCE(5055); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'a') ADVANCE(5038); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5028: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'a') ADVANCE(5056); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5029: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'c') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5030: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3917); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5031: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(3925); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5032: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5029); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5033: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5004); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'e') ADVANCE(5030); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5034: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'e') ADVANCE(5045); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'e') ADVANCE(5005); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5035: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'k') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'e') ADVANCE(5046); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5036: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(3909); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5037: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5049); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5038: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'l') ADVANCE(5036); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'l') ADVANCE(5050); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5039: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'l') ADVANCE(5037); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5040: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5003); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5041: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'o') ADVANCE(5054); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'o') ADVANCE(5004); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5042: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'o') ADVANCE(5055); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5043: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5053); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5044: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(4989); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'r') ADVANCE(5054); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5045: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5046); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'r') ADVANCE(4990); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5046: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'r') ADVANCE(5006); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'r') ADVANCE(5047); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5047: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4022); - if (lookahead == 'u') ADVANCE(5038); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5062); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'r') ADVANCE(5007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5048: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'u') ADVANCE(5039); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5063); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5049: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 's') ADVANCE(5031); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5050: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(4990); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 's') ADVANCE(5032); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5051: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 't') ADVANCE(5005); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 't') ADVANCE(4991); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5052: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5038); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5062); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 't') ADVANCE(5006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5053: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5030); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'u') ADVANCE(5039); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5063); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5054: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'u') ADVANCE(5051); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'u') ADVANCE(5031); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5055: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'y') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'u') ADVANCE(5052); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5056: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5062); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5057: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5063); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5058: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4005); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5059: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3996); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'f') ADVANCE(4006); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5060: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5067); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3997); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5061: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'I' || lookahead == 'i') ADVANCE(5068); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5062: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4006); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5069); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5063: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5059); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5064: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || lookahead == 'n') ADVANCE(5060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5065: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5058); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'n') ADVANCE(5061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5066: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5061); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'n') ADVANCE(5059); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5067: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5069); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5062); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5068: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'T' || lookahead == 't') ADVANCE(5070); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5069: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3988); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5071); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5070: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3998); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5071: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5072: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4038); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(4049); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5073: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4991); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4039); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5074: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5002); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4992); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5075: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5073); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5003); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5076: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5082); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5074); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5077: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5074); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5083); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5078: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4043); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5075); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5079: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4060); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4044); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5080: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4048); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4061); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5081: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5078); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4049); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5082: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4054); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5079); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5083: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5001); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4055); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5084: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5083); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5002); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5085: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5085); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5084); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5086: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3713); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(5089); - if (lookahead == ']') ADVANCE(3592); - if (lookahead == '_') ADVANCE(5090); - if (lookahead == '\t' || - lookahead == ' ') SKIP(277); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token2); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5086); END_STATE(); case 5087: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(5089); - if (lookahead == '_') ADVANCE(5090); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3714); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5090); + if (lookahead == ']') ADVANCE(3593); + if (lookahead == '_') ADVANCE(5091); if (lookahead == '\t' || - lookahead == ' ') SKIP(279); + lookahead == ' ') SKIP(278); if (lookahead == '+' || - lookahead == '-') ADVANCE(5088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + lookahead == '-') ADVANCE(5089); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5088: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '.') ADVANCE(5091); - if (lookahead == '_') ADVANCE(5088); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5090); + if (lookahead == '_') ADVANCE(5091); + if (lookahead == '\t' || + lookahead == ' ') SKIP(280); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5089); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5089: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if (lookahead == '.') ADVANCE(5092); if (lookahead == '_') ADVANCE(5089); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5090: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(5090); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3906); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5091: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); if (lookahead == '_') ADVANCE(5091); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5092: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5093); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (lookahead == '_') ADVANCE(5092); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5093: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if (lookahead == '_') ADVANCE(5093); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (lookahead == '_') ADVANCE(5094); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5094: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5094); + if (lookahead == '_') ADVANCE(5094); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5095: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5130); - if (lookahead == '>') ADVANCE(4247); - if (lookahead == 'r') ADVANCE(5133); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token3); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5095); END_STATE(); case 5096: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5125); - if (lookahead == '>') ADVANCE(4251); - if (lookahead == 'u') ADVANCE(5137); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '+') ADVANCE(5131); + if (lookahead == '>') ADVANCE(4248); + if (lookahead == 'r') ADVANCE(5134); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5097: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5131); - if (lookahead == '>') ADVANCE(4239); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '+') ADVANCE(5126); + if (lookahead == '>') ADVANCE(4252); + if (lookahead == 'u') ADVANCE(5138); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5098: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+') ADVANCE(5126); - if (lookahead == '>') ADVANCE(4243); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '+') ADVANCE(5132); + if (lookahead == '>') ADVANCE(4240); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5099: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '-') ADVANCE(5163); - if (lookahead == '_') ADVANCE(5116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '+') ADVANCE(5127); + if (lookahead == '>') ADVANCE(4244); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5100: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '-') ADVANCE(5164); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5101: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5116); - if (lookahead == '_') ADVANCE(5102); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5148); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '-') ADVANCE(5165); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5102: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5116); - if (lookahead == '_') ADVANCE(5102); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '.') ADVANCE(5117); + if (lookahead == '_') ADVANCE(5103); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5149); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5103: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(3712); - if (lookahead == '_') ADVANCE(5121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '.') ADVANCE(5117); + if (lookahead == '_') ADVANCE(5103); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5104: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '.') ADVANCE(5161); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5105); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5170); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '.') ADVANCE(3713); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5121); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5105: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '2') ADVANCE(5153); - if (lookahead == '0' || - lookahead == '1') ADVANCE(5162); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '.') ADVANCE(5162); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5106); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5171); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5106: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5154); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5156); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '2') ADVANCE(5154); + if (lookahead == '0' || + lookahead == '1') ADVANCE(5163); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5107: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5166); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == ':') ADVANCE(5155); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5157); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5108: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == ':') ADVANCE(5168); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == ':') ADVANCE(5167); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5109: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4267); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == ':') ADVANCE(5169); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5110: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4263); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4268); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5111: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4255); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4264); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5112: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '>') ADVANCE(4259); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4256); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5113: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T') ADVANCE(5165); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '>') ADVANCE(4260); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5114: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5116); - if (lookahead == 'b') ADVANCE(4014); - if (lookahead == 'o') ADVANCE(4030); - if (lookahead == 'x') ADVANCE(4035); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5118); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'T') ADVANCE(5166); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5115: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5116); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5117); + if (lookahead == 'b') ADVANCE(4015); + if (lookahead == 'o') ADVANCE(4031); + if (lookahead == 'x') ADVANCE(4036); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5119); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5116: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5116); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5117); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5117: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5099); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5117); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5118: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5116); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5117); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5100); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5119: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5116); + if (lookahead == '_') ADVANCE(5117); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5118); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5120: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '_') ADVANCE(5120); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5115); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5117); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5119); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5121: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == '_') ADVANCE(5121); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5120); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5116); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5121); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5122: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'a') ADVANCE(5127); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '_') ADVANCE(5122); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5121); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5123: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3923); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'a') ADVANCE(5128); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5124: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(3931); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'e') ADVANCE(3924); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5125: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5110); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'e') ADVANCE(3932); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5126: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'e') ADVANCE(5134); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'e') ADVANCE(5111); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5127: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5136); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'e') ADVANCE(5135); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5128: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(3914); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'l') ADVANCE(5137); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5129: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'l') ADVANCE(5128); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'l') ADVANCE(3915); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5130: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5109); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'l') ADVANCE(5129); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5131: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'o') ADVANCE(5141); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'o') ADVANCE(5110); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5132: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5140); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'o') ADVANCE(5142); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5133: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5097); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'r') ADVANCE(5141); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5134: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5135); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'r') ADVANCE(5098); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5135: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'r') ADVANCE(5112); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'r') ADVANCE(5136); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5136: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 's') ADVANCE(5124); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'r') ADVANCE(5113); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5137: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5098); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 's') ADVANCE(5125); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5138: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 't') ADVANCE(5111); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 't') ADVANCE(5099); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5139: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5129); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5147); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 't') ADVANCE(5112); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5140: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5123); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'u') ADVANCE(5130); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5141: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'u') ADVANCE(5138); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'u') ADVANCE(5124); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5142: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5105); - if (lookahead == 'Z' || - lookahead == 'z') ADVANCE(5170); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5142); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'u') ADVANCE(5139); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5143: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5147); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5106); + if (lookahead == 'Z' || + lookahead == 'z') ADVANCE(5171); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5143); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5144: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5146); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5148); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5145: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5150); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5147); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5146: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5149); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + lookahead == 'i') ADVANCE(5151); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5147: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5170); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5150); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5148: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5144); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + lookahead == 'n') ADVANCE(5171); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5149: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(5145); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5150: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5151); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5146); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5151: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5170); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5152); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5152: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(5152); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5171); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5153: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (lookahead == '0' || + lookahead == '1' || + lookahead == '_') ADVANCE(5153); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5154: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5156); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '3')) ADVANCE(5107); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5155: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '7') || - lookahead == '_') ADVANCE(5155); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '5')) ADVANCE(5157); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5156: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5170); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5156); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5157: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5100); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5171); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5158: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5113); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5101); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5159: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5108); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5114); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5160: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5104); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5109); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5161: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5142); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5105); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5162: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5106); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5143); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5163: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5157); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5107); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5164: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5158); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5165: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5159); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5166: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5160); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5167: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5107); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5161); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5168: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5167); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5108); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5169: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5169); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5168); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5170: ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5171: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5198); - if (lookahead == '>') ADVANCE(4244); - if (lookahead == 'r') ADVANCE(5201); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + ACCEPT_TOKEN(aux_sym__unquoted_in_list_token4); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5172: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5193); - if (lookahead == '>') ADVANCE(4248); - if (lookahead == 'u') ADVANCE(5205); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '+') ADVANCE(5199); + if (lookahead == '>') ADVANCE(4245); + if (lookahead == 'r') ADVANCE(5202); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5173: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5199); - if (lookahead == '>') ADVANCE(4236); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '+') ADVANCE(5194); + if (lookahead == '>') ADVANCE(4249); + if (lookahead == 'u') ADVANCE(5206); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5174: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '+') ADVANCE(5194); - if (lookahead == '>') ADVANCE(4240); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '+') ADVANCE(5200); + if (lookahead == '>') ADVANCE(4237); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5175: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '-') ADVANCE(5228); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '+') ADVANCE(5195); + if (lookahead == '>') ADVANCE(4241); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5176: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5210); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '-') ADVANCE(5229); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5177: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(3710); - if (lookahead == '_') ADVANCE(5185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '.') ADVANCE(5211); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5178: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5189); - if (lookahead == '_') ADVANCE(5179); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5219); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '.') ADVANCE(3711); + if (lookahead == '_') ADVANCE(5186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5179: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '.') ADVANCE(5189); - if (lookahead == '_') ADVANCE(5179); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '.') ADVANCE(5190); + if (lookahead == '_') ADVANCE(5180); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5220); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5180: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == ':') ADVANCE(1611); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5231); + if (lookahead == '.') ADVANCE(5190); + if (lookahead == '_') ADVANCE(5180); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5181: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4264); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == ':') ADVANCE(1612); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5182: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4260); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '>') ADVANCE(4265); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5183: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4252); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '>') ADVANCE(4261); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5184: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '>') ADVANCE(4256); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '>') ADVANCE(4253); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5185: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5185); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '>') ADVANCE(4257); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5186: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5187); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5187); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '_') ADVANCE(5186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3977); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5187: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '_') ADVANCE(5187); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '_') ADVANCE(5188); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5188); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5188: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(5188); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3972); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5189: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == '_') ADVANCE(5189); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5190: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'a') ADVANCE(5196); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '_') ADVANCE(5190); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5191: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3917); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'a') ADVANCE(5197); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5192: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(3925); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'e') ADVANCE(3918); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5193: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5182); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'e') ADVANCE(3926); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5194: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'e') ADVANCE(5202); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'e') ADVANCE(5183); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5195: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(3909); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'e') ADVANCE(5203); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5196: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5204); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'l') ADVANCE(3910); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5197: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'l') ADVANCE(5195); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'l') ADVANCE(5205); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5198: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5181); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'l') ADVANCE(5196); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5199: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'o') ADVANCE(5209); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'o') ADVANCE(5182); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5200: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5208); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'o') ADVANCE(5210); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5201: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5173); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'r') ADVANCE(5209); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5202: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5203); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'r') ADVANCE(5174); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5203: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'r') ADVANCE(5184); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'r') ADVANCE(5204); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5204: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 's') ADVANCE(5192); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'r') ADVANCE(5185); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5205: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5174); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 's') ADVANCE(5193); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5206: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 't') ADVANCE(5183); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 't') ADVANCE(5175); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5207: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5197); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5216); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 't') ADVANCE(5184); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5208: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5191); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'u') ADVANCE(5198); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5217); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5209: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'u') ADVANCE(5206); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'u') ADVANCE(5192); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5210: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == '{') ADVANCE(4083); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'u') ADVANCE(5207); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5211: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5216); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == '{') ADVANCE(4084); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5212: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(4003); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5217); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5213: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3994); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + lookahead == 'f') ADVANCE(4004); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5214: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5221); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(3995); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5215: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'I' || lookahead == 'i') ADVANCE(5222); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5216: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(4006); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5223); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5217: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5213); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + lookahead == 'n') ADVANCE(4007); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5218: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || lookahead == 'n') ADVANCE(5214); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5219: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5212); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + lookahead == 'n') ADVANCE(5215); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5220: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5215); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + lookahead == 'n') ADVANCE(5213); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5221: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5223); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5216); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5222: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'T' || lookahead == 't') ADVANCE(5224); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5223: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3988); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5225); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5224: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(3998); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + lookahead == 'y') ADVANCE(3989); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5225: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5175); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(3999); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5226: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5180); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5176); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5227: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5225); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5181); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5228: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5230); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5226); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5229: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5226); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5231); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5230: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4052); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5227); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5231: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5231); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(4053); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5232: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5265); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token1); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5232); END_STATE(); case 5233: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3833); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(5266); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5234: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3616); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(3834); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5235: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5234); - if (lookahead == '_') ADVANCE(5250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(3617); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5236: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5234); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(5235); + if (lookahead == '_') ADVANCE(5251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5237: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5248); - if (lookahead == '_') ADVANCE(5237); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3973); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(5235); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5238: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(3832); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(5249); + if (lookahead == '_') ADVANCE(5238); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5239: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '.') ADVANCE(5249); - if (lookahead == '_') ADVANCE(5239); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(3833); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5240: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5266); - if (lookahead == '_') ADVANCE(5254); - if (lookahead == 'i') ADVANCE(5266); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5254); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '.') ADVANCE(5250); + if (lookahead == '_') ADVANCE(5240); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5241: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5266); - if (lookahead == '_') ADVANCE(5254); - if (lookahead == 'i') ADVANCE(5257); + if (lookahead == 'I') ADVANCE(5267); + if (lookahead == '_') ADVANCE(5255); + if (lookahead == 'i') ADVANCE(5267); if (lookahead == '+' || - lookahead == '-') ADVANCE(5254); + lookahead == '-') ADVANCE(5255); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5242: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5266); - if (lookahead == 'i') ADVANCE(5266); + if (lookahead == 'I') ADVANCE(5267); + if (lookahead == '_') ADVANCE(5255); + if (lookahead == 'i') ADVANCE(5258); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5255); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == 'b') ADVANCE(4016); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5243: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5266); - if (lookahead == 'i') ADVANCE(5257); + if (lookahead == 'I') ADVANCE(5267); + if (lookahead == 'i') ADVANCE(5267); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5244: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'I') ADVANCE(5266); - if (lookahead == 'i') ADVANCE(5261); - if (lookahead == 's') ADVANCE(4022); + if (lookahead == 'I') ADVANCE(5267); + if (lookahead == 'i') ADVANCE(5258); if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5245: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5245); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3974); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'I') ADVANCE(5267); + if (lookahead == 'i') ADVANCE(5262); + if (lookahead == 's') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5246: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5247); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5247); + if (lookahead == '_') ADVANCE(5246); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5247: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5247); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3975); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '_') ADVANCE(5248); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5248); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5248: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5248); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3984); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3976); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5249: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5249); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5250: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5250); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3904); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3985); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5251: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5252); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '_') ADVANCE(5251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3905); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5252: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5252); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '_') ADVANCE(5253); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5253: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5254); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '_') ADVANCE(5253); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5254: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '_') ADVANCE(5254); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3893); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '_') ADVANCE(5255); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5255); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5255: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); if (lookahead == '_') ADVANCE(5255); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3894); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5256: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'a') ADVANCE(5264); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '_') ADVANCE(5256); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5257: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'a') ADVANCE(5265); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5258: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'c') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5259: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'e') ADVANCE(5258); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'c') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5260: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'k') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'e') ADVANCE(5259); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5261: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'n') ADVANCE(4022); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'k') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5262: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'r') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'n') ADVANCE(4023); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5263: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 's') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'r') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5264: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'y') ADVANCE(4022); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 's') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5265: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == '{') ADVANCE(4083); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'y') ADVANCE(4023); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5266: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(4015); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == '{') ADVANCE(4084); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5267: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(3999); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(4016); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5268: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5267); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(4000); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5269: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5269); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5268); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5270: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '#') ADVANCE(5462); - if (lookahead == '$') ADVANCE(3596); - if (lookahead == '(') ADVANCE(3793); - if (lookahead == '.') ADVANCE(5272); - if (lookahead == '_') ADVANCE(5273); - if (lookahead == '\t' || - lookahead == ' ') SKIP(279); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5277); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token2); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5270); END_STATE(); case 5271: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '.') ADVANCE(5274); - if (lookahead == '_') ADVANCE(5271); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3895); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (lookahead == '#') ADVANCE(5463); + if (lookahead == '$') ADVANCE(3597); + if (lookahead == '(') ADVANCE(3794); + if (lookahead == '.') ADVANCE(5273); + if (lookahead == '_') ADVANCE(5274); + if (lookahead == '\t' || + lookahead == ' ') SKIP(280); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5272); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5278); END_STATE(); case 5272: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if (lookahead == '.') ADVANCE(5275); if (lookahead == '_') ADVANCE(5272); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3896); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5273: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if (lookahead == '_') ADVANCE(5273); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3879); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3907); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5274: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); if (lookahead == '_') ADVANCE(5274); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3908); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3880); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5275: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5276); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (lookahead == '_') ADVANCE(5275); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3909); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5276: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if (lookahead == '_') ADVANCE(5276); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3897); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (lookahead == '_') ADVANCE(5277); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5277: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5277); + if (lookahead == '_') ADVANCE(5277); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(3898); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5278: - ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '$') ADVANCE(3934); - if (lookahead == '(') ADVANCE(3829); - if (lookahead == '{') ADVANCE(4083); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5453); + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token3); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5278); END_STATE(); case 5279: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2996); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5279); + if (lookahead == '$') ADVANCE(3935); + if (lookahead == '(') ADVANCE(3830); + if (lookahead == '{') ADVANCE(4084); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__unquoted_in_record_token1_character_set_1, 12, lookahead))) ADVANCE(5454); END_STATE(); case 5280: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2969); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2997); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5280); END_STATE(); case 5281: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2972); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2970); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5281); END_STATE(); case 5282: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5284); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + if (lookahead == ',') ADVANCE(2973); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5282); END_STATE(); case 5283: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); + if (lookahead == ',') ADVANCE(3025); if (lookahead == 'I' || lookahead == 'i') ADVANCE(5285); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 5284: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5283); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5286); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 5285: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5286); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5284); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 5286: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5287); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5287); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 5287: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3024); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5287); + if (lookahead == ',') ADVANCE(3025); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5288); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 5288: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5290); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); + if (lookahead == ',') ADVANCE(3025); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5288); END_STATE(); case 5289: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3064); + if (lookahead == ',') ADVANCE(3065); if (lookahead == 'I' || lookahead == 'i') ADVANCE(5291); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5294); END_STATE(); case 5290: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5289); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5292); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5294); END_STATE(); case 5291: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5292); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5290); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5294); END_STATE(); case 5292: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3064); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5293); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5293); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5294); END_STATE(); case 5293: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3064); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5293); + if (lookahead == ',') ADVANCE(3065); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5294); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5294); END_STATE(); case 5294: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3077); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3065); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5294); END_STATE(); case 5295: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2886); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3078); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5295); END_STATE(); case 5296: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2957); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2887); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5296); END_STATE(); case 5297: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == 'e') ADVANCE(5298); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); + if (lookahead == ',') ADVANCE(2958); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5297); END_STATE(); case 5298: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == 'n') ADVANCE(5299); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == 'e') ADVANCE(5299); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 5299: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2912); - if (lookahead == 'v') ADVANCE(1793); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == 'n') ADVANCE(5300); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 5300: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2912); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5300); + if (lookahead == ',') ADVANCE(2913); + if (lookahead == 'v') ADVANCE(1794); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 5301: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2915); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2913); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5301); END_STATE(); case 5302: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2978); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2916); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5302); END_STATE(); case 5303: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2892); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2979); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5303); END_STATE(); case 5304: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(5306); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); + if (lookahead == ',') ADVANCE(2893); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5304); END_STATE(); case 5305: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3074); + if (lookahead == ',') ADVANCE(3075); if (lookahead == 'I' || lookahead == 'i') ADVANCE(5307); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 5306: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5305); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(5308); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 5307: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(5308); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5306); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 5308: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3074); - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(5309); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(5309); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 5309: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3074); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5309); + if (lookahead == ',') ADVANCE(3075); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(5310); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 5310: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2975); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3075); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5310); END_STATE(); case 5311: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == 'e') ADVANCE(5312); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5314); + if (lookahead == ',') ADVANCE(2976); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5311); END_STATE(); case 5312: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == 'n') ADVANCE(5313); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5314); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'e') ADVANCE(5313); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); case 5313: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2930); - if (lookahead == 'v') ADVANCE(3744); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5314); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'n') ADVANCE(5314); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); case 5314: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2930); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5314); + if (lookahead == ',') ADVANCE(2931); + if (lookahead == 'v') ADVANCE(3745); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); case 5315: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2960); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2931); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5315); END_STATE(); case 5316: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3027); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2961); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5316); END_STATE(); case 5317: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3049); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3028); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5317); END_STATE(); case 5318: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3043); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3050); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5318); END_STATE(); case 5319: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2889); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3044); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5319); END_STATE(); case 5320: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2987); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2890); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5320); END_STATE(); case 5321: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2981); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2988); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5321); END_STATE(); case 5322: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2918); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2982); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5322); END_STATE(); case 5323: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2966); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2919); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5323); END_STATE(); case 5324: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3046); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2967); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5324); END_STATE(); case 5325: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2984); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3047); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5325); END_STATE(); case 5326: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2963); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2985); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5326); END_STATE(); case 5327: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == 'e') ADVANCE(5328); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5330); + if (lookahead == ',') ADVANCE(2964); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5327); END_STATE(); case 5328: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == 'n') ADVANCE(5329); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5330); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == 'e') ADVANCE(5329); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 5329: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3039); - if (lookahead == 'v') ADVANCE(3570); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5330); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == 'n') ADVANCE(5330); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 5330: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(3039); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5330); + if (lookahead == ',') ADVANCE(3040); + if (lookahead == 'v') ADVANCE(3571); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 5331: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2897); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(3040); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5331); END_STATE(); case 5332: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2900); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2898); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5332); END_STATE(); case 5333: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2993); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2901); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5333); END_STATE(); case 5334: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == 'e') ADVANCE(5335); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); + if (lookahead == ',') ADVANCE(2994); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5334); END_STATE(); case 5335: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == 'n') ADVANCE(5336); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'e') ADVANCE(5336); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 5336: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2942); - if (lookahead == 'v') ADVANCE(3732); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'n') ADVANCE(5337); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 5337: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2942); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5337); + if (lookahead == ',') ADVANCE(2943); + if (lookahead == 'v') ADVANCE(3733); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 5338: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2945); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2943); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5338); END_STATE(); case 5339: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2990); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2946); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5339); END_STATE(); case 5340: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2948); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2991); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5340); END_STATE(); case 5341: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == ',') ADVANCE(2894); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == ',') ADVANCE(2949); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5341); END_STATE(); case 5342: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5351); - if (lookahead == '_') ADVANCE(5342); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5351); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == ',') ADVANCE(2895); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5342); END_STATE(); case 5343: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '.') ADVANCE(5352); if (lookahead == '_') ADVANCE(5343); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5344: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5345); - if (lookahead == '_') ADVANCE(5354); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (lookahead == '.') ADVANCE(5353); + if (lookahead == '_') ADVANCE(5344); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5353); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5345: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5278); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == '.') ADVANCE(5346); + if (lookahead == '_') ADVANCE(5355); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5346: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(3617); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == '.') ADVANCE(5279); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5347: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '.') ADVANCE(5346); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == '.') ADVANCE(3618); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5348: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N') ADVANCE(5445); - if (lookahead == 'f') ADVANCE(3686); - if (lookahead == 'n') ADVANCE(3662); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == '.') ADVANCE(5347); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5349: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5351); - if (lookahead == 'b') ADVANCE(5450); - if (lookahead == 'o') ADVANCE(5451); - if (lookahead == 'x') ADVANCE(5452); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5351); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'N') ADVANCE(5446); + if (lookahead == 'f') ADVANCE(3687); + if (lookahead == 'n') ADVANCE(3663); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5350: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5351); - if (lookahead == '+' || - lookahead == '-') ADVANCE(5351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5351); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == '_') ADVANCE(5352); + if (lookahead == 'b') ADVANCE(5451); + if (lookahead == 'o') ADVANCE(5452); + if (lookahead == 'x') ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5352); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5351: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '_') ADVANCE(5351); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5351); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == '_') ADVANCE(5352); + if (lookahead == '+' || + lookahead == '-') ADVANCE(5352); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5352); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5352: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '_') ADVANCE(5352); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5352); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5353: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '_') ADVANCE(5353); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(5350); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5353); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5354: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '_') ADVANCE(5354); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5353); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(5351); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5355: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5430); - if (lookahead == 'o') ADVANCE(5403); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == '_') ADVANCE(5355); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(5354); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5356: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5402); - if (lookahead == 'o') ADVANCE(5414); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'a') ADVANCE(5431); + if (lookahead == 'o') ADVANCE(5404); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5357: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5394); - if (lookahead == 'o') ADVANCE(5364); - if (lookahead == 'u') ADVANCE(5432); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'a') ADVANCE(5403); + if (lookahead == 'o') ADVANCE(5415); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5358: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5393); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'a') ADVANCE(5395); + if (lookahead == 'o') ADVANCE(5365); + if (lookahead == 'u') ADVANCE(5433); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5359: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5443); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'a') ADVANCE(5394); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5360: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'a') ADVANCE(5424); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'a') ADVANCE(5444); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5361: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5385); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'a') ADVANCE(5425); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5362: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'c') ADVANCE(5386); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5363: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'c') ADVANCE(5374); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'c') ADVANCE(5387); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5364: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5441); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'c') ADVANCE(5375); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5365: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'd') ADVANCE(5370); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'd') ADVANCE(5442); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5366: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5383); - if (lookahead == 'o') ADVANCE(3681); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'd') ADVANCE(5371); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5367: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'e') ADVANCE(5384); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'o') ADVANCE(3682); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5368: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3584); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5385); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5369: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3692); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3585); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5370: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3740); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3693); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5371: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3672); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3741); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5372: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3676); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3673); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5373: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3579); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3677); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5374: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3729); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3580); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5375: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(3652); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3730); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5376: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5431); - if (lookahead == 'o') ADVANCE(5408); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(3653); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5377: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5358); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5432); + if (lookahead == 'o') ADVANCE(5409); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5378: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5423); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5359); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5379: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5420); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5424); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5380: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5416); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5421); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5381: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5318); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5417); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5382: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'e') ADVANCE(5324); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5319); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5383: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'f') ADVANCE(3566); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'e') ADVANCE(5325); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5384: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'g') ADVANCE(5391); - if (lookahead == 't') ADVANCE(5439); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'f') ADVANCE(3567); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5385: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3720); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'g') ADVANCE(5392); + if (lookahead == 't') ADVANCE(5440); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5386: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(3697); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'h') ADVANCE(3721); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5387: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'h') ADVANCE(5392); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'h') ADVANCE(3698); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5388: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5365); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'h') ADVANCE(5393); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5389: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5360); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'i') ADVANCE(5366); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5390: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5406); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'i') ADVANCE(5361); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5391: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5428); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'i') ADVANCE(5407); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5392: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'i') ADVANCE(5398); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'i') ADVANCE(5429); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5393: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(3648); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'i') ADVANCE(5399); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5394: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'k') ADVANCE(5371); - if (lookahead == 't') ADVANCE(5362); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'k') ADVANCE(3649); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5395: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5389); - if (lookahead == 's') ADVANCE(3752); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'k') ADVANCE(5372); + if (lookahead == 't') ADVANCE(5363); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5396: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5400); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5390); + if (lookahead == 's') ADVANCE(3753); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5397: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5359); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5401); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5398: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5372); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5360); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5399: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'l') ADVANCE(5373); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5400: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5317); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5374); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5401: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5427); - if (lookahead == 'r') ADVANCE(5419); - if (lookahead == 'x') ADVANCE(5412); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5318); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5402: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'l') ADVANCE(5429); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5428); + if (lookahead == 'r') ADVANCE(5420); + if (lookahead == 'x') ADVANCE(5413); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5403: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5426); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'l') ADVANCE(5430); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5404: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3574); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'n') ADVANCE(5427); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5405: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(3724); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'n') ADVANCE(3575); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5406: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'n') ADVANCE(5440); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'n') ADVANCE(3725); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5407: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5437); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'n') ADVANCE(5441); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5408: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5411); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'o') ADVANCE(5438); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5409: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5415); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'o') ADVANCE(5412); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5410: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'o') ADVANCE(5422); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'o') ADVANCE(5416); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5411: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(3667); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'o') ADVANCE(5423); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5412: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'p') ADVANCE(5410); - if (lookahead == 't') ADVANCE(5379); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'p') ADVANCE(3668); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5413: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5438); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'p') ADVANCE(5411); + if (lookahead == 't') ADVANCE(5380); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5414: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3656); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5439); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5415: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3603); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(3657); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5416: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(3735); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(3604); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5417: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5377); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(3736); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5418: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5363); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5378); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5419: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5409); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5364); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5420: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5404); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5410); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5421: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'r') ADVANCE(5405); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5422: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5434); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5406); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5423: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'r') ADVANCE(5397); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5435); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5424: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(1782); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'r') ADVANCE(5398); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5425: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5368); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 's') ADVANCE(1783); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5426: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5433); - if (lookahead == 't') ADVANCE(5390); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 's') ADVANCE(5369); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5427: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5369); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 's') ADVANCE(5434); + if (lookahead == 't') ADVANCE(5391); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5428: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5435); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 's') ADVANCE(5370); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5429: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 's') ADVANCE(5382); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 's') ADVANCE(5436); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5430: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5361); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 's') ADVANCE(5383); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5431: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1790); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 't') ADVANCE(5362); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5432: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1796); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 't') ADVANCE(1791); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5433: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1801); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 't') ADVANCE(1797); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5434: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(1778); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 't') ADVANCE(1802); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5435: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 't') ADVANCE(5380); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 't') ADVANCE(1779); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5436: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5396); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5449); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 't') ADVANCE(5381); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5437: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5418); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'u') ADVANCE(5397); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5450); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5438: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5381); - if (lookahead == 'y') ADVANCE(3715); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'u') ADVANCE(5419); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5439: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5421); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'u') ADVANCE(5382); + if (lookahead == 'y') ADVANCE(3716); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5440: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5375); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'u') ADVANCE(5422); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5441: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'u') ADVANCE(5399); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'u') ADVANCE(5376); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5442: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'v') ADVANCE(5378); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'u') ADVANCE(5400); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5443: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'y') ADVANCE(3747); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'v') ADVANCE(5379); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5444: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(5449); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'y') ADVANCE(3748); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5445: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5288); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(5450); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5446: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(5304); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + lookahead == 'f') ADVANCE(5289); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5447: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5445); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(5305); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5448: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || lookahead == 'n') ADVANCE(5446); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5449: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == 'N' || - lookahead == 'n') ADVANCE(5294); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + lookahead == 'n') ADVANCE(5447); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5450: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (lookahead == '0' || - lookahead == '1' || - lookahead == '_') ADVANCE(5450); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(5295); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5451: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if (('0' <= lookahead && lookahead <= '7') || + if (lookahead == '0' || + lookahead == '1' || lookahead == '_') ADVANCE(5451); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); case 5452: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if (('0' <= lookahead && lookahead <= '7') || + lookahead == '_') ADVANCE(5452); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); + END_STATE(); + case 5453: + ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5452); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(5453); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); - case 5453: + case 5454: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5453); + if (('<' <= lookahead && lookahead <= '>')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5454); END_STATE(); - case 5454: + case 5455: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); if (lookahead == '-' || lookahead == '.' || - ('<' <= lookahead && lookahead <= '@')) ADVANCE(5455); - if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5454); + ('<' <= lookahead && lookahead <= '@')) ADVANCE(5456); + if ((!eof && set_contains(aux_sym_env_var_token1_character_set_1, 12, lookahead))) ADVANCE(5455); END_STATE(); - case 5455: + case 5456: ACCEPT_TOKEN(aux_sym__unquoted_in_record_token4); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); - case 5456: + case 5457: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); - if (lookahead == '#') ADVANCE(5471); + if (lookahead == '#') ADVANCE(5472); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5457); + lookahead != '|') ADVANCE(5458); END_STATE(); - case 5457: + case 5458: ACCEPT_TOKEN(aux_sym__unquoted_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -59833,20 +59870,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5457); - END_STATE(); - case 5458: - ACCEPT_TOKEN(aux_sym__unquoted_in_list_with_expr_token1); - if (lookahead == '#') ADVANCE(5470); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5459); + lookahead != '|') ADVANCE(5458); END_STATE(); case 5459: 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(5459); + if (lookahead == '#') ADVANCE(5471); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5460); END_STATE(); case 5460: + 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(5460); + END_STATE(); + case 5461: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); - if (lookahead == '#') ADVANCE(5469); + if (lookahead == '#') ADVANCE(5470); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -59855,9 +59892,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5461); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5462); END_STATE(); - case 5461: + case 5462: ACCEPT_TOKEN(aux_sym__unquoted_in_record_with_expr_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -59867,38 +59904,38 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5461); - END_STATE(); - case 5462: - ACCEPT_TOKEN(anon_sym_POUND); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5462); END_STATE(); case 5463: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '\n') ADVANCE(1774); - if (lookahead == '\r') ADVANCE(1776); - if (lookahead != 0) ADVANCE(1776); END_STATE(); case 5464: ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead == '!') ADVANCE(1773); + if (lookahead == '\n') ADVANCE(1775); + if (lookahead == '\r') ADVANCE(1777); + if (lookahead != 0) ADVANCE(1777); END_STATE(); case 5465: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5455); + if (lookahead == '!') ADVANCE(1774); END_STATE(); case 5466: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4091); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(5456); END_STATE(); case 5467: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5170); + if ((!eof && set_contains(aux_sym__record_key_token1_character_set_1, 11, lookahead))) ADVANCE(4092); END_STATE(); case 5468: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4899); + if ((!eof && set_contains(aux_sym__unquoted_in_list_token1_character_set_2, 11, lookahead))) ADVANCE(5171); END_STATE(); case 5469: + ACCEPT_TOKEN(anon_sym_POUND); + if ((!eof && set_contains(aux_sym_unquoted_token1_character_set_2, 10, lookahead))) ADVANCE(4900); + END_STATE(); + case 5470: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -59908,13 +59945,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ',' && lookahead != ':' && lookahead != ';' && - (lookahead < '{' || '}' < lookahead)) ADVANCE(5461); + (lookahead < '{' || '}' < lookahead)) ADVANCE(5462); END_STATE(); - case 5470: + case 5471: ACCEPT_TOKEN(anon_sym_POUND); - if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5459); + if ((!eof && set_contains(aux_sym__unquoted_in_list_with_expr_token1_character_set_1, 9, lookahead))) ADVANCE(5460); END_STATE(); - case 5471: + case 5472: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -59922,26 +59959,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '(' && lookahead != ')' && lookahead != ';' && - lookahead != '|') ADVANCE(5457); + lookahead != '|') ADVANCE(5458); END_STATE(); - case 5472: + case 5473: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5474); + lookahead != '\n') ADVANCE(5475); END_STATE(); - case 5473: + case 5474: ACCEPT_TOKEN(aux_sym_comment_token1); - if (lookahead == '#') ADVANCE(5472); + if (lookahead == '#') ADVANCE(5473); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(5473); + lookahead == ' ') ADVANCE(5474); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n') ADVANCE(5474); + lookahead != '\n') ADVANCE(5475); END_STATE(); - case 5474: + case 5475: ACCEPT_TOKEN(aux_sym_comment_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(5474); + lookahead != '\n') ADVANCE(5475); END_STATE(); default: return false; @@ -60470,3136 +60507,3136 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 1674, .external_lex_state = 2}, - [2] = {.lex_state = 1696, .external_lex_state = 2}, - [3] = {.lex_state = 1696, .external_lex_state = 2}, - [4] = {.lex_state = 1696, .external_lex_state = 2}, - [5] = {.lex_state = 1696, .external_lex_state = 2}, - [6] = {.lex_state = 1696, .external_lex_state = 2}, - [7] = {.lex_state = 1696, .external_lex_state = 2}, - [8] = {.lex_state = 1696, .external_lex_state = 2}, - [9] = {.lex_state = 1696, .external_lex_state = 2}, - [10] = {.lex_state = 1696, .external_lex_state = 2}, - [11] = {.lex_state = 1696, .external_lex_state = 2}, - [12] = {.lex_state = 1696, .external_lex_state = 2}, - [13] = {.lex_state = 1696, .external_lex_state = 2}, - [14] = {.lex_state = 1696, .external_lex_state = 2}, - [15] = {.lex_state = 1696, .external_lex_state = 2}, - [16] = {.lex_state = 1696, .external_lex_state = 2}, - [17] = {.lex_state = 1696, .external_lex_state = 2}, - [18] = {.lex_state = 1696, .external_lex_state = 2}, - [19] = {.lex_state = 1696, .external_lex_state = 2}, - [20] = {.lex_state = 1696, .external_lex_state = 2}, - [21] = {.lex_state = 1696, .external_lex_state = 2}, - [22] = {.lex_state = 1696, .external_lex_state = 2}, - [23] = {.lex_state = 1696, .external_lex_state = 2}, - [24] = {.lex_state = 1696, .external_lex_state = 2}, - [25] = {.lex_state = 1696, .external_lex_state = 2}, - [26] = {.lex_state = 1696, .external_lex_state = 2}, - [27] = {.lex_state = 1696, .external_lex_state = 2}, - [28] = {.lex_state = 1696, .external_lex_state = 2}, - [29] = {.lex_state = 1696, .external_lex_state = 2}, - [30] = {.lex_state = 1696, .external_lex_state = 2}, - [31] = {.lex_state = 1696, .external_lex_state = 2}, - [32] = {.lex_state = 1696, .external_lex_state = 2}, - [33] = {.lex_state = 1696, .external_lex_state = 2}, - [34] = {.lex_state = 1692, .external_lex_state = 2}, - [35] = {.lex_state = 1692, .external_lex_state = 2}, - [36] = {.lex_state = 1692, .external_lex_state = 2}, - [37] = {.lex_state = 1692, .external_lex_state = 2}, - [38] = {.lex_state = 1692, .external_lex_state = 2}, - [39] = {.lex_state = 1692, .external_lex_state = 2}, - [40] = {.lex_state = 1692, .external_lex_state = 2}, - [41] = {.lex_state = 1692, .external_lex_state = 2}, - [42] = {.lex_state = 1692, .external_lex_state = 2}, - [43] = {.lex_state = 1692, .external_lex_state = 2}, - [44] = {.lex_state = 1692, .external_lex_state = 2}, - [45] = {.lex_state = 1692, .external_lex_state = 2}, - [46] = {.lex_state = 1692, .external_lex_state = 2}, - [47] = {.lex_state = 1692, .external_lex_state = 2}, - [48] = {.lex_state = 1692, .external_lex_state = 2}, - [49] = {.lex_state = 1692, .external_lex_state = 2}, - [50] = {.lex_state = 1692, .external_lex_state = 2}, - [51] = {.lex_state = 1692, .external_lex_state = 2}, - [52] = {.lex_state = 1692, .external_lex_state = 2}, - [53] = {.lex_state = 1692, .external_lex_state = 2}, - [54] = {.lex_state = 1692, .external_lex_state = 2}, - [55] = {.lex_state = 1692, .external_lex_state = 2}, - [56] = {.lex_state = 1692, .external_lex_state = 2}, - [57] = {.lex_state = 36, .external_lex_state = 2}, - [58] = {.lex_state = 1692, .external_lex_state = 2}, - [59] = {.lex_state = 36, .external_lex_state = 2}, - [60] = {.lex_state = 36, .external_lex_state = 2}, - [61] = {.lex_state = 36, .external_lex_state = 2}, - [62] = {.lex_state = 36, .external_lex_state = 2}, - [63] = {.lex_state = 36, .external_lex_state = 2}, - [64] = {.lex_state = 36, .external_lex_state = 2}, - [65] = {.lex_state = 36, .external_lex_state = 2}, - [66] = {.lex_state = 36, .external_lex_state = 2}, - [67] = {.lex_state = 1692, .external_lex_state = 2}, - [68] = {.lex_state = 36, .external_lex_state = 2}, - [69] = {.lex_state = 36, .external_lex_state = 2}, - [70] = {.lex_state = 36, .external_lex_state = 2}, - [71] = {.lex_state = 36, .external_lex_state = 2}, - [72] = {.lex_state = 36, .external_lex_state = 2}, - [73] = {.lex_state = 36, .external_lex_state = 2}, - [74] = {.lex_state = 36, .external_lex_state = 2}, - [75] = {.lex_state = 36, .external_lex_state = 2}, - [76] = {.lex_state = 36, .external_lex_state = 2}, - [77] = {.lex_state = 36, .external_lex_state = 2}, - [78] = {.lex_state = 36, .external_lex_state = 2}, - [79] = {.lex_state = 1692, .external_lex_state = 2}, - [80] = {.lex_state = 36, .external_lex_state = 2}, - [81] = {.lex_state = 36, .external_lex_state = 2}, - [82] = {.lex_state = 36, .external_lex_state = 2}, - [83] = {.lex_state = 36, .external_lex_state = 2}, - [84] = {.lex_state = 36, .external_lex_state = 2}, - [85] = {.lex_state = 36, .external_lex_state = 2}, - [86] = {.lex_state = 36, .external_lex_state = 2}, - [87] = {.lex_state = 36, .external_lex_state = 2}, - [88] = {.lex_state = 36, .external_lex_state = 2}, - [89] = {.lex_state = 36, .external_lex_state = 2}, - [90] = {.lex_state = 36, .external_lex_state = 2}, - [91] = {.lex_state = 36, .external_lex_state = 2}, - [92] = {.lex_state = 36, .external_lex_state = 2}, - [93] = {.lex_state = 1692, .external_lex_state = 2}, - [94] = {.lex_state = 1692, .external_lex_state = 2}, - [95] = {.lex_state = 36, .external_lex_state = 2}, - [96] = {.lex_state = 1692, .external_lex_state = 2}, - [97] = {.lex_state = 1692, .external_lex_state = 2}, - [98] = {.lex_state = 1692, .external_lex_state = 2}, - [99] = {.lex_state = 1692, .external_lex_state = 2}, - [100] = {.lex_state = 1692, .external_lex_state = 2}, - [101] = {.lex_state = 1692, .external_lex_state = 2}, - [102] = {.lex_state = 1692, .external_lex_state = 2}, - [103] = {.lex_state = 1692, .external_lex_state = 2}, - [104] = {.lex_state = 1692, .external_lex_state = 2}, - [105] = {.lex_state = 1692, .external_lex_state = 2}, - [106] = {.lex_state = 1692, .external_lex_state = 2}, - [107] = {.lex_state = 1692, .external_lex_state = 2}, - [108] = {.lex_state = 1692, .external_lex_state = 2}, - [109] = {.lex_state = 36, .external_lex_state = 2}, - [110] = {.lex_state = 1692, .external_lex_state = 2}, - [111] = {.lex_state = 1692, .external_lex_state = 2}, - [112] = {.lex_state = 1692, .external_lex_state = 2}, - [113] = {.lex_state = 1692, .external_lex_state = 2}, - [114] = {.lex_state = 1692, .external_lex_state = 2}, - [115] = {.lex_state = 1692, .external_lex_state = 2}, - [116] = {.lex_state = 1692, .external_lex_state = 2}, - [117] = {.lex_state = 1692, .external_lex_state = 2}, - [118] = {.lex_state = 1692, .external_lex_state = 2}, - [119] = {.lex_state = 1692, .external_lex_state = 2}, - [120] = {.lex_state = 1692, .external_lex_state = 2}, - [121] = {.lex_state = 1692, .external_lex_state = 2}, - [122] = {.lex_state = 1692, .external_lex_state = 2}, - [123] = {.lex_state = 1692, .external_lex_state = 2}, - [124] = {.lex_state = 1692, .external_lex_state = 2}, - [125] = {.lex_state = 1692, .external_lex_state = 2}, - [126] = {.lex_state = 1692, .external_lex_state = 2}, - [127] = {.lex_state = 1692, .external_lex_state = 2}, - [128] = {.lex_state = 1692, .external_lex_state = 2}, - [129] = {.lex_state = 1692, .external_lex_state = 2}, - [130] = {.lex_state = 1692, .external_lex_state = 2}, - [131] = {.lex_state = 1692, .external_lex_state = 2}, - [132] = {.lex_state = 1692, .external_lex_state = 2}, - [133] = {.lex_state = 1692, .external_lex_state = 2}, - [134] = {.lex_state = 1692, .external_lex_state = 2}, - [135] = {.lex_state = 1692, .external_lex_state = 2}, - [136] = {.lex_state = 1692, .external_lex_state = 2}, - [137] = {.lex_state = 1627, .external_lex_state = 2}, - [138] = {.lex_state = 1627, .external_lex_state = 2}, - [139] = {.lex_state = 1627, .external_lex_state = 2}, + [1] = {.lex_state = 1675, .external_lex_state = 2}, + [2] = {.lex_state = 1697, .external_lex_state = 2}, + [3] = {.lex_state = 1697, .external_lex_state = 2}, + [4] = {.lex_state = 1697, .external_lex_state = 2}, + [5] = {.lex_state = 1697, .external_lex_state = 2}, + [6] = {.lex_state = 1697, .external_lex_state = 2}, + [7] = {.lex_state = 1697, .external_lex_state = 2}, + [8] = {.lex_state = 1697, .external_lex_state = 2}, + [9] = {.lex_state = 1697, .external_lex_state = 2}, + [10] = {.lex_state = 1697, .external_lex_state = 2}, + [11] = {.lex_state = 1697, .external_lex_state = 2}, + [12] = {.lex_state = 1697, .external_lex_state = 2}, + [13] = {.lex_state = 1697, .external_lex_state = 2}, + [14] = {.lex_state = 1697, .external_lex_state = 2}, + [15] = {.lex_state = 1697, .external_lex_state = 2}, + [16] = {.lex_state = 1697, .external_lex_state = 2}, + [17] = {.lex_state = 1697, .external_lex_state = 2}, + [18] = {.lex_state = 1697, .external_lex_state = 2}, + [19] = {.lex_state = 1697, .external_lex_state = 2}, + [20] = {.lex_state = 1697, .external_lex_state = 2}, + [21] = {.lex_state = 1697, .external_lex_state = 2}, + [22] = {.lex_state = 1697, .external_lex_state = 2}, + [23] = {.lex_state = 1697, .external_lex_state = 2}, + [24] = {.lex_state = 1697, .external_lex_state = 2}, + [25] = {.lex_state = 1697, .external_lex_state = 2}, + [26] = {.lex_state = 1697, .external_lex_state = 2}, + [27] = {.lex_state = 1697, .external_lex_state = 2}, + [28] = {.lex_state = 1697, .external_lex_state = 2}, + [29] = {.lex_state = 1697, .external_lex_state = 2}, + [30] = {.lex_state = 1697, .external_lex_state = 2}, + [31] = {.lex_state = 1697, .external_lex_state = 2}, + [32] = {.lex_state = 1697, .external_lex_state = 2}, + [33] = {.lex_state = 1697, .external_lex_state = 2}, + [34] = {.lex_state = 1693, .external_lex_state = 2}, + [35] = {.lex_state = 1693, .external_lex_state = 2}, + [36] = {.lex_state = 1693, .external_lex_state = 2}, + [37] = {.lex_state = 1693, .external_lex_state = 2}, + [38] = {.lex_state = 1693, .external_lex_state = 2}, + [39] = {.lex_state = 1693, .external_lex_state = 2}, + [40] = {.lex_state = 1693, .external_lex_state = 2}, + [41] = {.lex_state = 1693, .external_lex_state = 2}, + [42] = {.lex_state = 1693, .external_lex_state = 2}, + [43] = {.lex_state = 1693, .external_lex_state = 2}, + [44] = {.lex_state = 1693, .external_lex_state = 2}, + [45] = {.lex_state = 1693, .external_lex_state = 2}, + [46] = {.lex_state = 1693, .external_lex_state = 2}, + [47] = {.lex_state = 1693, .external_lex_state = 2}, + [48] = {.lex_state = 1693, .external_lex_state = 2}, + [49] = {.lex_state = 1693, .external_lex_state = 2}, + [50] = {.lex_state = 1693, .external_lex_state = 2}, + [51] = {.lex_state = 1693, .external_lex_state = 2}, + [52] = {.lex_state = 1693, .external_lex_state = 2}, + [53] = {.lex_state = 1693, .external_lex_state = 2}, + [54] = {.lex_state = 1693, .external_lex_state = 2}, + [55] = {.lex_state = 1693, .external_lex_state = 2}, + [56] = {.lex_state = 1693, .external_lex_state = 2}, + [57] = {.lex_state = 35, .external_lex_state = 2}, + [58] = {.lex_state = 35, .external_lex_state = 2}, + [59] = {.lex_state = 35, .external_lex_state = 2}, + [60] = {.lex_state = 35, .external_lex_state = 2}, + [61] = {.lex_state = 35, .external_lex_state = 2}, + [62] = {.lex_state = 35, .external_lex_state = 2}, + [63] = {.lex_state = 35, .external_lex_state = 2}, + [64] = {.lex_state = 35, .external_lex_state = 2}, + [65] = {.lex_state = 35, .external_lex_state = 2}, + [66] = {.lex_state = 35, .external_lex_state = 2}, + [67] = {.lex_state = 35, .external_lex_state = 2}, + [68] = {.lex_state = 35, .external_lex_state = 2}, + [69] = {.lex_state = 35, .external_lex_state = 2}, + [70] = {.lex_state = 35, .external_lex_state = 2}, + [71] = {.lex_state = 35, .external_lex_state = 2}, + [72] = {.lex_state = 35, .external_lex_state = 2}, + [73] = {.lex_state = 35, .external_lex_state = 2}, + [74] = {.lex_state = 35, .external_lex_state = 2}, + [75] = {.lex_state = 35, .external_lex_state = 2}, + [76] = {.lex_state = 35, .external_lex_state = 2}, + [77] = {.lex_state = 35, .external_lex_state = 2}, + [78] = {.lex_state = 35, .external_lex_state = 2}, + [79] = {.lex_state = 35, .external_lex_state = 2}, + [80] = {.lex_state = 1693, .external_lex_state = 2}, + [81] = {.lex_state = 1693, .external_lex_state = 2}, + [82] = {.lex_state = 35, .external_lex_state = 2}, + [83] = {.lex_state = 35, .external_lex_state = 2}, + [84] = {.lex_state = 35, .external_lex_state = 2}, + [85] = {.lex_state = 35, .external_lex_state = 2}, + [86] = {.lex_state = 35, .external_lex_state = 2}, + [87] = {.lex_state = 35, .external_lex_state = 2}, + [88] = {.lex_state = 35, .external_lex_state = 2}, + [89] = {.lex_state = 35, .external_lex_state = 2}, + [90] = {.lex_state = 35, .external_lex_state = 2}, + [91] = {.lex_state = 35, .external_lex_state = 2}, + [92] = {.lex_state = 1693, .external_lex_state = 2}, + [93] = {.lex_state = 1693, .external_lex_state = 2}, + [94] = {.lex_state = 1693, .external_lex_state = 2}, + [95] = {.lex_state = 1693, .external_lex_state = 2}, + [96] = {.lex_state = 1693, .external_lex_state = 2}, + [97] = {.lex_state = 35, .external_lex_state = 2}, + [98] = {.lex_state = 1693, .external_lex_state = 2}, + [99] = {.lex_state = 1693, .external_lex_state = 2}, + [100] = {.lex_state = 1693, .external_lex_state = 2}, + [101] = {.lex_state = 1693, .external_lex_state = 2}, + [102] = {.lex_state = 1693, .external_lex_state = 2}, + [103] = {.lex_state = 1693, .external_lex_state = 2}, + [104] = {.lex_state = 1693, .external_lex_state = 2}, + [105] = {.lex_state = 1693, .external_lex_state = 2}, + [106] = {.lex_state = 1693, .external_lex_state = 2}, + [107] = {.lex_state = 1693, .external_lex_state = 2}, + [108] = {.lex_state = 1693, .external_lex_state = 2}, + [109] = {.lex_state = 35, .external_lex_state = 2}, + [110] = {.lex_state = 1693, .external_lex_state = 2}, + [111] = {.lex_state = 1693, .external_lex_state = 2}, + [112] = {.lex_state = 1693, .external_lex_state = 2}, + [113] = {.lex_state = 1693, .external_lex_state = 2}, + [114] = {.lex_state = 1693, .external_lex_state = 2}, + [115] = {.lex_state = 1693, .external_lex_state = 2}, + [116] = {.lex_state = 1693, .external_lex_state = 2}, + [117] = {.lex_state = 1693, .external_lex_state = 2}, + [118] = {.lex_state = 1693, .external_lex_state = 2}, + [119] = {.lex_state = 1693, .external_lex_state = 2}, + [120] = {.lex_state = 1693, .external_lex_state = 2}, + [121] = {.lex_state = 1693, .external_lex_state = 2}, + [122] = {.lex_state = 1693, .external_lex_state = 2}, + [123] = {.lex_state = 1693, .external_lex_state = 2}, + [124] = {.lex_state = 1693, .external_lex_state = 2}, + [125] = {.lex_state = 1693, .external_lex_state = 2}, + [126] = {.lex_state = 1693, .external_lex_state = 2}, + [127] = {.lex_state = 1693, .external_lex_state = 2}, + [128] = {.lex_state = 1693, .external_lex_state = 2}, + [129] = {.lex_state = 1693, .external_lex_state = 2}, + [130] = {.lex_state = 1693, .external_lex_state = 2}, + [131] = {.lex_state = 1693, .external_lex_state = 2}, + [132] = {.lex_state = 1693, .external_lex_state = 2}, + [133] = {.lex_state = 1693, .external_lex_state = 2}, + [134] = {.lex_state = 1693, .external_lex_state = 2}, + [135] = {.lex_state = 1693, .external_lex_state = 2}, + [136] = {.lex_state = 1693, .external_lex_state = 2}, + [137] = {.lex_state = 1628, .external_lex_state = 2}, + [138] = {.lex_state = 1628, .external_lex_state = 2}, + [139] = {.lex_state = 1628, .external_lex_state = 2}, [140] = {.lex_state = 2, .external_lex_state = 2}, [141] = {.lex_state = 2, .external_lex_state = 2}, [142] = {.lex_state = 2, .external_lex_state = 2}, [143] = {.lex_state = 2, .external_lex_state = 2}, [144] = {.lex_state = 2, .external_lex_state = 2}, [145] = {.lex_state = 2, .external_lex_state = 2}, - [146] = {.lex_state = 1627, .external_lex_state = 2}, - [147] = {.lex_state = 1627, .external_lex_state = 2}, - [148] = {.lex_state = 1627, .external_lex_state = 2}, + [146] = {.lex_state = 1628, .external_lex_state = 2}, + [147] = {.lex_state = 1628, .external_lex_state = 2}, + [148] = {.lex_state = 1628, .external_lex_state = 2}, [149] = {.lex_state = 4, .external_lex_state = 2}, [150] = {.lex_state = 4, .external_lex_state = 2}, - [151] = {.lex_state = 219, .external_lex_state = 2}, - [152] = {.lex_state = 219, .external_lex_state = 2}, - [153] = {.lex_state = 219, .external_lex_state = 2}, - [154] = {.lex_state = 219, .external_lex_state = 2}, - [155] = {.lex_state = 219, .external_lex_state = 2}, - [156] = {.lex_state = 219, .external_lex_state = 2}, - [157] = {.lex_state = 219, .external_lex_state = 2}, - [158] = {.lex_state = 219, .external_lex_state = 2}, - [159] = {.lex_state = 219, .external_lex_state = 2}, - [160] = {.lex_state = 219, .external_lex_state = 2}, - [161] = {.lex_state = 219, .external_lex_state = 2}, - [162] = {.lex_state = 219, .external_lex_state = 2}, - [163] = {.lex_state = 219, .external_lex_state = 2}, - [164] = {.lex_state = 219, .external_lex_state = 2}, - [165] = {.lex_state = 219, .external_lex_state = 2}, - [166] = {.lex_state = 219, .external_lex_state = 2}, - [167] = {.lex_state = 219, .external_lex_state = 2}, - [168] = {.lex_state = 219, .external_lex_state = 2}, - [169] = {.lex_state = 219, .external_lex_state = 2}, - [170] = {.lex_state = 219, .external_lex_state = 2}, - [171] = {.lex_state = 219, .external_lex_state = 2}, - [172] = {.lex_state = 219, .external_lex_state = 2}, - [173] = {.lex_state = 219, .external_lex_state = 2}, - [174] = {.lex_state = 219, .external_lex_state = 2}, - [175] = {.lex_state = 219, .external_lex_state = 2}, - [176] = {.lex_state = 219, .external_lex_state = 2}, - [177] = {.lex_state = 219, .external_lex_state = 2}, - [178] = {.lex_state = 219, .external_lex_state = 2}, - [179] = {.lex_state = 219, .external_lex_state = 2}, - [180] = {.lex_state = 219, .external_lex_state = 2}, - [181] = {.lex_state = 219, .external_lex_state = 2}, - [182] = {.lex_state = 219, .external_lex_state = 2}, - [183] = {.lex_state = 219, .external_lex_state = 2}, - [184] = {.lex_state = 219, .external_lex_state = 2}, - [185] = {.lex_state = 219, .external_lex_state = 2}, - [186] = {.lex_state = 219, .external_lex_state = 2}, - [187] = {.lex_state = 219, .external_lex_state = 2}, - [188] = {.lex_state = 219, .external_lex_state = 2}, - [189] = {.lex_state = 1696, .external_lex_state = 2}, - [190] = {.lex_state = 1696, .external_lex_state = 2}, - [191] = {.lex_state = 1696, .external_lex_state = 2}, - [192] = {.lex_state = 35, .external_lex_state = 2}, - [193] = {.lex_state = 35, .external_lex_state = 2}, - [194] = {.lex_state = 35, .external_lex_state = 2}, - [195] = {.lex_state = 35, .external_lex_state = 2}, - [196] = {.lex_state = 35, .external_lex_state = 2}, - [197] = {.lex_state = 35, .external_lex_state = 2}, - [198] = {.lex_state = 35, .external_lex_state = 2}, - [199] = {.lex_state = 35, .external_lex_state = 2}, - [200] = {.lex_state = 35, .external_lex_state = 2}, - [201] = {.lex_state = 35, .external_lex_state = 2}, - [202] = {.lex_state = 35, .external_lex_state = 2}, - [203] = {.lex_state = 35, .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}, + [151] = {.lex_state = 220, .external_lex_state = 2}, + [152] = {.lex_state = 220, .external_lex_state = 2}, + [153] = {.lex_state = 220, .external_lex_state = 2}, + [154] = {.lex_state = 220, .external_lex_state = 2}, + [155] = {.lex_state = 220, .external_lex_state = 2}, + [156] = {.lex_state = 220, .external_lex_state = 2}, + [157] = {.lex_state = 220, .external_lex_state = 2}, + [158] = {.lex_state = 220, .external_lex_state = 2}, + [159] = {.lex_state = 220, .external_lex_state = 2}, + [160] = {.lex_state = 220, .external_lex_state = 2}, + [161] = {.lex_state = 220, .external_lex_state = 2}, + [162] = {.lex_state = 220, .external_lex_state = 2}, + [163] = {.lex_state = 220, .external_lex_state = 2}, + [164] = {.lex_state = 220, .external_lex_state = 2}, + [165] = {.lex_state = 220, .external_lex_state = 2}, + [166] = {.lex_state = 220, .external_lex_state = 2}, + [167] = {.lex_state = 220, .external_lex_state = 2}, + [168] = {.lex_state = 220, .external_lex_state = 2}, + [169] = {.lex_state = 220, .external_lex_state = 2}, + [170] = {.lex_state = 220, .external_lex_state = 2}, + [171] = {.lex_state = 220, .external_lex_state = 2}, + [172] = {.lex_state = 220, .external_lex_state = 2}, + [173] = {.lex_state = 220, .external_lex_state = 2}, + [174] = {.lex_state = 220, .external_lex_state = 2}, + [175] = {.lex_state = 220, .external_lex_state = 2}, + [176] = {.lex_state = 220, .external_lex_state = 2}, + [177] = {.lex_state = 220, .external_lex_state = 2}, + [178] = {.lex_state = 220, .external_lex_state = 2}, + [179] = {.lex_state = 220, .external_lex_state = 2}, + [180] = {.lex_state = 220, .external_lex_state = 2}, + [181] = {.lex_state = 220, .external_lex_state = 2}, + [182] = {.lex_state = 220, .external_lex_state = 2}, + [183] = {.lex_state = 220, .external_lex_state = 2}, + [184] = {.lex_state = 220, .external_lex_state = 2}, + [185] = {.lex_state = 220, .external_lex_state = 2}, + [186] = {.lex_state = 220, .external_lex_state = 2}, + [187] = {.lex_state = 220, .external_lex_state = 2}, + [188] = {.lex_state = 220, .external_lex_state = 2}, + [189] = {.lex_state = 1697, .external_lex_state = 2}, + [190] = {.lex_state = 1697, .external_lex_state = 2}, + [191] = {.lex_state = 1697, .external_lex_state = 2}, + [192] = {.lex_state = 32, .external_lex_state = 2}, + [193] = {.lex_state = 32, .external_lex_state = 2}, + [194] = {.lex_state = 32, .external_lex_state = 2}, + [195] = {.lex_state = 32, .external_lex_state = 2}, + [196] = {.lex_state = 32, .external_lex_state = 2}, + [197] = {.lex_state = 32, .external_lex_state = 2}, + [198] = {.lex_state = 32, .external_lex_state = 2}, + [199] = {.lex_state = 32, .external_lex_state = 2}, + [200] = {.lex_state = 32, .external_lex_state = 2}, + [201] = {.lex_state = 32, .external_lex_state = 2}, + [202] = {.lex_state = 32, .external_lex_state = 2}, + [203] = {.lex_state = 32, .external_lex_state = 2}, + [204] = {.lex_state = 32, .external_lex_state = 2}, + [205] = {.lex_state = 32, .external_lex_state = 2}, + [206] = {.lex_state = 35, .external_lex_state = 2}, [207] = {.lex_state = 35, .external_lex_state = 2}, - [208] = {.lex_state = 36, .external_lex_state = 2}, + [208] = {.lex_state = 35, .external_lex_state = 2}, [209] = {.lex_state = 35, .external_lex_state = 2}, - [210] = {.lex_state = 40, .external_lex_state = 2}, - [211] = {.lex_state = 40, .external_lex_state = 2}, - [212] = {.lex_state = 40, .external_lex_state = 2}, - [213] = {.lex_state = 40, .external_lex_state = 2}, - [214] = {.lex_state = 40, .external_lex_state = 2}, - [215] = {.lex_state = 40, .external_lex_state = 2}, - [216] = {.lex_state = 40, .external_lex_state = 2}, - [217] = {.lex_state = 40, .external_lex_state = 2}, - [218] = {.lex_state = 40, .external_lex_state = 2}, - [219] = {.lex_state = 40, .external_lex_state = 2}, - [220] = {.lex_state = 40, .external_lex_state = 2}, - [221] = {.lex_state = 40, .external_lex_state = 2}, - [222] = {.lex_state = 40, .external_lex_state = 2}, - [223] = {.lex_state = 40, .external_lex_state = 2}, - [224] = {.lex_state = 40, .external_lex_state = 2}, - [225] = {.lex_state = 40, .external_lex_state = 2}, - [226] = {.lex_state = 40, .external_lex_state = 2}, - [227] = {.lex_state = 40, .external_lex_state = 2}, - [228] = {.lex_state = 40, .external_lex_state = 2}, - [229] = {.lex_state = 40, .external_lex_state = 2}, - [230] = {.lex_state = 40, .external_lex_state = 2}, - [231] = {.lex_state = 40, .external_lex_state = 2}, - [232] = {.lex_state = 40, .external_lex_state = 2}, - [233] = {.lex_state = 40, .external_lex_state = 2}, - [234] = {.lex_state = 40, .external_lex_state = 2}, - [235] = {.lex_state = 40, .external_lex_state = 2}, - [236] = {.lex_state = 40, .external_lex_state = 2}, - [237] = {.lex_state = 40, .external_lex_state = 2}, - [238] = {.lex_state = 40, .external_lex_state = 2}, - [239] = {.lex_state = 40, .external_lex_state = 2}, - [240] = {.lex_state = 1692, .external_lex_state = 2}, - [241] = {.lex_state = 40, .external_lex_state = 2}, - [242] = {.lex_state = 40, .external_lex_state = 2}, - [243] = {.lex_state = 40, .external_lex_state = 2}, - [244] = {.lex_state = 1692, .external_lex_state = 2}, - [245] = {.lex_state = 40, .external_lex_state = 2}, - [246] = {.lex_state = 40, .external_lex_state = 2}, - [247] = {.lex_state = 40, .external_lex_state = 2}, - [248] = {.lex_state = 40, .external_lex_state = 2}, - [249] = {.lex_state = 40, .external_lex_state = 2}, - [250] = {.lex_state = 40, .external_lex_state = 2}, - [251] = {.lex_state = 40, .external_lex_state = 2}, - [252] = {.lex_state = 40, .external_lex_state = 2}, - [253] = {.lex_state = 40, .external_lex_state = 2}, - [254] = {.lex_state = 1692, .external_lex_state = 2}, - [255] = {.lex_state = 40, .external_lex_state = 2}, - [256] = {.lex_state = 40, .external_lex_state = 2}, - [257] = {.lex_state = 40, .external_lex_state = 2}, - [258] = {.lex_state = 40, .external_lex_state = 2}, - [259] = {.lex_state = 40, .external_lex_state = 2}, - [260] = {.lex_state = 40, .external_lex_state = 2}, - [261] = {.lex_state = 40, .external_lex_state = 2}, - [262] = {.lex_state = 40, .external_lex_state = 2}, - [263] = {.lex_state = 40, .external_lex_state = 2}, - [264] = {.lex_state = 40, .external_lex_state = 2}, - [265] = {.lex_state = 40, .external_lex_state = 2}, - [266] = {.lex_state = 40, .external_lex_state = 2}, - [267] = {.lex_state = 40, .external_lex_state = 2}, - [268] = {.lex_state = 40, .external_lex_state = 2}, - [269] = {.lex_state = 40, .external_lex_state = 2}, - [270] = {.lex_state = 40, .external_lex_state = 2}, - [271] = {.lex_state = 40, .external_lex_state = 2}, - [272] = {.lex_state = 40, .external_lex_state = 2}, - [273] = {.lex_state = 40, .external_lex_state = 2}, - [274] = {.lex_state = 40, .external_lex_state = 2}, - [275] = {.lex_state = 40, .external_lex_state = 2}, - [276] = {.lex_state = 40, .external_lex_state = 2}, - [277] = {.lex_state = 40, .external_lex_state = 2}, - [278] = {.lex_state = 1674, .external_lex_state = 2}, - [279] = {.lex_state = 36, .external_lex_state = 2}, - [280] = {.lex_state = 40, .external_lex_state = 2}, - [281] = {.lex_state = 40, .external_lex_state = 2}, - [282] = {.lex_state = 40, .external_lex_state = 2}, - [283] = {.lex_state = 1692, .external_lex_state = 2}, - [284] = {.lex_state = 40, .external_lex_state = 2}, - [285] = {.lex_state = 1692, .external_lex_state = 2}, - [286] = {.lex_state = 40, .external_lex_state = 2}, - [287] = {.lex_state = 40, .external_lex_state = 2}, - [288] = {.lex_state = 1692, .external_lex_state = 2}, - [289] = {.lex_state = 1692, .external_lex_state = 2}, - [290] = {.lex_state = 1692, .external_lex_state = 2}, - [291] = {.lex_state = 40, .external_lex_state = 2}, - [292] = {.lex_state = 1692, .external_lex_state = 2}, - [293] = {.lex_state = 1692, .external_lex_state = 2}, - [294] = {.lex_state = 36, .external_lex_state = 2}, - [295] = {.lex_state = 1692, .external_lex_state = 2}, - [296] = {.lex_state = 1692, .external_lex_state = 2}, - [297] = {.lex_state = 1692, .external_lex_state = 2}, - [298] = {.lex_state = 1692, .external_lex_state = 2}, - [299] = {.lex_state = 40, .external_lex_state = 2}, - [300] = {.lex_state = 220, .external_lex_state = 2}, - [301] = {.lex_state = 220, .external_lex_state = 2}, - [302] = {.lex_state = 130, .external_lex_state = 2}, - [303] = {.lex_state = 220, .external_lex_state = 2}, - [304] = {.lex_state = 1692, .external_lex_state = 2}, - [305] = {.lex_state = 1692, .external_lex_state = 2}, - [306] = {.lex_state = 1692, .external_lex_state = 2}, - [307] = {.lex_state = 1692, .external_lex_state = 2}, - [308] = {.lex_state = 220, .external_lex_state = 2}, - [309] = {.lex_state = 40, .external_lex_state = 2}, - [310] = {.lex_state = 220, .external_lex_state = 2}, - [311] = {.lex_state = 1692, .external_lex_state = 2}, - [312] = {.lex_state = 220, .external_lex_state = 2}, - [313] = {.lex_state = 220, .external_lex_state = 2}, - [314] = {.lex_state = 40, .external_lex_state = 2}, - [315] = {.lex_state = 220, .external_lex_state = 2}, - [316] = {.lex_state = 40, .external_lex_state = 2}, - [317] = {.lex_state = 40, .external_lex_state = 2}, - [318] = {.lex_state = 119, .external_lex_state = 2}, - [319] = {.lex_state = 121, .external_lex_state = 2}, - [320] = {.lex_state = 128, .external_lex_state = 2}, - [321] = {.lex_state = 131, .external_lex_state = 2}, - [322] = {.lex_state = 131, .external_lex_state = 2}, - [323] = {.lex_state = 130, .external_lex_state = 2}, - [324] = {.lex_state = 129, .external_lex_state = 2}, - [325] = {.lex_state = 131, .external_lex_state = 2}, - [326] = {.lex_state = 123, .external_lex_state = 2}, - [327] = {.lex_state = 129, .external_lex_state = 2}, - [328] = {.lex_state = 109, .external_lex_state = 2}, - [329] = {.lex_state = 107, .external_lex_state = 2}, - [330] = {.lex_state = 124, .external_lex_state = 2}, - [331] = {.lex_state = 123, .external_lex_state = 2}, - [332] = {.lex_state = 128, .external_lex_state = 2}, - [333] = {.lex_state = 131, .external_lex_state = 2}, - [334] = {.lex_state = 131, .external_lex_state = 2}, - [335] = {.lex_state = 131, .external_lex_state = 2}, - [336] = {.lex_state = 151, .external_lex_state = 2}, - [337] = {.lex_state = 151, .external_lex_state = 2}, - [338] = {.lex_state = 151, .external_lex_state = 2}, - [339] = {.lex_state = 120, .external_lex_state = 2}, - [340] = {.lex_state = 124, .external_lex_state = 2}, - [341] = {.lex_state = 124, .external_lex_state = 2}, - [342] = {.lex_state = 124, .external_lex_state = 2}, - [343] = {.lex_state = 111, .external_lex_state = 2}, - [344] = {.lex_state = 112, .external_lex_state = 2}, - [345] = {.lex_state = 111, .external_lex_state = 2}, - [346] = {.lex_state = 129, .external_lex_state = 2}, - [347] = {.lex_state = 129, .external_lex_state = 2}, - [348] = {.lex_state = 129, .external_lex_state = 2}, - [349] = {.lex_state = 129, .external_lex_state = 2}, - [350] = {.lex_state = 124, .external_lex_state = 2}, - [351] = {.lex_state = 122, .external_lex_state = 2}, - [352] = {.lex_state = 112, .external_lex_state = 2}, - [353] = {.lex_state = 125, .external_lex_state = 2}, - [354] = {.lex_state = 112, .external_lex_state = 2}, - [355] = {.lex_state = 112, .external_lex_state = 2}, - [356] = {.lex_state = 163, .external_lex_state = 2}, - [357] = {.lex_state = 112, .external_lex_state = 2}, - [358] = {.lex_state = 163, .external_lex_state = 2}, - [359] = {.lex_state = 151, .external_lex_state = 2}, - [360] = {.lex_state = 108, .external_lex_state = 2}, - [361] = {.lex_state = 125, .external_lex_state = 2}, - [362] = {.lex_state = 151, .external_lex_state = 2}, - [363] = {.lex_state = 163, .external_lex_state = 2}, - [364] = {.lex_state = 110, .external_lex_state = 2}, - [365] = {.lex_state = 113, .external_lex_state = 2}, - [366] = {.lex_state = 152, .external_lex_state = 2}, - [367] = {.lex_state = 126, .external_lex_state = 2}, - [368] = {.lex_state = 152, .external_lex_state = 2}, - [369] = {.lex_state = 43, .external_lex_state = 2}, - [370] = {.lex_state = 126, .external_lex_state = 2}, - [371] = {.lex_state = 126, .external_lex_state = 2}, + [210] = {.lex_state = 39, .external_lex_state = 2}, + [211] = {.lex_state = 39, .external_lex_state = 2}, + [212] = {.lex_state = 39, .external_lex_state = 2}, + [213] = {.lex_state = 39, .external_lex_state = 2}, + [214] = {.lex_state = 1693, .external_lex_state = 2}, + [215] = {.lex_state = 1675, .external_lex_state = 2}, + [216] = {.lex_state = 39, .external_lex_state = 2}, + [217] = {.lex_state = 39, .external_lex_state = 2}, + [218] = {.lex_state = 39, .external_lex_state = 2}, + [219] = {.lex_state = 39, .external_lex_state = 2}, + [220] = {.lex_state = 1693, .external_lex_state = 2}, + [221] = {.lex_state = 39, .external_lex_state = 2}, + [222] = {.lex_state = 1693, .external_lex_state = 2}, + [223] = {.lex_state = 39, .external_lex_state = 2}, + [224] = {.lex_state = 39, .external_lex_state = 2}, + [225] = {.lex_state = 39, .external_lex_state = 2}, + [226] = {.lex_state = 39, .external_lex_state = 2}, + [227] = {.lex_state = 39, .external_lex_state = 2}, + [228] = {.lex_state = 39, .external_lex_state = 2}, + [229] = {.lex_state = 39, .external_lex_state = 2}, + [230] = {.lex_state = 39, .external_lex_state = 2}, + [231] = {.lex_state = 39, .external_lex_state = 2}, + [232] = {.lex_state = 39, .external_lex_state = 2}, + [233] = {.lex_state = 39, .external_lex_state = 2}, + [234] = {.lex_state = 39, .external_lex_state = 2}, + [235] = {.lex_state = 39, .external_lex_state = 2}, + [236] = {.lex_state = 39, .external_lex_state = 2}, + [237] = {.lex_state = 39, .external_lex_state = 2}, + [238] = {.lex_state = 39, .external_lex_state = 2}, + [239] = {.lex_state = 39, .external_lex_state = 2}, + [240] = {.lex_state = 39, .external_lex_state = 2}, + [241] = {.lex_state = 39, .external_lex_state = 2}, + [242] = {.lex_state = 39, .external_lex_state = 2}, + [243] = {.lex_state = 39, .external_lex_state = 2}, + [244] = {.lex_state = 39, .external_lex_state = 2}, + [245] = {.lex_state = 39, .external_lex_state = 2}, + [246] = {.lex_state = 39, .external_lex_state = 2}, + [247] = {.lex_state = 39, .external_lex_state = 2}, + [248] = {.lex_state = 39, .external_lex_state = 2}, + [249] = {.lex_state = 39, .external_lex_state = 2}, + [250] = {.lex_state = 39, .external_lex_state = 2}, + [251] = {.lex_state = 39, .external_lex_state = 2}, + [252] = {.lex_state = 39, .external_lex_state = 2}, + [253] = {.lex_state = 39, .external_lex_state = 2}, + [254] = {.lex_state = 39, .external_lex_state = 2}, + [255] = {.lex_state = 39, .external_lex_state = 2}, + [256] = {.lex_state = 35, .external_lex_state = 2}, + [257] = {.lex_state = 39, .external_lex_state = 2}, + [258] = {.lex_state = 39, .external_lex_state = 2}, + [259] = {.lex_state = 39, .external_lex_state = 2}, + [260] = {.lex_state = 39, .external_lex_state = 2}, + [261] = {.lex_state = 39, .external_lex_state = 2}, + [262] = {.lex_state = 39, .external_lex_state = 2}, + [263] = {.lex_state = 39, .external_lex_state = 2}, + [264] = {.lex_state = 39, .external_lex_state = 2}, + [265] = {.lex_state = 39, .external_lex_state = 2}, + [266] = {.lex_state = 39, .external_lex_state = 2}, + [267] = {.lex_state = 39, .external_lex_state = 2}, + [268] = {.lex_state = 39, .external_lex_state = 2}, + [269] = {.lex_state = 39, .external_lex_state = 2}, + [270] = {.lex_state = 39, .external_lex_state = 2}, + [271] = {.lex_state = 1693, .external_lex_state = 2}, + [272] = {.lex_state = 1693, .external_lex_state = 2}, + [273] = {.lex_state = 39, .external_lex_state = 2}, + [274] = {.lex_state = 39, .external_lex_state = 2}, + [275] = {.lex_state = 39, .external_lex_state = 2}, + [276] = {.lex_state = 39, .external_lex_state = 2}, + [277] = {.lex_state = 39, .external_lex_state = 2}, + [278] = {.lex_state = 1693, .external_lex_state = 2}, + [279] = {.lex_state = 39, .external_lex_state = 2}, + [280] = {.lex_state = 39, .external_lex_state = 2}, + [281] = {.lex_state = 39, .external_lex_state = 2}, + [282] = {.lex_state = 39, .external_lex_state = 2}, + [283] = {.lex_state = 39, .external_lex_state = 2}, + [284] = {.lex_state = 39, .external_lex_state = 2}, + [285] = {.lex_state = 39, .external_lex_state = 2}, + [286] = {.lex_state = 39, .external_lex_state = 2}, + [287] = {.lex_state = 1693, .external_lex_state = 2}, + [288] = {.lex_state = 39, .external_lex_state = 2}, + [289] = {.lex_state = 39, .external_lex_state = 2}, + [290] = {.lex_state = 1693, .external_lex_state = 2}, + [291] = {.lex_state = 39, .external_lex_state = 2}, + [292] = {.lex_state = 1693, .external_lex_state = 2}, + [293] = {.lex_state = 1693, .external_lex_state = 2}, + [294] = {.lex_state = 1693, .external_lex_state = 2}, + [295] = {.lex_state = 35, .external_lex_state = 2}, + [296] = {.lex_state = 1693, .external_lex_state = 2}, + [297] = {.lex_state = 1693, .external_lex_state = 2}, + [298] = {.lex_state = 1693, .external_lex_state = 2}, + [299] = {.lex_state = 105, .external_lex_state = 2}, + [300] = {.lex_state = 39, .external_lex_state = 2}, + [301] = {.lex_state = 105, .external_lex_state = 2}, + [302] = {.lex_state = 103, .external_lex_state = 2}, + [303] = {.lex_state = 1693, .external_lex_state = 2}, + [304] = {.lex_state = 106, .external_lex_state = 2}, + [305] = {.lex_state = 106, .external_lex_state = 2}, + [306] = {.lex_state = 1693, .external_lex_state = 2}, + [307] = {.lex_state = 133, .external_lex_state = 2}, + [308] = {.lex_state = 131, .external_lex_state = 2}, + [309] = {.lex_state = 221, .external_lex_state = 2}, + [310] = {.lex_state = 221, .external_lex_state = 2}, + [311] = {.lex_state = 1693, .external_lex_state = 2}, + [312] = {.lex_state = 1693, .external_lex_state = 2}, + [313] = {.lex_state = 221, .external_lex_state = 2}, + [314] = {.lex_state = 39, .external_lex_state = 2}, + [315] = {.lex_state = 1693, .external_lex_state = 2}, + [316] = {.lex_state = 221, .external_lex_state = 2}, + [317] = {.lex_state = 221, .external_lex_state = 2}, + [318] = {.lex_state = 39, .external_lex_state = 2}, + [319] = {.lex_state = 39, .external_lex_state = 2}, + [320] = {.lex_state = 221, .external_lex_state = 2}, + [321] = {.lex_state = 221, .external_lex_state = 2}, + [322] = {.lex_state = 39, .external_lex_state = 2}, + [323] = {.lex_state = 221, .external_lex_state = 2}, + [324] = {.lex_state = 135, .external_lex_state = 2}, + [325] = {.lex_state = 103, .external_lex_state = 2}, + [326] = {.lex_state = 121, .external_lex_state = 2}, + [327] = {.lex_state = 119, .external_lex_state = 2}, + [328] = {.lex_state = 136, .external_lex_state = 2}, + [329] = {.lex_state = 106, .external_lex_state = 2}, + [330] = {.lex_state = 135, .external_lex_state = 2}, + [331] = {.lex_state = 104, .external_lex_state = 2}, + [332] = {.lex_state = 104, .external_lex_state = 2}, + [333] = {.lex_state = 106, .external_lex_state = 2}, + [334] = {.lex_state = 106, .external_lex_state = 2}, + [335] = {.lex_state = 106, .external_lex_state = 2}, + [336] = {.lex_state = 136, .external_lex_state = 2}, + [337] = {.lex_state = 104, .external_lex_state = 2}, + [338] = {.lex_state = 104, .external_lex_state = 2}, + [339] = {.lex_state = 104, .external_lex_state = 2}, + [340] = {.lex_state = 162, .external_lex_state = 2}, + [341] = {.lex_state = 136, .external_lex_state = 2}, + [342] = {.lex_state = 162, .external_lex_state = 2}, + [343] = {.lex_state = 136, .external_lex_state = 2}, + [344] = {.lex_state = 136, .external_lex_state = 2}, + [345] = {.lex_state = 123, .external_lex_state = 2}, + [346] = {.lex_state = 134, .external_lex_state = 2}, + [347] = {.lex_state = 124, .external_lex_state = 2}, + [348] = {.lex_state = 132, .external_lex_state = 2}, + [349] = {.lex_state = 162, .external_lex_state = 2}, + [350] = {.lex_state = 123, .external_lex_state = 2}, + [351] = {.lex_state = 104, .external_lex_state = 2}, + [352] = {.lex_state = 124, .external_lex_state = 2}, + [353] = {.lex_state = 148, .external_lex_state = 2}, + [354] = {.lex_state = 162, .external_lex_state = 2}, + [355] = {.lex_state = 162, .external_lex_state = 2}, + [356] = {.lex_state = 148, .external_lex_state = 2}, + [357] = {.lex_state = 124, .external_lex_state = 2}, + [358] = {.lex_state = 148, .external_lex_state = 2}, + [359] = {.lex_state = 124, .external_lex_state = 2}, + [360] = {.lex_state = 124, .external_lex_state = 2}, + [361] = {.lex_state = 137, .external_lex_state = 2}, + [362] = {.lex_state = 122, .external_lex_state = 2}, + [363] = {.lex_state = 137, .external_lex_state = 2}, + [364] = {.lex_state = 120, .external_lex_state = 2}, + [365] = {.lex_state = 166, .external_lex_state = 2}, + [366] = {.lex_state = 148, .external_lex_state = 2}, + [367] = {.lex_state = 163, .external_lex_state = 2}, + [368] = {.lex_state = 163, .external_lex_state = 2}, + [369] = {.lex_state = 148, .external_lex_state = 2}, + [370] = {.lex_state = 138, .external_lex_state = 2}, + [371] = {.lex_state = 138, .external_lex_state = 2}, [372] = {.lex_state = 163, .external_lex_state = 2}, - [373] = {.lex_state = 152, .external_lex_state = 2}, - [374] = {.lex_state = 113, .external_lex_state = 2}, - [375] = {.lex_state = 126, .external_lex_state = 2}, - [376] = {.lex_state = 152, .external_lex_state = 2}, - [377] = {.lex_state = 158, .external_lex_state = 2}, - [378] = {.lex_state = 152, .external_lex_state = 2}, - [379] = {.lex_state = 126, .external_lex_state = 2}, - [380] = {.lex_state = 152, .external_lex_state = 2}, - [381] = {.lex_state = 149, .external_lex_state = 2}, - [382] = {.lex_state = 155, .external_lex_state = 2}, - [383] = {.lex_state = 1697, .external_lex_state = 2}, - [384] = {.lex_state = 126, .external_lex_state = 2}, - [385] = {.lex_state = 163, .external_lex_state = 2}, - [386] = {.lex_state = 154, .external_lex_state = 2}, - [387] = {.lex_state = 116, .external_lex_state = 2}, - [388] = {.lex_state = 156, .external_lex_state = 2}, - [389] = {.lex_state = 156, .external_lex_state = 2}, - [390] = {.lex_state = 166, .external_lex_state = 2}, - [391] = {.lex_state = 127, .external_lex_state = 2}, - [392] = {.lex_state = 149, .external_lex_state = 2}, - [393] = {.lex_state = 149, .external_lex_state = 2}, - [394] = {.lex_state = 1697, .external_lex_state = 2}, - [395] = {.lex_state = 162, .external_lex_state = 2}, - [396] = {.lex_state = 162, .external_lex_state = 2}, - [397] = {.lex_state = 151, .external_lex_state = 2}, - [398] = {.lex_state = 154, .external_lex_state = 2}, - [399] = {.lex_state = 114, .external_lex_state = 2}, - [400] = {.lex_state = 151, .external_lex_state = 2}, - [401] = {.lex_state = 151, .external_lex_state = 2}, - [402] = {.lex_state = 154, .external_lex_state = 2}, - [403] = {.lex_state = 154, .external_lex_state = 2}, - [404] = {.lex_state = 154, .external_lex_state = 2}, - [405] = {.lex_state = 162, .external_lex_state = 2}, - [406] = {.lex_state = 162, .external_lex_state = 2}, - [407] = {.lex_state = 162, .external_lex_state = 2}, - [408] = {.lex_state = 162, .external_lex_state = 2}, - [409] = {.lex_state = 114, .external_lex_state = 2}, - [410] = {.lex_state = 154, .external_lex_state = 2}, - [411] = {.lex_state = 154, .external_lex_state = 2}, - [412] = {.lex_state = 154, .external_lex_state = 2}, - [413] = {.lex_state = 154, .external_lex_state = 2}, - [414] = {.lex_state = 154, .external_lex_state = 2}, - [415] = {.lex_state = 154, .external_lex_state = 2}, - [416] = {.lex_state = 154, .external_lex_state = 2}, - [417] = {.lex_state = 154, .external_lex_state = 2}, - [418] = {.lex_state = 154, .external_lex_state = 2}, - [419] = {.lex_state = 154, .external_lex_state = 2}, - [420] = {.lex_state = 154, .external_lex_state = 2}, - [421] = {.lex_state = 154, .external_lex_state = 2}, - [422] = {.lex_state = 154, .external_lex_state = 2}, - [423] = {.lex_state = 154, .external_lex_state = 2}, - [424] = {.lex_state = 114, .external_lex_state = 2}, - [425] = {.lex_state = 154, .external_lex_state = 2}, - [426] = {.lex_state = 154, .external_lex_state = 2}, - [427] = {.lex_state = 114, .external_lex_state = 2}, - [428] = {.lex_state = 154, .external_lex_state = 2}, - [429] = {.lex_state = 114, .external_lex_state = 2}, - [430] = {.lex_state = 114, .external_lex_state = 2}, - [431] = {.lex_state = 154, .external_lex_state = 2}, - [432] = {.lex_state = 154, .external_lex_state = 2}, - [433] = {.lex_state = 154, .external_lex_state = 2}, - [434] = {.lex_state = 154, .external_lex_state = 2}, - [435] = {.lex_state = 1697, .external_lex_state = 2}, - [436] = {.lex_state = 169, .external_lex_state = 2}, - [437] = {.lex_state = 154, .external_lex_state = 2}, - [438] = {.lex_state = 154, .external_lex_state = 2}, - [439] = {.lex_state = 165, .external_lex_state = 2}, - [440] = {.lex_state = 165, .external_lex_state = 2}, - [441] = {.lex_state = 165, .external_lex_state = 2}, - [442] = {.lex_state = 165, .external_lex_state = 2}, - [443] = {.lex_state = 165, .external_lex_state = 2}, - [444] = {.lex_state = 163, .external_lex_state = 2}, - [445] = {.lex_state = 154, .external_lex_state = 2}, - [446] = {.lex_state = 157, .external_lex_state = 2}, - [447] = {.lex_state = 157, .external_lex_state = 2}, - [448] = {.lex_state = 154, .external_lex_state = 2}, - [449] = {.lex_state = 163, .external_lex_state = 2}, - [450] = {.lex_state = 163, .external_lex_state = 2}, - [451] = {.lex_state = 165, .external_lex_state = 2}, - [452] = {.lex_state = 165, .external_lex_state = 2}, - [453] = {.lex_state = 165, .external_lex_state = 2}, - [454] = {.lex_state = 165, .external_lex_state = 2}, - [455] = {.lex_state = 157, .external_lex_state = 2}, - [456] = {.lex_state = 117, .external_lex_state = 2}, - [457] = {.lex_state = 157, .external_lex_state = 2}, - [458] = {.lex_state = 157, .external_lex_state = 2}, - [459] = {.lex_state = 157, .external_lex_state = 2}, - [460] = {.lex_state = 148, .external_lex_state = 2}, - [461] = {.lex_state = 148, .external_lex_state = 2}, - [462] = {.lex_state = 148, .external_lex_state = 2}, - [463] = {.lex_state = 148, .external_lex_state = 2}, - [464] = {.lex_state = 115, .external_lex_state = 2}, - [465] = {.lex_state = 165, .external_lex_state = 2}, - [466] = {.lex_state = 148, .external_lex_state = 2}, - [467] = {.lex_state = 165, .external_lex_state = 2}, - [468] = {.lex_state = 148, .external_lex_state = 2}, - [469] = {.lex_state = 165, .external_lex_state = 2}, - [470] = {.lex_state = 165, .external_lex_state = 2}, - [471] = {.lex_state = 117, .external_lex_state = 2}, - [472] = {.lex_state = 165, .external_lex_state = 2}, - [473] = {.lex_state = 157, .external_lex_state = 2}, - [474] = {.lex_state = 165, .external_lex_state = 2}, - [475] = {.lex_state = 157, .external_lex_state = 2}, - [476] = {.lex_state = 157, .external_lex_state = 2}, - [477] = {.lex_state = 104, .external_lex_state = 2}, - [478] = {.lex_state = 157, .external_lex_state = 2}, - [479] = {.lex_state = 157, .external_lex_state = 2}, - [480] = {.lex_state = 165, .external_lex_state = 2}, - [481] = {.lex_state = 165, .external_lex_state = 2}, - [482] = {.lex_state = 165, .external_lex_state = 2}, - [483] = {.lex_state = 165, .external_lex_state = 2}, - [484] = {.lex_state = 165, .external_lex_state = 2}, - [485] = {.lex_state = 157, .external_lex_state = 2}, - [486] = {.lex_state = 167, .external_lex_state = 2}, - [487] = {.lex_state = 165, .external_lex_state = 2}, - [488] = {.lex_state = 157, .external_lex_state = 2}, - [489] = {.lex_state = 157, .external_lex_state = 2}, - [490] = {.lex_state = 157, .external_lex_state = 2}, - [491] = {.lex_state = 167, .external_lex_state = 2}, - [492] = {.lex_state = 165, .external_lex_state = 2}, - [493] = {.lex_state = 157, .external_lex_state = 2}, - [494] = {.lex_state = 165, .external_lex_state = 2}, - [495] = {.lex_state = 165, .external_lex_state = 2}, - [496] = {.lex_state = 165, .external_lex_state = 2}, - [497] = {.lex_state = 165, .external_lex_state = 2}, - [498] = {.lex_state = 157, .external_lex_state = 2}, - [499] = {.lex_state = 165, .external_lex_state = 2}, - [500] = {.lex_state = 165, .external_lex_state = 2}, - [501] = {.lex_state = 105, .external_lex_state = 2}, - [502] = {.lex_state = 161, .external_lex_state = 2}, - [503] = {.lex_state = 118, .external_lex_state = 2}, - [504] = {.lex_state = 118, .external_lex_state = 2}, - [505] = {.lex_state = 168, .external_lex_state = 2}, - [506] = {.lex_state = 149, .external_lex_state = 2}, - [507] = {.lex_state = 149, .external_lex_state = 2}, - [508] = {.lex_state = 118, .external_lex_state = 2}, - [509] = {.lex_state = 118, .external_lex_state = 2}, - [510] = {.lex_state = 240, .external_lex_state = 2}, - [511] = {.lex_state = 118, .external_lex_state = 2}, - [512] = {.lex_state = 165, .external_lex_state = 2}, - [513] = {.lex_state = 168, .external_lex_state = 2}, - [514] = {.lex_state = 153, .external_lex_state = 2}, - [515] = {.lex_state = 168, .external_lex_state = 2}, - [516] = {.lex_state = 165, .external_lex_state = 2}, - [517] = {.lex_state = 168, .external_lex_state = 2}, - [518] = {.lex_state = 153, .external_lex_state = 2}, - [519] = {.lex_state = 105, .external_lex_state = 2}, - [520] = {.lex_state = 118, .external_lex_state = 2}, - [521] = {.lex_state = 118, .external_lex_state = 2}, - [522] = {.lex_state = 118, .external_lex_state = 2}, - [523] = {.lex_state = 118, .external_lex_state = 2}, - [524] = {.lex_state = 118, .external_lex_state = 2}, - [525] = {.lex_state = 118, .external_lex_state = 2}, - [526] = {.lex_state = 118, .external_lex_state = 2}, - [527] = {.lex_state = 118, .external_lex_state = 2}, - [528] = {.lex_state = 118, .external_lex_state = 2}, - [529] = {.lex_state = 118, .external_lex_state = 2}, - [530] = {.lex_state = 240, .external_lex_state = 2}, - [531] = {.lex_state = 240, .external_lex_state = 2}, - [532] = {.lex_state = 168, .external_lex_state = 2}, - [533] = {.lex_state = 240, .external_lex_state = 2}, - [534] = {.lex_state = 168, .external_lex_state = 2}, - [535] = {.lex_state = 168, .external_lex_state = 2}, - [536] = {.lex_state = 168, .external_lex_state = 2}, - [537] = {.lex_state = 168, .external_lex_state = 2}, - [538] = {.lex_state = 168, .external_lex_state = 2}, - [539] = {.lex_state = 168, .external_lex_state = 2}, - [540] = {.lex_state = 240, .external_lex_state = 2}, - [541] = {.lex_state = 160, .external_lex_state = 2}, - [542] = {.lex_state = 168, .external_lex_state = 2}, - [543] = {.lex_state = 168, .external_lex_state = 2}, - [544] = {.lex_state = 153, .external_lex_state = 2}, - [545] = {.lex_state = 153, .external_lex_state = 2}, - [546] = {.lex_state = 168, .external_lex_state = 2}, - [547] = {.lex_state = 168, .external_lex_state = 2}, - [548] = {.lex_state = 153, .external_lex_state = 2}, - [549] = {.lex_state = 168, .external_lex_state = 2}, - [550] = {.lex_state = 153, .external_lex_state = 2}, - [551] = {.lex_state = 168, .external_lex_state = 2}, - [552] = {.lex_state = 149, .external_lex_state = 2}, - [553] = {.lex_state = 118, .external_lex_state = 2}, - [554] = {.lex_state = 164, .external_lex_state = 2}, - [555] = {.lex_state = 203, .external_lex_state = 2}, - [556] = {.lex_state = 118, .external_lex_state = 2}, - [557] = {.lex_state = 154, .external_lex_state = 2}, - [558] = {.lex_state = 118, .external_lex_state = 2}, - [559] = {.lex_state = 150, .external_lex_state = 2}, - [560] = {.lex_state = 203, .external_lex_state = 2}, - [561] = {.lex_state = 239, .external_lex_state = 2}, - [562] = {.lex_state = 106, .external_lex_state = 2}, - [563] = {.lex_state = 106, .external_lex_state = 2}, - [564] = {.lex_state = 106, .external_lex_state = 2}, - [565] = {.lex_state = 106, .external_lex_state = 2}, - [566] = {.lex_state = 106, .external_lex_state = 2}, - [567] = {.lex_state = 106, .external_lex_state = 2}, - [568] = {.lex_state = 106, .external_lex_state = 2}, - [569] = {.lex_state = 106, .external_lex_state = 2}, - [570] = {.lex_state = 203, .external_lex_state = 2}, - [571] = {.lex_state = 106, .external_lex_state = 2}, - [572] = {.lex_state = 106, .external_lex_state = 2}, - [573] = {.lex_state = 203, .external_lex_state = 2}, - [574] = {.lex_state = 154, .external_lex_state = 2}, - [575] = {.lex_state = 159, .external_lex_state = 2}, - [576] = {.lex_state = 239, .external_lex_state = 2}, - [577] = {.lex_state = 154, .external_lex_state = 2}, - [578] = {.lex_state = 203, .external_lex_state = 2}, - [579] = {.lex_state = 203, .external_lex_state = 2}, - [580] = {.lex_state = 239, .external_lex_state = 2}, - [581] = {.lex_state = 164, .external_lex_state = 2}, - [582] = {.lex_state = 159, .external_lex_state = 2}, - [583] = {.lex_state = 239, .external_lex_state = 2}, - [584] = {.lex_state = 164, .external_lex_state = 2}, - [585] = {.lex_state = 164, .external_lex_state = 2}, - [586] = {.lex_state = 106, .external_lex_state = 2}, - [587] = {.lex_state = 172, .external_lex_state = 2}, - [588] = {.lex_state = 106, .external_lex_state = 2}, - [589] = {.lex_state = 106, .external_lex_state = 2}, - [590] = {.lex_state = 106, .external_lex_state = 2}, - [591] = {.lex_state = 106, .external_lex_state = 2}, - [592] = {.lex_state = 150, .external_lex_state = 2}, - [593] = {.lex_state = 106, .external_lex_state = 2}, - [594] = {.lex_state = 203, .external_lex_state = 2}, - [595] = {.lex_state = 164, .external_lex_state = 2}, - [596] = {.lex_state = 164, .external_lex_state = 2}, - [597] = {.lex_state = 203, .external_lex_state = 2}, - [598] = {.lex_state = 173, .external_lex_state = 2}, - [599] = {.lex_state = 239, .external_lex_state = 2}, - [600] = {.lex_state = 203, .external_lex_state = 2}, - [601] = {.lex_state = 35, .external_lex_state = 2}, - [602] = {.lex_state = 203, .external_lex_state = 2}, - [603] = {.lex_state = 203, .external_lex_state = 2}, - [604] = {.lex_state = 203, .external_lex_state = 2}, - [605] = {.lex_state = 203, .external_lex_state = 2}, - [606] = {.lex_state = 203, .external_lex_state = 2}, - [607] = {.lex_state = 203, .external_lex_state = 2}, - [608] = {.lex_state = 203, .external_lex_state = 2}, - [609] = {.lex_state = 203, .external_lex_state = 2}, - [610] = {.lex_state = 203, .external_lex_state = 2}, - [611] = {.lex_state = 203, .external_lex_state = 2}, - [612] = {.lex_state = 203, .external_lex_state = 2}, - [613] = {.lex_state = 203, .external_lex_state = 2}, - [614] = {.lex_state = 203, .external_lex_state = 2}, - [615] = {.lex_state = 203, .external_lex_state = 2}, - [616] = {.lex_state = 203, .external_lex_state = 2}, - [617] = {.lex_state = 203, .external_lex_state = 2}, - [618] = {.lex_state = 203, .external_lex_state = 2}, - [619] = {.lex_state = 203, .external_lex_state = 2}, - [620] = {.lex_state = 203, .external_lex_state = 2}, - [621] = {.lex_state = 203, .external_lex_state = 2}, - [622] = {.lex_state = 203, .external_lex_state = 2}, - [623] = {.lex_state = 203, .external_lex_state = 2}, - [624] = {.lex_state = 35, .external_lex_state = 2}, - [625] = {.lex_state = 203, .external_lex_state = 2}, - [626] = {.lex_state = 203, .external_lex_state = 2}, - [627] = {.lex_state = 203, .external_lex_state = 2}, - [628] = {.lex_state = 203, .external_lex_state = 2}, - [629] = {.lex_state = 203, .external_lex_state = 2}, - [630] = {.lex_state = 203, .external_lex_state = 2}, - [631] = {.lex_state = 203, .external_lex_state = 2}, - [632] = {.lex_state = 203, .external_lex_state = 2}, - [633] = {.lex_state = 203, .external_lex_state = 2}, - [634] = {.lex_state = 203, .external_lex_state = 2}, - [635] = {.lex_state = 203, .external_lex_state = 2}, - [636] = {.lex_state = 203, .external_lex_state = 2}, - [637] = {.lex_state = 203, .external_lex_state = 2}, - [638] = {.lex_state = 203, .external_lex_state = 2}, - [639] = {.lex_state = 203, .external_lex_state = 2}, - [640] = {.lex_state = 203, .external_lex_state = 2}, - [641] = {.lex_state = 203, .external_lex_state = 2}, - [642] = {.lex_state = 203, .external_lex_state = 2}, - [643] = {.lex_state = 203, .external_lex_state = 2}, - [644] = {.lex_state = 203, .external_lex_state = 2}, - [645] = {.lex_state = 203, .external_lex_state = 2}, - [646] = {.lex_state = 203, .external_lex_state = 2}, - [647] = {.lex_state = 203, .external_lex_state = 2}, - [648] = {.lex_state = 203, .external_lex_state = 2}, - [649] = {.lex_state = 203, .external_lex_state = 2}, - [650] = {.lex_state = 203, .external_lex_state = 2}, - [651] = {.lex_state = 203, .external_lex_state = 2}, - [652] = {.lex_state = 203, .external_lex_state = 2}, - [653] = {.lex_state = 203, .external_lex_state = 2}, - [654] = {.lex_state = 203, .external_lex_state = 2}, - [655] = {.lex_state = 203, .external_lex_state = 2}, - [656] = {.lex_state = 165, .external_lex_state = 2}, - [657] = {.lex_state = 165, .external_lex_state = 2}, - [658] = {.lex_state = 165, .external_lex_state = 2}, - [659] = {.lex_state = 203, .external_lex_state = 2}, - [660] = {.lex_state = 203, .external_lex_state = 2}, - [661] = {.lex_state = 203, .external_lex_state = 2}, - [662] = {.lex_state = 203, .external_lex_state = 2}, - [663] = {.lex_state = 203, .external_lex_state = 2}, - [664] = {.lex_state = 203, .external_lex_state = 2}, - [665] = {.lex_state = 203, .external_lex_state = 2}, - [666] = {.lex_state = 203, .external_lex_state = 2}, - [667] = {.lex_state = 203, .external_lex_state = 2}, - [668] = {.lex_state = 203, .external_lex_state = 2}, - [669] = {.lex_state = 170, .external_lex_state = 2}, - [670] = {.lex_state = 170, .external_lex_state = 2}, - [671] = {.lex_state = 35, .external_lex_state = 2}, - [672] = {.lex_state = 106, .external_lex_state = 2}, - [673] = {.lex_state = 203, .external_lex_state = 2}, - [674] = {.lex_state = 203, .external_lex_state = 2}, - [675] = {.lex_state = 203, .external_lex_state = 2}, - [676] = {.lex_state = 203, .external_lex_state = 2}, - [677] = {.lex_state = 203, .external_lex_state = 2}, - [678] = {.lex_state = 203, .external_lex_state = 2}, - [679] = {.lex_state = 203, .external_lex_state = 2}, - [680] = {.lex_state = 106, .external_lex_state = 2}, - [681] = {.lex_state = 203, .external_lex_state = 2}, - [682] = {.lex_state = 203, .external_lex_state = 2}, - [683] = {.lex_state = 203, .external_lex_state = 2}, - [684] = {.lex_state = 203, .external_lex_state = 2}, - [685] = {.lex_state = 203, .external_lex_state = 2}, - [686] = {.lex_state = 35, .external_lex_state = 2}, - [687] = {.lex_state = 35, .external_lex_state = 2}, - [688] = {.lex_state = 35, .external_lex_state = 2}, - [689] = {.lex_state = 35, .external_lex_state = 2}, - [690] = {.lex_state = 35, .external_lex_state = 2}, - [691] = {.lex_state = 35, .external_lex_state = 2}, - [692] = {.lex_state = 35, .external_lex_state = 2}, - [693] = {.lex_state = 35, .external_lex_state = 2}, - [694] = {.lex_state = 35, .external_lex_state = 2}, - [695] = {.lex_state = 35, .external_lex_state = 2}, - [696] = {.lex_state = 35, .external_lex_state = 2}, - [697] = {.lex_state = 35, .external_lex_state = 2}, - [698] = {.lex_state = 35, .external_lex_state = 2}, - [699] = {.lex_state = 35, .external_lex_state = 2}, - [700] = {.lex_state = 35, .external_lex_state = 2}, - [701] = {.lex_state = 35, .external_lex_state = 2}, - [702] = {.lex_state = 35, .external_lex_state = 2}, - [703] = {.lex_state = 35, .external_lex_state = 2}, - [704] = {.lex_state = 35, .external_lex_state = 2}, - [705] = {.lex_state = 35, .external_lex_state = 2}, - [706] = {.lex_state = 35, .external_lex_state = 2}, - [707] = {.lex_state = 35, .external_lex_state = 2}, - [708] = {.lex_state = 35, .external_lex_state = 2}, - [709] = {.lex_state = 35, .external_lex_state = 2}, - [710] = {.lex_state = 35, .external_lex_state = 2}, - [711] = {.lex_state = 35, .external_lex_state = 2}, - [712] = {.lex_state = 35, .external_lex_state = 2}, - [713] = {.lex_state = 35, .external_lex_state = 2}, - [714] = {.lex_state = 35, .external_lex_state = 2}, - [715] = {.lex_state = 35, .external_lex_state = 2}, - [716] = {.lex_state = 35, .external_lex_state = 2}, - [717] = {.lex_state = 35, .external_lex_state = 2}, - [718] = {.lex_state = 35, .external_lex_state = 2}, - [719] = {.lex_state = 35, .external_lex_state = 2}, - [720] = {.lex_state = 35, .external_lex_state = 2}, - [721] = {.lex_state = 35, .external_lex_state = 2}, - [722] = {.lex_state = 35, .external_lex_state = 2}, - [723] = {.lex_state = 35, .external_lex_state = 2}, - [724] = {.lex_state = 35, .external_lex_state = 2}, - [725] = {.lex_state = 39, .external_lex_state = 2}, - [726] = {.lex_state = 35, .external_lex_state = 2}, - [727] = {.lex_state = 35, .external_lex_state = 2}, - [728] = {.lex_state = 35, .external_lex_state = 2}, - [729] = {.lex_state = 35, .external_lex_state = 2}, - [730] = {.lex_state = 35, .external_lex_state = 2}, - [731] = {.lex_state = 35, .external_lex_state = 2}, - [732] = {.lex_state = 35, .external_lex_state = 2}, - [733] = {.lex_state = 35, .external_lex_state = 2}, - [734] = {.lex_state = 35, .external_lex_state = 2}, - [735] = {.lex_state = 35, .external_lex_state = 2}, - [736] = {.lex_state = 35, .external_lex_state = 2}, - [737] = {.lex_state = 35, .external_lex_state = 2}, - [738] = {.lex_state = 35, .external_lex_state = 2}, - [739] = {.lex_state = 35, .external_lex_state = 2}, - [740] = {.lex_state = 35, .external_lex_state = 2}, - [741] = {.lex_state = 35, .external_lex_state = 2}, - [742] = {.lex_state = 35, .external_lex_state = 2}, - [743] = {.lex_state = 39, .external_lex_state = 2}, - [744] = {.lex_state = 35, .external_lex_state = 2}, - [745] = {.lex_state = 35, .external_lex_state = 2}, - [746] = {.lex_state = 35, .external_lex_state = 2}, - [747] = {.lex_state = 35, .external_lex_state = 2}, - [748] = {.lex_state = 35, .external_lex_state = 2}, - [749] = {.lex_state = 35, .external_lex_state = 2}, - [750] = {.lex_state = 35, .external_lex_state = 2}, - [751] = {.lex_state = 35, .external_lex_state = 2}, - [752] = {.lex_state = 35, .external_lex_state = 2}, - [753] = {.lex_state = 35, .external_lex_state = 2}, - [754] = {.lex_state = 39, .external_lex_state = 2}, - [755] = {.lex_state = 35, .external_lex_state = 2}, - [756] = {.lex_state = 35, .external_lex_state = 2}, - [757] = {.lex_state = 35, .external_lex_state = 2}, - [758] = {.lex_state = 35, .external_lex_state = 2}, - [759] = {.lex_state = 35, .external_lex_state = 2}, - [760] = {.lex_state = 35, .external_lex_state = 2}, - [761] = {.lex_state = 35, .external_lex_state = 2}, - [762] = {.lex_state = 35, .external_lex_state = 2}, - [763] = {.lex_state = 35, .external_lex_state = 2}, - [764] = {.lex_state = 35, .external_lex_state = 2}, - [765] = {.lex_state = 35, .external_lex_state = 2}, - [766] = {.lex_state = 46, .external_lex_state = 2}, - [767] = {.lex_state = 46, .external_lex_state = 2}, - [768] = {.lex_state = 39, .external_lex_state = 2}, - [769] = {.lex_state = 39, .external_lex_state = 2}, - [770] = {.lex_state = 1702, .external_lex_state = 2}, - [771] = {.lex_state = 3119}, - [772] = {.lex_state = 1702, .external_lex_state = 2}, - [773] = {.lex_state = 1702, .external_lex_state = 2}, - [774] = {.lex_state = 1702, .external_lex_state = 2}, - [775] = {.lex_state = 1702, .external_lex_state = 2}, - [776] = {.lex_state = 39, .external_lex_state = 2}, - [777] = {.lex_state = 1702, .external_lex_state = 2}, - [778] = {.lex_state = 1702, .external_lex_state = 2}, - [779] = {.lex_state = 1702, .external_lex_state = 2}, - [780] = {.lex_state = 1702, .external_lex_state = 2}, - [781] = {.lex_state = 39, .external_lex_state = 2}, - [782] = {.lex_state = 39, .external_lex_state = 2}, - [783] = {.lex_state = 39, .external_lex_state = 2}, - [784] = {.lex_state = 1702, .external_lex_state = 2}, - [785] = {.lex_state = 3134}, - [786] = {.lex_state = 1702, .external_lex_state = 2}, - [787] = {.lex_state = 1702, .external_lex_state = 2}, - [788] = {.lex_state = 1702, .external_lex_state = 2}, - [789] = {.lex_state = 3265}, - [790] = {.lex_state = 1702, .external_lex_state = 2}, - [791] = {.lex_state = 3135}, - [792] = {.lex_state = 3122}, - [793] = {.lex_state = 1702, .external_lex_state = 2}, - [794] = {.lex_state = 3115}, - [795] = {.lex_state = 3120}, - [796] = {.lex_state = 3109}, - [797] = {.lex_state = 3120}, - [798] = {.lex_state = 3259}, - [799] = {.lex_state = 3121}, - [800] = {.lex_state = 3265}, - [801] = {.lex_state = 3259}, - [802] = {.lex_state = 3261}, - [803] = {.lex_state = 3124}, - [804] = {.lex_state = 3121}, - [805] = {.lex_state = 3261}, - [806] = {.lex_state = 3124}, - [807] = {.lex_state = 3121}, - [808] = {.lex_state = 3111}, - [809] = {.lex_state = 3121}, - [810] = {.lex_state = 3111}, - [811] = {.lex_state = 3121}, - [812] = {.lex_state = 3126}, - [813] = {.lex_state = 3263}, - [814] = {.lex_state = 3137}, - [815] = {.lex_state = 3263}, - [816] = {.lex_state = 3261}, - [817] = {.lex_state = 3261}, - [818] = {.lex_state = 3263}, - [819] = {.lex_state = 3126}, - [820] = {.lex_state = 3113}, - [821] = {.lex_state = 3263}, - [822] = {.lex_state = 3113}, - [823] = {.lex_state = 3126}, - [824] = {.lex_state = 3113}, - [825] = {.lex_state = 3113}, - [826] = {.lex_state = 3128}, - [827] = {.lex_state = 3113}, - [828] = {.lex_state = 3126}, - [829] = {.lex_state = 3263}, - [830] = {.lex_state = 3126}, - [831] = {.lex_state = 3130}, - [832] = {.lex_state = 3263}, - [833] = {.lex_state = 3263}, - [834] = {.lex_state = 3263}, - [835] = {.lex_state = 3263}, - [836] = {.lex_state = 3130}, - [837] = {.lex_state = 3263}, - [838] = {.lex_state = 46, .external_lex_state = 2}, - [839] = {.lex_state = 46, .external_lex_state = 2}, - [840] = {.lex_state = 3132}, - [841] = {.lex_state = 3132}, - [842] = {.lex_state = 46, .external_lex_state = 2}, - [843] = {.lex_state = 46, .external_lex_state = 2}, - [844] = {.lex_state = 46, .external_lex_state = 2}, - [845] = {.lex_state = 46, .external_lex_state = 2}, - [846] = {.lex_state = 46, .external_lex_state = 2}, - [847] = {.lex_state = 46, .external_lex_state = 2}, - [848] = {.lex_state = 46, .external_lex_state = 2}, - [849] = {.lex_state = 46, .external_lex_state = 2}, - [850] = {.lex_state = 46, .external_lex_state = 2}, - [851] = {.lex_state = 46, .external_lex_state = 2}, - [852] = {.lex_state = 46, .external_lex_state = 2}, - [853] = {.lex_state = 46, .external_lex_state = 2}, - [854] = {.lex_state = 46, .external_lex_state = 2}, - [855] = {.lex_state = 3132}, - [856] = {.lex_state = 46, .external_lex_state = 2}, - [857] = {.lex_state = 46, .external_lex_state = 2}, - [858] = {.lex_state = 3132}, - [859] = {.lex_state = 46, .external_lex_state = 2}, - [860] = {.lex_state = 46, .external_lex_state = 2}, - [861] = {.lex_state = 46, .external_lex_state = 2}, - [862] = {.lex_state = 3132}, - [863] = {.lex_state = 46, .external_lex_state = 2}, - [864] = {.lex_state = 3117}, - [865] = {.lex_state = 3267}, - [866] = {.lex_state = 3139}, - [867] = {.lex_state = 3139}, - [868] = {.lex_state = 3267}, - [869] = {.lex_state = 3139}, - [870] = {.lex_state = 3139}, - [871] = {.lex_state = 3117}, - [872] = {.lex_state = 46, .external_lex_state = 2}, - [873] = {.lex_state = 46, .external_lex_state = 2}, - [874] = {.lex_state = 46, .external_lex_state = 2}, - [875] = {.lex_state = 46, .external_lex_state = 2}, - [876] = {.lex_state = 46, .external_lex_state = 2}, - [877] = {.lex_state = 3267}, - [878] = {.lex_state = 46, .external_lex_state = 2}, - [879] = {.lex_state = 3267}, - [880] = {.lex_state = 46, .external_lex_state = 2}, - [881] = {.lex_state = 46, .external_lex_state = 2}, - [882] = {.lex_state = 46, .external_lex_state = 2}, - [883] = {.lex_state = 46, .external_lex_state = 2}, - [884] = {.lex_state = 46, .external_lex_state = 2}, - [885] = {.lex_state = 46, .external_lex_state = 2}, - [886] = {.lex_state = 46, .external_lex_state = 2}, - [887] = {.lex_state = 46, .external_lex_state = 2}, - [888] = {.lex_state = 46, .external_lex_state = 2}, - [889] = {.lex_state = 46, .external_lex_state = 2}, - [890] = {.lex_state = 46, .external_lex_state = 2}, - [891] = {.lex_state = 46, .external_lex_state = 2}, - [892] = {.lex_state = 3141}, - [893] = {.lex_state = 3141}, - [894] = {.lex_state = 45, .external_lex_state = 2}, - [895] = {.lex_state = 45, .external_lex_state = 2}, - [896] = {.lex_state = 45, .external_lex_state = 2}, - [897] = {.lex_state = 45, .external_lex_state = 2}, - [898] = {.lex_state = 45, .external_lex_state = 2}, - [899] = {.lex_state = 45, .external_lex_state = 2}, - [900] = {.lex_state = 45, .external_lex_state = 2}, - [901] = {.lex_state = 45, .external_lex_state = 2}, - [902] = {.lex_state = 45, .external_lex_state = 2}, - [903] = {.lex_state = 45, .external_lex_state = 2}, - [904] = {.lex_state = 45, .external_lex_state = 2}, - [905] = {.lex_state = 45, .external_lex_state = 2}, - [906] = {.lex_state = 45, .external_lex_state = 2}, - [907] = {.lex_state = 45, .external_lex_state = 2}, - [908] = {.lex_state = 45, .external_lex_state = 2}, - [909] = {.lex_state = 45, .external_lex_state = 2}, - [910] = {.lex_state = 45, .external_lex_state = 2}, - [911] = {.lex_state = 45, .external_lex_state = 2}, - [912] = {.lex_state = 45, .external_lex_state = 2}, - [913] = {.lex_state = 45, .external_lex_state = 2}, - [914] = {.lex_state = 45, .external_lex_state = 2}, - [915] = {.lex_state = 45, .external_lex_state = 2}, + [373] = {.lex_state = 163, .external_lex_state = 2}, + [374] = {.lex_state = 163, .external_lex_state = 2}, + [375] = {.lex_state = 163, .external_lex_state = 2}, + [376] = {.lex_state = 125, .external_lex_state = 2}, + [377] = {.lex_state = 138, .external_lex_state = 2}, + [378] = {.lex_state = 138, .external_lex_state = 2}, + [379] = {.lex_state = 125, .external_lex_state = 2}, + [380] = {.lex_state = 138, .external_lex_state = 2}, + [381] = {.lex_state = 138, .external_lex_state = 2}, + [382] = {.lex_state = 169, .external_lex_state = 2}, + [383] = {.lex_state = 165, .external_lex_state = 2}, + [384] = {.lex_state = 165, .external_lex_state = 2}, + [385] = {.lex_state = 165, .external_lex_state = 2}, + [386] = {.lex_state = 162, .external_lex_state = 2}, + [387] = {.lex_state = 162, .external_lex_state = 2}, + [388] = {.lex_state = 165, .external_lex_state = 2}, + [389] = {.lex_state = 165, .external_lex_state = 2}, + [390] = {.lex_state = 165, .external_lex_state = 2}, + [391] = {.lex_state = 147, .external_lex_state = 2}, + [392] = {.lex_state = 147, .external_lex_state = 2}, + [393] = {.lex_state = 147, .external_lex_state = 2}, + [394] = {.lex_state = 147, .external_lex_state = 2}, + [395] = {.lex_state = 165, .external_lex_state = 2}, + [396] = {.lex_state = 165, .external_lex_state = 2}, + [397] = {.lex_state = 165, .external_lex_state = 2}, + [398] = {.lex_state = 165, .external_lex_state = 2}, + [399] = {.lex_state = 165, .external_lex_state = 2}, + [400] = {.lex_state = 165, .external_lex_state = 2}, + [401] = {.lex_state = 165, .external_lex_state = 2}, + [402] = {.lex_state = 165, .external_lex_state = 2}, + [403] = {.lex_state = 165, .external_lex_state = 2}, + [404] = {.lex_state = 126, .external_lex_state = 2}, + [405] = {.lex_state = 150, .external_lex_state = 2}, + [406] = {.lex_state = 165, .external_lex_state = 2}, + [407] = {.lex_state = 126, .external_lex_state = 2}, + [408] = {.lex_state = 165, .external_lex_state = 2}, + [409] = {.lex_state = 126, .external_lex_state = 2}, + [410] = {.lex_state = 126, .external_lex_state = 2}, + [411] = {.lex_state = 156, .external_lex_state = 2}, + [412] = {.lex_state = 165, .external_lex_state = 2}, + [413] = {.lex_state = 42, .external_lex_state = 2}, + [414] = {.lex_state = 165, .external_lex_state = 2}, + [415] = {.lex_state = 147, .external_lex_state = 2}, + [416] = {.lex_state = 147, .external_lex_state = 2}, + [417] = {.lex_state = 165, .external_lex_state = 2}, + [418] = {.lex_state = 140, .external_lex_state = 2}, + [419] = {.lex_state = 167, .external_lex_state = 2}, + [420] = {.lex_state = 162, .external_lex_state = 2}, + [421] = {.lex_state = 167, .external_lex_state = 2}, + [422] = {.lex_state = 165, .external_lex_state = 2}, + [423] = {.lex_state = 153, .external_lex_state = 2}, + [424] = {.lex_state = 139, .external_lex_state = 2}, + [425] = {.lex_state = 165, .external_lex_state = 2}, + [426] = {.lex_state = 1698, .external_lex_state = 2}, + [427] = {.lex_state = 165, .external_lex_state = 2}, + [428] = {.lex_state = 165, .external_lex_state = 2}, + [429] = {.lex_state = 165, .external_lex_state = 2}, + [430] = {.lex_state = 126, .external_lex_state = 2}, + [431] = {.lex_state = 165, .external_lex_state = 2}, + [432] = {.lex_state = 165, .external_lex_state = 2}, + [433] = {.lex_state = 165, .external_lex_state = 2}, + [434] = {.lex_state = 126, .external_lex_state = 2}, + [435] = {.lex_state = 150, .external_lex_state = 2}, + [436] = {.lex_state = 150, .external_lex_state = 2}, + [437] = {.lex_state = 150, .external_lex_state = 2}, + [438] = {.lex_state = 168, .external_lex_state = 2}, + [439] = {.lex_state = 168, .external_lex_state = 2}, + [440] = {.lex_state = 168, .external_lex_state = 2}, + [441] = {.lex_state = 168, .external_lex_state = 2}, + [442] = {.lex_state = 150, .external_lex_state = 2}, + [443] = {.lex_state = 150, .external_lex_state = 2}, + [444] = {.lex_state = 168, .external_lex_state = 2}, + [445] = {.lex_state = 150, .external_lex_state = 2}, + [446] = {.lex_state = 150, .external_lex_state = 2}, + [447] = {.lex_state = 150, .external_lex_state = 2}, + [448] = {.lex_state = 150, .external_lex_state = 2}, + [449] = {.lex_state = 148, .external_lex_state = 2}, + [450] = {.lex_state = 165, .external_lex_state = 2}, + [451] = {.lex_state = 168, .external_lex_state = 2}, + [452] = {.lex_state = 128, .external_lex_state = 2}, + [453] = {.lex_state = 154, .external_lex_state = 2}, + [454] = {.lex_state = 168, .external_lex_state = 2}, + [455] = {.lex_state = 154, .external_lex_state = 2}, + [456] = {.lex_state = 165, .external_lex_state = 2}, + [457] = {.lex_state = 150, .external_lex_state = 2}, + [458] = {.lex_state = 148, .external_lex_state = 2}, + [459] = {.lex_state = 148, .external_lex_state = 2}, + [460] = {.lex_state = 168, .external_lex_state = 2}, + [461] = {.lex_state = 168, .external_lex_state = 2}, + [462] = {.lex_state = 141, .external_lex_state = 2}, + [463] = {.lex_state = 168, .external_lex_state = 2}, + [464] = {.lex_state = 168, .external_lex_state = 2}, + [465] = {.lex_state = 168, .external_lex_state = 2}, + [466] = {.lex_state = 168, .external_lex_state = 2}, + [467] = {.lex_state = 168, .external_lex_state = 2}, + [468] = {.lex_state = 127, .external_lex_state = 2}, + [469] = {.lex_state = 150, .external_lex_state = 2}, + [470] = {.lex_state = 150, .external_lex_state = 2}, + [471] = {.lex_state = 150, .external_lex_state = 2}, + [472] = {.lex_state = 150, .external_lex_state = 2}, + [473] = {.lex_state = 150, .external_lex_state = 2}, + [474] = {.lex_state = 1698, .external_lex_state = 2}, + [475] = {.lex_state = 150, .external_lex_state = 2}, + [476] = {.lex_state = 150, .external_lex_state = 2}, + [477] = {.lex_state = 150, .external_lex_state = 2}, + [478] = {.lex_state = 150, .external_lex_state = 2}, + [479] = {.lex_state = 1698, .external_lex_state = 2}, + [480] = {.lex_state = 150, .external_lex_state = 2}, + [481] = {.lex_state = 150, .external_lex_state = 2}, + [482] = {.lex_state = 150, .external_lex_state = 2}, + [483] = {.lex_state = 150, .external_lex_state = 2}, + [484] = {.lex_state = 150, .external_lex_state = 2}, + [485] = {.lex_state = 150, .external_lex_state = 2}, + [486] = {.lex_state = 168, .external_lex_state = 2}, + [487] = {.lex_state = 168, .external_lex_state = 2}, + [488] = {.lex_state = 168, .external_lex_state = 2}, + [489] = {.lex_state = 150, .external_lex_state = 2}, + [490] = {.lex_state = 150, .external_lex_state = 2}, + [491] = {.lex_state = 150, .external_lex_state = 2}, + [492] = {.lex_state = 150, .external_lex_state = 2}, + [493] = {.lex_state = 141, .external_lex_state = 2}, + [494] = {.lex_state = 164, .external_lex_state = 2}, + [495] = {.lex_state = 164, .external_lex_state = 2}, + [496] = {.lex_state = 155, .external_lex_state = 2}, + [497] = {.lex_state = 142, .external_lex_state = 2}, + [498] = {.lex_state = 164, .external_lex_state = 2}, + [499] = {.lex_state = 155, .external_lex_state = 2}, + [500] = {.lex_state = 142, .external_lex_state = 2}, + [501] = {.lex_state = 142, .external_lex_state = 2}, + [502] = {.lex_state = 142, .external_lex_state = 2}, + [503] = {.lex_state = 142, .external_lex_state = 2}, + [504] = {.lex_state = 149, .external_lex_state = 2}, + [505] = {.lex_state = 149, .external_lex_state = 2}, + [506] = {.lex_state = 142, .external_lex_state = 2}, + [507] = {.lex_state = 142, .external_lex_state = 2}, + [508] = {.lex_state = 241, .external_lex_state = 2}, + [509] = {.lex_state = 241, .external_lex_state = 2}, + [510] = {.lex_state = 172, .external_lex_state = 2}, + [511] = {.lex_state = 142, .external_lex_state = 2}, + [512] = {.lex_state = 241, .external_lex_state = 2}, + [513] = {.lex_state = 155, .external_lex_state = 2}, + [514] = {.lex_state = 173, .external_lex_state = 2}, + [515] = {.lex_state = 241, .external_lex_state = 2}, + [516] = {.lex_state = 129, .external_lex_state = 2}, + [517] = {.lex_state = 129, .external_lex_state = 2}, + [518] = {.lex_state = 155, .external_lex_state = 2}, + [519] = {.lex_state = 155, .external_lex_state = 2}, + [520] = {.lex_state = 164, .external_lex_state = 2}, + [521] = {.lex_state = 241, .external_lex_state = 2}, + [522] = {.lex_state = 155, .external_lex_state = 2}, + [523] = {.lex_state = 155, .external_lex_state = 2}, + [524] = {.lex_state = 155, .external_lex_state = 2}, + [525] = {.lex_state = 149, .external_lex_state = 2}, + [526] = {.lex_state = 142, .external_lex_state = 2}, + [527] = {.lex_state = 155, .external_lex_state = 2}, + [528] = {.lex_state = 142, .external_lex_state = 2}, + [529] = {.lex_state = 155, .external_lex_state = 2}, + [530] = {.lex_state = 149, .external_lex_state = 2}, + [531] = {.lex_state = 142, .external_lex_state = 2}, + [532] = {.lex_state = 155, .external_lex_state = 2}, + [533] = {.lex_state = 142, .external_lex_state = 2}, + [534] = {.lex_state = 155, .external_lex_state = 2}, + [535] = {.lex_state = 164, .external_lex_state = 2}, + [536] = {.lex_state = 142, .external_lex_state = 2}, + [537] = {.lex_state = 142, .external_lex_state = 2}, + [538] = {.lex_state = 142, .external_lex_state = 2}, + [539] = {.lex_state = 142, .external_lex_state = 2}, + [540] = {.lex_state = 149, .external_lex_state = 2}, + [541] = {.lex_state = 149, .external_lex_state = 2}, + [542] = {.lex_state = 155, .external_lex_state = 2}, + [543] = {.lex_state = 164, .external_lex_state = 2}, + [544] = {.lex_state = 155, .external_lex_state = 2}, + [545] = {.lex_state = 155, .external_lex_state = 2}, + [546] = {.lex_state = 155, .external_lex_state = 2}, + [547] = {.lex_state = 155, .external_lex_state = 2}, + [548] = {.lex_state = 130, .external_lex_state = 2}, + [549] = {.lex_state = 150, .external_lex_state = 2}, + [550] = {.lex_state = 240, .external_lex_state = 2}, + [551] = {.lex_state = 240, .external_lex_state = 2}, + [552] = {.lex_state = 130, .external_lex_state = 2}, + [553] = {.lex_state = 130, .external_lex_state = 2}, + [554] = {.lex_state = 130, .external_lex_state = 2}, + [555] = {.lex_state = 165, .external_lex_state = 2}, + [556] = {.lex_state = 165, .external_lex_state = 2}, + [557] = {.lex_state = 130, .external_lex_state = 2}, + [558] = {.lex_state = 130, .external_lex_state = 2}, + [559] = {.lex_state = 130, .external_lex_state = 2}, + [560] = {.lex_state = 130, .external_lex_state = 2}, + [561] = {.lex_state = 130, .external_lex_state = 2}, + [562] = {.lex_state = 160, .external_lex_state = 2}, + [563] = {.lex_state = 150, .external_lex_state = 2}, + [564] = {.lex_state = 218, .external_lex_state = 2}, + [565] = {.lex_state = 218, .external_lex_state = 2}, + [566] = {.lex_state = 218, .external_lex_state = 2}, + [567] = {.lex_state = 142, .external_lex_state = 2}, + [568] = {.lex_state = 130, .external_lex_state = 2}, + [569] = {.lex_state = 142, .external_lex_state = 2}, + [570] = {.lex_state = 130, .external_lex_state = 2}, + [571] = {.lex_state = 161, .external_lex_state = 2}, + [572] = {.lex_state = 165, .external_lex_state = 2}, + [573] = {.lex_state = 170, .external_lex_state = 2}, + [574] = {.lex_state = 130, .external_lex_state = 2}, + [575] = {.lex_state = 240, .external_lex_state = 2}, + [576] = {.lex_state = 240, .external_lex_state = 2}, + [577] = {.lex_state = 130, .external_lex_state = 2}, + [578] = {.lex_state = 130, .external_lex_state = 2}, + [579] = {.lex_state = 170, .external_lex_state = 2}, + [580] = {.lex_state = 130, .external_lex_state = 2}, + [581] = {.lex_state = 240, .external_lex_state = 2}, + [582] = {.lex_state = 130, .external_lex_state = 2}, + [583] = {.lex_state = 150, .external_lex_state = 2}, + [584] = {.lex_state = 218, .external_lex_state = 2}, + [585] = {.lex_state = 218, .external_lex_state = 2}, + [586] = {.lex_state = 218, .external_lex_state = 2}, + [587] = {.lex_state = 218, .external_lex_state = 2}, + [588] = {.lex_state = 218, .external_lex_state = 2}, + [589] = {.lex_state = 171, .external_lex_state = 2}, + [590] = {.lex_state = 218, .external_lex_state = 2}, + [591] = {.lex_state = 218, .external_lex_state = 2}, + [592] = {.lex_state = 218, .external_lex_state = 2}, + [593] = {.lex_state = 218, .external_lex_state = 2}, + [594] = {.lex_state = 218, .external_lex_state = 2}, + [595] = {.lex_state = 218, .external_lex_state = 2}, + [596] = {.lex_state = 218, .external_lex_state = 2}, + [597] = {.lex_state = 218, .external_lex_state = 2}, + [598] = {.lex_state = 218, .external_lex_state = 2}, + [599] = {.lex_state = 218, .external_lex_state = 2}, + [600] = {.lex_state = 218, .external_lex_state = 2}, + [601] = {.lex_state = 218, .external_lex_state = 2}, + [602] = {.lex_state = 171, .external_lex_state = 2}, + [603] = {.lex_state = 171, .external_lex_state = 2}, + [604] = {.lex_state = 218, .external_lex_state = 2}, + [605] = {.lex_state = 218, .external_lex_state = 2}, + [606] = {.lex_state = 218, .external_lex_state = 2}, + [607] = {.lex_state = 171, .external_lex_state = 2}, + [608] = {.lex_state = 218, .external_lex_state = 2}, + [609] = {.lex_state = 218, .external_lex_state = 2}, + [610] = {.lex_state = 218, .external_lex_state = 2}, + [611] = {.lex_state = 218, .external_lex_state = 2}, + [612] = {.lex_state = 218, .external_lex_state = 2}, + [613] = {.lex_state = 218, .external_lex_state = 2}, + [614] = {.lex_state = 218, .external_lex_state = 2}, + [615] = {.lex_state = 218, .external_lex_state = 2}, + [616] = {.lex_state = 218, .external_lex_state = 2}, + [617] = {.lex_state = 217, .external_lex_state = 2}, + [618] = {.lex_state = 218, .external_lex_state = 2}, + [619] = {.lex_state = 218, .external_lex_state = 2}, + [620] = {.lex_state = 217, .external_lex_state = 2}, + [621] = {.lex_state = 217, .external_lex_state = 2}, + [622] = {.lex_state = 130, .external_lex_state = 2}, + [623] = {.lex_state = 218, .external_lex_state = 2}, + [624] = {.lex_state = 218, .external_lex_state = 2}, + [625] = {.lex_state = 218, .external_lex_state = 2}, + [626] = {.lex_state = 218, .external_lex_state = 2}, + [627] = {.lex_state = 218, .external_lex_state = 2}, + [628] = {.lex_state = 218, .external_lex_state = 2}, + [629] = {.lex_state = 218, .external_lex_state = 2}, + [630] = {.lex_state = 218, .external_lex_state = 2}, + [631] = {.lex_state = 158, .external_lex_state = 2}, + [632] = {.lex_state = 130, .external_lex_state = 2}, + [633] = {.lex_state = 218, .external_lex_state = 2}, + [634] = {.lex_state = 218, .external_lex_state = 2}, + [635] = {.lex_state = 218, .external_lex_state = 2}, + [636] = {.lex_state = 218, .external_lex_state = 2}, + [637] = {.lex_state = 218, .external_lex_state = 2}, + [638] = {.lex_state = 218, .external_lex_state = 2}, + [639] = {.lex_state = 218, .external_lex_state = 2}, + [640] = {.lex_state = 218, .external_lex_state = 2}, + [641] = {.lex_state = 218, .external_lex_state = 2}, + [642] = {.lex_state = 218, .external_lex_state = 2}, + [643] = {.lex_state = 218, .external_lex_state = 2}, + [644] = {.lex_state = 218, .external_lex_state = 2}, + [645] = {.lex_state = 218, .external_lex_state = 2}, + [646] = {.lex_state = 218, .external_lex_state = 2}, + [647] = {.lex_state = 218, .external_lex_state = 2}, + [648] = {.lex_state = 218, .external_lex_state = 2}, + [649] = {.lex_state = 218, .external_lex_state = 2}, + [650] = {.lex_state = 218, .external_lex_state = 2}, + [651] = {.lex_state = 218, .external_lex_state = 2}, + [652] = {.lex_state = 218, .external_lex_state = 2}, + [653] = {.lex_state = 218, .external_lex_state = 2}, + [654] = {.lex_state = 218, .external_lex_state = 2}, + [655] = {.lex_state = 218, .external_lex_state = 2}, + [656] = {.lex_state = 218, .external_lex_state = 2}, + [657] = {.lex_state = 171, .external_lex_state = 2}, + [658] = {.lex_state = 218, .external_lex_state = 2}, + [659] = {.lex_state = 218, .external_lex_state = 2}, + [660] = {.lex_state = 218, .external_lex_state = 2}, + [661] = {.lex_state = 217, .external_lex_state = 2}, + [662] = {.lex_state = 218, .external_lex_state = 2}, + [663] = {.lex_state = 218, .external_lex_state = 2}, + [664] = {.lex_state = 218, .external_lex_state = 2}, + [665] = {.lex_state = 218, .external_lex_state = 2}, + [666] = {.lex_state = 218, .external_lex_state = 2}, + [667] = {.lex_state = 218, .external_lex_state = 2}, + [668] = {.lex_state = 218, .external_lex_state = 2}, + [669] = {.lex_state = 218, .external_lex_state = 2}, + [670] = {.lex_state = 158, .external_lex_state = 2}, + [671] = {.lex_state = 217, .external_lex_state = 2}, + [672] = {.lex_state = 217, .external_lex_state = 2}, + [673] = {.lex_state = 217, .external_lex_state = 2}, + [674] = {.lex_state = 217, .external_lex_state = 2}, + [675] = {.lex_state = 217, .external_lex_state = 2}, + [676] = {.lex_state = 217, .external_lex_state = 2}, + [677] = {.lex_state = 217, .external_lex_state = 2}, + [678] = {.lex_state = 217, .external_lex_state = 2}, + [679] = {.lex_state = 217, .external_lex_state = 2}, + [680] = {.lex_state = 171, .external_lex_state = 2}, + [681] = {.lex_state = 217, .external_lex_state = 2}, + [682] = {.lex_state = 217, .external_lex_state = 2}, + [683] = {.lex_state = 217, .external_lex_state = 2}, + [684] = {.lex_state = 217, .external_lex_state = 2}, + [685] = {.lex_state = 217, .external_lex_state = 2}, + [686] = {.lex_state = 217, .external_lex_state = 2}, + [687] = {.lex_state = 217, .external_lex_state = 2}, + [688] = {.lex_state = 217, .external_lex_state = 2}, + [689] = {.lex_state = 217, .external_lex_state = 2}, + [690] = {.lex_state = 217, .external_lex_state = 2}, + [691] = {.lex_state = 217, .external_lex_state = 2}, + [692] = {.lex_state = 217, .external_lex_state = 2}, + [693] = {.lex_state = 217, .external_lex_state = 2}, + [694] = {.lex_state = 217, .external_lex_state = 2}, + [695] = {.lex_state = 217, .external_lex_state = 2}, + [696] = {.lex_state = 217, .external_lex_state = 2}, + [697] = {.lex_state = 217, .external_lex_state = 2}, + [698] = {.lex_state = 217, .external_lex_state = 2}, + [699] = {.lex_state = 217, .external_lex_state = 2}, + [700] = {.lex_state = 217, .external_lex_state = 2}, + [701] = {.lex_state = 171, .external_lex_state = 2}, + [702] = {.lex_state = 217, .external_lex_state = 2}, + [703] = {.lex_state = 217, .external_lex_state = 2}, + [704] = {.lex_state = 217, .external_lex_state = 2}, + [705] = {.lex_state = 217, .external_lex_state = 2}, + [706] = {.lex_state = 217, .external_lex_state = 2}, + [707] = {.lex_state = 217, .external_lex_state = 2}, + [708] = {.lex_state = 217, .external_lex_state = 2}, + [709] = {.lex_state = 217, .external_lex_state = 2}, + [710] = {.lex_state = 217, .external_lex_state = 2}, + [711] = {.lex_state = 217, .external_lex_state = 2}, + [712] = {.lex_state = 217, .external_lex_state = 2}, + [713] = {.lex_state = 217, .external_lex_state = 2}, + [714] = {.lex_state = 217, .external_lex_state = 2}, + [715] = {.lex_state = 217, .external_lex_state = 2}, + [716] = {.lex_state = 217, .external_lex_state = 2}, + [717] = {.lex_state = 217, .external_lex_state = 2}, + [718] = {.lex_state = 217, .external_lex_state = 2}, + [719] = {.lex_state = 217, .external_lex_state = 2}, + [720] = {.lex_state = 217, .external_lex_state = 2}, + [721] = {.lex_state = 217, .external_lex_state = 2}, + [722] = {.lex_state = 217, .external_lex_state = 2}, + [723] = {.lex_state = 217, .external_lex_state = 2}, + [724] = {.lex_state = 32, .external_lex_state = 2}, + [725] = {.lex_state = 217, .external_lex_state = 2}, + [726] = {.lex_state = 217, .external_lex_state = 2}, + [727] = {.lex_state = 217, .external_lex_state = 2}, + [728] = {.lex_state = 217, .external_lex_state = 2}, + [729] = {.lex_state = 217, .external_lex_state = 2}, + [730] = {.lex_state = 217, .external_lex_state = 2}, + [731] = {.lex_state = 217, .external_lex_state = 2}, + [732] = {.lex_state = 217, .external_lex_state = 2}, + [733] = {.lex_state = 217, .external_lex_state = 2}, + [734] = {.lex_state = 217, .external_lex_state = 2}, + [735] = {.lex_state = 217, .external_lex_state = 2}, + [736] = {.lex_state = 217, .external_lex_state = 2}, + [737] = {.lex_state = 217, .external_lex_state = 2}, + [738] = {.lex_state = 217, .external_lex_state = 2}, + [739] = {.lex_state = 217, .external_lex_state = 2}, + [740] = {.lex_state = 217, .external_lex_state = 2}, + [741] = {.lex_state = 217, .external_lex_state = 2}, + [742] = {.lex_state = 217, .external_lex_state = 2}, + [743] = {.lex_state = 217, .external_lex_state = 2}, + [744] = {.lex_state = 217, .external_lex_state = 2}, + [745] = {.lex_state = 217, .external_lex_state = 2}, + [746] = {.lex_state = 217, .external_lex_state = 2}, + [747] = {.lex_state = 217, .external_lex_state = 2}, + [748] = {.lex_state = 32, .external_lex_state = 2}, + [749] = {.lex_state = 38, .external_lex_state = 2}, + [750] = {.lex_state = 32, .external_lex_state = 2}, + [751] = {.lex_state = 38, .external_lex_state = 2}, + [752] = {.lex_state = 38, .external_lex_state = 2}, + [753] = {.lex_state = 38, .external_lex_state = 2}, + [754] = {.lex_state = 45, .external_lex_state = 2}, + [755] = {.lex_state = 45, .external_lex_state = 2}, + [756] = {.lex_state = 38, .external_lex_state = 2}, + [757] = {.lex_state = 1703, .external_lex_state = 2}, + [758] = {.lex_state = 1703, .external_lex_state = 2}, + [759] = {.lex_state = 1703, .external_lex_state = 2}, + [760] = {.lex_state = 1703, .external_lex_state = 2}, + [761] = {.lex_state = 1703, .external_lex_state = 2}, + [762] = {.lex_state = 38, .external_lex_state = 2}, + [763] = {.lex_state = 38, .external_lex_state = 2}, + [764] = {.lex_state = 1703, .external_lex_state = 2}, + [765] = {.lex_state = 1703, .external_lex_state = 2}, + [766] = {.lex_state = 1703, .external_lex_state = 2}, + [767] = {.lex_state = 1703, .external_lex_state = 2}, + [768] = {.lex_state = 3120}, + [769] = {.lex_state = 3125}, + [770] = {.lex_state = 38, .external_lex_state = 2}, + [771] = {.lex_state = 38, .external_lex_state = 2}, + [772] = {.lex_state = 1703, .external_lex_state = 2}, + [773] = {.lex_state = 1703, .external_lex_state = 2}, + [774] = {.lex_state = 1703, .external_lex_state = 2}, + [775] = {.lex_state = 3110}, + [776] = {.lex_state = 3112}, + [777] = {.lex_state = 3126}, + [778] = {.lex_state = 3126}, + [779] = {.lex_state = 3128}, + [780] = {.lex_state = 1703, .external_lex_state = 2}, + [781] = {.lex_state = 3121}, + [782] = {.lex_state = 1703, .external_lex_state = 2}, + [783] = {.lex_state = 1703, .external_lex_state = 2}, + [784] = {.lex_state = 3260}, + [785] = {.lex_state = 3262}, + [786] = {.lex_state = 3127}, + [787] = {.lex_state = 3264}, + [788] = {.lex_state = 3127}, + [789] = {.lex_state = 3130}, + [790] = {.lex_state = 3127}, + [791] = {.lex_state = 3127}, + [792] = {.lex_state = 3127}, + [793] = {.lex_state = 3130}, + [794] = {.lex_state = 3114}, + [795] = {.lex_state = 3264}, + [796] = {.lex_state = 3260}, + [797] = {.lex_state = 3262}, + [798] = {.lex_state = 3114}, + [799] = {.lex_state = 3123}, + [800] = {.lex_state = 3266}, + [801] = {.lex_state = 3116}, + [802] = {.lex_state = 3132}, + [803] = {.lex_state = 3132}, + [804] = {.lex_state = 3116}, + [805] = {.lex_state = 3132}, + [806] = {.lex_state = 3132}, + [807] = {.lex_state = 3266}, + [808] = {.lex_state = 3266}, + [809] = {.lex_state = 3264}, + [810] = {.lex_state = 3116}, + [811] = {.lex_state = 3134}, + [812] = {.lex_state = 3116}, + [813] = {.lex_state = 3132}, + [814] = {.lex_state = 3116}, + [815] = {.lex_state = 3266}, + [816] = {.lex_state = 3266}, + [817] = {.lex_state = 3264}, + [818] = {.lex_state = 3266}, + [819] = {.lex_state = 3266}, + [820] = {.lex_state = 3266}, + [821] = {.lex_state = 3266}, + [822] = {.lex_state = 3136}, + [823] = {.lex_state = 3136}, + [824] = {.lex_state = 3266}, + [825] = {.lex_state = 45, .external_lex_state = 2}, + [826] = {.lex_state = 3138}, + [827] = {.lex_state = 45, .external_lex_state = 2}, + [828] = {.lex_state = 45, .external_lex_state = 2}, + [829] = {.lex_state = 3138}, + [830] = {.lex_state = 45, .external_lex_state = 2}, + [831] = {.lex_state = 3138}, + [832] = {.lex_state = 45, .external_lex_state = 2}, + [833] = {.lex_state = 45, .external_lex_state = 2}, + [834] = {.lex_state = 45, .external_lex_state = 2}, + [835] = {.lex_state = 45, .external_lex_state = 2}, + [836] = {.lex_state = 45, .external_lex_state = 2}, + [837] = {.lex_state = 45, .external_lex_state = 2}, + [838] = {.lex_state = 45, .external_lex_state = 2}, + [839] = {.lex_state = 45, .external_lex_state = 2}, + [840] = {.lex_state = 45, .external_lex_state = 2}, + [841] = {.lex_state = 3138}, + [842] = {.lex_state = 45, .external_lex_state = 2}, + [843] = {.lex_state = 45, .external_lex_state = 2}, + [844] = {.lex_state = 45, .external_lex_state = 2}, + [845] = {.lex_state = 45, .external_lex_state = 2}, + [846] = {.lex_state = 45, .external_lex_state = 2}, + [847] = {.lex_state = 45, .external_lex_state = 2}, + [848] = {.lex_state = 3138}, + [849] = {.lex_state = 45, .external_lex_state = 2}, + [850] = {.lex_state = 45, .external_lex_state = 2}, + [851] = {.lex_state = 3140}, + [852] = {.lex_state = 3268}, + [853] = {.lex_state = 3268}, + [854] = {.lex_state = 3140}, + [855] = {.lex_state = 3140}, + [856] = {.lex_state = 3118}, + [857] = {.lex_state = 3140}, + [858] = {.lex_state = 3118}, + [859] = {.lex_state = 45, .external_lex_state = 2}, + [860] = {.lex_state = 45, .external_lex_state = 2}, + [861] = {.lex_state = 3268}, + [862] = {.lex_state = 3268}, + [863] = {.lex_state = 45, .external_lex_state = 2}, + [864] = {.lex_state = 45, .external_lex_state = 2}, + [865] = {.lex_state = 45, .external_lex_state = 2}, + [866] = {.lex_state = 45, .external_lex_state = 2}, + [867] = {.lex_state = 45, .external_lex_state = 2}, + [868] = {.lex_state = 45, .external_lex_state = 2}, + [869] = {.lex_state = 45, .external_lex_state = 2}, + [870] = {.lex_state = 45, .external_lex_state = 2}, + [871] = {.lex_state = 45, .external_lex_state = 2}, + [872] = {.lex_state = 45, .external_lex_state = 2}, + [873] = {.lex_state = 45, .external_lex_state = 2}, + [874] = {.lex_state = 45, .external_lex_state = 2}, + [875] = {.lex_state = 45, .external_lex_state = 2}, + [876] = {.lex_state = 45, .external_lex_state = 2}, + [877] = {.lex_state = 45, .external_lex_state = 2}, + [878] = {.lex_state = 45, .external_lex_state = 2}, + [879] = {.lex_state = 3142}, + [880] = {.lex_state = 3142}, + [881] = {.lex_state = 44, .external_lex_state = 2}, + [882] = {.lex_state = 44, .external_lex_state = 2}, + [883] = {.lex_state = 44, .external_lex_state = 2}, + [884] = {.lex_state = 44, .external_lex_state = 2}, + [885] = {.lex_state = 44, .external_lex_state = 2}, + [886] = {.lex_state = 44, .external_lex_state = 2}, + [887] = {.lex_state = 44, .external_lex_state = 2}, + [888] = {.lex_state = 44, .external_lex_state = 2}, + [889] = {.lex_state = 45, .external_lex_state = 2}, + [890] = {.lex_state = 44, .external_lex_state = 2}, + [891] = {.lex_state = 44, .external_lex_state = 2}, + [892] = {.lex_state = 44, .external_lex_state = 2}, + [893] = {.lex_state = 44, .external_lex_state = 2}, + [894] = {.lex_state = 44, .external_lex_state = 2}, + [895] = {.lex_state = 44, .external_lex_state = 2}, + [896] = {.lex_state = 44, .external_lex_state = 2}, + [897] = {.lex_state = 44, .external_lex_state = 2}, + [898] = {.lex_state = 44, .external_lex_state = 2}, + [899] = {.lex_state = 44, .external_lex_state = 2}, + [900] = {.lex_state = 44, .external_lex_state = 2}, + [901] = {.lex_state = 44, .external_lex_state = 2}, + [902] = {.lex_state = 44, .external_lex_state = 2}, + [903] = {.lex_state = 44, .external_lex_state = 2}, + [904] = {.lex_state = 44, .external_lex_state = 2}, + [905] = {.lex_state = 44, .external_lex_state = 2}, + [906] = {.lex_state = 44, .external_lex_state = 2}, + [907] = {.lex_state = 44, .external_lex_state = 2}, + [908] = {.lex_state = 44, .external_lex_state = 2}, + [909] = {.lex_state = 44, .external_lex_state = 2}, + [910] = {.lex_state = 44, .external_lex_state = 2}, + [911] = {.lex_state = 44, .external_lex_state = 2}, + [912] = {.lex_state = 44, .external_lex_state = 2}, + [913] = {.lex_state = 44, .external_lex_state = 2}, + [914] = {.lex_state = 44, .external_lex_state = 2}, + [915] = {.lex_state = 44, .external_lex_state = 2}, [916] = {.lex_state = 45, .external_lex_state = 2}, [917] = {.lex_state = 45, .external_lex_state = 2}, - [918] = {.lex_state = 45, .external_lex_state = 2}, - [919] = {.lex_state = 45, .external_lex_state = 2}, - [920] = {.lex_state = 45, .external_lex_state = 2}, - [921] = {.lex_state = 45, .external_lex_state = 2}, - [922] = {.lex_state = 45, .external_lex_state = 2}, - [923] = {.lex_state = 45, .external_lex_state = 2}, - [924] = {.lex_state = 45, .external_lex_state = 2}, - [925] = {.lex_state = 45, .external_lex_state = 2}, - [926] = {.lex_state = 45, .external_lex_state = 2}, - [927] = {.lex_state = 45, .external_lex_state = 2}, - [928] = {.lex_state = 45, .external_lex_state = 2}, - [929] = {.lex_state = 45, .external_lex_state = 2}, - [930] = {.lex_state = 45, .external_lex_state = 2}, - [931] = {.lex_state = 45, .external_lex_state = 2}, - [932] = {.lex_state = 45, .external_lex_state = 2}, - [933] = {.lex_state = 45, .external_lex_state = 2}, - [934] = {.lex_state = 45, .external_lex_state = 2}, - [935] = {.lex_state = 45, .external_lex_state = 2}, - [936] = {.lex_state = 45, .external_lex_state = 2}, - [937] = {.lex_state = 45, .external_lex_state = 2}, - [938] = {.lex_state = 45, .external_lex_state = 2}, - [939] = {.lex_state = 45, .external_lex_state = 2}, - [940] = {.lex_state = 45, .external_lex_state = 2}, - [941] = {.lex_state = 45, .external_lex_state = 2}, - [942] = {.lex_state = 45, .external_lex_state = 2}, - [943] = {.lex_state = 45, .external_lex_state = 2}, - [944] = {.lex_state = 45, .external_lex_state = 2}, - [945] = {.lex_state = 45, .external_lex_state = 2}, - [946] = {.lex_state = 45, .external_lex_state = 2}, - [947] = {.lex_state = 45, .external_lex_state = 2}, - [948] = {.lex_state = 45, .external_lex_state = 2}, - [949] = {.lex_state = 45, .external_lex_state = 2}, - [950] = {.lex_state = 45, .external_lex_state = 2}, - [951] = {.lex_state = 45, .external_lex_state = 2}, - [952] = {.lex_state = 45, .external_lex_state = 2}, - [953] = {.lex_state = 45, .external_lex_state = 2}, - [954] = {.lex_state = 45, .external_lex_state = 2}, - [955] = {.lex_state = 45, .external_lex_state = 2}, - [956] = {.lex_state = 45, .external_lex_state = 2}, - [957] = {.lex_state = 45, .external_lex_state = 2}, - [958] = {.lex_state = 45, .external_lex_state = 2}, - [959] = {.lex_state = 45, .external_lex_state = 2}, - [960] = {.lex_state = 45, .external_lex_state = 2}, - [961] = {.lex_state = 45, .external_lex_state = 2}, - [962] = {.lex_state = 45, .external_lex_state = 2}, - [963] = {.lex_state = 45, .external_lex_state = 2}, - [964] = {.lex_state = 45, .external_lex_state = 2}, - [965] = {.lex_state = 45, .external_lex_state = 2}, - [966] = {.lex_state = 45, .external_lex_state = 2}, - [967] = {.lex_state = 45, .external_lex_state = 2}, - [968] = {.lex_state = 45, .external_lex_state = 2}, - [969] = {.lex_state = 45, .external_lex_state = 2}, - [970] = {.lex_state = 45, .external_lex_state = 2}, - [971] = {.lex_state = 45, .external_lex_state = 2}, - [972] = {.lex_state = 45, .external_lex_state = 2}, - [973] = {.lex_state = 46, .external_lex_state = 2}, - [974] = {.lex_state = 45, .external_lex_state = 2}, - [975] = {.lex_state = 45, .external_lex_state = 2}, - [976] = {.lex_state = 45, .external_lex_state = 2}, - [977] = {.lex_state = 45, .external_lex_state = 2}, - [978] = {.lex_state = 45, .external_lex_state = 2}, - [979] = {.lex_state = 45, .external_lex_state = 2}, - [980] = {.lex_state = 45, .external_lex_state = 2}, - [981] = {.lex_state = 45, .external_lex_state = 2}, - [982] = {.lex_state = 45, .external_lex_state = 2}, - [983] = {.lex_state = 45, .external_lex_state = 2}, - [984] = {.lex_state = 45, .external_lex_state = 2}, - [985] = {.lex_state = 45, .external_lex_state = 2}, - [986] = {.lex_state = 45, .external_lex_state = 2}, - [987] = {.lex_state = 45, .external_lex_state = 2}, - [988] = {.lex_state = 45, .external_lex_state = 2}, - [989] = {.lex_state = 45, .external_lex_state = 2}, - [990] = {.lex_state = 45, .external_lex_state = 2}, - [991] = {.lex_state = 45, .external_lex_state = 2}, - [992] = {.lex_state = 45, .external_lex_state = 2}, - [993] = {.lex_state = 45, .external_lex_state = 2}, - [994] = {.lex_state = 45, .external_lex_state = 2}, - [995] = {.lex_state = 45, .external_lex_state = 2}, - [996] = {.lex_state = 45, .external_lex_state = 2}, - [997] = {.lex_state = 45, .external_lex_state = 2}, - [998] = {.lex_state = 45, .external_lex_state = 2}, - [999] = {.lex_state = 45, .external_lex_state = 2}, - [1000] = {.lex_state = 45, .external_lex_state = 2}, - [1001] = {.lex_state = 45, .external_lex_state = 2}, - [1002] = {.lex_state = 45, .external_lex_state = 2}, - [1003] = {.lex_state = 45, .external_lex_state = 2}, - [1004] = {.lex_state = 45, .external_lex_state = 2}, - [1005] = {.lex_state = 45, .external_lex_state = 2}, - [1006] = {.lex_state = 45, .external_lex_state = 2}, - [1007] = {.lex_state = 45, .external_lex_state = 2}, - [1008] = {.lex_state = 45, .external_lex_state = 2}, - [1009] = {.lex_state = 45, .external_lex_state = 2}, - [1010] = {.lex_state = 45, .external_lex_state = 2}, - [1011] = {.lex_state = 45, .external_lex_state = 2}, - [1012] = {.lex_state = 45, .external_lex_state = 2}, - [1013] = {.lex_state = 45, .external_lex_state = 2}, - [1014] = {.lex_state = 45, .external_lex_state = 2}, - [1015] = {.lex_state = 45, .external_lex_state = 2}, - [1016] = {.lex_state = 45, .external_lex_state = 2}, - [1017] = {.lex_state = 45, .external_lex_state = 2}, - [1018] = {.lex_state = 45, .external_lex_state = 2}, - [1019] = {.lex_state = 45, .external_lex_state = 2}, - [1020] = {.lex_state = 45, .external_lex_state = 2}, - [1021] = {.lex_state = 45, .external_lex_state = 2}, - [1022] = {.lex_state = 45, .external_lex_state = 2}, - [1023] = {.lex_state = 45, .external_lex_state = 2}, - [1024] = {.lex_state = 45, .external_lex_state = 2}, - [1025] = {.lex_state = 45, .external_lex_state = 2}, - [1026] = {.lex_state = 45, .external_lex_state = 2}, - [1027] = {.lex_state = 45, .external_lex_state = 2}, - [1028] = {.lex_state = 45, .external_lex_state = 2}, - [1029] = {.lex_state = 45, .external_lex_state = 2}, - [1030] = {.lex_state = 45, .external_lex_state = 2}, - [1031] = {.lex_state = 45, .external_lex_state = 2}, - [1032] = {.lex_state = 45, .external_lex_state = 2}, - [1033] = {.lex_state = 45, .external_lex_state = 2}, - [1034] = {.lex_state = 45, .external_lex_state = 2}, - [1035] = {.lex_state = 45, .external_lex_state = 2}, - [1036] = {.lex_state = 45, .external_lex_state = 2}, - [1037] = {.lex_state = 45, .external_lex_state = 2}, - [1038] = {.lex_state = 45, .external_lex_state = 2}, - [1039] = {.lex_state = 45, .external_lex_state = 2}, - [1040] = {.lex_state = 45, .external_lex_state = 2}, - [1041] = {.lex_state = 45, .external_lex_state = 2}, - [1042] = {.lex_state = 45, .external_lex_state = 2}, - [1043] = {.lex_state = 45, .external_lex_state = 2}, - [1044] = {.lex_state = 45, .external_lex_state = 2}, - [1045] = {.lex_state = 45, .external_lex_state = 2}, - [1046] = {.lex_state = 45, .external_lex_state = 2}, - [1047] = {.lex_state = 45, .external_lex_state = 2}, - [1048] = {.lex_state = 46, .external_lex_state = 2}, - [1049] = {.lex_state = 46, .external_lex_state = 2}, - [1050] = {.lex_state = 45, .external_lex_state = 2}, - [1051] = {.lex_state = 45, .external_lex_state = 2}, - [1052] = {.lex_state = 45, .external_lex_state = 2}, + [918] = {.lex_state = 44, .external_lex_state = 2}, + [919] = {.lex_state = 44, .external_lex_state = 2}, + [920] = {.lex_state = 44, .external_lex_state = 2}, + [921] = {.lex_state = 44, .external_lex_state = 2}, + [922] = {.lex_state = 44, .external_lex_state = 2}, + [923] = {.lex_state = 44, .external_lex_state = 2}, + [924] = {.lex_state = 44, .external_lex_state = 2}, + [925] = {.lex_state = 44, .external_lex_state = 2}, + [926] = {.lex_state = 44, .external_lex_state = 2}, + [927] = {.lex_state = 44, .external_lex_state = 2}, + [928] = {.lex_state = 44, .external_lex_state = 2}, + [929] = {.lex_state = 44, .external_lex_state = 2}, + [930] = {.lex_state = 44, .external_lex_state = 2}, + [931] = {.lex_state = 44, .external_lex_state = 2}, + [932] = {.lex_state = 44, .external_lex_state = 2}, + [933] = {.lex_state = 44, .external_lex_state = 2}, + [934] = {.lex_state = 44, .external_lex_state = 2}, + [935] = {.lex_state = 44, .external_lex_state = 2}, + [936] = {.lex_state = 44, .external_lex_state = 2}, + [937] = {.lex_state = 44, .external_lex_state = 2}, + [938] = {.lex_state = 44, .external_lex_state = 2}, + [939] = {.lex_state = 44, .external_lex_state = 2}, + [940] = {.lex_state = 44, .external_lex_state = 2}, + [941] = {.lex_state = 44, .external_lex_state = 2}, + [942] = {.lex_state = 44, .external_lex_state = 2}, + [943] = {.lex_state = 44, .external_lex_state = 2}, + [944] = {.lex_state = 44, .external_lex_state = 2}, + [945] = {.lex_state = 44, .external_lex_state = 2}, + [946] = {.lex_state = 44, .external_lex_state = 2}, + [947] = {.lex_state = 44, .external_lex_state = 2}, + [948] = {.lex_state = 44, .external_lex_state = 2}, + [949] = {.lex_state = 44, .external_lex_state = 2}, + [950] = {.lex_state = 44, .external_lex_state = 2}, + [951] = {.lex_state = 44, .external_lex_state = 2}, + [952] = {.lex_state = 44, .external_lex_state = 2}, + [953] = {.lex_state = 44, .external_lex_state = 2}, + [954] = {.lex_state = 44, .external_lex_state = 2}, + [955] = {.lex_state = 44, .external_lex_state = 2}, + [956] = {.lex_state = 44, .external_lex_state = 2}, + [957] = {.lex_state = 44, .external_lex_state = 2}, + [958] = {.lex_state = 44, .external_lex_state = 2}, + [959] = {.lex_state = 44, .external_lex_state = 2}, + [960] = {.lex_state = 44, .external_lex_state = 2}, + [961] = {.lex_state = 44, .external_lex_state = 2}, + [962] = {.lex_state = 44, .external_lex_state = 2}, + [963] = {.lex_state = 44, .external_lex_state = 2}, + [964] = {.lex_state = 44, .external_lex_state = 2}, + [965] = {.lex_state = 44, .external_lex_state = 2}, + [966] = {.lex_state = 44, .external_lex_state = 2}, + [967] = {.lex_state = 44, .external_lex_state = 2}, + [968] = {.lex_state = 44, .external_lex_state = 2}, + [969] = {.lex_state = 44, .external_lex_state = 2}, + [970] = {.lex_state = 44, .external_lex_state = 2}, + [971] = {.lex_state = 44, .external_lex_state = 2}, + [972] = {.lex_state = 44, .external_lex_state = 2}, + [973] = {.lex_state = 44, .external_lex_state = 2}, + [974] = {.lex_state = 44, .external_lex_state = 2}, + [975] = {.lex_state = 44, .external_lex_state = 2}, + [976] = {.lex_state = 44, .external_lex_state = 2}, + [977] = {.lex_state = 44, .external_lex_state = 2}, + [978] = {.lex_state = 44, .external_lex_state = 2}, + [979] = {.lex_state = 44, .external_lex_state = 2}, + [980] = {.lex_state = 44, .external_lex_state = 2}, + [981] = {.lex_state = 44, .external_lex_state = 2}, + [982] = {.lex_state = 44, .external_lex_state = 2}, + [983] = {.lex_state = 44, .external_lex_state = 2}, + [984] = {.lex_state = 44, .external_lex_state = 2}, + [985] = {.lex_state = 44, .external_lex_state = 2}, + [986] = {.lex_state = 44, .external_lex_state = 2}, + [987] = {.lex_state = 44, .external_lex_state = 2}, + [988] = {.lex_state = 44, .external_lex_state = 2}, + [989] = {.lex_state = 44, .external_lex_state = 2}, + [990] = {.lex_state = 44, .external_lex_state = 2}, + [991] = {.lex_state = 44, .external_lex_state = 2}, + [992] = {.lex_state = 44, .external_lex_state = 2}, + [993] = {.lex_state = 44, .external_lex_state = 2}, + [994] = {.lex_state = 44, .external_lex_state = 2}, + [995] = {.lex_state = 44, .external_lex_state = 2}, + [996] = {.lex_state = 44, .external_lex_state = 2}, + [997] = {.lex_state = 44, .external_lex_state = 2}, + [998] = {.lex_state = 44, .external_lex_state = 2}, + [999] = {.lex_state = 44, .external_lex_state = 2}, + [1000] = {.lex_state = 44, .external_lex_state = 2}, + [1001] = {.lex_state = 44, .external_lex_state = 2}, + [1002] = {.lex_state = 44, .external_lex_state = 2}, + [1003] = {.lex_state = 44, .external_lex_state = 2}, + [1004] = {.lex_state = 44, .external_lex_state = 2}, + [1005] = {.lex_state = 44, .external_lex_state = 2}, + [1006] = {.lex_state = 44, .external_lex_state = 2}, + [1007] = {.lex_state = 44, .external_lex_state = 2}, + [1008] = {.lex_state = 44, .external_lex_state = 2}, + [1009] = {.lex_state = 44, .external_lex_state = 2}, + [1010] = {.lex_state = 44, .external_lex_state = 2}, + [1011] = {.lex_state = 44, .external_lex_state = 2}, + [1012] = {.lex_state = 44, .external_lex_state = 2}, + [1013] = {.lex_state = 44, .external_lex_state = 2}, + [1014] = {.lex_state = 44, .external_lex_state = 2}, + [1015] = {.lex_state = 44, .external_lex_state = 2}, + [1016] = {.lex_state = 44, .external_lex_state = 2}, + [1017] = {.lex_state = 44, .external_lex_state = 2}, + [1018] = {.lex_state = 44, .external_lex_state = 2}, + [1019] = {.lex_state = 44, .external_lex_state = 2}, + [1020] = {.lex_state = 44, .external_lex_state = 2}, + [1021] = {.lex_state = 44, .external_lex_state = 2}, + [1022] = {.lex_state = 44, .external_lex_state = 2}, + [1023] = {.lex_state = 44, .external_lex_state = 2}, + [1024] = {.lex_state = 44, .external_lex_state = 2}, + [1025] = {.lex_state = 44, .external_lex_state = 2}, + [1026] = {.lex_state = 44, .external_lex_state = 2}, + [1027] = {.lex_state = 44, .external_lex_state = 2}, + [1028] = {.lex_state = 44, .external_lex_state = 2}, + [1029] = {.lex_state = 44, .external_lex_state = 2}, + [1030] = {.lex_state = 44, .external_lex_state = 2}, + [1031] = {.lex_state = 44, .external_lex_state = 2}, + [1032] = {.lex_state = 44, .external_lex_state = 2}, + [1033] = {.lex_state = 44, .external_lex_state = 2}, + [1034] = {.lex_state = 44, .external_lex_state = 2}, + [1035] = {.lex_state = 44, .external_lex_state = 2}, + [1036] = {.lex_state = 44, .external_lex_state = 2}, + [1037] = {.lex_state = 44, .external_lex_state = 2}, + [1038] = {.lex_state = 44, .external_lex_state = 2}, + [1039] = {.lex_state = 44, .external_lex_state = 2}, + [1040] = {.lex_state = 43, .external_lex_state = 2}, + [1041] = {.lex_state = 44, .external_lex_state = 2}, + [1042] = {.lex_state = 44, .external_lex_state = 2}, + [1043] = {.lex_state = 44, .external_lex_state = 2}, + [1044] = {.lex_state = 44, .external_lex_state = 2}, + [1045] = {.lex_state = 44, .external_lex_state = 2}, + [1046] = {.lex_state = 44, .external_lex_state = 2}, + [1047] = {.lex_state = 44, .external_lex_state = 2}, + [1048] = {.lex_state = 44, .external_lex_state = 2}, + [1049] = {.lex_state = 44, .external_lex_state = 2}, + [1050] = {.lex_state = 44, .external_lex_state = 2}, + [1051] = {.lex_state = 44, .external_lex_state = 2}, + [1052] = {.lex_state = 44, .external_lex_state = 2}, [1053] = {.lex_state = 44, .external_lex_state = 2}, - [1054] = {.lex_state = 45, .external_lex_state = 2}, - [1055] = {.lex_state = 45, .external_lex_state = 2}, - [1056] = {.lex_state = 45, .external_lex_state = 2}, - [1057] = {.lex_state = 45, .external_lex_state = 2}, - [1058] = {.lex_state = 45, .external_lex_state = 2}, - [1059] = {.lex_state = 45, .external_lex_state = 2}, - [1060] = {.lex_state = 45, .external_lex_state = 2}, - [1061] = {.lex_state = 45, .external_lex_state = 2}, - [1062] = {.lex_state = 45, .external_lex_state = 2}, - [1063] = {.lex_state = 45, .external_lex_state = 2}, - [1064] = {.lex_state = 45, .external_lex_state = 2}, - [1065] = {.lex_state = 45, .external_lex_state = 2}, - [1066] = {.lex_state = 45, .external_lex_state = 2}, - [1067] = {.lex_state = 45, .external_lex_state = 2}, - [1068] = {.lex_state = 45, .external_lex_state = 2}, - [1069] = {.lex_state = 45, .external_lex_state = 2}, - [1070] = {.lex_state = 45, .external_lex_state = 2}, - [1071] = {.lex_state = 45, .external_lex_state = 2}, - [1072] = {.lex_state = 45, .external_lex_state = 2}, - [1073] = {.lex_state = 45, .external_lex_state = 2}, - [1074] = {.lex_state = 45, .external_lex_state = 2}, - [1075] = {.lex_state = 45, .external_lex_state = 2}, - [1076] = {.lex_state = 45, .external_lex_state = 2}, - [1077] = {.lex_state = 45, .external_lex_state = 2}, - [1078] = {.lex_state = 45, .external_lex_state = 2}, - [1079] = {.lex_state = 45, .external_lex_state = 2}, - [1080] = {.lex_state = 45, .external_lex_state = 2}, - [1081] = {.lex_state = 45, .external_lex_state = 2}, - [1082] = {.lex_state = 45, .external_lex_state = 2}, - [1083] = {.lex_state = 45, .external_lex_state = 2}, - [1084] = {.lex_state = 45, .external_lex_state = 2}, - [1085] = {.lex_state = 45, .external_lex_state = 2}, - [1086] = {.lex_state = 45, .external_lex_state = 2}, - [1087] = {.lex_state = 45, .external_lex_state = 2}, - [1088] = {.lex_state = 45, .external_lex_state = 2}, - [1089] = {.lex_state = 45, .external_lex_state = 2}, - [1090] = {.lex_state = 45, .external_lex_state = 2}, - [1091] = {.lex_state = 45, .external_lex_state = 2}, - [1092] = {.lex_state = 45, .external_lex_state = 2}, - [1093] = {.lex_state = 45, .external_lex_state = 2}, - [1094] = {.lex_state = 45, .external_lex_state = 2}, - [1095] = {.lex_state = 45, .external_lex_state = 2}, - [1096] = {.lex_state = 45, .external_lex_state = 2}, - [1097] = {.lex_state = 45, .external_lex_state = 2}, - [1098] = {.lex_state = 45, .external_lex_state = 2}, - [1099] = {.lex_state = 45, .external_lex_state = 2}, - [1100] = {.lex_state = 45, .external_lex_state = 2}, - [1101] = {.lex_state = 45, .external_lex_state = 2}, - [1102] = {.lex_state = 45, .external_lex_state = 2}, - [1103] = {.lex_state = 45, .external_lex_state = 2}, - [1104] = {.lex_state = 45, .external_lex_state = 2}, - [1105] = {.lex_state = 45, .external_lex_state = 2}, - [1106] = {.lex_state = 45, .external_lex_state = 2}, - [1107] = {.lex_state = 45, .external_lex_state = 2}, - [1108] = {.lex_state = 45, .external_lex_state = 2}, - [1109] = {.lex_state = 45, .external_lex_state = 2}, - [1110] = {.lex_state = 45, .external_lex_state = 2}, - [1111] = {.lex_state = 45, .external_lex_state = 2}, - [1112] = {.lex_state = 45, .external_lex_state = 2}, - [1113] = {.lex_state = 45, .external_lex_state = 2}, - [1114] = {.lex_state = 45, .external_lex_state = 2}, - [1115] = {.lex_state = 45, .external_lex_state = 2}, - [1116] = {.lex_state = 45, .external_lex_state = 2}, - [1117] = {.lex_state = 45, .external_lex_state = 2}, - [1118] = {.lex_state = 45, .external_lex_state = 2}, - [1119] = {.lex_state = 45, .external_lex_state = 2}, - [1120] = {.lex_state = 45, .external_lex_state = 2}, - [1121] = {.lex_state = 45, .external_lex_state = 2}, - [1122] = {.lex_state = 45, .external_lex_state = 2}, - [1123] = {.lex_state = 45, .external_lex_state = 2}, - [1124] = {.lex_state = 45, .external_lex_state = 2}, - [1125] = {.lex_state = 45, .external_lex_state = 2}, - [1126] = {.lex_state = 45, .external_lex_state = 2}, - [1127] = {.lex_state = 1694, .external_lex_state = 2}, - [1128] = {.lex_state = 45, .external_lex_state = 2}, - [1129] = {.lex_state = 45, .external_lex_state = 2}, - [1130] = {.lex_state = 45, .external_lex_state = 2}, - [1131] = {.lex_state = 1694, .external_lex_state = 2}, - [1132] = {.lex_state = 45, .external_lex_state = 2}, - [1133] = {.lex_state = 45, .external_lex_state = 2}, - [1134] = {.lex_state = 1694, .external_lex_state = 2}, - [1135] = {.lex_state = 1694, .external_lex_state = 2}, - [1136] = {.lex_state = 1694, .external_lex_state = 2}, - [1137] = {.lex_state = 45, .external_lex_state = 2}, - [1138] = {.lex_state = 45, .external_lex_state = 2}, - [1139] = {.lex_state = 38, .external_lex_state = 2}, - [1140] = {.lex_state = 45, .external_lex_state = 2}, - [1141] = {.lex_state = 45, .external_lex_state = 2}, - [1142] = {.lex_state = 38, .external_lex_state = 2}, - [1143] = {.lex_state = 45, .external_lex_state = 2}, - [1144] = {.lex_state = 1694, .external_lex_state = 2}, - [1145] = {.lex_state = 45, .external_lex_state = 2}, - [1146] = {.lex_state = 38, .external_lex_state = 2}, - [1147] = {.lex_state = 1694, .external_lex_state = 2}, - [1148] = {.lex_state = 38, .external_lex_state = 2}, - [1149] = {.lex_state = 220, .external_lex_state = 2}, - [1150] = {.lex_state = 40, .external_lex_state = 2}, - [1151] = {.lex_state = 220, .external_lex_state = 2}, - [1152] = {.lex_state = 38, .external_lex_state = 2}, - [1153] = {.lex_state = 33, .external_lex_state = 2}, - [1154] = {.lex_state = 3260}, + [1054] = {.lex_state = 44, .external_lex_state = 2}, + [1055] = {.lex_state = 44, .external_lex_state = 2}, + [1056] = {.lex_state = 44, .external_lex_state = 2}, + [1057] = {.lex_state = 44, .external_lex_state = 2}, + [1058] = {.lex_state = 44, .external_lex_state = 2}, + [1059] = {.lex_state = 44, .external_lex_state = 2}, + [1060] = {.lex_state = 44, .external_lex_state = 2}, + [1061] = {.lex_state = 44, .external_lex_state = 2}, + [1062] = {.lex_state = 44, .external_lex_state = 2}, + [1063] = {.lex_state = 44, .external_lex_state = 2}, + [1064] = {.lex_state = 44, .external_lex_state = 2}, + [1065] = {.lex_state = 44, .external_lex_state = 2}, + [1066] = {.lex_state = 44, .external_lex_state = 2}, + [1067] = {.lex_state = 44, .external_lex_state = 2}, + [1068] = {.lex_state = 44, .external_lex_state = 2}, + [1069] = {.lex_state = 44, .external_lex_state = 2}, + [1070] = {.lex_state = 44, .external_lex_state = 2}, + [1071] = {.lex_state = 44, .external_lex_state = 2}, + [1072] = {.lex_state = 44, .external_lex_state = 2}, + [1073] = {.lex_state = 44, .external_lex_state = 2}, + [1074] = {.lex_state = 44, .external_lex_state = 2}, + [1075] = {.lex_state = 44, .external_lex_state = 2}, + [1076] = {.lex_state = 44, .external_lex_state = 2}, + [1077] = {.lex_state = 44, .external_lex_state = 2}, + [1078] = {.lex_state = 1695, .external_lex_state = 2}, + [1079] = {.lex_state = 44, .external_lex_state = 2}, + [1080] = {.lex_state = 44, .external_lex_state = 2}, + [1081] = {.lex_state = 44, .external_lex_state = 2}, + [1082] = {.lex_state = 44, .external_lex_state = 2}, + [1083] = {.lex_state = 44, .external_lex_state = 2}, + [1084] = {.lex_state = 44, .external_lex_state = 2}, + [1085] = {.lex_state = 44, .external_lex_state = 2}, + [1086] = {.lex_state = 44, .external_lex_state = 2}, + [1087] = {.lex_state = 44, .external_lex_state = 2}, + [1088] = {.lex_state = 44, .external_lex_state = 2}, + [1089] = {.lex_state = 44, .external_lex_state = 2}, + [1090] = {.lex_state = 44, .external_lex_state = 2}, + [1091] = {.lex_state = 44, .external_lex_state = 2}, + [1092] = {.lex_state = 44, .external_lex_state = 2}, + [1093] = {.lex_state = 44, .external_lex_state = 2}, + [1094] = {.lex_state = 44, .external_lex_state = 2}, + [1095] = {.lex_state = 44, .external_lex_state = 2}, + [1096] = {.lex_state = 44, .external_lex_state = 2}, + [1097] = {.lex_state = 44, .external_lex_state = 2}, + [1098] = {.lex_state = 44, .external_lex_state = 2}, + [1099] = {.lex_state = 44, .external_lex_state = 2}, + [1100] = {.lex_state = 44, .external_lex_state = 2}, + [1101] = {.lex_state = 44, .external_lex_state = 2}, + [1102] = {.lex_state = 44, .external_lex_state = 2}, + [1103] = {.lex_state = 44, .external_lex_state = 2}, + [1104] = {.lex_state = 44, .external_lex_state = 2}, + [1105] = {.lex_state = 44, .external_lex_state = 2}, + [1106] = {.lex_state = 44, .external_lex_state = 2}, + [1107] = {.lex_state = 44, .external_lex_state = 2}, + [1108] = {.lex_state = 44, .external_lex_state = 2}, + [1109] = {.lex_state = 44, .external_lex_state = 2}, + [1110] = {.lex_state = 44, .external_lex_state = 2}, + [1111] = {.lex_state = 44, .external_lex_state = 2}, + [1112] = {.lex_state = 44, .external_lex_state = 2}, + [1113] = {.lex_state = 44, .external_lex_state = 2}, + [1114] = {.lex_state = 44, .external_lex_state = 2}, + [1115] = {.lex_state = 44, .external_lex_state = 2}, + [1116] = {.lex_state = 44, .external_lex_state = 2}, + [1117] = {.lex_state = 44, .external_lex_state = 2}, + [1118] = {.lex_state = 44, .external_lex_state = 2}, + [1119] = {.lex_state = 1695, .external_lex_state = 2}, + [1120] = {.lex_state = 44, .external_lex_state = 2}, + [1121] = {.lex_state = 1695, .external_lex_state = 2}, + [1122] = {.lex_state = 1695, .external_lex_state = 2}, + [1123] = {.lex_state = 1695, .external_lex_state = 2}, + [1124] = {.lex_state = 44, .external_lex_state = 2}, + [1125] = {.lex_state = 44, .external_lex_state = 2}, + [1126] = {.lex_state = 44, .external_lex_state = 2}, + [1127] = {.lex_state = 1695, .external_lex_state = 2}, + [1128] = {.lex_state = 44, .external_lex_state = 2}, + [1129] = {.lex_state = 44, .external_lex_state = 2}, + [1130] = {.lex_state = 37, .external_lex_state = 2}, + [1131] = {.lex_state = 44, .external_lex_state = 2}, + [1132] = {.lex_state = 37, .external_lex_state = 2}, + [1133] = {.lex_state = 39, .external_lex_state = 2}, + [1134] = {.lex_state = 221, .external_lex_state = 2}, + [1135] = {.lex_state = 37, .external_lex_state = 2}, + [1136] = {.lex_state = 37, .external_lex_state = 2}, + [1137] = {.lex_state = 37, .external_lex_state = 2}, + [1138] = {.lex_state = 221, .external_lex_state = 2}, + [1139] = {.lex_state = 1695, .external_lex_state = 2}, + [1140] = {.lex_state = 33, .external_lex_state = 2}, + [1141] = {.lex_state = 3113}, + [1142] = {.lex_state = 37, .external_lex_state = 2}, + [1143] = {.lex_state = 3111}, + [1144] = {.lex_state = 3129}, + [1145] = {.lex_state = 33, .external_lex_state = 2}, + [1146] = {.lex_state = 3263}, + [1147] = {.lex_state = 3261}, + [1148] = {.lex_state = 3122}, + [1149] = {.lex_state = 33, .external_lex_state = 2}, + [1150] = {.lex_state = 46, .external_lex_state = 2}, + [1151] = {.lex_state = 39, .external_lex_state = 2}, + [1152] = {.lex_state = 46, .external_lex_state = 2}, + [1153] = {.lex_state = 46, .external_lex_state = 2}, + [1154] = {.lex_state = 46, .external_lex_state = 2}, [1155] = {.lex_state = 33, .external_lex_state = 2}, - [1156] = {.lex_state = 3116}, - [1157] = {.lex_state = 47, .external_lex_state = 2}, - [1158] = {.lex_state = 38, .external_lex_state = 2}, - [1159] = {.lex_state = 3123}, - [1160] = {.lex_state = 40, .external_lex_state = 2}, - [1161] = {.lex_state = 33, .external_lex_state = 2}, - [1162] = {.lex_state = 3136}, - [1163] = {.lex_state = 47, .external_lex_state = 2}, - [1164] = {.lex_state = 47, .external_lex_state = 2}, - [1165] = {.lex_state = 3266}, + [1156] = {.lex_state = 3131}, + [1157] = {.lex_state = 33, .external_lex_state = 2}, + [1158] = {.lex_state = 3263}, + [1159] = {.lex_state = 3261}, + [1160] = {.lex_state = 3115}, + [1161] = {.lex_state = 3265}, + [1162] = {.lex_state = 3115}, + [1163] = {.lex_state = 3265}, + [1164] = {.lex_state = 33, .external_lex_state = 2}, + [1165] = {.lex_state = 33, .external_lex_state = 2}, [1166] = {.lex_state = 33, .external_lex_state = 2}, - [1167] = {.lex_state = 3110}, - [1168] = {.lex_state = 47, .external_lex_state = 2}, - [1169] = {.lex_state = 33, .external_lex_state = 2}, - [1170] = {.lex_state = 33, .external_lex_state = 2}, - [1171] = {.lex_state = 3260}, - [1172] = {.lex_state = 3266}, - [1173] = {.lex_state = 33, .external_lex_state = 2}, - [1174] = {.lex_state = 33, .external_lex_state = 2}, - [1175] = {.lex_state = 3262}, - [1176] = {.lex_state = 3262}, - [1177] = {.lex_state = 3112}, - [1178] = {.lex_state = 3112}, - [1179] = {.lex_state = 3125}, - [1180] = {.lex_state = 3125}, - [1181] = {.lex_state = 3114}, - [1182] = {.lex_state = 3138}, - [1183] = {.lex_state = 47, .external_lex_state = 2}, - [1184] = {.lex_state = 47, .external_lex_state = 2}, - [1185] = {.lex_state = 3264}, - [1186] = {.lex_state = 47, .external_lex_state = 2}, - [1187] = {.lex_state = 3264}, - [1188] = {.lex_state = 47, .external_lex_state = 2}, - [1189] = {.lex_state = 47, .external_lex_state = 2}, - [1190] = {.lex_state = 47, .external_lex_state = 2}, - [1191] = {.lex_state = 3264}, - [1192] = {.lex_state = 3264}, - [1193] = {.lex_state = 3114}, - [1194] = {.lex_state = 3262}, - [1195] = {.lex_state = 3114}, - [1196] = {.lex_state = 47, .external_lex_state = 2}, - [1197] = {.lex_state = 3114}, - [1198] = {.lex_state = 3129}, - [1199] = {.lex_state = 3127}, - [1200] = {.lex_state = 47, .external_lex_state = 2}, - [1201] = {.lex_state = 3127}, - [1202] = {.lex_state = 3127}, - [1203] = {.lex_state = 3127}, - [1204] = {.lex_state = 3127}, - [1205] = {.lex_state = 47, .external_lex_state = 2}, - [1206] = {.lex_state = 3264}, - [1207] = {.lex_state = 3262}, - [1208] = {.lex_state = 3114}, - [1209] = {.lex_state = 3131}, + [1167] = {.lex_state = 3131}, + [1168] = {.lex_state = 3267}, + [1169] = {.lex_state = 3133}, + [1170] = {.lex_state = 3267}, + [1171] = {.lex_state = 3135}, + [1172] = {.lex_state = 3124}, + [1173] = {.lex_state = 3265}, + [1174] = {.lex_state = 46, .external_lex_state = 2}, + [1175] = {.lex_state = 3267}, + [1176] = {.lex_state = 3265}, + [1177] = {.lex_state = 46, .external_lex_state = 2}, + [1178] = {.lex_state = 3267}, + [1179] = {.lex_state = 46, .external_lex_state = 2}, + [1180] = {.lex_state = 46, .external_lex_state = 2}, + [1181] = {.lex_state = 46, .external_lex_state = 2}, + [1182] = {.lex_state = 46, .external_lex_state = 2}, + [1183] = {.lex_state = 3117}, + [1184] = {.lex_state = 3117}, + [1185] = {.lex_state = 3117}, + [1186] = {.lex_state = 3267}, + [1187] = {.lex_state = 3117}, + [1188] = {.lex_state = 3117}, + [1189] = {.lex_state = 3133}, + [1190] = {.lex_state = 3133}, + [1191] = {.lex_state = 3133}, + [1192] = {.lex_state = 46, .external_lex_state = 2}, + [1193] = {.lex_state = 46, .external_lex_state = 2}, + [1194] = {.lex_state = 46, .external_lex_state = 2}, + [1195] = {.lex_state = 3133}, + [1196] = {.lex_state = 3267}, + [1197] = {.lex_state = 3267}, + [1198] = {.lex_state = 3267}, + [1199] = {.lex_state = 34, .external_lex_state = 2}, + [1200] = {.lex_state = 33, .external_lex_state = 2}, + [1201] = {.lex_state = 33, .external_lex_state = 2}, + [1202] = {.lex_state = 3137}, + [1203] = {.lex_state = 3267}, + [1204] = {.lex_state = 3137}, + [1205] = {.lex_state = 3267}, + [1206] = {.lex_state = 33, .external_lex_state = 2}, + [1207] = {.lex_state = 33, .external_lex_state = 2}, + [1208] = {.lex_state = 33, .external_lex_state = 2}, + [1209] = {.lex_state = 222, .external_lex_state = 2}, [1210] = {.lex_state = 33, .external_lex_state = 2}, - [1211] = {.lex_state = 34, .external_lex_state = 2}, - [1212] = {.lex_state = 3264}, - [1213] = {.lex_state = 221, .external_lex_state = 2}, + [1211] = {.lex_state = 222, .external_lex_state = 2}, + [1212] = {.lex_state = 33, .external_lex_state = 2}, + [1213] = {.lex_state = 33, .external_lex_state = 2}, [1214] = {.lex_state = 33, .external_lex_state = 2}, - [1215] = {.lex_state = 3264}, - [1216] = {.lex_state = 3264}, - [1217] = {.lex_state = 3264}, - [1218] = {.lex_state = 34, .external_lex_state = 2}, - [1219] = {.lex_state = 33, .external_lex_state = 2}, - [1220] = {.lex_state = 221, .external_lex_state = 2}, - [1221] = {.lex_state = 33, .external_lex_state = 2}, - [1222] = {.lex_state = 33, .external_lex_state = 2}, - [1223] = {.lex_state = 33, .external_lex_state = 2}, - [1224] = {.lex_state = 33, .external_lex_state = 2}, - [1225] = {.lex_state = 33, .external_lex_state = 2}, - [1226] = {.lex_state = 3264}, - [1227] = {.lex_state = 3131}, - [1228] = {.lex_state = 33, .external_lex_state = 2}, - [1229] = {.lex_state = 44, .external_lex_state = 2}, - [1230] = {.lex_state = 3133}, - [1231] = {.lex_state = 3133}, - [1232] = {.lex_state = 3133}, - [1233] = {.lex_state = 3133}, - [1234] = {.lex_state = 1677, .external_lex_state = 2}, - [1235] = {.lex_state = 3133}, - [1236] = {.lex_state = 44, .external_lex_state = 2}, - [1237] = {.lex_state = 1677, .external_lex_state = 2}, - [1238] = {.lex_state = 1665}, - [1239] = {.lex_state = 1676, .external_lex_state = 2}, - [1240] = {.lex_state = 1691, .external_lex_state = 2}, - [1241] = {.lex_state = 1687, .external_lex_state = 2}, - [1242] = {.lex_state = 1678, .external_lex_state = 2}, - [1243] = {.lex_state = 1676, .external_lex_state = 2}, - [1244] = {.lex_state = 44, .external_lex_state = 2}, - [1245] = {.lex_state = 44, .external_lex_state = 2}, - [1246] = {.lex_state = 44, .external_lex_state = 2}, - [1247] = {.lex_state = 44, .external_lex_state = 2}, - [1248] = {.lex_state = 1691, .external_lex_state = 2}, - [1249] = {.lex_state = 44, .external_lex_state = 2}, - [1250] = {.lex_state = 1665}, - [1251] = {.lex_state = 1665}, - [1252] = {.lex_state = 44, .external_lex_state = 2}, - [1253] = {.lex_state = 1676, .external_lex_state = 2}, - [1254] = {.lex_state = 44, .external_lex_state = 2}, - [1255] = {.lex_state = 1687, .external_lex_state = 2}, - [1256] = {.lex_state = 44, .external_lex_state = 2}, - [1257] = {.lex_state = 44, .external_lex_state = 2}, - [1258] = {.lex_state = 44, .external_lex_state = 2}, - [1259] = {.lex_state = 44, .external_lex_state = 2}, - [1260] = {.lex_state = 1676, .external_lex_state = 2}, - [1261] = {.lex_state = 1714, .external_lex_state = 2}, - [1262] = {.lex_state = 1718, .external_lex_state = 2}, - [1263] = {.lex_state = 44, .external_lex_state = 2}, - [1264] = {.lex_state = 44, .external_lex_state = 2}, - [1265] = {.lex_state = 44, .external_lex_state = 2}, - [1266] = {.lex_state = 44, .external_lex_state = 2}, - [1267] = {.lex_state = 44, .external_lex_state = 2}, - [1268] = {.lex_state = 44, .external_lex_state = 2}, - [1269] = {.lex_state = 44, .external_lex_state = 2}, - [1270] = {.lex_state = 44, .external_lex_state = 2}, - [1271] = {.lex_state = 44, .external_lex_state = 2}, - [1272] = {.lex_state = 1680, .external_lex_state = 2}, - [1273] = {.lex_state = 44, .external_lex_state = 2}, - [1274] = {.lex_state = 44, .external_lex_state = 2}, - [1275] = {.lex_state = 44, .external_lex_state = 2}, - [1276] = {.lex_state = 44, .external_lex_state = 2}, - [1277] = {.lex_state = 44, .external_lex_state = 2}, - [1278] = {.lex_state = 44, .external_lex_state = 2}, - [1279] = {.lex_state = 44, .external_lex_state = 2}, - [1280] = {.lex_state = 44, .external_lex_state = 2}, - [1281] = {.lex_state = 44, .external_lex_state = 2}, - [1282] = {.lex_state = 44, .external_lex_state = 2}, - [1283] = {.lex_state = 44, .external_lex_state = 2}, - [1284] = {.lex_state = 44, .external_lex_state = 2}, - [1285] = {.lex_state = 44, .external_lex_state = 2}, - [1286] = {.lex_state = 44, .external_lex_state = 2}, - [1287] = {.lex_state = 44, .external_lex_state = 2}, - [1288] = {.lex_state = 44, .external_lex_state = 2}, - [1289] = {.lex_state = 34, .external_lex_state = 2}, - [1290] = {.lex_state = 1690, .external_lex_state = 2}, - [1291] = {.lex_state = 44, .external_lex_state = 2}, - [1292] = {.lex_state = 44, .external_lex_state = 2}, - [1293] = {.lex_state = 1681, .external_lex_state = 2}, - [1294] = {.lex_state = 44, .external_lex_state = 2}, - [1295] = {.lex_state = 44, .external_lex_state = 2}, - [1296] = {.lex_state = 44, .external_lex_state = 2}, - [1297] = {.lex_state = 1690, .external_lex_state = 2}, - [1298] = {.lex_state = 44, .external_lex_state = 2}, - [1299] = {.lex_state = 1690, .external_lex_state = 2}, - [1300] = {.lex_state = 1680, .external_lex_state = 2}, - [1301] = {.lex_state = 44, .external_lex_state = 2}, - [1302] = {.lex_state = 34, .external_lex_state = 2}, - [1303] = {.lex_state = 44, .external_lex_state = 2}, - [1304] = {.lex_state = 44, .external_lex_state = 2}, - [1305] = {.lex_state = 1678, .external_lex_state = 2}, - [1306] = {.lex_state = 1690, .external_lex_state = 2}, - [1307] = {.lex_state = 44, .external_lex_state = 2}, - [1308] = {.lex_state = 1665}, - [1309] = {.lex_state = 1705, .external_lex_state = 2}, - [1310] = {.lex_state = 1705, .external_lex_state = 2}, - [1311] = {.lex_state = 1680, .external_lex_state = 2}, - [1312] = {.lex_state = 1690, .external_lex_state = 2}, - [1313] = {.lex_state = 1690, .external_lex_state = 2}, - [1314] = {.lex_state = 1690, .external_lex_state = 2}, - [1315] = {.lex_state = 1714, .external_lex_state = 2}, - [1316] = {.lex_state = 1715, .external_lex_state = 2}, - [1317] = {.lex_state = 1665}, - [1318] = {.lex_state = 1715, .external_lex_state = 2}, - [1319] = {.lex_state = 1665}, - [1320] = {.lex_state = 1718, .external_lex_state = 2}, - [1321] = {.lex_state = 1665}, - [1322] = {.lex_state = 1681, .external_lex_state = 2}, - [1323] = {.lex_state = 1681, .external_lex_state = 2}, - [1324] = {.lex_state = 1681, .external_lex_state = 2}, - [1325] = {.lex_state = 3268}, - [1326] = {.lex_state = 1680, .external_lex_state = 2}, - [1327] = {.lex_state = 1681, .external_lex_state = 2}, - [1328] = {.lex_state = 34, .external_lex_state = 2}, - [1329] = {.lex_state = 1705, .external_lex_state = 2}, - [1330] = {.lex_state = 1665}, - [1331] = {.lex_state = 3118}, - [1332] = {.lex_state = 3118}, - [1333] = {.lex_state = 1688, .external_lex_state = 2}, - [1334] = {.lex_state = 1665}, - [1335] = {.lex_state = 1665}, - [1336] = {.lex_state = 3140}, - [1337] = {.lex_state = 3140}, - [1338] = {.lex_state = 1681, .external_lex_state = 2}, - [1339] = {.lex_state = 1690, .external_lex_state = 2}, - [1340] = {.lex_state = 1679, .external_lex_state = 2}, - [1341] = {.lex_state = 3268}, - [1342] = {.lex_state = 1681, .external_lex_state = 2}, - [1343] = {.lex_state = 1665}, - [1344] = {.lex_state = 1716, .external_lex_state = 2}, - [1345] = {.lex_state = 1705, .external_lex_state = 2}, - [1346] = {.lex_state = 1705, .external_lex_state = 2}, - [1347] = {.lex_state = 1705, .external_lex_state = 2}, - [1348] = {.lex_state = 1681, .external_lex_state = 2}, - [1349] = {.lex_state = 1629}, - [1350] = {.lex_state = 1705, .external_lex_state = 2}, - [1351] = {.lex_state = 1629}, - [1352] = {.lex_state = 1682, .external_lex_state = 2}, - [1353] = {.lex_state = 1705, .external_lex_state = 2}, - [1354] = {.lex_state = 1715, .external_lex_state = 2}, - [1355] = {.lex_state = 1688, .external_lex_state = 2}, - [1356] = {.lex_state = 1681, .external_lex_state = 2}, - [1357] = {.lex_state = 1664}, - [1358] = {.lex_state = 3268}, - [1359] = {.lex_state = 1629}, - [1360] = {.lex_state = 1665}, + [1215] = {.lex_state = 34, .external_lex_state = 2}, + [1216] = {.lex_state = 3139}, + [1217] = {.lex_state = 1678, .external_lex_state = 2}, + [1218] = {.lex_state = 3139}, + [1219] = {.lex_state = 3139}, + [1220] = {.lex_state = 43, .external_lex_state = 2}, + [1221] = {.lex_state = 3139}, + [1222] = {.lex_state = 43, .external_lex_state = 2}, + [1223] = {.lex_state = 3139}, + [1224] = {.lex_state = 1677, .external_lex_state = 2}, + [1225] = {.lex_state = 1679, .external_lex_state = 2}, + [1226] = {.lex_state = 1677, .external_lex_state = 2}, + [1227] = {.lex_state = 1678, .external_lex_state = 2}, + [1228] = {.lex_state = 1666}, + [1229] = {.lex_state = 1692, .external_lex_state = 2}, + [1230] = {.lex_state = 1688, .external_lex_state = 2}, + [1231] = {.lex_state = 43, .external_lex_state = 2}, + [1232] = {.lex_state = 1679, .external_lex_state = 2}, + [1233] = {.lex_state = 1688, .external_lex_state = 2}, + [1234] = {.lex_state = 43, .external_lex_state = 2}, + [1235] = {.lex_state = 1682, .external_lex_state = 2}, + [1236] = {.lex_state = 43, .external_lex_state = 2}, + [1237] = {.lex_state = 43, .external_lex_state = 2}, + [1238] = {.lex_state = 43, .external_lex_state = 2}, + [1239] = {.lex_state = 43, .external_lex_state = 2}, + [1240] = {.lex_state = 43, .external_lex_state = 2}, + [1241] = {.lex_state = 43, .external_lex_state = 2}, + [1242] = {.lex_state = 43, .external_lex_state = 2}, + [1243] = {.lex_state = 43, .external_lex_state = 2}, + [1244] = {.lex_state = 1681, .external_lex_state = 2}, + [1245] = {.lex_state = 1681, .external_lex_state = 2}, + [1246] = {.lex_state = 1677, .external_lex_state = 2}, + [1247] = {.lex_state = 34, .external_lex_state = 2}, + [1248] = {.lex_state = 1666}, + [1249] = {.lex_state = 1666}, + [1250] = {.lex_state = 43, .external_lex_state = 2}, + [1251] = {.lex_state = 43, .external_lex_state = 2}, + [1252] = {.lex_state = 1691, .external_lex_state = 2}, + [1253] = {.lex_state = 43, .external_lex_state = 2}, + [1254] = {.lex_state = 43, .external_lex_state = 2}, + [1255] = {.lex_state = 43, .external_lex_state = 2}, + [1256] = {.lex_state = 43, .external_lex_state = 2}, + [1257] = {.lex_state = 1719, .external_lex_state = 2}, + [1258] = {.lex_state = 34, .external_lex_state = 2}, + [1259] = {.lex_state = 43, .external_lex_state = 2}, + [1260] = {.lex_state = 43, .external_lex_state = 2}, + [1261] = {.lex_state = 43, .external_lex_state = 2}, + [1262] = {.lex_state = 43, .external_lex_state = 2}, + [1263] = {.lex_state = 1691, .external_lex_state = 2}, + [1264] = {.lex_state = 1691, .external_lex_state = 2}, + [1265] = {.lex_state = 1691, .external_lex_state = 2}, + [1266] = {.lex_state = 43, .external_lex_state = 2}, + [1267] = {.lex_state = 43, .external_lex_state = 2}, + [1268] = {.lex_state = 43, .external_lex_state = 2}, + [1269] = {.lex_state = 43, .external_lex_state = 2}, + [1270] = {.lex_state = 43, .external_lex_state = 2}, + [1271] = {.lex_state = 43, .external_lex_state = 2}, + [1272] = {.lex_state = 43, .external_lex_state = 2}, + [1273] = {.lex_state = 43, .external_lex_state = 2}, + [1274] = {.lex_state = 43, .external_lex_state = 2}, + [1275] = {.lex_state = 43, .external_lex_state = 2}, + [1276] = {.lex_state = 43, .external_lex_state = 2}, + [1277] = {.lex_state = 43, .external_lex_state = 2}, + [1278] = {.lex_state = 43, .external_lex_state = 2}, + [1279] = {.lex_state = 43, .external_lex_state = 2}, + [1280] = {.lex_state = 43, .external_lex_state = 2}, + [1281] = {.lex_state = 43, .external_lex_state = 2}, + [1282] = {.lex_state = 43, .external_lex_state = 2}, + [1283] = {.lex_state = 43, .external_lex_state = 2}, + [1284] = {.lex_state = 43, .external_lex_state = 2}, + [1285] = {.lex_state = 43, .external_lex_state = 2}, + [1286] = {.lex_state = 43, .external_lex_state = 2}, + [1287] = {.lex_state = 43, .external_lex_state = 2}, + [1288] = {.lex_state = 1677, .external_lex_state = 2}, + [1289] = {.lex_state = 43, .external_lex_state = 2}, + [1290] = {.lex_state = 43, .external_lex_state = 2}, + [1291] = {.lex_state = 43, .external_lex_state = 2}, + [1292] = {.lex_state = 43, .external_lex_state = 2}, + [1293] = {.lex_state = 1692, .external_lex_state = 2}, + [1294] = {.lex_state = 1715, .external_lex_state = 2}, + [1295] = {.lex_state = 1681, .external_lex_state = 2}, + [1296] = {.lex_state = 1719, .external_lex_state = 2}, + [1297] = {.lex_state = 1666}, + [1298] = {.lex_state = 1666}, + [1299] = {.lex_state = 1666}, + [1300] = {.lex_state = 1666}, + [1301] = {.lex_state = 1706, .external_lex_state = 2}, + [1302] = {.lex_state = 3141}, + [1303] = {.lex_state = 3141}, + [1304] = {.lex_state = 1666}, + [1305] = {.lex_state = 3119}, + [1306] = {.lex_state = 3269}, + [1307] = {.lex_state = 1716, .external_lex_state = 2}, + [1308] = {.lex_state = 1691, .external_lex_state = 2}, + [1309] = {.lex_state = 1716, .external_lex_state = 2}, + [1310] = {.lex_state = 1680, .external_lex_state = 2}, + [1311] = {.lex_state = 1689, .external_lex_state = 2}, + [1312] = {.lex_state = 1666}, + [1313] = {.lex_state = 1691, .external_lex_state = 2}, + [1314] = {.lex_state = 1691, .external_lex_state = 2}, + [1315] = {.lex_state = 1691, .external_lex_state = 2}, + [1316] = {.lex_state = 34, .external_lex_state = 2}, + [1317] = {.lex_state = 1666}, + [1318] = {.lex_state = 1682, .external_lex_state = 2}, + [1319] = {.lex_state = 3119}, + [1320] = {.lex_state = 1682, .external_lex_state = 2}, + [1321] = {.lex_state = 1715, .external_lex_state = 2}, + [1322] = {.lex_state = 1682, .external_lex_state = 2}, + [1323] = {.lex_state = 1682, .external_lex_state = 2}, + [1324] = {.lex_state = 1706, .external_lex_state = 2}, + [1325] = {.lex_state = 3269}, + [1326] = {.lex_state = 1681, .external_lex_state = 2}, + [1327] = {.lex_state = 1706, .external_lex_state = 2}, + [1328] = {.lex_state = 1682, .external_lex_state = 2}, + [1329] = {.lex_state = 1716, .external_lex_state = 2}, + [1330] = {.lex_state = 3269}, + [1331] = {.lex_state = 1630}, + [1332] = {.lex_state = 1706, .external_lex_state = 2}, + [1333] = {.lex_state = 1680, .external_lex_state = 2}, + [1334] = {.lex_state = 1666}, + [1335] = {.lex_state = 1630}, + [1336] = {.lex_state = 1706, .external_lex_state = 2}, + [1337] = {.lex_state = 1630}, + [1338] = {.lex_state = 1666}, + [1339] = {.lex_state = 1683, .external_lex_state = 2}, + [1340] = {.lex_state = 1706, .external_lex_state = 2}, + [1341] = {.lex_state = 43, .external_lex_state = 2}, + [1342] = {.lex_state = 1717, .external_lex_state = 2}, + [1343] = {.lex_state = 1666}, + [1344] = {.lex_state = 1717, .external_lex_state = 2}, + [1345] = {.lex_state = 1682, .external_lex_state = 2}, + [1346] = {.lex_state = 1717, .external_lex_state = 2}, + [1347] = {.lex_state = 1706, .external_lex_state = 2}, + [1348] = {.lex_state = 1682, .external_lex_state = 2}, + [1349] = {.lex_state = 1666}, + [1350] = {.lex_state = 3269}, + [1351] = {.lex_state = 1665}, + [1352] = {.lex_state = 1666}, + [1353] = {.lex_state = 1716, .external_lex_state = 2}, + [1354] = {.lex_state = 1717, .external_lex_state = 2}, + [1355] = {.lex_state = 1682, .external_lex_state = 2}, + [1356] = {.lex_state = 1717, .external_lex_state = 2}, + [1357] = {.lex_state = 1683, .external_lex_state = 2}, + [1358] = {.lex_state = 1665}, + [1359] = {.lex_state = 1689, .external_lex_state = 2}, + [1360] = {.lex_state = 1706, .external_lex_state = 2}, [1361] = {.lex_state = 1682, .external_lex_state = 2}, - [1362] = {.lex_state = 3268}, - [1363] = {.lex_state = 1665}, - [1364] = {.lex_state = 1716, .external_lex_state = 2}, - [1365] = {.lex_state = 1681, .external_lex_state = 2}, - [1366] = {.lex_state = 1679, .external_lex_state = 2}, - [1367] = {.lex_state = 44, .external_lex_state = 2}, - [1368] = {.lex_state = 1665}, - [1369] = {.lex_state = 1665}, - [1370] = {.lex_state = 1715, .external_lex_state = 2}, - [1371] = {.lex_state = 1716, .external_lex_state = 2}, - [1372] = {.lex_state = 1664}, - [1373] = {.lex_state = 1716, .external_lex_state = 2}, - [1374] = {.lex_state = 1716, .external_lex_state = 2}, - [1375] = {.lex_state = 1716, .external_lex_state = 2}, - [1376] = {.lex_state = 1705, .external_lex_state = 2}, - [1377] = {.lex_state = 1664}, - [1378] = {.lex_state = 1631}, - [1379] = {.lex_state = 1665}, - [1380] = {.lex_state = 1705, .external_lex_state = 2}, - [1381] = {.lex_state = 1683, .external_lex_state = 2}, - [1382] = {.lex_state = 1683, .external_lex_state = 2}, - [1383] = {.lex_state = 1683, .external_lex_state = 2}, - [1384] = {.lex_state = 1716, .external_lex_state = 2}, - [1385] = {.lex_state = 1704, .external_lex_state = 2}, - [1386] = {.lex_state = 1629}, - [1387] = {.lex_state = 1629}, - [1388] = {.lex_state = 1629}, - [1389] = {.lex_state = 1665}, - [1390] = {.lex_state = 1682, .external_lex_state = 2}, - [1391] = {.lex_state = 1665}, - [1392] = {.lex_state = 1704, .external_lex_state = 2}, - [1393] = {.lex_state = 1716, .external_lex_state = 2}, - [1394] = {.lex_state = 1683, .external_lex_state = 2}, - [1395] = {.lex_state = 3142}, - [1396] = {.lex_state = 1716, .external_lex_state = 2}, - [1397] = {.lex_state = 1711, .external_lex_state = 2}, - [1398] = {.lex_state = 1629}, - [1399] = {.lex_state = 1704, .external_lex_state = 2}, - [1400] = {.lex_state = 1665}, - [1401] = {.lex_state = 1683, .external_lex_state = 2}, - [1402] = {.lex_state = 1629}, - [1403] = {.lex_state = 1704, .external_lex_state = 2}, - [1404] = {.lex_state = 1682, .external_lex_state = 2}, - [1405] = {.lex_state = 3142}, - [1406] = {.lex_state = 1664}, - [1407] = {.lex_state = 1631}, - [1408] = {.lex_state = 1665}, - [1409] = {.lex_state = 1704, .external_lex_state = 2}, + [1362] = {.lex_state = 3143}, + [1363] = {.lex_state = 1632}, + [1364] = {.lex_state = 1665}, + [1365] = {.lex_state = 1706, .external_lex_state = 2}, + [1366] = {.lex_state = 1683, .external_lex_state = 2}, + [1367] = {.lex_state = 1705, .external_lex_state = 2}, + [1368] = {.lex_state = 1705, .external_lex_state = 2}, + [1369] = {.lex_state = 3143}, + [1370] = {.lex_state = 1705, .external_lex_state = 2}, + [1371] = {.lex_state = 1684, .external_lex_state = 2}, + [1372] = {.lex_state = 1684, .external_lex_state = 2}, + [1373] = {.lex_state = 1665}, + [1374] = {.lex_state = 1684, .external_lex_state = 2}, + [1375] = {.lex_state = 1666}, + [1376] = {.lex_state = 1683, .external_lex_state = 2}, + [1377] = {.lex_state = 1630}, + [1378] = {.lex_state = 1666}, + [1379] = {.lex_state = 1630}, + [1380] = {.lex_state = 1684, .external_lex_state = 2}, + [1381] = {.lex_state = 1705, .external_lex_state = 2}, + [1382] = {.lex_state = 1705, .external_lex_state = 2}, + [1383] = {.lex_state = 1717, .external_lex_state = 2}, + [1384] = {.lex_state = 1666}, + [1385] = {.lex_state = 1630}, + [1386] = {.lex_state = 1706, .external_lex_state = 2}, + [1387] = {.lex_state = 1705, .external_lex_state = 2}, + [1388] = {.lex_state = 1712, .external_lex_state = 2}, + [1389] = {.lex_state = 1717, .external_lex_state = 2}, + [1390] = {.lex_state = 1632}, + [1391] = {.lex_state = 1630}, + [1392] = {.lex_state = 1684, .external_lex_state = 2}, + [1393] = {.lex_state = 1630}, + [1394] = {.lex_state = 1630}, + [1395] = {.lex_state = 1666}, + [1396] = {.lex_state = 1630}, + [1397] = {.lex_state = 1684, .external_lex_state = 2}, + [1398] = {.lex_state = 1711, .external_lex_state = 2}, + [1399] = {.lex_state = 1717, .external_lex_state = 2}, + [1400] = {.lex_state = 1717, .external_lex_state = 2}, + [1401] = {.lex_state = 1717, .external_lex_state = 2}, + [1402] = {.lex_state = 1666}, + [1403] = {.lex_state = 1665}, + [1404] = {.lex_state = 1666}, + [1405] = {.lex_state = 1666}, + [1406] = {.lex_state = 1705, .external_lex_state = 2}, + [1407] = {.lex_state = 1706, .external_lex_state = 2}, + [1408] = {.lex_state = 1666}, + [1409] = {.lex_state = 1638}, [1410] = {.lex_state = 1665}, - [1411] = {.lex_state = 1629}, - [1412] = {.lex_state = 1710, .external_lex_state = 2}, - [1413] = {.lex_state = 1704, .external_lex_state = 2}, - [1414] = {.lex_state = 1664}, + [1411] = {.lex_state = 1708, .external_lex_state = 2}, + [1412] = {.lex_state = 1665}, + [1413] = {.lex_state = 1665}, + [1414] = {.lex_state = 1708, .external_lex_state = 2}, [1415] = {.lex_state = 1665}, - [1416] = {.lex_state = 1683, .external_lex_state = 2}, - [1417] = {.lex_state = 1716, .external_lex_state = 2}, - [1418] = {.lex_state = 1629}, - [1419] = {.lex_state = 1705, .external_lex_state = 2}, - [1420] = {.lex_state = 1664}, - [1421] = {.lex_state = 1665}, - [1422] = {.lex_state = 1707, .external_lex_state = 2}, - [1423] = {.lex_state = 1710, .external_lex_state = 2}, - [1424] = {.lex_state = 1707, .external_lex_state = 2}, - [1425] = {.lex_state = 1637}, - [1426] = {.lex_state = 1707, .external_lex_state = 2}, - [1427] = {.lex_state = 1689, .external_lex_state = 2}, - [1428] = {.lex_state = 1664}, - [1429] = {.lex_state = 1664}, - [1430] = {.lex_state = 1665}, - [1431] = {.lex_state = 1683, .external_lex_state = 2}, - [1432] = {.lex_state = 1664}, - [1433] = {.lex_state = 1707, .external_lex_state = 2}, - [1434] = {.lex_state = 1704, .external_lex_state = 2}, - [1435] = {.lex_state = 1704, .external_lex_state = 2}, - [1436] = {.lex_state = 1704, .external_lex_state = 2}, - [1437] = {.lex_state = 1707, .external_lex_state = 2}, - [1438] = {.lex_state = 1704, .external_lex_state = 2}, - [1439] = {.lex_state = 1707, .external_lex_state = 2}, - [1440] = {.lex_state = 1707, .external_lex_state = 2}, - [1441] = {.lex_state = 1707, .external_lex_state = 2}, - [1442] = {.lex_state = 1707, .external_lex_state = 2}, - [1443] = {.lex_state = 1707, .external_lex_state = 2}, - [1444] = {.lex_state = 1664}, - [1445] = {.lex_state = 1664}, - [1446] = {.lex_state = 1707, .external_lex_state = 2}, - [1447] = {.lex_state = 1707, .external_lex_state = 2}, - [1448] = {.lex_state = 1711, .external_lex_state = 2}, - [1449] = {.lex_state = 1705, .external_lex_state = 2}, - [1450] = {.lex_state = 1707, .external_lex_state = 2}, - [1451] = {.lex_state = 1665}, - [1452] = {.lex_state = 1665}, - [1453] = {.lex_state = 1704, .external_lex_state = 2}, - [1454] = {.lex_state = 1665}, - [1455] = {.lex_state = 1631}, - [1456] = {.lex_state = 1707, .external_lex_state = 2}, - [1457] = {.lex_state = 1683, .external_lex_state = 2}, - [1458] = {.lex_state = 1707, .external_lex_state = 2}, - [1459] = {.lex_state = 1707, .external_lex_state = 2}, - [1460] = {.lex_state = 1707, .external_lex_state = 2}, - [1461] = {.lex_state = 1683, .external_lex_state = 2}, - [1462] = {.lex_state = 1707, .external_lex_state = 2}, - [1463] = {.lex_state = 1707, .external_lex_state = 2}, - [1464] = {.lex_state = 1707, .external_lex_state = 2}, - [1465] = {.lex_state = 1683, .external_lex_state = 2}, - [1466] = {.lex_state = 1707, .external_lex_state = 2}, - [1467] = {.lex_state = 1683, .external_lex_state = 2}, - [1468] = {.lex_state = 1683, .external_lex_state = 2}, - [1469] = {.lex_state = 1631}, - [1470] = {.lex_state = 1707, .external_lex_state = 2}, + [1416] = {.lex_state = 1665}, + [1417] = {.lex_state = 1665}, + [1418] = {.lex_state = 1711, .external_lex_state = 2}, + [1419] = {.lex_state = 1666}, + [1420] = {.lex_state = 1705, .external_lex_state = 2}, + [1421] = {.lex_state = 1705, .external_lex_state = 2}, + [1422] = {.lex_state = 1705, .external_lex_state = 2}, + [1423] = {.lex_state = 1705, .external_lex_state = 2}, + [1424] = {.lex_state = 1666}, + [1425] = {.lex_state = 1684, .external_lex_state = 2}, + [1426] = {.lex_state = 1684, .external_lex_state = 2}, + [1427] = {.lex_state = 1712, .external_lex_state = 2}, + [1428] = {.lex_state = 1630}, + [1429] = {.lex_state = 1634}, + [1430] = {.lex_state = 1684, .external_lex_state = 2}, + [1431] = {.lex_state = 1705, .external_lex_state = 2}, + [1432] = {.lex_state = 1685, .external_lex_state = 2}, + [1433] = {.lex_state = 1632}, + [1434] = {.lex_state = 1684, .external_lex_state = 2}, + [1435] = {.lex_state = 1684, .external_lex_state = 2}, + [1436] = {.lex_state = 1684, .external_lex_state = 2}, + [1437] = {.lex_state = 1630}, + [1438] = {.lex_state = 1690, .external_lex_state = 2}, + [1439] = {.lex_state = 1632}, + [1440] = {.lex_state = 1708, .external_lex_state = 2}, + [1441] = {.lex_state = 1666}, + [1442] = {.lex_state = 1706, .external_lex_state = 2}, + [1443] = {.lex_state = 1709, .external_lex_state = 2}, + [1444] = {.lex_state = 1708, .external_lex_state = 2}, + [1445] = {.lex_state = 1666}, + [1446] = {.lex_state = 1708, .external_lex_state = 2}, + [1447] = {.lex_state = 1709, .external_lex_state = 2}, + [1448] = {.lex_state = 1708, .external_lex_state = 2}, + [1449] = {.lex_state = 1708, .external_lex_state = 2}, + [1450] = {.lex_state = 1708, .external_lex_state = 2}, + [1451] = {.lex_state = 1708, .external_lex_state = 2}, + [1452] = {.lex_state = 1708, .external_lex_state = 2}, + [1453] = {.lex_state = 1708, .external_lex_state = 2}, + [1454] = {.lex_state = 1708, .external_lex_state = 2}, + [1455] = {.lex_state = 1708, .external_lex_state = 2}, + [1456] = {.lex_state = 1708, .external_lex_state = 2}, + [1457] = {.lex_state = 1708, .external_lex_state = 2}, + [1458] = {.lex_state = 1708, .external_lex_state = 2}, + [1459] = {.lex_state = 1708, .external_lex_state = 2}, + [1460] = {.lex_state = 1708, .external_lex_state = 2}, + [1461] = {.lex_state = 1708, .external_lex_state = 2}, + [1462] = {.lex_state = 1708, .external_lex_state = 2}, + [1463] = {.lex_state = 1708, .external_lex_state = 2}, + [1464] = {.lex_state = 1708, .external_lex_state = 2}, + [1465] = {.lex_state = 1708, .external_lex_state = 2}, + [1466] = {.lex_state = 1706, .external_lex_state = 2}, + [1467] = {.lex_state = 1630}, + [1468] = {.lex_state = 1665}, + [1469] = {.lex_state = 1708, .external_lex_state = 2}, + [1470] = {.lex_state = 1640}, [1471] = {.lex_state = 1708, .external_lex_state = 2}, - [1472] = {.lex_state = 1684, .external_lex_state = 2}, - [1473] = {.lex_state = 1705, .external_lex_state = 2}, - [1474] = {.lex_state = 1633}, - [1475] = {.lex_state = 1704, .external_lex_state = 2}, + [1472] = {.lex_state = 1644}, + [1473] = {.lex_state = 1666}, + [1474] = {.lex_state = 1690, .external_lex_state = 2}, + [1475] = {.lex_state = 1710, .external_lex_state = 2}, [1476] = {.lex_state = 1708, .external_lex_state = 2}, - [1477] = {.lex_state = 1629}, - [1478] = {.lex_state = 1629}, - [1479] = {.lex_state = 1707, .external_lex_state = 2}, - [1480] = {.lex_state = 1629}, - [1481] = {.lex_state = 1707, .external_lex_state = 2}, - [1482] = {.lex_state = 1707, .external_lex_state = 2}, - [1483] = {.lex_state = 1705, .external_lex_state = 2}, - [1484] = {.lex_state = 1705, .external_lex_state = 2}, - [1485] = {.lex_state = 1707, .external_lex_state = 2}, - [1486] = {.lex_state = 1707, .external_lex_state = 2}, - [1487] = {.lex_state = 1707, .external_lex_state = 2}, - [1488] = {.lex_state = 1707, .external_lex_state = 2}, - [1489] = {.lex_state = 1705, .external_lex_state = 2}, - [1490] = {.lex_state = 1665}, - [1491] = {.lex_state = 1707, .external_lex_state = 2}, - [1492] = {.lex_state = 1629}, - [1493] = {.lex_state = 1707, .external_lex_state = 2}, - [1494] = {.lex_state = 1707, .external_lex_state = 2}, - [1495] = {.lex_state = 1707, .external_lex_state = 2}, - [1496] = {.lex_state = 1709, .external_lex_state = 2}, - [1497] = {.lex_state = 1664}, - [1498] = {.lex_state = 1643}, - [1499] = {.lex_state = 1708, .external_lex_state = 2}, - [1500] = {.lex_state = 1629}, - [1501] = {.lex_state = 1709, .external_lex_state = 2}, + [1477] = {.lex_state = 1636}, + [1478] = {.lex_state = 1642}, + [1479] = {.lex_state = 1708, .external_lex_state = 2}, + [1480] = {.lex_state = 1710, .external_lex_state = 2}, + [1481] = {.lex_state = 1710, .external_lex_state = 2}, + [1482] = {.lex_state = 1710, .external_lex_state = 2}, + [1483] = {.lex_state = 1710, .external_lex_state = 2}, + [1484] = {.lex_state = 1630}, + [1485] = {.lex_state = 1708, .external_lex_state = 2}, + [1486] = {.lex_state = 1686, .external_lex_state = 2}, + [1487] = {.lex_state = 1686, .external_lex_state = 2}, + [1488] = {.lex_state = 1666}, + [1489] = {.lex_state = 1708, .external_lex_state = 2}, + [1490] = {.lex_state = 1708, .external_lex_state = 2}, + [1491] = {.lex_state = 1634}, + [1492] = {.lex_state = 1710, .external_lex_state = 2}, + [1493] = {.lex_state = 1638}, + [1494] = {.lex_state = 1710, .external_lex_state = 2}, + [1495] = {.lex_state = 1666}, + [1496] = {.lex_state = 1708, .external_lex_state = 2}, + [1497] = {.lex_state = 1708, .external_lex_state = 2}, + [1498] = {.lex_state = 1708, .external_lex_state = 2}, + [1499] = {.lex_state = 1685, .external_lex_state = 2}, + [1500] = {.lex_state = 1708, .external_lex_state = 2}, + [1501] = {.lex_state = 1630}, [1502] = {.lex_state = 1709, .external_lex_state = 2}, [1503] = {.lex_state = 1665}, - [1504] = {.lex_state = 1709, .external_lex_state = 2}, - [1505] = {.lex_state = 1707, .external_lex_state = 2}, - [1506] = {.lex_state = 1635}, - [1507] = {.lex_state = 1709, .external_lex_state = 2}, - [1508] = {.lex_state = 1709, .external_lex_state = 2}, - [1509] = {.lex_state = 1629}, - [1510] = {.lex_state = 1707, .external_lex_state = 2}, - [1511] = {.lex_state = 1707, .external_lex_state = 2}, - [1512] = {.lex_state = 1689, .external_lex_state = 2}, - [1513] = {.lex_state = 1707, .external_lex_state = 2}, - [1514] = {.lex_state = 1707, .external_lex_state = 2}, - [1515] = {.lex_state = 1707, .external_lex_state = 2}, - [1516] = {.lex_state = 1707, .external_lex_state = 2}, - [1517] = {.lex_state = 1665}, - [1518] = {.lex_state = 1664}, - [1519] = {.lex_state = 1707, .external_lex_state = 2}, - [1520] = {.lex_state = 1629}, - [1521] = {.lex_state = 1709, .external_lex_state = 2}, - [1522] = {.lex_state = 1709, .external_lex_state = 2}, - [1523] = {.lex_state = 1709, .external_lex_state = 2}, - [1524] = {.lex_state = 1707, .external_lex_state = 2}, - [1525] = {.lex_state = 1709, .external_lex_state = 2}, - [1526] = {.lex_state = 1709, .external_lex_state = 2}, - [1527] = {.lex_state = 1685, .external_lex_state = 2}, - [1528] = {.lex_state = 1633}, - [1529] = {.lex_state = 1707, .external_lex_state = 2}, - [1530] = {.lex_state = 1709, .external_lex_state = 2}, - [1531] = {.lex_state = 1637}, - [1532] = {.lex_state = 1707, .external_lex_state = 2}, - [1533] = {.lex_state = 1708, .external_lex_state = 2}, - [1534] = {.lex_state = 1664}, - [1535] = {.lex_state = 1684, .external_lex_state = 2}, - [1536] = {.lex_state = 1639}, - [1537] = {.lex_state = 1629}, - [1538] = {.lex_state = 1639}, - [1539] = {.lex_state = 1641}, - [1540] = {.lex_state = 1709, .external_lex_state = 2}, - [1541] = {.lex_state = 1707, .external_lex_state = 2}, - [1542] = {.lex_state = 1707, .external_lex_state = 2}, - [1543] = {.lex_state = 1709, .external_lex_state = 2}, - [1544] = {.lex_state = 1665}, - [1545] = {.lex_state = 1709, .external_lex_state = 2}, - [1546] = {.lex_state = 1707, .external_lex_state = 2}, - [1547] = {.lex_state = 1707, .external_lex_state = 2}, - [1548] = {.lex_state = 1685, .external_lex_state = 2}, - [1549] = {.lex_state = 1686, .external_lex_state = 2}, - [1550] = {.lex_state = 1664}, - [1551] = {.lex_state = 1709, .external_lex_state = 2}, - [1552] = {.lex_state = 1664}, - [1553] = {.lex_state = 1664}, - [1554] = {.lex_state = 1709, .external_lex_state = 2}, - [1555] = {.lex_state = 1712, .external_lex_state = 2}, - [1556] = {.lex_state = 1723, .external_lex_state = 2}, - [1557] = {.lex_state = 1664}, - [1558] = {.lex_state = 1706, .external_lex_state = 2}, - [1559] = {.lex_state = 1641}, - [1560] = {.lex_state = 1706, .external_lex_state = 2}, - [1561] = {.lex_state = 1706, .external_lex_state = 2}, - [1562] = {.lex_state = 1723, .external_lex_state = 2}, - [1563] = {.lex_state = 1709, .external_lex_state = 2}, - [1564] = {.lex_state = 1706, .external_lex_state = 2}, - [1565] = {.lex_state = 1709, .external_lex_state = 2}, - [1566] = {.lex_state = 1645}, - [1567] = {.lex_state = 1664}, - [1568] = {.lex_state = 1664}, - [1569] = {.lex_state = 1664}, - [1570] = {.lex_state = 1664}, - [1571] = {.lex_state = 1664}, - [1572] = {.lex_state = 1686, .external_lex_state = 2}, - [1573] = {.lex_state = 1709, .external_lex_state = 2}, - [1574] = {.lex_state = 1709, .external_lex_state = 2}, - [1575] = {.lex_state = 1709, .external_lex_state = 2}, - [1576] = {.lex_state = 1664}, - [1577] = {.lex_state = 1645}, - [1578] = {.lex_state = 1709, .external_lex_state = 2}, - [1579] = {.lex_state = 1709, .external_lex_state = 2}, - [1580] = {.lex_state = 1675, .external_lex_state = 2}, - [1581] = {.lex_state = 1675, .external_lex_state = 2}, - [1582] = {.lex_state = 1709, .external_lex_state = 2}, - [1583] = {.lex_state = 1675, .external_lex_state = 2}, - [1584] = {.lex_state = 1675, .external_lex_state = 2}, - [1585] = {.lex_state = 1664}, - [1586] = {.lex_state = 1664}, - [1587] = {.lex_state = 1664}, - [1588] = {.lex_state = 1686, .external_lex_state = 2}, - [1589] = {.lex_state = 1686, .external_lex_state = 2}, - [1590] = {.lex_state = 1665}, - [1591] = {.lex_state = 1686, .external_lex_state = 2}, - [1592] = {.lex_state = 1686, .external_lex_state = 2}, - [1593] = {.lex_state = 1664}, - [1594] = {.lex_state = 1709, .external_lex_state = 2}, - [1595] = {.lex_state = 1706, .external_lex_state = 2}, - [1596] = {.lex_state = 1686, .external_lex_state = 2}, - [1597] = {.lex_state = 1641}, - [1598] = {.lex_state = 1723, .external_lex_state = 2}, - [1599] = {.lex_state = 1686, .external_lex_state = 2}, - [1600] = {.lex_state = 1641}, - [1601] = {.lex_state = 1706, .external_lex_state = 2}, - [1602] = {.lex_state = 1665}, - [1603] = {.lex_state = 1709, .external_lex_state = 2}, - [1604] = {.lex_state = 1723, .external_lex_state = 2}, - [1605] = {.lex_state = 1723, .external_lex_state = 2}, - [1606] = {.lex_state = 1686, .external_lex_state = 2}, - [1607] = {.lex_state = 1709, .external_lex_state = 2}, - [1608] = {.lex_state = 1639}, - [1609] = {.lex_state = 1713, .external_lex_state = 2}, - [1610] = {.lex_state = 1685, .external_lex_state = 2}, - [1611] = {.lex_state = 1698, .external_lex_state = 2}, - [1612] = {.lex_state = 1709, .external_lex_state = 2}, - [1613] = {.lex_state = 1709, .external_lex_state = 2}, - [1614] = {.lex_state = 1707, .external_lex_state = 2}, - [1615] = {.lex_state = 1709, .external_lex_state = 2}, - [1616] = {.lex_state = 1639}, - [1617] = {.lex_state = 1707, .external_lex_state = 2}, - [1618] = {.lex_state = 1664}, - [1619] = {.lex_state = 1664}, - [1620] = {.lex_state = 1675, .external_lex_state = 2}, - [1621] = {.lex_state = 1685, .external_lex_state = 2}, - [1622] = {.lex_state = 1641}, - [1623] = {.lex_state = 1641}, - [1624] = {.lex_state = 1664}, - [1625] = {.lex_state = 1664}, - [1626] = {.lex_state = 1664}, - [1627] = {.lex_state = 1664}, - [1628] = {.lex_state = 1703, .external_lex_state = 2}, - [1629] = {.lex_state = 1709, .external_lex_state = 2}, - [1630] = {.lex_state = 1664}, - [1631] = {.lex_state = 1664}, - [1632] = {.lex_state = 1706, .external_lex_state = 2}, - [1633] = {.lex_state = 1641}, - [1634] = {.lex_state = 1686, .external_lex_state = 2}, - [1635] = {.lex_state = 1724, .external_lex_state = 2}, - [1636] = {.lex_state = 1706, .external_lex_state = 2}, - [1637] = {.lex_state = 1643}, - [1638] = {.lex_state = 1664}, - [1639] = {.lex_state = 1686, .external_lex_state = 2}, - [1640] = {.lex_state = 1699, .external_lex_state = 2}, - [1641] = {.lex_state = 1713, .external_lex_state = 2}, - [1642] = {.lex_state = 1712, .external_lex_state = 2}, - [1643] = {.lex_state = 1675, .external_lex_state = 2}, - [1644] = {.lex_state = 1706, .external_lex_state = 2}, - [1645] = {.lex_state = 1699, .external_lex_state = 2}, - [1646] = {.lex_state = 1724, .external_lex_state = 2}, - [1647] = {.lex_state = 1664}, - [1648] = {.lex_state = 1701, .external_lex_state = 2}, - [1649] = {.lex_state = 1647}, - [1650] = {.lex_state = 1724, .external_lex_state = 2}, - [1651] = {.lex_state = 1664}, - [1652] = {.lex_state = 1664}, - [1653] = {.lex_state = 1675, .external_lex_state = 2}, - [1654] = {.lex_state = 1675, .external_lex_state = 2}, - [1655] = {.lex_state = 1724, .external_lex_state = 2}, - [1656] = {.lex_state = 1647}, - [1657] = {.lex_state = 1723, .external_lex_state = 2}, - [1658] = {.lex_state = 1635}, - [1659] = {.lex_state = 1707, .external_lex_state = 2}, - [1660] = {.lex_state = 1722, .external_lex_state = 2}, - [1661] = {.lex_state = 1647}, - [1662] = {.lex_state = 1641}, - [1663] = {.lex_state = 1675, .external_lex_state = 2}, - [1664] = {.lex_state = 1686, .external_lex_state = 2}, - [1665] = {.lex_state = 1664}, - [1666] = {.lex_state = 1664}, - [1667] = {.lex_state = 1686, .external_lex_state = 2}, - [1668] = {.lex_state = 1664}, - [1669] = {.lex_state = 1723, .external_lex_state = 2}, - [1670] = {.lex_state = 1703, .external_lex_state = 2}, - [1671] = {.lex_state = 1641}, - [1672] = {.lex_state = 1675, .external_lex_state = 2}, - [1673] = {.lex_state = 1675, .external_lex_state = 2}, - [1674] = {.lex_state = 1722, .external_lex_state = 2}, - [1675] = {.lex_state = 1698, .external_lex_state = 2}, - [1676] = {.lex_state = 1647}, - [1677] = {.lex_state = 1664}, - [1678] = {.lex_state = 1675, .external_lex_state = 2}, - [1679] = {.lex_state = 1686, .external_lex_state = 2}, - [1680] = {.lex_state = 1707, .external_lex_state = 2}, - [1681] = {.lex_state = 1641}, - [1682] = {.lex_state = 1706, .external_lex_state = 2}, - [1683] = {.lex_state = 1706, .external_lex_state = 2}, - [1684] = {.lex_state = 1664}, - [1685] = {.lex_state = 1675, .external_lex_state = 2}, - [1686] = {.lex_state = 1723, .external_lex_state = 2}, - [1687] = {.lex_state = 1664}, - [1688] = {.lex_state = 1686, .external_lex_state = 2}, - [1689] = {.lex_state = 1717, .external_lex_state = 2}, - [1690] = {.lex_state = 1675, .external_lex_state = 2}, - [1691] = {.lex_state = 1724, .external_lex_state = 2}, - [1692] = {.lex_state = 1686, .external_lex_state = 2}, - [1693] = {.lex_state = 1722, .external_lex_state = 2}, - [1694] = {.lex_state = 1686, .external_lex_state = 2}, - [1695] = {.lex_state = 1700, .external_lex_state = 2}, - [1696] = {.lex_state = 1707, .external_lex_state = 2}, - [1697] = {.lex_state = 1664}, - [1698] = {.lex_state = 1723, .external_lex_state = 2}, - [1699] = {.lex_state = 1686, .external_lex_state = 2}, - [1700] = {.lex_state = 1700, .external_lex_state = 2}, - [1701] = {.lex_state = 1723, .external_lex_state = 2}, - [1702] = {.lex_state = 1706, .external_lex_state = 2}, - [1703] = {.lex_state = 1664}, - [1704] = {.lex_state = 1717, .external_lex_state = 2}, - [1705] = {.lex_state = 1702, .external_lex_state = 2}, - [1706] = {.lex_state = 1660}, - [1707] = {.lex_state = 1699, .external_lex_state = 2}, - [1708] = {.lex_state = 1702, .external_lex_state = 2}, - [1709] = {.lex_state = 1722, .external_lex_state = 2}, - [1710] = {.lex_state = 1675, .external_lex_state = 2}, - [1711] = {.lex_state = 1702, .external_lex_state = 2}, - [1712] = {.lex_state = 1675, .external_lex_state = 2}, - [1713] = {.lex_state = 41, .external_lex_state = 2}, - [1714] = {.lex_state = 1664}, - [1715] = {.lex_state = 1722, .external_lex_state = 2}, - [1716] = {.lex_state = 1702, .external_lex_state = 2}, - [1717] = {.lex_state = 1702, .external_lex_state = 2}, - [1718] = {.lex_state = 1702, .external_lex_state = 2}, - [1719] = {.lex_state = 1702, .external_lex_state = 2}, - [1720] = {.lex_state = 1664}, - [1721] = {.lex_state = 41, .external_lex_state = 2}, - [1722] = {.lex_state = 1702, .external_lex_state = 2}, - [1723] = {.lex_state = 1702, .external_lex_state = 2}, - [1724] = {.lex_state = 1702, .external_lex_state = 2}, - [1725] = {.lex_state = 1645}, - [1726] = {.lex_state = 1647}, - [1727] = {.lex_state = 1702, .external_lex_state = 2}, - [1728] = {.lex_state = 1702, .external_lex_state = 2}, - [1729] = {.lex_state = 1647}, - [1730] = {.lex_state = 1702, .external_lex_state = 2}, - [1731] = {.lex_state = 1702, .external_lex_state = 2}, - [1732] = {.lex_state = 1702, .external_lex_state = 2}, - [1733] = {.lex_state = 1702, .external_lex_state = 2}, - [1734] = {.lex_state = 1702, .external_lex_state = 2}, - [1735] = {.lex_state = 1702, .external_lex_state = 2}, - [1736] = {.lex_state = 1702, .external_lex_state = 2}, - [1737] = {.lex_state = 1702, .external_lex_state = 2}, - [1738] = {.lex_state = 1702, .external_lex_state = 2}, - [1739] = {.lex_state = 1702, .external_lex_state = 2}, - [1740] = {.lex_state = 1702, .external_lex_state = 2}, - [1741] = {.lex_state = 1702, .external_lex_state = 2}, - [1742] = {.lex_state = 1702, .external_lex_state = 2}, - [1743] = {.lex_state = 1702, .external_lex_state = 2}, - [1744] = {.lex_state = 1702, .external_lex_state = 2}, - [1745] = {.lex_state = 1702, .external_lex_state = 2}, - [1746] = {.lex_state = 1702, .external_lex_state = 2}, - [1747] = {.lex_state = 1707, .external_lex_state = 2}, - [1748] = {.lex_state = 1707, .external_lex_state = 2}, - [1749] = {.lex_state = 1707, .external_lex_state = 2}, - [1750] = {.lex_state = 1702, .external_lex_state = 2}, - [1751] = {.lex_state = 1702, .external_lex_state = 2}, - [1752] = {.lex_state = 1702, .external_lex_state = 2}, - [1753] = {.lex_state = 1702, .external_lex_state = 2}, - [1754] = {.lex_state = 1702, .external_lex_state = 2}, - [1755] = {.lex_state = 1702, .external_lex_state = 2}, - [1756] = {.lex_state = 1702, .external_lex_state = 2}, - [1757] = {.lex_state = 1702, .external_lex_state = 2}, - [1758] = {.lex_state = 1702, .external_lex_state = 2}, - [1759] = {.lex_state = 1702, .external_lex_state = 2}, - [1760] = {.lex_state = 1702, .external_lex_state = 2}, - [1761] = {.lex_state = 1702, .external_lex_state = 2}, - [1762] = {.lex_state = 1702, .external_lex_state = 2}, - [1763] = {.lex_state = 1702, .external_lex_state = 2}, - [1764] = {.lex_state = 1702, .external_lex_state = 2}, - [1765] = {.lex_state = 1701, .external_lex_state = 2}, - [1766] = {.lex_state = 1702, .external_lex_state = 2}, - [1767] = {.lex_state = 1702, .external_lex_state = 2}, - [1768] = {.lex_state = 1702, .external_lex_state = 2}, - [1769] = {.lex_state = 1702, .external_lex_state = 2}, - [1770] = {.lex_state = 1702, .external_lex_state = 2}, - [1771] = {.lex_state = 1702, .external_lex_state = 2}, - [1772] = {.lex_state = 1702, .external_lex_state = 2}, - [1773] = {.lex_state = 1702, .external_lex_state = 2}, - [1774] = {.lex_state = 1702, .external_lex_state = 2}, - [1775] = {.lex_state = 1702, .external_lex_state = 2}, - [1776] = {.lex_state = 1702, .external_lex_state = 2}, - [1777] = {.lex_state = 1702, .external_lex_state = 2}, - [1778] = {.lex_state = 1702, .external_lex_state = 2}, - [1779] = {.lex_state = 1702, .external_lex_state = 2}, - [1780] = {.lex_state = 1702, .external_lex_state = 2}, + [1504] = {.lex_state = 1630}, + [1505] = {.lex_state = 1630}, + [1506] = {.lex_state = 1630}, + [1507] = {.lex_state = 1708, .external_lex_state = 2}, + [1508] = {.lex_state = 1706, .external_lex_state = 2}, + [1509] = {.lex_state = 1706, .external_lex_state = 2}, + [1510] = {.lex_state = 1708, .external_lex_state = 2}, + [1511] = {.lex_state = 1708, .external_lex_state = 2}, + [1512] = {.lex_state = 1708, .external_lex_state = 2}, + [1513] = {.lex_state = 1710, .external_lex_state = 2}, + [1514] = {.lex_state = 1708, .external_lex_state = 2}, + [1515] = {.lex_state = 1710, .external_lex_state = 2}, + [1516] = {.lex_state = 1708, .external_lex_state = 2}, + [1517] = {.lex_state = 1708, .external_lex_state = 2}, + [1518] = {.lex_state = 1710, .external_lex_state = 2}, + [1519] = {.lex_state = 1708, .external_lex_state = 2}, + [1520] = {.lex_state = 1710, .external_lex_state = 2}, + [1521] = {.lex_state = 1708, .external_lex_state = 2}, + [1522] = {.lex_state = 1710, .external_lex_state = 2}, + [1523] = {.lex_state = 1710, .external_lex_state = 2}, + [1524] = {.lex_state = 1710, .external_lex_state = 2}, + [1525] = {.lex_state = 1666}, + [1526] = {.lex_state = 1708, .external_lex_state = 2}, + [1527] = {.lex_state = 1708, .external_lex_state = 2}, + [1528] = {.lex_state = 1708, .external_lex_state = 2}, + [1529] = {.lex_state = 1708, .external_lex_state = 2}, + [1530] = {.lex_state = 1708, .external_lex_state = 2}, + [1531] = {.lex_state = 1665}, + [1532] = {.lex_state = 1709, .external_lex_state = 2}, + [1533] = {.lex_state = 1706, .external_lex_state = 2}, + [1534] = {.lex_state = 1640}, + [1535] = {.lex_state = 1710, .external_lex_state = 2}, + [1536] = {.lex_state = 1710, .external_lex_state = 2}, + [1537] = {.lex_state = 1665}, + [1538] = {.lex_state = 1710, .external_lex_state = 2}, + [1539] = {.lex_state = 1676, .external_lex_state = 2}, + [1540] = {.lex_state = 1676, .external_lex_state = 2}, + [1541] = {.lex_state = 1640}, + [1542] = {.lex_state = 1714, .external_lex_state = 2}, + [1543] = {.lex_state = 1686, .external_lex_state = 2}, + [1544] = {.lex_state = 1676, .external_lex_state = 2}, + [1545] = {.lex_state = 1665}, + [1546] = {.lex_state = 1665}, + [1547] = {.lex_state = 1710, .external_lex_state = 2}, + [1548] = {.lex_state = 1710, .external_lex_state = 2}, + [1549] = {.lex_state = 1665}, + [1550] = {.lex_state = 1707, .external_lex_state = 2}, + [1551] = {.lex_state = 1710, .external_lex_state = 2}, + [1552] = {.lex_state = 1710, .external_lex_state = 2}, + [1553] = {.lex_state = 1708, .external_lex_state = 2}, + [1554] = {.lex_state = 1710, .external_lex_state = 2}, + [1555] = {.lex_state = 1710, .external_lex_state = 2}, + [1556] = {.lex_state = 1640}, + [1557] = {.lex_state = 1707, .external_lex_state = 2}, + [1558] = {.lex_state = 1665}, + [1559] = {.lex_state = 1642}, + [1560] = {.lex_state = 1707, .external_lex_state = 2}, + [1561] = {.lex_state = 1707, .external_lex_state = 2}, + [1562] = {.lex_state = 1665}, + [1563] = {.lex_state = 1708, .external_lex_state = 2}, + [1564] = {.lex_state = 1710, .external_lex_state = 2}, + [1565] = {.lex_state = 1686, .external_lex_state = 2}, + [1566] = {.lex_state = 1665}, + [1567] = {.lex_state = 1707, .external_lex_state = 2}, + [1568] = {.lex_state = 1665}, + [1569] = {.lex_state = 1665}, + [1570] = {.lex_state = 1665}, + [1571] = {.lex_state = 1699, .external_lex_state = 2}, + [1572] = {.lex_state = 1724, .external_lex_state = 2}, + [1573] = {.lex_state = 1710, .external_lex_state = 2}, + [1574] = {.lex_state = 1665}, + [1575] = {.lex_state = 1665}, + [1576] = {.lex_state = 1687, .external_lex_state = 2}, + [1577] = {.lex_state = 1665}, + [1578] = {.lex_state = 1665}, + [1579] = {.lex_state = 1642}, + [1580] = {.lex_state = 1710, .external_lex_state = 2}, + [1581] = {.lex_state = 1665}, + [1582] = {.lex_state = 1687, .external_lex_state = 2}, + [1583] = {.lex_state = 1665}, + [1584] = {.lex_state = 1687, .external_lex_state = 2}, + [1585] = {.lex_state = 1665}, + [1586] = {.lex_state = 1666}, + [1587] = {.lex_state = 1642}, + [1588] = {.lex_state = 1665}, + [1589] = {.lex_state = 1687, .external_lex_state = 2}, + [1590] = {.lex_state = 1676, .external_lex_state = 2}, + [1591] = {.lex_state = 1710, .external_lex_state = 2}, + [1592] = {.lex_state = 1710, .external_lex_state = 2}, + [1593] = {.lex_state = 1710, .external_lex_state = 2}, + [1594] = {.lex_state = 1687, .external_lex_state = 2}, + [1595] = {.lex_state = 1707, .external_lex_state = 2}, + [1596] = {.lex_state = 1687, .external_lex_state = 2}, + [1597] = {.lex_state = 1666}, + [1598] = {.lex_state = 1710, .external_lex_state = 2}, + [1599] = {.lex_state = 1687, .external_lex_state = 2}, + [1600] = {.lex_state = 1646}, + [1601] = {.lex_state = 1687, .external_lex_state = 2}, + [1602] = {.lex_state = 1642}, + [1603] = {.lex_state = 1713, .external_lex_state = 2}, + [1604] = {.lex_state = 1724, .external_lex_state = 2}, + [1605] = {.lex_state = 1724, .external_lex_state = 2}, + [1606] = {.lex_state = 1665}, + [1607] = {.lex_state = 1724, .external_lex_state = 2}, + [1608] = {.lex_state = 1710, .external_lex_state = 2}, + [1609] = {.lex_state = 1665}, + [1610] = {.lex_state = 1687, .external_lex_state = 2}, + [1611] = {.lex_state = 1676, .external_lex_state = 2}, + [1612] = {.lex_state = 1710, .external_lex_state = 2}, + [1613] = {.lex_state = 1704, .external_lex_state = 2}, + [1614] = {.lex_state = 1646}, + [1615] = {.lex_state = 1724, .external_lex_state = 2}, + [1616] = {.lex_state = 1642}, + [1617] = {.lex_state = 1676, .external_lex_state = 2}, + [1618] = {.lex_state = 1725, .external_lex_state = 2}, + [1619] = {.lex_state = 1707, .external_lex_state = 2}, + [1620] = {.lex_state = 1708, .external_lex_state = 2}, + [1621] = {.lex_state = 1713, .external_lex_state = 2}, + [1622] = {.lex_state = 1724, .external_lex_state = 2}, + [1623] = {.lex_state = 1724, .external_lex_state = 2}, + [1624] = {.lex_state = 1665}, + [1625] = {.lex_state = 1676, .external_lex_state = 2}, + [1626] = {.lex_state = 1676, .external_lex_state = 2}, + [1627] = {.lex_state = 1676, .external_lex_state = 2}, + [1628] = {.lex_state = 1700, .external_lex_state = 2}, + [1629] = {.lex_state = 1676, .external_lex_state = 2}, + [1630] = {.lex_state = 1665}, + [1631] = {.lex_state = 1700, .external_lex_state = 2}, + [1632] = {.lex_state = 1676, .external_lex_state = 2}, + [1633] = {.lex_state = 1714, .external_lex_state = 2}, + [1634] = {.lex_state = 1707, .external_lex_state = 2}, + [1635] = {.lex_state = 1725, .external_lex_state = 2}, + [1636] = {.lex_state = 1723, .external_lex_state = 2}, + [1637] = {.lex_state = 1725, .external_lex_state = 2}, + [1638] = {.lex_state = 1725, .external_lex_state = 2}, + [1639] = {.lex_state = 1665}, + [1640] = {.lex_state = 1665}, + [1641] = {.lex_state = 1648}, + [1642] = {.lex_state = 1707, .external_lex_state = 2}, + [1643] = {.lex_state = 1642}, + [1644] = {.lex_state = 1665}, + [1645] = {.lex_state = 1724, .external_lex_state = 2}, + [1646] = {.lex_state = 1687, .external_lex_state = 2}, + [1647] = {.lex_state = 1642}, + [1648] = {.lex_state = 1687, .external_lex_state = 2}, + [1649] = {.lex_state = 1687, .external_lex_state = 2}, + [1650] = {.lex_state = 1725, .external_lex_state = 2}, + [1651] = {.lex_state = 1687, .external_lex_state = 2}, + [1652] = {.lex_state = 1642}, + [1653] = {.lex_state = 1704, .external_lex_state = 2}, + [1654] = {.lex_state = 1707, .external_lex_state = 2}, + [1655] = {.lex_state = 1707, .external_lex_state = 2}, + [1656] = {.lex_state = 1707, .external_lex_state = 2}, + [1657] = {.lex_state = 1676, .external_lex_state = 2}, + [1658] = {.lex_state = 1665}, + [1659] = {.lex_state = 1665}, + [1660] = {.lex_state = 1644}, + [1661] = {.lex_state = 1642}, + [1662] = {.lex_state = 1665}, + [1663] = {.lex_state = 1687, .external_lex_state = 2}, + [1664] = {.lex_state = 1723, .external_lex_state = 2}, + [1665] = {.lex_state = 1665}, + [1666] = {.lex_state = 1702, .external_lex_state = 2}, + [1667] = {.lex_state = 1676, .external_lex_state = 2}, + [1668] = {.lex_state = 1665}, + [1669] = {.lex_state = 1676, .external_lex_state = 2}, + [1670] = {.lex_state = 1687, .external_lex_state = 2}, + [1671] = {.lex_state = 1718, .external_lex_state = 2}, + [1672] = {.lex_state = 1708, .external_lex_state = 2}, + [1673] = {.lex_state = 1699, .external_lex_state = 2}, + [1674] = {.lex_state = 1665}, + [1675] = {.lex_state = 1708, .external_lex_state = 2}, + [1676] = {.lex_state = 1636}, + [1677] = {.lex_state = 1687, .external_lex_state = 2}, + [1678] = {.lex_state = 1648}, + [1679] = {.lex_state = 1665}, + [1680] = {.lex_state = 1648}, + [1681] = {.lex_state = 1648}, + [1682] = {.lex_state = 1665}, + [1683] = {.lex_state = 1687, .external_lex_state = 2}, + [1684] = {.lex_state = 1718, .external_lex_state = 2}, + [1685] = {.lex_state = 1724, .external_lex_state = 2}, + [1686] = {.lex_state = 1701, .external_lex_state = 2}, + [1687] = {.lex_state = 1723, .external_lex_state = 2}, + [1688] = {.lex_state = 1724, .external_lex_state = 2}, + [1689] = {.lex_state = 1701, .external_lex_state = 2}, + [1690] = {.lex_state = 1665}, + [1691] = {.lex_state = 1687, .external_lex_state = 2}, + [1692] = {.lex_state = 1708, .external_lex_state = 2}, + [1693] = {.lex_state = 1703, .external_lex_state = 2}, + [1694] = {.lex_state = 40, .external_lex_state = 2}, + [1695] = {.lex_state = 1703, .external_lex_state = 2}, + [1696] = {.lex_state = 1703, .external_lex_state = 2}, + [1697] = {.lex_state = 1703, .external_lex_state = 2}, + [1698] = {.lex_state = 1703, .external_lex_state = 2}, + [1699] = {.lex_state = 1708, .external_lex_state = 2}, + [1700] = {.lex_state = 1703, .external_lex_state = 2}, + [1701] = {.lex_state = 1725, .external_lex_state = 2}, + [1702] = {.lex_state = 1725, .external_lex_state = 2}, + [1703] = {.lex_state = 1676, .external_lex_state = 2}, + [1704] = {.lex_state = 1723, .external_lex_state = 2}, + [1705] = {.lex_state = 1665}, + [1706] = {.lex_state = 1646}, + [1707] = {.lex_state = 1703, .external_lex_state = 2}, + [1708] = {.lex_state = 1703, .external_lex_state = 2}, + [1709] = {.lex_state = 1703, .external_lex_state = 2}, + [1710] = {.lex_state = 1703, .external_lex_state = 2}, + [1711] = {.lex_state = 1661}, + [1712] = {.lex_state = 1700, .external_lex_state = 2}, + [1713] = {.lex_state = 1703, .external_lex_state = 2}, + [1714] = {.lex_state = 1701, .external_lex_state = 2}, + [1715] = {.lex_state = 1703, .external_lex_state = 2}, + [1716] = {.lex_state = 1725, .external_lex_state = 2}, + [1717] = {.lex_state = 40, .external_lex_state = 2}, + [1718] = {.lex_state = 1700, .external_lex_state = 2}, + [1719] = {.lex_state = 1703, .external_lex_state = 2}, + [1720] = {.lex_state = 1708, .external_lex_state = 2}, + [1721] = {.lex_state = 1646}, + [1722] = {.lex_state = 40, .external_lex_state = 2}, + [1723] = {.lex_state = 1665}, + [1724] = {.lex_state = 1723, .external_lex_state = 2}, + [1725] = {.lex_state = 1703, .external_lex_state = 2}, + [1726] = {.lex_state = 1665}, + [1727] = {.lex_state = 1703, .external_lex_state = 2}, + [1728] = {.lex_state = 1703, .external_lex_state = 2}, + [1729] = {.lex_state = 1703, .external_lex_state = 2}, + [1730] = {.lex_state = 1703, .external_lex_state = 2}, + [1731] = {.lex_state = 1703, .external_lex_state = 2}, + [1732] = {.lex_state = 1648}, + [1733] = {.lex_state = 1703, .external_lex_state = 2}, + [1734] = {.lex_state = 1703, .external_lex_state = 2}, + [1735] = {.lex_state = 1718, .external_lex_state = 2}, + [1736] = {.lex_state = 1703, .external_lex_state = 2}, + [1737] = {.lex_state = 1703, .external_lex_state = 2}, + [1738] = {.lex_state = 1723, .external_lex_state = 2}, + [1739] = {.lex_state = 1703, .external_lex_state = 2}, + [1740] = {.lex_state = 1703, .external_lex_state = 2}, + [1741] = {.lex_state = 1703, .external_lex_state = 2}, + [1742] = {.lex_state = 1703, .external_lex_state = 2}, + [1743] = {.lex_state = 1703, .external_lex_state = 2}, + [1744] = {.lex_state = 1703, .external_lex_state = 2}, + [1745] = {.lex_state = 1703, .external_lex_state = 2}, + [1746] = {.lex_state = 1703, .external_lex_state = 2}, + [1747] = {.lex_state = 1665}, + [1748] = {.lex_state = 1703, .external_lex_state = 2}, + [1749] = {.lex_state = 1725, .external_lex_state = 2}, + [1750] = {.lex_state = 1703, .external_lex_state = 2}, + [1751] = {.lex_state = 1703, .external_lex_state = 2}, + [1752] = {.lex_state = 1718, .external_lex_state = 2}, + [1753] = {.lex_state = 1703, .external_lex_state = 2}, + [1754] = {.lex_state = 1703, .external_lex_state = 2}, + [1755] = {.lex_state = 1703, .external_lex_state = 2}, + [1756] = {.lex_state = 1703, .external_lex_state = 2}, + [1757] = {.lex_state = 1703, .external_lex_state = 2}, + [1758] = {.lex_state = 1703, .external_lex_state = 2}, + [1759] = {.lex_state = 1676, .external_lex_state = 2}, + [1760] = {.lex_state = 1703, .external_lex_state = 2}, + [1761] = {.lex_state = 1703, .external_lex_state = 2}, + [1762] = {.lex_state = 1703, .external_lex_state = 2}, + [1763] = {.lex_state = 1703, .external_lex_state = 2}, + [1764] = {.lex_state = 1703, .external_lex_state = 2}, + [1765] = {.lex_state = 1703, .external_lex_state = 2}, + [1766] = {.lex_state = 1703, .external_lex_state = 2}, + [1767] = {.lex_state = 1648}, + [1768] = {.lex_state = 1703, .external_lex_state = 2}, + [1769] = {.lex_state = 1703, .external_lex_state = 2}, + [1770] = {.lex_state = 1703, .external_lex_state = 2}, + [1771] = {.lex_state = 1703, .external_lex_state = 2}, + [1772] = {.lex_state = 1703, .external_lex_state = 2}, + [1773] = {.lex_state = 1703, .external_lex_state = 2}, + [1774] = {.lex_state = 1703, .external_lex_state = 2}, + [1775] = {.lex_state = 1703, .external_lex_state = 2}, + [1776] = {.lex_state = 1703, .external_lex_state = 2}, + [1777] = {.lex_state = 1703, .external_lex_state = 2}, + [1778] = {.lex_state = 1703, .external_lex_state = 2}, + [1779] = {.lex_state = 1703, .external_lex_state = 2}, + [1780] = {.lex_state = 1665}, [1781] = {.lex_state = 1702, .external_lex_state = 2}, - [1782] = {.lex_state = 1702, .external_lex_state = 2}, - [1783] = {.lex_state = 1702, .external_lex_state = 2}, - [1784] = {.lex_state = 1702, .external_lex_state = 2}, - [1785] = {.lex_state = 1702, .external_lex_state = 2}, - [1786] = {.lex_state = 1702, .external_lex_state = 2}, - [1787] = {.lex_state = 1702, .external_lex_state = 2}, - [1788] = {.lex_state = 1702, .external_lex_state = 2}, - [1789] = {.lex_state = 1702, .external_lex_state = 2}, - [1790] = {.lex_state = 1702, .external_lex_state = 2}, - [1791] = {.lex_state = 1702, .external_lex_state = 2}, - [1792] = {.lex_state = 1702, .external_lex_state = 2}, - [1793] = {.lex_state = 1724, .external_lex_state = 2}, - [1794] = {.lex_state = 1724, .external_lex_state = 2}, - [1795] = {.lex_state = 1700, .external_lex_state = 2}, - [1796] = {.lex_state = 1724, .external_lex_state = 2}, - [1797] = {.lex_state = 1724, .external_lex_state = 2}, - [1798] = {.lex_state = 1700, .external_lex_state = 2}, - [1799] = {.lex_state = 1724, .external_lex_state = 2}, - [1800] = {.lex_state = 1645}, - [1801] = {.lex_state = 1722, .external_lex_state = 2}, - [1802] = {.lex_state = 41, .external_lex_state = 2}, - [1803] = {.lex_state = 1702, .external_lex_state = 2}, - [1804] = {.lex_state = 1702, .external_lex_state = 2}, - [1805] = {.lex_state = 1717, .external_lex_state = 2}, - [1806] = {.lex_state = 1702, .external_lex_state = 2}, - [1807] = {.lex_state = 1702, .external_lex_state = 2}, - [1808] = {.lex_state = 1702, .external_lex_state = 2}, - [1809] = {.lex_state = 1702, .external_lex_state = 2}, - [1810] = {.lex_state = 1664}, - [1811] = {.lex_state = 1699, .external_lex_state = 2}, - [1812] = {.lex_state = 1702, .external_lex_state = 2}, - [1813] = {.lex_state = 1702, .external_lex_state = 2}, - [1814] = {.lex_state = 1702, .external_lex_state = 2}, - [1815] = {.lex_state = 1717, .external_lex_state = 2}, - [1816] = {.lex_state = 1664}, - [1817] = {.lex_state = 1664}, - [1818] = {.lex_state = 1664}, - [1819] = {.lex_state = 1702, .external_lex_state = 2}, - [1820] = {.lex_state = 1664}, - [1821] = {.lex_state = 1702, .external_lex_state = 2}, - [1822] = {.lex_state = 1647}, - [1823] = {.lex_state = 1702, .external_lex_state = 2}, - [1824] = {.lex_state = 1702, .external_lex_state = 2}, - [1825] = {.lex_state = 1702, .external_lex_state = 2}, - [1826] = {.lex_state = 45, .external_lex_state = 2}, - [1827] = {.lex_state = 1702, .external_lex_state = 2}, - [1828] = {.lex_state = 1702, .external_lex_state = 2}, - [1829] = {.lex_state = 1702, .external_lex_state = 2}, - [1830] = {.lex_state = 1702, .external_lex_state = 2}, - [1831] = {.lex_state = 1702, .external_lex_state = 2}, - [1832] = {.lex_state = 1702, .external_lex_state = 2}, - [1833] = {.lex_state = 1702, .external_lex_state = 2}, - [1834] = {.lex_state = 1702, .external_lex_state = 2}, - [1835] = {.lex_state = 1702, .external_lex_state = 2}, - [1836] = {.lex_state = 1702, .external_lex_state = 2}, - [1837] = {.lex_state = 1702, .external_lex_state = 2}, - [1838] = {.lex_state = 1647}, - [1839] = {.lex_state = 1702, .external_lex_state = 2}, - [1840] = {.lex_state = 1702, .external_lex_state = 2}, - [1841] = {.lex_state = 1702, .external_lex_state = 2}, - [1842] = {.lex_state = 1702, .external_lex_state = 2}, - [1843] = {.lex_state = 1664}, - [1844] = {.lex_state = 1664}, - [1845] = {.lex_state = 1702, .external_lex_state = 2}, - [1846] = {.lex_state = 1664}, - [1847] = {.lex_state = 1664}, - [1848] = {.lex_state = 1702, .external_lex_state = 2}, - [1849] = {.lex_state = 1702, .external_lex_state = 2}, - [1850] = {.lex_state = 1702, .external_lex_state = 2}, - [1851] = {.lex_state = 1647}, - [1852] = {.lex_state = 1702, .external_lex_state = 2}, - [1853] = {.lex_state = 1702, .external_lex_state = 2}, - [1854] = {.lex_state = 1702, .external_lex_state = 2}, - [1855] = {.lex_state = 1702, .external_lex_state = 2}, - [1856] = {.lex_state = 1702, .external_lex_state = 2}, - [1857] = {.lex_state = 1702, .external_lex_state = 2}, - [1858] = {.lex_state = 1702, .external_lex_state = 2}, - [1859] = {.lex_state = 1702, .external_lex_state = 2}, - [1860] = {.lex_state = 1702, .external_lex_state = 2}, - [1861] = {.lex_state = 1664}, - [1862] = {.lex_state = 1702, .external_lex_state = 2}, - [1863] = {.lex_state = 1702, .external_lex_state = 2}, - [1864] = {.lex_state = 1702, .external_lex_state = 2}, - [1865] = {.lex_state = 1702, .external_lex_state = 2}, - [1866] = {.lex_state = 1702, .external_lex_state = 2}, - [1867] = {.lex_state = 1702, .external_lex_state = 2}, - [1868] = {.lex_state = 1647}, - [1869] = {.lex_state = 1702, .external_lex_state = 2}, - [1870] = {.lex_state = 1702, .external_lex_state = 2}, - [1871] = {.lex_state = 1702, .external_lex_state = 2}, - [1872] = {.lex_state = 1651}, - [1873] = {.lex_state = 1702, .external_lex_state = 2}, - [1874] = {.lex_state = 1702, .external_lex_state = 2}, - [1875] = {.lex_state = 1649}, - [1876] = {.lex_state = 1702, .external_lex_state = 2}, - [1877] = {.lex_state = 1702, .external_lex_state = 2}, - [1878] = {.lex_state = 1702, .external_lex_state = 2}, - [1879] = {.lex_state = 1702, .external_lex_state = 2}, - [1880] = {.lex_state = 1702, .external_lex_state = 2}, - [1881] = {.lex_state = 1702, .external_lex_state = 2}, - [1882] = {.lex_state = 1702, .external_lex_state = 2}, - [1883] = {.lex_state = 1702, .external_lex_state = 2}, - [1884] = {.lex_state = 1702, .external_lex_state = 2}, - [1885] = {.lex_state = 1702, .external_lex_state = 2}, - [1886] = {.lex_state = 1702, .external_lex_state = 2}, - [1887] = {.lex_state = 1647}, - [1888] = {.lex_state = 1702, .external_lex_state = 2}, - [1889] = {.lex_state = 1702, .external_lex_state = 2}, - [1890] = {.lex_state = 1702, .external_lex_state = 2}, - [1891] = {.lex_state = 1664}, - [1892] = {.lex_state = 1702, .external_lex_state = 2}, - [1893] = {.lex_state = 1664}, - [1894] = {.lex_state = 1664}, - [1895] = {.lex_state = 1702, .external_lex_state = 2}, - [1896] = {.lex_state = 1702, .external_lex_state = 2}, - [1897] = {.lex_state = 1702, .external_lex_state = 2}, - [1898] = {.lex_state = 1664}, - [1899] = {.lex_state = 1664}, - [1900] = {.lex_state = 1664}, - [1901] = {.lex_state = 1702, .external_lex_state = 2}, - [1902] = {.lex_state = 1702, .external_lex_state = 2}, - [1903] = {.lex_state = 1702, .external_lex_state = 2}, - [1904] = {.lex_state = 1702, .external_lex_state = 2}, - [1905] = {.lex_state = 1702, .external_lex_state = 2}, - [1906] = {.lex_state = 1664}, - [1907] = {.lex_state = 1702, .external_lex_state = 2}, - [1908] = {.lex_state = 1702, .external_lex_state = 2}, - [1909] = {.lex_state = 1702, .external_lex_state = 2}, - [1910] = {.lex_state = 1664}, - [1911] = {.lex_state = 1664}, - [1912] = {.lex_state = 1664}, - [1913] = {.lex_state = 1664}, - [1914] = {.lex_state = 1664}, - [1915] = {.lex_state = 1664}, - [1916] = {.lex_state = 1664}, - [1917] = {.lex_state = 1664}, - [1918] = {.lex_state = 1664}, - [1919] = {.lex_state = 1664}, - [1920] = {.lex_state = 1664}, - [1921] = {.lex_state = 1664}, - [1922] = {.lex_state = 1664}, - [1923] = {.lex_state = 1664}, - [1924] = {.lex_state = 1664}, - [1925] = {.lex_state = 1702, .external_lex_state = 2}, - [1926] = {.lex_state = 1702, .external_lex_state = 2}, - [1927] = {.lex_state = 45, .external_lex_state = 2}, - [1928] = {.lex_state = 1702, .external_lex_state = 2}, - [1929] = {.lex_state = 1702, .external_lex_state = 2}, - [1930] = {.lex_state = 1702, .external_lex_state = 2}, - [1931] = {.lex_state = 1702, .external_lex_state = 2}, - [1932] = {.lex_state = 1664}, - [1933] = {.lex_state = 1664}, - [1934] = {.lex_state = 1664}, - [1935] = {.lex_state = 1664}, - [1936] = {.lex_state = 45, .external_lex_state = 2}, - [1937] = {.lex_state = 1702, .external_lex_state = 2}, - [1938] = {.lex_state = 1702, .external_lex_state = 2}, - [1939] = {.lex_state = 1702, .external_lex_state = 2}, - [1940] = {.lex_state = 1702, .external_lex_state = 2}, - [1941] = {.lex_state = 1660}, - [1942] = {.lex_state = 1702, .external_lex_state = 2}, - [1943] = {.lex_state = 1702, .external_lex_state = 2}, - [1944] = {.lex_state = 1702, .external_lex_state = 2}, - [1945] = {.lex_state = 1702, .external_lex_state = 2}, - [1946] = {.lex_state = 1702, .external_lex_state = 2}, - [1947] = {.lex_state = 1702, .external_lex_state = 2}, - [1948] = {.lex_state = 45, .external_lex_state = 2}, - [1949] = {.lex_state = 45, .external_lex_state = 2}, - [1950] = {.lex_state = 45, .external_lex_state = 2}, - [1951] = {.lex_state = 1647}, - [1952] = {.lex_state = 1664}, - [1953] = {.lex_state = 1664}, - [1954] = {.lex_state = 1664}, - [1955] = {.lex_state = 1664}, - [1956] = {.lex_state = 1664}, - [1957] = {.lex_state = 1651}, - [1958] = {.lex_state = 1664}, - [1959] = {.lex_state = 1664}, - [1960] = {.lex_state = 1664}, - [1961] = {.lex_state = 1664}, - [1962] = {.lex_state = 1664}, - [1963] = {.lex_state = 1664}, - [1964] = {.lex_state = 1660}, - [1965] = {.lex_state = 1664}, - [1966] = {.lex_state = 1664}, - [1967] = {.lex_state = 1664}, - [1968] = {.lex_state = 1664}, - [1969] = {.lex_state = 1664}, - [1970] = {.lex_state = 1664}, - [1971] = {.lex_state = 1664}, - [1972] = {.lex_state = 1664}, - [1973] = {.lex_state = 1664}, - [1974] = {.lex_state = 1664}, - [1975] = {.lex_state = 1664}, - [1976] = {.lex_state = 1694, .external_lex_state = 2}, - [1977] = {.lex_state = 1694, .external_lex_state = 2}, - [1978] = {.lex_state = 1664}, - [1979] = {.lex_state = 1664}, - [1980] = {.lex_state = 1664}, - [1981] = {.lex_state = 1664}, - [1982] = {.lex_state = 1664}, - [1983] = {.lex_state = 1664}, - [1984] = {.lex_state = 1653}, - [1985] = {.lex_state = 1653}, - [1986] = {.lex_state = 1649}, - [1987] = {.lex_state = 1664}, - [1988] = {.lex_state = 1664}, - [1989] = {.lex_state = 1664}, - [1990] = {.lex_state = 1664}, - [1991] = {.lex_state = 1664}, - [1992] = {.lex_state = 1664}, - [1993] = {.lex_state = 1664}, - [1994] = {.lex_state = 1664}, - [1995] = {.lex_state = 1664}, - [1996] = {.lex_state = 1664}, - [1997] = {.lex_state = 1664}, - [1998] = {.lex_state = 1664}, - [1999] = {.lex_state = 1664}, - [2000] = {.lex_state = 1664}, - [2001] = {.lex_state = 1664}, - [2002] = {.lex_state = 1664}, - [2003] = {.lex_state = 1664}, - [2004] = {.lex_state = 1664}, - [2005] = {.lex_state = 1664}, - [2006] = {.lex_state = 1664}, - [2007] = {.lex_state = 1664}, - [2008] = {.lex_state = 1664}, - [2009] = {.lex_state = 1664}, - [2010] = {.lex_state = 1664}, - [2011] = {.lex_state = 1664}, - [2012] = {.lex_state = 1664}, - [2013] = {.lex_state = 1664}, - [2014] = {.lex_state = 1664}, - [2015] = {.lex_state = 1664}, - [2016] = {.lex_state = 1664}, - [2017] = {.lex_state = 1664}, - [2018] = {.lex_state = 1664}, - [2019] = {.lex_state = 1664}, - [2020] = {.lex_state = 1664}, - [2021] = {.lex_state = 1664}, - [2022] = {.lex_state = 1664}, - [2023] = {.lex_state = 1664}, - [2024] = {.lex_state = 1664}, - [2025] = {.lex_state = 1664}, - [2026] = {.lex_state = 1664}, - [2027] = {.lex_state = 1664}, - [2028] = {.lex_state = 1664}, - [2029] = {.lex_state = 1664}, - [2030] = {.lex_state = 1664}, - [2031] = {.lex_state = 1664}, - [2032] = {.lex_state = 1664}, - [2033] = {.lex_state = 1664}, - [2034] = {.lex_state = 1664}, - [2035] = {.lex_state = 1664}, - [2036] = {.lex_state = 1664}, - [2037] = {.lex_state = 1664}, - [2038] = {.lex_state = 1664}, - [2039] = {.lex_state = 1664}, - [2040] = {.lex_state = 1664}, - [2041] = {.lex_state = 1664}, - [2042] = {.lex_state = 1664}, - [2043] = {.lex_state = 1664}, - [2044] = {.lex_state = 1664}, - [2045] = {.lex_state = 1664}, - [2046] = {.lex_state = 1664}, - [2047] = {.lex_state = 1664}, - [2048] = {.lex_state = 1664}, - [2049] = {.lex_state = 1664}, - [2050] = {.lex_state = 1664}, - [2051] = {.lex_state = 1664}, - [2052] = {.lex_state = 1664}, - [2053] = {.lex_state = 1664}, - [2054] = {.lex_state = 1664}, - [2055] = {.lex_state = 1664}, - [2056] = {.lex_state = 1664}, - [2057] = {.lex_state = 1694, .external_lex_state = 2}, - [2058] = {.lex_state = 1694, .external_lex_state = 2}, - [2059] = {.lex_state = 1664}, - [2060] = {.lex_state = 1664}, - [2061] = {.lex_state = 1664}, - [2062] = {.lex_state = 1664}, - [2063] = {.lex_state = 1664}, - [2064] = {.lex_state = 1664}, - [2065] = {.lex_state = 1664}, - [2066] = {.lex_state = 1664}, - [2067] = {.lex_state = 1664}, - [2068] = {.lex_state = 1664}, - [2069] = {.lex_state = 1664}, - [2070] = {.lex_state = 1664}, - [2071] = {.lex_state = 1664}, - [2072] = {.lex_state = 1664}, - [2073] = {.lex_state = 1664}, - [2074] = {.lex_state = 1664}, - [2075] = {.lex_state = 1664}, - [2076] = {.lex_state = 1664}, - [2077] = {.lex_state = 1664}, - [2078] = {.lex_state = 1664}, - [2079] = {.lex_state = 1655}, - [2080] = {.lex_state = 1655}, - [2081] = {.lex_state = 45, .external_lex_state = 2}, - [2082] = {.lex_state = 1655}, - [2083] = {.lex_state = 1664}, - [2084] = {.lex_state = 1664}, - [2085] = {.lex_state = 1664}, - [2086] = {.lex_state = 1657}, - [2087] = {.lex_state = 1657}, - [2088] = {.lex_state = 1664}, - [2089] = {.lex_state = 1664}, - [2090] = {.lex_state = 1664}, - [2091] = {.lex_state = 1657}, - [2092] = {.lex_state = 1664}, - [2093] = {.lex_state = 1655}, - [2094] = {.lex_state = 1664}, - [2095] = {.lex_state = 1655}, - [2096] = {.lex_state = 1657}, - [2097] = {.lex_state = 1664}, - [2098] = {.lex_state = 1664}, - [2099] = {.lex_state = 1664}, - [2100] = {.lex_state = 45, .external_lex_state = 2}, - [2101] = {.lex_state = 1664}, - [2102] = {.lex_state = 1664}, - [2103] = {.lex_state = 45, .external_lex_state = 2}, - [2104] = {.lex_state = 1664}, - [2105] = {.lex_state = 1664}, - [2106] = {.lex_state = 1655}, - [2107] = {.lex_state = 1664}, - [2108] = {.lex_state = 1664}, - [2109] = {.lex_state = 1664}, - [2110] = {.lex_state = 1664}, - [2111] = {.lex_state = 1664}, - [2112] = {.lex_state = 1664}, - [2113] = {.lex_state = 1664}, - [2114] = {.lex_state = 1664}, - [2115] = {.lex_state = 1664}, - [2116] = {.lex_state = 1664}, - [2117] = {.lex_state = 1664}, - [2118] = {.lex_state = 1664}, - [2119] = {.lex_state = 1653}, - [2120] = {.lex_state = 1664}, - [2121] = {.lex_state = 1664}, - [2122] = {.lex_state = 1657}, - [2123] = {.lex_state = 1655}, - [2124] = {.lex_state = 1664}, - [2125] = {.lex_state = 1664}, - [2126] = {.lex_state = 1664}, - [2127] = {.lex_state = 1664}, - [2128] = {.lex_state = 1664}, - [2129] = {.lex_state = 1655}, - [2130] = {.lex_state = 1664}, - [2131] = {.lex_state = 1664}, - [2132] = {.lex_state = 1664}, - [2133] = {.lex_state = 1655}, - [2134] = {.lex_state = 1664}, - [2135] = {.lex_state = 1664}, - [2136] = {.lex_state = 1664}, - [2137] = {.lex_state = 1664}, - [2138] = {.lex_state = 1664}, - [2139] = {.lex_state = 1664}, - [2140] = {.lex_state = 1664}, - [2141] = {.lex_state = 1664}, - [2142] = {.lex_state = 1664}, - [2143] = {.lex_state = 1664}, - [2144] = {.lex_state = 45, .external_lex_state = 2}, - [2145] = {.lex_state = 45, .external_lex_state = 2}, - [2146] = {.lex_state = 45, .external_lex_state = 2}, - [2147] = {.lex_state = 1664}, - [2148] = {.lex_state = 45, .external_lex_state = 2}, - [2149] = {.lex_state = 1664}, - [2150] = {.lex_state = 45, .external_lex_state = 2}, - [2151] = {.lex_state = 45, .external_lex_state = 2}, - [2152] = {.lex_state = 1653}, - [2153] = {.lex_state = 1664}, - [2154] = {.lex_state = 45, .external_lex_state = 2}, - [2155] = {.lex_state = 1664}, - [2156] = {.lex_state = 1664}, - [2157] = {.lex_state = 1664}, - [2158] = {.lex_state = 1664}, - [2159] = {.lex_state = 1664}, - [2160] = {.lex_state = 41, .external_lex_state = 2}, - [2161] = {.lex_state = 1664}, - [2162] = {.lex_state = 1664}, - [2163] = {.lex_state = 1664}, - [2164] = {.lex_state = 1664}, - [2165] = {.lex_state = 1664}, - [2166] = {.lex_state = 1655}, - [2167] = {.lex_state = 1664}, - [2168] = {.lex_state = 1664}, - [2169] = {.lex_state = 41, .external_lex_state = 2}, - [2170] = {.lex_state = 1664}, - [2171] = {.lex_state = 1655}, - [2172] = {.lex_state = 1721, .external_lex_state = 2}, - [2173] = {.lex_state = 1664}, - [2174] = {.lex_state = 1664}, - [2175] = {.lex_state = 41, .external_lex_state = 2}, - [2176] = {.lex_state = 1657}, - [2177] = {.lex_state = 1664}, - [2178] = {.lex_state = 1664}, - [2179] = {.lex_state = 1664}, - [2180] = {.lex_state = 1664}, - [2181] = {.lex_state = 1655}, - [2182] = {.lex_state = 1664}, - [2183] = {.lex_state = 1664}, - [2184] = {.lex_state = 1664}, - [2185] = {.lex_state = 1664}, - [2186] = {.lex_state = 1664}, - [2187] = {.lex_state = 1664}, - [2188] = {.lex_state = 1655}, - [2189] = {.lex_state = 1664}, - [2190] = {.lex_state = 1664}, - [2191] = {.lex_state = 1664}, - [2192] = {.lex_state = 1655}, - [2193] = {.lex_state = 1664}, - [2194] = {.lex_state = 1664}, - [2195] = {.lex_state = 1664}, - [2196] = {.lex_state = 1664}, - [2197] = {.lex_state = 1657}, - [2198] = {.lex_state = 1664}, - [2199] = {.lex_state = 1664}, - [2200] = {.lex_state = 1664}, - [2201] = {.lex_state = 1664}, - [2202] = {.lex_state = 1664}, - [2203] = {.lex_state = 1664}, - [2204] = {.lex_state = 1657}, - [2205] = {.lex_state = 1664}, - [2206] = {.lex_state = 1664}, - [2207] = {.lex_state = 1664}, - [2208] = {.lex_state = 1664}, - [2209] = {.lex_state = 1664}, - [2210] = {.lex_state = 1655}, - [2211] = {.lex_state = 1664}, - [2212] = {.lex_state = 1664}, - [2213] = {.lex_state = 1664}, - [2214] = {.lex_state = 1664}, - [2215] = {.lex_state = 1664}, - [2216] = {.lex_state = 1664}, - [2217] = {.lex_state = 1664}, - [2218] = {.lex_state = 1657}, - [2219] = {.lex_state = 1664}, - [2220] = {.lex_state = 1721, .external_lex_state = 2}, - [2221] = {.lex_state = 1664}, - [2222] = {.lex_state = 1664}, - [2223] = {.lex_state = 1664}, - [2224] = {.lex_state = 1655}, - [2225] = {.lex_state = 1664}, - [2226] = {.lex_state = 1664}, - [2227] = {.lex_state = 1664}, - [2228] = {.lex_state = 1664}, - [2229] = {.lex_state = 1664}, - [2230] = {.lex_state = 1664}, - [2231] = {.lex_state = 1664}, - [2232] = {.lex_state = 1664}, - [2233] = {.lex_state = 1664}, - [2234] = {.lex_state = 1664}, - [2235] = {.lex_state = 1664}, - [2236] = {.lex_state = 1664}, - [2237] = {.lex_state = 1664}, - [2238] = {.lex_state = 103, .external_lex_state = 2}, - [2239] = {.lex_state = 1664}, - [2240] = {.lex_state = 1664}, - [2241] = {.lex_state = 1664}, - [2242] = {.lex_state = 1664}, - [2243] = {.lex_state = 1664}, - [2244] = {.lex_state = 1664}, - [2245] = {.lex_state = 1664}, - [2246] = {.lex_state = 1664}, - [2247] = {.lex_state = 1664}, - [2248] = {.lex_state = 1664}, - [2249] = {.lex_state = 1664}, - [2250] = {.lex_state = 1664}, - [2251] = {.lex_state = 1664}, - [2252] = {.lex_state = 1664}, - [2253] = {.lex_state = 1664}, - [2254] = {.lex_state = 1664}, - [2255] = {.lex_state = 1664}, - [2256] = {.lex_state = 1664}, - [2257] = {.lex_state = 1664}, - [2258] = {.lex_state = 1664}, - [2259] = {.lex_state = 1664}, - [2260] = {.lex_state = 1664}, - [2261] = {.lex_state = 1664}, - [2262] = {.lex_state = 1664}, - [2263] = {.lex_state = 1664}, - [2264] = {.lex_state = 1664}, - [2265] = {.lex_state = 1664}, - [2266] = {.lex_state = 1664}, - [2267] = {.lex_state = 1664}, - [2268] = {.lex_state = 1664}, - [2269] = {.lex_state = 1664}, - [2270] = {.lex_state = 1664}, - [2271] = {.lex_state = 1664}, - [2272] = {.lex_state = 1664}, - [2273] = {.lex_state = 1664}, - [2274] = {.lex_state = 1660}, - [2275] = {.lex_state = 1664}, - [2276] = {.lex_state = 1664}, - [2277] = {.lex_state = 41, .external_lex_state = 2}, - [2278] = {.lex_state = 1664}, - [2279] = {.lex_state = 1664}, - [2280] = {.lex_state = 1664}, - [2281] = {.lex_state = 1657}, - [2282] = {.lex_state = 1664}, - [2283] = {.lex_state = 1664}, - [2284] = {.lex_state = 1664}, - [2285] = {.lex_state = 1664}, - [2286] = {.lex_state = 1664}, - [2287] = {.lex_state = 1664}, - [2288] = {.lex_state = 1664}, - [2289] = {.lex_state = 1664}, - [2290] = {.lex_state = 1664}, - [2291] = {.lex_state = 1721, .external_lex_state = 2}, - [2292] = {.lex_state = 1664}, - [2293] = {.lex_state = 1664}, - [2294] = {.lex_state = 1664}, - [2295] = {.lex_state = 1664}, - [2296] = {.lex_state = 1664}, - [2297] = {.lex_state = 1664}, - [2298] = {.lex_state = 1655}, - [2299] = {.lex_state = 1664}, - [2300] = {.lex_state = 1664}, - [2301] = {.lex_state = 1655}, - [2302] = {.lex_state = 1664}, - [2303] = {.lex_state = 1664}, - [2304] = {.lex_state = 1664}, - [2305] = {.lex_state = 1664}, - [2306] = {.lex_state = 1664}, - [2307] = {.lex_state = 1664}, - [2308] = {.lex_state = 1664}, - [2309] = {.lex_state = 1655}, - [2310] = {.lex_state = 1664}, - [2311] = {.lex_state = 1664}, - [2312] = {.lex_state = 1664}, - [2313] = {.lex_state = 1664}, - [2314] = {.lex_state = 1664}, - [2315] = {.lex_state = 1664}, - [2316] = {.lex_state = 1664}, - [2317] = {.lex_state = 1664}, - [2318] = {.lex_state = 1664}, - [2319] = {.lex_state = 1664}, - [2320] = {.lex_state = 1664}, - [2321] = {.lex_state = 1664}, - [2322] = {.lex_state = 233, .external_lex_state = 2}, - [2323] = {.lex_state = 1664}, - [2324] = {.lex_state = 1664}, - [2325] = {.lex_state = 102, .external_lex_state = 2}, - [2326] = {.lex_state = 1664}, - [2327] = {.lex_state = 1664}, - [2328] = {.lex_state = 1664}, - [2329] = {.lex_state = 102, .external_lex_state = 2}, - [2330] = {.lex_state = 1664}, - [2331] = {.lex_state = 1664}, - [2332] = {.lex_state = 1664}, - [2333] = {.lex_state = 1664}, - [2334] = {.lex_state = 1664}, - [2335] = {.lex_state = 1664}, - [2336] = {.lex_state = 1664}, - [2337] = {.lex_state = 1664}, - [2338] = {.lex_state = 235, .external_lex_state = 2}, - [2339] = {.lex_state = 1664}, - [2340] = {.lex_state = 1664}, - [2341] = {.lex_state = 1664}, - [2342] = {.lex_state = 1664}, - [2343] = {.lex_state = 1664}, - [2344] = {.lex_state = 1664}, - [2345] = {.lex_state = 1664}, - [2346] = {.lex_state = 1664}, - [2347] = {.lex_state = 1664}, - [2348] = {.lex_state = 1664}, - [2349] = {.lex_state = 1664}, - [2350] = {.lex_state = 41, .external_lex_state = 2}, - [2351] = {.lex_state = 1664}, - [2352] = {.lex_state = 1664}, - [2353] = {.lex_state = 1664}, - [2354] = {.lex_state = 1664}, - [2355] = {.lex_state = 1664}, - [2356] = {.lex_state = 1664}, - [2357] = {.lex_state = 1664}, - [2358] = {.lex_state = 1664}, - [2359] = {.lex_state = 1664}, - [2360] = {.lex_state = 1664}, - [2361] = {.lex_state = 1664}, - [2362] = {.lex_state = 1664}, - [2363] = {.lex_state = 1664}, - [2364] = {.lex_state = 1664}, - [2365] = {.lex_state = 1664}, - [2366] = {.lex_state = 1664}, - [2367] = {.lex_state = 1664}, - [2368] = {.lex_state = 1664}, - [2369] = {.lex_state = 1664}, - [2370] = {.lex_state = 1664}, - [2371] = {.lex_state = 1664}, - [2372] = {.lex_state = 1664}, - [2373] = {.lex_state = 1664}, - [2374] = {.lex_state = 1664}, - [2375] = {.lex_state = 1664}, - [2376] = {.lex_state = 1664}, - [2377] = {.lex_state = 1664}, - [2378] = {.lex_state = 1664}, - [2379] = {.lex_state = 1664}, - [2380] = {.lex_state = 1664}, - [2381] = {.lex_state = 1664}, - [2382] = {.lex_state = 1664}, - [2383] = {.lex_state = 1664}, - [2384] = {.lex_state = 1664}, - [2385] = {.lex_state = 1664}, - [2386] = {.lex_state = 1664}, - [2387] = {.lex_state = 1664}, - [2388] = {.lex_state = 132, .external_lex_state = 2}, - [2389] = {.lex_state = 141, .external_lex_state = 2}, - [2390] = {.lex_state = 1664}, - [2391] = {.lex_state = 1664}, - [2392] = {.lex_state = 1721, .external_lex_state = 2}, - [2393] = {.lex_state = 1664}, - [2394] = {.lex_state = 1664}, - [2395] = {.lex_state = 41, .external_lex_state = 2}, - [2396] = {.lex_state = 1664}, - [2397] = {.lex_state = 1721, .external_lex_state = 2}, - [2398] = {.lex_state = 1664}, - [2399] = {.lex_state = 1664}, - [2400] = {.lex_state = 1664}, - [2401] = {.lex_state = 1664}, - [2402] = {.lex_state = 1664}, - [2403] = {.lex_state = 1664}, - [2404] = {.lex_state = 1664}, - [2405] = {.lex_state = 1664}, - [2406] = {.lex_state = 1664}, - [2407] = {.lex_state = 1664}, - [2408] = {.lex_state = 1664}, - [2409] = {.lex_state = 1664}, - [2410] = {.lex_state = 1664}, - [2411] = {.lex_state = 1664}, - [2412] = {.lex_state = 1664}, - [2413] = {.lex_state = 1721, .external_lex_state = 2}, - [2414] = {.lex_state = 41, .external_lex_state = 2}, - [2415] = {.lex_state = 101, .external_lex_state = 2}, - [2416] = {.lex_state = 1664}, - [2417] = {.lex_state = 1664}, - [2418] = {.lex_state = 1664}, - [2419] = {.lex_state = 1664}, - [2420] = {.lex_state = 41, .external_lex_state = 2}, - [2421] = {.lex_state = 1664}, - [2422] = {.lex_state = 1655}, - [2423] = {.lex_state = 147, .external_lex_state = 2}, - [2424] = {.lex_state = 1664}, - [2425] = {.lex_state = 1664}, - [2426] = {.lex_state = 1721, .external_lex_state = 2}, - [2427] = {.lex_state = 1664}, - [2428] = {.lex_state = 1664}, - [2429] = {.lex_state = 1664}, - [2430] = {.lex_state = 1664}, - [2431] = {.lex_state = 1721, .external_lex_state = 2}, - [2432] = {.lex_state = 1664}, - [2433] = {.lex_state = 1664}, - [2434] = {.lex_state = 1664}, - [2435] = {.lex_state = 1664}, - [2436] = {.lex_state = 1664}, - [2437] = {.lex_state = 41, .external_lex_state = 2}, - [2438] = {.lex_state = 1664}, - [2439] = {.lex_state = 41, .external_lex_state = 2}, - [2440] = {.lex_state = 1664}, - [2441] = {.lex_state = 1664}, - [2442] = {.lex_state = 1664}, - [2443] = {.lex_state = 41, .external_lex_state = 2}, - [2444] = {.lex_state = 41, .external_lex_state = 2}, - [2445] = {.lex_state = 41, .external_lex_state = 2}, - [2446] = {.lex_state = 41, .external_lex_state = 2}, - [2447] = {.lex_state = 1664}, - [2448] = {.lex_state = 1664}, - [2449] = {.lex_state = 1664}, - [2450] = {.lex_state = 232, .external_lex_state = 2}, - [2451] = {.lex_state = 1664}, - [2452] = {.lex_state = 1664}, - [2453] = {.lex_state = 1664}, - [2454] = {.lex_state = 1664}, - [2455] = {.lex_state = 1664}, - [2456] = {.lex_state = 1664}, - [2457] = {.lex_state = 1664}, - [2458] = {.lex_state = 1664}, - [2459] = {.lex_state = 1664}, - [2460] = {.lex_state = 1664}, - [2461] = {.lex_state = 1664}, - [2462] = {.lex_state = 1664}, - [2463] = {.lex_state = 1664}, - [2464] = {.lex_state = 1664}, - [2465] = {.lex_state = 1664}, - [2466] = {.lex_state = 134, .external_lex_state = 2}, - [2467] = {.lex_state = 1664}, - [2468] = {.lex_state = 1664}, - [2469] = {.lex_state = 1664}, - [2470] = {.lex_state = 134, .external_lex_state = 2}, - [2471] = {.lex_state = 1664}, - [2472] = {.lex_state = 1664}, - [2473] = {.lex_state = 1664}, - [2474] = {.lex_state = 1664}, - [2475] = {.lex_state = 135, .external_lex_state = 2}, - [2476] = {.lex_state = 1664}, - [2477] = {.lex_state = 1721, .external_lex_state = 2}, - [2478] = {.lex_state = 1664}, - [2479] = {.lex_state = 1664}, - [2480] = {.lex_state = 1664}, - [2481] = {.lex_state = 1664}, - [2482] = {.lex_state = 1664}, - [2483] = {.lex_state = 1664}, - [2484] = {.lex_state = 1664}, - [2485] = {.lex_state = 1664}, - [2486] = {.lex_state = 1664}, - [2487] = {.lex_state = 1664}, - [2488] = {.lex_state = 1664}, - [2489] = {.lex_state = 1664}, - [2490] = {.lex_state = 1664}, - [2491] = {.lex_state = 1664}, - [2492] = {.lex_state = 1664}, - [2493] = {.lex_state = 1664}, - [2494] = {.lex_state = 1664}, - [2495] = {.lex_state = 1664}, - [2496] = {.lex_state = 1664}, - [2497] = {.lex_state = 1664}, - [2498] = {.lex_state = 1664}, - [2499] = {.lex_state = 1664}, - [2500] = {.lex_state = 1664}, - [2501] = {.lex_state = 1664}, - [2502] = {.lex_state = 1720, .external_lex_state = 2}, - [2503] = {.lex_state = 1720, .external_lex_state = 2}, - [2504] = {.lex_state = 1664}, - [2505] = {.lex_state = 1664}, - [2506] = {.lex_state = 1664}, - [2507] = {.lex_state = 1664}, - [2508] = {.lex_state = 1664}, - [2509] = {.lex_state = 1664}, - [2510] = {.lex_state = 1664}, - [2511] = {.lex_state = 1664}, - [2512] = {.lex_state = 1664}, - [2513] = {.lex_state = 1664}, - [2514] = {.lex_state = 1664}, - [2515] = {.lex_state = 1664}, - [2516] = {.lex_state = 1664}, - [2517] = {.lex_state = 1664}, - [2518] = {.lex_state = 1664}, - [2519] = {.lex_state = 1664}, - [2520] = {.lex_state = 1664}, - [2521] = {.lex_state = 1664}, - [2522] = {.lex_state = 1664}, - [2523] = {.lex_state = 145, .external_lex_state = 2}, - [2524] = {.lex_state = 1664}, - [2525] = {.lex_state = 1664}, - [2526] = {.lex_state = 1664}, - [2527] = {.lex_state = 1664}, - [2528] = {.lex_state = 1664}, - [2529] = {.lex_state = 1664}, - [2530] = {.lex_state = 1664}, - [2531] = {.lex_state = 1664}, - [2532] = {.lex_state = 100, .external_lex_state = 2}, - [2533] = {.lex_state = 232, .external_lex_state = 2}, - [2534] = {.lex_state = 1720, .external_lex_state = 2}, - [2535] = {.lex_state = 1721, .external_lex_state = 2}, - [2536] = {.lex_state = 1720, .external_lex_state = 2}, - [2537] = {.lex_state = 1664}, - [2538] = {.lex_state = 1720, .external_lex_state = 2}, - [2539] = {.lex_state = 146, .external_lex_state = 2}, - [2540] = {.lex_state = 1664}, - [2541] = {.lex_state = 100, .external_lex_state = 2}, - [2542] = {.lex_state = 1664}, - [2543] = {.lex_state = 1720, .external_lex_state = 2}, - [2544] = {.lex_state = 1664}, - [2545] = {.lex_state = 1664}, - [2546] = {.lex_state = 1664}, - [2547] = {.lex_state = 1664}, - [2548] = {.lex_state = 146, .external_lex_state = 2}, - [2549] = {.lex_state = 146, .external_lex_state = 2}, - [2550] = {.lex_state = 1664}, - [2551] = {.lex_state = 146, .external_lex_state = 2}, - [2552] = {.lex_state = 1664}, - [2553] = {.lex_state = 1664}, - [2554] = {.lex_state = 1664}, - [2555] = {.lex_state = 1664}, - [2556] = {.lex_state = 1664}, - [2557] = {.lex_state = 1664}, - [2558] = {.lex_state = 1664}, - [2559] = {.lex_state = 1720, .external_lex_state = 2}, - [2560] = {.lex_state = 1721, .external_lex_state = 2}, - [2561] = {.lex_state = 133, .external_lex_state = 2}, - [2562] = {.lex_state = 194, .external_lex_state = 2}, - [2563] = {.lex_state = 1720, .external_lex_state = 2}, - [2564] = {.lex_state = 1720, .external_lex_state = 2}, - [2565] = {.lex_state = 1720, .external_lex_state = 2}, - [2566] = {.lex_state = 142, .external_lex_state = 2}, - [2567] = {.lex_state = 41, .external_lex_state = 2}, - [2568] = {.lex_state = 144, .external_lex_state = 2}, - [2569] = {.lex_state = 234, .external_lex_state = 2}, - [2570] = {.lex_state = 41, .external_lex_state = 2}, - [2571] = {.lex_state = 135, .external_lex_state = 2}, - [2572] = {.lex_state = 41, .external_lex_state = 2}, - [2573] = {.lex_state = 135, .external_lex_state = 2}, - [2574] = {.lex_state = 234, .external_lex_state = 2}, - [2575] = {.lex_state = 234, .external_lex_state = 2}, - [2576] = {.lex_state = 135, .external_lex_state = 2}, - [2577] = {.lex_state = 135, .external_lex_state = 2}, - [2578] = {.lex_state = 144, .external_lex_state = 2}, - [2579] = {.lex_state = 41, .external_lex_state = 2}, - [2580] = {.lex_state = 41, .external_lex_state = 2}, - [2581] = {.lex_state = 204, .external_lex_state = 2}, - [2582] = {.lex_state = 144, .external_lex_state = 2}, - [2583] = {.lex_state = 1720, .external_lex_state = 2}, - [2584] = {.lex_state = 41, .external_lex_state = 2}, - [2585] = {.lex_state = 234, .external_lex_state = 2}, - [2586] = {.lex_state = 213, .external_lex_state = 2}, - [2587] = {.lex_state = 41, .external_lex_state = 2}, - [2588] = {.lex_state = 41, .external_lex_state = 2}, - [2589] = {.lex_state = 41, .external_lex_state = 2}, - [2590] = {.lex_state = 194, .external_lex_state = 2}, - [2591] = {.lex_state = 41, .external_lex_state = 2}, - [2592] = {.lex_state = 194, .external_lex_state = 2}, - [2593] = {.lex_state = 1721, .external_lex_state = 2}, - [2594] = {.lex_state = 1721, .external_lex_state = 2}, - [2595] = {.lex_state = 41, .external_lex_state = 2}, - [2596] = {.lex_state = 41, .external_lex_state = 2}, - [2597] = {.lex_state = 41, .external_lex_state = 2}, - [2598] = {.lex_state = 1720, .external_lex_state = 2}, - [2599] = {.lex_state = 234, .external_lex_state = 2}, - [2600] = {.lex_state = 144, .external_lex_state = 2}, - [2601] = {.lex_state = 1722, .external_lex_state = 2}, - [2602] = {.lex_state = 194, .external_lex_state = 2}, - [2603] = {.lex_state = 1722, .external_lex_state = 2}, - [2604] = {.lex_state = 41, .external_lex_state = 2}, - [2605] = {.lex_state = 180, .external_lex_state = 2}, - [2606] = {.lex_state = 41, .external_lex_state = 2}, + [1782] = {.lex_state = 1703, .external_lex_state = 2}, + [1783] = {.lex_state = 1703, .external_lex_state = 2}, + [1784] = {.lex_state = 1703, .external_lex_state = 2}, + [1785] = {.lex_state = 1703, .external_lex_state = 2}, + [1786] = {.lex_state = 1703, .external_lex_state = 2}, + [1787] = {.lex_state = 1703, .external_lex_state = 2}, + [1788] = {.lex_state = 1703, .external_lex_state = 2}, + [1789] = {.lex_state = 1703, .external_lex_state = 2}, + [1790] = {.lex_state = 1703, .external_lex_state = 2}, + [1791] = {.lex_state = 1703, .external_lex_state = 2}, + [1792] = {.lex_state = 1703, .external_lex_state = 2}, + [1793] = {.lex_state = 1703, .external_lex_state = 2}, + [1794] = {.lex_state = 1725, .external_lex_state = 2}, + [1795] = {.lex_state = 1703, .external_lex_state = 2}, + [1796] = {.lex_state = 1703, .external_lex_state = 2}, + [1797] = {.lex_state = 1665}, + [1798] = {.lex_state = 1703, .external_lex_state = 2}, + [1799] = {.lex_state = 1703, .external_lex_state = 2}, + [1800] = {.lex_state = 1701, .external_lex_state = 2}, + [1801] = {.lex_state = 1703, .external_lex_state = 2}, + [1802] = {.lex_state = 1703, .external_lex_state = 2}, + [1803] = {.lex_state = 1703, .external_lex_state = 2}, + [1804] = {.lex_state = 1703, .external_lex_state = 2}, + [1805] = {.lex_state = 1703, .external_lex_state = 2}, + [1806] = {.lex_state = 1703, .external_lex_state = 2}, + [1807] = {.lex_state = 1703, .external_lex_state = 2}, + [1808] = {.lex_state = 1703, .external_lex_state = 2}, + [1809] = {.lex_state = 44, .external_lex_state = 2}, + [1810] = {.lex_state = 1665}, + [1811] = {.lex_state = 1665}, + [1812] = {.lex_state = 1703, .external_lex_state = 2}, + [1813] = {.lex_state = 1703, .external_lex_state = 2}, + [1814] = {.lex_state = 1703, .external_lex_state = 2}, + [1815] = {.lex_state = 1703, .external_lex_state = 2}, + [1816] = {.lex_state = 1703, .external_lex_state = 2}, + [1817] = {.lex_state = 1665}, + [1818] = {.lex_state = 1703, .external_lex_state = 2}, + [1819] = {.lex_state = 1703, .external_lex_state = 2}, + [1820] = {.lex_state = 1648}, + [1821] = {.lex_state = 1703, .external_lex_state = 2}, + [1822] = {.lex_state = 1703, .external_lex_state = 2}, + [1823] = {.lex_state = 1648}, + [1824] = {.lex_state = 1703, .external_lex_state = 2}, + [1825] = {.lex_state = 1703, .external_lex_state = 2}, + [1826] = {.lex_state = 1703, .external_lex_state = 2}, + [1827] = {.lex_state = 1703, .external_lex_state = 2}, + [1828] = {.lex_state = 1665}, + [1829] = {.lex_state = 1703, .external_lex_state = 2}, + [1830] = {.lex_state = 1703, .external_lex_state = 2}, + [1831] = {.lex_state = 1703, .external_lex_state = 2}, + [1832] = {.lex_state = 1703, .external_lex_state = 2}, + [1833] = {.lex_state = 44, .external_lex_state = 2}, + [1834] = {.lex_state = 1703, .external_lex_state = 2}, + [1835] = {.lex_state = 1703, .external_lex_state = 2}, + [1836] = {.lex_state = 1703, .external_lex_state = 2}, + [1837] = {.lex_state = 1703, .external_lex_state = 2}, + [1838] = {.lex_state = 1703, .external_lex_state = 2}, + [1839] = {.lex_state = 1703, .external_lex_state = 2}, + [1840] = {.lex_state = 1703, .external_lex_state = 2}, + [1841] = {.lex_state = 1703, .external_lex_state = 2}, + [1842] = {.lex_state = 1703, .external_lex_state = 2}, + [1843] = {.lex_state = 1665}, + [1844] = {.lex_state = 1703, .external_lex_state = 2}, + [1845] = {.lex_state = 1650}, + [1846] = {.lex_state = 1665}, + [1847] = {.lex_state = 1703, .external_lex_state = 2}, + [1848] = {.lex_state = 1703, .external_lex_state = 2}, + [1849] = {.lex_state = 1703, .external_lex_state = 2}, + [1850] = {.lex_state = 1665}, + [1851] = {.lex_state = 1703, .external_lex_state = 2}, + [1852] = {.lex_state = 1665}, + [1853] = {.lex_state = 1665}, + [1854] = {.lex_state = 1665}, + [1855] = {.lex_state = 1703, .external_lex_state = 2}, + [1856] = {.lex_state = 1703, .external_lex_state = 2}, + [1857] = {.lex_state = 1665}, + [1858] = {.lex_state = 1703, .external_lex_state = 2}, + [1859] = {.lex_state = 1665}, + [1860] = {.lex_state = 1703, .external_lex_state = 2}, + [1861] = {.lex_state = 1703, .external_lex_state = 2}, + [1862] = {.lex_state = 1703, .external_lex_state = 2}, + [1863] = {.lex_state = 1665}, + [1864] = {.lex_state = 1703, .external_lex_state = 2}, + [1865] = {.lex_state = 1703, .external_lex_state = 2}, + [1866] = {.lex_state = 1703, .external_lex_state = 2}, + [1867] = {.lex_state = 1665}, + [1868] = {.lex_state = 1665}, + [1869] = {.lex_state = 1665}, + [1870] = {.lex_state = 1703, .external_lex_state = 2}, + [1871] = {.lex_state = 1703, .external_lex_state = 2}, + [1872] = {.lex_state = 1665}, + [1873] = {.lex_state = 1703, .external_lex_state = 2}, + [1874] = {.lex_state = 1665}, + [1875] = {.lex_state = 1703, .external_lex_state = 2}, + [1876] = {.lex_state = 1703, .external_lex_state = 2}, + [1877] = {.lex_state = 44, .external_lex_state = 2}, + [1878] = {.lex_state = 1703, .external_lex_state = 2}, + [1879] = {.lex_state = 1703, .external_lex_state = 2}, + [1880] = {.lex_state = 1665}, + [1881] = {.lex_state = 1648}, + [1882] = {.lex_state = 1703, .external_lex_state = 2}, + [1883] = {.lex_state = 1703, .external_lex_state = 2}, + [1884] = {.lex_state = 1703, .external_lex_state = 2}, + [1885] = {.lex_state = 1648}, + [1886] = {.lex_state = 1703, .external_lex_state = 2}, + [1887] = {.lex_state = 1703, .external_lex_state = 2}, + [1888] = {.lex_state = 1703, .external_lex_state = 2}, + [1889] = {.lex_state = 1703, .external_lex_state = 2}, + [1890] = {.lex_state = 1703, .external_lex_state = 2}, + [1891] = {.lex_state = 1703, .external_lex_state = 2}, + [1892] = {.lex_state = 1665}, + [1893] = {.lex_state = 1665}, + [1894] = {.lex_state = 1652}, + [1895] = {.lex_state = 1703, .external_lex_state = 2}, + [1896] = {.lex_state = 1703, .external_lex_state = 2}, + [1897] = {.lex_state = 1703, .external_lex_state = 2}, + [1898] = {.lex_state = 1703, .external_lex_state = 2}, + [1899] = {.lex_state = 1703, .external_lex_state = 2}, + [1900] = {.lex_state = 1703, .external_lex_state = 2}, + [1901] = {.lex_state = 1703, .external_lex_state = 2}, + [1902] = {.lex_state = 1703, .external_lex_state = 2}, + [1903] = {.lex_state = 1661}, + [1904] = {.lex_state = 1703, .external_lex_state = 2}, + [1905] = {.lex_state = 1665}, + [1906] = {.lex_state = 1703, .external_lex_state = 2}, + [1907] = {.lex_state = 1703, .external_lex_state = 2}, + [1908] = {.lex_state = 1665}, + [1909] = {.lex_state = 1703, .external_lex_state = 2}, + [1910] = {.lex_state = 1703, .external_lex_state = 2}, + [1911] = {.lex_state = 1703, .external_lex_state = 2}, + [1912] = {.lex_state = 1665}, + [1913] = {.lex_state = 1703, .external_lex_state = 2}, + [1914] = {.lex_state = 1665}, + [1915] = {.lex_state = 1703, .external_lex_state = 2}, + [1916] = {.lex_state = 1665}, + [1917] = {.lex_state = 1665}, + [1918] = {.lex_state = 1703, .external_lex_state = 2}, + [1919] = {.lex_state = 1665}, + [1920] = {.lex_state = 1703, .external_lex_state = 2}, + [1921] = {.lex_state = 1703, .external_lex_state = 2}, + [1922] = {.lex_state = 1703, .external_lex_state = 2}, + [1923] = {.lex_state = 1703, .external_lex_state = 2}, + [1924] = {.lex_state = 1703, .external_lex_state = 2}, + [1925] = {.lex_state = 1703, .external_lex_state = 2}, + [1926] = {.lex_state = 1665}, + [1927] = {.lex_state = 1665}, + [1928] = {.lex_state = 1665}, + [1929] = {.lex_state = 1703, .external_lex_state = 2}, + [1930] = {.lex_state = 1703, .external_lex_state = 2}, + [1931] = {.lex_state = 1648}, + [1932] = {.lex_state = 1665}, + [1933] = {.lex_state = 1648}, + [1934] = {.lex_state = 1703, .external_lex_state = 2}, + [1935] = {.lex_state = 44, .external_lex_state = 2}, + [1936] = {.lex_state = 44, .external_lex_state = 2}, + [1937] = {.lex_state = 44, .external_lex_state = 2}, + [1938] = {.lex_state = 1703, .external_lex_state = 2}, + [1939] = {.lex_state = 1665}, + [1940] = {.lex_state = 1665}, + [1941] = {.lex_state = 1665}, + [1942] = {.lex_state = 1665}, + [1943] = {.lex_state = 1665}, + [1944] = {.lex_state = 1665}, + [1945] = {.lex_state = 1665}, + [1946] = {.lex_state = 1665}, + [1947] = {.lex_state = 1665}, + [1948] = {.lex_state = 1665}, + [1949] = {.lex_state = 1665}, + [1950] = {.lex_state = 1665}, + [1951] = {.lex_state = 1665}, + [1952] = {.lex_state = 1665}, + [1953] = {.lex_state = 1665}, + [1954] = {.lex_state = 1665}, + [1955] = {.lex_state = 1665}, + [1956] = {.lex_state = 1665}, + [1957] = {.lex_state = 1665}, + [1958] = {.lex_state = 1665}, + [1959] = {.lex_state = 1665}, + [1960] = {.lex_state = 1665}, + [1961] = {.lex_state = 1665}, + [1962] = {.lex_state = 1665}, + [1963] = {.lex_state = 1665}, + [1964] = {.lex_state = 1661}, + [1965] = {.lex_state = 1665}, + [1966] = {.lex_state = 1665}, + [1967] = {.lex_state = 1665}, + [1968] = {.lex_state = 1665}, + [1969] = {.lex_state = 1665}, + [1970] = {.lex_state = 1665}, + [1971] = {.lex_state = 1665}, + [1972] = {.lex_state = 1665}, + [1973] = {.lex_state = 1665}, + [1974] = {.lex_state = 1652}, + [1975] = {.lex_state = 1665}, + [1976] = {.lex_state = 1665}, + [1977] = {.lex_state = 1665}, + [1978] = {.lex_state = 1665}, + [1979] = {.lex_state = 1665}, + [1980] = {.lex_state = 1665}, + [1981] = {.lex_state = 1665}, + [1982] = {.lex_state = 1665}, + [1983] = {.lex_state = 1665}, + [1984] = {.lex_state = 1665}, + [1985] = {.lex_state = 1665}, + [1986] = {.lex_state = 1665}, + [1987] = {.lex_state = 1665}, + [1988] = {.lex_state = 1665}, + [1989] = {.lex_state = 1665}, + [1990] = {.lex_state = 1665}, + [1991] = {.lex_state = 1654}, + [1992] = {.lex_state = 1654}, + [1993] = {.lex_state = 1665}, + [1994] = {.lex_state = 1665}, + [1995] = {.lex_state = 1665}, + [1996] = {.lex_state = 1665}, + [1997] = {.lex_state = 1650}, + [1998] = {.lex_state = 1665}, + [1999] = {.lex_state = 1665}, + [2000] = {.lex_state = 1665}, + [2001] = {.lex_state = 1665}, + [2002] = {.lex_state = 1665}, + [2003] = {.lex_state = 1665}, + [2004] = {.lex_state = 1665}, + [2005] = {.lex_state = 1665}, + [2006] = {.lex_state = 1665}, + [2007] = {.lex_state = 1665}, + [2008] = {.lex_state = 1665}, + [2009] = {.lex_state = 1665}, + [2010] = {.lex_state = 1665}, + [2011] = {.lex_state = 1665}, + [2012] = {.lex_state = 1665}, + [2013] = {.lex_state = 1665}, + [2014] = {.lex_state = 1665}, + [2015] = {.lex_state = 1665}, + [2016] = {.lex_state = 1665}, + [2017] = {.lex_state = 1665}, + [2018] = {.lex_state = 1665}, + [2019] = {.lex_state = 1665}, + [2020] = {.lex_state = 1665}, + [2021] = {.lex_state = 1665}, + [2022] = {.lex_state = 1665}, + [2023] = {.lex_state = 1665}, + [2024] = {.lex_state = 1665}, + [2025] = {.lex_state = 1665}, + [2026] = {.lex_state = 1665}, + [2027] = {.lex_state = 1665}, + [2028] = {.lex_state = 1665}, + [2029] = {.lex_state = 1665}, + [2030] = {.lex_state = 1665}, + [2031] = {.lex_state = 1665}, + [2032] = {.lex_state = 1665}, + [2033] = {.lex_state = 1665}, + [2034] = {.lex_state = 1665}, + [2035] = {.lex_state = 1665}, + [2036] = {.lex_state = 1665}, + [2037] = {.lex_state = 1665}, + [2038] = {.lex_state = 1665}, + [2039] = {.lex_state = 1695, .external_lex_state = 2}, + [2040] = {.lex_state = 1665}, + [2041] = {.lex_state = 1665}, + [2042] = {.lex_state = 1665}, + [2043] = {.lex_state = 1665}, + [2044] = {.lex_state = 1665}, + [2045] = {.lex_state = 1665}, + [2046] = {.lex_state = 1665}, + [2047] = {.lex_state = 1665}, + [2048] = {.lex_state = 1665}, + [2049] = {.lex_state = 1665}, + [2050] = {.lex_state = 1665}, + [2051] = {.lex_state = 1665}, + [2052] = {.lex_state = 1665}, + [2053] = {.lex_state = 1695, .external_lex_state = 2}, + [2054] = {.lex_state = 1665}, + [2055] = {.lex_state = 1665}, + [2056] = {.lex_state = 1665}, + [2057] = {.lex_state = 1695, .external_lex_state = 2}, + [2058] = {.lex_state = 1695, .external_lex_state = 2}, + [2059] = {.lex_state = 1665}, + [2060] = {.lex_state = 1665}, + [2061] = {.lex_state = 1665}, + [2062] = {.lex_state = 1665}, + [2063] = {.lex_state = 1658}, + [2064] = {.lex_state = 1665}, + [2065] = {.lex_state = 1656}, + [2066] = {.lex_state = 1658}, + [2067] = {.lex_state = 1665}, + [2068] = {.lex_state = 1665}, + [2069] = {.lex_state = 1656}, + [2070] = {.lex_state = 1665}, + [2071] = {.lex_state = 1656}, + [2072] = {.lex_state = 1656}, + [2073] = {.lex_state = 1656}, + [2074] = {.lex_state = 1654}, + [2075] = {.lex_state = 1656}, + [2076] = {.lex_state = 1656}, + [2077] = {.lex_state = 1665}, + [2078] = {.lex_state = 1656}, + [2079] = {.lex_state = 44, .external_lex_state = 2}, + [2080] = {.lex_state = 1665}, + [2081] = {.lex_state = 1665}, + [2082] = {.lex_state = 1665}, + [2083] = {.lex_state = 1665}, + [2084] = {.lex_state = 1665}, + [2085] = {.lex_state = 1665}, + [2086] = {.lex_state = 1665}, + [2087] = {.lex_state = 1665}, + [2088] = {.lex_state = 1665}, + [2089] = {.lex_state = 1665}, + [2090] = {.lex_state = 1665}, + [2091] = {.lex_state = 1665}, + [2092] = {.lex_state = 1665}, + [2093] = {.lex_state = 1665}, + [2094] = {.lex_state = 1665}, + [2095] = {.lex_state = 1665}, + [2096] = {.lex_state = 1665}, + [2097] = {.lex_state = 1665}, + [2098] = {.lex_state = 1665}, + [2099] = {.lex_state = 1665}, + [2100] = {.lex_state = 1665}, + [2101] = {.lex_state = 1665}, + [2102] = {.lex_state = 1665}, + [2103] = {.lex_state = 1665}, + [2104] = {.lex_state = 1665}, + [2105] = {.lex_state = 1656}, + [2106] = {.lex_state = 44, .external_lex_state = 2}, + [2107] = {.lex_state = 1665}, + [2108] = {.lex_state = 1665}, + [2109] = {.lex_state = 1665}, + [2110] = {.lex_state = 44, .external_lex_state = 2}, + [2111] = {.lex_state = 1665}, + [2112] = {.lex_state = 1665}, + [2113] = {.lex_state = 1665}, + [2114] = {.lex_state = 1665}, + [2115] = {.lex_state = 1665}, + [2116] = {.lex_state = 1665}, + [2117] = {.lex_state = 1665}, + [2118] = {.lex_state = 1665}, + [2119] = {.lex_state = 1665}, + [2120] = {.lex_state = 1665}, + [2121] = {.lex_state = 1658}, + [2122] = {.lex_state = 1665}, + [2123] = {.lex_state = 1665}, + [2124] = {.lex_state = 1665}, + [2125] = {.lex_state = 44, .external_lex_state = 2}, + [2126] = {.lex_state = 1665}, + [2127] = {.lex_state = 1665}, + [2128] = {.lex_state = 1665}, + [2129] = {.lex_state = 1658}, + [2130] = {.lex_state = 1665}, + [2131] = {.lex_state = 1665}, + [2132] = {.lex_state = 44, .external_lex_state = 2}, + [2133] = {.lex_state = 44, .external_lex_state = 2}, + [2134] = {.lex_state = 1665}, + [2135] = {.lex_state = 1658}, + [2136] = {.lex_state = 1665}, + [2137] = {.lex_state = 44, .external_lex_state = 2}, + [2138] = {.lex_state = 44, .external_lex_state = 2}, + [2139] = {.lex_state = 44, .external_lex_state = 2}, + [2140] = {.lex_state = 44, .external_lex_state = 2}, + [2141] = {.lex_state = 1654}, + [2142] = {.lex_state = 1665}, + [2143] = {.lex_state = 1665}, + [2144] = {.lex_state = 1665}, + [2145] = {.lex_state = 1665}, + [2146] = {.lex_state = 1665}, + [2147] = {.lex_state = 1665}, + [2148] = {.lex_state = 1665}, + [2149] = {.lex_state = 1665}, + [2150] = {.lex_state = 1665}, + [2151] = {.lex_state = 1665}, + [2152] = {.lex_state = 1665}, + [2153] = {.lex_state = 1665}, + [2154] = {.lex_state = 1722, .external_lex_state = 2}, + [2155] = {.lex_state = 1665}, + [2156] = {.lex_state = 1665}, + [2157] = {.lex_state = 1665}, + [2158] = {.lex_state = 1665}, + [2159] = {.lex_state = 1665}, + [2160] = {.lex_state = 1665}, + [2161] = {.lex_state = 1665}, + [2162] = {.lex_state = 1665}, + [2163] = {.lex_state = 1665}, + [2164] = {.lex_state = 1665}, + [2165] = {.lex_state = 1665}, + [2166] = {.lex_state = 1665}, + [2167] = {.lex_state = 1665}, + [2168] = {.lex_state = 1665}, + [2169] = {.lex_state = 1656}, + [2170] = {.lex_state = 1665}, + [2171] = {.lex_state = 1665}, + [2172] = {.lex_state = 1665}, + [2173] = {.lex_state = 1656}, + [2174] = {.lex_state = 1665}, + [2175] = {.lex_state = 1665}, + [2176] = {.lex_state = 1665}, + [2177] = {.lex_state = 1665}, + [2178] = {.lex_state = 1665}, + [2179] = {.lex_state = 1665}, + [2180] = {.lex_state = 1665}, + [2181] = {.lex_state = 1656}, + [2182] = {.lex_state = 1665}, + [2183] = {.lex_state = 1665}, + [2184] = {.lex_state = 1656}, + [2185] = {.lex_state = 1665}, + [2186] = {.lex_state = 1665}, + [2187] = {.lex_state = 1665}, + [2188] = {.lex_state = 1665}, + [2189] = {.lex_state = 1665}, + [2190] = {.lex_state = 1665}, + [2191] = {.lex_state = 1665}, + [2192] = {.lex_state = 1665}, + [2193] = {.lex_state = 1665}, + [2194] = {.lex_state = 1665}, + [2195] = {.lex_state = 1665}, + [2196] = {.lex_state = 1665}, + [2197] = {.lex_state = 1665}, + [2198] = {.lex_state = 1665}, + [2199] = {.lex_state = 1665}, + [2200] = {.lex_state = 1665}, + [2201] = {.lex_state = 1665}, + [2202] = {.lex_state = 1665}, + [2203] = {.lex_state = 1665}, + [2204] = {.lex_state = 1665}, + [2205] = {.lex_state = 1665}, + [2206] = {.lex_state = 1665}, + [2207] = {.lex_state = 1665}, + [2208] = {.lex_state = 1665}, + [2209] = {.lex_state = 1665}, + [2210] = {.lex_state = 1665}, + [2211] = {.lex_state = 1665}, + [2212] = {.lex_state = 1665}, + [2213] = {.lex_state = 1665}, + [2214] = {.lex_state = 1665}, + [2215] = {.lex_state = 1665}, + [2216] = {.lex_state = 1665}, + [2217] = {.lex_state = 102, .external_lex_state = 2}, + [2218] = {.lex_state = 1665}, + [2219] = {.lex_state = 1665}, + [2220] = {.lex_state = 1665}, + [2221] = {.lex_state = 1665}, + [2222] = {.lex_state = 1665}, + [2223] = {.lex_state = 1665}, + [2224] = {.lex_state = 1661}, + [2225] = {.lex_state = 1665}, + [2226] = {.lex_state = 1665}, + [2227] = {.lex_state = 1665}, + [2228] = {.lex_state = 1665}, + [2229] = {.lex_state = 1665}, + [2230] = {.lex_state = 1665}, + [2231] = {.lex_state = 1665}, + [2232] = {.lex_state = 1665}, + [2233] = {.lex_state = 1665}, + [2234] = {.lex_state = 1665}, + [2235] = {.lex_state = 1665}, + [2236] = {.lex_state = 1665}, + [2237] = {.lex_state = 1665}, + [2238] = {.lex_state = 1665}, + [2239] = {.lex_state = 1665}, + [2240] = {.lex_state = 1658}, + [2241] = {.lex_state = 1665}, + [2242] = {.lex_state = 1665}, + [2243] = {.lex_state = 1665}, + [2244] = {.lex_state = 1665}, + [2245] = {.lex_state = 1665}, + [2246] = {.lex_state = 1665}, + [2247] = {.lex_state = 1665}, + [2248] = {.lex_state = 1665}, + [2249] = {.lex_state = 1722, .external_lex_state = 2}, + [2250] = {.lex_state = 1656}, + [2251] = {.lex_state = 1665}, + [2252] = {.lex_state = 1665}, + [2253] = {.lex_state = 1665}, + [2254] = {.lex_state = 40, .external_lex_state = 2}, + [2255] = {.lex_state = 1665}, + [2256] = {.lex_state = 1665}, + [2257] = {.lex_state = 1665}, + [2258] = {.lex_state = 1665}, + [2259] = {.lex_state = 40, .external_lex_state = 2}, + [2260] = {.lex_state = 1665}, + [2261] = {.lex_state = 1665}, + [2262] = {.lex_state = 1665}, + [2263] = {.lex_state = 1665}, + [2264] = {.lex_state = 1665}, + [2265] = {.lex_state = 1722, .external_lex_state = 2}, + [2266] = {.lex_state = 1665}, + [2267] = {.lex_state = 1665}, + [2268] = {.lex_state = 1665}, + [2269] = {.lex_state = 1665}, + [2270] = {.lex_state = 40, .external_lex_state = 2}, + [2271] = {.lex_state = 1665}, + [2272] = {.lex_state = 1665}, + [2273] = {.lex_state = 1665}, + [2274] = {.lex_state = 1665}, + [2275] = {.lex_state = 1665}, + [2276] = {.lex_state = 1665}, + [2277] = {.lex_state = 1665}, + [2278] = {.lex_state = 1665}, + [2279] = {.lex_state = 1665}, + [2280] = {.lex_state = 1665}, + [2281] = {.lex_state = 1665}, + [2282] = {.lex_state = 1665}, + [2283] = {.lex_state = 1656}, + [2284] = {.lex_state = 1656}, + [2285] = {.lex_state = 1656}, + [2286] = {.lex_state = 1656}, + [2287] = {.lex_state = 1656}, + [2288] = {.lex_state = 1658}, + [2289] = {.lex_state = 1658}, + [2290] = {.lex_state = 40, .external_lex_state = 2}, + [2291] = {.lex_state = 1665}, + [2292] = {.lex_state = 1665}, + [2293] = {.lex_state = 1658}, + [2294] = {.lex_state = 1658}, + [2295] = {.lex_state = 1665}, + [2296] = {.lex_state = 1665}, + [2297] = {.lex_state = 1665}, + [2298] = {.lex_state = 1665}, + [2299] = {.lex_state = 1665}, + [2300] = {.lex_state = 1665}, + [2301] = {.lex_state = 1665}, + [2302] = {.lex_state = 1722, .external_lex_state = 2}, + [2303] = {.lex_state = 1665}, + [2304] = {.lex_state = 1665}, + [2305] = {.lex_state = 1665}, + [2306] = {.lex_state = 1722, .external_lex_state = 2}, + [2307] = {.lex_state = 1665}, + [2308] = {.lex_state = 1665}, + [2309] = {.lex_state = 1665}, + [2310] = {.lex_state = 1665}, + [2311] = {.lex_state = 1665}, + [2312] = {.lex_state = 1665}, + [2313] = {.lex_state = 1665}, + [2314] = {.lex_state = 40, .external_lex_state = 2}, + [2315] = {.lex_state = 107, .external_lex_state = 2}, + [2316] = {.lex_state = 116, .external_lex_state = 2}, + [2317] = {.lex_state = 1665}, + [2318] = {.lex_state = 1665}, + [2319] = {.lex_state = 1665}, + [2320] = {.lex_state = 1665}, + [2321] = {.lex_state = 1665}, + [2322] = {.lex_state = 1665}, + [2323] = {.lex_state = 1665}, + [2324] = {.lex_state = 1665}, + [2325] = {.lex_state = 1665}, + [2326] = {.lex_state = 1665}, + [2327] = {.lex_state = 1665}, + [2328] = {.lex_state = 1722, .external_lex_state = 2}, + [2329] = {.lex_state = 1665}, + [2330] = {.lex_state = 1665}, + [2331] = {.lex_state = 1665}, + [2332] = {.lex_state = 1665}, + [2333] = {.lex_state = 1665}, + [2334] = {.lex_state = 1665}, + [2335] = {.lex_state = 40, .external_lex_state = 2}, + [2336] = {.lex_state = 1665}, + [2337] = {.lex_state = 1665}, + [2338] = {.lex_state = 1665}, + [2339] = {.lex_state = 1665}, + [2340] = {.lex_state = 1665}, + [2341] = {.lex_state = 1665}, + [2342] = {.lex_state = 1665}, + [2343] = {.lex_state = 100, .external_lex_state = 2}, + [2344] = {.lex_state = 1665}, + [2345] = {.lex_state = 1665}, + [2346] = {.lex_state = 1665}, + [2347] = {.lex_state = 1665}, + [2348] = {.lex_state = 1665}, + [2349] = {.lex_state = 1665}, + [2350] = {.lex_state = 1665}, + [2351] = {.lex_state = 1665}, + [2352] = {.lex_state = 1665}, + [2353] = {.lex_state = 1665}, + [2354] = {.lex_state = 1665}, + [2355] = {.lex_state = 1665}, + [2356] = {.lex_state = 1665}, + [2357] = {.lex_state = 1665}, + [2358] = {.lex_state = 1722, .external_lex_state = 2}, + [2359] = {.lex_state = 1665}, + [2360] = {.lex_state = 1665}, + [2361] = {.lex_state = 1665}, + [2362] = {.lex_state = 1665}, + [2363] = {.lex_state = 1665}, + [2364] = {.lex_state = 1665}, + [2365] = {.lex_state = 1665}, + [2366] = {.lex_state = 1665}, + [2367] = {.lex_state = 1665}, + [2368] = {.lex_state = 1665}, + [2369] = {.lex_state = 1665}, + [2370] = {.lex_state = 1665}, + [2371] = {.lex_state = 1665}, + [2372] = {.lex_state = 1665}, + [2373] = {.lex_state = 1665}, + [2374] = {.lex_state = 40, .external_lex_state = 2}, + [2375] = {.lex_state = 1665}, + [2376] = {.lex_state = 1665}, + [2377] = {.lex_state = 1665}, + [2378] = {.lex_state = 1665}, + [2379] = {.lex_state = 1665}, + [2380] = {.lex_state = 1665}, + [2381] = {.lex_state = 1665}, + [2382] = {.lex_state = 1665}, + [2383] = {.lex_state = 1665}, + [2384] = {.lex_state = 234, .external_lex_state = 2}, + [2385] = {.lex_state = 1665}, + [2386] = {.lex_state = 1665}, + [2387] = {.lex_state = 1665}, + [2388] = {.lex_state = 1665}, + [2389] = {.lex_state = 1665}, + [2390] = {.lex_state = 1665}, + [2391] = {.lex_state = 1665}, + [2392] = {.lex_state = 1665}, + [2393] = {.lex_state = 1665}, + [2394] = {.lex_state = 1665}, + [2395] = {.lex_state = 1665}, + [2396] = {.lex_state = 1665}, + [2397] = {.lex_state = 1665}, + [2398] = {.lex_state = 1665}, + [2399] = {.lex_state = 1665}, + [2400] = {.lex_state = 1665}, + [2401] = {.lex_state = 101, .external_lex_state = 2}, + [2402] = {.lex_state = 101, .external_lex_state = 2}, + [2403] = {.lex_state = 1665}, + [2404] = {.lex_state = 1665}, + [2405] = {.lex_state = 1656}, + [2406] = {.lex_state = 236, .external_lex_state = 2}, + [2407] = {.lex_state = 1665}, + [2408] = {.lex_state = 1665}, + [2409] = {.lex_state = 1665}, + [2410] = {.lex_state = 1665}, + [2411] = {.lex_state = 1665}, + [2412] = {.lex_state = 1665}, + [2413] = {.lex_state = 40, .external_lex_state = 2}, + [2414] = {.lex_state = 1665}, + [2415] = {.lex_state = 1722, .external_lex_state = 2}, + [2416] = {.lex_state = 1665}, + [2417] = {.lex_state = 40, .external_lex_state = 2}, + [2418] = {.lex_state = 1665}, + [2419] = {.lex_state = 1665}, + [2420] = {.lex_state = 40, .external_lex_state = 2}, + [2421] = {.lex_state = 1665}, + [2422] = {.lex_state = 1665}, + [2423] = {.lex_state = 146, .external_lex_state = 2}, + [2424] = {.lex_state = 40, .external_lex_state = 2}, + [2425] = {.lex_state = 40, .external_lex_state = 2}, + [2426] = {.lex_state = 40, .external_lex_state = 2}, + [2427] = {.lex_state = 40, .external_lex_state = 2}, + [2428] = {.lex_state = 1665}, + [2429] = {.lex_state = 1665}, + [2430] = {.lex_state = 1665}, + [2431] = {.lex_state = 1665}, + [2432] = {.lex_state = 1665}, + [2433] = {.lex_state = 1665}, + [2434] = {.lex_state = 1665}, + [2435] = {.lex_state = 1665}, + [2436] = {.lex_state = 1665}, + [2437] = {.lex_state = 1665}, + [2438] = {.lex_state = 1665}, + [2439] = {.lex_state = 1665}, + [2440] = {.lex_state = 1665}, + [2441] = {.lex_state = 1665}, + [2442] = {.lex_state = 1665}, + [2443] = {.lex_state = 1665}, + [2444] = {.lex_state = 1665}, + [2445] = {.lex_state = 1665}, + [2446] = {.lex_state = 1665}, + [2447] = {.lex_state = 1665}, + [2448] = {.lex_state = 1665}, + [2449] = {.lex_state = 1721, .external_lex_state = 2}, + [2450] = {.lex_state = 1665}, + [2451] = {.lex_state = 1665}, + [2452] = {.lex_state = 109, .external_lex_state = 2}, + [2453] = {.lex_state = 1721, .external_lex_state = 2}, + [2454] = {.lex_state = 109, .external_lex_state = 2}, + [2455] = {.lex_state = 1665}, + [2456] = {.lex_state = 1665}, + [2457] = {.lex_state = 145, .external_lex_state = 2}, + [2458] = {.lex_state = 145, .external_lex_state = 2}, + [2459] = {.lex_state = 145, .external_lex_state = 2}, + [2460] = {.lex_state = 1665}, + [2461] = {.lex_state = 1665}, + [2462] = {.lex_state = 1665}, + [2463] = {.lex_state = 1665}, + [2464] = {.lex_state = 1665}, + [2465] = {.lex_state = 1665}, + [2466] = {.lex_state = 1665}, + [2467] = {.lex_state = 1665}, + [2468] = {.lex_state = 1665}, + [2469] = {.lex_state = 1665}, + [2470] = {.lex_state = 1665}, + [2471] = {.lex_state = 1665}, + [2472] = {.lex_state = 99, .external_lex_state = 2}, + [2473] = {.lex_state = 1665}, + [2474] = {.lex_state = 1665}, + [2475] = {.lex_state = 1665}, + [2476] = {.lex_state = 1665}, + [2477] = {.lex_state = 1665}, + [2478] = {.lex_state = 145, .external_lex_state = 2}, + [2479] = {.lex_state = 1665}, + [2480] = {.lex_state = 1665}, + [2481] = {.lex_state = 1665}, + [2482] = {.lex_state = 1665}, + [2483] = {.lex_state = 233, .external_lex_state = 2}, + [2484] = {.lex_state = 1665}, + [2485] = {.lex_state = 1665}, + [2486] = {.lex_state = 233, .external_lex_state = 2}, + [2487] = {.lex_state = 1665}, + [2488] = {.lex_state = 1665}, + [2489] = {.lex_state = 1665}, + [2490] = {.lex_state = 1665}, + [2491] = {.lex_state = 1665}, + [2492] = {.lex_state = 99, .external_lex_state = 2}, + [2493] = {.lex_state = 1665}, + [2494] = {.lex_state = 1665}, + [2495] = {.lex_state = 1665}, + [2496] = {.lex_state = 1665}, + [2497] = {.lex_state = 1665}, + [2498] = {.lex_state = 1665}, + [2499] = {.lex_state = 1665}, + [2500] = {.lex_state = 144, .external_lex_state = 2}, + [2501] = {.lex_state = 1665}, + [2502] = {.lex_state = 1665}, + [2503] = {.lex_state = 1665}, + [2504] = {.lex_state = 110, .external_lex_state = 2}, + [2505] = {.lex_state = 1665}, + [2506] = {.lex_state = 1665}, + [2507] = {.lex_state = 1665}, + [2508] = {.lex_state = 1665}, + [2509] = {.lex_state = 1665}, + [2510] = {.lex_state = 1665}, + [2511] = {.lex_state = 1665}, + [2512] = {.lex_state = 1665}, + [2513] = {.lex_state = 1665}, + [2514] = {.lex_state = 1665}, + [2515] = {.lex_state = 1665}, + [2516] = {.lex_state = 1665}, + [2517] = {.lex_state = 1665}, + [2518] = {.lex_state = 1665}, + [2519] = {.lex_state = 1721, .external_lex_state = 2}, + [2520] = {.lex_state = 1721, .external_lex_state = 2}, + [2521] = {.lex_state = 1665}, + [2522] = {.lex_state = 1665}, + [2523] = {.lex_state = 1721, .external_lex_state = 2}, + [2524] = {.lex_state = 1665}, + [2525] = {.lex_state = 1665}, + [2526] = {.lex_state = 1665}, + [2527] = {.lex_state = 1721, .external_lex_state = 2}, + [2528] = {.lex_state = 1665}, + [2529] = {.lex_state = 1665}, + [2530] = {.lex_state = 1665}, + [2531] = {.lex_state = 1665}, + [2532] = {.lex_state = 1665}, + [2533] = {.lex_state = 1665}, + [2534] = {.lex_state = 1665}, + [2535] = {.lex_state = 1722, .external_lex_state = 2}, + [2536] = {.lex_state = 1665}, + [2537] = {.lex_state = 1665}, + [2538] = {.lex_state = 1665}, + [2539] = {.lex_state = 1665}, + [2540] = {.lex_state = 1722, .external_lex_state = 2}, + [2541] = {.lex_state = 1665}, + [2542] = {.lex_state = 1665}, + [2543] = {.lex_state = 1665}, + [2544] = {.lex_state = 1665}, + [2545] = {.lex_state = 1665}, + [2546] = {.lex_state = 1722, .external_lex_state = 2}, + [2547] = {.lex_state = 194, .external_lex_state = 2}, + [2548] = {.lex_state = 212, .external_lex_state = 2}, + [2549] = {.lex_state = 40, .external_lex_state = 2}, + [2550] = {.lex_state = 1721, .external_lex_state = 2}, + [2551] = {.lex_state = 235, .external_lex_state = 2}, + [2552] = {.lex_state = 110, .external_lex_state = 2}, + [2553] = {.lex_state = 235, .external_lex_state = 2}, + [2554] = {.lex_state = 40, .external_lex_state = 2}, + [2555] = {.lex_state = 235, .external_lex_state = 2}, + [2556] = {.lex_state = 235, .external_lex_state = 2}, + [2557] = {.lex_state = 110, .external_lex_state = 2}, + [2558] = {.lex_state = 110, .external_lex_state = 2}, + [2559] = {.lex_state = 110, .external_lex_state = 2}, + [2560] = {.lex_state = 143, .external_lex_state = 2}, + [2561] = {.lex_state = 1721, .external_lex_state = 2}, + [2562] = {.lex_state = 40, .external_lex_state = 2}, + [2563] = {.lex_state = 108, .external_lex_state = 2}, + [2564] = {.lex_state = 143, .external_lex_state = 2}, + [2565] = {.lex_state = 1721, .external_lex_state = 2}, + [2566] = {.lex_state = 40, .external_lex_state = 2}, + [2567] = {.lex_state = 117, .external_lex_state = 2}, + [2568] = {.lex_state = 1722, .external_lex_state = 2}, + [2569] = {.lex_state = 235, .external_lex_state = 2}, + [2570] = {.lex_state = 40, .external_lex_state = 2}, + [2571] = {.lex_state = 194, .external_lex_state = 2}, + [2572] = {.lex_state = 1721, .external_lex_state = 2}, + [2573] = {.lex_state = 40, .external_lex_state = 2}, + [2574] = {.lex_state = 40, .external_lex_state = 2}, + [2575] = {.lex_state = 40, .external_lex_state = 2}, + [2576] = {.lex_state = 40, .external_lex_state = 2}, + [2577] = {.lex_state = 40, .external_lex_state = 2}, + [2578] = {.lex_state = 40, .external_lex_state = 2}, + [2579] = {.lex_state = 40, .external_lex_state = 2}, + [2580] = {.lex_state = 40, .external_lex_state = 2}, + [2581] = {.lex_state = 1721, .external_lex_state = 2}, + [2582] = {.lex_state = 143, .external_lex_state = 2}, + [2583] = {.lex_state = 203, .external_lex_state = 2}, + [2584] = {.lex_state = 1722, .external_lex_state = 2}, + [2585] = {.lex_state = 1721, .external_lex_state = 2}, + [2586] = {.lex_state = 194, .external_lex_state = 2}, + [2587] = {.lex_state = 143, .external_lex_state = 2}, + [2588] = {.lex_state = 1722, .external_lex_state = 2}, + [2589] = {.lex_state = 40, .external_lex_state = 2}, + [2590] = {.lex_state = 40, .external_lex_state = 2}, + [2591] = {.lex_state = 1723, .external_lex_state = 2}, + [2592] = {.lex_state = 1723, .external_lex_state = 2}, + [2593] = {.lex_state = 1723, .external_lex_state = 2}, + [2594] = {.lex_state = 40, .external_lex_state = 2}, + [2595] = {.lex_state = 1723, .external_lex_state = 2}, + [2596] = {.lex_state = 1723, .external_lex_state = 2}, + [2597] = {.lex_state = 1723, .external_lex_state = 2}, + [2598] = {.lex_state = 40, .external_lex_state = 2}, + [2599] = {.lex_state = 1723, .external_lex_state = 2}, + [2600] = {.lex_state = 111, .external_lex_state = 2}, + [2601] = {.lex_state = 40, .external_lex_state = 2}, + [2602] = {.lex_state = 1723, .external_lex_state = 2}, + [2603] = {.lex_state = 40, .external_lex_state = 2}, + [2604] = {.lex_state = 111, .external_lex_state = 2}, + [2605] = {.lex_state = 1723, .external_lex_state = 2}, + [2606] = {.lex_state = 1723, .external_lex_state = 2}, [2607] = {.lex_state = 180, .external_lex_state = 2}, - [2608] = {.lex_state = 1722, .external_lex_state = 2}, - [2609] = {.lex_state = 1722, .external_lex_state = 2}, - [2610] = {.lex_state = 41, .external_lex_state = 2}, - [2611] = {.lex_state = 1722, .external_lex_state = 2}, - [2612] = {.lex_state = 41, .external_lex_state = 2}, - [2613] = {.lex_state = 206, .external_lex_state = 2}, - [2614] = {.lex_state = 41, .external_lex_state = 2}, - [2615] = {.lex_state = 1722, .external_lex_state = 2}, - [2616] = {.lex_state = 41, .external_lex_state = 2}, - [2617] = {.lex_state = 41, .external_lex_state = 2}, - [2618] = {.lex_state = 41, .external_lex_state = 2}, - [2619] = {.lex_state = 41, .external_lex_state = 2}, - [2620] = {.lex_state = 1722, .external_lex_state = 2}, - [2621] = {.lex_state = 180, .external_lex_state = 2}, - [2622] = {.lex_state = 41, .external_lex_state = 2}, - [2623] = {.lex_state = 1722, .external_lex_state = 2}, - [2624] = {.lex_state = 1722, .external_lex_state = 2}, - [2625] = {.lex_state = 1722, .external_lex_state = 2}, - [2626] = {.lex_state = 1722, .external_lex_state = 2}, + [2608] = {.lex_state = 40, .external_lex_state = 2}, + [2609] = {.lex_state = 1723, .external_lex_state = 2}, + [2610] = {.lex_state = 205, .external_lex_state = 2}, + [2611] = {.lex_state = 40, .external_lex_state = 2}, + [2612] = {.lex_state = 40, .external_lex_state = 2}, + [2613] = {.lex_state = 40, .external_lex_state = 2}, + [2614] = {.lex_state = 1723, .external_lex_state = 2}, + [2615] = {.lex_state = 1723, .external_lex_state = 2}, + [2616] = {.lex_state = 1723, .external_lex_state = 2}, + [2617] = {.lex_state = 40, .external_lex_state = 2}, + [2618] = {.lex_state = 40, .external_lex_state = 2}, + [2619] = {.lex_state = 40, .external_lex_state = 2}, + [2620] = {.lex_state = 40, .external_lex_state = 2}, + [2621] = {.lex_state = 1723, .external_lex_state = 2}, + [2622] = {.lex_state = 1723, .external_lex_state = 2}, + [2623] = {.lex_state = 40, .external_lex_state = 2}, + [2624] = {.lex_state = 40, .external_lex_state = 2}, + [2625] = {.lex_state = 194, .external_lex_state = 2}, + [2626] = {.lex_state = 40, .external_lex_state = 2}, [2627] = {.lex_state = 1722, .external_lex_state = 2}, - [2628] = {.lex_state = 1722, .external_lex_state = 2}, - [2629] = {.lex_state = 41, .external_lex_state = 2}, - [2630] = {.lex_state = 41, .external_lex_state = 2}, - [2631] = {.lex_state = 41, .external_lex_state = 2}, - [2632] = {.lex_state = 41, .external_lex_state = 2}, - [2633] = {.lex_state = 194, .external_lex_state = 2}, - [2634] = {.lex_state = 41, .external_lex_state = 2}, - [2635] = {.lex_state = 41, .external_lex_state = 2}, - [2636] = {.lex_state = 41, .external_lex_state = 2}, - [2637] = {.lex_state = 136, .external_lex_state = 2}, - [2638] = {.lex_state = 41, .external_lex_state = 2}, - [2639] = {.lex_state = 41, .external_lex_state = 2}, - [2640] = {.lex_state = 1721, .external_lex_state = 2}, - [2641] = {.lex_state = 41, .external_lex_state = 2}, - [2642] = {.lex_state = 41, .external_lex_state = 2}, - [2643] = {.lex_state = 41, .external_lex_state = 2}, - [2644] = {.lex_state = 1722, .external_lex_state = 2}, - [2645] = {.lex_state = 41, .external_lex_state = 2}, - [2646] = {.lex_state = 1722, .external_lex_state = 2}, - [2647] = {.lex_state = 1722, .external_lex_state = 2}, - [2648] = {.lex_state = 41, .external_lex_state = 2}, - [2649] = {.lex_state = 1722, .external_lex_state = 2}, - [2650] = {.lex_state = 41, .external_lex_state = 2}, - [2651] = {.lex_state = 136, .external_lex_state = 2}, - [2652] = {.lex_state = 1722, .external_lex_state = 2}, - [2653] = {.lex_state = 41, .external_lex_state = 2}, - [2654] = {.lex_state = 1722, .external_lex_state = 2}, - [2655] = {.lex_state = 41, .external_lex_state = 2}, - [2656] = {.lex_state = 41, .external_lex_state = 2}, - [2657] = {.lex_state = 1721, .external_lex_state = 2}, - [2658] = {.lex_state = 41, .external_lex_state = 2}, - [2659] = {.lex_state = 41, .external_lex_state = 2}, - [2660] = {.lex_state = 206, .external_lex_state = 2}, - [2661] = {.lex_state = 41, .external_lex_state = 2}, - [2662] = {.lex_state = 41, .external_lex_state = 2}, - [2663] = {.lex_state = 1722, .external_lex_state = 2}, - [2664] = {.lex_state = 41, .external_lex_state = 2}, - [2665] = {.lex_state = 1722, .external_lex_state = 2}, - [2666] = {.lex_state = 41, .external_lex_state = 2}, - [2667] = {.lex_state = 41, .external_lex_state = 2}, - [2668] = {.lex_state = 41, .external_lex_state = 2}, - [2669] = {.lex_state = 41, .external_lex_state = 2}, - [2670] = {.lex_state = 1722, .external_lex_state = 2}, - [2671] = {.lex_state = 1721, .external_lex_state = 2}, - [2672] = {.lex_state = 228, .external_lex_state = 2}, - [2673] = {.lex_state = 137, .external_lex_state = 2}, - [2674] = {.lex_state = 207, .external_lex_state = 2}, - [2675] = {.lex_state = 207, .external_lex_state = 2}, - [2676] = {.lex_state = 207, .external_lex_state = 2}, - [2677] = {.lex_state = 207, .external_lex_state = 2}, - [2678] = {.lex_state = 137, .external_lex_state = 2}, - [2679] = {.lex_state = 193, .external_lex_state = 2}, - [2680] = {.lex_state = 193, .external_lex_state = 2}, - [2681] = {.lex_state = 193, .external_lex_state = 2}, - [2682] = {.lex_state = 193, .external_lex_state = 2}, - [2683] = {.lex_state = 1702, .external_lex_state = 2}, - [2684] = {.lex_state = 228, .external_lex_state = 2}, - [2685] = {.lex_state = 1702, .external_lex_state = 2}, - [2686] = {.lex_state = 228, .external_lex_state = 2}, - [2687] = {.lex_state = 228, .external_lex_state = 2}, - [2688] = {.lex_state = 205, .external_lex_state = 2}, - [2689] = {.lex_state = 228, .external_lex_state = 2}, - [2690] = {.lex_state = 1722, .external_lex_state = 2}, - [2691] = {.lex_state = 1722, .external_lex_state = 2}, - [2692] = {.lex_state = 1722, .external_lex_state = 2}, - [2693] = {.lex_state = 228, .external_lex_state = 2}, - [2694] = {.lex_state = 214, .external_lex_state = 2}, - [2695] = {.lex_state = 137, .external_lex_state = 2}, - [2696] = {.lex_state = 228, .external_lex_state = 2}, - [2697] = {.lex_state = 137, .external_lex_state = 2}, - [2698] = {.lex_state = 137, .external_lex_state = 2}, - [2699] = {.lex_state = 137, .external_lex_state = 2}, - [2700] = {.lex_state = 1722, .external_lex_state = 2}, - [2701] = {.lex_state = 1722, .external_lex_state = 2}, - [2702] = {.lex_state = 222, .external_lex_state = 2}, - [2703] = {.lex_state = 197, .external_lex_state = 2}, - [2704] = {.lex_state = 228, .external_lex_state = 2}, - [2705] = {.lex_state = 228, .external_lex_state = 2}, - [2706] = {.lex_state = 1722, .external_lex_state = 2}, - [2707] = {.lex_state = 1722, .external_lex_state = 2}, - [2708] = {.lex_state = 228, .external_lex_state = 2}, - [2709] = {.lex_state = 228, .external_lex_state = 2}, - [2710] = {.lex_state = 201, .external_lex_state = 2}, - [2711] = {.lex_state = 228, .external_lex_state = 2}, - [2712] = {.lex_state = 1722, .external_lex_state = 2}, - [2713] = {.lex_state = 1722, .external_lex_state = 2}, - [2714] = {.lex_state = 228, .external_lex_state = 2}, - [2715] = {.lex_state = 180, .external_lex_state = 2}, - [2716] = {.lex_state = 228, .external_lex_state = 2}, - [2717] = {.lex_state = 180, .external_lex_state = 2}, - [2718] = {.lex_state = 1722, .external_lex_state = 2}, - [2719] = {.lex_state = 224, .external_lex_state = 2}, - [2720] = {.lex_state = 224, .external_lex_state = 2}, + [2628] = {.lex_state = 40, .external_lex_state = 2}, + [2629] = {.lex_state = 40, .external_lex_state = 2}, + [2630] = {.lex_state = 40, .external_lex_state = 2}, + [2631] = {.lex_state = 40, .external_lex_state = 2}, + [2632] = {.lex_state = 1723, .external_lex_state = 2}, + [2633] = {.lex_state = 40, .external_lex_state = 2}, + [2634] = {.lex_state = 40, .external_lex_state = 2}, + [2635] = {.lex_state = 40, .external_lex_state = 2}, + [2636] = {.lex_state = 40, .external_lex_state = 2}, + [2637] = {.lex_state = 1723, .external_lex_state = 2}, + [2638] = {.lex_state = 1723, .external_lex_state = 2}, + [2639] = {.lex_state = 180, .external_lex_state = 2}, + [2640] = {.lex_state = 1723, .external_lex_state = 2}, + [2641] = {.lex_state = 194, .external_lex_state = 2}, + [2642] = {.lex_state = 180, .external_lex_state = 2}, + [2643] = {.lex_state = 40, .external_lex_state = 2}, + [2644] = {.lex_state = 40, .external_lex_state = 2}, + [2645] = {.lex_state = 40, .external_lex_state = 2}, + [2646] = {.lex_state = 40, .external_lex_state = 2}, + [2647] = {.lex_state = 40, .external_lex_state = 2}, + [2648] = {.lex_state = 40, .external_lex_state = 2}, + [2649] = {.lex_state = 40, .external_lex_state = 2}, + [2650] = {.lex_state = 205, .external_lex_state = 2}, + [2651] = {.lex_state = 40, .external_lex_state = 2}, + [2652] = {.lex_state = 40, .external_lex_state = 2}, + [2653] = {.lex_state = 40, .external_lex_state = 2}, + [2654] = {.lex_state = 40, .external_lex_state = 2}, + [2655] = {.lex_state = 1723, .external_lex_state = 2}, + [2656] = {.lex_state = 1723, .external_lex_state = 2}, + [2657] = {.lex_state = 40, .external_lex_state = 2}, + [2658] = {.lex_state = 1722, .external_lex_state = 2}, + [2659] = {.lex_state = 180, .external_lex_state = 2}, + [2660] = {.lex_state = 229, .external_lex_state = 2}, + [2661] = {.lex_state = 112, .external_lex_state = 2}, + [2662] = {.lex_state = 1723, .external_lex_state = 2}, + [2663] = {.lex_state = 112, .external_lex_state = 2}, + [2664] = {.lex_state = 1723, .external_lex_state = 2}, + [2665] = {.lex_state = 229, .external_lex_state = 2}, + [2666] = {.lex_state = 229, .external_lex_state = 2}, + [2667] = {.lex_state = 45, .external_lex_state = 2}, + [2668] = {.lex_state = 1723, .external_lex_state = 2}, + [2669] = {.lex_state = 1723, .external_lex_state = 2}, + [2670] = {.lex_state = 223, .external_lex_state = 2}, + [2671] = {.lex_state = 225, .external_lex_state = 2}, + [2672] = {.lex_state = 1723, .external_lex_state = 2}, + [2673] = {.lex_state = 229, .external_lex_state = 2}, + [2674] = {.lex_state = 1723, .external_lex_state = 2}, + [2675] = {.lex_state = 204, .external_lex_state = 2}, + [2676] = {.lex_state = 1723, .external_lex_state = 2}, + [2677] = {.lex_state = 206, .external_lex_state = 2}, + [2678] = {.lex_state = 206, .external_lex_state = 2}, + [2679] = {.lex_state = 229, .external_lex_state = 2}, + [2680] = {.lex_state = 1703, .external_lex_state = 2}, + [2681] = {.lex_state = 1723, .external_lex_state = 2}, + [2682] = {.lex_state = 229, .external_lex_state = 2}, + [2683] = {.lex_state = 225, .external_lex_state = 2}, + [2684] = {.lex_state = 1723, .external_lex_state = 2}, + [2685] = {.lex_state = 197, .external_lex_state = 2}, + [2686] = {.lex_state = 201, .external_lex_state = 2}, + [2687] = {.lex_state = 193, .external_lex_state = 2}, + [2688] = {.lex_state = 225, .external_lex_state = 2}, + [2689] = {.lex_state = 229, .external_lex_state = 2}, + [2690] = {.lex_state = 229, .external_lex_state = 2}, + [2691] = {.lex_state = 223, .external_lex_state = 2}, + [2692] = {.lex_state = 229, .external_lex_state = 2}, + [2693] = {.lex_state = 229, .external_lex_state = 2}, + [2694] = {.lex_state = 229, .external_lex_state = 2}, + [2695] = {.lex_state = 229, .external_lex_state = 2}, + [2696] = {.lex_state = 229, .external_lex_state = 2}, + [2697] = {.lex_state = 225, .external_lex_state = 2}, + [2698] = {.lex_state = 180, .external_lex_state = 2}, + [2699] = {.lex_state = 213, .external_lex_state = 2}, + [2700] = {.lex_state = 1703, .external_lex_state = 2}, + [2701] = {.lex_state = 112, .external_lex_state = 2}, + [2702] = {.lex_state = 1723, .external_lex_state = 2}, + [2703] = {.lex_state = 1723, .external_lex_state = 2}, + [2704] = {.lex_state = 1723, .external_lex_state = 2}, + [2705] = {.lex_state = 223, .external_lex_state = 2}, + [2706] = {.lex_state = 1723, .external_lex_state = 2}, + [2707] = {.lex_state = 1723, .external_lex_state = 2}, + [2708] = {.lex_state = 225, .external_lex_state = 2}, + [2709] = {.lex_state = 1723, .external_lex_state = 2}, + [2710] = {.lex_state = 229, .external_lex_state = 2}, + [2711] = {.lex_state = 1723, .external_lex_state = 2}, + [2712] = {.lex_state = 229, .external_lex_state = 2}, + [2713] = {.lex_state = 1723, .external_lex_state = 2}, + [2714] = {.lex_state = 112, .external_lex_state = 2}, + [2715] = {.lex_state = 206, .external_lex_state = 2}, + [2716] = {.lex_state = 1723, .external_lex_state = 2}, + [2717] = {.lex_state = 1723, .external_lex_state = 2}, + [2718] = {.lex_state = 1723, .external_lex_state = 2}, + [2719] = {.lex_state = 229, .external_lex_state = 2}, + [2720] = {.lex_state = 206, .external_lex_state = 2}, [2721] = {.lex_state = 198, .external_lex_state = 2}, - [2722] = {.lex_state = 1722, .external_lex_state = 2}, - [2723] = {.lex_state = 1722, .external_lex_state = 2}, - [2724] = {.lex_state = 1722, .external_lex_state = 2}, - [2725] = {.lex_state = 1722, .external_lex_state = 2}, - [2726] = {.lex_state = 1722, .external_lex_state = 2}, - [2727] = {.lex_state = 1722, .external_lex_state = 2}, - [2728] = {.lex_state = 1722, .external_lex_state = 2}, - [2729] = {.lex_state = 1722, .external_lex_state = 2}, - [2730] = {.lex_state = 1722, .external_lex_state = 2}, - [2731] = {.lex_state = 1722, .external_lex_state = 2}, - [2732] = {.lex_state = 228, .external_lex_state = 2}, - [2733] = {.lex_state = 224, .external_lex_state = 2}, - [2734] = {.lex_state = 224, .external_lex_state = 2}, - [2735] = {.lex_state = 224, .external_lex_state = 2}, - [2736] = {.lex_state = 228, .external_lex_state = 2}, - [2737] = {.lex_state = 228, .external_lex_state = 2}, - [2738] = {.lex_state = 228, .external_lex_state = 2}, - [2739] = {.lex_state = 228, .external_lex_state = 2}, - [2740] = {.lex_state = 228, .external_lex_state = 2}, - [2741] = {.lex_state = 193, .external_lex_state = 2}, - [2742] = {.lex_state = 193, .external_lex_state = 2}, - [2743] = {.lex_state = 207, .external_lex_state = 2}, - [2744] = {.lex_state = 228, .external_lex_state = 2}, - [2745] = {.lex_state = 46, .external_lex_state = 2}, - [2746] = {.lex_state = 222, .external_lex_state = 2}, - [2747] = {.lex_state = 222, .external_lex_state = 2}, - [2748] = {.lex_state = 222, .external_lex_state = 2}, - [2749] = {.lex_state = 1722, .external_lex_state = 2}, - [2750] = {.lex_state = 228, .external_lex_state = 2}, - [2751] = {.lex_state = 228, .external_lex_state = 2}, - [2752] = {.lex_state = 1722, .external_lex_state = 2}, - [2753] = {.lex_state = 179, .external_lex_state = 2}, + [2722] = {.lex_state = 229, .external_lex_state = 2}, + [2723] = {.lex_state = 112, .external_lex_state = 2}, + [2724] = {.lex_state = 193, .external_lex_state = 2}, + [2725] = {.lex_state = 229, .external_lex_state = 2}, + [2726] = {.lex_state = 229, .external_lex_state = 2}, + [2727] = {.lex_state = 229, .external_lex_state = 2}, + [2728] = {.lex_state = 1723, .external_lex_state = 2}, + [2729] = {.lex_state = 229, .external_lex_state = 2}, + [2730] = {.lex_state = 193, .external_lex_state = 2}, + [2731] = {.lex_state = 229, .external_lex_state = 2}, + [2732] = {.lex_state = 1723, .external_lex_state = 2}, + [2733] = {.lex_state = 112, .external_lex_state = 2}, + [2734] = {.lex_state = 206, .external_lex_state = 2}, + [2735] = {.lex_state = 193, .external_lex_state = 2}, + [2736] = {.lex_state = 193, .external_lex_state = 2}, + [2737] = {.lex_state = 193, .external_lex_state = 2}, + [2738] = {.lex_state = 229, .external_lex_state = 2}, + [2739] = {.lex_state = 223, .external_lex_state = 2}, + [2740] = {.lex_state = 225, .external_lex_state = 2}, + [2741] = {.lex_state = 200, .external_lex_state = 2}, + [2742] = {.lex_state = 224, .external_lex_state = 2}, + [2743] = {.lex_state = 200, .external_lex_state = 2}, + [2744] = {.lex_state = 179, .external_lex_state = 2}, + [2745] = {.lex_state = 200, .external_lex_state = 2}, + [2746] = {.lex_state = 179, .external_lex_state = 2}, + [2747] = {.lex_state = 179, .external_lex_state = 2}, + [2748] = {.lex_state = 200, .external_lex_state = 2}, + [2749] = {.lex_state = 179, .external_lex_state = 2}, + [2750] = {.lex_state = 200, .external_lex_state = 2}, + [2751] = {.lex_state = 200, .external_lex_state = 2}, + [2752] = {.lex_state = 200, .external_lex_state = 2}, + [2753] = {.lex_state = 200, .external_lex_state = 2}, [2754] = {.lex_state = 200, .external_lex_state = 2}, [2755] = {.lex_state = 200, .external_lex_state = 2}, - [2756] = {.lex_state = 228, .external_lex_state = 2}, - [2757] = {.lex_state = 1630}, + [2756] = {.lex_state = 200, .external_lex_state = 2}, + [2757] = {.lex_state = 200, .external_lex_state = 2}, [2758] = {.lex_state = 200, .external_lex_state = 2}, - [2759] = {.lex_state = 223, .external_lex_state = 2}, + [2759] = {.lex_state = 200, .external_lex_state = 2}, [2760] = {.lex_state = 200, .external_lex_state = 2}, [2761] = {.lex_state = 200, .external_lex_state = 2}, - [2762] = {.lex_state = 223, .external_lex_state = 2}, - [2763] = {.lex_state = 223, .external_lex_state = 2}, - [2764] = {.lex_state = 200, .external_lex_state = 2}, - [2765] = {.lex_state = 200, .external_lex_state = 2}, - [2766] = {.lex_state = 200, .external_lex_state = 2}, - [2767] = {.lex_state = 200, .external_lex_state = 2}, - [2768] = {.lex_state = 179, .external_lex_state = 2}, - [2769] = {.lex_state = 1664}, - [2770] = {.lex_state = 224, .external_lex_state = 2}, - [2771] = {.lex_state = 223, .external_lex_state = 2}, - [2772] = {.lex_state = 224, .external_lex_state = 2}, - [2773] = {.lex_state = 200, .external_lex_state = 2}, - [2774] = {.lex_state = 200, .external_lex_state = 2}, + [2762] = {.lex_state = 200, .external_lex_state = 2}, + [2763] = {.lex_state = 200, .external_lex_state = 2}, + [2764] = {.lex_state = 184, .external_lex_state = 2}, + [2765] = {.lex_state = 207, .external_lex_state = 2}, + [2766] = {.lex_state = 207, .external_lex_state = 2}, + [2767] = {.lex_state = 224, .external_lex_state = 2}, + [2768] = {.lex_state = 113, .external_lex_state = 2}, + [2769] = {.lex_state = 183, .external_lex_state = 2}, + [2770] = {.lex_state = 195, .external_lex_state = 2}, + [2771] = {.lex_state = 195, .external_lex_state = 2}, + [2772] = {.lex_state = 118, .external_lex_state = 2}, + [2773] = {.lex_state = 187, .external_lex_state = 2}, + [2774] = {.lex_state = 224, .external_lex_state = 2}, [2775] = {.lex_state = 200, .external_lex_state = 2}, - [2776] = {.lex_state = 179, .external_lex_state = 2}, - [2777] = {.lex_state = 228, .external_lex_state = 2}, - [2778] = {.lex_state = 184, .external_lex_state = 2}, - [2779] = {.lex_state = 138, .external_lex_state = 2}, - [2780] = {.lex_state = 179, .external_lex_state = 2}, - [2781] = {.lex_state = 179, .external_lex_state = 2}, - [2782] = {.lex_state = 200, .external_lex_state = 2}, - [2783] = {.lex_state = 200, .external_lex_state = 2}, - [2784] = {.lex_state = 183, .external_lex_state = 2}, - [2785] = {.lex_state = 223, .external_lex_state = 2}, - [2786] = {.lex_state = 200, .external_lex_state = 2}, + [2776] = {.lex_state = 224, .external_lex_state = 2}, + [2777] = {.lex_state = 224, .external_lex_state = 2}, + [2778] = {.lex_state = 1665}, + [2779] = {.lex_state = 229, .external_lex_state = 2}, + [2780] = {.lex_state = 229, .external_lex_state = 2}, + [2781] = {.lex_state = 225, .external_lex_state = 2}, + [2782] = {.lex_state = 179, .external_lex_state = 2}, + [2783] = {.lex_state = 179, .external_lex_state = 2}, + [2784] = {.lex_state = 224, .external_lex_state = 2}, + [2785] = {.lex_state = 194, .external_lex_state = 2}, + [2786] = {.lex_state = 194, .external_lex_state = 2}, [2787] = {.lex_state = 194, .external_lex_state = 2}, - [2788] = {.lex_state = 195, .external_lex_state = 2}, - [2789] = {.lex_state = 179, .external_lex_state = 2}, - [2790] = {.lex_state = 195, .external_lex_state = 2}, - [2791] = {.lex_state = 200, .external_lex_state = 2}, - [2792] = {.lex_state = 194, .external_lex_state = 2}, - [2793] = {.lex_state = 194, .external_lex_state = 2}, - [2794] = {.lex_state = 143, .external_lex_state = 2}, - [2795] = {.lex_state = 223, .external_lex_state = 2}, - [2796] = {.lex_state = 187, .external_lex_state = 2}, - [2797] = {.lex_state = 46, .external_lex_state = 2}, - [2798] = {.lex_state = 200, .external_lex_state = 2}, - [2799] = {.lex_state = 208, .external_lex_state = 2}, - [2800] = {.lex_state = 200, .external_lex_state = 2}, - [2801] = {.lex_state = 200, .external_lex_state = 2}, - [2802] = {.lex_state = 200, .external_lex_state = 2}, - [2803] = {.lex_state = 208, .external_lex_state = 2}, - [2804] = {.lex_state = 226, .external_lex_state = 2}, - [2805] = {.lex_state = 196, .external_lex_state = 2}, - [2806] = {.lex_state = 41, .external_lex_state = 2}, - [2807] = {.lex_state = 184, .external_lex_state = 2}, + [2788] = {.lex_state = 45, .external_lex_state = 2}, + [2789] = {.lex_state = 1631}, + [2790] = {.lex_state = 200, .external_lex_state = 2}, + [2791] = {.lex_state = 184, .external_lex_state = 2}, + [2792] = {.lex_state = 228, .external_lex_state = 2}, + [2793] = {.lex_state = 181, .external_lex_state = 2}, + [2794] = {.lex_state = 196, .external_lex_state = 2}, + [2795] = {.lex_state = 1633}, + [2796] = {.lex_state = 196, .external_lex_state = 2}, + [2797] = {.lex_state = 228, .external_lex_state = 2}, + [2798] = {.lex_state = 196, .external_lex_state = 2}, + [2799] = {.lex_state = 196, .external_lex_state = 2}, + [2800] = {.lex_state = 228, .external_lex_state = 2}, + [2801] = {.lex_state = 184, .external_lex_state = 2}, + [2802] = {.lex_state = 184, .external_lex_state = 2}, + [2803] = {.lex_state = 196, .external_lex_state = 2}, + [2804] = {.lex_state = 184, .external_lex_state = 2}, + [2805] = {.lex_state = 184, .external_lex_state = 2}, + [2806] = {.lex_state = 184, .external_lex_state = 2}, + [2807] = {.lex_state = 1665}, [2808] = {.lex_state = 184, .external_lex_state = 2}, [2809] = {.lex_state = 184, .external_lex_state = 2}, - [2810] = {.lex_state = 44, .external_lex_state = 2}, + [2810] = {.lex_state = 184, .external_lex_state = 2}, [2811] = {.lex_state = 184, .external_lex_state = 2}, - [2812] = {.lex_state = 196, .external_lex_state = 2}, - [2813] = {.lex_state = 196, .external_lex_state = 2}, - [2814] = {.lex_state = 184, .external_lex_state = 2}, - [2815] = {.lex_state = 226, .external_lex_state = 2}, - [2816] = {.lex_state = 184, .external_lex_state = 2}, - [2817] = {.lex_state = 45, .external_lex_state = 2}, - [2818] = {.lex_state = 209, .external_lex_state = 2}, - [2819] = {.lex_state = 184, .external_lex_state = 2}, - [2820] = {.lex_state = 184, .external_lex_state = 2}, - [2821] = {.lex_state = 184, .external_lex_state = 2}, - [2822] = {.lex_state = 184, .external_lex_state = 2}, - [2823] = {.lex_state = 139, .external_lex_state = 2}, - [2824] = {.lex_state = 46, .external_lex_state = 2}, - [2825] = {.lex_state = 184, .external_lex_state = 2}, - [2826] = {.lex_state = 196, .external_lex_state = 2}, - [2827] = {.lex_state = 139, .external_lex_state = 2}, - [2828] = {.lex_state = 209, .external_lex_state = 2}, + [2812] = {.lex_state = 184, .external_lex_state = 2}, + [2813] = {.lex_state = 184, .external_lex_state = 2}, + [2814] = {.lex_state = 45, .external_lex_state = 2}, + [2815] = {.lex_state = 43, .external_lex_state = 2}, + [2816] = {.lex_state = 208, .external_lex_state = 2}, + [2817] = {.lex_state = 196, .external_lex_state = 2}, + [2818] = {.lex_state = 208, .external_lex_state = 2}, + [2819] = {.lex_state = 227, .external_lex_state = 2}, + [2820] = {.lex_state = 230, .external_lex_state = 2}, + [2821] = {.lex_state = 208, .external_lex_state = 2}, + [2822] = {.lex_state = 228, .external_lex_state = 2}, + [2823] = {.lex_state = 228, .external_lex_state = 2}, + [2824] = {.lex_state = 208, .external_lex_state = 2}, + [2825] = {.lex_state = 196, .external_lex_state = 2}, + [2826] = {.lex_state = 227, .external_lex_state = 2}, + [2827] = {.lex_state = 208, .external_lex_state = 2}, + [2828] = {.lex_state = 208, .external_lex_state = 2}, [2829] = {.lex_state = 227, .external_lex_state = 2}, [2830] = {.lex_state = 184, .external_lex_state = 2}, - [2831] = {.lex_state = 196, .external_lex_state = 2}, - [2832] = {.lex_state = 226, .external_lex_state = 2}, + [2831] = {.lex_state = 228, .external_lex_state = 2}, + [2832] = {.lex_state = 227, .external_lex_state = 2}, [2833] = {.lex_state = 227, .external_lex_state = 2}, - [2834] = {.lex_state = 181, .external_lex_state = 2}, - [2835] = {.lex_state = 196, .external_lex_state = 2}, - [2836] = {.lex_state = 226, .external_lex_state = 2}, - [2837] = {.lex_state = 209, .external_lex_state = 2}, - [2838] = {.lex_state = 209, .external_lex_state = 2}, - [2839] = {.lex_state = 184, .external_lex_state = 2}, - [2840] = {.lex_state = 1630}, - [2841] = {.lex_state = 180, .external_lex_state = 2}, - [2842] = {.lex_state = 181, .external_lex_state = 2}, - [2843] = {.lex_state = 196, .external_lex_state = 2}, - [2844] = {.lex_state = 1632}, - [2845] = {.lex_state = 184, .external_lex_state = 2}, - [2846] = {.lex_state = 1632}, - [2847] = {.lex_state = 184, .external_lex_state = 2}, + [2834] = {.lex_state = 227, .external_lex_state = 2}, + [2835] = {.lex_state = 227, .external_lex_state = 2}, + [2836] = {.lex_state = 227, .external_lex_state = 2}, + [2837] = {.lex_state = 180, .external_lex_state = 2}, + [2838] = {.lex_state = 1665}, + [2839] = {.lex_state = 196, .external_lex_state = 2}, + [2840] = {.lex_state = 184, .external_lex_state = 2}, + [2841] = {.lex_state = 184, .external_lex_state = 2}, + [2842] = {.lex_state = 196, .external_lex_state = 2}, + [2843] = {.lex_state = 180, .external_lex_state = 2}, + [2844] = {.lex_state = 180, .external_lex_state = 2}, + [2845] = {.lex_state = 1631}, + [2846] = {.lex_state = 196, .external_lex_state = 2}, + [2847] = {.lex_state = 196, .external_lex_state = 2}, [2848] = {.lex_state = 196, .external_lex_state = 2}, - [2849] = {.lex_state = 184, .external_lex_state = 2}, - [2850] = {.lex_state = 184, .external_lex_state = 2}, - [2851] = {.lex_state = 196, .external_lex_state = 2}, - [2852] = {.lex_state = 229, .external_lex_state = 2}, - [2853] = {.lex_state = 226, .external_lex_state = 2}, - [2854] = {.lex_state = 196, .external_lex_state = 2}, - [2855] = {.lex_state = 196, .external_lex_state = 2}, - [2856] = {.lex_state = 226, .external_lex_state = 2}, + [2849] = {.lex_state = 196, .external_lex_state = 2}, + [2850] = {.lex_state = 227, .external_lex_state = 2}, + [2851] = {.lex_state = 184, .external_lex_state = 2}, + [2852] = {.lex_state = 184, .external_lex_state = 2}, + [2853] = {.lex_state = 114, .external_lex_state = 2}, + [2854] = {.lex_state = 184, .external_lex_state = 2}, + [2855] = {.lex_state = 184, .external_lex_state = 2}, + [2856] = {.lex_state = 114, .external_lex_state = 2}, [2857] = {.lex_state = 184, .external_lex_state = 2}, - [2858] = {.lex_state = 226, .external_lex_state = 2}, - [2859] = {.lex_state = 209, .external_lex_state = 2}, - [2860] = {.lex_state = 184, .external_lex_state = 2}, - [2861] = {.lex_state = 1664}, + [2858] = {.lex_state = 181, .external_lex_state = 2}, + [2859] = {.lex_state = 1633}, + [2860] = {.lex_state = 44, .external_lex_state = 2}, + [2861] = {.lex_state = 196, .external_lex_state = 2}, [2862] = {.lex_state = 184, .external_lex_state = 2}, - [2863] = {.lex_state = 196, .external_lex_state = 2}, - [2864] = {.lex_state = 184, .external_lex_state = 2}, - [2865] = {.lex_state = 180, .external_lex_state = 2}, - [2866] = {.lex_state = 180, .external_lex_state = 2}, - [2867] = {.lex_state = 209, .external_lex_state = 2}, - [2868] = {.lex_state = 196, .external_lex_state = 2}, - [2869] = {.lex_state = 200, .external_lex_state = 2}, - [2870] = {.lex_state = 200, .external_lex_state = 2}, - [2871] = {.lex_state = 227, .external_lex_state = 2}, - [2872] = {.lex_state = 196, .external_lex_state = 2}, - [2873] = {.lex_state = 227, .external_lex_state = 2}, - [2874] = {.lex_state = 227, .external_lex_state = 2}, - [2875] = {.lex_state = 227, .external_lex_state = 2}, - [2876] = {.lex_state = 1664}, - [2877] = {.lex_state = 226, .external_lex_state = 2}, - [2878] = {.lex_state = 196, .external_lex_state = 2}, - [2879] = {.lex_state = 226, .external_lex_state = 2}, - [2880] = {.lex_state = 1632}, - [2881] = {.lex_state = 242, .external_lex_state = 2}, - [2882] = {.lex_state = 1632}, + [2863] = {.lex_state = 200, .external_lex_state = 2}, + [2864] = {.lex_state = 200, .external_lex_state = 2}, + [2865] = {.lex_state = 196, .external_lex_state = 2}, + [2866] = {.lex_state = 40, .external_lex_state = 2}, + [2867] = {.lex_state = 229, .external_lex_state = 2}, + [2868] = {.lex_state = 182, .external_lex_state = 2}, + [2869] = {.lex_state = 209, .external_lex_state = 2}, + [2870] = {.lex_state = 243, .external_lex_state = 2}, + [2871] = {.lex_state = 43, .external_lex_state = 2}, + [2872] = {.lex_state = 214, .external_lex_state = 2}, + [2873] = {.lex_state = 115, .external_lex_state = 2}, + [2874] = {.lex_state = 243, .external_lex_state = 2}, + [2875] = {.lex_state = 115, .external_lex_state = 2}, + [2876] = {.lex_state = 115, .external_lex_state = 2}, + [2877] = {.lex_state = 115, .external_lex_state = 2}, + [2878] = {.lex_state = 182, .external_lex_state = 2}, + [2879] = {.lex_state = 98, .external_lex_state = 2}, + [2880] = {.lex_state = 182, .external_lex_state = 2}, + [2881] = {.lex_state = 243, .external_lex_state = 2}, + [2882] = {.lex_state = 182, .external_lex_state = 2}, [2883] = {.lex_state = 182, .external_lex_state = 2}, - [2884] = {.lex_state = 182, .external_lex_state = 2}, - [2885] = {.lex_state = 199, .external_lex_state = 2}, - [2886] = {.lex_state = 199, .external_lex_state = 2}, + [2884] = {.lex_state = 1639}, + [2885] = {.lex_state = 1635}, + [2886] = {.lex_state = 227, .external_lex_state = 2}, [2887] = {.lex_state = 182, .external_lex_state = 2}, - [2888] = {.lex_state = 199, .external_lex_state = 2}, - [2889] = {.lex_state = 199, .external_lex_state = 2}, - [2890] = {.lex_state = 241, .external_lex_state = 2}, + [2888] = {.lex_state = 192, .external_lex_state = 2}, + [2889] = {.lex_state = 182, .external_lex_state = 2}, + [2890] = {.lex_state = 1665}, [2891] = {.lex_state = 202, .external_lex_state = 2}, - [2892] = {.lex_state = 140, .external_lex_state = 2}, - [2893] = {.lex_state = 241, .external_lex_state = 2}, - [2894] = {.lex_state = 182, .external_lex_state = 2}, - [2895] = {.lex_state = 241, .external_lex_state = 2}, - [2896] = {.lex_state = 140, .external_lex_state = 2}, - [2897] = {.lex_state = 182, .external_lex_state = 2}, - [2898] = {.lex_state = 182, .external_lex_state = 2}, - [2899] = {.lex_state = 210, .external_lex_state = 2}, - [2900] = {.lex_state = 1664}, - [2901] = {.lex_state = 140, .external_lex_state = 2}, - [2902] = {.lex_state = 182, .external_lex_state = 2}, - [2903] = {.lex_state = 182, .external_lex_state = 2}, - [2904] = {.lex_state = 44, .external_lex_state = 2}, - [2905] = {.lex_state = 182, .external_lex_state = 2}, - [2906] = {.lex_state = 1664}, - [2907] = {.lex_state = 184, .external_lex_state = 2}, - [2908] = {.lex_state = 41, .external_lex_state = 2}, - [2909] = {.lex_state = 228, .external_lex_state = 2}, - [2910] = {.lex_state = 182, .external_lex_state = 2}, - [2911] = {.lex_state = 1664}, - [2912] = {.lex_state = 140, .external_lex_state = 2}, - [2913] = {.lex_state = 215, .external_lex_state = 2}, - [2914] = {.lex_state = 184, .external_lex_state = 2}, - [2915] = {.lex_state = 140, .external_lex_state = 2}, - [2916] = {.lex_state = 140, .external_lex_state = 2}, - [2917] = {.lex_state = 242, .external_lex_state = 2}, - [2918] = {.lex_state = 140, .external_lex_state = 2}, - [2919] = {.lex_state = 226, .external_lex_state = 2}, - [2920] = {.lex_state = 140, .external_lex_state = 2}, - [2921] = {.lex_state = 45, .external_lex_state = 2}, - [2922] = {.lex_state = 182, .external_lex_state = 2}, - [2923] = {.lex_state = 99, .external_lex_state = 2}, + [2892] = {.lex_state = 40, .external_lex_state = 2}, + [2893] = {.lex_state = 227, .external_lex_state = 2}, + [2894] = {.lex_state = 229, .external_lex_state = 2}, + [2895] = {.lex_state = 229, .external_lex_state = 2}, + [2896] = {.lex_state = 1665}, + [2897] = {.lex_state = 40, .external_lex_state = 2}, + [2898] = {.lex_state = 40, .external_lex_state = 2}, + [2899] = {.lex_state = 115, .external_lex_state = 2}, + [2900] = {.lex_state = 182, .external_lex_state = 2}, + [2901] = {.lex_state = 243, .external_lex_state = 2}, + [2902] = {.lex_state = 115, .external_lex_state = 2}, + [2903] = {.lex_state = 1665}, + [2904] = {.lex_state = 115, .external_lex_state = 2}, + [2905] = {.lex_state = 115, .external_lex_state = 2}, + [2906] = {.lex_state = 182, .external_lex_state = 2}, + [2907] = {.lex_state = 182, .external_lex_state = 2}, + [2908] = {.lex_state = 182, .external_lex_state = 2}, + [2909] = {.lex_state = 199, .external_lex_state = 2}, + [2910] = {.lex_state = 199, .external_lex_state = 2}, + [2911] = {.lex_state = 199, .external_lex_state = 2}, + [2912] = {.lex_state = 1633}, + [2913] = {.lex_state = 182, .external_lex_state = 2}, + [2914] = {.lex_state = 182, .external_lex_state = 2}, + [2915] = {.lex_state = 199, .external_lex_state = 2}, + [2916] = {.lex_state = 44, .external_lex_state = 2}, + [2917] = {.lex_state = 184, .external_lex_state = 2}, + [2918] = {.lex_state = 1665}, + [2919] = {.lex_state = 184, .external_lex_state = 2}, + [2920] = {.lex_state = 242, .external_lex_state = 2}, + [2921] = {.lex_state = 242, .external_lex_state = 2}, + [2922] = {.lex_state = 242, .external_lex_state = 2}, + [2923] = {.lex_state = 232, .external_lex_state = 2}, [2924] = {.lex_state = 182, .external_lex_state = 2}, - [2925] = {.lex_state = 182, .external_lex_state = 2}, - [2926] = {.lex_state = 182, .external_lex_state = 2}, - [2927] = {.lex_state = 228, .external_lex_state = 2}, - [2928] = {.lex_state = 228, .external_lex_state = 2}, - [2929] = {.lex_state = 41, .external_lex_state = 2}, - [2930] = {.lex_state = 226, .external_lex_state = 2}, - [2931] = {.lex_state = 41, .external_lex_state = 2}, - [2932] = {.lex_state = 231, .external_lex_state = 2}, - [2933] = {.lex_state = 1638}, - [2934] = {.lex_state = 1634}, - [2935] = {.lex_state = 1664}, - [2936] = {.lex_state = 241, .external_lex_state = 2}, - [2937] = {.lex_state = 199, .external_lex_state = 2}, - [2938] = {.lex_state = 199, .external_lex_state = 2}, - [2939] = {.lex_state = 140, .external_lex_state = 2}, - [2940] = {.lex_state = 182, .external_lex_state = 2}, - [2941] = {.lex_state = 242, .external_lex_state = 2}, - [2942] = {.lex_state = 192, .external_lex_state = 2}, - [2943] = {.lex_state = 242, .external_lex_state = 2}, - [2944] = {.lex_state = 242, .external_lex_state = 2}, - [2945] = {.lex_state = 241, .external_lex_state = 2}, - [2946] = {.lex_state = 188, .external_lex_state = 2}, - [2947] = {.lex_state = 41, .external_lex_state = 2}, - [2948] = {.lex_state = 1633}, - [2949] = {.lex_state = 41, .external_lex_state = 2}, - [2950] = {.lex_state = 185, .external_lex_state = 2}, - [2951] = {.lex_state = 41, .external_lex_state = 2}, - [2952] = {.lex_state = 41, .external_lex_state = 2}, - [2953] = {.lex_state = 185, .external_lex_state = 2}, - [2954] = {.lex_state = 41, .external_lex_state = 2}, - [2955] = {.lex_state = 41, .external_lex_state = 2}, - [2956] = {.lex_state = 41, .external_lex_state = 2}, - [2957] = {.lex_state = 41, .external_lex_state = 2}, - [2958] = {.lex_state = 41, .external_lex_state = 2}, - [2959] = {.lex_state = 41, .external_lex_state = 2}, - [2960] = {.lex_state = 41, .external_lex_state = 2}, - [2961] = {.lex_state = 41, .external_lex_state = 2}, - [2962] = {.lex_state = 41, .external_lex_state = 2}, - [2963] = {.lex_state = 216, .external_lex_state = 2}, - [2964] = {.lex_state = 41, .external_lex_state = 2}, - [2965] = {.lex_state = 99, .external_lex_state = 2}, - [2966] = {.lex_state = 211, .external_lex_state = 2}, - [2967] = {.lex_state = 41, .external_lex_state = 2}, - [2968] = {.lex_state = 41, .external_lex_state = 2}, - [2969] = {.lex_state = 41, .external_lex_state = 2}, - [2970] = {.lex_state = 211, .external_lex_state = 2}, - [2971] = {.lex_state = 41, .external_lex_state = 2}, - [2972] = {.lex_state = 41, .external_lex_state = 2}, - [2973] = {.lex_state = 99, .external_lex_state = 2}, - [2974] = {.lex_state = 41, .external_lex_state = 2}, + [2925] = {.lex_state = 242, .external_lex_state = 2}, + [2926] = {.lex_state = 242, .external_lex_state = 2}, + [2927] = {.lex_state = 199, .external_lex_state = 2}, + [2928] = {.lex_state = 199, .external_lex_state = 2}, + [2929] = {.lex_state = 1633}, + [2930] = {.lex_state = 243, .external_lex_state = 2}, + [2931] = {.lex_state = 182, .external_lex_state = 2}, + [2932] = {.lex_state = 115, .external_lex_state = 2}, + [2933] = {.lex_state = 40, .external_lex_state = 2}, + [2934] = {.lex_state = 40, .external_lex_state = 2}, + [2935] = {.lex_state = 40, .external_lex_state = 2}, + [2936] = {.lex_state = 40, .external_lex_state = 2}, + [2937] = {.lex_state = 215, .external_lex_state = 2}, + [2938] = {.lex_state = 40, .external_lex_state = 2}, + [2939] = {.lex_state = 98, .external_lex_state = 2}, + [2940] = {.lex_state = 40, .external_lex_state = 2}, + [2941] = {.lex_state = 40, .external_lex_state = 2}, + [2942] = {.lex_state = 40, .external_lex_state = 2}, + [2943] = {.lex_state = 40, .external_lex_state = 2}, + [2944] = {.lex_state = 40, .external_lex_state = 2}, + [2945] = {.lex_state = 40, .external_lex_state = 2}, + [2946] = {.lex_state = 98, .external_lex_state = 2}, + [2947] = {.lex_state = 190, .external_lex_state = 2}, + [2948] = {.lex_state = 40, .external_lex_state = 2}, + [2949] = {.lex_state = 174, .external_lex_state = 2}, + [2950] = {.lex_state = 174, .external_lex_state = 2}, + [2951] = {.lex_state = 40, .external_lex_state = 2}, + [2952] = {.lex_state = 178, .external_lex_state = 2}, + [2953] = {.lex_state = 40, .external_lex_state = 2}, + [2954] = {.lex_state = 40, .external_lex_state = 2}, + [2955] = {.lex_state = 40, .external_lex_state = 2}, + [2956] = {.lex_state = 40, .external_lex_state = 2}, + [2957] = {.lex_state = 1641}, + [2958] = {.lex_state = 40, .external_lex_state = 2}, + [2959] = {.lex_state = 46, .external_lex_state = 2}, + [2960] = {.lex_state = 40, .external_lex_state = 2}, + [2961] = {.lex_state = 40, .external_lex_state = 2}, + [2962] = {.lex_state = 40, .external_lex_state = 2}, + [2963] = {.lex_state = 174, .external_lex_state = 2}, + [2964] = {.lex_state = 1641}, + [2965] = {.lex_state = 40, .external_lex_state = 2}, + [2966] = {.lex_state = 40, .external_lex_state = 2}, + [2967] = {.lex_state = 174, .external_lex_state = 2}, + [2968] = {.lex_state = 174, .external_lex_state = 2}, + [2969] = {.lex_state = 40, .external_lex_state = 2}, + [2970] = {.lex_state = 40, .external_lex_state = 2}, + [2971] = {.lex_state = 174, .external_lex_state = 2}, + [2972] = {.lex_state = 174, .external_lex_state = 2}, + [2973] = {.lex_state = 40, .external_lex_state = 2}, + [2974] = {.lex_state = 40, .external_lex_state = 2}, [2975] = {.lex_state = 174, .external_lex_state = 2}, - [2976] = {.lex_state = 41, .external_lex_state = 2}, - [2977] = {.lex_state = 190, .external_lex_state = 2}, - [2978] = {.lex_state = 1642}, - [2979] = {.lex_state = 174, .external_lex_state = 2}, - [2980] = {.lex_state = 185, .external_lex_state = 2}, - [2981] = {.lex_state = 41, .external_lex_state = 2}, - [2982] = {.lex_state = 41, .external_lex_state = 2}, - [2983] = {.lex_state = 41, .external_lex_state = 2}, - [2984] = {.lex_state = 41, .external_lex_state = 2}, - [2985] = {.lex_state = 41, .external_lex_state = 2}, - [2986] = {.lex_state = 174, .external_lex_state = 2}, - [2987] = {.lex_state = 174, .external_lex_state = 2}, - [2988] = {.lex_state = 41, .external_lex_state = 2}, - [2989] = {.lex_state = 41, .external_lex_state = 2}, - [2990] = {.lex_state = 178, .external_lex_state = 2}, - [2991] = {.lex_state = 185, .external_lex_state = 2}, - [2992] = {.lex_state = 41, .external_lex_state = 2}, - [2993] = {.lex_state = 41, .external_lex_state = 2}, - [2994] = {.lex_state = 41, .external_lex_state = 2}, - [2995] = {.lex_state = 174, .external_lex_state = 2}, - [2996] = {.lex_state = 174, .external_lex_state = 2}, - [2997] = {.lex_state = 41, .external_lex_state = 2}, - [2998] = {.lex_state = 185, .external_lex_state = 2}, - [2999] = {.lex_state = 1640}, - [3000] = {.lex_state = 41, .external_lex_state = 2}, - [3001] = {.lex_state = 41, .external_lex_state = 2}, - [3002] = {.lex_state = 174, .external_lex_state = 2}, - [3003] = {.lex_state = 41, .external_lex_state = 2}, - [3004] = {.lex_state = 41, .external_lex_state = 2}, - [3005] = {.lex_state = 1640}, - [3006] = {.lex_state = 41, .external_lex_state = 2}, + [2976] = {.lex_state = 174, .external_lex_state = 2}, + [2977] = {.lex_state = 40, .external_lex_state = 2}, + [2978] = {.lex_state = 40, .external_lex_state = 2}, + [2979] = {.lex_state = 40, .external_lex_state = 2}, + [2980] = {.lex_state = 40, .external_lex_state = 2}, + [2981] = {.lex_state = 40, .external_lex_state = 2}, + [2982] = {.lex_state = 40, .external_lex_state = 2}, + [2983] = {.lex_state = 1639}, + [2984] = {.lex_state = 40, .external_lex_state = 2}, + [2985] = {.lex_state = 40, .external_lex_state = 2}, + [2986] = {.lex_state = 40, .external_lex_state = 2}, + [2987] = {.lex_state = 40, .external_lex_state = 2}, + [2988] = {.lex_state = 210, .external_lex_state = 2}, + [2989] = {.lex_state = 1635}, + [2990] = {.lex_state = 40, .external_lex_state = 2}, + [2991] = {.lex_state = 1643}, + [2992] = {.lex_state = 174, .external_lex_state = 2}, + [2993] = {.lex_state = 40, .external_lex_state = 2}, + [2994] = {.lex_state = 40, .external_lex_state = 2}, + [2995] = {.lex_state = 185, .external_lex_state = 2}, + [2996] = {.lex_state = 185, .external_lex_state = 2}, + [2997] = {.lex_state = 189, .external_lex_state = 2}, + [2998] = {.lex_state = 210, .external_lex_state = 2}, + [2999] = {.lex_state = 40, .external_lex_state = 2}, + [3000] = {.lex_state = 40, .external_lex_state = 2}, + [3001] = {.lex_state = 40, .external_lex_state = 2}, + [3002] = {.lex_state = 40, .external_lex_state = 2}, + [3003] = {.lex_state = 189, .external_lex_state = 2}, + [3004] = {.lex_state = 40, .external_lex_state = 2}, + [3005] = {.lex_state = 185, .external_lex_state = 2}, + [3006] = {.lex_state = 40, .external_lex_state = 2}, [3007] = {.lex_state = 174, .external_lex_state = 2}, - [3008] = {.lex_state = 41, .external_lex_state = 2}, - [3009] = {.lex_state = 41, .external_lex_state = 2}, - [3010] = {.lex_state = 174, .external_lex_state = 2}, - [3011] = {.lex_state = 41, .external_lex_state = 2}, - [3012] = {.lex_state = 1638}, - [3013] = {.lex_state = 41, .external_lex_state = 2}, - [3014] = {.lex_state = 200, .external_lex_state = 2}, - [3015] = {.lex_state = 41, .external_lex_state = 2}, - [3016] = {.lex_state = 41, .external_lex_state = 2}, - [3017] = {.lex_state = 174, .external_lex_state = 2}, - [3018] = {.lex_state = 174, .external_lex_state = 2}, - [3019] = {.lex_state = 200, .external_lex_state = 2}, - [3020] = {.lex_state = 174, .external_lex_state = 2}, - [3021] = {.lex_state = 200, .external_lex_state = 2}, - [3022] = {.lex_state = 41, .external_lex_state = 2}, - [3023] = {.lex_state = 41, .external_lex_state = 2}, - [3024] = {.lex_state = 1634}, - [3025] = {.lex_state = 41, .external_lex_state = 2}, - [3026] = {.lex_state = 41, .external_lex_state = 2}, - [3027] = {.lex_state = 189, .external_lex_state = 2}, - [3028] = {.lex_state = 41, .external_lex_state = 2}, - [3029] = {.lex_state = 174, .external_lex_state = 2}, - [3030] = {.lex_state = 41, .external_lex_state = 2}, - [3031] = {.lex_state = 189, .external_lex_state = 2}, - [3032] = {.lex_state = 41, .external_lex_state = 2}, - [3033] = {.lex_state = 185, .external_lex_state = 2}, - [3034] = {.lex_state = 47, .external_lex_state = 2}, - [3035] = {.lex_state = 41, .external_lex_state = 2}, - [3036] = {.lex_state = 191, .external_lex_state = 2}, + [3008] = {.lex_state = 174, .external_lex_state = 2}, + [3009] = {.lex_state = 200, .external_lex_state = 2}, + [3010] = {.lex_state = 185, .external_lex_state = 2}, + [3011] = {.lex_state = 185, .external_lex_state = 2}, + [3012] = {.lex_state = 40, .external_lex_state = 2}, + [3013] = {.lex_state = 40, .external_lex_state = 2}, + [3014] = {.lex_state = 1634}, + [3015] = {.lex_state = 200, .external_lex_state = 2}, + [3016] = {.lex_state = 200, .external_lex_state = 2}, + [3017] = {.lex_state = 40, .external_lex_state = 2}, + [3018] = {.lex_state = 188, .external_lex_state = 2}, + [3019] = {.lex_state = 185, .external_lex_state = 2}, + [3020] = {.lex_state = 40, .external_lex_state = 2}, + [3021] = {.lex_state = 174, .external_lex_state = 2}, + [3022] = {.lex_state = 40, .external_lex_state = 2}, + [3023] = {.lex_state = 191, .external_lex_state = 2}, + [3024] = {.lex_state = 191, .external_lex_state = 2}, + [3025] = {.lex_state = 176, .external_lex_state = 2}, + [3026] = {.lex_state = 191, .external_lex_state = 2}, + [3027] = {.lex_state = 211, .external_lex_state = 2}, + [3028] = {.lex_state = 211, .external_lex_state = 2}, + [3029] = {.lex_state = 191, .external_lex_state = 2}, + [3030] = {.lex_state = 184, .external_lex_state = 2}, + [3031] = {.lex_state = 191, .external_lex_state = 2}, + [3032] = {.lex_state = 191, .external_lex_state = 2}, + [3033] = {.lex_state = 191, .external_lex_state = 2}, + [3034] = {.lex_state = 191, .external_lex_state = 2}, + [3035] = {.lex_state = 191, .external_lex_state = 2}, + [3036] = {.lex_state = 1641}, [3037] = {.lex_state = 191, .external_lex_state = 2}, - [3038] = {.lex_state = 212, .external_lex_state = 2}, - [3039] = {.lex_state = 184, .external_lex_state = 2}, - [3040] = {.lex_state = 191, .external_lex_state = 2}, - [3041] = {.lex_state = 191, .external_lex_state = 2}, + [3038] = {.lex_state = 191, .external_lex_state = 2}, + [3039] = {.lex_state = 191, .external_lex_state = 2}, + [3040] = {.lex_state = 184, .external_lex_state = 2}, + [3041] = {.lex_state = 184, .external_lex_state = 2}, [3042] = {.lex_state = 191, .external_lex_state = 2}, - [3043] = {.lex_state = 1644}, + [3043] = {.lex_state = 191, .external_lex_state = 2}, [3044] = {.lex_state = 191, .external_lex_state = 2}, [3045] = {.lex_state = 191, .external_lex_state = 2}, - [3046] = {.lex_state = 212, .external_lex_state = 2}, - [3047] = {.lex_state = 243, .external_lex_state = 2}, - [3048] = {.lex_state = 191, .external_lex_state = 2}, + [3046] = {.lex_state = 191, .external_lex_state = 2}, + [3047] = {.lex_state = 1645}, + [3048] = {.lex_state = 46, .external_lex_state = 2}, [3049] = {.lex_state = 191, .external_lex_state = 2}, [3050] = {.lex_state = 191, .external_lex_state = 2}, - [3051] = {.lex_state = 191, .external_lex_state = 2}, + [3051] = {.lex_state = 175, .external_lex_state = 2}, [3052] = {.lex_state = 191, .external_lex_state = 2}, - [3053] = {.lex_state = 243, .external_lex_state = 2}, - [3054] = {.lex_state = 191, .external_lex_state = 2}, - [3055] = {.lex_state = 212, .external_lex_state = 2}, - [3056] = {.lex_state = 176, .external_lex_state = 2}, - [3057] = {.lex_state = 212, .external_lex_state = 2}, - [3058] = {.lex_state = 212, .external_lex_state = 2}, + [3053] = {.lex_state = 191, .external_lex_state = 2}, + [3054] = {.lex_state = 33, .external_lex_state = 2}, + [3055] = {.lex_state = 211, .external_lex_state = 2}, + [3056] = {.lex_state = 191, .external_lex_state = 2}, + [3057] = {.lex_state = 191, .external_lex_state = 2}, + [3058] = {.lex_state = 191, .external_lex_state = 2}, [3059] = {.lex_state = 191, .external_lex_state = 2}, - [3060] = {.lex_state = 175, .external_lex_state = 2}, - [3061] = {.lex_state = 243, .external_lex_state = 2}, - [3062] = {.lex_state = 243, .external_lex_state = 2}, + [3060] = {.lex_state = 191, .external_lex_state = 2}, + [3061] = {.lex_state = 191, .external_lex_state = 2}, + [3062] = {.lex_state = 191, .external_lex_state = 2}, [3063] = {.lex_state = 191, .external_lex_state = 2}, [3064] = {.lex_state = 191, .external_lex_state = 2}, [3065] = {.lex_state = 191, .external_lex_state = 2}, - [3066] = {.lex_state = 191, .external_lex_state = 2}, - [3067] = {.lex_state = 212, .external_lex_state = 2}, - [3068] = {.lex_state = 1642}, - [3069] = {.lex_state = 174, .external_lex_state = 2}, + [3066] = {.lex_state = 1643}, + [3067] = {.lex_state = 191, .external_lex_state = 2}, + [3068] = {.lex_state = 211, .external_lex_state = 2}, + [3069] = {.lex_state = 244, .external_lex_state = 2}, [3070] = {.lex_state = 191, .external_lex_state = 2}, - [3071] = {.lex_state = 191, .external_lex_state = 2}, + [3071] = {.lex_state = 211, .external_lex_state = 2}, [3072] = {.lex_state = 191, .external_lex_state = 2}, - [3073] = {.lex_state = 191, .external_lex_state = 2}, - [3074] = {.lex_state = 1642}, - [3075] = {.lex_state = 1636}, - [3076] = {.lex_state = 212, .external_lex_state = 2}, - [3077] = {.lex_state = 212, .external_lex_state = 2}, - [3078] = {.lex_state = 184, .external_lex_state = 2}, - [3079] = {.lex_state = 1642}, - [3080] = {.lex_state = 184, .external_lex_state = 2}, + [3073] = {.lex_state = 244, .external_lex_state = 2}, + [3074] = {.lex_state = 244, .external_lex_state = 2}, + [3075] = {.lex_state = 191, .external_lex_state = 2}, + [3076] = {.lex_state = 191, .external_lex_state = 2}, + [3077] = {.lex_state = 191, .external_lex_state = 2}, + [3078] = {.lex_state = 191, .external_lex_state = 2}, + [3079] = {.lex_state = 1643}, + [3080] = {.lex_state = 191, .external_lex_state = 2}, [3081] = {.lex_state = 191, .external_lex_state = 2}, - [3082] = {.lex_state = 1642}, - [3083] = {.lex_state = 1642}, - [3084] = {.lex_state = 1640}, + [3082] = {.lex_state = 211, .external_lex_state = 2}, + [3083] = {.lex_state = 191, .external_lex_state = 2}, + [3084] = {.lex_state = 244, .external_lex_state = 2}, [3085] = {.lex_state = 191, .external_lex_state = 2}, - [3086] = {.lex_state = 243, .external_lex_state = 2}, + [3086] = {.lex_state = 191, .external_lex_state = 2}, [3087] = {.lex_state = 191, .external_lex_state = 2}, - [3088] = {.lex_state = 33, .external_lex_state = 2}, + [3088] = {.lex_state = 1643}, [3089] = {.lex_state = 191, .external_lex_state = 2}, [3090] = {.lex_state = 174, .external_lex_state = 2}, - [3091] = {.lex_state = 191, .external_lex_state = 2}, - [3092] = {.lex_state = 191, .external_lex_state = 2}, - [3093] = {.lex_state = 1640}, + [3091] = {.lex_state = 1643}, + [3092] = {.lex_state = 1641}, + [3093] = {.lex_state = 211, .external_lex_state = 2}, [3094] = {.lex_state = 191, .external_lex_state = 2}, - [3095] = {.lex_state = 191, .external_lex_state = 2}, - [3096] = {.lex_state = 191, .external_lex_state = 2}, - [3097] = {.lex_state = 47, .external_lex_state = 2}, - [3098] = {.lex_state = 191, .external_lex_state = 2}, - [3099] = {.lex_state = 191, .external_lex_state = 2}, - [3100] = {.lex_state = 212, .external_lex_state = 2}, - [3101] = {.lex_state = 191, .external_lex_state = 2}, - [3102] = {.lex_state = 191, .external_lex_state = 2}, - [3103] = {.lex_state = 212, .external_lex_state = 2}, + [3095] = {.lex_state = 174, .external_lex_state = 2}, + [3096] = {.lex_state = 175, .external_lex_state = 2}, + [3097] = {.lex_state = 191, .external_lex_state = 2}, + [3098] = {.lex_state = 244, .external_lex_state = 2}, + [3099] = {.lex_state = 211, .external_lex_state = 2}, + [3100] = {.lex_state = 211, .external_lex_state = 2}, + [3101] = {.lex_state = 211, .external_lex_state = 2}, + [3102] = {.lex_state = 1643}, + [3103] = {.lex_state = 191, .external_lex_state = 2}, [3104] = {.lex_state = 191, .external_lex_state = 2}, [3105] = {.lex_state = 191, .external_lex_state = 2}, [3106] = {.lex_state = 191, .external_lex_state = 2}, - [3107] = {.lex_state = 191, .external_lex_state = 2}, + [3107] = {.lex_state = 1637}, [3108] = {.lex_state = 191, .external_lex_state = 2}, - [3109] = {.lex_state = 191, .external_lex_state = 2}, - [3110] = {.lex_state = 191, .external_lex_state = 2}, - [3111] = {.lex_state = 191, .external_lex_state = 2}, - [3112] = {.lex_state = 191, .external_lex_state = 2}, - [3113] = {.lex_state = 191, .external_lex_state = 2}, - [3114] = {.lex_state = 191, .external_lex_state = 2}, - [3115] = {.lex_state = 191, .external_lex_state = 2}, - [3116] = {.lex_state = 191, .external_lex_state = 2}, - [3117] = {.lex_state = 191, .external_lex_state = 2}, - [3118] = {.lex_state = 191, .external_lex_state = 2}, - [3119] = {.lex_state = 191, .external_lex_state = 2}, - [3120] = {.lex_state = 191, .external_lex_state = 2}, - [3121] = {.lex_state = 175, .external_lex_state = 2}, + [3109] = {.lex_state = 34, .external_lex_state = 2}, + [3110] = {.lex_state = 34, .external_lex_state = 2}, + [3111] = {.lex_state = 34, .external_lex_state = 2}, + [3112] = {.lex_state = 34, .external_lex_state = 2}, + [3113] = {.lex_state = 34, .external_lex_state = 2}, + [3114] = {.lex_state = 34, .external_lex_state = 2}, + [3115] = {.lex_state = 34, .external_lex_state = 2}, + [3116] = {.lex_state = 1647}, + [3117] = {.lex_state = 34, .external_lex_state = 2}, + [3118] = {.lex_state = 34, .external_lex_state = 2}, + [3119] = {.lex_state = 34, .external_lex_state = 2}, + [3120] = {.lex_state = 34, .external_lex_state = 2}, + [3121] = {.lex_state = 34, .external_lex_state = 2}, [3122] = {.lex_state = 34, .external_lex_state = 2}, [3123] = {.lex_state = 34, .external_lex_state = 2}, - [3124] = {.lex_state = 1664}, + [3124] = {.lex_state = 1643}, [3125] = {.lex_state = 34, .external_lex_state = 2}, [3126] = {.lex_state = 34, .external_lex_state = 2}, [3127] = {.lex_state = 34, .external_lex_state = 2}, - [3128] = {.lex_state = 1646}, + [3128] = {.lex_state = 34, .external_lex_state = 2}, [3129] = {.lex_state = 34, .external_lex_state = 2}, - [3130] = {.lex_state = 1636}, + [3130] = {.lex_state = 34, .external_lex_state = 2}, [3131] = {.lex_state = 34, .external_lex_state = 2}, [3132] = {.lex_state = 34, .external_lex_state = 2}, [3133] = {.lex_state = 34, .external_lex_state = 2}, @@ -63612,4639 +63649,4620 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [3140] = {.lex_state = 34, .external_lex_state = 2}, [3141] = {.lex_state = 34, .external_lex_state = 2}, [3142] = {.lex_state = 34, .external_lex_state = 2}, - [3143] = {.lex_state = 1642}, - [3144] = {.lex_state = 34, .external_lex_state = 2}, - [3145] = {.lex_state = 34, .external_lex_state = 2}, + [3143] = {.lex_state = 34, .external_lex_state = 2}, + [3144] = {.lex_state = 1643}, + [3145] = {.lex_state = 33, .external_lex_state = 2}, [3146] = {.lex_state = 34, .external_lex_state = 2}, [3147] = {.lex_state = 34, .external_lex_state = 2}, [3148] = {.lex_state = 34, .external_lex_state = 2}, - [3149] = {.lex_state = 1642}, + [3149] = {.lex_state = 34, .external_lex_state = 2}, [3150] = {.lex_state = 34, .external_lex_state = 2}, [3151] = {.lex_state = 34, .external_lex_state = 2}, [3152] = {.lex_state = 34, .external_lex_state = 2}, - [3153] = {.lex_state = 34, .external_lex_state = 2}, + [3153] = {.lex_state = 1643}, [3154] = {.lex_state = 34, .external_lex_state = 2}, - [3155] = {.lex_state = 1642}, - [3156] = {.lex_state = 34, .external_lex_state = 2}, + [3155] = {.lex_state = 34, .external_lex_state = 2}, + [3156] = {.lex_state = 1665}, [3157] = {.lex_state = 34, .external_lex_state = 2}, [3158] = {.lex_state = 34, .external_lex_state = 2}, [3159] = {.lex_state = 34, .external_lex_state = 2}, [3160] = {.lex_state = 34, .external_lex_state = 2}, - [3161] = {.lex_state = 34, .external_lex_state = 2}, + [3161] = {.lex_state = 1645}, [3162] = {.lex_state = 34, .external_lex_state = 2}, [3163] = {.lex_state = 34, .external_lex_state = 2}, [3164] = {.lex_state = 34, .external_lex_state = 2}, [3165] = {.lex_state = 34, .external_lex_state = 2}, [3166] = {.lex_state = 34, .external_lex_state = 2}, [3167] = {.lex_state = 34, .external_lex_state = 2}, - [3168] = {.lex_state = 34, .external_lex_state = 2}, + [3168] = {.lex_state = 1637}, [3169] = {.lex_state = 34, .external_lex_state = 2}, [3170] = {.lex_state = 34, .external_lex_state = 2}, - [3171] = {.lex_state = 1646}, + [3171] = {.lex_state = 1647}, [3172] = {.lex_state = 34, .external_lex_state = 2}, - [3173] = {.lex_state = 1644}, + [3173] = {.lex_state = 34, .external_lex_state = 2}, [3174] = {.lex_state = 34, .external_lex_state = 2}, - [3175] = {.lex_state = 33, .external_lex_state = 2}, + [3175] = {.lex_state = 34, .external_lex_state = 2}, [3176] = {.lex_state = 34, .external_lex_state = 2}, [3177] = {.lex_state = 34, .external_lex_state = 2}, [3178] = {.lex_state = 34, .external_lex_state = 2}, [3179] = {.lex_state = 34, .external_lex_state = 2}, [3180] = {.lex_state = 34, .external_lex_state = 2}, - [3181] = {.lex_state = 34, .external_lex_state = 2}, - [3182] = {.lex_state = 34, .external_lex_state = 2}, + [3181] = {.lex_state = 1643}, + [3182] = {.lex_state = 1647}, [3183] = {.lex_state = 34, .external_lex_state = 2}, - [3184] = {.lex_state = 34, .external_lex_state = 2}, - [3185] = {.lex_state = 34, .external_lex_state = 2}, - [3186] = {.lex_state = 34, .external_lex_state = 2}, - [3187] = {.lex_state = 34, .external_lex_state = 2}, - [3188] = {.lex_state = 34, .external_lex_state = 2}, - [3189] = {.lex_state = 34, .external_lex_state = 2}, - [3190] = {.lex_state = 34, .external_lex_state = 2}, - [3191] = {.lex_state = 34, .external_lex_state = 2}, - [3192] = {.lex_state = 34, .external_lex_state = 2}, - [3193] = {.lex_state = 34, .external_lex_state = 2}, - [3194] = {.lex_state = 1642}, - [3195] = {.lex_state = 1648}, - [3196] = {.lex_state = 1648}, - [3197] = {.lex_state = 1648}, - [3198] = {.lex_state = 34, .external_lex_state = 2}, - [3199] = {.lex_state = 1648}, - [3200] = {.lex_state = 1646}, - [3201] = {.lex_state = 1648}, - [3202] = {.lex_state = 1648}, - [3203] = {.lex_state = 1646}, - [3204] = {.lex_state = 1652}, - [3205] = {.lex_state = 69}, - [3206] = {.lex_state = 1648}, - [3207] = {.lex_state = 1648}, - [3208] = {.lex_state = 1648}, - [3209] = {.lex_state = 69}, - [3210] = {.lex_state = 69}, - [3211] = {.lex_state = 1648}, - [3212] = {.lex_state = 1648}, - [3213] = {.lex_state = 1648}, - [3214] = {.lex_state = 69}, - [3215] = {.lex_state = 69}, - [3216] = {.lex_state = 69}, - [3217] = {.lex_state = 1650}, - [3218] = {.lex_state = 1664}, - [3219] = {.lex_state = 69}, - [3220] = {.lex_state = 69}, - [3221] = {.lex_state = 69}, - [3222] = {.lex_state = 69}, - [3223] = {.lex_state = 69}, - [3224] = {.lex_state = 69}, - [3225] = {.lex_state = 69}, - [3226] = {.lex_state = 69}, - [3227] = {.lex_state = 1664}, - [3228] = {.lex_state = 69}, - [3229] = {.lex_state = 69}, - [3230] = {.lex_state = 1664}, - [3231] = {.lex_state = 1652}, - [3232] = {.lex_state = 1650}, - [3233] = {.lex_state = 1654}, - [3234] = {.lex_state = 1654}, - [3235] = {.lex_state = 1658}, - [3236] = {.lex_state = 1656}, - [3237] = {.lex_state = 1656}, - [3238] = {.lex_state = 1656}, - [3239] = {.lex_state = 1656}, - [3240] = {.lex_state = 1656}, - [3241] = {.lex_state = 1656}, - [3242] = {.lex_state = 1654}, - [3243] = {.lex_state = 1654}, - [3244] = {.lex_state = 1664}, - [3245] = {.lex_state = 1664}, - [3246] = {.lex_state = 1656}, - [3247] = {.lex_state = 1656}, - [3248] = {.lex_state = 69}, - [3249] = {.lex_state = 1656}, - [3250] = {.lex_state = 1658}, - [3251] = {.lex_state = 1658}, - [3252] = {.lex_state = 1658}, - [3253] = {.lex_state = 1658}, - [3254] = {.lex_state = 1656}, - [3255] = {.lex_state = 69}, - [3256] = {.lex_state = 1658}, - [3257] = {.lex_state = 1656}, - [3258] = {.lex_state = 1658}, - [3259] = {.lex_state = 1658}, - [3260] = {.lex_state = 1656}, - [3261] = {.lex_state = 1658}, - [3262] = {.lex_state = 1656}, - [3263] = {.lex_state = 1656}, - [3264] = {.lex_state = 1656}, - [3265] = {.lex_state = 1656}, - [3266] = {.lex_state = 1656}, - [3267] = {.lex_state = 1656}, - [3268] = {.lex_state = 1658}, - [3269] = {.lex_state = 1656}, - [3270] = {.lex_state = 1664}, - [3271] = {.lex_state = 1664}, - [3272] = {.lex_state = 69}, - [3273] = {.lex_state = 69}, - [3274] = {.lex_state = 1656}, - [3275] = {.lex_state = 69}, - [3276] = {.lex_state = 69}, - [3277] = {.lex_state = 69}, - [3278] = {.lex_state = 69}, - [3279] = {.lex_state = 1664}, - [3280] = {.lex_state = 1664}, - [3281] = {.lex_state = 1664}, - [3282] = {.lex_state = 1664}, - [3283] = {.lex_state = 1664}, - [3284] = {.lex_state = 1664}, - [3285] = {.lex_state = 1664}, - [3286] = {.lex_state = 1664}, - [3287] = {.lex_state = 1664}, - [3288] = {.lex_state = 1664}, - [3289] = {.lex_state = 1664}, - [3290] = {.lex_state = 1664}, - [3291] = {.lex_state = 1664}, - [3292] = {.lex_state = 69}, - [3293] = {.lex_state = 1664}, - [3294] = {.lex_state = 1664}, - [3295] = {.lex_state = 1664}, - [3296] = {.lex_state = 1664}, - [3297] = {.lex_state = 1664}, - [3298] = {.lex_state = 1664}, - [3299] = {.lex_state = 1664}, - [3300] = {.lex_state = 1664}, - [3301] = {.lex_state = 1664}, - [3302] = {.lex_state = 1664}, - [3303] = {.lex_state = 1664}, - [3304] = {.lex_state = 1664}, - [3305] = {.lex_state = 1664}, - [3306] = {.lex_state = 1664}, - [3307] = {.lex_state = 1664}, - [3308] = {.lex_state = 1664}, - [3309] = {.lex_state = 1664}, - [3310] = {.lex_state = 1664}, - [3311] = {.lex_state = 1664}, - [3312] = {.lex_state = 1664}, - [3313] = {.lex_state = 1664}, - [3314] = {.lex_state = 1664}, - [3315] = {.lex_state = 1664}, - [3316] = {.lex_state = 1664}, - [3317] = {.lex_state = 1664}, - [3318] = {.lex_state = 1664}, - [3319] = {.lex_state = 1664}, - [3320] = {.lex_state = 1664}, - [3321] = {.lex_state = 1664}, - [3322] = {.lex_state = 1664}, - [3323] = {.lex_state = 1664}, - [3324] = {.lex_state = 1664}, - [3325] = {.lex_state = 1664}, - [3326] = {.lex_state = 1664}, - [3327] = {.lex_state = 1664}, - [3328] = {.lex_state = 1664}, - [3329] = {.lex_state = 69}, - [3330] = {.lex_state = 1664}, - [3331] = {.lex_state = 1664}, - [3332] = {.lex_state = 1664}, - [3333] = {.lex_state = 1664}, - [3334] = {.lex_state = 1664}, - [3335] = {.lex_state = 1664}, - [3336] = {.lex_state = 1664}, - [3337] = {.lex_state = 1664}, - [3338] = {.lex_state = 1664}, - [3339] = {.lex_state = 1664}, - [3340] = {.lex_state = 1664}, - [3341] = {.lex_state = 1664}, - [3342] = {.lex_state = 1664}, - [3343] = {.lex_state = 1664}, - [3344] = {.lex_state = 1664}, - [3345] = {.lex_state = 1664}, - [3346] = {.lex_state = 1664}, - [3347] = {.lex_state = 1664}, - [3348] = {.lex_state = 1664}, - [3349] = {.lex_state = 1664}, - [3350] = {.lex_state = 1664}, - [3351] = {.lex_state = 1664}, - [3352] = {.lex_state = 1664}, - [3353] = {.lex_state = 1664}, - [3354] = {.lex_state = 1664}, - [3355] = {.lex_state = 1664}, - [3356] = {.lex_state = 1664}, - [3357] = {.lex_state = 1664}, - [3358] = {.lex_state = 1664}, - [3359] = {.lex_state = 1664}, - [3360] = {.lex_state = 1664}, - [3361] = {.lex_state = 1664}, - [3362] = {.lex_state = 1664}, - [3363] = {.lex_state = 1664}, - [3364] = {.lex_state = 1664}, - [3365] = {.lex_state = 69}, - [3366] = {.lex_state = 1664}, - [3367] = {.lex_state = 1664}, - [3368] = {.lex_state = 1664}, - [3369] = {.lex_state = 1664}, - [3370] = {.lex_state = 1664}, - [3371] = {.lex_state = 1664}, - [3372] = {.lex_state = 1664}, - [3373] = {.lex_state = 1664}, - [3374] = {.lex_state = 1664}, - [3375] = {.lex_state = 1664}, - [3376] = {.lex_state = 1664}, - [3377] = {.lex_state = 1664}, - [3378] = {.lex_state = 69}, - [3379] = {.lex_state = 6}, - [3380] = {.lex_state = 1664}, - [3381] = {.lex_state = 1664}, - [3382] = {.lex_state = 1664}, - [3383] = {.lex_state = 1664}, - [3384] = {.lex_state = 1664}, - [3385] = {.lex_state = 1664}, - [3386] = {.lex_state = 1664}, - [3387] = {.lex_state = 1664}, - [3388] = {.lex_state = 1664}, - [3389] = {.lex_state = 1664}, - [3390] = {.lex_state = 1664}, - [3391] = {.lex_state = 1664}, - [3392] = {.lex_state = 1664}, - [3393] = {.lex_state = 1664}, - [3394] = {.lex_state = 7}, - [3395] = {.lex_state = 1664}, - [3396] = {.lex_state = 1664}, - [3397] = {.lex_state = 69}, - [3398] = {.lex_state = 69}, - [3399] = {.lex_state = 69}, - [3400] = {.lex_state = 69}, - [3401] = {.lex_state = 1664}, - [3402] = {.lex_state = 1664}, - [3403] = {.lex_state = 82}, - [3404] = {.lex_state = 69}, - [3405] = {.lex_state = 7}, - [3406] = {.lex_state = 1664}, - [3407] = {.lex_state = 1664}, - [3408] = {.lex_state = 69}, - [3409] = {.lex_state = 69}, - [3410] = {.lex_state = 69}, - [3411] = {.lex_state = 1664}, - [3412] = {.lex_state = 1664}, - [3413] = {.lex_state = 69}, - [3414] = {.lex_state = 69}, - [3415] = {.lex_state = 1664}, - [3416] = {.lex_state = 1664}, - [3417] = {.lex_state = 1664}, - [3418] = {.lex_state = 1664}, - [3419] = {.lex_state = 69}, - [3420] = {.lex_state = 83}, - [3421] = {.lex_state = 8}, - [3422] = {.lex_state = 83}, - [3423] = {.lex_state = 222}, - [3424] = {.lex_state = 222}, - [3425] = {.lex_state = 82}, - [3426] = {.lex_state = 10}, - [3427] = {.lex_state = 82}, - [3428] = {.lex_state = 69}, - [3429] = {.lex_state = 320}, - [3430] = {.lex_state = 12}, - [3431] = {.lex_state = 69}, - [3432] = {.lex_state = 82}, - [3433] = {.lex_state = 69}, - [3434] = {.lex_state = 69}, - [3435] = {.lex_state = 69}, - [3436] = {.lex_state = 82}, - [3437] = {.lex_state = 69}, - [3438] = {.lex_state = 69}, - [3439] = {.lex_state = 11}, - [3440] = {.lex_state = 11}, - [3441] = {.lex_state = 84}, - [3442] = {.lex_state = 86}, - [3443] = {.lex_state = 69}, - [3444] = {.lex_state = 223}, - [3445] = {.lex_state = 69}, - [3446] = {.lex_state = 69}, - [3447] = {.lex_state = 69}, - [3448] = {.lex_state = 69}, - [3449] = {.lex_state = 223}, - [3450] = {.lex_state = 82}, - [3451] = {.lex_state = 82}, - [3452] = {.lex_state = 82}, - [3453] = {.lex_state = 82}, - [3454] = {.lex_state = 69}, - [3455] = {.lex_state = 69}, - [3456] = {.lex_state = 69}, - [3457] = {.lex_state = 69}, - [3458] = {.lex_state = 69}, - [3459] = {.lex_state = 69}, - [3460] = {.lex_state = 69}, - [3461] = {.lex_state = 69}, - [3462] = {.lex_state = 69}, - [3463] = {.lex_state = 69}, - [3464] = {.lex_state = 69}, - [3465] = {.lex_state = 69}, - [3466] = {.lex_state = 69}, - [3467] = {.lex_state = 69}, - [3468] = {.lex_state = 69}, - [3469] = {.lex_state = 69}, - [3470] = {.lex_state = 320}, - [3471] = {.lex_state = 12}, - [3472] = {.lex_state = 320}, - [3473] = {.lex_state = 12}, + [3184] = {.lex_state = 1647}, + [3185] = {.lex_state = 1649}, + [3186] = {.lex_state = 1649}, + [3187] = {.lex_state = 1649}, + [3188] = {.lex_state = 1649}, + [3189] = {.lex_state = 1649}, + [3190] = {.lex_state = 1649}, + [3191] = {.lex_state = 68}, + [3192] = {.lex_state = 68}, + [3193] = {.lex_state = 1649}, + [3194] = {.lex_state = 1649}, + [3195] = {.lex_state = 68}, + [3196] = {.lex_state = 68}, + [3197] = {.lex_state = 68}, + [3198] = {.lex_state = 68}, + [3199] = {.lex_state = 1649}, + [3200] = {.lex_state = 68}, + [3201] = {.lex_state = 68}, + [3202] = {.lex_state = 68}, + [3203] = {.lex_state = 68}, + [3204] = {.lex_state = 68}, + [3205] = {.lex_state = 68}, + [3206] = {.lex_state = 1653}, + [3207] = {.lex_state = 1665}, + [3208] = {.lex_state = 68}, + [3209] = {.lex_state = 1649}, + [3210] = {.lex_state = 1651}, + [3211] = {.lex_state = 68}, + [3212] = {.lex_state = 68}, + [3213] = {.lex_state = 1649}, + [3214] = {.lex_state = 1665}, + [3215] = {.lex_state = 1649}, + [3216] = {.lex_state = 68}, + [3217] = {.lex_state = 1655}, + [3218] = {.lex_state = 1665}, + [3219] = {.lex_state = 1655}, + [3220] = {.lex_state = 1651}, + [3221] = {.lex_state = 1653}, + [3222] = {.lex_state = 1655}, + [3223] = {.lex_state = 68}, + [3224] = {.lex_state = 1657}, + [3225] = {.lex_state = 1659}, + [3226] = {.lex_state = 1657}, + [3227] = {.lex_state = 1657}, + [3228] = {.lex_state = 1657}, + [3229] = {.lex_state = 1659}, + [3230] = {.lex_state = 1655}, + [3231] = {.lex_state = 1659}, + [3232] = {.lex_state = 1657}, + [3233] = {.lex_state = 1657}, + [3234] = {.lex_state = 1657}, + [3235] = {.lex_state = 1665}, + [3236] = {.lex_state = 1657}, + [3237] = {.lex_state = 1665}, + [3238] = {.lex_state = 1659}, + [3239] = {.lex_state = 1659}, + [3240] = {.lex_state = 1657}, + [3241] = {.lex_state = 1659}, + [3242] = {.lex_state = 1657}, + [3243] = {.lex_state = 1657}, + [3244] = {.lex_state = 1657}, + [3245] = {.lex_state = 1657}, + [3246] = {.lex_state = 1657}, + [3247] = {.lex_state = 1657}, + [3248] = {.lex_state = 1659}, + [3249] = {.lex_state = 1657}, + [3250] = {.lex_state = 1657}, + [3251] = {.lex_state = 1659}, + [3252] = {.lex_state = 1657}, + [3253] = {.lex_state = 1657}, + [3254] = {.lex_state = 1659}, + [3255] = {.lex_state = 1659}, + [3256] = {.lex_state = 68}, + [3257] = {.lex_state = 1665}, + [3258] = {.lex_state = 68}, + [3259] = {.lex_state = 68}, + [3260] = {.lex_state = 68}, + [3261] = {.lex_state = 68}, + [3262] = {.lex_state = 1657}, + [3263] = {.lex_state = 68}, + [3264] = {.lex_state = 68}, + [3265] = {.lex_state = 6}, + [3266] = {.lex_state = 68}, + [3267] = {.lex_state = 1665}, + [3268] = {.lex_state = 1665}, + [3269] = {.lex_state = 1665}, + [3270] = {.lex_state = 1665}, + [3271] = {.lex_state = 1665}, + [3272] = {.lex_state = 1665}, + [3273] = {.lex_state = 1665}, + [3274] = {.lex_state = 1665}, + [3275] = {.lex_state = 1665}, + [3276] = {.lex_state = 1665}, + [3277] = {.lex_state = 1665}, + [3278] = {.lex_state = 1665}, + [3279] = {.lex_state = 68}, + [3280] = {.lex_state = 1665}, + [3281] = {.lex_state = 1665}, + [3282] = {.lex_state = 1665}, + [3283] = {.lex_state = 1665}, + [3284] = {.lex_state = 1665}, + [3285] = {.lex_state = 1665}, + [3286] = {.lex_state = 1665}, + [3287] = {.lex_state = 1665}, + [3288] = {.lex_state = 1665}, + [3289] = {.lex_state = 1665}, + [3290] = {.lex_state = 1665}, + [3291] = {.lex_state = 1665}, + [3292] = {.lex_state = 1665}, + [3293] = {.lex_state = 1665}, + [3294] = {.lex_state = 1665}, + [3295] = {.lex_state = 1665}, + [3296] = {.lex_state = 1665}, + [3297] = {.lex_state = 1665}, + [3298] = {.lex_state = 1665}, + [3299] = {.lex_state = 1665}, + [3300] = {.lex_state = 1665}, + [3301] = {.lex_state = 1665}, + [3302] = {.lex_state = 1665}, + [3303] = {.lex_state = 1665}, + [3304] = {.lex_state = 1665}, + [3305] = {.lex_state = 1665}, + [3306] = {.lex_state = 1665}, + [3307] = {.lex_state = 1665}, + [3308] = {.lex_state = 1665}, + [3309] = {.lex_state = 1665}, + [3310] = {.lex_state = 1665}, + [3311] = {.lex_state = 1665}, + [3312] = {.lex_state = 1665}, + [3313] = {.lex_state = 1665}, + [3314] = {.lex_state = 1665}, + [3315] = {.lex_state = 1665}, + [3316] = {.lex_state = 1665}, + [3317] = {.lex_state = 1665}, + [3318] = {.lex_state = 1665}, + [3319] = {.lex_state = 1665}, + [3320] = {.lex_state = 1665}, + [3321] = {.lex_state = 1665}, + [3322] = {.lex_state = 1665}, + [3323] = {.lex_state = 1665}, + [3324] = {.lex_state = 1665}, + [3325] = {.lex_state = 1665}, + [3326] = {.lex_state = 1665}, + [3327] = {.lex_state = 1665}, + [3328] = {.lex_state = 1665}, + [3329] = {.lex_state = 1665}, + [3330] = {.lex_state = 1665}, + [3331] = {.lex_state = 1665}, + [3332] = {.lex_state = 1665}, + [3333] = {.lex_state = 1665}, + [3334] = {.lex_state = 1665}, + [3335] = {.lex_state = 1665}, + [3336] = {.lex_state = 1665}, + [3337] = {.lex_state = 1665}, + [3338] = {.lex_state = 1665}, + [3339] = {.lex_state = 1665}, + [3340] = {.lex_state = 1665}, + [3341] = {.lex_state = 1665}, + [3342] = {.lex_state = 1665}, + [3343] = {.lex_state = 1665}, + [3344] = {.lex_state = 1665}, + [3345] = {.lex_state = 1665}, + [3346] = {.lex_state = 1665}, + [3347] = {.lex_state = 1665}, + [3348] = {.lex_state = 1665}, + [3349] = {.lex_state = 1665}, + [3350] = {.lex_state = 1665}, + [3351] = {.lex_state = 1665}, + [3352] = {.lex_state = 1665}, + [3353] = {.lex_state = 1665}, + [3354] = {.lex_state = 1665}, + [3355] = {.lex_state = 1665}, + [3356] = {.lex_state = 1665}, + [3357] = {.lex_state = 1665}, + [3358] = {.lex_state = 1665}, + [3359] = {.lex_state = 1665}, + [3360] = {.lex_state = 1665}, + [3361] = {.lex_state = 1665}, + [3362] = {.lex_state = 1665}, + [3363] = {.lex_state = 1665}, + [3364] = {.lex_state = 1665}, + [3365] = {.lex_state = 1665}, + [3366] = {.lex_state = 1665}, + [3367] = {.lex_state = 1665}, + [3368] = {.lex_state = 1665}, + [3369] = {.lex_state = 1665}, + [3370] = {.lex_state = 1665}, + [3371] = {.lex_state = 1665}, + [3372] = {.lex_state = 1665}, + [3373] = {.lex_state = 1665}, + [3374] = {.lex_state = 1665}, + [3375] = {.lex_state = 68}, + [3376] = {.lex_state = 68}, + [3377] = {.lex_state = 1665}, + [3378] = {.lex_state = 68}, + [3379] = {.lex_state = 1665}, + [3380] = {.lex_state = 1665}, + [3381] = {.lex_state = 68}, + [3382] = {.lex_state = 68}, + [3383] = {.lex_state = 7}, + [3384] = {.lex_state = 68}, + [3385] = {.lex_state = 68}, + [3386] = {.lex_state = 1665}, + [3387] = {.lex_state = 1665}, + [3388] = {.lex_state = 68}, + [3389] = {.lex_state = 68}, + [3390] = {.lex_state = 68}, + [3391] = {.lex_state = 7}, + [3392] = {.lex_state = 68}, + [3393] = {.lex_state = 1665}, + [3394] = {.lex_state = 1665}, + [3395] = {.lex_state = 1665}, + [3396] = {.lex_state = 1665}, + [3397] = {.lex_state = 81}, + [3398] = {.lex_state = 1665}, + [3399] = {.lex_state = 1665}, + [3400] = {.lex_state = 1665}, + [3401] = {.lex_state = 1665}, + [3402] = {.lex_state = 1665}, + [3403] = {.lex_state = 68}, + [3404] = {.lex_state = 1665}, + [3405] = {.lex_state = 1665}, + [3406] = {.lex_state = 68}, + [3407] = {.lex_state = 223}, + [3408] = {.lex_state = 8}, + [3409] = {.lex_state = 10}, + [3410] = {.lex_state = 81}, + [3411] = {.lex_state = 81}, + [3412] = {.lex_state = 82}, + [3413] = {.lex_state = 223}, + [3414] = {.lex_state = 82}, + [3415] = {.lex_state = 68}, + [3416] = {.lex_state = 81}, + [3417] = {.lex_state = 81}, + [3418] = {.lex_state = 68}, + [3419] = {.lex_state = 224}, + [3420] = {.lex_state = 68}, + [3421] = {.lex_state = 68}, + [3422] = {.lex_state = 11}, + [3423] = {.lex_state = 11}, + [3424] = {.lex_state = 83}, + [3425] = {.lex_state = 85}, + [3426] = {.lex_state = 68}, + [3427] = {.lex_state = 68}, + [3428] = {.lex_state = 68}, + [3429] = {.lex_state = 68}, + [3430] = {.lex_state = 224}, + [3431] = {.lex_state = 68}, + [3432] = {.lex_state = 12}, + [3433] = {.lex_state = 68}, + [3434] = {.lex_state = 68}, + [3435] = {.lex_state = 81}, + [3436] = {.lex_state = 81}, + [3437] = {.lex_state = 81}, + [3438] = {.lex_state = 81}, + [3439] = {.lex_state = 321}, + [3440] = {.lex_state = 68}, + [3441] = {.lex_state = 68}, + [3442] = {.lex_state = 68}, + [3443] = {.lex_state = 68}, + [3444] = {.lex_state = 68}, + [3445] = {.lex_state = 68}, + [3446] = {.lex_state = 68}, + [3447] = {.lex_state = 68}, + [3448] = {.lex_state = 68}, + [3449] = {.lex_state = 68}, + [3450] = {.lex_state = 68}, + [3451] = {.lex_state = 68}, + [3452] = {.lex_state = 68}, + [3453] = {.lex_state = 68}, + [3454] = {.lex_state = 68}, + [3455] = {.lex_state = 68}, + [3456] = {.lex_state = 68}, + [3457] = {.lex_state = 13}, + [3458] = {.lex_state = 12}, + [3459] = {.lex_state = 9}, + [3460] = {.lex_state = 12}, + [3461] = {.lex_state = 12}, + [3462] = {.lex_state = 87}, + [3463] = {.lex_state = 321}, + [3464] = {.lex_state = 86}, + [3465] = {.lex_state = 321}, + [3466] = {.lex_state = 86}, + [3467] = {.lex_state = 321}, + [3468] = {.lex_state = 321}, + [3469] = {.lex_state = 321}, + [3470] = {.lex_state = 12}, + [3471] = {.lex_state = 83}, + [3472] = {.lex_state = 68}, + [3473] = {.lex_state = 14}, [3474] = {.lex_state = 88}, [3475] = {.lex_state = 87}, - [3476] = {.lex_state = 13}, - [3477] = {.lex_state = 320}, - [3478] = {.lex_state = 12}, + [3476] = {.lex_state = 321}, + [3477] = {.lex_state = 87}, + [3478] = {.lex_state = 14}, [3479] = {.lex_state = 87}, - [3480] = {.lex_state = 9}, - [3481] = {.lex_state = 320}, - [3482] = {.lex_state = 320}, - [3483] = {.lex_state = 12}, - [3484] = {.lex_state = 14}, - [3485] = {.lex_state = 88}, - [3486] = {.lex_state = 69}, - [3487] = {.lex_state = 88}, - [3488] = {.lex_state = 88}, - [3489] = {.lex_state = 320}, - [3490] = {.lex_state = 88}, - [3491] = {.lex_state = 84}, - [3492] = {.lex_state = 14}, - [3493] = {.lex_state = 89}, - [3494] = {.lex_state = 85}, - [3495] = {.lex_state = 15}, - [3496] = {.lex_state = 15}, - [3497] = {.lex_state = 15}, + [3480] = {.lex_state = 87}, + [3481] = {.lex_state = 84}, + [3482] = {.lex_state = 89}, + [3483] = {.lex_state = 89}, + [3484] = {.lex_state = 15}, + [3485] = {.lex_state = 15}, + [3486] = {.lex_state = 15}, + [3487] = {.lex_state = 15}, + [3488] = {.lex_state = 15}, + [3489] = {.lex_state = 15}, + [3490] = {.lex_state = 68}, + [3491] = {.lex_state = 90}, + [3492] = {.lex_state = 90}, + [3493] = {.lex_state = 16}, + [3494] = {.lex_state = 90}, + [3495] = {.lex_state = 3146}, + [3496] = {.lex_state = 17}, + [3497] = {.lex_state = 1665}, [3498] = {.lex_state = 90}, - [3499] = {.lex_state = 15}, + [3499] = {.lex_state = 90}, [3500] = {.lex_state = 90}, - [3501] = {.lex_state = 69}, - [3502] = {.lex_state = 15}, - [3503] = {.lex_state = 15}, - [3504] = {.lex_state = 17}, - [3505] = {.lex_state = 91}, - [3506] = {.lex_state = 3145}, - [3507] = {.lex_state = 91}, + [3501] = {.lex_state = 3144}, + [3502] = {.lex_state = 3149}, + [3503] = {.lex_state = 3147}, + [3504] = {.lex_state = 18}, + [3505] = {.lex_state = 3145}, + [3506] = {.lex_state = 18}, + [3507] = {.lex_state = 3147}, [3508] = {.lex_state = 91}, - [3509] = {.lex_state = 1664}, - [3510] = {.lex_state = 91}, - [3511] = {.lex_state = 91}, - [3512] = {.lex_state = 3143}, - [3513] = {.lex_state = 91}, - [3514] = {.lex_state = 16}, - [3515] = {.lex_state = 92}, - [3516] = {.lex_state = 3146}, - [3517] = {.lex_state = 3144}, - [3518] = {.lex_state = 18}, - [3519] = {.lex_state = 3146}, + [3509] = {.lex_state = 92}, + [3510] = {.lex_state = 20}, + [3511] = {.lex_state = 3148}, + [3512] = {.lex_state = 19}, + [3513] = {.lex_state = 19}, + [3514] = {.lex_state = 19}, + [3515] = {.lex_state = 63}, + [3516] = {.lex_state = 19}, + [3517] = {.lex_state = 19}, + [3518] = {.lex_state = 19}, + [3519] = {.lex_state = 20}, [3520] = {.lex_state = 3148}, - [3521] = {.lex_state = 93}, - [3522] = {.lex_state = 18}, - [3523] = {.lex_state = 3147}, - [3524] = {.lex_state = 20}, - [3525] = {.lex_state = 64}, - [3526] = {.lex_state = 3147}, - [3527] = {.lex_state = 19}, - [3528] = {.lex_state = 19}, - [3529] = {.lex_state = 94}, - [3530] = {.lex_state = 3147}, - [3531] = {.lex_state = 94}, - [3532] = {.lex_state = 20}, + [3521] = {.lex_state = 19}, + [3522] = {.lex_state = 20}, + [3523] = {.lex_state = 20}, + [3524] = {.lex_state = 3148}, + [3525] = {.lex_state = 93}, + [3526] = {.lex_state = 19}, + [3527] = {.lex_state = 1665}, + [3528] = {.lex_state = 1665}, + [3529] = {.lex_state = 1665}, + [3530] = {.lex_state = 1665}, + [3531] = {.lex_state = 3150}, + [3532] = {.lex_state = 93}, [3533] = {.lex_state = 19}, [3534] = {.lex_state = 20}, - [3535] = {.lex_state = 3149}, - [3536] = {.lex_state = 19}, - [3537] = {.lex_state = 1664}, - [3538] = {.lex_state = 1664}, - [3539] = {.lex_state = 20}, - [3540] = {.lex_state = 1664}, - [3541] = {.lex_state = 1664}, - [3542] = {.lex_state = 20}, - [3543] = {.lex_state = 3147}, - [3544] = {.lex_state = 19}, - [3545] = {.lex_state = 19}, - [3546] = {.lex_state = 3147}, - [3547] = {.lex_state = 3149}, - [3548] = {.lex_state = 19}, - [3549] = {.lex_state = 64}, - [3550] = {.lex_state = 1664}, - [3551] = {.lex_state = 1664}, - [3552] = {.lex_state = 1664}, - [3553] = {.lex_state = 1664}, - [3554] = {.lex_state = 19}, - [3555] = {.lex_state = 19}, - [3556] = {.lex_state = 1664}, - [3557] = {.lex_state = 3150}, - [3558] = {.lex_state = 1664}, - [3559] = {.lex_state = 1664}, - [3560] = {.lex_state = 1664}, - [3561] = {.lex_state = 1664}, - [3562] = {.lex_state = 1664}, - [3563] = {.lex_state = 3150}, - [3564] = {.lex_state = 1664}, - [3565] = {.lex_state = 1664}, - [3566] = {.lex_state = 1664}, - [3567] = {.lex_state = 19}, - [3568] = {.lex_state = 1664}, - [3569] = {.lex_state = 1664}, - [3570] = {.lex_state = 1664}, - [3571] = {.lex_state = 1664}, - [3572] = {.lex_state = 1664}, - [3573] = {.lex_state = 1664}, - [3574] = {.lex_state = 1664}, - [3575] = {.lex_state = 1664}, - [3576] = {.lex_state = 1664}, - [3577] = {.lex_state = 1664}, - [3578] = {.lex_state = 1664}, - [3579] = {.lex_state = 1664}, - [3580] = {.lex_state = 1664}, - [3581] = {.lex_state = 1664}, - [3582] = {.lex_state = 1664}, - [3583] = {.lex_state = 1664}, - [3584] = {.lex_state = 1664}, - [3585] = {.lex_state = 1664}, - [3586] = {.lex_state = 1664}, - [3587] = {.lex_state = 1664}, - [3588] = {.lex_state = 96}, - [3589] = {.lex_state = 96}, - [3590] = {.lex_state = 1660}, - [3591] = {.lex_state = 1664}, - [3592] = {.lex_state = 1664}, - [3593] = {.lex_state = 1664}, - [3594] = {.lex_state = 1664}, - [3595] = {.lex_state = 1664}, - [3596] = {.lex_state = 1664}, - [3597] = {.lex_state = 1664}, - [3598] = {.lex_state = 95}, - [3599] = {.lex_state = 1664}, - [3600] = {.lex_state = 1664}, - [3601] = {.lex_state = 95}, - [3602] = {.lex_state = 1664}, - [3603] = {.lex_state = 95}, - [3604] = {.lex_state = 95}, - [3605] = {.lex_state = 1664}, - [3606] = {.lex_state = 1664}, - [3607] = {.lex_state = 1664}, - [3608] = {.lex_state = 95}, - [3609] = {.lex_state = 1664}, - [3610] = {.lex_state = 3150}, - [3611] = {.lex_state = 1664}, - [3612] = {.lex_state = 1664}, - [3613] = {.lex_state = 1664}, - [3614] = {.lex_state = 1664}, - [3615] = {.lex_state = 1664}, - [3616] = {.lex_state = 95}, - [3617] = {.lex_state = 1664}, - [3618] = {.lex_state = 1664}, - [3619] = {.lex_state = 1664}, - [3620] = {.lex_state = 1664}, - [3621] = {.lex_state = 95}, - [3622] = {.lex_state = 1664}, - [3623] = {.lex_state = 1664}, - [3624] = {.lex_state = 1664}, - [3625] = {.lex_state = 1664}, - [3626] = {.lex_state = 1664}, - [3627] = {.lex_state = 1664}, - [3628] = {.lex_state = 1664}, - [3629] = {.lex_state = 1664}, - [3630] = {.lex_state = 96}, - [3631] = {.lex_state = 1664}, - [3632] = {.lex_state = 1664}, - [3633] = {.lex_state = 1664}, - [3634] = {.lex_state = 1664}, - [3635] = {.lex_state = 1664}, - [3636] = {.lex_state = 1664}, - [3637] = {.lex_state = 3150}, - [3638] = {.lex_state = 1664}, - [3639] = {.lex_state = 1664}, - [3640] = {.lex_state = 3150}, - [3641] = {.lex_state = 1664}, - [3642] = {.lex_state = 1664}, - [3643] = {.lex_state = 1664}, - [3644] = {.lex_state = 3150}, - [3645] = {.lex_state = 3150}, - [3646] = {.lex_state = 1664}, - [3647] = {.lex_state = 1664}, - [3648] = {.lex_state = 1664}, - [3649] = {.lex_state = 3150}, - [3650] = {.lex_state = 1664}, - [3651] = {.lex_state = 1664}, - [3652] = {.lex_state = 1664}, - [3653] = {.lex_state = 1664}, - [3654] = {.lex_state = 1664}, - [3655] = {.lex_state = 1664}, - [3656] = {.lex_state = 1664}, - [3657] = {.lex_state = 1664}, - [3658] = {.lex_state = 1664}, - [3659] = {.lex_state = 1664}, - [3660] = {.lex_state = 3150}, - [3661] = {.lex_state = 95}, - [3662] = {.lex_state = 1664}, - [3663] = {.lex_state = 1664}, - [3664] = {.lex_state = 1664}, - [3665] = {.lex_state = 1664}, - [3666] = {.lex_state = 1664}, - [3667] = {.lex_state = 1664}, - [3668] = {.lex_state = 3150}, - [3669] = {.lex_state = 1664}, - [3670] = {.lex_state = 96}, - [3671] = {.lex_state = 95}, - [3672] = {.lex_state = 96}, - [3673] = {.lex_state = 1664}, - [3674] = {.lex_state = 1664}, - [3675] = {.lex_state = 3150}, - [3676] = {.lex_state = 1664}, - [3677] = {.lex_state = 1664}, - [3678] = {.lex_state = 1664}, - [3679] = {.lex_state = 1664}, - [3680] = {.lex_state = 64}, - [3681] = {.lex_state = 64}, - [3682] = {.lex_state = 1664}, - [3683] = {.lex_state = 64}, - [3684] = {.lex_state = 64}, - [3685] = {.lex_state = 64}, - [3686] = {.lex_state = 64}, - [3687] = {.lex_state = 64}, - [3688] = {.lex_state = 1627}, - [3689] = {.lex_state = 64}, - [3690] = {.lex_state = 64}, - [3691] = {.lex_state = 64}, - [3692] = {.lex_state = 64}, - [3693] = {.lex_state = 64}, - [3694] = {.lex_state = 64}, - [3695] = {.lex_state = 64}, - [3696] = {.lex_state = 64}, - [3697] = {.lex_state = 64}, - [3698] = {.lex_state = 64}, - [3699] = {.lex_state = 64}, - [3700] = {.lex_state = 1664}, - [3701] = {.lex_state = 64}, - [3702] = {.lex_state = 1664}, - [3703] = {.lex_state = 1664}, - [3704] = {.lex_state = 64}, - [3705] = {.lex_state = 95}, - [3706] = {.lex_state = 1664}, - [3707] = {.lex_state = 1664}, - [3708] = {.lex_state = 64}, - [3709] = {.lex_state = 64}, - [3710] = {.lex_state = 64}, - [3711] = {.lex_state = 64}, - [3712] = {.lex_state = 1627}, - [3713] = {.lex_state = 64}, - [3714] = {.lex_state = 64}, - [3715] = {.lex_state = 3151}, - [3716] = {.lex_state = 1664}, - [3717] = {.lex_state = 3151}, - [3718] = {.lex_state = 1664}, - [3719] = {.lex_state = 1664}, - [3720] = {.lex_state = 1664}, - [3721] = {.lex_state = 1664}, - [3722] = {.lex_state = 1664}, - [3723] = {.lex_state = 1664}, - [3724] = {.lex_state = 1664}, - [3725] = {.lex_state = 1664}, - [3726] = {.lex_state = 1664}, - [3727] = {.lex_state = 1664}, - [3728] = {.lex_state = 1664}, - [3729] = {.lex_state = 1664}, - [3730] = {.lex_state = 1664}, - [3731] = {.lex_state = 3151}, - [3732] = {.lex_state = 1664}, - [3733] = {.lex_state = 1627}, - [3734] = {.lex_state = 1664}, - [3735] = {.lex_state = 3151}, - [3736] = {.lex_state = 1627}, - [3737] = {.lex_state = 1627}, - [3738] = {.lex_state = 1627}, - [3739] = {.lex_state = 1664}, - [3740] = {.lex_state = 3151}, - [3741] = {.lex_state = 3151}, - [3742] = {.lex_state = 1664}, - [3743] = {.lex_state = 3151}, - [3744] = {.lex_state = 1664}, - [3745] = {.lex_state = 1664}, - [3746] = {.lex_state = 1664}, - [3747] = {.lex_state = 3151}, - [3748] = {.lex_state = 1664}, - [3749] = {.lex_state = 1664}, - [3750] = {.lex_state = 1664}, - [3751] = {.lex_state = 64}, - [3752] = {.lex_state = 64}, - [3753] = {.lex_state = 64}, - [3754] = {.lex_state = 64}, - [3755] = {.lex_state = 1664}, - [3756] = {.lex_state = 1664}, - [3757] = {.lex_state = 64}, - [3758] = {.lex_state = 1664}, - [3759] = {.lex_state = 64}, - [3760] = {.lex_state = 64}, - [3761] = {.lex_state = 64}, - [3762] = {.lex_state = 64}, - [3763] = {.lex_state = 64}, - [3764] = {.lex_state = 1665}, - [3765] = {.lex_state = 1664}, - [3766] = {.lex_state = 64}, - [3767] = {.lex_state = 64}, - [3768] = {.lex_state = 1664}, - [3769] = {.lex_state = 1664}, - [3770] = {.lex_state = 1729}, - [3771] = {.lex_state = 1665}, - [3772] = {.lex_state = 1726}, - [3773] = {.lex_state = 1629}, - [3774] = {.lex_state = 1727}, - [3775] = {.lex_state = 1727}, - [3776] = {.lex_state = 1726}, - [3777] = {.lex_state = 1629}, - [3778] = {.lex_state = 1629}, - [3779] = {.lex_state = 1629}, - [3780] = {.lex_state = 1725}, - [3781] = {.lex_state = 1739}, - [3782] = {.lex_state = 1735}, - [3783] = {.lex_state = 1727}, - [3784] = {.lex_state = 1727}, - [3785] = {.lex_state = 1629}, - [3786] = {.lex_state = 1629}, - [3787] = {.lex_state = 1728}, - [3788] = {.lex_state = 1725}, - [3789] = {.lex_state = 1728}, - [3790] = {.lex_state = 1739}, - [3791] = {.lex_state = 1629}, - [3792] = {.lex_state = 1735}, - [3793] = {.lex_state = 1741}, - [3794] = {.lex_state = 1741}, - [3795] = {.lex_state = 1629}, - [3796] = {.lex_state = 1629}, - [3797] = {.lex_state = 1629}, - [3798] = {.lex_state = 1665}, - [3799] = {.lex_state = 1743}, - [3800] = {.lex_state = 1725}, - [3801] = {.lex_state = 1743}, - [3802] = {.lex_state = 1736}, - [3803] = {.lex_state = 1665}, - [3804] = {.lex_state = 1725}, - [3805] = {.lex_state = 1725}, - [3806] = {.lex_state = 1725}, - [3807] = {.lex_state = 1741}, - [3808] = {.lex_state = 1743}, - [3809] = {.lex_state = 1725}, - [3810] = {.lex_state = 1745}, - [3811] = {.lex_state = 1740}, - [3812] = {.lex_state = 1728}, + [3535] = {.lex_state = 3148}, + [3536] = {.lex_state = 3150}, + [3537] = {.lex_state = 63}, + [3538] = {.lex_state = 1665}, + [3539] = {.lex_state = 1665}, + [3540] = {.lex_state = 1665}, + [3541] = {.lex_state = 1665}, + [3542] = {.lex_state = 3148}, + [3543] = {.lex_state = 1665}, + [3544] = {.lex_state = 95}, + [3545] = {.lex_state = 94}, + [3546] = {.lex_state = 1665}, + [3547] = {.lex_state = 1665}, + [3548] = {.lex_state = 94}, + [3549] = {.lex_state = 1665}, + [3550] = {.lex_state = 94}, + [3551] = {.lex_state = 94}, + [3552] = {.lex_state = 1665}, + [3553] = {.lex_state = 3151}, + [3554] = {.lex_state = 3151}, + [3555] = {.lex_state = 94}, + [3556] = {.lex_state = 1665}, + [3557] = {.lex_state = 95}, + [3558] = {.lex_state = 3151}, + [3559] = {.lex_state = 19}, + [3560] = {.lex_state = 94}, + [3561] = {.lex_state = 3151}, + [3562] = {.lex_state = 1665}, + [3563] = {.lex_state = 1665}, + [3564] = {.lex_state = 3151}, + [3565] = {.lex_state = 95}, + [3566] = {.lex_state = 95}, + [3567] = {.lex_state = 1665}, + [3568] = {.lex_state = 1665}, + [3569] = {.lex_state = 1665}, + [3570] = {.lex_state = 1665}, + [3571] = {.lex_state = 1665}, + [3572] = {.lex_state = 1665}, + [3573] = {.lex_state = 95}, + [3574] = {.lex_state = 1665}, + [3575] = {.lex_state = 1665}, + [3576] = {.lex_state = 1665}, + [3577] = {.lex_state = 1665}, + [3578] = {.lex_state = 1665}, + [3579] = {.lex_state = 1665}, + [3580] = {.lex_state = 1665}, + [3581] = {.lex_state = 1665}, + [3582] = {.lex_state = 1665}, + [3583] = {.lex_state = 1665}, + [3584] = {.lex_state = 1665}, + [3585] = {.lex_state = 1665}, + [3586] = {.lex_state = 1665}, + [3587] = {.lex_state = 1665}, + [3588] = {.lex_state = 1665}, + [3589] = {.lex_state = 1665}, + [3590] = {.lex_state = 1665}, + [3591] = {.lex_state = 1665}, + [3592] = {.lex_state = 1665}, + [3593] = {.lex_state = 1665}, + [3594] = {.lex_state = 1665}, + [3595] = {.lex_state = 1665}, + [3596] = {.lex_state = 1665}, + [3597] = {.lex_state = 1665}, + [3598] = {.lex_state = 1665}, + [3599] = {.lex_state = 1665}, + [3600] = {.lex_state = 1665}, + [3601] = {.lex_state = 1665}, + [3602] = {.lex_state = 1665}, + [3603] = {.lex_state = 1665}, + [3604] = {.lex_state = 1665}, + [3605] = {.lex_state = 1665}, + [3606] = {.lex_state = 1665}, + [3607] = {.lex_state = 1665}, + [3608] = {.lex_state = 1665}, + [3609] = {.lex_state = 3151}, + [3610] = {.lex_state = 1665}, + [3611] = {.lex_state = 3151}, + [3612] = {.lex_state = 1665}, + [3613] = {.lex_state = 1665}, + [3614] = {.lex_state = 1665}, + [3615] = {.lex_state = 3151}, + [3616] = {.lex_state = 1665}, + [3617] = {.lex_state = 1665}, + [3618] = {.lex_state = 3151}, + [3619] = {.lex_state = 1665}, + [3620] = {.lex_state = 1665}, + [3621] = {.lex_state = 3151}, + [3622] = {.lex_state = 1665}, + [3623] = {.lex_state = 1665}, + [3624] = {.lex_state = 1665}, + [3625] = {.lex_state = 3151}, + [3626] = {.lex_state = 1665}, + [3627] = {.lex_state = 1665}, + [3628] = {.lex_state = 1665}, + [3629] = {.lex_state = 1665}, + [3630] = {.lex_state = 1665}, + [3631] = {.lex_state = 94}, + [3632] = {.lex_state = 1665}, + [3633] = {.lex_state = 1665}, + [3634] = {.lex_state = 94}, + [3635] = {.lex_state = 1665}, + [3636] = {.lex_state = 1665}, + [3637] = {.lex_state = 1665}, + [3638] = {.lex_state = 1665}, + [3639] = {.lex_state = 1665}, + [3640] = {.lex_state = 1665}, + [3641] = {.lex_state = 1665}, + [3642] = {.lex_state = 1665}, + [3643] = {.lex_state = 1665}, + [3644] = {.lex_state = 1665}, + [3645] = {.lex_state = 1665}, + [3646] = {.lex_state = 1665}, + [3647] = {.lex_state = 1665}, + [3648] = {.lex_state = 1665}, + [3649] = {.lex_state = 1665}, + [3650] = {.lex_state = 1661}, + [3651] = {.lex_state = 1665}, + [3652] = {.lex_state = 1665}, + [3653] = {.lex_state = 1665}, + [3654] = {.lex_state = 1665}, + [3655] = {.lex_state = 1665}, + [3656] = {.lex_state = 1665}, + [3657] = {.lex_state = 1665}, + [3658] = {.lex_state = 1665}, + [3659] = {.lex_state = 1665}, + [3660] = {.lex_state = 1665}, + [3661] = {.lex_state = 1665}, + [3662] = {.lex_state = 1665}, + [3663] = {.lex_state = 1665}, + [3664] = {.lex_state = 94}, + [3665] = {.lex_state = 1665}, + [3666] = {.lex_state = 1665}, + [3667] = {.lex_state = 1665}, + [3668] = {.lex_state = 94}, + [3669] = {.lex_state = 63}, + [3670] = {.lex_state = 63}, + [3671] = {.lex_state = 63}, + [3672] = {.lex_state = 63}, + [3673] = {.lex_state = 1665}, + [3674] = {.lex_state = 63}, + [3675] = {.lex_state = 63}, + [3676] = {.lex_state = 63}, + [3677] = {.lex_state = 63}, + [3678] = {.lex_state = 63}, + [3679] = {.lex_state = 63}, + [3680] = {.lex_state = 63}, + [3681] = {.lex_state = 63}, + [3682] = {.lex_state = 63}, + [3683] = {.lex_state = 63}, + [3684] = {.lex_state = 63}, + [3685] = {.lex_state = 1665}, + [3686] = {.lex_state = 63}, + [3687] = {.lex_state = 1628}, + [3688] = {.lex_state = 63}, + [3689] = {.lex_state = 1665}, + [3690] = {.lex_state = 63}, + [3691] = {.lex_state = 63}, + [3692] = {.lex_state = 1665}, + [3693] = {.lex_state = 63}, + [3694] = {.lex_state = 63}, + [3695] = {.lex_state = 63}, + [3696] = {.lex_state = 1665}, + [3697] = {.lex_state = 63}, + [3698] = {.lex_state = 63}, + [3699] = {.lex_state = 63}, + [3700] = {.lex_state = 63}, + [3701] = {.lex_state = 1628}, + [3702] = {.lex_state = 1665}, + [3703] = {.lex_state = 1628}, + [3704] = {.lex_state = 3152}, + [3705] = {.lex_state = 3152}, + [3706] = {.lex_state = 1628}, + [3707] = {.lex_state = 1628}, + [3708] = {.lex_state = 3152}, + [3709] = {.lex_state = 1665}, + [3710] = {.lex_state = 1665}, + [3711] = {.lex_state = 1665}, + [3712] = {.lex_state = 1665}, + [3713] = {.lex_state = 1665}, + [3714] = {.lex_state = 1665}, + [3715] = {.lex_state = 1665}, + [3716] = {.lex_state = 1665}, + [3717] = {.lex_state = 1665}, + [3718] = {.lex_state = 1665}, + [3719] = {.lex_state = 3152}, + [3720] = {.lex_state = 3152}, + [3721] = {.lex_state = 3152}, + [3722] = {.lex_state = 3152}, + [3723] = {.lex_state = 3152}, + [3724] = {.lex_state = 1665}, + [3725] = {.lex_state = 1665}, + [3726] = {.lex_state = 1665}, + [3727] = {.lex_state = 1665}, + [3728] = {.lex_state = 1665}, + [3729] = {.lex_state = 1665}, + [3730] = {.lex_state = 1665}, + [3731] = {.lex_state = 1628}, + [3732] = {.lex_state = 1665}, + [3733] = {.lex_state = 1665}, + [3734] = {.lex_state = 1665}, + [3735] = {.lex_state = 1665}, + [3736] = {.lex_state = 1665}, + [3737] = {.lex_state = 1665}, + [3738] = {.lex_state = 1665}, + [3739] = {.lex_state = 1665}, + [3740] = {.lex_state = 1665}, + [3741] = {.lex_state = 1665}, + [3742] = {.lex_state = 63}, + [3743] = {.lex_state = 1666}, + [3744] = {.lex_state = 63}, + [3745] = {.lex_state = 63}, + [3746] = {.lex_state = 1665}, + [3747] = {.lex_state = 63}, + [3748] = {.lex_state = 63}, + [3749] = {.lex_state = 63}, + [3750] = {.lex_state = 63}, + [3751] = {.lex_state = 63}, + [3752] = {.lex_state = 63}, + [3753] = {.lex_state = 63}, + [3754] = {.lex_state = 1665}, + [3755] = {.lex_state = 63}, + [3756] = {.lex_state = 63}, + [3757] = {.lex_state = 1730}, + [3758] = {.lex_state = 1727}, + [3759] = {.lex_state = 1666}, + [3760] = {.lex_state = 1728}, + [3761] = {.lex_state = 1727}, + [3762] = {.lex_state = 1630}, + [3763] = {.lex_state = 1728}, + [3764] = {.lex_state = 1630}, + [3765] = {.lex_state = 1740}, + [3766] = {.lex_state = 1728}, + [3767] = {.lex_state = 1630}, + [3768] = {.lex_state = 1630}, + [3769] = {.lex_state = 1736}, + [3770] = {.lex_state = 1726}, + [3771] = {.lex_state = 1630}, + [3772] = {.lex_state = 1630}, + [3773] = {.lex_state = 1728}, + [3774] = {.lex_state = 1740}, + [3775] = {.lex_state = 1630}, + [3776] = {.lex_state = 1666}, + [3777] = {.lex_state = 1630}, + [3778] = {.lex_state = 1630}, + [3779] = {.lex_state = 1630}, + [3780] = {.lex_state = 1726}, + [3781] = {.lex_state = 1744}, + [3782] = {.lex_state = 1742}, + [3783] = {.lex_state = 1729}, + [3784] = {.lex_state = 1729}, + [3785] = {.lex_state = 1726}, + [3786] = {.lex_state = 1736}, + [3787] = {.lex_state = 1742}, + [3788] = {.lex_state = 1746}, + [3789] = {.lex_state = 1742}, + [3790] = {.lex_state = 1744}, + [3791] = {.lex_state = 1744}, + [3792] = {.lex_state = 1738}, + [3793] = {.lex_state = 1744}, + [3794] = {.lex_state = 1744}, + [3795] = {.lex_state = 1729}, + [3796] = {.lex_state = 1666}, + [3797] = {.lex_state = 1726}, + [3798] = {.lex_state = 1729}, + [3799] = {.lex_state = 1726}, + [3800] = {.lex_state = 1742}, + [3801] = {.lex_state = 1741}, + [3802] = {.lex_state = 1744}, + [3803] = {.lex_state = 1726}, + [3804] = {.lex_state = 1726}, + [3805] = {.lex_state = 1726}, + [3806] = {.lex_state = 1737}, + [3807] = {.lex_state = 1738}, + [3808] = {.lex_state = 1726}, + [3809] = {.lex_state = 1744}, + [3810] = {.lex_state = 1744}, + [3811] = {.lex_state = 1741}, + [3812] = {.lex_state = 1745}, [3813] = {.lex_state = 1743}, - [3814] = {.lex_state = 1737}, - [3815] = {.lex_state = 1728}, + [3814] = {.lex_state = 63}, + [3815] = {.lex_state = 1744}, [3816] = {.lex_state = 1743}, - [3817] = {.lex_state = 1741}, - [3818] = {.lex_state = 1725}, - [3819] = {.lex_state = 1743}, - [3820] = {.lex_state = 1725}, - [3821] = {.lex_state = 1740}, - [3822] = {.lex_state = 1743}, - [3823] = {.lex_state = 1743}, - [3824] = {.lex_state = 1737}, - [3825] = {.lex_state = 1747}, - [3826] = {.lex_state = 1744}, - [3827] = {.lex_state = 1747}, - [3828] = {.lex_state = 1736}, - [3829] = {.lex_state = 1743}, - [3830] = {.lex_state = 1725}, - [3831] = {.lex_state = 1725}, - [3832] = {.lex_state = 1743}, - [3833] = {.lex_state = 1742}, - [3834] = {.lex_state = 1742}, - [3835] = {.lex_state = 1725}, - [3836] = {.lex_state = 1745}, - [3837] = {.lex_state = 64}, - [3838] = {.lex_state = 49}, - [3839] = {.lex_state = 1744}, - [3840] = {.lex_state = 1744}, - [3841] = {.lex_state = 1747}, - [3842] = {.lex_state = 52}, - [3843] = {.lex_state = 1747}, - [3844] = {.lex_state = 50}, - [3845] = {.lex_state = 1730}, - [3846] = {.lex_state = 48}, - [3847] = {.lex_state = 49}, - [3848] = {.lex_state = 1749}, - [3849] = {.lex_state = 1749}, - [3850] = {.lex_state = 1749}, - [3851] = {.lex_state = 1749}, - [3852] = {.lex_state = 1749}, - [3853] = {.lex_state = 1730}, - [3854] = {.lex_state = 48}, - [3855] = {.lex_state = 1746}, - [3856] = {.lex_state = 1744}, - [3857] = {.lex_state = 1742}, - [3858] = {.lex_state = 1744}, + [3817] = {.lex_state = 1746}, + [3818] = {.lex_state = 1726}, + [3819] = {.lex_state = 1748}, + [3820] = {.lex_state = 1748}, + [3821] = {.lex_state = 1726}, + [3822] = {.lex_state = 48}, + [3823] = {.lex_state = 1744}, + [3824] = {.lex_state = 1726}, + [3825] = {.lex_state = 1737}, + [3826] = {.lex_state = 1750}, + [3827] = {.lex_state = 1750}, + [3828] = {.lex_state = 1745}, + [3829] = {.lex_state = 1745}, + [3830] = {.lex_state = 1750}, + [3831] = {.lex_state = 47}, + [3832] = {.lex_state = 1731}, + [3833] = {.lex_state = 47}, + [3834] = {.lex_state = 1750}, + [3835] = {.lex_state = 1739}, + [3836] = {.lex_state = 1731}, + [3837] = {.lex_state = 1745}, + [3838] = {.lex_state = 1747}, + [3839] = {.lex_state = 1743}, + [3840] = {.lex_state = 1748}, + [3841] = {.lex_state = 1745}, + [3842] = {.lex_state = 51}, + [3843] = {.lex_state = 1745}, + [3844] = {.lex_state = 1748}, + [3845] = {.lex_state = 63}, + [3846] = {.lex_state = 49}, + [3847] = {.lex_state = 1731}, + [3848] = {.lex_state = 1750}, + [3849] = {.lex_state = 48}, + [3850] = {.lex_state = 1750}, + [3851] = {.lex_state = 1743}, + [3852] = {.lex_state = 48}, + [3853] = {.lex_state = 1750}, + [3854] = {.lex_state = 1745}, + [3855] = {.lex_state = 1750}, + [3856] = {.lex_state = 52}, + [3857] = {.lex_state = 1745}, + [3858] = {.lex_state = 52}, [3859] = {.lex_state = 1749}, - [3860] = {.lex_state = 1730}, - [3861] = {.lex_state = 1738}, - [3862] = {.lex_state = 1742}, - [3863] = {.lex_state = 64}, - [3864] = {.lex_state = 1744}, - [3865] = {.lex_state = 49}, - [3866] = {.lex_state = 1730}, - [3867] = {.lex_state = 1749}, - [3868] = {.lex_state = 1749}, - [3869] = {.lex_state = 1749}, - [3870] = {.lex_state = 1753}, - [3871] = {.lex_state = 1749}, - [3872] = {.lex_state = 1730}, - [3873] = {.lex_state = 1749}, - [3874] = {.lex_state = 1738}, - [3875] = {.lex_state = 1749}, - [3876] = {.lex_state = 1730}, - [3877] = {.lex_state = 1751}, - [3878] = {.lex_state = 1748}, - [3879] = {.lex_state = 1744}, - [3880] = {.lex_state = 1746}, - [3881] = {.lex_state = 1744}, - [3882] = {.lex_state = 53}, - [3883] = {.lex_state = 49}, - [3884] = {.lex_state = 49}, - [3885] = {.lex_state = 1744}, - [3886] = {.lex_state = 1744}, - [3887] = {.lex_state = 1730}, - [3888] = {.lex_state = 1744}, - [3889] = {.lex_state = 49}, - [3890] = {.lex_state = 1748}, - [3891] = {.lex_state = 54}, - [3892] = {.lex_state = 1730}, - [3893] = {.lex_state = 53}, - [3894] = {.lex_state = 54}, - [3895] = {.lex_state = 51}, - [3896] = {.lex_state = 30}, - [3897] = {.lex_state = 62}, - [3898] = {.lex_state = 54}, - [3899] = {.lex_state = 1665}, - [3900] = {.lex_state = 1665}, - [3901] = {.lex_state = 1665}, - [3902] = {.lex_state = 54}, - [3903] = {.lex_state = 1730}, - [3904] = {.lex_state = 30}, - [3905] = {.lex_state = 30}, - [3906] = {.lex_state = 1753}, - [3907] = {.lex_state = 1730}, - [3908] = {.lex_state = 1730}, - [3909] = {.lex_state = 1730}, - [3910] = {.lex_state = 1730}, - [3911] = {.lex_state = 1744}, - [3912] = {.lex_state = 1730}, - [3913] = {.lex_state = 1751}, - [3914] = {.lex_state = 1755}, - [3915] = {.lex_state = 1755}, - [3916] = {.lex_state = 62}, - [3917] = {.lex_state = 1750}, - [3918] = {.lex_state = 56}, - [3919] = {.lex_state = 1750}, - [3920] = {.lex_state = 1748}, - [3921] = {.lex_state = 1730}, - [3922] = {.lex_state = 1730}, - [3923] = {.lex_state = 1750}, - [3924] = {.lex_state = 54}, - [3925] = {.lex_state = 62}, - [3926] = {.lex_state = 30}, - [3927] = {.lex_state = 62}, - [3928] = {.lex_state = 1750}, - [3929] = {.lex_state = 1750}, - [3930] = {.lex_state = 1748}, - [3931] = {.lex_state = 1665}, - [3932] = {.lex_state = 1665}, - [3933] = {.lex_state = 1665}, - [3934] = {.lex_state = 1665}, - [3935] = {.lex_state = 1665}, - [3936] = {.lex_state = 1750}, - [3937] = {.lex_state = 1730}, - [3938] = {.lex_state = 1730}, - [3939] = {.lex_state = 1730}, - [3940] = {.lex_state = 1665}, - [3941] = {.lex_state = 1730}, - [3942] = {.lex_state = 1730}, - [3943] = {.lex_state = 30}, - [3944] = {.lex_state = 1730}, - [3945] = {.lex_state = 1730}, - [3946] = {.lex_state = 1769}, - [3947] = {.lex_state = 1730}, - [3948] = {.lex_state = 1757}, - [3949] = {.lex_state = 1730}, - [3950] = {.lex_state = 1769}, - [3951] = {.lex_state = 1757}, - [3952] = {.lex_state = 30}, - [3953] = {.lex_state = 1757}, - [3954] = {.lex_state = 1757}, - [3955] = {.lex_state = 30}, - [3956] = {.lex_state = 1665}, - [3957] = {.lex_state = 1730}, - [3958] = {.lex_state = 1730}, - [3959] = {.lex_state = 1750}, - [3960] = {.lex_state = 1730}, - [3961] = {.lex_state = 1730}, - [3962] = {.lex_state = 1730}, - [3963] = {.lex_state = 1730}, - [3964] = {.lex_state = 1730}, - [3965] = {.lex_state = 1730}, - [3966] = {.lex_state = 1730}, - [3967] = {.lex_state = 1757}, - [3968] = {.lex_state = 57}, - [3969] = {.lex_state = 30}, - [3970] = {.lex_state = 1730}, - [3971] = {.lex_state = 1730}, - [3972] = {.lex_state = 1750}, - [3973] = {.lex_state = 57}, - [3974] = {.lex_state = 1730}, - [3975] = {.lex_state = 1730}, - [3976] = {.lex_state = 1730}, - [3977] = {.lex_state = 1757}, - [3978] = {.lex_state = 1750}, - [3979] = {.lex_state = 1757}, - [3980] = {.lex_state = 1754}, - [3981] = {.lex_state = 1730}, - [3982] = {.lex_state = 1769}, - [3983] = {.lex_state = 30}, - [3984] = {.lex_state = 30}, - [3985] = {.lex_state = 1730}, - [3986] = {.lex_state = 30}, - [3987] = {.lex_state = 1665}, - [3988] = {.lex_state = 1750}, - [3989] = {.lex_state = 1665}, - [3990] = {.lex_state = 1665}, - [3991] = {.lex_state = 1665}, - [3992] = {.lex_state = 1665}, - [3993] = {.lex_state = 1665}, - [3994] = {.lex_state = 1730}, - [3995] = {.lex_state = 1730}, - [3996] = {.lex_state = 30}, - [3997] = {.lex_state = 1730}, - [3998] = {.lex_state = 30}, - [3999] = {.lex_state = 1665}, - [4000] = {.lex_state = 1755}, - [4001] = {.lex_state = 1730}, - [4002] = {.lex_state = 1769}, - [4003] = {.lex_state = 1750}, - [4004] = {.lex_state = 1752}, - [4005] = {.lex_state = 1755}, - [4006] = {.lex_state = 1665}, - [4007] = {.lex_state = 1757}, - [4008] = {.lex_state = 1730}, - [4009] = {.lex_state = 1730}, - [4010] = {.lex_state = 1730}, - [4011] = {.lex_state = 1769}, - [4012] = {.lex_state = 1750}, - [4013] = {.lex_state = 30}, - [4014] = {.lex_state = 1665}, - [4015] = {.lex_state = 1730}, - [4016] = {.lex_state = 1730}, - [4017] = {.lex_state = 1730}, - [4018] = {.lex_state = 1730}, - [4019] = {.lex_state = 1757}, - [4020] = {.lex_state = 30}, - [4021] = {.lex_state = 1757}, - [4022] = {.lex_state = 1730}, - [4023] = {.lex_state = 1730}, - [4024] = {.lex_state = 1730}, - [4025] = {.lex_state = 1730}, - [4026] = {.lex_state = 1730}, - [4027] = {.lex_state = 1730}, - [4028] = {.lex_state = 1756}, - [4029] = {.lex_state = 1736}, - [4030] = {.lex_state = 1730}, - [4031] = {.lex_state = 1730}, - [4032] = {.lex_state = 225, .external_lex_state = 2}, - [4033] = {.lex_state = 1736}, - [4034] = {.lex_state = 30}, - [4035] = {.lex_state = 1769}, - [4036] = {.lex_state = 1757}, - [4037] = {.lex_state = 1752}, - [4038] = {.lex_state = 1757}, - [4039] = {.lex_state = 1757}, - [4040] = {.lex_state = 55}, - [4041] = {.lex_state = 1757}, - [4042] = {.lex_state = 1757}, - [4043] = {.lex_state = 1730}, - [4044] = {.lex_state = 1736}, - [4045] = {.lex_state = 1730}, - [4046] = {.lex_state = 1665}, - [4047] = {.lex_state = 30}, - [4048] = {.lex_state = 55}, - [4049] = {.lex_state = 1757}, - [4050] = {.lex_state = 1757}, - [4051] = {.lex_state = 1730}, - [4052] = {.lex_state = 1665}, - [4053] = {.lex_state = 1665}, - [4054] = {.lex_state = 1730}, - [4055] = {.lex_state = 1730}, - [4056] = {.lex_state = 1730}, - [4057] = {.lex_state = 1769}, - [4058] = {.lex_state = 1757}, - [4059] = {.lex_state = 225, .external_lex_state = 2}, - [4060] = {.lex_state = 55}, - [4061] = {.lex_state = 55}, - [4062] = {.lex_state = 55}, - [4063] = {.lex_state = 55}, - [4064] = {.lex_state = 1730}, - [4065] = {.lex_state = 1730}, - [4066] = {.lex_state = 1757}, - [4067] = {.lex_state = 30}, - [4068] = {.lex_state = 1736}, - [4069] = {.lex_state = 1736}, - [4070] = {.lex_state = 1665}, - [4071] = {.lex_state = 1769}, - [4072] = {.lex_state = 1769}, - [4073] = {.lex_state = 1730}, - [4074] = {.lex_state = 30}, - [4075] = {.lex_state = 1754}, - [4076] = {.lex_state = 30}, - [4077] = {.lex_state = 30}, - [4078] = {.lex_state = 1730}, - [4079] = {.lex_state = 30}, - [4080] = {.lex_state = 1736}, - [4081] = {.lex_state = 1736}, - [4082] = {.lex_state = 1730}, - [4083] = {.lex_state = 1736}, - [4084] = {.lex_state = 30}, - [4085] = {.lex_state = 1730}, - [4086] = {.lex_state = 1736}, - [4087] = {.lex_state = 1730}, - [4088] = {.lex_state = 1730}, - [4089] = {.lex_state = 1730}, - [4090] = {.lex_state = 1736}, - [4091] = {.lex_state = 1756}, - [4092] = {.lex_state = 30}, - [4093] = {.lex_state = 1730}, - [4094] = {.lex_state = 30}, - [4095] = {.lex_state = 30}, - [4096] = {.lex_state = 225, .external_lex_state = 2}, - [4097] = {.lex_state = 225, .external_lex_state = 2}, - [4098] = {.lex_state = 1736}, - [4099] = {.lex_state = 1730}, - [4100] = {.lex_state = 1730}, - [4101] = {.lex_state = 30}, - [4102] = {.lex_state = 1730}, - [4103] = {.lex_state = 1730}, - [4104] = {.lex_state = 1730}, - [4105] = {.lex_state = 1665}, - [4106] = {.lex_state = 1730}, - [4107] = {.lex_state = 1769}, - [4108] = {.lex_state = 1736}, - [4109] = {.lex_state = 1627}, - [4110] = {.lex_state = 1627}, - [4111] = {.lex_state = 1627}, - [4112] = {.lex_state = 1756}, - [4113] = {.lex_state = 1627}, - [4114] = {.lex_state = 1627}, - [4115] = {.lex_state = 1627}, - [4116] = {.lex_state = 1627}, - [4117] = {.lex_state = 1627}, - [4118] = {.lex_state = 1758}, - [4119] = {.lex_state = 1627}, - [4120] = {.lex_state = 1627}, - [4121] = {.lex_state = 1627}, - [4122] = {.lex_state = 1627}, - [4123] = {.lex_state = 1627}, - [4124] = {.lex_state = 1627}, - [4125] = {.lex_state = 1627}, - [4126] = {.lex_state = 30}, - [4127] = {.lex_state = 1627}, - [4128] = {.lex_state = 1770}, - [4129] = {.lex_state = 1627}, - [4130] = {.lex_state = 1660}, - [4131] = {.lex_state = 1627}, - [4132] = {.lex_state = 1770}, - [4133] = {.lex_state = 1627}, - [4134] = {.lex_state = 1627}, - [4135] = {.lex_state = 1627}, - [4136] = {.lex_state = 1627}, - [4137] = {.lex_state = 1627}, - [4138] = {.lex_state = 1627}, - [4139] = {.lex_state = 1758}, - [4140] = {.lex_state = 1627}, - [4141] = {.lex_state = 1627}, - [4142] = {.lex_state = 1627}, - [4143] = {.lex_state = 1627}, - [4144] = {.lex_state = 1627}, - [4145] = {.lex_state = 1627}, - [4146] = {.lex_state = 1627}, - [4147] = {.lex_state = 1627}, - [4148] = {.lex_state = 1627}, - [4149] = {.lex_state = 1627}, - [4150] = {.lex_state = 1627}, - [4151] = {.lex_state = 1627}, - [4152] = {.lex_state = 1627}, - [4153] = {.lex_state = 1627}, - [4154] = {.lex_state = 1627}, - [4155] = {.lex_state = 1627}, - [4156] = {.lex_state = 1627}, - [4157] = {.lex_state = 1627}, - [4158] = {.lex_state = 1627}, - [4159] = {.lex_state = 1627}, - [4160] = {.lex_state = 30}, - [4161] = {.lex_state = 1627}, - [4162] = {.lex_state = 1627}, - [4163] = {.lex_state = 1627}, - [4164] = {.lex_state = 58}, - [4165] = {.lex_state = 1627}, - [4166] = {.lex_state = 1627}, - [4167] = {.lex_state = 1627}, - [4168] = {.lex_state = 1627}, - [4169] = {.lex_state = 1627}, - [4170] = {.lex_state = 1627}, - [4171] = {.lex_state = 1627}, - [4172] = {.lex_state = 1770}, - [4173] = {.lex_state = 1756}, - [4174] = {.lex_state = 1627}, - [4175] = {.lex_state = 1627}, - [4176] = {.lex_state = 1627}, - [4177] = {.lex_state = 1627}, - [4178] = {.lex_state = 1627}, - [4179] = {.lex_state = 1627}, - [4180] = {.lex_state = 1627}, - [4181] = {.lex_state = 1627}, - [4182] = {.lex_state = 1627}, - [4183] = {.lex_state = 1627}, - [4184] = {.lex_state = 1627}, - [4185] = {.lex_state = 1627}, - [4186] = {.lex_state = 1627}, - [4187] = {.lex_state = 1627}, - [4188] = {.lex_state = 1627}, - [4189] = {.lex_state = 1627}, - [4190] = {.lex_state = 1627}, - [4191] = {.lex_state = 30}, - [4192] = {.lex_state = 30}, - [4193] = {.lex_state = 1627}, - [4194] = {.lex_state = 1627}, - [4195] = {.lex_state = 1736}, - [4196] = {.lex_state = 1627}, - [4197] = {.lex_state = 1627}, - [4198] = {.lex_state = 1770}, - [4199] = {.lex_state = 1627}, - [4200] = {.lex_state = 1627}, - [4201] = {.lex_state = 1627}, - [4202] = {.lex_state = 1736}, - [4203] = {.lex_state = 1758}, - [4204] = {.lex_state = 1627}, - [4205] = {.lex_state = 1627}, - [4206] = {.lex_state = 1736}, - [4207] = {.lex_state = 1627}, - [4208] = {.lex_state = 1627}, - [4209] = {.lex_state = 1665}, - [4210] = {.lex_state = 59}, - [4211] = {.lex_state = 1627}, - [4212] = {.lex_state = 1627}, - [4213] = {.lex_state = 1627}, - [4214] = {.lex_state = 1758}, - [4215] = {.lex_state = 1627}, - [4216] = {.lex_state = 1627}, - [4217] = {.lex_state = 1627}, - [4218] = {.lex_state = 30}, - [4219] = {.lex_state = 30}, - [4220] = {.lex_state = 30}, - [4221] = {.lex_state = 1627}, - [4222] = {.lex_state = 1627}, - [4223] = {.lex_state = 30}, - [4224] = {.lex_state = 1627}, - [4225] = {.lex_state = 1725}, - [4226] = {.lex_state = 1627}, - [4227] = {.lex_state = 1627}, - [4228] = {.lex_state = 1627}, - [4229] = {.lex_state = 30}, - [4230] = {.lex_state = 1627}, - [4231] = {.lex_state = 1770}, - [4232] = {.lex_state = 30}, - [4233] = {.lex_state = 1627}, - [4234] = {.lex_state = 30}, - [4235] = {.lex_state = 30}, - [4236] = {.lex_state = 1627}, - [4237] = {.lex_state = 1627}, - [4238] = {.lex_state = 1627}, - [4239] = {.lex_state = 1627}, - [4240] = {.lex_state = 1627}, - [4241] = {.lex_state = 1627}, - [4242] = {.lex_state = 1752}, - [4243] = {.lex_state = 30}, - [4244] = {.lex_state = 1758}, - [4245] = {.lex_state = 1627}, - [4246] = {.lex_state = 1627}, - [4247] = {.lex_state = 1627}, - [4248] = {.lex_state = 1627}, - [4249] = {.lex_state = 1736}, - [4250] = {.lex_state = 43}, - [4251] = {.lex_state = 1758}, - [4252] = {.lex_state = 1627}, - [4253] = {.lex_state = 30}, - [4254] = {.lex_state = 1627}, - [4255] = {.lex_state = 30}, - [4256] = {.lex_state = 30}, - [4257] = {.lex_state = 1627}, - [4258] = {.lex_state = 1627}, - [4259] = {.lex_state = 1736}, - [4260] = {.lex_state = 1736}, - [4261] = {.lex_state = 43}, - [4262] = {.lex_state = 1736}, - [4263] = {.lex_state = 1627}, - [4264] = {.lex_state = 1627}, - [4265] = {.lex_state = 1758}, - [4266] = {.lex_state = 1627}, - [4267] = {.lex_state = 1627}, - [4268] = {.lex_state = 1736}, - [4269] = {.lex_state = 1627}, - [4270] = {.lex_state = 1627}, - [4271] = {.lex_state = 1665}, - [4272] = {.lex_state = 1627}, - [4273] = {.lex_state = 1627}, - [4274] = {.lex_state = 30}, - [4275] = {.lex_state = 1725}, - [4276] = {.lex_state = 30}, - [4277] = {.lex_state = 30}, - [4278] = {.lex_state = 1627}, - [4279] = {.lex_state = 1758}, - [4280] = {.lex_state = 1627}, - [4281] = {.lex_state = 30}, - [4282] = {.lex_state = 1627}, - [4283] = {.lex_state = 30}, - [4284] = {.lex_state = 1730}, - [4285] = {.lex_state = 30}, - [4286] = {.lex_state = 1725}, - [4287] = {.lex_state = 1627}, - [4288] = {.lex_state = 1725}, - [4289] = {.lex_state = 1627}, - [4290] = {.lex_state = 1736}, - [4291] = {.lex_state = 1725}, - [4292] = {.lex_state = 30}, - [4293] = {.lex_state = 1627}, - [4294] = {.lex_state = 1736}, - [4295] = {.lex_state = 1757}, - [4296] = {.lex_state = 1627}, - [4297] = {.lex_state = 1767}, - [4298] = {.lex_state = 1665}, - [4299] = {.lex_state = 1758}, - [4300] = {.lex_state = 1627}, - [4301] = {.lex_state = 1627}, - [4302] = {.lex_state = 1697}, - [4303] = {.lex_state = 30}, - [4304] = {.lex_state = 30}, - [4305] = {.lex_state = 1730}, - [4306] = {.lex_state = 1627}, - [4307] = {.lex_state = 1627}, - [4308] = {.lex_state = 1627}, - [4309] = {.lex_state = 30}, - [4310] = {.lex_state = 1770}, - [4311] = {.lex_state = 1758}, - [4312] = {.lex_state = 60}, - [4313] = {.lex_state = 1760}, - [4314] = {.lex_state = 1627}, - [4315] = {.lex_state = 1725}, - [4316] = {.lex_state = 1627}, - [4317] = {.lex_state = 1627}, - [4318] = {.lex_state = 60}, - [4319] = {.lex_state = 1758}, - [4320] = {.lex_state = 1725}, + [3860] = {.lex_state = 1731}, + [3861] = {.lex_state = 1750}, + [3862] = {.lex_state = 1750}, + [3863] = {.lex_state = 1754}, + [3864] = {.lex_state = 1750}, + [3865] = {.lex_state = 1731}, + [3866] = {.lex_state = 1747}, + [3867] = {.lex_state = 53}, + [3868] = {.lex_state = 1750}, + [3869] = {.lex_state = 1752}, + [3870] = {.lex_state = 1745}, + [3871] = {.lex_state = 1731}, + [3872] = {.lex_state = 1745}, + [3873] = {.lex_state = 48}, + [3874] = {.lex_state = 48}, + [3875] = {.lex_state = 1745}, + [3876] = {.lex_state = 48}, + [3877] = {.lex_state = 1739}, + [3878] = {.lex_state = 1731}, + [3879] = {.lex_state = 1731}, + [3880] = {.lex_state = 1749}, + [3881] = {.lex_state = 53}, + [3882] = {.lex_state = 1731}, + [3883] = {.lex_state = 30}, + [3884] = {.lex_state = 53}, + [3885] = {.lex_state = 1751}, + [3886] = {.lex_state = 1749}, + [3887] = {.lex_state = 1751}, + [3888] = {.lex_state = 1731}, + [3889] = {.lex_state = 61}, + [3890] = {.lex_state = 1754}, + [3891] = {.lex_state = 1731}, + [3892] = {.lex_state = 1731}, + [3893] = {.lex_state = 1731}, + [3894] = {.lex_state = 1745}, + [3895] = {.lex_state = 30}, + [3896] = {.lex_state = 1731}, + [3897] = {.lex_state = 1731}, + [3898] = {.lex_state = 50}, + [3899] = {.lex_state = 1751}, + [3900] = {.lex_state = 1666}, + [3901] = {.lex_state = 61}, + [3902] = {.lex_state = 1749}, + [3903] = {.lex_state = 55}, + [3904] = {.lex_state = 1752}, + [3905] = {.lex_state = 1666}, + [3906] = {.lex_state = 53}, + [3907] = {.lex_state = 53}, + [3908] = {.lex_state = 1756}, + [3909] = {.lex_state = 1666}, + [3910] = {.lex_state = 30}, + [3911] = {.lex_state = 1751}, + [3912] = {.lex_state = 61}, + [3913] = {.lex_state = 61}, + [3914] = {.lex_state = 30}, + [3915] = {.lex_state = 1666}, + [3916] = {.lex_state = 1666}, + [3917] = {.lex_state = 1666}, + [3918] = {.lex_state = 1666}, + [3919] = {.lex_state = 1666}, + [3920] = {.lex_state = 1751}, + [3921] = {.lex_state = 1751}, + [3922] = {.lex_state = 1731}, + [3923] = {.lex_state = 1756}, + [3924] = {.lex_state = 1731}, + [3925] = {.lex_state = 1731}, + [3926] = {.lex_state = 1731}, + [3927] = {.lex_state = 1731}, + [3928] = {.lex_state = 1731}, + [3929] = {.lex_state = 1731}, + [3930] = {.lex_state = 1731}, + [3931] = {.lex_state = 1731}, + [3932] = {.lex_state = 61}, + [3933] = {.lex_state = 1756}, + [3934] = {.lex_state = 1731}, + [3935] = {.lex_state = 1731}, + [3936] = {.lex_state = 61}, + [3937] = {.lex_state = 1756}, + [3938] = {.lex_state = 1731}, + [3939] = {.lex_state = 1731}, + [3940] = {.lex_state = 1751}, + [3941] = {.lex_state = 1731}, + [3942] = {.lex_state = 1666}, + [3943] = {.lex_state = 1731}, + [3944] = {.lex_state = 1731}, + [3945] = {.lex_state = 1770}, + [3946] = {.lex_state = 1731}, + [3947] = {.lex_state = 1758}, + [3948] = {.lex_state = 1758}, + [3949] = {.lex_state = 1758}, + [3950] = {.lex_state = 1758}, + [3951] = {.lex_state = 1758}, + [3952] = {.lex_state = 1731}, + [3953] = {.lex_state = 1755}, + [3954] = {.lex_state = 61}, + [3955] = {.lex_state = 61}, + [3956] = {.lex_state = 1731}, + [3957] = {.lex_state = 1731}, + [3958] = {.lex_state = 1731}, + [3959] = {.lex_state = 1731}, + [3960] = {.lex_state = 1751}, + [3961] = {.lex_state = 1751}, + [3962] = {.lex_state = 56}, + [3963] = {.lex_state = 56}, + [3964] = {.lex_state = 1666}, + [3965] = {.lex_state = 1751}, + [3966] = {.lex_state = 1666}, + [3967] = {.lex_state = 1666}, + [3968] = {.lex_state = 61}, + [3969] = {.lex_state = 61}, + [3970] = {.lex_state = 1666}, + [3971] = {.lex_state = 1666}, + [3972] = {.lex_state = 1666}, + [3973] = {.lex_state = 61}, + [3974] = {.lex_state = 61}, + [3975] = {.lex_state = 61}, + [3976] = {.lex_state = 1758}, + [3977] = {.lex_state = 61}, + [3978] = {.lex_state = 1758}, + [3979] = {.lex_state = 1770}, + [3980] = {.lex_state = 1731}, + [3981] = {.lex_state = 1731}, + [3982] = {.lex_state = 61}, + [3983] = {.lex_state = 1758}, + [3984] = {.lex_state = 1731}, + [3985] = {.lex_state = 1731}, + [3986] = {.lex_state = 1731}, + [3987] = {.lex_state = 1666}, + [3988] = {.lex_state = 1758}, + [3989] = {.lex_state = 1666}, + [3990] = {.lex_state = 1666}, + [3991] = {.lex_state = 1666}, + [3992] = {.lex_state = 1731}, + [3993] = {.lex_state = 1731}, + [3994] = {.lex_state = 1751}, + [3995] = {.lex_state = 1731}, + [3996] = {.lex_state = 1770}, + [3997] = {.lex_state = 1731}, + [3998] = {.lex_state = 1731}, + [3999] = {.lex_state = 1731}, + [4000] = {.lex_state = 1731}, + [4001] = {.lex_state = 1731}, + [4002] = {.lex_state = 1731}, + [4003] = {.lex_state = 1770}, + [4004] = {.lex_state = 1751}, + [4005] = {.lex_state = 1753}, + [4006] = {.lex_state = 1731}, + [4007] = {.lex_state = 1770}, + [4008] = {.lex_state = 1731}, + [4009] = {.lex_state = 1731}, + [4010] = {.lex_state = 1666}, + [4011] = {.lex_state = 1758}, + [4012] = {.lex_state = 1666}, + [4013] = {.lex_state = 1741}, + [4014] = {.lex_state = 1666}, + [4015] = {.lex_state = 226, .external_lex_state = 2}, + [4016] = {.lex_state = 61}, + [4017] = {.lex_state = 226, .external_lex_state = 2}, + [4018] = {.lex_state = 1731}, + [4019] = {.lex_state = 1741}, + [4020] = {.lex_state = 1770}, + [4021] = {.lex_state = 1770}, + [4022] = {.lex_state = 1666}, + [4023] = {.lex_state = 1731}, + [4024] = {.lex_state = 1731}, + [4025] = {.lex_state = 1758}, + [4026] = {.lex_state = 1758}, + [4027] = {.lex_state = 1757}, + [4028] = {.lex_state = 54}, + [4029] = {.lex_state = 1731}, + [4030] = {.lex_state = 1758}, + [4031] = {.lex_state = 1758}, + [4032] = {.lex_state = 61}, + [4033] = {.lex_state = 61}, + [4034] = {.lex_state = 1731}, + [4035] = {.lex_state = 1741}, + [4036] = {.lex_state = 1666}, + [4037] = {.lex_state = 226, .external_lex_state = 2}, + [4038] = {.lex_state = 1731}, + [4039] = {.lex_state = 1731}, + [4040] = {.lex_state = 61}, + [4041] = {.lex_state = 61}, + [4042] = {.lex_state = 1731}, + [4043] = {.lex_state = 1741}, + [4044] = {.lex_state = 1758}, + [4045] = {.lex_state = 1731}, + [4046] = {.lex_state = 1770}, + [4047] = {.lex_state = 1741}, + [4048] = {.lex_state = 1770}, + [4049] = {.lex_state = 1758}, + [4050] = {.lex_state = 1741}, + [4051] = {.lex_state = 61}, + [4052] = {.lex_state = 1755}, + [4053] = {.lex_state = 1731}, + [4054] = {.lex_state = 54}, + [4055] = {.lex_state = 1731}, + [4056] = {.lex_state = 1731}, + [4057] = {.lex_state = 1731}, + [4058] = {.lex_state = 54}, + [4059] = {.lex_state = 1731}, + [4060] = {.lex_state = 1753}, + [4061] = {.lex_state = 54}, + [4062] = {.lex_state = 1757}, + [4063] = {.lex_state = 54}, + [4064] = {.lex_state = 54}, + [4065] = {.lex_state = 1741}, + [4066] = {.lex_state = 1758}, + [4067] = {.lex_state = 1741}, + [4068] = {.lex_state = 61}, + [4069] = {.lex_state = 1731}, + [4070] = {.lex_state = 1758}, + [4071] = {.lex_state = 1731}, + [4072] = {.lex_state = 1731}, + [4073] = {.lex_state = 1731}, + [4074] = {.lex_state = 61}, + [4075] = {.lex_state = 61}, + [4076] = {.lex_state = 61}, + [4077] = {.lex_state = 1731}, + [4078] = {.lex_state = 1731}, + [4079] = {.lex_state = 1731}, + [4080] = {.lex_state = 1741}, + [4081] = {.lex_state = 1758}, + [4082] = {.lex_state = 61}, + [4083] = {.lex_state = 1770}, + [4084] = {.lex_state = 1741}, + [4085] = {.lex_state = 1731}, + [4086] = {.lex_state = 1731}, + [4087] = {.lex_state = 1731}, + [4088] = {.lex_state = 1731}, + [4089] = {.lex_state = 1731}, + [4090] = {.lex_state = 1731}, + [4091] = {.lex_state = 61}, + [4092] = {.lex_state = 1731}, + [4093] = {.lex_state = 1741}, + [4094] = {.lex_state = 226, .external_lex_state = 2}, + [4095] = {.lex_state = 1628}, + [4096] = {.lex_state = 1628}, + [4097] = {.lex_state = 1731}, + [4098] = {.lex_state = 58}, + [4099] = {.lex_state = 1771}, + [4100] = {.lex_state = 1628}, + [4101] = {.lex_state = 1628}, + [4102] = {.lex_state = 1771}, + [4103] = {.lex_state = 1628}, + [4104] = {.lex_state = 1768}, + [4105] = {.lex_state = 61}, + [4106] = {.lex_state = 1628}, + [4107] = {.lex_state = 1628}, + [4108] = {.lex_state = 1628}, + [4109] = {.lex_state = 1628}, + [4110] = {.lex_state = 1628}, + [4111] = {.lex_state = 1666}, + [4112] = {.lex_state = 1628}, + [4113] = {.lex_state = 1741}, + [4114] = {.lex_state = 1628}, + [4115] = {.lex_state = 1628}, + [4116] = {.lex_state = 1628}, + [4117] = {.lex_state = 1628}, + [4118] = {.lex_state = 1628}, + [4119] = {.lex_state = 1628}, + [4120] = {.lex_state = 1753}, + [4121] = {.lex_state = 1628}, + [4122] = {.lex_state = 1628}, + [4123] = {.lex_state = 61}, + [4124] = {.lex_state = 1628}, + [4125] = {.lex_state = 1628}, + [4126] = {.lex_state = 1628}, + [4127] = {.lex_state = 1628}, + [4128] = {.lex_state = 61}, + [4129] = {.lex_state = 1628}, + [4130] = {.lex_state = 1628}, + [4131] = {.lex_state = 61}, + [4132] = {.lex_state = 61}, + [4133] = {.lex_state = 1628}, + [4134] = {.lex_state = 1628}, + [4135] = {.lex_state = 1628}, + [4136] = {.lex_state = 1628}, + [4137] = {.lex_state = 1628}, + [4138] = {.lex_state = 1628}, + [4139] = {.lex_state = 1628}, + [4140] = {.lex_state = 1628}, + [4141] = {.lex_state = 1628}, + [4142] = {.lex_state = 1628}, + [4143] = {.lex_state = 1628}, + [4144] = {.lex_state = 61}, + [4145] = {.lex_state = 1628}, + [4146] = {.lex_state = 1628}, + [4147] = {.lex_state = 1628}, + [4148] = {.lex_state = 1628}, + [4149] = {.lex_state = 1628}, + [4150] = {.lex_state = 1758}, + [4151] = {.lex_state = 1628}, + [4152] = {.lex_state = 1628}, + [4153] = {.lex_state = 61}, + [4154] = {.lex_state = 1628}, + [4155] = {.lex_state = 1628}, + [4156] = {.lex_state = 61}, + [4157] = {.lex_state = 1771}, + [4158] = {.lex_state = 1628}, + [4159] = {.lex_state = 1628}, + [4160] = {.lex_state = 1628}, + [4161] = {.lex_state = 1628}, + [4162] = {.lex_state = 1628}, + [4163] = {.lex_state = 1628}, + [4164] = {.lex_state = 1628}, + [4165] = {.lex_state = 61}, + [4166] = {.lex_state = 1759}, + [4167] = {.lex_state = 1628}, + [4168] = {.lex_state = 1661}, + [4169] = {.lex_state = 1628}, + [4170] = {.lex_state = 1628}, + [4171] = {.lex_state = 1628}, + [4172] = {.lex_state = 1628}, + [4173] = {.lex_state = 42}, + [4174] = {.lex_state = 1628}, + [4175] = {.lex_state = 1628}, + [4176] = {.lex_state = 1628}, + [4177] = {.lex_state = 1628}, + [4178] = {.lex_state = 1628}, + [4179] = {.lex_state = 1628}, + [4180] = {.lex_state = 61}, + [4181] = {.lex_state = 1726}, + [4182] = {.lex_state = 1726}, + [4183] = {.lex_state = 1628}, + [4184] = {.lex_state = 1628}, + [4185] = {.lex_state = 1726}, + [4186] = {.lex_state = 1628}, + [4187] = {.lex_state = 1726}, + [4188] = {.lex_state = 1726}, + [4189] = {.lex_state = 1771}, + [4190] = {.lex_state = 1771}, + [4191] = {.lex_state = 1628}, + [4192] = {.lex_state = 61}, + [4193] = {.lex_state = 1628}, + [4194] = {.lex_state = 1757}, + [4195] = {.lex_state = 1628}, + [4196] = {.lex_state = 1628}, + [4197] = {.lex_state = 1628}, + [4198] = {.lex_state = 1741}, + [4199] = {.lex_state = 1628}, + [4200] = {.lex_state = 1759}, + [4201] = {.lex_state = 1628}, + [4202] = {.lex_state = 1628}, + [4203] = {.lex_state = 1628}, + [4204] = {.lex_state = 1666}, + [4205] = {.lex_state = 1628}, + [4206] = {.lex_state = 1628}, + [4207] = {.lex_state = 1628}, + [4208] = {.lex_state = 1628}, + [4209] = {.lex_state = 1628}, + [4210] = {.lex_state = 1628}, + [4211] = {.lex_state = 1759}, + [4212] = {.lex_state = 1741}, + [4213] = {.lex_state = 42}, + [4214] = {.lex_state = 1628}, + [4215] = {.lex_state = 1628}, + [4216] = {.lex_state = 1628}, + [4217] = {.lex_state = 1628}, + [4218] = {.lex_state = 1759}, + [4219] = {.lex_state = 1628}, + [4220] = {.lex_state = 1757}, + [4221] = {.lex_state = 1628}, + [4222] = {.lex_state = 1628}, + [4223] = {.lex_state = 1628}, + [4224] = {.lex_state = 1628}, + [4225] = {.lex_state = 1628}, + [4226] = {.lex_state = 61}, + [4227] = {.lex_state = 57}, + [4228] = {.lex_state = 1628}, + [4229] = {.lex_state = 61}, + [4230] = {.lex_state = 1628}, + [4231] = {.lex_state = 1628}, + [4232] = {.lex_state = 1628}, + [4233] = {.lex_state = 1628}, + [4234] = {.lex_state = 61}, + [4235] = {.lex_state = 61}, + [4236] = {.lex_state = 1628}, + [4237] = {.lex_state = 1628}, + [4238] = {.lex_state = 1628}, + [4239] = {.lex_state = 1666}, + [4240] = {.lex_state = 1628}, + [4241] = {.lex_state = 1741}, + [4242] = {.lex_state = 1628}, + [4243] = {.lex_state = 1759}, + [4244] = {.lex_state = 1628}, + [4245] = {.lex_state = 1628}, + [4246] = {.lex_state = 61}, + [4247] = {.lex_state = 1628}, + [4248] = {.lex_state = 1628}, + [4249] = {.lex_state = 1628}, + [4250] = {.lex_state = 1628}, + [4251] = {.lex_state = 61}, + [4252] = {.lex_state = 61}, + [4253] = {.lex_state = 1628}, + [4254] = {.lex_state = 1628}, + [4255] = {.lex_state = 1741}, + [4256] = {.lex_state = 1759}, + [4257] = {.lex_state = 1628}, + [4258] = {.lex_state = 1628}, + [4259] = {.lex_state = 1628}, + [4260] = {.lex_state = 1628}, + [4261] = {.lex_state = 1628}, + [4262] = {.lex_state = 61}, + [4263] = {.lex_state = 1628}, + [4264] = {.lex_state = 1741}, + [4265] = {.lex_state = 1741}, + [4266] = {.lex_state = 1741}, + [4267] = {.lex_state = 1628}, + [4268] = {.lex_state = 1741}, + [4269] = {.lex_state = 1628}, + [4270] = {.lex_state = 1759}, + [4271] = {.lex_state = 1628}, + [4272] = {.lex_state = 1628}, + [4273] = {.lex_state = 61}, + [4274] = {.lex_state = 1628}, + [4275] = {.lex_state = 61}, + [4276] = {.lex_state = 61}, + [4277] = {.lex_state = 1628}, + [4278] = {.lex_state = 1759}, + [4279] = {.lex_state = 1628}, + [4280] = {.lex_state = 1759}, + [4281] = {.lex_state = 61}, + [4282] = {.lex_state = 1628}, + [4283] = {.lex_state = 1628}, + [4284] = {.lex_state = 1741}, + [4285] = {.lex_state = 1628}, + [4286] = {.lex_state = 1741}, + [4287] = {.lex_state = 1628}, + [4288] = {.lex_state = 1698}, + [4289] = {.lex_state = 1726}, + [4290] = {.lex_state = 61}, + [4291] = {.lex_state = 1759}, + [4292] = {.lex_state = 1628}, + [4293] = {.lex_state = 61}, + [4294] = {.lex_state = 61}, + [4295] = {.lex_state = 1628}, + [4296] = {.lex_state = 1698}, + [4297] = {.lex_state = 61}, + [4298] = {.lex_state = 61}, + [4299] = {.lex_state = 61}, + [4300] = {.lex_state = 1771}, + [4301] = {.lex_state = 1759}, + [4302] = {.lex_state = 1771}, + [4303] = {.lex_state = 1628}, + [4304] = {.lex_state = 1628}, + [4305] = {.lex_state = 1759}, + [4306] = {.lex_state = 61}, + [4307] = {.lex_state = 1628}, + [4308] = {.lex_state = 1731}, + [4309] = {.lex_state = 1731}, + [4310] = {.lex_state = 1628}, + [4311] = {.lex_state = 1771}, + [4312] = {.lex_state = 1628}, + [4313] = {.lex_state = 1759}, + [4314] = {.lex_state = 1771}, + [4315] = {.lex_state = 1698}, + [4316] = {.lex_state = 1771}, + [4317] = {.lex_state = 1726}, + [4318] = {.lex_state = 61}, + [4319] = {.lex_state = 61}, + [4320] = {.lex_state = 1628}, [4321] = {.lex_state = 1759}, - [4322] = {.lex_state = 1627}, - [4323] = {.lex_state = 30}, - [4324] = {.lex_state = 30}, - [4325] = {.lex_state = 30}, - [4326] = {.lex_state = 30}, - [4327] = {.lex_state = 30}, - [4328] = {.lex_state = 1627}, - [4329] = {.lex_state = 1697}, - [4330] = {.lex_state = 30}, - [4331] = {.lex_state = 1770}, - [4332] = {.lex_state = 1758}, - [4333] = {.lex_state = 1627}, - [4334] = {.lex_state = 30}, - [4335] = {.lex_state = 1694}, - [4336] = {.lex_state = 1752}, - [4337] = {.lex_state = 1758}, - [4338] = {.lex_state = 30}, - [4339] = {.lex_state = 30}, - [4340] = {.lex_state = 30}, - [4341] = {.lex_state = 1627}, - [4342] = {.lex_state = 1694}, - [4343] = {.lex_state = 30}, - [4344] = {.lex_state = 30}, - [4345] = {.lex_state = 1627}, - [4346] = {.lex_state = 1627}, - [4347] = {.lex_state = 1730}, - [4348] = {.lex_state = 1730}, - [4349] = {.lex_state = 1725}, - [4350] = {.lex_state = 30}, - [4351] = {.lex_state = 1770}, - [4352] = {.lex_state = 30}, - [4353] = {.lex_state = 1627}, - [4354] = {.lex_state = 30}, - [4355] = {.lex_state = 1627}, - [4356] = {.lex_state = 1627}, - [4357] = {.lex_state = 1697}, - [4358] = {.lex_state = 1725}, - [4359] = {.lex_state = 1697}, - [4360] = {.lex_state = 30}, - [4361] = {.lex_state = 1697}, - [4362] = {.lex_state = 30}, - [4363] = {.lex_state = 1725}, - [4364] = {.lex_state = 1725}, - [4365] = {.lex_state = 1627}, - [4366] = {.lex_state = 1627}, - [4367] = {.lex_state = 1758}, - [4368] = {.lex_state = 30}, - [4369] = {.lex_state = 1627}, - [4370] = {.lex_state = 30}, - [4371] = {.lex_state = 1758}, - [4372] = {.lex_state = 1627}, - [4373] = {.lex_state = 1767}, - [4374] = {.lex_state = 1725}, - [4375] = {.lex_state = 1758}, - [4376] = {.lex_state = 1627}, - [4377] = {.lex_state = 1758}, - [4378] = {.lex_state = 1758}, - [4379] = {.lex_state = 1770}, - [4380] = {.lex_state = 30}, - [4381] = {.lex_state = 1758}, - [4382] = {.lex_state = 1627}, - [4383] = {.lex_state = 30}, - [4384] = {.lex_state = 1725}, - [4385] = {.lex_state = 1770}, - [4386] = {.lex_state = 1697}, - [4387] = {.lex_state = 61}, - [4388] = {.lex_state = 1697}, - [4389] = {.lex_state = 1730}, - [4390] = {.lex_state = 1697}, - [4391] = {.lex_state = 1694}, - [4392] = {.lex_state = 1697}, - [4393] = {.lex_state = 1730}, - [4394] = {.lex_state = 1725}, - [4395] = {.lex_state = 1697}, - [4396] = {.lex_state = 1694}, - [4397] = {.lex_state = 78}, - [4398] = {.lex_state = 78}, - [4399] = {.lex_state = 1697}, - [4400] = {.lex_state = 1697}, - [4401] = {.lex_state = 1697}, - [4402] = {.lex_state = 1694}, - [4403] = {.lex_state = 1697}, - [4404] = {.lex_state = 1697}, - [4405] = {.lex_state = 1697}, - [4406] = {.lex_state = 1627}, - [4407] = {.lex_state = 1697}, - [4408] = {.lex_state = 1697}, - [4409] = {.lex_state = 1697}, - [4410] = {.lex_state = 1697}, - [4411] = {.lex_state = 1697}, - [4412] = {.lex_state = 1697}, - [4413] = {.lex_state = 1627}, - [4414] = {.lex_state = 1627}, - [4415] = {.lex_state = 1697}, - [4416] = {.lex_state = 1697}, - [4417] = {.lex_state = 1697}, - [4418] = {.lex_state = 1697}, - [4419] = {.lex_state = 1697}, - [4420] = {.lex_state = 1697}, - [4421] = {.lex_state = 43}, - [4422] = {.lex_state = 1627}, - [4423] = {.lex_state = 1697}, - [4424] = {.lex_state = 1697}, - [4425] = {.lex_state = 1697}, - [4426] = {.lex_state = 1697}, - [4427] = {.lex_state = 1697}, - [4428] = {.lex_state = 1730}, - [4429] = {.lex_state = 1697}, - [4430] = {.lex_state = 55}, - [4431] = {.lex_state = 61}, - [4432] = {.lex_state = 1697}, - [4433] = {.lex_state = 1697}, - [4434] = {.lex_state = 1697}, - [4435] = {.lex_state = 1694}, - [4436] = {.lex_state = 61}, - [4437] = {.lex_state = 1697}, - [4438] = {.lex_state = 1627}, - [4439] = {.lex_state = 1694}, - [4440] = {.lex_state = 1694}, - [4441] = {.lex_state = 1697}, - [4442] = {.lex_state = 1697}, - [4443] = {.lex_state = 1697}, - [4444] = {.lex_state = 1697}, - [4445] = {.lex_state = 1697}, - [4446] = {.lex_state = 30}, - [4447] = {.lex_state = 1760}, - [4448] = {.lex_state = 30}, - [4449] = {.lex_state = 1697}, - [4450] = {.lex_state = 1697}, - [4451] = {.lex_state = 30}, - [4452] = {.lex_state = 30}, - [4453] = {.lex_state = 1725}, - [4454] = {.lex_state = 1697}, - [4455] = {.lex_state = 1697}, - [4456] = {.lex_state = 1697}, - [4457] = {.lex_state = 43}, - [4458] = {.lex_state = 1694}, - [4459] = {.lex_state = 1694}, - [4460] = {.lex_state = 1697}, - [4461] = {.lex_state = 1694}, - [4462] = {.lex_state = 1694}, - [4463] = {.lex_state = 1627}, - [4464] = {.lex_state = 1697}, - [4465] = {.lex_state = 1759}, - [4466] = {.lex_state = 1761}, - [4467] = {.lex_state = 1697}, - [4468] = {.lex_state = 61}, - [4469] = {.lex_state = 1697}, - [4470] = {.lex_state = 1697}, - [4471] = {.lex_state = 1697}, - [4472] = {.lex_state = 61}, - [4473] = {.lex_state = 1761}, - [4474] = {.lex_state = 61}, - [4475] = {.lex_state = 1627}, - [4476] = {.lex_state = 61}, - [4477] = {.lex_state = 1697}, - [4478] = {.lex_state = 61}, - [4479] = {.lex_state = 1730}, - [4480] = {.lex_state = 1697}, - [4481] = {.lex_state = 1697}, - [4482] = {.lex_state = 1697}, - [4483] = {.lex_state = 1697}, - [4484] = {.lex_state = 1697}, - [4485] = {.lex_state = 1694}, - [4486] = {.lex_state = 1627}, - [4487] = {.lex_state = 1627}, - [4488] = {.lex_state = 1697}, - [4489] = {.lex_state = 1694}, - [4490] = {.lex_state = 1697}, - [4491] = {.lex_state = 1697}, - [4492] = {.lex_state = 1697}, - [4493] = {.lex_state = 1697}, - [4494] = {.lex_state = 1697}, - [4495] = {.lex_state = 1697}, - [4496] = {.lex_state = 1697}, - [4497] = {.lex_state = 1627}, - [4498] = {.lex_state = 1697}, - [4499] = {.lex_state = 1697}, - [4500] = {.lex_state = 1697}, - [4501] = {.lex_state = 1697}, - [4502] = {.lex_state = 1627}, - [4503] = {.lex_state = 1694}, - [4504] = {.lex_state = 55}, - [4505] = {.lex_state = 55}, - [4506] = {.lex_state = 43}, - [4507] = {.lex_state = 1697}, - [4508] = {.lex_state = 61}, - [4509] = {.lex_state = 55}, - [4510] = {.lex_state = 1697}, - [4511] = {.lex_state = 55}, - [4512] = {.lex_state = 58}, - [4513] = {.lex_state = 1694}, - [4514] = {.lex_state = 55}, - [4515] = {.lex_state = 30}, - [4516] = {.lex_state = 1697}, - [4517] = {.lex_state = 30}, - [4518] = {.lex_state = 1697}, - [4519] = {.lex_state = 78}, - [4520] = {.lex_state = 55}, - [4521] = {.lex_state = 1697}, - [4522] = {.lex_state = 1697}, - [4523] = {.lex_state = 1697}, - [4524] = {.lex_state = 1697}, - [4525] = {.lex_state = 1697}, - [4526] = {.lex_state = 1697}, - [4527] = {.lex_state = 1697}, - [4528] = {.lex_state = 1697}, - [4529] = {.lex_state = 1697}, - [4530] = {.lex_state = 78}, - [4531] = {.lex_state = 55}, - [4532] = {.lex_state = 1697}, - [4533] = {.lex_state = 1697}, - [4534] = {.lex_state = 1697}, - [4535] = {.lex_state = 78}, - [4536] = {.lex_state = 1697}, - [4537] = {.lex_state = 43}, - [4538] = {.lex_state = 1697}, - [4539] = {.lex_state = 1725}, - [4540] = {.lex_state = 1758}, - [4541] = {.lex_state = 1697}, - [4542] = {.lex_state = 246}, - [4543] = {.lex_state = 1697}, - [4544] = {.lex_state = 1697}, - [4545] = {.lex_state = 1697}, - [4546] = {.lex_state = 1697}, - [4547] = {.lex_state = 43}, - [4548] = {.lex_state = 1697}, - [4549] = {.lex_state = 30}, - [4550] = {.lex_state = 1697}, - [4551] = {.lex_state = 1697}, - [4552] = {.lex_state = 1697}, - [4553] = {.lex_state = 1697}, - [4554] = {.lex_state = 1697}, - [4555] = {.lex_state = 1697}, - [4556] = {.lex_state = 1627}, - [4557] = {.lex_state = 1694}, - [4558] = {.lex_state = 30}, - [4559] = {.lex_state = 1697}, - [4560] = {.lex_state = 30}, - [4561] = {.lex_state = 1697}, - [4562] = {.lex_state = 1697}, - [4563] = {.lex_state = 30}, - [4564] = {.lex_state = 1697}, - [4565] = {.lex_state = 1697}, - [4566] = {.lex_state = 1697}, - [4567] = {.lex_state = 30}, - [4568] = {.lex_state = 1697}, - [4569] = {.lex_state = 1697}, - [4570] = {.lex_state = 1761}, - [4571] = {.lex_state = 1627}, - [4572] = {.lex_state = 30}, - [4573] = {.lex_state = 30}, - [4574] = {.lex_state = 1627}, - [4575] = {.lex_state = 1627}, - [4576] = {.lex_state = 1697}, - [4577] = {.lex_state = 1627}, - [4578] = {.lex_state = 1697}, - [4579] = {.lex_state = 1697}, - [4580] = {.lex_state = 1697}, - [4581] = {.lex_state = 1697}, - [4582] = {.lex_state = 250}, - [4583] = {.lex_state = 1627}, - [4584] = {.lex_state = 1627}, - [4585] = {.lex_state = 55}, - [4586] = {.lex_state = 30}, - [4587] = {.lex_state = 1697}, - [4588] = {.lex_state = 1697}, - [4589] = {.lex_state = 1627}, - [4590] = {.lex_state = 1697}, - [4591] = {.lex_state = 1697}, - [4592] = {.lex_state = 1697}, - [4593] = {.lex_state = 30}, - [4594] = {.lex_state = 30}, - [4595] = {.lex_state = 30}, - [4596] = {.lex_state = 30}, - [4597] = {.lex_state = 30}, - [4598] = {.lex_state = 30}, - [4599] = {.lex_state = 30}, - [4600] = {.lex_state = 30}, - [4601] = {.lex_state = 247}, - [4602] = {.lex_state = 30}, - [4603] = {.lex_state = 62}, - [4604] = {.lex_state = 1627}, - [4605] = {.lex_state = 30}, - [4606] = {.lex_state = 30}, - [4607] = {.lex_state = 30}, - [4608] = {.lex_state = 1627}, - [4609] = {.lex_state = 30}, - [4610] = {.lex_state = 1697}, - [4611] = {.lex_state = 1627}, - [4612] = {.lex_state = 30}, - [4613] = {.lex_state = 30}, - [4614] = {.lex_state = 30}, - [4615] = {.lex_state = 30}, - [4616] = {.lex_state = 30}, - [4617] = {.lex_state = 1627}, - [4618] = {.lex_state = 1627}, - [4619] = {.lex_state = 1627}, - [4620] = {.lex_state = 1697}, - [4621] = {.lex_state = 1627}, - [4622] = {.lex_state = 30}, - [4623] = {.lex_state = 1627}, - [4624] = {.lex_state = 249}, - [4625] = {.lex_state = 30}, - [4626] = {.lex_state = 30}, - [4627] = {.lex_state = 30}, - [4628] = {.lex_state = 1627}, - [4629] = {.lex_state = 1697}, - [4630] = {.lex_state = 30}, - [4631] = {.lex_state = 1627}, - [4632] = {.lex_state = 30}, - [4633] = {.lex_state = 1697}, - [4634] = {.lex_state = 1627}, - [4635] = {.lex_state = 30}, - [4636] = {.lex_state = 1697}, - [4637] = {.lex_state = 1627}, - [4638] = {.lex_state = 66}, - [4639] = {.lex_state = 1665}, - [4640] = {.lex_state = 30}, - [4641] = {.lex_state = 1627}, - [4642] = {.lex_state = 1697}, - [4643] = {.lex_state = 1627}, - [4644] = {.lex_state = 1627}, - [4645] = {.lex_state = 1697}, - [4646] = {.lex_state = 62}, - [4647] = {.lex_state = 1697}, - [4648] = {.lex_state = 30}, - [4649] = {.lex_state = 30}, - [4650] = {.lex_state = 1697}, - [4651] = {.lex_state = 1697}, - [4652] = {.lex_state = 1627}, - [4653] = {.lex_state = 1627}, - [4654] = {.lex_state = 30}, - [4655] = {.lex_state = 1697}, - [4656] = {.lex_state = 1697}, - [4657] = {.lex_state = 30}, - [4658] = {.lex_state = 1697}, - [4659] = {.lex_state = 30}, - [4660] = {.lex_state = 30}, - [4661] = {.lex_state = 249}, - [4662] = {.lex_state = 30}, - [4663] = {.lex_state = 1697}, - [4664] = {.lex_state = 1697}, - [4665] = {.lex_state = 30}, - [4666] = {.lex_state = 30}, - [4667] = {.lex_state = 1762}, - [4668] = {.lex_state = 1627}, - [4669] = {.lex_state = 1761}, - [4670] = {.lex_state = 1697}, - [4671] = {.lex_state = 1697}, - [4672] = {.lex_state = 30}, - [4673] = {.lex_state = 1627}, - [4674] = {.lex_state = 1697}, - [4675] = {.lex_state = 30}, - [4676] = {.lex_state = 1697}, - [4677] = {.lex_state = 1697}, - [4678] = {.lex_state = 1697}, + [4322] = {.lex_state = 1698}, + [4323] = {.lex_state = 61}, + [4324] = {.lex_state = 61}, + [4325] = {.lex_state = 61}, + [4326] = {.lex_state = 1628}, + [4327] = {.lex_state = 61}, + [4328] = {.lex_state = 61}, + [4329] = {.lex_state = 1759}, + [4330] = {.lex_state = 61}, + [4331] = {.lex_state = 1628}, + [4332] = {.lex_state = 59}, + [4333] = {.lex_state = 61}, + [4334] = {.lex_state = 1726}, + [4335] = {.lex_state = 1768}, + [4336] = {.lex_state = 1628}, + [4337] = {.lex_state = 1726}, + [4338] = {.lex_state = 1731}, + [4339] = {.lex_state = 1628}, + [4340] = {.lex_state = 1726}, + [4341] = {.lex_state = 61}, + [4342] = {.lex_state = 1628}, + [4343] = {.lex_state = 61}, + [4344] = {.lex_state = 61}, + [4345] = {.lex_state = 61}, + [4346] = {.lex_state = 1628}, + [4347] = {.lex_state = 1726}, + [4348] = {.lex_state = 59}, + [4349] = {.lex_state = 61}, + [4350] = {.lex_state = 1628}, + [4351] = {.lex_state = 1753}, + [4352] = {.lex_state = 1628}, + [4353] = {.lex_state = 1695}, + [4354] = {.lex_state = 1759}, + [4355] = {.lex_state = 1759}, + [4356] = {.lex_state = 1726}, + [4357] = {.lex_state = 61}, + [4358] = {.lex_state = 1628}, + [4359] = {.lex_state = 1760}, + [4360] = {.lex_state = 1698}, + [4361] = {.lex_state = 1628}, + [4362] = {.lex_state = 1628}, + [4363] = {.lex_state = 61}, + [4364] = {.lex_state = 61}, + [4365] = {.lex_state = 1695}, + [4366] = {.lex_state = 1726}, + [4367] = {.lex_state = 1761}, + [4368] = {.lex_state = 1628}, + [4369] = {.lex_state = 1628}, + [4370] = {.lex_state = 1628}, + [4371] = {.lex_state = 1759}, + [4372] = {.lex_state = 1759}, + [4373] = {.lex_state = 1698}, + [4374] = {.lex_state = 1698}, + [4375] = {.lex_state = 1698}, + [4376] = {.lex_state = 77}, + [4377] = {.lex_state = 77}, + [4378] = {.lex_state = 1698}, + [4379] = {.lex_state = 57}, + [4380] = {.lex_state = 60}, + [4381] = {.lex_state = 1698}, + [4382] = {.lex_state = 1695}, + [4383] = {.lex_state = 1698}, + [4384] = {.lex_state = 1698}, + [4385] = {.lex_state = 1698}, + [4386] = {.lex_state = 77}, + [4387] = {.lex_state = 1695}, + [4388] = {.lex_state = 1759}, + [4389] = {.lex_state = 1698}, + [4390] = {.lex_state = 1698}, + [4391] = {.lex_state = 60}, + [4392] = {.lex_state = 1698}, + [4393] = {.lex_state = 77}, + [4394] = {.lex_state = 1698}, + [4395] = {.lex_state = 61}, + [4396] = {.lex_state = 1698}, + [4397] = {.lex_state = 1698}, + [4398] = {.lex_state = 1698}, + [4399] = {.lex_state = 1698}, + [4400] = {.lex_state = 1698}, + [4401] = {.lex_state = 1628}, + [4402] = {.lex_state = 1698}, + [4403] = {.lex_state = 1698}, + [4404] = {.lex_state = 1698}, + [4405] = {.lex_state = 1698}, + [4406] = {.lex_state = 1731}, + [4407] = {.lex_state = 54}, + [4408] = {.lex_state = 1698}, + [4409] = {.lex_state = 1698}, + [4410] = {.lex_state = 77}, + [4411] = {.lex_state = 1698}, + [4412] = {.lex_state = 1695}, + [4413] = {.lex_state = 1698}, + [4414] = {.lex_state = 1698}, + [4415] = {.lex_state = 1698}, + [4416] = {.lex_state = 54}, + [4417] = {.lex_state = 1628}, + [4418] = {.lex_state = 1628}, + [4419] = {.lex_state = 1731}, + [4420] = {.lex_state = 1698}, + [4421] = {.lex_state = 1698}, + [4422] = {.lex_state = 1698}, + [4423] = {.lex_state = 1698}, + [4424] = {.lex_state = 1698}, + [4425] = {.lex_state = 1698}, + [4426] = {.lex_state = 1698}, + [4427] = {.lex_state = 1698}, + [4428] = {.lex_state = 1698}, + [4429] = {.lex_state = 1698}, + [4430] = {.lex_state = 1698}, + [4431] = {.lex_state = 1695}, + [4432] = {.lex_state = 1698}, + [4433] = {.lex_state = 1698}, + [4434] = {.lex_state = 1698}, + [4435] = {.lex_state = 1698}, + [4436] = {.lex_state = 1695}, + [4437] = {.lex_state = 1698}, + [4438] = {.lex_state = 1695}, + [4439] = {.lex_state = 1698}, + [4440] = {.lex_state = 1695}, + [4441] = {.lex_state = 61}, + [4442] = {.lex_state = 61}, + [4443] = {.lex_state = 1698}, + [4444] = {.lex_state = 1698}, + [4445] = {.lex_state = 1698}, + [4446] = {.lex_state = 1698}, + [4447] = {.lex_state = 1698}, + [4448] = {.lex_state = 1731}, + [4449] = {.lex_state = 1698}, + [4450] = {.lex_state = 1698}, + [4451] = {.lex_state = 1628}, + [4452] = {.lex_state = 1695}, + [4453] = {.lex_state = 1698}, + [4454] = {.lex_state = 1628}, + [4455] = {.lex_state = 1698}, + [4456] = {.lex_state = 1698}, + [4457] = {.lex_state = 1628}, + [4458] = {.lex_state = 1698}, + [4459] = {.lex_state = 1628}, + [4460] = {.lex_state = 1698}, + [4461] = {.lex_state = 54}, + [4462] = {.lex_state = 1698}, + [4463] = {.lex_state = 1698}, + [4464] = {.lex_state = 42}, + [4465] = {.lex_state = 1628}, + [4466] = {.lex_state = 1698}, + [4467] = {.lex_state = 1695}, + [4468] = {.lex_state = 1695}, + [4469] = {.lex_state = 1726}, + [4470] = {.lex_state = 1695}, + [4471] = {.lex_state = 1628}, + [4472] = {.lex_state = 1628}, + [4473] = {.lex_state = 1698}, + [4474] = {.lex_state = 1698}, + [4475] = {.lex_state = 1628}, + [4476] = {.lex_state = 1698}, + [4477] = {.lex_state = 1698}, + [4478] = {.lex_state = 1698}, + [4479] = {.lex_state = 1726}, + [4480] = {.lex_state = 1698}, + [4481] = {.lex_state = 1698}, + [4482] = {.lex_state = 1698}, + [4483] = {.lex_state = 1698}, + [4484] = {.lex_state = 1698}, + [4485] = {.lex_state = 1698}, + [4486] = {.lex_state = 60}, + [4487] = {.lex_state = 1698}, + [4488] = {.lex_state = 1698}, + [4489] = {.lex_state = 1698}, + [4490] = {.lex_state = 42}, + [4491] = {.lex_state = 61}, + [4492] = {.lex_state = 1698}, + [4493] = {.lex_state = 1761}, + [4494] = {.lex_state = 1731}, + [4495] = {.lex_state = 1698}, + [4496] = {.lex_state = 1698}, + [4497] = {.lex_state = 1695}, + [4498] = {.lex_state = 1698}, + [4499] = {.lex_state = 1695}, + [4500] = {.lex_state = 1698}, + [4501] = {.lex_state = 1698}, + [4502] = {.lex_state = 1695}, + [4503] = {.lex_state = 1698}, + [4504] = {.lex_state = 42}, + [4505] = {.lex_state = 1698}, + [4506] = {.lex_state = 1760}, + [4507] = {.lex_state = 1762}, + [4508] = {.lex_state = 60}, + [4509] = {.lex_state = 1698}, + [4510] = {.lex_state = 1726}, + [4511] = {.lex_state = 60}, + [4512] = {.lex_state = 1698}, + [4513] = {.lex_state = 1698}, + [4514] = {.lex_state = 1762}, + [4515] = {.lex_state = 54}, + [4516] = {.lex_state = 60}, + [4517] = {.lex_state = 60}, + [4518] = {.lex_state = 54}, + [4519] = {.lex_state = 42}, + [4520] = {.lex_state = 54}, + [4521] = {.lex_state = 42}, + [4522] = {.lex_state = 1698}, + [4523] = {.lex_state = 1698}, + [4524] = {.lex_state = 60}, + [4525] = {.lex_state = 1698}, + [4526] = {.lex_state = 1698}, + [4527] = {.lex_state = 60}, + [4528] = {.lex_state = 61}, + [4529] = {.lex_state = 1698}, + [4530] = {.lex_state = 61}, + [4531] = {.lex_state = 247}, + [4532] = {.lex_state = 1698}, + [4533] = {.lex_state = 54}, + [4534] = {.lex_state = 54}, + [4535] = {.lex_state = 1698}, + [4536] = {.lex_state = 1698}, + [4537] = {.lex_state = 1698}, + [4538] = {.lex_state = 1628}, + [4539] = {.lex_state = 61}, + [4540] = {.lex_state = 61}, + [4541] = {.lex_state = 61}, + [4542] = {.lex_state = 61}, + [4543] = {.lex_state = 1698}, + [4544] = {.lex_state = 61}, + [4545] = {.lex_state = 1698}, + [4546] = {.lex_state = 30}, + [4547] = {.lex_state = 1698}, + [4548] = {.lex_state = 1698}, + [4549] = {.lex_state = 1698}, + [4550] = {.lex_state = 61}, + [4551] = {.lex_state = 248}, + [4552] = {.lex_state = 61}, + [4553] = {.lex_state = 61}, + [4554] = {.lex_state = 61}, + [4555] = {.lex_state = 61}, + [4556] = {.lex_state = 61}, + [4557] = {.lex_state = 61}, + [4558] = {.lex_state = 61}, + [4559] = {.lex_state = 1698}, + [4560] = {.lex_state = 61}, + [4561] = {.lex_state = 61}, + [4562] = {.lex_state = 1698}, + [4563] = {.lex_state = 1698}, + [4564] = {.lex_state = 61}, + [4565] = {.lex_state = 1628}, + [4566] = {.lex_state = 60}, + [4567] = {.lex_state = 54}, + [4568] = {.lex_state = 1763}, + [4569] = {.lex_state = 1698}, + [4570] = {.lex_state = 61}, + [4571] = {.lex_state = 61}, + [4572] = {.lex_state = 1698}, + [4573] = {.lex_state = 1628}, + [4574] = {.lex_state = 1698}, + [4575] = {.lex_state = 61}, + [4576] = {.lex_state = 1628}, + [4577] = {.lex_state = 61}, + [4578] = {.lex_state = 61}, + [4579] = {.lex_state = 61}, + [4580] = {.lex_state = 1695}, + [4581] = {.lex_state = 65}, + [4582] = {.lex_state = 247}, + [4583] = {.lex_state = 1698}, + [4584] = {.lex_state = 1698}, + [4585] = {.lex_state = 1698}, + [4586] = {.lex_state = 1628}, + [4587] = {.lex_state = 1698}, + [4588] = {.lex_state = 1628}, + [4589] = {.lex_state = 1628}, + [4590] = {.lex_state = 61}, + [4591] = {.lex_state = 1698}, + [4592] = {.lex_state = 1698}, + [4593] = {.lex_state = 1698}, + [4594] = {.lex_state = 61}, + [4595] = {.lex_state = 1698}, + [4596] = {.lex_state = 1698}, + [4597] = {.lex_state = 1698}, + [4598] = {.lex_state = 1698}, + [4599] = {.lex_state = 1628}, + [4600] = {.lex_state = 1628}, + [4601] = {.lex_state = 1698}, + [4602] = {.lex_state = 1628}, + [4603] = {.lex_state = 61}, + [4604] = {.lex_state = 1666}, + [4605] = {.lex_state = 1698}, + [4606] = {.lex_state = 1698}, + [4607] = {.lex_state = 61}, + [4608] = {.lex_state = 251}, + [4609] = {.lex_state = 61}, + [4610] = {.lex_state = 1628}, + [4611] = {.lex_state = 61}, + [4612] = {.lex_state = 1698}, + [4613] = {.lex_state = 1628}, + [4614] = {.lex_state = 1628}, + [4615] = {.lex_state = 1698}, + [4616] = {.lex_state = 1698}, + [4617] = {.lex_state = 1698}, + [4618] = {.lex_state = 61}, + [4619] = {.lex_state = 1628}, + [4620] = {.lex_state = 61}, + [4621] = {.lex_state = 61}, + [4622] = {.lex_state = 61}, + [4623] = {.lex_state = 1762}, + [4624] = {.lex_state = 61}, + [4625] = {.lex_state = 61}, + [4626] = {.lex_state = 1698}, + [4627] = {.lex_state = 61}, + [4628] = {.lex_state = 61}, + [4629] = {.lex_state = 61}, + [4630] = {.lex_state = 1628}, + [4631] = {.lex_state = 1628}, + [4632] = {.lex_state = 1698}, + [4633] = {.lex_state = 30}, + [4634] = {.lex_state = 1698}, + [4635] = {.lex_state = 1698}, + [4636] = {.lex_state = 1698}, + [4637] = {.lex_state = 61}, + [4638] = {.lex_state = 1628}, + [4639] = {.lex_state = 1698}, + [4640] = {.lex_state = 1698}, + [4641] = {.lex_state = 61}, + [4642] = {.lex_state = 1698}, + [4643] = {.lex_state = 61}, + [4644] = {.lex_state = 61}, + [4645] = {.lex_state = 61}, + [4646] = {.lex_state = 61}, + [4647] = {.lex_state = 61}, + [4648] = {.lex_state = 61}, + [4649] = {.lex_state = 1698}, + [4650] = {.lex_state = 61}, + [4651] = {.lex_state = 61}, + [4652] = {.lex_state = 61}, + [4653] = {.lex_state = 1698}, + [4654] = {.lex_state = 1698}, + [4655] = {.lex_state = 61}, + [4656] = {.lex_state = 61}, + [4657] = {.lex_state = 54}, + [4658] = {.lex_state = 61}, + [4659] = {.lex_state = 61}, + [4660] = {.lex_state = 61}, + [4661] = {.lex_state = 61}, + [4662] = {.lex_state = 1628}, + [4663] = {.lex_state = 1698}, + [4664] = {.lex_state = 61}, + [4665] = {.lex_state = 61}, + [4666] = {.lex_state = 61}, + [4667] = {.lex_state = 1698}, + [4668] = {.lex_state = 61}, + [4669] = {.lex_state = 1698}, + [4670] = {.lex_state = 61}, + [4671] = {.lex_state = 61}, + [4672] = {.lex_state = 1698}, + [4673] = {.lex_state = 1698}, + [4674] = {.lex_state = 61}, + [4675] = {.lex_state = 1762}, + [4676] = {.lex_state = 1695}, + [4677] = {.lex_state = 61}, + [4678] = {.lex_state = 250}, [4679] = {.lex_state = 61}, - [4680] = {.lex_state = 1697}, - [4681] = {.lex_state = 1627}, - [4682] = {.lex_state = 55}, - [4683] = {.lex_state = 30}, - [4684] = {.lex_state = 1627}, - [4685] = {.lex_state = 1627}, - [4686] = {.lex_state = 1697}, - [4687] = {.lex_state = 30}, - [4688] = {.lex_state = 30}, - [4689] = {.lex_state = 1694}, - [4690] = {.lex_state = 30}, - [4691] = {.lex_state = 30}, - [4692] = {.lex_state = 1697}, - [4693] = {.lex_state = 30}, - [4694] = {.lex_state = 1697}, - [4695] = {.lex_state = 1762}, - [4696] = {.lex_state = 1697}, - [4697] = {.lex_state = 1697}, - [4698] = {.lex_state = 1627}, - [4699] = {.lex_state = 253}, - [4700] = {.lex_state = 1697}, - [4701] = {.lex_state = 30}, - [4702] = {.lex_state = 30}, - [4703] = {.lex_state = 30}, - [4704] = {.lex_state = 30}, - [4705] = {.lex_state = 1627}, - [4706] = {.lex_state = 30}, - [4707] = {.lex_state = 30}, - [4708] = {.lex_state = 1694}, - [4709] = {.lex_state = 1694}, - [4710] = {.lex_state = 1694}, - [4711] = {.lex_state = 1694}, - [4712] = {.lex_state = 1694}, - [4713] = {.lex_state = 1694}, - [4714] = {.lex_state = 1694}, - [4715] = {.lex_state = 1694}, - [4716] = {.lex_state = 1697}, - [4717] = {.lex_state = 1697}, - [4718] = {.lex_state = 1694}, - [4719] = {.lex_state = 1694}, - [4720] = {.lex_state = 1694}, - [4721] = {.lex_state = 1697}, - [4722] = {.lex_state = 1697}, - [4723] = {.lex_state = 1762}, - [4724] = {.lex_state = 1697}, - [4725] = {.lex_state = 1694}, - [4726] = {.lex_state = 1697}, - [4727] = {.lex_state = 30}, - [4728] = {.lex_state = 30}, - [4729] = {.lex_state = 1697}, - [4730] = {.lex_state = 1697}, - [4731] = {.lex_state = 1697}, - [4732] = {.lex_state = 30}, - [4733] = {.lex_state = 1627}, - [4734] = {.lex_state = 1697}, - [4735] = {.lex_state = 1627}, - [4736] = {.lex_state = 30}, - [4737] = {.lex_state = 30}, - [4738] = {.lex_state = 30}, - [4739] = {.lex_state = 30}, - [4740] = {.lex_state = 1697}, - [4741] = {.lex_state = 30}, - [4742] = {.lex_state = 1697}, - [4743] = {.lex_state = 30}, - [4744] = {.lex_state = 1694}, - [4745] = {.lex_state = 30}, - [4746] = {.lex_state = 30}, - [4747] = {.lex_state = 30}, - [4748] = {.lex_state = 30}, - [4749] = {.lex_state = 30}, - [4750] = {.lex_state = 30}, - [4751] = {.lex_state = 30}, - [4752] = {.lex_state = 30}, - [4753] = {.lex_state = 30}, - [4754] = {.lex_state = 30}, - [4755] = {.lex_state = 30}, - [4756] = {.lex_state = 30}, - [4757] = {.lex_state = 1697}, - [4758] = {.lex_state = 30}, - [4759] = {.lex_state = 30}, - [4760] = {.lex_state = 30}, - [4761] = {.lex_state = 30}, - [4762] = {.lex_state = 30}, - [4763] = {.lex_state = 30}, - [4764] = {.lex_state = 30}, - [4765] = {.lex_state = 30}, - [4766] = {.lex_state = 30}, - [4767] = {.lex_state = 30}, - [4768] = {.lex_state = 1697}, - [4769] = {.lex_state = 30}, - [4770] = {.lex_state = 1697}, - [4771] = {.lex_state = 1697}, - [4772] = {.lex_state = 30}, - [4773] = {.lex_state = 30}, - [4774] = {.lex_state = 1697}, - [4775] = {.lex_state = 1697}, - [4776] = {.lex_state = 30}, - [4777] = {.lex_state = 1762}, - [4778] = {.lex_state = 1697}, - [4779] = {.lex_state = 1697}, - [4780] = {.lex_state = 1665}, - [4781] = {.lex_state = 1697}, - [4782] = {.lex_state = 30}, - [4783] = {.lex_state = 30}, - [4784] = {.lex_state = 30}, - [4785] = {.lex_state = 30}, - [4786] = {.lex_state = 30}, - [4787] = {.lex_state = 30}, - [4788] = {.lex_state = 30}, - [4789] = {.lex_state = 30}, - [4790] = {.lex_state = 30}, - [4791] = {.lex_state = 1697}, - [4792] = {.lex_state = 250}, - [4793] = {.lex_state = 1697}, - [4794] = {.lex_state = 30}, - [4795] = {.lex_state = 246}, - [4796] = {.lex_state = 1697}, - [4797] = {.lex_state = 1697}, - [4798] = {.lex_state = 1697}, - [4799] = {.lex_state = 1697}, - [4800] = {.lex_state = 30}, - [4801] = {.lex_state = 1697}, - [4802] = {.lex_state = 1762}, - [4803] = {.lex_state = 1697}, - [4804] = {.lex_state = 1627}, - [4805] = {.lex_state = 30}, - [4806] = {.lex_state = 30}, - [4807] = {.lex_state = 69}, - [4808] = {.lex_state = 1627}, - [4809] = {.lex_state = 262}, - [4810] = {.lex_state = 257}, - [4811] = {.lex_state = 30}, - [4812] = {.lex_state = 30}, - [4813] = {.lex_state = 1627}, - [4814] = {.lex_state = 1627}, - [4815] = {.lex_state = 1627}, - [4816] = {.lex_state = 1627}, - [4817] = {.lex_state = 1627}, - [4818] = {.lex_state = 248}, - [4819] = {.lex_state = 1627}, - [4820] = {.lex_state = 1627}, - [4821] = {.lex_state = 1627}, - [4822] = {.lex_state = 249}, - [4823] = {.lex_state = 249}, - [4824] = {.lex_state = 249}, - [4825] = {.lex_state = 1627}, - [4826] = {.lex_state = 255}, - [4827] = {.lex_state = 1627}, - [4828] = {.lex_state = 30}, - [4829] = {.lex_state = 255}, - [4830] = {.lex_state = 30}, - [4831] = {.lex_state = 30}, - [4832] = {.lex_state = 30}, - [4833] = {.lex_state = 30}, - [4834] = {.lex_state = 1762}, - [4835] = {.lex_state = 30}, - [4836] = {.lex_state = 1762}, - [4837] = {.lex_state = 1762}, - [4838] = {.lex_state = 1762}, - [4839] = {.lex_state = 30}, - [4840] = {.lex_state = 30}, - [4841] = {.lex_state = 30}, - [4842] = {.lex_state = 1665}, - [4843] = {.lex_state = 30}, - [4844] = {.lex_state = 30}, - [4845] = {.lex_state = 30}, - [4846] = {.lex_state = 30}, - [4847] = {.lex_state = 1665}, - [4848] = {.lex_state = 30}, - [4849] = {.lex_state = 30}, - [4850] = {.lex_state = 30}, - [4851] = {.lex_state = 30}, - [4852] = {.lex_state = 30}, - [4853] = {.lex_state = 30}, - [4854] = {.lex_state = 30}, - [4855] = {.lex_state = 30}, - [4856] = {.lex_state = 30}, - [4857] = {.lex_state = 30}, - [4858] = {.lex_state = 1627}, - [4859] = {.lex_state = 1627}, - [4860] = {.lex_state = 1665}, - [4861] = {.lex_state = 1627}, - [4862] = {.lex_state = 249}, - [4863] = {.lex_state = 1665}, - [4864] = {.lex_state = 1627}, - [4865] = {.lex_state = 5086}, - [4866] = {.lex_state = 1665}, - [4867] = {.lex_state = 1665}, - [4868] = {.lex_state = 5086}, - [4869] = {.lex_state = 1627}, - [4870] = {.lex_state = 69}, - [4871] = {.lex_state = 1627}, - [4872] = {.lex_state = 1627}, - [4873] = {.lex_state = 30}, - [4874] = {.lex_state = 69}, - [4875] = {.lex_state = 1665}, - [4876] = {.lex_state = 30}, - [4877] = {.lex_state = 30}, - [4878] = {.lex_state = 1665}, - [4879] = {.lex_state = 30, .external_lex_state = 2}, - [4880] = {.lex_state = 30}, - [4881] = {.lex_state = 1627}, - [4882] = {.lex_state = 1627}, - [4883] = {.lex_state = 1627}, - [4884] = {.lex_state = 1627}, - [4885] = {.lex_state = 1627}, - [4886] = {.lex_state = 1627}, - [4887] = {.lex_state = 1627}, - [4888] = {.lex_state = 1627}, - [4889] = {.lex_state = 1762}, - [4890] = {.lex_state = 30, .external_lex_state = 2}, - [4891] = {.lex_state = 254}, - [4892] = {.lex_state = 1627}, - [4893] = {.lex_state = 1627}, - [4894] = {.lex_state = 1627}, - [4895] = {.lex_state = 1627}, - [4896] = {.lex_state = 1627}, - [4897] = {.lex_state = 1627}, - [4898] = {.lex_state = 1627}, - [4899] = {.lex_state = 1627}, - [4900] = {.lex_state = 280}, - [4901] = {.lex_state = 5086}, - [4902] = {.lex_state = 30}, - [4903] = {.lex_state = 5086}, - [4904] = {.lex_state = 286}, - [4905] = {.lex_state = 1627}, - [4906] = {.lex_state = 1627}, - [4907] = {.lex_state = 1627}, - [4908] = {.lex_state = 1627}, - [4909] = {.lex_state = 1627}, - [4910] = {.lex_state = 251}, - [4911] = {.lex_state = 1627}, - [4912] = {.lex_state = 1627}, - [4913] = {.lex_state = 1627}, - [4914] = {.lex_state = 1627}, - [4915] = {.lex_state = 1627}, - [4916] = {.lex_state = 1627}, - [4917] = {.lex_state = 1627}, - [4918] = {.lex_state = 1627}, - [4919] = {.lex_state = 1627}, - [4920] = {.lex_state = 246}, - [4921] = {.lex_state = 1627}, - [4922] = {.lex_state = 246}, - [4923] = {.lex_state = 246}, - [4924] = {.lex_state = 246}, - [4925] = {.lex_state = 1627}, - [4926] = {.lex_state = 1627}, - [4927] = {.lex_state = 1627}, - [4928] = {.lex_state = 251}, - [4929] = {.lex_state = 1627}, - [4930] = {.lex_state = 30, .external_lex_state = 2}, - [4931] = {.lex_state = 1627}, - [4932] = {.lex_state = 1627}, - [4933] = {.lex_state = 1627}, - [4934] = {.lex_state = 1627}, - [4935] = {.lex_state = 1627}, - [4936] = {.lex_state = 1627}, - [4937] = {.lex_state = 1627}, - [4938] = {.lex_state = 1627}, - [4939] = {.lex_state = 1627}, - [4940] = {.lex_state = 1627}, - [4941] = {.lex_state = 1627}, - [4942] = {.lex_state = 1627}, - [4943] = {.lex_state = 1627}, - [4944] = {.lex_state = 1627}, - [4945] = {.lex_state = 1627}, - [4946] = {.lex_state = 1627}, - [4947] = {.lex_state = 1665}, - [4948] = {.lex_state = 1627}, - [4949] = {.lex_state = 1627}, - [4950] = {.lex_state = 30}, - [4951] = {.lex_state = 30}, - [4952] = {.lex_state = 30}, - [4953] = {.lex_state = 254}, - [4954] = {.lex_state = 69}, - [4955] = {.lex_state = 249}, - [4956] = {.lex_state = 1694}, - [4957] = {.lex_state = 1694}, - [4958] = {.lex_state = 1694}, - [4959] = {.lex_state = 1694}, - [4960] = {.lex_state = 1694}, - [4961] = {.lex_state = 1694}, - [4962] = {.lex_state = 1694}, - [4963] = {.lex_state = 1694}, - [4964] = {.lex_state = 1694}, - [4965] = {.lex_state = 1694}, - [4966] = {.lex_state = 1694}, - [4967] = {.lex_state = 1694}, - [4968] = {.lex_state = 258}, - [4969] = {.lex_state = 1627}, - [4970] = {.lex_state = 1627}, - [4971] = {.lex_state = 5086}, - [4972] = {.lex_state = 256}, - [4973] = {.lex_state = 1694}, - [4974] = {.lex_state = 1627}, - [4975] = {.lex_state = 1627}, - [4976] = {.lex_state = 30}, - [4977] = {.lex_state = 1729}, - [4978] = {.lex_state = 1629}, - [4979] = {.lex_state = 249}, - [4980] = {.lex_state = 1660}, - [4981] = {.lex_state = 30}, - [4982] = {.lex_state = 1729}, - [4983] = {.lex_state = 287}, - [4984] = {.lex_state = 1729}, - [4985] = {.lex_state = 1729}, - [4986] = {.lex_state = 263}, - [4987] = {.lex_state = 1660}, - [4988] = {.lex_state = 252}, - [4989] = {.lex_state = 1660}, - [4990] = {.lex_state = 30}, - [4991] = {.lex_state = 30, .external_lex_state = 2}, - [4992] = {.lex_state = 30}, - [4993] = {.lex_state = 30}, - [4994] = {.lex_state = 249}, - [4995] = {.lex_state = 308}, - [4996] = {.lex_state = 30}, - [4997] = {.lex_state = 1729}, - [4998] = {.lex_state = 306}, - [4999] = {.lex_state = 1729}, - [5000] = {.lex_state = 1729}, - [5001] = {.lex_state = 62}, - [5002] = {.lex_state = 1729}, - [5003] = {.lex_state = 1729}, - [5004] = {.lex_state = 292}, - [5005] = {.lex_state = 1729}, - [5006] = {.lex_state = 1729}, - [5007] = {.lex_state = 1729}, - [5008] = {.lex_state = 1729}, - [5009] = {.lex_state = 1729}, - [5010] = {.lex_state = 1729}, - [5011] = {.lex_state = 1729}, - [5012] = {.lex_state = 1729}, - [5013] = {.lex_state = 1729}, - [5014] = {.lex_state = 1729}, - [5015] = {.lex_state = 1729}, - [5016] = {.lex_state = 1729}, - [5017] = {.lex_state = 1729}, - [5018] = {.lex_state = 1729}, - [5019] = {.lex_state = 1729}, - [5020] = {.lex_state = 62}, - [5021] = {.lex_state = 263}, - [5022] = {.lex_state = 1627}, - [5023] = {.lex_state = 30}, - [5024] = {.lex_state = 30, .external_lex_state = 2}, - [5025] = {.lex_state = 1729}, - [5026] = {.lex_state = 287}, - [5027] = {.lex_state = 259}, - [5028] = {.lex_state = 1660}, - [5029] = {.lex_state = 1729}, - [5030] = {.lex_state = 259}, - [5031] = {.lex_state = 30, .external_lex_state = 2}, - [5032] = {.lex_state = 1694}, - [5033] = {.lex_state = 281}, - [5034] = {.lex_state = 322}, - [5035] = {.lex_state = 1729}, - [5036] = {.lex_state = 252}, - [5037] = {.lex_state = 314}, - [5038] = {.lex_state = 1729}, - [5039] = {.lex_state = 324}, - [5040] = {.lex_state = 1729}, - [5041] = {.lex_state = 1729}, - [5042] = {.lex_state = 1729}, - [5043] = {.lex_state = 1729}, - [5044] = {.lex_state = 1729}, - [5045] = {.lex_state = 1729}, - [5046] = {.lex_state = 1729}, - [5047] = {.lex_state = 1729}, - [5048] = {.lex_state = 1729}, - [5049] = {.lex_state = 1729}, - [5050] = {.lex_state = 1729}, - [5051] = {.lex_state = 1729}, - [5052] = {.lex_state = 1729}, - [5053] = {.lex_state = 1729}, - [5054] = {.lex_state = 1729}, - [5055] = {.lex_state = 320}, - [5056] = {.lex_state = 1729}, - [5057] = {.lex_state = 72}, - [5058] = {.lex_state = 260}, - [5059] = {.lex_state = 30}, - [5060] = {.lex_state = 1729}, - [5061] = {.lex_state = 30}, - [5062] = {.lex_state = 261}, - [5063] = {.lex_state = 282}, - [5064] = {.lex_state = 1629}, - [5065] = {.lex_state = 71}, - [5066] = {.lex_state = 30}, - [5067] = {.lex_state = 288}, - [5068] = {.lex_state = 261}, - [5069] = {.lex_state = 1729}, - [5070] = {.lex_state = 261}, - [5071] = {.lex_state = 5087}, - [5072] = {.lex_state = 320}, - [5073] = {.lex_state = 309}, - [5074] = {.lex_state = 261}, - [5075] = {.lex_state = 4644}, - [5076] = {.lex_state = 4644}, - [5077] = {.lex_state = 4644}, - [5078] = {.lex_state = 1729}, - [5079] = {.lex_state = 4644}, - [5080] = {.lex_state = 4644}, - [5081] = {.lex_state = 4644}, - [5082] = {.lex_state = 288}, - [5083] = {.lex_state = 1629}, - [5084] = {.lex_state = 1629}, - [5085] = {.lex_state = 4644}, - [5086] = {.lex_state = 4644}, - [5087] = {.lex_state = 5270}, - [5088] = {.lex_state = 5270}, - [5089] = {.lex_state = 5270}, - [5090] = {.lex_state = 4644}, - [5091] = {.lex_state = 4644}, - [5092] = {.lex_state = 1629}, - [5093] = {.lex_state = 4644}, - [5094] = {.lex_state = 4644}, - [5095] = {.lex_state = 5270}, - [5096] = {.lex_state = 4644}, - [5097] = {.lex_state = 4644}, - [5098] = {.lex_state = 1729}, - [5099] = {.lex_state = 320}, - [5100] = {.lex_state = 4644}, - [5101] = {.lex_state = 4644}, - [5102] = {.lex_state = 4644}, - [5103] = {.lex_state = 4644}, - [5104] = {.lex_state = 4644}, - [5105] = {.lex_state = 4644}, - [5106] = {.lex_state = 4644}, - [5107] = {.lex_state = 4644}, - [5108] = {.lex_state = 30}, - [5109] = {.lex_state = 1729}, - [5110] = {.lex_state = 1729}, - [5111] = {.lex_state = 1729}, - [5112] = {.lex_state = 4644}, - [5113] = {.lex_state = 289}, - [5114] = {.lex_state = 5270}, - [5115] = {.lex_state = 5270}, - [5116] = {.lex_state = 320}, - [5117] = {.lex_state = 5270}, - [5118] = {.lex_state = 5270}, - [5119] = {.lex_state = 294}, - [5120] = {.lex_state = 5087}, - [5121] = {.lex_state = 30}, - [5122] = {.lex_state = 5087}, - [5123] = {.lex_state = 323}, - [5124] = {.lex_state = 288}, - [5125] = {.lex_state = 288}, - [5126] = {.lex_state = 260}, - [5127] = {.lex_state = 320}, - [5128] = {.lex_state = 5087}, - [5129] = {.lex_state = 320}, - [5130] = {.lex_state = 260}, - [5131] = {.lex_state = 4644}, - [5132] = {.lex_state = 293}, - [5133] = {.lex_state = 4644}, - [5134] = {.lex_state = 315}, - [5135] = {.lex_state = 4644}, - [5136] = {.lex_state = 1729}, - [5137] = {.lex_state = 260}, - [5138] = {.lex_state = 4644}, - [5139] = {.lex_state = 30}, - [5140] = {.lex_state = 5087}, - [5141] = {.lex_state = 260}, - [5142] = {.lex_state = 320}, - [5143] = {.lex_state = 1729}, - [5144] = {.lex_state = 4644}, - [5145] = {.lex_state = 1729}, - [5146] = {.lex_state = 1729}, - [5147] = {.lex_state = 1729}, - [5148] = {.lex_state = 324}, - [5149] = {.lex_state = 309}, - [5150] = {.lex_state = 4644}, - [5151] = {.lex_state = 1729}, - [5152] = {.lex_state = 288}, - [5153] = {.lex_state = 1729}, - [5154] = {.lex_state = 293}, - [5155] = {.lex_state = 261}, - [5156] = {.lex_state = 4644}, - [5157] = {.lex_state = 1729}, - [5158] = {.lex_state = 1629}, - [5159] = {.lex_state = 325}, - [5160] = {.lex_state = 316}, - [5161] = {.lex_state = 1665}, - [5162] = {.lex_state = 290}, - [5163] = {.lex_state = 325}, - [5164] = {.lex_state = 1629}, - [5165] = {.lex_state = 1729}, - [5166] = {.lex_state = 320}, - [5167] = {.lex_state = 1665}, - [5168] = {.lex_state = 1629}, - [5169] = {.lex_state = 1629}, - [5170] = {.lex_state = 30}, - [5171] = {.lex_state = 30}, - [5172] = {.lex_state = 30}, - [5173] = {.lex_state = 30}, - [5174] = {.lex_state = 30}, - [5175] = {.lex_state = 30}, - [5176] = {.lex_state = 30}, - [5177] = {.lex_state = 30}, - [5178] = {.lex_state = 30}, - [5179] = {.lex_state = 30}, - [5180] = {.lex_state = 30}, - [5181] = {.lex_state = 30}, - [5182] = {.lex_state = 30}, - [5183] = {.lex_state = 30}, - [5184] = {.lex_state = 30}, - [5185] = {.lex_state = 30}, - [5186] = {.lex_state = 30}, - [5187] = {.lex_state = 30}, - [5188] = {.lex_state = 30}, - [5189] = {.lex_state = 30}, - [5190] = {.lex_state = 30}, - [5191] = {.lex_state = 30}, - [5192] = {.lex_state = 1629}, - [5193] = {.lex_state = 1629}, - [5194] = {.lex_state = 320}, - [5195] = {.lex_state = 283}, - [5196] = {.lex_state = 1629}, - [5197] = {.lex_state = 290}, - [5198] = {.lex_state = 1729}, - [5199] = {.lex_state = 1729}, - [5200] = {.lex_state = 1729}, - [5201] = {.lex_state = 1729}, - [5202] = {.lex_state = 1629}, - [5203] = {.lex_state = 1629}, - [5204] = {.lex_state = 318}, - [5205] = {.lex_state = 295}, - [5206] = {.lex_state = 334}, - [5207] = {.lex_state = 1629}, - [5208] = {.lex_state = 1629}, - [5209] = {.lex_state = 1766}, - [5210] = {.lex_state = 1629}, - [5211] = {.lex_state = 1629}, - [5212] = {.lex_state = 1629}, - [5213] = {.lex_state = 1629}, - [5214] = {.lex_state = 1629}, - [5215] = {.lex_state = 1629}, - [5216] = {.lex_state = 1629}, - [5217] = {.lex_state = 1629}, - [5218] = {.lex_state = 1629}, - [5219] = {.lex_state = 1629}, - [5220] = {.lex_state = 1629}, - [5221] = {.lex_state = 294}, - [5222] = {.lex_state = 1629}, - [5223] = {.lex_state = 1629}, - [5224] = {.lex_state = 1629}, - [5225] = {.lex_state = 1629}, - [5226] = {.lex_state = 1629}, - [5227] = {.lex_state = 1629}, - [5228] = {.lex_state = 1629}, - [5229] = {.lex_state = 1629}, - [5230] = {.lex_state = 1629}, - [5231] = {.lex_state = 1629}, - [5232] = {.lex_state = 1629}, - [5233] = {.lex_state = 1629}, - [5234] = {.lex_state = 1629}, - [5235] = {.lex_state = 326}, - [5236] = {.lex_state = 1629}, - [5237] = {.lex_state = 1629}, - [5238] = {.lex_state = 1629}, - [5239] = {.lex_state = 1629}, - [5240] = {.lex_state = 1629}, - [5241] = {.lex_state = 1629}, - [5242] = {.lex_state = 1629}, - [5243] = {.lex_state = 1629}, - [5244] = {.lex_state = 1629}, - [5245] = {.lex_state = 307}, - [5246] = {.lex_state = 30, .external_lex_state = 2}, - [5247] = {.lex_state = 30, .external_lex_state = 2}, - [5248] = {.lex_state = 307}, - [5249] = {.lex_state = 30, .external_lex_state = 2}, - [5250] = {.lex_state = 307}, + [4680] = {.lex_state = 1628}, + [4681] = {.lex_state = 61}, + [4682] = {.lex_state = 61}, + [4683] = {.lex_state = 61}, + [4684] = {.lex_state = 61}, + [4685] = {.lex_state = 61}, + [4686] = {.lex_state = 61}, + [4687] = {.lex_state = 1698}, + [4688] = {.lex_state = 61}, + [4689] = {.lex_state = 61}, + [4690] = {.lex_state = 61}, + [4691] = {.lex_state = 61}, + [4692] = {.lex_state = 61}, + [4693] = {.lex_state = 61}, + [4694] = {.lex_state = 61}, + [4695] = {.lex_state = 1695}, + [4696] = {.lex_state = 1695}, + [4697] = {.lex_state = 1695}, + [4698] = {.lex_state = 1695}, + [4699] = {.lex_state = 1695}, + [4700] = {.lex_state = 1695}, + [4701] = {.lex_state = 1695}, + [4702] = {.lex_state = 1695}, + [4703] = {.lex_state = 61}, + [4704] = {.lex_state = 61}, + [4705] = {.lex_state = 1695}, + [4706] = {.lex_state = 1695}, + [4707] = {.lex_state = 1695}, + [4708] = {.lex_state = 1628}, + [4709] = {.lex_state = 61}, + [4710] = {.lex_state = 61}, + [4711] = {.lex_state = 1698}, + [4712] = {.lex_state = 1695}, + [4713] = {.lex_state = 61}, + [4714] = {.lex_state = 1698}, + [4715] = {.lex_state = 61}, + [4716] = {.lex_state = 61}, + [4717] = {.lex_state = 1763}, + [4718] = {.lex_state = 1698}, + [4719] = {.lex_state = 1628}, + [4720] = {.lex_state = 1698}, + [4721] = {.lex_state = 61}, + [4722] = {.lex_state = 61}, + [4723] = {.lex_state = 1628}, + [4724] = {.lex_state = 1763}, + [4725] = {.lex_state = 1698}, + [4726] = {.lex_state = 61}, + [4727] = {.lex_state = 61}, + [4728] = {.lex_state = 1628}, + [4729] = {.lex_state = 250}, + [4730] = {.lex_state = 1666}, + [4731] = {.lex_state = 1698}, + [4732] = {.lex_state = 1698}, + [4733] = {.lex_state = 254}, + [4734] = {.lex_state = 1698}, + [4735] = {.lex_state = 1698}, + [4736] = {.lex_state = 1628}, + [4737] = {.lex_state = 1763}, + [4738] = {.lex_state = 1628}, + [4739] = {.lex_state = 1698}, + [4740] = {.lex_state = 1698}, + [4741] = {.lex_state = 1628}, + [4742] = {.lex_state = 1698}, + [4743] = {.lex_state = 1698}, + [4744] = {.lex_state = 1698}, + [4745] = {.lex_state = 1628}, + [4746] = {.lex_state = 1698}, + [4747] = {.lex_state = 1698}, + [4748] = {.lex_state = 1698}, + [4749] = {.lex_state = 1698}, + [4750] = {.lex_state = 1698}, + [4751] = {.lex_state = 1698}, + [4752] = {.lex_state = 1698}, + [4753] = {.lex_state = 61}, + [4754] = {.lex_state = 1695}, + [4755] = {.lex_state = 1698}, + [4756] = {.lex_state = 61}, + [4757] = {.lex_state = 61}, + [4758] = {.lex_state = 61}, + [4759] = {.lex_state = 61}, + [4760] = {.lex_state = 61}, + [4761] = {.lex_state = 1763}, + [4762] = {.lex_state = 61}, + [4763] = {.lex_state = 1698}, + [4764] = {.lex_state = 61}, + [4765] = {.lex_state = 61}, + [4766] = {.lex_state = 61}, + [4767] = {.lex_state = 61}, + [4768] = {.lex_state = 1698}, + [4769] = {.lex_state = 1698}, + [4770] = {.lex_state = 1628}, + [4771] = {.lex_state = 1628}, + [4772] = {.lex_state = 1698}, + [4773] = {.lex_state = 1628}, + [4774] = {.lex_state = 1628}, + [4775] = {.lex_state = 61}, + [4776] = {.lex_state = 1628}, + [4777] = {.lex_state = 1628}, + [4778] = {.lex_state = 1698}, + [4779] = {.lex_state = 61}, + [4780] = {.lex_state = 251}, + [4781] = {.lex_state = 1698}, + [4782] = {.lex_state = 1628}, + [4783] = {.lex_state = 1698}, + [4784] = {.lex_state = 61}, + [4785] = {.lex_state = 1698}, + [4786] = {.lex_state = 1698}, + [4787] = {.lex_state = 1698}, + [4788] = {.lex_state = 1698}, + [4789] = {.lex_state = 61}, + [4790] = {.lex_state = 61}, + [4791] = {.lex_state = 1628}, + [4792] = {.lex_state = 1628}, + [4793] = {.lex_state = 61}, + [4794] = {.lex_state = 61}, + [4795] = {.lex_state = 68}, + [4796] = {.lex_state = 1628}, + [4797] = {.lex_state = 263}, + [4798] = {.lex_state = 61}, + [4799] = {.lex_state = 61}, + [4800] = {.lex_state = 1628}, + [4801] = {.lex_state = 1628}, + [4802] = {.lex_state = 1628}, + [4803] = {.lex_state = 1628}, + [4804] = {.lex_state = 1628}, + [4805] = {.lex_state = 249}, + [4806] = {.lex_state = 1628}, + [4807] = {.lex_state = 1628}, + [4808] = {.lex_state = 1628}, + [4809] = {.lex_state = 250}, + [4810] = {.lex_state = 250}, + [4811] = {.lex_state = 250}, + [4812] = {.lex_state = 1628}, + [4813] = {.lex_state = 256}, + [4814] = {.lex_state = 1628}, + [4815] = {.lex_state = 61}, + [4816] = {.lex_state = 256}, + [4817] = {.lex_state = 1763}, + [4818] = {.lex_state = 61}, + [4819] = {.lex_state = 61}, + [4820] = {.lex_state = 1763}, + [4821] = {.lex_state = 61}, + [4822] = {.lex_state = 61}, + [4823] = {.lex_state = 1763}, + [4824] = {.lex_state = 61}, + [4825] = {.lex_state = 1763}, + [4826] = {.lex_state = 61}, + [4827] = {.lex_state = 61}, + [4828] = {.lex_state = 61}, + [4829] = {.lex_state = 1666}, + [4830] = {.lex_state = 61}, + [4831] = {.lex_state = 61}, + [4832] = {.lex_state = 61}, + [4833] = {.lex_state = 61}, + [4834] = {.lex_state = 1666}, + [4835] = {.lex_state = 61}, + [4836] = {.lex_state = 61}, + [4837] = {.lex_state = 61}, + [4838] = {.lex_state = 61}, + [4839] = {.lex_state = 61}, + [4840] = {.lex_state = 61}, + [4841] = {.lex_state = 61}, + [4842] = {.lex_state = 61}, + [4843] = {.lex_state = 61}, + [4844] = {.lex_state = 61}, + [4845] = {.lex_state = 1628}, + [4846] = {.lex_state = 1628}, + [4847] = {.lex_state = 1666}, + [4848] = {.lex_state = 1628}, + [4849] = {.lex_state = 250}, + [4850] = {.lex_state = 1666}, + [4851] = {.lex_state = 1628}, + [4852] = {.lex_state = 5087}, + [4853] = {.lex_state = 1666}, + [4854] = {.lex_state = 1666}, + [4855] = {.lex_state = 5087}, + [4856] = {.lex_state = 68}, + [4857] = {.lex_state = 1628}, + [4858] = {.lex_state = 68}, + [4859] = {.lex_state = 1628}, + [4860] = {.lex_state = 1628}, + [4861] = {.lex_state = 1666}, + [4862] = {.lex_state = 61}, + [4863] = {.lex_state = 61}, + [4864] = {.lex_state = 61}, + [4865] = {.lex_state = 1666}, + [4866] = {.lex_state = 30, .external_lex_state = 2}, + [4867] = {.lex_state = 61}, + [4868] = {.lex_state = 1628}, + [4869] = {.lex_state = 1628}, + [4870] = {.lex_state = 1628}, + [4871] = {.lex_state = 1628}, + [4872] = {.lex_state = 1628}, + [4873] = {.lex_state = 1628}, + [4874] = {.lex_state = 1628}, + [4875] = {.lex_state = 1628}, + [4876] = {.lex_state = 30, .external_lex_state = 2}, + [4877] = {.lex_state = 1763}, + [4878] = {.lex_state = 255}, + [4879] = {.lex_state = 1628}, + [4880] = {.lex_state = 1628}, + [4881] = {.lex_state = 1628}, + [4882] = {.lex_state = 1628}, + [4883] = {.lex_state = 1628}, + [4884] = {.lex_state = 1628}, + [4885] = {.lex_state = 5087}, + [4886] = {.lex_state = 1628}, + [4887] = {.lex_state = 1628}, + [4888] = {.lex_state = 281}, + [4889] = {.lex_state = 61}, + [4890] = {.lex_state = 5087}, + [4891] = {.lex_state = 287}, + [4892] = {.lex_state = 1628}, + [4893] = {.lex_state = 1628}, + [4894] = {.lex_state = 1628}, + [4895] = {.lex_state = 1628}, + [4896] = {.lex_state = 1628}, + [4897] = {.lex_state = 252}, + [4898] = {.lex_state = 1628}, + [4899] = {.lex_state = 1628}, + [4900] = {.lex_state = 1628}, + [4901] = {.lex_state = 1628}, + [4902] = {.lex_state = 1628}, + [4903] = {.lex_state = 1628}, + [4904] = {.lex_state = 1628}, + [4905] = {.lex_state = 247}, + [4906] = {.lex_state = 1628}, + [4907] = {.lex_state = 247}, + [4908] = {.lex_state = 247}, + [4909] = {.lex_state = 247}, + [4910] = {.lex_state = 1628}, + [4911] = {.lex_state = 1628}, + [4912] = {.lex_state = 1628}, + [4913] = {.lex_state = 1628}, + [4914] = {.lex_state = 1628}, + [4915] = {.lex_state = 30, .external_lex_state = 2}, + [4916] = {.lex_state = 252}, + [4917] = {.lex_state = 1628}, + [4918] = {.lex_state = 1628}, + [4919] = {.lex_state = 1628}, + [4920] = {.lex_state = 1628}, + [4921] = {.lex_state = 1628}, + [4922] = {.lex_state = 1628}, + [4923] = {.lex_state = 1628}, + [4924] = {.lex_state = 1628}, + [4925] = {.lex_state = 1628}, + [4926] = {.lex_state = 1628}, + [4927] = {.lex_state = 1628}, + [4928] = {.lex_state = 1628}, + [4929] = {.lex_state = 1628}, + [4930] = {.lex_state = 1628}, + [4931] = {.lex_state = 1628}, + [4932] = {.lex_state = 1628}, + [4933] = {.lex_state = 1628}, + [4934] = {.lex_state = 1666}, + [4935] = {.lex_state = 1628}, + [4936] = {.lex_state = 1628}, + [4937] = {.lex_state = 61}, + [4938] = {.lex_state = 61}, + [4939] = {.lex_state = 61}, + [4940] = {.lex_state = 255}, + [4941] = {.lex_state = 1695}, + [4942] = {.lex_state = 68}, + [4943] = {.lex_state = 1695}, + [4944] = {.lex_state = 1695}, + [4945] = {.lex_state = 1695}, + [4946] = {.lex_state = 1695}, + [4947] = {.lex_state = 1695}, + [4948] = {.lex_state = 1695}, + [4949] = {.lex_state = 1695}, + [4950] = {.lex_state = 1695}, + [4951] = {.lex_state = 1695}, + [4952] = {.lex_state = 1695}, + [4953] = {.lex_state = 250}, + [4954] = {.lex_state = 1695}, + [4955] = {.lex_state = 259}, + [4956] = {.lex_state = 1628}, + [4957] = {.lex_state = 1628}, + [4958] = {.lex_state = 5087}, + [4959] = {.lex_state = 1695}, + [4960] = {.lex_state = 257}, + [4961] = {.lex_state = 1628}, + [4962] = {.lex_state = 258}, + [4963] = {.lex_state = 1730}, + [4964] = {.lex_state = 1630}, + [4965] = {.lex_state = 1661}, + [4966] = {.lex_state = 1730}, + [4967] = {.lex_state = 250}, + [4968] = {.lex_state = 1730}, + [4969] = {.lex_state = 288}, + [4970] = {.lex_state = 30}, + [4971] = {.lex_state = 61}, + [4972] = {.lex_state = 1661}, + [4973] = {.lex_state = 264}, + [4974] = {.lex_state = 1661}, + [4975] = {.lex_state = 282}, + [4976] = {.lex_state = 1730}, + [4977] = {.lex_state = 1730}, + [4978] = {.lex_state = 61}, + [4979] = {.lex_state = 1730}, + [4980] = {.lex_state = 250}, + [4981] = {.lex_state = 61}, + [4982] = {.lex_state = 1730}, + [4983] = {.lex_state = 61}, + [4984] = {.lex_state = 309}, + [4985] = {.lex_state = 253}, + [4986] = {.lex_state = 264}, + [4987] = {.lex_state = 1730}, + [4988] = {.lex_state = 307}, + [4989] = {.lex_state = 1730}, + [4990] = {.lex_state = 315}, + [4991] = {.lex_state = 1730}, + [4992] = {.lex_state = 1730}, + [4993] = {.lex_state = 1730}, + [4994] = {.lex_state = 1730}, + [4995] = {.lex_state = 1730}, + [4996] = {.lex_state = 1730}, + [4997] = {.lex_state = 1730}, + [4998] = {.lex_state = 1730}, + [4999] = {.lex_state = 1730}, + [5000] = {.lex_state = 1730}, + [5001] = {.lex_state = 1730}, + [5002] = {.lex_state = 1730}, + [5003] = {.lex_state = 1730}, + [5004] = {.lex_state = 1730}, + [5005] = {.lex_state = 1730}, + [5006] = {.lex_state = 1730}, + [5007] = {.lex_state = 1730}, + [5008] = {.lex_state = 30}, + [5009] = {.lex_state = 293}, + [5010] = {.lex_state = 1628}, + [5011] = {.lex_state = 30, .external_lex_state = 2}, + [5012] = {.lex_state = 30, .external_lex_state = 2}, + [5013] = {.lex_state = 61}, + [5014] = {.lex_state = 61}, + [5015] = {.lex_state = 260}, + [5016] = {.lex_state = 1661}, + [5017] = {.lex_state = 61}, + [5018] = {.lex_state = 30, .external_lex_state = 2}, + [5019] = {.lex_state = 288}, + [5020] = {.lex_state = 260}, + [5021] = {.lex_state = 1695}, + [5022] = {.lex_state = 1730}, + [5023] = {.lex_state = 323}, + [5024] = {.lex_state = 253}, + [5025] = {.lex_state = 1730}, + [5026] = {.lex_state = 289}, + [5027] = {.lex_state = 1730}, + [5028] = {.lex_state = 310}, + [5029] = {.lex_state = 1730}, + [5030] = {.lex_state = 1730}, + [5031] = {.lex_state = 1730}, + [5032] = {.lex_state = 1730}, + [5033] = {.lex_state = 1730}, + [5034] = {.lex_state = 1730}, + [5035] = {.lex_state = 1730}, + [5036] = {.lex_state = 1730}, + [5037] = {.lex_state = 1730}, + [5038] = {.lex_state = 1730}, + [5039] = {.lex_state = 1730}, + [5040] = {.lex_state = 1730}, + [5041] = {.lex_state = 1730}, + [5042] = {.lex_state = 1730}, + [5043] = {.lex_state = 1730}, + [5044] = {.lex_state = 289}, + [5045] = {.lex_state = 321}, + [5046] = {.lex_state = 262}, + [5047] = {.lex_state = 321}, + [5048] = {.lex_state = 5271}, + [5049] = {.lex_state = 1730}, + [5050] = {.lex_state = 310}, + [5051] = {.lex_state = 1730}, + [5052] = {.lex_state = 283}, + [5053] = {.lex_state = 295}, + [5054] = {.lex_state = 1730}, + [5055] = {.lex_state = 1730}, + [5056] = {.lex_state = 262}, + [5057] = {.lex_state = 262}, + [5058] = {.lex_state = 30}, + [5059] = {.lex_state = 1730}, + [5060] = {.lex_state = 321}, + [5061] = {.lex_state = 5271}, + [5062] = {.lex_state = 262}, + [5063] = {.lex_state = 5088}, + [5064] = {.lex_state = 4645}, + [5065] = {.lex_state = 4645}, + [5066] = {.lex_state = 5088}, + [5067] = {.lex_state = 4645}, + [5068] = {.lex_state = 4645}, + [5069] = {.lex_state = 4645}, + [5070] = {.lex_state = 1730}, + [5071] = {.lex_state = 4645}, + [5072] = {.lex_state = 4645}, + [5073] = {.lex_state = 4645}, + [5074] = {.lex_state = 289}, + [5075] = {.lex_state = 5271}, + [5076] = {.lex_state = 5271}, + [5077] = {.lex_state = 1630}, + [5078] = {.lex_state = 262}, + [5079] = {.lex_state = 4645}, + [5080] = {.lex_state = 4645}, + [5081] = {.lex_state = 1630}, + [5082] = {.lex_state = 4645}, + [5083] = {.lex_state = 4645}, + [5084] = {.lex_state = 4645}, + [5085] = {.lex_state = 4645}, + [5086] = {.lex_state = 324}, + [5087] = {.lex_state = 4645}, + [5088] = {.lex_state = 4645}, + [5089] = {.lex_state = 5271}, + [5090] = {.lex_state = 4645}, + [5091] = {.lex_state = 4645}, + [5092] = {.lex_state = 4645}, + [5093] = {.lex_state = 4645}, + [5094] = {.lex_state = 4645}, + [5095] = {.lex_state = 4645}, + [5096] = {.lex_state = 4645}, + [5097] = {.lex_state = 30}, + [5098] = {.lex_state = 1630}, + [5099] = {.lex_state = 1730}, + [5100] = {.lex_state = 30}, + [5101] = {.lex_state = 289}, + [5102] = {.lex_state = 71}, + [5103] = {.lex_state = 1730}, + [5104] = {.lex_state = 5271}, + [5105] = {.lex_state = 5271}, + [5106] = {.lex_state = 1730}, + [5107] = {.lex_state = 70}, + [5108] = {.lex_state = 4645}, + [5109] = {.lex_state = 61}, + [5110] = {.lex_state = 4645}, + [5111] = {.lex_state = 4645}, + [5112] = {.lex_state = 321}, + [5113] = {.lex_state = 5088}, + [5114] = {.lex_state = 289}, + [5115] = {.lex_state = 261}, + [5116] = {.lex_state = 261}, + [5117] = {.lex_state = 1630}, + [5118] = {.lex_state = 1730}, + [5119] = {.lex_state = 61}, + [5120] = {.lex_state = 261}, + [5121] = {.lex_state = 4645}, + [5122] = {.lex_state = 316}, + [5123] = {.lex_state = 4645}, + [5124] = {.lex_state = 294}, + [5125] = {.lex_state = 1730}, + [5126] = {.lex_state = 4645}, + [5127] = {.lex_state = 261}, + [5128] = {.lex_state = 1730}, + [5129] = {.lex_state = 321}, + [5130] = {.lex_state = 5088}, + [5131] = {.lex_state = 261}, + [5132] = {.lex_state = 5088}, + [5133] = {.lex_state = 290}, + [5134] = {.lex_state = 325}, + [5135] = {.lex_state = 321}, + [5136] = {.lex_state = 30}, + [5137] = {.lex_state = 325}, + [5138] = {.lex_state = 4645}, + [5139] = {.lex_state = 1730}, + [5140] = {.lex_state = 321}, + [5141] = {.lex_state = 1730}, + [5142] = {.lex_state = 294}, + [5143] = {.lex_state = 5271}, + [5144] = {.lex_state = 308}, + [5145] = {.lex_state = 1630}, + [5146] = {.lex_state = 1630}, + [5147] = {.lex_state = 30, .external_lex_state = 2}, + [5148] = {.lex_state = 30, .external_lex_state = 2}, + [5149] = {.lex_state = 1730}, + [5150] = {.lex_state = 317}, + [5151] = {.lex_state = 1630}, + [5152] = {.lex_state = 1730}, + [5153] = {.lex_state = 1630}, + [5154] = {.lex_state = 291}, + [5155] = {.lex_state = 1730}, + [5156] = {.lex_state = 1733}, + [5157] = {.lex_state = 1630}, + [5158] = {.lex_state = 308}, + [5159] = {.lex_state = 1730}, + [5160] = {.lex_state = 1630}, + [5161] = {.lex_state = 1730}, + [5162] = {.lex_state = 1730}, + [5163] = {.lex_state = 308}, + [5164] = {.lex_state = 321}, + [5165] = {.lex_state = 72}, + [5166] = {.lex_state = 1630}, + [5167] = {.lex_state = 319}, + [5168] = {.lex_state = 295}, + [5169] = {.lex_state = 1630}, + [5170] = {.lex_state = 72}, + [5171] = {.lex_state = 321}, + [5172] = {.lex_state = 284}, + [5173] = {.lex_state = 1630}, + [5174] = {.lex_state = 335}, + [5175] = {.lex_state = 295}, + [5176] = {.lex_state = 1630}, + [5177] = {.lex_state = 326}, + [5178] = {.lex_state = 1666}, + [5179] = {.lex_state = 291}, + [5180] = {.lex_state = 1630}, + [5181] = {.lex_state = 1630}, + [5182] = {.lex_state = 1767}, + [5183] = {.lex_state = 1630}, + [5184] = {.lex_state = 1630}, + [5185] = {.lex_state = 1630}, + [5186] = {.lex_state = 1630}, + [5187] = {.lex_state = 1630}, + [5188] = {.lex_state = 1630}, + [5189] = {.lex_state = 1630}, + [5190] = {.lex_state = 1630}, + [5191] = {.lex_state = 1630}, + [5192] = {.lex_state = 1630}, + [5193] = {.lex_state = 1630}, + [5194] = {.lex_state = 1630}, + [5195] = {.lex_state = 1630}, + [5196] = {.lex_state = 1630}, + [5197] = {.lex_state = 1630}, + [5198] = {.lex_state = 329}, + [5199] = {.lex_state = 326}, + [5200] = {.lex_state = 1630}, + [5201] = {.lex_state = 1630}, + [5202] = {.lex_state = 1630}, + [5203] = {.lex_state = 1630}, + [5204] = {.lex_state = 1630}, + [5205] = {.lex_state = 1630}, + [5206] = {.lex_state = 1630}, + [5207] = {.lex_state = 1630}, + [5208] = {.lex_state = 1630}, + [5209] = {.lex_state = 1630}, + [5210] = {.lex_state = 1630}, + [5211] = {.lex_state = 1630}, + [5212] = {.lex_state = 1630}, + [5213] = {.lex_state = 1630}, + [5214] = {.lex_state = 1630}, + [5215] = {.lex_state = 1630}, + [5216] = {.lex_state = 1630}, + [5217] = {.lex_state = 327}, + [5218] = {.lex_state = 1630}, + [5219] = {.lex_state = 1666}, + [5220] = {.lex_state = 30, .external_lex_state = 2}, + [5221] = {.lex_state = 1630}, + [5222] = {.lex_state = 1630}, + [5223] = {.lex_state = 1630}, + [5224] = {.lex_state = 30, .external_lex_state = 2}, + [5225] = {.lex_state = 1630}, + [5226] = {.lex_state = 1730}, + [5227] = {.lex_state = 30, .external_lex_state = 2}, + [5228] = {.lex_state = 308}, + [5229] = {.lex_state = 1730}, + [5230] = {.lex_state = 296}, + [5231] = {.lex_state = 308}, + [5232] = {.lex_state = 61}, + [5233] = {.lex_state = 30}, + [5234] = {.lex_state = 1630}, + [5235] = {.lex_state = 30}, + [5236] = {.lex_state = 30}, + [5237] = {.lex_state = 30}, + [5238] = {.lex_state = 30}, + [5239] = {.lex_state = 30}, + [5240] = {.lex_state = 30, .external_lex_state = 2}, + [5241] = {.lex_state = 30}, + [5242] = {.lex_state = 30}, + [5243] = {.lex_state = 30, .external_lex_state = 2}, + [5244] = {.lex_state = 30}, + [5245] = {.lex_state = 30}, + [5246] = {.lex_state = 30}, + [5247] = {.lex_state = 30}, + [5248] = {.lex_state = 30}, + [5249] = {.lex_state = 30}, + [5250] = {.lex_state = 30}, [5251] = {.lex_state = 30}, - [5252] = {.lex_state = 30, .external_lex_state = 2}, - [5253] = {.lex_state = 30, .external_lex_state = 2}, - [5254] = {.lex_state = 1629}, - [5255] = {.lex_state = 1629}, - [5256] = {.lex_state = 307}, - [5257] = {.lex_state = 30, .external_lex_state = 2}, - [5258] = {.lex_state = 30, .external_lex_state = 2}, - [5259] = {.lex_state = 1732}, - [5260] = {.lex_state = 1629}, - [5261] = {.lex_state = 73}, - [5262] = {.lex_state = 326}, - [5263] = {.lex_state = 1629}, - [5264] = {.lex_state = 326}, - [5265] = {.lex_state = 307}, - [5266] = {.lex_state = 326}, - [5267] = {.lex_state = 73}, - [5268] = {.lex_state = 326}, - [5269] = {.lex_state = 1729}, - [5270] = {.lex_state = 294}, - [5271] = {.lex_state = 1729}, - [5272] = {.lex_state = 294}, - [5273] = {.lex_state = 1629}, - [5274] = {.lex_state = 1629}, - [5275] = {.lex_state = 328}, - [5276] = {.lex_state = 294}, - [5277] = {.lex_state = 1629}, - [5278] = {.lex_state = 238, .external_lex_state = 2}, + [5252] = {.lex_state = 327}, + [5253] = {.lex_state = 30}, + [5254] = {.lex_state = 30}, + [5255] = {.lex_state = 327}, + [5256] = {.lex_state = 295}, + [5257] = {.lex_state = 30}, + [5258] = {.lex_state = 30}, + [5259] = {.lex_state = 327}, + [5260] = {.lex_state = 30}, + [5261] = {.lex_state = 30}, + [5262] = {.lex_state = 327}, + [5263] = {.lex_state = 295}, + [5264] = {.lex_state = 1630}, + [5265] = {.lex_state = 239, .external_lex_state = 2}, + [5266] = {.lex_state = 238, .external_lex_state = 2}, + [5267] = {.lex_state = 238, .external_lex_state = 2}, + [5268] = {.lex_state = 238, .external_lex_state = 2}, + [5269] = {.lex_state = 238, .external_lex_state = 2}, + [5270] = {.lex_state = 330}, + [5271] = {.lex_state = 1730}, + [5272] = {.lex_state = 318}, + [5273] = {.lex_state = 238, .external_lex_state = 2}, + [5274] = {.lex_state = 238, .external_lex_state = 2}, + [5275] = {.lex_state = 238, .external_lex_state = 2}, + [5276] = {.lex_state = 238, .external_lex_state = 2}, + [5277] = {.lex_state = 238, .external_lex_state = 2}, + [5278] = {.lex_state = 321}, [5279] = {.lex_state = 238, .external_lex_state = 2}, - [5280] = {.lex_state = 320}, - [5281] = {.lex_state = 1766}, - [5282] = {.lex_state = 1729}, - [5283] = {.lex_state = 1730}, - [5284] = {.lex_state = 30}, - [5285] = {.lex_state = 74}, - [5286] = {.lex_state = 30}, - [5287] = {.lex_state = 30}, - [5288] = {.lex_state = 30}, - [5289] = {.lex_state = 320}, - [5290] = {.lex_state = 1763}, - [5291] = {.lex_state = 1771}, - [5292] = {.lex_state = 237, .external_lex_state = 2}, - [5293] = {.lex_state = 327}, - [5294] = {.lex_state = 291}, - [5295] = {.lex_state = 237, .external_lex_state = 2}, - [5296] = {.lex_state = 237, .external_lex_state = 2}, - [5297] = {.lex_state = 237, .external_lex_state = 2}, - [5298] = {.lex_state = 291}, - [5299] = {.lex_state = 237, .external_lex_state = 2}, - [5300] = {.lex_state = 296}, - [5301] = {.lex_state = 335}, - [5302] = {.lex_state = 237, .external_lex_state = 2}, - [5303] = {.lex_state = 329}, - [5304] = {.lex_state = 237, .external_lex_state = 2}, - [5305] = {.lex_state = 237, .external_lex_state = 2}, - [5306] = {.lex_state = 237, .external_lex_state = 2}, - [5307] = {.lex_state = 237, .external_lex_state = 2}, - [5308] = {.lex_state = 237, .external_lex_state = 2}, - [5309] = {.lex_state = 327}, - [5310] = {.lex_state = 237, .external_lex_state = 2}, - [5311] = {.lex_state = 237, .external_lex_state = 2}, - [5312] = {.lex_state = 237, .external_lex_state = 2}, - [5313] = {.lex_state = 237, .external_lex_state = 2}, - [5314] = {.lex_state = 237, .external_lex_state = 2}, - [5315] = {.lex_state = 237, .external_lex_state = 2}, - [5316] = {.lex_state = 237, .external_lex_state = 2}, - [5317] = {.lex_state = 237, .external_lex_state = 2}, - [5318] = {.lex_state = 237, .external_lex_state = 2}, - [5319] = {.lex_state = 237, .external_lex_state = 2}, - [5320] = {.lex_state = 237, .external_lex_state = 2}, - [5321] = {.lex_state = 237, .external_lex_state = 2}, - [5322] = {.lex_state = 237, .external_lex_state = 2}, - [5323] = {.lex_state = 237, .external_lex_state = 2}, - [5324] = {.lex_state = 237, .external_lex_state = 2}, - [5325] = {.lex_state = 237, .external_lex_state = 2}, - [5326] = {.lex_state = 237, .external_lex_state = 2}, - [5327] = {.lex_state = 237, .external_lex_state = 2}, - [5328] = {.lex_state = 237, .external_lex_state = 2}, - [5329] = {.lex_state = 237, .external_lex_state = 2}, - [5330] = {.lex_state = 237, .external_lex_state = 2}, - [5331] = {.lex_state = 237, .external_lex_state = 2}, - [5332] = {.lex_state = 237, .external_lex_state = 2}, - [5333] = {.lex_state = 237, .external_lex_state = 2}, - [5334] = {.lex_state = 237, .external_lex_state = 2}, - [5335] = {.lex_state = 237, .external_lex_state = 2}, - [5336] = {.lex_state = 237, .external_lex_state = 2}, - [5337] = {.lex_state = 237, .external_lex_state = 2}, - [5338] = {.lex_state = 237, .external_lex_state = 2}, - [5339] = {.lex_state = 237, .external_lex_state = 2}, - [5340] = {.lex_state = 237, .external_lex_state = 2}, - [5341] = {.lex_state = 237, .external_lex_state = 2}, - [5342] = {.lex_state = 1732}, - [5343] = {.lex_state = 238, .external_lex_state = 2}, - [5344] = {.lex_state = 1729}, - [5345] = {.lex_state = 237, .external_lex_state = 2}, - [5346] = {.lex_state = 291}, - [5347] = {.lex_state = 1771}, - [5348] = {.lex_state = 237, .external_lex_state = 2}, - [5349] = {.lex_state = 296}, - [5350] = {.lex_state = 317}, - [5351] = {.lex_state = 1729}, - [5352] = {.lex_state = 327}, - [5353] = {.lex_state = 69}, - [5354] = {.lex_state = 238, .external_lex_state = 2}, - [5355] = {.lex_state = 237, .external_lex_state = 2}, - [5356] = {.lex_state = 1771}, + [5280] = {.lex_state = 73}, + [5281] = {.lex_state = 238, .external_lex_state = 2}, + [5282] = {.lex_state = 238, .external_lex_state = 2}, + [5283] = {.lex_state = 68}, + [5284] = {.lex_state = 238, .external_lex_state = 2}, + [5285] = {.lex_state = 1730}, + [5286] = {.lex_state = 239, .external_lex_state = 2}, + [5287] = {.lex_state = 292}, + [5288] = {.lex_state = 238, .external_lex_state = 2}, + [5289] = {.lex_state = 238, .external_lex_state = 2}, + [5290] = {.lex_state = 238, .external_lex_state = 2}, + [5291] = {.lex_state = 321}, + [5292] = {.lex_state = 238, .external_lex_state = 2}, + [5293] = {.lex_state = 239, .external_lex_state = 2}, + [5294] = {.lex_state = 1731}, + [5295] = {.lex_state = 239, .external_lex_state = 2}, + [5296] = {.lex_state = 238, .external_lex_state = 2}, + [5297] = {.lex_state = 238, .external_lex_state = 2}, + [5298] = {.lex_state = 1764}, + [5299] = {.lex_state = 239, .external_lex_state = 2}, + [5300] = {.lex_state = 73}, + [5301] = {.lex_state = 238, .external_lex_state = 2}, + [5302] = {.lex_state = 238, .external_lex_state = 2}, + [5303] = {.lex_state = 238, .external_lex_state = 2}, + [5304] = {.lex_state = 239, .external_lex_state = 2}, + [5305] = {.lex_state = 238, .external_lex_state = 2}, + [5306] = {.lex_state = 238, .external_lex_state = 2}, + [5307] = {.lex_state = 328}, + [5308] = {.lex_state = 1765}, + [5309] = {.lex_state = 73}, + [5310] = {.lex_state = 239, .external_lex_state = 2}, + [5311] = {.lex_state = 1772}, + [5312] = {.lex_state = 238, .external_lex_state = 2}, + [5313] = {.lex_state = 328}, + [5314] = {.lex_state = 1767}, + [5315] = {.lex_state = 238, .external_lex_state = 2}, + [5316] = {.lex_state = 239, .external_lex_state = 2}, + [5317] = {.lex_state = 1730}, + [5318] = {.lex_state = 328}, + [5319] = {.lex_state = 328}, + [5320] = {.lex_state = 297}, + [5321] = {.lex_state = 239, .external_lex_state = 2}, + [5322] = {.lex_state = 292}, + [5323] = {.lex_state = 61}, + [5324] = {.lex_state = 336}, + [5325] = {.lex_state = 238, .external_lex_state = 2}, + [5326] = {.lex_state = 239, .external_lex_state = 2}, + [5327] = {.lex_state = 238, .external_lex_state = 2}, + [5328] = {.lex_state = 1772}, + [5329] = {.lex_state = 297}, + [5330] = {.lex_state = 239, .external_lex_state = 2}, + [5331] = {.lex_state = 238, .external_lex_state = 2}, + [5332] = {.lex_state = 238, .external_lex_state = 2}, + [5333] = {.lex_state = 239, .external_lex_state = 2}, + [5334] = {.lex_state = 238, .external_lex_state = 2}, + [5335] = {.lex_state = 238, .external_lex_state = 2}, + [5336] = {.lex_state = 239, .external_lex_state = 2}, + [5337] = {.lex_state = 1730}, + [5338] = {.lex_state = 239, .external_lex_state = 2}, + [5339] = {.lex_state = 328}, + [5340] = {.lex_state = 239, .external_lex_state = 2}, + [5341] = {.lex_state = 238, .external_lex_state = 2}, + [5342] = {.lex_state = 239, .external_lex_state = 2}, + [5343] = {.lex_state = 1730}, + [5344] = {.lex_state = 239, .external_lex_state = 2}, + [5345] = {.lex_state = 239, .external_lex_state = 2}, + [5346] = {.lex_state = 238, .external_lex_state = 2}, + [5347] = {.lex_state = 239, .external_lex_state = 2}, + [5348] = {.lex_state = 1730}, + [5349] = {.lex_state = 1772}, + [5350] = {.lex_state = 239, .external_lex_state = 2}, + [5351] = {.lex_state = 239, .external_lex_state = 2}, + [5352] = {.lex_state = 239, .external_lex_state = 2}, + [5353] = {.lex_state = 239, .external_lex_state = 2}, + [5354] = {.lex_state = 239, .external_lex_state = 2}, + [5355] = {.lex_state = 238, .external_lex_state = 2}, + [5356] = {.lex_state = 1733}, [5357] = {.lex_state = 238, .external_lex_state = 2}, - [5358] = {.lex_state = 237, .external_lex_state = 2}, - [5359] = {.lex_state = 1771}, + [5358] = {.lex_state = 239, .external_lex_state = 2}, + [5359] = {.lex_state = 238, .external_lex_state = 2}, [5360] = {.lex_state = 238, .external_lex_state = 2}, - [5361] = {.lex_state = 327}, - [5362] = {.lex_state = 1729}, - [5363] = {.lex_state = 335}, - [5364] = {.lex_state = 237, .external_lex_state = 2}, + [5361] = {.lex_state = 238, .external_lex_state = 2}, + [5362] = {.lex_state = 292}, + [5363] = {.lex_state = 1730}, + [5364] = {.lex_state = 1772}, [5365] = {.lex_state = 238, .external_lex_state = 2}, - [5366] = {.lex_state = 69}, - [5367] = {.lex_state = 238, .external_lex_state = 2}, - [5368] = {.lex_state = 238, .external_lex_state = 2}, - [5369] = {.lex_state = 238, .external_lex_state = 2}, - [5370] = {.lex_state = 330}, - [5371] = {.lex_state = 237, .external_lex_state = 2}, + [5366] = {.lex_state = 238, .external_lex_state = 2}, + [5367] = {.lex_state = 1772}, + [5368] = {.lex_state = 68}, + [5369] = {.lex_state = 1730}, + [5370] = {.lex_state = 238, .external_lex_state = 2}, + [5371] = {.lex_state = 238, .external_lex_state = 2}, [5372] = {.lex_state = 238, .external_lex_state = 2}, - [5373] = {.lex_state = 237, .external_lex_state = 2}, - [5374] = {.lex_state = 237, .external_lex_state = 2}, - [5375] = {.lex_state = 237, .external_lex_state = 2}, + [5373] = {.lex_state = 1730}, + [5374] = {.lex_state = 238, .external_lex_state = 2}, + [5375] = {.lex_state = 239, .external_lex_state = 2}, [5376] = {.lex_state = 238, .external_lex_state = 2}, [5377] = {.lex_state = 238, .external_lex_state = 2}, - [5378] = {.lex_state = 237, .external_lex_state = 2}, - [5379] = {.lex_state = 237, .external_lex_state = 2}, - [5380] = {.lex_state = 237, .external_lex_state = 2}, + [5378] = {.lex_state = 331}, + [5379] = {.lex_state = 238, .external_lex_state = 2}, + [5380] = {.lex_state = 238, .external_lex_state = 2}, [5381] = {.lex_state = 238, .external_lex_state = 2}, - [5382] = {.lex_state = 237, .external_lex_state = 2}, + [5382] = {.lex_state = 238, .external_lex_state = 2}, [5383] = {.lex_state = 238, .external_lex_state = 2}, - [5384] = {.lex_state = 1729}, + [5384] = {.lex_state = 238, .external_lex_state = 2}, [5385] = {.lex_state = 238, .external_lex_state = 2}, - [5386] = {.lex_state = 237, .external_lex_state = 2}, + [5386] = {.lex_state = 238, .external_lex_state = 2}, [5387] = {.lex_state = 238, .external_lex_state = 2}, - [5388] = {.lex_state = 237, .external_lex_state = 2}, + [5388] = {.lex_state = 238, .external_lex_state = 2}, [5389] = {.lex_state = 238, .external_lex_state = 2}, - [5390] = {.lex_state = 237, .external_lex_state = 2}, + [5390] = {.lex_state = 238, .external_lex_state = 2}, [5391] = {.lex_state = 238, .external_lex_state = 2}, [5392] = {.lex_state = 238, .external_lex_state = 2}, - [5393] = {.lex_state = 238, .external_lex_state = 2}, + [5393] = {.lex_state = 239, .external_lex_state = 2}, [5394] = {.lex_state = 238, .external_lex_state = 2}, - [5395] = {.lex_state = 238, .external_lex_state = 2}, + [5395] = {.lex_state = 73}, [5396] = {.lex_state = 238, .external_lex_state = 2}, [5397] = {.lex_state = 238, .external_lex_state = 2}, [5398] = {.lex_state = 238, .external_lex_state = 2}, - [5399] = {.lex_state = 238, .external_lex_state = 2}, + [5399] = {.lex_state = 292}, [5400] = {.lex_state = 238, .external_lex_state = 2}, [5401] = {.lex_state = 238, .external_lex_state = 2}, - [5402] = {.lex_state = 237, .external_lex_state = 2}, - [5403] = {.lex_state = 237, .external_lex_state = 2}, - [5404] = {.lex_state = 237, .external_lex_state = 2}, - [5405] = {.lex_state = 237, .external_lex_state = 2}, - [5406] = {.lex_state = 1729}, - [5407] = {.lex_state = 237, .external_lex_state = 2}, - [5408] = {.lex_state = 1764}, - [5409] = {.lex_state = 237, .external_lex_state = 2}, - [5410] = {.lex_state = 1729}, - [5411] = {.lex_state = 1729}, - [5412] = {.lex_state = 237, .external_lex_state = 2}, - [5413] = {.lex_state = 237, .external_lex_state = 2}, - [5414] = {.lex_state = 237, .external_lex_state = 2}, - [5415] = {.lex_state = 237, .external_lex_state = 2}, - [5416] = {.lex_state = 237, .external_lex_state = 2}, - [5417] = {.lex_state = 237, .external_lex_state = 2}, - [5418] = {.lex_state = 237, .external_lex_state = 2}, - [5419] = {.lex_state = 238, .external_lex_state = 2}, - [5420] = {.lex_state = 74}, - [5421] = {.lex_state = 74}, - [5422] = {.lex_state = 1729}, - [5423] = {.lex_state = 1771}, - [5424] = {.lex_state = 74}, - [5425] = {.lex_state = 291}, - [5426] = {.lex_state = 1729}, - [5427] = {.lex_state = 237, .external_lex_state = 2}, - [5428] = {.lex_state = 74}, - [5429] = {.lex_state = 30}, - [5430] = {.lex_state = 1763}, - [5431] = {.lex_state = 330}, - [5432] = {.lex_state = 238, .external_lex_state = 2}, - [5433] = {.lex_state = 327}, - [5434] = {.lex_state = 1729}, - [5435] = {.lex_state = 1729}, - [5436] = {.lex_state = 1729}, - [5437] = {.lex_state = 1729}, - [5438] = {.lex_state = 336}, - [5439] = {.lex_state = 320}, - [5440] = {.lex_state = 336}, - [5441] = {.lex_state = 319}, - [5442] = {.lex_state = 320}, - [5443] = {.lex_state = 1729}, - [5444] = {.lex_state = 1729}, - [5445] = {.lex_state = 297}, - [5446] = {.lex_state = 1664}, - [5447] = {.lex_state = 1729}, - [5448] = {.lex_state = 1729}, - [5449] = {.lex_state = 305}, - [5450] = {.lex_state = 1729}, - [5451] = {.lex_state = 1729}, - [5452] = {.lex_state = 1729}, - [5453] = {.lex_state = 320}, - [5454] = {.lex_state = 320}, - [5455] = {.lex_state = 291}, - [5456] = {.lex_state = 320}, - [5457] = {.lex_state = 1729}, - [5458] = {.lex_state = 1729}, - [5459] = {.lex_state = 1729}, - [5460] = {.lex_state = 69}, - [5461] = {.lex_state = 1729}, - [5462] = {.lex_state = 1729}, - [5463] = {.lex_state = 1729}, - [5464] = {.lex_state = 1729}, - [5465] = {.lex_state = 1729}, - [5466] = {.lex_state = 1729}, - [5467] = {.lex_state = 297}, - [5468] = {.lex_state = 1729}, - [5469] = {.lex_state = 1729}, - [5470] = {.lex_state = 1763}, - [5471] = {.lex_state = 1729}, - [5472] = {.lex_state = 1729}, - [5473] = {.lex_state = 1729}, - [5474] = {.lex_state = 1729}, - [5475] = {.lex_state = 1729}, - [5476] = {.lex_state = 1729}, - [5477] = {.lex_state = 237, .external_lex_state = 2}, - [5478] = {.lex_state = 1729}, - [5479] = {.lex_state = 320}, - [5480] = {.lex_state = 1729}, - [5481] = {.lex_state = 1729}, - [5482] = {.lex_state = 320}, - [5483] = {.lex_state = 237, .external_lex_state = 2}, - [5484] = {.lex_state = 1729}, - [5485] = {.lex_state = 1729}, - [5486] = {.lex_state = 320}, - [5487] = {.lex_state = 336}, - [5488] = {.lex_state = 1729}, - [5489] = {.lex_state = 297}, - [5490] = {.lex_state = 320}, - [5491] = {.lex_state = 320}, - [5492] = {.lex_state = 1729}, - [5493] = {.lex_state = 297}, - [5494] = {.lex_state = 320}, - [5495] = {.lex_state = 331}, - [5496] = {.lex_state = 336}, - [5497] = {.lex_state = 1729}, - [5498] = {.lex_state = 1729}, - [5499] = {.lex_state = 1729}, - [5500] = {.lex_state = 320}, - [5501] = {.lex_state = 320}, - [5502] = {.lex_state = 320}, - [5503] = {.lex_state = 30, .external_lex_state = 2}, - [5504] = {.lex_state = 1729}, - [5505] = {.lex_state = 1771}, - [5506] = {.lex_state = 237, .external_lex_state = 2}, - [5507] = {.lex_state = 237, .external_lex_state = 2}, - [5508] = {.lex_state = 1729}, - [5509] = {.lex_state = 1729}, - [5510] = {.lex_state = 320}, - [5511] = {.lex_state = 1729}, - [5512] = {.lex_state = 320}, - [5513] = {.lex_state = 1694}, - [5514] = {.lex_state = 320}, - [5515] = {.lex_state = 1694}, - [5516] = {.lex_state = 291}, - [5517] = {.lex_state = 30}, - [5518] = {.lex_state = 320}, + [5402] = {.lex_state = 239, .external_lex_state = 2}, + [5403] = {.lex_state = 1764}, + [5404] = {.lex_state = 238, .external_lex_state = 2}, + [5405] = {.lex_state = 238, .external_lex_state = 2}, + [5406] = {.lex_state = 238, .external_lex_state = 2}, + [5407] = {.lex_state = 73}, + [5408] = {.lex_state = 238, .external_lex_state = 2}, + [5409] = {.lex_state = 238, .external_lex_state = 2}, + [5410] = {.lex_state = 239, .external_lex_state = 2}, + [5411] = {.lex_state = 30}, + [5412] = {.lex_state = 1730}, + [5413] = {.lex_state = 30}, + [5414] = {.lex_state = 30}, + [5415] = {.lex_state = 238, .external_lex_state = 2}, + [5416] = {.lex_state = 30}, + [5417] = {.lex_state = 331}, + [5418] = {.lex_state = 336}, + [5419] = {.lex_state = 239, .external_lex_state = 2}, + [5420] = {.lex_state = 321}, + [5421] = {.lex_state = 68}, + [5422] = {.lex_state = 1730}, + [5423] = {.lex_state = 1730}, + [5424] = {.lex_state = 68}, + [5425] = {.lex_state = 321}, + [5426] = {.lex_state = 1730}, + [5427] = {.lex_state = 1730}, + [5428] = {.lex_state = 30}, + [5429] = {.lex_state = 298}, + [5430] = {.lex_state = 332}, + [5431] = {.lex_state = 1730}, + [5432] = {.lex_state = 1730}, + [5433] = {.lex_state = 1730}, + [5434] = {.lex_state = 238, .external_lex_state = 2}, + [5435] = {.lex_state = 238, .external_lex_state = 2}, + [5436] = {.lex_state = 321}, + [5437] = {.lex_state = 321}, + [5438] = {.lex_state = 337}, + [5439] = {.lex_state = 298}, + [5440] = {.lex_state = 1730}, + [5441] = {.lex_state = 1730}, + [5442] = {.lex_state = 1730}, + [5443] = {.lex_state = 1772}, + [5444] = {.lex_state = 1730}, + [5445] = {.lex_state = 1730}, + [5446] = {.lex_state = 1730}, + [5447] = {.lex_state = 1730}, + [5448] = {.lex_state = 30}, + [5449] = {.lex_state = 1730}, + [5450] = {.lex_state = 321}, + [5451] = {.lex_state = 321}, + [5452] = {.lex_state = 321}, + [5453] = {.lex_state = 321}, + [5454] = {.lex_state = 1772}, + [5455] = {.lex_state = 332}, + [5456] = {.lex_state = 1772}, + [5457] = {.lex_state = 1772}, + [5458] = {.lex_state = 1730}, + [5459] = {.lex_state = 321}, + [5460] = {.lex_state = 321}, + [5461] = {.lex_state = 1730}, + [5462] = {.lex_state = 1730}, + [5463] = {.lex_state = 321}, + [5464] = {.lex_state = 321}, + [5465] = {.lex_state = 321}, + [5466] = {.lex_state = 321}, + [5467] = {.lex_state = 321}, + [5468] = {.lex_state = 321}, + [5469] = {.lex_state = 321}, + [5470] = {.lex_state = 321}, + [5471] = {.lex_state = 1730}, + [5472] = {.lex_state = 238, .external_lex_state = 2}, + [5473] = {.lex_state = 238, .external_lex_state = 2}, + [5474] = {.lex_state = 1730}, + [5475] = {.lex_state = 321}, + [5476] = {.lex_state = 1765}, + [5477] = {.lex_state = 238, .external_lex_state = 2}, + [5478] = {.lex_state = 238, .external_lex_state = 2}, + [5479] = {.lex_state = 298}, + [5480] = {.lex_state = 321}, + [5481] = {.lex_state = 332}, + [5482] = {.lex_state = 1730}, + [5483] = {.lex_state = 1730}, + [5484] = {.lex_state = 332}, + [5485] = {.lex_state = 1730}, + [5486] = {.lex_state = 1730}, + [5487] = {.lex_state = 1730}, + [5488] = {.lex_state = 1730}, + [5489] = {.lex_state = 1730}, + [5490] = {.lex_state = 337}, + [5491] = {.lex_state = 1730}, + [5492] = {.lex_state = 322}, + [5493] = {.lex_state = 333}, + [5494] = {.lex_state = 1730}, + [5495] = {.lex_state = 1730}, + [5496] = {.lex_state = 338}, + [5497] = {.lex_state = 1730}, + [5498] = {.lex_state = 1730}, + [5499] = {.lex_state = 1730}, + [5500] = {.lex_state = 333}, + [5501] = {.lex_state = 1730}, + [5502] = {.lex_state = 306}, + [5503] = {.lex_state = 1730}, + [5504] = {.lex_state = 1695}, + [5505] = {.lex_state = 1730}, + [5506] = {.lex_state = 1730}, + [5507] = {.lex_state = 1730}, + [5508] = {.lex_state = 1730}, + [5509] = {.lex_state = 292}, + [5510] = {.lex_state = 298}, + [5511] = {.lex_state = 321}, + [5512] = {.lex_state = 1730}, + [5513] = {.lex_state = 1730}, + [5514] = {.lex_state = 68}, + [5515] = {.lex_state = 30}, + [5516] = {.lex_state = 281}, + [5517] = {.lex_state = 1730}, + [5518] = {.lex_state = 1730}, [5519] = {.lex_state = 1730}, - [5520] = {.lex_state = 69}, - [5521] = {.lex_state = 237, .external_lex_state = 2}, - [5522] = {.lex_state = 331}, - [5523] = {.lex_state = 1771}, - [5524] = {.lex_state = 237, .external_lex_state = 2}, - [5525] = {.lex_state = 332}, - [5526] = {.lex_state = 320}, - [5527] = {.lex_state = 30}, - [5528] = {.lex_state = 30}, - [5529] = {.lex_state = 280}, - [5530] = {.lex_state = 320}, - [5531] = {.lex_state = 1729}, - [5532] = {.lex_state = 320}, - [5533] = {.lex_state = 30}, - [5534] = {.lex_state = 1729}, - [5535] = {.lex_state = 331}, - [5536] = {.lex_state = 336}, - [5537] = {.lex_state = 297}, - [5538] = {.lex_state = 1729}, - [5539] = {.lex_state = 1729}, - [5540] = {.lex_state = 320}, - [5541] = {.lex_state = 237, .external_lex_state = 2}, - [5542] = {.lex_state = 1771}, - [5543] = {.lex_state = 1763}, - [5544] = {.lex_state = 69}, - [5545] = {.lex_state = 1729}, - [5546] = {.lex_state = 320}, - [5547] = {.lex_state = 30}, - [5548] = {.lex_state = 1729}, - [5549] = {.lex_state = 1729}, - [5550] = {.lex_state = 1729}, - [5551] = {.lex_state = 305}, - [5552] = {.lex_state = 1664}, - [5553] = {.lex_state = 1729}, - [5554] = {.lex_state = 1729}, - [5555] = {.lex_state = 1729}, - [5556] = {.lex_state = 1771}, - [5557] = {.lex_state = 336}, + [5520] = {.lex_state = 1730}, + [5521] = {.lex_state = 321}, + [5522] = {.lex_state = 1730}, + [5523] = {.lex_state = 1730}, + [5524] = {.lex_state = 1772}, + [5525] = {.lex_state = 320}, + [5526] = {.lex_state = 1730}, + [5527] = {.lex_state = 1730}, + [5528] = {.lex_state = 1730}, + [5529] = {.lex_state = 1730}, + [5530] = {.lex_state = 1730}, + [5531] = {.lex_state = 1730}, + [5532] = {.lex_state = 337}, + [5533] = {.lex_state = 321}, + [5534] = {.lex_state = 321}, + [5535] = {.lex_state = 1695}, + [5536] = {.lex_state = 30, .external_lex_state = 2}, + [5537] = {.lex_state = 321}, + [5538] = {.lex_state = 292}, + [5539] = {.lex_state = 30}, + [5540] = {.lex_state = 298}, + [5541] = {.lex_state = 1764}, + [5542] = {.lex_state = 1731}, + [5543] = {.lex_state = 30}, + [5544] = {.lex_state = 298}, + [5545] = {.lex_state = 1730}, + [5546] = {.lex_state = 337}, + [5547] = {.lex_state = 321}, + [5548] = {.lex_state = 1665}, + [5549] = {.lex_state = 321}, + [5550] = {.lex_state = 238, .external_lex_state = 2}, + [5551] = {.lex_state = 337}, + [5552] = {.lex_state = 1764}, + [5553] = {.lex_state = 306}, + [5554] = {.lex_state = 1665}, + [5555] = {.lex_state = 337}, + [5556] = {.lex_state = 332}, + [5557] = {.lex_state = 1730}, [5558] = {.lex_state = 321}, - [5559] = {.lex_state = 1729}, - [5560] = {.lex_state = 1729}, - [5561] = {.lex_state = 331}, - [5562] = {.lex_state = 1764}, - [5563] = {.lex_state = 297}, - [5564] = {.lex_state = 320}, - [5565] = {.lex_state = 320}, - [5566] = {.lex_state = 331}, - [5567] = {.lex_state = 320}, - [5568] = {.lex_state = 320}, - [5569] = {.lex_state = 337}, - [5570] = {.lex_state = 1771}, - [5571] = {.lex_state = 1729}, - [5572] = {.lex_state = 331}, - [5573] = {.lex_state = 320}, - [5574] = {.lex_state = 332}, + [5559] = {.lex_state = 332}, + [5560] = {.lex_state = 1730}, + [5561] = {.lex_state = 1730}, + [5562] = {.lex_state = 1730}, + [5563] = {.lex_state = 1730}, + [5564] = {.lex_state = 344}, + [5565] = {.lex_state = 321}, + [5566] = {.lex_state = 30}, + [5567] = {.lex_state = 1695}, + [5568] = {.lex_state = 4646}, + [5569] = {.lex_state = 1697}, + [5570] = {.lex_state = 1697}, + [5571] = {.lex_state = 321}, + [5572] = {.lex_state = 339}, + [5573] = {.lex_state = 1730}, + [5574] = {.lex_state = 1697}, [5575] = {.lex_state = 1730}, - [5576] = {.lex_state = 1729}, - [5577] = {.lex_state = 1729}, - [5578] = {.lex_state = 1729}, - [5579] = {.lex_state = 1729}, - [5580] = {.lex_state = 1696}, - [5581] = {.lex_state = 1729}, - [5582] = {.lex_state = 1729}, - [5583] = {.lex_state = 1729}, - [5584] = {.lex_state = 1664}, - [5585] = {.lex_state = 245}, - [5586] = {.lex_state = 284}, - [5587] = {.lex_state = 245}, - [5588] = {.lex_state = 4645}, - [5589] = {.lex_state = 4645}, - [5590] = {.lex_state = 1664}, - [5591] = {.lex_state = 245}, - [5592] = {.lex_state = 1696}, - [5593] = {.lex_state = 1696}, - [5594] = {.lex_state = 336}, - [5595] = {.lex_state = 62}, - [5596] = {.lex_state = 267}, - [5597] = {.lex_state = 1696}, - [5598] = {.lex_state = 333}, - [5599] = {.lex_state = 1696}, - [5600] = {.lex_state = 1696}, - [5601] = {.lex_state = 1729}, - [5602] = {.lex_state = 1696}, - [5603] = {.lex_state = 245}, - [5604] = {.lex_state = 4645}, - [5605] = {.lex_state = 4645}, - [5606] = {.lex_state = 245}, - [5607] = {.lex_state = 1696}, - [5608] = {.lex_state = 1696}, - [5609] = {.lex_state = 349}, - [5610] = {.lex_state = 1694}, - [5611] = {.lex_state = 245}, - [5612] = {.lex_state = 333}, - [5613] = {.lex_state = 4645}, - [5614] = {.lex_state = 1696}, - [5615] = {.lex_state = 274}, - [5616] = {.lex_state = 333}, - [5617] = {.lex_state = 320}, - [5618] = {.lex_state = 1729}, - [5619] = {.lex_state = 245}, - [5620] = {.lex_state = 4645}, - [5621] = {.lex_state = 4645}, - [5622] = {.lex_state = 1729}, - [5623] = {.lex_state = 245}, - [5624] = {.lex_state = 333}, - [5625] = {.lex_state = 1696}, - [5626] = {.lex_state = 264}, - [5627] = {.lex_state = 1696}, - [5628] = {.lex_state = 367}, - [5629] = {.lex_state = 367}, - [5630] = {.lex_state = 1696}, - [5631] = {.lex_state = 1696}, - [5632] = {.lex_state = 333}, - [5633] = {.lex_state = 1729}, - [5634] = {.lex_state = 1696}, - [5635] = {.lex_state = 245}, - [5636] = {.lex_state = 4645}, - [5637] = {.lex_state = 4645}, - [5638] = {.lex_state = 1729}, - [5639] = {.lex_state = 245}, - [5640] = {.lex_state = 1696}, - [5641] = {.lex_state = 62}, - [5642] = {.lex_state = 338}, - [5643] = {.lex_state = 1696}, - [5644] = {.lex_state = 1696}, - [5645] = {.lex_state = 1696}, - [5646] = {.lex_state = 1696}, - [5647] = {.lex_state = 245}, - [5648] = {.lex_state = 1729}, - [5649] = {.lex_state = 245}, - [5650] = {.lex_state = 1696}, - [5651] = {.lex_state = 320}, - [5652] = {.lex_state = 1696}, - [5653] = {.lex_state = 4645}, - [5654] = {.lex_state = 298}, - [5655] = {.lex_state = 245}, - [5656] = {.lex_state = 245}, - [5657] = {.lex_state = 1696}, - [5658] = {.lex_state = 1729}, - [5659] = {.lex_state = 1696}, - [5660] = {.lex_state = 320}, - [5661] = {.lex_state = 338}, - [5662] = {.lex_state = 245}, - [5663] = {.lex_state = 320}, - [5664] = {.lex_state = 245}, - [5665] = {.lex_state = 1696}, - [5666] = {.lex_state = 245}, - [5667] = {.lex_state = 1696}, - [5668] = {.lex_state = 1696}, - [5669] = {.lex_state = 4645}, - [5670] = {.lex_state = 320}, - [5671] = {.lex_state = 1696}, - [5672] = {.lex_state = 4645}, - [5673] = {.lex_state = 1696}, - [5674] = {.lex_state = 336}, - [5675] = {.lex_state = 1696}, - [5676] = {.lex_state = 312}, - [5677] = {.lex_state = 1696}, - [5678] = {.lex_state = 245}, - [5679] = {.lex_state = 312}, - [5680] = {.lex_state = 1696}, - [5681] = {.lex_state = 1729}, - [5682] = {.lex_state = 1696}, - [5683] = {.lex_state = 367}, - [5684] = {.lex_state = 343}, - [5685] = {.lex_state = 273}, - [5686] = {.lex_state = 1729}, - [5687] = {.lex_state = 1696}, - [5688] = {.lex_state = 245}, - [5689] = {.lex_state = 367}, - [5690] = {.lex_state = 1729}, - [5691] = {.lex_state = 1729}, - [5692] = {.lex_state = 1729}, - [5693] = {.lex_state = 1696}, - [5694] = {.lex_state = 1696}, - [5695] = {.lex_state = 1729}, - [5696] = {.lex_state = 1729}, - [5697] = {.lex_state = 320}, - [5698] = {.lex_state = 1729}, - [5699] = {.lex_state = 62}, - [5700] = {.lex_state = 62}, - [5701] = {.lex_state = 62}, - [5702] = {.lex_state = 1696}, - [5703] = {.lex_state = 1696}, - [5704] = {.lex_state = 245}, - [5705] = {.lex_state = 1696}, - [5706] = {.lex_state = 1696}, - [5707] = {.lex_state = 1696}, - [5708] = {.lex_state = 1729}, - [5709] = {.lex_state = 1729}, - [5710] = {.lex_state = 4645}, - [5711] = {.lex_state = 4645}, - [5712] = {.lex_state = 285}, - [5713] = {.lex_state = 30, .external_lex_state = 2}, - [5714] = {.lex_state = 336}, - [5715] = {.lex_state = 320}, - [5716] = {.lex_state = 320}, - [5717] = {.lex_state = 1696}, - [5718] = {.lex_state = 1729}, - [5719] = {.lex_state = 1729}, - [5720] = {.lex_state = 343}, - [5721] = {.lex_state = 245}, - [5722] = {.lex_state = 1696}, - [5723] = {.lex_state = 4645}, - [5724] = {.lex_state = 4645}, - [5725] = {.lex_state = 1694}, - [5726] = {.lex_state = 245}, - [5727] = {.lex_state = 245}, - [5728] = {.lex_state = 1696}, - [5729] = {.lex_state = 1729}, - [5730] = {.lex_state = 1729}, - [5731] = {.lex_state = 1729}, - [5732] = {.lex_state = 1729}, - [5733] = {.lex_state = 1696}, - [5734] = {.lex_state = 1696}, - [5735] = {.lex_state = 1694}, - [5736] = {.lex_state = 1664}, - [5737] = {.lex_state = 367}, - [5738] = {.lex_state = 1664}, - [5739] = {.lex_state = 1664}, - [5740] = {.lex_state = 1664}, - [5741] = {.lex_state = 1696}, - [5742] = {.lex_state = 305}, - [5743] = {.lex_state = 1729}, - [5744] = {.lex_state = 1729}, - [5745] = {.lex_state = 245}, - [5746] = {.lex_state = 245}, - [5747] = {.lex_state = 1696}, - [5748] = {.lex_state = 1696}, - [5749] = {.lex_state = 4645}, - [5750] = {.lex_state = 320}, - [5751] = {.lex_state = 4645}, - [5752] = {.lex_state = 245}, - [5753] = {.lex_state = 62}, - [5754] = {.lex_state = 333}, - [5755] = {.lex_state = 1696}, - [5756] = {.lex_state = 264}, - [5757] = {.lex_state = 1729}, - [5758] = {.lex_state = 1729}, - [5759] = {.lex_state = 1729}, - [5760] = {.lex_state = 1729}, - [5761] = {.lex_state = 1696}, - [5762] = {.lex_state = 1729}, - [5763] = {.lex_state = 301}, - [5764] = {.lex_state = 320}, - [5765] = {.lex_state = 266}, - [5766] = {.lex_state = 245}, - [5767] = {.lex_state = 1696}, - [5768] = {.lex_state = 1696}, - [5769] = {.lex_state = 1729}, - [5770] = {.lex_state = 305}, - [5771] = {.lex_state = 4645}, - [5772] = {.lex_state = 4645}, - [5773] = {.lex_state = 1729}, - [5774] = {.lex_state = 1696}, - [5775] = {.lex_state = 1729}, - [5776] = {.lex_state = 1729}, - [5777] = {.lex_state = 1729}, - [5778] = {.lex_state = 340}, - [5779] = {.lex_state = 245}, - [5780] = {.lex_state = 1696}, - [5781] = {.lex_state = 245}, - [5782] = {.lex_state = 1696}, - [5783] = {.lex_state = 4645}, - [5784] = {.lex_state = 320}, - [5785] = {.lex_state = 4645}, - [5786] = {.lex_state = 336}, - [5787] = {.lex_state = 1729}, - [5788] = {.lex_state = 1696}, - [5789] = {.lex_state = 1694}, - [5790] = {.lex_state = 1729}, - [5791] = {.lex_state = 1694}, - [5792] = {.lex_state = 1729}, - [5793] = {.lex_state = 1729}, - [5794] = {.lex_state = 320}, - [5795] = {.lex_state = 320}, - [5796] = {.lex_state = 320}, - [5797] = {.lex_state = 320}, - [5798] = {.lex_state = 245}, - [5799] = {.lex_state = 1729}, - [5800] = {.lex_state = 1729}, - [5801] = {.lex_state = 4645}, - [5802] = {.lex_state = 1729}, - [5803] = {.lex_state = 4645}, - [5804] = {.lex_state = 245}, - [5805] = {.lex_state = 1694}, - [5806] = {.lex_state = 1729}, - [5807] = {.lex_state = 1729}, - [5808] = {.lex_state = 1696}, - [5809] = {.lex_state = 305}, - [5810] = {.lex_state = 1696}, - [5811] = {.lex_state = 312}, - [5812] = {.lex_state = 312}, - [5813] = {.lex_state = 312}, - [5814] = {.lex_state = 30}, - [5815] = {.lex_state = 312}, - [5816] = {.lex_state = 312}, - [5817] = {.lex_state = 299}, - [5818] = {.lex_state = 30}, - [5819] = {.lex_state = 312}, - [5820] = {.lex_state = 312}, - [5821] = {.lex_state = 312}, - [5822] = {.lex_state = 320}, - [5823] = {.lex_state = 320}, - [5824] = {.lex_state = 30}, - [5825] = {.lex_state = 30}, - [5826] = {.lex_state = 30}, - [5827] = {.lex_state = 305}, - [5828] = {.lex_state = 312}, - [5829] = {.lex_state = 1697}, - [5830] = {.lex_state = 312}, - [5831] = {.lex_state = 312}, - [5832] = {.lex_state = 320}, - [5833] = {.lex_state = 320}, - [5834] = {.lex_state = 320}, - [5835] = {.lex_state = 320}, - [5836] = {.lex_state = 312}, - [5837] = {.lex_state = 30}, - [5838] = {.lex_state = 320}, - [5839] = {.lex_state = 320}, - [5840] = {.lex_state = 1696}, - [5841] = {.lex_state = 312}, - [5842] = {.lex_state = 312}, - [5843] = {.lex_state = 312}, - [5844] = {.lex_state = 312}, - [5845] = {.lex_state = 312}, - [5846] = {.lex_state = 312}, - [5847] = {.lex_state = 30}, - [5848] = {.lex_state = 238}, - [5849] = {.lex_state = 320}, - [5850] = {.lex_state = 312}, - [5851] = {.lex_state = 320}, - [5852] = {.lex_state = 312}, - [5853] = {.lex_state = 312}, - [5854] = {.lex_state = 312}, - [5855] = {.lex_state = 1665}, - [5856] = {.lex_state = 312}, - [5857] = {.lex_state = 1660}, - [5858] = {.lex_state = 312}, - [5859] = {.lex_state = 312}, - [5860] = {.lex_state = 312}, - [5861] = {.lex_state = 1696}, - [5862] = {.lex_state = 1696}, - [5863] = {.lex_state = 30}, - [5864] = {.lex_state = 312}, - [5865] = {.lex_state = 374}, - [5866] = {.lex_state = 1696}, - [5867] = {.lex_state = 312}, - [5868] = {.lex_state = 374}, - [5869] = {.lex_state = 320}, - [5870] = {.lex_state = 312}, - [5871] = {.lex_state = 374}, - [5872] = {.lex_state = 312}, - [5873] = {.lex_state = 1696}, - [5874] = {.lex_state = 351}, - [5875] = {.lex_state = 312}, - [5876] = {.lex_state = 1696}, - [5877] = {.lex_state = 320}, - [5878] = {.lex_state = 374}, - [5879] = {.lex_state = 320}, - [5880] = {.lex_state = 320}, - [5881] = {.lex_state = 1696}, - [5882] = {.lex_state = 1694}, - [5883] = {.lex_state = 374}, + [5576] = {.lex_state = 4646}, + [5577] = {.lex_state = 368}, + [5578] = {.lex_state = 4646}, + [5579] = {.lex_state = 1697}, + [5580] = {.lex_state = 1730}, + [5581] = {.lex_state = 334}, + [5582] = {.lex_state = 4646}, + [5583] = {.lex_state = 30}, + [5584] = {.lex_state = 1730}, + [5585] = {.lex_state = 1730}, + [5586] = {.lex_state = 1730}, + [5587] = {.lex_state = 1730}, + [5588] = {.lex_state = 1730}, + [5589] = {.lex_state = 1697}, + [5590] = {.lex_state = 265}, + [5591] = {.lex_state = 1730}, + [5592] = {.lex_state = 1730}, + [5593] = {.lex_state = 246}, + [5594] = {.lex_state = 1730}, + [5595] = {.lex_state = 4646}, + [5596] = {.lex_state = 4646}, + [5597] = {.lex_state = 337}, + [5598] = {.lex_state = 1697}, + [5599] = {.lex_state = 246}, + [5600] = {.lex_state = 1697}, + [5601] = {.lex_state = 337}, + [5602] = {.lex_state = 1730}, + [5603] = {.lex_state = 1697}, + [5604] = {.lex_state = 337}, + [5605] = {.lex_state = 299}, + [5606] = {.lex_state = 302}, + [5607] = {.lex_state = 265}, + [5608] = {.lex_state = 313}, + [5609] = {.lex_state = 313}, + [5610] = {.lex_state = 30}, + [5611] = {.lex_state = 1730}, + [5612] = {.lex_state = 246}, + [5613] = {.lex_state = 30, .external_lex_state = 2}, + [5614] = {.lex_state = 4646}, + [5615] = {.lex_state = 4646}, + [5616] = {.lex_state = 1697}, + [5617] = {.lex_state = 246}, + [5618] = {.lex_state = 1697}, + [5619] = {.lex_state = 1730}, + [5620] = {.lex_state = 1697}, + [5621] = {.lex_state = 321}, + [5622] = {.lex_state = 285}, + [5623] = {.lex_state = 344}, + [5624] = {.lex_state = 246}, + [5625] = {.lex_state = 4646}, + [5626] = {.lex_state = 4646}, + [5627] = {.lex_state = 246}, + [5628] = {.lex_state = 1695}, + [5629] = {.lex_state = 1697}, + [5630] = {.lex_state = 321}, + [5631] = {.lex_state = 334}, + [5632] = {.lex_state = 1697}, + [5633] = {.lex_state = 1730}, + [5634] = {.lex_state = 1730}, + [5635] = {.lex_state = 246}, + [5636] = {.lex_state = 4646}, + [5637] = {.lex_state = 4646}, + [5638] = {.lex_state = 246}, + [5639] = {.lex_state = 1697}, + [5640] = {.lex_state = 1730}, + [5641] = {.lex_state = 1730}, + [5642] = {.lex_state = 1697}, + [5643] = {.lex_state = 334}, + [5644] = {.lex_state = 246}, + [5645] = {.lex_state = 4646}, + [5646] = {.lex_state = 4646}, + [5647] = {.lex_state = 246}, + [5648] = {.lex_state = 267}, + [5649] = {.lex_state = 1697}, + [5650] = {.lex_state = 1697}, + [5651] = {.lex_state = 1697}, + [5652] = {.lex_state = 334}, + [5653] = {.lex_state = 246}, + [5654] = {.lex_state = 4646}, + [5655] = {.lex_state = 4646}, + [5656] = {.lex_state = 246}, + [5657] = {.lex_state = 1697}, + [5658] = {.lex_state = 334}, + [5659] = {.lex_state = 1697}, + [5660] = {.lex_state = 246}, + [5661] = {.lex_state = 4646}, + [5662] = {.lex_state = 4646}, + [5663] = {.lex_state = 246}, + [5664] = {.lex_state = 1697}, + [5665] = {.lex_state = 1697}, + [5666] = {.lex_state = 1697}, + [5667] = {.lex_state = 1730}, + [5668] = {.lex_state = 246}, + [5669] = {.lex_state = 4646}, + [5670] = {.lex_state = 4646}, + [5671] = {.lex_state = 246}, + [5672] = {.lex_state = 1697}, + [5673] = {.lex_state = 268}, + [5674] = {.lex_state = 1730}, + [5675] = {.lex_state = 1697}, + [5676] = {.lex_state = 321}, + [5677] = {.lex_state = 1730}, + [5678] = {.lex_state = 1730}, + [5679] = {.lex_state = 246}, + [5680] = {.lex_state = 4646}, + [5681] = {.lex_state = 4646}, + [5682] = {.lex_state = 246}, + [5683] = {.lex_state = 1697}, + [5684] = {.lex_state = 321}, + [5685] = {.lex_state = 1697}, + [5686] = {.lex_state = 1697}, + [5687] = {.lex_state = 275}, + [5688] = {.lex_state = 246}, + [5689] = {.lex_state = 246}, + [5690] = {.lex_state = 1697}, + [5691] = {.lex_state = 1697}, + [5692] = {.lex_state = 321}, + [5693] = {.lex_state = 246}, + [5694] = {.lex_state = 246}, + [5695] = {.lex_state = 1697}, + [5696] = {.lex_state = 321}, + [5697] = {.lex_state = 1697}, + [5698] = {.lex_state = 1730}, + [5699] = {.lex_state = 246}, + [5700] = {.lex_state = 246}, + [5701] = {.lex_state = 1697}, + [5702] = {.lex_state = 1697}, + [5703] = {.lex_state = 334}, + [5704] = {.lex_state = 1697}, + [5705] = {.lex_state = 1697}, + [5706] = {.lex_state = 1697}, + [5707] = {.lex_state = 1730}, + [5708] = {.lex_state = 1730}, + [5709] = {.lex_state = 1697}, + [5710] = {.lex_state = 1697}, + [5711] = {.lex_state = 1697}, + [5712] = {.lex_state = 321}, + [5713] = {.lex_state = 341}, + [5714] = {.lex_state = 1730}, + [5715] = {.lex_state = 350}, + [5716] = {.lex_state = 1730}, + [5717] = {.lex_state = 368}, + [5718] = {.lex_state = 368}, + [5719] = {.lex_state = 339}, + [5720] = {.lex_state = 321}, + [5721] = {.lex_state = 321}, + [5722] = {.lex_state = 1697}, + [5723] = {.lex_state = 30}, + [5724] = {.lex_state = 30}, + [5725] = {.lex_state = 30}, + [5726] = {.lex_state = 1697}, + [5727] = {.lex_state = 1730}, + [5728] = {.lex_state = 321}, + [5729] = {.lex_state = 1730}, + [5730] = {.lex_state = 1697}, + [5731] = {.lex_state = 1697}, + [5732] = {.lex_state = 1730}, + [5733] = {.lex_state = 1730}, + [5734] = {.lex_state = 1730}, + [5735] = {.lex_state = 321}, + [5736] = {.lex_state = 368}, + [5737] = {.lex_state = 368}, + [5738] = {.lex_state = 246}, + [5739] = {.lex_state = 1730}, + [5740] = {.lex_state = 1730}, + [5741] = {.lex_state = 1730}, + [5742] = {.lex_state = 286}, + [5743] = {.lex_state = 246}, + [5744] = {.lex_state = 1697}, + [5745] = {.lex_state = 1697}, + [5746] = {.lex_state = 1665}, + [5747] = {.lex_state = 246}, + [5748] = {.lex_state = 1665}, + [5749] = {.lex_state = 1665}, + [5750] = {.lex_state = 1665}, + [5751] = {.lex_state = 1697}, + [5752] = {.lex_state = 1697}, + [5753] = {.lex_state = 1695}, + [5754] = {.lex_state = 306}, + [5755] = {.lex_state = 1730}, + [5756] = {.lex_state = 1730}, + [5757] = {.lex_state = 1697}, + [5758] = {.lex_state = 1697}, + [5759] = {.lex_state = 1697}, + [5760] = {.lex_state = 274}, + [5761] = {.lex_state = 1730}, + [5762] = {.lex_state = 1697}, + [5763] = {.lex_state = 1730}, + [5764] = {.lex_state = 1665}, + [5765] = {.lex_state = 1665}, + [5766] = {.lex_state = 1697}, + [5767] = {.lex_state = 1730}, + [5768] = {.lex_state = 1730}, + [5769] = {.lex_state = 1697}, + [5770] = {.lex_state = 1697}, + [5771] = {.lex_state = 1697}, + [5772] = {.lex_state = 246}, + [5773] = {.lex_state = 306}, + [5774] = {.lex_state = 4646}, + [5775] = {.lex_state = 1730}, + [5776] = {.lex_state = 4646}, + [5777] = {.lex_state = 337}, + [5778] = {.lex_state = 1730}, + [5779] = {.lex_state = 1730}, + [5780] = {.lex_state = 1731}, + [5781] = {.lex_state = 1730}, + [5782] = {.lex_state = 246}, + [5783] = {.lex_state = 1730}, + [5784] = {.lex_state = 1695}, + [5785] = {.lex_state = 1695}, + [5786] = {.lex_state = 1730}, + [5787] = {.lex_state = 1730}, + [5788] = {.lex_state = 1695}, + [5789] = {.lex_state = 246}, + [5790] = {.lex_state = 1697}, + [5791] = {.lex_state = 321}, + [5792] = {.lex_state = 246}, + [5793] = {.lex_state = 321}, + [5794] = {.lex_state = 268}, + [5795] = {.lex_state = 351}, + [5796] = {.lex_state = 321}, + [5797] = {.lex_state = 313}, + [5798] = {.lex_state = 313}, + [5799] = {.lex_state = 375}, + [5800] = {.lex_state = 313}, + [5801] = {.lex_state = 313}, + [5802] = {.lex_state = 30}, + [5803] = {.lex_state = 375}, + [5804] = {.lex_state = 313}, + [5805] = {.lex_state = 321}, + [5806] = {.lex_state = 340}, + [5807] = {.lex_state = 1661}, + [5808] = {.lex_state = 313}, + [5809] = {.lex_state = 313}, + [5810] = {.lex_state = 1697}, + [5811] = {.lex_state = 1697}, + [5812] = {.lex_state = 30}, + [5813] = {.lex_state = 313}, + [5814] = {.lex_state = 306}, + [5815] = {.lex_state = 375}, + [5816] = {.lex_state = 313}, + [5817] = {.lex_state = 313}, + [5818] = {.lex_state = 352}, + [5819] = {.lex_state = 313}, + [5820] = {.lex_state = 375}, + [5821] = {.lex_state = 313}, + [5822] = {.lex_state = 313}, + [5823] = {.lex_state = 1666}, + [5824] = {.lex_state = 1666}, + [5825] = {.lex_state = 1666}, + [5826] = {.lex_state = 1697}, + [5827] = {.lex_state = 303}, + [5828] = {.lex_state = 313}, + [5829] = {.lex_state = 313}, + [5830] = {.lex_state = 265}, + [5831] = {.lex_state = 375}, + [5832] = {.lex_state = 340}, + [5833] = {.lex_state = 375}, + [5834] = {.lex_state = 313}, + [5835] = {.lex_state = 1697}, + [5836] = {.lex_state = 1666}, + [5837] = {.lex_state = 1666}, + [5838] = {.lex_state = 313}, + [5839] = {.lex_state = 375}, + [5840] = {.lex_state = 375}, + [5841] = {.lex_state = 1630}, + [5842] = {.lex_state = 375}, + [5843] = {.lex_state = 313}, + [5844] = {.lex_state = 1666}, + [5845] = {.lex_state = 375}, + [5846] = {.lex_state = 1666}, + [5847] = {.lex_state = 313}, + [5848] = {.lex_state = 1697}, + [5849] = {.lex_state = 313}, + [5850] = {.lex_state = 300}, + [5851] = {.lex_state = 239}, + [5852] = {.lex_state = 1666}, + [5853] = {.lex_state = 375}, + [5854] = {.lex_state = 375}, + [5855] = {.lex_state = 375}, + [5856] = {.lex_state = 1733}, + [5857] = {.lex_state = 321}, + [5858] = {.lex_state = 321}, + [5859] = {.lex_state = 313}, + [5860] = {.lex_state = 313}, + [5861] = {.lex_state = 1666}, + [5862] = {.lex_state = 313}, + [5863] = {.lex_state = 313}, + [5864] = {.lex_state = 321}, + [5865] = {.lex_state = 340}, + [5866] = {.lex_state = 30}, + [5867] = {.lex_state = 321}, + [5868] = {.lex_state = 321}, + [5869] = {.lex_state = 303}, + [5870] = {.lex_state = 30}, + [5871] = {.lex_state = 375}, + [5872] = {.lex_state = 321}, + [5873] = {.lex_state = 313}, + [5874] = {.lex_state = 321}, + [5875] = {.lex_state = 313}, + [5876] = {.lex_state = 321}, + [5877] = {.lex_state = 313}, + [5878] = {.lex_state = 30}, + [5879] = {.lex_state = 30}, + [5880] = {.lex_state = 321}, + [5881] = {.lex_state = 321}, + [5882] = {.lex_state = 375}, + [5883] = {.lex_state = 313}, [5884] = {.lex_state = 30}, - [5885] = {.lex_state = 299}, - [5886] = {.lex_state = 302}, - [5887] = {.lex_state = 374}, - [5888] = {.lex_state = 320}, - [5889] = {.lex_state = 320}, - [5890] = {.lex_state = 374}, - [5891] = {.lex_state = 320}, - [5892] = {.lex_state = 320}, - [5893] = {.lex_state = 1665}, - [5894] = {.lex_state = 350}, - [5895] = {.lex_state = 62}, - [5896] = {.lex_state = 339}, - [5897] = {.lex_state = 374}, - [5898] = {.lex_state = 320}, - [5899] = {.lex_state = 320}, - [5900] = {.lex_state = 1696}, - [5901] = {.lex_state = 374}, - [5902] = {.lex_state = 339}, - [5903] = {.lex_state = 1732}, - [5904] = {.lex_state = 320}, - [5905] = {.lex_state = 320}, - [5906] = {.lex_state = 374}, - [5907] = {.lex_state = 320}, - [5908] = {.lex_state = 374}, - [5909] = {.lex_state = 339}, - [5910] = {.lex_state = 30}, - [5911] = {.lex_state = 30}, - [5912] = {.lex_state = 374}, - [5913] = {.lex_state = 30}, - [5914] = {.lex_state = 374}, - [5915] = {.lex_state = 1696}, - [5916] = {.lex_state = 339}, - [5917] = {.lex_state = 374}, - [5918] = {.lex_state = 320}, - [5919] = {.lex_state = 341}, - [5920] = {.lex_state = 374}, - [5921] = {.lex_state = 320}, - [5922] = {.lex_state = 1629}, - [5923] = {.lex_state = 374}, - [5924] = {.lex_state = 320}, - [5925] = {.lex_state = 374}, - [5926] = {.lex_state = 320}, - [5927] = {.lex_state = 30}, - [5928] = {.lex_state = 30}, + [5885] = {.lex_state = 340}, + [5886] = {.lex_state = 321}, + [5887] = {.lex_state = 313}, + [5888] = {.lex_state = 1666}, + [5889] = {.lex_state = 321}, + [5890] = {.lex_state = 375}, + [5891] = {.lex_state = 30}, + [5892] = {.lex_state = 30}, + [5893] = {.lex_state = 313}, + [5894] = {.lex_state = 313}, + [5895] = {.lex_state = 321}, + [5896] = {.lex_state = 239}, + [5897] = {.lex_state = 375}, + [5898] = {.lex_state = 313}, + [5899] = {.lex_state = 30}, + [5900] = {.lex_state = 313}, + [5901] = {.lex_state = 1697}, + [5902] = {.lex_state = 313}, + [5903] = {.lex_state = 313}, + [5904] = {.lex_state = 306}, + [5905] = {.lex_state = 30}, + [5906] = {.lex_state = 1697}, + [5907] = {.lex_state = 1697}, + [5908] = {.lex_state = 30}, + [5909] = {.lex_state = 269}, + [5910] = {.lex_state = 300}, + [5911] = {.lex_state = 1666}, + [5912] = {.lex_state = 1697}, + [5913] = {.lex_state = 1697}, + [5914] = {.lex_state = 375}, + [5915] = {.lex_state = 313}, + [5916] = {.lex_state = 1697}, + [5917] = {.lex_state = 1666}, + [5918] = {.lex_state = 352}, + [5919] = {.lex_state = 30}, + [5920] = {.lex_state = 1698}, + [5921] = {.lex_state = 321}, + [5922] = {.lex_state = 321}, + [5923] = {.lex_state = 313}, + [5924] = {.lex_state = 30}, + [5925] = {.lex_state = 342}, + [5926] = {.lex_state = 313}, + [5927] = {.lex_state = 375}, + [5928] = {.lex_state = 313}, [5929] = {.lex_state = 30}, - [5930] = {.lex_state = 320}, - [5931] = {.lex_state = 30}, - [5932] = {.lex_state = 374}, - [5933] = {.lex_state = 30}, - [5934] = {.lex_state = 374}, - [5935] = {.lex_state = 374}, - [5936] = {.lex_state = 351}, - [5937] = {.lex_state = 30}, - [5938] = {.lex_state = 1696}, - [5939] = {.lex_state = 374}, - [5940] = {.lex_state = 374}, - [5941] = {.lex_state = 374}, - [5942] = {.lex_state = 374}, - [5943] = {.lex_state = 1696}, - [5944] = {.lex_state = 374}, - [5945] = {.lex_state = 339}, - [5946] = {.lex_state = 374}, - [5947] = {.lex_state = 374}, - [5948] = {.lex_state = 1665}, - [5949] = {.lex_state = 374}, - [5950] = {.lex_state = 312}, - [5951] = {.lex_state = 374}, - [5952] = {.lex_state = 312}, - [5953] = {.lex_state = 312}, - [5954] = {.lex_state = 264}, - [5955] = {.lex_state = 312}, - [5956] = {.lex_state = 305}, - [5957] = {.lex_state = 312}, - [5958] = {.lex_state = 302}, - [5959] = {.lex_state = 320}, - [5960] = {.lex_state = 312}, - [5961] = {.lex_state = 320}, - [5962] = {.lex_state = 312}, - [5963] = {.lex_state = 312}, - [5964] = {.lex_state = 312}, - [5965] = {.lex_state = 312}, - [5966] = {.lex_state = 312}, + [5930] = {.lex_state = 313}, + [5931] = {.lex_state = 321}, + [5932] = {.lex_state = 313}, + [5933] = {.lex_state = 313}, + [5934] = {.lex_state = 313}, + [5935] = {.lex_state = 321}, + [5936] = {.lex_state = 313}, + [5937] = {.lex_state = 275}, + [5938] = {.lex_state = 1697}, + [5939] = {.lex_state = 269}, + [5940] = {.lex_state = 340}, + [5941] = {.lex_state = 313}, + [5942] = {.lex_state = 1697}, + [5943] = {.lex_state = 1697}, + [5944] = {.lex_state = 1697}, + [5945] = {.lex_state = 1666}, + [5946] = {.lex_state = 313}, + [5947] = {.lex_state = 375}, + [5948] = {.lex_state = 313}, + [5949] = {.lex_state = 1695}, + [5950] = {.lex_state = 30}, + [5951] = {.lex_state = 30}, + [5952] = {.lex_state = 30}, + [5953] = {.lex_state = 30}, + [5954] = {.lex_state = 30}, + [5955] = {.lex_state = 1666}, + [5956] = {.lex_state = 30}, + [5957] = {.lex_state = 313}, + [5958] = {.lex_state = 30}, + [5959] = {.lex_state = 313}, + [5960] = {.lex_state = 321}, + [5961] = {.lex_state = 321}, + [5962] = {.lex_state = 1697}, + [5963] = {.lex_state = 30}, + [5964] = {.lex_state = 1697}, + [5965] = {.lex_state = 30}, + [5966] = {.lex_state = 1733}, [5967] = {.lex_state = 30}, - [5968] = {.lex_state = 62}, - [5969] = {.lex_state = 1696}, - [5970] = {.lex_state = 30}, - [5971] = {.lex_state = 320}, - [5972] = {.lex_state = 312}, - [5973] = {.lex_state = 312}, - [5974] = {.lex_state = 1696}, - [5975] = {.lex_state = 320}, - [5976] = {.lex_state = 1665}, - [5977] = {.lex_state = 268}, - [5978] = {.lex_state = 1697}, - [5979] = {.lex_state = 1665}, - [5980] = {.lex_state = 312}, - [5981] = {.lex_state = 1696}, - [5982] = {.lex_state = 1696}, - [5983] = {.lex_state = 1696}, - [5984] = {.lex_state = 374}, - [5985] = {.lex_state = 1696}, - [5986] = {.lex_state = 1665}, - [5987] = {.lex_state = 1665}, - [5988] = {.lex_state = 30}, - [5989] = {.lex_state = 30}, - [5990] = {.lex_state = 274}, - [5991] = {.lex_state = 268}, - [5992] = {.lex_state = 270}, - [5993] = {.lex_state = 1665}, - [5994] = {.lex_state = 267}, - [5995] = {.lex_state = 1665}, - [5996] = {.lex_state = 284}, - [5997] = {.lex_state = 312}, - [5998] = {.lex_state = 1696}, - [5999] = {.lex_state = 1732}, - [6000] = {.lex_state = 30}, - [6001] = {.lex_state = 30}, - [6002] = {.lex_state = 30}, - [6003] = {.lex_state = 1665}, - [6004] = {.lex_state = 30}, - [6005] = {.lex_state = 1665}, - [6006] = {.lex_state = 1665}, - [6007] = {.lex_state = 1696}, - [6008] = {.lex_state = 1665}, - [6009] = {.lex_state = 1696}, - [6010] = {.lex_state = 1665}, - [6011] = {.lex_state = 238}, - [6012] = {.lex_state = 1665}, - [6013] = {.lex_state = 312}, - [6014] = {.lex_state = 312}, - [6015] = {.lex_state = 374}, - [6016] = {.lex_state = 30}, - [6017] = {.lex_state = 30}, - [6018] = {.lex_state = 30}, - [6019] = {.lex_state = 30}, - [6020] = {.lex_state = 30}, - [6021] = {.lex_state = 1696}, - [6022] = {.lex_state = 312}, - [6023] = {.lex_state = 1696}, - [6024] = {.lex_state = 1665}, - [6025] = {.lex_state = 1696}, - [6026] = {.lex_state = 1696}, - [6027] = {.lex_state = 305}, - [6028] = {.lex_state = 305}, - [6029] = {.lex_state = 312}, - [6030] = {.lex_state = 1696}, - [6031] = {.lex_state = 1696}, - [6032] = {.lex_state = 1696}, - [6033] = {.lex_state = 1696}, - [6034] = {.lex_state = 312}, - [6035] = {.lex_state = 1696}, - [6036] = {.lex_state = 1696}, - [6037] = {.lex_state = 1696}, - [6038] = {.lex_state = 1696}, - [6039] = {.lex_state = 1696}, - [6040] = {.lex_state = 1696}, - [6041] = {.lex_state = 1665}, - [6042] = {.lex_state = 1696}, - [6043] = {.lex_state = 1696}, + [5968] = {.lex_state = 30}, + [5969] = {.lex_state = 321}, + [5970] = {.lex_state = 321}, + [5971] = {.lex_state = 1666}, + [5972] = {.lex_state = 313}, + [5973] = {.lex_state = 375}, + [5974] = {.lex_state = 321}, + [5975] = {.lex_state = 321}, + [5976] = {.lex_state = 1666}, + [5977] = {.lex_state = 306}, + [5978] = {.lex_state = 375}, + [5979] = {.lex_state = 321}, + [5980] = {.lex_state = 313}, + [5981] = {.lex_state = 1697}, + [5982] = {.lex_state = 30}, + [5983] = {.lex_state = 30}, + [5984] = {.lex_state = 30}, + [5985] = {.lex_state = 30}, + [5986] = {.lex_state = 321}, + [5987] = {.lex_state = 1697}, + [5988] = {.lex_state = 1697}, + [5989] = {.lex_state = 375}, + [5990] = {.lex_state = 321}, + [5991] = {.lex_state = 313}, + [5992] = {.lex_state = 340}, + [5993] = {.lex_state = 1697}, + [5994] = {.lex_state = 1697}, + [5995] = {.lex_state = 1666}, + [5996] = {.lex_state = 30}, + [5997] = {.lex_state = 1697}, + [5998] = {.lex_state = 1697}, + [5999] = {.lex_state = 271}, + [6000] = {.lex_state = 1697}, + [6001] = {.lex_state = 1697}, + [6002] = {.lex_state = 1697}, + [6003] = {.lex_state = 375}, + [6004] = {.lex_state = 1697}, + [6005] = {.lex_state = 1697}, + [6006] = {.lex_state = 30}, + [6007] = {.lex_state = 375}, + [6008] = {.lex_state = 1697}, + [6009] = {.lex_state = 1697}, + [6010] = {.lex_state = 306}, + [6011] = {.lex_state = 306}, + [6012] = {.lex_state = 1697}, + [6013] = {.lex_state = 1697}, + [6014] = {.lex_state = 1698}, + [6015] = {.lex_state = 1697}, + [6016] = {.lex_state = 1697}, + [6017] = {.lex_state = 1697}, + [6018] = {.lex_state = 1697}, + [6019] = {.lex_state = 1697}, + [6020] = {.lex_state = 1666}, + [6021] = {.lex_state = 30}, + [6022] = {.lex_state = 1697}, + [6023] = {.lex_state = 1697}, + [6024] = {.lex_state = 1697}, + [6025] = {.lex_state = 1697}, + [6026] = {.lex_state = 1697}, + [6027] = {.lex_state = 1697}, + [6028] = {.lex_state = 1697}, + [6029] = {.lex_state = 1697}, + [6030] = {.lex_state = 1697}, + [6031] = {.lex_state = 1697}, + [6032] = {.lex_state = 285}, + [6033] = {.lex_state = 321}, + [6034] = {.lex_state = 321}, + [6035] = {.lex_state = 313}, + [6036] = {.lex_state = 375}, + [6037] = {.lex_state = 30}, + [6038] = {.lex_state = 30}, + [6039] = {.lex_state = 30}, + [6040] = {.lex_state = 30}, + [6041] = {.lex_state = 1698}, + [6042] = {.lex_state = 321}, + [6043] = {.lex_state = 321}, [6044] = {.lex_state = 1697}, - [6045] = {.lex_state = 1696}, - [6046] = {.lex_state = 1696}, - [6047] = {.lex_state = 1665}, - [6048] = {.lex_state = 1665}, - [6049] = {.lex_state = 30}, - [6050] = {.lex_state = 1696}, - [6051] = {.lex_state = 1696}, - [6052] = {.lex_state = 1696}, - [6053] = {.lex_state = 1696}, - [6054] = {.lex_state = 1696}, - [6055] = {.lex_state = 1696}, - [6056] = {.lex_state = 1696}, - [6057] = {.lex_state = 1696}, - [6058] = {.lex_state = 1696}, - [6059] = {.lex_state = 1696}, - [6060] = {.lex_state = 312}, - [6061] = {.lex_state = 30}, - [6062] = {.lex_state = 30}, - [6063] = {.lex_state = 30}, - [6064] = {.lex_state = 30}, - [6065] = {.lex_state = 1665}, - [6066] = {.lex_state = 320}, - [6067] = {.lex_state = 312}, - [6068] = {.lex_state = 305}, - [6069] = {.lex_state = 320}, - [6070] = {.lex_state = 312}, - [6071] = {.lex_state = 312}, - [6072] = {.lex_state = 339}, - [6073] = {.lex_state = 312}, - [6074] = {.lex_state = 1665}, - [6075] = {.lex_state = 1696}, - [6076] = {.lex_state = 356}, - [6077] = {.lex_state = 320}, - [6078] = {.lex_state = 303}, - [6079] = {.lex_state = 320}, - [6080] = {.lex_state = 356}, - [6081] = {.lex_state = 369}, - [6082] = {.lex_state = 244}, - [6083] = {.lex_state = 151}, - [6084] = {.lex_state = 1665}, - [6085] = {.lex_state = 1627}, - [6086] = {.lex_state = 1696}, - [6087] = {.lex_state = 244}, - [6088] = {.lex_state = 151}, - [6089] = {.lex_state = 303}, - [6090] = {.lex_state = 320}, - [6091] = {.lex_state = 300}, - [6092] = {.lex_state = 320}, - [6093] = {.lex_state = 372}, - [6094] = {.lex_state = 1696}, - [6095] = {.lex_state = 1696}, - [6096] = {.lex_state = 1696}, - [6097] = {.lex_state = 130}, - [6098] = {.lex_state = 130}, - [6099] = {.lex_state = 130}, - [6100] = {.lex_state = 130}, - [6101] = {.lex_state = 130}, - [6102] = {.lex_state = 130}, - [6103] = {.lex_state = 130}, - [6104] = {.lex_state = 130}, - [6105] = {.lex_state = 1696}, - [6106] = {.lex_state = 352}, - [6107] = {.lex_state = 1696}, - [6108] = {.lex_state = 372}, - [6109] = {.lex_state = 356}, - [6110] = {.lex_state = 1696}, - [6111] = {.lex_state = 244}, - [6112] = {.lex_state = 320}, - [6113] = {.lex_state = 1696}, - [6114] = {.lex_state = 320}, - [6115] = {.lex_state = 1696}, - [6116] = {.lex_state = 1696}, - [6117] = {.lex_state = 244}, - [6118] = {.lex_state = 320}, - [6119] = {.lex_state = 1696}, - [6120] = {.lex_state = 300}, - [6121] = {.lex_state = 320}, - [6122] = {.lex_state = 1696}, - [6123] = {.lex_state = 320}, - [6124] = {.lex_state = 320}, - [6125] = {.lex_state = 300}, - [6126] = {.lex_state = 1696}, - [6127] = {.lex_state = 1696}, - [6128] = {.lex_state = 130}, - [6129] = {.lex_state = 130}, - [6130] = {.lex_state = 130}, - [6131] = {.lex_state = 130}, - [6132] = {.lex_state = 130}, - [6133] = {.lex_state = 130}, - [6134] = {.lex_state = 130}, - [6135] = {.lex_state = 130}, - [6136] = {.lex_state = 1696}, - [6137] = {.lex_state = 303}, - [6138] = {.lex_state = 1696}, - [6139] = {.lex_state = 1696}, - [6140] = {.lex_state = 356}, - [6141] = {.lex_state = 1696}, - [6142] = {.lex_state = 244}, - [6143] = {.lex_state = 320}, - [6144] = {.lex_state = 320}, - [6145] = {.lex_state = 1696}, - [6146] = {.lex_state = 151}, - [6147] = {.lex_state = 244}, - [6148] = {.lex_state = 151}, - [6149] = {.lex_state = 1696}, - [6150] = {.lex_state = 1696}, - [6151] = {.lex_state = 355}, - [6152] = {.lex_state = 1696}, - [6153] = {.lex_state = 1696}, - [6154] = {.lex_state = 1665}, - [6155] = {.lex_state = 1665}, - [6156] = {.lex_state = 1665}, - [6157] = {.lex_state = 1696}, - [6158] = {.lex_state = 1696}, - [6159] = {.lex_state = 130}, - [6160] = {.lex_state = 130}, - [6161] = {.lex_state = 130}, - [6162] = {.lex_state = 130}, - [6163] = {.lex_state = 130}, - [6164] = {.lex_state = 130}, - [6165] = {.lex_state = 130}, - [6166] = {.lex_state = 130}, - [6167] = {.lex_state = 1696}, - [6168] = {.lex_state = 303}, - [6169] = {.lex_state = 1696}, - [6170] = {.lex_state = 356}, - [6171] = {.lex_state = 238}, - [6172] = {.lex_state = 244}, - [6173] = {.lex_state = 151}, - [6174] = {.lex_state = 1696}, - [6175] = {.lex_state = 130}, - [6176] = {.lex_state = 320}, - [6177] = {.lex_state = 1696}, - [6178] = {.lex_state = 244}, - [6179] = {.lex_state = 356}, - [6180] = {.lex_state = 300}, - [6181] = {.lex_state = 130}, - [6182] = {.lex_state = 1696}, - [6183] = {.lex_state = 1696}, - [6184] = {.lex_state = 151}, - [6185] = {.lex_state = 130}, - [6186] = {.lex_state = 244}, - [6187] = {.lex_state = 1696}, - [6188] = {.lex_state = 130}, - [6189] = {.lex_state = 130}, - [6190] = {.lex_state = 130}, - [6191] = {.lex_state = 130}, - [6192] = {.lex_state = 130}, - [6193] = {.lex_state = 130}, - [6194] = {.lex_state = 130}, - [6195] = {.lex_state = 130}, - [6196] = {.lex_state = 356}, - [6197] = {.lex_state = 352}, - [6198] = {.lex_state = 1696}, - [6199] = {.lex_state = 356}, - [6200] = {.lex_state = 369}, - [6201] = {.lex_state = 244}, - [6202] = {.lex_state = 342}, - [6203] = {.lex_state = 312}, - [6204] = {.lex_state = 1696}, - [6205] = {.lex_state = 1696}, - [6206] = {.lex_state = 1696}, - [6207] = {.lex_state = 244}, - [6208] = {.lex_state = 1696}, - [6209] = {.lex_state = 244}, - [6210] = {.lex_state = 372}, - [6211] = {.lex_state = 365}, - [6212] = {.lex_state = 1696}, - [6213] = {.lex_state = 320}, - [6214] = {.lex_state = 130}, - [6215] = {.lex_state = 130}, - [6216] = {.lex_state = 130}, - [6217] = {.lex_state = 130}, - [6218] = {.lex_state = 130}, - [6219] = {.lex_state = 130}, - [6220] = {.lex_state = 130}, - [6221] = {.lex_state = 130}, - [6222] = {.lex_state = 1696}, - [6223] = {.lex_state = 356}, - [6224] = {.lex_state = 356}, - [6225] = {.lex_state = 365}, - [6226] = {.lex_state = 244}, - [6227] = {.lex_state = 244}, - [6228] = {.lex_state = 130}, - [6229] = {.lex_state = 1696}, - [6230] = {.lex_state = 244}, - [6231] = {.lex_state = 320}, - [6232] = {.lex_state = 320}, - [6233] = {.lex_state = 244}, - [6234] = {.lex_state = 1665}, - [6235] = {.lex_state = 130}, - [6236] = {.lex_state = 130}, - [6237] = {.lex_state = 130}, - [6238] = {.lex_state = 130}, - [6239] = {.lex_state = 130}, - [6240] = {.lex_state = 130}, - [6241] = {.lex_state = 130}, - [6242] = {.lex_state = 130}, - [6243] = {.lex_state = 130}, - [6244] = {.lex_state = 320}, - [6245] = {.lex_state = 130}, - [6246] = {.lex_state = 300}, - [6247] = {.lex_state = 356}, - [6248] = {.lex_state = 244}, - [6249] = {.lex_state = 352}, - [6250] = {.lex_state = 130}, - [6251] = {.lex_state = 339}, - [6252] = {.lex_state = 244}, - [6253] = {.lex_state = 130}, - [6254] = {.lex_state = 320}, - [6255] = {.lex_state = 43}, - [6256] = {.lex_state = 320}, - [6257] = {.lex_state = 1696}, - [6258] = {.lex_state = 130}, - [6259] = {.lex_state = 130}, - [6260] = {.lex_state = 130}, - [6261] = {.lex_state = 130}, - [6262] = {.lex_state = 130}, - [6263] = {.lex_state = 130}, - [6264] = {.lex_state = 130}, - [6265] = {.lex_state = 130}, - [6266] = {.lex_state = 1696}, - [6267] = {.lex_state = 1696}, - [6268] = {.lex_state = 130}, - [6269] = {.lex_state = 303}, - [6270] = {.lex_state = 244}, - [6271] = {.lex_state = 320}, - [6272] = {.lex_state = 370}, - [6273] = {.lex_state = 1696}, - [6274] = {.lex_state = 244}, - [6275] = {.lex_state = 1696}, - [6276] = {.lex_state = 245}, - [6277] = {.lex_state = 151}, - [6278] = {.lex_state = 244}, - [6279] = {.lex_state = 151}, - [6280] = {.lex_state = 130}, - [6281] = {.lex_state = 130}, - [6282] = {.lex_state = 130}, - [6283] = {.lex_state = 130}, - [6284] = {.lex_state = 130}, - [6285] = {.lex_state = 130}, - [6286] = {.lex_state = 130}, - [6287] = {.lex_state = 130}, - [6288] = {.lex_state = 151}, - [6289] = {.lex_state = 30}, - [6290] = {.lex_state = 356}, - [6291] = {.lex_state = 244}, - [6292] = {.lex_state = 244}, - [6293] = {.lex_state = 244}, - [6294] = {.lex_state = 352}, - [6295] = {.lex_state = 244}, - [6296] = {.lex_state = 151}, - [6297] = {.lex_state = 130}, - [6298] = {.lex_state = 130}, - [6299] = {.lex_state = 130}, - [6300] = {.lex_state = 130}, - [6301] = {.lex_state = 130}, - [6302] = {.lex_state = 130}, - [6303] = {.lex_state = 130}, - [6304] = {.lex_state = 130}, - [6305] = {.lex_state = 1696}, - [6306] = {.lex_state = 356}, - [6307] = {.lex_state = 244}, - [6308] = {.lex_state = 244}, - [6309] = {.lex_state = 151}, - [6310] = {.lex_state = 244}, - [6311] = {.lex_state = 43}, - [6312] = {.lex_state = 130}, - [6313] = {.lex_state = 130}, - [6314] = {.lex_state = 130}, - [6315] = {.lex_state = 130}, - [6316] = {.lex_state = 130}, - [6317] = {.lex_state = 130}, - [6318] = {.lex_state = 130}, - [6319] = {.lex_state = 130}, - [6320] = {.lex_state = 130}, - [6321] = {.lex_state = 356}, - [6322] = {.lex_state = 244}, - [6323] = {.lex_state = 1696}, - [6324] = {.lex_state = 244}, - [6325] = {.lex_state = 130}, - [6326] = {.lex_state = 1696}, - [6327] = {.lex_state = 356}, - [6328] = {.lex_state = 244}, - [6329] = {.lex_state = 1696}, - [6330] = {.lex_state = 244}, - [6331] = {.lex_state = 130}, - [6332] = {.lex_state = 356}, - [6333] = {.lex_state = 244}, - [6334] = {.lex_state = 130}, - [6335] = {.lex_state = 244}, - [6336] = {.lex_state = 43}, - [6337] = {.lex_state = 356}, - [6338] = {.lex_state = 244}, - [6339] = {.lex_state = 130}, - [6340] = {.lex_state = 244}, - [6341] = {.lex_state = 151}, - [6342] = {.lex_state = 356}, - [6343] = {.lex_state = 244}, - [6344] = {.lex_state = 244}, - [6345] = {.lex_state = 151}, - [6346] = {.lex_state = 356}, - [6347] = {.lex_state = 244}, - [6348] = {.lex_state = 244}, - [6349] = {.lex_state = 1696}, - [6350] = {.lex_state = 356}, - [6351] = {.lex_state = 244}, - [6352] = {.lex_state = 244}, - [6353] = {.lex_state = 130}, - [6354] = {.lex_state = 356}, - [6355] = {.lex_state = 244}, - [6356] = {.lex_state = 244}, - [6357] = {.lex_state = 151}, - [6358] = {.lex_state = 356}, - [6359] = {.lex_state = 244}, - [6360] = {.lex_state = 244}, - [6361] = {.lex_state = 130}, - [6362] = {.lex_state = 356}, - [6363] = {.lex_state = 244}, - [6364] = {.lex_state = 244}, - [6365] = {.lex_state = 130}, - [6366] = {.lex_state = 356}, - [6367] = {.lex_state = 244}, - [6368] = {.lex_state = 244}, - [6369] = {.lex_state = 151}, - [6370] = {.lex_state = 356}, - [6371] = {.lex_state = 244}, - [6372] = {.lex_state = 244}, - [6373] = {.lex_state = 356}, - [6374] = {.lex_state = 244}, - [6375] = {.lex_state = 244}, - [6376] = {.lex_state = 356}, - [6377] = {.lex_state = 244}, - [6378] = {.lex_state = 244}, - [6379] = {.lex_state = 356}, - [6380] = {.lex_state = 244}, - [6381] = {.lex_state = 244}, - [6382] = {.lex_state = 356}, - [6383] = {.lex_state = 244}, - [6384] = {.lex_state = 244}, - [6385] = {.lex_state = 356}, - [6386] = {.lex_state = 244}, - [6387] = {.lex_state = 244}, - [6388] = {.lex_state = 130}, - [6389] = {.lex_state = 244}, - [6390] = {.lex_state = 244}, - [6391] = {.lex_state = 244}, - [6392] = {.lex_state = 244}, - [6393] = {.lex_state = 244}, - [6394] = {.lex_state = 244}, - [6395] = {.lex_state = 244}, - [6396] = {.lex_state = 244}, - [6397] = {.lex_state = 244}, - [6398] = {.lex_state = 130}, - [6399] = {.lex_state = 130}, - [6400] = {.lex_state = 356}, - [6401] = {.lex_state = 1696}, - [6402] = {.lex_state = 1696}, - [6403] = {.lex_state = 1696}, - [6404] = {.lex_state = 1696}, - [6405] = {.lex_state = 1696}, - [6406] = {.lex_state = 130}, - [6407] = {.lex_state = 130}, - [6408] = {.lex_state = 1665}, - [6409] = {.lex_state = 130}, - [6410] = {.lex_state = 130}, - [6411] = {.lex_state = 119}, - [6412] = {.lex_state = 1696}, - [6413] = {.lex_state = 300}, - [6414] = {.lex_state = 312}, - [6415] = {.lex_state = 300}, - [6416] = {.lex_state = 339}, - [6417] = {.lex_state = 1696}, - [6418] = {.lex_state = 130}, - [6419] = {.lex_state = 1696}, - [6420] = {.lex_state = 1696}, - [6421] = {.lex_state = 130}, - [6422] = {.lex_state = 1696}, - [6423] = {.lex_state = 1696}, - [6424] = {.lex_state = 1696}, - [6425] = {.lex_state = 372}, - [6426] = {.lex_state = 372}, - [6427] = {.lex_state = 1696}, - [6428] = {.lex_state = 1696}, - [6429] = {.lex_state = 1696}, - [6430] = {.lex_state = 1696}, - [6431] = {.lex_state = 1696}, - [6432] = {.lex_state = 1696}, - [6433] = {.lex_state = 370}, - [6434] = {.lex_state = 320}, - [6435] = {.lex_state = 76}, - [6436] = {.lex_state = 1696}, - [6437] = {.lex_state = 320}, - [6438] = {.lex_state = 320}, - [6439] = {.lex_state = 1696}, - [6440] = {.lex_state = 1696}, - [6441] = {.lex_state = 320}, - [6442] = {.lex_state = 320}, - [6443] = {.lex_state = 1696}, - [6444] = {.lex_state = 1696}, - [6445] = {.lex_state = 1696}, - [6446] = {.lex_state = 320}, - [6447] = {.lex_state = 43}, - [6448] = {.lex_state = 43}, - [6449] = {.lex_state = 320}, - [6450] = {.lex_state = 303}, - [6451] = {.lex_state = 320}, - [6452] = {.lex_state = 1696}, - [6453] = {.lex_state = 320}, - [6454] = {.lex_state = 370}, - [6455] = {.lex_state = 1696}, - [6456] = {.lex_state = 1696}, - [6457] = {.lex_state = 365}, - [6458] = {.lex_state = 130}, - [6459] = {.lex_state = 356}, - [6460] = {.lex_state = 130}, - [6461] = {.lex_state = 320}, - [6462] = {.lex_state = 1696}, - [6463] = {.lex_state = 303}, - [6464] = {.lex_state = 244}, - [6465] = {.lex_state = 320}, - [6466] = {.lex_state = 352}, - [6467] = {.lex_state = 130}, - [6468] = {.lex_state = 310}, - [6469] = {.lex_state = 151}, - [6470] = {.lex_state = 1696}, - [6471] = {.lex_state = 151}, + [6045] = {.lex_state = 1697}, + [6046] = {.lex_state = 30}, + [6047] = {.lex_state = 375}, + [6048] = {.lex_state = 313}, + [6049] = {.lex_state = 375}, + [6050] = {.lex_state = 306}, + [6051] = {.lex_state = 375}, + [6052] = {.lex_state = 313}, + [6053] = {.lex_state = 321}, + [6054] = {.lex_state = 1666}, + [6055] = {.lex_state = 375}, + [6056] = {.lex_state = 1666}, + [6057] = {.lex_state = 321}, + [6058] = {.lex_state = 1697}, + [6059] = {.lex_state = 1666}, + [6060] = {.lex_state = 313}, + [6061] = {.lex_state = 375}, + [6062] = {.lex_state = 105}, + [6063] = {.lex_state = 321}, + [6064] = {.lex_state = 321}, + [6065] = {.lex_state = 321}, + [6066] = {.lex_state = 321}, + [6067] = {.lex_state = 321}, + [6068] = {.lex_state = 321}, + [6069] = {.lex_state = 321}, + [6070] = {.lex_state = 321}, + [6071] = {.lex_state = 321}, + [6072] = {.lex_state = 321}, + [6073] = {.lex_state = 321}, + [6074] = {.lex_state = 321}, + [6075] = {.lex_state = 321}, + [6076] = {.lex_state = 1697}, + [6077] = {.lex_state = 373}, + [6078] = {.lex_state = 370}, + [6079] = {.lex_state = 370}, + [6080] = {.lex_state = 357}, + [6081] = {.lex_state = 245}, + [6082] = {.lex_state = 42}, + [6083] = {.lex_state = 245}, + [6084] = {.lex_state = 354}, + [6085] = {.lex_state = 354}, + [6086] = {.lex_state = 371}, + [6087] = {.lex_state = 30}, + [6088] = {.lex_state = 105}, + [6089] = {.lex_state = 42}, + [6090] = {.lex_state = 353}, + [6091] = {.lex_state = 42}, + [6092] = {.lex_state = 1697}, + [6093] = {.lex_state = 1697}, + [6094] = {.lex_state = 1697}, + [6095] = {.lex_state = 1697}, + [6096] = {.lex_state = 1697}, + [6097] = {.lex_state = 1697}, + [6098] = {.lex_state = 239}, + [6099] = {.lex_state = 373}, + [6100] = {.lex_state = 105}, + [6101] = {.lex_state = 1697}, + [6102] = {.lex_state = 105}, + [6103] = {.lex_state = 1697}, + [6104] = {.lex_state = 353}, + [6105] = {.lex_state = 373}, + [6106] = {.lex_state = 239}, + [6107] = {.lex_state = 1697}, + [6108] = {.lex_state = 1697}, + [6109] = {.lex_state = 1697}, + [6110] = {.lex_state = 246}, + [6111] = {.lex_state = 162}, + [6112] = {.lex_state = 162}, + [6113] = {.lex_state = 105}, + [6114] = {.lex_state = 105}, + [6115] = {.lex_state = 105}, + [6116] = {.lex_state = 1697}, + [6117] = {.lex_state = 1697}, + [6118] = {.lex_state = 356}, + [6119] = {.lex_state = 321}, + [6120] = {.lex_state = 1697}, + [6121] = {.lex_state = 366}, + [6122] = {.lex_state = 1697}, + [6123] = {.lex_state = 1697}, + [6124] = {.lex_state = 1697}, + [6125] = {.lex_state = 1697}, + [6126] = {.lex_state = 1697}, + [6127] = {.lex_state = 321}, + [6128] = {.lex_state = 1697}, + [6129] = {.lex_state = 162}, + [6130] = {.lex_state = 162}, + [6131] = {.lex_state = 162}, + [6132] = {.lex_state = 162}, + [6133] = {.lex_state = 105}, + [6134] = {.lex_state = 105}, + [6135] = {.lex_state = 105}, + [6136] = {.lex_state = 321}, + [6137] = {.lex_state = 357}, + [6138] = {.lex_state = 301}, + [6139] = {.lex_state = 1697}, + [6140] = {.lex_state = 1697}, + [6141] = {.lex_state = 353}, + [6142] = {.lex_state = 313}, + [6143] = {.lex_state = 1697}, + [6144] = {.lex_state = 245}, + [6145] = {.lex_state = 1697}, + [6146] = {.lex_state = 162}, + [6147] = {.lex_state = 162}, + [6148] = {.lex_state = 1697}, + [6149] = {.lex_state = 1697}, + [6150] = {.lex_state = 105}, + [6151] = {.lex_state = 1697}, + [6152] = {.lex_state = 1697}, + [6153] = {.lex_state = 301}, + [6154] = {.lex_state = 1697}, + [6155] = {.lex_state = 1697}, + [6156] = {.lex_state = 1697}, + [6157] = {.lex_state = 1697}, + [6158] = {.lex_state = 1697}, + [6159] = {.lex_state = 371}, + [6160] = {.lex_state = 304}, + [6161] = {.lex_state = 1697}, + [6162] = {.lex_state = 245}, + [6163] = {.lex_state = 1697}, + [6164] = {.lex_state = 105}, + [6165] = {.lex_state = 105}, + [6166] = {.lex_state = 42}, + [6167] = {.lex_state = 1697}, + [6168] = {.lex_state = 245}, + [6169] = {.lex_state = 1697}, + [6170] = {.lex_state = 1697}, + [6171] = {.lex_state = 1697}, + [6172] = {.lex_state = 105}, + [6173] = {.lex_state = 162}, + [6174] = {.lex_state = 357}, + [6175] = {.lex_state = 162}, + [6176] = {.lex_state = 245}, + [6177] = {.lex_state = 1697}, + [6178] = {.lex_state = 162}, + [6179] = {.lex_state = 162}, + [6180] = {.lex_state = 353}, + [6181] = {.lex_state = 1697}, + [6182] = {.lex_state = 245}, + [6183] = {.lex_state = 1697}, + [6184] = {.lex_state = 42}, + [6185] = {.lex_state = 42}, + [6186] = {.lex_state = 105}, + [6187] = {.lex_state = 105}, + [6188] = {.lex_state = 105}, + [6189] = {.lex_state = 105}, + [6190] = {.lex_state = 105}, + [6191] = {.lex_state = 105}, + [6192] = {.lex_state = 105}, + [6193] = {.lex_state = 105}, + [6194] = {.lex_state = 1697}, + [6195] = {.lex_state = 353}, + [6196] = {.lex_state = 301}, + [6197] = {.lex_state = 1697}, + [6198] = {.lex_state = 105}, + [6199] = {.lex_state = 106}, + [6200] = {.lex_state = 313}, + [6201] = {.lex_state = 340}, + [6202] = {.lex_state = 1697}, + [6203] = {.lex_state = 1697}, + [6204] = {.lex_state = 1697}, + [6205] = {.lex_state = 1697}, + [6206] = {.lex_state = 1697}, + [6207] = {.lex_state = 357}, + [6208] = {.lex_state = 245}, + [6209] = {.lex_state = 371}, + [6210] = {.lex_state = 366}, + [6211] = {.lex_state = 245}, + [6212] = {.lex_state = 1697}, + [6213] = {.lex_state = 1697}, + [6214] = {.lex_state = 105}, + [6215] = {.lex_state = 105}, + [6216] = {.lex_state = 105}, + [6217] = {.lex_state = 105}, + [6218] = {.lex_state = 105}, + [6219] = {.lex_state = 105}, + [6220] = {.lex_state = 105}, + [6221] = {.lex_state = 105}, + [6222] = {.lex_state = 162}, + [6223] = {.lex_state = 357}, + [6224] = {.lex_state = 245}, + [6225] = {.lex_state = 246}, + [6226] = {.lex_state = 245}, + [6227] = {.lex_state = 105}, + [6228] = {.lex_state = 353}, + [6229] = {.lex_state = 105}, + [6230] = {.lex_state = 1697}, + [6231] = {.lex_state = 105}, + [6232] = {.lex_state = 105}, + [6233] = {.lex_state = 105}, + [6234] = {.lex_state = 105}, + [6235] = {.lex_state = 105}, + [6236] = {.lex_state = 105}, + [6237] = {.lex_state = 105}, + [6238] = {.lex_state = 105}, + [6239] = {.lex_state = 1697}, + [6240] = {.lex_state = 357}, + [6241] = {.lex_state = 245}, + [6242] = {.lex_state = 162}, + [6243] = {.lex_state = 105}, + [6244] = {.lex_state = 301}, + [6245] = {.lex_state = 371}, + [6246] = {.lex_state = 371}, + [6247] = {.lex_state = 245}, + [6248] = {.lex_state = 1697}, + [6249] = {.lex_state = 245}, + [6250] = {.lex_state = 1697}, + [6251] = {.lex_state = 246}, + [6252] = {.lex_state = 304}, + [6253] = {.lex_state = 1697}, + [6254] = {.lex_state = 105}, + [6255] = {.lex_state = 105}, + [6256] = {.lex_state = 105}, + [6257] = {.lex_state = 105}, + [6258] = {.lex_state = 105}, + [6259] = {.lex_state = 105}, + [6260] = {.lex_state = 105}, + [6261] = {.lex_state = 105}, + [6262] = {.lex_state = 304}, + [6263] = {.lex_state = 304}, + [6264] = {.lex_state = 357}, + [6265] = {.lex_state = 1697}, + [6266] = {.lex_state = 245}, + [6267] = {.lex_state = 1697}, + [6268] = {.lex_state = 1697}, + [6269] = {.lex_state = 245}, + [6270] = {.lex_state = 1697}, + [6271] = {.lex_state = 105}, + [6272] = {.lex_state = 105}, + [6273] = {.lex_state = 105}, + [6274] = {.lex_state = 105}, + [6275] = {.lex_state = 105}, + [6276] = {.lex_state = 105}, + [6277] = {.lex_state = 105}, + [6278] = {.lex_state = 105}, + [6279] = {.lex_state = 357}, + [6280] = {.lex_state = 245}, + [6281] = {.lex_state = 245}, + [6282] = {.lex_state = 1697}, + [6283] = {.lex_state = 105}, + [6284] = {.lex_state = 105}, + [6285] = {.lex_state = 105}, + [6286] = {.lex_state = 105}, + [6287] = {.lex_state = 105}, + [6288] = {.lex_state = 105}, + [6289] = {.lex_state = 105}, + [6290] = {.lex_state = 105}, + [6291] = {.lex_state = 357}, + [6292] = {.lex_state = 245}, + [6293] = {.lex_state = 245}, + [6294] = {.lex_state = 105}, + [6295] = {.lex_state = 1697}, + [6296] = {.lex_state = 1697}, + [6297] = {.lex_state = 1697}, + [6298] = {.lex_state = 105}, + [6299] = {.lex_state = 105}, + [6300] = {.lex_state = 105}, + [6301] = {.lex_state = 105}, + [6302] = {.lex_state = 105}, + [6303] = {.lex_state = 105}, + [6304] = {.lex_state = 105}, + [6305] = {.lex_state = 105}, + [6306] = {.lex_state = 301}, + [6307] = {.lex_state = 301}, + [6308] = {.lex_state = 357}, + [6309] = {.lex_state = 245}, + [6310] = {.lex_state = 105}, + [6311] = {.lex_state = 245}, + [6312] = {.lex_state = 321}, + [6313] = {.lex_state = 105}, + [6314] = {.lex_state = 105}, + [6315] = {.lex_state = 1697}, + [6316] = {.lex_state = 105}, + [6317] = {.lex_state = 105}, + [6318] = {.lex_state = 105}, + [6319] = {.lex_state = 105}, + [6320] = {.lex_state = 105}, + [6321] = {.lex_state = 105}, + [6322] = {.lex_state = 105}, + [6323] = {.lex_state = 105}, + [6324] = {.lex_state = 105}, + [6325] = {.lex_state = 321}, + [6326] = {.lex_state = 357}, + [6327] = {.lex_state = 245}, + [6328] = {.lex_state = 245}, + [6329] = {.lex_state = 1628}, + [6330] = {.lex_state = 1697}, + [6331] = {.lex_state = 105}, + [6332] = {.lex_state = 105}, + [6333] = {.lex_state = 105}, + [6334] = {.lex_state = 105}, + [6335] = {.lex_state = 105}, + [6336] = {.lex_state = 105}, + [6337] = {.lex_state = 105}, + [6338] = {.lex_state = 105}, + [6339] = {.lex_state = 1697}, + [6340] = {.lex_state = 304}, + [6341] = {.lex_state = 357}, + [6342] = {.lex_state = 245}, + [6343] = {.lex_state = 1697}, + [6344] = {.lex_state = 1697}, + [6345] = {.lex_state = 245}, + [6346] = {.lex_state = 1697}, + [6347] = {.lex_state = 1697}, + [6348] = {.lex_state = 1697}, + [6349] = {.lex_state = 1697}, + [6350] = {.lex_state = 105}, + [6351] = {.lex_state = 105}, + [6352] = {.lex_state = 105}, + [6353] = {.lex_state = 105}, + [6354] = {.lex_state = 105}, + [6355] = {.lex_state = 105}, + [6356] = {.lex_state = 105}, + [6357] = {.lex_state = 105}, + [6358] = {.lex_state = 1697}, + [6359] = {.lex_state = 357}, + [6360] = {.lex_state = 245}, + [6361] = {.lex_state = 245}, + [6362] = {.lex_state = 105}, + [6363] = {.lex_state = 105}, + [6364] = {.lex_state = 105}, + [6365] = {.lex_state = 105}, + [6366] = {.lex_state = 105}, + [6367] = {.lex_state = 105}, + [6368] = {.lex_state = 105}, + [6369] = {.lex_state = 105}, + [6370] = {.lex_state = 321}, + [6371] = {.lex_state = 245}, + [6372] = {.lex_state = 245}, + [6373] = {.lex_state = 162}, + [6374] = {.lex_state = 162}, + [6375] = {.lex_state = 105}, + [6376] = {.lex_state = 105}, + [6377] = {.lex_state = 105}, + [6378] = {.lex_state = 105}, + [6379] = {.lex_state = 105}, + [6380] = {.lex_state = 105}, + [6381] = {.lex_state = 105}, + [6382] = {.lex_state = 105}, + [6383] = {.lex_state = 370}, + [6384] = {.lex_state = 357}, + [6385] = {.lex_state = 245}, + [6386] = {.lex_state = 245}, + [6387] = {.lex_state = 304}, + [6388] = {.lex_state = 105}, + [6389] = {.lex_state = 105}, + [6390] = {.lex_state = 105}, + [6391] = {.lex_state = 105}, + [6392] = {.lex_state = 105}, + [6393] = {.lex_state = 105}, + [6394] = {.lex_state = 105}, + [6395] = {.lex_state = 105}, + [6396] = {.lex_state = 105}, + [6397] = {.lex_state = 105}, + [6398] = {.lex_state = 357}, + [6399] = {.lex_state = 245}, + [6400] = {.lex_state = 105}, + [6401] = {.lex_state = 245}, + [6402] = {.lex_state = 105}, + [6403] = {.lex_state = 105}, + [6404] = {.lex_state = 105}, + [6405] = {.lex_state = 105}, + [6406] = {.lex_state = 105}, + [6407] = {.lex_state = 105}, + [6408] = {.lex_state = 105}, + [6409] = {.lex_state = 105}, + [6410] = {.lex_state = 357}, + [6411] = {.lex_state = 245}, + [6412] = {.lex_state = 245}, + [6413] = {.lex_state = 105}, + [6414] = {.lex_state = 1697}, + [6415] = {.lex_state = 357}, + [6416] = {.lex_state = 245}, + [6417] = {.lex_state = 245}, + [6418] = {.lex_state = 357}, + [6419] = {.lex_state = 245}, + [6420] = {.lex_state = 245}, + [6421] = {.lex_state = 357}, + [6422] = {.lex_state = 245}, + [6423] = {.lex_state = 245}, + [6424] = {.lex_state = 105}, + [6425] = {.lex_state = 357}, + [6426] = {.lex_state = 245}, + [6427] = {.lex_state = 245}, + [6428] = {.lex_state = 357}, + [6429] = {.lex_state = 245}, + [6430] = {.lex_state = 245}, + [6431] = {.lex_state = 357}, + [6432] = {.lex_state = 245}, + [6433] = {.lex_state = 245}, + [6434] = {.lex_state = 357}, + [6435] = {.lex_state = 245}, + [6436] = {.lex_state = 245}, + [6437] = {.lex_state = 1697}, + [6438] = {.lex_state = 357}, + [6439] = {.lex_state = 245}, + [6440] = {.lex_state = 245}, + [6441] = {.lex_state = 105}, + [6442] = {.lex_state = 357}, + [6443] = {.lex_state = 245}, + [6444] = {.lex_state = 245}, + [6445] = {.lex_state = 357}, + [6446] = {.lex_state = 245}, + [6447] = {.lex_state = 245}, + [6448] = {.lex_state = 357}, + [6449] = {.lex_state = 245}, + [6450] = {.lex_state = 245}, + [6451] = {.lex_state = 357}, + [6452] = {.lex_state = 245}, + [6453] = {.lex_state = 245}, + [6454] = {.lex_state = 357}, + [6455] = {.lex_state = 245}, + [6456] = {.lex_state = 245}, + [6457] = {.lex_state = 357}, + [6458] = {.lex_state = 245}, + [6459] = {.lex_state = 245}, + [6460] = {.lex_state = 357}, + [6461] = {.lex_state = 245}, + [6462] = {.lex_state = 245}, + [6463] = {.lex_state = 245}, + [6464] = {.lex_state = 245}, + [6465] = {.lex_state = 245}, + [6466] = {.lex_state = 245}, + [6467] = {.lex_state = 245}, + [6468] = {.lex_state = 245}, + [6469] = {.lex_state = 245}, + [6470] = {.lex_state = 245}, + [6471] = {.lex_state = 245}, [6472] = {.lex_state = 245}, - [6473] = {.lex_state = 130}, - [6474] = {.lex_state = 320}, - [6475] = {.lex_state = 244}, - [6476] = {.lex_state = 151}, - [6477] = {.lex_state = 151}, - [6478] = {.lex_state = 130}, - [6479] = {.lex_state = 320}, - [6480] = {.lex_state = 352}, - [6481] = {.lex_state = 151}, - [6482] = {.lex_state = 1696}, - [6483] = {.lex_state = 305}, - [6484] = {.lex_state = 352}, - [6485] = {.lex_state = 303}, - [6486] = {.lex_state = 130}, - [6487] = {.lex_state = 130}, - [6488] = {.lex_state = 312}, - [6489] = {.lex_state = 130}, - [6490] = {.lex_state = 130}, - [6491] = {.lex_state = 130}, - [6492] = {.lex_state = 1696}, - [6493] = {.lex_state = 1696}, - [6494] = {.lex_state = 1696}, - [6495] = {.lex_state = 130}, - [6496] = {.lex_state = 1696}, - [6497] = {.lex_state = 320}, - [6498] = {.lex_state = 268}, - [6499] = {.lex_state = 1696}, - [6500] = {.lex_state = 1696}, - [6501] = {.lex_state = 130}, - [6502] = {.lex_state = 130}, - [6503] = {.lex_state = 130}, - [6504] = {.lex_state = 320}, - [6505] = {.lex_state = 1696}, - [6506] = {.lex_state = 370}, - [6507] = {.lex_state = 370}, - [6508] = {.lex_state = 130}, - [6509] = {.lex_state = 1696}, - [6510] = {.lex_state = 1696}, - [6511] = {.lex_state = 130}, - [6512] = {.lex_state = 1696}, - [6513] = {.lex_state = 1696}, - [6514] = {.lex_state = 320}, - [6515] = {.lex_state = 244}, - [6516] = {.lex_state = 1665}, - [6517] = {.lex_state = 1696}, - [6518] = {.lex_state = 245}, - [6519] = {.lex_state = 268}, - [6520] = {.lex_state = 320}, - [6521] = {.lex_state = 356}, - [6522] = {.lex_state = 130}, - [6523] = {.lex_state = 320}, - [6524] = {.lex_state = 75}, - [6525] = {.lex_state = 356}, - [6526] = {.lex_state = 300}, - [6527] = {.lex_state = 244}, - [6528] = {.lex_state = 130}, - [6529] = {.lex_state = 1696}, - [6530] = {.lex_state = 238}, - [6531] = {.lex_state = 1696}, - [6532] = {.lex_state = 352}, - [6533] = {.lex_state = 1696}, - [6534] = {.lex_state = 1696}, - [6535] = {.lex_state = 320}, - [6536] = {.lex_state = 303}, - [6537] = {.lex_state = 1696}, - [6538] = {.lex_state = 244}, - [6539] = {.lex_state = 130}, - [6540] = {.lex_state = 352}, - [6541] = {.lex_state = 1696}, - [6542] = {.lex_state = 320}, - [6543] = {.lex_state = 1696}, - [6544] = {.lex_state = 151}, - [6545] = {.lex_state = 1696}, - [6546] = {.lex_state = 320}, - [6547] = {.lex_state = 130}, - [6548] = {.lex_state = 353}, - [6549] = {.lex_state = 320}, - [6550] = {.lex_state = 320}, - [6551] = {.lex_state = 130}, - [6552] = {.lex_state = 1696}, - [6553] = {.lex_state = 151}, - [6554] = {.lex_state = 130}, - [6555] = {.lex_state = 151}, - [6556] = {.lex_state = 130}, - [6557] = {.lex_state = 130}, - [6558] = {.lex_state = 130}, - [6559] = {.lex_state = 130}, - [6560] = {.lex_state = 130}, - [6561] = {.lex_state = 130}, - [6562] = {.lex_state = 130}, - [6563] = {.lex_state = 130}, - [6564] = {.lex_state = 130}, - [6565] = {.lex_state = 151}, - [6566] = {.lex_state = 320}, - [6567] = {.lex_state = 353}, - [6568] = {.lex_state = 1696}, - [6569] = {.lex_state = 1696}, - [6570] = {.lex_state = 356}, - [6571] = {.lex_state = 1696}, - [6572] = {.lex_state = 244}, - [6573] = {.lex_state = 130}, - [6574] = {.lex_state = 1696}, - [6575] = {.lex_state = 320}, - [6576] = {.lex_state = 1696}, - [6577] = {.lex_state = 130}, - [6578] = {.lex_state = 365}, - [6579] = {.lex_state = 1696}, - [6580] = {.lex_state = 244}, - [6581] = {.lex_state = 320}, - [6582] = {.lex_state = 320}, - [6583] = {.lex_state = 43}, - [6584] = {.lex_state = 352}, - [6585] = {.lex_state = 1696}, - [6586] = {.lex_state = 130}, - [6587] = {.lex_state = 1696}, - [6588] = {.lex_state = 1696}, - [6589] = {.lex_state = 365}, - [6590] = {.lex_state = 1696}, - [6591] = {.lex_state = 1696}, - [6592] = {.lex_state = 1696}, - [6593] = {.lex_state = 1696}, - [6594] = {.lex_state = 1696}, - [6595] = {.lex_state = 1696}, - [6596] = {.lex_state = 320}, - [6597] = {.lex_state = 320}, - [6598] = {.lex_state = 305}, - [6599] = {.lex_state = 369}, - [6600] = {.lex_state = 305}, - [6601] = {.lex_state = 1696}, - [6602] = {.lex_state = 1696}, - [6603] = {.lex_state = 1696}, - [6604] = {.lex_state = 1696}, - [6605] = {.lex_state = 1696}, - [6606] = {.lex_state = 369}, - [6607] = {.lex_state = 130}, - [6608] = {.lex_state = 130}, - [6609] = {.lex_state = 130}, - [6610] = {.lex_state = 130}, - [6611] = {.lex_state = 320}, - [6612] = {.lex_state = 320}, - [6613] = {.lex_state = 369}, - [6614] = {.lex_state = 130}, - [6615] = {.lex_state = 130}, - [6616] = {.lex_state = 130}, - [6617] = {.lex_state = 320}, - [6618] = {.lex_state = 320}, - [6619] = {.lex_state = 1696}, - [6620] = {.lex_state = 320}, - [6621] = {.lex_state = 320}, - [6622] = {.lex_state = 320}, - [6623] = {.lex_state = 30}, - [6624] = {.lex_state = 130}, - [6625] = {.lex_state = 300}, - [6626] = {.lex_state = 1696}, - [6627] = {.lex_state = 1696}, - [6628] = {.lex_state = 1696}, - [6629] = {.lex_state = 244}, - [6630] = {.lex_state = 1696}, - [6631] = {.lex_state = 151}, - [6632] = {.lex_state = 130}, - [6633] = {.lex_state = 130}, - [6634] = {.lex_state = 130}, - [6635] = {.lex_state = 238}, - [6636] = {.lex_state = 130}, - [6637] = {.lex_state = 130}, - [6638] = {.lex_state = 130}, - [6639] = {.lex_state = 151}, - [6640] = {.lex_state = 1692}, - [6641] = {.lex_state = 130}, - [6642] = {.lex_state = 151}, - [6643] = {.lex_state = 130}, - [6644] = {.lex_state = 374}, - [6645] = {.lex_state = 130}, - [6646] = {.lex_state = 38}, - [6647] = {.lex_state = 130}, - [6648] = {.lex_state = 354}, - [6649] = {.lex_state = 238}, - [6650] = {.lex_state = 130}, - [6651] = {.lex_state = 304}, - [6652] = {.lex_state = 79}, - [6653] = {.lex_state = 130}, - [6654] = {.lex_state = 1696}, - [6655] = {.lex_state = 1692}, - [6656] = {.lex_state = 1696}, - [6657] = {.lex_state = 79}, - [6658] = {.lex_state = 368}, - [6659] = {.lex_state = 304}, - [6660] = {.lex_state = 79}, - [6661] = {.lex_state = 130}, - [6662] = {.lex_state = 1696}, - [6663] = {.lex_state = 130}, - [6664] = {.lex_state = 130}, - [6665] = {.lex_state = 130}, - [6666] = {.lex_state = 130}, - [6667] = {.lex_state = 130}, - [6668] = {.lex_state = 1696}, - [6669] = {.lex_state = 130}, - [6670] = {.lex_state = 130}, - [6671] = {.lex_state = 371}, - [6672] = {.lex_state = 1696}, - [6673] = {.lex_state = 130}, - [6674] = {.lex_state = 1694}, - [6675] = {.lex_state = 1696}, - [6676] = {.lex_state = 69}, - [6677] = {.lex_state = 130}, - [6678] = {.lex_state = 1696}, - [6679] = {.lex_state = 373}, - [6680] = {.lex_state = 304}, + [6473] = {.lex_state = 301}, + [6474] = {.lex_state = 357}, + [6475] = {.lex_state = 340}, + [6476] = {.lex_state = 353}, + [6477] = {.lex_state = 1697}, + [6478] = {.lex_state = 366}, + [6479] = {.lex_state = 1697}, + [6480] = {.lex_state = 1697}, + [6481] = {.lex_state = 1666}, + [6482] = {.lex_state = 1697}, + [6483] = {.lex_state = 1697}, + [6484] = {.lex_state = 1697}, + [6485] = {.lex_state = 1697}, + [6486] = {.lex_state = 1697}, + [6487] = {.lex_state = 1697}, + [6488] = {.lex_state = 105}, + [6489] = {.lex_state = 301}, + [6490] = {.lex_state = 1697}, + [6491] = {.lex_state = 321}, + [6492] = {.lex_state = 301}, + [6493] = {.lex_state = 321}, + [6494] = {.lex_state = 321}, + [6495] = {.lex_state = 1697}, + [6496] = {.lex_state = 1697}, + [6497] = {.lex_state = 321}, + [6498] = {.lex_state = 1697}, + [6499] = {.lex_state = 1697}, + [6500] = {.lex_state = 105}, + [6501] = {.lex_state = 1697}, + [6502] = {.lex_state = 373}, + [6503] = {.lex_state = 373}, + [6504] = {.lex_state = 162}, + [6505] = {.lex_state = 1697}, + [6506] = {.lex_state = 162}, + [6507] = {.lex_state = 162}, + [6508] = {.lex_state = 162}, + [6509] = {.lex_state = 162}, + [6510] = {.lex_state = 162}, + [6511] = {.lex_state = 105}, + [6512] = {.lex_state = 105}, + [6513] = {.lex_state = 105}, + [6514] = {.lex_state = 75}, + [6515] = {.lex_state = 343}, + [6516] = {.lex_state = 366}, + [6517] = {.lex_state = 1697}, + [6518] = {.lex_state = 1697}, + [6519] = {.lex_state = 366}, + [6520] = {.lex_state = 1666}, + [6521] = {.lex_state = 1697}, + [6522] = {.lex_state = 1697}, + [6523] = {.lex_state = 304}, + [6524] = {.lex_state = 1697}, + [6525] = {.lex_state = 162}, + [6526] = {.lex_state = 162}, + [6527] = {.lex_state = 311}, + [6528] = {.lex_state = 1697}, + [6529] = {.lex_state = 1697}, + [6530] = {.lex_state = 105}, + [6531] = {.lex_state = 321}, + [6532] = {.lex_state = 321}, + [6533] = {.lex_state = 269}, + [6534] = {.lex_state = 321}, + [6535] = {.lex_state = 321}, + [6536] = {.lex_state = 306}, + [6537] = {.lex_state = 321}, + [6538] = {.lex_state = 321}, + [6539] = {.lex_state = 321}, + [6540] = {.lex_state = 1697}, + [6541] = {.lex_state = 1697}, + [6542] = {.lex_state = 74}, + [6543] = {.lex_state = 1697}, + [6544] = {.lex_state = 1697}, + [6545] = {.lex_state = 1697}, + [6546] = {.lex_state = 1697}, + [6547] = {.lex_state = 1697}, + [6548] = {.lex_state = 1697}, + [6549] = {.lex_state = 269}, + [6550] = {.lex_state = 353}, + [6551] = {.lex_state = 1666}, + [6552] = {.lex_state = 1697}, + [6553] = {.lex_state = 245}, + [6554] = {.lex_state = 1697}, + [6555] = {.lex_state = 304}, + [6556] = {.lex_state = 353}, + [6557] = {.lex_state = 304}, + [6558] = {.lex_state = 321}, + [6559] = {.lex_state = 321}, + [6560] = {.lex_state = 321}, + [6561] = {.lex_state = 1666}, + [6562] = {.lex_state = 313}, + [6563] = {.lex_state = 1697}, + [6564] = {.lex_state = 1697}, + [6565] = {.lex_state = 321}, + [6566] = {.lex_state = 357}, + [6567] = {.lex_state = 321}, + [6568] = {.lex_state = 105}, + [6569] = {.lex_state = 1697}, + [6570] = {.lex_state = 321}, + [6571] = {.lex_state = 370}, + [6572] = {.lex_state = 321}, + [6573] = {.lex_state = 321}, + [6574] = {.lex_state = 321}, + [6575] = {.lex_state = 321}, + [6576] = {.lex_state = 321}, + [6577] = {.lex_state = 321}, + [6578] = {.lex_state = 321}, + [6579] = {.lex_state = 321}, + [6580] = {.lex_state = 321}, + [6581] = {.lex_state = 321}, + [6582] = {.lex_state = 321}, + [6583] = {.lex_state = 321}, + [6584] = {.lex_state = 1697}, + [6585] = {.lex_state = 1697}, + [6586] = {.lex_state = 1697}, + [6587] = {.lex_state = 1697}, + [6588] = {.lex_state = 1697}, + [6589] = {.lex_state = 321}, + [6590] = {.lex_state = 1697}, + [6591] = {.lex_state = 321}, + [6592] = {.lex_state = 321}, + [6593] = {.lex_state = 321}, + [6594] = {.lex_state = 1697}, + [6595] = {.lex_state = 1697}, + [6596] = {.lex_state = 1697}, + [6597] = {.lex_state = 1697}, + [6598] = {.lex_state = 353}, + [6599] = {.lex_state = 1697}, + [6600] = {.lex_state = 1697}, + [6601] = {.lex_state = 321}, + [6602] = {.lex_state = 321}, + [6603] = {.lex_state = 306}, + [6604] = {.lex_state = 370}, + [6605] = {.lex_state = 306}, + [6606] = {.lex_state = 321}, + [6607] = {.lex_state = 321}, + [6608] = {.lex_state = 30}, + [6609] = {.lex_state = 1666}, + [6610] = {.lex_state = 1666}, + [6611] = {.lex_state = 1666}, + [6612] = {.lex_state = 357}, + [6613] = {.lex_state = 349}, + [6614] = {.lex_state = 105}, + [6615] = {.lex_state = 105}, + [6616] = {.lex_state = 1697}, + [6617] = {.lex_state = 367}, + [6618] = {.lex_state = 105}, + [6619] = {.lex_state = 105}, + [6620] = {.lex_state = 105}, + [6621] = {.lex_state = 105}, + [6622] = {.lex_state = 105}, + [6623] = {.lex_state = 105}, + [6624] = {.lex_state = 105}, + [6625] = {.lex_state = 1697}, + [6626] = {.lex_state = 1697}, + [6627] = {.lex_state = 105}, + [6628] = {.lex_state = 105}, + [6629] = {.lex_state = 105}, + [6630] = {.lex_state = 1697}, + [6631] = {.lex_state = 105}, + [6632] = {.lex_state = 1697}, + [6633] = {.lex_state = 105}, + [6634] = {.lex_state = 105}, + [6635] = {.lex_state = 1697}, + [6636] = {.lex_state = 1697}, + [6637] = {.lex_state = 105}, + [6638] = {.lex_state = 105}, + [6639] = {.lex_state = 162}, + [6640] = {.lex_state = 305}, + [6641] = {.lex_state = 305}, + [6642] = {.lex_state = 355}, + [6643] = {.lex_state = 105}, + [6644] = {.lex_state = 105}, + [6645] = {.lex_state = 78}, + [6646] = {.lex_state = 369}, + [6647] = {.lex_state = 305}, + [6648] = {.lex_state = 68}, + [6649] = {.lex_state = 105}, + [6650] = {.lex_state = 105}, + [6651] = {.lex_state = 105}, + [6652] = {.lex_state = 105}, + [6653] = {.lex_state = 105}, + [6654] = {.lex_state = 105}, + [6655] = {.lex_state = 105}, + [6656] = {.lex_state = 105}, + [6657] = {.lex_state = 105}, + [6658] = {.lex_state = 301}, + [6659] = {.lex_state = 1697}, + [6660] = {.lex_state = 1697}, + [6661] = {.lex_state = 68}, + [6662] = {.lex_state = 305}, + [6663] = {.lex_state = 1697}, + [6664] = {.lex_state = 1697}, + [6665] = {.lex_state = 1675}, + [6666] = {.lex_state = 305}, + [6667] = {.lex_state = 1697}, + [6668] = {.lex_state = 105}, + [6669] = {.lex_state = 1697}, + [6670] = {.lex_state = 1697}, + [6671] = {.lex_state = 1697}, + [6672] = {.lex_state = 355}, + [6673] = {.lex_state = 305}, + [6674] = {.lex_state = 1697}, + [6675] = {.lex_state = 1697}, + [6676] = {.lex_state = 105}, + [6677] = {.lex_state = 105}, + [6678] = {.lex_state = 105}, + [6679] = {.lex_state = 105}, + [6680] = {.lex_state = 105}, [6681] = {.lex_state = 1697}, - [6682] = {.lex_state = 130}, - [6683] = {.lex_state = 1674}, - [6684] = {.lex_state = 130}, - [6685] = {.lex_state = 304}, - [6686] = {.lex_state = 1696}, - [6687] = {.lex_state = 130}, - [6688] = {.lex_state = 130}, - [6689] = {.lex_state = 130}, - [6690] = {.lex_state = 130}, - [6691] = {.lex_state = 130}, - [6692] = {.lex_state = 130}, - [6693] = {.lex_state = 130}, - [6694] = {.lex_state = 130}, - [6695] = {.lex_state = 371}, - [6696] = {.lex_state = 130}, - [6697] = {.lex_state = 130}, - [6698] = {.lex_state = 130}, - [6699] = {.lex_state = 244}, - [6700] = {.lex_state = 1696}, - [6701] = {.lex_state = 1694}, - [6702] = {.lex_state = 130}, - [6703] = {.lex_state = 304}, - [6704] = {.lex_state = 1694}, - [6705] = {.lex_state = 1696}, - [6706] = {.lex_state = 304}, - [6707] = {.lex_state = 1696}, - [6708] = {.lex_state = 1696}, - [6709] = {.lex_state = 1696}, - [6710] = {.lex_state = 1696}, - [6711] = {.lex_state = 374}, - [6712] = {.lex_state = 1694}, - [6713] = {.lex_state = 1694}, - [6714] = {.lex_state = 304}, - [6715] = {.lex_state = 130}, - [6716] = {.lex_state = 130}, - [6717] = {.lex_state = 1694}, - [6718] = {.lex_state = 130}, - [6719] = {.lex_state = 130}, - [6720] = {.lex_state = 130}, - [6721] = {.lex_state = 130}, - [6722] = {.lex_state = 130}, - [6723] = {.lex_state = 130}, - [6724] = {.lex_state = 130}, - [6725] = {.lex_state = 130}, - [6726] = {.lex_state = 130}, - [6727] = {.lex_state = 130}, - [6728] = {.lex_state = 1696}, - [6729] = {.lex_state = 358}, - [6730] = {.lex_state = 1694}, - [6731] = {.lex_state = 304}, - [6732] = {.lex_state = 371}, - [6733] = {.lex_state = 130}, - [6734] = {.lex_state = 304}, - [6735] = {.lex_state = 130}, - [6736] = {.lex_state = 1696}, - [6737] = {.lex_state = 130}, - [6738] = {.lex_state = 130}, - [6739] = {.lex_state = 130}, - [6740] = {.lex_state = 130}, - [6741] = {.lex_state = 130}, - [6742] = {.lex_state = 130}, - [6743] = {.lex_state = 130}, - [6744] = {.lex_state = 130}, - [6745] = {.lex_state = 130}, - [6746] = {.lex_state = 151}, - [6747] = {.lex_state = 130}, - [6748] = {.lex_state = 130}, - [6749] = {.lex_state = 130}, - [6750] = {.lex_state = 304}, - [6751] = {.lex_state = 130}, - [6752] = {.lex_state = 1696}, - [6753] = {.lex_state = 1696}, - [6754] = {.lex_state = 304}, - [6755] = {.lex_state = 1696}, - [6756] = {.lex_state = 304}, - [6757] = {.lex_state = 354}, - [6758] = {.lex_state = 371}, - [6759] = {.lex_state = 130}, - [6760] = {.lex_state = 151}, - [6761] = {.lex_state = 368}, - [6762] = {.lex_state = 354}, - [6763] = {.lex_state = 130}, - [6764] = {.lex_state = 130}, - [6765] = {.lex_state = 130}, - [6766] = {.lex_state = 1696}, - [6767] = {.lex_state = 130}, - [6768] = {.lex_state = 130}, - [6769] = {.lex_state = 130}, - [6770] = {.lex_state = 151}, - [6771] = {.lex_state = 1696}, - [6772] = {.lex_state = 130}, - [6773] = {.lex_state = 371}, - [6774] = {.lex_state = 368}, - [6775] = {.lex_state = 1696}, - [6776] = {.lex_state = 1696}, - [6777] = {.lex_state = 304}, - [6778] = {.lex_state = 304}, - [6779] = {.lex_state = 151}, - [6780] = {.lex_state = 130}, - [6781] = {.lex_state = 130}, - [6782] = {.lex_state = 130}, - [6783] = {.lex_state = 304}, - [6784] = {.lex_state = 130}, - [6785] = {.lex_state = 304}, - [6786] = {.lex_state = 130}, - [6787] = {.lex_state = 1696}, - [6788] = {.lex_state = 130}, - [6789] = {.lex_state = 130}, - [6790] = {.lex_state = 130}, - [6791] = {.lex_state = 130}, - [6792] = {.lex_state = 1696}, - [6793] = {.lex_state = 130}, - [6794] = {.lex_state = 130}, - [6795] = {.lex_state = 1696}, - [6796] = {.lex_state = 374}, - [6797] = {.lex_state = 130}, - [6798] = {.lex_state = 1696}, - [6799] = {.lex_state = 79}, - [6800] = {.lex_state = 1696}, - [6801] = {.lex_state = 1696}, - [6802] = {.lex_state = 1696}, - [6803] = {.lex_state = 130}, - [6804] = {.lex_state = 368}, - [6805] = {.lex_state = 130}, - [6806] = {.lex_state = 304}, - [6807] = {.lex_state = 304}, - [6808] = {.lex_state = 130}, - [6809] = {.lex_state = 304}, - [6810] = {.lex_state = 130}, - [6811] = {.lex_state = 354}, - [6812] = {.lex_state = 130}, - [6813] = {.lex_state = 130}, - [6814] = {.lex_state = 130}, - [6815] = {.lex_state = 130}, - [6816] = {.lex_state = 130}, - [6817] = {.lex_state = 130}, - [6818] = {.lex_state = 130}, - [6819] = {.lex_state = 130}, - [6820] = {.lex_state = 130}, - [6821] = {.lex_state = 130}, - [6822] = {.lex_state = 130}, - [6823] = {.lex_state = 130}, - [6824] = {.lex_state = 1696}, - [6825] = {.lex_state = 130}, - [6826] = {.lex_state = 366}, - [6827] = {.lex_state = 304}, - [6828] = {.lex_state = 1696}, - [6829] = {.lex_state = 69}, - [6830] = {.lex_state = 1696}, - [6831] = {.lex_state = 304}, - [6832] = {.lex_state = 130}, - [6833] = {.lex_state = 130}, - [6834] = {.lex_state = 130}, - [6835] = {.lex_state = 130}, - [6836] = {.lex_state = 130}, - [6837] = {.lex_state = 130}, - [6838] = {.lex_state = 130}, - [6839] = {.lex_state = 130}, - [6840] = {.lex_state = 130}, - [6841] = {.lex_state = 130}, - [6842] = {.lex_state = 130}, - [6843] = {.lex_state = 69}, - [6844] = {.lex_state = 304}, - [6845] = {.lex_state = 130}, - [6846] = {.lex_state = 1696}, - [6847] = {.lex_state = 130}, - [6848] = {.lex_state = 130}, - [6849] = {.lex_state = 303}, - [6850] = {.lex_state = 1696}, - [6851] = {.lex_state = 354}, - [6852] = {.lex_state = 304}, - [6853] = {.lex_state = 1696}, - [6854] = {.lex_state = 130}, - [6855] = {.lex_state = 304}, - [6856] = {.lex_state = 130}, - [6857] = {.lex_state = 130}, - [6858] = {.lex_state = 1696}, - [6859] = {.lex_state = 130}, - [6860] = {.lex_state = 130}, - [6861] = {.lex_state = 130}, - [6862] = {.lex_state = 151}, - [6863] = {.lex_state = 130}, - [6864] = {.lex_state = 1696}, - [6865] = {.lex_state = 320}, - [6866] = {.lex_state = 130}, - [6867] = {.lex_state = 130}, - [6868] = {.lex_state = 130}, - [6869] = {.lex_state = 130}, - [6870] = {.lex_state = 130}, - [6871] = {.lex_state = 1696}, - [6872] = {.lex_state = 79}, - [6873] = {.lex_state = 1696}, - [6874] = {.lex_state = 304}, - [6875] = {.lex_state = 1696}, - [6876] = {.lex_state = 1696}, - [6877] = {.lex_state = 304}, - [6878] = {.lex_state = 130}, - [6879] = {.lex_state = 130}, - [6880] = {.lex_state = 130}, - [6881] = {.lex_state = 130}, - [6882] = {.lex_state = 151}, - [6883] = {.lex_state = 130}, - [6884] = {.lex_state = 1696}, - [6885] = {.lex_state = 79}, - [6886] = {.lex_state = 130}, - [6887] = {.lex_state = 130}, - [6888] = {.lex_state = 130}, - [6889] = {.lex_state = 130}, - [6890] = {.lex_state = 130}, - [6891] = {.lex_state = 366}, - [6892] = {.lex_state = 1694}, - [6893] = {.lex_state = 130}, - [6894] = {.lex_state = 130}, - [6895] = {.lex_state = 130}, - [6896] = {.lex_state = 130}, - [6897] = {.lex_state = 130}, - [6898] = {.lex_state = 130}, - [6899] = {.lex_state = 130}, - [6900] = {.lex_state = 130}, - [6901] = {.lex_state = 130}, - [6902] = {.lex_state = 130}, - [6903] = {.lex_state = 130}, - [6904] = {.lex_state = 198}, - [6905] = {.lex_state = 130}, - [6906] = {.lex_state = 151}, - [6907] = {.lex_state = 130}, - [6908] = {.lex_state = 130}, - [6909] = {.lex_state = 130}, - [6910] = {.lex_state = 130}, - [6911] = {.lex_state = 151}, - [6912] = {.lex_state = 130}, - [6913] = {.lex_state = 130}, - [6914] = {.lex_state = 130}, - [6915] = {.lex_state = 130}, - [6916] = {.lex_state = 1696}, - [6917] = {.lex_state = 130}, - [6918] = {.lex_state = 130}, - [6919] = {.lex_state = 130}, - [6920] = {.lex_state = 130}, - [6921] = {.lex_state = 130}, - [6922] = {.lex_state = 130}, - [6923] = {.lex_state = 130}, - [6924] = {.lex_state = 1696}, - [6925] = {.lex_state = 151}, - [6926] = {.lex_state = 130}, - [6927] = {.lex_state = 130}, - [6928] = {.lex_state = 151}, - [6929] = {.lex_state = 130}, - [6930] = {.lex_state = 373}, - [6931] = {.lex_state = 151}, - [6932] = {.lex_state = 151}, - [6933] = {.lex_state = 1694}, - [6934] = {.lex_state = 130}, - [6935] = {.lex_state = 1696}, - [6936] = {.lex_state = 130}, - [6937] = {.lex_state = 1696}, - [6938] = {.lex_state = 1696}, - [6939] = {.lex_state = 130}, - [6940] = {.lex_state = 130}, - [6941] = {.lex_state = 1696}, - [6942] = {.lex_state = 354}, - [6943] = {.lex_state = 1696}, - [6944] = {.lex_state = 1696}, - [6945] = {.lex_state = 130}, - [6946] = {.lex_state = 1696}, - [6947] = {.lex_state = 1696}, - [6948] = {.lex_state = 354}, - [6949] = {.lex_state = 130}, - [6950] = {.lex_state = 348}, - [6951] = {.lex_state = 1696}, - [6952] = {.lex_state = 130}, - [6953] = {.lex_state = 354}, - [6954] = {.lex_state = 1696}, - [6955] = {.lex_state = 354}, - [6956] = {.lex_state = 1696}, - [6957] = {.lex_state = 130}, - [6958] = {.lex_state = 151}, - [6959] = {.lex_state = 130}, - [6960] = {.lex_state = 1694}, - [6961] = {.lex_state = 1694}, - [6962] = {.lex_state = 1694}, - [6963] = {.lex_state = 151}, - [6964] = {.lex_state = 358}, - [6965] = {.lex_state = 151}, - [6966] = {.lex_state = 151}, - [6967] = {.lex_state = 1696}, - [6968] = {.lex_state = 366}, - [6969] = {.lex_state = 130}, - [6970] = {.lex_state = 130}, - [6971] = {.lex_state = 130}, - [6972] = {.lex_state = 198}, - [6973] = {.lex_state = 130}, - [6974] = {.lex_state = 151}, - [6975] = {.lex_state = 130}, - [6976] = {.lex_state = 151}, - [6977] = {.lex_state = 1694}, - [6978] = {.lex_state = 130}, - [6979] = {.lex_state = 151}, - [6980] = {.lex_state = 1692}, - [6981] = {.lex_state = 130}, - [6982] = {.lex_state = 151}, - [6983] = {.lex_state = 130}, - [6984] = {.lex_state = 130}, - [6985] = {.lex_state = 1692}, - [6986] = {.lex_state = 130}, - [6987] = {.lex_state = 1696}, - [6988] = {.lex_state = 151}, - [6989] = {.lex_state = 1692}, - [6990] = {.lex_state = 130}, - [6991] = {.lex_state = 151}, - [6992] = {.lex_state = 1696}, - [6993] = {.lex_state = 130}, - [6994] = {.lex_state = 130}, - [6995] = {.lex_state = 130}, - [6996] = {.lex_state = 1696}, - [6997] = {.lex_state = 1696}, - [6998] = {.lex_state = 130}, - [6999] = {.lex_state = 198}, - [7000] = {.lex_state = 1696}, - [7001] = {.lex_state = 130}, - [7002] = {.lex_state = 1696}, - [7003] = {.lex_state = 238}, - [7004] = {.lex_state = 238}, - [7005] = {.lex_state = 79}, - [7006] = {.lex_state = 1696}, - [7007] = {.lex_state = 130}, - [7008] = {.lex_state = 1696}, - [7009] = {.lex_state = 1660}, - [7010] = {.lex_state = 130}, - [7011] = {.lex_state = 266}, - [7012] = {.lex_state = 130}, - [7013] = {.lex_state = 1696}, - [7014] = {.lex_state = 300}, - [7015] = {.lex_state = 1696}, - [7016] = {.lex_state = 130}, + [6682] = {.lex_state = 105}, + [6683] = {.lex_state = 1697}, + [6684] = {.lex_state = 105}, + [6685] = {.lex_state = 105}, + [6686] = {.lex_state = 1697}, + [6687] = {.lex_state = 105}, + [6688] = {.lex_state = 42}, + [6689] = {.lex_state = 78}, + [6690] = {.lex_state = 105}, + [6691] = {.lex_state = 1697}, + [6692] = {.lex_state = 1697}, + [6693] = {.lex_state = 1697}, + [6694] = {.lex_state = 1693}, + [6695] = {.lex_state = 105}, + [6696] = {.lex_state = 1697}, + [6697] = {.lex_state = 105}, + [6698] = {.lex_state = 105}, + [6699] = {.lex_state = 305}, + [6700] = {.lex_state = 105}, + [6701] = {.lex_state = 105}, + [6702] = {.lex_state = 305}, + [6703] = {.lex_state = 105}, + [6704] = {.lex_state = 105}, + [6705] = {.lex_state = 105}, + [6706] = {.lex_state = 105}, + [6707] = {.lex_state = 105}, + [6708] = {.lex_state = 105}, + [6709] = {.lex_state = 105}, + [6710] = {.lex_state = 105}, + [6711] = {.lex_state = 1697}, + [6712] = {.lex_state = 105}, + [6713] = {.lex_state = 1697}, + [6714] = {.lex_state = 105}, + [6715] = {.lex_state = 105}, + [6716] = {.lex_state = 105}, + [6717] = {.lex_state = 105}, + [6718] = {.lex_state = 105}, + [6719] = {.lex_state = 1697}, + [6720] = {.lex_state = 367}, + [6721] = {.lex_state = 105}, + [6722] = {.lex_state = 1697}, + [6723] = {.lex_state = 305}, + [6724] = {.lex_state = 1695}, + [6725] = {.lex_state = 78}, + [6726] = {.lex_state = 1697}, + [6727] = {.lex_state = 304}, + [6728] = {.lex_state = 305}, + [6729] = {.lex_state = 1697}, + [6730] = {.lex_state = 105}, + [6731] = {.lex_state = 105}, + [6732] = {.lex_state = 105}, + [6733] = {.lex_state = 105}, + [6734] = {.lex_state = 105}, + [6735] = {.lex_state = 105}, + [6736] = {.lex_state = 369}, + [6737] = {.lex_state = 105}, + [6738] = {.lex_state = 105}, + [6739] = {.lex_state = 105}, + [6740] = {.lex_state = 105}, + [6741] = {.lex_state = 105}, + [6742] = {.lex_state = 372}, + [6743] = {.lex_state = 1697}, + [6744] = {.lex_state = 1697}, + [6745] = {.lex_state = 1697}, + [6746] = {.lex_state = 105}, + [6747] = {.lex_state = 105}, + [6748] = {.lex_state = 105}, + [6749] = {.lex_state = 305}, + [6750] = {.lex_state = 1695}, + [6751] = {.lex_state = 105}, + [6752] = {.lex_state = 105}, + [6753] = {.lex_state = 105}, + [6754] = {.lex_state = 105}, + [6755] = {.lex_state = 305}, + [6756] = {.lex_state = 198}, + [6757] = {.lex_state = 105}, + [6758] = {.lex_state = 105}, + [6759] = {.lex_state = 105}, + [6760] = {.lex_state = 105}, + [6761] = {.lex_state = 105}, + [6762] = {.lex_state = 1697}, + [6763] = {.lex_state = 105}, + [6764] = {.lex_state = 1697}, + [6765] = {.lex_state = 105}, + [6766] = {.lex_state = 105}, + [6767] = {.lex_state = 1695}, + [6768] = {.lex_state = 105}, + [6769] = {.lex_state = 105}, + [6770] = {.lex_state = 162}, + [6771] = {.lex_state = 105}, + [6772] = {.lex_state = 105}, + [6773] = {.lex_state = 1697}, + [6774] = {.lex_state = 105}, + [6775] = {.lex_state = 1697}, + [6776] = {.lex_state = 105}, + [6777] = {.lex_state = 305}, + [6778] = {.lex_state = 162}, + [6779] = {.lex_state = 1695}, + [6780] = {.lex_state = 305}, + [6781] = {.lex_state = 374}, + [6782] = {.lex_state = 239}, + [6783] = {.lex_state = 105}, + [6784] = {.lex_state = 1697}, + [6785] = {.lex_state = 305}, + [6786] = {.lex_state = 105}, + [6787] = {.lex_state = 105}, + [6788] = {.lex_state = 1697}, + [6789] = {.lex_state = 1697}, + [6790] = {.lex_state = 105}, + [6791] = {.lex_state = 105}, + [6792] = {.lex_state = 105}, + [6793] = {.lex_state = 105}, + [6794] = {.lex_state = 305}, + [6795] = {.lex_state = 105}, + [6796] = {.lex_state = 105}, + [6797] = {.lex_state = 355}, + [6798] = {.lex_state = 105}, + [6799] = {.lex_state = 162}, + [6800] = {.lex_state = 105}, + [6801] = {.lex_state = 162}, + [6802] = {.lex_state = 105}, + [6803] = {.lex_state = 321}, + [6804] = {.lex_state = 1697}, + [6805] = {.lex_state = 305}, + [6806] = {.lex_state = 1697}, + [6807] = {.lex_state = 162}, + [6808] = {.lex_state = 1697}, + [6809] = {.lex_state = 305}, + [6810] = {.lex_state = 1697}, + [6811] = {.lex_state = 1697}, + [6812] = {.lex_state = 105}, + [6813] = {.lex_state = 198}, + [6814] = {.lex_state = 305}, + [6815] = {.lex_state = 105}, + [6816] = {.lex_state = 1697}, + [6817] = {.lex_state = 105}, + [6818] = {.lex_state = 105}, + [6819] = {.lex_state = 105}, + [6820] = {.lex_state = 105}, + [6821] = {.lex_state = 105}, + [6822] = {.lex_state = 105}, + [6823] = {.lex_state = 105}, + [6824] = {.lex_state = 105}, + [6825] = {.lex_state = 1697}, + [6826] = {.lex_state = 105}, + [6827] = {.lex_state = 1697}, + [6828] = {.lex_state = 1697}, + [6829] = {.lex_state = 1697}, + [6830] = {.lex_state = 305}, + [6831] = {.lex_state = 162}, + [6832] = {.lex_state = 162}, + [6833] = {.lex_state = 239}, + [6834] = {.lex_state = 355}, + [6835] = {.lex_state = 305}, + [6836] = {.lex_state = 105}, + [6837] = {.lex_state = 1697}, + [6838] = {.lex_state = 105}, + [6839] = {.lex_state = 105}, + [6840] = {.lex_state = 105}, + [6841] = {.lex_state = 105}, + [6842] = {.lex_state = 105}, + [6843] = {.lex_state = 105}, + [6844] = {.lex_state = 372}, + [6845] = {.lex_state = 105}, + [6846] = {.lex_state = 1697}, + [6847] = {.lex_state = 105}, + [6848] = {.lex_state = 372}, + [6849] = {.lex_state = 355}, + [6850] = {.lex_state = 1695}, + [6851] = {.lex_state = 105}, + [6852] = {.lex_state = 305}, + [6853] = {.lex_state = 372}, + [6854] = {.lex_state = 1695}, + [6855] = {.lex_state = 305}, + [6856] = {.lex_state = 1695}, + [6857] = {.lex_state = 105}, + [6858] = {.lex_state = 105}, + [6859] = {.lex_state = 105}, + [6860] = {.lex_state = 105}, + [6861] = {.lex_state = 105}, + [6862] = {.lex_state = 105}, + [6863] = {.lex_state = 105}, + [6864] = {.lex_state = 105}, + [6865] = {.lex_state = 355}, + [6866] = {.lex_state = 105}, + [6867] = {.lex_state = 105}, + [6868] = {.lex_state = 105}, + [6869] = {.lex_state = 105}, + [6870] = {.lex_state = 1697}, + [6871] = {.lex_state = 305}, + [6872] = {.lex_state = 162}, + [6873] = {.lex_state = 305}, + [6874] = {.lex_state = 1695}, + [6875] = {.lex_state = 105}, + [6876] = {.lex_state = 105}, + [6877] = {.lex_state = 105}, + [6878] = {.lex_state = 105}, + [6879] = {.lex_state = 105}, + [6880] = {.lex_state = 105}, + [6881] = {.lex_state = 162}, + [6882] = {.lex_state = 1697}, + [6883] = {.lex_state = 105}, + [6884] = {.lex_state = 105}, + [6885] = {.lex_state = 162}, + [6886] = {.lex_state = 1697}, + [6887] = {.lex_state = 105}, + [6888] = {.lex_state = 369}, + [6889] = {.lex_state = 105}, + [6890] = {.lex_state = 105}, + [6891] = {.lex_state = 105}, + [6892] = {.lex_state = 105}, + [6893] = {.lex_state = 105}, + [6894] = {.lex_state = 105}, + [6895] = {.lex_state = 105}, + [6896] = {.lex_state = 162}, + [6897] = {.lex_state = 105}, + [6898] = {.lex_state = 374}, + [6899] = {.lex_state = 105}, + [6900] = {.lex_state = 105}, + [6901] = {.lex_state = 162}, + [6902] = {.lex_state = 1693}, + [6903] = {.lex_state = 105}, + [6904] = {.lex_state = 162}, + [6905] = {.lex_state = 375}, + [6906] = {.lex_state = 105}, + [6907] = {.lex_state = 162}, + [6908] = {.lex_state = 162}, + [6909] = {.lex_state = 105}, + [6910] = {.lex_state = 105}, + [6911] = {.lex_state = 105}, + [6912] = {.lex_state = 105}, + [6913] = {.lex_state = 105}, + [6914] = {.lex_state = 105}, + [6915] = {.lex_state = 105}, + [6916] = {.lex_state = 1695}, + [6917] = {.lex_state = 105}, + [6918] = {.lex_state = 105}, + [6919] = {.lex_state = 162}, + [6920] = {.lex_state = 105}, + [6921] = {.lex_state = 162}, + [6922] = {.lex_state = 105}, + [6923] = {.lex_state = 105}, + [6924] = {.lex_state = 305}, + [6925] = {.lex_state = 162}, + [6926] = {.lex_state = 305}, + [6927] = {.lex_state = 1695}, + [6928] = {.lex_state = 105}, + [6929] = {.lex_state = 105}, + [6930] = {.lex_state = 1697}, + [6931] = {.lex_state = 372}, + [6932] = {.lex_state = 245}, + [6933] = {.lex_state = 105}, + [6934] = {.lex_state = 105}, + [6935] = {.lex_state = 355}, + [6936] = {.lex_state = 105}, + [6937] = {.lex_state = 1697}, + [6938] = {.lex_state = 1697}, + [6939] = {.lex_state = 367}, + [6940] = {.lex_state = 1697}, + [6941] = {.lex_state = 1697}, + [6942] = {.lex_state = 375}, + [6943] = {.lex_state = 1695}, + [6944] = {.lex_state = 1695}, + [6945] = {.lex_state = 1695}, + [6946] = {.lex_state = 1695}, + [6947] = {.lex_state = 355}, + [6948] = {.lex_state = 359}, + [6949] = {.lex_state = 105}, + [6950] = {.lex_state = 162}, + [6951] = {.lex_state = 162}, + [6952] = {.lex_state = 1695}, + [6953] = {.lex_state = 1697}, + [6954] = {.lex_state = 198}, + [6955] = {.lex_state = 1697}, + [6956] = {.lex_state = 1697}, + [6957] = {.lex_state = 1693}, + [6958] = {.lex_state = 1661}, + [6959] = {.lex_state = 1697}, + [6960] = {.lex_state = 305}, + [6961] = {.lex_state = 267}, + [6962] = {.lex_state = 162}, + [6963] = {.lex_state = 1693}, + [6964] = {.lex_state = 105}, + [6965] = {.lex_state = 78}, + [6966] = {.lex_state = 105}, + [6967] = {.lex_state = 1693}, + [6968] = {.lex_state = 369}, + [6969] = {.lex_state = 105}, + [6970] = {.lex_state = 1697}, + [6971] = {.lex_state = 105}, + [6972] = {.lex_state = 105}, + [6973] = {.lex_state = 198}, + [6974] = {.lex_state = 1697}, + [6975] = {.lex_state = 239}, + [6976] = {.lex_state = 105}, + [6977] = {.lex_state = 369}, + [6978] = {.lex_state = 78}, + [6979] = {.lex_state = 105}, + [6980] = {.lex_state = 305}, + [6981] = {.lex_state = 1697}, + [6982] = {.lex_state = 105}, + [6983] = {.lex_state = 1697}, + [6984] = {.lex_state = 105}, + [6985] = {.lex_state = 1697}, + [6986] = {.lex_state = 1697}, + [6987] = {.lex_state = 105}, + [6988] = {.lex_state = 105}, + [6989] = {.lex_state = 1697}, + [6990] = {.lex_state = 1698}, + [6991] = {.lex_state = 1697}, + [6992] = {.lex_state = 105}, + [6993] = {.lex_state = 105}, + [6994] = {.lex_state = 105}, + [6995] = {.lex_state = 1697}, + [6996] = {.lex_state = 239}, + [6997] = {.lex_state = 239}, + [6998] = {.lex_state = 78}, + [6999] = {.lex_state = 1695}, + [7000] = {.lex_state = 105}, + [7001] = {.lex_state = 367}, + [7002] = {.lex_state = 105}, + [7003] = {.lex_state = 105}, + [7004] = {.lex_state = 198}, + [7005] = {.lex_state = 105}, + [7006] = {.lex_state = 1697}, + [7007] = {.lex_state = 239}, + [7008] = {.lex_state = 105}, + [7009] = {.lex_state = 1697}, + [7010] = {.lex_state = 105}, + [7011] = {.lex_state = 1697}, + [7012] = {.lex_state = 105}, + [7013] = {.lex_state = 105}, + [7014] = {.lex_state = 105}, + [7015] = {.lex_state = 105}, + [7016] = {.lex_state = 1697}, [7017] = {.lex_state = 198}, - [7018] = {.lex_state = 1696}, - [7019] = {.lex_state = 1696}, - [7020] = {.lex_state = 1696}, - [7021] = {.lex_state = 198}, - [7022] = {.lex_state = 1696}, - [7023] = {.lex_state = 1696}, - [7024] = {.lex_state = 1696}, - [7025] = {.lex_state = 1696}, - [7026] = {.lex_state = 1696}, - [7027] = {.lex_state = 1696}, - [7028] = {.lex_state = 1696}, - [7029] = {.lex_state = 130}, - [7030] = {.lex_state = 130}, - [7031] = {.lex_state = 43}, - [7032] = {.lex_state = 1696}, - [7033] = {.lex_state = 1696}, - [7034] = {.lex_state = 130}, - [7035] = {.lex_state = 1696}, - [7036] = {.lex_state = 130}, - [7037] = {.lex_state = 1696}, - [7038] = {.lex_state = 130}, - [7039] = {.lex_state = 1696}, - [7040] = {.lex_state = 130}, - [7041] = {.lex_state = 38}, - [7042] = {.lex_state = 1696}, - [7043] = {.lex_state = 1692}, - [7044] = {.lex_state = 130}, - [7045] = {.lex_state = 1696}, - [7046] = {.lex_state = 130}, - [7047] = {.lex_state = 130}, - [7048] = {.lex_state = 198}, - [7049] = {.lex_state = 198}, - [7050] = {.lex_state = 130}, - [7051] = {.lex_state = 304}, - [7052] = {.lex_state = 130}, - [7053] = {.lex_state = 1696}, - [7054] = {.lex_state = 1696}, - [7055] = {.lex_state = 1696}, - [7056] = {.lex_state = 1696}, - [7057] = {.lex_state = 1696}, - [7058] = {.lex_state = 69}, - [7059] = {.lex_state = 130}, - [7060] = {.lex_state = 1696}, - [7061] = {.lex_state = 1696}, - [7062] = {.lex_state = 198}, - [7063] = {.lex_state = 130}, - [7064] = {.lex_state = 1694}, - [7065] = {.lex_state = 368}, - [7066] = {.lex_state = 304}, - [7067] = {.lex_state = 1694}, - [7068] = {.lex_state = 130}, - [7069] = {.lex_state = 130}, - [7070] = {.lex_state = 130}, - [7071] = {.lex_state = 130}, - [7072] = {.lex_state = 77}, - [7073] = {.lex_state = 198}, - [7074] = {.lex_state = 1696}, - [7075] = {.lex_state = 198}, - [7076] = {.lex_state = 366}, - [7077] = {.lex_state = 1696}, - [7078] = {.lex_state = 1696}, - [7079] = {.lex_state = 1696}, - [7080] = {.lex_state = 1696}, - [7081] = {.lex_state = 1696}, - [7082] = {.lex_state = 130}, - [7083] = {.lex_state = 130}, - [7084] = {.lex_state = 198}, - [7085] = {.lex_state = 1696}, - [7086] = {.lex_state = 130}, - [7087] = {.lex_state = 198}, - [7088] = {.lex_state = 1696}, - [7089] = {.lex_state = 1696}, - [7090] = {.lex_state = 1696}, - [7091] = {.lex_state = 1696}, + [7018] = {.lex_state = 105}, + [7019] = {.lex_state = 105}, + [7020] = {.lex_state = 198}, + [7021] = {.lex_state = 105}, + [7022] = {.lex_state = 105}, + [7023] = {.lex_state = 37}, + [7024] = {.lex_state = 1697}, + [7025] = {.lex_state = 1697}, + [7026] = {.lex_state = 1697}, + [7027] = {.lex_state = 359}, + [7028] = {.lex_state = 162}, + [7029] = {.lex_state = 105}, + [7030] = {.lex_state = 1697}, + [7031] = {.lex_state = 162}, + [7032] = {.lex_state = 105}, + [7033] = {.lex_state = 105}, + [7034] = {.lex_state = 1697}, + [7035] = {.lex_state = 105}, + [7036] = {.lex_state = 1697}, + [7037] = {.lex_state = 305}, + [7038] = {.lex_state = 105}, + [7039] = {.lex_state = 1697}, + [7040] = {.lex_state = 1697}, + [7041] = {.lex_state = 198}, + [7042] = {.lex_state = 1697}, + [7043] = {.lex_state = 105}, + [7044] = {.lex_state = 105}, + [7045] = {.lex_state = 1695}, + [7046] = {.lex_state = 1697}, + [7047] = {.lex_state = 1693}, + [7048] = {.lex_state = 105}, + [7049] = {.lex_state = 162}, + [7050] = {.lex_state = 162}, + [7051] = {.lex_state = 105}, + [7052] = {.lex_state = 198}, + [7053] = {.lex_state = 68}, + [7054] = {.lex_state = 198}, + [7055] = {.lex_state = 1697}, + [7056] = {.lex_state = 1697}, + [7057] = {.lex_state = 105}, + [7058] = {.lex_state = 1697}, + [7059] = {.lex_state = 1697}, + [7060] = {.lex_state = 162}, + [7061] = {.lex_state = 198}, + [7062] = {.lex_state = 105}, + [7063] = {.lex_state = 162}, + [7064] = {.lex_state = 198}, + [7065] = {.lex_state = 105}, + [7066] = {.lex_state = 1697}, + [7067] = {.lex_state = 1697}, + [7068] = {.lex_state = 1697}, + [7069] = {.lex_state = 1697}, + [7070] = {.lex_state = 1697}, + [7071] = {.lex_state = 198}, + [7072] = {.lex_state = 198}, + [7073] = {.lex_state = 162}, + [7074] = {.lex_state = 105}, + [7075] = {.lex_state = 1697}, + [7076] = {.lex_state = 1697}, + [7077] = {.lex_state = 162}, + [7078] = {.lex_state = 1697}, + [7079] = {.lex_state = 1697}, + [7080] = {.lex_state = 198}, + [7081] = {.lex_state = 76}, + [7082] = {.lex_state = 198}, + [7083] = {.lex_state = 1697}, + [7084] = {.lex_state = 1697}, + [7085] = {.lex_state = 1697}, + [7086] = {.lex_state = 68}, + [7087] = {.lex_state = 1697}, + [7088] = {.lex_state = 1697}, + [7089] = {.lex_state = 198}, + [7090] = {.lex_state = 1697}, + [7091] = {.lex_state = 1697}, [7092] = {.lex_state = 198}, - [7093] = {.lex_state = 198}, - [7094] = {.lex_state = 130}, - [7095] = {.lex_state = 1696}, - [7096] = {.lex_state = 1696}, - [7097] = {.lex_state = 1696}, - [7098] = {.lex_state = 1696}, - [7099] = {.lex_state = 198}, - [7100] = {.lex_state = 130}, + [7093] = {.lex_state = 1697}, + [7094] = {.lex_state = 1697}, + [7095] = {.lex_state = 1697}, + [7096] = {.lex_state = 1697}, + [7097] = {.lex_state = 1697}, + [7098] = {.lex_state = 198}, + [7099] = {.lex_state = 1675}, + [7100] = {.lex_state = 1697}, [7101] = {.lex_state = 198}, - [7102] = {.lex_state = 1696}, - [7103] = {.lex_state = 130}, - [7104] = {.lex_state = 1696}, - [7105] = {.lex_state = 1696}, - [7106] = {.lex_state = 1696}, - [7107] = {.lex_state = 1696}, - [7108] = {.lex_state = 198}, + [7102] = {.lex_state = 1697}, + [7103] = {.lex_state = 105}, + [7104] = {.lex_state = 1697}, + [7105] = {.lex_state = 1697}, + [7106] = {.lex_state = 1693}, + [7107] = {.lex_state = 1697}, + [7108] = {.lex_state = 1697}, [7109] = {.lex_state = 198}, - [7110] = {.lex_state = 1696}, - [7111] = {.lex_state = 1696}, - [7112] = {.lex_state = 1696}, - [7113] = {.lex_state = 130}, - [7114] = {.lex_state = 1696}, - [7115] = {.lex_state = 1696}, - [7116] = {.lex_state = 198}, - [7117] = {.lex_state = 130}, + [7110] = {.lex_state = 105}, + [7111] = {.lex_state = 1697}, + [7112] = {.lex_state = 198}, + [7113] = {.lex_state = 1697}, + [7114] = {.lex_state = 1697}, + [7115] = {.lex_state = 105}, + [7116] = {.lex_state = 1697}, + [7117] = {.lex_state = 1697}, [7118] = {.lex_state = 198}, - [7119] = {.lex_state = 1696}, - [7120] = {.lex_state = 1696}, - [7121] = {.lex_state = 1696}, - [7122] = {.lex_state = 1696}, - [7123] = {.lex_state = 1696}, - [7124] = {.lex_state = 1696}, + [7119] = {.lex_state = 198}, + [7120] = {.lex_state = 1697}, + [7121] = {.lex_state = 1697}, + [7122] = {.lex_state = 1697}, + [7123] = {.lex_state = 1697}, + [7124] = {.lex_state = 1697}, [7125] = {.lex_state = 198}, - [7126] = {.lex_state = 1696}, + [7126] = {.lex_state = 1697}, [7127] = {.lex_state = 198}, - [7128] = {.lex_state = 130}, - [7129] = {.lex_state = 1694}, - [7130] = {.lex_state = 1696}, - [7131] = {.lex_state = 1696}, - [7132] = {.lex_state = 130}, - [7133] = {.lex_state = 1696}, - [7134] = {.lex_state = 1696}, + [7128] = {.lex_state = 37}, + [7129] = {.lex_state = 1697}, + [7130] = {.lex_state = 1697}, + [7131] = {.lex_state = 105}, + [7132] = {.lex_state = 1697}, + [7133] = {.lex_state = 1697}, + [7134] = {.lex_state = 198}, [7135] = {.lex_state = 198}, - [7136] = {.lex_state = 130}, - [7137] = {.lex_state = 198}, - [7138] = {.lex_state = 1692}, - [7139] = {.lex_state = 1696}, - [7140] = {.lex_state = 1696}, - [7141] = {.lex_state = 1696}, - [7142] = {.lex_state = 1696}, + [7136] = {.lex_state = 355}, + [7137] = {.lex_state = 1697}, + [7138] = {.lex_state = 1697}, + [7139] = {.lex_state = 105}, + [7140] = {.lex_state = 1697}, + [7141] = {.lex_state = 1697}, + [7142] = {.lex_state = 198}, [7143] = {.lex_state = 198}, - [7144] = {.lex_state = 130}, - [7145] = {.lex_state = 198}, - [7146] = {.lex_state = 1696}, - [7147] = {.lex_state = 1696}, - [7148] = {.lex_state = 1674}, - [7149] = {.lex_state = 1696}, - [7150] = {.lex_state = 1696}, + [7144] = {.lex_state = 105}, + [7145] = {.lex_state = 1697}, + [7146] = {.lex_state = 1697}, + [7147] = {.lex_state = 105}, + [7148] = {.lex_state = 1697}, + [7149] = {.lex_state = 1697}, + [7150] = {.lex_state = 198}, [7151] = {.lex_state = 198}, - [7152] = {.lex_state = 1694}, - [7153] = {.lex_state = 304}, - [7154] = {.lex_state = 198}, - [7155] = {.lex_state = 1696}, - [7156] = {.lex_state = 1696}, - [7157] = {.lex_state = 1696}, - [7158] = {.lex_state = 1696}, - [7159] = {.lex_state = 198}, - [7160] = {.lex_state = 198}, - [7161] = {.lex_state = 1696}, - [7162] = {.lex_state = 1696}, - [7163] = {.lex_state = 151}, - [7164] = {.lex_state = 1696}, - [7165] = {.lex_state = 1696}, - [7166] = {.lex_state = 198}, - [7167] = {.lex_state = 198}, - [7168] = {.lex_state = 1696}, - [7169] = {.lex_state = 1696}, - [7170] = {.lex_state = 1696}, - [7171] = {.lex_state = 1696}, - [7172] = {.lex_state = 1696}, - [7173] = {.lex_state = 198}, - [7174] = {.lex_state = 198}, - [7175] = {.lex_state = 1696}, - [7176] = {.lex_state = 1696}, - [7177] = {.lex_state = 151}, - [7178] = {.lex_state = 1696}, - [7179] = {.lex_state = 1696}, - [7180] = {.lex_state = 198}, - [7181] = {.lex_state = 198}, - [7182] = {.lex_state = 304}, - [7183] = {.lex_state = 1696}, - [7184] = {.lex_state = 1696}, - [7185] = {.lex_state = 1696}, - [7186] = {.lex_state = 1696}, - [7187] = {.lex_state = 1696}, - [7188] = {.lex_state = 1696}, - [7189] = {.lex_state = 1696}, - [7190] = {.lex_state = 1696}, - [7191] = {.lex_state = 130}, - [7192] = {.lex_state = 130}, - [7193] = {.lex_state = 1692}, - [7194] = {.lex_state = 151}, - [7195] = {.lex_state = 130}, - [7196] = {.lex_state = 238}, - [7197] = {.lex_state = 130}, - [7198] = {.lex_state = 354}, - [7199] = {.lex_state = 304}, - [7200] = {.lex_state = 130}, - [7201] = {.lex_state = 151}, - [7202] = {.lex_state = 151}, - [7203] = {.lex_state = 130}, - [7204] = {.lex_state = 368}, - [7205] = {.lex_state = 304}, - [7206] = {.lex_state = 1696}, - [7207] = {.lex_state = 151}, - [7208] = {.lex_state = 130}, - [7209] = {.lex_state = 238}, - [7210] = {.lex_state = 359}, - [7211] = {.lex_state = 130}, - [7212] = {.lex_state = 359}, - [7213] = {.lex_state = 130}, - [7214] = {.lex_state = 5458}, - [7215] = {.lex_state = 130}, - [7216] = {.lex_state = 5456}, - [7217] = {.lex_state = 128}, - [7218] = {.lex_state = 1696}, - [7219] = {.lex_state = 1696}, - [7220] = {.lex_state = 5456}, - [7221] = {.lex_state = 5456}, - [7222] = {.lex_state = 5460}, - [7223] = {.lex_state = 5460}, - [7224] = {.lex_state = 1696}, - [7225] = {.lex_state = 130}, - [7226] = {.lex_state = 128}, - [7227] = {.lex_state = 5456}, - [7228] = {.lex_state = 130}, - [7229] = {.lex_state = 368}, - [7230] = {.lex_state = 1696}, - [7231] = {.lex_state = 130}, - [7232] = {.lex_state = 359}, - [7233] = {.lex_state = 130}, - [7234] = {.lex_state = 5456}, - [7235] = {.lex_state = 5456}, - [7236] = {.lex_state = 128}, - [7237] = {.lex_state = 5456}, - [7238] = {.lex_state = 130}, - [7239] = {.lex_state = 5460}, - [7240] = {.lex_state = 5460}, - [7241] = {.lex_state = 5460}, - [7242] = {.lex_state = 1696}, - [7243] = {.lex_state = 5456}, - [7244] = {.lex_state = 1696}, - [7245] = {.lex_state = 238}, - [7246] = {.lex_state = 4090}, - [7247] = {.lex_state = 130}, - [7248] = {.lex_state = 5456}, - [7249] = {.lex_state = 5458}, - [7250] = {.lex_state = 1696}, - [7251] = {.lex_state = 368}, - [7252] = {.lex_state = 1694}, - [7253] = {.lex_state = 130}, - [7254] = {.lex_state = 5458}, - [7255] = {.lex_state = 1696}, - [7256] = {.lex_state = 1694}, - [7257] = {.lex_state = 1696}, - [7258] = {.lex_state = 128}, - [7259] = {.lex_state = 1674}, - [7260] = {.lex_state = 5458}, - [7261] = {.lex_state = 368}, - [7262] = {.lex_state = 130}, - [7263] = {.lex_state = 130}, - [7264] = {.lex_state = 128}, - [7265] = {.lex_state = 1696}, - [7266] = {.lex_state = 1697}, - [7267] = {.lex_state = 36}, - [7268] = {.lex_state = 359}, - [7269] = {.lex_state = 5458}, - [7270] = {.lex_state = 30}, - [7271] = {.lex_state = 128}, - [7272] = {.lex_state = 1696}, - [7273] = {.lex_state = 1696}, - [7274] = {.lex_state = 238}, - [7275] = {.lex_state = 238}, - [7276] = {.lex_state = 5456}, - [7277] = {.lex_state = 1696}, - [7278] = {.lex_state = 1696}, - [7279] = {.lex_state = 130}, - [7280] = {.lex_state = 5460}, - [7281] = {.lex_state = 5456}, - [7282] = {.lex_state = 1696}, - [7283] = {.lex_state = 130}, - [7284] = {.lex_state = 130}, - [7285] = {.lex_state = 5456}, - [7286] = {.lex_state = 130}, - [7287] = {.lex_state = 128}, - [7288] = {.lex_state = 5460}, - [7289] = {.lex_state = 5460}, - [7290] = {.lex_state = 5456}, - [7291] = {.lex_state = 5456}, - [7292] = {.lex_state = 5456}, - [7293] = {.lex_state = 1694}, - [7294] = {.lex_state = 1696}, - [7295] = {.lex_state = 1696}, - [7296] = {.lex_state = 368}, - [7297] = {.lex_state = 1696}, - [7298] = {.lex_state = 1696}, - [7299] = {.lex_state = 128}, - [7300] = {.lex_state = 128}, - [7301] = {.lex_state = 130}, - [7302] = {.lex_state = 359}, - [7303] = {.lex_state = 368}, - [7304] = {.lex_state = 359}, - [7305] = {.lex_state = 130}, - [7306] = {.lex_state = 368}, - [7307] = {.lex_state = 5456}, - [7308] = {.lex_state = 5456}, - [7309] = {.lex_state = 1696}, - [7310] = {.lex_state = 130}, - [7311] = {.lex_state = 130}, - [7312] = {.lex_state = 130}, - [7313] = {.lex_state = 128}, - [7314] = {.lex_state = 359}, - [7315] = {.lex_state = 128}, - [7316] = {.lex_state = 1696}, - [7317] = {.lex_state = 128}, - [7318] = {.lex_state = 5456}, - [7319] = {.lex_state = 5456}, - [7320] = {.lex_state = 130}, - [7321] = {.lex_state = 1696}, - [7322] = {.lex_state = 5460}, - [7323] = {.lex_state = 5460}, - [7324] = {.lex_state = 128}, - [7325] = {.lex_state = 359}, - [7326] = {.lex_state = 128}, - [7327] = {.lex_state = 1696}, - [7328] = {.lex_state = 5460}, - [7329] = {.lex_state = 359}, - [7330] = {.lex_state = 359}, - [7331] = {.lex_state = 5460}, - [7332] = {.lex_state = 5460}, - [7333] = {.lex_state = 1664}, - [7334] = {.lex_state = 1692}, - [7335] = {.lex_state = 1697}, - [7336] = {.lex_state = 5456}, - [7337] = {.lex_state = 1696}, - [7338] = {.lex_state = 151}, - [7339] = {.lex_state = 5460}, - [7340] = {.lex_state = 1696}, - [7341] = {.lex_state = 1697}, - [7342] = {.lex_state = 1696}, - [7343] = {.lex_state = 5456}, - [7344] = {.lex_state = 5456}, - [7345] = {.lex_state = 373}, - [7346] = {.lex_state = 304}, - [7347] = {.lex_state = 1697}, - [7348] = {.lex_state = 1696}, - [7349] = {.lex_state = 130}, - [7350] = {.lex_state = 130}, - [7351] = {.lex_state = 130}, - [7352] = {.lex_state = 5456}, - [7353] = {.lex_state = 5456}, - [7354] = {.lex_state = 366}, - [7355] = {.lex_state = 130}, - [7356] = {.lex_state = 5460}, - [7357] = {.lex_state = 5460}, - [7358] = {.lex_state = 5456}, - [7359] = {.lex_state = 130}, - [7360] = {.lex_state = 130}, - [7361] = {.lex_state = 1696}, - [7362] = {.lex_state = 1696}, - [7363] = {.lex_state = 130}, - [7364] = {.lex_state = 1696}, - [7365] = {.lex_state = 130}, - [7366] = {.lex_state = 130}, - [7367] = {.lex_state = 1696}, - [7368] = {.lex_state = 130}, - [7369] = {.lex_state = 36}, - [7370] = {.lex_state = 5460}, - [7371] = {.lex_state = 130}, - [7372] = {.lex_state = 1696}, - [7373] = {.lex_state = 130}, - [7374] = {.lex_state = 1696}, - [7375] = {.lex_state = 130}, - [7376] = {.lex_state = 130}, - [7377] = {.lex_state = 1696}, - [7378] = {.lex_state = 1692}, - [7379] = {.lex_state = 359}, - [7380] = {.lex_state = 1696}, - [7381] = {.lex_state = 1696, .external_lex_state = 3}, - [7382] = {.lex_state = 1692}, - [7383] = {.lex_state = 368}, - [7384] = {.lex_state = 1696}, - [7385] = {.lex_state = 1696, .external_lex_state = 3}, - [7386] = {.lex_state = 3152}, - [7387] = {.lex_state = 1696}, - [7388] = {.lex_state = 1696}, - [7389] = {.lex_state = 30}, - [7390] = {.lex_state = 1696}, - [7391] = {.lex_state = 30}, - [7392] = {.lex_state = 1696}, - [7393] = {.lex_state = 1696}, - [7394] = {.lex_state = 1696}, - [7395] = {.lex_state = 1696}, - [7396] = {.lex_state = 359}, - [7397] = {.lex_state = 1696}, - [7398] = {.lex_state = 362}, - [7399] = {.lex_state = 368}, - [7400] = {.lex_state = 1696, .external_lex_state = 3}, - [7401] = {.lex_state = 1696}, - [7402] = {.lex_state = 3152}, - [7403] = {.lex_state = 1696}, - [7404] = {.lex_state = 1696}, - [7405] = {.lex_state = 368}, - [7406] = {.lex_state = 1696}, - [7407] = {.lex_state = 1696}, - [7408] = {.lex_state = 1696}, - [7409] = {.lex_state = 219}, - [7410] = {.lex_state = 1696, .external_lex_state = 3}, - [7411] = {.lex_state = 1696}, - [7412] = {.lex_state = 1696}, - [7413] = {.lex_state = 1696}, - [7414] = {.lex_state = 1696}, - [7415] = {.lex_state = 3152}, - [7416] = {.lex_state = 1696}, - [7417] = {.lex_state = 1696}, - [7418] = {.lex_state = 33}, - [7419] = {.lex_state = 219}, - [7420] = {.lex_state = 5456}, - [7421] = {.lex_state = 1692}, - [7422] = {.lex_state = 3152}, - [7423] = {.lex_state = 1696, .external_lex_state = 3}, - [7424] = {.lex_state = 1696, .external_lex_state = 3}, - [7425] = {.lex_state = 1696}, - [7426] = {.lex_state = 3152}, - [7427] = {.lex_state = 1696}, - [7428] = {.lex_state = 5456}, - [7429] = {.lex_state = 359}, - [7430] = {.lex_state = 4090}, - [7431] = {.lex_state = 1696}, - [7432] = {.lex_state = 1694}, - [7433] = {.lex_state = 1696, .external_lex_state = 3}, - [7434] = {.lex_state = 1692}, - [7435] = {.lex_state = 1696}, - [7436] = {.lex_state = 1696}, - [7437] = {.lex_state = 1696}, - [7438] = {.lex_state = 128}, - [7439] = {.lex_state = 359}, - [7440] = {.lex_state = 1696}, - [7441] = {.lex_state = 1696, .external_lex_state = 3}, - [7442] = {.lex_state = 1696}, - [7443] = {.lex_state = 1696}, - [7444] = {.lex_state = 1696, .external_lex_state = 3}, - [7445] = {.lex_state = 368}, - [7446] = {.lex_state = 1696}, - [7447] = {.lex_state = 1696, .external_lex_state = 3}, - [7448] = {.lex_state = 1696}, - [7449] = {.lex_state = 1696, .external_lex_state = 3}, - [7450] = {.lex_state = 1696}, - [7451] = {.lex_state = 3152}, - [7452] = {.lex_state = 1696}, - [7453] = {.lex_state = 363}, - [7454] = {.lex_state = 1696, .external_lex_state = 4}, - [7455] = {.lex_state = 359}, - [7456] = {.lex_state = 1696}, - [7457] = {.lex_state = 368}, - [7458] = {.lex_state = 1696}, - [7459] = {.lex_state = 5460}, - [7460] = {.lex_state = 30}, - [7461] = {.lex_state = 1696, .external_lex_state = 4}, - [7462] = {.lex_state = 1696}, - [7463] = {.lex_state = 1696}, - [7464] = {.lex_state = 1627}, - [7465] = {.lex_state = 1696, .external_lex_state = 3}, - [7466] = {.lex_state = 1696, .external_lex_state = 3}, - [7467] = {.lex_state = 1696}, - [7468] = {.lex_state = 1692}, - [7469] = {.lex_state = 1696}, - [7470] = {.lex_state = 1696, .external_lex_state = 3}, - [7471] = {.lex_state = 359}, - [7472] = {.lex_state = 1696}, - [7473] = {.lex_state = 1696}, - [7474] = {.lex_state = 1696}, - [7475] = {.lex_state = 363}, - [7476] = {.lex_state = 1696}, - [7477] = {.lex_state = 1696}, - [7478] = {.lex_state = 1696}, - [7479] = {.lex_state = 3152}, - [7480] = {.lex_state = 1696, .external_lex_state = 3}, - [7481] = {.lex_state = 30}, - [7482] = {.lex_state = 1696}, - [7483] = {.lex_state = 1696, .external_lex_state = 3}, - [7484] = {.lex_state = 5458}, - [7485] = {.lex_state = 1696}, - [7486] = {.lex_state = 1696}, - [7487] = {.lex_state = 1696}, - [7488] = {.lex_state = 3152}, - [7489] = {.lex_state = 1696}, - [7490] = {.lex_state = 266}, - [7491] = {.lex_state = 1696}, - [7492] = {.lex_state = 1696}, - [7493] = {.lex_state = 1696}, - [7494] = {.lex_state = 1696}, - [7495] = {.lex_state = 364}, - [7496] = {.lex_state = 5460}, - [7497] = {.lex_state = 1696}, - [7498] = {.lex_state = 1696}, - [7499] = {.lex_state = 1696}, - [7500] = {.lex_state = 1692}, - [7501] = {.lex_state = 1696}, - [7502] = {.lex_state = 1696}, - [7503] = {.lex_state = 219}, - [7504] = {.lex_state = 373}, - [7505] = {.lex_state = 1696}, - [7506] = {.lex_state = 1696, .external_lex_state = 3}, - [7507] = {.lex_state = 3152}, - [7508] = {.lex_state = 1696}, - [7509] = {.lex_state = 1692}, - [7510] = {.lex_state = 1696}, - [7511] = {.lex_state = 1696}, - [7512] = {.lex_state = 1696, .external_lex_state = 3}, - [7513] = {.lex_state = 361}, - [7514] = {.lex_state = 5456}, - [7515] = {.lex_state = 1696}, - [7516] = {.lex_state = 1696}, - [7517] = {.lex_state = 30}, - [7518] = {.lex_state = 1696, .external_lex_state = 3}, - [7519] = {.lex_state = 1696, .external_lex_state = 4}, - [7520] = {.lex_state = 1696, .external_lex_state = 3}, - [7521] = {.lex_state = 5458}, - [7522] = {.lex_state = 1627}, - [7523] = {.lex_state = 1696}, - [7524] = {.lex_state = 1696, .external_lex_state = 3}, - [7525] = {.lex_state = 1696}, - [7526] = {.lex_state = 1696}, - [7527] = {.lex_state = 368}, - [7528] = {.lex_state = 363}, - [7529] = {.lex_state = 1696}, - [7530] = {.lex_state = 1696}, - [7531] = {.lex_state = 1696}, - [7532] = {.lex_state = 1696, .external_lex_state = 3}, - [7533] = {.lex_state = 1696, .external_lex_state = 3}, - [7534] = {.lex_state = 1696}, - [7535] = {.lex_state = 1696, .external_lex_state = 3}, - [7536] = {.lex_state = 359}, - [7537] = {.lex_state = 368}, - [7538] = {.lex_state = 1696}, - [7539] = {.lex_state = 1696}, - [7540] = {.lex_state = 1696, .external_lex_state = 4}, - [7541] = {.lex_state = 1692}, - [7542] = {.lex_state = 1627}, - [7543] = {.lex_state = 1696}, - [7544] = {.lex_state = 1696}, - [7545] = {.lex_state = 1696}, - [7546] = {.lex_state = 359}, - [7547] = {.lex_state = 1696, .external_lex_state = 4}, - [7548] = {.lex_state = 1696}, - [7549] = {.lex_state = 1775}, - [7550] = {.lex_state = 1697}, - [7551] = {.lex_state = 1694}, - [7552] = {.lex_state = 1696}, - [7553] = {.lex_state = 1696}, - [7554] = {.lex_state = 1696, .external_lex_state = 3}, - [7555] = {.lex_state = 1696, .external_lex_state = 4}, - [7556] = {.lex_state = 1627}, - [7557] = {.lex_state = 359}, - [7558] = {.lex_state = 1696}, - [7559] = {.lex_state = 1696}, - [7560] = {.lex_state = 1696}, - [7561] = {.lex_state = 1627}, - [7562] = {.lex_state = 1696}, - [7563] = {.lex_state = 1696}, - [7564] = {.lex_state = 1696}, - [7565] = {.lex_state = 1696}, - [7566] = {.lex_state = 1696}, - [7567] = {.lex_state = 359}, - [7568] = {.lex_state = 1696}, - [7569] = {.lex_state = 1696, .external_lex_state = 4}, - [7570] = {.lex_state = 1627}, - [7571] = {.lex_state = 1692}, - [7572] = {.lex_state = 1696}, - [7573] = {.lex_state = 1696, .external_lex_state = 3}, - [7574] = {.lex_state = 1696, .external_lex_state = 3}, - [7575] = {.lex_state = 1696}, - [7576] = {.lex_state = 1696}, - [7577] = {.lex_state = 1692}, - [7578] = {.lex_state = 368}, - [7579] = {.lex_state = 1696}, - [7580] = {.lex_state = 1696}, - [7581] = {.lex_state = 359}, - [7582] = {.lex_state = 1696, .external_lex_state = 4}, - [7583] = {.lex_state = 1627}, - [7584] = {.lex_state = 1696}, - [7585] = {.lex_state = 1692}, - [7586] = {.lex_state = 1696}, - [7587] = {.lex_state = 368}, - [7588] = {.lex_state = 1696}, - [7589] = {.lex_state = 1696}, - [7590] = {.lex_state = 1696}, - [7591] = {.lex_state = 1696}, - [7592] = {.lex_state = 1696}, - [7593] = {.lex_state = 1696}, - [7594] = {.lex_state = 1692}, - [7595] = {.lex_state = 1696, .external_lex_state = 4}, - [7596] = {.lex_state = 1696}, - [7597] = {.lex_state = 1696}, - [7598] = {.lex_state = 1696}, - [7599] = {.lex_state = 1696}, - [7600] = {.lex_state = 1696}, - [7601] = {.lex_state = 30}, - [7602] = {.lex_state = 1696}, - [7603] = {.lex_state = 1696}, - [7604] = {.lex_state = 1696}, - [7605] = {.lex_state = 1696}, - [7606] = {.lex_state = 1692}, - [7607] = {.lex_state = 1696}, - [7608] = {.lex_state = 1696, .external_lex_state = 4}, - [7609] = {.lex_state = 1627}, - [7610] = {.lex_state = 1696}, - [7611] = {.lex_state = 364}, - [7612] = {.lex_state = 219}, - [7613] = {.lex_state = 1696}, - [7614] = {.lex_state = 359}, - [7615] = {.lex_state = 1696, .external_lex_state = 3}, - [7616] = {.lex_state = 1696}, - [7617] = {.lex_state = 1696}, - [7618] = {.lex_state = 1696}, + [7152] = {.lex_state = 1697}, + [7153] = {.lex_state = 1697}, + [7154] = {.lex_state = 1697}, + [7155] = {.lex_state = 1697}, + [7156] = {.lex_state = 198}, + [7157] = {.lex_state = 198}, + [7158] = {.lex_state = 105}, + [7159] = {.lex_state = 1697}, + [7160] = {.lex_state = 1697}, + [7161] = {.lex_state = 1697}, + [7162] = {.lex_state = 1697}, + [7163] = {.lex_state = 1697}, + [7164] = {.lex_state = 198}, + [7165] = {.lex_state = 198}, + [7166] = {.lex_state = 1697}, + [7167] = {.lex_state = 1697}, + [7168] = {.lex_state = 1697}, + [7169] = {.lex_state = 1697}, + [7170] = {.lex_state = 162}, + [7171] = {.lex_state = 1697}, + [7172] = {.lex_state = 1697}, + [7173] = {.lex_state = 1693}, + [7174] = {.lex_state = 105}, + [7175] = {.lex_state = 105}, + [7176] = {.lex_state = 1697}, + [7177] = {.lex_state = 305}, + [7178] = {.lex_state = 78}, + [7179] = {.lex_state = 1697}, + [7180] = {.lex_state = 375}, + [7181] = {.lex_state = 105}, + [7182] = {.lex_state = 1697}, + [7183] = {.lex_state = 105}, + [7184] = {.lex_state = 105}, + [7185] = {.lex_state = 1697}, + [7186] = {.lex_state = 105}, + [7187] = {.lex_state = 355}, + [7188] = {.lex_state = 369}, + [7189] = {.lex_state = 1697}, + [7190] = {.lex_state = 105}, + [7191] = {.lex_state = 305}, + [7192] = {.lex_state = 1697}, + [7193] = {.lex_state = 5457}, + [7194] = {.lex_state = 105}, + [7195] = {.lex_state = 360}, + [7196] = {.lex_state = 105}, + [7197] = {.lex_state = 1697}, + [7198] = {.lex_state = 35}, + [7199] = {.lex_state = 1695}, + [7200] = {.lex_state = 105}, + [7201] = {.lex_state = 5461}, + [7202] = {.lex_state = 5461}, + [7203] = {.lex_state = 105}, + [7204] = {.lex_state = 105}, + [7205] = {.lex_state = 103}, + [7206] = {.lex_state = 5461}, + [7207] = {.lex_state = 305}, + [7208] = {.lex_state = 105}, + [7209] = {.lex_state = 5459}, + [7210] = {.lex_state = 103}, + [7211] = {.lex_state = 105}, + [7212] = {.lex_state = 105}, + [7213] = {.lex_state = 239}, + [7214] = {.lex_state = 1697}, + [7215] = {.lex_state = 103}, + [7216] = {.lex_state = 360}, + [7217] = {.lex_state = 1698}, + [7218] = {.lex_state = 239}, + [7219] = {.lex_state = 105}, + [7220] = {.lex_state = 1697}, + [7221] = {.lex_state = 5461}, + [7222] = {.lex_state = 35}, + [7223] = {.lex_state = 105}, + [7224] = {.lex_state = 5457}, + [7225] = {.lex_state = 5457}, + [7226] = {.lex_state = 1695}, + [7227] = {.lex_state = 4091}, + [7228] = {.lex_state = 30}, + [7229] = {.lex_state = 105}, + [7230] = {.lex_state = 360}, + [7231] = {.lex_state = 5459}, + [7232] = {.lex_state = 105}, + [7233] = {.lex_state = 5459}, + [7234] = {.lex_state = 360}, + [7235] = {.lex_state = 5457}, + [7236] = {.lex_state = 5461}, + [7237] = {.lex_state = 103}, + [7238] = {.lex_state = 1697}, + [7239] = {.lex_state = 5457}, + [7240] = {.lex_state = 1675}, + [7241] = {.lex_state = 5459}, + [7242] = {.lex_state = 374}, + [7243] = {.lex_state = 105}, + [7244] = {.lex_state = 105}, + [7245] = {.lex_state = 5457}, + [7246] = {.lex_state = 103}, + [7247] = {.lex_state = 162}, + [7248] = {.lex_state = 5461}, + [7249] = {.lex_state = 5461}, + [7250] = {.lex_state = 360}, + [7251] = {.lex_state = 1697}, + [7252] = {.lex_state = 5457}, + [7253] = {.lex_state = 5457}, + [7254] = {.lex_state = 5457}, + [7255] = {.lex_state = 1698}, + [7256] = {.lex_state = 5457}, + [7257] = {.lex_state = 5461}, + [7258] = {.lex_state = 5459}, + [7259] = {.lex_state = 105}, + [7260] = {.lex_state = 1697}, + [7261] = {.lex_state = 5457}, + [7262] = {.lex_state = 5461}, + [7263] = {.lex_state = 105}, + [7264] = {.lex_state = 239}, + [7265] = {.lex_state = 105}, + [7266] = {.lex_state = 105}, + [7267] = {.lex_state = 5461}, + [7268] = {.lex_state = 5461}, + [7269] = {.lex_state = 105}, + [7270] = {.lex_state = 5457}, + [7271] = {.lex_state = 105}, + [7272] = {.lex_state = 1695}, + [7273] = {.lex_state = 1665}, + [7274] = {.lex_state = 5457}, + [7275] = {.lex_state = 5461}, + [7276] = {.lex_state = 1697}, + [7277] = {.lex_state = 5461}, + [7278] = {.lex_state = 5457}, + [7279] = {.lex_state = 1697}, + [7280] = {.lex_state = 103}, + [7281] = {.lex_state = 5457}, + [7282] = {.lex_state = 5461}, + [7283] = {.lex_state = 5461}, + [7284] = {.lex_state = 103}, + [7285] = {.lex_state = 360}, + [7286] = {.lex_state = 105}, + [7287] = {.lex_state = 105}, + [7288] = {.lex_state = 1697}, + [7289] = {.lex_state = 360}, + [7290] = {.lex_state = 105}, + [7291] = {.lex_state = 369}, + [7292] = {.lex_state = 1698}, + [7293] = {.lex_state = 103}, + [7294] = {.lex_state = 1697}, + [7295] = {.lex_state = 360}, + [7296] = {.lex_state = 1697}, + [7297] = {.lex_state = 103}, + [7298] = {.lex_state = 103}, + [7299] = {.lex_state = 1697}, + [7300] = {.lex_state = 1697}, + [7301] = {.lex_state = 1697}, + [7302] = {.lex_state = 369}, + [7303] = {.lex_state = 105}, + [7304] = {.lex_state = 360}, + [7305] = {.lex_state = 103}, + [7306] = {.lex_state = 369}, + [7307] = {.lex_state = 1697}, + [7308] = {.lex_state = 5457}, + [7309] = {.lex_state = 369}, + [7310] = {.lex_state = 103}, + [7311] = {.lex_state = 5457}, + [7312] = {.lex_state = 1697}, + [7313] = {.lex_state = 105}, + [7314] = {.lex_state = 1697}, + [7315] = {.lex_state = 1697}, + [7316] = {.lex_state = 105}, + [7317] = {.lex_state = 367}, + [7318] = {.lex_state = 5457}, + [7319] = {.lex_state = 105}, + [7320] = {.lex_state = 103}, + [7321] = {.lex_state = 105}, + [7322] = {.lex_state = 5461}, + [7323] = {.lex_state = 1697}, + [7324] = {.lex_state = 1697}, + [7325] = {.lex_state = 5461}, + [7326] = {.lex_state = 1697}, + [7327] = {.lex_state = 1697}, + [7328] = {.lex_state = 105}, + [7329] = {.lex_state = 1697}, + [7330] = {.lex_state = 1697}, + [7331] = {.lex_state = 105}, + [7332] = {.lex_state = 369}, + [7333] = {.lex_state = 1697}, + [7334] = {.lex_state = 1697}, + [7335] = {.lex_state = 369}, + [7336] = {.lex_state = 5457}, + [7337] = {.lex_state = 105}, + [7338] = {.lex_state = 1693}, + [7339] = {.lex_state = 105}, + [7340] = {.lex_state = 1697}, + [7341] = {.lex_state = 5457}, + [7342] = {.lex_state = 105}, + [7343] = {.lex_state = 5457}, + [7344] = {.lex_state = 1697}, + [7345] = {.lex_state = 1698}, + [7346] = {.lex_state = 5457}, + [7347] = {.lex_state = 103}, + [7348] = {.lex_state = 5457}, + [7349] = {.lex_state = 1697}, + [7350] = {.lex_state = 360}, + [7351] = {.lex_state = 1697}, + [7352] = {.lex_state = 105}, + [7353] = {.lex_state = 105}, + [7354] = {.lex_state = 105}, + [7355] = {.lex_state = 1697}, + [7356] = {.lex_state = 1697}, + [7357] = {.lex_state = 5457}, + [7358] = {.lex_state = 1697}, + [7359] = {.lex_state = 5457}, + [7360] = {.lex_state = 220}, + [7361] = {.lex_state = 1697}, + [7362] = {.lex_state = 1697}, + [7363] = {.lex_state = 1697, .external_lex_state = 3}, + [7364] = {.lex_state = 1693}, + [7365] = {.lex_state = 1697}, + [7366] = {.lex_state = 30}, + [7367] = {.lex_state = 1697}, + [7368] = {.lex_state = 365}, + [7369] = {.lex_state = 1697}, + [7370] = {.lex_state = 1697}, + [7371] = {.lex_state = 1697}, + [7372] = {.lex_state = 1697, .external_lex_state = 3}, + [7373] = {.lex_state = 1697}, + [7374] = {.lex_state = 1697}, + [7375] = {.lex_state = 1697}, + [7376] = {.lex_state = 1697}, + [7377] = {.lex_state = 1697}, + [7378] = {.lex_state = 1697}, + [7379] = {.lex_state = 1697}, + [7380] = {.lex_state = 1697}, + [7381] = {.lex_state = 360}, + [7382] = {.lex_state = 3153}, + [7383] = {.lex_state = 1666}, + [7384] = {.lex_state = 1697}, + [7385] = {.lex_state = 1697, .external_lex_state = 3}, + [7386] = {.lex_state = 220}, + [7387] = {.lex_state = 1697, .external_lex_state = 3}, + [7388] = {.lex_state = 5459}, + [7389] = {.lex_state = 1698}, + [7390] = {.lex_state = 1697, .external_lex_state = 3}, + [7391] = {.lex_state = 220}, + [7392] = {.lex_state = 1697}, + [7393] = {.lex_state = 360}, + [7394] = {.lex_state = 1693}, + [7395] = {.lex_state = 369}, + [7396] = {.lex_state = 1697}, + [7397] = {.lex_state = 1697}, + [7398] = {.lex_state = 1697}, + [7399] = {.lex_state = 1697}, + [7400] = {.lex_state = 1697}, + [7401] = {.lex_state = 220}, + [7402] = {.lex_state = 3153}, + [7403] = {.lex_state = 1697, .external_lex_state = 3}, + [7404] = {.lex_state = 1697}, + [7405] = {.lex_state = 1697}, + [7406] = {.lex_state = 369}, + [7407] = {.lex_state = 1697, .external_lex_state = 3}, + [7408] = {.lex_state = 1697}, + [7409] = {.lex_state = 3153}, + [7410] = {.lex_state = 1697}, + [7411] = {.lex_state = 1697}, + [7412] = {.lex_state = 360}, + [7413] = {.lex_state = 1697, .external_lex_state = 3}, + [7414] = {.lex_state = 5474}, + [7415] = {.lex_state = 1697}, + [7416] = {.lex_state = 364}, + [7417] = {.lex_state = 369}, + [7418] = {.lex_state = 1697}, + [7419] = {.lex_state = 1697}, + [7420] = {.lex_state = 1697}, + [7421] = {.lex_state = 1697, .external_lex_state = 3}, + [7422] = {.lex_state = 1697}, + [7423] = {.lex_state = 1697}, + [7424] = {.lex_state = 1697, .external_lex_state = 3}, + [7425] = {.lex_state = 1697}, + [7426] = {.lex_state = 1697}, + [7427] = {.lex_state = 1697}, + [7428] = {.lex_state = 1697}, + [7429] = {.lex_state = 1697}, + [7430] = {.lex_state = 1697, .external_lex_state = 3}, + [7431] = {.lex_state = 1697}, + [7432] = {.lex_state = 1697}, + [7433] = {.lex_state = 360}, + [7434] = {.lex_state = 1697}, + [7435] = {.lex_state = 1697, .external_lex_state = 3}, + [7436] = {.lex_state = 369}, + [7437] = {.lex_state = 1697}, + [7438] = {.lex_state = 1697}, + [7439] = {.lex_state = 1697, .external_lex_state = 3}, + [7440] = {.lex_state = 1697, .external_lex_state = 3}, + [7441] = {.lex_state = 1697}, + [7442] = {.lex_state = 1697}, + [7443] = {.lex_state = 33}, + [7444] = {.lex_state = 1697, .external_lex_state = 4}, + [7445] = {.lex_state = 1697}, + [7446] = {.lex_state = 1697, .external_lex_state = 3}, + [7447] = {.lex_state = 1628}, + [7448] = {.lex_state = 1697}, + [7449] = {.lex_state = 3153}, + [7450] = {.lex_state = 364}, + [7451] = {.lex_state = 1693}, + [7452] = {.lex_state = 1697}, + [7453] = {.lex_state = 369}, + [7454] = {.lex_state = 1697}, + [7455] = {.lex_state = 1697}, + [7456] = {.lex_state = 1697}, + [7457] = {.lex_state = 1697}, + [7458] = {.lex_state = 369}, + [7459] = {.lex_state = 5459}, + [7460] = {.lex_state = 1697, .external_lex_state = 3}, + [7461] = {.lex_state = 1697}, + [7462] = {.lex_state = 1697}, + [7463] = {.lex_state = 360}, + [7464] = {.lex_state = 1697}, + [7465] = {.lex_state = 1697}, + [7466] = {.lex_state = 1697}, + [7467] = {.lex_state = 1697, .external_lex_state = 3}, + [7468] = {.lex_state = 1697}, + [7469] = {.lex_state = 1697}, + [7470] = {.lex_state = 1697, .external_lex_state = 3}, + [7471] = {.lex_state = 1697}, + [7472] = {.lex_state = 1697}, + [7473] = {.lex_state = 1697}, + [7474] = {.lex_state = 1693}, + [7475] = {.lex_state = 1693}, + [7476] = {.lex_state = 1697, .external_lex_state = 3}, + [7477] = {.lex_state = 1697, .external_lex_state = 3}, + [7478] = {.lex_state = 1697}, + [7479] = {.lex_state = 360}, + [7480] = {.lex_state = 1697, .external_lex_state = 3}, + [7481] = {.lex_state = 1697}, + [7482] = {.lex_state = 1697}, + [7483] = {.lex_state = 1697}, + [7484] = {.lex_state = 1697}, + [7485] = {.lex_state = 1697}, + [7486] = {.lex_state = 1697}, + [7487] = {.lex_state = 1697}, + [7488] = {.lex_state = 1697, .external_lex_state = 3}, + [7489] = {.lex_state = 1697}, + [7490] = {.lex_state = 1697}, + [7491] = {.lex_state = 360}, + [7492] = {.lex_state = 369}, + [7493] = {.lex_state = 1697}, + [7494] = {.lex_state = 1697}, + [7495] = {.lex_state = 1697}, + [7496] = {.lex_state = 1697}, + [7497] = {.lex_state = 1697}, + [7498] = {.lex_state = 1697}, + [7499] = {.lex_state = 1697}, + [7500] = {.lex_state = 1697, .external_lex_state = 3}, + [7501] = {.lex_state = 1697, .external_lex_state = 3}, + [7502] = {.lex_state = 1697, .external_lex_state = 4}, + [7503] = {.lex_state = 1697}, + [7504] = {.lex_state = 5461}, + [7505] = {.lex_state = 1628}, + [7506] = {.lex_state = 1697}, + [7507] = {.lex_state = 1697}, + [7508] = {.lex_state = 1697}, + [7509] = {.lex_state = 1693}, + [7510] = {.lex_state = 1697}, + [7511] = {.lex_state = 374}, + [7512] = {.lex_state = 1697, .external_lex_state = 3}, + [7513] = {.lex_state = 1697}, + [7514] = {.lex_state = 1693}, + [7515] = {.lex_state = 1697}, + [7516] = {.lex_state = 1697}, + [7517] = {.lex_state = 364}, + [7518] = {.lex_state = 1697, .external_lex_state = 4}, + [7519] = {.lex_state = 5461}, + [7520] = {.lex_state = 1697}, + [7521] = {.lex_state = 1693}, + [7522] = {.lex_state = 360}, + [7523] = {.lex_state = 1697, .external_lex_state = 4}, + [7524] = {.lex_state = 360}, + [7525] = {.lex_state = 1628}, + [7526] = {.lex_state = 1695}, + [7527] = {.lex_state = 360}, + [7528] = {.lex_state = 1628}, + [7529] = {.lex_state = 362}, + [7530] = {.lex_state = 1697}, + [7531] = {.lex_state = 1628}, + [7532] = {.lex_state = 1697}, + [7533] = {.lex_state = 267}, + [7534] = {.lex_state = 1697}, + [7535] = {.lex_state = 1697}, + [7536] = {.lex_state = 1697}, + [7537] = {.lex_state = 5457}, + [7538] = {.lex_state = 1697, .external_lex_state = 4}, + [7539] = {.lex_state = 1628}, + [7540] = {.lex_state = 369}, + [7541] = {.lex_state = 1697}, + [7542] = {.lex_state = 363}, + [7543] = {.lex_state = 1697}, + [7544] = {.lex_state = 364}, + [7545] = {.lex_state = 1697}, + [7546] = {.lex_state = 1697}, + [7547] = {.lex_state = 1697}, + [7548] = {.lex_state = 3153}, + [7549] = {.lex_state = 1697, .external_lex_state = 3}, + [7550] = {.lex_state = 360}, + [7551] = {.lex_state = 1697}, + [7552] = {.lex_state = 1697, .external_lex_state = 4}, + [7553] = {.lex_state = 1628}, + [7554] = {.lex_state = 1697}, + [7555] = {.lex_state = 30}, + [7556] = {.lex_state = 1697}, + [7557] = {.lex_state = 1697}, + [7558] = {.lex_state = 1697}, + [7559] = {.lex_state = 1693}, + [7560] = {.lex_state = 1697}, + [7561] = {.lex_state = 1697}, + [7562] = {.lex_state = 1697}, + [7563] = {.lex_state = 5457}, + [7564] = {.lex_state = 1697}, + [7565] = {.lex_state = 1697, .external_lex_state = 4}, + [7566] = {.lex_state = 1628}, + [7567] = {.lex_state = 1697}, + [7568] = {.lex_state = 1697}, + [7569] = {.lex_state = 1697}, + [7570] = {.lex_state = 30}, + [7571] = {.lex_state = 1697}, + [7572] = {.lex_state = 1697}, + [7573] = {.lex_state = 1697}, + [7574] = {.lex_state = 5457}, + [7575] = {.lex_state = 1776}, + [7576] = {.lex_state = 1697}, + [7577] = {.lex_state = 3153}, + [7578] = {.lex_state = 1697, .external_lex_state = 4}, + [7579] = {.lex_state = 1628}, + [7580] = {.lex_state = 1697}, + [7581] = {.lex_state = 1697, .external_lex_state = 3}, + [7582] = {.lex_state = 1697}, + [7583] = {.lex_state = 1697}, + [7584] = {.lex_state = 1697}, + [7585] = {.lex_state = 365}, + [7586] = {.lex_state = 1697}, + [7587] = {.lex_state = 1697}, + [7588] = {.lex_state = 3153}, + [7589] = {.lex_state = 1697}, + [7590] = {.lex_state = 4091}, + [7591] = {.lex_state = 1697, .external_lex_state = 4}, + [7592] = {.lex_state = 1628}, + [7593] = {.lex_state = 1697}, + [7594] = {.lex_state = 1697}, + [7595] = {.lex_state = 30}, + [7596] = {.lex_state = 3153}, + [7597] = {.lex_state = 360}, + [7598] = {.lex_state = 1697}, + [7599] = {.lex_state = 1698}, + [7600] = {.lex_state = 1697}, + [7601] = {.lex_state = 1697, .external_lex_state = 3}, + [7602] = {.lex_state = 1697}, + [7603] = {.lex_state = 1697}, + [7604] = {.lex_state = 1697, .external_lex_state = 4}, + [7605] = {.lex_state = 1628}, + [7606] = {.lex_state = 1697}, + [7607] = {.lex_state = 1697}, + [7608] = {.lex_state = 1697, .external_lex_state = 3}, + [7609] = {.lex_state = 1693}, + [7610] = {.lex_state = 1697, .external_lex_state = 3}, + [7611] = {.lex_state = 1697}, + [7612] = {.lex_state = 1697}, + [7613] = {.lex_state = 1697}, + [7614] = {.lex_state = 1697}, + [7615] = {.lex_state = 360}, + [7616] = {.lex_state = 1697}, + [7617] = {.lex_state = 1697, .external_lex_state = 4}, + [7618] = {.lex_state = 1628}, [7619] = {.lex_state = 1697}, - [7620] = {.lex_state = 1696}, - [7621] = {.lex_state = 1696, .external_lex_state = 4}, - [7622] = {.lex_state = 1627}, - [7623] = {.lex_state = 1696}, - [7624] = {.lex_state = 368}, - [7625] = {.lex_state = 1696}, - [7626] = {.lex_state = 1696}, - [7627] = {.lex_state = 1696}, - [7628] = {.lex_state = 359}, - [7629] = {.lex_state = 1696}, - [7630] = {.lex_state = 3152}, - [7631] = {.lex_state = 1696}, - [7632] = {.lex_state = 359}, - [7633] = {.lex_state = 1696}, - [7634] = {.lex_state = 1696, .external_lex_state = 4}, - [7635] = {.lex_state = 1627}, - [7636] = {.lex_state = 1696, .external_lex_state = 3}, - [7637] = {.lex_state = 1696}, - [7638] = {.lex_state = 1696}, - [7639] = {.lex_state = 1696}, - [7640] = {.lex_state = 1696}, - [7641] = {.lex_state = 1775}, - [7642] = {.lex_state = 33}, - [7643] = {.lex_state = 1696}, - [7644] = {.lex_state = 1696}, - [7645] = {.lex_state = 1696}, - [7646] = {.lex_state = 364}, - [7647] = {.lex_state = 1696, .external_lex_state = 4}, - [7648] = {.lex_state = 1627}, - [7649] = {.lex_state = 1696}, - [7650] = {.lex_state = 1696, .external_lex_state = 3}, - [7651] = {.lex_state = 1696}, - [7652] = {.lex_state = 1696}, - [7653] = {.lex_state = 1696, .external_lex_state = 3}, - [7654] = {.lex_state = 1696}, - [7655] = {.lex_state = 1696}, - [7656] = {.lex_state = 1696}, - [7657] = {.lex_state = 1696}, - [7658] = {.lex_state = 1692}, - [7659] = {.lex_state = 1696, .external_lex_state = 3}, - [7660] = {.lex_state = 1696, .external_lex_state = 4}, - [7661] = {.lex_state = 1627}, - [7662] = {.lex_state = 1696}, - [7663] = {.lex_state = 1696, .external_lex_state = 3}, - [7664] = {.lex_state = 1696}, - [7665] = {.lex_state = 1696}, - [7666] = {.lex_state = 359}, - [7667] = {.lex_state = 1696, .external_lex_state = 3}, - [7668] = {.lex_state = 1696}, - [7669] = {.lex_state = 363}, - [7670] = {.lex_state = 1696, .external_lex_state = 4}, - [7671] = {.lex_state = 1627}, - [7672] = {.lex_state = 1696}, - [7673] = {.lex_state = 1696}, - [7674] = {.lex_state = 1696}, - [7675] = {.lex_state = 1696}, - [7676] = {.lex_state = 359}, - [7677] = {.lex_state = 1692}, - [7678] = {.lex_state = 1696}, - [7679] = {.lex_state = 3152}, - [7680] = {.lex_state = 1696, .external_lex_state = 4}, - [7681] = {.lex_state = 1696}, - [7682] = {.lex_state = 1696, .external_lex_state = 3}, - [7683] = {.lex_state = 5473}, - [7684] = {.lex_state = 1696}, - [7685] = {.lex_state = 1696}, - [7686] = {.lex_state = 359}, - [7687] = {.lex_state = 5458}, - [7688] = {.lex_state = 368}, - [7689] = {.lex_state = 1696, .external_lex_state = 4}, - [7690] = {.lex_state = 1696}, - [7691] = {.lex_state = 1696}, - [7692] = {.lex_state = 1696}, - [7693] = {.lex_state = 1696}, - [7694] = {.lex_state = 3152}, - [7695] = {.lex_state = 1696, .external_lex_state = 3}, - [7696] = {.lex_state = 3152}, - [7697] = {.lex_state = 1696}, - [7698] = {.lex_state = 1696, .external_lex_state = 4}, - [7699] = {.lex_state = 1696, .external_lex_state = 4}, - [7700] = {.lex_state = 1696, .external_lex_state = 4}, - [7701] = {.lex_state = 1696, .external_lex_state = 4}, - [7702] = {.lex_state = 1696, .external_lex_state = 4}, - [7703] = {.lex_state = 1696, .external_lex_state = 4}, - [7704] = {.lex_state = 1696, .external_lex_state = 4}, - [7705] = {.lex_state = 1696, .external_lex_state = 4}, - [7706] = {.lex_state = 1696, .external_lex_state = 4}, - [7707] = {.lex_state = 1696, .external_lex_state = 4}, - [7708] = {.lex_state = 1696, .external_lex_state = 4}, - [7709] = {.lex_state = 1696, .external_lex_state = 4}, - [7710] = {.lex_state = 1696, .external_lex_state = 4}, - [7711] = {.lex_state = 1696, .external_lex_state = 4}, - [7712] = {.lex_state = 1696, .external_lex_state = 4}, - [7713] = {.lex_state = 1696, .external_lex_state = 4}, - [7714] = {.lex_state = 1696, .external_lex_state = 4}, - [7715] = {.lex_state = 1696, .external_lex_state = 4}, - [7716] = {.lex_state = 1696, .external_lex_state = 4}, - [7717] = {.lex_state = 1696, .external_lex_state = 4}, - [7718] = {.lex_state = 1696, .external_lex_state = 4}, - [7719] = {.lex_state = 1696, .external_lex_state = 4}, - [7720] = {.lex_state = 1696}, - [7721] = {.lex_state = 128}, - [7722] = {.lex_state = 1696}, - [7723] = {.lex_state = 1696, .external_lex_state = 3}, - [7724] = {.lex_state = 30}, - [7725] = {.lex_state = 1696}, - [7726] = {.lex_state = 1696}, - [7727] = {.lex_state = 1696}, - [7728] = {.lex_state = 1696}, - [7729] = {.lex_state = 1696}, - [7730] = {.lex_state = 1665}, - [7731] = {.lex_state = 1696}, - [7732] = {.lex_state = 1696}, - [7733] = {.lex_state = 5460}, - [7734] = {.lex_state = 368}, - [7735] = {.lex_state = 1696, .external_lex_state = 3}, - [7736] = {.lex_state = 1696}, - [7737] = {.lex_state = 1692}, - [7738] = {.lex_state = 368}, - [7739] = {.lex_state = 1696}, - [7740] = {.lex_state = 359}, - [7741] = {.lex_state = 1692}, - [7742] = {.lex_state = 368}, - [7743] = {.lex_state = 1696}, - [7744] = {.lex_state = 30}, - [7745] = {.lex_state = 1696}, - [7746] = {.lex_state = 1696}, - [7747] = {.lex_state = 1696}, - [7748] = {.lex_state = 1696}, - [7749] = {.lex_state = 1696}, - [7750] = {.lex_state = 1696}, - [7751] = {.lex_state = 1696}, - [7752] = {.lex_state = 1665}, - [7753] = {.lex_state = 3152}, - [7754] = {.lex_state = 1696}, - [7755] = {.lex_state = 3152}, - [7756] = {.lex_state = 1627}, - [7757] = {.lex_state = 1696}, - [7758] = {.lex_state = 1696}, - [7759] = {.lex_state = 1696}, - [7760] = {.lex_state = 1696}, - [7761] = {.lex_state = 1696}, - [7762] = {.lex_state = 1696}, - [7763] = {.lex_state = 1696}, - [7764] = {.lex_state = 1696}, - [7765] = {.lex_state = 1696}, - [7766] = {.lex_state = 1696}, - [7767] = {.lex_state = 1696}, - [7768] = {.lex_state = 1696}, - [7769] = {.lex_state = 3152}, - [7770] = {.lex_state = 1696, .external_lex_state = 3}, - [7771] = {.lex_state = 1692}, - [7772] = {.lex_state = 1696}, - [7773] = {.lex_state = 1696}, - [7774] = {.lex_state = 1627}, - [7775] = {(TSStateId)(-1)}, + [7620] = {.lex_state = 3153}, + [7621] = {.lex_state = 1693}, + [7622] = {.lex_state = 360}, + [7623] = {.lex_state = 1697, .external_lex_state = 3}, + [7624] = {.lex_state = 1697}, + [7625] = {.lex_state = 1697}, + [7626] = {.lex_state = 30}, + [7627] = {.lex_state = 1697}, + [7628] = {.lex_state = 1693}, + [7629] = {.lex_state = 5461}, + [7630] = {.lex_state = 1697, .external_lex_state = 4}, + [7631] = {.lex_state = 1628}, + [7632] = {.lex_state = 1697}, + [7633] = {.lex_state = 1697}, + [7634] = {.lex_state = 1697}, + [7635] = {.lex_state = 1697}, + [7636] = {.lex_state = 1697}, + [7637] = {.lex_state = 1697}, + [7638] = {.lex_state = 1697, .external_lex_state = 3}, + [7639] = {.lex_state = 1697}, + [7640] = {.lex_state = 1697}, + [7641] = {.lex_state = 360}, + [7642] = {.lex_state = 369}, + [7643] = {.lex_state = 1697, .external_lex_state = 4}, + [7644] = {.lex_state = 1628}, + [7645] = {.lex_state = 1697}, + [7646] = {.lex_state = 360}, + [7647] = {.lex_state = 1697}, + [7648] = {.lex_state = 369}, + [7649] = {.lex_state = 1697}, + [7650] = {.lex_state = 1697}, + [7651] = {.lex_state = 1697}, + [7652] = {.lex_state = 1697, .external_lex_state = 3}, + [7653] = {.lex_state = 1697, .external_lex_state = 4}, + [7654] = {.lex_state = 1628}, + [7655] = {.lex_state = 1697}, + [7656] = {.lex_state = 1697}, + [7657] = {.lex_state = 1695}, + [7658] = {.lex_state = 30}, + [7659] = {.lex_state = 3153}, + [7660] = {.lex_state = 1697}, + [7661] = {.lex_state = 1697}, + [7662] = {.lex_state = 365}, + [7663] = {.lex_state = 1697, .external_lex_state = 4}, + [7664] = {.lex_state = 1693}, + [7665] = {.lex_state = 1697, .external_lex_state = 3}, + [7666] = {.lex_state = 1697}, + [7667] = {.lex_state = 369}, + [7668] = {.lex_state = 30}, + [7669] = {.lex_state = 1697}, + [7670] = {.lex_state = 1697}, + [7671] = {.lex_state = 1697}, + [7672] = {.lex_state = 1697, .external_lex_state = 4}, + [7673] = {.lex_state = 1697}, + [7674] = {.lex_state = 1697}, + [7675] = {.lex_state = 3153}, + [7676] = {.lex_state = 360}, + [7677] = {.lex_state = 5459}, + [7678] = {.lex_state = 3153}, + [7679] = {.lex_state = 1697}, + [7680] = {.lex_state = 1697}, + [7681] = {.lex_state = 1697, .external_lex_state = 4}, + [7682] = {.lex_state = 1697, .external_lex_state = 4}, + [7683] = {.lex_state = 1697, .external_lex_state = 4}, + [7684] = {.lex_state = 1697, .external_lex_state = 4}, + [7685] = {.lex_state = 1697, .external_lex_state = 4}, + [7686] = {.lex_state = 1697, .external_lex_state = 4}, + [7687] = {.lex_state = 1697, .external_lex_state = 4}, + [7688] = {.lex_state = 1697, .external_lex_state = 4}, + [7689] = {.lex_state = 1697, .external_lex_state = 4}, + [7690] = {.lex_state = 1697, .external_lex_state = 4}, + [7691] = {.lex_state = 1697, .external_lex_state = 4}, + [7692] = {.lex_state = 1697, .external_lex_state = 4}, + [7693] = {.lex_state = 1697, .external_lex_state = 4}, + [7694] = {.lex_state = 1697, .external_lex_state = 4}, + [7695] = {.lex_state = 1697, .external_lex_state = 4}, + [7696] = {.lex_state = 1697, .external_lex_state = 4}, + [7697] = {.lex_state = 1697, .external_lex_state = 4}, + [7698] = {.lex_state = 1697, .external_lex_state = 4}, + [7699] = {.lex_state = 1697, .external_lex_state = 4}, + [7700] = {.lex_state = 1697, .external_lex_state = 4}, + [7701] = {.lex_state = 1697, .external_lex_state = 4}, + [7702] = {.lex_state = 1697}, + [7703] = {.lex_state = 103}, + [7704] = {.lex_state = 3153}, + [7705] = {.lex_state = 1697, .external_lex_state = 3}, + [7706] = {.lex_state = 1697}, + [7707] = {.lex_state = 1697}, + [7708] = {.lex_state = 1697, .external_lex_state = 3}, + [7709] = {.lex_state = 1693}, + [7710] = {.lex_state = 1697}, + [7711] = {.lex_state = 1697}, + [7712] = {.lex_state = 1666}, + [7713] = {.lex_state = 1697}, + [7714] = {.lex_state = 1697}, + [7715] = {.lex_state = 360}, + [7716] = {.lex_state = 369}, + [7717] = {.lex_state = 1693}, + [7718] = {.lex_state = 30}, + [7719] = {.lex_state = 1697}, + [7720] = {.lex_state = 1697}, + [7721] = {.lex_state = 1697}, + [7722] = {.lex_state = 1697, .external_lex_state = 3}, + [7723] = {.lex_state = 1697}, + [7724] = {.lex_state = 1697}, + [7725] = {.lex_state = 1697}, + [7726] = {.lex_state = 103}, + [7727] = {.lex_state = 1697}, + [7728] = {.lex_state = 1697}, + [7729] = {.lex_state = 1697}, + [7730] = {.lex_state = 369}, + [7731] = {.lex_state = 3153}, + [7732] = {.lex_state = 1697}, + [7733] = {.lex_state = 1697}, + [7734] = {.lex_state = 1697}, + [7735] = {.lex_state = 1697, .external_lex_state = 3}, + [7736] = {.lex_state = 1697, .external_lex_state = 4}, + [7737] = {.lex_state = 1697}, + [7738] = {.lex_state = 3153}, + [7739] = {.lex_state = 1697}, + [7740] = {.lex_state = 1697}, + [7741] = {.lex_state = 1776}, + [7742] = {.lex_state = 1697}, + [7743] = {.lex_state = 33}, + [7744] = {.lex_state = 1693}, + [7745] = {.lex_state = 369}, + [7746] = {.lex_state = 1697}, + [7747] = {.lex_state = 1697}, + [7748] = {.lex_state = 1693}, + [7749] = {.lex_state = 1697}, + [7750] = {.lex_state = 1697}, + [7751] = {.lex_state = 1697}, + [7752] = {.lex_state = 1693}, + [7753] = {.lex_state = 3153}, + [7754] = {.lex_state = 1697}, + [7755] = {.lex_state = 1697}, + [7756] = {(TSStateId)(-1)}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -68346,83 +68364,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_end] = ACTIONS(1), }, [1] = { - [sym_nu_script] = STATE(7750), - [sym_shebang] = STATE(58), - [sym__block_body_statement] = STATE(6429), - [sym__declaration] = STATE(6700), - [sym_decl_alias] = STATE(6846), - [sym_stmt_let] = STATE(6853), - [sym_stmt_mut] = STATE(6853), - [sym_stmt_const] = STATE(6853), - [sym_assignment] = STATE(6853), - [sym__mutable_assignment_pattern] = STATE(7122), - [sym__statement] = STATE(6700), - [sym_pipeline] = STATE(6853), - [sym__block_body] = STATE(7665), - [sym_cmd_identifier] = STATE(4536), - [sym_decl_def] = STATE(6846), - [sym_decl_export] = STATE(6846), - [sym_decl_extern] = STATE(6846), - [sym_decl_module] = STATE(6846), - [sym_decl_use] = STATE(6846), - [sym__ctrl_statement] = STATE(6853), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_for] = STATE(7018), - [sym_ctrl_loop] = STATE(7018), - [sym_ctrl_error] = STATE(7018), - [sym_ctrl_while] = STATE(7018), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_stmt_source] = STATE(6853), - [sym_stmt_register] = STATE(6853), - [sym__stmt_hide] = STATE(6853), - [sym_hide_mod] = STATE(6947), - [sym_hide_env] = STATE(6947), - [sym__stmt_overlay] = STATE(6853), - [sym_overlay_list] = STATE(6951), - [sym_overlay_hide] = STATE(6951), - [sym_overlay_new] = STATE(6951), - [sym_overlay_use] = STATE(6951), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(1490), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), + [sym_nu_script] = STATE(7632), + [sym_shebang] = STATE(92), + [sym__block_body_statement] = STATE(6437), + [sym__declaration] = STATE(7120), + [sym_decl_alias] = STATE(6764), + [sym_stmt_let] = STATE(6775), + [sym_stmt_mut] = STATE(6775), + [sym_stmt_const] = STATE(6775), + [sym_assignment] = STATE(6775), + [sym__mutable_assignment_pattern] = STATE(7016), + [sym__statement] = STATE(7120), + [sym_pipeline] = STATE(6775), + [sym__block_body] = STATE(7441), + [sym_cmd_identifier] = STATE(4423), + [sym_decl_def] = STATE(6764), + [sym_decl_export] = STATE(6764), + [sym_decl_extern] = STATE(6764), + [sym_decl_module] = STATE(6764), + [sym_decl_use] = STATE(6764), + [sym__ctrl_statement] = STATE(6775), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_for] = STATE(6664), + [sym_ctrl_loop] = STATE(6664), + [sym_ctrl_error] = STATE(6664), + [sym_ctrl_while] = STATE(6664), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_stmt_source] = STATE(6775), + [sym_stmt_register] = STATE(6775), + [sym__stmt_hide] = STATE(6775), + [sym_hide_mod] = STATE(6816), + [sym_hide_env] = STATE(6816), + [sym__stmt_overlay] = STATE(6775), + [sym_overlay_list] = STATE(6828), + [sym_overlay_hide] = STATE(6828), + [sym_overlay_new] = STATE(6828), + [sym_overlay_use] = STATE(6828), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(1473), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), [sym_comment] = STATE(1), - [aux_sym_shebang_repeat1] = STATE(6683), - [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_shebang_repeat1] = STATE(6665), + [aux_sym_pipeline_repeat1] = STATE(184), [aux_sym__block_body_repeat1] = STATE(100), - [aux_sym__block_body_repeat2] = STATE(134), - [aux_sym_pipe_element_repeat2] = STATE(301), + [aux_sym__block_body_repeat2] = STATE(135), + [aux_sym_pipe_element_repeat2] = STATE(310), [ts_builtin_sym_end] = ACTIONS(5), [anon_sym_POUND_BANG] = ACTIONS(7), [anon_sym_export] = ACTIONS(9), @@ -68534,90 +68552,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(123), }, [2] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7510), - [sym_cmd_identifier] = STATE(4261), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym__match_pattern_record_variable] = STATE(723), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7613), + [sym_cmd_identifier] = STATE(4213), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), [sym_expr_parenthesized] = STATE(2059), - [sym__spread_parenthesized] = STATE(667), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(668), + [sym__spread_parenthesized] = STATE(618), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(619), [sym_val_variable] = STATE(149), - [sym_val_number] = STATE(2436), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2436), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(667), - [sym_record_body] = STATE(7515), - [sym_record_entry] = STATE(597), - [sym__record_key] = STATE(7468), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym_val_number] = STATE(2419), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2419), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(618), + [sym_record_body] = STATE(7670), + [sym_record_entry] = STATE(564), + [sym__record_key] = STATE(7451), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(2), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym__match_pattern_record_repeat1] = STATE(201), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym__match_pattern_record_repeat1] = STATE(202), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(125), [anon_sym_alias] = ACTIONS(127), @@ -68739,88 +68756,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [3] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7458), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7516), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7616), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7660), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(3), - [aux_sym_shebang_repeat1] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -68942,88 +68959,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [4] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7476), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(126), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7618), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7613), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(106), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7670), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(4), - [aux_sym_shebang_repeat1] = STATE(33), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(24), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -69145,88 +69162,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [5] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7552), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7516), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7750), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7740), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(5), - [aux_sym_shebang_repeat1] = STATE(22), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -69348,88 +69365,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [6] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7510), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7515), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7711), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7740), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(6), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -69551,88 +69568,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [7] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7491), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7742), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7652), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7670), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(7), [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -69754,88 +69771,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [8] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7651), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7652), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7711), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7598), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(8), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(25), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -69957,88 +69974,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [9] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7761), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(103), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7515), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7589), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(95), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7724), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(9), - [aux_sym_shebang_repeat1] = STATE(23), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(27), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -70160,88 +70177,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [10] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7651), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7469), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7723), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(102), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7720), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(10), - [aux_sym_shebang_repeat1] = STATE(24), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(26), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -70363,88 +70380,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [11] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7467), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7749), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7635), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(105), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7507), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(11), - [aux_sym_shebang_repeat1] = STATE(25), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(21), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -70566,88 +70583,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [12] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7748), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(113), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7762), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7486), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(93), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7452), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(12), - [aux_sym_shebang_repeat1] = STATE(27), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(28), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -70769,88 +70786,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [13] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7757), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(115), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7597), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7442), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7503), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(13), - [aux_sym_shebang_repeat1] = STATE(28), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -70972,88 +70989,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [14] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7593), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(117), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7657), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7498), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7656), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(14), - [aux_sym_shebang_repeat1] = STATE(29), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(31), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -71175,88 +71192,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [15] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7639), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7545), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7442), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(111), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7429), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(15), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(29), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -71378,88 +71395,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [16] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7544), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7693), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7649), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(114), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7404), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(16), - [aux_sym_shebang_repeat1] = STATE(21), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(30), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -71581,88 +71598,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [17] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7639), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(119), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7414), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7426), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(117), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7485), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(17), - [aux_sym_shebang_repeat1] = STATE(30), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(32), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -71784,88 +71801,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [18] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7692), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(121), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7393), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7400), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(120), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7556), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(18), - [aux_sym_shebang_repeat1] = STATE(26), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(33), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -71987,88 +72004,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [19] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7407), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7483), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), [sym_parameter_pipes] = STATE(123), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7477), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7606), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(19), - [aux_sym_shebang_repeat1] = STATE(31), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(22), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -72190,88 +72207,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [20] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7388), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(125), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7564), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7379), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7660), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(20), - [aux_sym_shebang_repeat1] = STATE(32), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(23), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), @@ -72393,88 +72410,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [21] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7766), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7584), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(107), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(21), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72594,88 +72611,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [22] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7627), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(96), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7496), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(125), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(22), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72795,88 +72812,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [23] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7440), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(105), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7607), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(23), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -72996,88 +73013,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [24] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7760), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7408), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(118), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(24), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73197,88 +73214,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [25] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7499), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7410), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(94), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(25), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73398,88 +73415,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [26] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7763), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(122), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7587), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(104), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(26), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73599,88 +73616,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [27] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7772), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(114), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7371), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(27), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -73800,88 +73817,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [28] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7656), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(116), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7669), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(110), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(28), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74001,88 +74018,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [29] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7397), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(118), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7543), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(113), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(29), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74202,88 +74219,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [30] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7590), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(93), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7680), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(116), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(30), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74403,88 +74420,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [31] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7539), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(124), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7749), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(101), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(31), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74604,88 +74621,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [32] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7411), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(94), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7545), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(119), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(32), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -74805,88 +74822,88 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [33] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7492), - [sym_cmd_identifier] = STATE(4250), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(120), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(2002), - [sym__spread_parenthesized] = STATE(7373), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(1454), - [sym_val_number] = STATE(2366), - [sym__val_number_decimal] = STATE(804), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2366), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7420), + [sym_cmd_identifier] = STATE(4173), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(122), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(2055), + [sym__spread_parenthesized] = STATE(7266), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(1419), + [sym_val_number] = STATE(2298), + [sym__val_number_decimal] = STATE(786), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2298), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(33), [aux_sym_shebang_repeat1] = STATE(190), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [aux_sym_record_body_repeat1] = STATE(207), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [aux_sym_record_body_repeat1] = STATE(204), [anon_sym_export] = ACTIONS(255), [anon_sym_alias] = ACTIONS(257), [anon_sym_let] = ACTIONS(259), @@ -75006,82 +75023,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [34] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7511), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(108), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7633), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(95), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(34), - [aux_sym_shebang_repeat1] = STATE(38), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(40), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -75193,82 +75210,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [35] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7754), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(111), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7571), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(99), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(35), - [aux_sym_shebang_repeat1] = STATE(43), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(42), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -75380,82 +75397,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [36] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7552), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7616), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(36), - [aux_sym_shebang_repeat1] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(41), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -75567,82 +75584,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [37] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7491), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7750), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(37), - [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -75754,82 +75771,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [38] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7499), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(110), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7711), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(121), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(38), - [aux_sym_shebang_repeat1] = STATE(244), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(43), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -75940,82 +75957,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [39] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7651), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(106), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7379), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(126), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(39), [aux_sym_shebang_repeat1] = STATE(41), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -76126,82 +76143,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [40] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7627), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(96), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7371), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(98), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(40), - [aux_sym_shebang_repeat1] = STATE(244), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -76312,82 +76329,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [41] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7760), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(107), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7607), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(124), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(41), - [aux_sym_shebang_repeat1] = STATE(244), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -76498,82 +76515,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [42] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7458), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(99), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7749), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(101), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(42), - [aux_sym_shebang_repeat1] = STATE(40), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -76684,82 +76701,82 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [43] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7766), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym_parameter_pipes] = STATE(112), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7410), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym_parameter_pipes] = STATE(94), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(43), - [aux_sym_shebang_repeat1] = STATE(244), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_shebang_repeat1] = STATE(272), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -76870,80 +76887,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [44] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7563), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7603), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(44), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -77055,80 +77072,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [45] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7637), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7627), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(45), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -77240,80 +77257,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [46] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7691), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7710), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(46), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -77425,80 +77442,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [47] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7404), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7554), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(47), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -77610,80 +77627,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [48] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7387), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7647), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(48), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -77795,80 +77812,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [49] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7463), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7494), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(49), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -77980,80 +77997,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [50] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7473), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7438), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(50), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -78165,80 +78182,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [51] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7562), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7721), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(51), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -78350,80 +78367,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [52] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7617), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7425), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(52), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -78535,80 +78552,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [53] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7633), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7478), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(53), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -78720,80 +78737,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [54] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7747), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7397), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(54), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -78876,7 +78893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(487), + [anon_sym_RPAREN2] = ACTIONS(507), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(457), @@ -78905,80 +78922,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [55] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7543), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7568), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(55), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -79034,7 +79051,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(507), + [anon_sym_RPAREN] = ACTIONS(509), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -79061,7 +79078,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), - [anon_sym_RPAREN2] = ACTIONS(509), + [anon_sym_RPAREN2] = ACTIONS(495), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), [aux_sym__val_number_decimal_token1] = ACTIONS(457), @@ -79090,80 +79107,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [56] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7746), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7482), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(56), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -79275,80 +79292,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [57] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7575), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7445), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(57), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -79459,264 +79476,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [58] = { - [sym__block_body_statement] = STATE(6429), - [sym__declaration] = STATE(6700), - [sym_decl_alias] = STATE(6846), - [sym_stmt_let] = STATE(6853), - [sym_stmt_mut] = STATE(6853), - [sym_stmt_const] = STATE(6853), - [sym_assignment] = STATE(6853), - [sym__mutable_assignment_pattern] = STATE(7122), - [sym__statement] = STATE(6700), - [sym_pipeline] = STATE(6853), - [sym__block_body] = STATE(7739), - [sym_cmd_identifier] = STATE(4536), - [sym_decl_def] = STATE(6846), - [sym_decl_export] = STATE(6846), - [sym_decl_extern] = STATE(6846), - [sym_decl_module] = STATE(6846), - [sym_decl_use] = STATE(6846), - [sym__ctrl_statement] = STATE(6853), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_for] = STATE(7018), - [sym_ctrl_loop] = STATE(7018), - [sym_ctrl_error] = STATE(7018), - [sym_ctrl_while] = STATE(7018), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_stmt_source] = STATE(6853), - [sym_stmt_register] = STATE(6853), - [sym__stmt_hide] = STATE(6853), - [sym_hide_mod] = STATE(6947), - [sym_hide_env] = STATE(6947), - [sym__stmt_overlay] = STATE(6853), - [sym_overlay_list] = STATE(6951), - [sym_overlay_hide] = STATE(6951), - [sym_overlay_new] = STATE(6951), - [sym_overlay_use] = STATE(6951), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(1490), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7586), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(58), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym__block_body_repeat1] = STATE(100), - [aux_sym__block_body_repeat2] = STATE(134), - [aux_sym_pipe_element_repeat2] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(517), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [59] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7408), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(59), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -79772,7 +79605,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(519), + [anon_sym_RPAREN] = ACTIONS(517), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -79826,81 +79659,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [60] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7548), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(60), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [59] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7671), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(59), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -79956,7 +79789,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(521), + [anon_sym_RPAREN] = ACTIONS(519), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -80010,81 +79843,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [61] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7403), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(61), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [60] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7674), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(60), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -80140,7 +79973,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(523), + [anon_sym_RPAREN] = ACTIONS(521), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -80194,81 +80027,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [62] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7746), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(62), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [61] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7546), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(61), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -80324,7 +80157,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(525), + [anon_sym_RPAREN] = ACTIONS(523), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -80378,81 +80211,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [63] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7412), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(63), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [62] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7478), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(62), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -80508,7 +80341,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(527), + [anon_sym_RPAREN] = ACTIONS(525), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -80562,81 +80395,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [64] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7637), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(64), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [63] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7702), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(63), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -80692,7 +80525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(529), + [anon_sym_RPAREN] = ACTIONS(527), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -80746,81 +80579,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [65] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7727), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(65), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [64] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7471), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(64), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -80876,7 +80709,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(531), + [anon_sym_RPAREN] = ACTIONS(529), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -80930,81 +80763,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [66] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7493), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(66), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [65] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7582), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(65), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -81060,7 +80893,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(533), + [anon_sym_RPAREN] = ACTIONS(531), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -81114,265 +80947,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [67] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7435), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(67), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(379), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(425), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), - [anon_sym_source] = ACTIONS(405), - [anon_sym_source_DASHenv] = ACTIONS(405), - [anon_sym_register] = ACTIONS(407), - [anon_sym_hide] = ACTIONS(409), - [anon_sym_hide_DASHenv] = ACTIONS(411), - [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [68] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7773), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(68), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [66] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7472), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(66), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -81428,7 +81077,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(535), + [anon_sym_RPAREN] = ACTIONS(533), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -81482,81 +81131,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [69] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7390), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(69), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [67] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7422), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(67), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -81612,7 +81261,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(537), + [anon_sym_RPAREN] = ACTIONS(535), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -81666,81 +81315,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [70] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7629), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(70), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [68] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7497), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(68), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -81796,7 +81445,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(539), + [anon_sym_RPAREN] = ACTIONS(537), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -81850,81 +81499,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [71] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7674), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(71), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [69] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7466), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(69), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -81980,7 +81629,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(541), + [anon_sym_RPAREN] = ACTIONS(539), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -82034,81 +81683,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [72] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7736), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(72), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [70] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7564), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(70), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -82164,7 +81813,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(543), + [anon_sym_RPAREN] = ACTIONS(541), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -82218,81 +81867,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [73] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7764), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(73), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [71] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7739), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(71), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -82348,7 +81997,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(545), + [anon_sym_RPAREN] = ACTIONS(543), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -82402,81 +82051,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [74] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7416), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(74), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [72] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7619), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(72), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -82532,7 +82181,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(547), + [anon_sym_RPAREN] = ACTIONS(545), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -82586,81 +82235,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [75] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7486), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(75), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [73] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7661), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(73), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -82716,7 +82365,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(549), + [anon_sym_RPAREN] = ACTIONS(547), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -82770,81 +82419,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [76] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7558), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(76), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [74] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7732), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(74), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -82900,7 +82549,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(551), + [anon_sym_RPAREN] = ACTIONS(549), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -82954,81 +82603,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [77] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7599), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(77), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [75] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7367), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(75), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -83084,7 +82733,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(553), + [anon_sym_RPAREN] = ACTIONS(551), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -83138,81 +82787,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [78] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7591), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(78), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [76] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7462), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(76), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -83268,7 +82917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(555), + [anon_sym_RPAREN] = ACTIONS(553), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -83322,265 +82971,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [79] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7526), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(79), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(363), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(363), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(363), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(369), - [anon_sym_export_DASHenv] = ACTIONS(371), - [anon_sym_extern] = ACTIONS(373), - [anon_sym_module] = ACTIONS(375), - [anon_sym_use] = ACTIONS(377), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(275), - [anon_sym_error] = ACTIONS(379), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_for] = ACTIONS(387), - [anon_sym_loop] = ACTIONS(389), - [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(427), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), - [anon_sym_source] = ACTIONS(405), - [anon_sym_source_DASHenv] = ACTIONS(405), - [anon_sym_register] = ACTIONS(407), - [anon_sym_hide] = ACTIONS(409), - [anon_sym_hide_DASHenv] = ACTIONS(411), - [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [80] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7592), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(80), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [77] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7541), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(77), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -83636,7 +83101,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(557), + [anon_sym_RPAREN] = ACTIONS(555), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -83690,81 +83155,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [81] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7487), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(81), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [78] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7650), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(78), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -83820,7 +83285,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(559), + [anon_sym_RPAREN] = ACTIONS(557), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -83874,81 +83339,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [82] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7563), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(82), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [79] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7373), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(79), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -84004,7 +83469,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(561), + [anon_sym_RPAREN] = ACTIONS(559), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -84058,87 +83523,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [83] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7502), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(83), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [80] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7580), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(80), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -84188,39 +83653,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(425), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -84237,92 +83702,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [84] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7672), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(84), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [81] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7431), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(81), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -84372,39 +83837,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(427), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -84421,86 +83886,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [85] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7534), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(85), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [82] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7721), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(82), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -84556,7 +84021,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(567), + [anon_sym_RPAREN] = ACTIONS(561), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -84610,81 +84075,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [86] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7747), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(86), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [83] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7734), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(83), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -84740,7 +84205,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(569), + [anon_sym_RPAREN] = ACTIONS(563), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -84794,81 +84259,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [87] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7758), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(87), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [84] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7751), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(84), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -84924,7 +84389,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(571), + [anon_sym_RPAREN] = ACTIONS(565), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -84978,81 +84443,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [88] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7767), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(88), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [85] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7710), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(85), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -85108,7 +84573,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(573), + [anon_sym_RPAREN] = ACTIONS(567), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -85162,81 +84627,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [89] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7474), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(89), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [86] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7434), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(86), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -85292,7 +84757,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(575), + [anon_sym_RPAREN] = ACTIONS(569), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -85346,81 +84811,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [90] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7446), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(90), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [87] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7568), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(87), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -85476,7 +84941,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(577), + [anon_sym_RPAREN] = ACTIONS(571), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -85530,81 +84995,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [91] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7463), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(91), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [88] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7593), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(88), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -85660,7 +85125,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(579), + [anon_sym_RPAREN] = ACTIONS(573), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -85714,81 +85179,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [92] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7450), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(92), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), + [89] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7384), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(89), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), [anon_sym_export] = ACTIONS(429), [anon_sym_alias] = ACTIONS(431), [anon_sym_let] = ACTIONS(433), @@ -85844,7 +85309,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(581), + [anon_sym_RPAREN] = ACTIONS(575), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -85898,87 +85363,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [93] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7610), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(93), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [90] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7411), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(90), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -86028,38 +85493,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(577), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -86076,92 +85542,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [94] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7417), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(94), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [91] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7438), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(91), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -86211,38 +85677,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(579), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -86259,91 +85726,276 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [95] = { - [sym__block_body_statement_parenthesized] = STATE(5702), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(95), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(205), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(127), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [92] = { + [sym__block_body_statement] = STATE(6437), + [sym__declaration] = STATE(7120), + [sym_decl_alias] = STATE(6764), + [sym_stmt_let] = STATE(6775), + [sym_stmt_mut] = STATE(6775), + [sym_stmt_const] = STATE(6775), + [sym_assignment] = STATE(6775), + [sym__mutable_assignment_pattern] = STATE(7016), + [sym__statement] = STATE(7120), + [sym_pipeline] = STATE(6775), + [sym__block_body] = STATE(7516), + [sym_cmd_identifier] = STATE(4423), + [sym_decl_def] = STATE(6764), + [sym_decl_export] = STATE(6764), + [sym_decl_extern] = STATE(6764), + [sym_decl_module] = STATE(6764), + [sym_decl_use] = STATE(6764), + [sym__ctrl_statement] = STATE(6775), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_for] = STATE(6664), + [sym_ctrl_loop] = STATE(6664), + [sym_ctrl_error] = STATE(6664), + [sym_ctrl_while] = STATE(6664), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_stmt_source] = STATE(6775), + [sym_stmt_register] = STATE(6775), + [sym__stmt_hide] = STATE(6775), + [sym_hide_mod] = STATE(6816), + [sym_hide_env] = STATE(6816), + [sym__stmt_overlay] = STATE(6775), + [sym_overlay_list] = STATE(6828), + [sym_overlay_hide] = STATE(6828), + [sym_overlay_new] = STATE(6828), + [sym_overlay_use] = STATE(6828), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(1473), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(92), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat1] = STATE(100), + [aux_sym__block_body_repeat2] = STATE(135), + [aux_sym_pipe_element_repeat2] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(581), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [93] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7640), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(93), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -86393,39 +86045,38 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(583), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -86442,86 +86093,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [96] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7530), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(96), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [94] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7611), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(94), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -86630,87 +86281,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [97] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7732), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(97), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(129), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(585), - [anon_sym_alias] = ACTIONS(587), - [anon_sym_let] = ACTIONS(589), - [anon_sym_let_DASHenv] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(591), - [anon_sym_const] = ACTIONS(593), + [95] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7370), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(95), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -86769,12 +86420,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(451), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), @@ -86788,10 +86439,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -86813,86 +86464,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [98] = { - [sym__block_body_statement] = STATE(5985), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(98), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(205), - [aux_sym__block_body_repeat2] = STATE(133), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [96] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7428), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1525), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(96), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(129), + [aux_sym_pipe_element_repeat2] = STATE(317), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -86951,13 +86603,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(597), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), @@ -86971,10 +86622,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -86996,87 +86647,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [99] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7442), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(99), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [97] = { + [sym__block_body_statement_parenthesized] = STATE(5769), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(97), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(209), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(131), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -87126,38 +86776,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(595), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -87174,275 +86825,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [100] = { - [sym__block_body_statement] = STATE(6512), - [sym__declaration] = STATE(6700), - [sym_decl_alias] = STATE(6846), - [sym_stmt_let] = STATE(6853), - [sym_stmt_mut] = STATE(6853), - [sym_stmt_const] = STATE(6853), - [sym_assignment] = STATE(6853), - [sym__mutable_assignment_pattern] = STATE(7122), - [sym__statement] = STATE(6700), - [sym_pipeline] = STATE(6853), - [sym_cmd_identifier] = STATE(4536), - [sym_decl_def] = STATE(6846), - [sym_decl_export] = STATE(6846), - [sym_decl_extern] = STATE(6846), - [sym_decl_module] = STATE(6846), - [sym_decl_use] = STATE(6846), - [sym__ctrl_statement] = STATE(6853), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_for] = STATE(7018), - [sym_ctrl_loop] = STATE(7018), - [sym_ctrl_error] = STATE(7018), - [sym_ctrl_while] = STATE(7018), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_stmt_source] = STATE(6853), - [sym_stmt_register] = STATE(6853), - [sym__stmt_hide] = STATE(6853), - [sym_hide_mod] = STATE(6947), - [sym_hide_env] = STATE(6947), - [sym__stmt_overlay] = STATE(6853), - [sym_overlay_list] = STATE(6951), - [sym_overlay_hide] = STATE(6951), - [sym_overlay_new] = STATE(6951), - [sym_overlay_use] = STATE(6951), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(1490), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(100), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym__block_body_repeat1] = STATE(240), - [aux_sym__block_body_repeat2] = STATE(136), - [aux_sym_pipe_element_repeat2] = STATE(301), - [ts_builtin_sym_end] = ACTIONS(597), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [101] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7553), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(101), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [98] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7418), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(98), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -87495,35 +86963,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -87540,92 +87008,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [102] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7720), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(102), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat1] = STATE(109), - [aux_sym__block_body_repeat2] = STATE(129), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(585), - [anon_sym_alias] = ACTIONS(587), - [anon_sym_let] = ACTIONS(589), - [anon_sym_let_DASHenv] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(591), - [anon_sym_const] = ACTIONS(593), + [99] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7747), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(99), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -87684,12 +87152,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(451), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), @@ -87703,10 +87171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -87728,81 +87196,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [103] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7664), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(103), + [100] = { + [sym__block_body_statement] = STATE(6564), + [sym__declaration] = STATE(7120), + [sym_decl_alias] = STATE(6764), + [sym_stmt_let] = STATE(6775), + [sym_stmt_mut] = STATE(6775), + [sym_stmt_const] = STATE(6775), + [sym_assignment] = STATE(6775), + [sym__mutable_assignment_pattern] = STATE(7016), + [sym__statement] = STATE(7120), + [sym_pipeline] = STATE(6775), + [sym_cmd_identifier] = STATE(4423), + [sym_decl_def] = STATE(6764), + [sym_decl_export] = STATE(6764), + [sym_decl_extern] = STATE(6764), + [sym_decl_module] = STATE(6764), + [sym_decl_use] = STATE(6764), + [sym__ctrl_statement] = STATE(6775), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_for] = STATE(6664), + [sym_ctrl_loop] = STATE(6664), + [sym_ctrl_error] = STATE(6664), + [sym_ctrl_while] = STATE(6664), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_stmt_source] = STATE(6775), + [sym_stmt_register] = STATE(6775), + [sym__stmt_hide] = STATE(6775), + [sym_hide_mod] = STATE(6816), + [sym_hide_env] = STATE(6816), + [sym__stmt_overlay] = STATE(6775), + [sym_overlay_list] = STATE(6828), + [sym_overlay_hide] = STATE(6828), + [sym_overlay_new] = STATE(6828), + [sym_overlay_use] = STATE(6828), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(1473), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(100), [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym__block_body_repeat1] = STATE(290), + [aux_sym__block_body_repeat2] = STATE(127), + [aux_sym_pipe_element_repeat2] = STATE(310), + [ts_builtin_sym_end] = ACTIONS(597), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [101] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7378), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(101), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -87911,87 +87562,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [104] = { - [sym__block_body_statement_parenthesized] = STATE(5722), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym__parenthesized_body] = STATE(7586), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(104), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym__block_body_repeat1] = STATE(95), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(135), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [102] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7755), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(102), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -88044,35 +87695,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -88089,92 +87740,92 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [105] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7678), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(105), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [103] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7520), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1525), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(103), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(109), + [aux_sym__block_body_repeat2] = STATE(129), + [aux_sym_pipe_element_repeat2] = STATE(317), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -88233,12 +87884,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), @@ -88252,10 +87903,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -88277,81 +87928,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [106] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7728), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(106), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [104] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7707), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(104), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -88460,81 +88111,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [107] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7478), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(107), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [105] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7583), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(105), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -88643,81 +88294,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [108] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7498), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(108), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [106] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7399), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(106), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -88826,86 +88477,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [109] = { - [sym__block_body_statement] = STATE(5985), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(109), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym__block_body_repeat1] = STATE(205), - [aux_sym__block_body_repeat2] = STATE(130), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(585), - [anon_sym_alias] = ACTIONS(587), - [anon_sym_let] = ACTIONS(589), - [anon_sym_let_DASHenv] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(591), - [anon_sym_const] = ACTIONS(593), + [107] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7639), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(107), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -88955,7 +88607,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(597), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -88965,12 +88616,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(451), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), @@ -88984,10 +88635,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -89009,87 +88660,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [110] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7531), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(110), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [108] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7576), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(108), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -89142,35 +88793,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -89187,92 +88838,91 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [111] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7765), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(111), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [109] = { + [sym__block_body_statement] = STATE(5943), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1525), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(109), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym__block_body_repeat1] = STATE(209), + [aux_sym__block_body_repeat2] = STATE(130), + [aux_sym_pipe_element_repeat2] = STATE(317), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -89322,6 +88972,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_use] = ACTIONS(377), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_RPAREN] = ACTIONS(597), [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), @@ -89331,12 +88982,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), @@ -89350,10 +89001,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -89375,81 +89026,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [112] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7620), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(112), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [110] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7374), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(110), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -89558,81 +89209,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [113] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7697), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(113), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [111] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7536), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(111), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -89741,87 +89392,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [114] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7579), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(114), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [112] = { + [sym__block_body_statement_parenthesized] = STATE(5598), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym__parenthesized_body] = STATE(7487), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(112), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym__block_body_repeat1] = STATE(97), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(133), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -89874,35 +89525,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -89919,86 +89570,86 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [115] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7655), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(115), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [113] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7569), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(113), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -90107,81 +89758,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [116] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7443), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(116), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [114] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7679), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(114), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -90290,81 +89941,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [117] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7596), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(117), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [115] = { + [sym__block_body_statement] = STATE(5943), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(115), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(209), + [aux_sym__block_body_repeat2] = STATE(136), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -90432,6 +90082,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_RBRACE] = ACTIONS(597), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), [anon_sym_return] = ACTIONS(403), @@ -90473,81 +90124,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [118] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7431), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(118), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [116] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7733), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(116), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -90656,81 +90307,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [119] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7588), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(119), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [117] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7530), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(117), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -90839,81 +90490,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [120] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7508), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(120), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [118] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7468), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(118), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -91022,81 +90673,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [121] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7759), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(121), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [119] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7614), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(119), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -91205,81 +90856,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [122] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7572), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(122), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [120] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7419), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(120), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -91388,81 +91039,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [123] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7529), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(123), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [121] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7361), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(121), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -91571,81 +91222,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [124] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7604), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(124), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [122] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7427), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(122), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -91754,81 +91405,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [125] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7406), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(125), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [123] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7495), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(123), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -91937,81 +91588,81 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [126] = { - [sym__block_body_statement] = STATE(5873), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym__block_body] = STATE(7489), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(126), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat1] = STATE(98), - [aux_sym__block_body_repeat2] = STATE(131), - [aux_sym_pipe_element_repeat2] = STATE(312), + [124] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7673), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(124), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -92120,85 +91771,87 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [127] = { - [sym__block_body_statement_parenthesized] = STATE(5627), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(127), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [125] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7508), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(125), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -92239,6 +91892,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), [anon_sym_def] = ACTIONS(369), [anon_sym_export_DASHenv] = ACTIONS(371), [anon_sym_extern] = ACTIONS(373), @@ -92249,35 +91904,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -92294,84 +91949,446 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [126] = { + [sym__block_body_statement] = STATE(5835), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym__block_body] = STATE(7448), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(126), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat1] = STATE(115), + [aux_sym__block_body_repeat2] = STATE(134), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [127] = { + [sym__block_body_statement] = STATE(6103), + [sym__declaration] = STATE(7120), + [sym_decl_alias] = STATE(6764), + [sym_stmt_let] = STATE(6775), + [sym_stmt_mut] = STATE(6775), + [sym_stmt_const] = STATE(6775), + [sym_assignment] = STATE(6775), + [sym__mutable_assignment_pattern] = STATE(7016), + [sym__statement] = STATE(7120), + [sym_pipeline] = STATE(6775), + [sym_cmd_identifier] = STATE(4423), + [sym_decl_def] = STATE(6764), + [sym_decl_export] = STATE(6764), + [sym_decl_extern] = STATE(6764), + [sym_decl_module] = STATE(6764), + [sym_decl_use] = STATE(6764), + [sym__ctrl_statement] = STATE(6775), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_for] = STATE(6664), + [sym_ctrl_loop] = STATE(6664), + [sym_ctrl_error] = STATE(6664), + [sym_ctrl_while] = STATE(6664), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_stmt_source] = STATE(6775), + [sym_stmt_register] = STATE(6775), + [sym__stmt_hide] = STATE(6775), + [sym_hide_mod] = STATE(6816), + [sym_hide_env] = STATE(6816), + [sym__stmt_overlay] = STATE(6775), + [sym_overlay_list] = STATE(6828), + [sym_overlay_hide] = STATE(6828), + [sym_overlay_new] = STATE(6828), + [sym_overlay_use] = STATE(6828), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(1473), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(127), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym__block_body_repeat2] = STATE(128), + [aux_sym_pipe_element_repeat2] = STATE(310), + [anon_sym_export] = ACTIONS(9), + [anon_sym_alias] = ACTIONS(11), + [anon_sym_let] = ACTIONS(13), + [anon_sym_let_DASHenv] = ACTIONS(13), + [anon_sym_mut] = ACTIONS(15), + [anon_sym_const] = ACTIONS(17), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(19), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(19), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(19), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_def] = ACTIONS(27), + [anon_sym_export_DASHenv] = ACTIONS(29), + [anon_sym_extern] = ACTIONS(31), + [anon_sym_module] = ACTIONS(33), + [anon_sym_use] = ACTIONS(35), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(41), + [anon_sym_error] = ACTIONS(43), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_for] = ACTIONS(51), + [anon_sym_loop] = ACTIONS(53), + [anon_sym_while] = ACTIONS(55), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_source] = ACTIONS(71), + [anon_sym_source_DASHenv] = ACTIONS(71), + [anon_sym_register] = ACTIONS(73), + [anon_sym_hide] = ACTIONS(75), + [anon_sym_hide_DASHenv] = ACTIONS(77), + [anon_sym_overlay] = ACTIONS(79), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, [128] = { - [sym__block_body_statement] = STATE(6850), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1602), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(6667), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1597), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(128), - [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(183), [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_pipe_element_repeat2] = STATE(323), [anon_sym_export] = ACTIONS(599), [anon_sym_alias] = ACTIONS(602), [anon_sym_let] = ACTIONS(605), @@ -92479,84 +92496,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(764), }, [129] = { - [sym__block_body_statement] = STATE(5985), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5943), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1525), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(129), [aux_sym_pipeline_repeat1] = STATE(186), [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(585), - [anon_sym_alias] = ACTIONS(587), - [anon_sym_let] = ACTIONS(589), - [anon_sym_let_DASHenv] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(591), - [anon_sym_const] = ACTIONS(593), + [aux_sym_pipe_element_repeat2] = STATE(317), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -92613,7 +92630,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -92658,84 +92675,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [130] = { - [sym__block_body_statement] = STATE(5881), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1517), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement] = STATE(5826), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1525), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(130), [aux_sym_pipeline_repeat1] = STATE(186), [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(315), - [anon_sym_export] = ACTIONS(585), - [anon_sym_alias] = ACTIONS(587), - [anon_sym_let] = ACTIONS(589), - [anon_sym_let_DASHenv] = ACTIONS(589), - [anon_sym_mut] = ACTIONS(591), - [anon_sym_const] = ACTIONS(593), + [aux_sym_pipe_element_repeat2] = STATE(317), + [anon_sym_export] = ACTIONS(583), + [anon_sym_alias] = ACTIONS(585), + [anon_sym_let] = ACTIONS(587), + [anon_sym_let_DASHenv] = ACTIONS(587), + [anon_sym_mut] = ACTIONS(589), + [anon_sym_const] = ACTIONS(591), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -92792,7 +92809,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -92837,84 +92854,84 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [131] = { - [sym__block_body_statement] = STATE(5985), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement_parenthesized] = STATE(5616), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(131), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(312), - [anon_sym_export] = ACTIONS(353), - [anon_sym_alias] = ACTIONS(355), - [anon_sym_let] = ACTIONS(357), - [anon_sym_let_DASHenv] = ACTIONS(357), - [anon_sym_mut] = ACTIONS(359), - [anon_sym_const] = ACTIONS(361), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -92965,35 +92982,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -93010,83 +93027,83 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [132] = { - [sym__block_body_statement_parenthesized] = STATE(6177), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1590), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym__block_body_statement_parenthesized] = STATE(6095), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1586), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(132), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), [aux_sym__parenthesized_body_repeat2] = STATE(132), [anon_sym_export] = ACTIONS(767), [anon_sym_alias] = ACTIONS(770), @@ -93195,78 +93212,257 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(932), }, [133] = { - [sym__block_body_statement] = STATE(5881), - [sym__declaration] = STATE(6419), - [sym_decl_alias] = STATE(6422), - [sym_stmt_let] = STATE(6423), - [sym_stmt_mut] = STATE(6423), - [sym_stmt_const] = STATE(6423), - [sym_assignment] = STATE(6423), - [sym__mutable_assignment_pattern] = STATE(6424), - [sym__statement] = STATE(6419), - [sym_pipeline] = STATE(6423), - [sym_cmd_identifier] = STATE(4329), - [sym_decl_def] = STATE(6422), - [sym_decl_export] = STATE(6422), - [sym_decl_extern] = STATE(6422), - [sym_decl_module] = STATE(6422), - [sym_decl_use] = STATE(6422), - [sym__ctrl_statement] = STATE(6423), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_stmt_source] = STATE(6423), - [sym_stmt_register] = STATE(6423), - [sym__stmt_hide] = STATE(6423), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(6423), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1503), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__block_body_statement_parenthesized] = STATE(5769), + [sym__declaration_parenthesized] = STATE(6995), + [sym_decl_alias_parenthesized] = STATE(7009), + [sym_stmt_let_parenthesized] = STATE(7040), + [sym_stmt_mut_parenthesized] = STATE(7040), + [sym_stmt_const_parenthesized] = STATE(7040), + [sym_assignment_parenthesized] = STATE(7040), + [sym__mutable_assignment_pattern_parenthesized] = STATE(7046), + [sym__statement_parenthesized] = STATE(6995), + [sym_pipeline_parenthesized] = STATE(7040), + [sym_cmd_identifier] = STATE(4446), + [sym_decl_def] = STATE(7009), + [sym_decl_export] = STATE(7009), + [sym_decl_extern] = STATE(7009), + [sym_decl_module] = STATE(7009), + [sym_decl_use] = STATE(7009), + [sym__ctrl_statement] = STATE(7040), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_stmt_source] = STATE(7040), + [sym_stmt_register] = STATE(7040), + [sym__stmt_hide] = STATE(7040), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(7040), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1488), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(133), - [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), + [aux_sym__parenthesized_body_repeat2] = STATE(132), + [anon_sym_export] = ACTIONS(429), + [anon_sym_alias] = ACTIONS(431), + [anon_sym_let] = ACTIONS(433), + [anon_sym_let_DASHenv] = ACTIONS(433), + [anon_sym_mut] = ACTIONS(435), + [anon_sym_const] = ACTIONS(437), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(363), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(363), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(363), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_def] = ACTIONS(369), + [anon_sym_export_DASHenv] = ACTIONS(371), + [anon_sym_extern] = ACTIONS(373), + [anon_sym_module] = ACTIONS(375), + [anon_sym_use] = ACTIONS(377), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(275), + [anon_sym_error] = ACTIONS(379), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_for] = ACTIONS(387), + [anon_sym_loop] = ACTIONS(389), + [anon_sym_while] = ACTIONS(391), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_source] = ACTIONS(405), + [anon_sym_source_DASHenv] = ACTIONS(405), + [anon_sym_register] = ACTIONS(407), + [anon_sym_hide] = ACTIONS(409), + [anon_sym_hide_DASHenv] = ACTIONS(411), + [anon_sym_overlay] = ACTIONS(413), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [134] = { + [sym__block_body_statement] = STATE(5943), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(134), + [aux_sym_pipeline_repeat1] = STATE(185), [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_pipe_element_repeat2] = STATE(316), [anon_sym_export] = ACTIONS(353), [anon_sym_alias] = ACTIONS(355), [anon_sym_let] = ACTIONS(357), @@ -93373,79 +93569,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [134] = { - [sym__block_body_statement] = STATE(6512), - [sym__declaration] = STATE(6700), - [sym_decl_alias] = STATE(6846), - [sym_stmt_let] = STATE(6853), - [sym_stmt_mut] = STATE(6853), - [sym_stmt_const] = STATE(6853), - [sym_assignment] = STATE(6853), - [sym__mutable_assignment_pattern] = STATE(7122), - [sym__statement] = STATE(6700), - [sym_pipeline] = STATE(6853), - [sym_cmd_identifier] = STATE(4536), - [sym_decl_def] = STATE(6846), - [sym_decl_export] = STATE(6846), - [sym_decl_extern] = STATE(6846), - [sym_decl_module] = STATE(6846), - [sym_decl_use] = STATE(6846), - [sym__ctrl_statement] = STATE(6853), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_for] = STATE(7018), - [sym_ctrl_loop] = STATE(7018), - [sym_ctrl_error] = STATE(7018), - [sym_ctrl_while] = STATE(7018), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_stmt_source] = STATE(6853), - [sym_stmt_register] = STATE(6853), - [sym__stmt_hide] = STATE(6853), - [sym_hide_mod] = STATE(6947), - [sym_hide_env] = STATE(6947), - [sym__stmt_overlay] = STATE(6853), - [sym_overlay_list] = STATE(6951), - [sym_overlay_hide] = STATE(6951), - [sym_overlay_new] = STATE(6951), - [sym_overlay_use] = STATE(6951), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(1490), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(134), - [aux_sym_pipeline_repeat1] = STATE(183), + [135] = { + [sym__block_body_statement] = STATE(6564), + [sym__declaration] = STATE(7120), + [sym_decl_alias] = STATE(6764), + [sym_stmt_let] = STATE(6775), + [sym_stmt_mut] = STATE(6775), + [sym_stmt_const] = STATE(6775), + [sym_assignment] = STATE(6775), + [sym__mutable_assignment_pattern] = STATE(7016), + [sym__statement] = STATE(7120), + [sym_pipeline] = STATE(6775), + [sym_cmd_identifier] = STATE(4423), + [sym_decl_def] = STATE(6764), + [sym_decl_export] = STATE(6764), + [sym_decl_extern] = STATE(6764), + [sym_decl_module] = STATE(6764), + [sym_decl_use] = STATE(6764), + [sym__ctrl_statement] = STATE(6775), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_for] = STATE(6664), + [sym_ctrl_loop] = STATE(6664), + [sym_ctrl_error] = STATE(6664), + [sym_ctrl_while] = STATE(6664), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_stmt_source] = STATE(6775), + [sym_stmt_register] = STATE(6775), + [sym__stmt_hide] = STATE(6775), + [sym_hide_mod] = STATE(6816), + [sym_hide_env] = STATE(6816), + [sym__stmt_overlay] = STATE(6775), + [sym_overlay_list] = STATE(6828), + [sym_overlay_hide] = STATE(6828), + [sym_overlay_new] = STATE(6828), + [sym_overlay_use] = STATE(6828), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(1473), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(135), + [aux_sym_pipeline_repeat1] = STATE(184), [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(301), + [aux_sym_pipe_element_repeat2] = STATE(310), [anon_sym_export] = ACTIONS(9), [anon_sym_alias] = ACTIONS(11), [anon_sym_let] = ACTIONS(13), @@ -93552,85 +93748,85 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [135] = { - [sym__block_body_statement_parenthesized] = STATE(5702), - [sym__declaration_parenthesized] = STATE(7026), - [sym_decl_alias_parenthesized] = STATE(7057), - [sym_stmt_let_parenthesized] = STATE(7110), - [sym_stmt_mut_parenthesized] = STATE(7110), - [sym_stmt_const_parenthesized] = STATE(7110), - [sym_assignment_parenthesized] = STATE(7110), - [sym__mutable_assignment_pattern_parenthesized] = STATE(7119), - [sym__statement_parenthesized] = STATE(7026), - [sym_pipeline_parenthesized] = STATE(7110), - [sym_cmd_identifier] = STATE(4507), - [sym_decl_def] = STATE(7057), - [sym_decl_export] = STATE(7057), - [sym_decl_extern] = STATE(7057), - [sym_decl_module] = STATE(7057), - [sym_decl_use] = STATE(7057), - [sym__ctrl_statement] = STATE(7110), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_for] = STATE(6431), - [sym_ctrl_loop] = STATE(6431), - [sym_ctrl_error] = STATE(6431), - [sym_ctrl_while] = STATE(6431), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_stmt_source] = STATE(7110), - [sym_stmt_register] = STATE(7110), - [sym__stmt_hide] = STATE(7110), - [sym_hide_mod] = STATE(6439), - [sym_hide_env] = STATE(6439), - [sym__stmt_overlay] = STATE(7110), - [sym_overlay_list] = STATE(6445), - [sym_overlay_hide] = STATE(6445), - [sym_overlay_new] = STATE(6445), - [sym_overlay_use] = STATE(6445), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1544), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(135), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), - [aux_sym__parenthesized_body_repeat2] = STATE(132), - [anon_sym_export] = ACTIONS(429), - [anon_sym_alias] = ACTIONS(431), - [anon_sym_let] = ACTIONS(433), - [anon_sym_let_DASHenv] = ACTIONS(433), - [anon_sym_mut] = ACTIONS(435), - [anon_sym_const] = ACTIONS(437), + [136] = { + [sym__block_body_statement] = STATE(5826), + [sym__declaration] = STATE(6202), + [sym_decl_alias] = STATE(6203), + [sym_stmt_let] = STATE(6204), + [sym_stmt_mut] = STATE(6204), + [sym_stmt_const] = STATE(6204), + [sym_assignment] = STATE(6204), + [sym__mutable_assignment_pattern] = STATE(6205), + [sym__statement] = STATE(6202), + [sym_pipeline] = STATE(6204), + [sym_cmd_identifier] = STATE(4315), + [sym_decl_def] = STATE(6203), + [sym_decl_export] = STATE(6203), + [sym_decl_extern] = STATE(6203), + [sym_decl_module] = STATE(6203), + [sym_decl_use] = STATE(6203), + [sym__ctrl_statement] = STATE(6204), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_for] = STATE(6206), + [sym_ctrl_loop] = STATE(6206), + [sym_ctrl_error] = STATE(6206), + [sym_ctrl_while] = STATE(6206), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_stmt_source] = STATE(6204), + [sym_stmt_register] = STATE(6204), + [sym__stmt_hide] = STATE(6204), + [sym_hide_mod] = STATE(6212), + [sym_hide_env] = STATE(6212), + [sym__stmt_overlay] = STATE(6204), + [sym_overlay_list] = STATE(6213), + [sym_overlay_hide] = STATE(6213), + [sym_overlay_new] = STATE(6213), + [sym_overlay_use] = STATE(6213), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1495), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(136), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym__block_body_repeat2] = STATE(128), + [aux_sym_pipe_element_repeat2] = STATE(316), + [anon_sym_export] = ACTIONS(353), + [anon_sym_alias] = ACTIONS(355), + [anon_sym_let] = ACTIONS(357), + [anon_sym_let_DASHenv] = ACTIONS(357), + [anon_sym_mut] = ACTIONS(359), + [anon_sym_const] = ACTIONS(361), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -93681,35 +93877,35 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR] = ACTIONS(275), [anon_sym_error] = ACTIONS(379), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), [anon_sym_for] = ACTIONS(387), [anon_sym_loop] = ACTIONS(389), [anon_sym_while] = ACTIONS(391), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(451), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(403), [anon_sym_source] = ACTIONS(405), [anon_sym_source_DASHenv] = ACTIONS(405), [anon_sym_register] = ACTIONS(407), [anon_sym_hide] = ACTIONS(409), [anon_sym_hide_DASHenv] = ACTIONS(411), [anon_sym_overlay] = ACTIONS(413), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -93726,193 +93922,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [136] = { - [sym__block_body_statement] = STATE(6455), - [sym__declaration] = STATE(6700), - [sym_decl_alias] = STATE(6846), - [sym_stmt_let] = STATE(6853), - [sym_stmt_mut] = STATE(6853), - [sym_stmt_const] = STATE(6853), - [sym_assignment] = STATE(6853), - [sym__mutable_assignment_pattern] = STATE(7122), - [sym__statement] = STATE(6700), - [sym_pipeline] = STATE(6853), - [sym_cmd_identifier] = STATE(4536), - [sym_decl_def] = STATE(6846), - [sym_decl_export] = STATE(6846), - [sym_decl_extern] = STATE(6846), - [sym_decl_module] = STATE(6846), - [sym_decl_use] = STATE(6846), - [sym__ctrl_statement] = STATE(6853), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_for] = STATE(7018), - [sym_ctrl_loop] = STATE(7018), - [sym_ctrl_error] = STATE(7018), - [sym_ctrl_while] = STATE(7018), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_stmt_source] = STATE(6853), - [sym_stmt_register] = STATE(6853), - [sym__stmt_hide] = STATE(6853), - [sym_hide_mod] = STATE(6947), - [sym_hide_env] = STATE(6947), - [sym__stmt_overlay] = STATE(6853), - [sym_overlay_list] = STATE(6951), - [sym_overlay_hide] = STATE(6951), - [sym_overlay_new] = STATE(6951), - [sym_overlay_use] = STATE(6951), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(1490), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(136), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym__block_body_repeat2] = STATE(128), - [aux_sym_pipe_element_repeat2] = STATE(301), - [anon_sym_export] = ACTIONS(9), - [anon_sym_alias] = ACTIONS(11), - [anon_sym_let] = ACTIONS(13), - [anon_sym_let_DASHenv] = ACTIONS(13), - [anon_sym_mut] = ACTIONS(15), - [anon_sym_const] = ACTIONS(17), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(19), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(19), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(19), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_def] = ACTIONS(27), - [anon_sym_export_DASHenv] = ACTIONS(29), - [anon_sym_extern] = ACTIONS(31), - [anon_sym_module] = ACTIONS(33), - [anon_sym_use] = ACTIONS(35), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(41), - [anon_sym_error] = ACTIONS(43), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_for] = ACTIONS(51), - [anon_sym_loop] = ACTIONS(53), - [anon_sym_while] = ACTIONS(55), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_source] = ACTIONS(71), - [anon_sym_source_DASHenv] = ACTIONS(71), - [anon_sym_register] = ACTIONS(73), - [anon_sym_hide] = ACTIONS(75), - [anon_sym_hide_DASHenv] = ACTIONS(77), - [anon_sym_overlay] = ACTIONS(79), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, [137] = { [sym_cell_path] = STATE(150), - [sym_path] = STATE(148), + [sym_path] = STATE(147), [sym_comment] = STATE(137), [aux_sym_cell_path_repeat1] = STATE(139), [anon_sym_export] = ACTIONS(935), @@ -94077,7 +94094,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(937), }, [138] = { - [sym_path] = STATE(148), + [sym_path] = STATE(147), [sym_comment] = STATE(138), [aux_sym_cell_path_repeat1] = STATE(138), [anon_sym_export] = ACTIONS(941), @@ -94242,7 +94259,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(943), }, [139] = { - [sym_path] = STATE(148), + [sym_path] = STATE(147), [sym_comment] = STATE(139), [aux_sym_cell_path_repeat1] = STATE(138), [anon_sym_export] = ACTIONS(948), @@ -96204,176 +96221,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1020), }, [151] = { - [sym_pipeline] = STATE(6529), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym_pipeline] = STATE(7091), + [sym_cmd_identifier] = STATE(4423), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), [sym_comment] = STATE(151), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(315), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(451), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [152] = { - [sym_pipeline] = STATE(7045), - [sym_cmd_identifier] = STATE(4536), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(152), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(301), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(310), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -96416,7 +96305,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -96459,305 +96348,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [153] = { - [sym_pipeline_parenthesized] = STATE(6944), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(153), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(453), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [154] = { - [sym_pipeline_parenthesized] = STATE(7002), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(154), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(453), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [155] = { - [sym_pipeline] = STATE(6752), - [sym_cmd_identifier] = STATE(4536), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(155), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(301), + [152] = { + [sym_pipeline] = STATE(6846), + [sym_cmd_identifier] = STATE(4423), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(152), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(310), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -96800,7 +96433,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -96843,177 +96476,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [156] = { - [sym_pipeline_parenthesized] = STATE(7022), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(156), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(453), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [157] = { - [sym_pipeline] = STATE(6830), - [sym_cmd_identifier] = STATE(4536), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(157), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(301), + [153] = { + [sym_pipeline] = STATE(6659), + [sym_cmd_identifier] = STATE(4423), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(153), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(310), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -97056,7 +96561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -97099,49 +96604,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [158] = { - [sym_pipeline_parenthesized] = STATE(6943), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(158), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), + [154] = { + [sym_pipeline_parenthesized] = STATE(6808), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(154), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97184,7 +96689,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(441), [anon_sym_continue] = ACTIONS(443), @@ -97227,49 +96732,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [159] = { - [sym_pipeline_parenthesized] = STATE(6944), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(159), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), + [155] = { + [sym_pipeline_parenthesized] = STATE(6811), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(155), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97312,7 +96817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(441), [anon_sym_continue] = ACTIONS(443), @@ -97355,49 +96860,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [160] = { - [sym_pipeline_parenthesized] = STATE(7002), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(160), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), + [156] = { + [sym_pipeline_parenthesized] = STATE(6691), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(156), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97440,7 +96945,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(441), [anon_sym_continue] = ACTIONS(443), @@ -97483,49 +96988,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [161] = { - [sym_pipeline_parenthesized] = STATE(7022), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(161), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), + [157] = { + [sym_pipeline_parenthesized] = STATE(6827), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(157), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97568,7 +97073,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(441), [anon_sym_continue] = ACTIONS(443), @@ -97611,49 +97116,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [162] = { - [sym_pipeline] = STATE(6275), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(162), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(313), + [158] = { + [sym_pipeline_parenthesized] = STATE(6691), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(158), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97696,18 +97201,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1026), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), + [anon_sym_try] = ACTIONS(449), [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -97734,54 +97239,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [163] = { - [sym_pipeline] = STATE(6587), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(163), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(313), + [159] = { + [sym_pipeline_parenthesized] = STATE(6827), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(159), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97824,18 +97329,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(1038), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1026), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), + [anon_sym_try] = ACTIONS(449), [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(203), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -97862,54 +97367,310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [164] = { - [sym_pipeline] = STATE(6590), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(164), + [160] = { + [sym_pipeline] = STATE(7039), + [sym_cmd_identifier] = STATE(4423), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(160), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(310), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [161] = { + [sym_pipeline] = STATE(7036), + [sym_cmd_identifier] = STATE(4423), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4459), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(161), + [aux_sym_pipeline_repeat1] = STATE(184), + [aux_sym_pipe_element_repeat2] = STATE(310), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_break] = ACTIONS(47), + [anon_sym_continue] = ACTIONS(49), + [anon_sym_do] = ACTIONS(57), + [anon_sym_if] = ACTIONS(59), + [anon_sym_match] = ACTIONS(61), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [anon_sym_try] = ACTIONS(67), + [anon_sym_return] = ACTIONS(69), + [anon_sym_where] = ACTIONS(81), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [162] = { + [sym_pipeline] = STATE(6094), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(162), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -97952,17 +97713,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -97970,10 +97731,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -97995,49 +97756,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [165] = { - [sym_pipeline] = STATE(6275), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(165), + [163] = { + [sym_pipeline] = STATE(6094), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(163), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(315), + [aux_sym_pipe_element_repeat2] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98080,12 +97841,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -98123,49 +97884,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [166] = { - [sym_pipeline] = STATE(6529), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(166), + [164] = { + [sym_pipeline] = STATE(6116), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(164), [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98208,17 +97969,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(1028), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98226,10 +97987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -98251,49 +98012,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [167] = { - [sym_pipeline] = STATE(6275), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(167), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(312), + [165] = { + [sym_pipeline] = STATE(6117), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(165), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98336,7 +98097,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), @@ -98379,49 +98140,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [168] = { - [sym_pipeline] = STATE(6587), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(168), - [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(315), + [166] = { + [sym_pipeline] = STATE(6123), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(166), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98464,17 +98225,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(395), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(451), + [anon_sym_return] = ACTIONS(403), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98482,10 +98243,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -98507,49 +98268,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [169] = { - [sym_pipeline] = STATE(6587), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(169), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(312), + [167] = { + [sym_pipeline] = STATE(6140), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(167), + [aux_sym_pipeline_repeat1] = STATE(185), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98592,7 +98353,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), @@ -98635,49 +98396,177 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [170] = { - [sym_pipeline] = STATE(6590), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(170), + [168] = { + [sym_pipeline_parenthesized] = STATE(6959), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(168), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [169] = { + [sym_pipeline] = STATE(6116), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(169), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(315), + [aux_sym_pipe_element_repeat2] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98720,12 +98609,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -98763,49 +98652,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [171] = { - [sym_pipeline] = STATE(6590), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(171), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(312), + [170] = { + [sym_pipeline] = STATE(6117), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(170), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98848,17 +98737,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_return] = ACTIONS(451), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -98866,10 +98755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -98891,49 +98780,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [172] = { - [sym_pipeline] = STATE(6404), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(172), + [171] = { + [sym_pipeline] = STATE(6123), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(171), [aux_sym_pipeline_repeat1] = STATE(186), - [aux_sym_pipe_element_repeat2] = STATE(315), + [aux_sym_pipe_element_repeat2] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -98976,12 +98865,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -99019,177 +98908,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [173] = { - [sym_pipeline] = STATE(6736), - [sym_cmd_identifier] = STATE(4536), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), - [sym_comment] = STATE(173), - [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(301), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [174] = { - [sym_pipeline_parenthesized] = STATE(6864), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(174), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), + [172] = { + [sym_pipeline] = STATE(6140), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(172), + [aux_sym_pipeline_repeat1] = STATE(186), + [aux_sym_pipe_element_repeat2] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -99232,18 +98993,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(447), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), + [anon_sym_try] = ACTIONS(401), [anon_sym_return] = ACTIONS(451), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -99270,54 +99031,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [175] = { - [sym_pipeline] = STATE(6404), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(175), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(312), + [173] = { + [sym_pipeline_parenthesized] = STATE(6959), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(173), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(181), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -99360,28 +99121,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(447), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), - [anon_sym_where] = ACTIONS(203), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(451), + [anon_sym_where] = ACTIONS(453), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -99398,54 +99159,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [176] = { - [sym_pipeline_parenthesized] = STATE(6864), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(176), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), + [174] = { + [sym_pipeline_parenthesized] = STATE(6808), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(174), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -99488,7 +99249,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(441), [anon_sym_continue] = ACTIONS(443), @@ -99531,177 +99292,433 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [175] = { + [sym_pipeline_parenthesized] = STATE(6811), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4457), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(175), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(182), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [176] = { + [sym_pipeline] = STATE(6094), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(176), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, [177] = { - [sym_pipeline] = STATE(7042), - [sym_cmd_identifier] = STATE(4536), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4438), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), + [sym_pipeline] = STATE(6116), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(177), [aux_sym_pipeline_repeat1] = STATE(183), - [aux_sym_pipe_element_repeat2] = STATE(301), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_break] = ACTIONS(47), - [anon_sym_continue] = ACTIONS(49), - [anon_sym_do] = ACTIONS(57), - [anon_sym_if] = ACTIONS(59), - [anon_sym_match] = ACTIONS(61), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(67), - [anon_sym_return] = ACTIONS(69), - [anon_sym_where] = ACTIONS(81), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, [178] = { - [sym_pipeline_parenthesized] = STATE(6943), - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4413), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym_pipeline] = STATE(6117), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(178), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(188), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -99744,18 +99761,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1038), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), + [anon_sym_try] = ACTIONS(401), [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(453), + [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), @@ -99782,54 +99799,54 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [179] = { - [sym_pipeline] = STATE(6529), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), + [sym_pipeline] = STATE(6123), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(179), - [aux_sym_pipeline_repeat1] = STATE(184), - [aux_sym_pipe_element_repeat2] = STATE(312), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -99872,17 +99889,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(395), + [anon_sym_if] = ACTIONS(1038), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(403), + [anon_sym_return] = ACTIONS(1028), [anon_sym_where] = ACTIONS(203), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -99890,10 +99907,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -99916,48 +99933,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [180] = { - [sym_pipeline] = STATE(6404), - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4341), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym_pipeline] = STATE(6140), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4287), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(180), - [aux_sym_pipeline_repeat1] = STATE(185), - [aux_sym_pipe_element_repeat2] = STATE(313), + [aux_sym_pipeline_repeat1] = STATE(183), + [aux_sym_pipe_element_repeat2] = STATE(323), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -100000,7 +100017,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), @@ -100044,174 +100061,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [181] = { - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4929), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(858), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4465), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(181), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(308), - [aux_sym_cmd_identifier_token1] = ACTIONS(1040), - [aux_sym_cmd_identifier_token2] = ACTIONS(1043), - [aux_sym_cmd_identifier_token3] = ACTIONS(1043), - [aux_sym_cmd_identifier_token4] = ACTIONS(1043), - [aux_sym_cmd_identifier_token5] = ACTIONS(1043), - [aux_sym_cmd_identifier_token6] = ACTIONS(1043), - [aux_sym_cmd_identifier_token7] = ACTIONS(1043), - [aux_sym_cmd_identifier_token8] = ACTIONS(1043), - [aux_sym_cmd_identifier_token9] = ACTIONS(1040), - [aux_sym_cmd_identifier_token10] = ACTIONS(1043), - [aux_sym_cmd_identifier_token11] = ACTIONS(1043), - [aux_sym_cmd_identifier_token12] = ACTIONS(1043), - [aux_sym_cmd_identifier_token13] = ACTIONS(1040), - [aux_sym_cmd_identifier_token14] = ACTIONS(1043), - [aux_sym_cmd_identifier_token15] = ACTIONS(1040), - [aux_sym_cmd_identifier_token16] = ACTIONS(1043), - [aux_sym_cmd_identifier_token17] = ACTIONS(1043), - [aux_sym_cmd_identifier_token18] = ACTIONS(1040), - [aux_sym_cmd_identifier_token19] = ACTIONS(1043), - [aux_sym_cmd_identifier_token20] = ACTIONS(1043), - [aux_sym_cmd_identifier_token21] = ACTIONS(1043), - [aux_sym_cmd_identifier_token22] = ACTIONS(1043), - [aux_sym_cmd_identifier_token23] = ACTIONS(1043), - [aux_sym_cmd_identifier_token24] = ACTIONS(1043), - [aux_sym_cmd_identifier_token25] = ACTIONS(1043), - [aux_sym_cmd_identifier_token26] = ACTIONS(1043), - [aux_sym_cmd_identifier_token27] = ACTIONS(1043), - [aux_sym_cmd_identifier_token28] = ACTIONS(1043), - [aux_sym_cmd_identifier_token29] = ACTIONS(1043), - [aux_sym_cmd_identifier_token30] = ACTIONS(1043), - [aux_sym_cmd_identifier_token31] = ACTIONS(1043), - [aux_sym_cmd_identifier_token32] = ACTIONS(1040), - [aux_sym_cmd_identifier_token33] = ACTIONS(1043), - [aux_sym_cmd_identifier_token34] = ACTIONS(1040), - [aux_sym_cmd_identifier_token35] = ACTIONS(1043), - [aux_sym_cmd_identifier_token36] = ACTIONS(1043), - [aux_sym_cmd_identifier_token37] = ACTIONS(1043), - [aux_sym_cmd_identifier_token38] = ACTIONS(1040), - [aux_sym_cmd_identifier_token39] = ACTIONS(1043), - [aux_sym_cmd_identifier_token40] = ACTIONS(1043), - [anon_sym_LBRACK] = ACTIONS(1046), - [anon_sym_LPAREN] = ACTIONS(1049), - [anon_sym_DOLLAR] = ACTIONS(1052), - [anon_sym_DASH2] = ACTIONS(1055), - [anon_sym_break] = ACTIONS(1058), - [anon_sym_continue] = ACTIONS(1061), - [anon_sym_do] = ACTIONS(1064), - [anon_sym_if] = ACTIONS(1067), - [anon_sym_match] = ACTIONS(1070), - [anon_sym_LBRACE] = ACTIONS(1073), - [anon_sym_DOT_DOT] = ACTIONS(1076), - [anon_sym_try] = ACTIONS(1079), - [anon_sym_return] = ACTIONS(1082), - [anon_sym_where] = ACTIONS(1085), - [aux_sym_expr_unary_token1] = ACTIONS(1088), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1091), - [anon_sym_DOT_DOT_LT] = ACTIONS(1091), - [anon_sym_null] = ACTIONS(1094), - [anon_sym_true] = ACTIONS(1097), - [anon_sym_false] = ACTIONS(1097), - [aux_sym__val_number_decimal_token1] = ACTIONS(1100), - [aux_sym__val_number_decimal_token2] = ACTIONS(1103), - [aux_sym__val_number_decimal_token3] = ACTIONS(1106), - [aux_sym__val_number_decimal_token4] = ACTIONS(1109), - [aux_sym__val_number_token1] = ACTIONS(1112), - [aux_sym__val_number_token2] = ACTIONS(1112), - [aux_sym__val_number_token3] = ACTIONS(1112), - [aux_sym__val_number_token4] = ACTIONS(1115), - [aux_sym__val_number_token5] = ACTIONS(1115), - [aux_sym__val_number_token6] = ACTIONS(1115), - [anon_sym_0b] = ACTIONS(1118), - [anon_sym_0o] = ACTIONS(1121), - [anon_sym_0x] = ACTIONS(1121), - [sym_val_date] = ACTIONS(1124), - [anon_sym_DQUOTE] = ACTIONS(1127), - [sym__str_single_quotes] = ACTIONS(1130), - [sym__str_back_ticks] = ACTIONS(1130), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1133), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1136), - [aux_sym_env_var_token1] = ACTIONS(1139), - [anon_sym_CARET] = ACTIONS(1142), - [aux_sym_command_token1] = ACTIONS(1145), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1148), - }, - [182] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4422), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(182), [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(310), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(313), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -100254,7 +100144,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(441), [anon_sym_continue] = ACTIONS(443), @@ -100297,48 +100187,302 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [182] = { + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4465), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), + [sym_comment] = STATE(182), + [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(320), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(441), + [anon_sym_continue] = ACTIONS(443), + [anon_sym_do] = ACTIONS(445), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(449), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(453), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, [183] = { - [sym_cmd_identifier] = STATE(4536), - [sym__ctrl_expression] = STATE(4804), - [sym_ctrl_do] = STATE(4892), - [sym_ctrl_if] = STATE(4892), - [sym_ctrl_match] = STATE(4892), - [sym_ctrl_try] = STATE(4892), - [sym_ctrl_return] = STATE(4892), - [sym_pipe_element] = STATE(4414), - [sym_where_command] = STATE(4975), - [sym__expression] = STATE(3733), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4975), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4312), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(183), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(301), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(323), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_break] = ACTIONS(383), + [anon_sym_continue] = ACTIONS(385), + [anon_sym_do] = ACTIONS(393), + [anon_sym_if] = ACTIONS(1038), + [anon_sym_match] = ACTIONS(397), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(401), + [anon_sym_return] = ACTIONS(1028), + [anon_sym_where] = ACTIONS(203), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [184] = { + [sym_cmd_identifier] = STATE(4423), + [sym__ctrl_expression] = STATE(4791), + [sym_ctrl_do] = STATE(4879), + [sym_ctrl_if] = STATE(4879), + [sym_ctrl_match] = STATE(4879), + [sym_ctrl_try] = STATE(4879), + [sym_ctrl_return] = STATE(4879), + [sym_pipe_element] = STATE(4401), + [sym_where_command] = STATE(4883), + [sym__expression] = STATE(3703), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4883), + [sym_comment] = STATE(184), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(310), [aux_sym_cmd_identifier_token1] = ACTIONS(19), [aux_sym_cmd_identifier_token2] = ACTIONS(21), [aux_sym_cmd_identifier_token3] = ACTIONS(21), @@ -100381,7 +100525,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(21), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_break] = ACTIONS(47), [anon_sym_continue] = ACTIONS(49), @@ -100424,48 +100568,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [184] = { - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4322), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(184), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(312), + [185] = { + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4312), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(185), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(316), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -100508,7 +100652,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), @@ -100551,175 +100695,48 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [185] = { - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4322), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), - [sym_comment] = STATE(185), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(313), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(383), - [anon_sym_continue] = ACTIONS(385), - [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(1038), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(401), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(203), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, [186] = { - [sym_cmd_identifier] = STATE(4329), - [sym__ctrl_expression] = STATE(4698), - [sym_ctrl_do] = STATE(4685), - [sym_ctrl_if] = STATE(4685), - [sym_ctrl_match] = STATE(4685), - [sym_ctrl_try] = STATE(4685), - [sym_ctrl_return] = STATE(4685), - [sym_pipe_element] = STATE(4322), - [sym_where_command] = STATE(4556), - [sym__expression] = STATE(3712), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4556), + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4312), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), [sym_comment] = STATE(186), - [aux_sym_pipeline_repeat1] = STATE(181), - [aux_sym_pipe_element_repeat2] = STATE(315), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(317), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -100762,12 +100779,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_break] = ACTIONS(383), [anon_sym_continue] = ACTIONS(385), [anon_sym_do] = ACTIONS(393), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(593), [anon_sym_match] = ACTIONS(397), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), @@ -100806,47 +100823,174 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [187] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4819), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(858), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), + [sym_cmd_identifier] = STATE(4446), + [sym__ctrl_expression_parenthesized] = STATE(4892), + [sym_ctrl_do_parenthesized] = STATE(4893), + [sym_ctrl_if_parenthesized] = STATE(4893), + [sym_ctrl_match] = STATE(4893), + [sym_ctrl_try_parenthesized] = STATE(4893), + [sym_ctrl_return] = STATE(4893), + [sym_pipe_element_parenthesized] = STATE(4806), + [sym_where_command_parenthesized] = STATE(4894), + [sym__expression_parenthesized] = STATE(3706), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4910), [sym_comment] = STATE(187), [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(303), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(309), + [aux_sym_cmd_identifier_token1] = ACTIONS(1040), + [aux_sym_cmd_identifier_token2] = ACTIONS(1043), + [aux_sym_cmd_identifier_token3] = ACTIONS(1043), + [aux_sym_cmd_identifier_token4] = ACTIONS(1043), + [aux_sym_cmd_identifier_token5] = ACTIONS(1043), + [aux_sym_cmd_identifier_token6] = ACTIONS(1043), + [aux_sym_cmd_identifier_token7] = ACTIONS(1043), + [aux_sym_cmd_identifier_token8] = ACTIONS(1043), + [aux_sym_cmd_identifier_token9] = ACTIONS(1040), + [aux_sym_cmd_identifier_token10] = ACTIONS(1043), + [aux_sym_cmd_identifier_token11] = ACTIONS(1043), + [aux_sym_cmd_identifier_token12] = ACTIONS(1043), + [aux_sym_cmd_identifier_token13] = ACTIONS(1040), + [aux_sym_cmd_identifier_token14] = ACTIONS(1043), + [aux_sym_cmd_identifier_token15] = ACTIONS(1040), + [aux_sym_cmd_identifier_token16] = ACTIONS(1043), + [aux_sym_cmd_identifier_token17] = ACTIONS(1043), + [aux_sym_cmd_identifier_token18] = ACTIONS(1040), + [aux_sym_cmd_identifier_token19] = ACTIONS(1043), + [aux_sym_cmd_identifier_token20] = ACTIONS(1043), + [aux_sym_cmd_identifier_token21] = ACTIONS(1043), + [aux_sym_cmd_identifier_token22] = ACTIONS(1043), + [aux_sym_cmd_identifier_token23] = ACTIONS(1043), + [aux_sym_cmd_identifier_token24] = ACTIONS(1043), + [aux_sym_cmd_identifier_token25] = ACTIONS(1043), + [aux_sym_cmd_identifier_token26] = ACTIONS(1043), + [aux_sym_cmd_identifier_token27] = ACTIONS(1043), + [aux_sym_cmd_identifier_token28] = ACTIONS(1043), + [aux_sym_cmd_identifier_token29] = ACTIONS(1043), + [aux_sym_cmd_identifier_token30] = ACTIONS(1043), + [aux_sym_cmd_identifier_token31] = ACTIONS(1043), + [aux_sym_cmd_identifier_token32] = ACTIONS(1040), + [aux_sym_cmd_identifier_token33] = ACTIONS(1043), + [aux_sym_cmd_identifier_token34] = ACTIONS(1040), + [aux_sym_cmd_identifier_token35] = ACTIONS(1043), + [aux_sym_cmd_identifier_token36] = ACTIONS(1043), + [aux_sym_cmd_identifier_token37] = ACTIONS(1043), + [aux_sym_cmd_identifier_token38] = ACTIONS(1040), + [aux_sym_cmd_identifier_token39] = ACTIONS(1043), + [aux_sym_cmd_identifier_token40] = ACTIONS(1043), + [anon_sym_LBRACK] = ACTIONS(1046), + [anon_sym_LPAREN] = ACTIONS(1049), + [anon_sym_DOLLAR] = ACTIONS(1052), + [anon_sym_DASH2] = ACTIONS(1055), + [anon_sym_break] = ACTIONS(1058), + [anon_sym_continue] = ACTIONS(1061), + [anon_sym_do] = ACTIONS(1064), + [anon_sym_if] = ACTIONS(1067), + [anon_sym_match] = ACTIONS(1070), + [anon_sym_LBRACE] = ACTIONS(1073), + [anon_sym_DOT_DOT] = ACTIONS(1076), + [anon_sym_try] = ACTIONS(1079), + [anon_sym_return] = ACTIONS(1082), + [anon_sym_where] = ACTIONS(1085), + [aux_sym_expr_unary_token1] = ACTIONS(1088), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1091), + [anon_sym_DOT_DOT_LT] = ACTIONS(1091), + [anon_sym_null] = ACTIONS(1094), + [anon_sym_true] = ACTIONS(1097), + [anon_sym_false] = ACTIONS(1097), + [aux_sym__val_number_decimal_token1] = ACTIONS(1100), + [aux_sym__val_number_decimal_token2] = ACTIONS(1103), + [aux_sym__val_number_decimal_token3] = ACTIONS(1106), + [aux_sym__val_number_decimal_token4] = ACTIONS(1109), + [aux_sym__val_number_token1] = ACTIONS(1112), + [aux_sym__val_number_token2] = ACTIONS(1112), + [aux_sym__val_number_token3] = ACTIONS(1112), + [aux_sym__val_number_token4] = ACTIONS(1115), + [aux_sym__val_number_token5] = ACTIONS(1115), + [aux_sym__val_number_token6] = ACTIONS(1115), + [anon_sym_0b] = ACTIONS(1118), + [anon_sym_0o] = ACTIONS(1121), + [anon_sym_0x] = ACTIONS(1121), + [sym_val_date] = ACTIONS(1124), + [anon_sym_DQUOTE] = ACTIONS(1127), + [sym__str_single_quotes] = ACTIONS(1130), + [sym__str_back_ticks] = ACTIONS(1130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1133), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1136), + [aux_sym_env_var_token1] = ACTIONS(1139), + [anon_sym_CARET] = ACTIONS(1142), + [aux_sym_command_token1] = ACTIONS(1145), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1148), + }, + [188] = { + [sym_cmd_identifier] = STATE(4315), + [sym__ctrl_expression] = STATE(4573), + [sym_ctrl_do] = STATE(4576), + [sym_ctrl_if] = STATE(4576), + [sym_ctrl_match] = STATE(4576), + [sym_ctrl_try] = STATE(4576), + [sym_ctrl_return] = STATE(4576), + [sym_pipe_element] = STATE(4917), + [sym_where_command] = STATE(4602), + [sym__expression] = STATE(3687), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4602), + [sym_comment] = STATE(188), + [aux_sym_pipeline_repeat1] = STATE(188), + [aux_sym_pipe_element_repeat2] = STATE(321), [aux_sym_cmd_identifier_token1] = ACTIONS(1151), [aux_sym_cmd_identifier_token2] = ACTIONS(1154), [aux_sym_cmd_identifier_token3] = ACTIONS(1154), @@ -100932,133 +101076,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1259), }, - [188] = { - [sym_cmd_identifier] = STATE(4507), - [sym__ctrl_expression_parenthesized] = STATE(4905), - [sym_ctrl_do_parenthesized] = STATE(4906), - [sym_ctrl_if_parenthesized] = STATE(4906), - [sym_ctrl_match] = STATE(4906), - [sym_ctrl_try_parenthesized] = STATE(4906), - [sym_ctrl_return] = STATE(4906), - [sym_pipe_element_parenthesized] = STATE(4422), - [sym_where_command_parenthesized] = STATE(4907), - [sym__expression_parenthesized] = STATE(3738), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4919), - [sym_comment] = STATE(188), - [aux_sym_pipeline_parenthesized_repeat1] = STATE(187), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(300), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_break] = ACTIONS(441), - [anon_sym_continue] = ACTIONS(443), - [anon_sym_do] = ACTIONS(445), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_match] = ACTIONS(397), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(449), - [anon_sym_return] = ACTIONS(1028), - [anon_sym_where] = ACTIONS(453), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, [189] = { [sym_comment] = STATE(189), [anon_sym_export] = ACTIONS(1262), @@ -101422,23 +101439,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(1268), }, [192] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7516), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7362), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(192), - [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_shebang_repeat1] = STATE(197), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), @@ -101507,7 +101524,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(297), + [anon_sym_RBRACE] = ACTIONS(1287), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -101521,41 +101538,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, [193] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7413), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7651), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(193), - [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_shebang_repeat1] = STATE(197), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), @@ -101624,7 +101641,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1301), + [anon_sym_RBRACE] = ACTIONS(1303), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -101638,41 +101655,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, [194] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7654), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7660), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(194), - [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_shebang_repeat1] = STATE(197), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), @@ -101741,7 +101758,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(1303), + [anon_sym_RBRACE] = ACTIONS(351), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -101755,41 +101772,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, [195] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7576), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7713), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(195), - [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_shebang_repeat1] = STATE(197), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), @@ -101872,41 +101889,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, [196] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_body] = STATE(7469), - [sym_record_entry] = STATE(6726), - [sym__record_key] = STATE(7577), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_body] = STATE(7598), + [sym_record_entry] = STATE(6949), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(196), - [aux_sym_shebang_repeat1] = STATE(199), + [aux_sym_shebang_repeat1] = STATE(197), [aux_sym_record_body_repeat1] = STATE(203), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), @@ -101975,7 +101992,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(285), [anon_sym_else] = ACTIONS(285), [anon_sym_match] = ACTIONS(285), - [anon_sym_RBRACE] = ACTIONS(331), + [anon_sym_RBRACE] = ACTIONS(327), [anon_sym_try] = ACTIONS(285), [anon_sym_catch] = ACTIONS(285), [anon_sym_return] = ACTIONS(285), @@ -101989,47 +102006,47 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, [197] = { - [sym_cmd_identifier] = STATE(6447), - [sym__match_pattern_record_variable] = STATE(723), - [sym_expr_parenthesized] = STATE(7382), - [sym__spread_parenthesized] = STATE(735), - [sym__spread_variable] = STATE(736), - [sym_val_variable] = STATE(559), - [sym_val_number] = STATE(7382), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7382), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(735), - [sym_record_entry] = STATE(723), - [sym__record_key] = STATE(7658), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6643), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(197), - [aux_sym__match_pattern_record_repeat1] = STATE(202), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_alias] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_let_DASHenv] = ACTIONS(1307), - [anon_sym_mut] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), + [aux_sym_shebang_repeat1] = STATE(724), + [aux_sym_record_body_repeat1] = STATE(204), + [anon_sym_export] = ACTIONS(285), + [anon_sym_alias] = ACTIONS(285), + [anon_sym_let] = ACTIONS(285), + [anon_sym_let_DASHenv] = ACTIONS(285), + [anon_sym_mut] = ACTIONS(285), + [anon_sym_const] = ACTIONS(285), [aux_sym_cmd_identifier_token1] = ACTIONS(135), [aux_sym_cmd_identifier_token2] = ACTIONS(137), [aux_sym_cmd_identifier_token3] = ACTIONS(137), @@ -102070,15 +102087,129 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(135), [aux_sym_cmd_identifier_token39] = ACTIONS(137), [aux_sym_cmd_identifier_token40] = ACTIONS(137), + [sym__newline] = ACTIONS(1281), + [anon_sym_def] = ACTIONS(285), + [anon_sym_export_DASHenv] = ACTIONS(285), + [anon_sym_extern] = ACTIONS(285), + [anon_sym_module] = ACTIONS(285), + [anon_sym_use] = ACTIONS(285), + [anon_sym_LPAREN] = ACTIONS(1283), + [anon_sym_DOLLAR] = ACTIONS(1285), + [anon_sym_error] = ACTIONS(285), + [anon_sym_DASH2] = ACTIONS(207), + [anon_sym_break] = ACTIONS(285), + [anon_sym_continue] = ACTIONS(285), + [anon_sym_for] = ACTIONS(285), + [anon_sym_in2] = ACTIONS(285), + [anon_sym_loop] = ACTIONS(285), + [anon_sym_make] = ACTIONS(285), + [anon_sym_while] = ACTIONS(285), + [anon_sym_do] = ACTIONS(285), + [anon_sym_if] = ACTIONS(285), + [anon_sym_else] = ACTIONS(285), + [anon_sym_match] = ACTIONS(285), + [anon_sym_try] = ACTIONS(285), + [anon_sym_catch] = ACTIONS(285), + [anon_sym_return] = ACTIONS(285), + [anon_sym_source] = ACTIONS(285), + [anon_sym_source_DASHenv] = ACTIONS(285), + [anon_sym_register] = ACTIONS(285), + [anon_sym_hide] = ACTIONS(285), + [anon_sym_hide_DASHenv] = ACTIONS(285), + [anon_sym_overlay] = ACTIONS(285), + [anon_sym_as] = ACTIONS(285), + [anon_sym_PLUS2] = ACTIONS(207), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [198] = { + [sym_cmd_identifier] = STATE(6184), + [sym_expr_parenthesized] = STATE(7364), + [sym__spread_parenthesized] = STATE(675), + [sym__spread_variable] = STATE(676), + [sym_val_variable] = STATE(661), + [sym_val_number] = STATE(7364), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7364), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(675), + [sym_record_entry] = STATE(723), + [sym__record_key] = STATE(7628), + [sym_comment] = STATE(198), + [aux_sym__match_pattern_record_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1307), + [anon_sym_alias] = ACTIONS(1307), + [anon_sym_let] = ACTIONS(1307), + [anon_sym_let_DASHenv] = ACTIONS(1307), + [anon_sym_mut] = ACTIONS(1307), + [anon_sym_const] = ACTIONS(1307), + [aux_sym_cmd_identifier_token1] = ACTIONS(1310), + [aux_sym_cmd_identifier_token2] = ACTIONS(1313), + [aux_sym_cmd_identifier_token3] = ACTIONS(1313), + [aux_sym_cmd_identifier_token4] = ACTIONS(1313), + [aux_sym_cmd_identifier_token5] = ACTIONS(1313), + [aux_sym_cmd_identifier_token6] = ACTIONS(1313), + [aux_sym_cmd_identifier_token7] = ACTIONS(1313), + [aux_sym_cmd_identifier_token8] = ACTIONS(1310), + [aux_sym_cmd_identifier_token9] = ACTIONS(1310), + [aux_sym_cmd_identifier_token10] = ACTIONS(1313), + [aux_sym_cmd_identifier_token11] = ACTIONS(1313), + [aux_sym_cmd_identifier_token12] = ACTIONS(1310), + [aux_sym_cmd_identifier_token13] = ACTIONS(1310), + [aux_sym_cmd_identifier_token14] = ACTIONS(1310), + [aux_sym_cmd_identifier_token15] = ACTIONS(1310), + [aux_sym_cmd_identifier_token16] = ACTIONS(1313), + [aux_sym_cmd_identifier_token17] = ACTIONS(1313), + [aux_sym_cmd_identifier_token18] = ACTIONS(1313), + [aux_sym_cmd_identifier_token19] = ACTIONS(1313), + [aux_sym_cmd_identifier_token20] = ACTIONS(1313), + [aux_sym_cmd_identifier_token21] = ACTIONS(1313), + [aux_sym_cmd_identifier_token22] = ACTIONS(1313), + [aux_sym_cmd_identifier_token23] = ACTIONS(1313), + [aux_sym_cmd_identifier_token24] = ACTIONS(1313), + [aux_sym_cmd_identifier_token25] = ACTIONS(1313), + [aux_sym_cmd_identifier_token26] = ACTIONS(1313), + [aux_sym_cmd_identifier_token27] = ACTIONS(1313), + [aux_sym_cmd_identifier_token28] = ACTIONS(1313), + [aux_sym_cmd_identifier_token29] = ACTIONS(1313), + [aux_sym_cmd_identifier_token30] = ACTIONS(1313), + [aux_sym_cmd_identifier_token31] = ACTIONS(1313), + [aux_sym_cmd_identifier_token32] = ACTIONS(1313), + [aux_sym_cmd_identifier_token33] = ACTIONS(1313), + [aux_sym_cmd_identifier_token34] = ACTIONS(1310), + [aux_sym_cmd_identifier_token35] = ACTIONS(1313), + [aux_sym_cmd_identifier_token36] = ACTIONS(1313), + [aux_sym_cmd_identifier_token37] = ACTIONS(1313), + [aux_sym_cmd_identifier_token38] = ACTIONS(1310), + [aux_sym_cmd_identifier_token39] = ACTIONS(1313), + [aux_sym_cmd_identifier_token40] = ACTIONS(1313), [anon_sym_def] = ACTIONS(1307), [anon_sym_export_DASHenv] = ACTIONS(1307), [anon_sym_extern] = ACTIONS(1307), [anon_sym_module] = ACTIONS(1307), [anon_sym_use] = ACTIONS(1307), - [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1309), + [anon_sym_LPAREN] = ACTIONS(1316), + [anon_sym_DOLLAR] = ACTIONS(1319), [anon_sym_error] = ACTIONS(1307), - [anon_sym_DASH2] = ACTIONS(207), + [anon_sym_DASH2] = ACTIONS(1322), [anon_sym_break] = ACTIONS(1307), [anon_sym_continue] = ACTIONS(1307), [anon_sym_for] = ACTIONS(1307), @@ -102090,7 +102221,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1307), [anon_sym_else] = ACTIONS(1307), [anon_sym_match] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1311), + [anon_sym_RBRACE] = ACTIONS(1325), [anon_sym_try] = ACTIONS(1307), [anon_sym_catch] = ACTIONS(1307), [anon_sym_return] = ACTIONS(1307), @@ -102101,50 +102232,49 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1307), [anon_sym_overlay] = ACTIONS(1307), [anon_sym_as] = ACTIONS(1307), - [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [anon_sym_PLUS2] = ACTIONS(1322), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1327), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1330), + [aux_sym__val_number_decimal_token1] = ACTIONS(1333), + [aux_sym__val_number_decimal_token2] = ACTIONS(1336), + [aux_sym__val_number_decimal_token3] = ACTIONS(1339), + [aux_sym__val_number_decimal_token4] = ACTIONS(1342), + [aux_sym__val_number_token1] = ACTIONS(1345), + [aux_sym__val_number_token2] = ACTIONS(1345), + [aux_sym__val_number_token3] = ACTIONS(1345), + [aux_sym__val_number_token4] = ACTIONS(1348), + [aux_sym__val_number_token5] = ACTIONS(1348), + [aux_sym__val_number_token6] = ACTIONS(1348), + [anon_sym_DQUOTE] = ACTIONS(1351), + [sym__str_single_quotes] = ACTIONS(1354), + [sym__str_back_ticks] = ACTIONS(1354), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1357), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1360), }, - [198] = { - [sym_cmd_identifier] = STATE(6447), - [sym__match_pattern_record_variable] = STATE(723), - [sym_expr_parenthesized] = STATE(7382), - [sym__spread_parenthesized] = STATE(735), - [sym__spread_variable] = STATE(736), - [sym_val_variable] = STATE(559), - [sym_val_number] = STATE(7382), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7382), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(735), + [199] = { + [sym_cmd_identifier] = STATE(6184), + [sym_expr_parenthesized] = STATE(7364), + [sym__spread_parenthesized] = STATE(675), + [sym__spread_variable] = STATE(676), + [sym_val_variable] = STATE(661), + [sym_val_number] = STATE(7364), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7364), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(675), [sym_record_entry] = STATE(723), - [sym__record_key] = STATE(7658), - [sym_comment] = STATE(198), - [aux_sym__match_pattern_record_repeat1] = STATE(201), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_alias] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_let_DASHenv] = ACTIONS(1307), - [anon_sym_mut] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), + [sym__record_key] = STATE(7628), + [sym_comment] = STATE(199), + [aux_sym__match_pattern_record_repeat1] = STATE(200), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), [aux_sym_cmd_identifier_token1] = ACTIONS(135), [aux_sym_cmd_identifier_token2] = ACTIONS(137), [aux_sym_cmd_identifier_token3] = ACTIONS(137), @@ -102185,81 +102315,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(135), [aux_sym_cmd_identifier_token39] = ACTIONS(137), [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1307), - [anon_sym_export_DASHenv] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_use] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_in2] = ACTIONS(1307), - [anon_sym_loop] = ACTIONS(1307), - [anon_sym_make] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_match] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1319), - [anon_sym_try] = ACTIONS(1307), - [anon_sym_catch] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_source] = ACTIONS(1307), - [anon_sym_source_DASHenv] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_hide] = ACTIONS(1307), - [anon_sym_hide_DASHenv] = ACTIONS(1307), - [anon_sym_overlay] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1367), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, - [199] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7007), - [sym__record_key] = STATE(7577), - [sym_comment] = STATE(199), - [aux_sym_shebang_repeat1] = STATE(601), - [aux_sym_record_body_repeat1] = STATE(207), - [anon_sym_export] = ACTIONS(285), - [anon_sym_alias] = ACTIONS(285), - [anon_sym_let] = ACTIONS(285), - [anon_sym_let_DASHenv] = ACTIONS(285), - [anon_sym_mut] = ACTIONS(285), - [anon_sym_const] = ACTIONS(285), + [200] = { + [sym_cmd_identifier] = STATE(6184), + [sym_expr_parenthesized] = STATE(7364), + [sym__spread_parenthesized] = STATE(675), + [sym__spread_variable] = STATE(676), + [sym_val_variable] = STATE(661), + [sym_val_number] = STATE(7364), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7364), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(675), + [sym_record_entry] = STATE(723), + [sym__record_key] = STATE(7628), + [sym_comment] = STATE(200), + [aux_sym__match_pattern_record_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), [aux_sym_cmd_identifier_token1] = ACTIONS(135), [aux_sym_cmd_identifier_token2] = ACTIONS(137), [aux_sym_cmd_identifier_token3] = ACTIONS(137), @@ -102300,81 +102429,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(135), [aux_sym_cmd_identifier_token39] = ACTIONS(137), [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [sym__newline] = ACTIONS(1281), - [anon_sym_def] = ACTIONS(285), - [anon_sym_export_DASHenv] = ACTIONS(285), - [anon_sym_extern] = ACTIONS(285), - [anon_sym_module] = ACTIONS(285), - [anon_sym_use] = ACTIONS(285), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1285), - [anon_sym_error] = ACTIONS(285), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(285), - [anon_sym_continue] = ACTIONS(285), - [anon_sym_for] = ACTIONS(285), - [anon_sym_in2] = ACTIONS(285), - [anon_sym_loop] = ACTIONS(285), - [anon_sym_make] = ACTIONS(285), - [anon_sym_while] = ACTIONS(285), - [anon_sym_do] = ACTIONS(285), - [anon_sym_if] = ACTIONS(285), - [anon_sym_else] = ACTIONS(285), - [anon_sym_match] = ACTIONS(285), - [anon_sym_try] = ACTIONS(285), - [anon_sym_catch] = ACTIONS(285), - [anon_sym_return] = ACTIONS(285), - [anon_sym_source] = ACTIONS(285), - [anon_sym_source_DASHenv] = ACTIONS(285), - [anon_sym_register] = ACTIONS(285), - [anon_sym_hide] = ACTIONS(285), - [anon_sym_hide_DASHenv] = ACTIONS(285), - [anon_sym_overlay] = ACTIONS(285), - [anon_sym_as] = ACTIONS(285), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1375), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, - [200] = { - [sym_cmd_identifier] = STATE(6447), - [sym__match_pattern_record_variable] = STATE(723), - [sym_expr_parenthesized] = STATE(7382), - [sym__spread_parenthesized] = STATE(735), - [sym__spread_variable] = STATE(736), - [sym_val_variable] = STATE(559), - [sym_val_number] = STATE(7382), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7382), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(735), + [201] = { + [sym_cmd_identifier] = STATE(6184), + [sym_expr_parenthesized] = STATE(7364), + [sym__spread_parenthesized] = STATE(675), + [sym__spread_variable] = STATE(676), + [sym_val_variable] = STATE(661), + [sym_val_number] = STATE(7364), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7364), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(675), [sym_record_entry] = STATE(723), - [sym__record_key] = STATE(7658), - [sym_comment] = STATE(200), - [aux_sym__match_pattern_record_repeat1] = STATE(197), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_alias] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_let_DASHenv] = ACTIONS(1307), - [anon_sym_mut] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), + [sym__record_key] = STATE(7628), + [sym_comment] = STATE(201), + [aux_sym__match_pattern_record_repeat1] = STATE(202), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), [aux_sym_cmd_identifier_token1] = ACTIONS(135), [aux_sym_cmd_identifier_token2] = ACTIONS(137), [aux_sym_cmd_identifier_token3] = ACTIONS(137), @@ -102415,81 +102543,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(135), [aux_sym_cmd_identifier_token39] = ACTIONS(137), [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1307), - [anon_sym_export_DASHenv] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_use] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_in2] = ACTIONS(1307), - [anon_sym_loop] = ACTIONS(1307), - [anon_sym_make] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_match] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1321), - [anon_sym_try] = ACTIONS(1307), - [anon_sym_catch] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_source] = ACTIONS(1307), - [anon_sym_source_DASHenv] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_hide] = ACTIONS(1307), - [anon_sym_hide_DASHenv] = ACTIONS(1307), - [anon_sym_overlay] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1377), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, - [201] = { - [sym_cmd_identifier] = STATE(6447), - [sym__match_pattern_record_variable] = STATE(723), - [sym_expr_parenthesized] = STATE(7382), - [sym__spread_parenthesized] = STATE(735), - [sym__spread_variable] = STATE(736), - [sym_val_variable] = STATE(559), - [sym_val_number] = STATE(7382), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7382), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(735), + [202] = { + [sym_cmd_identifier] = STATE(6184), + [sym_expr_parenthesized] = STATE(7364), + [sym__spread_parenthesized] = STATE(675), + [sym__spread_variable] = STATE(676), + [sym_val_variable] = STATE(661), + [sym_val_number] = STATE(7364), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7364), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(675), [sym_record_entry] = STATE(723), - [sym__record_key] = STATE(7658), - [sym_comment] = STATE(201), - [aux_sym__match_pattern_record_repeat1] = STATE(202), - [anon_sym_export] = ACTIONS(1307), - [anon_sym_alias] = ACTIONS(1307), - [anon_sym_let] = ACTIONS(1307), - [anon_sym_let_DASHenv] = ACTIONS(1307), - [anon_sym_mut] = ACTIONS(1307), - [anon_sym_const] = ACTIONS(1307), + [sym__record_key] = STATE(7628), + [sym_comment] = STATE(202), + [aux_sym__match_pattern_record_repeat1] = STATE(198), + [anon_sym_export] = ACTIONS(1363), + [anon_sym_alias] = ACTIONS(1363), + [anon_sym_let] = ACTIONS(1363), + [anon_sym_let_DASHenv] = ACTIONS(1363), + [anon_sym_mut] = ACTIONS(1363), + [anon_sym_const] = ACTIONS(1363), [aux_sym_cmd_identifier_token1] = ACTIONS(135), [aux_sym_cmd_identifier_token2] = ACTIONS(137), [aux_sym_cmd_identifier_token3] = ACTIONS(137), @@ -102530,189 +102657,74 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(135), [aux_sym_cmd_identifier_token39] = ACTIONS(137), [aux_sym_cmd_identifier_token40] = ACTIONS(137), - [anon_sym_def] = ACTIONS(1307), - [anon_sym_export_DASHenv] = ACTIONS(1307), - [anon_sym_extern] = ACTIONS(1307), - [anon_sym_module] = ACTIONS(1307), - [anon_sym_use] = ACTIONS(1307), + [anon_sym_def] = ACTIONS(1363), + [anon_sym_export_DASHenv] = ACTIONS(1363), + [anon_sym_extern] = ACTIONS(1363), + [anon_sym_module] = ACTIONS(1363), + [anon_sym_use] = ACTIONS(1363), [anon_sym_LPAREN] = ACTIONS(1283), - [anon_sym_DOLLAR] = ACTIONS(1309), - [anon_sym_error] = ACTIONS(1307), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1363), [anon_sym_DASH2] = ACTIONS(207), - [anon_sym_break] = ACTIONS(1307), - [anon_sym_continue] = ACTIONS(1307), - [anon_sym_for] = ACTIONS(1307), - [anon_sym_in2] = ACTIONS(1307), - [anon_sym_loop] = ACTIONS(1307), - [anon_sym_make] = ACTIONS(1307), - [anon_sym_while] = ACTIONS(1307), - [anon_sym_do] = ACTIONS(1307), - [anon_sym_if] = ACTIONS(1307), - [anon_sym_else] = ACTIONS(1307), - [anon_sym_match] = ACTIONS(1307), - [anon_sym_RBRACE] = ACTIONS(1323), - [anon_sym_try] = ACTIONS(1307), - [anon_sym_catch] = ACTIONS(1307), - [anon_sym_return] = ACTIONS(1307), - [anon_sym_source] = ACTIONS(1307), - [anon_sym_source_DASHenv] = ACTIONS(1307), - [anon_sym_register] = ACTIONS(1307), - [anon_sym_hide] = ACTIONS(1307), - [anon_sym_hide_DASHenv] = ACTIONS(1307), - [anon_sym_overlay] = ACTIONS(1307), - [anon_sym_as] = ACTIONS(1307), + [anon_sym_break] = ACTIONS(1363), + [anon_sym_continue] = ACTIONS(1363), + [anon_sym_for] = ACTIONS(1363), + [anon_sym_in2] = ACTIONS(1363), + [anon_sym_loop] = ACTIONS(1363), + [anon_sym_make] = ACTIONS(1363), + [anon_sym_while] = ACTIONS(1363), + [anon_sym_do] = ACTIONS(1363), + [anon_sym_if] = ACTIONS(1363), + [anon_sym_else] = ACTIONS(1363), + [anon_sym_match] = ACTIONS(1363), + [anon_sym_RBRACE] = ACTIONS(1379), + [anon_sym_try] = ACTIONS(1363), + [anon_sym_catch] = ACTIONS(1363), + [anon_sym_return] = ACTIONS(1363), + [anon_sym_source] = ACTIONS(1363), + [anon_sym_source_DASHenv] = ACTIONS(1363), + [anon_sym_register] = ACTIONS(1363), + [anon_sym_hide] = ACTIONS(1363), + [anon_sym_hide_DASHenv] = ACTIONS(1363), + [anon_sym_overlay] = ACTIONS(1363), + [anon_sym_as] = ACTIONS(1363), [anon_sym_PLUS2] = ACTIONS(207), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1313), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1369), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1371), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1317), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1373), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [202] = { - [sym_cmd_identifier] = STATE(6447), - [sym__match_pattern_record_variable] = STATE(723), - [sym_expr_parenthesized] = STATE(7382), - [sym__spread_parenthesized] = STATE(735), - [sym__spread_variable] = STATE(736), - [sym_val_variable] = STATE(559), - [sym_val_number] = STATE(7382), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7382), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(735), - [sym_record_entry] = STATE(723), - [sym__record_key] = STATE(7658), - [sym_comment] = STATE(202), - [aux_sym__match_pattern_record_repeat1] = STATE(202), - [anon_sym_export] = ACTIONS(1325), - [anon_sym_alias] = ACTIONS(1325), - [anon_sym_let] = ACTIONS(1325), - [anon_sym_let_DASHenv] = ACTIONS(1325), - [anon_sym_mut] = ACTIONS(1325), - [anon_sym_const] = ACTIONS(1325), - [aux_sym_cmd_identifier_token1] = ACTIONS(1328), - [aux_sym_cmd_identifier_token2] = ACTIONS(1331), - [aux_sym_cmd_identifier_token3] = ACTIONS(1331), - [aux_sym_cmd_identifier_token4] = ACTIONS(1331), - [aux_sym_cmd_identifier_token5] = ACTIONS(1331), - [aux_sym_cmd_identifier_token6] = ACTIONS(1331), - [aux_sym_cmd_identifier_token7] = ACTIONS(1331), - [aux_sym_cmd_identifier_token8] = ACTIONS(1328), - [aux_sym_cmd_identifier_token9] = ACTIONS(1328), - [aux_sym_cmd_identifier_token10] = ACTIONS(1331), - [aux_sym_cmd_identifier_token11] = ACTIONS(1331), - [aux_sym_cmd_identifier_token12] = ACTIONS(1328), - [aux_sym_cmd_identifier_token13] = ACTIONS(1328), - [aux_sym_cmd_identifier_token14] = ACTIONS(1328), - [aux_sym_cmd_identifier_token15] = ACTIONS(1328), - [aux_sym_cmd_identifier_token16] = ACTIONS(1331), - [aux_sym_cmd_identifier_token17] = ACTIONS(1331), - [aux_sym_cmd_identifier_token18] = ACTIONS(1331), - [aux_sym_cmd_identifier_token19] = ACTIONS(1331), - [aux_sym_cmd_identifier_token20] = ACTIONS(1331), - [aux_sym_cmd_identifier_token21] = ACTIONS(1331), - [aux_sym_cmd_identifier_token22] = ACTIONS(1331), - [aux_sym_cmd_identifier_token23] = ACTIONS(1331), - [aux_sym_cmd_identifier_token24] = ACTIONS(1331), - [aux_sym_cmd_identifier_token25] = ACTIONS(1331), - [aux_sym_cmd_identifier_token26] = ACTIONS(1331), - [aux_sym_cmd_identifier_token27] = ACTIONS(1331), - [aux_sym_cmd_identifier_token28] = ACTIONS(1331), - [aux_sym_cmd_identifier_token29] = ACTIONS(1331), - [aux_sym_cmd_identifier_token30] = ACTIONS(1331), - [aux_sym_cmd_identifier_token31] = ACTIONS(1331), - [aux_sym_cmd_identifier_token32] = ACTIONS(1331), - [aux_sym_cmd_identifier_token33] = ACTIONS(1331), - [aux_sym_cmd_identifier_token34] = ACTIONS(1328), - [aux_sym_cmd_identifier_token35] = ACTIONS(1331), - [aux_sym_cmd_identifier_token36] = ACTIONS(1331), - [aux_sym_cmd_identifier_token37] = ACTIONS(1331), - [aux_sym_cmd_identifier_token38] = ACTIONS(1328), - [aux_sym_cmd_identifier_token39] = ACTIONS(1331), - [aux_sym_cmd_identifier_token40] = ACTIONS(1331), - [anon_sym_def] = ACTIONS(1325), - [anon_sym_export_DASHenv] = ACTIONS(1325), - [anon_sym_extern] = ACTIONS(1325), - [anon_sym_module] = ACTIONS(1325), - [anon_sym_use] = ACTIONS(1325), - [anon_sym_LPAREN] = ACTIONS(1334), - [anon_sym_DOLLAR] = ACTIONS(1337), - [anon_sym_error] = ACTIONS(1325), - [anon_sym_DASH2] = ACTIONS(1340), - [anon_sym_break] = ACTIONS(1325), - [anon_sym_continue] = ACTIONS(1325), - [anon_sym_for] = ACTIONS(1325), - [anon_sym_in2] = ACTIONS(1325), - [anon_sym_loop] = ACTIONS(1325), - [anon_sym_make] = ACTIONS(1325), - [anon_sym_while] = ACTIONS(1325), - [anon_sym_do] = ACTIONS(1325), - [anon_sym_if] = ACTIONS(1325), - [anon_sym_else] = ACTIONS(1325), - [anon_sym_match] = ACTIONS(1325), - [anon_sym_RBRACE] = ACTIONS(1343), - [anon_sym_try] = ACTIONS(1325), - [anon_sym_catch] = ACTIONS(1325), - [anon_sym_return] = ACTIONS(1325), - [anon_sym_source] = ACTIONS(1325), - [anon_sym_source_DASHenv] = ACTIONS(1325), - [anon_sym_register] = ACTIONS(1325), - [anon_sym_hide] = ACTIONS(1325), - [anon_sym_hide_DASHenv] = ACTIONS(1325), - [anon_sym_overlay] = ACTIONS(1325), - [anon_sym_as] = ACTIONS(1325), - [anon_sym_PLUS2] = ACTIONS(1340), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1345), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1348), - [aux_sym__val_number_decimal_token1] = ACTIONS(1351), - [aux_sym__val_number_decimal_token2] = ACTIONS(1354), - [aux_sym__val_number_decimal_token3] = ACTIONS(1357), - [aux_sym__val_number_decimal_token4] = ACTIONS(1360), - [aux_sym__val_number_token1] = ACTIONS(1363), - [aux_sym__val_number_token2] = ACTIONS(1363), - [aux_sym__val_number_token3] = ACTIONS(1363), - [aux_sym__val_number_token4] = ACTIONS(1366), - [aux_sym__val_number_token5] = ACTIONS(1366), - [aux_sym__val_number_token6] = ACTIONS(1366), - [anon_sym_DQUOTE] = ACTIONS(1369), - [sym__str_single_quotes] = ACTIONS(1372), - [sym__str_back_ticks] = ACTIONS(1372), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1375), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1378), + [sym_raw_string_begin] = ACTIONS(1301), }, [203] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7012), - [sym__record_key] = STATE(7577), + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6657), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(203), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(205), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), @@ -102792,379 +102804,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, [204] = { + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(6934), + [sym__record_key] = STATE(7514), [sym_comment] = STATE(204), - [aux_sym__block_body_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1381), - [anon_sym_alias] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_let_DASHenv] = ACTIONS(1381), - [anon_sym_mut] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1381), - [anon_sym_export_DASHenv] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_module] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_RPAREN] = ACTIONS(1385), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1385), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_source] = ACTIONS(1381), - [anon_sym_source_DASHenv] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_hide] = ACTIONS(1381), - [anon_sym_hide_DASHenv] = ACTIONS(1381), - [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), - }, - [205] = { - [sym_comment] = STATE(205), - [aux_sym__block_body_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1387), - [anon_sym_let] = ACTIONS(1387), - [anon_sym_let_DASHenv] = ACTIONS(1387), - [anon_sym_mut] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [aux_sym_cmd_identifier_token1] = ACTIONS(1387), - [aux_sym_cmd_identifier_token2] = ACTIONS(1389), - [aux_sym_cmd_identifier_token3] = ACTIONS(1389), - [aux_sym_cmd_identifier_token4] = ACTIONS(1389), - [aux_sym_cmd_identifier_token5] = ACTIONS(1389), - [aux_sym_cmd_identifier_token6] = ACTIONS(1389), - [aux_sym_cmd_identifier_token7] = ACTIONS(1389), - [aux_sym_cmd_identifier_token8] = ACTIONS(1387), - [aux_sym_cmd_identifier_token9] = ACTIONS(1387), - [aux_sym_cmd_identifier_token10] = ACTIONS(1389), - [aux_sym_cmd_identifier_token11] = ACTIONS(1389), - [aux_sym_cmd_identifier_token12] = ACTIONS(1387), - [aux_sym_cmd_identifier_token13] = ACTIONS(1387), - [aux_sym_cmd_identifier_token14] = ACTIONS(1387), - [aux_sym_cmd_identifier_token15] = ACTIONS(1387), - [aux_sym_cmd_identifier_token16] = ACTIONS(1389), - [aux_sym_cmd_identifier_token17] = ACTIONS(1389), - [aux_sym_cmd_identifier_token18] = ACTIONS(1387), - [aux_sym_cmd_identifier_token19] = ACTIONS(1389), - [aux_sym_cmd_identifier_token20] = ACTIONS(1389), - [aux_sym_cmd_identifier_token21] = ACTIONS(1389), - [aux_sym_cmd_identifier_token22] = ACTIONS(1389), - [aux_sym_cmd_identifier_token23] = ACTIONS(1389), - [aux_sym_cmd_identifier_token24] = ACTIONS(1389), - [aux_sym_cmd_identifier_token25] = ACTIONS(1389), - [aux_sym_cmd_identifier_token26] = ACTIONS(1389), - [aux_sym_cmd_identifier_token27] = ACTIONS(1389), - [aux_sym_cmd_identifier_token28] = ACTIONS(1389), - [aux_sym_cmd_identifier_token29] = ACTIONS(1389), - [aux_sym_cmd_identifier_token30] = ACTIONS(1389), - [aux_sym_cmd_identifier_token31] = ACTIONS(1389), - [aux_sym_cmd_identifier_token32] = ACTIONS(1387), - [aux_sym_cmd_identifier_token33] = ACTIONS(1389), - [aux_sym_cmd_identifier_token34] = ACTIONS(1387), - [aux_sym_cmd_identifier_token35] = ACTIONS(1389), - [aux_sym_cmd_identifier_token36] = ACTIONS(1389), - [aux_sym_cmd_identifier_token37] = ACTIONS(1389), - [aux_sym_cmd_identifier_token38] = ACTIONS(1387), - [aux_sym_cmd_identifier_token39] = ACTIONS(1389), - [aux_sym_cmd_identifier_token40] = ACTIONS(1389), - [sym__newline] = ACTIONS(1391), - [anon_sym_SEMI] = ACTIONS(1391), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_export_DASHenv] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym_module] = ACTIONS(1387), - [anon_sym_use] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_RPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1387), - [anon_sym_error] = ACTIONS(1387), - [anon_sym_DASH2] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_loop] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_RBRACE] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_source] = ACTIONS(1387), - [anon_sym_source_DASHenv] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_hide] = ACTIONS(1387), - [anon_sym_hide_DASHenv] = ACTIONS(1387), - [anon_sym_overlay] = ACTIONS(1387), - [anon_sym_where] = ACTIONS(1389), - [aux_sym_expr_unary_token1] = ACTIONS(1389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1389), - [anon_sym_DOT_DOT_LT] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [aux_sym__val_number_decimal_token1] = ACTIONS(1387), - [aux_sym__val_number_decimal_token2] = ACTIONS(1389), - [aux_sym__val_number_decimal_token3] = ACTIONS(1389), - [aux_sym__val_number_decimal_token4] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1387), - [aux_sym__val_number_token5] = ACTIONS(1387), - [aux_sym__val_number_token6] = ACTIONS(1387), - [anon_sym_0b] = ACTIONS(1387), - [anon_sym_0o] = ACTIONS(1387), - [anon_sym_0x] = ACTIONS(1387), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [aux_sym_env_var_token1] = ACTIONS(1387), - [anon_sym_CARET] = ACTIONS(1389), - [aux_sym_command_token1] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1389), - }, - [206] = { - [sym_comment] = STATE(206), - [aux_sym__block_body_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1381), - [anon_sym_alias] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_let_DASHenv] = ACTIONS(1381), - [anon_sym_mut] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1381), - [anon_sym_export_DASHenv] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_module] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_RPAREN] = ACTIONS(1394), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1394), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_source] = ACTIONS(1381), - [anon_sym_source_DASHenv] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_hide] = ACTIONS(1381), - [anon_sym_hide_DASHenv] = ACTIONS(1381), - [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), - }, - [207] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(6940), - [sym__record_key] = STATE(7577), - [sym_comment] = STATE(207), - [aux_sym_record_body_repeat1] = STATE(209), + [aux_sym_record_body_repeat1] = STATE(205), [anon_sym_export] = ACTIONS(285), [anon_sym_alias] = ACTIONS(285), [anon_sym_let] = ACTIONS(285), @@ -103244,97 +102917,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_PLUS2] = ACTIONS(207), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(1287), - [aux_sym__val_number_decimal_token2] = ACTIONS(1289), - [aux_sym__val_number_decimal_token3] = ACTIONS(1291), - [aux_sym__val_number_decimal_token4] = ACTIONS(1293), + [aux_sym__val_number_decimal_token1] = ACTIONS(1289), + [aux_sym__val_number_decimal_token2] = ACTIONS(1291), + [aux_sym__val_number_decimal_token3] = ACTIONS(1293), + [aux_sym__val_number_decimal_token4] = ACTIONS(1295), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), [aux_sym__val_number_token4] = ACTIONS(229), [aux_sym__val_number_token5] = ACTIONS(229), [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(317), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym_raw_string_begin] = ACTIONS(1301), }, - [208] = { - [sym_comment] = STATE(208), - [aux_sym__block_body_repeat1] = STATE(205), + [205] = { + [sym_cmd_identifier] = STATE(6082), + [sym_expr_parenthesized] = STATE(7474), + [sym__spread_parenthesized] = STATE(7266), + [sym__spread_variable] = STATE(7271), + [sym_val_variable] = STATE(7474), + [sym_val_number] = STATE(7474), + [sym__val_number_decimal] = STATE(3535), + [sym__val_number] = STATE(1662), + [sym_val_string] = STATE(7474), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym__spread_record] = STATE(7266), + [sym_record_entry] = STATE(7212), + [sym__record_key] = STATE(7514), + [sym_comment] = STATE(205), + [aux_sym_record_body_repeat1] = STATE(205), [anon_sym_export] = ACTIONS(1381), [anon_sym_alias] = ACTIONS(1381), [anon_sym_let] = ACTIONS(1381), [anon_sym_let_DASHenv] = ACTIONS(1381), [anon_sym_mut] = ACTIONS(1381), [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), + [aux_sym_cmd_identifier_token1] = ACTIONS(1384), + [aux_sym_cmd_identifier_token2] = ACTIONS(1387), + [aux_sym_cmd_identifier_token3] = ACTIONS(1387), + [aux_sym_cmd_identifier_token4] = ACTIONS(1387), + [aux_sym_cmd_identifier_token5] = ACTIONS(1387), + [aux_sym_cmd_identifier_token6] = ACTIONS(1387), + [aux_sym_cmd_identifier_token7] = ACTIONS(1387), + [aux_sym_cmd_identifier_token8] = ACTIONS(1384), + [aux_sym_cmd_identifier_token9] = ACTIONS(1384), + [aux_sym_cmd_identifier_token10] = ACTIONS(1387), + [aux_sym_cmd_identifier_token11] = ACTIONS(1387), + [aux_sym_cmd_identifier_token12] = ACTIONS(1384), + [aux_sym_cmd_identifier_token13] = ACTIONS(1384), + [aux_sym_cmd_identifier_token14] = ACTIONS(1384), + [aux_sym_cmd_identifier_token15] = ACTIONS(1384), + [aux_sym_cmd_identifier_token16] = ACTIONS(1387), + [aux_sym_cmd_identifier_token17] = ACTIONS(1387), + [aux_sym_cmd_identifier_token18] = ACTIONS(1387), + [aux_sym_cmd_identifier_token19] = ACTIONS(1387), + [aux_sym_cmd_identifier_token20] = ACTIONS(1387), + [aux_sym_cmd_identifier_token21] = ACTIONS(1387), + [aux_sym_cmd_identifier_token22] = ACTIONS(1387), + [aux_sym_cmd_identifier_token23] = ACTIONS(1387), + [aux_sym_cmd_identifier_token24] = ACTIONS(1387), + [aux_sym_cmd_identifier_token25] = ACTIONS(1387), + [aux_sym_cmd_identifier_token26] = ACTIONS(1387), + [aux_sym_cmd_identifier_token27] = ACTIONS(1387), + [aux_sym_cmd_identifier_token28] = ACTIONS(1387), + [aux_sym_cmd_identifier_token29] = ACTIONS(1387), + [aux_sym_cmd_identifier_token30] = ACTIONS(1387), + [aux_sym_cmd_identifier_token31] = ACTIONS(1387), + [aux_sym_cmd_identifier_token32] = ACTIONS(1387), + [aux_sym_cmd_identifier_token33] = ACTIONS(1387), + [aux_sym_cmd_identifier_token34] = ACTIONS(1384), + [aux_sym_cmd_identifier_token35] = ACTIONS(1387), + [aux_sym_cmd_identifier_token36] = ACTIONS(1387), + [aux_sym_cmd_identifier_token37] = ACTIONS(1387), + [aux_sym_cmd_identifier_token38] = ACTIONS(1384), + [aux_sym_cmd_identifier_token39] = ACTIONS(1387), + [aux_sym_cmd_identifier_token40] = ACTIONS(1387), [anon_sym_def] = ACTIONS(1381), [anon_sym_export_DASHenv] = ACTIONS(1381), [anon_sym_extern] = ACTIONS(1381), [anon_sym_module] = ACTIONS(1381), [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_RPAREN] = ACTIONS(1396), - [anon_sym_DOLLAR] = ACTIONS(1381), + [anon_sym_LPAREN] = ACTIONS(1390), + [anon_sym_DOLLAR] = ACTIONS(1393), [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), + [anon_sym_DASH2] = ACTIONS(1396), [anon_sym_break] = ACTIONS(1381), [anon_sym_continue] = ACTIONS(1381), [anon_sym_for] = ACTIONS(1381), + [anon_sym_in2] = ACTIONS(1381), [anon_sym_loop] = ACTIONS(1381), + [anon_sym_make] = ACTIONS(1381), [anon_sym_while] = ACTIONS(1381), [anon_sym_do] = ACTIONS(1381), [anon_sym_if] = ACTIONS(1381), + [anon_sym_else] = ACTIONS(1381), [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_RBRACE] = ACTIONS(1396), - [anon_sym_DOT_DOT] = ACTIONS(1381), [anon_sym_try] = ACTIONS(1381), + [anon_sym_catch] = ACTIONS(1381), [anon_sym_return] = ACTIONS(1381), [anon_sym_source] = ACTIONS(1381), [anon_sym_source_DASHenv] = ACTIONS(1381), @@ -103342,185 +103026,513 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(1381), [anon_sym_hide_DASHenv] = ACTIONS(1381), [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), + [anon_sym_as] = ACTIONS(1381), + [anon_sym_PLUS2] = ACTIONS(1396), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1399), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1402), + [aux_sym__val_number_decimal_token1] = ACTIONS(1405), + [aux_sym__val_number_decimal_token2] = ACTIONS(1408), + [aux_sym__val_number_decimal_token3] = ACTIONS(1411), + [aux_sym__val_number_decimal_token4] = ACTIONS(1414), + [aux_sym__val_number_token1] = ACTIONS(1417), + [aux_sym__val_number_token2] = ACTIONS(1417), + [aux_sym__val_number_token3] = ACTIONS(1417), + [aux_sym__val_number_token4] = ACTIONS(1420), + [aux_sym__val_number_token5] = ACTIONS(1420), + [aux_sym__val_number_token6] = ACTIONS(1420), + [anon_sym_DQUOTE] = ACTIONS(1423), + [sym__str_single_quotes] = ACTIONS(1426), + [sym__str_back_ticks] = ACTIONS(1426), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1429), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1432), + }, + [206] = { + [sym_comment] = STATE(206), + [aux_sym__block_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1439), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1439), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), + }, + [207] = { + [sym_comment] = STATE(207), + [aux_sym__block_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1441), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1441), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), + }, + [208] = { + [sym_comment] = STATE(208), + [aux_sym__block_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_RPAREN] = ACTIONS(1443), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_RBRACE] = ACTIONS(1443), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), }, [209] = { - [sym_cmd_identifier] = STATE(6311), - [sym_expr_parenthesized] = STATE(7606), - [sym__spread_parenthesized] = STATE(7373), - [sym__spread_variable] = STATE(7228), - [sym_val_variable] = STATE(7606), - [sym_val_number] = STATE(7606), - [sym__val_number_decimal] = STATE(3526), - [sym__val_number] = STATE(1638), - [sym_val_string] = STATE(7606), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym__spread_record] = STATE(7373), - [sym_record_entry] = STATE(7225), - [sym__record_key] = STATE(7577), [sym_comment] = STATE(209), - [aux_sym_record_body_repeat1] = STATE(209), - [anon_sym_export] = ACTIONS(1398), - [anon_sym_alias] = ACTIONS(1398), - [anon_sym_let] = ACTIONS(1398), - [anon_sym_let_DASHenv] = ACTIONS(1398), - [anon_sym_mut] = ACTIONS(1398), - [anon_sym_const] = ACTIONS(1398), - [aux_sym_cmd_identifier_token1] = ACTIONS(1401), - [aux_sym_cmd_identifier_token2] = ACTIONS(1404), - [aux_sym_cmd_identifier_token3] = ACTIONS(1404), - [aux_sym_cmd_identifier_token4] = ACTIONS(1404), - [aux_sym_cmd_identifier_token5] = ACTIONS(1404), - [aux_sym_cmd_identifier_token6] = ACTIONS(1404), - [aux_sym_cmd_identifier_token7] = ACTIONS(1404), - [aux_sym_cmd_identifier_token8] = ACTIONS(1401), - [aux_sym_cmd_identifier_token9] = ACTIONS(1401), - [aux_sym_cmd_identifier_token10] = ACTIONS(1404), - [aux_sym_cmd_identifier_token11] = ACTIONS(1404), - [aux_sym_cmd_identifier_token12] = ACTIONS(1401), - [aux_sym_cmd_identifier_token13] = ACTIONS(1401), - [aux_sym_cmd_identifier_token14] = ACTIONS(1401), - [aux_sym_cmd_identifier_token15] = ACTIONS(1401), - [aux_sym_cmd_identifier_token16] = ACTIONS(1404), - [aux_sym_cmd_identifier_token17] = ACTIONS(1404), - [aux_sym_cmd_identifier_token18] = ACTIONS(1404), - [aux_sym_cmd_identifier_token19] = ACTIONS(1404), - [aux_sym_cmd_identifier_token20] = ACTIONS(1404), - [aux_sym_cmd_identifier_token21] = ACTIONS(1404), - [aux_sym_cmd_identifier_token22] = ACTIONS(1404), - [aux_sym_cmd_identifier_token23] = ACTIONS(1404), - [aux_sym_cmd_identifier_token24] = ACTIONS(1404), - [aux_sym_cmd_identifier_token25] = ACTIONS(1404), - [aux_sym_cmd_identifier_token26] = ACTIONS(1404), - [aux_sym_cmd_identifier_token27] = ACTIONS(1404), - [aux_sym_cmd_identifier_token28] = ACTIONS(1404), - [aux_sym_cmd_identifier_token29] = ACTIONS(1404), - [aux_sym_cmd_identifier_token30] = ACTIONS(1404), - [aux_sym_cmd_identifier_token31] = ACTIONS(1404), - [aux_sym_cmd_identifier_token32] = ACTIONS(1404), - [aux_sym_cmd_identifier_token33] = ACTIONS(1404), - [aux_sym_cmd_identifier_token34] = ACTIONS(1401), - [aux_sym_cmd_identifier_token35] = ACTIONS(1404), - [aux_sym_cmd_identifier_token36] = ACTIONS(1404), - [aux_sym_cmd_identifier_token37] = ACTIONS(1404), - [aux_sym_cmd_identifier_token38] = ACTIONS(1401), - [aux_sym_cmd_identifier_token39] = ACTIONS(1404), - [aux_sym_cmd_identifier_token40] = ACTIONS(1404), - [anon_sym_def] = ACTIONS(1398), - [anon_sym_export_DASHenv] = ACTIONS(1398), - [anon_sym_extern] = ACTIONS(1398), - [anon_sym_module] = ACTIONS(1398), - [anon_sym_use] = ACTIONS(1398), - [anon_sym_LPAREN] = ACTIONS(1407), - [anon_sym_DOLLAR] = ACTIONS(1410), - [anon_sym_error] = ACTIONS(1398), - [anon_sym_DASH2] = ACTIONS(1413), - [anon_sym_break] = ACTIONS(1398), - [anon_sym_continue] = ACTIONS(1398), - [anon_sym_for] = ACTIONS(1398), - [anon_sym_in2] = ACTIONS(1398), - [anon_sym_loop] = ACTIONS(1398), - [anon_sym_make] = ACTIONS(1398), - [anon_sym_while] = ACTIONS(1398), - [anon_sym_do] = ACTIONS(1398), - [anon_sym_if] = ACTIONS(1398), - [anon_sym_else] = ACTIONS(1398), - [anon_sym_match] = ACTIONS(1398), - [anon_sym_try] = ACTIONS(1398), - [anon_sym_catch] = ACTIONS(1398), - [anon_sym_return] = ACTIONS(1398), - [anon_sym_source] = ACTIONS(1398), - [anon_sym_source_DASHenv] = ACTIONS(1398), - [anon_sym_register] = ACTIONS(1398), - [anon_sym_hide] = ACTIONS(1398), - [anon_sym_hide_DASHenv] = ACTIONS(1398), - [anon_sym_overlay] = ACTIONS(1398), - [anon_sym_as] = ACTIONS(1398), - [anon_sym_PLUS2] = ACTIONS(1413), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1416), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1419), - [aux_sym__val_number_decimal_token1] = ACTIONS(1422), - [aux_sym__val_number_decimal_token2] = ACTIONS(1425), - [aux_sym__val_number_decimal_token3] = ACTIONS(1428), - [aux_sym__val_number_decimal_token4] = ACTIONS(1431), - [aux_sym__val_number_token1] = ACTIONS(1434), - [aux_sym__val_number_token2] = ACTIONS(1434), - [aux_sym__val_number_token3] = ACTIONS(1434), - [aux_sym__val_number_token4] = ACTIONS(1437), - [aux_sym__val_number_token5] = ACTIONS(1437), - [aux_sym__val_number_token6] = ACTIONS(1437), - [anon_sym_DQUOTE] = ACTIONS(1440), - [sym__str_single_quotes] = ACTIONS(1443), - [sym__str_back_ticks] = ACTIONS(1443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1446), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1449), + [aux_sym__block_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_alias] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_let_DASHenv] = ACTIONS(1445), + [anon_sym_mut] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [aux_sym_cmd_identifier_token1] = ACTIONS(1445), + [aux_sym_cmd_identifier_token2] = ACTIONS(1447), + [aux_sym_cmd_identifier_token3] = ACTIONS(1447), + [aux_sym_cmd_identifier_token4] = ACTIONS(1447), + [aux_sym_cmd_identifier_token5] = ACTIONS(1447), + [aux_sym_cmd_identifier_token6] = ACTIONS(1447), + [aux_sym_cmd_identifier_token7] = ACTIONS(1447), + [aux_sym_cmd_identifier_token8] = ACTIONS(1445), + [aux_sym_cmd_identifier_token9] = ACTIONS(1445), + [aux_sym_cmd_identifier_token10] = ACTIONS(1447), + [aux_sym_cmd_identifier_token11] = ACTIONS(1447), + [aux_sym_cmd_identifier_token12] = ACTIONS(1445), + [aux_sym_cmd_identifier_token13] = ACTIONS(1445), + [aux_sym_cmd_identifier_token14] = ACTIONS(1445), + [aux_sym_cmd_identifier_token15] = ACTIONS(1445), + [aux_sym_cmd_identifier_token16] = ACTIONS(1447), + [aux_sym_cmd_identifier_token17] = ACTIONS(1447), + [aux_sym_cmd_identifier_token18] = ACTIONS(1445), + [aux_sym_cmd_identifier_token19] = ACTIONS(1447), + [aux_sym_cmd_identifier_token20] = ACTIONS(1447), + [aux_sym_cmd_identifier_token21] = ACTIONS(1447), + [aux_sym_cmd_identifier_token22] = ACTIONS(1447), + [aux_sym_cmd_identifier_token23] = ACTIONS(1447), + [aux_sym_cmd_identifier_token24] = ACTIONS(1447), + [aux_sym_cmd_identifier_token25] = ACTIONS(1447), + [aux_sym_cmd_identifier_token26] = ACTIONS(1447), + [aux_sym_cmd_identifier_token27] = ACTIONS(1447), + [aux_sym_cmd_identifier_token28] = ACTIONS(1447), + [aux_sym_cmd_identifier_token29] = ACTIONS(1447), + [aux_sym_cmd_identifier_token30] = ACTIONS(1447), + [aux_sym_cmd_identifier_token31] = ACTIONS(1447), + [aux_sym_cmd_identifier_token32] = ACTIONS(1445), + [aux_sym_cmd_identifier_token33] = ACTIONS(1447), + [aux_sym_cmd_identifier_token34] = ACTIONS(1445), + [aux_sym_cmd_identifier_token35] = ACTIONS(1447), + [aux_sym_cmd_identifier_token36] = ACTIONS(1447), + [aux_sym_cmd_identifier_token37] = ACTIONS(1447), + [aux_sym_cmd_identifier_token38] = ACTIONS(1445), + [aux_sym_cmd_identifier_token39] = ACTIONS(1447), + [aux_sym_cmd_identifier_token40] = ACTIONS(1447), + [sym__newline] = ACTIONS(1449), + [anon_sym_SEMI] = ACTIONS(1449), + [anon_sym_def] = ACTIONS(1445), + [anon_sym_export_DASHenv] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_use] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_RPAREN] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH2] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_RBRACE] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_source] = ACTIONS(1445), + [anon_sym_source_DASHenv] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_hide] = ACTIONS(1445), + [anon_sym_hide_DASHenv] = ACTIONS(1445), + [anon_sym_overlay] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1447), + [aux_sym_expr_unary_token1] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_DOT_DOT_LT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1445), + [aux_sym__val_number_decimal_token2] = ACTIONS(1447), + [aux_sym__val_number_decimal_token3] = ACTIONS(1447), + [aux_sym__val_number_decimal_token4] = ACTIONS(1447), + [aux_sym__val_number_token1] = ACTIONS(1447), + [aux_sym__val_number_token2] = ACTIONS(1447), + [aux_sym__val_number_token3] = ACTIONS(1447), + [aux_sym__val_number_token4] = ACTIONS(1445), + [aux_sym__val_number_token5] = ACTIONS(1445), + [aux_sym__val_number_token6] = ACTIONS(1445), + [anon_sym_0b] = ACTIONS(1445), + [anon_sym_0o] = ACTIONS(1445), + [anon_sym_0x] = ACTIONS(1445), + [sym_val_date] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym__str_single_quotes] = ACTIONS(1447), + [sym__str_back_ticks] = ACTIONS(1447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1447), + [aux_sym_env_var_token1] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1447), + [aux_sym_command_token1] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1447), }, [210] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4935), - [sym_block] = STATE(4936), - [sym__expression_parenthesized] = STATE(4936), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4936), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4902), + [sym_block] = STATE(4903), + [sym__expression_parenthesized] = STATE(4903), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4903), [sym_comment] = STATE(210), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(248), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103564,7 +103576,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -103600,39 +103612,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [211] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4881), - [sym_block] = STATE(4882), - [sym__expression_parenthesized] = STATE(4882), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4882), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4872), + [sym_block] = STATE(4873), + [sym__expression_parenthesized] = STATE(4873), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4873), [sym_comment] = STATE(211), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(227), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103676,9 +103688,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -103687,10 +103699,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -103712,39 +103724,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [212] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4881), - [sym_block] = STATE(4882), - [sym__expression_parenthesized] = STATE(4882), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4882), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression_parenthesized] = STATE(4896), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4896), [sym_comment] = STATE(212), - [aux_sym_shebang_repeat1] = STATE(215), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103788,9 +103800,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -103799,10 +103811,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -103824,39 +103836,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [213] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4883), - [sym_block] = STATE(4884), - [sym__expression_parenthesized] = STATE(4884), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4884), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression_parenthesized] = STATE(4896), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4896), [sym_comment] = STATE(213), - [aux_sym_shebang_repeat1] = STATE(217), + [aux_sym_shebang_repeat1] = STATE(241), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -103900,9 +103912,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -103911,10 +103923,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -103936,263 +103948,263 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [214] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4885), - [sym_block] = STATE(4886), - [sym__expression_parenthesized] = STATE(4886), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4886), [sym_comment] = STATE(214), - [aux_sym_shebang_repeat1] = STATE(219), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym__block_body_repeat1] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1441), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), }, [215] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4908), - [sym_block] = STATE(4909), - [sym__expression_parenthesized] = STATE(4909), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4909), [sym_comment] = STATE(215), - [aux_sym_shebang_repeat1] = STATE(1150), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_POUND_BANG] = ACTIONS(1268), + [anon_sym_export] = ACTIONS(1472), + [anon_sym_alias] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_let_DASHenv] = ACTIONS(1472), + [anon_sym_mut] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [aux_sym_cmd_identifier_token1] = ACTIONS(1472), + [aux_sym_cmd_identifier_token2] = ACTIONS(1272), + [aux_sym_cmd_identifier_token3] = ACTIONS(1272), + [aux_sym_cmd_identifier_token4] = ACTIONS(1272), + [aux_sym_cmd_identifier_token5] = ACTIONS(1272), + [aux_sym_cmd_identifier_token6] = ACTIONS(1272), + [aux_sym_cmd_identifier_token7] = ACTIONS(1272), + [aux_sym_cmd_identifier_token8] = ACTIONS(1472), + [aux_sym_cmd_identifier_token9] = ACTIONS(1472), + [aux_sym_cmd_identifier_token10] = ACTIONS(1272), + [aux_sym_cmd_identifier_token11] = ACTIONS(1272), + [aux_sym_cmd_identifier_token12] = ACTIONS(1472), + [aux_sym_cmd_identifier_token13] = ACTIONS(1472), + [aux_sym_cmd_identifier_token14] = ACTIONS(1472), + [aux_sym_cmd_identifier_token15] = ACTIONS(1472), + [aux_sym_cmd_identifier_token16] = ACTIONS(1272), + [aux_sym_cmd_identifier_token17] = ACTIONS(1272), + [aux_sym_cmd_identifier_token18] = ACTIONS(1472), + [aux_sym_cmd_identifier_token19] = ACTIONS(1272), + [aux_sym_cmd_identifier_token20] = ACTIONS(1272), + [aux_sym_cmd_identifier_token21] = ACTIONS(1272), + [aux_sym_cmd_identifier_token22] = ACTIONS(1272), + [aux_sym_cmd_identifier_token23] = ACTIONS(1272), + [aux_sym_cmd_identifier_token24] = ACTIONS(1272), + [aux_sym_cmd_identifier_token25] = ACTIONS(1272), + [aux_sym_cmd_identifier_token26] = ACTIONS(1272), + [aux_sym_cmd_identifier_token27] = ACTIONS(1272), + [aux_sym_cmd_identifier_token28] = ACTIONS(1272), + [aux_sym_cmd_identifier_token29] = ACTIONS(1272), + [aux_sym_cmd_identifier_token30] = ACTIONS(1272), + [aux_sym_cmd_identifier_token31] = ACTIONS(1272), + [aux_sym_cmd_identifier_token32] = ACTIONS(1472), + [aux_sym_cmd_identifier_token33] = ACTIONS(1272), + [aux_sym_cmd_identifier_token34] = ACTIONS(1472), + [aux_sym_cmd_identifier_token35] = ACTIONS(1272), + [aux_sym_cmd_identifier_token36] = ACTIONS(1272), + [aux_sym_cmd_identifier_token37] = ACTIONS(1272), + [aux_sym_cmd_identifier_token38] = ACTIONS(1472), + [aux_sym_cmd_identifier_token39] = ACTIONS(1272), + [aux_sym_cmd_identifier_token40] = ACTIONS(1272), + [sym__newline] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1472), + [anon_sym_export_DASHenv] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_module] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_error] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_source] = ACTIONS(1472), + [anon_sym_source_DASHenv] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_hide] = ACTIONS(1472), + [anon_sym_hide_DASHenv] = ACTIONS(1472), + [anon_sym_overlay] = ACTIONS(1472), + [anon_sym_where] = ACTIONS(1272), + [aux_sym_expr_unary_token1] = ACTIONS(1272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), + [anon_sym_DOT_DOT_LT] = ACTIONS(1272), + [anon_sym_null] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1472), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(1272), + [aux_sym__val_number_token2] = ACTIONS(1272), + [aux_sym__val_number_token3] = ACTIONS(1272), + [aux_sym__val_number_token4] = ACTIONS(1472), + [aux_sym__val_number_token5] = ACTIONS(1472), + [aux_sym__val_number_token6] = ACTIONS(1472), + [anon_sym_0b] = ACTIONS(1472), + [anon_sym_0o] = ACTIONS(1472), + [anon_sym_0x] = ACTIONS(1472), + [sym_val_date] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1272), + [sym__str_back_ticks] = ACTIONS(1272), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), + [aux_sym_env_var_token1] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1272), + [aux_sym_command_token1] = ACTIONS(1272), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1272), }, [216] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4908), - [sym_block] = STATE(4909), - [sym__expression_parenthesized] = STATE(4909), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4909), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4920), + [sym_block] = STATE(4921), + [sym__expression_parenthesized] = STATE(4921), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4921), [sym_comment] = STATE(216), - [aux_sym_shebang_repeat1] = STATE(222), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104236,9 +104248,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -104247,10 +104259,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -104272,39 +104284,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [217] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4911), - [sym_block] = STATE(4912), - [sym__expression_parenthesized] = STATE(4912), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4912), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4920), + [sym_block] = STATE(4921), + [sym__expression_parenthesized] = STATE(4921), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4921), [sym_comment] = STATE(217), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(233), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104348,9 +104360,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -104359,10 +104371,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -104384,39 +104396,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [218] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4911), - [sym_block] = STATE(4912), - [sym__expression_parenthesized] = STATE(4912), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4912), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4922), + [sym_block] = STATE(4923), + [sym__expression_parenthesized] = STATE(4923), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4923), [sym_comment] = STATE(218), - [aux_sym_shebang_repeat1] = STATE(223), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104460,9 +104472,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -104471,10 +104483,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -104496,39 +104508,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [219] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4913), - [sym_block] = STATE(4914), - [sym__expression_parenthesized] = STATE(4914), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4914), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4922), + [sym_block] = STATE(4923), + [sym__expression_parenthesized] = STATE(4923), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4923), [sym_comment] = STATE(219), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(242), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104572,9 +104584,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -104583,10 +104595,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -104608,39 +104620,151 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [220] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4913), - [sym_block] = STATE(4914), - [sym__expression_parenthesized] = STATE(4914), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4914), [sym_comment] = STATE(220), - [aux_sym_shebang_repeat1] = STATE(225), + [aux_sym_shebang_repeat1] = STATE(6789), + [aux_sym__parenthesized_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(1484), + [anon_sym_alias] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_let_DASHenv] = ACTIONS(1484), + [anon_sym_mut] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [aux_sym_cmd_identifier_token1] = ACTIONS(1484), + [aux_sym_cmd_identifier_token2] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1486), + [aux_sym_cmd_identifier_token4] = ACTIONS(1486), + [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [aux_sym_cmd_identifier_token6] = ACTIONS(1486), + [aux_sym_cmd_identifier_token7] = ACTIONS(1486), + [aux_sym_cmd_identifier_token8] = ACTIONS(1484), + [aux_sym_cmd_identifier_token9] = ACTIONS(1484), + [aux_sym_cmd_identifier_token10] = ACTIONS(1486), + [aux_sym_cmd_identifier_token11] = ACTIONS(1486), + [aux_sym_cmd_identifier_token12] = ACTIONS(1484), + [aux_sym_cmd_identifier_token13] = ACTIONS(1484), + [aux_sym_cmd_identifier_token14] = ACTIONS(1484), + [aux_sym_cmd_identifier_token15] = ACTIONS(1484), + [aux_sym_cmd_identifier_token16] = ACTIONS(1486), + [aux_sym_cmd_identifier_token17] = ACTIONS(1486), + [aux_sym_cmd_identifier_token18] = ACTIONS(1484), + [aux_sym_cmd_identifier_token19] = ACTIONS(1486), + [aux_sym_cmd_identifier_token20] = ACTIONS(1486), + [aux_sym_cmd_identifier_token21] = ACTIONS(1486), + [aux_sym_cmd_identifier_token22] = ACTIONS(1486), + [aux_sym_cmd_identifier_token23] = ACTIONS(1486), + [aux_sym_cmd_identifier_token24] = ACTIONS(1486), + [aux_sym_cmd_identifier_token25] = ACTIONS(1486), + [aux_sym_cmd_identifier_token26] = ACTIONS(1486), + [aux_sym_cmd_identifier_token27] = ACTIONS(1486), + [aux_sym_cmd_identifier_token28] = ACTIONS(1486), + [aux_sym_cmd_identifier_token29] = ACTIONS(1486), + [aux_sym_cmd_identifier_token30] = ACTIONS(1486), + [aux_sym_cmd_identifier_token31] = ACTIONS(1486), + [aux_sym_cmd_identifier_token32] = ACTIONS(1484), + [aux_sym_cmd_identifier_token33] = ACTIONS(1486), + [aux_sym_cmd_identifier_token34] = ACTIONS(1484), + [aux_sym_cmd_identifier_token35] = ACTIONS(1486), + [aux_sym_cmd_identifier_token36] = ACTIONS(1486), + [aux_sym_cmd_identifier_token37] = ACTIONS(1486), + [aux_sym_cmd_identifier_token38] = ACTIONS(1484), + [aux_sym_cmd_identifier_token39] = ACTIONS(1486), + [aux_sym_cmd_identifier_token40] = ACTIONS(1486), + [sym__newline] = ACTIONS(1488), + [anon_sym_SEMI] = ACTIONS(1491), + [anon_sym_def] = ACTIONS(1484), + [anon_sym_export_DASHenv] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_error] = ACTIONS(1484), + [anon_sym_DASH2] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_source] = ACTIONS(1484), + [anon_sym_source_DASHenv] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_hide] = ACTIONS(1484), + [anon_sym_hide_DASHenv] = ACTIONS(1484), + [anon_sym_overlay] = ACTIONS(1484), + [anon_sym_where] = ACTIONS(1486), + [aux_sym_expr_unary_token1] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_null] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [aux_sym__val_number_decimal_token1] = ACTIONS(1484), + [aux_sym__val_number_decimal_token2] = ACTIONS(1486), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1486), + [aux_sym__val_number_token2] = ACTIONS(1486), + [aux_sym__val_number_token3] = ACTIONS(1486), + [aux_sym__val_number_token4] = ACTIONS(1484), + [aux_sym__val_number_token5] = ACTIONS(1484), + [aux_sym__val_number_token6] = ACTIONS(1484), + [anon_sym_0b] = ACTIONS(1484), + [anon_sym_0o] = ACTIONS(1484), + [anon_sym_0x] = ACTIONS(1484), + [sym_val_date] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym__str_single_quotes] = ACTIONS(1486), + [sym__str_back_ticks] = ACTIONS(1486), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), + [aux_sym_env_var_token1] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1486), + [aux_sym_command_token1] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1486), + }, + [221] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_block] = STATE(4899), + [sym__expression_parenthesized] = STATE(4899), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4899), + [sym_comment] = STATE(221), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104684,9 +104808,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -104695,10 +104819,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -104719,40 +104843,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [221] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4915), - [sym_block] = STATE(4916), - [sym__expression_parenthesized] = STATE(4916), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4916), - [sym_comment] = STATE(221), - [aux_sym_shebang_repeat1] = STATE(227), + [222] = { + [sym_comment] = STATE(222), + [aux_sym__block_body_repeat1] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1443), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), + }, + [223] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_block] = STATE(4899), + [sym__expression_parenthesized] = STATE(4899), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4899), + [sym_comment] = STATE(223), + [aux_sym_shebang_repeat1] = STATE(291), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104796,9 +105032,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -104807,10 +105043,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -104831,40 +105067,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [222] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4931), - [sym_block] = STATE(4932), - [sym__expression_parenthesized] = STATE(4932), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4932), - [sym_comment] = STATE(222), - [aux_sym_shebang_repeat1] = STATE(1150), + [224] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4926), + [sym_comment] = STATE(224), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -104908,233 +105144,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [223] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4933), - [sym_block] = STATE(4934), - [sym__expression_parenthesized] = STATE(4934), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4934), - [sym_comment] = STATE(223), - [aux_sym_shebang_repeat1] = STATE(1150), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [224] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4933), - [sym_block] = STATE(4934), - [sym__expression_parenthesized] = STATE(4934), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4934), - [sym_comment] = STATE(224), - [aux_sym_shebang_repeat1] = STATE(229), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105143,10 +105155,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105168,39 +105180,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [225] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4935), - [sym_block] = STATE(4936), - [sym__expression_parenthesized] = STATE(4936), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4936), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4926), [sym_comment] = STATE(225), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(258), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105244,9 +105256,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105255,10 +105267,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105280,39 +105292,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [226] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4935), - [sym_block] = STATE(4936), - [sym__expression_parenthesized] = STATE(4936), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4936), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4801), + [sym_block] = STATE(4802), + [sym__expression_parenthesized] = STATE(4802), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4802), [sym_comment] = STATE(226), - [aux_sym_shebang_repeat1] = STATE(230), + [aux_sym_shebang_repeat1] = STATE(229), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105356,9 +105368,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105367,10 +105379,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105392,39 +105404,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [227] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4938), - [sym_block] = STATE(4939), - [sym__expression_parenthesized] = STATE(4939), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4939), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4900), + [sym_block] = STATE(4901), + [sym__expression_parenthesized] = STATE(4901), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4901), [sym_comment] = STATE(227), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105468,9 +105480,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105479,10 +105491,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105504,39 +105516,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [228] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4938), - [sym_block] = STATE(4939), - [sym__expression_parenthesized] = STATE(4939), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4939), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4900), + [sym_block] = STATE(4901), + [sym__expression_parenthesized] = STATE(4901), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4901), [sym_comment] = STATE(228), - [aux_sym_shebang_repeat1] = STATE(231), + [aux_sym_shebang_repeat1] = STATE(260), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105580,9 +105592,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105591,10 +105603,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105616,39 +105628,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [229] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4941), - [sym_block] = STATE(4942), - [sym__expression_parenthesized] = STATE(4942), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4942), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4868), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4869), [sym_comment] = STATE(229), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105692,9 +105704,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105703,10 +105715,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105728,39 +105740,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [230] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4943), - [sym_block] = STATE(4944), - [sym__expression_parenthesized] = STATE(4944), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4944), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4868), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4869), [sym_comment] = STATE(230), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(235), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105804,9 +105816,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105815,10 +105827,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105840,39 +105852,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [231] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4945), - [sym_block] = STATE(4946), - [sym__expression_parenthesized] = STATE(4946), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4946), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4870), + [sym_block] = STATE(4871), + [sym__expression_parenthesized] = STATE(4871), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4871), [sym_comment] = STATE(231), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(237), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -105916,9 +105928,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -105927,10 +105939,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -105952,39 +105964,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [232] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4945), - [sym_block] = STATE(4946), - [sym__expression_parenthesized] = STATE(4946), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4946), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4872), + [sym_block] = STATE(4873), + [sym__expression_parenthesized] = STATE(4873), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4873), [sym_comment] = STATE(232), - [aux_sym_shebang_repeat1] = STATE(233), + [aux_sym_shebang_repeat1] = STATE(239), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106028,9 +106040,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -106039,10 +106051,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106064,39 +106076,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [233] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4948), - [sym_block] = STATE(4949), - [sym__expression_parenthesized] = STATE(4949), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4949), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4928), + [sym_block] = STATE(4929), + [sym__expression_parenthesized] = STATE(4929), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4929), [sym_comment] = STATE(233), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106140,9 +106152,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -106151,10 +106163,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106176,39 +106188,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [234] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4908), - [sym_block] = STATE(4909), - [sym__expression_parenthesized] = STATE(4909), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4909), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4902), + [sym_block] = STATE(4903), + [sym__expression_parenthesized] = STATE(4903), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4903), [sym_comment] = STATE(234), - [aux_sym_shebang_repeat1] = STATE(241), + [aux_sym_shebang_repeat1] = STATE(263), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106252,9 +106264,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -106263,10 +106275,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -106288,39 +106300,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [235] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4911), - [sym_block] = STATE(4912), - [sym__expression_parenthesized] = STATE(4912), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4912), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression_parenthesized] = STATE(4896), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4896), [sym_comment] = STATE(235), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106364,7 +106376,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -106400,39 +106412,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [236] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4911), - [sym_block] = STATE(4912), - [sym__expression_parenthesized] = STATE(4912), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4912), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression_parenthesized] = STATE(4896), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4896), [sym_comment] = STATE(236), - [aux_sym_shebang_repeat1] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(243), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106476,7 +106488,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -106512,39 +106524,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [237] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4913), - [sym_block] = STATE(4914), - [sym__expression_parenthesized] = STATE(4914), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4914), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_block] = STATE(4899), + [sym__expression_parenthesized] = STATE(4899), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4899), [sym_comment] = STATE(237), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106588,7 +106600,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -106624,39 +106636,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [238] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4913), - [sym_block] = STATE(4914), - [sym__expression_parenthesized] = STATE(4914), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4914), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_block] = STATE(4899), + [sym__expression_parenthesized] = STATE(4899), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4899), [sym_comment] = STATE(238), - [aux_sym_shebang_repeat1] = STATE(210), + [aux_sym_shebang_repeat1] = STATE(244), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106700,7 +106712,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -106736,39 +106748,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [239] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4915), - [sym_block] = STATE(4916), - [sym__expression_parenthesized] = STATE(4916), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4916), + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4900), + [sym_block] = STATE(4901), + [sym__expression_parenthesized] = STATE(4901), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4901), [sym_comment] = STATE(239), - [aux_sym_shebang_repeat1] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -106812,7 +106824,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -106848,151 +106860,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(253), }, [240] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4900), + [sym_block] = STATE(4901), + [sym__expression_parenthesized] = STATE(4901), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4901), [sym_comment] = STATE(240), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1389), - [anon_sym_export] = ACTIONS(1387), - [anon_sym_alias] = ACTIONS(1387), - [anon_sym_let] = ACTIONS(1387), - [anon_sym_let_DASHenv] = ACTIONS(1387), - [anon_sym_mut] = ACTIONS(1387), - [anon_sym_const] = ACTIONS(1387), - [aux_sym_cmd_identifier_token1] = ACTIONS(1387), - [aux_sym_cmd_identifier_token2] = ACTIONS(1389), - [aux_sym_cmd_identifier_token3] = ACTIONS(1389), - [aux_sym_cmd_identifier_token4] = ACTIONS(1389), - [aux_sym_cmd_identifier_token5] = ACTIONS(1389), - [aux_sym_cmd_identifier_token6] = ACTIONS(1389), - [aux_sym_cmd_identifier_token7] = ACTIONS(1389), - [aux_sym_cmd_identifier_token8] = ACTIONS(1387), - [aux_sym_cmd_identifier_token9] = ACTIONS(1387), - [aux_sym_cmd_identifier_token10] = ACTIONS(1389), - [aux_sym_cmd_identifier_token11] = ACTIONS(1389), - [aux_sym_cmd_identifier_token12] = ACTIONS(1387), - [aux_sym_cmd_identifier_token13] = ACTIONS(1387), - [aux_sym_cmd_identifier_token14] = ACTIONS(1387), - [aux_sym_cmd_identifier_token15] = ACTIONS(1387), - [aux_sym_cmd_identifier_token16] = ACTIONS(1389), - [aux_sym_cmd_identifier_token17] = ACTIONS(1389), - [aux_sym_cmd_identifier_token18] = ACTIONS(1387), - [aux_sym_cmd_identifier_token19] = ACTIONS(1389), - [aux_sym_cmd_identifier_token20] = ACTIONS(1389), - [aux_sym_cmd_identifier_token21] = ACTIONS(1389), - [aux_sym_cmd_identifier_token22] = ACTIONS(1389), - [aux_sym_cmd_identifier_token23] = ACTIONS(1389), - [aux_sym_cmd_identifier_token24] = ACTIONS(1389), - [aux_sym_cmd_identifier_token25] = ACTIONS(1389), - [aux_sym_cmd_identifier_token26] = ACTIONS(1389), - [aux_sym_cmd_identifier_token27] = ACTIONS(1389), - [aux_sym_cmd_identifier_token28] = ACTIONS(1389), - [aux_sym_cmd_identifier_token29] = ACTIONS(1389), - [aux_sym_cmd_identifier_token30] = ACTIONS(1389), - [aux_sym_cmd_identifier_token31] = ACTIONS(1389), - [aux_sym_cmd_identifier_token32] = ACTIONS(1387), - [aux_sym_cmd_identifier_token33] = ACTIONS(1389), - [aux_sym_cmd_identifier_token34] = ACTIONS(1387), - [aux_sym_cmd_identifier_token35] = ACTIONS(1389), - [aux_sym_cmd_identifier_token36] = ACTIONS(1389), - [aux_sym_cmd_identifier_token37] = ACTIONS(1389), - [aux_sym_cmd_identifier_token38] = ACTIONS(1387), - [aux_sym_cmd_identifier_token39] = ACTIONS(1389), - [aux_sym_cmd_identifier_token40] = ACTIONS(1389), - [sym__newline] = ACTIONS(1474), - [anon_sym_SEMI] = ACTIONS(1474), - [anon_sym_def] = ACTIONS(1387), - [anon_sym_export_DASHenv] = ACTIONS(1387), - [anon_sym_extern] = ACTIONS(1387), - [anon_sym_module] = ACTIONS(1387), - [anon_sym_use] = ACTIONS(1387), - [anon_sym_LBRACK] = ACTIONS(1389), - [anon_sym_LPAREN] = ACTIONS(1389), - [anon_sym_DOLLAR] = ACTIONS(1387), - [anon_sym_error] = ACTIONS(1387), - [anon_sym_DASH2] = ACTIONS(1387), - [anon_sym_break] = ACTIONS(1387), - [anon_sym_continue] = ACTIONS(1387), - [anon_sym_for] = ACTIONS(1387), - [anon_sym_loop] = ACTIONS(1387), - [anon_sym_while] = ACTIONS(1387), - [anon_sym_do] = ACTIONS(1387), - [anon_sym_if] = ACTIONS(1387), - [anon_sym_match] = ACTIONS(1387), - [anon_sym_LBRACE] = ACTIONS(1389), - [anon_sym_DOT_DOT] = ACTIONS(1387), - [anon_sym_try] = ACTIONS(1387), - [anon_sym_return] = ACTIONS(1387), - [anon_sym_source] = ACTIONS(1387), - [anon_sym_source_DASHenv] = ACTIONS(1387), - [anon_sym_register] = ACTIONS(1387), - [anon_sym_hide] = ACTIONS(1387), - [anon_sym_hide_DASHenv] = ACTIONS(1387), - [anon_sym_overlay] = ACTIONS(1387), - [anon_sym_where] = ACTIONS(1389), - [aux_sym_expr_unary_token1] = ACTIONS(1389), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1389), - [anon_sym_DOT_DOT_LT] = ACTIONS(1389), - [anon_sym_null] = ACTIONS(1387), - [anon_sym_true] = ACTIONS(1387), - [anon_sym_false] = ACTIONS(1387), - [aux_sym__val_number_decimal_token1] = ACTIONS(1387), - [aux_sym__val_number_decimal_token2] = ACTIONS(1389), - [aux_sym__val_number_decimal_token3] = ACTIONS(1389), - [aux_sym__val_number_decimal_token4] = ACTIONS(1389), - [aux_sym__val_number_token1] = ACTIONS(1389), - [aux_sym__val_number_token2] = ACTIONS(1389), - [aux_sym__val_number_token3] = ACTIONS(1389), - [aux_sym__val_number_token4] = ACTIONS(1387), - [aux_sym__val_number_token5] = ACTIONS(1387), - [aux_sym__val_number_token6] = ACTIONS(1387), - [anon_sym_0b] = ACTIONS(1387), - [anon_sym_0o] = ACTIONS(1387), - [anon_sym_0x] = ACTIONS(1387), - [sym_val_date] = ACTIONS(1389), - [anon_sym_DQUOTE] = ACTIONS(1389), - [sym__str_single_quotes] = ACTIONS(1389), - [sym__str_back_ticks] = ACTIONS(1389), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1389), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1389), - [aux_sym_env_var_token1] = ACTIONS(1387), - [anon_sym_CARET] = ACTIONS(1389), - [aux_sym_command_token1] = ACTIONS(1389), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1389), - }, - [241] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4931), - [sym_block] = STATE(4932), - [sym__expression_parenthesized] = STATE(4932), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4932), - [sym_comment] = STATE(241), - [aux_sym_shebang_repeat1] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(246), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107036,7 +106936,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -107071,40 +106971,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [242] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4933), - [sym_block] = STATE(4934), - [sym__expression_parenthesized] = STATE(4934), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4934), - [sym_comment] = STATE(242), - [aux_sym_shebang_repeat1] = STATE(1150), + [241] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4918), + [sym_block] = STATE(4919), + [sym__expression_parenthesized] = STATE(4919), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4919), + [sym_comment] = STATE(241), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107148,9 +107048,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -107159,10 +107059,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -107183,40 +107083,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [243] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4933), - [sym_block] = STATE(4934), - [sym__expression_parenthesized] = STATE(4934), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4934), - [sym_comment] = STATE(243), - [aux_sym_shebang_repeat1] = STATE(250), + [242] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4931), + [sym_comment] = STATE(242), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107260,9 +107160,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -107271,10 +107171,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -107295,152 +107195,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [244] = { - [sym_comment] = STATE(244), - [aux_sym_shebang_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_alias] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_let_DASHenv] = ACTIONS(1274), - [anon_sym_mut] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [aux_sym_cmd_identifier_token1] = ACTIONS(1274), - [aux_sym_cmd_identifier_token2] = ACTIONS(1276), - [aux_sym_cmd_identifier_token3] = ACTIONS(1276), - [aux_sym_cmd_identifier_token4] = ACTIONS(1276), - [aux_sym_cmd_identifier_token5] = ACTIONS(1276), - [aux_sym_cmd_identifier_token6] = ACTIONS(1276), - [aux_sym_cmd_identifier_token7] = ACTIONS(1276), - [aux_sym_cmd_identifier_token8] = ACTIONS(1274), - [aux_sym_cmd_identifier_token9] = ACTIONS(1274), - [aux_sym_cmd_identifier_token10] = ACTIONS(1276), - [aux_sym_cmd_identifier_token11] = ACTIONS(1276), - [aux_sym_cmd_identifier_token12] = ACTIONS(1274), - [aux_sym_cmd_identifier_token13] = ACTIONS(1274), - [aux_sym_cmd_identifier_token14] = ACTIONS(1274), - [aux_sym_cmd_identifier_token15] = ACTIONS(1274), - [aux_sym_cmd_identifier_token16] = ACTIONS(1276), - [aux_sym_cmd_identifier_token17] = ACTIONS(1276), - [aux_sym_cmd_identifier_token18] = ACTIONS(1274), - [aux_sym_cmd_identifier_token19] = ACTIONS(1276), - [aux_sym_cmd_identifier_token20] = ACTIONS(1276), - [aux_sym_cmd_identifier_token21] = ACTIONS(1276), - [aux_sym_cmd_identifier_token22] = ACTIONS(1276), - [aux_sym_cmd_identifier_token23] = ACTIONS(1276), - [aux_sym_cmd_identifier_token24] = ACTIONS(1276), - [aux_sym_cmd_identifier_token25] = ACTIONS(1276), - [aux_sym_cmd_identifier_token26] = ACTIONS(1276), - [aux_sym_cmd_identifier_token27] = ACTIONS(1276), - [aux_sym_cmd_identifier_token28] = ACTIONS(1276), - [aux_sym_cmd_identifier_token29] = ACTIONS(1276), - [aux_sym_cmd_identifier_token30] = ACTIONS(1276), - [aux_sym_cmd_identifier_token31] = ACTIONS(1276), - [aux_sym_cmd_identifier_token32] = ACTIONS(1274), - [aux_sym_cmd_identifier_token33] = ACTIONS(1276), - [aux_sym_cmd_identifier_token34] = ACTIONS(1274), - [aux_sym_cmd_identifier_token35] = ACTIONS(1276), - [aux_sym_cmd_identifier_token36] = ACTIONS(1276), - [aux_sym_cmd_identifier_token37] = ACTIONS(1276), - [aux_sym_cmd_identifier_token38] = ACTIONS(1274), - [aux_sym_cmd_identifier_token39] = ACTIONS(1276), - [aux_sym_cmd_identifier_token40] = ACTIONS(1276), - [sym__newline] = ACTIONS(1477), - [anon_sym_SEMI] = ACTIONS(1276), - [anon_sym_PIPE] = ACTIONS(1276), - [anon_sym_def] = ACTIONS(1274), - [anon_sym_export_DASHenv] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_LBRACK] = ACTIONS(1276), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1274), - [anon_sym_error] = ACTIONS(1274), - [anon_sym_DASH2] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_LBRACE] = ACTIONS(1276), - [anon_sym_DOT_DOT] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_source] = ACTIONS(1274), - [anon_sym_source_DASHenv] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_hide] = ACTIONS(1274), - [anon_sym_hide_DASHenv] = ACTIONS(1274), - [anon_sym_overlay] = ACTIONS(1274), - [anon_sym_where] = ACTIONS(1276), - [aux_sym_expr_unary_token1] = ACTIONS(1276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1276), - [anon_sym_DOT_DOT_LT] = ACTIONS(1276), - [anon_sym_null] = ACTIONS(1274), - [anon_sym_true] = ACTIONS(1274), - [anon_sym_false] = 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(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), - [aux_sym__val_number_token1] = ACTIONS(1276), - [aux_sym__val_number_token2] = ACTIONS(1276), - [aux_sym__val_number_token3] = ACTIONS(1276), - [aux_sym__val_number_token4] = ACTIONS(1274), - [aux_sym__val_number_token5] = ACTIONS(1274), - [aux_sym__val_number_token6] = ACTIONS(1274), - [anon_sym_0b] = ACTIONS(1274), - [anon_sym_0o] = ACTIONS(1274), - [anon_sym_0x] = ACTIONS(1274), - [sym_val_date] = ACTIONS(1276), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym__str_single_quotes] = ACTIONS(1276), - [sym__str_back_ticks] = ACTIONS(1276), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1276), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1276), - [aux_sym_env_var_token1] = ACTIONS(1274), - [anon_sym_CARET] = ACTIONS(1276), - [aux_sym_command_token1] = ACTIONS(1276), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1276), - }, - [245] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4935), - [sym_block] = STATE(4936), - [sym__expression_parenthesized] = STATE(4936), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4936), - [sym_comment] = STATE(245), - [aux_sym_shebang_repeat1] = STATE(274), + [243] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4918), + [sym_block] = STATE(4919), + [sym__expression_parenthesized] = STATE(4919), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4919), + [sym_comment] = STATE(243), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107484,7 +107272,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -107519,40 +107307,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [246] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4938), - [sym_block] = STATE(4939), - [sym__expression_parenthesized] = STATE(4939), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4939), - [sym_comment] = STATE(246), - [aux_sym_shebang_repeat1] = STATE(1150), + [244] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4920), + [sym_block] = STATE(4921), + [sym__expression_parenthesized] = STATE(4921), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4921), + [sym_comment] = STATE(244), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107596,7 +107384,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -107631,40 +107419,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [247] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4881), - [sym_block] = STATE(4882), - [sym__expression_parenthesized] = STATE(4882), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4882), - [sym_comment] = STATE(247), - [aux_sym_shebang_repeat1] = STATE(1150), + [245] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4920), + [sym_block] = STATE(4921), + [sym__expression_parenthesized] = STATE(4921), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4921), + [sym_comment] = STATE(245), + [aux_sym_shebang_repeat1] = STATE(250), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107708,7 +107496,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -107743,40 +107531,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [248] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4938), - [sym_block] = STATE(4939), - [sym__expression_parenthesized] = STATE(4939), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4939), - [sym_comment] = STATE(248), - [aux_sym_shebang_repeat1] = STATE(275), + [246] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4922), + [sym_block] = STATE(4923), + [sym__expression_parenthesized] = STATE(4923), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4923), + [sym_comment] = STATE(246), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -107820,7 +107608,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -107855,39 +107643,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [249] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4814), - [sym_block] = STATE(4815), - [sym__expression_parenthesized] = STATE(4815), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4815), - [sym_comment] = STATE(249), + [247] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4922), + [sym_block] = STATE(4923), + [sym__expression_parenthesized] = STATE(4923), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4923), + [sym_comment] = STATE(247), [aux_sym_shebang_repeat1] = STATE(251), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), @@ -107932,9 +107720,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -107943,10 +107731,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -107967,40 +107755,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [250] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4941), - [sym_block] = STATE(4942), - [sym__expression_parenthesized] = STATE(4942), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4942), - [sym_comment] = STATE(250), - [aux_sym_shebang_repeat1] = STATE(1150), + [248] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4926), + [sym_comment] = STATE(248), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108044,7 +107832,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), @@ -108079,40 +107867,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [251] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4881), - [sym_block] = STATE(4882), - [sym__expression_parenthesized] = STATE(4882), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4882), - [sym_comment] = STATE(251), - [aux_sym_shebang_repeat1] = STATE(1150), + [249] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4926), + [sym_comment] = STATE(249), + [aux_sym_shebang_repeat1] = STATE(252), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108156,9 +107944,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -108167,10 +107955,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108191,40 +107979,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [252] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4881), - [sym_block] = STATE(4882), - [sym__expression_parenthesized] = STATE(4882), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4882), - [sym_comment] = STATE(252), - [aux_sym_shebang_repeat1] = STATE(255), + [250] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4928), + [sym_block] = STATE(4929), + [sym__expression_parenthesized] = STATE(4929), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4929), + [sym_comment] = STATE(250), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108268,9 +108056,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -108279,10 +108067,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108303,40 +108091,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [253] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4883), - [sym_block] = STATE(4884), - [sym__expression_parenthesized] = STATE(4884), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4884), - [sym_comment] = STATE(253), - [aux_sym_shebang_repeat1] = STATE(257), + [251] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4931), + [sym_comment] = STATE(251), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108380,9 +108168,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -108391,10 +108179,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108415,152 +108203,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [254] = { - [sym_comment] = STATE(254), - [aux_sym_shebang_repeat1] = STATE(6678), - [aux_sym__parenthesized_body_repeat1] = STATE(254), - [anon_sym_export] = ACTIONS(1488), - [anon_sym_alias] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_let_DASHenv] = ACTIONS(1488), - [anon_sym_mut] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [aux_sym_cmd_identifier_token1] = ACTIONS(1488), - [aux_sym_cmd_identifier_token2] = ACTIONS(1490), - [aux_sym_cmd_identifier_token3] = ACTIONS(1490), - [aux_sym_cmd_identifier_token4] = ACTIONS(1490), - [aux_sym_cmd_identifier_token5] = ACTIONS(1490), - [aux_sym_cmd_identifier_token6] = ACTIONS(1490), - [aux_sym_cmd_identifier_token7] = ACTIONS(1490), - [aux_sym_cmd_identifier_token8] = ACTIONS(1488), - [aux_sym_cmd_identifier_token9] = ACTIONS(1488), - [aux_sym_cmd_identifier_token10] = ACTIONS(1490), - [aux_sym_cmd_identifier_token11] = ACTIONS(1490), - [aux_sym_cmd_identifier_token12] = ACTIONS(1488), - [aux_sym_cmd_identifier_token13] = ACTIONS(1488), - [aux_sym_cmd_identifier_token14] = ACTIONS(1488), - [aux_sym_cmd_identifier_token15] = ACTIONS(1488), - [aux_sym_cmd_identifier_token16] = ACTIONS(1490), - [aux_sym_cmd_identifier_token17] = ACTIONS(1490), - [aux_sym_cmd_identifier_token18] = ACTIONS(1488), - [aux_sym_cmd_identifier_token19] = ACTIONS(1490), - [aux_sym_cmd_identifier_token20] = ACTIONS(1490), - [aux_sym_cmd_identifier_token21] = ACTIONS(1490), - [aux_sym_cmd_identifier_token22] = ACTIONS(1490), - [aux_sym_cmd_identifier_token23] = ACTIONS(1490), - [aux_sym_cmd_identifier_token24] = ACTIONS(1490), - [aux_sym_cmd_identifier_token25] = ACTIONS(1490), - [aux_sym_cmd_identifier_token26] = ACTIONS(1490), - [aux_sym_cmd_identifier_token27] = ACTIONS(1490), - [aux_sym_cmd_identifier_token28] = ACTIONS(1490), - [aux_sym_cmd_identifier_token29] = ACTIONS(1490), - [aux_sym_cmd_identifier_token30] = ACTIONS(1490), - [aux_sym_cmd_identifier_token31] = ACTIONS(1490), - [aux_sym_cmd_identifier_token32] = ACTIONS(1488), - [aux_sym_cmd_identifier_token33] = ACTIONS(1490), - [aux_sym_cmd_identifier_token34] = ACTIONS(1488), - [aux_sym_cmd_identifier_token35] = ACTIONS(1490), - [aux_sym_cmd_identifier_token36] = ACTIONS(1490), - [aux_sym_cmd_identifier_token37] = ACTIONS(1490), - [aux_sym_cmd_identifier_token38] = ACTIONS(1488), - [aux_sym_cmd_identifier_token39] = ACTIONS(1490), - [aux_sym_cmd_identifier_token40] = ACTIONS(1490), - [sym__newline] = ACTIONS(1492), - [anon_sym_SEMI] = ACTIONS(1495), - [anon_sym_def] = ACTIONS(1488), - [anon_sym_export_DASHenv] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_module] = ACTIONS(1488), - [anon_sym_use] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_error] = ACTIONS(1488), - [anon_sym_DASH2] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_loop] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_match] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_source] = ACTIONS(1488), - [anon_sym_source_DASHenv] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_hide] = ACTIONS(1488), - [anon_sym_hide_DASHenv] = ACTIONS(1488), - [anon_sym_overlay] = ACTIONS(1488), - [anon_sym_where] = ACTIONS(1490), - [aux_sym_expr_unary_token1] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1490), - [aux_sym__val_number_decimal_token4] = ACTIONS(1490), - [aux_sym__val_number_token1] = ACTIONS(1490), - [aux_sym__val_number_token2] = ACTIONS(1490), - [aux_sym__val_number_token3] = ACTIONS(1490), - [aux_sym__val_number_token4] = ACTIONS(1488), - [aux_sym__val_number_token5] = ACTIONS(1488), - [aux_sym__val_number_token6] = ACTIONS(1488), - [anon_sym_0b] = ACTIONS(1488), - [anon_sym_0o] = ACTIONS(1488), - [anon_sym_0x] = ACTIONS(1488), - [sym_val_date] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym__str_single_quotes] = ACTIONS(1490), - [sym__str_back_ticks] = ACTIONS(1490), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1490), - [aux_sym_env_var_token1] = ACTIONS(1488), - [anon_sym_CARET] = ACTIONS(1490), - [aux_sym_command_token1] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1490), - }, - [255] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4908), - [sym_block] = STATE(4909), - [sym__expression_parenthesized] = STATE(4909), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4909), - [sym_comment] = STATE(255), - [aux_sym_shebang_repeat1] = STATE(1150), + [252] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4932), + [sym_block] = STATE(4933), + [sym__expression_parenthesized] = STATE(4933), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4933), + [sym_comment] = STATE(252), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108604,9 +108280,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -108615,10 +108291,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108639,40 +108315,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [256] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4908), - [sym_block] = STATE(4909), - [sym__expression_parenthesized] = STATE(4909), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4909), - [sym_comment] = STATE(256), - [aux_sym_shebang_repeat1] = STATE(262), + [253] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4932), + [sym_block] = STATE(4933), + [sym__expression_parenthesized] = STATE(4933), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4933), + [sym_comment] = STATE(253), + [aux_sym_shebang_repeat1] = STATE(254), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108716,9 +108392,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -108727,10 +108403,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108751,40 +108427,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [257] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4911), - [sym_block] = STATE(4912), - [sym__expression_parenthesized] = STATE(4912), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4912), - [sym_comment] = STATE(257), - [aux_sym_shebang_repeat1] = STATE(1150), + [254] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4935), + [sym_block] = STATE(4936), + [sym__expression_parenthesized] = STATE(4936), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4936), + [sym_comment] = STATE(254), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108828,9 +108504,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(447), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -108839,10 +108515,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108863,40 +108539,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [258] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4911), - [sym_block] = STATE(4912), - [sym__expression_parenthesized] = STATE(4912), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4912), - [sym_comment] = STATE(258), - [aux_sym_shebang_repeat1] = STATE(263), + [255] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4868), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4869), + [sym_comment] = STATE(255), + [aux_sym_shebang_repeat1] = STATE(212), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -108940,7 +108616,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -108951,10 +108627,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -108975,152 +108651,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [259] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4913), - [sym_block] = STATE(4914), - [sym__expression_parenthesized] = STATE(4914), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4914), - [sym_comment] = STATE(259), - [aux_sym_shebang_repeat1] = STATE(1150), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [sym__newline] = ACTIONS(1452), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [256] = { + [sym_comment] = STATE(256), + [anon_sym_export] = ACTIONS(1472), + [anon_sym_alias] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_let_DASHenv] = ACTIONS(1472), + [anon_sym_mut] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [aux_sym_cmd_identifier_token1] = ACTIONS(1472), + [aux_sym_cmd_identifier_token2] = ACTIONS(1272), + [aux_sym_cmd_identifier_token3] = ACTIONS(1272), + [aux_sym_cmd_identifier_token4] = ACTIONS(1272), + [aux_sym_cmd_identifier_token5] = ACTIONS(1272), + [aux_sym_cmd_identifier_token6] = ACTIONS(1272), + [aux_sym_cmd_identifier_token7] = ACTIONS(1272), + [aux_sym_cmd_identifier_token8] = ACTIONS(1472), + [aux_sym_cmd_identifier_token9] = ACTIONS(1472), + [aux_sym_cmd_identifier_token10] = ACTIONS(1272), + [aux_sym_cmd_identifier_token11] = ACTIONS(1272), + [aux_sym_cmd_identifier_token12] = ACTIONS(1472), + [aux_sym_cmd_identifier_token13] = ACTIONS(1472), + [aux_sym_cmd_identifier_token14] = ACTIONS(1472), + [aux_sym_cmd_identifier_token15] = ACTIONS(1472), + [aux_sym_cmd_identifier_token16] = ACTIONS(1272), + [aux_sym_cmd_identifier_token17] = ACTIONS(1272), + [aux_sym_cmd_identifier_token18] = ACTIONS(1472), + [aux_sym_cmd_identifier_token19] = ACTIONS(1272), + [aux_sym_cmd_identifier_token20] = ACTIONS(1272), + [aux_sym_cmd_identifier_token21] = ACTIONS(1272), + [aux_sym_cmd_identifier_token22] = ACTIONS(1272), + [aux_sym_cmd_identifier_token23] = ACTIONS(1272), + [aux_sym_cmd_identifier_token24] = ACTIONS(1272), + [aux_sym_cmd_identifier_token25] = ACTIONS(1272), + [aux_sym_cmd_identifier_token26] = ACTIONS(1272), + [aux_sym_cmd_identifier_token27] = ACTIONS(1272), + [aux_sym_cmd_identifier_token28] = ACTIONS(1272), + [aux_sym_cmd_identifier_token29] = ACTIONS(1272), + [aux_sym_cmd_identifier_token30] = ACTIONS(1272), + [aux_sym_cmd_identifier_token31] = ACTIONS(1272), + [aux_sym_cmd_identifier_token32] = ACTIONS(1472), + [aux_sym_cmd_identifier_token33] = ACTIONS(1272), + [aux_sym_cmd_identifier_token34] = ACTIONS(1472), + [aux_sym_cmd_identifier_token35] = ACTIONS(1272), + [aux_sym_cmd_identifier_token36] = ACTIONS(1272), + [aux_sym_cmd_identifier_token37] = ACTIONS(1272), + [aux_sym_cmd_identifier_token38] = ACTIONS(1472), + [aux_sym_cmd_identifier_token39] = ACTIONS(1272), + [aux_sym_cmd_identifier_token40] = ACTIONS(1272), + [sym__newline] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1472), + [anon_sym_export_DASHenv] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_module] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_error] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_source] = ACTIONS(1472), + [anon_sym_source_DASHenv] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_hide] = ACTIONS(1472), + [anon_sym_hide_DASHenv] = ACTIONS(1472), + [anon_sym_overlay] = ACTIONS(1472), + [anon_sym_where] = ACTIONS(1272), + [aux_sym_expr_unary_token1] = ACTIONS(1272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), + [anon_sym_DOT_DOT_LT] = ACTIONS(1272), + [anon_sym_null] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1472), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(1272), + [aux_sym__val_number_token2] = ACTIONS(1272), + [aux_sym__val_number_token3] = ACTIONS(1272), + [aux_sym__val_number_token4] = ACTIONS(1472), + [aux_sym__val_number_token5] = ACTIONS(1472), + [aux_sym__val_number_token6] = ACTIONS(1472), + [anon_sym_0b] = ACTIONS(1472), + [anon_sym_0o] = ACTIONS(1472), + [anon_sym_0x] = ACTIONS(1472), + [sym_val_date] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1272), + [sym__str_back_ticks] = ACTIONS(1272), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), + [aux_sym_env_var_token1] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1272), + [aux_sym_command_token1] = ACTIONS(1272), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1272), }, - [260] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4913), - [sym_block] = STATE(4914), - [sym__expression_parenthesized] = STATE(4914), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4914), - [sym_comment] = STATE(260), - [aux_sym_shebang_repeat1] = STATE(265), + [257] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4920), + [sym_block] = STATE(4921), + [sym__expression_parenthesized] = STATE(4921), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4921), + [sym_comment] = STATE(257), + [aux_sym_shebang_repeat1] = STATE(266), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109164,7 +108840,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -109175,10 +108851,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109199,40 +108875,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [261] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4915), - [sym_block] = STATE(4916), - [sym__expression_parenthesized] = STATE(4916), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4916), - [sym_comment] = STATE(261), - [aux_sym_shebang_repeat1] = STATE(267), + [258] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4932), + [sym_block] = STATE(4933), + [sym__expression_parenthesized] = STATE(4933), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4933), + [sym_comment] = STATE(258), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109276,9 +108952,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -109287,10 +108963,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109311,40 +108987,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [262] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4931), - [sym_block] = STATE(4932), - [sym__expression_parenthesized] = STATE(4932), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4932), - [sym_comment] = STATE(262), - [aux_sym_shebang_repeat1] = STATE(1150), + [259] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4932), + [sym_block] = STATE(4933), + [sym__expression_parenthesized] = STATE(4933), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4933), + [sym_comment] = STATE(259), + [aux_sym_shebang_repeat1] = STATE(261), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109388,9 +109064,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -109399,10 +109075,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109423,40 +109099,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [263] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4933), - [sym_block] = STATE(4934), - [sym__expression_parenthesized] = STATE(4934), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4934), - [sym_comment] = STATE(263), - [aux_sym_shebang_repeat1] = STATE(1150), + [260] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4922), + [sym_block] = STATE(4923), + [sym__expression_parenthesized] = STATE(4923), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4923), + [sym_comment] = STATE(260), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109500,7 +109176,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -109511,10 +109187,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109535,40 +109211,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [264] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4933), - [sym_block] = STATE(4934), - [sym__expression_parenthesized] = STATE(4934), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4934), - [sym_comment] = STATE(264), - [aux_sym_shebang_repeat1] = STATE(269), + [261] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4935), + [sym_block] = STATE(4936), + [sym__expression_parenthesized] = STATE(4936), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4936), + [sym_comment] = STATE(261), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109612,9 +109288,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -109623,10 +109299,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109647,40 +109323,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [265] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4935), - [sym_block] = STATE(4936), - [sym__expression_parenthesized] = STATE(4936), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4936), - [sym_comment] = STATE(265), - [aux_sym_shebang_repeat1] = STATE(1150), + [262] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4922), + [sym_block] = STATE(4923), + [sym__expression_parenthesized] = STATE(4923), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4923), + [sym_comment] = STATE(262), + [aux_sym_shebang_repeat1] = STATE(267), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109724,7 +109400,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -109735,10 +109411,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109759,40 +109435,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [266] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4935), - [sym_block] = STATE(4936), - [sym__expression_parenthesized] = STATE(4936), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4936), - [sym_comment] = STATE(266), - [aux_sym_shebang_repeat1] = STATE(270), + [263] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4926), + [sym_comment] = STATE(263), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109836,7 +109512,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -109847,10 +109523,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109871,40 +109547,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [267] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4938), - [sym_block] = STATE(4939), - [sym__expression_parenthesized] = STATE(4939), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4939), - [sym_comment] = STATE(267), - [aux_sym_shebang_repeat1] = STATE(1150), + [264] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4801), + [sym_block] = STATE(4802), + [sym__expression_parenthesized] = STATE(4802), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4802), + [sym_comment] = STATE(264), + [aux_sym_shebang_repeat1] = STATE(274), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -109948,9 +109624,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -109959,10 +109635,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -109983,40 +109659,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [268] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4938), - [sym_block] = STATE(4939), - [sym__expression_parenthesized] = STATE(4939), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4939), - [sym_comment] = STATE(268), - [aux_sym_shebang_repeat1] = STATE(271), + [265] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4925), + [sym_block] = STATE(4926), + [sym__expression_parenthesized] = STATE(4926), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4926), + [sym_comment] = STATE(265), + [aux_sym_shebang_repeat1] = STATE(268), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110060,7 +109736,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -110071,10 +109747,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110095,40 +109771,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [269] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4941), - [sym_block] = STATE(4942), - [sym__expression_parenthesized] = STATE(4942), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4942), - [sym_comment] = STATE(269), - [aux_sym_shebang_repeat1] = STATE(1150), + [266] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4928), + [sym_block] = STATE(4929), + [sym__expression_parenthesized] = STATE(4929), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4929), + [sym_comment] = STATE(266), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110172,7 +109848,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -110183,10 +109859,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110207,40 +109883,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [270] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4943), - [sym_block] = STATE(4944), - [sym__expression_parenthesized] = STATE(4944), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4944), - [sym_comment] = STATE(270), - [aux_sym_shebang_repeat1] = STATE(1150), + [267] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4930), + [sym_block] = STATE(4931), + [sym__expression_parenthesized] = STATE(4931), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4931), + [sym_comment] = STATE(267), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110284,7 +109960,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -110295,10 +109971,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110319,40 +109995,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [271] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4945), - [sym_block] = STATE(4946), - [sym__expression_parenthesized] = STATE(4946), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4946), - [sym_comment] = STATE(271), - [aux_sym_shebang_repeat1] = STATE(1150), + [268] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4932), + [sym_block] = STATE(4933), + [sym__expression_parenthesized] = STATE(4933), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4933), + [sym_comment] = STATE(268), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110396,7 +110072,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -110407,10 +110083,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110431,40 +110107,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [272] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4945), - [sym_block] = STATE(4946), - [sym__expression_parenthesized] = STATE(4946), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4946), - [sym_comment] = STATE(272), - [aux_sym_shebang_repeat1] = STATE(273), + [269] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4932), + [sym_block] = STATE(4933), + [sym__expression_parenthesized] = STATE(4933), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4933), + [sym_comment] = STATE(269), + [aux_sym_shebang_repeat1] = STATE(270), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110508,7 +110184,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -110519,10 +110195,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110543,40 +110219,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [273] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4948), - [sym_block] = STATE(4949), - [sym__expression_parenthesized] = STATE(4949), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4949), - [sym_comment] = STATE(273), - [aux_sym_shebang_repeat1] = STATE(1150), + [270] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4935), + [sym_block] = STATE(4936), + [sym__expression_parenthesized] = STATE(4936), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4936), + [sym_comment] = STATE(270), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110620,7 +110296,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), @@ -110631,10 +110307,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110655,40 +110331,264 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [274] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4943), - [sym_block] = STATE(4944), - [sym__expression_parenthesized] = STATE(4944), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4944), - [sym_comment] = STATE(274), - [aux_sym_shebang_repeat1] = STATE(1150), + [271] = { + [sym_comment] = STATE(271), + [anon_sym_export] = ACTIONS(1262), + [anon_sym_alias] = ACTIONS(1262), + [anon_sym_let] = ACTIONS(1262), + [anon_sym_let_DASHenv] = ACTIONS(1262), + [anon_sym_mut] = ACTIONS(1262), + [anon_sym_const] = ACTIONS(1262), + [aux_sym_cmd_identifier_token1] = ACTIONS(1262), + [aux_sym_cmd_identifier_token2] = ACTIONS(1265), + [aux_sym_cmd_identifier_token3] = ACTIONS(1265), + [aux_sym_cmd_identifier_token4] = ACTIONS(1265), + [aux_sym_cmd_identifier_token5] = ACTIONS(1265), + [aux_sym_cmd_identifier_token6] = ACTIONS(1265), + [aux_sym_cmd_identifier_token7] = ACTIONS(1265), + [aux_sym_cmd_identifier_token8] = ACTIONS(1262), + [aux_sym_cmd_identifier_token9] = ACTIONS(1262), + [aux_sym_cmd_identifier_token10] = ACTIONS(1265), + [aux_sym_cmd_identifier_token11] = ACTIONS(1265), + [aux_sym_cmd_identifier_token12] = ACTIONS(1262), + [aux_sym_cmd_identifier_token13] = ACTIONS(1262), + [aux_sym_cmd_identifier_token14] = ACTIONS(1262), + [aux_sym_cmd_identifier_token15] = ACTIONS(1262), + [aux_sym_cmd_identifier_token16] = ACTIONS(1265), + [aux_sym_cmd_identifier_token17] = ACTIONS(1265), + [aux_sym_cmd_identifier_token18] = ACTIONS(1262), + [aux_sym_cmd_identifier_token19] = ACTIONS(1265), + [aux_sym_cmd_identifier_token20] = ACTIONS(1265), + [aux_sym_cmd_identifier_token21] = ACTIONS(1265), + [aux_sym_cmd_identifier_token22] = ACTIONS(1265), + [aux_sym_cmd_identifier_token23] = ACTIONS(1265), + [aux_sym_cmd_identifier_token24] = ACTIONS(1265), + [aux_sym_cmd_identifier_token25] = ACTIONS(1265), + [aux_sym_cmd_identifier_token26] = ACTIONS(1265), + [aux_sym_cmd_identifier_token27] = ACTIONS(1265), + [aux_sym_cmd_identifier_token28] = ACTIONS(1265), + [aux_sym_cmd_identifier_token29] = ACTIONS(1265), + [aux_sym_cmd_identifier_token30] = ACTIONS(1265), + [aux_sym_cmd_identifier_token31] = ACTIONS(1265), + [aux_sym_cmd_identifier_token32] = ACTIONS(1262), + [aux_sym_cmd_identifier_token33] = ACTIONS(1265), + [aux_sym_cmd_identifier_token34] = ACTIONS(1262), + [aux_sym_cmd_identifier_token35] = ACTIONS(1265), + [aux_sym_cmd_identifier_token36] = ACTIONS(1265), + [aux_sym_cmd_identifier_token37] = ACTIONS(1265), + [aux_sym_cmd_identifier_token38] = ACTIONS(1262), + [aux_sym_cmd_identifier_token39] = ACTIONS(1265), + [aux_sym_cmd_identifier_token40] = ACTIONS(1265), + [sym__newline] = ACTIONS(1265), + [anon_sym_SEMI] = ACTIONS(1265), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1262), + [anon_sym_export_DASHenv] = ACTIONS(1262), + [anon_sym_extern] = ACTIONS(1262), + [anon_sym_module] = ACTIONS(1262), + [anon_sym_use] = ACTIONS(1262), + [anon_sym_LBRACK] = ACTIONS(1265), + [anon_sym_LPAREN] = ACTIONS(1265), + [anon_sym_DOLLAR] = ACTIONS(1262), + [anon_sym_error] = ACTIONS(1262), + [anon_sym_DASH2] = ACTIONS(1262), + [anon_sym_break] = ACTIONS(1262), + [anon_sym_continue] = ACTIONS(1262), + [anon_sym_for] = ACTIONS(1262), + [anon_sym_loop] = ACTIONS(1262), + [anon_sym_while] = ACTIONS(1262), + [anon_sym_do] = ACTIONS(1262), + [anon_sym_if] = ACTIONS(1262), + [anon_sym_match] = ACTIONS(1262), + [anon_sym_LBRACE] = ACTIONS(1265), + [anon_sym_RBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1262), + [anon_sym_try] = ACTIONS(1262), + [anon_sym_return] = ACTIONS(1262), + [anon_sym_source] = ACTIONS(1262), + [anon_sym_source_DASHenv] = ACTIONS(1262), + [anon_sym_register] = ACTIONS(1262), + [anon_sym_hide] = ACTIONS(1262), + [anon_sym_hide_DASHenv] = ACTIONS(1262), + [anon_sym_overlay] = ACTIONS(1262), + [anon_sym_where] = ACTIONS(1265), + [aux_sym_expr_unary_token1] = ACTIONS(1265), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), + [anon_sym_DOT_DOT_LT] = ACTIONS(1265), + [anon_sym_null] = ACTIONS(1262), + [anon_sym_true] = ACTIONS(1262), + [anon_sym_false] = ACTIONS(1262), + [aux_sym__val_number_decimal_token1] = ACTIONS(1262), + [aux_sym__val_number_decimal_token2] = ACTIONS(1265), + [aux_sym__val_number_decimal_token3] = ACTIONS(1265), + [aux_sym__val_number_decimal_token4] = ACTIONS(1265), + [aux_sym__val_number_token1] = ACTIONS(1265), + [aux_sym__val_number_token2] = ACTIONS(1265), + [aux_sym__val_number_token3] = ACTIONS(1265), + [aux_sym__val_number_token4] = ACTIONS(1262), + [aux_sym__val_number_token5] = ACTIONS(1262), + [aux_sym__val_number_token6] = ACTIONS(1262), + [anon_sym_0b] = ACTIONS(1262), + [anon_sym_0o] = ACTIONS(1262), + [anon_sym_0x] = ACTIONS(1262), + [sym_val_date] = ACTIONS(1265), + [anon_sym_DQUOTE] = ACTIONS(1265), + [sym__str_single_quotes] = ACTIONS(1265), + [sym__str_back_ticks] = ACTIONS(1265), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), + [aux_sym_env_var_token1] = ACTIONS(1262), + [anon_sym_CARET] = ACTIONS(1265), + [aux_sym_command_token1] = ACTIONS(1265), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1265), + }, + [272] = { + [sym_comment] = STATE(272), + [aux_sym_shebang_repeat1] = STATE(272), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_alias] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_let_DASHenv] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [aux_sym_cmd_identifier_token1] = ACTIONS(1274), + [aux_sym_cmd_identifier_token2] = ACTIONS(1276), + [aux_sym_cmd_identifier_token3] = ACTIONS(1276), + [aux_sym_cmd_identifier_token4] = ACTIONS(1276), + [aux_sym_cmd_identifier_token5] = ACTIONS(1276), + [aux_sym_cmd_identifier_token6] = ACTIONS(1276), + [aux_sym_cmd_identifier_token7] = ACTIONS(1276), + [aux_sym_cmd_identifier_token8] = ACTIONS(1274), + [aux_sym_cmd_identifier_token9] = ACTIONS(1274), + [aux_sym_cmd_identifier_token10] = ACTIONS(1276), + [aux_sym_cmd_identifier_token11] = ACTIONS(1276), + [aux_sym_cmd_identifier_token12] = ACTIONS(1274), + [aux_sym_cmd_identifier_token13] = ACTIONS(1274), + [aux_sym_cmd_identifier_token14] = ACTIONS(1274), + [aux_sym_cmd_identifier_token15] = ACTIONS(1274), + [aux_sym_cmd_identifier_token16] = ACTIONS(1276), + [aux_sym_cmd_identifier_token17] = ACTIONS(1276), + [aux_sym_cmd_identifier_token18] = ACTIONS(1274), + [aux_sym_cmd_identifier_token19] = ACTIONS(1276), + [aux_sym_cmd_identifier_token20] = ACTIONS(1276), + [aux_sym_cmd_identifier_token21] = ACTIONS(1276), + [aux_sym_cmd_identifier_token22] = ACTIONS(1276), + [aux_sym_cmd_identifier_token23] = ACTIONS(1276), + [aux_sym_cmd_identifier_token24] = ACTIONS(1276), + [aux_sym_cmd_identifier_token25] = ACTIONS(1276), + [aux_sym_cmd_identifier_token26] = ACTIONS(1276), + [aux_sym_cmd_identifier_token27] = ACTIONS(1276), + [aux_sym_cmd_identifier_token28] = ACTIONS(1276), + [aux_sym_cmd_identifier_token29] = ACTIONS(1276), + [aux_sym_cmd_identifier_token30] = ACTIONS(1276), + [aux_sym_cmd_identifier_token31] = ACTIONS(1276), + [aux_sym_cmd_identifier_token32] = ACTIONS(1274), + [aux_sym_cmd_identifier_token33] = ACTIONS(1276), + [aux_sym_cmd_identifier_token34] = ACTIONS(1274), + [aux_sym_cmd_identifier_token35] = ACTIONS(1276), + [aux_sym_cmd_identifier_token36] = ACTIONS(1276), + [aux_sym_cmd_identifier_token37] = ACTIONS(1276), + [aux_sym_cmd_identifier_token38] = ACTIONS(1274), + [aux_sym_cmd_identifier_token39] = ACTIONS(1276), + [aux_sym_cmd_identifier_token40] = ACTIONS(1276), + [sym__newline] = ACTIONS(1494), + [anon_sym_SEMI] = ACTIONS(1276), + [anon_sym_PIPE] = ACTIONS(1276), + [anon_sym_def] = ACTIONS(1274), + [anon_sym_export_DASHenv] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_LBRACK] = ACTIONS(1276), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1274), + [anon_sym_error] = ACTIONS(1274), + [anon_sym_DASH2] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_LBRACE] = ACTIONS(1276), + [anon_sym_DOT_DOT] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_source] = ACTIONS(1274), + [anon_sym_source_DASHenv] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_hide] = ACTIONS(1274), + [anon_sym_hide_DASHenv] = ACTIONS(1274), + [anon_sym_overlay] = ACTIONS(1274), + [anon_sym_where] = ACTIONS(1276), + [aux_sym_expr_unary_token1] = ACTIONS(1276), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1276), + [anon_sym_DOT_DOT_LT] = ACTIONS(1276), + [anon_sym_null] = ACTIONS(1274), + [anon_sym_true] = ACTIONS(1274), + [anon_sym_false] = 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(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(1276), + [aux_sym__val_number_token2] = ACTIONS(1276), + [aux_sym__val_number_token3] = ACTIONS(1276), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1274), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_0b] = ACTIONS(1274), + [anon_sym_0o] = ACTIONS(1274), + [anon_sym_0x] = ACTIONS(1274), + [sym_val_date] = ACTIONS(1276), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym__str_single_quotes] = ACTIONS(1276), + [sym__str_back_ticks] = ACTIONS(1276), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1276), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1276), + [aux_sym_env_var_token1] = ACTIONS(1274), + [anon_sym_CARET] = ACTIONS(1276), + [aux_sym_command_token1] = ACTIONS(1276), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1276), + }, + [273] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4870), + [sym_block] = STATE(4871), + [sym__expression_parenthesized] = STATE(4871), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4871), + [sym_comment] = STATE(273), + [aux_sym_shebang_repeat1] = STATE(221), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110732,9 +110632,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -110743,10 +110643,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110767,40 +110667,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [275] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4945), - [sym_block] = STATE(4946), - [sym__expression_parenthesized] = STATE(4946), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4946), - [sym_comment] = STATE(275), - [aux_sym_shebang_repeat1] = STATE(1150), + [274] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4868), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4869), + [sym_comment] = STATE(274), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110844,9 +110744,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -110855,10 +110755,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110879,40 +110779,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [276] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4945), - [sym_block] = STATE(4946), - [sym__expression_parenthesized] = STATE(4946), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4946), - [sym_comment] = STATE(276), - [aux_sym_shebang_repeat1] = STATE(277), + [275] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4868), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4869), + [sym_comment] = STATE(275), + [aux_sym_shebang_repeat1] = STATE(279), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -110956,9 +110856,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -110967,10 +110867,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -110991,40 +110891,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [277] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4948), - [sym_block] = STATE(4949), - [sym__expression_parenthesized] = STATE(4949), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4949), - [sym_comment] = STATE(277), - [aux_sym_shebang_repeat1] = STATE(1150), + [276] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4870), + [sym_block] = STATE(4871), + [sym__expression_parenthesized] = STATE(4871), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4871), + [sym_comment] = STATE(276), + [aux_sym_shebang_repeat1] = STATE(282), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111068,9 +110968,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -111079,10 +110979,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -111103,264 +111003,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [278] = { - [sym_comment] = STATE(278), - [ts_builtin_sym_end] = ACTIONS(1272), - [anon_sym_POUND_BANG] = ACTIONS(1268), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_alias] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_let_DASHenv] = ACTIONS(1498), - [anon_sym_mut] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [aux_sym_cmd_identifier_token1] = ACTIONS(1498), - [aux_sym_cmd_identifier_token2] = ACTIONS(1272), - [aux_sym_cmd_identifier_token3] = ACTIONS(1272), - [aux_sym_cmd_identifier_token4] = ACTIONS(1272), - [aux_sym_cmd_identifier_token5] = ACTIONS(1272), - [aux_sym_cmd_identifier_token6] = ACTIONS(1272), - [aux_sym_cmd_identifier_token7] = ACTIONS(1272), - [aux_sym_cmd_identifier_token8] = ACTIONS(1498), - [aux_sym_cmd_identifier_token9] = ACTIONS(1498), - [aux_sym_cmd_identifier_token10] = ACTIONS(1272), - [aux_sym_cmd_identifier_token11] = ACTIONS(1272), - [aux_sym_cmd_identifier_token12] = ACTIONS(1498), - [aux_sym_cmd_identifier_token13] = ACTIONS(1498), - [aux_sym_cmd_identifier_token14] = ACTIONS(1498), - [aux_sym_cmd_identifier_token15] = ACTIONS(1498), - [aux_sym_cmd_identifier_token16] = ACTIONS(1272), - [aux_sym_cmd_identifier_token17] = ACTIONS(1272), - [aux_sym_cmd_identifier_token18] = ACTIONS(1498), - [aux_sym_cmd_identifier_token19] = ACTIONS(1272), - [aux_sym_cmd_identifier_token20] = ACTIONS(1272), - [aux_sym_cmd_identifier_token21] = ACTIONS(1272), - [aux_sym_cmd_identifier_token22] = ACTIONS(1272), - [aux_sym_cmd_identifier_token23] = ACTIONS(1272), - [aux_sym_cmd_identifier_token24] = ACTIONS(1272), - [aux_sym_cmd_identifier_token25] = ACTIONS(1272), - [aux_sym_cmd_identifier_token26] = ACTIONS(1272), - [aux_sym_cmd_identifier_token27] = ACTIONS(1272), - [aux_sym_cmd_identifier_token28] = ACTIONS(1272), - [aux_sym_cmd_identifier_token29] = ACTIONS(1272), - [aux_sym_cmd_identifier_token30] = ACTIONS(1272), - [aux_sym_cmd_identifier_token31] = ACTIONS(1272), - [aux_sym_cmd_identifier_token32] = ACTIONS(1498), - [aux_sym_cmd_identifier_token33] = ACTIONS(1272), - [aux_sym_cmd_identifier_token34] = ACTIONS(1498), - [aux_sym_cmd_identifier_token35] = ACTIONS(1272), - [aux_sym_cmd_identifier_token36] = ACTIONS(1272), - [aux_sym_cmd_identifier_token37] = ACTIONS(1272), - [aux_sym_cmd_identifier_token38] = ACTIONS(1498), - [aux_sym_cmd_identifier_token39] = ACTIONS(1272), - [aux_sym_cmd_identifier_token40] = ACTIONS(1272), - [sym__newline] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_def] = ACTIONS(1498), - [anon_sym_export_DASHenv] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_error] = ACTIONS(1498), - [anon_sym_DASH2] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_try] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_source] = ACTIONS(1498), - [anon_sym_source_DASHenv] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_hide] = ACTIONS(1498), - [anon_sym_hide_DASHenv] = ACTIONS(1498), - [anon_sym_overlay] = ACTIONS(1498), - [anon_sym_where] = ACTIONS(1272), - [aux_sym_expr_unary_token1] = ACTIONS(1272), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), - [anon_sym_DOT_DOT_LT] = ACTIONS(1272), - [anon_sym_null] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [aux_sym__val_number_decimal_token1] = ACTIONS(1498), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(1272), - [aux_sym__val_number_token2] = ACTIONS(1272), - [aux_sym__val_number_token3] = ACTIONS(1272), - [aux_sym__val_number_token4] = ACTIONS(1498), - [aux_sym__val_number_token5] = ACTIONS(1498), - [aux_sym__val_number_token6] = ACTIONS(1498), - [anon_sym_0b] = ACTIONS(1498), - [anon_sym_0o] = ACTIONS(1498), - [anon_sym_0x] = ACTIONS(1498), - [sym_val_date] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym__str_single_quotes] = ACTIONS(1272), - [sym__str_back_ticks] = ACTIONS(1272), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), - [aux_sym_env_var_token1] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1272), - [aux_sym_command_token1] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1272), - }, - [279] = { - [sym_comment] = STATE(279), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_alias] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_let_DASHenv] = ACTIONS(1498), - [anon_sym_mut] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [aux_sym_cmd_identifier_token1] = ACTIONS(1498), - [aux_sym_cmd_identifier_token2] = ACTIONS(1272), - [aux_sym_cmd_identifier_token3] = ACTIONS(1272), - [aux_sym_cmd_identifier_token4] = ACTIONS(1272), - [aux_sym_cmd_identifier_token5] = ACTIONS(1272), - [aux_sym_cmd_identifier_token6] = ACTIONS(1272), - [aux_sym_cmd_identifier_token7] = ACTIONS(1272), - [aux_sym_cmd_identifier_token8] = ACTIONS(1498), - [aux_sym_cmd_identifier_token9] = ACTIONS(1498), - [aux_sym_cmd_identifier_token10] = ACTIONS(1272), - [aux_sym_cmd_identifier_token11] = ACTIONS(1272), - [aux_sym_cmd_identifier_token12] = ACTIONS(1498), - [aux_sym_cmd_identifier_token13] = ACTIONS(1498), - [aux_sym_cmd_identifier_token14] = ACTIONS(1498), - [aux_sym_cmd_identifier_token15] = ACTIONS(1498), - [aux_sym_cmd_identifier_token16] = ACTIONS(1272), - [aux_sym_cmd_identifier_token17] = ACTIONS(1272), - [aux_sym_cmd_identifier_token18] = ACTIONS(1498), - [aux_sym_cmd_identifier_token19] = ACTIONS(1272), - [aux_sym_cmd_identifier_token20] = ACTIONS(1272), - [aux_sym_cmd_identifier_token21] = ACTIONS(1272), - [aux_sym_cmd_identifier_token22] = ACTIONS(1272), - [aux_sym_cmd_identifier_token23] = ACTIONS(1272), - [aux_sym_cmd_identifier_token24] = ACTIONS(1272), - [aux_sym_cmd_identifier_token25] = ACTIONS(1272), - [aux_sym_cmd_identifier_token26] = ACTIONS(1272), - [aux_sym_cmd_identifier_token27] = ACTIONS(1272), - [aux_sym_cmd_identifier_token28] = ACTIONS(1272), - [aux_sym_cmd_identifier_token29] = ACTIONS(1272), - [aux_sym_cmd_identifier_token30] = ACTIONS(1272), - [aux_sym_cmd_identifier_token31] = ACTIONS(1272), - [aux_sym_cmd_identifier_token32] = ACTIONS(1498), - [aux_sym_cmd_identifier_token33] = ACTIONS(1272), - [aux_sym_cmd_identifier_token34] = ACTIONS(1498), - [aux_sym_cmd_identifier_token35] = ACTIONS(1272), - [aux_sym_cmd_identifier_token36] = ACTIONS(1272), - [aux_sym_cmd_identifier_token37] = ACTIONS(1272), - [aux_sym_cmd_identifier_token38] = ACTIONS(1498), - [aux_sym_cmd_identifier_token39] = ACTIONS(1272), - [aux_sym_cmd_identifier_token40] = ACTIONS(1272), - [sym__newline] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_def] = ACTIONS(1498), - [anon_sym_export_DASHenv] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_error] = ACTIONS(1498), - [anon_sym_DASH2] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_try] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_source] = ACTIONS(1498), - [anon_sym_source_DASHenv] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_hide] = ACTIONS(1498), - [anon_sym_hide_DASHenv] = ACTIONS(1498), - [anon_sym_overlay] = ACTIONS(1498), - [anon_sym_where] = ACTIONS(1272), - [aux_sym_expr_unary_token1] = ACTIONS(1272), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), - [anon_sym_DOT_DOT_LT] = ACTIONS(1272), - [anon_sym_null] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [aux_sym__val_number_decimal_token1] = ACTIONS(1498), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(1272), - [aux_sym__val_number_token2] = ACTIONS(1272), - [aux_sym__val_number_token3] = ACTIONS(1272), - [aux_sym__val_number_token4] = ACTIONS(1498), - [aux_sym__val_number_token5] = ACTIONS(1498), - [aux_sym__val_number_token6] = ACTIONS(1498), - [anon_sym_0b] = ACTIONS(1498), - [anon_sym_0o] = ACTIONS(1498), - [anon_sym_0x] = ACTIONS(1498), - [sym_val_date] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym__str_single_quotes] = ACTIONS(1272), - [sym__str_back_ticks] = ACTIONS(1272), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), - [aux_sym_env_var_token1] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1272), - [aux_sym_command_token1] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1272), - }, - [280] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4881), - [sym_block] = STATE(4882), - [sym__expression_parenthesized] = STATE(4882), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4882), - [sym_comment] = STATE(280), - [aux_sym_shebang_repeat1] = STATE(287), + [277] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4872), + [sym_block] = STATE(4873), + [sym__expression_parenthesized] = STATE(4873), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4873), + [sym_comment] = STATE(277), + [aux_sym_shebang_repeat1] = STATE(283), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111404,9 +111080,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -111415,10 +111091,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -111439,40 +111115,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [281] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4883), - [sym_block] = STATE(4884), - [sym__expression_parenthesized] = STATE(4884), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4884), - [sym_comment] = STATE(281), - [aux_sym_shebang_repeat1] = STATE(235), + [278] = { + [sym_comment] = STATE(278), + [aux_sym_shebang_repeat1] = STATE(298), + [aux_sym__parenthesized_body_repeat1] = STATE(220), + [anon_sym_export] = ACTIONS(1497), + [anon_sym_alias] = ACTIONS(1497), + [anon_sym_let] = ACTIONS(1497), + [anon_sym_let_DASHenv] = ACTIONS(1497), + [anon_sym_mut] = ACTIONS(1497), + [anon_sym_const] = ACTIONS(1497), + [aux_sym_cmd_identifier_token1] = ACTIONS(1497), + [aux_sym_cmd_identifier_token2] = ACTIONS(1499), + [aux_sym_cmd_identifier_token3] = ACTIONS(1499), + [aux_sym_cmd_identifier_token4] = ACTIONS(1499), + [aux_sym_cmd_identifier_token5] = ACTIONS(1499), + [aux_sym_cmd_identifier_token6] = ACTIONS(1499), + [aux_sym_cmd_identifier_token7] = ACTIONS(1499), + [aux_sym_cmd_identifier_token8] = ACTIONS(1497), + [aux_sym_cmd_identifier_token9] = ACTIONS(1497), + [aux_sym_cmd_identifier_token10] = ACTIONS(1499), + [aux_sym_cmd_identifier_token11] = ACTIONS(1499), + [aux_sym_cmd_identifier_token12] = ACTIONS(1497), + [aux_sym_cmd_identifier_token13] = ACTIONS(1497), + [aux_sym_cmd_identifier_token14] = ACTIONS(1497), + [aux_sym_cmd_identifier_token15] = ACTIONS(1497), + [aux_sym_cmd_identifier_token16] = ACTIONS(1499), + [aux_sym_cmd_identifier_token17] = ACTIONS(1499), + [aux_sym_cmd_identifier_token18] = ACTIONS(1497), + [aux_sym_cmd_identifier_token19] = ACTIONS(1499), + [aux_sym_cmd_identifier_token20] = ACTIONS(1499), + [aux_sym_cmd_identifier_token21] = ACTIONS(1499), + [aux_sym_cmd_identifier_token22] = ACTIONS(1499), + [aux_sym_cmd_identifier_token23] = ACTIONS(1499), + [aux_sym_cmd_identifier_token24] = ACTIONS(1499), + [aux_sym_cmd_identifier_token25] = ACTIONS(1499), + [aux_sym_cmd_identifier_token26] = ACTIONS(1499), + [aux_sym_cmd_identifier_token27] = ACTIONS(1499), + [aux_sym_cmd_identifier_token28] = ACTIONS(1499), + [aux_sym_cmd_identifier_token29] = ACTIONS(1499), + [aux_sym_cmd_identifier_token30] = ACTIONS(1499), + [aux_sym_cmd_identifier_token31] = ACTIONS(1499), + [aux_sym_cmd_identifier_token32] = ACTIONS(1497), + [aux_sym_cmd_identifier_token33] = ACTIONS(1499), + [aux_sym_cmd_identifier_token34] = ACTIONS(1497), + [aux_sym_cmd_identifier_token35] = ACTIONS(1499), + [aux_sym_cmd_identifier_token36] = ACTIONS(1499), + [aux_sym_cmd_identifier_token37] = ACTIONS(1499), + [aux_sym_cmd_identifier_token38] = ACTIONS(1497), + [aux_sym_cmd_identifier_token39] = ACTIONS(1499), + [aux_sym_cmd_identifier_token40] = ACTIONS(1499), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1503), + [anon_sym_def] = ACTIONS(1497), + [anon_sym_export_DASHenv] = ACTIONS(1497), + [anon_sym_extern] = ACTIONS(1497), + [anon_sym_module] = ACTIONS(1497), + [anon_sym_use] = ACTIONS(1497), + [anon_sym_LBRACK] = ACTIONS(1499), + [anon_sym_LPAREN] = ACTIONS(1499), + [anon_sym_DOLLAR] = ACTIONS(1497), + [anon_sym_error] = ACTIONS(1497), + [anon_sym_DASH2] = ACTIONS(1497), + [anon_sym_break] = ACTIONS(1497), + [anon_sym_continue] = ACTIONS(1497), + [anon_sym_for] = ACTIONS(1497), + [anon_sym_loop] = ACTIONS(1497), + [anon_sym_while] = ACTIONS(1497), + [anon_sym_do] = ACTIONS(1497), + [anon_sym_if] = ACTIONS(1497), + [anon_sym_match] = ACTIONS(1497), + [anon_sym_LBRACE] = ACTIONS(1499), + [anon_sym_DOT_DOT] = ACTIONS(1497), + [anon_sym_try] = ACTIONS(1497), + [anon_sym_return] = ACTIONS(1497), + [anon_sym_source] = ACTIONS(1497), + [anon_sym_source_DASHenv] = ACTIONS(1497), + [anon_sym_register] = ACTIONS(1497), + [anon_sym_hide] = ACTIONS(1497), + [anon_sym_hide_DASHenv] = ACTIONS(1497), + [anon_sym_overlay] = ACTIONS(1497), + [anon_sym_where] = ACTIONS(1499), + [aux_sym_expr_unary_token1] = ACTIONS(1499), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1499), + [anon_sym_DOT_DOT_LT] = ACTIONS(1499), + [anon_sym_null] = ACTIONS(1497), + [anon_sym_true] = ACTIONS(1497), + [anon_sym_false] = ACTIONS(1497), + [aux_sym__val_number_decimal_token1] = ACTIONS(1497), + [aux_sym__val_number_decimal_token2] = ACTIONS(1499), + [aux_sym__val_number_decimal_token3] = ACTIONS(1499), + [aux_sym__val_number_decimal_token4] = ACTIONS(1499), + [aux_sym__val_number_token1] = ACTIONS(1499), + [aux_sym__val_number_token2] = ACTIONS(1499), + [aux_sym__val_number_token3] = ACTIONS(1499), + [aux_sym__val_number_token4] = ACTIONS(1497), + [aux_sym__val_number_token5] = ACTIONS(1497), + [aux_sym__val_number_token6] = ACTIONS(1497), + [anon_sym_0b] = ACTIONS(1497), + [anon_sym_0o] = ACTIONS(1497), + [anon_sym_0x] = ACTIONS(1497), + [sym_val_date] = ACTIONS(1499), + [anon_sym_DQUOTE] = ACTIONS(1499), + [sym__str_single_quotes] = ACTIONS(1499), + [sym__str_back_ticks] = ACTIONS(1499), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1499), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1499), + [aux_sym_env_var_token1] = ACTIONS(1497), + [anon_sym_CARET] = ACTIONS(1499), + [aux_sym_command_token1] = ACTIONS(1499), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1499), + }, + [279] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression_parenthesized] = STATE(4896), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4896), + [sym_comment] = STATE(279), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111516,9 +111304,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -111527,10 +111315,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -111551,40 +111339,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [282] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4885), - [sym_block] = STATE(4886), - [sym__expression_parenthesized] = STATE(4886), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4886), - [sym_comment] = STATE(282), - [aux_sym_shebang_repeat1] = STATE(237), + [280] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_block] = STATE(4899), + [sym__expression_parenthesized] = STATE(4899), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4899), + [sym_comment] = STATE(280), + [aux_sym_shebang_repeat1] = STATE(216), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111628,9 +111416,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -111639,10 +111427,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -111663,152 +111451,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [283] = { - [sym_comment] = STATE(283), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1385), - [anon_sym_export] = ACTIONS(1381), - [anon_sym_alias] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_let_DASHenv] = ACTIONS(1381), - [anon_sym_mut] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1381), - [anon_sym_export_DASHenv] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_module] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_source] = ACTIONS(1381), - [anon_sym_source_DASHenv] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_hide] = ACTIONS(1381), - [anon_sym_hide_DASHenv] = ACTIONS(1381), - [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), - }, - [284] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4814), - [sym_block] = STATE(4815), - [sym__expression_parenthesized] = STATE(4815), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4815), - [sym_comment] = STATE(284), - [aux_sym_shebang_repeat1] = STATE(247), + [281] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4895), + [sym_block] = STATE(4896), + [sym__expression_parenthesized] = STATE(4896), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4896), + [sym_comment] = STATE(281), + [aux_sym_shebang_repeat1] = STATE(289), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -111852,9 +111528,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -111863,10 +111539,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -111887,152 +111563,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [285] = { - [sym_comment] = STATE(285), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1394), - [anon_sym_export] = ACTIONS(1381), - [anon_sym_alias] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_let_DASHenv] = ACTIONS(1381), - [anon_sym_mut] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1381), - [anon_sym_export_DASHenv] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_module] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_source] = ACTIONS(1381), - [anon_sym_source_DASHenv] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_hide] = ACTIONS(1381), - [anon_sym_hide_DASHenv] = ACTIONS(1381), - [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), - }, - [286] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4814), - [sym_block] = STATE(4815), - [sym__expression_parenthesized] = STATE(4815), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4815), - [sym_comment] = STATE(286), - [aux_sym_shebang_repeat1] = STATE(211), + [282] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4898), + [sym_block] = STATE(4899), + [sym__expression_parenthesized] = STATE(4899), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4899), + [sym_comment] = STATE(282), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112076,9 +111640,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1464), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -112087,10 +111651,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -112111,40 +111675,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [287] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4908), - [sym_block] = STATE(4909), - [sym__expression_parenthesized] = STATE(4909), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4909), - [sym_comment] = STATE(287), - [aux_sym_shebang_repeat1] = STATE(1150), + [283] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4900), + [sym_block] = STATE(4901), + [sym__expression_parenthesized] = STATE(4901), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4901), + [sym_comment] = STATE(283), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112188,9 +111752,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(447), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -112199,10 +111763,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -112223,376 +111787,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [288] = { - [sym_comment] = STATE(288), - [aux_sym_shebang_repeat1] = STATE(295), - [aux_sym__parenthesized_body_repeat1] = STATE(254), - [anon_sym_export] = ACTIONS(1500), - [anon_sym_alias] = ACTIONS(1500), - [anon_sym_let] = ACTIONS(1500), - [anon_sym_let_DASHenv] = ACTIONS(1500), - [anon_sym_mut] = ACTIONS(1500), - [anon_sym_const] = ACTIONS(1500), - [aux_sym_cmd_identifier_token1] = ACTIONS(1500), - [aux_sym_cmd_identifier_token2] = ACTIONS(1502), - [aux_sym_cmd_identifier_token3] = ACTIONS(1502), - [aux_sym_cmd_identifier_token4] = ACTIONS(1502), - [aux_sym_cmd_identifier_token5] = ACTIONS(1502), - [aux_sym_cmd_identifier_token6] = ACTIONS(1502), - [aux_sym_cmd_identifier_token7] = ACTIONS(1502), - [aux_sym_cmd_identifier_token8] = ACTIONS(1500), - [aux_sym_cmd_identifier_token9] = ACTIONS(1500), - [aux_sym_cmd_identifier_token10] = ACTIONS(1502), - [aux_sym_cmd_identifier_token11] = ACTIONS(1502), - [aux_sym_cmd_identifier_token12] = ACTIONS(1500), - [aux_sym_cmd_identifier_token13] = ACTIONS(1500), - [aux_sym_cmd_identifier_token14] = ACTIONS(1500), - [aux_sym_cmd_identifier_token15] = ACTIONS(1500), - [aux_sym_cmd_identifier_token16] = ACTIONS(1502), - [aux_sym_cmd_identifier_token17] = ACTIONS(1502), - [aux_sym_cmd_identifier_token18] = ACTIONS(1500), - [aux_sym_cmd_identifier_token19] = ACTIONS(1502), - [aux_sym_cmd_identifier_token20] = ACTIONS(1502), - [aux_sym_cmd_identifier_token21] = ACTIONS(1502), - [aux_sym_cmd_identifier_token22] = ACTIONS(1502), - [aux_sym_cmd_identifier_token23] = ACTIONS(1502), - [aux_sym_cmd_identifier_token24] = ACTIONS(1502), - [aux_sym_cmd_identifier_token25] = ACTIONS(1502), - [aux_sym_cmd_identifier_token26] = ACTIONS(1502), - [aux_sym_cmd_identifier_token27] = ACTIONS(1502), - [aux_sym_cmd_identifier_token28] = ACTIONS(1502), - [aux_sym_cmd_identifier_token29] = ACTIONS(1502), - [aux_sym_cmd_identifier_token30] = ACTIONS(1502), - [aux_sym_cmd_identifier_token31] = ACTIONS(1502), - [aux_sym_cmd_identifier_token32] = ACTIONS(1500), - [aux_sym_cmd_identifier_token33] = ACTIONS(1502), - [aux_sym_cmd_identifier_token34] = ACTIONS(1500), - [aux_sym_cmd_identifier_token35] = ACTIONS(1502), - [aux_sym_cmd_identifier_token36] = ACTIONS(1502), - [aux_sym_cmd_identifier_token37] = ACTIONS(1502), - [aux_sym_cmd_identifier_token38] = ACTIONS(1500), - [aux_sym_cmd_identifier_token39] = ACTIONS(1502), - [aux_sym_cmd_identifier_token40] = ACTIONS(1502), - [sym__newline] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1506), - [anon_sym_def] = ACTIONS(1500), - [anon_sym_export_DASHenv] = ACTIONS(1500), - [anon_sym_extern] = ACTIONS(1500), - [anon_sym_module] = ACTIONS(1500), - [anon_sym_use] = ACTIONS(1500), - [anon_sym_LBRACK] = ACTIONS(1502), - [anon_sym_LPAREN] = ACTIONS(1502), - [anon_sym_DOLLAR] = ACTIONS(1500), - [anon_sym_error] = ACTIONS(1500), - [anon_sym_DASH2] = ACTIONS(1500), - [anon_sym_break] = ACTIONS(1500), - [anon_sym_continue] = ACTIONS(1500), - [anon_sym_for] = ACTIONS(1500), - [anon_sym_loop] = ACTIONS(1500), - [anon_sym_while] = ACTIONS(1500), - [anon_sym_do] = ACTIONS(1500), - [anon_sym_if] = ACTIONS(1500), - [anon_sym_match] = ACTIONS(1500), - [anon_sym_LBRACE] = ACTIONS(1502), - [anon_sym_DOT_DOT] = ACTIONS(1500), - [anon_sym_try] = ACTIONS(1500), - [anon_sym_return] = ACTIONS(1500), - [anon_sym_source] = ACTIONS(1500), - [anon_sym_source_DASHenv] = ACTIONS(1500), - [anon_sym_register] = ACTIONS(1500), - [anon_sym_hide] = ACTIONS(1500), - [anon_sym_hide_DASHenv] = ACTIONS(1500), - [anon_sym_overlay] = ACTIONS(1500), - [anon_sym_where] = ACTIONS(1502), - [aux_sym_expr_unary_token1] = ACTIONS(1502), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1502), - [anon_sym_DOT_DOT_LT] = ACTIONS(1502), - [anon_sym_null] = ACTIONS(1500), - [anon_sym_true] = ACTIONS(1500), - [anon_sym_false] = ACTIONS(1500), - [aux_sym__val_number_decimal_token1] = ACTIONS(1500), - [aux_sym__val_number_decimal_token2] = ACTIONS(1502), - [aux_sym__val_number_decimal_token3] = ACTIONS(1502), - [aux_sym__val_number_decimal_token4] = ACTIONS(1502), - [aux_sym__val_number_token1] = ACTIONS(1502), - [aux_sym__val_number_token2] = ACTIONS(1502), - [aux_sym__val_number_token3] = ACTIONS(1502), - [aux_sym__val_number_token4] = ACTIONS(1500), - [aux_sym__val_number_token5] = ACTIONS(1500), - [aux_sym__val_number_token6] = ACTIONS(1500), - [anon_sym_0b] = ACTIONS(1500), - [anon_sym_0o] = ACTIONS(1500), - [anon_sym_0x] = ACTIONS(1500), - [sym_val_date] = ACTIONS(1502), - [anon_sym_DQUOTE] = ACTIONS(1502), - [sym__str_single_quotes] = ACTIONS(1502), - [sym__str_back_ticks] = ACTIONS(1502), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1502), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1502), - [aux_sym_env_var_token1] = ACTIONS(1500), - [anon_sym_CARET] = ACTIONS(1502), - [aux_sym_command_token1] = ACTIONS(1502), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1502), - }, - [289] = { - [sym_comment] = STATE(289), - [aux_sym__block_body_repeat1] = STATE(240), - [ts_builtin_sym_end] = ACTIONS(1396), - [anon_sym_export] = ACTIONS(1381), - [anon_sym_alias] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_let_DASHenv] = ACTIONS(1381), - [anon_sym_mut] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(25), - [anon_sym_SEMI] = ACTIONS(25), - [anon_sym_def] = ACTIONS(1381), - [anon_sym_export_DASHenv] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_module] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_source] = ACTIONS(1381), - [anon_sym_source_DASHenv] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_hide] = ACTIONS(1381), - [anon_sym_hide_DASHenv] = ACTIONS(1381), - [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), - }, - [290] = { - [sym_comment] = STATE(290), - [anon_sym_export] = ACTIONS(1262), - [anon_sym_alias] = ACTIONS(1262), - [anon_sym_let] = ACTIONS(1262), - [anon_sym_let_DASHenv] = ACTIONS(1262), - [anon_sym_mut] = ACTIONS(1262), - [anon_sym_const] = ACTIONS(1262), - [aux_sym_cmd_identifier_token1] = ACTIONS(1262), - [aux_sym_cmd_identifier_token2] = ACTIONS(1265), - [aux_sym_cmd_identifier_token3] = ACTIONS(1265), - [aux_sym_cmd_identifier_token4] = ACTIONS(1265), - [aux_sym_cmd_identifier_token5] = ACTIONS(1265), - [aux_sym_cmd_identifier_token6] = ACTIONS(1265), - [aux_sym_cmd_identifier_token7] = ACTIONS(1265), - [aux_sym_cmd_identifier_token8] = ACTIONS(1262), - [aux_sym_cmd_identifier_token9] = ACTIONS(1262), - [aux_sym_cmd_identifier_token10] = ACTIONS(1265), - [aux_sym_cmd_identifier_token11] = ACTIONS(1265), - [aux_sym_cmd_identifier_token12] = ACTIONS(1262), - [aux_sym_cmd_identifier_token13] = ACTIONS(1262), - [aux_sym_cmd_identifier_token14] = ACTIONS(1262), - [aux_sym_cmd_identifier_token15] = ACTIONS(1262), - [aux_sym_cmd_identifier_token16] = ACTIONS(1265), - [aux_sym_cmd_identifier_token17] = ACTIONS(1265), - [aux_sym_cmd_identifier_token18] = ACTIONS(1262), - [aux_sym_cmd_identifier_token19] = ACTIONS(1265), - [aux_sym_cmd_identifier_token20] = ACTIONS(1265), - [aux_sym_cmd_identifier_token21] = ACTIONS(1265), - [aux_sym_cmd_identifier_token22] = ACTIONS(1265), - [aux_sym_cmd_identifier_token23] = ACTIONS(1265), - [aux_sym_cmd_identifier_token24] = ACTIONS(1265), - [aux_sym_cmd_identifier_token25] = ACTIONS(1265), - [aux_sym_cmd_identifier_token26] = ACTIONS(1265), - [aux_sym_cmd_identifier_token27] = ACTIONS(1265), - [aux_sym_cmd_identifier_token28] = ACTIONS(1265), - [aux_sym_cmd_identifier_token29] = ACTIONS(1265), - [aux_sym_cmd_identifier_token30] = ACTIONS(1265), - [aux_sym_cmd_identifier_token31] = ACTIONS(1265), - [aux_sym_cmd_identifier_token32] = ACTIONS(1262), - [aux_sym_cmd_identifier_token33] = ACTIONS(1265), - [aux_sym_cmd_identifier_token34] = ACTIONS(1262), - [aux_sym_cmd_identifier_token35] = ACTIONS(1265), - [aux_sym_cmd_identifier_token36] = ACTIONS(1265), - [aux_sym_cmd_identifier_token37] = ACTIONS(1265), - [aux_sym_cmd_identifier_token38] = ACTIONS(1262), - [aux_sym_cmd_identifier_token39] = ACTIONS(1265), - [aux_sym_cmd_identifier_token40] = ACTIONS(1265), - [sym__newline] = ACTIONS(1265), - [anon_sym_SEMI] = ACTIONS(1265), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_def] = ACTIONS(1262), - [anon_sym_export_DASHenv] = ACTIONS(1262), - [anon_sym_extern] = ACTIONS(1262), - [anon_sym_module] = ACTIONS(1262), - [anon_sym_use] = ACTIONS(1262), - [anon_sym_LBRACK] = ACTIONS(1265), - [anon_sym_LPAREN] = ACTIONS(1265), - [anon_sym_DOLLAR] = ACTIONS(1262), - [anon_sym_error] = ACTIONS(1262), - [anon_sym_DASH2] = ACTIONS(1262), - [anon_sym_break] = ACTIONS(1262), - [anon_sym_continue] = ACTIONS(1262), - [anon_sym_for] = ACTIONS(1262), - [anon_sym_loop] = ACTIONS(1262), - [anon_sym_while] = ACTIONS(1262), - [anon_sym_do] = ACTIONS(1262), - [anon_sym_if] = ACTIONS(1262), - [anon_sym_match] = ACTIONS(1262), - [anon_sym_LBRACE] = ACTIONS(1265), - [anon_sym_RBRACE] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1262), - [anon_sym_try] = ACTIONS(1262), - [anon_sym_return] = ACTIONS(1262), - [anon_sym_source] = ACTIONS(1262), - [anon_sym_source_DASHenv] = ACTIONS(1262), - [anon_sym_register] = ACTIONS(1262), - [anon_sym_hide] = ACTIONS(1262), - [anon_sym_hide_DASHenv] = ACTIONS(1262), - [anon_sym_overlay] = ACTIONS(1262), - [anon_sym_where] = ACTIONS(1265), - [aux_sym_expr_unary_token1] = ACTIONS(1265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1265), - [anon_sym_DOT_DOT_LT] = ACTIONS(1265), - [anon_sym_null] = ACTIONS(1262), - [anon_sym_true] = ACTIONS(1262), - [anon_sym_false] = ACTIONS(1262), - [aux_sym__val_number_decimal_token1] = ACTIONS(1262), - [aux_sym__val_number_decimal_token2] = ACTIONS(1265), - [aux_sym__val_number_decimal_token3] = ACTIONS(1265), - [aux_sym__val_number_decimal_token4] = ACTIONS(1265), - [aux_sym__val_number_token1] = ACTIONS(1265), - [aux_sym__val_number_token2] = ACTIONS(1265), - [aux_sym__val_number_token3] = ACTIONS(1265), - [aux_sym__val_number_token4] = ACTIONS(1262), - [aux_sym__val_number_token5] = ACTIONS(1262), - [aux_sym__val_number_token6] = ACTIONS(1262), - [anon_sym_0b] = ACTIONS(1262), - [anon_sym_0o] = ACTIONS(1262), - [anon_sym_0x] = ACTIONS(1262), - [sym_val_date] = ACTIONS(1265), - [anon_sym_DQUOTE] = ACTIONS(1265), - [sym__str_single_quotes] = ACTIONS(1265), - [sym__str_back_ticks] = ACTIONS(1265), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1265), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1265), - [aux_sym_env_var_token1] = ACTIONS(1262), - [anon_sym_CARET] = ACTIONS(1265), - [aux_sym_command_token1] = ACTIONS(1265), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1265), - }, - [291] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if_parenthesized] = STATE(4885), - [sym_block] = STATE(4886), - [sym__expression_parenthesized] = STATE(4886), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3706), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4886), - [sym_comment] = STATE(291), - [aux_sym_shebang_repeat1] = STATE(259), + [284] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4900), + [sym_block] = STATE(4901), + [sym__expression_parenthesized] = STATE(4901), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4901), + [sym_comment] = STATE(284), + [aux_sym_shebang_repeat1] = STATE(218), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -112636,9 +111864,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1026), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -112647,10 +111875,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -112671,926 +111899,40 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [292] = { - [sym_comment] = STATE(292), - [anon_sym_export] = ACTIONS(1270), - [anon_sym_alias] = ACTIONS(1270), - [anon_sym_let] = ACTIONS(1270), - [anon_sym_let_DASHenv] = ACTIONS(1270), - [anon_sym_mut] = ACTIONS(1270), - [anon_sym_const] = ACTIONS(1270), - [aux_sym_cmd_identifier_token1] = ACTIONS(1270), - [aux_sym_cmd_identifier_token2] = ACTIONS(1268), - [aux_sym_cmd_identifier_token3] = ACTIONS(1268), - [aux_sym_cmd_identifier_token4] = ACTIONS(1268), - [aux_sym_cmd_identifier_token5] = ACTIONS(1268), - [aux_sym_cmd_identifier_token6] = ACTIONS(1268), - [aux_sym_cmd_identifier_token7] = ACTIONS(1268), - [aux_sym_cmd_identifier_token8] = ACTIONS(1270), - [aux_sym_cmd_identifier_token9] = ACTIONS(1270), - [aux_sym_cmd_identifier_token10] = ACTIONS(1268), - [aux_sym_cmd_identifier_token11] = ACTIONS(1268), - [aux_sym_cmd_identifier_token12] = ACTIONS(1270), - [aux_sym_cmd_identifier_token13] = ACTIONS(1270), - [aux_sym_cmd_identifier_token14] = ACTIONS(1270), - [aux_sym_cmd_identifier_token15] = ACTIONS(1270), - [aux_sym_cmd_identifier_token16] = ACTIONS(1268), - [aux_sym_cmd_identifier_token17] = ACTIONS(1268), - [aux_sym_cmd_identifier_token18] = ACTIONS(1270), - [aux_sym_cmd_identifier_token19] = ACTIONS(1268), - [aux_sym_cmd_identifier_token20] = ACTIONS(1268), - [aux_sym_cmd_identifier_token21] = ACTIONS(1268), - [aux_sym_cmd_identifier_token22] = ACTIONS(1268), - [aux_sym_cmd_identifier_token23] = ACTIONS(1268), - [aux_sym_cmd_identifier_token24] = ACTIONS(1268), - [aux_sym_cmd_identifier_token25] = ACTIONS(1268), - [aux_sym_cmd_identifier_token26] = ACTIONS(1268), - [aux_sym_cmd_identifier_token27] = ACTIONS(1268), - [aux_sym_cmd_identifier_token28] = ACTIONS(1268), - [aux_sym_cmd_identifier_token29] = ACTIONS(1268), - [aux_sym_cmd_identifier_token30] = ACTIONS(1268), - [aux_sym_cmd_identifier_token31] = ACTIONS(1268), - [aux_sym_cmd_identifier_token32] = ACTIONS(1270), - [aux_sym_cmd_identifier_token33] = ACTIONS(1268), - [aux_sym_cmd_identifier_token34] = ACTIONS(1270), - [aux_sym_cmd_identifier_token35] = ACTIONS(1268), - [aux_sym_cmd_identifier_token36] = ACTIONS(1268), - [aux_sym_cmd_identifier_token37] = ACTIONS(1268), - [aux_sym_cmd_identifier_token38] = ACTIONS(1270), - [aux_sym_cmd_identifier_token39] = ACTIONS(1268), - [aux_sym_cmd_identifier_token40] = ACTIONS(1268), - [sym__newline] = ACTIONS(1268), - [anon_sym_SEMI] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_def] = ACTIONS(1270), - [anon_sym_export_DASHenv] = ACTIONS(1270), - [anon_sym_extern] = ACTIONS(1270), - [anon_sym_module] = ACTIONS(1270), - [anon_sym_use] = ACTIONS(1270), - [anon_sym_LBRACK] = ACTIONS(1268), - [anon_sym_LPAREN] = ACTIONS(1268), - [anon_sym_DOLLAR] = ACTIONS(1270), - [anon_sym_error] = ACTIONS(1270), - [anon_sym_DASH2] = ACTIONS(1270), - [anon_sym_break] = ACTIONS(1270), - [anon_sym_continue] = ACTIONS(1270), - [anon_sym_for] = ACTIONS(1270), - [anon_sym_loop] = ACTIONS(1270), - [anon_sym_while] = ACTIONS(1270), - [anon_sym_do] = ACTIONS(1270), - [anon_sym_if] = ACTIONS(1270), - [anon_sym_match] = ACTIONS(1270), - [anon_sym_LBRACE] = ACTIONS(1268), - [anon_sym_DOT_DOT] = ACTIONS(1270), - [anon_sym_try] = ACTIONS(1270), - [anon_sym_return] = ACTIONS(1270), - [anon_sym_source] = ACTIONS(1270), - [anon_sym_source_DASHenv] = ACTIONS(1270), - [anon_sym_register] = ACTIONS(1270), - [anon_sym_hide] = ACTIONS(1270), - [anon_sym_hide_DASHenv] = ACTIONS(1270), - [anon_sym_overlay] = ACTIONS(1270), - [anon_sym_where] = ACTIONS(1268), - [aux_sym_expr_unary_token1] = ACTIONS(1268), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1268), - [anon_sym_DOT_DOT_LT] = ACTIONS(1268), - [anon_sym_null] = ACTIONS(1270), - [anon_sym_true] = ACTIONS(1270), - [anon_sym_false] = ACTIONS(1270), - [aux_sym__val_number_decimal_token1] = ACTIONS(1270), - [aux_sym__val_number_decimal_token2] = ACTIONS(1268), - [aux_sym__val_number_decimal_token3] = ACTIONS(1268), - [aux_sym__val_number_decimal_token4] = ACTIONS(1268), - [aux_sym__val_number_token1] = ACTIONS(1268), - [aux_sym__val_number_token2] = ACTIONS(1268), - [aux_sym__val_number_token3] = ACTIONS(1268), - [aux_sym__val_number_token4] = ACTIONS(1270), - [aux_sym__val_number_token5] = ACTIONS(1270), - [aux_sym__val_number_token6] = ACTIONS(1270), - [anon_sym_0b] = ACTIONS(1270), - [anon_sym_0o] = ACTIONS(1270), - [anon_sym_0x] = ACTIONS(1270), - [sym_val_date] = ACTIONS(1268), - [anon_sym_DQUOTE] = ACTIONS(1268), - [sym__str_single_quotes] = ACTIONS(1268), - [sym__str_back_ticks] = ACTIONS(1268), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1268), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1268), - [aux_sym_env_var_token1] = ACTIONS(1270), - [anon_sym_CARET] = ACTIONS(1268), - [aux_sym_command_token1] = ACTIONS(1268), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1268), - }, - [293] = { - [sym_comment] = STATE(293), - [ts_builtin_sym_end] = ACTIONS(1508), - [anon_sym_export] = ACTIONS(1510), - [anon_sym_alias] = ACTIONS(1510), - [anon_sym_let] = ACTIONS(1510), - [anon_sym_let_DASHenv] = ACTIONS(1510), - [anon_sym_mut] = ACTIONS(1510), - [anon_sym_const] = ACTIONS(1510), - [aux_sym_cmd_identifier_token1] = ACTIONS(1510), - [aux_sym_cmd_identifier_token2] = ACTIONS(1508), - [aux_sym_cmd_identifier_token3] = ACTIONS(1508), - [aux_sym_cmd_identifier_token4] = ACTIONS(1508), - [aux_sym_cmd_identifier_token5] = ACTIONS(1508), - [aux_sym_cmd_identifier_token6] = ACTIONS(1508), - [aux_sym_cmd_identifier_token7] = ACTIONS(1508), - [aux_sym_cmd_identifier_token8] = ACTIONS(1510), - [aux_sym_cmd_identifier_token9] = ACTIONS(1510), - [aux_sym_cmd_identifier_token10] = ACTIONS(1508), - [aux_sym_cmd_identifier_token11] = ACTIONS(1508), - [aux_sym_cmd_identifier_token12] = ACTIONS(1510), - [aux_sym_cmd_identifier_token13] = ACTIONS(1510), - [aux_sym_cmd_identifier_token14] = ACTIONS(1510), - [aux_sym_cmd_identifier_token15] = ACTIONS(1510), - [aux_sym_cmd_identifier_token16] = ACTIONS(1508), - [aux_sym_cmd_identifier_token17] = ACTIONS(1508), - [aux_sym_cmd_identifier_token18] = ACTIONS(1510), - [aux_sym_cmd_identifier_token19] = ACTIONS(1508), - [aux_sym_cmd_identifier_token20] = ACTIONS(1508), - [aux_sym_cmd_identifier_token21] = ACTIONS(1508), - [aux_sym_cmd_identifier_token22] = ACTIONS(1508), - [aux_sym_cmd_identifier_token23] = ACTIONS(1508), - [aux_sym_cmd_identifier_token24] = ACTIONS(1508), - [aux_sym_cmd_identifier_token25] = ACTIONS(1508), - [aux_sym_cmd_identifier_token26] = ACTIONS(1508), - [aux_sym_cmd_identifier_token27] = ACTIONS(1508), - [aux_sym_cmd_identifier_token28] = ACTIONS(1508), - [aux_sym_cmd_identifier_token29] = ACTIONS(1508), - [aux_sym_cmd_identifier_token30] = ACTIONS(1508), - [aux_sym_cmd_identifier_token31] = ACTIONS(1508), - [aux_sym_cmd_identifier_token32] = ACTIONS(1510), - [aux_sym_cmd_identifier_token33] = ACTIONS(1508), - [aux_sym_cmd_identifier_token34] = ACTIONS(1510), - [aux_sym_cmd_identifier_token35] = ACTIONS(1508), - [aux_sym_cmd_identifier_token36] = ACTIONS(1508), - [aux_sym_cmd_identifier_token37] = ACTIONS(1508), - [aux_sym_cmd_identifier_token38] = ACTIONS(1510), - [aux_sym_cmd_identifier_token39] = ACTIONS(1508), - [aux_sym_cmd_identifier_token40] = ACTIONS(1508), - [sym__newline] = ACTIONS(1508), - [anon_sym_SEMI] = ACTIONS(1508), - [anon_sym_def] = ACTIONS(1510), - [anon_sym_export_DASHenv] = ACTIONS(1510), - [anon_sym_extern] = ACTIONS(1510), - [anon_sym_module] = ACTIONS(1510), - [anon_sym_use] = ACTIONS(1510), - [anon_sym_LBRACK] = ACTIONS(1508), - [anon_sym_LPAREN] = ACTIONS(1508), - [anon_sym_DOLLAR] = ACTIONS(1510), - [anon_sym_error] = ACTIONS(1510), - [anon_sym_DASH2] = ACTIONS(1510), - [anon_sym_break] = ACTIONS(1510), - [anon_sym_continue] = ACTIONS(1510), - [anon_sym_for] = ACTIONS(1510), - [anon_sym_loop] = ACTIONS(1510), - [anon_sym_while] = ACTIONS(1510), - [anon_sym_do] = ACTIONS(1510), - [anon_sym_if] = ACTIONS(1510), - [anon_sym_match] = ACTIONS(1510), - [anon_sym_LBRACE] = ACTIONS(1508), - [anon_sym_DOT_DOT] = ACTIONS(1510), - [anon_sym_try] = ACTIONS(1510), - [anon_sym_return] = ACTIONS(1510), - [anon_sym_source] = ACTIONS(1510), - [anon_sym_source_DASHenv] = ACTIONS(1510), - [anon_sym_register] = ACTIONS(1510), - [anon_sym_hide] = ACTIONS(1510), - [anon_sym_hide_DASHenv] = ACTIONS(1510), - [anon_sym_overlay] = ACTIONS(1510), - [anon_sym_where] = ACTIONS(1508), - [aux_sym_expr_unary_token1] = ACTIONS(1508), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), - [anon_sym_DOT_DOT_LT] = ACTIONS(1508), - [anon_sym_null] = ACTIONS(1510), - [anon_sym_true] = ACTIONS(1510), - [anon_sym_false] = ACTIONS(1510), - [aux_sym__val_number_decimal_token1] = ACTIONS(1510), - [aux_sym__val_number_decimal_token2] = ACTIONS(1508), - [aux_sym__val_number_decimal_token3] = ACTIONS(1508), - [aux_sym__val_number_decimal_token4] = ACTIONS(1508), - [aux_sym__val_number_token1] = ACTIONS(1508), - [aux_sym__val_number_token2] = ACTIONS(1508), - [aux_sym__val_number_token3] = ACTIONS(1508), - [aux_sym__val_number_token4] = ACTIONS(1510), - [aux_sym__val_number_token5] = ACTIONS(1510), - [aux_sym__val_number_token6] = ACTIONS(1510), - [anon_sym_0b] = ACTIONS(1510), - [anon_sym_0o] = ACTIONS(1510), - [anon_sym_0x] = ACTIONS(1510), - [sym_val_date] = ACTIONS(1508), - [anon_sym_DQUOTE] = ACTIONS(1508), - [sym__str_single_quotes] = ACTIONS(1508), - [sym__str_back_ticks] = ACTIONS(1508), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1508), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1508), - [aux_sym_env_var_token1] = ACTIONS(1510), - [anon_sym_CARET] = ACTIONS(1508), - [aux_sym_command_token1] = ACTIONS(1508), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1508), - }, - [294] = { - [sym_comment] = STATE(294), - [anon_sym_export] = ACTIONS(1512), - [anon_sym_alias] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_let_DASHenv] = ACTIONS(1512), - [anon_sym_mut] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [aux_sym_cmd_identifier_token1] = ACTIONS(1512), - [aux_sym_cmd_identifier_token2] = ACTIONS(1514), - [aux_sym_cmd_identifier_token3] = ACTIONS(1514), - [aux_sym_cmd_identifier_token4] = ACTIONS(1514), - [aux_sym_cmd_identifier_token5] = ACTIONS(1514), - [aux_sym_cmd_identifier_token6] = ACTIONS(1514), - [aux_sym_cmd_identifier_token7] = ACTIONS(1514), - [aux_sym_cmd_identifier_token8] = ACTIONS(1512), - [aux_sym_cmd_identifier_token9] = ACTIONS(1512), - [aux_sym_cmd_identifier_token10] = ACTIONS(1514), - [aux_sym_cmd_identifier_token11] = ACTIONS(1514), - [aux_sym_cmd_identifier_token12] = ACTIONS(1512), - [aux_sym_cmd_identifier_token13] = ACTIONS(1512), - [aux_sym_cmd_identifier_token14] = ACTIONS(1512), - [aux_sym_cmd_identifier_token15] = ACTIONS(1512), - [aux_sym_cmd_identifier_token16] = ACTIONS(1514), - [aux_sym_cmd_identifier_token17] = ACTIONS(1514), - [aux_sym_cmd_identifier_token18] = ACTIONS(1512), - [aux_sym_cmd_identifier_token19] = ACTIONS(1514), - [aux_sym_cmd_identifier_token20] = ACTIONS(1514), - [aux_sym_cmd_identifier_token21] = ACTIONS(1514), - [aux_sym_cmd_identifier_token22] = ACTIONS(1514), - [aux_sym_cmd_identifier_token23] = ACTIONS(1514), - [aux_sym_cmd_identifier_token24] = ACTIONS(1514), - [aux_sym_cmd_identifier_token25] = ACTIONS(1514), - [aux_sym_cmd_identifier_token26] = ACTIONS(1514), - [aux_sym_cmd_identifier_token27] = ACTIONS(1514), - [aux_sym_cmd_identifier_token28] = ACTIONS(1514), - [aux_sym_cmd_identifier_token29] = ACTIONS(1514), - [aux_sym_cmd_identifier_token30] = ACTIONS(1514), - [aux_sym_cmd_identifier_token31] = ACTIONS(1514), - [aux_sym_cmd_identifier_token32] = ACTIONS(1512), - [aux_sym_cmd_identifier_token33] = ACTIONS(1514), - [aux_sym_cmd_identifier_token34] = ACTIONS(1512), - [aux_sym_cmd_identifier_token35] = ACTIONS(1514), - [aux_sym_cmd_identifier_token36] = ACTIONS(1514), - [aux_sym_cmd_identifier_token37] = ACTIONS(1514), - [aux_sym_cmd_identifier_token38] = ACTIONS(1512), - [aux_sym_cmd_identifier_token39] = ACTIONS(1514), - [aux_sym_cmd_identifier_token40] = ACTIONS(1514), - [sym__newline] = ACTIONS(1516), - [anon_sym_SEMI] = ACTIONS(1516), - [anon_sym_def] = ACTIONS(1512), - [anon_sym_export_DASHenv] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_module] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_RPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_error] = ACTIONS(1512), - [anon_sym_DASH2] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_try] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_source] = ACTIONS(1512), - [anon_sym_source_DASHenv] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_hide] = ACTIONS(1512), - [anon_sym_hide_DASHenv] = ACTIONS(1512), - [anon_sym_overlay] = ACTIONS(1512), - [anon_sym_where] = ACTIONS(1514), - [aux_sym_expr_unary_token1] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), - [anon_sym_DOT_DOT_LT] = ACTIONS(1514), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [aux_sym__val_number_decimal_token1] = ACTIONS(1512), - [aux_sym__val_number_decimal_token2] = ACTIONS(1514), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1514), - [aux_sym__val_number_token1] = ACTIONS(1514), - [aux_sym__val_number_token2] = ACTIONS(1514), - [aux_sym__val_number_token3] = ACTIONS(1514), - [aux_sym__val_number_token4] = ACTIONS(1512), - [aux_sym__val_number_token5] = ACTIONS(1512), - [aux_sym__val_number_token6] = ACTIONS(1512), - [anon_sym_0b] = ACTIONS(1512), - [anon_sym_0o] = ACTIONS(1512), - [anon_sym_0x] = ACTIONS(1512), - [sym_val_date] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym__str_single_quotes] = ACTIONS(1514), - [sym__str_back_ticks] = ACTIONS(1514), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), - [aux_sym_env_var_token1] = ACTIONS(1512), - [anon_sym_CARET] = ACTIONS(1514), - [aux_sym_command_token1] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1514), - }, - [295] = { - [sym_comment] = STATE(295), - [aux_sym_shebang_repeat1] = STATE(244), - [anon_sym_export] = ACTIONS(1519), - [anon_sym_alias] = ACTIONS(1519), - [anon_sym_let] = ACTIONS(1519), - [anon_sym_let_DASHenv] = ACTIONS(1519), - [anon_sym_mut] = ACTIONS(1519), - [anon_sym_const] = ACTIONS(1519), - [aux_sym_cmd_identifier_token1] = ACTIONS(1519), - [aux_sym_cmd_identifier_token2] = ACTIONS(1521), - [aux_sym_cmd_identifier_token3] = ACTIONS(1521), - [aux_sym_cmd_identifier_token4] = ACTIONS(1521), - [aux_sym_cmd_identifier_token5] = ACTIONS(1521), - [aux_sym_cmd_identifier_token6] = ACTIONS(1521), - [aux_sym_cmd_identifier_token7] = ACTIONS(1521), - [aux_sym_cmd_identifier_token8] = ACTIONS(1519), - [aux_sym_cmd_identifier_token9] = ACTIONS(1519), - [aux_sym_cmd_identifier_token10] = ACTIONS(1521), - [aux_sym_cmd_identifier_token11] = ACTIONS(1521), - [aux_sym_cmd_identifier_token12] = ACTIONS(1519), - [aux_sym_cmd_identifier_token13] = ACTIONS(1519), - [aux_sym_cmd_identifier_token14] = ACTIONS(1519), - [aux_sym_cmd_identifier_token15] = ACTIONS(1519), - [aux_sym_cmd_identifier_token16] = ACTIONS(1521), - [aux_sym_cmd_identifier_token17] = ACTIONS(1521), - [aux_sym_cmd_identifier_token18] = ACTIONS(1519), - [aux_sym_cmd_identifier_token19] = ACTIONS(1521), - [aux_sym_cmd_identifier_token20] = ACTIONS(1521), - [aux_sym_cmd_identifier_token21] = ACTIONS(1521), - [aux_sym_cmd_identifier_token22] = ACTIONS(1521), - [aux_sym_cmd_identifier_token23] = ACTIONS(1521), - [aux_sym_cmd_identifier_token24] = ACTIONS(1521), - [aux_sym_cmd_identifier_token25] = ACTIONS(1521), - [aux_sym_cmd_identifier_token26] = ACTIONS(1521), - [aux_sym_cmd_identifier_token27] = ACTIONS(1521), - [aux_sym_cmd_identifier_token28] = ACTIONS(1521), - [aux_sym_cmd_identifier_token29] = ACTIONS(1521), - [aux_sym_cmd_identifier_token30] = ACTIONS(1521), - [aux_sym_cmd_identifier_token31] = ACTIONS(1521), - [aux_sym_cmd_identifier_token32] = ACTIONS(1519), - [aux_sym_cmd_identifier_token33] = ACTIONS(1521), - [aux_sym_cmd_identifier_token34] = ACTIONS(1519), - [aux_sym_cmd_identifier_token35] = ACTIONS(1521), - [aux_sym_cmd_identifier_token36] = ACTIONS(1521), - [aux_sym_cmd_identifier_token37] = ACTIONS(1521), - [aux_sym_cmd_identifier_token38] = ACTIONS(1519), - [aux_sym_cmd_identifier_token39] = ACTIONS(1521), - [aux_sym_cmd_identifier_token40] = ACTIONS(1521), - [sym__newline] = ACTIONS(1504), - [anon_sym_SEMI] = ACTIONS(1523), - [anon_sym_def] = ACTIONS(1519), - [anon_sym_export_DASHenv] = ACTIONS(1519), - [anon_sym_extern] = ACTIONS(1519), - [anon_sym_module] = ACTIONS(1519), - [anon_sym_use] = ACTIONS(1519), - [anon_sym_LBRACK] = ACTIONS(1521), - [anon_sym_LPAREN] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1519), - [anon_sym_error] = ACTIONS(1519), - [anon_sym_DASH2] = ACTIONS(1519), - [anon_sym_break] = ACTIONS(1519), - [anon_sym_continue] = ACTIONS(1519), - [anon_sym_for] = ACTIONS(1519), - [anon_sym_loop] = ACTIONS(1519), - [anon_sym_while] = ACTIONS(1519), - [anon_sym_do] = ACTIONS(1519), - [anon_sym_if] = ACTIONS(1519), - [anon_sym_match] = ACTIONS(1519), - [anon_sym_LBRACE] = ACTIONS(1521), - [anon_sym_DOT_DOT] = ACTIONS(1519), - [anon_sym_try] = ACTIONS(1519), - [anon_sym_return] = ACTIONS(1519), - [anon_sym_source] = ACTIONS(1519), - [anon_sym_source_DASHenv] = ACTIONS(1519), - [anon_sym_register] = ACTIONS(1519), - [anon_sym_hide] = ACTIONS(1519), - [anon_sym_hide_DASHenv] = ACTIONS(1519), - [anon_sym_overlay] = ACTIONS(1519), - [anon_sym_where] = ACTIONS(1521), - [aux_sym_expr_unary_token1] = ACTIONS(1521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1521), - [anon_sym_DOT_DOT_LT] = ACTIONS(1521), - [anon_sym_null] = ACTIONS(1519), - [anon_sym_true] = ACTIONS(1519), - [anon_sym_false] = ACTIONS(1519), - [aux_sym__val_number_decimal_token1] = ACTIONS(1519), - [aux_sym__val_number_decimal_token2] = ACTIONS(1521), - [aux_sym__val_number_decimal_token3] = ACTIONS(1521), - [aux_sym__val_number_decimal_token4] = ACTIONS(1521), - [aux_sym__val_number_token1] = ACTIONS(1521), - [aux_sym__val_number_token2] = ACTIONS(1521), - [aux_sym__val_number_token3] = ACTIONS(1521), - [aux_sym__val_number_token4] = ACTIONS(1519), - [aux_sym__val_number_token5] = ACTIONS(1519), - [aux_sym__val_number_token6] = ACTIONS(1519), - [anon_sym_0b] = ACTIONS(1519), - [anon_sym_0o] = ACTIONS(1519), - [anon_sym_0x] = ACTIONS(1519), - [sym_val_date] = ACTIONS(1521), - [anon_sym_DQUOTE] = ACTIONS(1521), - [sym__str_single_quotes] = ACTIONS(1521), - [sym__str_back_ticks] = ACTIONS(1521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1521), - [aux_sym_env_var_token1] = ACTIONS(1519), - [anon_sym_CARET] = ACTIONS(1521), - [aux_sym_command_token1] = ACTIONS(1521), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1521), - }, - [296] = { - [sym_comment] = STATE(296), - [aux_sym__block_body_repeat1] = STATE(205), - [anon_sym_export] = ACTIONS(1381), - [anon_sym_alias] = ACTIONS(1381), - [anon_sym_let] = ACTIONS(1381), - [anon_sym_let_DASHenv] = ACTIONS(1381), - [anon_sym_mut] = ACTIONS(1381), - [anon_sym_const] = ACTIONS(1381), - [aux_sym_cmd_identifier_token1] = ACTIONS(1381), - [aux_sym_cmd_identifier_token2] = ACTIONS(1383), - [aux_sym_cmd_identifier_token3] = ACTIONS(1383), - [aux_sym_cmd_identifier_token4] = ACTIONS(1383), - [aux_sym_cmd_identifier_token5] = ACTIONS(1383), - [aux_sym_cmd_identifier_token6] = ACTIONS(1383), - [aux_sym_cmd_identifier_token7] = ACTIONS(1383), - [aux_sym_cmd_identifier_token8] = ACTIONS(1381), - [aux_sym_cmd_identifier_token9] = ACTIONS(1381), - [aux_sym_cmd_identifier_token10] = ACTIONS(1383), - [aux_sym_cmd_identifier_token11] = ACTIONS(1383), - [aux_sym_cmd_identifier_token12] = ACTIONS(1381), - [aux_sym_cmd_identifier_token13] = ACTIONS(1381), - [aux_sym_cmd_identifier_token14] = ACTIONS(1381), - [aux_sym_cmd_identifier_token15] = ACTIONS(1381), - [aux_sym_cmd_identifier_token16] = ACTIONS(1383), - [aux_sym_cmd_identifier_token17] = ACTIONS(1383), - [aux_sym_cmd_identifier_token18] = ACTIONS(1381), - [aux_sym_cmd_identifier_token19] = ACTIONS(1383), - [aux_sym_cmd_identifier_token20] = ACTIONS(1383), - [aux_sym_cmd_identifier_token21] = ACTIONS(1383), - [aux_sym_cmd_identifier_token22] = ACTIONS(1383), - [aux_sym_cmd_identifier_token23] = ACTIONS(1383), - [aux_sym_cmd_identifier_token24] = ACTIONS(1383), - [aux_sym_cmd_identifier_token25] = ACTIONS(1383), - [aux_sym_cmd_identifier_token26] = ACTIONS(1383), - [aux_sym_cmd_identifier_token27] = ACTIONS(1383), - [aux_sym_cmd_identifier_token28] = ACTIONS(1383), - [aux_sym_cmd_identifier_token29] = ACTIONS(1383), - [aux_sym_cmd_identifier_token30] = ACTIONS(1383), - [aux_sym_cmd_identifier_token31] = ACTIONS(1383), - [aux_sym_cmd_identifier_token32] = ACTIONS(1381), - [aux_sym_cmd_identifier_token33] = ACTIONS(1383), - [aux_sym_cmd_identifier_token34] = ACTIONS(1381), - [aux_sym_cmd_identifier_token35] = ACTIONS(1383), - [aux_sym_cmd_identifier_token36] = ACTIONS(1383), - [aux_sym_cmd_identifier_token37] = ACTIONS(1383), - [aux_sym_cmd_identifier_token38] = ACTIONS(1381), - [aux_sym_cmd_identifier_token39] = ACTIONS(1383), - [aux_sym_cmd_identifier_token40] = ACTIONS(1383), - [sym__newline] = ACTIONS(141), - [anon_sym_SEMI] = ACTIONS(141), - [anon_sym_def] = ACTIONS(1381), - [anon_sym_export_DASHenv] = ACTIONS(1381), - [anon_sym_extern] = ACTIONS(1381), - [anon_sym_module] = ACTIONS(1381), - [anon_sym_use] = ACTIONS(1381), - [anon_sym_LBRACK] = ACTIONS(1383), - [anon_sym_LPAREN] = ACTIONS(1383), - [anon_sym_DOLLAR] = ACTIONS(1381), - [anon_sym_error] = ACTIONS(1381), - [anon_sym_DASH2] = ACTIONS(1381), - [anon_sym_break] = ACTIONS(1381), - [anon_sym_continue] = ACTIONS(1381), - [anon_sym_for] = ACTIONS(1381), - [anon_sym_loop] = ACTIONS(1381), - [anon_sym_while] = ACTIONS(1381), - [anon_sym_do] = ACTIONS(1381), - [anon_sym_if] = ACTIONS(1381), - [anon_sym_match] = ACTIONS(1381), - [anon_sym_LBRACE] = ACTIONS(1383), - [anon_sym_DOT_DOT] = ACTIONS(1381), - [anon_sym_try] = ACTIONS(1381), - [anon_sym_return] = ACTIONS(1381), - [anon_sym_source] = ACTIONS(1381), - [anon_sym_source_DASHenv] = ACTIONS(1381), - [anon_sym_register] = ACTIONS(1381), - [anon_sym_hide] = ACTIONS(1381), - [anon_sym_hide_DASHenv] = ACTIONS(1381), - [anon_sym_overlay] = ACTIONS(1381), - [anon_sym_where] = ACTIONS(1383), - [aux_sym_expr_unary_token1] = ACTIONS(1383), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1383), - [anon_sym_DOT_DOT_LT] = ACTIONS(1383), - [anon_sym_null] = ACTIONS(1381), - [anon_sym_true] = ACTIONS(1381), - [anon_sym_false] = ACTIONS(1381), - [aux_sym__val_number_decimal_token1] = ACTIONS(1381), - [aux_sym__val_number_decimal_token2] = ACTIONS(1383), - [aux_sym__val_number_decimal_token3] = ACTIONS(1383), - [aux_sym__val_number_decimal_token4] = ACTIONS(1383), - [aux_sym__val_number_token1] = ACTIONS(1383), - [aux_sym__val_number_token2] = ACTIONS(1383), - [aux_sym__val_number_token3] = ACTIONS(1383), - [aux_sym__val_number_token4] = ACTIONS(1381), - [aux_sym__val_number_token5] = ACTIONS(1381), - [aux_sym__val_number_token6] = ACTIONS(1381), - [anon_sym_0b] = ACTIONS(1381), - [anon_sym_0o] = ACTIONS(1381), - [anon_sym_0x] = ACTIONS(1381), - [sym_val_date] = ACTIONS(1383), - [anon_sym_DQUOTE] = ACTIONS(1383), - [sym__str_single_quotes] = ACTIONS(1383), - [sym__str_back_ticks] = ACTIONS(1383), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1383), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1383), - [aux_sym_env_var_token1] = ACTIONS(1381), - [anon_sym_CARET] = ACTIONS(1383), - [aux_sym_command_token1] = ACTIONS(1383), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1383), - }, - [297] = { - [sym_comment] = STATE(297), - [ts_builtin_sym_end] = ACTIONS(1525), - [anon_sym_export] = ACTIONS(1527), - [anon_sym_alias] = ACTIONS(1527), - [anon_sym_let] = ACTIONS(1527), - [anon_sym_let_DASHenv] = ACTIONS(1527), - [anon_sym_mut] = ACTIONS(1527), - [anon_sym_const] = ACTIONS(1527), - [aux_sym_cmd_identifier_token1] = ACTIONS(1527), - [aux_sym_cmd_identifier_token2] = ACTIONS(1525), - [aux_sym_cmd_identifier_token3] = ACTIONS(1525), - [aux_sym_cmd_identifier_token4] = ACTIONS(1525), - [aux_sym_cmd_identifier_token5] = ACTIONS(1525), - [aux_sym_cmd_identifier_token6] = ACTIONS(1525), - [aux_sym_cmd_identifier_token7] = ACTIONS(1525), - [aux_sym_cmd_identifier_token8] = ACTIONS(1527), - [aux_sym_cmd_identifier_token9] = ACTIONS(1527), - [aux_sym_cmd_identifier_token10] = ACTIONS(1525), - [aux_sym_cmd_identifier_token11] = ACTIONS(1525), - [aux_sym_cmd_identifier_token12] = ACTIONS(1527), - [aux_sym_cmd_identifier_token13] = ACTIONS(1527), - [aux_sym_cmd_identifier_token14] = ACTIONS(1527), - [aux_sym_cmd_identifier_token15] = ACTIONS(1527), - [aux_sym_cmd_identifier_token16] = ACTIONS(1525), - [aux_sym_cmd_identifier_token17] = ACTIONS(1525), - [aux_sym_cmd_identifier_token18] = ACTIONS(1527), - [aux_sym_cmd_identifier_token19] = ACTIONS(1525), - [aux_sym_cmd_identifier_token20] = ACTIONS(1525), - [aux_sym_cmd_identifier_token21] = ACTIONS(1525), - [aux_sym_cmd_identifier_token22] = ACTIONS(1525), - [aux_sym_cmd_identifier_token23] = ACTIONS(1525), - [aux_sym_cmd_identifier_token24] = ACTIONS(1525), - [aux_sym_cmd_identifier_token25] = ACTIONS(1525), - [aux_sym_cmd_identifier_token26] = ACTIONS(1525), - [aux_sym_cmd_identifier_token27] = ACTIONS(1525), - [aux_sym_cmd_identifier_token28] = ACTIONS(1525), - [aux_sym_cmd_identifier_token29] = ACTIONS(1525), - [aux_sym_cmd_identifier_token30] = ACTIONS(1525), - [aux_sym_cmd_identifier_token31] = ACTIONS(1525), - [aux_sym_cmd_identifier_token32] = ACTIONS(1527), - [aux_sym_cmd_identifier_token33] = ACTIONS(1525), - [aux_sym_cmd_identifier_token34] = ACTIONS(1527), - [aux_sym_cmd_identifier_token35] = ACTIONS(1525), - [aux_sym_cmd_identifier_token36] = ACTIONS(1525), - [aux_sym_cmd_identifier_token37] = ACTIONS(1525), - [aux_sym_cmd_identifier_token38] = ACTIONS(1527), - [aux_sym_cmd_identifier_token39] = ACTIONS(1525), - [aux_sym_cmd_identifier_token40] = ACTIONS(1525), - [sym__newline] = ACTIONS(1525), - [anon_sym_SEMI] = ACTIONS(1525), - [anon_sym_def] = ACTIONS(1527), - [anon_sym_export_DASHenv] = ACTIONS(1527), - [anon_sym_extern] = ACTIONS(1527), - [anon_sym_module] = ACTIONS(1527), - [anon_sym_use] = ACTIONS(1527), - [anon_sym_LBRACK] = ACTIONS(1525), - [anon_sym_LPAREN] = ACTIONS(1525), - [anon_sym_DOLLAR] = ACTIONS(1527), - [anon_sym_error] = ACTIONS(1527), - [anon_sym_DASH2] = ACTIONS(1527), - [anon_sym_break] = ACTIONS(1527), - [anon_sym_continue] = ACTIONS(1527), - [anon_sym_for] = ACTIONS(1527), - [anon_sym_loop] = ACTIONS(1527), - [anon_sym_while] = ACTIONS(1527), - [anon_sym_do] = ACTIONS(1527), - [anon_sym_if] = ACTIONS(1527), - [anon_sym_match] = ACTIONS(1527), - [anon_sym_LBRACE] = ACTIONS(1525), - [anon_sym_DOT_DOT] = ACTIONS(1527), - [anon_sym_try] = ACTIONS(1527), - [anon_sym_return] = ACTIONS(1527), - [anon_sym_source] = ACTIONS(1527), - [anon_sym_source_DASHenv] = ACTIONS(1527), - [anon_sym_register] = ACTIONS(1527), - [anon_sym_hide] = ACTIONS(1527), - [anon_sym_hide_DASHenv] = ACTIONS(1527), - [anon_sym_overlay] = ACTIONS(1527), - [anon_sym_where] = ACTIONS(1525), - [aux_sym_expr_unary_token1] = ACTIONS(1525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), - [anon_sym_DOT_DOT_LT] = ACTIONS(1525), - [anon_sym_null] = ACTIONS(1527), - [anon_sym_true] = ACTIONS(1527), - [anon_sym_false] = ACTIONS(1527), - [aux_sym__val_number_decimal_token1] = ACTIONS(1527), - [aux_sym__val_number_decimal_token2] = ACTIONS(1525), - [aux_sym__val_number_decimal_token3] = ACTIONS(1525), - [aux_sym__val_number_decimal_token4] = ACTIONS(1525), - [aux_sym__val_number_token1] = ACTIONS(1525), - [aux_sym__val_number_token2] = ACTIONS(1525), - [aux_sym__val_number_token3] = ACTIONS(1525), - [aux_sym__val_number_token4] = ACTIONS(1527), - [aux_sym__val_number_token5] = ACTIONS(1527), - [aux_sym__val_number_token6] = ACTIONS(1527), - [anon_sym_0b] = ACTIONS(1527), - [anon_sym_0o] = ACTIONS(1527), - [anon_sym_0x] = ACTIONS(1527), - [sym_val_date] = ACTIONS(1525), - [anon_sym_DQUOTE] = ACTIONS(1525), - [sym__str_single_quotes] = ACTIONS(1525), - [sym__str_back_ticks] = ACTIONS(1525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1525), - [aux_sym_env_var_token1] = ACTIONS(1527), - [anon_sym_CARET] = ACTIONS(1525), - [aux_sym_command_token1] = ACTIONS(1525), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1525), - }, - [298] = { - [sym_comment] = STATE(298), - [ts_builtin_sym_end] = ACTIONS(1272), - [anon_sym_export] = ACTIONS(1498), - [anon_sym_alias] = ACTIONS(1498), - [anon_sym_let] = ACTIONS(1498), - [anon_sym_let_DASHenv] = ACTIONS(1498), - [anon_sym_mut] = ACTIONS(1498), - [anon_sym_const] = ACTIONS(1498), - [aux_sym_cmd_identifier_token1] = ACTIONS(1498), - [aux_sym_cmd_identifier_token2] = ACTIONS(1272), - [aux_sym_cmd_identifier_token3] = ACTIONS(1272), - [aux_sym_cmd_identifier_token4] = ACTIONS(1272), - [aux_sym_cmd_identifier_token5] = ACTIONS(1272), - [aux_sym_cmd_identifier_token6] = ACTIONS(1272), - [aux_sym_cmd_identifier_token7] = ACTIONS(1272), - [aux_sym_cmd_identifier_token8] = ACTIONS(1498), - [aux_sym_cmd_identifier_token9] = ACTIONS(1498), - [aux_sym_cmd_identifier_token10] = ACTIONS(1272), - [aux_sym_cmd_identifier_token11] = ACTIONS(1272), - [aux_sym_cmd_identifier_token12] = ACTIONS(1498), - [aux_sym_cmd_identifier_token13] = ACTIONS(1498), - [aux_sym_cmd_identifier_token14] = ACTIONS(1498), - [aux_sym_cmd_identifier_token15] = ACTIONS(1498), - [aux_sym_cmd_identifier_token16] = ACTIONS(1272), - [aux_sym_cmd_identifier_token17] = ACTIONS(1272), - [aux_sym_cmd_identifier_token18] = ACTIONS(1498), - [aux_sym_cmd_identifier_token19] = ACTIONS(1272), - [aux_sym_cmd_identifier_token20] = ACTIONS(1272), - [aux_sym_cmd_identifier_token21] = ACTIONS(1272), - [aux_sym_cmd_identifier_token22] = ACTIONS(1272), - [aux_sym_cmd_identifier_token23] = ACTIONS(1272), - [aux_sym_cmd_identifier_token24] = ACTIONS(1272), - [aux_sym_cmd_identifier_token25] = ACTIONS(1272), - [aux_sym_cmd_identifier_token26] = ACTIONS(1272), - [aux_sym_cmd_identifier_token27] = ACTIONS(1272), - [aux_sym_cmd_identifier_token28] = ACTIONS(1272), - [aux_sym_cmd_identifier_token29] = ACTIONS(1272), - [aux_sym_cmd_identifier_token30] = ACTIONS(1272), - [aux_sym_cmd_identifier_token31] = ACTIONS(1272), - [aux_sym_cmd_identifier_token32] = ACTIONS(1498), - [aux_sym_cmd_identifier_token33] = ACTIONS(1272), - [aux_sym_cmd_identifier_token34] = ACTIONS(1498), - [aux_sym_cmd_identifier_token35] = ACTIONS(1272), - [aux_sym_cmd_identifier_token36] = ACTIONS(1272), - [aux_sym_cmd_identifier_token37] = ACTIONS(1272), - [aux_sym_cmd_identifier_token38] = ACTIONS(1498), - [aux_sym_cmd_identifier_token39] = ACTIONS(1272), - [aux_sym_cmd_identifier_token40] = ACTIONS(1272), - [sym__newline] = ACTIONS(1272), - [anon_sym_SEMI] = ACTIONS(1272), - [anon_sym_def] = ACTIONS(1498), - [anon_sym_export_DASHenv] = ACTIONS(1498), - [anon_sym_extern] = ACTIONS(1498), - [anon_sym_module] = ACTIONS(1498), - [anon_sym_use] = ACTIONS(1498), - [anon_sym_LBRACK] = ACTIONS(1272), - [anon_sym_LPAREN] = ACTIONS(1272), - [anon_sym_DOLLAR] = ACTIONS(1498), - [anon_sym_error] = ACTIONS(1498), - [anon_sym_DASH2] = ACTIONS(1498), - [anon_sym_break] = ACTIONS(1498), - [anon_sym_continue] = ACTIONS(1498), - [anon_sym_for] = ACTIONS(1498), - [anon_sym_loop] = ACTIONS(1498), - [anon_sym_while] = ACTIONS(1498), - [anon_sym_do] = ACTIONS(1498), - [anon_sym_if] = ACTIONS(1498), - [anon_sym_match] = ACTIONS(1498), - [anon_sym_LBRACE] = ACTIONS(1272), - [anon_sym_DOT_DOT] = ACTIONS(1498), - [anon_sym_try] = ACTIONS(1498), - [anon_sym_return] = ACTIONS(1498), - [anon_sym_source] = ACTIONS(1498), - [anon_sym_source_DASHenv] = ACTIONS(1498), - [anon_sym_register] = ACTIONS(1498), - [anon_sym_hide] = ACTIONS(1498), - [anon_sym_hide_DASHenv] = ACTIONS(1498), - [anon_sym_overlay] = ACTIONS(1498), - [anon_sym_where] = ACTIONS(1272), - [aux_sym_expr_unary_token1] = ACTIONS(1272), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), - [anon_sym_DOT_DOT_LT] = ACTIONS(1272), - [anon_sym_null] = ACTIONS(1498), - [anon_sym_true] = ACTIONS(1498), - [anon_sym_false] = ACTIONS(1498), - [aux_sym__val_number_decimal_token1] = ACTIONS(1498), - [aux_sym__val_number_decimal_token2] = ACTIONS(1272), - [aux_sym__val_number_decimal_token3] = ACTIONS(1272), - [aux_sym__val_number_decimal_token4] = ACTIONS(1272), - [aux_sym__val_number_token1] = ACTIONS(1272), - [aux_sym__val_number_token2] = ACTIONS(1272), - [aux_sym__val_number_token3] = ACTIONS(1272), - [aux_sym__val_number_token4] = ACTIONS(1498), - [aux_sym__val_number_token5] = ACTIONS(1498), - [aux_sym__val_number_token6] = ACTIONS(1498), - [anon_sym_0b] = ACTIONS(1498), - [anon_sym_0o] = ACTIONS(1498), - [anon_sym_0x] = ACTIONS(1498), - [sym_val_date] = ACTIONS(1272), - [anon_sym_DQUOTE] = ACTIONS(1272), - [sym__str_single_quotes] = ACTIONS(1272), - [sym__str_back_ticks] = ACTIONS(1272), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), - [aux_sym_env_var_token1] = ACTIONS(1498), - [anon_sym_CARET] = ACTIONS(1272), - [aux_sym_command_token1] = ACTIONS(1272), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1272), - }, - [299] = { - [sym_cmd_identifier] = STATE(4536), - [sym_ctrl_if] = STATE(4969), - [sym_block] = STATE(4970), - [sym__expression] = STATE(4970), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3755), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1206), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_command] = STATE(4970), - [sym_comment] = STATE(299), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_if] = ACTIONS(59), - [anon_sym_LBRACE] = ACTIONS(1529), - [anon_sym_DOT_DOT] = ACTIONS(65), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(1531), - [aux_sym__val_number_decimal_token2] = ACTIONS(1533), - [aux_sym__val_number_decimal_token3] = ACTIONS(1535), - [aux_sym__val_number_decimal_token4] = ACTIONS(1537), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [300] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression_parenthesized] = STATE(3736), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4813), - [sym_comment] = STATE(300), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1149), + [285] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4801), + [sym_block] = STATE(4802), + [sym__expression_parenthesized] = STATE(4802), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4802), + [sym_comment] = STATE(285), + [aux_sym_shebang_repeat1] = STATE(288), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -113631,891 +111973,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [301] = { - [sym_cmd_identifier] = STATE(4536), - [sym__expression] = STATE(3737), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3768), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(815), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4893), - [sym_comment] = STATE(301), - [aux_sym_pipe_element_repeat2] = STATE(1151), - [aux_sym_cmd_identifier_token1] = ACTIONS(19), - [aux_sym_cmd_identifier_token2] = ACTIONS(21), - [aux_sym_cmd_identifier_token3] = ACTIONS(21), - [aux_sym_cmd_identifier_token4] = ACTIONS(21), - [aux_sym_cmd_identifier_token5] = ACTIONS(21), - [aux_sym_cmd_identifier_token6] = ACTIONS(21), - [aux_sym_cmd_identifier_token7] = ACTIONS(21), - [aux_sym_cmd_identifier_token8] = ACTIONS(21), - [aux_sym_cmd_identifier_token9] = ACTIONS(19), - [aux_sym_cmd_identifier_token10] = ACTIONS(21), - [aux_sym_cmd_identifier_token11] = ACTIONS(21), - [aux_sym_cmd_identifier_token12] = ACTIONS(21), - [aux_sym_cmd_identifier_token13] = ACTIONS(19), - [aux_sym_cmd_identifier_token14] = ACTIONS(21), - [aux_sym_cmd_identifier_token15] = ACTIONS(19), - [aux_sym_cmd_identifier_token16] = ACTIONS(21), - [aux_sym_cmd_identifier_token17] = ACTIONS(21), - [aux_sym_cmd_identifier_token18] = ACTIONS(19), - [aux_sym_cmd_identifier_token19] = ACTIONS(21), - [aux_sym_cmd_identifier_token20] = ACTIONS(21), - [aux_sym_cmd_identifier_token21] = ACTIONS(21), - [aux_sym_cmd_identifier_token22] = ACTIONS(21), - [aux_sym_cmd_identifier_token23] = ACTIONS(21), - [aux_sym_cmd_identifier_token24] = ACTIONS(21), - [aux_sym_cmd_identifier_token25] = ACTIONS(21), - [aux_sym_cmd_identifier_token26] = ACTIONS(21), - [aux_sym_cmd_identifier_token27] = ACTIONS(21), - [aux_sym_cmd_identifier_token28] = ACTIONS(21), - [aux_sym_cmd_identifier_token29] = ACTIONS(21), - [aux_sym_cmd_identifier_token30] = ACTIONS(21), - [aux_sym_cmd_identifier_token31] = ACTIONS(21), - [aux_sym_cmd_identifier_token32] = ACTIONS(19), - [aux_sym_cmd_identifier_token33] = ACTIONS(21), - [aux_sym_cmd_identifier_token34] = ACTIONS(19), - [aux_sym_cmd_identifier_token35] = ACTIONS(21), - [aux_sym_cmd_identifier_token36] = ACTIONS(21), - [aux_sym_cmd_identifier_token37] = ACTIONS(21), - [aux_sym_cmd_identifier_token38] = ACTIONS(19), - [aux_sym_cmd_identifier_token39] = ACTIONS(21), - [aux_sym_cmd_identifier_token40] = ACTIONS(21), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(65), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(85), - [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(87), - [anon_sym_true] = ACTIONS(89), - [anon_sym_false] = ACTIONS(89), - [aux_sym__val_number_decimal_token1] = ACTIONS(91), - [aux_sym__val_number_decimal_token2] = ACTIONS(93), - [aux_sym__val_number_decimal_token3] = ACTIONS(95), - [aux_sym__val_number_decimal_token4] = ACTIONS(97), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(101), - [aux_sym__val_number_token5] = ACTIONS(101), - [aux_sym__val_number_token6] = ACTIONS(101), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(107), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(119), - [aux_sym_command_token1] = ACTIONS(121), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [302] = { - [sym__expr_parenthesized_immediate] = STATE(490), - [sym__immediate_decimal] = STATE(371), - [sym_val_variable] = STATE(490), - [sym_comment] = STATE(302), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_alias] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_let_DASHenv] = ACTIONS(1539), - [anon_sym_mut] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [aux_sym_cmd_identifier_token1] = ACTIONS(1539), - [aux_sym_cmd_identifier_token2] = ACTIONS(1539), - [aux_sym_cmd_identifier_token3] = ACTIONS(1539), - [aux_sym_cmd_identifier_token4] = ACTIONS(1539), - [aux_sym_cmd_identifier_token5] = ACTIONS(1539), - [aux_sym_cmd_identifier_token6] = ACTIONS(1539), - [aux_sym_cmd_identifier_token7] = ACTIONS(1539), - [aux_sym_cmd_identifier_token8] = ACTIONS(1539), - [aux_sym_cmd_identifier_token9] = ACTIONS(1539), - [aux_sym_cmd_identifier_token10] = ACTIONS(1539), - [aux_sym_cmd_identifier_token11] = ACTIONS(1539), - [aux_sym_cmd_identifier_token12] = ACTIONS(1539), - [aux_sym_cmd_identifier_token13] = ACTIONS(1539), - [aux_sym_cmd_identifier_token14] = ACTIONS(1539), - [aux_sym_cmd_identifier_token15] = ACTIONS(1539), - [aux_sym_cmd_identifier_token16] = ACTIONS(1539), - [aux_sym_cmd_identifier_token17] = ACTIONS(1539), - [aux_sym_cmd_identifier_token18] = ACTIONS(1539), - [aux_sym_cmd_identifier_token19] = ACTIONS(1539), - [aux_sym_cmd_identifier_token20] = ACTIONS(1539), - [aux_sym_cmd_identifier_token21] = ACTIONS(1539), - [aux_sym_cmd_identifier_token22] = ACTIONS(1539), - [aux_sym_cmd_identifier_token23] = ACTIONS(1539), - [aux_sym_cmd_identifier_token24] = ACTIONS(1539), - [aux_sym_cmd_identifier_token25] = ACTIONS(1539), - [aux_sym_cmd_identifier_token26] = ACTIONS(1539), - [aux_sym_cmd_identifier_token27] = ACTIONS(1539), - [aux_sym_cmd_identifier_token28] = ACTIONS(1539), - [aux_sym_cmd_identifier_token29] = ACTIONS(1539), - [aux_sym_cmd_identifier_token30] = ACTIONS(1539), - [aux_sym_cmd_identifier_token31] = ACTIONS(1539), - [aux_sym_cmd_identifier_token32] = ACTIONS(1539), - [aux_sym_cmd_identifier_token33] = ACTIONS(1539), - [aux_sym_cmd_identifier_token34] = ACTIONS(1539), - [aux_sym_cmd_identifier_token35] = ACTIONS(1539), - [aux_sym_cmd_identifier_token36] = ACTIONS(1539), - [aux_sym_cmd_identifier_token37] = ACTIONS(1539), - [aux_sym_cmd_identifier_token38] = ACTIONS(1539), - [aux_sym_cmd_identifier_token39] = ACTIONS(1539), - [aux_sym_cmd_identifier_token40] = ACTIONS(1539), - [anon_sym_def] = ACTIONS(1539), - [anon_sym_export_DASHenv] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_error] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_make] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_source] = ACTIONS(1539), - [anon_sym_source_DASHenv] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_hide] = ACTIONS(1539), - [anon_sym_hide_DASHenv] = ACTIONS(1539), - [anon_sym_overlay] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1539), - [anon_sym_DOT] = ACTIONS(1545), - [aux_sym__immediate_decimal_token1] = ACTIONS(1547), - [aux_sym__immediate_decimal_token3] = ACTIONS(1547), - [aux_sym__immediate_decimal_token4] = ACTIONS(1549), - [aux_sym__immediate_decimal_token5] = ACTIONS(1551), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1539), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1539), - [aux_sym__val_number_token2] = ACTIONS(1539), - [aux_sym__val_number_token3] = ACTIONS(1539), - [aux_sym__val_number_token4] = ACTIONS(1539), - [aux_sym__val_number_token5] = ACTIONS(1539), - [aux_sym__val_number_token6] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym__str_single_quotes] = ACTIONS(1539), - [sym__str_back_ticks] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1539), - [sym__entry_separator] = ACTIONS(1553), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1553), - }, - [303] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression_parenthesized] = STATE(3736), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(858), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4813), - [sym_comment] = STATE(303), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1149), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [304] = { - [sym_comment] = STATE(304), - [anon_sym_export] = ACTIONS(1565), - [anon_sym_alias] = ACTIONS(1565), - [anon_sym_let] = ACTIONS(1565), - [anon_sym_let_DASHenv] = ACTIONS(1565), - [anon_sym_mut] = ACTIONS(1565), - [anon_sym_const] = ACTIONS(1565), - [aux_sym_cmd_identifier_token1] = ACTIONS(1565), - [aux_sym_cmd_identifier_token2] = ACTIONS(1567), - [aux_sym_cmd_identifier_token3] = ACTIONS(1567), - [aux_sym_cmd_identifier_token4] = ACTIONS(1567), - [aux_sym_cmd_identifier_token5] = ACTIONS(1567), - [aux_sym_cmd_identifier_token6] = ACTIONS(1567), - [aux_sym_cmd_identifier_token7] = ACTIONS(1567), - [aux_sym_cmd_identifier_token8] = ACTIONS(1565), - [aux_sym_cmd_identifier_token9] = ACTIONS(1565), - [aux_sym_cmd_identifier_token10] = ACTIONS(1567), - [aux_sym_cmd_identifier_token11] = ACTIONS(1567), - [aux_sym_cmd_identifier_token12] = ACTIONS(1565), - [aux_sym_cmd_identifier_token13] = ACTIONS(1565), - [aux_sym_cmd_identifier_token14] = ACTIONS(1565), - [aux_sym_cmd_identifier_token15] = ACTIONS(1565), - [aux_sym_cmd_identifier_token16] = ACTIONS(1567), - [aux_sym_cmd_identifier_token17] = ACTIONS(1567), - [aux_sym_cmd_identifier_token18] = ACTIONS(1565), - [aux_sym_cmd_identifier_token19] = ACTIONS(1567), - [aux_sym_cmd_identifier_token20] = ACTIONS(1567), - [aux_sym_cmd_identifier_token21] = ACTIONS(1567), - [aux_sym_cmd_identifier_token22] = ACTIONS(1567), - [aux_sym_cmd_identifier_token23] = ACTIONS(1567), - [aux_sym_cmd_identifier_token24] = ACTIONS(1567), - [aux_sym_cmd_identifier_token25] = ACTIONS(1567), - [aux_sym_cmd_identifier_token26] = ACTIONS(1567), - [aux_sym_cmd_identifier_token27] = ACTIONS(1567), - [aux_sym_cmd_identifier_token28] = ACTIONS(1567), - [aux_sym_cmd_identifier_token29] = ACTIONS(1567), - [aux_sym_cmd_identifier_token30] = ACTIONS(1567), - [aux_sym_cmd_identifier_token31] = ACTIONS(1567), - [aux_sym_cmd_identifier_token32] = ACTIONS(1565), - [aux_sym_cmd_identifier_token33] = ACTIONS(1567), - [aux_sym_cmd_identifier_token34] = ACTIONS(1565), - [aux_sym_cmd_identifier_token35] = ACTIONS(1567), - [aux_sym_cmd_identifier_token36] = ACTIONS(1567), - [aux_sym_cmd_identifier_token37] = ACTIONS(1567), - [aux_sym_cmd_identifier_token38] = ACTIONS(1565), - [aux_sym_cmd_identifier_token39] = ACTIONS(1567), - [aux_sym_cmd_identifier_token40] = ACTIONS(1567), - [sym__newline] = ACTIONS(1567), - [anon_sym_SEMI] = ACTIONS(1567), - [anon_sym_def] = ACTIONS(1565), - [anon_sym_export_DASHenv] = ACTIONS(1565), - [anon_sym_extern] = ACTIONS(1565), - [anon_sym_module] = ACTIONS(1565), - [anon_sym_use] = ACTIONS(1565), - [anon_sym_LBRACK] = ACTIONS(1567), - [anon_sym_LPAREN] = ACTIONS(1567), - [anon_sym_DOLLAR] = ACTIONS(1565), - [anon_sym_error] = ACTIONS(1565), - [anon_sym_DASH2] = ACTIONS(1565), - [anon_sym_break] = ACTIONS(1565), - [anon_sym_continue] = ACTIONS(1565), - [anon_sym_for] = ACTIONS(1565), - [anon_sym_loop] = ACTIONS(1565), - [anon_sym_while] = ACTIONS(1565), - [anon_sym_do] = ACTIONS(1565), - [anon_sym_if] = ACTIONS(1565), - [anon_sym_match] = ACTIONS(1565), - [anon_sym_LBRACE] = ACTIONS(1567), - [anon_sym_DOT_DOT] = ACTIONS(1565), - [anon_sym_try] = ACTIONS(1565), - [anon_sym_return] = ACTIONS(1565), - [anon_sym_source] = ACTIONS(1565), - [anon_sym_source_DASHenv] = ACTIONS(1565), - [anon_sym_register] = ACTIONS(1565), - [anon_sym_hide] = ACTIONS(1565), - [anon_sym_hide_DASHenv] = ACTIONS(1565), - [anon_sym_overlay] = ACTIONS(1565), - [anon_sym_where] = ACTIONS(1567), - [aux_sym_expr_unary_token1] = ACTIONS(1567), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1567), - [anon_sym_DOT_DOT_LT] = ACTIONS(1567), - [anon_sym_null] = ACTIONS(1565), - [anon_sym_true] = ACTIONS(1565), - [anon_sym_false] = ACTIONS(1565), - [aux_sym__val_number_decimal_token1] = ACTIONS(1565), - [aux_sym__val_number_decimal_token2] = ACTIONS(1567), - [aux_sym__val_number_decimal_token3] = ACTIONS(1567), - [aux_sym__val_number_decimal_token4] = ACTIONS(1567), - [aux_sym__val_number_token1] = ACTIONS(1567), - [aux_sym__val_number_token2] = ACTIONS(1567), - [aux_sym__val_number_token3] = ACTIONS(1567), - [aux_sym__val_number_token4] = ACTIONS(1565), - [aux_sym__val_number_token5] = ACTIONS(1565), - [aux_sym__val_number_token6] = ACTIONS(1565), - [anon_sym_0b] = ACTIONS(1565), - [anon_sym_0o] = ACTIONS(1565), - [anon_sym_0x] = ACTIONS(1565), - [sym_val_date] = ACTIONS(1567), - [anon_sym_DQUOTE] = ACTIONS(1567), - [sym__str_single_quotes] = ACTIONS(1567), - [sym__str_back_ticks] = ACTIONS(1567), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1567), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1567), - [aux_sym_env_var_token1] = ACTIONS(1565), - [anon_sym_CARET] = ACTIONS(1567), - [aux_sym_command_token1] = ACTIONS(1567), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1567), - }, - [305] = { - [sym_comment] = STATE(305), - [anon_sym_export] = ACTIONS(1488), - [anon_sym_alias] = ACTIONS(1488), - [anon_sym_let] = ACTIONS(1488), - [anon_sym_let_DASHenv] = ACTIONS(1488), - [anon_sym_mut] = ACTIONS(1488), - [anon_sym_const] = ACTIONS(1488), - [aux_sym_cmd_identifier_token1] = ACTIONS(1488), - [aux_sym_cmd_identifier_token2] = ACTIONS(1490), - [aux_sym_cmd_identifier_token3] = ACTIONS(1490), - [aux_sym_cmd_identifier_token4] = ACTIONS(1490), - [aux_sym_cmd_identifier_token5] = ACTIONS(1490), - [aux_sym_cmd_identifier_token6] = ACTIONS(1490), - [aux_sym_cmd_identifier_token7] = ACTIONS(1490), - [aux_sym_cmd_identifier_token8] = ACTIONS(1488), - [aux_sym_cmd_identifier_token9] = ACTIONS(1488), - [aux_sym_cmd_identifier_token10] = ACTIONS(1490), - [aux_sym_cmd_identifier_token11] = ACTIONS(1490), - [aux_sym_cmd_identifier_token12] = ACTIONS(1488), - [aux_sym_cmd_identifier_token13] = ACTIONS(1488), - [aux_sym_cmd_identifier_token14] = ACTIONS(1488), - [aux_sym_cmd_identifier_token15] = ACTIONS(1488), - [aux_sym_cmd_identifier_token16] = ACTIONS(1490), - [aux_sym_cmd_identifier_token17] = ACTIONS(1490), - [aux_sym_cmd_identifier_token18] = ACTIONS(1488), - [aux_sym_cmd_identifier_token19] = ACTIONS(1490), - [aux_sym_cmd_identifier_token20] = ACTIONS(1490), - [aux_sym_cmd_identifier_token21] = ACTIONS(1490), - [aux_sym_cmd_identifier_token22] = ACTIONS(1490), - [aux_sym_cmd_identifier_token23] = ACTIONS(1490), - [aux_sym_cmd_identifier_token24] = ACTIONS(1490), - [aux_sym_cmd_identifier_token25] = ACTIONS(1490), - [aux_sym_cmd_identifier_token26] = ACTIONS(1490), - [aux_sym_cmd_identifier_token27] = ACTIONS(1490), - [aux_sym_cmd_identifier_token28] = ACTIONS(1490), - [aux_sym_cmd_identifier_token29] = ACTIONS(1490), - [aux_sym_cmd_identifier_token30] = ACTIONS(1490), - [aux_sym_cmd_identifier_token31] = ACTIONS(1490), - [aux_sym_cmd_identifier_token32] = ACTIONS(1488), - [aux_sym_cmd_identifier_token33] = ACTIONS(1490), - [aux_sym_cmd_identifier_token34] = ACTIONS(1488), - [aux_sym_cmd_identifier_token35] = ACTIONS(1490), - [aux_sym_cmd_identifier_token36] = ACTIONS(1490), - [aux_sym_cmd_identifier_token37] = ACTIONS(1490), - [aux_sym_cmd_identifier_token38] = ACTIONS(1488), - [aux_sym_cmd_identifier_token39] = ACTIONS(1490), - [aux_sym_cmd_identifier_token40] = ACTIONS(1490), - [sym__newline] = ACTIONS(1490), - [anon_sym_SEMI] = ACTIONS(1490), - [anon_sym_def] = ACTIONS(1488), - [anon_sym_export_DASHenv] = ACTIONS(1488), - [anon_sym_extern] = ACTIONS(1488), - [anon_sym_module] = ACTIONS(1488), - [anon_sym_use] = ACTIONS(1488), - [anon_sym_LBRACK] = ACTIONS(1490), - [anon_sym_LPAREN] = ACTIONS(1490), - [anon_sym_DOLLAR] = ACTIONS(1488), - [anon_sym_error] = ACTIONS(1488), - [anon_sym_DASH2] = ACTIONS(1488), - [anon_sym_break] = ACTIONS(1488), - [anon_sym_continue] = ACTIONS(1488), - [anon_sym_for] = ACTIONS(1488), - [anon_sym_loop] = ACTIONS(1488), - [anon_sym_while] = ACTIONS(1488), - [anon_sym_do] = ACTIONS(1488), - [anon_sym_if] = ACTIONS(1488), - [anon_sym_match] = ACTIONS(1488), - [anon_sym_LBRACE] = ACTIONS(1490), - [anon_sym_DOT_DOT] = ACTIONS(1488), - [anon_sym_try] = ACTIONS(1488), - [anon_sym_return] = ACTIONS(1488), - [anon_sym_source] = ACTIONS(1488), - [anon_sym_source_DASHenv] = ACTIONS(1488), - [anon_sym_register] = ACTIONS(1488), - [anon_sym_hide] = ACTIONS(1488), - [anon_sym_hide_DASHenv] = ACTIONS(1488), - [anon_sym_overlay] = ACTIONS(1488), - [anon_sym_where] = ACTIONS(1490), - [aux_sym_expr_unary_token1] = ACTIONS(1490), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1490), - [anon_sym_DOT_DOT_LT] = ACTIONS(1490), - [anon_sym_null] = ACTIONS(1488), - [anon_sym_true] = ACTIONS(1488), - [anon_sym_false] = ACTIONS(1488), - [aux_sym__val_number_decimal_token1] = ACTIONS(1488), - [aux_sym__val_number_decimal_token2] = ACTIONS(1490), - [aux_sym__val_number_decimal_token3] = ACTIONS(1490), - [aux_sym__val_number_decimal_token4] = ACTIONS(1490), - [aux_sym__val_number_token1] = ACTIONS(1490), - [aux_sym__val_number_token2] = ACTIONS(1490), - [aux_sym__val_number_token3] = ACTIONS(1490), - [aux_sym__val_number_token4] = ACTIONS(1488), - [aux_sym__val_number_token5] = ACTIONS(1488), - [aux_sym__val_number_token6] = ACTIONS(1488), - [anon_sym_0b] = ACTIONS(1488), - [anon_sym_0o] = ACTIONS(1488), - [anon_sym_0x] = ACTIONS(1488), - [sym_val_date] = ACTIONS(1490), - [anon_sym_DQUOTE] = ACTIONS(1490), - [sym__str_single_quotes] = ACTIONS(1490), - [sym__str_back_ticks] = ACTIONS(1490), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1490), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1490), - [aux_sym_env_var_token1] = ACTIONS(1488), - [anon_sym_CARET] = ACTIONS(1490), - [aux_sym_command_token1] = ACTIONS(1490), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1490), - }, - [306] = { - [sym_comment] = STATE(306), - [anon_sym_export] = ACTIONS(1512), - [anon_sym_alias] = ACTIONS(1512), - [anon_sym_let] = ACTIONS(1512), - [anon_sym_let_DASHenv] = ACTIONS(1512), - [anon_sym_mut] = ACTIONS(1512), - [anon_sym_const] = ACTIONS(1512), - [aux_sym_cmd_identifier_token1] = ACTIONS(1512), - [aux_sym_cmd_identifier_token2] = ACTIONS(1514), - [aux_sym_cmd_identifier_token3] = ACTIONS(1514), - [aux_sym_cmd_identifier_token4] = ACTIONS(1514), - [aux_sym_cmd_identifier_token5] = ACTIONS(1514), - [aux_sym_cmd_identifier_token6] = ACTIONS(1514), - [aux_sym_cmd_identifier_token7] = ACTIONS(1514), - [aux_sym_cmd_identifier_token8] = ACTIONS(1512), - [aux_sym_cmd_identifier_token9] = ACTIONS(1512), - [aux_sym_cmd_identifier_token10] = ACTIONS(1514), - [aux_sym_cmd_identifier_token11] = ACTIONS(1514), - [aux_sym_cmd_identifier_token12] = ACTIONS(1512), - [aux_sym_cmd_identifier_token13] = ACTIONS(1512), - [aux_sym_cmd_identifier_token14] = ACTIONS(1512), - [aux_sym_cmd_identifier_token15] = ACTIONS(1512), - [aux_sym_cmd_identifier_token16] = ACTIONS(1514), - [aux_sym_cmd_identifier_token17] = ACTIONS(1514), - [aux_sym_cmd_identifier_token18] = ACTIONS(1512), - [aux_sym_cmd_identifier_token19] = ACTIONS(1514), - [aux_sym_cmd_identifier_token20] = ACTIONS(1514), - [aux_sym_cmd_identifier_token21] = ACTIONS(1514), - [aux_sym_cmd_identifier_token22] = ACTIONS(1514), - [aux_sym_cmd_identifier_token23] = ACTIONS(1514), - [aux_sym_cmd_identifier_token24] = ACTIONS(1514), - [aux_sym_cmd_identifier_token25] = ACTIONS(1514), - [aux_sym_cmd_identifier_token26] = ACTIONS(1514), - [aux_sym_cmd_identifier_token27] = ACTIONS(1514), - [aux_sym_cmd_identifier_token28] = ACTIONS(1514), - [aux_sym_cmd_identifier_token29] = ACTIONS(1514), - [aux_sym_cmd_identifier_token30] = ACTIONS(1514), - [aux_sym_cmd_identifier_token31] = ACTIONS(1514), - [aux_sym_cmd_identifier_token32] = ACTIONS(1512), - [aux_sym_cmd_identifier_token33] = ACTIONS(1514), - [aux_sym_cmd_identifier_token34] = ACTIONS(1512), - [aux_sym_cmd_identifier_token35] = ACTIONS(1514), - [aux_sym_cmd_identifier_token36] = ACTIONS(1514), - [aux_sym_cmd_identifier_token37] = ACTIONS(1514), - [aux_sym_cmd_identifier_token38] = ACTIONS(1512), - [aux_sym_cmd_identifier_token39] = ACTIONS(1514), - [aux_sym_cmd_identifier_token40] = ACTIONS(1514), - [sym__newline] = ACTIONS(1514), - [anon_sym_SEMI] = ACTIONS(1514), - [anon_sym_def] = ACTIONS(1512), - [anon_sym_export_DASHenv] = ACTIONS(1512), - [anon_sym_extern] = ACTIONS(1512), - [anon_sym_module] = ACTIONS(1512), - [anon_sym_use] = ACTIONS(1512), - [anon_sym_LBRACK] = ACTIONS(1514), - [anon_sym_LPAREN] = ACTIONS(1514), - [anon_sym_DOLLAR] = ACTIONS(1512), - [anon_sym_error] = ACTIONS(1512), - [anon_sym_DASH2] = ACTIONS(1512), - [anon_sym_break] = ACTIONS(1512), - [anon_sym_continue] = ACTIONS(1512), - [anon_sym_for] = ACTIONS(1512), - [anon_sym_loop] = ACTIONS(1512), - [anon_sym_while] = ACTIONS(1512), - [anon_sym_do] = ACTIONS(1512), - [anon_sym_if] = ACTIONS(1512), - [anon_sym_match] = ACTIONS(1512), - [anon_sym_LBRACE] = ACTIONS(1514), - [anon_sym_DOT_DOT] = ACTIONS(1512), - [anon_sym_try] = ACTIONS(1512), - [anon_sym_return] = ACTIONS(1512), - [anon_sym_source] = ACTIONS(1512), - [anon_sym_source_DASHenv] = ACTIONS(1512), - [anon_sym_register] = ACTIONS(1512), - [anon_sym_hide] = ACTIONS(1512), - [anon_sym_hide_DASHenv] = ACTIONS(1512), - [anon_sym_overlay] = ACTIONS(1512), - [anon_sym_where] = ACTIONS(1514), - [aux_sym_expr_unary_token1] = ACTIONS(1514), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1514), - [anon_sym_DOT_DOT_LT] = ACTIONS(1514), - [anon_sym_null] = ACTIONS(1512), - [anon_sym_true] = ACTIONS(1512), - [anon_sym_false] = ACTIONS(1512), - [aux_sym__val_number_decimal_token1] = ACTIONS(1512), - [aux_sym__val_number_decimal_token2] = ACTIONS(1514), - [aux_sym__val_number_decimal_token3] = ACTIONS(1514), - [aux_sym__val_number_decimal_token4] = ACTIONS(1514), - [aux_sym__val_number_token1] = ACTIONS(1514), - [aux_sym__val_number_token2] = ACTIONS(1514), - [aux_sym__val_number_token3] = ACTIONS(1514), - [aux_sym__val_number_token4] = ACTIONS(1512), - [aux_sym__val_number_token5] = ACTIONS(1512), - [aux_sym__val_number_token6] = ACTIONS(1512), - [anon_sym_0b] = ACTIONS(1512), - [anon_sym_0o] = ACTIONS(1512), - [anon_sym_0x] = ACTIONS(1512), - [sym_val_date] = ACTIONS(1514), - [anon_sym_DQUOTE] = ACTIONS(1514), - [sym__str_single_quotes] = ACTIONS(1514), - [sym__str_back_ticks] = ACTIONS(1514), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1514), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1514), - [aux_sym_env_var_token1] = ACTIONS(1512), - [anon_sym_CARET] = ACTIONS(1514), - [aux_sym_command_token1] = ACTIONS(1514), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1514), - }, - [307] = { - [sym_comment] = STATE(307), - [anon_sym_export] = ACTIONS(1569), - [anon_sym_alias] = ACTIONS(1569), - [anon_sym_let] = ACTIONS(1569), - [anon_sym_let_DASHenv] = ACTIONS(1569), - [anon_sym_mut] = ACTIONS(1569), - [anon_sym_const] = ACTIONS(1569), - [aux_sym_cmd_identifier_token1] = ACTIONS(1569), - [aux_sym_cmd_identifier_token2] = ACTIONS(1571), - [aux_sym_cmd_identifier_token3] = ACTIONS(1571), - [aux_sym_cmd_identifier_token4] = ACTIONS(1571), - [aux_sym_cmd_identifier_token5] = ACTIONS(1571), - [aux_sym_cmd_identifier_token6] = ACTIONS(1571), - [aux_sym_cmd_identifier_token7] = ACTIONS(1571), - [aux_sym_cmd_identifier_token8] = ACTIONS(1569), - [aux_sym_cmd_identifier_token9] = ACTIONS(1569), - [aux_sym_cmd_identifier_token10] = ACTIONS(1571), - [aux_sym_cmd_identifier_token11] = ACTIONS(1571), - [aux_sym_cmd_identifier_token12] = ACTIONS(1569), - [aux_sym_cmd_identifier_token13] = ACTIONS(1569), - [aux_sym_cmd_identifier_token14] = ACTIONS(1569), - [aux_sym_cmd_identifier_token15] = ACTIONS(1569), - [aux_sym_cmd_identifier_token16] = ACTIONS(1571), - [aux_sym_cmd_identifier_token17] = ACTIONS(1571), - [aux_sym_cmd_identifier_token18] = ACTIONS(1569), - [aux_sym_cmd_identifier_token19] = ACTIONS(1571), - [aux_sym_cmd_identifier_token20] = ACTIONS(1571), - [aux_sym_cmd_identifier_token21] = ACTIONS(1571), - [aux_sym_cmd_identifier_token22] = ACTIONS(1571), - [aux_sym_cmd_identifier_token23] = ACTIONS(1571), - [aux_sym_cmd_identifier_token24] = ACTIONS(1571), - [aux_sym_cmd_identifier_token25] = ACTIONS(1571), - [aux_sym_cmd_identifier_token26] = ACTIONS(1571), - [aux_sym_cmd_identifier_token27] = ACTIONS(1571), - [aux_sym_cmd_identifier_token28] = ACTIONS(1571), - [aux_sym_cmd_identifier_token29] = ACTIONS(1571), - [aux_sym_cmd_identifier_token30] = ACTIONS(1571), - [aux_sym_cmd_identifier_token31] = ACTIONS(1571), - [aux_sym_cmd_identifier_token32] = ACTIONS(1569), - [aux_sym_cmd_identifier_token33] = ACTIONS(1571), - [aux_sym_cmd_identifier_token34] = ACTIONS(1569), - [aux_sym_cmd_identifier_token35] = ACTIONS(1571), - [aux_sym_cmd_identifier_token36] = ACTIONS(1571), - [aux_sym_cmd_identifier_token37] = ACTIONS(1571), - [aux_sym_cmd_identifier_token38] = ACTIONS(1569), - [aux_sym_cmd_identifier_token39] = ACTIONS(1571), - [aux_sym_cmd_identifier_token40] = ACTIONS(1571), - [sym__newline] = ACTIONS(1571), - [anon_sym_SEMI] = ACTIONS(1571), - [anon_sym_def] = ACTIONS(1569), - [anon_sym_export_DASHenv] = ACTIONS(1569), - [anon_sym_extern] = ACTIONS(1569), - [anon_sym_module] = ACTIONS(1569), - [anon_sym_use] = ACTIONS(1569), - [anon_sym_LBRACK] = ACTIONS(1571), - [anon_sym_LPAREN] = ACTIONS(1571), - [anon_sym_DOLLAR] = ACTIONS(1569), - [anon_sym_error] = ACTIONS(1569), - [anon_sym_DASH2] = ACTIONS(1569), - [anon_sym_break] = ACTIONS(1569), - [anon_sym_continue] = ACTIONS(1569), - [anon_sym_for] = ACTIONS(1569), - [anon_sym_loop] = ACTIONS(1569), - [anon_sym_while] = ACTIONS(1569), - [anon_sym_do] = ACTIONS(1569), - [anon_sym_if] = ACTIONS(1569), - [anon_sym_match] = ACTIONS(1569), - [anon_sym_LBRACE] = ACTIONS(1571), - [anon_sym_DOT_DOT] = ACTIONS(1569), - [anon_sym_try] = ACTIONS(1569), - [anon_sym_return] = ACTIONS(1569), - [anon_sym_source] = ACTIONS(1569), - [anon_sym_source_DASHenv] = ACTIONS(1569), - [anon_sym_register] = ACTIONS(1569), - [anon_sym_hide] = ACTIONS(1569), - [anon_sym_hide_DASHenv] = ACTIONS(1569), - [anon_sym_overlay] = ACTIONS(1569), - [anon_sym_where] = ACTIONS(1571), - [aux_sym_expr_unary_token1] = ACTIONS(1571), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1571), - [anon_sym_DOT_DOT_LT] = ACTIONS(1571), - [anon_sym_null] = ACTIONS(1569), - [anon_sym_true] = ACTIONS(1569), - [anon_sym_false] = ACTIONS(1569), - [aux_sym__val_number_decimal_token1] = ACTIONS(1569), - [aux_sym__val_number_decimal_token2] = ACTIONS(1571), - [aux_sym__val_number_decimal_token3] = ACTIONS(1571), - [aux_sym__val_number_decimal_token4] = ACTIONS(1571), - [aux_sym__val_number_token1] = ACTIONS(1571), - [aux_sym__val_number_token2] = ACTIONS(1571), - [aux_sym__val_number_token3] = ACTIONS(1571), - [aux_sym__val_number_token4] = ACTIONS(1569), - [aux_sym__val_number_token5] = ACTIONS(1569), - [aux_sym__val_number_token6] = ACTIONS(1569), - [anon_sym_0b] = ACTIONS(1569), - [anon_sym_0o] = ACTIONS(1569), - [anon_sym_0x] = ACTIONS(1569), - [sym_val_date] = ACTIONS(1571), - [anon_sym_DQUOTE] = ACTIONS(1571), - [sym__str_single_quotes] = ACTIONS(1571), - [sym__str_back_ticks] = ACTIONS(1571), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1571), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1571), - [aux_sym_env_var_token1] = ACTIONS(1569), - [anon_sym_CARET] = ACTIONS(1571), - [aux_sym_command_token1] = ACTIONS(1571), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1571), - }, - [308] = { - [sym_cmd_identifier] = STATE(4329), - [sym__expression] = STATE(3688), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(858), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4733), - [sym_comment] = STATE(308), - [aux_sym_pipe_element_repeat2] = STATE(1151), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114523,10 +111987,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1557), - [aux_sym__val_number_decimal_token2] = ACTIONS(1559), - [aux_sym__val_number_decimal_token3] = ACTIONS(1561), - [aux_sym__val_number_decimal_token4] = ACTIONS(1563), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -114542,45 +112006,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [309] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if] = STATE(4571), - [sym_block] = STATE(4574), - [sym__expression] = STATE(4574), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1233), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4574), - [sym_comment] = STATE(309), + [286] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4902), + [sym_block] = STATE(4903), + [sym__expression_parenthesized] = STATE(4903), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4903), + [sym_comment] = STATE(286), + [aux_sym_shebang_repeat1] = STATE(224), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -114621,11 +112085,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1474), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -114634,10 +112099,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1466), - [aux_sym__val_number_decimal_token2] = ACTIONS(1468), - [aux_sym__val_number_decimal_token3] = ACTIONS(1470), - [aux_sym__val_number_decimal_token4] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -114658,259 +112123,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [310] = { - [sym_cmd_identifier] = STATE(4507), - [sym__expression_parenthesized] = STATE(3736), - [sym_expr_unary] = STATE(2369), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2369), - [sym__expr_binary_expression_parenthesized] = STATE(3682), - [sym_expr_parenthesized] = STATE(1953), - [sym_val_range] = STATE(2369), - [sym__value] = STATE(2369), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(6681), - [sym__command_parenthesized] = STATE(4813), - [sym_comment] = STATE(310), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1149), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(465), - [aux_sym_command_token1] = ACTIONS(467), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [311] = { - [sym_comment] = STATE(311), - [anon_sym_export] = ACTIONS(1575), - [anon_sym_alias] = ACTIONS(1575), - [anon_sym_let] = ACTIONS(1575), - [anon_sym_let_DASHenv] = ACTIONS(1575), - [anon_sym_mut] = ACTIONS(1575), - [anon_sym_const] = ACTIONS(1575), - [aux_sym_cmd_identifier_token1] = ACTIONS(1575), - [aux_sym_cmd_identifier_token2] = ACTIONS(1577), - [aux_sym_cmd_identifier_token3] = ACTIONS(1577), - [aux_sym_cmd_identifier_token4] = ACTIONS(1577), - [aux_sym_cmd_identifier_token5] = ACTIONS(1577), - [aux_sym_cmd_identifier_token6] = ACTIONS(1577), - [aux_sym_cmd_identifier_token7] = ACTIONS(1577), - [aux_sym_cmd_identifier_token8] = ACTIONS(1575), - [aux_sym_cmd_identifier_token9] = ACTIONS(1575), - [aux_sym_cmd_identifier_token10] = ACTIONS(1577), - [aux_sym_cmd_identifier_token11] = ACTIONS(1577), - [aux_sym_cmd_identifier_token12] = ACTIONS(1575), - [aux_sym_cmd_identifier_token13] = ACTIONS(1575), - [aux_sym_cmd_identifier_token14] = ACTIONS(1575), - [aux_sym_cmd_identifier_token15] = ACTIONS(1575), - [aux_sym_cmd_identifier_token16] = ACTIONS(1577), - [aux_sym_cmd_identifier_token17] = ACTIONS(1577), - [aux_sym_cmd_identifier_token18] = ACTIONS(1575), - [aux_sym_cmd_identifier_token19] = ACTIONS(1577), - [aux_sym_cmd_identifier_token20] = ACTIONS(1577), - [aux_sym_cmd_identifier_token21] = ACTIONS(1577), - [aux_sym_cmd_identifier_token22] = ACTIONS(1577), - [aux_sym_cmd_identifier_token23] = ACTIONS(1577), - [aux_sym_cmd_identifier_token24] = ACTIONS(1577), - [aux_sym_cmd_identifier_token25] = ACTIONS(1577), - [aux_sym_cmd_identifier_token26] = ACTIONS(1577), - [aux_sym_cmd_identifier_token27] = ACTIONS(1577), - [aux_sym_cmd_identifier_token28] = ACTIONS(1577), - [aux_sym_cmd_identifier_token29] = ACTIONS(1577), - [aux_sym_cmd_identifier_token30] = ACTIONS(1577), - [aux_sym_cmd_identifier_token31] = ACTIONS(1577), - [aux_sym_cmd_identifier_token32] = ACTIONS(1575), - [aux_sym_cmd_identifier_token33] = ACTIONS(1577), - [aux_sym_cmd_identifier_token34] = ACTIONS(1575), - [aux_sym_cmd_identifier_token35] = ACTIONS(1577), - [aux_sym_cmd_identifier_token36] = ACTIONS(1577), - [aux_sym_cmd_identifier_token37] = ACTIONS(1577), - [aux_sym_cmd_identifier_token38] = ACTIONS(1575), - [aux_sym_cmd_identifier_token39] = ACTIONS(1577), - [aux_sym_cmd_identifier_token40] = ACTIONS(1577), - [sym__newline] = ACTIONS(1577), - [anon_sym_SEMI] = ACTIONS(1577), - [anon_sym_def] = ACTIONS(1575), - [anon_sym_export_DASHenv] = ACTIONS(1575), - [anon_sym_extern] = ACTIONS(1575), - [anon_sym_module] = ACTIONS(1575), - [anon_sym_use] = ACTIONS(1575), - [anon_sym_LBRACK] = ACTIONS(1577), - [anon_sym_LPAREN] = ACTIONS(1577), - [anon_sym_DOLLAR] = ACTIONS(1575), - [anon_sym_error] = ACTIONS(1575), - [anon_sym_DASH2] = ACTIONS(1575), - [anon_sym_break] = ACTIONS(1575), - [anon_sym_continue] = ACTIONS(1575), - [anon_sym_for] = ACTIONS(1575), - [anon_sym_loop] = ACTIONS(1575), - [anon_sym_while] = ACTIONS(1575), - [anon_sym_do] = ACTIONS(1575), - [anon_sym_if] = ACTIONS(1575), - [anon_sym_match] = ACTIONS(1575), - [anon_sym_LBRACE] = ACTIONS(1577), - [anon_sym_DOT_DOT] = ACTIONS(1575), - [anon_sym_try] = ACTIONS(1575), - [anon_sym_return] = ACTIONS(1575), - [anon_sym_source] = ACTIONS(1575), - [anon_sym_source_DASHenv] = ACTIONS(1575), - [anon_sym_register] = ACTIONS(1575), - [anon_sym_hide] = ACTIONS(1575), - [anon_sym_hide_DASHenv] = ACTIONS(1575), - [anon_sym_overlay] = ACTIONS(1575), - [anon_sym_where] = ACTIONS(1577), - [aux_sym_expr_unary_token1] = ACTIONS(1577), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1577), - [anon_sym_DOT_DOT_LT] = ACTIONS(1577), - [anon_sym_null] = ACTIONS(1575), - [anon_sym_true] = ACTIONS(1575), - [anon_sym_false] = ACTIONS(1575), - [aux_sym__val_number_decimal_token1] = ACTIONS(1575), - [aux_sym__val_number_decimal_token2] = ACTIONS(1577), - [aux_sym__val_number_decimal_token3] = ACTIONS(1577), - [aux_sym__val_number_decimal_token4] = ACTIONS(1577), - [aux_sym__val_number_token1] = ACTIONS(1577), - [aux_sym__val_number_token2] = ACTIONS(1577), - [aux_sym__val_number_token3] = ACTIONS(1577), - [aux_sym__val_number_token4] = ACTIONS(1575), - [aux_sym__val_number_token5] = ACTIONS(1575), - [aux_sym__val_number_token6] = ACTIONS(1575), - [anon_sym_0b] = ACTIONS(1575), - [anon_sym_0o] = ACTIONS(1575), - [anon_sym_0x] = ACTIONS(1575), - [sym_val_date] = ACTIONS(1577), - [anon_sym_DQUOTE] = ACTIONS(1577), - [sym__str_single_quotes] = ACTIONS(1577), - [sym__str_back_ticks] = ACTIONS(1577), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1577), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1577), - [aux_sym_env_var_token1] = ACTIONS(1575), - [anon_sym_CARET] = ACTIONS(1577), - [aux_sym_command_token1] = ACTIONS(1577), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1577), + [287] = { + [sym_comment] = STATE(287), + [aux_sym__block_body_repeat1] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1439), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(25), + [anon_sym_SEMI] = ACTIONS(25), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), }, - [312] = { - [sym_cmd_identifier] = STATE(4329), - [sym__expression] = STATE(3688), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(819), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4733), - [sym_comment] = STATE(312), - [aux_sym_pipe_element_repeat2] = STATE(1151), + [288] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4868), + [sym_block] = STATE(4869), + [sym__expression_parenthesized] = STATE(4869), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4869), + [sym_comment] = STATE(288), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -114951,11 +112309,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_if] = ACTIONS(1026), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -114963,10 +112323,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(415), - [aux_sym__val_number_decimal_token2] = ACTIONS(417), - [aux_sym__val_number_decimal_token3] = ACTIONS(419), - [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -114982,45 +112342,45 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [313] = { - [sym_cmd_identifier] = STATE(4329), - [sym__expression] = STATE(3688), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(834), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4733), - [sym_comment] = STATE(313), - [aux_sym_pipe_element_repeat2] = STATE(1151), + [289] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4918), + [sym_block] = STATE(4919), + [sym__expression_parenthesized] = STATE(4919), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4919), + [sym_comment] = STATE(289), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -115061,11 +112421,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_if] = ACTIONS(1474), + [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), @@ -115073,10 +112435,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1030), - [aux_sym__val_number_decimal_token2] = ACTIONS(1032), - [aux_sym__val_number_decimal_token3] = ACTIONS(1034), - [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -115092,45 +112454,157 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), [anon_sym_CARET] = ACTIONS(247), [aux_sym_command_token1] = ACTIONS(249), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [314] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if] = STATE(4571), - [sym_block] = STATE(4574), - [sym__expression] = STATE(4574), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1226), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4574), - [sym_comment] = STATE(314), + [290] = { + [sym_comment] = STATE(290), + [aux_sym__block_body_repeat1] = STATE(290), + [ts_builtin_sym_end] = ACTIONS(1447), + [anon_sym_export] = ACTIONS(1445), + [anon_sym_alias] = ACTIONS(1445), + [anon_sym_let] = ACTIONS(1445), + [anon_sym_let_DASHenv] = ACTIONS(1445), + [anon_sym_mut] = ACTIONS(1445), + [anon_sym_const] = ACTIONS(1445), + [aux_sym_cmd_identifier_token1] = ACTIONS(1445), + [aux_sym_cmd_identifier_token2] = ACTIONS(1447), + [aux_sym_cmd_identifier_token3] = ACTIONS(1447), + [aux_sym_cmd_identifier_token4] = ACTIONS(1447), + [aux_sym_cmd_identifier_token5] = ACTIONS(1447), + [aux_sym_cmd_identifier_token6] = ACTIONS(1447), + [aux_sym_cmd_identifier_token7] = ACTIONS(1447), + [aux_sym_cmd_identifier_token8] = ACTIONS(1445), + [aux_sym_cmd_identifier_token9] = ACTIONS(1445), + [aux_sym_cmd_identifier_token10] = ACTIONS(1447), + [aux_sym_cmd_identifier_token11] = ACTIONS(1447), + [aux_sym_cmd_identifier_token12] = ACTIONS(1445), + [aux_sym_cmd_identifier_token13] = ACTIONS(1445), + [aux_sym_cmd_identifier_token14] = ACTIONS(1445), + [aux_sym_cmd_identifier_token15] = ACTIONS(1445), + [aux_sym_cmd_identifier_token16] = ACTIONS(1447), + [aux_sym_cmd_identifier_token17] = ACTIONS(1447), + [aux_sym_cmd_identifier_token18] = ACTIONS(1445), + [aux_sym_cmd_identifier_token19] = ACTIONS(1447), + [aux_sym_cmd_identifier_token20] = ACTIONS(1447), + [aux_sym_cmd_identifier_token21] = ACTIONS(1447), + [aux_sym_cmd_identifier_token22] = ACTIONS(1447), + [aux_sym_cmd_identifier_token23] = ACTIONS(1447), + [aux_sym_cmd_identifier_token24] = ACTIONS(1447), + [aux_sym_cmd_identifier_token25] = ACTIONS(1447), + [aux_sym_cmd_identifier_token26] = ACTIONS(1447), + [aux_sym_cmd_identifier_token27] = ACTIONS(1447), + [aux_sym_cmd_identifier_token28] = ACTIONS(1447), + [aux_sym_cmd_identifier_token29] = ACTIONS(1447), + [aux_sym_cmd_identifier_token30] = ACTIONS(1447), + [aux_sym_cmd_identifier_token31] = ACTIONS(1447), + [aux_sym_cmd_identifier_token32] = ACTIONS(1445), + [aux_sym_cmd_identifier_token33] = ACTIONS(1447), + [aux_sym_cmd_identifier_token34] = ACTIONS(1445), + [aux_sym_cmd_identifier_token35] = ACTIONS(1447), + [aux_sym_cmd_identifier_token36] = ACTIONS(1447), + [aux_sym_cmd_identifier_token37] = ACTIONS(1447), + [aux_sym_cmd_identifier_token38] = ACTIONS(1445), + [aux_sym_cmd_identifier_token39] = ACTIONS(1447), + [aux_sym_cmd_identifier_token40] = ACTIONS(1447), + [sym__newline] = ACTIONS(1505), + [anon_sym_SEMI] = ACTIONS(1505), + [anon_sym_def] = ACTIONS(1445), + [anon_sym_export_DASHenv] = ACTIONS(1445), + [anon_sym_extern] = ACTIONS(1445), + [anon_sym_module] = ACTIONS(1445), + [anon_sym_use] = ACTIONS(1445), + [anon_sym_LBRACK] = ACTIONS(1447), + [anon_sym_LPAREN] = ACTIONS(1447), + [anon_sym_DOLLAR] = ACTIONS(1445), + [anon_sym_error] = ACTIONS(1445), + [anon_sym_DASH2] = ACTIONS(1445), + [anon_sym_break] = ACTIONS(1445), + [anon_sym_continue] = ACTIONS(1445), + [anon_sym_for] = ACTIONS(1445), + [anon_sym_loop] = ACTIONS(1445), + [anon_sym_while] = ACTIONS(1445), + [anon_sym_do] = ACTIONS(1445), + [anon_sym_if] = ACTIONS(1445), + [anon_sym_match] = ACTIONS(1445), + [anon_sym_LBRACE] = ACTIONS(1447), + [anon_sym_DOT_DOT] = ACTIONS(1445), + [anon_sym_try] = ACTIONS(1445), + [anon_sym_return] = ACTIONS(1445), + [anon_sym_source] = ACTIONS(1445), + [anon_sym_source_DASHenv] = ACTIONS(1445), + [anon_sym_register] = ACTIONS(1445), + [anon_sym_hide] = ACTIONS(1445), + [anon_sym_hide_DASHenv] = ACTIONS(1445), + [anon_sym_overlay] = ACTIONS(1445), + [anon_sym_where] = ACTIONS(1447), + [aux_sym_expr_unary_token1] = ACTIONS(1447), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1447), + [anon_sym_DOT_DOT_LT] = ACTIONS(1447), + [anon_sym_null] = ACTIONS(1445), + [anon_sym_true] = ACTIONS(1445), + [anon_sym_false] = ACTIONS(1445), + [aux_sym__val_number_decimal_token1] = ACTIONS(1445), + [aux_sym__val_number_decimal_token2] = ACTIONS(1447), + [aux_sym__val_number_decimal_token3] = ACTIONS(1447), + [aux_sym__val_number_decimal_token4] = ACTIONS(1447), + [aux_sym__val_number_token1] = ACTIONS(1447), + [aux_sym__val_number_token2] = ACTIONS(1447), + [aux_sym__val_number_token3] = ACTIONS(1447), + [aux_sym__val_number_token4] = ACTIONS(1445), + [aux_sym__val_number_token5] = ACTIONS(1445), + [aux_sym__val_number_token6] = ACTIONS(1445), + [anon_sym_0b] = ACTIONS(1445), + [anon_sym_0o] = ACTIONS(1445), + [anon_sym_0x] = ACTIONS(1445), + [sym_val_date] = ACTIONS(1447), + [anon_sym_DQUOTE] = ACTIONS(1447), + [sym__str_single_quotes] = ACTIONS(1447), + [sym__str_back_ticks] = ACTIONS(1447), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1447), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1447), + [aux_sym_env_var_token1] = ACTIONS(1445), + [anon_sym_CARET] = ACTIONS(1447), + [aux_sym_command_token1] = ACTIONS(1447), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1447), + }, + [291] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if_parenthesized] = STATE(4920), + [sym_block] = STATE(4921), + [sym__expression_parenthesized] = STATE(4921), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3667), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4921), + [sym_comment] = STATE(291), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -115171,11 +112645,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(363), [aux_sym_cmd_identifier_token39] = ACTIONS(365), [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [sym__newline] = ACTIONS(1452), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(1038), + [anon_sym_if] = ACTIONS(1026), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -115184,10 +112659,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1480), - [aux_sym__val_number_decimal_token2] = ACTIONS(1482), - [aux_sym__val_number_decimal_token3] = ACTIONS(1484), - [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -115208,259 +112683,927 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [315] = { - [sym_cmd_identifier] = STATE(4329), - [sym__expression] = STATE(3688), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3756), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(820), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_env_var] = STATE(7347), - [sym_command] = STATE(4733), - [sym_comment] = STATE(315), - [aux_sym_pipe_element_repeat2] = STATE(1151), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(457), - [aux_sym__val_number_decimal_token2] = ACTIONS(459), - [aux_sym__val_number_decimal_token3] = ACTIONS(461), - [aux_sym__val_number_decimal_token4] = ACTIONS(463), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [aux_sym_env_var_token1] = ACTIONS(117), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [292] = { + [sym_comment] = STATE(292), + [ts_builtin_sym_end] = ACTIONS(1272), + [anon_sym_export] = ACTIONS(1472), + [anon_sym_alias] = ACTIONS(1472), + [anon_sym_let] = ACTIONS(1472), + [anon_sym_let_DASHenv] = ACTIONS(1472), + [anon_sym_mut] = ACTIONS(1472), + [anon_sym_const] = ACTIONS(1472), + [aux_sym_cmd_identifier_token1] = ACTIONS(1472), + [aux_sym_cmd_identifier_token2] = ACTIONS(1272), + [aux_sym_cmd_identifier_token3] = ACTIONS(1272), + [aux_sym_cmd_identifier_token4] = ACTIONS(1272), + [aux_sym_cmd_identifier_token5] = ACTIONS(1272), + [aux_sym_cmd_identifier_token6] = ACTIONS(1272), + [aux_sym_cmd_identifier_token7] = ACTIONS(1272), + [aux_sym_cmd_identifier_token8] = ACTIONS(1472), + [aux_sym_cmd_identifier_token9] = ACTIONS(1472), + [aux_sym_cmd_identifier_token10] = ACTIONS(1272), + [aux_sym_cmd_identifier_token11] = ACTIONS(1272), + [aux_sym_cmd_identifier_token12] = ACTIONS(1472), + [aux_sym_cmd_identifier_token13] = ACTIONS(1472), + [aux_sym_cmd_identifier_token14] = ACTIONS(1472), + [aux_sym_cmd_identifier_token15] = ACTIONS(1472), + [aux_sym_cmd_identifier_token16] = ACTIONS(1272), + [aux_sym_cmd_identifier_token17] = ACTIONS(1272), + [aux_sym_cmd_identifier_token18] = ACTIONS(1472), + [aux_sym_cmd_identifier_token19] = ACTIONS(1272), + [aux_sym_cmd_identifier_token20] = ACTIONS(1272), + [aux_sym_cmd_identifier_token21] = ACTIONS(1272), + [aux_sym_cmd_identifier_token22] = ACTIONS(1272), + [aux_sym_cmd_identifier_token23] = ACTIONS(1272), + [aux_sym_cmd_identifier_token24] = ACTIONS(1272), + [aux_sym_cmd_identifier_token25] = ACTIONS(1272), + [aux_sym_cmd_identifier_token26] = ACTIONS(1272), + [aux_sym_cmd_identifier_token27] = ACTIONS(1272), + [aux_sym_cmd_identifier_token28] = ACTIONS(1272), + [aux_sym_cmd_identifier_token29] = ACTIONS(1272), + [aux_sym_cmd_identifier_token30] = ACTIONS(1272), + [aux_sym_cmd_identifier_token31] = ACTIONS(1272), + [aux_sym_cmd_identifier_token32] = ACTIONS(1472), + [aux_sym_cmd_identifier_token33] = ACTIONS(1272), + [aux_sym_cmd_identifier_token34] = ACTIONS(1472), + [aux_sym_cmd_identifier_token35] = ACTIONS(1272), + [aux_sym_cmd_identifier_token36] = ACTIONS(1272), + [aux_sym_cmd_identifier_token37] = ACTIONS(1272), + [aux_sym_cmd_identifier_token38] = ACTIONS(1472), + [aux_sym_cmd_identifier_token39] = ACTIONS(1272), + [aux_sym_cmd_identifier_token40] = ACTIONS(1272), + [sym__newline] = ACTIONS(1272), + [anon_sym_SEMI] = ACTIONS(1272), + [anon_sym_def] = ACTIONS(1472), + [anon_sym_export_DASHenv] = ACTIONS(1472), + [anon_sym_extern] = ACTIONS(1472), + [anon_sym_module] = ACTIONS(1472), + [anon_sym_use] = ACTIONS(1472), + [anon_sym_LBRACK] = ACTIONS(1272), + [anon_sym_LPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1472), + [anon_sym_error] = ACTIONS(1472), + [anon_sym_DASH2] = ACTIONS(1472), + [anon_sym_break] = ACTIONS(1472), + [anon_sym_continue] = ACTIONS(1472), + [anon_sym_for] = ACTIONS(1472), + [anon_sym_loop] = ACTIONS(1472), + [anon_sym_while] = ACTIONS(1472), + [anon_sym_do] = ACTIONS(1472), + [anon_sym_if] = ACTIONS(1472), + [anon_sym_match] = ACTIONS(1472), + [anon_sym_LBRACE] = ACTIONS(1272), + [anon_sym_DOT_DOT] = ACTIONS(1472), + [anon_sym_try] = ACTIONS(1472), + [anon_sym_return] = ACTIONS(1472), + [anon_sym_source] = ACTIONS(1472), + [anon_sym_source_DASHenv] = ACTIONS(1472), + [anon_sym_register] = ACTIONS(1472), + [anon_sym_hide] = ACTIONS(1472), + [anon_sym_hide_DASHenv] = ACTIONS(1472), + [anon_sym_overlay] = ACTIONS(1472), + [anon_sym_where] = ACTIONS(1272), + [aux_sym_expr_unary_token1] = ACTIONS(1272), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1272), + [anon_sym_DOT_DOT_LT] = ACTIONS(1272), + [anon_sym_null] = ACTIONS(1472), + [anon_sym_true] = ACTIONS(1472), + [anon_sym_false] = ACTIONS(1472), + [aux_sym__val_number_decimal_token1] = ACTIONS(1472), + [aux_sym__val_number_decimal_token2] = ACTIONS(1272), + [aux_sym__val_number_decimal_token3] = ACTIONS(1272), + [aux_sym__val_number_decimal_token4] = ACTIONS(1272), + [aux_sym__val_number_token1] = ACTIONS(1272), + [aux_sym__val_number_token2] = ACTIONS(1272), + [aux_sym__val_number_token3] = ACTIONS(1272), + [aux_sym__val_number_token4] = ACTIONS(1472), + [aux_sym__val_number_token5] = ACTIONS(1472), + [aux_sym__val_number_token6] = ACTIONS(1472), + [anon_sym_0b] = ACTIONS(1472), + [anon_sym_0o] = ACTIONS(1472), + [anon_sym_0x] = ACTIONS(1472), + [sym_val_date] = ACTIONS(1272), + [anon_sym_DQUOTE] = ACTIONS(1272), + [sym__str_single_quotes] = ACTIONS(1272), + [sym__str_back_ticks] = ACTIONS(1272), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1272), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1272), + [aux_sym_env_var_token1] = ACTIONS(1472), + [anon_sym_CARET] = ACTIONS(1272), + [aux_sym_command_token1] = ACTIONS(1272), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1272), }, - [316] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if] = STATE(4571), - [sym_block] = STATE(4574), - [sym__expression] = STATE(4574), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1202), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4574), - [sym_comment] = STATE(316), - [aux_sym_cmd_identifier_token1] = ACTIONS(363), - [aux_sym_cmd_identifier_token2] = ACTIONS(365), - [aux_sym_cmd_identifier_token3] = ACTIONS(365), - [aux_sym_cmd_identifier_token4] = ACTIONS(365), - [aux_sym_cmd_identifier_token5] = ACTIONS(365), - [aux_sym_cmd_identifier_token6] = ACTIONS(365), - [aux_sym_cmd_identifier_token7] = ACTIONS(365), - [aux_sym_cmd_identifier_token8] = ACTIONS(365), - [aux_sym_cmd_identifier_token9] = ACTIONS(363), - [aux_sym_cmd_identifier_token10] = ACTIONS(365), - [aux_sym_cmd_identifier_token11] = ACTIONS(365), - [aux_sym_cmd_identifier_token12] = ACTIONS(365), - [aux_sym_cmd_identifier_token13] = ACTIONS(363), - [aux_sym_cmd_identifier_token14] = ACTIONS(365), - [aux_sym_cmd_identifier_token15] = ACTIONS(363), - [aux_sym_cmd_identifier_token16] = ACTIONS(365), - [aux_sym_cmd_identifier_token17] = ACTIONS(365), - [aux_sym_cmd_identifier_token18] = ACTIONS(363), - [aux_sym_cmd_identifier_token19] = ACTIONS(365), - [aux_sym_cmd_identifier_token20] = ACTIONS(365), - [aux_sym_cmd_identifier_token21] = ACTIONS(365), - [aux_sym_cmd_identifier_token22] = ACTIONS(365), - [aux_sym_cmd_identifier_token23] = ACTIONS(365), - [aux_sym_cmd_identifier_token24] = ACTIONS(365), - [aux_sym_cmd_identifier_token25] = ACTIONS(365), - [aux_sym_cmd_identifier_token26] = ACTIONS(365), - [aux_sym_cmd_identifier_token27] = ACTIONS(365), - [aux_sym_cmd_identifier_token28] = ACTIONS(365), - [aux_sym_cmd_identifier_token29] = ACTIONS(365), - [aux_sym_cmd_identifier_token30] = ACTIONS(365), - [aux_sym_cmd_identifier_token31] = ACTIONS(365), - [aux_sym_cmd_identifier_token32] = ACTIONS(363), - [aux_sym_cmd_identifier_token33] = ACTIONS(365), - [aux_sym_cmd_identifier_token34] = ACTIONS(363), - [aux_sym_cmd_identifier_token35] = ACTIONS(365), - [aux_sym_cmd_identifier_token36] = ACTIONS(365), - [aux_sym_cmd_identifier_token37] = ACTIONS(365), - [aux_sym_cmd_identifier_token38] = ACTIONS(363), - [aux_sym_cmd_identifier_token39] = ACTIONS(365), - [aux_sym_cmd_identifier_token40] = ACTIONS(365), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(395), - [anon_sym_LBRACE] = ACTIONS(1454), - [anon_sym_DOT_DOT] = ACTIONS(187), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(213), - [anon_sym_true] = ACTIONS(215), - [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1579), - [aux_sym__val_number_decimal_token2] = ACTIONS(1581), - [aux_sym__val_number_decimal_token3] = ACTIONS(1583), - [aux_sym__val_number_decimal_token4] = ACTIONS(1585), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(229), - [aux_sym__val_number_token5] = ACTIONS(229), - [aux_sym__val_number_token6] = ACTIONS(229), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_CARET] = ACTIONS(247), - [aux_sym_command_token1] = ACTIONS(249), + [293] = { + [sym_comment] = STATE(293), + [ts_builtin_sym_end] = ACTIONS(1508), + [anon_sym_export] = ACTIONS(1510), + [anon_sym_alias] = ACTIONS(1510), + [anon_sym_let] = ACTIONS(1510), + [anon_sym_let_DASHenv] = ACTIONS(1510), + [anon_sym_mut] = ACTIONS(1510), + [anon_sym_const] = ACTIONS(1510), + [aux_sym_cmd_identifier_token1] = ACTIONS(1510), + [aux_sym_cmd_identifier_token2] = ACTIONS(1508), + [aux_sym_cmd_identifier_token3] = ACTIONS(1508), + [aux_sym_cmd_identifier_token4] = ACTIONS(1508), + [aux_sym_cmd_identifier_token5] = ACTIONS(1508), + [aux_sym_cmd_identifier_token6] = ACTIONS(1508), + [aux_sym_cmd_identifier_token7] = ACTIONS(1508), + [aux_sym_cmd_identifier_token8] = ACTIONS(1510), + [aux_sym_cmd_identifier_token9] = ACTIONS(1510), + [aux_sym_cmd_identifier_token10] = ACTIONS(1508), + [aux_sym_cmd_identifier_token11] = ACTIONS(1508), + [aux_sym_cmd_identifier_token12] = ACTIONS(1510), + [aux_sym_cmd_identifier_token13] = ACTIONS(1510), + [aux_sym_cmd_identifier_token14] = ACTIONS(1510), + [aux_sym_cmd_identifier_token15] = ACTIONS(1510), + [aux_sym_cmd_identifier_token16] = ACTIONS(1508), + [aux_sym_cmd_identifier_token17] = ACTIONS(1508), + [aux_sym_cmd_identifier_token18] = ACTIONS(1510), + [aux_sym_cmd_identifier_token19] = ACTIONS(1508), + [aux_sym_cmd_identifier_token20] = ACTIONS(1508), + [aux_sym_cmd_identifier_token21] = ACTIONS(1508), + [aux_sym_cmd_identifier_token22] = ACTIONS(1508), + [aux_sym_cmd_identifier_token23] = ACTIONS(1508), + [aux_sym_cmd_identifier_token24] = ACTIONS(1508), + [aux_sym_cmd_identifier_token25] = ACTIONS(1508), + [aux_sym_cmd_identifier_token26] = ACTIONS(1508), + [aux_sym_cmd_identifier_token27] = ACTIONS(1508), + [aux_sym_cmd_identifier_token28] = ACTIONS(1508), + [aux_sym_cmd_identifier_token29] = ACTIONS(1508), + [aux_sym_cmd_identifier_token30] = ACTIONS(1508), + [aux_sym_cmd_identifier_token31] = ACTIONS(1508), + [aux_sym_cmd_identifier_token32] = ACTIONS(1510), + [aux_sym_cmd_identifier_token33] = ACTIONS(1508), + [aux_sym_cmd_identifier_token34] = ACTIONS(1510), + [aux_sym_cmd_identifier_token35] = ACTIONS(1508), + [aux_sym_cmd_identifier_token36] = ACTIONS(1508), + [aux_sym_cmd_identifier_token37] = ACTIONS(1508), + [aux_sym_cmd_identifier_token38] = ACTIONS(1510), + [aux_sym_cmd_identifier_token39] = ACTIONS(1508), + [aux_sym_cmd_identifier_token40] = ACTIONS(1508), + [sym__newline] = ACTIONS(1508), + [anon_sym_SEMI] = ACTIONS(1508), + [anon_sym_def] = ACTIONS(1510), + [anon_sym_export_DASHenv] = ACTIONS(1510), + [anon_sym_extern] = ACTIONS(1510), + [anon_sym_module] = ACTIONS(1510), + [anon_sym_use] = ACTIONS(1510), + [anon_sym_LBRACK] = ACTIONS(1508), + [anon_sym_LPAREN] = ACTIONS(1508), + [anon_sym_DOLLAR] = ACTIONS(1510), + [anon_sym_error] = ACTIONS(1510), + [anon_sym_DASH2] = ACTIONS(1510), + [anon_sym_break] = ACTIONS(1510), + [anon_sym_continue] = ACTIONS(1510), + [anon_sym_for] = ACTIONS(1510), + [anon_sym_loop] = ACTIONS(1510), + [anon_sym_while] = ACTIONS(1510), + [anon_sym_do] = ACTIONS(1510), + [anon_sym_if] = ACTIONS(1510), + [anon_sym_match] = ACTIONS(1510), + [anon_sym_LBRACE] = ACTIONS(1508), + [anon_sym_DOT_DOT] = ACTIONS(1510), + [anon_sym_try] = ACTIONS(1510), + [anon_sym_return] = ACTIONS(1510), + [anon_sym_source] = ACTIONS(1510), + [anon_sym_source_DASHenv] = ACTIONS(1510), + [anon_sym_register] = ACTIONS(1510), + [anon_sym_hide] = ACTIONS(1510), + [anon_sym_hide_DASHenv] = ACTIONS(1510), + [anon_sym_overlay] = ACTIONS(1510), + [anon_sym_where] = ACTIONS(1508), + [aux_sym_expr_unary_token1] = ACTIONS(1508), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1508), + [anon_sym_DOT_DOT_LT] = ACTIONS(1508), + [anon_sym_null] = ACTIONS(1510), + [anon_sym_true] = ACTIONS(1510), + [anon_sym_false] = ACTIONS(1510), + [aux_sym__val_number_decimal_token1] = ACTIONS(1510), + [aux_sym__val_number_decimal_token2] = ACTIONS(1508), + [aux_sym__val_number_decimal_token3] = ACTIONS(1508), + [aux_sym__val_number_decimal_token4] = ACTIONS(1508), + [aux_sym__val_number_token1] = ACTIONS(1508), + [aux_sym__val_number_token2] = ACTIONS(1508), + [aux_sym__val_number_token3] = ACTIONS(1508), + [aux_sym__val_number_token4] = ACTIONS(1510), + [aux_sym__val_number_token5] = ACTIONS(1510), + [aux_sym__val_number_token6] = ACTIONS(1510), + [anon_sym_0b] = ACTIONS(1510), + [anon_sym_0o] = ACTIONS(1510), + [anon_sym_0x] = ACTIONS(1510), + [sym_val_date] = ACTIONS(1508), + [anon_sym_DQUOTE] = ACTIONS(1508), + [sym__str_single_quotes] = ACTIONS(1508), + [sym__str_back_ticks] = ACTIONS(1508), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1508), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1508), + [aux_sym_env_var_token1] = ACTIONS(1510), + [anon_sym_CARET] = ACTIONS(1508), + [aux_sym_command_token1] = ACTIONS(1508), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(1508), }, - [317] = { - [sym_cmd_identifier] = STATE(4329), - [sym_ctrl_if] = STATE(4571), - [sym_block] = STATE(4574), - [sym__expression] = STATE(4574), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1208), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_command] = STATE(4574), - [sym_comment] = STATE(317), + [294] = { + [sym_comment] = STATE(294), + [ts_builtin_sym_end] = ACTIONS(1512), + [anon_sym_export] = ACTIONS(1514), + [anon_sym_alias] = ACTIONS(1514), + [anon_sym_let] = ACTIONS(1514), + [anon_sym_let_DASHenv] = ACTIONS(1514), + [anon_sym_mut] = ACTIONS(1514), + [anon_sym_const] = ACTIONS(1514), + [aux_sym_cmd_identifier_token1] = ACTIONS(1514), + [aux_sym_cmd_identifier_token2] = ACTIONS(1512), + [aux_sym_cmd_identifier_token3] = ACTIONS(1512), + [aux_sym_cmd_identifier_token4] = ACTIONS(1512), + [aux_sym_cmd_identifier_token5] = ACTIONS(1512), + [aux_sym_cmd_identifier_token6] = ACTIONS(1512), + [aux_sym_cmd_identifier_token7] = ACTIONS(1512), + [aux_sym_cmd_identifier_token8] = ACTIONS(1514), + [aux_sym_cmd_identifier_token9] = ACTIONS(1514), + [aux_sym_cmd_identifier_token10] = ACTIONS(1512), + [aux_sym_cmd_identifier_token11] = ACTIONS(1512), + [aux_sym_cmd_identifier_token12] = ACTIONS(1514), + [aux_sym_cmd_identifier_token13] = ACTIONS(1514), + [aux_sym_cmd_identifier_token14] = ACTIONS(1514), + [aux_sym_cmd_identifier_token15] = ACTIONS(1514), + [aux_sym_cmd_identifier_token16] = ACTIONS(1512), + [aux_sym_cmd_identifier_token17] = ACTIONS(1512), + [aux_sym_cmd_identifier_token18] = ACTIONS(1514), + [aux_sym_cmd_identifier_token19] = ACTIONS(1512), + [aux_sym_cmd_identifier_token20] = ACTIONS(1512), + [aux_sym_cmd_identifier_token21] = ACTIONS(1512), + [aux_sym_cmd_identifier_token22] = ACTIONS(1512), + [aux_sym_cmd_identifier_token23] = ACTIONS(1512), + [aux_sym_cmd_identifier_token24] = ACTIONS(1512), + [aux_sym_cmd_identifier_token25] = ACTIONS(1512), + [aux_sym_cmd_identifier_token26] = ACTIONS(1512), + [aux_sym_cmd_identifier_token27] = ACTIONS(1512), + [aux_sym_cmd_identifier_token28] = ACTIONS(1512), + [aux_sym_cmd_identifier_token29] = ACTIONS(1512), + [aux_sym_cmd_identifier_token30] = ACTIONS(1512), + [aux_sym_cmd_identifier_token31] = ACTIONS(1512), + [aux_sym_cmd_identifier_token32] = ACTIONS(1514), + [aux_sym_cmd_identifier_token33] = ACTIONS(1512), + [aux_sym_cmd_identifier_token34] = ACTIONS(1514), + [aux_sym_cmd_identifier_token35] = ACTIONS(1512), + [aux_sym_cmd_identifier_token36] = ACTIONS(1512), + [aux_sym_cmd_identifier_token37] = ACTIONS(1512), + [aux_sym_cmd_identifier_token38] = ACTIONS(1514), + [aux_sym_cmd_identifier_token39] = ACTIONS(1512), + [aux_sym_cmd_identifier_token40] = ACTIONS(1512), + [sym__newline] = ACTIONS(1512), + [anon_sym_SEMI] = ACTIONS(1512), + [anon_sym_def] = ACTIONS(1514), + [anon_sym_export_DASHenv] = ACTIONS(1514), + [anon_sym_extern] = ACTIONS(1514), + [anon_sym_module] = ACTIONS(1514), + [anon_sym_use] = ACTIONS(1514), + [anon_sym_LBRACK] = ACTIONS(1512), + [anon_sym_LPAREN] = ACTIONS(1512), + [anon_sym_DOLLAR] = ACTIONS(1514), + [anon_sym_error] = ACTIONS(1514), + [anon_sym_DASH2] = ACTIONS(1514), + [anon_sym_break] = ACTIONS(1514), + [anon_sym_continue] = ACTIONS(1514), + [anon_sym_for] = ACTIONS(1514), + [anon_sym_loop] = ACTIONS(1514), + [anon_sym_while] = ACTIONS(1514), + [anon_sym_do] = ACTIONS(1514), + [anon_sym_if] = ACTIONS(1514), + [anon_sym_match] = ACTIONS(1514), + [anon_sym_LBRACE] = ACTIONS(1512), + [anon_sym_DOT_DOT] = ACTIONS(1514), + [anon_sym_try] = ACTIONS(1514), + [anon_sym_return] = ACTIONS(1514), + [anon_sym_source] = ACTIONS(1514), + [anon_sym_source_DASHenv] = ACTIONS(1514), + [anon_sym_register] = ACTIONS(1514), + [anon_sym_hide] = ACTIONS(1514), + [anon_sym_hide_DASHenv] = ACTIONS(1514), + [anon_sym_overlay] = ACTIONS(1514), + [anon_sym_where] = ACTIONS(1512), + [aux_sym_expr_unary_token1] = ACTIONS(1512), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1512), + [anon_sym_DOT_DOT_LT] = ACTIONS(1512), + [anon_sym_null] = ACTIONS(1514), + [anon_sym_true] = ACTIONS(1514), + [anon_sym_false] = ACTIONS(1514), + [aux_sym__val_number_decimal_token1] = ACTIONS(1514), + [aux_sym__val_number_decimal_token2] = ACTIONS(1512), + [aux_sym__val_number_decimal_token3] = ACTIONS(1512), + [aux_sym__val_number_decimal_token4] = ACTIONS(1512), + [aux_sym__val_number_token1] = ACTIONS(1512), + [aux_sym__val_number_token2] = ACTIONS(1512), + [aux_sym__val_number_token3] = ACTIONS(1512), + [aux_sym__val_number_token4] = ACTIONS(1514), + [aux_sym__val_number_token5] = ACTIONS(1514), + [aux_sym__val_number_token6] = ACTIONS(1514), + [anon_sym_0b] = ACTIONS(1514), + [anon_sym_0o] = ACTIONS(1514), + [anon_sym_0x] = ACTIONS(1514), + [sym_val_date] = ACTIONS(1512), + [anon_sym_DQUOTE] = ACTIONS(1512), + [sym__str_single_quotes] = ACTIONS(1512), + [sym__str_back_ticks] = ACTIONS(1512), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1512), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1512), + [aux_sym_env_var_token1] = ACTIONS(1514), + [anon_sym_CARET] = ACTIONS(1512), + [aux_sym_command_token1] = ACTIONS(1512), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1512), + }, + [295] = { + [sym_comment] = STATE(295), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [aux_sym_cmd_identifier_token1] = ACTIONS(1516), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1516), + [aux_sym_cmd_identifier_token9] = ACTIONS(1516), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1516), + [aux_sym_cmd_identifier_token13] = ACTIONS(1516), + [aux_sym_cmd_identifier_token14] = ACTIONS(1516), + [aux_sym_cmd_identifier_token15] = ACTIONS(1516), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1516), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [aux_sym_cmd_identifier_token37] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1516), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [sym__newline] = ACTIONS(1520), + [anon_sym_SEMI] = ACTIONS(1520), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_RPAREN] = ACTIONS(1272), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1518), + [aux_sym_expr_unary_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_null] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1516), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [aux_sym__val_number_token4] = ACTIONS(1516), + [aux_sym__val_number_token5] = ACTIONS(1516), + [aux_sym__val_number_token6] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [sym_val_date] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1518), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1518), + [aux_sym_env_var_token1] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1518), + [aux_sym_command_token1] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1518), + }, + [296] = { + [sym_comment] = STATE(296), + [aux_sym__block_body_repeat1] = STATE(209), + [anon_sym_export] = ACTIONS(1435), + [anon_sym_alias] = ACTIONS(1435), + [anon_sym_let] = ACTIONS(1435), + [anon_sym_let_DASHenv] = ACTIONS(1435), + [anon_sym_mut] = ACTIONS(1435), + [anon_sym_const] = ACTIONS(1435), + [aux_sym_cmd_identifier_token1] = ACTIONS(1435), + [aux_sym_cmd_identifier_token2] = ACTIONS(1437), + [aux_sym_cmd_identifier_token3] = ACTIONS(1437), + [aux_sym_cmd_identifier_token4] = ACTIONS(1437), + [aux_sym_cmd_identifier_token5] = ACTIONS(1437), + [aux_sym_cmd_identifier_token6] = ACTIONS(1437), + [aux_sym_cmd_identifier_token7] = ACTIONS(1437), + [aux_sym_cmd_identifier_token8] = ACTIONS(1435), + [aux_sym_cmd_identifier_token9] = ACTIONS(1435), + [aux_sym_cmd_identifier_token10] = ACTIONS(1437), + [aux_sym_cmd_identifier_token11] = ACTIONS(1437), + [aux_sym_cmd_identifier_token12] = ACTIONS(1435), + [aux_sym_cmd_identifier_token13] = ACTIONS(1435), + [aux_sym_cmd_identifier_token14] = ACTIONS(1435), + [aux_sym_cmd_identifier_token15] = ACTIONS(1435), + [aux_sym_cmd_identifier_token16] = ACTIONS(1437), + [aux_sym_cmd_identifier_token17] = ACTIONS(1437), + [aux_sym_cmd_identifier_token18] = ACTIONS(1435), + [aux_sym_cmd_identifier_token19] = ACTIONS(1437), + [aux_sym_cmd_identifier_token20] = ACTIONS(1437), + [aux_sym_cmd_identifier_token21] = ACTIONS(1437), + [aux_sym_cmd_identifier_token22] = ACTIONS(1437), + [aux_sym_cmd_identifier_token23] = ACTIONS(1437), + [aux_sym_cmd_identifier_token24] = ACTIONS(1437), + [aux_sym_cmd_identifier_token25] = ACTIONS(1437), + [aux_sym_cmd_identifier_token26] = ACTIONS(1437), + [aux_sym_cmd_identifier_token27] = ACTIONS(1437), + [aux_sym_cmd_identifier_token28] = ACTIONS(1437), + [aux_sym_cmd_identifier_token29] = ACTIONS(1437), + [aux_sym_cmd_identifier_token30] = ACTIONS(1437), + [aux_sym_cmd_identifier_token31] = ACTIONS(1437), + [aux_sym_cmd_identifier_token32] = ACTIONS(1435), + [aux_sym_cmd_identifier_token33] = ACTIONS(1437), + [aux_sym_cmd_identifier_token34] = ACTIONS(1435), + [aux_sym_cmd_identifier_token35] = ACTIONS(1437), + [aux_sym_cmd_identifier_token36] = ACTIONS(1437), + [aux_sym_cmd_identifier_token37] = ACTIONS(1437), + [aux_sym_cmd_identifier_token38] = ACTIONS(1435), + [aux_sym_cmd_identifier_token39] = ACTIONS(1437), + [aux_sym_cmd_identifier_token40] = ACTIONS(1437), + [sym__newline] = ACTIONS(141), + [anon_sym_SEMI] = ACTIONS(141), + [anon_sym_def] = ACTIONS(1435), + [anon_sym_export_DASHenv] = ACTIONS(1435), + [anon_sym_extern] = ACTIONS(1435), + [anon_sym_module] = ACTIONS(1435), + [anon_sym_use] = ACTIONS(1435), + [anon_sym_LBRACK] = ACTIONS(1437), + [anon_sym_LPAREN] = ACTIONS(1437), + [anon_sym_DOLLAR] = ACTIONS(1435), + [anon_sym_error] = ACTIONS(1435), + [anon_sym_DASH2] = ACTIONS(1435), + [anon_sym_break] = ACTIONS(1435), + [anon_sym_continue] = ACTIONS(1435), + [anon_sym_for] = ACTIONS(1435), + [anon_sym_loop] = ACTIONS(1435), + [anon_sym_while] = ACTIONS(1435), + [anon_sym_do] = ACTIONS(1435), + [anon_sym_if] = ACTIONS(1435), + [anon_sym_match] = ACTIONS(1435), + [anon_sym_LBRACE] = ACTIONS(1437), + [anon_sym_DOT_DOT] = ACTIONS(1435), + [anon_sym_try] = ACTIONS(1435), + [anon_sym_return] = ACTIONS(1435), + [anon_sym_source] = ACTIONS(1435), + [anon_sym_source_DASHenv] = ACTIONS(1435), + [anon_sym_register] = ACTIONS(1435), + [anon_sym_hide] = ACTIONS(1435), + [anon_sym_hide_DASHenv] = ACTIONS(1435), + [anon_sym_overlay] = ACTIONS(1435), + [anon_sym_where] = ACTIONS(1437), + [aux_sym_expr_unary_token1] = ACTIONS(1437), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1437), + [anon_sym_DOT_DOT_LT] = ACTIONS(1437), + [anon_sym_null] = ACTIONS(1435), + [anon_sym_true] = ACTIONS(1435), + [anon_sym_false] = ACTIONS(1435), + [aux_sym__val_number_decimal_token1] = ACTIONS(1435), + [aux_sym__val_number_decimal_token2] = ACTIONS(1437), + [aux_sym__val_number_decimal_token3] = ACTIONS(1437), + [aux_sym__val_number_decimal_token4] = ACTIONS(1437), + [aux_sym__val_number_token1] = ACTIONS(1437), + [aux_sym__val_number_token2] = ACTIONS(1437), + [aux_sym__val_number_token3] = ACTIONS(1437), + [aux_sym__val_number_token4] = ACTIONS(1435), + [aux_sym__val_number_token5] = ACTIONS(1435), + [aux_sym__val_number_token6] = ACTIONS(1435), + [anon_sym_0b] = ACTIONS(1435), + [anon_sym_0o] = ACTIONS(1435), + [anon_sym_0x] = ACTIONS(1435), + [sym_val_date] = ACTIONS(1437), + [anon_sym_DQUOTE] = ACTIONS(1437), + [sym__str_single_quotes] = ACTIONS(1437), + [sym__str_back_ticks] = ACTIONS(1437), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1437), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1437), + [aux_sym_env_var_token1] = ACTIONS(1435), + [anon_sym_CARET] = ACTIONS(1437), + [aux_sym_command_token1] = ACTIONS(1437), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1437), + }, + [297] = { + [sym_comment] = STATE(297), + [anon_sym_export] = ACTIONS(1270), + [anon_sym_alias] = ACTIONS(1270), + [anon_sym_let] = ACTIONS(1270), + [anon_sym_let_DASHenv] = ACTIONS(1270), + [anon_sym_mut] = ACTIONS(1270), + [anon_sym_const] = ACTIONS(1270), + [aux_sym_cmd_identifier_token1] = ACTIONS(1270), + [aux_sym_cmd_identifier_token2] = ACTIONS(1268), + [aux_sym_cmd_identifier_token3] = ACTIONS(1268), + [aux_sym_cmd_identifier_token4] = ACTIONS(1268), + [aux_sym_cmd_identifier_token5] = ACTIONS(1268), + [aux_sym_cmd_identifier_token6] = ACTIONS(1268), + [aux_sym_cmd_identifier_token7] = ACTIONS(1268), + [aux_sym_cmd_identifier_token8] = ACTIONS(1270), + [aux_sym_cmd_identifier_token9] = ACTIONS(1270), + [aux_sym_cmd_identifier_token10] = ACTIONS(1268), + [aux_sym_cmd_identifier_token11] = ACTIONS(1268), + [aux_sym_cmd_identifier_token12] = ACTIONS(1270), + [aux_sym_cmd_identifier_token13] = ACTIONS(1270), + [aux_sym_cmd_identifier_token14] = ACTIONS(1270), + [aux_sym_cmd_identifier_token15] = ACTIONS(1270), + [aux_sym_cmd_identifier_token16] = ACTIONS(1268), + [aux_sym_cmd_identifier_token17] = ACTIONS(1268), + [aux_sym_cmd_identifier_token18] = ACTIONS(1270), + [aux_sym_cmd_identifier_token19] = ACTIONS(1268), + [aux_sym_cmd_identifier_token20] = ACTIONS(1268), + [aux_sym_cmd_identifier_token21] = ACTIONS(1268), + [aux_sym_cmd_identifier_token22] = ACTIONS(1268), + [aux_sym_cmd_identifier_token23] = ACTIONS(1268), + [aux_sym_cmd_identifier_token24] = ACTIONS(1268), + [aux_sym_cmd_identifier_token25] = ACTIONS(1268), + [aux_sym_cmd_identifier_token26] = ACTIONS(1268), + [aux_sym_cmd_identifier_token27] = ACTIONS(1268), + [aux_sym_cmd_identifier_token28] = ACTIONS(1268), + [aux_sym_cmd_identifier_token29] = ACTIONS(1268), + [aux_sym_cmd_identifier_token30] = ACTIONS(1268), + [aux_sym_cmd_identifier_token31] = ACTIONS(1268), + [aux_sym_cmd_identifier_token32] = ACTIONS(1270), + [aux_sym_cmd_identifier_token33] = ACTIONS(1268), + [aux_sym_cmd_identifier_token34] = ACTIONS(1270), + [aux_sym_cmd_identifier_token35] = ACTIONS(1268), + [aux_sym_cmd_identifier_token36] = ACTIONS(1268), + [aux_sym_cmd_identifier_token37] = ACTIONS(1268), + [aux_sym_cmd_identifier_token38] = ACTIONS(1270), + [aux_sym_cmd_identifier_token39] = ACTIONS(1268), + [aux_sym_cmd_identifier_token40] = ACTIONS(1268), + [sym__newline] = ACTIONS(1268), + [anon_sym_SEMI] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_def] = ACTIONS(1270), + [anon_sym_export_DASHenv] = ACTIONS(1270), + [anon_sym_extern] = ACTIONS(1270), + [anon_sym_module] = ACTIONS(1270), + [anon_sym_use] = ACTIONS(1270), + [anon_sym_LBRACK] = ACTIONS(1268), + [anon_sym_LPAREN] = ACTIONS(1268), + [anon_sym_DOLLAR] = ACTIONS(1270), + [anon_sym_error] = ACTIONS(1270), + [anon_sym_DASH2] = ACTIONS(1270), + [anon_sym_break] = ACTIONS(1270), + [anon_sym_continue] = ACTIONS(1270), + [anon_sym_for] = ACTIONS(1270), + [anon_sym_loop] = ACTIONS(1270), + [anon_sym_while] = ACTIONS(1270), + [anon_sym_do] = ACTIONS(1270), + [anon_sym_if] = ACTIONS(1270), + [anon_sym_match] = ACTIONS(1270), + [anon_sym_LBRACE] = ACTIONS(1268), + [anon_sym_DOT_DOT] = ACTIONS(1270), + [anon_sym_try] = ACTIONS(1270), + [anon_sym_return] = ACTIONS(1270), + [anon_sym_source] = ACTIONS(1270), + [anon_sym_source_DASHenv] = ACTIONS(1270), + [anon_sym_register] = ACTIONS(1270), + [anon_sym_hide] = ACTIONS(1270), + [anon_sym_hide_DASHenv] = ACTIONS(1270), + [anon_sym_overlay] = ACTIONS(1270), + [anon_sym_where] = ACTIONS(1268), + [aux_sym_expr_unary_token1] = ACTIONS(1268), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1268), + [anon_sym_DOT_DOT_LT] = ACTIONS(1268), + [anon_sym_null] = ACTIONS(1270), + [anon_sym_true] = ACTIONS(1270), + [anon_sym_false] = ACTIONS(1270), + [aux_sym__val_number_decimal_token1] = ACTIONS(1270), + [aux_sym__val_number_decimal_token2] = ACTIONS(1268), + [aux_sym__val_number_decimal_token3] = ACTIONS(1268), + [aux_sym__val_number_decimal_token4] = ACTIONS(1268), + [aux_sym__val_number_token1] = ACTIONS(1268), + [aux_sym__val_number_token2] = ACTIONS(1268), + [aux_sym__val_number_token3] = ACTIONS(1268), + [aux_sym__val_number_token4] = ACTIONS(1270), + [aux_sym__val_number_token5] = ACTIONS(1270), + [aux_sym__val_number_token6] = ACTIONS(1270), + [anon_sym_0b] = ACTIONS(1270), + [anon_sym_0o] = ACTIONS(1270), + [anon_sym_0x] = ACTIONS(1270), + [sym_val_date] = ACTIONS(1268), + [anon_sym_DQUOTE] = ACTIONS(1268), + [sym__str_single_quotes] = ACTIONS(1268), + [sym__str_back_ticks] = ACTIONS(1268), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1268), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1268), + [aux_sym_env_var_token1] = ACTIONS(1270), + [anon_sym_CARET] = ACTIONS(1268), + [aux_sym_command_token1] = ACTIONS(1268), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1268), + }, + [298] = { + [sym_comment] = STATE(298), + [aux_sym_shebang_repeat1] = STATE(272), + [anon_sym_export] = ACTIONS(1523), + [anon_sym_alias] = ACTIONS(1523), + [anon_sym_let] = ACTIONS(1523), + [anon_sym_let_DASHenv] = ACTIONS(1523), + [anon_sym_mut] = ACTIONS(1523), + [anon_sym_const] = ACTIONS(1523), + [aux_sym_cmd_identifier_token1] = ACTIONS(1523), + [aux_sym_cmd_identifier_token2] = ACTIONS(1525), + [aux_sym_cmd_identifier_token3] = ACTIONS(1525), + [aux_sym_cmd_identifier_token4] = ACTIONS(1525), + [aux_sym_cmd_identifier_token5] = ACTIONS(1525), + [aux_sym_cmd_identifier_token6] = ACTIONS(1525), + [aux_sym_cmd_identifier_token7] = ACTIONS(1525), + [aux_sym_cmd_identifier_token8] = ACTIONS(1523), + [aux_sym_cmd_identifier_token9] = ACTIONS(1523), + [aux_sym_cmd_identifier_token10] = ACTIONS(1525), + [aux_sym_cmd_identifier_token11] = ACTIONS(1525), + [aux_sym_cmd_identifier_token12] = ACTIONS(1523), + [aux_sym_cmd_identifier_token13] = ACTIONS(1523), + [aux_sym_cmd_identifier_token14] = ACTIONS(1523), + [aux_sym_cmd_identifier_token15] = ACTIONS(1523), + [aux_sym_cmd_identifier_token16] = ACTIONS(1525), + [aux_sym_cmd_identifier_token17] = ACTIONS(1525), + [aux_sym_cmd_identifier_token18] = ACTIONS(1523), + [aux_sym_cmd_identifier_token19] = ACTIONS(1525), + [aux_sym_cmd_identifier_token20] = ACTIONS(1525), + [aux_sym_cmd_identifier_token21] = ACTIONS(1525), + [aux_sym_cmd_identifier_token22] = ACTIONS(1525), + [aux_sym_cmd_identifier_token23] = ACTIONS(1525), + [aux_sym_cmd_identifier_token24] = ACTIONS(1525), + [aux_sym_cmd_identifier_token25] = ACTIONS(1525), + [aux_sym_cmd_identifier_token26] = ACTIONS(1525), + [aux_sym_cmd_identifier_token27] = ACTIONS(1525), + [aux_sym_cmd_identifier_token28] = ACTIONS(1525), + [aux_sym_cmd_identifier_token29] = ACTIONS(1525), + [aux_sym_cmd_identifier_token30] = ACTIONS(1525), + [aux_sym_cmd_identifier_token31] = ACTIONS(1525), + [aux_sym_cmd_identifier_token32] = ACTIONS(1523), + [aux_sym_cmd_identifier_token33] = ACTIONS(1525), + [aux_sym_cmd_identifier_token34] = ACTIONS(1523), + [aux_sym_cmd_identifier_token35] = ACTIONS(1525), + [aux_sym_cmd_identifier_token36] = ACTIONS(1525), + [aux_sym_cmd_identifier_token37] = ACTIONS(1525), + [aux_sym_cmd_identifier_token38] = ACTIONS(1523), + [aux_sym_cmd_identifier_token39] = ACTIONS(1525), + [aux_sym_cmd_identifier_token40] = ACTIONS(1525), + [sym__newline] = ACTIONS(1501), + [anon_sym_SEMI] = ACTIONS(1527), + [anon_sym_def] = ACTIONS(1523), + [anon_sym_export_DASHenv] = ACTIONS(1523), + [anon_sym_extern] = ACTIONS(1523), + [anon_sym_module] = ACTIONS(1523), + [anon_sym_use] = ACTIONS(1523), + [anon_sym_LBRACK] = ACTIONS(1525), + [anon_sym_LPAREN] = ACTIONS(1525), + [anon_sym_DOLLAR] = ACTIONS(1523), + [anon_sym_error] = ACTIONS(1523), + [anon_sym_DASH2] = ACTIONS(1523), + [anon_sym_break] = ACTIONS(1523), + [anon_sym_continue] = ACTIONS(1523), + [anon_sym_for] = ACTIONS(1523), + [anon_sym_loop] = ACTIONS(1523), + [anon_sym_while] = ACTIONS(1523), + [anon_sym_do] = ACTIONS(1523), + [anon_sym_if] = ACTIONS(1523), + [anon_sym_match] = ACTIONS(1523), + [anon_sym_LBRACE] = ACTIONS(1525), + [anon_sym_DOT_DOT] = ACTIONS(1523), + [anon_sym_try] = ACTIONS(1523), + [anon_sym_return] = ACTIONS(1523), + [anon_sym_source] = ACTIONS(1523), + [anon_sym_source_DASHenv] = ACTIONS(1523), + [anon_sym_register] = ACTIONS(1523), + [anon_sym_hide] = ACTIONS(1523), + [anon_sym_hide_DASHenv] = ACTIONS(1523), + [anon_sym_overlay] = ACTIONS(1523), + [anon_sym_where] = ACTIONS(1525), + [aux_sym_expr_unary_token1] = ACTIONS(1525), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1525), + [anon_sym_DOT_DOT_LT] = ACTIONS(1525), + [anon_sym_null] = ACTIONS(1523), + [anon_sym_true] = ACTIONS(1523), + [anon_sym_false] = ACTIONS(1523), + [aux_sym__val_number_decimal_token1] = ACTIONS(1523), + [aux_sym__val_number_decimal_token2] = ACTIONS(1525), + [aux_sym__val_number_decimal_token3] = ACTIONS(1525), + [aux_sym__val_number_decimal_token4] = ACTIONS(1525), + [aux_sym__val_number_token1] = ACTIONS(1525), + [aux_sym__val_number_token2] = ACTIONS(1525), + [aux_sym__val_number_token3] = ACTIONS(1525), + [aux_sym__val_number_token4] = ACTIONS(1523), + [aux_sym__val_number_token5] = ACTIONS(1523), + [aux_sym__val_number_token6] = ACTIONS(1523), + [anon_sym_0b] = ACTIONS(1523), + [anon_sym_0o] = ACTIONS(1523), + [anon_sym_0x] = ACTIONS(1523), + [sym_val_date] = ACTIONS(1525), + [anon_sym_DQUOTE] = ACTIONS(1525), + [sym__str_single_quotes] = ACTIONS(1525), + [sym__str_back_ticks] = ACTIONS(1525), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1525), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1525), + [aux_sym_env_var_token1] = ACTIONS(1523), + [anon_sym_CARET] = ACTIONS(1525), + [aux_sym_command_token1] = ACTIONS(1525), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1525), + }, + [299] = { + [sym__expr_parenthesized_immediate] = STATE(460), + [sym__immediate_decimal] = STATE(370), + [sym_val_variable] = STATE(460), + [sym_comment] = STATE(299), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_alias] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_let_DASHenv] = ACTIONS(1529), + [anon_sym_mut] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [aux_sym_cmd_identifier_token1] = ACTIONS(1529), + [aux_sym_cmd_identifier_token2] = ACTIONS(1529), + [aux_sym_cmd_identifier_token3] = ACTIONS(1529), + [aux_sym_cmd_identifier_token4] = ACTIONS(1529), + [aux_sym_cmd_identifier_token5] = ACTIONS(1529), + [aux_sym_cmd_identifier_token6] = ACTIONS(1529), + [aux_sym_cmd_identifier_token7] = ACTIONS(1529), + [aux_sym_cmd_identifier_token8] = ACTIONS(1529), + [aux_sym_cmd_identifier_token9] = ACTIONS(1529), + [aux_sym_cmd_identifier_token10] = ACTIONS(1529), + [aux_sym_cmd_identifier_token11] = ACTIONS(1529), + [aux_sym_cmd_identifier_token12] = ACTIONS(1529), + [aux_sym_cmd_identifier_token13] = ACTIONS(1529), + [aux_sym_cmd_identifier_token14] = ACTIONS(1529), + [aux_sym_cmd_identifier_token15] = ACTIONS(1529), + [aux_sym_cmd_identifier_token16] = ACTIONS(1529), + [aux_sym_cmd_identifier_token17] = ACTIONS(1529), + [aux_sym_cmd_identifier_token18] = ACTIONS(1529), + [aux_sym_cmd_identifier_token19] = ACTIONS(1529), + [aux_sym_cmd_identifier_token20] = ACTIONS(1529), + [aux_sym_cmd_identifier_token21] = ACTIONS(1529), + [aux_sym_cmd_identifier_token22] = ACTIONS(1529), + [aux_sym_cmd_identifier_token23] = ACTIONS(1529), + [aux_sym_cmd_identifier_token24] = ACTIONS(1529), + [aux_sym_cmd_identifier_token25] = ACTIONS(1529), + [aux_sym_cmd_identifier_token26] = ACTIONS(1529), + [aux_sym_cmd_identifier_token27] = ACTIONS(1529), + [aux_sym_cmd_identifier_token28] = ACTIONS(1529), + [aux_sym_cmd_identifier_token29] = ACTIONS(1529), + [aux_sym_cmd_identifier_token30] = ACTIONS(1529), + [aux_sym_cmd_identifier_token31] = ACTIONS(1529), + [aux_sym_cmd_identifier_token32] = ACTIONS(1529), + [aux_sym_cmd_identifier_token33] = ACTIONS(1529), + [aux_sym_cmd_identifier_token34] = ACTIONS(1529), + [aux_sym_cmd_identifier_token35] = ACTIONS(1529), + [aux_sym_cmd_identifier_token36] = ACTIONS(1529), + [aux_sym_cmd_identifier_token37] = ACTIONS(1529), + [aux_sym_cmd_identifier_token38] = ACTIONS(1529), + [aux_sym_cmd_identifier_token39] = ACTIONS(1529), + [aux_sym_cmd_identifier_token40] = ACTIONS(1529), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_export_DASHenv] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(1531), + [anon_sym_error] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_make] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_catch] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_source] = ACTIONS(1529), + [anon_sym_source_DASHenv] = ACTIONS(1529), + [anon_sym_register] = ACTIONS(1529), + [anon_sym_hide] = ACTIONS(1529), + [anon_sym_hide_DASHenv] = ACTIONS(1529), + [anon_sym_overlay] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1529), + [anon_sym_DOT] = ACTIONS(1535), + [aux_sym__immediate_decimal_token1] = ACTIONS(1537), + [aux_sym__immediate_decimal_token3] = ACTIONS(1537), + [aux_sym__immediate_decimal_token4] = ACTIONS(1539), + [aux_sym__immediate_decimal_token5] = ACTIONS(1541), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1529), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1529), + [aux_sym__val_number_token2] = ACTIONS(1529), + [aux_sym__val_number_token3] = ACTIONS(1529), + [aux_sym__val_number_token4] = ACTIONS(1529), + [aux_sym__val_number_token5] = ACTIONS(1529), + [aux_sym__val_number_token6] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1529), + [sym__str_single_quotes] = ACTIONS(1529), + [sym__str_back_ticks] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1529), + [sym__entry_separator] = ACTIONS(1543), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1543), + }, + [300] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if] = STATE(4588), + [sym_block] = STATE(4589), + [sym__expression] = STATE(4589), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1197), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4589), + [sym_comment] = STATE(300), [aux_sym_cmd_identifier_token1] = ACTIONS(363), [aux_sym_cmd_identifier_token2] = ACTIONS(365), [aux_sym_cmd_identifier_token3] = ACTIONS(365), @@ -115503,9 +113646,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token40] = ACTIONS(365), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_if] = ACTIONS(595), + [anon_sym_if] = ACTIONS(1038), [anon_sym_LBRACE] = ACTIONS(1454), [anon_sym_DOT_DOT] = ACTIONS(187), [aux_sym_expr_unary_token1] = ACTIONS(205), @@ -115514,10 +113657,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_null] = ACTIONS(213), [anon_sym_true] = ACTIONS(215), [anon_sym_false] = ACTIONS(215), - [aux_sym__val_number_decimal_token1] = ACTIONS(1456), - [aux_sym__val_number_decimal_token2] = ACTIONS(1458), - [aux_sym__val_number_decimal_token3] = ACTIONS(1460), - [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_decimal_token1] = ACTIONS(1464), + [aux_sym__val_number_decimal_token2] = ACTIONS(1466), + [aux_sym__val_number_decimal_token3] = ACTIONS(1468), + [aux_sym__val_number_decimal_token4] = ACTIONS(1470), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -115538,8 +113681,451 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [318] = { - [sym_comment] = STATE(318), + [301] = { + [sym__expr_parenthesized_immediate] = STATE(444), + [sym__immediate_decimal] = STATE(461), + [sym_val_variable] = STATE(444), + [sym_comment] = STATE(301), + [anon_sym_export] = ACTIONS(1547), + [anon_sym_alias] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_let_DASHenv] = ACTIONS(1547), + [anon_sym_mut] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [aux_sym_cmd_identifier_token1] = ACTIONS(1547), + [aux_sym_cmd_identifier_token2] = ACTIONS(1547), + [aux_sym_cmd_identifier_token3] = ACTIONS(1547), + [aux_sym_cmd_identifier_token4] = ACTIONS(1547), + [aux_sym_cmd_identifier_token5] = ACTIONS(1547), + [aux_sym_cmd_identifier_token6] = ACTIONS(1547), + [aux_sym_cmd_identifier_token7] = ACTIONS(1547), + [aux_sym_cmd_identifier_token8] = ACTIONS(1547), + [aux_sym_cmd_identifier_token9] = ACTIONS(1547), + [aux_sym_cmd_identifier_token10] = ACTIONS(1547), + [aux_sym_cmd_identifier_token11] = ACTIONS(1547), + [aux_sym_cmd_identifier_token12] = ACTIONS(1547), + [aux_sym_cmd_identifier_token13] = ACTIONS(1547), + [aux_sym_cmd_identifier_token14] = ACTIONS(1547), + [aux_sym_cmd_identifier_token15] = ACTIONS(1547), + [aux_sym_cmd_identifier_token16] = ACTIONS(1547), + [aux_sym_cmd_identifier_token17] = ACTIONS(1547), + [aux_sym_cmd_identifier_token18] = ACTIONS(1547), + [aux_sym_cmd_identifier_token19] = ACTIONS(1547), + [aux_sym_cmd_identifier_token20] = ACTIONS(1547), + [aux_sym_cmd_identifier_token21] = ACTIONS(1547), + [aux_sym_cmd_identifier_token22] = ACTIONS(1547), + [aux_sym_cmd_identifier_token23] = ACTIONS(1547), + [aux_sym_cmd_identifier_token24] = ACTIONS(1547), + [aux_sym_cmd_identifier_token25] = ACTIONS(1547), + [aux_sym_cmd_identifier_token26] = ACTIONS(1547), + [aux_sym_cmd_identifier_token27] = ACTIONS(1547), + [aux_sym_cmd_identifier_token28] = ACTIONS(1547), + [aux_sym_cmd_identifier_token29] = ACTIONS(1547), + [aux_sym_cmd_identifier_token30] = ACTIONS(1547), + [aux_sym_cmd_identifier_token31] = ACTIONS(1547), + [aux_sym_cmd_identifier_token32] = ACTIONS(1547), + [aux_sym_cmd_identifier_token33] = ACTIONS(1547), + [aux_sym_cmd_identifier_token34] = ACTIONS(1547), + [aux_sym_cmd_identifier_token35] = ACTIONS(1547), + [aux_sym_cmd_identifier_token36] = ACTIONS(1547), + [aux_sym_cmd_identifier_token37] = ACTIONS(1547), + [aux_sym_cmd_identifier_token38] = ACTIONS(1547), + [aux_sym_cmd_identifier_token39] = ACTIONS(1547), + [aux_sym_cmd_identifier_token40] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1547), + [anon_sym_export_DASHenv] = ACTIONS(1547), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_DOLLAR] = ACTIONS(1531), + [anon_sym_error] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_make] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(1547), + [anon_sym_catch] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_source] = ACTIONS(1547), + [anon_sym_source_DASHenv] = ACTIONS(1547), + [anon_sym_register] = ACTIONS(1547), + [anon_sym_hide] = ACTIONS(1547), + [anon_sym_hide_DASHenv] = ACTIONS(1547), + [anon_sym_overlay] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(1533), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1547), + [anon_sym_DOT] = ACTIONS(1549), + [aux_sym__immediate_decimal_token1] = ACTIONS(1551), + [aux_sym__immediate_decimal_token3] = ACTIONS(1551), + [aux_sym__immediate_decimal_token4] = ACTIONS(1553), + [aux_sym__immediate_decimal_token5] = ACTIONS(1555), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1547), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1547), + [aux_sym__val_number_token2] = ACTIONS(1547), + [aux_sym__val_number_token3] = ACTIONS(1547), + [aux_sym__val_number_token4] = ACTIONS(1547), + [aux_sym__val_number_token5] = ACTIONS(1547), + [aux_sym__val_number_token6] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [sym__str_single_quotes] = ACTIONS(1547), + [sym__str_back_ticks] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1547), + [sym__entry_separator] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [302] = { + [sym__expr_parenthesized_immediate] = STATE(546), + [sym__immediate_decimal] = STATE(407), + [sym_val_variable] = STATE(546), + [sym_comment] = STATE(302), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_alias] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_let_DASHenv] = ACTIONS(1529), + [anon_sym_mut] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [aux_sym_cmd_identifier_token1] = ACTIONS(1529), + [aux_sym_cmd_identifier_token2] = ACTIONS(1543), + [aux_sym_cmd_identifier_token3] = ACTIONS(1543), + [aux_sym_cmd_identifier_token4] = ACTIONS(1543), + [aux_sym_cmd_identifier_token5] = ACTIONS(1543), + [aux_sym_cmd_identifier_token6] = ACTIONS(1543), + [aux_sym_cmd_identifier_token7] = ACTIONS(1543), + [aux_sym_cmd_identifier_token8] = ACTIONS(1529), + [aux_sym_cmd_identifier_token9] = ACTIONS(1529), + [aux_sym_cmd_identifier_token10] = ACTIONS(1543), + [aux_sym_cmd_identifier_token11] = ACTIONS(1543), + [aux_sym_cmd_identifier_token12] = ACTIONS(1529), + [aux_sym_cmd_identifier_token13] = ACTIONS(1529), + [aux_sym_cmd_identifier_token14] = ACTIONS(1529), + [aux_sym_cmd_identifier_token15] = ACTIONS(1529), + [aux_sym_cmd_identifier_token16] = ACTIONS(1543), + [aux_sym_cmd_identifier_token17] = ACTIONS(1543), + [aux_sym_cmd_identifier_token18] = ACTIONS(1543), + [aux_sym_cmd_identifier_token19] = ACTIONS(1543), + [aux_sym_cmd_identifier_token20] = ACTIONS(1543), + [aux_sym_cmd_identifier_token21] = ACTIONS(1543), + [aux_sym_cmd_identifier_token22] = ACTIONS(1543), + [aux_sym_cmd_identifier_token23] = ACTIONS(1543), + [aux_sym_cmd_identifier_token24] = ACTIONS(1543), + [aux_sym_cmd_identifier_token25] = ACTIONS(1543), + [aux_sym_cmd_identifier_token26] = ACTIONS(1543), + [aux_sym_cmd_identifier_token27] = ACTIONS(1543), + [aux_sym_cmd_identifier_token28] = ACTIONS(1543), + [aux_sym_cmd_identifier_token29] = ACTIONS(1543), + [aux_sym_cmd_identifier_token30] = ACTIONS(1543), + [aux_sym_cmd_identifier_token31] = ACTIONS(1543), + [aux_sym_cmd_identifier_token32] = ACTIONS(1543), + [aux_sym_cmd_identifier_token33] = ACTIONS(1543), + [aux_sym_cmd_identifier_token34] = ACTIONS(1529), + [aux_sym_cmd_identifier_token35] = ACTIONS(1543), + [aux_sym_cmd_identifier_token36] = ACTIONS(1543), + [aux_sym_cmd_identifier_token37] = ACTIONS(1543), + [aux_sym_cmd_identifier_token38] = ACTIONS(1529), + [aux_sym_cmd_identifier_token39] = ACTIONS(1543), + [aux_sym_cmd_identifier_token40] = ACTIONS(1543), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_export_DASHenv] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_error] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_make] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_catch] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_source] = ACTIONS(1529), + [anon_sym_source_DASHenv] = ACTIONS(1529), + [anon_sym_register] = ACTIONS(1529), + [anon_sym_hide] = ACTIONS(1529), + [anon_sym_hide_DASHenv] = ACTIONS(1529), + [anon_sym_overlay] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1543), + [anon_sym_DOT] = ACTIONS(1563), + [aux_sym__immediate_decimal_token1] = ACTIONS(1565), + [aux_sym__immediate_decimal_token3] = ACTIONS(1567), + [aux_sym__immediate_decimal_token4] = ACTIONS(1569), + [aux_sym__immediate_decimal_token5] = ACTIONS(1571), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1529), + [aux_sym__val_number_token5] = ACTIONS(1529), + [aux_sym__val_number_token6] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1543), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1543), + }, + [303] = { + [sym_comment] = STATE(303), + [anon_sym_export] = ACTIONS(1573), + [anon_sym_alias] = ACTIONS(1573), + [anon_sym_let] = ACTIONS(1573), + [anon_sym_let_DASHenv] = ACTIONS(1573), + [anon_sym_mut] = ACTIONS(1573), + [anon_sym_const] = ACTIONS(1573), + [aux_sym_cmd_identifier_token1] = ACTIONS(1573), + [aux_sym_cmd_identifier_token2] = ACTIONS(1575), + [aux_sym_cmd_identifier_token3] = ACTIONS(1575), + [aux_sym_cmd_identifier_token4] = ACTIONS(1575), + [aux_sym_cmd_identifier_token5] = ACTIONS(1575), + [aux_sym_cmd_identifier_token6] = ACTIONS(1575), + [aux_sym_cmd_identifier_token7] = ACTIONS(1575), + [aux_sym_cmd_identifier_token8] = ACTIONS(1573), + [aux_sym_cmd_identifier_token9] = ACTIONS(1573), + [aux_sym_cmd_identifier_token10] = ACTIONS(1575), + [aux_sym_cmd_identifier_token11] = ACTIONS(1575), + [aux_sym_cmd_identifier_token12] = ACTIONS(1573), + [aux_sym_cmd_identifier_token13] = ACTIONS(1573), + [aux_sym_cmd_identifier_token14] = ACTIONS(1573), + [aux_sym_cmd_identifier_token15] = ACTIONS(1573), + [aux_sym_cmd_identifier_token16] = ACTIONS(1575), + [aux_sym_cmd_identifier_token17] = ACTIONS(1575), + [aux_sym_cmd_identifier_token18] = ACTIONS(1573), + [aux_sym_cmd_identifier_token19] = ACTIONS(1575), + [aux_sym_cmd_identifier_token20] = ACTIONS(1575), + [aux_sym_cmd_identifier_token21] = ACTIONS(1575), + [aux_sym_cmd_identifier_token22] = ACTIONS(1575), + [aux_sym_cmd_identifier_token23] = ACTIONS(1575), + [aux_sym_cmd_identifier_token24] = ACTIONS(1575), + [aux_sym_cmd_identifier_token25] = ACTIONS(1575), + [aux_sym_cmd_identifier_token26] = ACTIONS(1575), + [aux_sym_cmd_identifier_token27] = ACTIONS(1575), + [aux_sym_cmd_identifier_token28] = ACTIONS(1575), + [aux_sym_cmd_identifier_token29] = ACTIONS(1575), + [aux_sym_cmd_identifier_token30] = ACTIONS(1575), + [aux_sym_cmd_identifier_token31] = ACTIONS(1575), + [aux_sym_cmd_identifier_token32] = ACTIONS(1573), + [aux_sym_cmd_identifier_token33] = ACTIONS(1575), + [aux_sym_cmd_identifier_token34] = ACTIONS(1573), + [aux_sym_cmd_identifier_token35] = ACTIONS(1575), + [aux_sym_cmd_identifier_token36] = ACTIONS(1575), + [aux_sym_cmd_identifier_token37] = ACTIONS(1575), + [aux_sym_cmd_identifier_token38] = ACTIONS(1573), + [aux_sym_cmd_identifier_token39] = ACTIONS(1575), + [aux_sym_cmd_identifier_token40] = ACTIONS(1575), + [sym__newline] = ACTIONS(1575), + [anon_sym_SEMI] = ACTIONS(1575), + [anon_sym_def] = ACTIONS(1573), + [anon_sym_export_DASHenv] = ACTIONS(1573), + [anon_sym_extern] = ACTIONS(1573), + [anon_sym_module] = ACTIONS(1573), + [anon_sym_use] = ACTIONS(1573), + [anon_sym_LBRACK] = ACTIONS(1575), + [anon_sym_LPAREN] = ACTIONS(1575), + [anon_sym_DOLLAR] = ACTIONS(1573), + [anon_sym_error] = ACTIONS(1573), + [anon_sym_DASH2] = ACTIONS(1573), + [anon_sym_break] = ACTIONS(1573), + [anon_sym_continue] = ACTIONS(1573), + [anon_sym_for] = ACTIONS(1573), + [anon_sym_loop] = ACTIONS(1573), + [anon_sym_while] = ACTIONS(1573), + [anon_sym_do] = ACTIONS(1573), + [anon_sym_if] = ACTIONS(1573), + [anon_sym_match] = ACTIONS(1573), + [anon_sym_LBRACE] = ACTIONS(1575), + [anon_sym_DOT_DOT] = ACTIONS(1573), + [anon_sym_try] = ACTIONS(1573), + [anon_sym_return] = ACTIONS(1573), + [anon_sym_source] = ACTIONS(1573), + [anon_sym_source_DASHenv] = ACTIONS(1573), + [anon_sym_register] = ACTIONS(1573), + [anon_sym_hide] = ACTIONS(1573), + [anon_sym_hide_DASHenv] = ACTIONS(1573), + [anon_sym_overlay] = ACTIONS(1573), + [anon_sym_where] = ACTIONS(1575), + [aux_sym_expr_unary_token1] = ACTIONS(1575), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1575), + [anon_sym_DOT_DOT_LT] = ACTIONS(1575), + [anon_sym_null] = ACTIONS(1573), + [anon_sym_true] = ACTIONS(1573), + [anon_sym_false] = ACTIONS(1573), + [aux_sym__val_number_decimal_token1] = ACTIONS(1573), + [aux_sym__val_number_decimal_token2] = ACTIONS(1575), + [aux_sym__val_number_decimal_token3] = ACTIONS(1575), + [aux_sym__val_number_decimal_token4] = ACTIONS(1575), + [aux_sym__val_number_token1] = ACTIONS(1575), + [aux_sym__val_number_token2] = ACTIONS(1575), + [aux_sym__val_number_token3] = ACTIONS(1575), + [aux_sym__val_number_token4] = ACTIONS(1573), + [aux_sym__val_number_token5] = ACTIONS(1573), + [aux_sym__val_number_token6] = ACTIONS(1573), + [anon_sym_0b] = ACTIONS(1573), + [anon_sym_0o] = ACTIONS(1573), + [anon_sym_0x] = ACTIONS(1573), + [sym_val_date] = ACTIONS(1575), + [anon_sym_DQUOTE] = ACTIONS(1575), + [sym__str_single_quotes] = ACTIONS(1575), + [sym__str_back_ticks] = ACTIONS(1575), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1575), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1575), + [aux_sym_env_var_token1] = ACTIONS(1573), + [anon_sym_CARET] = ACTIONS(1575), + [aux_sym_command_token1] = ACTIONS(1575), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1575), + }, + [304] = { + [sym__expr_parenthesized_immediate] = STATE(625), + [sym__immediate_decimal] = STATE(511), + [sym_val_variable] = STATE(625), + [sym_comment] = STATE(304), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_alias] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_let_DASHenv] = ACTIONS(1529), + [anon_sym_mut] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [aux_sym_cmd_identifier_token1] = ACTIONS(1529), + [aux_sym_cmd_identifier_token2] = ACTIONS(1529), + [aux_sym_cmd_identifier_token3] = ACTIONS(1529), + [aux_sym_cmd_identifier_token4] = ACTIONS(1529), + [aux_sym_cmd_identifier_token5] = ACTIONS(1529), + [aux_sym_cmd_identifier_token6] = ACTIONS(1529), + [aux_sym_cmd_identifier_token7] = ACTIONS(1529), + [aux_sym_cmd_identifier_token8] = ACTIONS(1529), + [aux_sym_cmd_identifier_token9] = ACTIONS(1529), + [aux_sym_cmd_identifier_token10] = ACTIONS(1529), + [aux_sym_cmd_identifier_token11] = ACTIONS(1529), + [aux_sym_cmd_identifier_token12] = ACTIONS(1529), + [aux_sym_cmd_identifier_token13] = ACTIONS(1529), + [aux_sym_cmd_identifier_token14] = ACTIONS(1529), + [aux_sym_cmd_identifier_token15] = ACTIONS(1529), + [aux_sym_cmd_identifier_token16] = ACTIONS(1529), + [aux_sym_cmd_identifier_token17] = ACTIONS(1529), + [aux_sym_cmd_identifier_token18] = ACTIONS(1529), + [aux_sym_cmd_identifier_token19] = ACTIONS(1529), + [aux_sym_cmd_identifier_token20] = ACTIONS(1529), + [aux_sym_cmd_identifier_token21] = ACTIONS(1529), + [aux_sym_cmd_identifier_token22] = ACTIONS(1529), + [aux_sym_cmd_identifier_token23] = ACTIONS(1529), + [aux_sym_cmd_identifier_token24] = ACTIONS(1529), + [aux_sym_cmd_identifier_token25] = ACTIONS(1529), + [aux_sym_cmd_identifier_token26] = ACTIONS(1529), + [aux_sym_cmd_identifier_token27] = ACTIONS(1529), + [aux_sym_cmd_identifier_token28] = ACTIONS(1529), + [aux_sym_cmd_identifier_token29] = ACTIONS(1529), + [aux_sym_cmd_identifier_token30] = ACTIONS(1529), + [aux_sym_cmd_identifier_token31] = ACTIONS(1529), + [aux_sym_cmd_identifier_token32] = ACTIONS(1529), + [aux_sym_cmd_identifier_token33] = ACTIONS(1529), + [aux_sym_cmd_identifier_token34] = ACTIONS(1529), + [aux_sym_cmd_identifier_token35] = ACTIONS(1529), + [aux_sym_cmd_identifier_token36] = ACTIONS(1529), + [aux_sym_cmd_identifier_token37] = ACTIONS(1529), + [aux_sym_cmd_identifier_token38] = ACTIONS(1529), + [aux_sym_cmd_identifier_token39] = ACTIONS(1529), + [aux_sym_cmd_identifier_token40] = ACTIONS(1529), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_export_DASHenv] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_error] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_make] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1529), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_catch] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_source] = ACTIONS(1529), + [anon_sym_source_DASHenv] = ACTIONS(1529), + [anon_sym_register] = ACTIONS(1529), + [anon_sym_hide] = ACTIONS(1529), + [anon_sym_hide_DASHenv] = ACTIONS(1529), + [anon_sym_overlay] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1529), + [aux_sym__immediate_decimal_token1] = ACTIONS(1581), + [aux_sym__immediate_decimal_token3] = ACTIONS(1581), + [aux_sym__immediate_decimal_token4] = ACTIONS(1583), + [aux_sym__immediate_decimal_token5] = ACTIONS(1585), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1529), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1529), + [aux_sym__val_number_token2] = ACTIONS(1529), + [aux_sym__val_number_token3] = ACTIONS(1529), + [aux_sym__val_number_token4] = ACTIONS(1529), + [aux_sym__val_number_token5] = ACTIONS(1529), + [aux_sym__val_number_token6] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1529), + [sym__str_single_quotes] = ACTIONS(1529), + [sym__str_back_ticks] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1529), + [sym__entry_separator] = ACTIONS(1543), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1543), + }, + [305] = { + [sym__expr_parenthesized_immediate] = STATE(616), + [sym__immediate_decimal] = STATE(506), + [sym_val_variable] = STATE(616), + [sym_comment] = STATE(305), [anon_sym_export] = ACTIONS(1587), [anon_sym_alias] = ACTIONS(1587), [anon_sym_let] = ACTIONS(1587), @@ -115592,7 +114178,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1587), [anon_sym_use] = ACTIONS(1587), [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_COMMA] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(1577), [anon_sym_error] = ACTIONS(1587), [anon_sym_DASH2] = ACTIONS(1587), [anon_sym_break] = ACTIONS(1587), @@ -115617,14 +114204,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1587), [anon_sym_overlay] = ACTIONS(1587), [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1579), [anon_sym_PLUS2] = ACTIONS(1587), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1591), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(1593), + [aux_sym__immediate_decimal_token1] = ACTIONS(1581), + [aux_sym__immediate_decimal_token3] = ACTIONS(1581), + [aux_sym__immediate_decimal_token4] = ACTIONS(1583), + [aux_sym__immediate_decimal_token5] = ACTIONS(1585), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), [aux_sym__val_number_decimal_token1] = ACTIONS(1587), [aux_sym__val_number_decimal_token2] = ACTIONS(1587), @@ -115636,43 +114222,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1587), [aux_sym__val_number_token5] = ACTIONS(1587), [aux_sym__val_number_token6] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), [anon_sym_DQUOTE] = ACTIONS(1587), [sym__str_single_quotes] = ACTIONS(1587), [sym__str_back_ticks] = ACTIONS(1587), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), [sym__entry_separator] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1587), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1589), }, - [319] = { - [sym_comment] = STATE(319), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_alias] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_let_DASHenv] = ACTIONS(1595), - [anon_sym_mut] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [aux_sym_cmd_identifier_token1] = ACTIONS(1595), + [306] = { + [sym_comment] = STATE(306), + [anon_sym_export] = ACTIONS(1593), + [anon_sym_alias] = ACTIONS(1593), + [anon_sym_let] = ACTIONS(1593), + [anon_sym_let_DASHenv] = ACTIONS(1593), + [anon_sym_mut] = ACTIONS(1593), + [anon_sym_const] = ACTIONS(1593), + [aux_sym_cmd_identifier_token1] = ACTIONS(1593), [aux_sym_cmd_identifier_token2] = ACTIONS(1595), [aux_sym_cmd_identifier_token3] = ACTIONS(1595), [aux_sym_cmd_identifier_token4] = ACTIONS(1595), [aux_sym_cmd_identifier_token5] = ACTIONS(1595), [aux_sym_cmd_identifier_token6] = ACTIONS(1595), [aux_sym_cmd_identifier_token7] = ACTIONS(1595), - [aux_sym_cmd_identifier_token8] = ACTIONS(1595), - [aux_sym_cmd_identifier_token9] = ACTIONS(1595), + [aux_sym_cmd_identifier_token8] = ACTIONS(1593), + [aux_sym_cmd_identifier_token9] = ACTIONS(1593), [aux_sym_cmd_identifier_token10] = ACTIONS(1595), [aux_sym_cmd_identifier_token11] = ACTIONS(1595), - [aux_sym_cmd_identifier_token12] = ACTIONS(1595), - [aux_sym_cmd_identifier_token13] = ACTIONS(1595), - [aux_sym_cmd_identifier_token14] = ACTIONS(1595), - [aux_sym_cmd_identifier_token15] = ACTIONS(1595), + [aux_sym_cmd_identifier_token12] = ACTIONS(1593), + [aux_sym_cmd_identifier_token13] = ACTIONS(1593), + [aux_sym_cmd_identifier_token14] = ACTIONS(1593), + [aux_sym_cmd_identifier_token15] = ACTIONS(1593), [aux_sym_cmd_identifier_token16] = ACTIONS(1595), [aux_sym_cmd_identifier_token17] = ACTIONS(1595), - [aux_sym_cmd_identifier_token18] = ACTIONS(1595), + [aux_sym_cmd_identifier_token18] = ACTIONS(1593), [aux_sym_cmd_identifier_token19] = ACTIONS(1595), [aux_sym_cmd_identifier_token20] = ACTIONS(1595), [aux_sym_cmd_identifier_token21] = ACTIONS(1595), @@ -115686,967 +114270,100 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token29] = ACTIONS(1595), [aux_sym_cmd_identifier_token30] = ACTIONS(1595), [aux_sym_cmd_identifier_token31] = ACTIONS(1595), - [aux_sym_cmd_identifier_token32] = ACTIONS(1595), + [aux_sym_cmd_identifier_token32] = ACTIONS(1593), [aux_sym_cmd_identifier_token33] = ACTIONS(1595), - [aux_sym_cmd_identifier_token34] = ACTIONS(1595), + [aux_sym_cmd_identifier_token34] = ACTIONS(1593), [aux_sym_cmd_identifier_token35] = ACTIONS(1595), [aux_sym_cmd_identifier_token36] = ACTIONS(1595), [aux_sym_cmd_identifier_token37] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), + [aux_sym_cmd_identifier_token38] = ACTIONS(1593), [aux_sym_cmd_identifier_token39] = ACTIONS(1595), [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [anon_sym_def] = ACTIONS(1595), - [anon_sym_export_DASHenv] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), + [sym__newline] = ACTIONS(1595), + [anon_sym_SEMI] = ACTIONS(1595), + [anon_sym_def] = ACTIONS(1593), + [anon_sym_export_DASHenv] = ACTIONS(1593), + [anon_sym_extern] = ACTIONS(1593), + [anon_sym_module] = ACTIONS(1593), + [anon_sym_use] = ACTIONS(1593), + [anon_sym_LBRACK] = ACTIONS(1595), [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_error] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_make] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_else] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1595), - [anon_sym_catch] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_source] = ACTIONS(1595), - [anon_sym_source_DASHenv] = ACTIONS(1595), - [anon_sym_register] = ACTIONS(1595), - [anon_sym_hide] = ACTIONS(1595), - [anon_sym_hide_DASHenv] = ACTIONS(1595), - [anon_sym_overlay] = ACTIONS(1595), - [anon_sym_as] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(1599), - [aux_sym__immediate_decimal_token2] = ACTIONS(1601), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), + [anon_sym_DOLLAR] = ACTIONS(1593), + [anon_sym_error] = ACTIONS(1593), + [anon_sym_DASH2] = ACTIONS(1593), + [anon_sym_break] = ACTIONS(1593), + [anon_sym_continue] = ACTIONS(1593), + [anon_sym_for] = ACTIONS(1593), + [anon_sym_loop] = ACTIONS(1593), + [anon_sym_while] = ACTIONS(1593), + [anon_sym_do] = ACTIONS(1593), + [anon_sym_if] = ACTIONS(1593), + [anon_sym_match] = ACTIONS(1593), + [anon_sym_LBRACE] = ACTIONS(1595), + [anon_sym_DOT_DOT] = ACTIONS(1593), + [anon_sym_try] = ACTIONS(1593), + [anon_sym_return] = ACTIONS(1593), + [anon_sym_source] = ACTIONS(1593), + [anon_sym_source_DASHenv] = ACTIONS(1593), + [anon_sym_register] = ACTIONS(1593), + [anon_sym_hide] = ACTIONS(1593), + [anon_sym_hide_DASHenv] = ACTIONS(1593), + [anon_sym_overlay] = ACTIONS(1593), + [anon_sym_where] = ACTIONS(1595), + [aux_sym_expr_unary_token1] = ACTIONS(1595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), + [anon_sym_DOT_DOT_LT] = ACTIONS(1595), + [anon_sym_null] = ACTIONS(1593), + [anon_sym_true] = ACTIONS(1593), + [anon_sym_false] = ACTIONS(1593), + [aux_sym__val_number_decimal_token1] = ACTIONS(1593), [aux_sym__val_number_decimal_token2] = ACTIONS(1595), [aux_sym__val_number_decimal_token3] = ACTIONS(1595), [aux_sym__val_number_decimal_token4] = ACTIONS(1595), [aux_sym__val_number_token1] = ACTIONS(1595), [aux_sym__val_number_token2] = ACTIONS(1595), [aux_sym__val_number_token3] = ACTIONS(1595), - [aux_sym__val_number_token4] = ACTIONS(1595), - [aux_sym__val_number_token5] = ACTIONS(1595), - [aux_sym__val_number_token6] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1595), + [aux_sym__val_number_token4] = ACTIONS(1593), + [aux_sym__val_number_token5] = ACTIONS(1593), + [aux_sym__val_number_token6] = ACTIONS(1593), + [anon_sym_0b] = ACTIONS(1593), + [anon_sym_0o] = ACTIONS(1593), + [anon_sym_0x] = ACTIONS(1593), + [sym_val_date] = ACTIONS(1595), [anon_sym_DQUOTE] = ACTIONS(1595), [sym__str_single_quotes] = ACTIONS(1595), [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1595), - [sym__entry_separator] = ACTIONS(1597), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [320] = { - [sym__expr_parenthesized_immediate] = STATE(537), - [sym__immediate_decimal] = STATE(409), - [sym_val_variable] = STATE(537), - [sym_comment] = STATE(320), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_alias] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_let_DASHenv] = ACTIONS(1539), - [anon_sym_mut] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [aux_sym_cmd_identifier_token1] = ACTIONS(1539), - [aux_sym_cmd_identifier_token2] = ACTIONS(1553), - [aux_sym_cmd_identifier_token3] = ACTIONS(1553), - [aux_sym_cmd_identifier_token4] = ACTIONS(1553), - [aux_sym_cmd_identifier_token5] = ACTIONS(1553), - [aux_sym_cmd_identifier_token6] = ACTIONS(1553), - [aux_sym_cmd_identifier_token7] = ACTIONS(1553), - [aux_sym_cmd_identifier_token8] = ACTIONS(1539), - [aux_sym_cmd_identifier_token9] = ACTIONS(1539), - [aux_sym_cmd_identifier_token10] = ACTIONS(1553), - [aux_sym_cmd_identifier_token11] = ACTIONS(1553), - [aux_sym_cmd_identifier_token12] = ACTIONS(1539), - [aux_sym_cmd_identifier_token13] = ACTIONS(1539), - [aux_sym_cmd_identifier_token14] = ACTIONS(1539), - [aux_sym_cmd_identifier_token15] = ACTIONS(1539), - [aux_sym_cmd_identifier_token16] = ACTIONS(1553), - [aux_sym_cmd_identifier_token17] = ACTIONS(1553), - [aux_sym_cmd_identifier_token18] = ACTIONS(1553), - [aux_sym_cmd_identifier_token19] = ACTIONS(1553), - [aux_sym_cmd_identifier_token20] = ACTIONS(1553), - [aux_sym_cmd_identifier_token21] = ACTIONS(1553), - [aux_sym_cmd_identifier_token22] = ACTIONS(1553), - [aux_sym_cmd_identifier_token23] = ACTIONS(1553), - [aux_sym_cmd_identifier_token24] = ACTIONS(1553), - [aux_sym_cmd_identifier_token25] = ACTIONS(1553), - [aux_sym_cmd_identifier_token26] = ACTIONS(1553), - [aux_sym_cmd_identifier_token27] = ACTIONS(1553), - [aux_sym_cmd_identifier_token28] = ACTIONS(1553), - [aux_sym_cmd_identifier_token29] = ACTIONS(1553), - [aux_sym_cmd_identifier_token30] = ACTIONS(1553), - [aux_sym_cmd_identifier_token31] = ACTIONS(1553), - [aux_sym_cmd_identifier_token32] = ACTIONS(1553), - [aux_sym_cmd_identifier_token33] = ACTIONS(1553), - [aux_sym_cmd_identifier_token34] = ACTIONS(1539), - [aux_sym_cmd_identifier_token35] = ACTIONS(1553), - [aux_sym_cmd_identifier_token36] = ACTIONS(1553), - [aux_sym_cmd_identifier_token37] = ACTIONS(1553), - [aux_sym_cmd_identifier_token38] = ACTIONS(1539), - [aux_sym_cmd_identifier_token39] = ACTIONS(1553), - [aux_sym_cmd_identifier_token40] = ACTIONS(1553), - [anon_sym_def] = ACTIONS(1539), - [anon_sym_export_DASHenv] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1603), - [anon_sym_error] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_make] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_source] = ACTIONS(1539), - [anon_sym_source_DASHenv] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_hide] = ACTIONS(1539), - [anon_sym_hide_DASHenv] = ACTIONS(1539), - [anon_sym_overlay] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(1607), - [aux_sym__immediate_decimal_token1] = ACTIONS(1609), - [aux_sym__immediate_decimal_token3] = ACTIONS(1611), - [aux_sym__immediate_decimal_token4] = ACTIONS(1613), - [aux_sym__immediate_decimal_token5] = ACTIONS(1615), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [aux_sym__val_number_token4] = ACTIONS(1539), - [aux_sym__val_number_token5] = ACTIONS(1539), - [aux_sym__val_number_token6] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1553), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1553), - }, - [321] = { - [sym__expr_parenthesized_immediate] = STATE(609), - [sym__immediate_decimal] = STATE(504), - [sym_val_variable] = STATE(609), - [sym_comment] = STATE(321), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_alias] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_let_DASHenv] = ACTIONS(1539), - [anon_sym_mut] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [aux_sym_cmd_identifier_token1] = ACTIONS(1539), - [aux_sym_cmd_identifier_token2] = ACTIONS(1539), - [aux_sym_cmd_identifier_token3] = ACTIONS(1539), - [aux_sym_cmd_identifier_token4] = ACTIONS(1539), - [aux_sym_cmd_identifier_token5] = ACTIONS(1539), - [aux_sym_cmd_identifier_token6] = ACTIONS(1539), - [aux_sym_cmd_identifier_token7] = ACTIONS(1539), - [aux_sym_cmd_identifier_token8] = ACTIONS(1539), - [aux_sym_cmd_identifier_token9] = ACTIONS(1539), - [aux_sym_cmd_identifier_token10] = ACTIONS(1539), - [aux_sym_cmd_identifier_token11] = ACTIONS(1539), - [aux_sym_cmd_identifier_token12] = ACTIONS(1539), - [aux_sym_cmd_identifier_token13] = ACTIONS(1539), - [aux_sym_cmd_identifier_token14] = ACTIONS(1539), - [aux_sym_cmd_identifier_token15] = ACTIONS(1539), - [aux_sym_cmd_identifier_token16] = ACTIONS(1539), - [aux_sym_cmd_identifier_token17] = ACTIONS(1539), - [aux_sym_cmd_identifier_token18] = ACTIONS(1539), - [aux_sym_cmd_identifier_token19] = ACTIONS(1539), - [aux_sym_cmd_identifier_token20] = ACTIONS(1539), - [aux_sym_cmd_identifier_token21] = ACTIONS(1539), - [aux_sym_cmd_identifier_token22] = ACTIONS(1539), - [aux_sym_cmd_identifier_token23] = ACTIONS(1539), - [aux_sym_cmd_identifier_token24] = ACTIONS(1539), - [aux_sym_cmd_identifier_token25] = ACTIONS(1539), - [aux_sym_cmd_identifier_token26] = ACTIONS(1539), - [aux_sym_cmd_identifier_token27] = ACTIONS(1539), - [aux_sym_cmd_identifier_token28] = ACTIONS(1539), - [aux_sym_cmd_identifier_token29] = ACTIONS(1539), - [aux_sym_cmd_identifier_token30] = ACTIONS(1539), - [aux_sym_cmd_identifier_token31] = ACTIONS(1539), - [aux_sym_cmd_identifier_token32] = ACTIONS(1539), - [aux_sym_cmd_identifier_token33] = ACTIONS(1539), - [aux_sym_cmd_identifier_token34] = ACTIONS(1539), - [aux_sym_cmd_identifier_token35] = ACTIONS(1539), - [aux_sym_cmd_identifier_token36] = ACTIONS(1539), - [aux_sym_cmd_identifier_token37] = ACTIONS(1539), - [aux_sym_cmd_identifier_token38] = ACTIONS(1539), - [aux_sym_cmd_identifier_token39] = ACTIONS(1539), - [aux_sym_cmd_identifier_token40] = ACTIONS(1539), - [anon_sym_def] = ACTIONS(1539), - [anon_sym_export_DASHenv] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_make] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1539), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_source] = ACTIONS(1539), - [anon_sym_source_DASHenv] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_hide] = ACTIONS(1539), - [anon_sym_hide_DASHenv] = ACTIONS(1539), - [anon_sym_overlay] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1539), - [aux_sym__immediate_decimal_token1] = ACTIONS(1621), - [aux_sym__immediate_decimal_token3] = ACTIONS(1621), - [aux_sym__immediate_decimal_token4] = ACTIONS(1623), - [aux_sym__immediate_decimal_token5] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1539), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1539), - [aux_sym__val_number_token2] = ACTIONS(1539), - [aux_sym__val_number_token3] = ACTIONS(1539), - [aux_sym__val_number_token4] = ACTIONS(1539), - [aux_sym__val_number_token5] = ACTIONS(1539), - [aux_sym__val_number_token6] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1539), - [sym__str_single_quotes] = ACTIONS(1539), - [sym__str_back_ticks] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1539), - [sym__entry_separator] = ACTIONS(1553), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1553), - }, - [322] = { - [sym__expr_parenthesized_immediate] = STATE(623), - [sym__immediate_decimal] = STATE(509), - [sym_val_variable] = STATE(623), - [sym_comment] = STATE(322), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_alias] = ACTIONS(1627), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_let_DASHenv] = ACTIONS(1627), - [anon_sym_mut] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [aux_sym_cmd_identifier_token1] = ACTIONS(1627), - [aux_sym_cmd_identifier_token2] = ACTIONS(1627), - [aux_sym_cmd_identifier_token3] = ACTIONS(1627), - [aux_sym_cmd_identifier_token4] = ACTIONS(1627), - [aux_sym_cmd_identifier_token5] = ACTIONS(1627), - [aux_sym_cmd_identifier_token6] = ACTIONS(1627), - [aux_sym_cmd_identifier_token7] = ACTIONS(1627), - [aux_sym_cmd_identifier_token8] = ACTIONS(1627), - [aux_sym_cmd_identifier_token9] = ACTIONS(1627), - [aux_sym_cmd_identifier_token10] = ACTIONS(1627), - [aux_sym_cmd_identifier_token11] = ACTIONS(1627), - [aux_sym_cmd_identifier_token12] = ACTIONS(1627), - [aux_sym_cmd_identifier_token13] = ACTIONS(1627), - [aux_sym_cmd_identifier_token14] = ACTIONS(1627), - [aux_sym_cmd_identifier_token15] = ACTIONS(1627), - [aux_sym_cmd_identifier_token16] = ACTIONS(1627), - [aux_sym_cmd_identifier_token17] = ACTIONS(1627), - [aux_sym_cmd_identifier_token18] = ACTIONS(1627), - [aux_sym_cmd_identifier_token19] = ACTIONS(1627), - [aux_sym_cmd_identifier_token20] = ACTIONS(1627), - [aux_sym_cmd_identifier_token21] = ACTIONS(1627), - [aux_sym_cmd_identifier_token22] = ACTIONS(1627), - [aux_sym_cmd_identifier_token23] = ACTIONS(1627), - [aux_sym_cmd_identifier_token24] = ACTIONS(1627), - [aux_sym_cmd_identifier_token25] = ACTIONS(1627), - [aux_sym_cmd_identifier_token26] = ACTIONS(1627), - [aux_sym_cmd_identifier_token27] = ACTIONS(1627), - [aux_sym_cmd_identifier_token28] = ACTIONS(1627), - [aux_sym_cmd_identifier_token29] = ACTIONS(1627), - [aux_sym_cmd_identifier_token30] = ACTIONS(1627), - [aux_sym_cmd_identifier_token31] = ACTIONS(1627), - [aux_sym_cmd_identifier_token32] = ACTIONS(1627), - [aux_sym_cmd_identifier_token33] = ACTIONS(1627), - [aux_sym_cmd_identifier_token34] = ACTIONS(1627), - [aux_sym_cmd_identifier_token35] = ACTIONS(1627), - [aux_sym_cmd_identifier_token36] = ACTIONS(1627), - [aux_sym_cmd_identifier_token37] = ACTIONS(1627), - [aux_sym_cmd_identifier_token38] = ACTIONS(1627), - [aux_sym_cmd_identifier_token39] = ACTIONS(1627), - [aux_sym_cmd_identifier_token40] = ACTIONS(1627), - [anon_sym_def] = ACTIONS(1627), - [anon_sym_export_DASHenv] = ACTIONS(1627), - [anon_sym_extern] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_use] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1627), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_in2] = ACTIONS(1627), - [anon_sym_loop] = ACTIONS(1627), - [anon_sym_make] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_else] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1627), - [anon_sym_try] = ACTIONS(1627), - [anon_sym_catch] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_source] = ACTIONS(1627), - [anon_sym_source_DASHenv] = ACTIONS(1627), - [anon_sym_register] = ACTIONS(1627), - [anon_sym_hide] = ACTIONS(1627), - [anon_sym_hide_DASHenv] = ACTIONS(1627), - [anon_sym_overlay] = ACTIONS(1627), - [anon_sym_as] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1627), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1627), - [aux_sym__immediate_decimal_token1] = ACTIONS(1621), - [aux_sym__immediate_decimal_token3] = ACTIONS(1621), - [aux_sym__immediate_decimal_token4] = ACTIONS(1623), - [aux_sym__immediate_decimal_token5] = ACTIONS(1625), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1627), - [aux_sym__val_number_decimal_token1] = ACTIONS(1627), - [aux_sym__val_number_decimal_token2] = ACTIONS(1627), - [aux_sym__val_number_decimal_token3] = ACTIONS(1627), - [aux_sym__val_number_decimal_token4] = ACTIONS(1627), - [aux_sym__val_number_token1] = ACTIONS(1627), - [aux_sym__val_number_token2] = ACTIONS(1627), - [aux_sym__val_number_token3] = ACTIONS(1627), - [aux_sym__val_number_token4] = ACTIONS(1627), - [aux_sym__val_number_token5] = ACTIONS(1627), - [aux_sym__val_number_token6] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1627), - [sym__str_single_quotes] = ACTIONS(1627), - [sym__str_back_ticks] = ACTIONS(1627), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1627), - [sym__entry_separator] = ACTIONS(1629), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1629), - }, - [323] = { - [sym__expr_parenthesized_immediate] = STATE(488), - [sym__immediate_decimal] = STATE(489), - [sym_val_variable] = STATE(488), - [sym_comment] = STATE(323), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1633), - [aux_sym_cmd_identifier_token3] = ACTIONS(1633), - [aux_sym_cmd_identifier_token4] = ACTIONS(1633), - [aux_sym_cmd_identifier_token5] = ACTIONS(1633), - [aux_sym_cmd_identifier_token6] = ACTIONS(1633), - [aux_sym_cmd_identifier_token7] = ACTIONS(1633), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1633), - [aux_sym_cmd_identifier_token11] = ACTIONS(1633), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1633), - [aux_sym_cmd_identifier_token17] = ACTIONS(1633), - [aux_sym_cmd_identifier_token18] = ACTIONS(1633), - [aux_sym_cmd_identifier_token19] = ACTIONS(1633), - [aux_sym_cmd_identifier_token20] = ACTIONS(1633), - [aux_sym_cmd_identifier_token21] = ACTIONS(1633), - [aux_sym_cmd_identifier_token22] = ACTIONS(1633), - [aux_sym_cmd_identifier_token23] = ACTIONS(1633), - [aux_sym_cmd_identifier_token24] = ACTIONS(1633), - [aux_sym_cmd_identifier_token25] = ACTIONS(1633), - [aux_sym_cmd_identifier_token26] = ACTIONS(1633), - [aux_sym_cmd_identifier_token27] = ACTIONS(1633), - [aux_sym_cmd_identifier_token28] = ACTIONS(1633), - [aux_sym_cmd_identifier_token29] = ACTIONS(1633), - [aux_sym_cmd_identifier_token30] = ACTIONS(1633), - [aux_sym_cmd_identifier_token31] = ACTIONS(1633), - [aux_sym_cmd_identifier_token32] = ACTIONS(1633), - [aux_sym_cmd_identifier_token33] = ACTIONS(1633), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1633), - [aux_sym_cmd_identifier_token36] = ACTIONS(1633), - [aux_sym_cmd_identifier_token37] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1543), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [anon_sym_DOT] = ACTIONS(1635), - [aux_sym__immediate_decimal_token1] = ACTIONS(1637), - [aux_sym__immediate_decimal_token3] = ACTIONS(1637), - [aux_sym__immediate_decimal_token4] = ACTIONS(1639), - [aux_sym__immediate_decimal_token5] = ACTIONS(1641), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [sym__entry_separator] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1643), - }, - [324] = { - [sym__expr_parenthesized_immediate] = STATE(756), - [sym__immediate_decimal] = STATE(562), - [sym_val_variable] = STATE(756), - [sym_comment] = STATE(324), - [anon_sym_export] = ACTIONS(1539), - [anon_sym_alias] = ACTIONS(1539), - [anon_sym_let] = ACTIONS(1539), - [anon_sym_let_DASHenv] = ACTIONS(1539), - [anon_sym_mut] = ACTIONS(1539), - [anon_sym_const] = ACTIONS(1539), - [aux_sym_cmd_identifier_token1] = ACTIONS(1539), - [aux_sym_cmd_identifier_token2] = ACTIONS(1553), - [aux_sym_cmd_identifier_token3] = ACTIONS(1553), - [aux_sym_cmd_identifier_token4] = ACTIONS(1553), - [aux_sym_cmd_identifier_token5] = ACTIONS(1553), - [aux_sym_cmd_identifier_token6] = ACTIONS(1553), - [aux_sym_cmd_identifier_token7] = ACTIONS(1553), - [aux_sym_cmd_identifier_token8] = ACTIONS(1539), - [aux_sym_cmd_identifier_token9] = ACTIONS(1539), - [aux_sym_cmd_identifier_token10] = ACTIONS(1553), - [aux_sym_cmd_identifier_token11] = ACTIONS(1553), - [aux_sym_cmd_identifier_token12] = ACTIONS(1539), - [aux_sym_cmd_identifier_token13] = ACTIONS(1539), - [aux_sym_cmd_identifier_token14] = ACTIONS(1539), - [aux_sym_cmd_identifier_token15] = ACTIONS(1539), - [aux_sym_cmd_identifier_token16] = ACTIONS(1553), - [aux_sym_cmd_identifier_token17] = ACTIONS(1553), - [aux_sym_cmd_identifier_token18] = ACTIONS(1553), - [aux_sym_cmd_identifier_token19] = ACTIONS(1553), - [aux_sym_cmd_identifier_token20] = ACTIONS(1553), - [aux_sym_cmd_identifier_token21] = ACTIONS(1553), - [aux_sym_cmd_identifier_token22] = ACTIONS(1553), - [aux_sym_cmd_identifier_token23] = ACTIONS(1553), - [aux_sym_cmd_identifier_token24] = ACTIONS(1553), - [aux_sym_cmd_identifier_token25] = ACTIONS(1553), - [aux_sym_cmd_identifier_token26] = ACTIONS(1553), - [aux_sym_cmd_identifier_token27] = ACTIONS(1553), - [aux_sym_cmd_identifier_token28] = ACTIONS(1553), - [aux_sym_cmd_identifier_token29] = ACTIONS(1553), - [aux_sym_cmd_identifier_token30] = ACTIONS(1553), - [aux_sym_cmd_identifier_token31] = ACTIONS(1553), - [aux_sym_cmd_identifier_token32] = ACTIONS(1553), - [aux_sym_cmd_identifier_token33] = ACTIONS(1553), - [aux_sym_cmd_identifier_token34] = ACTIONS(1539), - [aux_sym_cmd_identifier_token35] = ACTIONS(1553), - [aux_sym_cmd_identifier_token36] = ACTIONS(1553), - [aux_sym_cmd_identifier_token37] = ACTIONS(1553), - [aux_sym_cmd_identifier_token38] = ACTIONS(1539), - [aux_sym_cmd_identifier_token39] = ACTIONS(1553), - [aux_sym_cmd_identifier_token40] = ACTIONS(1553), - [anon_sym_def] = ACTIONS(1539), - [anon_sym_export_DASHenv] = ACTIONS(1539), - [anon_sym_extern] = ACTIONS(1539), - [anon_sym_module] = ACTIONS(1539), - [anon_sym_use] = ACTIONS(1539), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_break] = ACTIONS(1539), - [anon_sym_continue] = ACTIONS(1539), - [anon_sym_for] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1539), - [anon_sym_loop] = ACTIONS(1539), - [anon_sym_make] = ACTIONS(1539), - [anon_sym_while] = ACTIONS(1539), - [anon_sym_do] = ACTIONS(1539), - [anon_sym_if] = ACTIONS(1539), - [anon_sym_else] = ACTIONS(1539), - [anon_sym_match] = ACTIONS(1539), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_try] = ACTIONS(1539), - [anon_sym_catch] = ACTIONS(1539), - [anon_sym_return] = ACTIONS(1539), - [anon_sym_source] = ACTIONS(1539), - [anon_sym_source_DASHenv] = ACTIONS(1539), - [anon_sym_register] = ACTIONS(1539), - [anon_sym_hide] = ACTIONS(1539), - [anon_sym_hide_DASHenv] = ACTIONS(1539), - [anon_sym_overlay] = ACTIONS(1539), - [anon_sym_as] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(1649), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1653), - [aux_sym__immediate_decimal_token5] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [aux_sym__val_number_token4] = ACTIONS(1539), - [aux_sym__val_number_token5] = ACTIONS(1539), - [aux_sym__val_number_token6] = ACTIONS(1539), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1553), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1553), - }, - [325] = { - [sym__expr_parenthesized_immediate] = STATE(621), - [sym__immediate_decimal] = STATE(622), - [sym_val_variable] = STATE(621), - [sym_comment] = STATE(325), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_alias] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_let_DASHenv] = ACTIONS(1657), - [anon_sym_mut] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(1657), - [aux_sym_cmd_identifier_token2] = ACTIONS(1657), - [aux_sym_cmd_identifier_token3] = ACTIONS(1657), - [aux_sym_cmd_identifier_token4] = ACTIONS(1657), - [aux_sym_cmd_identifier_token5] = ACTIONS(1657), - [aux_sym_cmd_identifier_token6] = ACTIONS(1657), - [aux_sym_cmd_identifier_token7] = ACTIONS(1657), - [aux_sym_cmd_identifier_token8] = ACTIONS(1657), - [aux_sym_cmd_identifier_token9] = ACTIONS(1657), - [aux_sym_cmd_identifier_token10] = ACTIONS(1657), - [aux_sym_cmd_identifier_token11] = ACTIONS(1657), - [aux_sym_cmd_identifier_token12] = ACTIONS(1657), - [aux_sym_cmd_identifier_token13] = ACTIONS(1657), - [aux_sym_cmd_identifier_token14] = ACTIONS(1657), - [aux_sym_cmd_identifier_token15] = ACTIONS(1657), - [aux_sym_cmd_identifier_token16] = ACTIONS(1657), - [aux_sym_cmd_identifier_token17] = ACTIONS(1657), - [aux_sym_cmd_identifier_token18] = ACTIONS(1657), - [aux_sym_cmd_identifier_token19] = ACTIONS(1657), - [aux_sym_cmd_identifier_token20] = ACTIONS(1657), - [aux_sym_cmd_identifier_token21] = ACTIONS(1657), - [aux_sym_cmd_identifier_token22] = ACTIONS(1657), - [aux_sym_cmd_identifier_token23] = ACTIONS(1657), - [aux_sym_cmd_identifier_token24] = ACTIONS(1657), - [aux_sym_cmd_identifier_token25] = ACTIONS(1657), - [aux_sym_cmd_identifier_token26] = ACTIONS(1657), - [aux_sym_cmd_identifier_token27] = ACTIONS(1657), - [aux_sym_cmd_identifier_token28] = ACTIONS(1657), - [aux_sym_cmd_identifier_token29] = ACTIONS(1657), - [aux_sym_cmd_identifier_token30] = ACTIONS(1657), - [aux_sym_cmd_identifier_token31] = ACTIONS(1657), - [aux_sym_cmd_identifier_token32] = ACTIONS(1657), - [aux_sym_cmd_identifier_token33] = ACTIONS(1657), - [aux_sym_cmd_identifier_token34] = ACTIONS(1657), - [aux_sym_cmd_identifier_token35] = ACTIONS(1657), - [aux_sym_cmd_identifier_token36] = ACTIONS(1657), - [aux_sym_cmd_identifier_token37] = ACTIONS(1657), - [aux_sym_cmd_identifier_token38] = ACTIONS(1657), - [aux_sym_cmd_identifier_token39] = ACTIONS(1657), - [aux_sym_cmd_identifier_token40] = ACTIONS(1657), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_export_DASHenv] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_make] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1657), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_source] = ACTIONS(1657), - [anon_sym_source_DASHenv] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_hide_DASHenv] = ACTIONS(1657), - [anon_sym_overlay] = ACTIONS(1657), - [anon_sym_as] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1657), - [aux_sym__immediate_decimal_token1] = ACTIONS(1659), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1661), - [aux_sym__immediate_decimal_token5] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1657), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1657), - [aux_sym__val_number_token2] = ACTIONS(1657), - [aux_sym__val_number_token3] = ACTIONS(1657), - [aux_sym__val_number_token4] = ACTIONS(1657), - [aux_sym__val_number_token5] = ACTIONS(1657), - [aux_sym__val_number_token6] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1657), - [sym__str_single_quotes] = ACTIONS(1657), - [sym__str_back_ticks] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1657), - [sym__entry_separator] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1665), - }, - [326] = { - [sym_comment] = STATE(326), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [aux_sym_cmd_identifier_token37] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1671), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [aux_sym__val_number_token4] = ACTIONS(1667), - [aux_sym__val_number_token5] = ACTIONS(1667), - [aux_sym__val_number_token6] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1669), - }, - [327] = { - [sym__expr_parenthesized_immediate] = STATE(721), - [sym__immediate_decimal] = STATE(564), - [sym_val_variable] = STATE(721), - [sym_comment] = STATE(327), - [anon_sym_export] = ACTIONS(1627), - [anon_sym_alias] = ACTIONS(1627), - [anon_sym_let] = ACTIONS(1627), - [anon_sym_let_DASHenv] = ACTIONS(1627), - [anon_sym_mut] = ACTIONS(1627), - [anon_sym_const] = ACTIONS(1627), - [aux_sym_cmd_identifier_token1] = ACTIONS(1627), - [aux_sym_cmd_identifier_token2] = ACTIONS(1629), - [aux_sym_cmd_identifier_token3] = ACTIONS(1629), - [aux_sym_cmd_identifier_token4] = ACTIONS(1629), - [aux_sym_cmd_identifier_token5] = ACTIONS(1629), - [aux_sym_cmd_identifier_token6] = ACTIONS(1629), - [aux_sym_cmd_identifier_token7] = ACTIONS(1629), - [aux_sym_cmd_identifier_token8] = ACTIONS(1627), - [aux_sym_cmd_identifier_token9] = ACTIONS(1627), - [aux_sym_cmd_identifier_token10] = ACTIONS(1629), - [aux_sym_cmd_identifier_token11] = ACTIONS(1629), - [aux_sym_cmd_identifier_token12] = ACTIONS(1627), - [aux_sym_cmd_identifier_token13] = ACTIONS(1627), - [aux_sym_cmd_identifier_token14] = ACTIONS(1627), - [aux_sym_cmd_identifier_token15] = ACTIONS(1627), - [aux_sym_cmd_identifier_token16] = ACTIONS(1629), - [aux_sym_cmd_identifier_token17] = ACTIONS(1629), - [aux_sym_cmd_identifier_token18] = ACTIONS(1629), - [aux_sym_cmd_identifier_token19] = ACTIONS(1629), - [aux_sym_cmd_identifier_token20] = ACTIONS(1629), - [aux_sym_cmd_identifier_token21] = ACTIONS(1629), - [aux_sym_cmd_identifier_token22] = ACTIONS(1629), - [aux_sym_cmd_identifier_token23] = ACTIONS(1629), - [aux_sym_cmd_identifier_token24] = ACTIONS(1629), - [aux_sym_cmd_identifier_token25] = ACTIONS(1629), - [aux_sym_cmd_identifier_token26] = ACTIONS(1629), - [aux_sym_cmd_identifier_token27] = ACTIONS(1629), - [aux_sym_cmd_identifier_token28] = ACTIONS(1629), - [aux_sym_cmd_identifier_token29] = ACTIONS(1629), - [aux_sym_cmd_identifier_token30] = ACTIONS(1629), - [aux_sym_cmd_identifier_token31] = ACTIONS(1629), - [aux_sym_cmd_identifier_token32] = ACTIONS(1629), - [aux_sym_cmd_identifier_token33] = ACTIONS(1629), - [aux_sym_cmd_identifier_token34] = ACTIONS(1627), - [aux_sym_cmd_identifier_token35] = ACTIONS(1629), - [aux_sym_cmd_identifier_token36] = ACTIONS(1629), - [aux_sym_cmd_identifier_token37] = ACTIONS(1629), - [aux_sym_cmd_identifier_token38] = ACTIONS(1627), - [aux_sym_cmd_identifier_token39] = ACTIONS(1629), - [aux_sym_cmd_identifier_token40] = ACTIONS(1629), - [anon_sym_def] = ACTIONS(1627), - [anon_sym_export_DASHenv] = ACTIONS(1627), - [anon_sym_extern] = ACTIONS(1627), - [anon_sym_module] = ACTIONS(1627), - [anon_sym_use] = ACTIONS(1627), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1627), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_break] = ACTIONS(1627), - [anon_sym_continue] = ACTIONS(1627), - [anon_sym_for] = ACTIONS(1627), - [anon_sym_in2] = ACTIONS(1627), - [anon_sym_loop] = ACTIONS(1627), - [anon_sym_make] = ACTIONS(1627), - [anon_sym_while] = ACTIONS(1627), - [anon_sym_do] = ACTIONS(1627), - [anon_sym_if] = ACTIONS(1627), - [anon_sym_else] = ACTIONS(1627), - [anon_sym_match] = ACTIONS(1627), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_try] = ACTIONS(1627), - [anon_sym_catch] = ACTIONS(1627), - [anon_sym_return] = ACTIONS(1627), - [anon_sym_source] = ACTIONS(1627), - [anon_sym_source_DASHenv] = ACTIONS(1627), - [anon_sym_register] = ACTIONS(1627), - [anon_sym_hide] = ACTIONS(1627), - [anon_sym_hide_DASHenv] = ACTIONS(1627), - [anon_sym_overlay] = ACTIONS(1627), - [anon_sym_as] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1627), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(1649), - [aux_sym__immediate_decimal_token3] = ACTIONS(1651), - [aux_sym__immediate_decimal_token4] = ACTIONS(1653), - [aux_sym__immediate_decimal_token5] = ACTIONS(1655), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1627), - [aux_sym__val_number_decimal_token2] = ACTIONS(1627), - [aux_sym__val_number_decimal_token3] = ACTIONS(1627), - [aux_sym__val_number_decimal_token4] = ACTIONS(1627), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [aux_sym__val_number_token4] = ACTIONS(1627), - [aux_sym__val_number_token5] = ACTIONS(1627), - [aux_sym__val_number_token6] = ACTIONS(1627), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1629), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1629), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1595), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1595), + [aux_sym_env_var_token1] = ACTIONS(1593), + [anon_sym_CARET] = ACTIONS(1595), + [aux_sym_command_token1] = ACTIONS(1595), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1595), }, - [328] = { - [sym_comment] = STATE(328), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_alias] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_let_DASHenv] = ACTIONS(1595), - [anon_sym_mut] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [aux_sym_cmd_identifier_token1] = ACTIONS(1595), + [307] = { + [sym_comment] = STATE(307), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_alias] = ACTIONS(1597), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_let_DASHenv] = ACTIONS(1597), + [anon_sym_mut] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [aux_sym_cmd_identifier_token1] = ACTIONS(1597), [aux_sym_cmd_identifier_token2] = ACTIONS(1597), [aux_sym_cmd_identifier_token3] = ACTIONS(1597), [aux_sym_cmd_identifier_token4] = ACTIONS(1597), [aux_sym_cmd_identifier_token5] = ACTIONS(1597), [aux_sym_cmd_identifier_token6] = ACTIONS(1597), [aux_sym_cmd_identifier_token7] = ACTIONS(1597), - [aux_sym_cmd_identifier_token8] = ACTIONS(1595), - [aux_sym_cmd_identifier_token9] = ACTIONS(1595), + [aux_sym_cmd_identifier_token8] = ACTIONS(1597), + [aux_sym_cmd_identifier_token9] = ACTIONS(1597), [aux_sym_cmd_identifier_token10] = ACTIONS(1597), [aux_sym_cmd_identifier_token11] = ACTIONS(1597), - [aux_sym_cmd_identifier_token12] = ACTIONS(1595), - [aux_sym_cmd_identifier_token13] = ACTIONS(1595), - [aux_sym_cmd_identifier_token14] = ACTIONS(1595), - [aux_sym_cmd_identifier_token15] = ACTIONS(1595), + [aux_sym_cmd_identifier_token12] = ACTIONS(1597), + [aux_sym_cmd_identifier_token13] = ACTIONS(1597), + [aux_sym_cmd_identifier_token14] = ACTIONS(1597), + [aux_sym_cmd_identifier_token15] = ACTIONS(1597), [aux_sym_cmd_identifier_token16] = ACTIONS(1597), [aux_sym_cmd_identifier_token17] = ACTIONS(1597), [aux_sym_cmd_identifier_token18] = ACTIONS(1597), @@ -116665,1580 +114382,2712 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(1597), [aux_sym_cmd_identifier_token32] = ACTIONS(1597), [aux_sym_cmd_identifier_token33] = ACTIONS(1597), - [aux_sym_cmd_identifier_token34] = ACTIONS(1595), + [aux_sym_cmd_identifier_token34] = ACTIONS(1597), [aux_sym_cmd_identifier_token35] = ACTIONS(1597), [aux_sym_cmd_identifier_token36] = ACTIONS(1597), [aux_sym_cmd_identifier_token37] = ACTIONS(1597), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), + [aux_sym_cmd_identifier_token38] = ACTIONS(1597), [aux_sym_cmd_identifier_token39] = ACTIONS(1597), [aux_sym_cmd_identifier_token40] = ACTIONS(1597), - [anon_sym_def] = ACTIONS(1595), - [anon_sym_export_DASHenv] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_export_DASHenv] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1597), + [anon_sym_use] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_error] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_make] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_else] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), + [anon_sym_error] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_make] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1595), - [anon_sym_catch] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_source] = ACTIONS(1595), - [anon_sym_source_DASHenv] = ACTIONS(1595), - [anon_sym_register] = ACTIONS(1595), - [anon_sym_hide] = ACTIONS(1595), - [anon_sym_hide_DASHenv] = ACTIONS(1595), - [anon_sym_overlay] = ACTIONS(1595), - [anon_sym_as] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_catch] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_source] = ACTIONS(1597), + [anon_sym_source_DASHenv] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_hide] = ACTIONS(1597), + [anon_sym_hide_DASHenv] = ACTIONS(1597), + [anon_sym_overlay] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(1673), - [aux_sym__immediate_decimal_token2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1601), + [aux_sym__immediate_decimal_token2] = ACTIONS(1603), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), [aux_sym__val_number_decimal_token2] = ACTIONS(1597), [aux_sym__val_number_decimal_token3] = ACTIONS(1597), [aux_sym__val_number_decimal_token4] = ACTIONS(1597), [aux_sym__val_number_token1] = ACTIONS(1597), [aux_sym__val_number_token2] = ACTIONS(1597), [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1595), - [aux_sym__val_number_token5] = ACTIONS(1595), - [aux_sym__val_number_token6] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1595), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1597), [anon_sym_DQUOTE] = ACTIONS(1597), [sym__str_single_quotes] = ACTIONS(1597), [sym__str_back_ticks] = ACTIONS(1597), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1597), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [329] = { - [sym_comment] = STATE(329), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [aux_sym_cmd_identifier_token37] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(1677), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(1679), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [330] = { - [sym__expr_parenthesized_immediate] = STATE(7322), - [sym_comment] = STATE(330), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1681), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1681), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1681), - [aux_sym_cmd_identifier_token32] = ACTIONS(1681), - [aux_sym_cmd_identifier_token33] = ACTIONS(1681), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1681), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [aux_sym_cmd_identifier_token37] = ACTIONS(1681), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1681), - [aux_sym_cmd_identifier_token40] = ACTIONS(1681), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(1685), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1681), - [aux_sym__val_number_decimal_token3] = ACTIONS(1681), - [aux_sym__val_number_decimal_token4] = ACTIONS(1681), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1689), - [sym_duration_unit] = ACTIONS(1691), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym__str_single_quotes] = ACTIONS(1681), - [sym__str_back_ticks] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), - [sym__entry_separator] = ACTIONS(1693), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1695), + [sym__entry_separator] = ACTIONS(1599), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1693), + [sym_raw_string_begin] = ACTIONS(1599), }, - [331] = { - [sym_comment] = STATE(331), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [aux_sym_cmd_identifier_token37] = ACTIONS(1587), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(1593), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1587), - [aux_sym__val_number_decimal_token3] = ACTIONS(1587), - [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [sym__entry_separator] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1587), + [308] = { + [sym_comment] = STATE(308), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1605), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1605), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1605), + [aux_sym_cmd_identifier_token32] = ACTIONS(1605), + [aux_sym_cmd_identifier_token33] = ACTIONS(1605), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1605), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [aux_sym_cmd_identifier_token37] = ACTIONS(1605), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1605), + [aux_sym_cmd_identifier_token40] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_make] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(1609), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(1611), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1605), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1605), + [aux_sym__val_number_decimal_token3] = ACTIONS(1605), + [aux_sym__val_number_decimal_token4] = ACTIONS(1605), + [aux_sym__val_number_token1] = ACTIONS(1605), + [aux_sym__val_number_token2] = ACTIONS(1605), + [aux_sym__val_number_token3] = ACTIONS(1605), + [aux_sym__val_number_token4] = ACTIONS(1605), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym__str_single_quotes] = ACTIONS(1605), + [sym__str_back_ticks] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1605), + [sym__entry_separator] = ACTIONS(1607), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1589), + [sym_raw_string_begin] = ACTIONS(1607), }, - [332] = { - [sym__expr_parenthesized_immediate] = STATE(535), - [sym__immediate_decimal] = STATE(536), - [sym_val_variable] = STATE(535), - [sym_comment] = STATE(332), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [aux_sym_cmd_identifier_token37] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1603), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1605), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(1697), - [aux_sym__immediate_decimal_token1] = ACTIONS(1699), - [aux_sym__immediate_decimal_token3] = ACTIONS(1701), - [aux_sym__immediate_decimal_token4] = ACTIONS(1703), - [aux_sym__immediate_decimal_token5] = ACTIONS(1705), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [309] = { + [sym_cmd_identifier] = STATE(4446), + [sym__expression_parenthesized] = STATE(3731), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4800), + [sym_comment] = STATE(309), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1138), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1613), + [aux_sym__val_number_decimal_token2] = ACTIONS(1615), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [333] = { - [sym__expr_parenthesized_immediate] = STATE(607), - [sym__immediate_decimal] = STATE(608), - [sym_val_variable] = STATE(607), - [sym_comment] = STATE(333), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1633), - [aux_sym_cmd_identifier_token3] = ACTIONS(1633), - [aux_sym_cmd_identifier_token4] = ACTIONS(1633), - [aux_sym_cmd_identifier_token5] = ACTIONS(1633), - [aux_sym_cmd_identifier_token6] = ACTIONS(1633), - [aux_sym_cmd_identifier_token7] = ACTIONS(1633), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1633), - [aux_sym_cmd_identifier_token11] = ACTIONS(1633), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1633), - [aux_sym_cmd_identifier_token17] = ACTIONS(1633), - [aux_sym_cmd_identifier_token18] = ACTIONS(1633), - [aux_sym_cmd_identifier_token19] = ACTIONS(1633), - [aux_sym_cmd_identifier_token20] = ACTIONS(1633), - [aux_sym_cmd_identifier_token21] = ACTIONS(1633), - [aux_sym_cmd_identifier_token22] = ACTIONS(1633), - [aux_sym_cmd_identifier_token23] = ACTIONS(1633), - [aux_sym_cmd_identifier_token24] = ACTIONS(1633), - [aux_sym_cmd_identifier_token25] = ACTIONS(1633), - [aux_sym_cmd_identifier_token26] = ACTIONS(1633), - [aux_sym_cmd_identifier_token27] = ACTIONS(1633), - [aux_sym_cmd_identifier_token28] = ACTIONS(1633), - [aux_sym_cmd_identifier_token29] = ACTIONS(1633), - [aux_sym_cmd_identifier_token30] = ACTIONS(1633), - [aux_sym_cmd_identifier_token31] = ACTIONS(1633), - [aux_sym_cmd_identifier_token32] = ACTIONS(1633), - [aux_sym_cmd_identifier_token33] = ACTIONS(1633), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1633), - [aux_sym_cmd_identifier_token36] = ACTIONS(1633), - [aux_sym_cmd_identifier_token37] = ACTIONS(1633), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1633), - [aux_sym_cmd_identifier_token40] = ACTIONS(1633), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1633), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1633), - [aux_sym__immediate_decimal_token1] = ACTIONS(1659), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1661), - [aux_sym__immediate_decimal_token5] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1633), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1633), - [aux_sym__val_number_token2] = ACTIONS(1633), - [aux_sym__val_number_token3] = ACTIONS(1633), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1633), - [sym__str_single_quotes] = ACTIONS(1633), - [sym__str_back_ticks] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1633), - [sym__entry_separator] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1643), + [310] = { + [sym_cmd_identifier] = STATE(4423), + [sym__expression] = STATE(3707), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3741), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(807), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4880), + [sym_comment] = STATE(310), + [aux_sym_pipe_element_repeat2] = STATE(1134), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(91), + [aux_sym__val_number_decimal_token2] = ACTIONS(93), + [aux_sym__val_number_decimal_token3] = ACTIONS(95), + [aux_sym__val_number_decimal_token4] = ACTIONS(97), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [334] = { - [sym__expr_parenthesized_immediate] = STATE(617), - [sym__immediate_decimal] = STATE(618), - [sym_val_variable] = STATE(617), - [sym_comment] = STATE(334), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1707), - [aux_sym_cmd_identifier_token3] = ACTIONS(1707), - [aux_sym_cmd_identifier_token4] = ACTIONS(1707), - [aux_sym_cmd_identifier_token5] = ACTIONS(1707), - [aux_sym_cmd_identifier_token6] = ACTIONS(1707), - [aux_sym_cmd_identifier_token7] = ACTIONS(1707), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1707), - [aux_sym_cmd_identifier_token11] = ACTIONS(1707), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1707), - [aux_sym_cmd_identifier_token17] = ACTIONS(1707), - [aux_sym_cmd_identifier_token18] = ACTIONS(1707), - [aux_sym_cmd_identifier_token19] = ACTIONS(1707), - [aux_sym_cmd_identifier_token20] = ACTIONS(1707), - [aux_sym_cmd_identifier_token21] = ACTIONS(1707), - [aux_sym_cmd_identifier_token22] = ACTIONS(1707), - [aux_sym_cmd_identifier_token23] = ACTIONS(1707), - [aux_sym_cmd_identifier_token24] = ACTIONS(1707), - [aux_sym_cmd_identifier_token25] = ACTIONS(1707), - [aux_sym_cmd_identifier_token26] = ACTIONS(1707), - [aux_sym_cmd_identifier_token27] = ACTIONS(1707), - [aux_sym_cmd_identifier_token28] = ACTIONS(1707), - [aux_sym_cmd_identifier_token29] = ACTIONS(1707), - [aux_sym_cmd_identifier_token30] = ACTIONS(1707), - [aux_sym_cmd_identifier_token31] = ACTIONS(1707), - [aux_sym_cmd_identifier_token32] = ACTIONS(1707), - [aux_sym_cmd_identifier_token33] = ACTIONS(1707), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1707), - [aux_sym_cmd_identifier_token36] = ACTIONS(1707), - [aux_sym_cmd_identifier_token37] = ACTIONS(1707), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1707), - [aux_sym_cmd_identifier_token40] = ACTIONS(1707), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1707), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), - [aux_sym__immediate_decimal_token1] = ACTIONS(1659), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1661), - [aux_sym__immediate_decimal_token5] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1707), - [aux_sym__val_number_token2] = ACTIONS(1707), - [aux_sym__val_number_token3] = ACTIONS(1707), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1707), - [sym__str_single_quotes] = ACTIONS(1707), - [sym__str_back_ticks] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), - [sym__entry_separator] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1709), + [311] = { + [sym_comment] = STATE(311), + [anon_sym_export] = ACTIONS(1484), + [anon_sym_alias] = ACTIONS(1484), + [anon_sym_let] = ACTIONS(1484), + [anon_sym_let_DASHenv] = ACTIONS(1484), + [anon_sym_mut] = ACTIONS(1484), + [anon_sym_const] = ACTIONS(1484), + [aux_sym_cmd_identifier_token1] = ACTIONS(1484), + [aux_sym_cmd_identifier_token2] = ACTIONS(1486), + [aux_sym_cmd_identifier_token3] = ACTIONS(1486), + [aux_sym_cmd_identifier_token4] = ACTIONS(1486), + [aux_sym_cmd_identifier_token5] = ACTIONS(1486), + [aux_sym_cmd_identifier_token6] = ACTIONS(1486), + [aux_sym_cmd_identifier_token7] = ACTIONS(1486), + [aux_sym_cmd_identifier_token8] = ACTIONS(1484), + [aux_sym_cmd_identifier_token9] = ACTIONS(1484), + [aux_sym_cmd_identifier_token10] = ACTIONS(1486), + [aux_sym_cmd_identifier_token11] = ACTIONS(1486), + [aux_sym_cmd_identifier_token12] = ACTIONS(1484), + [aux_sym_cmd_identifier_token13] = ACTIONS(1484), + [aux_sym_cmd_identifier_token14] = ACTIONS(1484), + [aux_sym_cmd_identifier_token15] = ACTIONS(1484), + [aux_sym_cmd_identifier_token16] = ACTIONS(1486), + [aux_sym_cmd_identifier_token17] = ACTIONS(1486), + [aux_sym_cmd_identifier_token18] = ACTIONS(1484), + [aux_sym_cmd_identifier_token19] = ACTIONS(1486), + [aux_sym_cmd_identifier_token20] = ACTIONS(1486), + [aux_sym_cmd_identifier_token21] = ACTIONS(1486), + [aux_sym_cmd_identifier_token22] = ACTIONS(1486), + [aux_sym_cmd_identifier_token23] = ACTIONS(1486), + [aux_sym_cmd_identifier_token24] = ACTIONS(1486), + [aux_sym_cmd_identifier_token25] = ACTIONS(1486), + [aux_sym_cmd_identifier_token26] = ACTIONS(1486), + [aux_sym_cmd_identifier_token27] = ACTIONS(1486), + [aux_sym_cmd_identifier_token28] = ACTIONS(1486), + [aux_sym_cmd_identifier_token29] = ACTIONS(1486), + [aux_sym_cmd_identifier_token30] = ACTIONS(1486), + [aux_sym_cmd_identifier_token31] = ACTIONS(1486), + [aux_sym_cmd_identifier_token32] = ACTIONS(1484), + [aux_sym_cmd_identifier_token33] = ACTIONS(1486), + [aux_sym_cmd_identifier_token34] = ACTIONS(1484), + [aux_sym_cmd_identifier_token35] = ACTIONS(1486), + [aux_sym_cmd_identifier_token36] = ACTIONS(1486), + [aux_sym_cmd_identifier_token37] = ACTIONS(1486), + [aux_sym_cmd_identifier_token38] = ACTIONS(1484), + [aux_sym_cmd_identifier_token39] = ACTIONS(1486), + [aux_sym_cmd_identifier_token40] = ACTIONS(1486), + [sym__newline] = ACTIONS(1486), + [anon_sym_SEMI] = ACTIONS(1486), + [anon_sym_def] = ACTIONS(1484), + [anon_sym_export_DASHenv] = ACTIONS(1484), + [anon_sym_extern] = ACTIONS(1484), + [anon_sym_module] = ACTIONS(1484), + [anon_sym_use] = ACTIONS(1484), + [anon_sym_LBRACK] = ACTIONS(1486), + [anon_sym_LPAREN] = ACTIONS(1486), + [anon_sym_DOLLAR] = ACTIONS(1484), + [anon_sym_error] = ACTIONS(1484), + [anon_sym_DASH2] = ACTIONS(1484), + [anon_sym_break] = ACTIONS(1484), + [anon_sym_continue] = ACTIONS(1484), + [anon_sym_for] = ACTIONS(1484), + [anon_sym_loop] = ACTIONS(1484), + [anon_sym_while] = ACTIONS(1484), + [anon_sym_do] = ACTIONS(1484), + [anon_sym_if] = ACTIONS(1484), + [anon_sym_match] = ACTIONS(1484), + [anon_sym_LBRACE] = ACTIONS(1486), + [anon_sym_DOT_DOT] = ACTIONS(1484), + [anon_sym_try] = ACTIONS(1484), + [anon_sym_return] = ACTIONS(1484), + [anon_sym_source] = ACTIONS(1484), + [anon_sym_source_DASHenv] = ACTIONS(1484), + [anon_sym_register] = ACTIONS(1484), + [anon_sym_hide] = ACTIONS(1484), + [anon_sym_hide_DASHenv] = ACTIONS(1484), + [anon_sym_overlay] = ACTIONS(1484), + [anon_sym_where] = ACTIONS(1486), + [aux_sym_expr_unary_token1] = ACTIONS(1486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1486), + [anon_sym_DOT_DOT_LT] = ACTIONS(1486), + [anon_sym_null] = ACTIONS(1484), + [anon_sym_true] = ACTIONS(1484), + [anon_sym_false] = ACTIONS(1484), + [aux_sym__val_number_decimal_token1] = ACTIONS(1484), + [aux_sym__val_number_decimal_token2] = ACTIONS(1486), + [aux_sym__val_number_decimal_token3] = ACTIONS(1486), + [aux_sym__val_number_decimal_token4] = ACTIONS(1486), + [aux_sym__val_number_token1] = ACTIONS(1486), + [aux_sym__val_number_token2] = ACTIONS(1486), + [aux_sym__val_number_token3] = ACTIONS(1486), + [aux_sym__val_number_token4] = ACTIONS(1484), + [aux_sym__val_number_token5] = ACTIONS(1484), + [aux_sym__val_number_token6] = ACTIONS(1484), + [anon_sym_0b] = ACTIONS(1484), + [anon_sym_0o] = ACTIONS(1484), + [anon_sym_0x] = ACTIONS(1484), + [sym_val_date] = ACTIONS(1486), + [anon_sym_DQUOTE] = ACTIONS(1486), + [sym__str_single_quotes] = ACTIONS(1486), + [sym__str_back_ticks] = ACTIONS(1486), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1486), + [aux_sym_env_var_token1] = ACTIONS(1484), + [anon_sym_CARET] = ACTIONS(1486), + [aux_sym_command_token1] = ACTIONS(1486), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1486), }, - [335] = { - [sym__expr_parenthesized_immediate] = STATE(619), - [sym__immediate_decimal] = STATE(620), - [sym_val_variable] = STATE(619), - [sym_comment] = STATE(335), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1711), - [aux_sym_cmd_identifier_token3] = ACTIONS(1711), - [aux_sym_cmd_identifier_token4] = ACTIONS(1711), - [aux_sym_cmd_identifier_token5] = ACTIONS(1711), - [aux_sym_cmd_identifier_token6] = ACTIONS(1711), - [aux_sym_cmd_identifier_token7] = ACTIONS(1711), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1711), - [aux_sym_cmd_identifier_token11] = ACTIONS(1711), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1711), - [aux_sym_cmd_identifier_token17] = ACTIONS(1711), - [aux_sym_cmd_identifier_token18] = ACTIONS(1711), - [aux_sym_cmd_identifier_token19] = ACTIONS(1711), - [aux_sym_cmd_identifier_token20] = ACTIONS(1711), - [aux_sym_cmd_identifier_token21] = ACTIONS(1711), - [aux_sym_cmd_identifier_token22] = ACTIONS(1711), - [aux_sym_cmd_identifier_token23] = ACTIONS(1711), - [aux_sym_cmd_identifier_token24] = ACTIONS(1711), - [aux_sym_cmd_identifier_token25] = ACTIONS(1711), - [aux_sym_cmd_identifier_token26] = ACTIONS(1711), - [aux_sym_cmd_identifier_token27] = ACTIONS(1711), - [aux_sym_cmd_identifier_token28] = ACTIONS(1711), - [aux_sym_cmd_identifier_token29] = ACTIONS(1711), - [aux_sym_cmd_identifier_token30] = ACTIONS(1711), - [aux_sym_cmd_identifier_token31] = ACTIONS(1711), - [aux_sym_cmd_identifier_token32] = ACTIONS(1711), - [aux_sym_cmd_identifier_token33] = ACTIONS(1711), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1711), - [aux_sym_cmd_identifier_token36] = ACTIONS(1711), - [aux_sym_cmd_identifier_token37] = ACTIONS(1711), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1711), - [aux_sym_cmd_identifier_token40] = ACTIONS(1711), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1617), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1711), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1619), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), - [aux_sym__immediate_decimal_token1] = ACTIONS(1659), - [aux_sym__immediate_decimal_token3] = ACTIONS(1659), - [aux_sym__immediate_decimal_token4] = ACTIONS(1661), - [aux_sym__immediate_decimal_token5] = ACTIONS(1663), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1711), - [aux_sym__val_number_token2] = ACTIONS(1711), - [aux_sym__val_number_token3] = ACTIONS(1711), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1711), - [sym__str_single_quotes] = ACTIONS(1711), - [sym__str_back_ticks] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), - [sym__entry_separator] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1713), + [312] = { + [sym_comment] = STATE(312), + [anon_sym_export] = ACTIONS(1516), + [anon_sym_alias] = ACTIONS(1516), + [anon_sym_let] = ACTIONS(1516), + [anon_sym_let_DASHenv] = ACTIONS(1516), + [anon_sym_mut] = ACTIONS(1516), + [anon_sym_const] = ACTIONS(1516), + [aux_sym_cmd_identifier_token1] = ACTIONS(1516), + [aux_sym_cmd_identifier_token2] = ACTIONS(1518), + [aux_sym_cmd_identifier_token3] = ACTIONS(1518), + [aux_sym_cmd_identifier_token4] = ACTIONS(1518), + [aux_sym_cmd_identifier_token5] = ACTIONS(1518), + [aux_sym_cmd_identifier_token6] = ACTIONS(1518), + [aux_sym_cmd_identifier_token7] = ACTIONS(1518), + [aux_sym_cmd_identifier_token8] = ACTIONS(1516), + [aux_sym_cmd_identifier_token9] = ACTIONS(1516), + [aux_sym_cmd_identifier_token10] = ACTIONS(1518), + [aux_sym_cmd_identifier_token11] = ACTIONS(1518), + [aux_sym_cmd_identifier_token12] = ACTIONS(1516), + [aux_sym_cmd_identifier_token13] = ACTIONS(1516), + [aux_sym_cmd_identifier_token14] = ACTIONS(1516), + [aux_sym_cmd_identifier_token15] = ACTIONS(1516), + [aux_sym_cmd_identifier_token16] = ACTIONS(1518), + [aux_sym_cmd_identifier_token17] = ACTIONS(1518), + [aux_sym_cmd_identifier_token18] = ACTIONS(1516), + [aux_sym_cmd_identifier_token19] = ACTIONS(1518), + [aux_sym_cmd_identifier_token20] = ACTIONS(1518), + [aux_sym_cmd_identifier_token21] = ACTIONS(1518), + [aux_sym_cmd_identifier_token22] = ACTIONS(1518), + [aux_sym_cmd_identifier_token23] = ACTIONS(1518), + [aux_sym_cmd_identifier_token24] = ACTIONS(1518), + [aux_sym_cmd_identifier_token25] = ACTIONS(1518), + [aux_sym_cmd_identifier_token26] = ACTIONS(1518), + [aux_sym_cmd_identifier_token27] = ACTIONS(1518), + [aux_sym_cmd_identifier_token28] = ACTIONS(1518), + [aux_sym_cmd_identifier_token29] = ACTIONS(1518), + [aux_sym_cmd_identifier_token30] = ACTIONS(1518), + [aux_sym_cmd_identifier_token31] = ACTIONS(1518), + [aux_sym_cmd_identifier_token32] = ACTIONS(1516), + [aux_sym_cmd_identifier_token33] = ACTIONS(1518), + [aux_sym_cmd_identifier_token34] = ACTIONS(1516), + [aux_sym_cmd_identifier_token35] = ACTIONS(1518), + [aux_sym_cmd_identifier_token36] = ACTIONS(1518), + [aux_sym_cmd_identifier_token37] = ACTIONS(1518), + [aux_sym_cmd_identifier_token38] = ACTIONS(1516), + [aux_sym_cmd_identifier_token39] = ACTIONS(1518), + [aux_sym_cmd_identifier_token40] = ACTIONS(1518), + [sym__newline] = ACTIONS(1518), + [anon_sym_SEMI] = ACTIONS(1518), + [anon_sym_def] = ACTIONS(1516), + [anon_sym_export_DASHenv] = ACTIONS(1516), + [anon_sym_extern] = ACTIONS(1516), + [anon_sym_module] = ACTIONS(1516), + [anon_sym_use] = ACTIONS(1516), + [anon_sym_LBRACK] = ACTIONS(1518), + [anon_sym_LPAREN] = ACTIONS(1518), + [anon_sym_DOLLAR] = ACTIONS(1516), + [anon_sym_error] = ACTIONS(1516), + [anon_sym_DASH2] = ACTIONS(1516), + [anon_sym_break] = ACTIONS(1516), + [anon_sym_continue] = ACTIONS(1516), + [anon_sym_for] = ACTIONS(1516), + [anon_sym_loop] = ACTIONS(1516), + [anon_sym_while] = ACTIONS(1516), + [anon_sym_do] = ACTIONS(1516), + [anon_sym_if] = ACTIONS(1516), + [anon_sym_match] = ACTIONS(1516), + [anon_sym_LBRACE] = ACTIONS(1518), + [anon_sym_DOT_DOT] = ACTIONS(1516), + [anon_sym_try] = ACTIONS(1516), + [anon_sym_return] = ACTIONS(1516), + [anon_sym_source] = ACTIONS(1516), + [anon_sym_source_DASHenv] = ACTIONS(1516), + [anon_sym_register] = ACTIONS(1516), + [anon_sym_hide] = ACTIONS(1516), + [anon_sym_hide_DASHenv] = ACTIONS(1516), + [anon_sym_overlay] = ACTIONS(1516), + [anon_sym_where] = ACTIONS(1518), + [aux_sym_expr_unary_token1] = ACTIONS(1518), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1518), + [anon_sym_DOT_DOT_LT] = ACTIONS(1518), + [anon_sym_null] = ACTIONS(1516), + [anon_sym_true] = ACTIONS(1516), + [anon_sym_false] = ACTIONS(1516), + [aux_sym__val_number_decimal_token1] = ACTIONS(1516), + [aux_sym__val_number_decimal_token2] = ACTIONS(1518), + [aux_sym__val_number_decimal_token3] = ACTIONS(1518), + [aux_sym__val_number_decimal_token4] = ACTIONS(1518), + [aux_sym__val_number_token1] = ACTIONS(1518), + [aux_sym__val_number_token2] = ACTIONS(1518), + [aux_sym__val_number_token3] = ACTIONS(1518), + [aux_sym__val_number_token4] = ACTIONS(1516), + [aux_sym__val_number_token5] = ACTIONS(1516), + [aux_sym__val_number_token6] = ACTIONS(1516), + [anon_sym_0b] = ACTIONS(1516), + [anon_sym_0o] = ACTIONS(1516), + [anon_sym_0x] = ACTIONS(1516), + [sym_val_date] = ACTIONS(1518), + [anon_sym_DQUOTE] = ACTIONS(1518), + [sym__str_single_quotes] = ACTIONS(1518), + [sym__str_back_ticks] = ACTIONS(1518), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1518), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1518), + [aux_sym_env_var_token1] = ACTIONS(1516), + [anon_sym_CARET] = ACTIONS(1518), + [aux_sym_command_token1] = ACTIONS(1518), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1518), }, - [336] = { - [sym_cell_path] = STATE(446), - [sym_path] = STATE(397), - [sym_comment] = STATE(336), - [aux_sym_cell_path_repeat1] = STATE(359), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(935), - [aux_sym_cmd_identifier_token3] = ACTIONS(935), - [aux_sym_cmd_identifier_token4] = ACTIONS(935), - [aux_sym_cmd_identifier_token5] = ACTIONS(935), - [aux_sym_cmd_identifier_token6] = ACTIONS(935), - [aux_sym_cmd_identifier_token7] = ACTIONS(935), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(935), - [aux_sym_cmd_identifier_token11] = ACTIONS(935), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(935), - [aux_sym_cmd_identifier_token17] = ACTIONS(935), - [aux_sym_cmd_identifier_token18] = ACTIONS(935), - [aux_sym_cmd_identifier_token19] = ACTIONS(935), - [aux_sym_cmd_identifier_token20] = ACTIONS(935), - [aux_sym_cmd_identifier_token21] = ACTIONS(935), - [aux_sym_cmd_identifier_token22] = ACTIONS(935), - [aux_sym_cmd_identifier_token23] = ACTIONS(935), - [aux_sym_cmd_identifier_token24] = ACTIONS(935), - [aux_sym_cmd_identifier_token25] = ACTIONS(935), - [aux_sym_cmd_identifier_token26] = ACTIONS(935), - [aux_sym_cmd_identifier_token27] = ACTIONS(935), - [aux_sym_cmd_identifier_token28] = ACTIONS(935), - [aux_sym_cmd_identifier_token29] = ACTIONS(935), - [aux_sym_cmd_identifier_token30] = ACTIONS(935), - [aux_sym_cmd_identifier_token31] = ACTIONS(935), - [aux_sym_cmd_identifier_token32] = ACTIONS(935), - [aux_sym_cmd_identifier_token33] = ACTIONS(935), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(935), - [aux_sym_cmd_identifier_token36] = ACTIONS(935), - [aux_sym_cmd_identifier_token37] = ACTIONS(935), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(935), - [aux_sym_cmd_identifier_token40] = ACTIONS(935), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(935), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(935), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_register] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(935), - [aux_sym__val_number_decimal_token3] = ACTIONS(935), - [aux_sym__val_number_decimal_token4] = ACTIONS(935), - [aux_sym__val_number_token1] = ACTIONS(935), - [aux_sym__val_number_token2] = ACTIONS(935), - [aux_sym__val_number_token3] = ACTIONS(935), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(935), - [sym__str_single_quotes] = ACTIONS(935), - [sym__str_back_ticks] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), - [sym__entry_separator] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(937), + [313] = { + [sym_cmd_identifier] = STATE(4446), + [sym__expression_parenthesized] = STATE(3731), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4800), + [sym_comment] = STATE(313), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1138), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, - [337] = { - [sym_cell_path] = STATE(459), - [sym_path] = STATE(397), - [sym_comment] = STATE(337), - [aux_sym_cell_path_repeat1] = STATE(359), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_alias] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_let_DASHenv] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [aux_sym_cmd_identifier_token1] = ACTIONS(1717), - [aux_sym_cmd_identifier_token2] = ACTIONS(1717), - [aux_sym_cmd_identifier_token3] = ACTIONS(1717), - [aux_sym_cmd_identifier_token4] = ACTIONS(1717), - [aux_sym_cmd_identifier_token5] = ACTIONS(1717), - [aux_sym_cmd_identifier_token6] = ACTIONS(1717), - [aux_sym_cmd_identifier_token7] = ACTIONS(1717), - [aux_sym_cmd_identifier_token8] = ACTIONS(1717), - [aux_sym_cmd_identifier_token9] = ACTIONS(1717), - [aux_sym_cmd_identifier_token10] = ACTIONS(1717), - [aux_sym_cmd_identifier_token11] = ACTIONS(1717), - [aux_sym_cmd_identifier_token12] = ACTIONS(1717), - [aux_sym_cmd_identifier_token13] = ACTIONS(1717), - [aux_sym_cmd_identifier_token14] = ACTIONS(1717), - [aux_sym_cmd_identifier_token15] = ACTIONS(1717), - [aux_sym_cmd_identifier_token16] = ACTIONS(1717), - [aux_sym_cmd_identifier_token17] = ACTIONS(1717), - [aux_sym_cmd_identifier_token18] = ACTIONS(1717), - [aux_sym_cmd_identifier_token19] = ACTIONS(1717), - [aux_sym_cmd_identifier_token20] = ACTIONS(1717), - [aux_sym_cmd_identifier_token21] = ACTIONS(1717), - [aux_sym_cmd_identifier_token22] = ACTIONS(1717), - [aux_sym_cmd_identifier_token23] = ACTIONS(1717), - [aux_sym_cmd_identifier_token24] = ACTIONS(1717), - [aux_sym_cmd_identifier_token25] = ACTIONS(1717), - [aux_sym_cmd_identifier_token26] = ACTIONS(1717), - [aux_sym_cmd_identifier_token27] = ACTIONS(1717), - [aux_sym_cmd_identifier_token28] = ACTIONS(1717), - [aux_sym_cmd_identifier_token29] = ACTIONS(1717), - [aux_sym_cmd_identifier_token30] = ACTIONS(1717), - [aux_sym_cmd_identifier_token31] = ACTIONS(1717), - [aux_sym_cmd_identifier_token32] = ACTIONS(1717), - [aux_sym_cmd_identifier_token33] = ACTIONS(1717), - [aux_sym_cmd_identifier_token34] = ACTIONS(1717), - [aux_sym_cmd_identifier_token35] = ACTIONS(1717), - [aux_sym_cmd_identifier_token36] = ACTIONS(1717), - [aux_sym_cmd_identifier_token37] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_export_DASHenv] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_in2] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_make] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_source] = ACTIONS(1717), - [anon_sym_source_DASHenv] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_hide_DASHenv] = ACTIONS(1717), - [anon_sym_overlay] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [sym__entry_separator] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1719), + [314] = { + [sym_cmd_identifier] = STATE(4423), + [sym_ctrl_if] = STATE(4956), + [sym_block] = STATE(4957), + [sym__expression] = STATE(4957), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3740), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1175), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_command] = STATE(4957), + [sym_comment] = STATE(314), + [aux_sym_cmd_identifier_token1] = ACTIONS(19), + [aux_sym_cmd_identifier_token2] = ACTIONS(21), + [aux_sym_cmd_identifier_token3] = ACTIONS(21), + [aux_sym_cmd_identifier_token4] = ACTIONS(21), + [aux_sym_cmd_identifier_token5] = ACTIONS(21), + [aux_sym_cmd_identifier_token6] = ACTIONS(21), + [aux_sym_cmd_identifier_token7] = ACTIONS(21), + [aux_sym_cmd_identifier_token8] = ACTIONS(21), + [aux_sym_cmd_identifier_token9] = ACTIONS(19), + [aux_sym_cmd_identifier_token10] = ACTIONS(21), + [aux_sym_cmd_identifier_token11] = ACTIONS(21), + [aux_sym_cmd_identifier_token12] = ACTIONS(21), + [aux_sym_cmd_identifier_token13] = ACTIONS(19), + [aux_sym_cmd_identifier_token14] = ACTIONS(21), + [aux_sym_cmd_identifier_token15] = ACTIONS(19), + [aux_sym_cmd_identifier_token16] = ACTIONS(21), + [aux_sym_cmd_identifier_token17] = ACTIONS(21), + [aux_sym_cmd_identifier_token18] = ACTIONS(19), + [aux_sym_cmd_identifier_token19] = ACTIONS(21), + [aux_sym_cmd_identifier_token20] = ACTIONS(21), + [aux_sym_cmd_identifier_token21] = ACTIONS(21), + [aux_sym_cmd_identifier_token22] = ACTIONS(21), + [aux_sym_cmd_identifier_token23] = ACTIONS(21), + [aux_sym_cmd_identifier_token24] = ACTIONS(21), + [aux_sym_cmd_identifier_token25] = ACTIONS(21), + [aux_sym_cmd_identifier_token26] = ACTIONS(21), + [aux_sym_cmd_identifier_token27] = ACTIONS(21), + [aux_sym_cmd_identifier_token28] = ACTIONS(21), + [aux_sym_cmd_identifier_token29] = ACTIONS(21), + [aux_sym_cmd_identifier_token30] = ACTIONS(21), + [aux_sym_cmd_identifier_token31] = ACTIONS(21), + [aux_sym_cmd_identifier_token32] = ACTIONS(19), + [aux_sym_cmd_identifier_token33] = ACTIONS(21), + [aux_sym_cmd_identifier_token34] = ACTIONS(19), + [aux_sym_cmd_identifier_token35] = ACTIONS(21), + [aux_sym_cmd_identifier_token36] = ACTIONS(21), + [aux_sym_cmd_identifier_token37] = ACTIONS(21), + [aux_sym_cmd_identifier_token38] = ACTIONS(19), + [aux_sym_cmd_identifier_token39] = ACTIONS(21), + [aux_sym_cmd_identifier_token40] = ACTIONS(21), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_if] = ACTIONS(59), + [anon_sym_LBRACE] = ACTIONS(1621), + [anon_sym_DOT_DOT] = ACTIONS(65), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(85), + [anon_sym_DOT_DOT_LT] = ACTIONS(85), + [anon_sym_null] = ACTIONS(87), + [anon_sym_true] = ACTIONS(89), + [anon_sym_false] = ACTIONS(89), + [aux_sym__val_number_decimal_token1] = ACTIONS(1623), + [aux_sym__val_number_decimal_token2] = ACTIONS(1625), + [aux_sym__val_number_decimal_token3] = ACTIONS(1627), + [aux_sym__val_number_decimal_token4] = ACTIONS(1629), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(101), + [aux_sym__val_number_token5] = ACTIONS(101), + [aux_sym__val_number_token6] = ACTIONS(101), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(107), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_CARET] = ACTIONS(119), + [aux_sym_command_token1] = ACTIONS(121), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [338] = { - [sym_cell_path] = STATE(498), - [sym_path] = STATE(397), - [sym_comment] = STATE(338), - [aux_sym_cell_path_repeat1] = STATE(359), - [anon_sym_export] = ACTIONS(1721), - [anon_sym_alias] = ACTIONS(1721), - [anon_sym_let] = ACTIONS(1721), - [anon_sym_let_DASHenv] = ACTIONS(1721), - [anon_sym_mut] = ACTIONS(1721), - [anon_sym_const] = ACTIONS(1721), - [aux_sym_cmd_identifier_token1] = ACTIONS(1721), - [aux_sym_cmd_identifier_token2] = ACTIONS(1721), - [aux_sym_cmd_identifier_token3] = ACTIONS(1721), - [aux_sym_cmd_identifier_token4] = ACTIONS(1721), - [aux_sym_cmd_identifier_token5] = ACTIONS(1721), - [aux_sym_cmd_identifier_token6] = ACTIONS(1721), - [aux_sym_cmd_identifier_token7] = ACTIONS(1721), - [aux_sym_cmd_identifier_token8] = ACTIONS(1721), - [aux_sym_cmd_identifier_token9] = ACTIONS(1721), - [aux_sym_cmd_identifier_token10] = ACTIONS(1721), - [aux_sym_cmd_identifier_token11] = ACTIONS(1721), - [aux_sym_cmd_identifier_token12] = ACTIONS(1721), - [aux_sym_cmd_identifier_token13] = ACTIONS(1721), - [aux_sym_cmd_identifier_token14] = ACTIONS(1721), - [aux_sym_cmd_identifier_token15] = ACTIONS(1721), - [aux_sym_cmd_identifier_token16] = ACTIONS(1721), - [aux_sym_cmd_identifier_token17] = ACTIONS(1721), - [aux_sym_cmd_identifier_token18] = ACTIONS(1721), - [aux_sym_cmd_identifier_token19] = ACTIONS(1721), - [aux_sym_cmd_identifier_token20] = ACTIONS(1721), - [aux_sym_cmd_identifier_token21] = ACTIONS(1721), - [aux_sym_cmd_identifier_token22] = ACTIONS(1721), - [aux_sym_cmd_identifier_token23] = ACTIONS(1721), - [aux_sym_cmd_identifier_token24] = ACTIONS(1721), - [aux_sym_cmd_identifier_token25] = ACTIONS(1721), - [aux_sym_cmd_identifier_token26] = ACTIONS(1721), - [aux_sym_cmd_identifier_token27] = ACTIONS(1721), - [aux_sym_cmd_identifier_token28] = ACTIONS(1721), - [aux_sym_cmd_identifier_token29] = ACTIONS(1721), - [aux_sym_cmd_identifier_token30] = ACTIONS(1721), - [aux_sym_cmd_identifier_token31] = ACTIONS(1721), - [aux_sym_cmd_identifier_token32] = ACTIONS(1721), - [aux_sym_cmd_identifier_token33] = ACTIONS(1721), - [aux_sym_cmd_identifier_token34] = ACTIONS(1721), - [aux_sym_cmd_identifier_token35] = ACTIONS(1721), - [aux_sym_cmd_identifier_token36] = ACTIONS(1721), - [aux_sym_cmd_identifier_token37] = ACTIONS(1721), - [aux_sym_cmd_identifier_token38] = ACTIONS(1721), - [aux_sym_cmd_identifier_token39] = ACTIONS(1721), - [aux_sym_cmd_identifier_token40] = ACTIONS(1721), - [anon_sym_def] = ACTIONS(1721), - [anon_sym_export_DASHenv] = ACTIONS(1721), - [anon_sym_extern] = ACTIONS(1721), - [anon_sym_module] = ACTIONS(1721), - [anon_sym_use] = ACTIONS(1721), - [anon_sym_LPAREN] = ACTIONS(1721), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_error] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_break] = ACTIONS(1721), - [anon_sym_continue] = ACTIONS(1721), - [anon_sym_for] = ACTIONS(1721), - [anon_sym_in2] = ACTIONS(1721), - [anon_sym_loop] = ACTIONS(1721), - [anon_sym_make] = ACTIONS(1721), - [anon_sym_while] = ACTIONS(1721), - [anon_sym_do] = ACTIONS(1721), - [anon_sym_if] = ACTIONS(1721), - [anon_sym_else] = ACTIONS(1721), - [anon_sym_match] = ACTIONS(1721), - [anon_sym_RBRACE] = ACTIONS(1721), - [anon_sym_try] = ACTIONS(1721), - [anon_sym_catch] = ACTIONS(1721), - [anon_sym_return] = ACTIONS(1721), - [anon_sym_source] = ACTIONS(1721), - [anon_sym_source_DASHenv] = ACTIONS(1721), - [anon_sym_register] = ACTIONS(1721), - [anon_sym_hide] = ACTIONS(1721), - [anon_sym_hide_DASHenv] = ACTIONS(1721), - [anon_sym_overlay] = ACTIONS(1721), - [anon_sym_as] = ACTIONS(1721), - [anon_sym_PLUS2] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1721), - [aux_sym__val_number_decimal_token3] = ACTIONS(1721), - [aux_sym__val_number_decimal_token4] = ACTIONS(1721), - [aux_sym__val_number_token1] = ACTIONS(1721), - [aux_sym__val_number_token2] = ACTIONS(1721), - [aux_sym__val_number_token3] = ACTIONS(1721), - [aux_sym__val_number_token4] = ACTIONS(1721), - [aux_sym__val_number_token5] = ACTIONS(1721), - [aux_sym__val_number_token6] = ACTIONS(1721), - [anon_sym_DQUOTE] = ACTIONS(1721), - [sym__str_single_quotes] = ACTIONS(1721), - [sym__str_back_ticks] = ACTIONS(1721), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), - [sym__entry_separator] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(1715), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1723), + [315] = { + [sym_comment] = STATE(315), + [anon_sym_export] = ACTIONS(1631), + [anon_sym_alias] = ACTIONS(1631), + [anon_sym_let] = ACTIONS(1631), + [anon_sym_let_DASHenv] = ACTIONS(1631), + [anon_sym_mut] = ACTIONS(1631), + [anon_sym_const] = ACTIONS(1631), + [aux_sym_cmd_identifier_token1] = ACTIONS(1631), + [aux_sym_cmd_identifier_token2] = ACTIONS(1633), + [aux_sym_cmd_identifier_token3] = ACTIONS(1633), + [aux_sym_cmd_identifier_token4] = ACTIONS(1633), + [aux_sym_cmd_identifier_token5] = ACTIONS(1633), + [aux_sym_cmd_identifier_token6] = ACTIONS(1633), + [aux_sym_cmd_identifier_token7] = ACTIONS(1633), + [aux_sym_cmd_identifier_token8] = ACTIONS(1631), + [aux_sym_cmd_identifier_token9] = ACTIONS(1631), + [aux_sym_cmd_identifier_token10] = ACTIONS(1633), + [aux_sym_cmd_identifier_token11] = ACTIONS(1633), + [aux_sym_cmd_identifier_token12] = ACTIONS(1631), + [aux_sym_cmd_identifier_token13] = ACTIONS(1631), + [aux_sym_cmd_identifier_token14] = ACTIONS(1631), + [aux_sym_cmd_identifier_token15] = ACTIONS(1631), + [aux_sym_cmd_identifier_token16] = ACTIONS(1633), + [aux_sym_cmd_identifier_token17] = ACTIONS(1633), + [aux_sym_cmd_identifier_token18] = ACTIONS(1631), + [aux_sym_cmd_identifier_token19] = ACTIONS(1633), + [aux_sym_cmd_identifier_token20] = ACTIONS(1633), + [aux_sym_cmd_identifier_token21] = ACTIONS(1633), + [aux_sym_cmd_identifier_token22] = ACTIONS(1633), + [aux_sym_cmd_identifier_token23] = ACTIONS(1633), + [aux_sym_cmd_identifier_token24] = ACTIONS(1633), + [aux_sym_cmd_identifier_token25] = ACTIONS(1633), + [aux_sym_cmd_identifier_token26] = ACTIONS(1633), + [aux_sym_cmd_identifier_token27] = ACTIONS(1633), + [aux_sym_cmd_identifier_token28] = ACTIONS(1633), + [aux_sym_cmd_identifier_token29] = ACTIONS(1633), + [aux_sym_cmd_identifier_token30] = ACTIONS(1633), + [aux_sym_cmd_identifier_token31] = ACTIONS(1633), + [aux_sym_cmd_identifier_token32] = ACTIONS(1631), + [aux_sym_cmd_identifier_token33] = ACTIONS(1633), + [aux_sym_cmd_identifier_token34] = ACTIONS(1631), + [aux_sym_cmd_identifier_token35] = ACTIONS(1633), + [aux_sym_cmd_identifier_token36] = ACTIONS(1633), + [aux_sym_cmd_identifier_token37] = ACTIONS(1633), + [aux_sym_cmd_identifier_token38] = ACTIONS(1631), + [aux_sym_cmd_identifier_token39] = ACTIONS(1633), + [aux_sym_cmd_identifier_token40] = ACTIONS(1633), + [sym__newline] = ACTIONS(1633), + [anon_sym_SEMI] = ACTIONS(1633), + [anon_sym_def] = ACTIONS(1631), + [anon_sym_export_DASHenv] = ACTIONS(1631), + [anon_sym_extern] = ACTIONS(1631), + [anon_sym_module] = ACTIONS(1631), + [anon_sym_use] = ACTIONS(1631), + [anon_sym_LBRACK] = ACTIONS(1633), + [anon_sym_LPAREN] = ACTIONS(1633), + [anon_sym_DOLLAR] = ACTIONS(1631), + [anon_sym_error] = ACTIONS(1631), + [anon_sym_DASH2] = ACTIONS(1631), + [anon_sym_break] = ACTIONS(1631), + [anon_sym_continue] = ACTIONS(1631), + [anon_sym_for] = ACTIONS(1631), + [anon_sym_loop] = ACTIONS(1631), + [anon_sym_while] = ACTIONS(1631), + [anon_sym_do] = ACTIONS(1631), + [anon_sym_if] = ACTIONS(1631), + [anon_sym_match] = ACTIONS(1631), + [anon_sym_LBRACE] = ACTIONS(1633), + [anon_sym_DOT_DOT] = ACTIONS(1631), + [anon_sym_try] = ACTIONS(1631), + [anon_sym_return] = ACTIONS(1631), + [anon_sym_source] = ACTIONS(1631), + [anon_sym_source_DASHenv] = ACTIONS(1631), + [anon_sym_register] = ACTIONS(1631), + [anon_sym_hide] = ACTIONS(1631), + [anon_sym_hide_DASHenv] = ACTIONS(1631), + [anon_sym_overlay] = ACTIONS(1631), + [anon_sym_where] = ACTIONS(1633), + [aux_sym_expr_unary_token1] = ACTIONS(1633), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1633), + [anon_sym_DOT_DOT_LT] = ACTIONS(1633), + [anon_sym_null] = ACTIONS(1631), + [anon_sym_true] = ACTIONS(1631), + [anon_sym_false] = ACTIONS(1631), + [aux_sym__val_number_decimal_token1] = ACTIONS(1631), + [aux_sym__val_number_decimal_token2] = ACTIONS(1633), + [aux_sym__val_number_decimal_token3] = ACTIONS(1633), + [aux_sym__val_number_decimal_token4] = ACTIONS(1633), + [aux_sym__val_number_token1] = ACTIONS(1633), + [aux_sym__val_number_token2] = ACTIONS(1633), + [aux_sym__val_number_token3] = ACTIONS(1633), + [aux_sym__val_number_token4] = ACTIONS(1631), + [aux_sym__val_number_token5] = ACTIONS(1631), + [aux_sym__val_number_token6] = ACTIONS(1631), + [anon_sym_0b] = ACTIONS(1631), + [anon_sym_0o] = ACTIONS(1631), + [anon_sym_0x] = ACTIONS(1631), + [sym_val_date] = ACTIONS(1633), + [anon_sym_DQUOTE] = ACTIONS(1633), + [sym__str_single_quotes] = ACTIONS(1633), + [sym__str_back_ticks] = ACTIONS(1633), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1633), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1633), + [aux_sym_env_var_token1] = ACTIONS(1631), + [anon_sym_CARET] = ACTIONS(1633), + [aux_sym_command_token1] = ACTIONS(1633), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1633), }, - [339] = { - [sym_comment] = STATE(339), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1729), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), + [316] = { + [sym_cmd_identifier] = STATE(4315), + [sym__expression] = STATE(3701), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(813), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4586), + [sym_comment] = STATE(316), + [aux_sym_pipe_element_repeat2] = STATE(1134), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(415), + [aux_sym__val_number_decimal_token2] = ACTIONS(417), + [aux_sym__val_number_decimal_token3] = ACTIONS(419), + [aux_sym__val_number_decimal_token4] = ACTIONS(421), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [317] = { + [sym_cmd_identifier] = STATE(4315), + [sym__expression] = STATE(3701), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(814), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4586), + [sym_comment] = STATE(317), + [aux_sym_pipe_element_repeat2] = STATE(1134), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(457), + [aux_sym__val_number_decimal_token2] = ACTIONS(459), + [aux_sym__val_number_decimal_token3] = ACTIONS(461), + [aux_sym__val_number_decimal_token4] = ACTIONS(463), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [318] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if] = STATE(4588), + [sym_block] = STATE(4589), + [sym__expression] = STATE(4589), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1190), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4589), + [sym_comment] = STATE(318), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(395), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1635), + [aux_sym__val_number_decimal_token2] = ACTIONS(1637), + [aux_sym__val_number_decimal_token3] = ACTIONS(1639), + [aux_sym__val_number_decimal_token4] = ACTIONS(1641), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [319] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if] = STATE(4588), + [sym_block] = STATE(4589), + [sym__expression] = STATE(4589), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1183), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4589), + [sym_comment] = STATE(319), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(593), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1456), + [aux_sym__val_number_decimal_token2] = ACTIONS(1458), + [aux_sym__val_number_decimal_token3] = ACTIONS(1460), + [aux_sym__val_number_decimal_token4] = ACTIONS(1462), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [320] = { + [sym_cmd_identifier] = STATE(4446), + [sym__expression_parenthesized] = STATE(3731), + [sym_expr_unary] = STATE(2307), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2307), + [sym__expr_binary_expression_parenthesized] = STATE(3673), + [sym_expr_parenthesized] = STATE(1999), + [sym_val_range] = STATE(2307), + [sym__value] = STATE(2307), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(6990), + [sym__command_parenthesized] = STATE(4800), + [sym_comment] = STATE(320), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1138), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(465), + [aux_sym_command_token1] = ACTIONS(467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [321] = { + [sym_cmd_identifier] = STATE(4315), + [sym__expression] = STATE(3701), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(826), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4586), + [sym_comment] = STATE(321), + [aux_sym_pipe_element_repeat2] = STATE(1134), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1613), + [aux_sym__val_number_decimal_token2] = ACTIONS(1615), + [aux_sym__val_number_decimal_token3] = ACTIONS(1617), + [aux_sym__val_number_decimal_token4] = ACTIONS(1619), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [322] = { + [sym_cmd_identifier] = STATE(4315), + [sym_ctrl_if] = STATE(4588), + [sym_block] = STATE(4589), + [sym__expression] = STATE(4589), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1223), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_command] = STATE(4589), + [sym_comment] = STATE(322), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_if] = ACTIONS(1643), + [anon_sym_LBRACE] = ACTIONS(1454), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1476), + [aux_sym__val_number_decimal_token2] = ACTIONS(1478), + [aux_sym__val_number_decimal_token3] = ACTIONS(1480), + [aux_sym__val_number_decimal_token4] = ACTIONS(1482), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [323] = { + [sym_cmd_identifier] = STATE(4315), + [sym__expression] = STATE(3701), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3738), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(819), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_env_var] = STATE(7217), + [sym_command] = STATE(4586), + [sym_comment] = STATE(323), + [aux_sym_pipe_element_repeat2] = STATE(1134), + [aux_sym_cmd_identifier_token1] = ACTIONS(363), + [aux_sym_cmd_identifier_token2] = ACTIONS(365), + [aux_sym_cmd_identifier_token3] = ACTIONS(365), + [aux_sym_cmd_identifier_token4] = ACTIONS(365), + [aux_sym_cmd_identifier_token5] = ACTIONS(365), + [aux_sym_cmd_identifier_token6] = ACTIONS(365), + [aux_sym_cmd_identifier_token7] = ACTIONS(365), + [aux_sym_cmd_identifier_token8] = ACTIONS(365), + [aux_sym_cmd_identifier_token9] = ACTIONS(363), + [aux_sym_cmd_identifier_token10] = ACTIONS(365), + [aux_sym_cmd_identifier_token11] = ACTIONS(365), + [aux_sym_cmd_identifier_token12] = ACTIONS(365), + [aux_sym_cmd_identifier_token13] = ACTIONS(363), + [aux_sym_cmd_identifier_token14] = ACTIONS(365), + [aux_sym_cmd_identifier_token15] = ACTIONS(363), + [aux_sym_cmd_identifier_token16] = ACTIONS(365), + [aux_sym_cmd_identifier_token17] = ACTIONS(365), + [aux_sym_cmd_identifier_token18] = ACTIONS(363), + [aux_sym_cmd_identifier_token19] = ACTIONS(365), + [aux_sym_cmd_identifier_token20] = ACTIONS(365), + [aux_sym_cmd_identifier_token21] = ACTIONS(365), + [aux_sym_cmd_identifier_token22] = ACTIONS(365), + [aux_sym_cmd_identifier_token23] = ACTIONS(365), + [aux_sym_cmd_identifier_token24] = ACTIONS(365), + [aux_sym_cmd_identifier_token25] = ACTIONS(365), + [aux_sym_cmd_identifier_token26] = ACTIONS(365), + [aux_sym_cmd_identifier_token27] = ACTIONS(365), + [aux_sym_cmd_identifier_token28] = ACTIONS(365), + [aux_sym_cmd_identifier_token29] = ACTIONS(365), + [aux_sym_cmd_identifier_token30] = ACTIONS(365), + [aux_sym_cmd_identifier_token31] = ACTIONS(365), + [aux_sym_cmd_identifier_token32] = ACTIONS(363), + [aux_sym_cmd_identifier_token33] = ACTIONS(365), + [aux_sym_cmd_identifier_token34] = ACTIONS(363), + [aux_sym_cmd_identifier_token35] = ACTIONS(365), + [aux_sym_cmd_identifier_token36] = ACTIONS(365), + [aux_sym_cmd_identifier_token37] = ACTIONS(365), + [aux_sym_cmd_identifier_token38] = ACTIONS(363), + [aux_sym_cmd_identifier_token39] = ACTIONS(365), + [aux_sym_cmd_identifier_token40] = ACTIONS(365), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(213), + [anon_sym_true] = ACTIONS(215), + [anon_sym_false] = ACTIONS(215), + [aux_sym__val_number_decimal_token1] = ACTIONS(1030), + [aux_sym__val_number_decimal_token2] = ACTIONS(1032), + [aux_sym__val_number_decimal_token3] = ACTIONS(1034), + [aux_sym__val_number_decimal_token4] = ACTIONS(1036), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(229), + [aux_sym__val_number_token5] = ACTIONS(229), + [aux_sym__val_number_token6] = ACTIONS(229), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(235), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [aux_sym_env_var_token1] = ACTIONS(117), + [anon_sym_CARET] = ACTIONS(247), + [aux_sym_command_token1] = ACTIONS(249), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [324] = { + [sym_comment] = STATE(324), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1605), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1605), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1605), + [aux_sym_cmd_identifier_token32] = ACTIONS(1605), + [aux_sym_cmd_identifier_token33] = ACTIONS(1605), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1605), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [aux_sym_cmd_identifier_token37] = ACTIONS(1605), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1605), + [aux_sym_cmd_identifier_token40] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_make] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(1611), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1605), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1605), + [aux_sym__val_number_decimal_token3] = ACTIONS(1605), + [aux_sym__val_number_decimal_token4] = ACTIONS(1605), + [aux_sym__val_number_token1] = ACTIONS(1605), + [aux_sym__val_number_token2] = ACTIONS(1605), + [aux_sym__val_number_token3] = ACTIONS(1605), + [aux_sym__val_number_token4] = ACTIONS(1605), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym__str_single_quotes] = ACTIONS(1605), + [sym__str_back_ticks] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1605), + [sym__entry_separator] = ACTIONS(1607), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(1607), }, - [340] = { - [sym_comment] = STATE(340), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1667), - [aux_sym_cmd_identifier_token3] = ACTIONS(1667), - [aux_sym_cmd_identifier_token4] = ACTIONS(1667), - [aux_sym_cmd_identifier_token5] = ACTIONS(1667), - [aux_sym_cmd_identifier_token6] = ACTIONS(1667), - [aux_sym_cmd_identifier_token7] = ACTIONS(1667), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1667), - [aux_sym_cmd_identifier_token11] = ACTIONS(1667), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1667), - [aux_sym_cmd_identifier_token17] = ACTIONS(1667), - [aux_sym_cmd_identifier_token18] = ACTIONS(1667), - [aux_sym_cmd_identifier_token19] = ACTIONS(1667), - [aux_sym_cmd_identifier_token20] = ACTIONS(1667), - [aux_sym_cmd_identifier_token21] = ACTIONS(1667), - [aux_sym_cmd_identifier_token22] = ACTIONS(1667), - [aux_sym_cmd_identifier_token23] = ACTIONS(1667), - [aux_sym_cmd_identifier_token24] = ACTIONS(1667), - [aux_sym_cmd_identifier_token25] = ACTIONS(1667), - [aux_sym_cmd_identifier_token26] = ACTIONS(1667), - [aux_sym_cmd_identifier_token27] = ACTIONS(1667), - [aux_sym_cmd_identifier_token28] = ACTIONS(1667), - [aux_sym_cmd_identifier_token29] = ACTIONS(1667), - [aux_sym_cmd_identifier_token30] = ACTIONS(1667), - [aux_sym_cmd_identifier_token31] = ACTIONS(1667), - [aux_sym_cmd_identifier_token32] = ACTIONS(1667), - [aux_sym_cmd_identifier_token33] = ACTIONS(1667), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1667), - [aux_sym_cmd_identifier_token36] = ACTIONS(1667), - [aux_sym_cmd_identifier_token37] = ACTIONS(1667), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1667), - [aux_sym_cmd_identifier_token40] = ACTIONS(1667), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1667), + [325] = { + [sym__expr_parenthesized_immediate] = STATE(544), + [sym__immediate_decimal] = STATE(545), + [sym_val_variable] = STATE(544), + [sym_comment] = STATE(325), + [anon_sym_export] = ACTIONS(1547), + [anon_sym_alias] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_let_DASHenv] = ACTIONS(1547), + [anon_sym_mut] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [aux_sym_cmd_identifier_token1] = ACTIONS(1547), + [aux_sym_cmd_identifier_token2] = ACTIONS(1557), + [aux_sym_cmd_identifier_token3] = ACTIONS(1557), + [aux_sym_cmd_identifier_token4] = ACTIONS(1557), + [aux_sym_cmd_identifier_token5] = ACTIONS(1557), + [aux_sym_cmd_identifier_token6] = ACTIONS(1557), + [aux_sym_cmd_identifier_token7] = ACTIONS(1557), + [aux_sym_cmd_identifier_token8] = ACTIONS(1547), + [aux_sym_cmd_identifier_token9] = ACTIONS(1547), + [aux_sym_cmd_identifier_token10] = ACTIONS(1557), + [aux_sym_cmd_identifier_token11] = ACTIONS(1557), + [aux_sym_cmd_identifier_token12] = ACTIONS(1547), + [aux_sym_cmd_identifier_token13] = ACTIONS(1547), + [aux_sym_cmd_identifier_token14] = ACTIONS(1547), + [aux_sym_cmd_identifier_token15] = ACTIONS(1547), + [aux_sym_cmd_identifier_token16] = ACTIONS(1557), + [aux_sym_cmd_identifier_token17] = ACTIONS(1557), + [aux_sym_cmd_identifier_token18] = ACTIONS(1557), + [aux_sym_cmd_identifier_token19] = ACTIONS(1557), + [aux_sym_cmd_identifier_token20] = ACTIONS(1557), + [aux_sym_cmd_identifier_token21] = ACTIONS(1557), + [aux_sym_cmd_identifier_token22] = ACTIONS(1557), + [aux_sym_cmd_identifier_token23] = ACTIONS(1557), + [aux_sym_cmd_identifier_token24] = ACTIONS(1557), + [aux_sym_cmd_identifier_token25] = ACTIONS(1557), + [aux_sym_cmd_identifier_token26] = ACTIONS(1557), + [aux_sym_cmd_identifier_token27] = ACTIONS(1557), + [aux_sym_cmd_identifier_token28] = ACTIONS(1557), + [aux_sym_cmd_identifier_token29] = ACTIONS(1557), + [aux_sym_cmd_identifier_token30] = ACTIONS(1557), + [aux_sym_cmd_identifier_token31] = ACTIONS(1557), + [aux_sym_cmd_identifier_token32] = ACTIONS(1557), + [aux_sym_cmd_identifier_token33] = ACTIONS(1557), + [aux_sym_cmd_identifier_token34] = ACTIONS(1547), + [aux_sym_cmd_identifier_token35] = ACTIONS(1557), + [aux_sym_cmd_identifier_token36] = ACTIONS(1557), + [aux_sym_cmd_identifier_token37] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1547), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [anon_sym_def] = ACTIONS(1547), + [anon_sym_export_DASHenv] = ACTIONS(1547), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1559), + [anon_sym_error] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_make] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1547), + [anon_sym_catch] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_source] = ACTIONS(1547), + [anon_sym_source_DASHenv] = ACTIONS(1547), + [anon_sym_register] = ACTIONS(1547), + [anon_sym_hide] = ACTIONS(1547), + [anon_sym_hide_DASHenv] = ACTIONS(1547), + [anon_sym_overlay] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(1561), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(1645), + [aux_sym__immediate_decimal_token1] = ACTIONS(1647), + [aux_sym__immediate_decimal_token3] = ACTIONS(1649), + [aux_sym__immediate_decimal_token4] = ACTIONS(1651), + [aux_sym__immediate_decimal_token5] = ACTIONS(1653), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1547), + [aux_sym__val_number_token5] = ACTIONS(1547), + [aux_sym__val_number_token6] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [326] = { + [sym_comment] = STATE(326), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_alias] = ACTIONS(1597), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_let_DASHenv] = ACTIONS(1597), + [anon_sym_mut] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [aux_sym_cmd_identifier_token1] = ACTIONS(1597), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1597), + [aux_sym_cmd_identifier_token9] = ACTIONS(1597), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1597), + [aux_sym_cmd_identifier_token13] = ACTIONS(1597), + [aux_sym_cmd_identifier_token14] = ACTIONS(1597), + [aux_sym_cmd_identifier_token15] = ACTIONS(1597), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1597), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), + [aux_sym_cmd_identifier_token37] = ACTIONS(1599), + [aux_sym_cmd_identifier_token38] = ACTIONS(1597), + [aux_sym_cmd_identifier_token39] = ACTIONS(1599), + [aux_sym_cmd_identifier_token40] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_export_DASHenv] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1597), + [anon_sym_use] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_make] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_catch] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_source] = ACTIONS(1597), + [anon_sym_source_DASHenv] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_hide] = ACTIONS(1597), + [anon_sym_hide_DASHenv] = ACTIONS(1597), + [anon_sym_overlay] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(1655), + [aux_sym__immediate_decimal_token2] = ACTIONS(1657), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), + }, + [327] = { + [sym_comment] = STATE(327), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1607), + [aux_sym_cmd_identifier_token3] = ACTIONS(1607), + [aux_sym_cmd_identifier_token4] = ACTIONS(1607), + [aux_sym_cmd_identifier_token5] = ACTIONS(1607), + [aux_sym_cmd_identifier_token6] = ACTIONS(1607), + [aux_sym_cmd_identifier_token7] = ACTIONS(1607), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1607), + [aux_sym_cmd_identifier_token11] = ACTIONS(1607), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1607), + [aux_sym_cmd_identifier_token17] = ACTIONS(1607), + [aux_sym_cmd_identifier_token18] = ACTIONS(1607), + [aux_sym_cmd_identifier_token19] = ACTIONS(1607), + [aux_sym_cmd_identifier_token20] = ACTIONS(1607), + [aux_sym_cmd_identifier_token21] = ACTIONS(1607), + [aux_sym_cmd_identifier_token22] = ACTIONS(1607), + [aux_sym_cmd_identifier_token23] = ACTIONS(1607), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1607), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1607), + [aux_sym_cmd_identifier_token28] = ACTIONS(1607), + [aux_sym_cmd_identifier_token29] = ACTIONS(1607), + [aux_sym_cmd_identifier_token30] = ACTIONS(1607), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1607), + [aux_sym_cmd_identifier_token37] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_make] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(1659), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1605), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [328] = { + [sym__expr_parenthesized_immediate] = STATE(7275), + [sym_comment] = STATE(328), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1663), + [aux_sym_cmd_identifier_token3] = ACTIONS(1663), + [aux_sym_cmd_identifier_token4] = ACTIONS(1663), + [aux_sym_cmd_identifier_token5] = ACTIONS(1663), + [aux_sym_cmd_identifier_token6] = ACTIONS(1663), + [aux_sym_cmd_identifier_token7] = ACTIONS(1663), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1663), + [aux_sym_cmd_identifier_token11] = ACTIONS(1663), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1663), + [aux_sym_cmd_identifier_token17] = ACTIONS(1663), + [aux_sym_cmd_identifier_token18] = ACTIONS(1663), + [aux_sym_cmd_identifier_token19] = ACTIONS(1663), + [aux_sym_cmd_identifier_token20] = ACTIONS(1663), + [aux_sym_cmd_identifier_token21] = ACTIONS(1663), + [aux_sym_cmd_identifier_token22] = ACTIONS(1663), + [aux_sym_cmd_identifier_token23] = ACTIONS(1663), + [aux_sym_cmd_identifier_token24] = ACTIONS(1663), + [aux_sym_cmd_identifier_token25] = ACTIONS(1663), + [aux_sym_cmd_identifier_token26] = ACTIONS(1663), + [aux_sym_cmd_identifier_token27] = ACTIONS(1663), + [aux_sym_cmd_identifier_token28] = ACTIONS(1663), + [aux_sym_cmd_identifier_token29] = ACTIONS(1663), + [aux_sym_cmd_identifier_token30] = ACTIONS(1663), + [aux_sym_cmd_identifier_token31] = ACTIONS(1663), + [aux_sym_cmd_identifier_token32] = ACTIONS(1663), + [aux_sym_cmd_identifier_token33] = ACTIONS(1663), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1663), + [aux_sym_cmd_identifier_token36] = ACTIONS(1663), + [aux_sym_cmd_identifier_token37] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1663), + [aux_sym_cmd_identifier_token40] = ACTIONS(1663), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), [anon_sym_DOT_DOT2] = ACTIONS(1667), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1667), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1667), - [aux_sym__val_number_decimal_token3] = ACTIONS(1667), - [aux_sym__val_number_decimal_token4] = ACTIONS(1667), - [aux_sym__val_number_token1] = ACTIONS(1667), - [aux_sym__val_number_token2] = ACTIONS(1667), - [aux_sym__val_number_token3] = ACTIONS(1667), - [aux_sym__val_number_token4] = ACTIONS(1667), - [aux_sym__val_number_token5] = ACTIONS(1667), - [aux_sym__val_number_token6] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1667), - [sym__str_single_quotes] = ACTIONS(1667), - [sym__str_back_ticks] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1667), - [sym__entry_separator] = ACTIONS(1669), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1671), + [sym_duration_unit] = ACTIONS(1673), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), + [sym__entry_separator] = ACTIONS(1675), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1677), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1669), + [sym_raw_string_begin] = ACTIONS(1675), }, - [341] = { - [sym_comment] = STATE(341), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1733), - [aux_sym_cmd_identifier_token3] = ACTIONS(1733), - [aux_sym_cmd_identifier_token4] = ACTIONS(1733), - [aux_sym_cmd_identifier_token5] = ACTIONS(1733), - [aux_sym_cmd_identifier_token6] = ACTIONS(1733), - [aux_sym_cmd_identifier_token7] = ACTIONS(1733), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1733), - [aux_sym_cmd_identifier_token11] = ACTIONS(1733), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1733), - [aux_sym_cmd_identifier_token17] = ACTIONS(1733), - [aux_sym_cmd_identifier_token18] = ACTIONS(1733), - [aux_sym_cmd_identifier_token19] = ACTIONS(1733), - [aux_sym_cmd_identifier_token20] = ACTIONS(1733), - [aux_sym_cmd_identifier_token21] = ACTIONS(1733), - [aux_sym_cmd_identifier_token22] = ACTIONS(1733), - [aux_sym_cmd_identifier_token23] = ACTIONS(1733), - [aux_sym_cmd_identifier_token24] = ACTIONS(1733), - [aux_sym_cmd_identifier_token25] = ACTIONS(1733), - [aux_sym_cmd_identifier_token26] = ACTIONS(1733), - [aux_sym_cmd_identifier_token27] = ACTIONS(1733), - [aux_sym_cmd_identifier_token28] = ACTIONS(1733), - [aux_sym_cmd_identifier_token29] = ACTIONS(1733), - [aux_sym_cmd_identifier_token30] = ACTIONS(1733), - [aux_sym_cmd_identifier_token31] = ACTIONS(1733), - [aux_sym_cmd_identifier_token32] = ACTIONS(1733), - [aux_sym_cmd_identifier_token33] = ACTIONS(1733), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1733), - [aux_sym_cmd_identifier_token36] = ACTIONS(1733), - [aux_sym_cmd_identifier_token37] = ACTIONS(1733), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1733), - [aux_sym_cmd_identifier_token40] = ACTIONS(1733), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1733), - [aux_sym__val_number_decimal_token3] = ACTIONS(1733), - [aux_sym__val_number_decimal_token4] = ACTIONS(1733), - [aux_sym__val_number_token1] = ACTIONS(1733), - [aux_sym__val_number_token2] = ACTIONS(1733), - [aux_sym__val_number_token3] = ACTIONS(1733), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1733), - [sym__str_single_quotes] = ACTIONS(1733), - [sym__str_back_ticks] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), - [sym__entry_separator] = ACTIONS(1735), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1733), + [329] = { + [sym__expr_parenthesized_immediate] = STATE(646), + [sym__immediate_decimal] = STATE(647), + [sym_val_variable] = STATE(646), + [sym_comment] = STATE(329), + [anon_sym_export] = ACTIONS(1547), + [anon_sym_alias] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_let_DASHenv] = ACTIONS(1547), + [anon_sym_mut] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [aux_sym_cmd_identifier_token1] = ACTIONS(1547), + [aux_sym_cmd_identifier_token2] = ACTIONS(1547), + [aux_sym_cmd_identifier_token3] = ACTIONS(1547), + [aux_sym_cmd_identifier_token4] = ACTIONS(1547), + [aux_sym_cmd_identifier_token5] = ACTIONS(1547), + [aux_sym_cmd_identifier_token6] = ACTIONS(1547), + [aux_sym_cmd_identifier_token7] = ACTIONS(1547), + [aux_sym_cmd_identifier_token8] = ACTIONS(1547), + [aux_sym_cmd_identifier_token9] = ACTIONS(1547), + [aux_sym_cmd_identifier_token10] = ACTIONS(1547), + [aux_sym_cmd_identifier_token11] = ACTIONS(1547), + [aux_sym_cmd_identifier_token12] = ACTIONS(1547), + [aux_sym_cmd_identifier_token13] = ACTIONS(1547), + [aux_sym_cmd_identifier_token14] = ACTIONS(1547), + [aux_sym_cmd_identifier_token15] = ACTIONS(1547), + [aux_sym_cmd_identifier_token16] = ACTIONS(1547), + [aux_sym_cmd_identifier_token17] = ACTIONS(1547), + [aux_sym_cmd_identifier_token18] = ACTIONS(1547), + [aux_sym_cmd_identifier_token19] = ACTIONS(1547), + [aux_sym_cmd_identifier_token20] = ACTIONS(1547), + [aux_sym_cmd_identifier_token21] = ACTIONS(1547), + [aux_sym_cmd_identifier_token22] = ACTIONS(1547), + [aux_sym_cmd_identifier_token23] = ACTIONS(1547), + [aux_sym_cmd_identifier_token24] = ACTIONS(1547), + [aux_sym_cmd_identifier_token25] = ACTIONS(1547), + [aux_sym_cmd_identifier_token26] = ACTIONS(1547), + [aux_sym_cmd_identifier_token27] = ACTIONS(1547), + [aux_sym_cmd_identifier_token28] = ACTIONS(1547), + [aux_sym_cmd_identifier_token29] = ACTIONS(1547), + [aux_sym_cmd_identifier_token30] = ACTIONS(1547), + [aux_sym_cmd_identifier_token31] = ACTIONS(1547), + [aux_sym_cmd_identifier_token32] = ACTIONS(1547), + [aux_sym_cmd_identifier_token33] = ACTIONS(1547), + [aux_sym_cmd_identifier_token34] = ACTIONS(1547), + [aux_sym_cmd_identifier_token35] = ACTIONS(1547), + [aux_sym_cmd_identifier_token36] = ACTIONS(1547), + [aux_sym_cmd_identifier_token37] = ACTIONS(1547), + [aux_sym_cmd_identifier_token38] = ACTIONS(1547), + [aux_sym_cmd_identifier_token39] = ACTIONS(1547), + [aux_sym_cmd_identifier_token40] = ACTIONS(1547), + [anon_sym_def] = ACTIONS(1547), + [anon_sym_export_DASHenv] = ACTIONS(1547), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1547), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_error] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_make] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1547), + [anon_sym_try] = ACTIONS(1547), + [anon_sym_catch] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_source] = ACTIONS(1547), + [anon_sym_source_DASHenv] = ACTIONS(1547), + [anon_sym_register] = ACTIONS(1547), + [anon_sym_hide] = ACTIONS(1547), + [anon_sym_hide_DASHenv] = ACTIONS(1547), + [anon_sym_overlay] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1547), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1547), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1547), + [aux_sym__val_number_token2] = ACTIONS(1547), + [aux_sym__val_number_token3] = ACTIONS(1547), + [aux_sym__val_number_token4] = ACTIONS(1547), + [aux_sym__val_number_token5] = ACTIONS(1547), + [aux_sym__val_number_token6] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1547), + [sym__str_single_quotes] = ACTIONS(1547), + [sym__str_back_ticks] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1547), + [sym__entry_separator] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1735), + [sym_raw_string_begin] = ACTIONS(1557), }, - [342] = { - [sym_comment] = STATE(342), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_alias] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_let_DASHenv] = ACTIONS(1595), - [anon_sym_mut] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [aux_sym_cmd_identifier_token1] = ACTIONS(1595), - [aux_sym_cmd_identifier_token2] = ACTIONS(1595), - [aux_sym_cmd_identifier_token3] = ACTIONS(1595), - [aux_sym_cmd_identifier_token4] = ACTIONS(1595), - [aux_sym_cmd_identifier_token5] = ACTIONS(1595), - [aux_sym_cmd_identifier_token6] = ACTIONS(1595), - [aux_sym_cmd_identifier_token7] = ACTIONS(1595), - [aux_sym_cmd_identifier_token8] = ACTIONS(1595), - [aux_sym_cmd_identifier_token9] = ACTIONS(1595), - [aux_sym_cmd_identifier_token10] = ACTIONS(1595), - [aux_sym_cmd_identifier_token11] = ACTIONS(1595), - [aux_sym_cmd_identifier_token12] = ACTIONS(1595), - [aux_sym_cmd_identifier_token13] = ACTIONS(1595), - [aux_sym_cmd_identifier_token14] = ACTIONS(1595), - [aux_sym_cmd_identifier_token15] = ACTIONS(1595), - [aux_sym_cmd_identifier_token16] = ACTIONS(1595), - [aux_sym_cmd_identifier_token17] = ACTIONS(1595), - [aux_sym_cmd_identifier_token18] = ACTIONS(1595), - [aux_sym_cmd_identifier_token19] = ACTIONS(1595), - [aux_sym_cmd_identifier_token20] = ACTIONS(1595), - [aux_sym_cmd_identifier_token21] = ACTIONS(1595), - [aux_sym_cmd_identifier_token22] = ACTIONS(1595), - [aux_sym_cmd_identifier_token23] = ACTIONS(1595), - [aux_sym_cmd_identifier_token24] = ACTIONS(1595), - [aux_sym_cmd_identifier_token25] = ACTIONS(1595), - [aux_sym_cmd_identifier_token26] = ACTIONS(1595), - [aux_sym_cmd_identifier_token27] = ACTIONS(1595), - [aux_sym_cmd_identifier_token28] = ACTIONS(1595), - [aux_sym_cmd_identifier_token29] = ACTIONS(1595), - [aux_sym_cmd_identifier_token30] = ACTIONS(1595), - [aux_sym_cmd_identifier_token31] = ACTIONS(1595), - [aux_sym_cmd_identifier_token32] = ACTIONS(1595), - [aux_sym_cmd_identifier_token33] = ACTIONS(1595), - [aux_sym_cmd_identifier_token34] = ACTIONS(1595), - [aux_sym_cmd_identifier_token35] = ACTIONS(1595), - [aux_sym_cmd_identifier_token36] = ACTIONS(1595), - [aux_sym_cmd_identifier_token37] = ACTIONS(1595), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1595), - [aux_sym_cmd_identifier_token40] = ACTIONS(1595), - [anon_sym_def] = ACTIONS(1595), - [anon_sym_export_DASHenv] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_error] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_make] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_else] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_try] = ACTIONS(1595), - [anon_sym_catch] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_source] = ACTIONS(1595), - [anon_sym_source_DASHenv] = ACTIONS(1595), - [anon_sym_register] = ACTIONS(1595), - [anon_sym_hide] = ACTIONS(1595), - [anon_sym_hide_DASHenv] = ACTIONS(1595), - [anon_sym_overlay] = ACTIONS(1595), - [anon_sym_as] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1595), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1595), - [aux_sym__val_number_decimal_token3] = ACTIONS(1595), - [aux_sym__val_number_decimal_token4] = ACTIONS(1595), - [aux_sym__val_number_token1] = ACTIONS(1595), - [aux_sym__val_number_token2] = ACTIONS(1595), - [aux_sym__val_number_token3] = ACTIONS(1595), - [aux_sym__val_number_token4] = ACTIONS(1595), - [aux_sym__val_number_token5] = ACTIONS(1595), - [aux_sym__val_number_token6] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1595), - [sym__str_single_quotes] = ACTIONS(1595), - [sym__str_back_ticks] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1595), - [sym__entry_separator] = ACTIONS(1597), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1595), + [330] = { + [sym_comment] = STATE(330), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_alias] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_let_DASHenv] = ACTIONS(1685), + [anon_sym_mut] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [aux_sym_cmd_identifier_token1] = ACTIONS(1685), + [aux_sym_cmd_identifier_token2] = ACTIONS(1685), + [aux_sym_cmd_identifier_token3] = ACTIONS(1685), + [aux_sym_cmd_identifier_token4] = ACTIONS(1685), + [aux_sym_cmd_identifier_token5] = ACTIONS(1685), + [aux_sym_cmd_identifier_token6] = ACTIONS(1685), + [aux_sym_cmd_identifier_token7] = ACTIONS(1685), + [aux_sym_cmd_identifier_token8] = ACTIONS(1685), + [aux_sym_cmd_identifier_token9] = ACTIONS(1685), + [aux_sym_cmd_identifier_token10] = ACTIONS(1685), + [aux_sym_cmd_identifier_token11] = ACTIONS(1685), + [aux_sym_cmd_identifier_token12] = ACTIONS(1685), + [aux_sym_cmd_identifier_token13] = ACTIONS(1685), + [aux_sym_cmd_identifier_token14] = ACTIONS(1685), + [aux_sym_cmd_identifier_token15] = ACTIONS(1685), + [aux_sym_cmd_identifier_token16] = ACTIONS(1685), + [aux_sym_cmd_identifier_token17] = ACTIONS(1685), + [aux_sym_cmd_identifier_token18] = ACTIONS(1685), + [aux_sym_cmd_identifier_token19] = ACTIONS(1685), + [aux_sym_cmd_identifier_token20] = ACTIONS(1685), + [aux_sym_cmd_identifier_token21] = ACTIONS(1685), + [aux_sym_cmd_identifier_token22] = ACTIONS(1685), + [aux_sym_cmd_identifier_token23] = ACTIONS(1685), + [aux_sym_cmd_identifier_token24] = ACTIONS(1685), + [aux_sym_cmd_identifier_token25] = ACTIONS(1685), + [aux_sym_cmd_identifier_token26] = ACTIONS(1685), + [aux_sym_cmd_identifier_token27] = ACTIONS(1685), + [aux_sym_cmd_identifier_token28] = ACTIONS(1685), + [aux_sym_cmd_identifier_token29] = ACTIONS(1685), + [aux_sym_cmd_identifier_token30] = ACTIONS(1685), + [aux_sym_cmd_identifier_token31] = ACTIONS(1685), + [aux_sym_cmd_identifier_token32] = ACTIONS(1685), + [aux_sym_cmd_identifier_token33] = ACTIONS(1685), + [aux_sym_cmd_identifier_token34] = ACTIONS(1685), + [aux_sym_cmd_identifier_token35] = ACTIONS(1685), + [aux_sym_cmd_identifier_token36] = ACTIONS(1685), + [aux_sym_cmd_identifier_token37] = ACTIONS(1685), + [aux_sym_cmd_identifier_token38] = ACTIONS(1685), + [aux_sym_cmd_identifier_token39] = ACTIONS(1685), + [aux_sym_cmd_identifier_token40] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_export_DASHenv] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_error] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_make] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_else] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_catch] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_source] = ACTIONS(1685), + [anon_sym_source_DASHenv] = ACTIONS(1685), + [anon_sym_register] = ACTIONS(1685), + [anon_sym_hide] = ACTIONS(1685), + [anon_sym_hide_DASHenv] = ACTIONS(1685), + [anon_sym_overlay] = ACTIONS(1685), + [anon_sym_as] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(1689), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1685), + [aux_sym__val_number_decimal_token4] = ACTIONS(1685), + [aux_sym__val_number_token1] = ACTIONS(1685), + [aux_sym__val_number_token2] = ACTIONS(1685), + [aux_sym__val_number_token3] = ACTIONS(1685), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1685), + [sym__entry_separator] = ACTIONS(1687), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1597), + [sym_raw_string_begin] = ACTIONS(1687), }, - [343] = { - [sym_comment] = STATE(343), + [331] = { + [sym__expr_parenthesized_immediate] = STATE(734), + [sym__immediate_decimal] = STATE(552), + [sym_val_variable] = STATE(734), + [sym_comment] = STATE(331), + [anon_sym_export] = ACTIONS(1529), + [anon_sym_alias] = ACTIONS(1529), + [anon_sym_let] = ACTIONS(1529), + [anon_sym_let_DASHenv] = ACTIONS(1529), + [anon_sym_mut] = ACTIONS(1529), + [anon_sym_const] = ACTIONS(1529), + [aux_sym_cmd_identifier_token1] = ACTIONS(1529), + [aux_sym_cmd_identifier_token2] = ACTIONS(1543), + [aux_sym_cmd_identifier_token3] = ACTIONS(1543), + [aux_sym_cmd_identifier_token4] = ACTIONS(1543), + [aux_sym_cmd_identifier_token5] = ACTIONS(1543), + [aux_sym_cmd_identifier_token6] = ACTIONS(1543), + [aux_sym_cmd_identifier_token7] = ACTIONS(1543), + [aux_sym_cmd_identifier_token8] = ACTIONS(1529), + [aux_sym_cmd_identifier_token9] = ACTIONS(1529), + [aux_sym_cmd_identifier_token10] = ACTIONS(1543), + [aux_sym_cmd_identifier_token11] = ACTIONS(1543), + [aux_sym_cmd_identifier_token12] = ACTIONS(1529), + [aux_sym_cmd_identifier_token13] = ACTIONS(1529), + [aux_sym_cmd_identifier_token14] = ACTIONS(1529), + [aux_sym_cmd_identifier_token15] = ACTIONS(1529), + [aux_sym_cmd_identifier_token16] = ACTIONS(1543), + [aux_sym_cmd_identifier_token17] = ACTIONS(1543), + [aux_sym_cmd_identifier_token18] = ACTIONS(1543), + [aux_sym_cmd_identifier_token19] = ACTIONS(1543), + [aux_sym_cmd_identifier_token20] = ACTIONS(1543), + [aux_sym_cmd_identifier_token21] = ACTIONS(1543), + [aux_sym_cmd_identifier_token22] = ACTIONS(1543), + [aux_sym_cmd_identifier_token23] = ACTIONS(1543), + [aux_sym_cmd_identifier_token24] = ACTIONS(1543), + [aux_sym_cmd_identifier_token25] = ACTIONS(1543), + [aux_sym_cmd_identifier_token26] = ACTIONS(1543), + [aux_sym_cmd_identifier_token27] = ACTIONS(1543), + [aux_sym_cmd_identifier_token28] = ACTIONS(1543), + [aux_sym_cmd_identifier_token29] = ACTIONS(1543), + [aux_sym_cmd_identifier_token30] = ACTIONS(1543), + [aux_sym_cmd_identifier_token31] = ACTIONS(1543), + [aux_sym_cmd_identifier_token32] = ACTIONS(1543), + [aux_sym_cmd_identifier_token33] = ACTIONS(1543), + [aux_sym_cmd_identifier_token34] = ACTIONS(1529), + [aux_sym_cmd_identifier_token35] = ACTIONS(1543), + [aux_sym_cmd_identifier_token36] = ACTIONS(1543), + [aux_sym_cmd_identifier_token37] = ACTIONS(1543), + [aux_sym_cmd_identifier_token38] = ACTIONS(1529), + [aux_sym_cmd_identifier_token39] = ACTIONS(1543), + [aux_sym_cmd_identifier_token40] = ACTIONS(1543), + [anon_sym_def] = ACTIONS(1529), + [anon_sym_export_DASHenv] = ACTIONS(1529), + [anon_sym_extern] = ACTIONS(1529), + [anon_sym_module] = ACTIONS(1529), + [anon_sym_use] = ACTIONS(1529), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_COMMA] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_break] = ACTIONS(1529), + [anon_sym_continue] = ACTIONS(1529), + [anon_sym_for] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1529), + [anon_sym_loop] = ACTIONS(1529), + [anon_sym_make] = ACTIONS(1529), + [anon_sym_while] = ACTIONS(1529), + [anon_sym_do] = ACTIONS(1529), + [anon_sym_if] = ACTIONS(1529), + [anon_sym_else] = ACTIONS(1529), + [anon_sym_match] = ACTIONS(1529), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_try] = ACTIONS(1529), + [anon_sym_catch] = ACTIONS(1529), + [anon_sym_return] = ACTIONS(1529), + [anon_sym_source] = ACTIONS(1529), + [anon_sym_source_DASHenv] = ACTIONS(1529), + [anon_sym_register] = ACTIONS(1529), + [anon_sym_hide] = ACTIONS(1529), + [anon_sym_hide_DASHenv] = ACTIONS(1529), + [anon_sym_overlay] = ACTIONS(1529), + [anon_sym_as] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1529), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1695), + [aux_sym__immediate_decimal_token4] = ACTIONS(1697), + [aux_sym__immediate_decimal_token5] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1529), + [aux_sym__val_number_token5] = ACTIONS(1529), + [aux_sym__val_number_token6] = ACTIONS(1529), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1543), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1543), + }, + [332] = { + [sym__expr_parenthesized_immediate] = STATE(703), + [sym__immediate_decimal] = STATE(577), + [sym_val_variable] = STATE(703), + [sym_comment] = STATE(332), [anon_sym_export] = ACTIONS(1587), [anon_sym_alias] = ACTIONS(1587), [anon_sym_let] = ACTIONS(1587), @@ -118268,779 +117117,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token21] = ACTIONS(1589), [aux_sym_cmd_identifier_token22] = ACTIONS(1589), [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [aux_sym_cmd_identifier_token37] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(1679), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [344] = { - [sym__expr_parenthesized_immediate] = STATE(7356), - [sym_comment] = STATE(344), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1693), - [aux_sym_cmd_identifier_token3] = ACTIONS(1693), - [aux_sym_cmd_identifier_token4] = ACTIONS(1693), - [aux_sym_cmd_identifier_token5] = ACTIONS(1693), - [aux_sym_cmd_identifier_token6] = ACTIONS(1693), - [aux_sym_cmd_identifier_token7] = ACTIONS(1693), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1693), - [aux_sym_cmd_identifier_token11] = ACTIONS(1693), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1693), - [aux_sym_cmd_identifier_token17] = ACTIONS(1693), - [aux_sym_cmd_identifier_token18] = ACTIONS(1693), - [aux_sym_cmd_identifier_token19] = ACTIONS(1693), - [aux_sym_cmd_identifier_token20] = ACTIONS(1693), - [aux_sym_cmd_identifier_token21] = ACTIONS(1693), - [aux_sym_cmd_identifier_token22] = ACTIONS(1693), - [aux_sym_cmd_identifier_token23] = ACTIONS(1693), - [aux_sym_cmd_identifier_token24] = ACTIONS(1693), - [aux_sym_cmd_identifier_token25] = ACTIONS(1693), - [aux_sym_cmd_identifier_token26] = ACTIONS(1693), - [aux_sym_cmd_identifier_token27] = ACTIONS(1693), - [aux_sym_cmd_identifier_token28] = ACTIONS(1693), - [aux_sym_cmd_identifier_token29] = ACTIONS(1693), - [aux_sym_cmd_identifier_token30] = ACTIONS(1693), - [aux_sym_cmd_identifier_token31] = ACTIONS(1693), - [aux_sym_cmd_identifier_token32] = ACTIONS(1693), - [aux_sym_cmd_identifier_token33] = ACTIONS(1693), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1693), - [aux_sym_cmd_identifier_token36] = ACTIONS(1693), - [aux_sym_cmd_identifier_token37] = ACTIONS(1693), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1693), - [aux_sym_cmd_identifier_token40] = ACTIONS(1693), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), - [anon_sym_DOT_DOT2] = ACTIONS(1737), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1739), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1739), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(1741), - [sym_duration_unit] = ACTIONS(1743), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [345] = { - [sym_comment] = STATE(345), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1669), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1669), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1669), - [aux_sym_cmd_identifier_token32] = ACTIONS(1669), - [aux_sym_cmd_identifier_token33] = ACTIONS(1669), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1669), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [aux_sym_cmd_identifier_token37] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(1747), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1667), - [aux_sym__val_number_token5] = ACTIONS(1667), - [aux_sym__val_number_token6] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), - }, - [346] = { - [sym__expr_parenthesized_immediate] = STATE(752), - [sym__immediate_decimal] = STATE(753), - [sym_val_variable] = STATE(752), - [sym_comment] = STATE(346), - [anon_sym_export] = ACTIONS(1633), - [anon_sym_alias] = ACTIONS(1633), - [anon_sym_let] = ACTIONS(1633), - [anon_sym_let_DASHenv] = ACTIONS(1633), - [anon_sym_mut] = ACTIONS(1633), - [anon_sym_const] = ACTIONS(1633), - [aux_sym_cmd_identifier_token1] = ACTIONS(1633), - [aux_sym_cmd_identifier_token2] = ACTIONS(1643), - [aux_sym_cmd_identifier_token3] = ACTIONS(1643), - [aux_sym_cmd_identifier_token4] = ACTIONS(1643), - [aux_sym_cmd_identifier_token5] = ACTIONS(1643), - [aux_sym_cmd_identifier_token6] = ACTIONS(1643), - [aux_sym_cmd_identifier_token7] = ACTIONS(1643), - [aux_sym_cmd_identifier_token8] = ACTIONS(1633), - [aux_sym_cmd_identifier_token9] = ACTIONS(1633), - [aux_sym_cmd_identifier_token10] = ACTIONS(1643), - [aux_sym_cmd_identifier_token11] = ACTIONS(1643), - [aux_sym_cmd_identifier_token12] = ACTIONS(1633), - [aux_sym_cmd_identifier_token13] = ACTIONS(1633), - [aux_sym_cmd_identifier_token14] = ACTIONS(1633), - [aux_sym_cmd_identifier_token15] = ACTIONS(1633), - [aux_sym_cmd_identifier_token16] = ACTIONS(1643), - [aux_sym_cmd_identifier_token17] = ACTIONS(1643), - [aux_sym_cmd_identifier_token18] = ACTIONS(1643), - [aux_sym_cmd_identifier_token19] = ACTIONS(1643), - [aux_sym_cmd_identifier_token20] = ACTIONS(1643), - [aux_sym_cmd_identifier_token21] = ACTIONS(1643), - [aux_sym_cmd_identifier_token22] = ACTIONS(1643), - [aux_sym_cmd_identifier_token23] = ACTIONS(1643), - [aux_sym_cmd_identifier_token24] = ACTIONS(1643), - [aux_sym_cmd_identifier_token25] = ACTIONS(1643), - [aux_sym_cmd_identifier_token26] = ACTIONS(1643), - [aux_sym_cmd_identifier_token27] = ACTIONS(1643), - [aux_sym_cmd_identifier_token28] = ACTIONS(1643), - [aux_sym_cmd_identifier_token29] = ACTIONS(1643), - [aux_sym_cmd_identifier_token30] = ACTIONS(1643), - [aux_sym_cmd_identifier_token31] = ACTIONS(1643), - [aux_sym_cmd_identifier_token32] = ACTIONS(1643), - [aux_sym_cmd_identifier_token33] = ACTIONS(1643), - [aux_sym_cmd_identifier_token34] = ACTIONS(1633), - [aux_sym_cmd_identifier_token35] = ACTIONS(1643), - [aux_sym_cmd_identifier_token36] = ACTIONS(1643), - [aux_sym_cmd_identifier_token37] = ACTIONS(1643), - [aux_sym_cmd_identifier_token38] = ACTIONS(1633), - [aux_sym_cmd_identifier_token39] = ACTIONS(1643), - [aux_sym_cmd_identifier_token40] = ACTIONS(1643), - [anon_sym_def] = ACTIONS(1633), - [anon_sym_export_DASHenv] = ACTIONS(1633), - [anon_sym_extern] = ACTIONS(1633), - [anon_sym_module] = ACTIONS(1633), - [anon_sym_use] = ACTIONS(1633), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_break] = ACTIONS(1633), - [anon_sym_continue] = ACTIONS(1633), - [anon_sym_for] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1633), - [anon_sym_loop] = ACTIONS(1633), - [anon_sym_make] = ACTIONS(1633), - [anon_sym_while] = ACTIONS(1633), - [anon_sym_do] = ACTIONS(1633), - [anon_sym_if] = ACTIONS(1633), - [anon_sym_else] = ACTIONS(1633), - [anon_sym_match] = ACTIONS(1633), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_try] = ACTIONS(1633), - [anon_sym_catch] = ACTIONS(1633), - [anon_sym_return] = ACTIONS(1633), - [anon_sym_source] = ACTIONS(1633), - [anon_sym_source_DASHenv] = ACTIONS(1633), - [anon_sym_register] = ACTIONS(1633), - [anon_sym_hide] = ACTIONS(1633), - [anon_sym_hide_DASHenv] = ACTIONS(1633), - [anon_sym_overlay] = ACTIONS(1633), - [anon_sym_as] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(1749), - [aux_sym__immediate_decimal_token3] = ACTIONS(1751), - [aux_sym__immediate_decimal_token4] = ACTIONS(1753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1633), - [aux_sym__val_number_token5] = ACTIONS(1633), - [aux_sym__val_number_token6] = ACTIONS(1633), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), - }, - [347] = { - [sym__expr_parenthesized_immediate] = STATE(716), - [sym__immediate_decimal] = STATE(717), - [sym_val_variable] = STATE(716), - [sym_comment] = STATE(347), - [anon_sym_export] = ACTIONS(1707), - [anon_sym_alias] = ACTIONS(1707), - [anon_sym_let] = ACTIONS(1707), - [anon_sym_let_DASHenv] = ACTIONS(1707), - [anon_sym_mut] = ACTIONS(1707), - [anon_sym_const] = ACTIONS(1707), - [aux_sym_cmd_identifier_token1] = ACTIONS(1707), - [aux_sym_cmd_identifier_token2] = ACTIONS(1709), - [aux_sym_cmd_identifier_token3] = ACTIONS(1709), - [aux_sym_cmd_identifier_token4] = ACTIONS(1709), - [aux_sym_cmd_identifier_token5] = ACTIONS(1709), - [aux_sym_cmd_identifier_token6] = ACTIONS(1709), - [aux_sym_cmd_identifier_token7] = ACTIONS(1709), - [aux_sym_cmd_identifier_token8] = ACTIONS(1707), - [aux_sym_cmd_identifier_token9] = ACTIONS(1707), - [aux_sym_cmd_identifier_token10] = ACTIONS(1709), - [aux_sym_cmd_identifier_token11] = ACTIONS(1709), - [aux_sym_cmd_identifier_token12] = ACTIONS(1707), - [aux_sym_cmd_identifier_token13] = ACTIONS(1707), - [aux_sym_cmd_identifier_token14] = ACTIONS(1707), - [aux_sym_cmd_identifier_token15] = ACTIONS(1707), - [aux_sym_cmd_identifier_token16] = ACTIONS(1709), - [aux_sym_cmd_identifier_token17] = ACTIONS(1709), - [aux_sym_cmd_identifier_token18] = ACTIONS(1709), - [aux_sym_cmd_identifier_token19] = ACTIONS(1709), - [aux_sym_cmd_identifier_token20] = ACTIONS(1709), - [aux_sym_cmd_identifier_token21] = ACTIONS(1709), - [aux_sym_cmd_identifier_token22] = ACTIONS(1709), - [aux_sym_cmd_identifier_token23] = ACTIONS(1709), - [aux_sym_cmd_identifier_token24] = ACTIONS(1709), - [aux_sym_cmd_identifier_token25] = ACTIONS(1709), - [aux_sym_cmd_identifier_token26] = ACTIONS(1709), - [aux_sym_cmd_identifier_token27] = ACTIONS(1709), - [aux_sym_cmd_identifier_token28] = ACTIONS(1709), - [aux_sym_cmd_identifier_token29] = ACTIONS(1709), - [aux_sym_cmd_identifier_token30] = ACTIONS(1709), - [aux_sym_cmd_identifier_token31] = ACTIONS(1709), - [aux_sym_cmd_identifier_token32] = ACTIONS(1709), - [aux_sym_cmd_identifier_token33] = ACTIONS(1709), - [aux_sym_cmd_identifier_token34] = ACTIONS(1707), - [aux_sym_cmd_identifier_token35] = ACTIONS(1709), - [aux_sym_cmd_identifier_token36] = ACTIONS(1709), - [aux_sym_cmd_identifier_token37] = ACTIONS(1709), - [aux_sym_cmd_identifier_token38] = ACTIONS(1707), - [aux_sym_cmd_identifier_token39] = ACTIONS(1709), - [aux_sym_cmd_identifier_token40] = ACTIONS(1709), - [anon_sym_def] = ACTIONS(1707), - [anon_sym_export_DASHenv] = ACTIONS(1707), - [anon_sym_extern] = ACTIONS(1707), - [anon_sym_module] = ACTIONS(1707), - [anon_sym_use] = ACTIONS(1707), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_break] = ACTIONS(1707), - [anon_sym_continue] = ACTIONS(1707), - [anon_sym_for] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1707), - [anon_sym_loop] = ACTIONS(1707), - [anon_sym_make] = ACTIONS(1707), - [anon_sym_while] = ACTIONS(1707), - [anon_sym_do] = ACTIONS(1707), - [anon_sym_if] = ACTIONS(1707), - [anon_sym_else] = ACTIONS(1707), - [anon_sym_match] = ACTIONS(1707), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_try] = ACTIONS(1707), - [anon_sym_catch] = ACTIONS(1707), - [anon_sym_return] = ACTIONS(1707), - [anon_sym_source] = ACTIONS(1707), - [anon_sym_source_DASHenv] = ACTIONS(1707), - [anon_sym_register] = ACTIONS(1707), - [anon_sym_hide] = ACTIONS(1707), - [anon_sym_hide_DASHenv] = ACTIONS(1707), - [anon_sym_overlay] = ACTIONS(1707), - [anon_sym_as] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(1749), - [aux_sym__immediate_decimal_token3] = ACTIONS(1751), - [aux_sym__immediate_decimal_token4] = ACTIONS(1753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [aux_sym__val_number_token4] = ACTIONS(1707), - [aux_sym__val_number_token5] = ACTIONS(1707), - [aux_sym__val_number_token6] = ACTIONS(1707), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1709), - }, - [348] = { - [sym__expr_parenthesized_immediate] = STATE(718), - [sym__immediate_decimal] = STATE(686), - [sym_val_variable] = STATE(718), - [sym_comment] = STATE(348), - [anon_sym_export] = ACTIONS(1711), - [anon_sym_alias] = ACTIONS(1711), - [anon_sym_let] = ACTIONS(1711), - [anon_sym_let_DASHenv] = ACTIONS(1711), - [anon_sym_mut] = ACTIONS(1711), - [anon_sym_const] = ACTIONS(1711), - [aux_sym_cmd_identifier_token1] = ACTIONS(1711), - [aux_sym_cmd_identifier_token2] = ACTIONS(1713), - [aux_sym_cmd_identifier_token3] = ACTIONS(1713), - [aux_sym_cmd_identifier_token4] = ACTIONS(1713), - [aux_sym_cmd_identifier_token5] = ACTIONS(1713), - [aux_sym_cmd_identifier_token6] = ACTIONS(1713), - [aux_sym_cmd_identifier_token7] = ACTIONS(1713), - [aux_sym_cmd_identifier_token8] = ACTIONS(1711), - [aux_sym_cmd_identifier_token9] = ACTIONS(1711), - [aux_sym_cmd_identifier_token10] = ACTIONS(1713), - [aux_sym_cmd_identifier_token11] = ACTIONS(1713), - [aux_sym_cmd_identifier_token12] = ACTIONS(1711), - [aux_sym_cmd_identifier_token13] = ACTIONS(1711), - [aux_sym_cmd_identifier_token14] = ACTIONS(1711), - [aux_sym_cmd_identifier_token15] = ACTIONS(1711), - [aux_sym_cmd_identifier_token16] = ACTIONS(1713), - [aux_sym_cmd_identifier_token17] = ACTIONS(1713), - [aux_sym_cmd_identifier_token18] = ACTIONS(1713), - [aux_sym_cmd_identifier_token19] = ACTIONS(1713), - [aux_sym_cmd_identifier_token20] = ACTIONS(1713), - [aux_sym_cmd_identifier_token21] = ACTIONS(1713), - [aux_sym_cmd_identifier_token22] = ACTIONS(1713), - [aux_sym_cmd_identifier_token23] = ACTIONS(1713), - [aux_sym_cmd_identifier_token24] = ACTIONS(1713), - [aux_sym_cmd_identifier_token25] = ACTIONS(1713), - [aux_sym_cmd_identifier_token26] = ACTIONS(1713), - [aux_sym_cmd_identifier_token27] = ACTIONS(1713), - [aux_sym_cmd_identifier_token28] = ACTIONS(1713), - [aux_sym_cmd_identifier_token29] = ACTIONS(1713), - [aux_sym_cmd_identifier_token30] = ACTIONS(1713), - [aux_sym_cmd_identifier_token31] = ACTIONS(1713), - [aux_sym_cmd_identifier_token32] = ACTIONS(1713), - [aux_sym_cmd_identifier_token33] = ACTIONS(1713), - [aux_sym_cmd_identifier_token34] = ACTIONS(1711), - [aux_sym_cmd_identifier_token35] = ACTIONS(1713), - [aux_sym_cmd_identifier_token36] = ACTIONS(1713), - [aux_sym_cmd_identifier_token37] = ACTIONS(1713), - [aux_sym_cmd_identifier_token38] = ACTIONS(1711), - [aux_sym_cmd_identifier_token39] = ACTIONS(1713), - [aux_sym_cmd_identifier_token40] = ACTIONS(1713), - [anon_sym_def] = ACTIONS(1711), - [anon_sym_export_DASHenv] = ACTIONS(1711), - [anon_sym_extern] = ACTIONS(1711), - [anon_sym_module] = ACTIONS(1711), - [anon_sym_use] = ACTIONS(1711), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_break] = ACTIONS(1711), - [anon_sym_continue] = ACTIONS(1711), - [anon_sym_for] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1711), - [anon_sym_loop] = ACTIONS(1711), - [anon_sym_make] = ACTIONS(1711), - [anon_sym_while] = ACTIONS(1711), - [anon_sym_do] = ACTIONS(1711), - [anon_sym_if] = ACTIONS(1711), - [anon_sym_else] = ACTIONS(1711), - [anon_sym_match] = ACTIONS(1711), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_try] = ACTIONS(1711), - [anon_sym_catch] = ACTIONS(1711), - [anon_sym_return] = ACTIONS(1711), - [anon_sym_source] = ACTIONS(1711), - [anon_sym_source_DASHenv] = ACTIONS(1711), - [anon_sym_register] = ACTIONS(1711), - [anon_sym_hide] = ACTIONS(1711), - [anon_sym_hide_DASHenv] = ACTIONS(1711), - [anon_sym_overlay] = ACTIONS(1711), - [anon_sym_as] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(1749), - [aux_sym__immediate_decimal_token3] = ACTIONS(1751), - [aux_sym__immediate_decimal_token4] = ACTIONS(1753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1711), - [aux_sym__val_number_token5] = ACTIONS(1711), - [aux_sym__val_number_token6] = ACTIONS(1711), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [349] = { - [sym__expr_parenthesized_immediate] = STATE(719), - [sym__immediate_decimal] = STATE(720), - [sym_val_variable] = STATE(719), - [sym_comment] = STATE(349), - [anon_sym_export] = ACTIONS(1657), - [anon_sym_alias] = ACTIONS(1657), - [anon_sym_let] = ACTIONS(1657), - [anon_sym_let_DASHenv] = ACTIONS(1657), - [anon_sym_mut] = ACTIONS(1657), - [anon_sym_const] = ACTIONS(1657), - [aux_sym_cmd_identifier_token1] = ACTIONS(1657), - [aux_sym_cmd_identifier_token2] = ACTIONS(1665), - [aux_sym_cmd_identifier_token3] = ACTIONS(1665), - [aux_sym_cmd_identifier_token4] = ACTIONS(1665), - [aux_sym_cmd_identifier_token5] = ACTIONS(1665), - [aux_sym_cmd_identifier_token6] = ACTIONS(1665), - [aux_sym_cmd_identifier_token7] = ACTIONS(1665), - [aux_sym_cmd_identifier_token8] = ACTIONS(1657), - [aux_sym_cmd_identifier_token9] = ACTIONS(1657), - [aux_sym_cmd_identifier_token10] = ACTIONS(1665), - [aux_sym_cmd_identifier_token11] = ACTIONS(1665), - [aux_sym_cmd_identifier_token12] = ACTIONS(1657), - [aux_sym_cmd_identifier_token13] = ACTIONS(1657), - [aux_sym_cmd_identifier_token14] = ACTIONS(1657), - [aux_sym_cmd_identifier_token15] = ACTIONS(1657), - [aux_sym_cmd_identifier_token16] = ACTIONS(1665), - [aux_sym_cmd_identifier_token17] = ACTIONS(1665), - [aux_sym_cmd_identifier_token18] = ACTIONS(1665), - [aux_sym_cmd_identifier_token19] = ACTIONS(1665), - [aux_sym_cmd_identifier_token20] = ACTIONS(1665), - [aux_sym_cmd_identifier_token21] = ACTIONS(1665), - [aux_sym_cmd_identifier_token22] = ACTIONS(1665), - [aux_sym_cmd_identifier_token23] = ACTIONS(1665), - [aux_sym_cmd_identifier_token24] = ACTIONS(1665), - [aux_sym_cmd_identifier_token25] = ACTIONS(1665), - [aux_sym_cmd_identifier_token26] = ACTIONS(1665), - [aux_sym_cmd_identifier_token27] = ACTIONS(1665), - [aux_sym_cmd_identifier_token28] = ACTIONS(1665), - [aux_sym_cmd_identifier_token29] = ACTIONS(1665), - [aux_sym_cmd_identifier_token30] = ACTIONS(1665), - [aux_sym_cmd_identifier_token31] = ACTIONS(1665), - [aux_sym_cmd_identifier_token32] = ACTIONS(1665), - [aux_sym_cmd_identifier_token33] = ACTIONS(1665), - [aux_sym_cmd_identifier_token34] = ACTIONS(1657), - [aux_sym_cmd_identifier_token35] = ACTIONS(1665), - [aux_sym_cmd_identifier_token36] = ACTIONS(1665), - [aux_sym_cmd_identifier_token37] = ACTIONS(1665), - [aux_sym_cmd_identifier_token38] = ACTIONS(1657), - [aux_sym_cmd_identifier_token39] = ACTIONS(1665), - [aux_sym_cmd_identifier_token40] = ACTIONS(1665), - [anon_sym_def] = ACTIONS(1657), - [anon_sym_export_DASHenv] = ACTIONS(1657), - [anon_sym_extern] = ACTIONS(1657), - [anon_sym_module] = ACTIONS(1657), - [anon_sym_use] = ACTIONS(1657), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(1645), - [anon_sym_error] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_break] = ACTIONS(1657), - [anon_sym_continue] = ACTIONS(1657), - [anon_sym_for] = ACTIONS(1657), - [anon_sym_in2] = ACTIONS(1657), - [anon_sym_loop] = ACTIONS(1657), - [anon_sym_make] = ACTIONS(1657), - [anon_sym_while] = ACTIONS(1657), - [anon_sym_do] = ACTIONS(1657), - [anon_sym_if] = ACTIONS(1657), - [anon_sym_else] = ACTIONS(1657), - [anon_sym_match] = ACTIONS(1657), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_try] = ACTIONS(1657), - [anon_sym_catch] = ACTIONS(1657), - [anon_sym_return] = ACTIONS(1657), - [anon_sym_source] = ACTIONS(1657), - [anon_sym_source_DASHenv] = ACTIONS(1657), - [anon_sym_register] = ACTIONS(1657), - [anon_sym_hide] = ACTIONS(1657), - [anon_sym_hide_DASHenv] = ACTIONS(1657), - [anon_sym_overlay] = ACTIONS(1657), - [anon_sym_as] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(1647), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(1749), - [aux_sym__immediate_decimal_token3] = ACTIONS(1751), - [aux_sym__immediate_decimal_token4] = ACTIONS(1753), - [aux_sym__immediate_decimal_token5] = ACTIONS(1755), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1665), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1665), - [aux_sym__val_number_token2] = ACTIONS(1665), - [aux_sym__val_number_token3] = ACTIONS(1665), - [aux_sym__val_number_token4] = ACTIONS(1657), - [aux_sym__val_number_token5] = ACTIONS(1657), - [aux_sym__val_number_token6] = ACTIONS(1657), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym__str_single_quotes] = ACTIONS(1665), - [sym__str_back_ticks] = ACTIONS(1665), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1665), - }, - [350] = { - [sym_comment] = STATE(350), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1587), - [aux_sym_cmd_identifier_token3] = ACTIONS(1587), - [aux_sym_cmd_identifier_token4] = ACTIONS(1587), - [aux_sym_cmd_identifier_token5] = ACTIONS(1587), - [aux_sym_cmd_identifier_token6] = ACTIONS(1587), - [aux_sym_cmd_identifier_token7] = ACTIONS(1587), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1587), - [aux_sym_cmd_identifier_token11] = ACTIONS(1587), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1587), - [aux_sym_cmd_identifier_token17] = ACTIONS(1587), - [aux_sym_cmd_identifier_token18] = ACTIONS(1587), - [aux_sym_cmd_identifier_token19] = ACTIONS(1587), - [aux_sym_cmd_identifier_token20] = ACTIONS(1587), - [aux_sym_cmd_identifier_token21] = ACTIONS(1587), - [aux_sym_cmd_identifier_token22] = ACTIONS(1587), - [aux_sym_cmd_identifier_token23] = ACTIONS(1587), - [aux_sym_cmd_identifier_token24] = ACTIONS(1587), - [aux_sym_cmd_identifier_token25] = ACTIONS(1587), - [aux_sym_cmd_identifier_token26] = ACTIONS(1587), - [aux_sym_cmd_identifier_token27] = ACTIONS(1587), - [aux_sym_cmd_identifier_token28] = ACTIONS(1587), - [aux_sym_cmd_identifier_token29] = ACTIONS(1587), - [aux_sym_cmd_identifier_token30] = ACTIONS(1587), - [aux_sym_cmd_identifier_token31] = ACTIONS(1587), - [aux_sym_cmd_identifier_token32] = ACTIONS(1587), - [aux_sym_cmd_identifier_token33] = ACTIONS(1587), + [aux_sym_cmd_identifier_token24] = ACTIONS(1589), + [aux_sym_cmd_identifier_token25] = ACTIONS(1589), + [aux_sym_cmd_identifier_token26] = ACTIONS(1589), + [aux_sym_cmd_identifier_token27] = ACTIONS(1589), + [aux_sym_cmd_identifier_token28] = ACTIONS(1589), + [aux_sym_cmd_identifier_token29] = ACTIONS(1589), + [aux_sym_cmd_identifier_token30] = ACTIONS(1589), + [aux_sym_cmd_identifier_token31] = ACTIONS(1589), + [aux_sym_cmd_identifier_token32] = ACTIONS(1589), + [aux_sym_cmd_identifier_token33] = ACTIONS(1589), [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1587), - [aux_sym_cmd_identifier_token36] = ACTIONS(1587), - [aux_sym_cmd_identifier_token37] = ACTIONS(1587), + [aux_sym_cmd_identifier_token35] = ACTIONS(1589), + [aux_sym_cmd_identifier_token36] = ACTIONS(1589), + [aux_sym_cmd_identifier_token37] = ACTIONS(1589), [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1587), - [aux_sym_cmd_identifier_token40] = ACTIONS(1587), + [aux_sym_cmd_identifier_token39] = ACTIONS(1589), + [aux_sym_cmd_identifier_token40] = ACTIONS(1589), [anon_sym_def] = ACTIONS(1587), [anon_sym_export_DASHenv] = ACTIONS(1587), [anon_sym_extern] = ACTIONS(1587), [anon_sym_module] = ACTIONS(1587), [anon_sym_use] = ACTIONS(1587), [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_COMMA] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(1365), [anon_sym_error] = ACTIONS(1587), [anon_sym_DASH2] = ACTIONS(1587), [anon_sym_break] = ACTIONS(1587), @@ -119054,7 +117155,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1587), [anon_sym_else] = ACTIONS(1587), [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), + [anon_sym_RBRACE] = ACTIONS(1589), [anon_sym_try] = ACTIONS(1587), [anon_sym_catch] = ACTIONS(1587), [anon_sym_return] = ACTIONS(1587), @@ -119065,36 +117166,1768 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1587), [anon_sym_overlay] = ACTIONS(1587), [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(1691), [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1587), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(1693), + [aux_sym__immediate_decimal_token3] = ACTIONS(1695), + [aux_sym__immediate_decimal_token4] = ACTIONS(1697), + [aux_sym__immediate_decimal_token5] = ACTIONS(1699), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), [aux_sym__val_number_decimal_token1] = ACTIONS(1587), [aux_sym__val_number_decimal_token2] = ACTIONS(1587), [aux_sym__val_number_decimal_token3] = ACTIONS(1587), [aux_sym__val_number_decimal_token4] = ACTIONS(1587), - [aux_sym__val_number_token1] = ACTIONS(1587), - [aux_sym__val_number_token2] = ACTIONS(1587), - [aux_sym__val_number_token3] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), [aux_sym__val_number_token4] = ACTIONS(1587), [aux_sym__val_number_token5] = ACTIONS(1587), [aux_sym__val_number_token6] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1587), - [sym__str_single_quotes] = ACTIONS(1587), - [sym__str_back_ticks] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1587), - [sym__entry_separator] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1589), }, - [351] = { - [sym_comment] = STATE(351), + [333] = { + [sym__expr_parenthesized_immediate] = STATE(653), + [sym__immediate_decimal] = STATE(655), + [sym_val_variable] = STATE(653), + [sym_comment] = STATE(333), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1701), + [aux_sym_cmd_identifier_token3] = ACTIONS(1701), + [aux_sym_cmd_identifier_token4] = ACTIONS(1701), + [aux_sym_cmd_identifier_token5] = ACTIONS(1701), + [aux_sym_cmd_identifier_token6] = ACTIONS(1701), + [aux_sym_cmd_identifier_token7] = ACTIONS(1701), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1701), + [aux_sym_cmd_identifier_token11] = ACTIONS(1701), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1701), + [aux_sym_cmd_identifier_token17] = ACTIONS(1701), + [aux_sym_cmd_identifier_token18] = ACTIONS(1701), + [aux_sym_cmd_identifier_token19] = ACTIONS(1701), + [aux_sym_cmd_identifier_token20] = ACTIONS(1701), + [aux_sym_cmd_identifier_token21] = ACTIONS(1701), + [aux_sym_cmd_identifier_token22] = ACTIONS(1701), + [aux_sym_cmd_identifier_token23] = ACTIONS(1701), + [aux_sym_cmd_identifier_token24] = ACTIONS(1701), + [aux_sym_cmd_identifier_token25] = ACTIONS(1701), + [aux_sym_cmd_identifier_token26] = ACTIONS(1701), + [aux_sym_cmd_identifier_token27] = ACTIONS(1701), + [aux_sym_cmd_identifier_token28] = ACTIONS(1701), + [aux_sym_cmd_identifier_token29] = ACTIONS(1701), + [aux_sym_cmd_identifier_token30] = ACTIONS(1701), + [aux_sym_cmd_identifier_token31] = ACTIONS(1701), + [aux_sym_cmd_identifier_token32] = ACTIONS(1701), + [aux_sym_cmd_identifier_token33] = ACTIONS(1701), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1701), + [aux_sym_cmd_identifier_token36] = ACTIONS(1701), + [aux_sym_cmd_identifier_token37] = ACTIONS(1701), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1701), + [aux_sym_cmd_identifier_token40] = ACTIONS(1701), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1701), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1701), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1701), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1701), + [aux_sym__val_number_token2] = ACTIONS(1701), + [aux_sym__val_number_token3] = ACTIONS(1701), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1701), + [sym__str_single_quotes] = ACTIONS(1701), + [sym__str_back_ticks] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1701), + [sym__entry_separator] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [334] = { + [sym__expr_parenthesized_immediate] = STATE(585), + [sym__immediate_decimal] = STATE(586), + [sym_val_variable] = STATE(585), + [sym_comment] = STATE(334), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1705), + [aux_sym_cmd_identifier_token3] = ACTIONS(1705), + [aux_sym_cmd_identifier_token4] = ACTIONS(1705), + [aux_sym_cmd_identifier_token5] = ACTIONS(1705), + [aux_sym_cmd_identifier_token6] = ACTIONS(1705), + [aux_sym_cmd_identifier_token7] = ACTIONS(1705), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1705), + [aux_sym_cmd_identifier_token11] = ACTIONS(1705), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1705), + [aux_sym_cmd_identifier_token17] = ACTIONS(1705), + [aux_sym_cmd_identifier_token18] = ACTIONS(1705), + [aux_sym_cmd_identifier_token19] = ACTIONS(1705), + [aux_sym_cmd_identifier_token20] = ACTIONS(1705), + [aux_sym_cmd_identifier_token21] = ACTIONS(1705), + [aux_sym_cmd_identifier_token22] = ACTIONS(1705), + [aux_sym_cmd_identifier_token23] = ACTIONS(1705), + [aux_sym_cmd_identifier_token24] = ACTIONS(1705), + [aux_sym_cmd_identifier_token25] = ACTIONS(1705), + [aux_sym_cmd_identifier_token26] = ACTIONS(1705), + [aux_sym_cmd_identifier_token27] = ACTIONS(1705), + [aux_sym_cmd_identifier_token28] = ACTIONS(1705), + [aux_sym_cmd_identifier_token29] = ACTIONS(1705), + [aux_sym_cmd_identifier_token30] = ACTIONS(1705), + [aux_sym_cmd_identifier_token31] = ACTIONS(1705), + [aux_sym_cmd_identifier_token32] = ACTIONS(1705), + [aux_sym_cmd_identifier_token33] = ACTIONS(1705), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1705), + [aux_sym_cmd_identifier_token36] = ACTIONS(1705), + [aux_sym_cmd_identifier_token37] = ACTIONS(1705), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1705), + [aux_sym_cmd_identifier_token40] = ACTIONS(1705), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in2] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1705), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1705), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1705), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1705), + [aux_sym__val_number_token2] = ACTIONS(1705), + [aux_sym__val_number_token3] = ACTIONS(1705), + [aux_sym__val_number_token4] = ACTIONS(1705), + [aux_sym__val_number_token5] = ACTIONS(1705), + [aux_sym__val_number_token6] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1705), + [sym__str_single_quotes] = ACTIONS(1705), + [sym__str_back_ticks] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1705), + [sym__entry_separator] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1707), + }, + [335] = { + [sym__expr_parenthesized_immediate] = STATE(587), + [sym__immediate_decimal] = STATE(592), + [sym_val_variable] = STATE(587), + [sym_comment] = STATE(335), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1709), + [aux_sym_cmd_identifier_token3] = ACTIONS(1709), + [aux_sym_cmd_identifier_token4] = ACTIONS(1709), + [aux_sym_cmd_identifier_token5] = ACTIONS(1709), + [aux_sym_cmd_identifier_token6] = ACTIONS(1709), + [aux_sym_cmd_identifier_token7] = ACTIONS(1709), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1709), + [aux_sym_cmd_identifier_token11] = ACTIONS(1709), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1709), + [aux_sym_cmd_identifier_token17] = ACTIONS(1709), + [aux_sym_cmd_identifier_token18] = ACTIONS(1709), + [aux_sym_cmd_identifier_token19] = ACTIONS(1709), + [aux_sym_cmd_identifier_token20] = ACTIONS(1709), + [aux_sym_cmd_identifier_token21] = ACTIONS(1709), + [aux_sym_cmd_identifier_token22] = ACTIONS(1709), + [aux_sym_cmd_identifier_token23] = ACTIONS(1709), + [aux_sym_cmd_identifier_token24] = ACTIONS(1709), + [aux_sym_cmd_identifier_token25] = ACTIONS(1709), + [aux_sym_cmd_identifier_token26] = ACTIONS(1709), + [aux_sym_cmd_identifier_token27] = ACTIONS(1709), + [aux_sym_cmd_identifier_token28] = ACTIONS(1709), + [aux_sym_cmd_identifier_token29] = ACTIONS(1709), + [aux_sym_cmd_identifier_token30] = ACTIONS(1709), + [aux_sym_cmd_identifier_token31] = ACTIONS(1709), + [aux_sym_cmd_identifier_token32] = ACTIONS(1709), + [aux_sym_cmd_identifier_token33] = ACTIONS(1709), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1709), + [aux_sym_cmd_identifier_token36] = ACTIONS(1709), + [aux_sym_cmd_identifier_token37] = ACTIONS(1709), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1709), + [aux_sym_cmd_identifier_token40] = ACTIONS(1709), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(1577), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1709), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1579), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1709), + [aux_sym__immediate_decimal_token1] = ACTIONS(1679), + [aux_sym__immediate_decimal_token3] = ACTIONS(1679), + [aux_sym__immediate_decimal_token4] = ACTIONS(1681), + [aux_sym__immediate_decimal_token5] = ACTIONS(1683), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1709), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1709), + [aux_sym__val_number_token2] = ACTIONS(1709), + [aux_sym__val_number_token3] = ACTIONS(1709), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1709), + [sym__str_single_quotes] = ACTIONS(1709), + [sym__str_back_ticks] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1709), + [sym__entry_separator] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1711), + }, + [336] = { + [sym_comment] = STATE(336), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1605), + [aux_sym_cmd_identifier_token3] = ACTIONS(1605), + [aux_sym_cmd_identifier_token4] = ACTIONS(1605), + [aux_sym_cmd_identifier_token5] = ACTIONS(1605), + [aux_sym_cmd_identifier_token6] = ACTIONS(1605), + [aux_sym_cmd_identifier_token7] = ACTIONS(1605), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1605), + [aux_sym_cmd_identifier_token11] = ACTIONS(1605), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1605), + [aux_sym_cmd_identifier_token17] = ACTIONS(1605), + [aux_sym_cmd_identifier_token18] = ACTIONS(1605), + [aux_sym_cmd_identifier_token19] = ACTIONS(1605), + [aux_sym_cmd_identifier_token20] = ACTIONS(1605), + [aux_sym_cmd_identifier_token21] = ACTIONS(1605), + [aux_sym_cmd_identifier_token22] = ACTIONS(1605), + [aux_sym_cmd_identifier_token23] = ACTIONS(1605), + [aux_sym_cmd_identifier_token24] = ACTIONS(1605), + [aux_sym_cmd_identifier_token25] = ACTIONS(1605), + [aux_sym_cmd_identifier_token26] = ACTIONS(1605), + [aux_sym_cmd_identifier_token27] = ACTIONS(1605), + [aux_sym_cmd_identifier_token28] = ACTIONS(1605), + [aux_sym_cmd_identifier_token29] = ACTIONS(1605), + [aux_sym_cmd_identifier_token30] = ACTIONS(1605), + [aux_sym_cmd_identifier_token31] = ACTIONS(1605), + [aux_sym_cmd_identifier_token32] = ACTIONS(1605), + [aux_sym_cmd_identifier_token33] = ACTIONS(1605), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1605), + [aux_sym_cmd_identifier_token36] = ACTIONS(1605), + [aux_sym_cmd_identifier_token37] = ACTIONS(1605), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1605), + [aux_sym_cmd_identifier_token40] = ACTIONS(1605), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_make] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1605), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1605), + [aux_sym__val_number_decimal_token3] = ACTIONS(1605), + [aux_sym__val_number_decimal_token4] = ACTIONS(1605), + [aux_sym__val_number_token1] = ACTIONS(1605), + [aux_sym__val_number_token2] = ACTIONS(1605), + [aux_sym__val_number_token3] = ACTIONS(1605), + [aux_sym__val_number_token4] = ACTIONS(1605), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1605), + [sym__str_single_quotes] = ACTIONS(1605), + [sym__str_back_ticks] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1605), + [sym__entry_separator] = ACTIONS(1607), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [337] = { + [sym__expr_parenthesized_immediate] = STATE(742), + [sym__immediate_decimal] = STATE(743), + [sym_val_variable] = STATE(742), + [sym_comment] = STATE(337), + [anon_sym_export] = ACTIONS(1701), + [anon_sym_alias] = ACTIONS(1701), + [anon_sym_let] = ACTIONS(1701), + [anon_sym_let_DASHenv] = ACTIONS(1701), + [anon_sym_mut] = ACTIONS(1701), + [anon_sym_const] = ACTIONS(1701), + [aux_sym_cmd_identifier_token1] = ACTIONS(1701), + [aux_sym_cmd_identifier_token2] = ACTIONS(1703), + [aux_sym_cmd_identifier_token3] = ACTIONS(1703), + [aux_sym_cmd_identifier_token4] = ACTIONS(1703), + [aux_sym_cmd_identifier_token5] = ACTIONS(1703), + [aux_sym_cmd_identifier_token6] = ACTIONS(1703), + [aux_sym_cmd_identifier_token7] = ACTIONS(1703), + [aux_sym_cmd_identifier_token8] = ACTIONS(1701), + [aux_sym_cmd_identifier_token9] = ACTIONS(1701), + [aux_sym_cmd_identifier_token10] = ACTIONS(1703), + [aux_sym_cmd_identifier_token11] = ACTIONS(1703), + [aux_sym_cmd_identifier_token12] = ACTIONS(1701), + [aux_sym_cmd_identifier_token13] = ACTIONS(1701), + [aux_sym_cmd_identifier_token14] = ACTIONS(1701), + [aux_sym_cmd_identifier_token15] = ACTIONS(1701), + [aux_sym_cmd_identifier_token16] = ACTIONS(1703), + [aux_sym_cmd_identifier_token17] = ACTIONS(1703), + [aux_sym_cmd_identifier_token18] = ACTIONS(1703), + [aux_sym_cmd_identifier_token19] = ACTIONS(1703), + [aux_sym_cmd_identifier_token20] = ACTIONS(1703), + [aux_sym_cmd_identifier_token21] = ACTIONS(1703), + [aux_sym_cmd_identifier_token22] = ACTIONS(1703), + [aux_sym_cmd_identifier_token23] = ACTIONS(1703), + [aux_sym_cmd_identifier_token24] = ACTIONS(1703), + [aux_sym_cmd_identifier_token25] = ACTIONS(1703), + [aux_sym_cmd_identifier_token26] = ACTIONS(1703), + [aux_sym_cmd_identifier_token27] = ACTIONS(1703), + [aux_sym_cmd_identifier_token28] = ACTIONS(1703), + [aux_sym_cmd_identifier_token29] = ACTIONS(1703), + [aux_sym_cmd_identifier_token30] = ACTIONS(1703), + [aux_sym_cmd_identifier_token31] = ACTIONS(1703), + [aux_sym_cmd_identifier_token32] = ACTIONS(1703), + [aux_sym_cmd_identifier_token33] = ACTIONS(1703), + [aux_sym_cmd_identifier_token34] = ACTIONS(1701), + [aux_sym_cmd_identifier_token35] = ACTIONS(1703), + [aux_sym_cmd_identifier_token36] = ACTIONS(1703), + [aux_sym_cmd_identifier_token37] = ACTIONS(1703), + [aux_sym_cmd_identifier_token38] = ACTIONS(1701), + [aux_sym_cmd_identifier_token39] = ACTIONS(1703), + [aux_sym_cmd_identifier_token40] = ACTIONS(1703), + [anon_sym_def] = ACTIONS(1701), + [anon_sym_export_DASHenv] = ACTIONS(1701), + [anon_sym_extern] = ACTIONS(1701), + [anon_sym_module] = ACTIONS(1701), + [anon_sym_use] = ACTIONS(1701), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_COMMA] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_break] = ACTIONS(1701), + [anon_sym_continue] = ACTIONS(1701), + [anon_sym_for] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1701), + [anon_sym_loop] = ACTIONS(1701), + [anon_sym_make] = ACTIONS(1701), + [anon_sym_while] = ACTIONS(1701), + [anon_sym_do] = ACTIONS(1701), + [anon_sym_if] = ACTIONS(1701), + [anon_sym_else] = ACTIONS(1701), + [anon_sym_match] = ACTIONS(1701), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_try] = ACTIONS(1701), + [anon_sym_catch] = ACTIONS(1701), + [anon_sym_return] = ACTIONS(1701), + [anon_sym_source] = ACTIONS(1701), + [anon_sym_source_DASHenv] = ACTIONS(1701), + [anon_sym_register] = ACTIONS(1701), + [anon_sym_hide] = ACTIONS(1701), + [anon_sym_hide_DASHenv] = ACTIONS(1701), + [anon_sym_overlay] = ACTIONS(1701), + [anon_sym_as] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(1713), + [aux_sym__immediate_decimal_token3] = ACTIONS(1715), + [aux_sym__immediate_decimal_token4] = ACTIONS(1717), + [aux_sym__immediate_decimal_token5] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1701), + [aux_sym__val_number_token5] = ACTIONS(1701), + [aux_sym__val_number_token6] = ACTIONS(1701), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [338] = { + [sym__expr_parenthesized_immediate] = STATE(731), + [sym__immediate_decimal] = STATE(732), + [sym_val_variable] = STATE(731), + [sym_comment] = STATE(338), + [anon_sym_export] = ACTIONS(1547), + [anon_sym_alias] = ACTIONS(1547), + [anon_sym_let] = ACTIONS(1547), + [anon_sym_let_DASHenv] = ACTIONS(1547), + [anon_sym_mut] = ACTIONS(1547), + [anon_sym_const] = ACTIONS(1547), + [aux_sym_cmd_identifier_token1] = ACTIONS(1547), + [aux_sym_cmd_identifier_token2] = ACTIONS(1557), + [aux_sym_cmd_identifier_token3] = ACTIONS(1557), + [aux_sym_cmd_identifier_token4] = ACTIONS(1557), + [aux_sym_cmd_identifier_token5] = ACTIONS(1557), + [aux_sym_cmd_identifier_token6] = ACTIONS(1557), + [aux_sym_cmd_identifier_token7] = ACTIONS(1557), + [aux_sym_cmd_identifier_token8] = ACTIONS(1547), + [aux_sym_cmd_identifier_token9] = ACTIONS(1547), + [aux_sym_cmd_identifier_token10] = ACTIONS(1557), + [aux_sym_cmd_identifier_token11] = ACTIONS(1557), + [aux_sym_cmd_identifier_token12] = ACTIONS(1547), + [aux_sym_cmd_identifier_token13] = ACTIONS(1547), + [aux_sym_cmd_identifier_token14] = ACTIONS(1547), + [aux_sym_cmd_identifier_token15] = ACTIONS(1547), + [aux_sym_cmd_identifier_token16] = ACTIONS(1557), + [aux_sym_cmd_identifier_token17] = ACTIONS(1557), + [aux_sym_cmd_identifier_token18] = ACTIONS(1557), + [aux_sym_cmd_identifier_token19] = ACTIONS(1557), + [aux_sym_cmd_identifier_token20] = ACTIONS(1557), + [aux_sym_cmd_identifier_token21] = ACTIONS(1557), + [aux_sym_cmd_identifier_token22] = ACTIONS(1557), + [aux_sym_cmd_identifier_token23] = ACTIONS(1557), + [aux_sym_cmd_identifier_token24] = ACTIONS(1557), + [aux_sym_cmd_identifier_token25] = ACTIONS(1557), + [aux_sym_cmd_identifier_token26] = ACTIONS(1557), + [aux_sym_cmd_identifier_token27] = ACTIONS(1557), + [aux_sym_cmd_identifier_token28] = ACTIONS(1557), + [aux_sym_cmd_identifier_token29] = ACTIONS(1557), + [aux_sym_cmd_identifier_token30] = ACTIONS(1557), + [aux_sym_cmd_identifier_token31] = ACTIONS(1557), + [aux_sym_cmd_identifier_token32] = ACTIONS(1557), + [aux_sym_cmd_identifier_token33] = ACTIONS(1557), + [aux_sym_cmd_identifier_token34] = ACTIONS(1547), + [aux_sym_cmd_identifier_token35] = ACTIONS(1557), + [aux_sym_cmd_identifier_token36] = ACTIONS(1557), + [aux_sym_cmd_identifier_token37] = ACTIONS(1557), + [aux_sym_cmd_identifier_token38] = ACTIONS(1547), + [aux_sym_cmd_identifier_token39] = ACTIONS(1557), + [aux_sym_cmd_identifier_token40] = ACTIONS(1557), + [anon_sym_def] = ACTIONS(1547), + [anon_sym_export_DASHenv] = ACTIONS(1547), + [anon_sym_extern] = ACTIONS(1547), + [anon_sym_module] = ACTIONS(1547), + [anon_sym_use] = ACTIONS(1547), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_COMMA] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_break] = ACTIONS(1547), + [anon_sym_continue] = ACTIONS(1547), + [anon_sym_for] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1547), + [anon_sym_loop] = ACTIONS(1547), + [anon_sym_make] = ACTIONS(1547), + [anon_sym_while] = ACTIONS(1547), + [anon_sym_do] = ACTIONS(1547), + [anon_sym_if] = ACTIONS(1547), + [anon_sym_else] = ACTIONS(1547), + [anon_sym_match] = ACTIONS(1547), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_try] = ACTIONS(1547), + [anon_sym_catch] = ACTIONS(1547), + [anon_sym_return] = ACTIONS(1547), + [anon_sym_source] = ACTIONS(1547), + [anon_sym_source_DASHenv] = ACTIONS(1547), + [anon_sym_register] = ACTIONS(1547), + [anon_sym_hide] = ACTIONS(1547), + [anon_sym_hide_DASHenv] = ACTIONS(1547), + [anon_sym_overlay] = ACTIONS(1547), + [anon_sym_as] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(1713), + [aux_sym__immediate_decimal_token3] = ACTIONS(1715), + [aux_sym__immediate_decimal_token4] = ACTIONS(1717), + [aux_sym__immediate_decimal_token5] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1547), + [aux_sym__val_number_token5] = ACTIONS(1547), + [aux_sym__val_number_token6] = ACTIONS(1547), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [339] = { + [sym__expr_parenthesized_immediate] = STATE(746), + [sym__immediate_decimal] = STATE(672), + [sym_val_variable] = STATE(746), + [sym_comment] = STATE(339), + [anon_sym_export] = ACTIONS(1709), + [anon_sym_alias] = ACTIONS(1709), + [anon_sym_let] = ACTIONS(1709), + [anon_sym_let_DASHenv] = ACTIONS(1709), + [anon_sym_mut] = ACTIONS(1709), + [anon_sym_const] = ACTIONS(1709), + [aux_sym_cmd_identifier_token1] = ACTIONS(1709), + [aux_sym_cmd_identifier_token2] = ACTIONS(1711), + [aux_sym_cmd_identifier_token3] = ACTIONS(1711), + [aux_sym_cmd_identifier_token4] = ACTIONS(1711), + [aux_sym_cmd_identifier_token5] = ACTIONS(1711), + [aux_sym_cmd_identifier_token6] = ACTIONS(1711), + [aux_sym_cmd_identifier_token7] = ACTIONS(1711), + [aux_sym_cmd_identifier_token8] = ACTIONS(1709), + [aux_sym_cmd_identifier_token9] = ACTIONS(1709), + [aux_sym_cmd_identifier_token10] = ACTIONS(1711), + [aux_sym_cmd_identifier_token11] = ACTIONS(1711), + [aux_sym_cmd_identifier_token12] = ACTIONS(1709), + [aux_sym_cmd_identifier_token13] = ACTIONS(1709), + [aux_sym_cmd_identifier_token14] = ACTIONS(1709), + [aux_sym_cmd_identifier_token15] = ACTIONS(1709), + [aux_sym_cmd_identifier_token16] = ACTIONS(1711), + [aux_sym_cmd_identifier_token17] = ACTIONS(1711), + [aux_sym_cmd_identifier_token18] = ACTIONS(1711), + [aux_sym_cmd_identifier_token19] = ACTIONS(1711), + [aux_sym_cmd_identifier_token20] = ACTIONS(1711), + [aux_sym_cmd_identifier_token21] = ACTIONS(1711), + [aux_sym_cmd_identifier_token22] = ACTIONS(1711), + [aux_sym_cmd_identifier_token23] = ACTIONS(1711), + [aux_sym_cmd_identifier_token24] = ACTIONS(1711), + [aux_sym_cmd_identifier_token25] = ACTIONS(1711), + [aux_sym_cmd_identifier_token26] = ACTIONS(1711), + [aux_sym_cmd_identifier_token27] = ACTIONS(1711), + [aux_sym_cmd_identifier_token28] = ACTIONS(1711), + [aux_sym_cmd_identifier_token29] = ACTIONS(1711), + [aux_sym_cmd_identifier_token30] = ACTIONS(1711), + [aux_sym_cmd_identifier_token31] = ACTIONS(1711), + [aux_sym_cmd_identifier_token32] = ACTIONS(1711), + [aux_sym_cmd_identifier_token33] = ACTIONS(1711), + [aux_sym_cmd_identifier_token34] = ACTIONS(1709), + [aux_sym_cmd_identifier_token35] = ACTIONS(1711), + [aux_sym_cmd_identifier_token36] = ACTIONS(1711), + [aux_sym_cmd_identifier_token37] = ACTIONS(1711), + [aux_sym_cmd_identifier_token38] = ACTIONS(1709), + [aux_sym_cmd_identifier_token39] = ACTIONS(1711), + [aux_sym_cmd_identifier_token40] = ACTIONS(1711), + [anon_sym_def] = ACTIONS(1709), + [anon_sym_export_DASHenv] = ACTIONS(1709), + [anon_sym_extern] = ACTIONS(1709), + [anon_sym_module] = ACTIONS(1709), + [anon_sym_use] = ACTIONS(1709), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_COMMA] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_break] = ACTIONS(1709), + [anon_sym_continue] = ACTIONS(1709), + [anon_sym_for] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1709), + [anon_sym_loop] = ACTIONS(1709), + [anon_sym_make] = ACTIONS(1709), + [anon_sym_while] = ACTIONS(1709), + [anon_sym_do] = ACTIONS(1709), + [anon_sym_if] = ACTIONS(1709), + [anon_sym_else] = ACTIONS(1709), + [anon_sym_match] = ACTIONS(1709), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_try] = ACTIONS(1709), + [anon_sym_catch] = ACTIONS(1709), + [anon_sym_return] = ACTIONS(1709), + [anon_sym_source] = ACTIONS(1709), + [anon_sym_source_DASHenv] = ACTIONS(1709), + [anon_sym_register] = ACTIONS(1709), + [anon_sym_hide] = ACTIONS(1709), + [anon_sym_hide_DASHenv] = ACTIONS(1709), + [anon_sym_overlay] = ACTIONS(1709), + [anon_sym_as] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1711), + [aux_sym__immediate_decimal_token1] = ACTIONS(1713), + [aux_sym__immediate_decimal_token3] = ACTIONS(1715), + [aux_sym__immediate_decimal_token4] = ACTIONS(1717), + [aux_sym__immediate_decimal_token5] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1709), + [aux_sym__val_number_token5] = ACTIONS(1709), + [aux_sym__val_number_token6] = ACTIONS(1709), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), + }, + [340] = { + [sym_cell_path] = STATE(440), + [sym_path] = STATE(420), + [sym_comment] = STATE(340), + [aux_sym_cell_path_repeat1] = STATE(355), + [anon_sym_export] = ACTIONS(1721), + [anon_sym_alias] = ACTIONS(1721), + [anon_sym_let] = ACTIONS(1721), + [anon_sym_let_DASHenv] = ACTIONS(1721), + [anon_sym_mut] = ACTIONS(1721), + [anon_sym_const] = ACTIONS(1721), + [aux_sym_cmd_identifier_token1] = ACTIONS(1721), + [aux_sym_cmd_identifier_token2] = ACTIONS(1721), + [aux_sym_cmd_identifier_token3] = ACTIONS(1721), + [aux_sym_cmd_identifier_token4] = ACTIONS(1721), + [aux_sym_cmd_identifier_token5] = ACTIONS(1721), + [aux_sym_cmd_identifier_token6] = ACTIONS(1721), + [aux_sym_cmd_identifier_token7] = ACTIONS(1721), + [aux_sym_cmd_identifier_token8] = ACTIONS(1721), + [aux_sym_cmd_identifier_token9] = ACTIONS(1721), + [aux_sym_cmd_identifier_token10] = ACTIONS(1721), + [aux_sym_cmd_identifier_token11] = ACTIONS(1721), + [aux_sym_cmd_identifier_token12] = ACTIONS(1721), + [aux_sym_cmd_identifier_token13] = ACTIONS(1721), + [aux_sym_cmd_identifier_token14] = ACTIONS(1721), + [aux_sym_cmd_identifier_token15] = ACTIONS(1721), + [aux_sym_cmd_identifier_token16] = ACTIONS(1721), + [aux_sym_cmd_identifier_token17] = ACTIONS(1721), + [aux_sym_cmd_identifier_token18] = ACTIONS(1721), + [aux_sym_cmd_identifier_token19] = ACTIONS(1721), + [aux_sym_cmd_identifier_token20] = ACTIONS(1721), + [aux_sym_cmd_identifier_token21] = ACTIONS(1721), + [aux_sym_cmd_identifier_token22] = ACTIONS(1721), + [aux_sym_cmd_identifier_token23] = ACTIONS(1721), + [aux_sym_cmd_identifier_token24] = ACTIONS(1721), + [aux_sym_cmd_identifier_token25] = ACTIONS(1721), + [aux_sym_cmd_identifier_token26] = ACTIONS(1721), + [aux_sym_cmd_identifier_token27] = ACTIONS(1721), + [aux_sym_cmd_identifier_token28] = ACTIONS(1721), + [aux_sym_cmd_identifier_token29] = ACTIONS(1721), + [aux_sym_cmd_identifier_token30] = ACTIONS(1721), + [aux_sym_cmd_identifier_token31] = ACTIONS(1721), + [aux_sym_cmd_identifier_token32] = ACTIONS(1721), + [aux_sym_cmd_identifier_token33] = ACTIONS(1721), + [aux_sym_cmd_identifier_token34] = ACTIONS(1721), + [aux_sym_cmd_identifier_token35] = ACTIONS(1721), + [aux_sym_cmd_identifier_token36] = ACTIONS(1721), + [aux_sym_cmd_identifier_token37] = ACTIONS(1721), + [aux_sym_cmd_identifier_token38] = ACTIONS(1721), + [aux_sym_cmd_identifier_token39] = ACTIONS(1721), + [aux_sym_cmd_identifier_token40] = ACTIONS(1721), + [anon_sym_def] = ACTIONS(1721), + [anon_sym_export_DASHenv] = ACTIONS(1721), + [anon_sym_extern] = ACTIONS(1721), + [anon_sym_module] = ACTIONS(1721), + [anon_sym_use] = ACTIONS(1721), + [anon_sym_LPAREN] = ACTIONS(1721), + [anon_sym_COMMA] = ACTIONS(1721), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_error] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1721), + [anon_sym_break] = ACTIONS(1721), + [anon_sym_continue] = ACTIONS(1721), + [anon_sym_for] = ACTIONS(1721), + [anon_sym_in2] = ACTIONS(1721), + [anon_sym_loop] = ACTIONS(1721), + [anon_sym_make] = ACTIONS(1721), + [anon_sym_while] = ACTIONS(1721), + [anon_sym_do] = ACTIONS(1721), + [anon_sym_if] = ACTIONS(1721), + [anon_sym_else] = ACTIONS(1721), + [anon_sym_match] = ACTIONS(1721), + [anon_sym_RBRACE] = ACTIONS(1721), + [anon_sym_try] = ACTIONS(1721), + [anon_sym_catch] = ACTIONS(1721), + [anon_sym_return] = ACTIONS(1721), + [anon_sym_source] = ACTIONS(1721), + [anon_sym_source_DASHenv] = ACTIONS(1721), + [anon_sym_register] = ACTIONS(1721), + [anon_sym_hide] = ACTIONS(1721), + [anon_sym_hide_DASHenv] = ACTIONS(1721), + [anon_sym_overlay] = ACTIONS(1721), + [anon_sym_as] = ACTIONS(1721), + [anon_sym_PLUS2] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1721), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1721), + [aux_sym__val_number_decimal_token3] = ACTIONS(1721), + [aux_sym__val_number_decimal_token4] = ACTIONS(1721), + [aux_sym__val_number_token1] = ACTIONS(1721), + [aux_sym__val_number_token2] = ACTIONS(1721), + [aux_sym__val_number_token3] = ACTIONS(1721), + [aux_sym__val_number_token4] = ACTIONS(1721), + [aux_sym__val_number_token5] = ACTIONS(1721), + [aux_sym__val_number_token6] = ACTIONS(1721), + [anon_sym_DQUOTE] = ACTIONS(1721), + [sym__str_single_quotes] = ACTIONS(1721), + [sym__str_back_ticks] = ACTIONS(1721), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1721), + [sym__entry_separator] = ACTIONS(1723), + [anon_sym_DOT2] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1723), + }, + [341] = { + [sym_comment] = STATE(341), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_alias] = ACTIONS(1597), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_let_DASHenv] = ACTIONS(1597), + [anon_sym_mut] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [aux_sym_cmd_identifier_token1] = ACTIONS(1597), + [aux_sym_cmd_identifier_token2] = ACTIONS(1597), + [aux_sym_cmd_identifier_token3] = ACTIONS(1597), + [aux_sym_cmd_identifier_token4] = ACTIONS(1597), + [aux_sym_cmd_identifier_token5] = ACTIONS(1597), + [aux_sym_cmd_identifier_token6] = ACTIONS(1597), + [aux_sym_cmd_identifier_token7] = ACTIONS(1597), + [aux_sym_cmd_identifier_token8] = ACTIONS(1597), + [aux_sym_cmd_identifier_token9] = ACTIONS(1597), + [aux_sym_cmd_identifier_token10] = ACTIONS(1597), + [aux_sym_cmd_identifier_token11] = ACTIONS(1597), + [aux_sym_cmd_identifier_token12] = ACTIONS(1597), + [aux_sym_cmd_identifier_token13] = ACTIONS(1597), + [aux_sym_cmd_identifier_token14] = ACTIONS(1597), + [aux_sym_cmd_identifier_token15] = ACTIONS(1597), + [aux_sym_cmd_identifier_token16] = ACTIONS(1597), + [aux_sym_cmd_identifier_token17] = ACTIONS(1597), + [aux_sym_cmd_identifier_token18] = ACTIONS(1597), + [aux_sym_cmd_identifier_token19] = ACTIONS(1597), + [aux_sym_cmd_identifier_token20] = ACTIONS(1597), + [aux_sym_cmd_identifier_token21] = ACTIONS(1597), + [aux_sym_cmd_identifier_token22] = ACTIONS(1597), + [aux_sym_cmd_identifier_token23] = ACTIONS(1597), + [aux_sym_cmd_identifier_token24] = ACTIONS(1597), + [aux_sym_cmd_identifier_token25] = ACTIONS(1597), + [aux_sym_cmd_identifier_token26] = ACTIONS(1597), + [aux_sym_cmd_identifier_token27] = ACTIONS(1597), + [aux_sym_cmd_identifier_token28] = ACTIONS(1597), + [aux_sym_cmd_identifier_token29] = ACTIONS(1597), + [aux_sym_cmd_identifier_token30] = ACTIONS(1597), + [aux_sym_cmd_identifier_token31] = ACTIONS(1597), + [aux_sym_cmd_identifier_token32] = ACTIONS(1597), + [aux_sym_cmd_identifier_token33] = ACTIONS(1597), + [aux_sym_cmd_identifier_token34] = ACTIONS(1597), + [aux_sym_cmd_identifier_token35] = ACTIONS(1597), + [aux_sym_cmd_identifier_token36] = ACTIONS(1597), + [aux_sym_cmd_identifier_token37] = ACTIONS(1597), + [aux_sym_cmd_identifier_token38] = ACTIONS(1597), + [aux_sym_cmd_identifier_token39] = ACTIONS(1597), + [aux_sym_cmd_identifier_token40] = ACTIONS(1597), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_export_DASHenv] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1597), + [anon_sym_use] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_error] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_make] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_catch] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_source] = ACTIONS(1597), + [anon_sym_source_DASHenv] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_hide] = ACTIONS(1597), + [anon_sym_hide_DASHenv] = ACTIONS(1597), + [anon_sym_overlay] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1597), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1597), + [aux_sym__val_number_decimal_token3] = ACTIONS(1597), + [aux_sym__val_number_decimal_token4] = ACTIONS(1597), + [aux_sym__val_number_token1] = ACTIONS(1597), + [aux_sym__val_number_token2] = ACTIONS(1597), + [aux_sym__val_number_token3] = ACTIONS(1597), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1597), + [sym__str_single_quotes] = ACTIONS(1597), + [sym__str_back_ticks] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1597), + [sym__entry_separator] = ACTIONS(1599), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1599), + }, + [342] = { + [sym_cell_path] = STATE(451), + [sym_path] = STATE(420), + [sym_comment] = STATE(342), + [aux_sym_cell_path_repeat1] = STATE(355), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(935), + [aux_sym_cmd_identifier_token3] = ACTIONS(935), + [aux_sym_cmd_identifier_token4] = ACTIONS(935), + [aux_sym_cmd_identifier_token5] = ACTIONS(935), + [aux_sym_cmd_identifier_token6] = ACTIONS(935), + [aux_sym_cmd_identifier_token7] = ACTIONS(935), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(935), + [aux_sym_cmd_identifier_token11] = ACTIONS(935), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(935), + [aux_sym_cmd_identifier_token17] = ACTIONS(935), + [aux_sym_cmd_identifier_token18] = ACTIONS(935), + [aux_sym_cmd_identifier_token19] = ACTIONS(935), + [aux_sym_cmd_identifier_token20] = ACTIONS(935), + [aux_sym_cmd_identifier_token21] = ACTIONS(935), + [aux_sym_cmd_identifier_token22] = ACTIONS(935), + [aux_sym_cmd_identifier_token23] = ACTIONS(935), + [aux_sym_cmd_identifier_token24] = ACTIONS(935), + [aux_sym_cmd_identifier_token25] = ACTIONS(935), + [aux_sym_cmd_identifier_token26] = ACTIONS(935), + [aux_sym_cmd_identifier_token27] = ACTIONS(935), + [aux_sym_cmd_identifier_token28] = ACTIONS(935), + [aux_sym_cmd_identifier_token29] = ACTIONS(935), + [aux_sym_cmd_identifier_token30] = ACTIONS(935), + [aux_sym_cmd_identifier_token31] = ACTIONS(935), + [aux_sym_cmd_identifier_token32] = ACTIONS(935), + [aux_sym_cmd_identifier_token33] = ACTIONS(935), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(935), + [aux_sym_cmd_identifier_token36] = ACTIONS(935), + [aux_sym_cmd_identifier_token37] = ACTIONS(935), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(935), + [aux_sym_cmd_identifier_token40] = ACTIONS(935), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(935), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(935), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(935), + [aux_sym__val_number_decimal_token3] = ACTIONS(935), + [aux_sym__val_number_decimal_token4] = ACTIONS(935), + [aux_sym__val_number_token1] = ACTIONS(935), + [aux_sym__val_number_token2] = ACTIONS(935), + [aux_sym__val_number_token3] = ACTIONS(935), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(935), + [sym__str_single_quotes] = ACTIONS(935), + [sym__str_back_ticks] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), + [sym__entry_separator] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(1725), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(937), + }, + [343] = { + [sym_comment] = STATE(343), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_alias] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_let_DASHenv] = ACTIONS(1685), + [anon_sym_mut] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [aux_sym_cmd_identifier_token1] = ACTIONS(1685), + [aux_sym_cmd_identifier_token2] = ACTIONS(1685), + [aux_sym_cmd_identifier_token3] = ACTIONS(1685), + [aux_sym_cmd_identifier_token4] = ACTIONS(1685), + [aux_sym_cmd_identifier_token5] = ACTIONS(1685), + [aux_sym_cmd_identifier_token6] = ACTIONS(1685), + [aux_sym_cmd_identifier_token7] = ACTIONS(1685), + [aux_sym_cmd_identifier_token8] = ACTIONS(1685), + [aux_sym_cmd_identifier_token9] = ACTIONS(1685), + [aux_sym_cmd_identifier_token10] = ACTIONS(1685), + [aux_sym_cmd_identifier_token11] = ACTIONS(1685), + [aux_sym_cmd_identifier_token12] = ACTIONS(1685), + [aux_sym_cmd_identifier_token13] = ACTIONS(1685), + [aux_sym_cmd_identifier_token14] = ACTIONS(1685), + [aux_sym_cmd_identifier_token15] = ACTIONS(1685), + [aux_sym_cmd_identifier_token16] = ACTIONS(1685), + [aux_sym_cmd_identifier_token17] = ACTIONS(1685), + [aux_sym_cmd_identifier_token18] = ACTIONS(1685), + [aux_sym_cmd_identifier_token19] = ACTIONS(1685), + [aux_sym_cmd_identifier_token20] = ACTIONS(1685), + [aux_sym_cmd_identifier_token21] = ACTIONS(1685), + [aux_sym_cmd_identifier_token22] = ACTIONS(1685), + [aux_sym_cmd_identifier_token23] = ACTIONS(1685), + [aux_sym_cmd_identifier_token24] = ACTIONS(1685), + [aux_sym_cmd_identifier_token25] = ACTIONS(1685), + [aux_sym_cmd_identifier_token26] = ACTIONS(1685), + [aux_sym_cmd_identifier_token27] = ACTIONS(1685), + [aux_sym_cmd_identifier_token28] = ACTIONS(1685), + [aux_sym_cmd_identifier_token29] = ACTIONS(1685), + [aux_sym_cmd_identifier_token30] = ACTIONS(1685), + [aux_sym_cmd_identifier_token31] = ACTIONS(1685), + [aux_sym_cmd_identifier_token32] = ACTIONS(1685), + [aux_sym_cmd_identifier_token33] = ACTIONS(1685), + [aux_sym_cmd_identifier_token34] = ACTIONS(1685), + [aux_sym_cmd_identifier_token35] = ACTIONS(1685), + [aux_sym_cmd_identifier_token36] = ACTIONS(1685), + [aux_sym_cmd_identifier_token37] = ACTIONS(1685), + [aux_sym_cmd_identifier_token38] = ACTIONS(1685), + [aux_sym_cmd_identifier_token39] = ACTIONS(1685), + [aux_sym_cmd_identifier_token40] = ACTIONS(1685), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_export_DASHenv] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_error] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_make] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_else] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_catch] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_source] = ACTIONS(1685), + [anon_sym_source_DASHenv] = ACTIONS(1685), + [anon_sym_register] = ACTIONS(1685), + [anon_sym_hide] = ACTIONS(1685), + [anon_sym_hide_DASHenv] = ACTIONS(1685), + [anon_sym_overlay] = ACTIONS(1685), + [anon_sym_as] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1685), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1685), + [aux_sym__val_number_decimal_token3] = ACTIONS(1685), + [aux_sym__val_number_decimal_token4] = ACTIONS(1685), + [aux_sym__val_number_token1] = ACTIONS(1685), + [aux_sym__val_number_token2] = ACTIONS(1685), + [aux_sym__val_number_token3] = ACTIONS(1685), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1685), + [sym__str_single_quotes] = ACTIONS(1685), + [sym__str_back_ticks] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1685), + [sym__entry_separator] = ACTIONS(1687), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1687), + }, + [344] = { + [sym_comment] = STATE(344), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1727), + [aux_sym_cmd_identifier_token3] = ACTIONS(1727), + [aux_sym_cmd_identifier_token4] = ACTIONS(1727), + [aux_sym_cmd_identifier_token5] = ACTIONS(1727), + [aux_sym_cmd_identifier_token6] = ACTIONS(1727), + [aux_sym_cmd_identifier_token7] = ACTIONS(1727), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1727), + [aux_sym_cmd_identifier_token11] = ACTIONS(1727), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1727), + [aux_sym_cmd_identifier_token17] = ACTIONS(1727), + [aux_sym_cmd_identifier_token18] = ACTIONS(1727), + [aux_sym_cmd_identifier_token19] = ACTIONS(1727), + [aux_sym_cmd_identifier_token20] = ACTIONS(1727), + [aux_sym_cmd_identifier_token21] = ACTIONS(1727), + [aux_sym_cmd_identifier_token22] = ACTIONS(1727), + [aux_sym_cmd_identifier_token23] = ACTIONS(1727), + [aux_sym_cmd_identifier_token24] = ACTIONS(1727), + [aux_sym_cmd_identifier_token25] = ACTIONS(1727), + [aux_sym_cmd_identifier_token26] = ACTIONS(1727), + [aux_sym_cmd_identifier_token27] = ACTIONS(1727), + [aux_sym_cmd_identifier_token28] = ACTIONS(1727), + [aux_sym_cmd_identifier_token29] = ACTIONS(1727), + [aux_sym_cmd_identifier_token30] = ACTIONS(1727), + [aux_sym_cmd_identifier_token31] = ACTIONS(1727), + [aux_sym_cmd_identifier_token32] = ACTIONS(1727), + [aux_sym_cmd_identifier_token33] = ACTIONS(1727), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1727), + [aux_sym_cmd_identifier_token36] = ACTIONS(1727), + [aux_sym_cmd_identifier_token37] = ACTIONS(1727), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1727), + [aux_sym_cmd_identifier_token40] = ACTIONS(1727), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_COMMA] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1727), + [aux_sym__val_number_decimal_token3] = ACTIONS(1727), + [aux_sym__val_number_decimal_token4] = ACTIONS(1727), + [aux_sym__val_number_token1] = ACTIONS(1727), + [aux_sym__val_number_token2] = ACTIONS(1727), + [aux_sym__val_number_token3] = ACTIONS(1727), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1727), + [sym__str_single_quotes] = ACTIONS(1727), + [sym__str_back_ticks] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [sym__entry_separator] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [345] = { + [sym_comment] = STATE(345), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1607), + [aux_sym_cmd_identifier_token3] = ACTIONS(1607), + [aux_sym_cmd_identifier_token4] = ACTIONS(1607), + [aux_sym_cmd_identifier_token5] = ACTIONS(1607), + [aux_sym_cmd_identifier_token6] = ACTIONS(1607), + [aux_sym_cmd_identifier_token7] = ACTIONS(1607), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1607), + [aux_sym_cmd_identifier_token11] = ACTIONS(1607), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1607), + [aux_sym_cmd_identifier_token17] = ACTIONS(1607), + [aux_sym_cmd_identifier_token18] = ACTIONS(1607), + [aux_sym_cmd_identifier_token19] = ACTIONS(1607), + [aux_sym_cmd_identifier_token20] = ACTIONS(1607), + [aux_sym_cmd_identifier_token21] = ACTIONS(1607), + [aux_sym_cmd_identifier_token22] = ACTIONS(1607), + [aux_sym_cmd_identifier_token23] = ACTIONS(1607), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1607), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1607), + [aux_sym_cmd_identifier_token28] = ACTIONS(1607), + [aux_sym_cmd_identifier_token29] = ACTIONS(1607), + [aux_sym_cmd_identifier_token30] = ACTIONS(1607), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1607), + [aux_sym_cmd_identifier_token37] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_make] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(1661), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1605), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [346] = { + [sym_comment] = STATE(346), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(1735), + [aux_sym__immediate_decimal_token2] = ACTIONS(1737), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [347] = { + [sym__expr_parenthesized_immediate] = STATE(7267), + [sym_comment] = STATE(347), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [aux_sym_cmd_identifier_token37] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(1739), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1741), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1741), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(1743), + [sym_duration_unit] = ACTIONS(1745), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [348] = { + [sym_comment] = STATE(348), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1753), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [349] = { + [sym_cell_path] = STATE(441), + [sym_path] = STATE(420), + [sym_comment] = STATE(349), + [aux_sym_cell_path_repeat1] = STATE(355), [anon_sym_export] = ACTIONS(1757), [anon_sym_alias] = ACTIONS(1757), [anon_sym_let] = ACTIONS(1757), @@ -119147,6 +118980,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1757), [anon_sym_use] = ACTIONS(1757), [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1757), [anon_sym_DOLLAR] = ACTIONS(1757), [anon_sym_error] = ACTIONS(1757), [anon_sym_DASH2] = ACTIONS(1757), @@ -119172,14 +119006,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1757), [anon_sym_overlay] = ACTIONS(1757), [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), [anon_sym_PLUS2] = ACTIONS(1757), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(1761), - [aux_sym__immediate_decimal_token2] = ACTIONS(1763), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), [aux_sym__val_number_decimal_token1] = ACTIONS(1757), [aux_sym__val_number_decimal_token2] = ACTIONS(1757), @@ -119196,439 +119027,338 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1757), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), [sym__entry_separator] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), + [anon_sym_DOT2] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1759), }, - [352] = { - [sym_comment] = STATE(352), - [anon_sym_export] = ACTIONS(1667), - [anon_sym_alias] = ACTIONS(1667), - [anon_sym_let] = ACTIONS(1667), - [anon_sym_let_DASHenv] = ACTIONS(1667), - [anon_sym_mut] = ACTIONS(1667), - [anon_sym_const] = ACTIONS(1667), - [aux_sym_cmd_identifier_token1] = ACTIONS(1667), - [aux_sym_cmd_identifier_token2] = ACTIONS(1669), - [aux_sym_cmd_identifier_token3] = ACTIONS(1669), - [aux_sym_cmd_identifier_token4] = ACTIONS(1669), - [aux_sym_cmd_identifier_token5] = ACTIONS(1669), - [aux_sym_cmd_identifier_token6] = ACTIONS(1669), - [aux_sym_cmd_identifier_token7] = ACTIONS(1669), - [aux_sym_cmd_identifier_token8] = ACTIONS(1667), - [aux_sym_cmd_identifier_token9] = ACTIONS(1667), - [aux_sym_cmd_identifier_token10] = ACTIONS(1669), - [aux_sym_cmd_identifier_token11] = ACTIONS(1669), - [aux_sym_cmd_identifier_token12] = ACTIONS(1667), - [aux_sym_cmd_identifier_token13] = ACTIONS(1667), - [aux_sym_cmd_identifier_token14] = ACTIONS(1667), - [aux_sym_cmd_identifier_token15] = ACTIONS(1667), - [aux_sym_cmd_identifier_token16] = ACTIONS(1669), - [aux_sym_cmd_identifier_token17] = ACTIONS(1669), - [aux_sym_cmd_identifier_token18] = ACTIONS(1669), - [aux_sym_cmd_identifier_token19] = ACTIONS(1669), - [aux_sym_cmd_identifier_token20] = ACTIONS(1669), - [aux_sym_cmd_identifier_token21] = ACTIONS(1669), - [aux_sym_cmd_identifier_token22] = ACTIONS(1669), - [aux_sym_cmd_identifier_token23] = ACTIONS(1669), - [aux_sym_cmd_identifier_token24] = ACTIONS(1669), - [aux_sym_cmd_identifier_token25] = ACTIONS(1669), - [aux_sym_cmd_identifier_token26] = ACTIONS(1669), - [aux_sym_cmd_identifier_token27] = ACTIONS(1669), - [aux_sym_cmd_identifier_token28] = ACTIONS(1669), - [aux_sym_cmd_identifier_token29] = ACTIONS(1669), - [aux_sym_cmd_identifier_token30] = ACTIONS(1669), - [aux_sym_cmd_identifier_token31] = ACTIONS(1669), - [aux_sym_cmd_identifier_token32] = ACTIONS(1669), - [aux_sym_cmd_identifier_token33] = ACTIONS(1669), - [aux_sym_cmd_identifier_token34] = ACTIONS(1667), - [aux_sym_cmd_identifier_token35] = ACTIONS(1669), - [aux_sym_cmd_identifier_token36] = ACTIONS(1669), - [aux_sym_cmd_identifier_token37] = ACTIONS(1669), - [aux_sym_cmd_identifier_token38] = ACTIONS(1667), - [aux_sym_cmd_identifier_token39] = ACTIONS(1669), - [aux_sym_cmd_identifier_token40] = ACTIONS(1669), - [anon_sym_def] = ACTIONS(1667), - [anon_sym_export_DASHenv] = ACTIONS(1667), - [anon_sym_extern] = ACTIONS(1667), - [anon_sym_module] = ACTIONS(1667), - [anon_sym_use] = ACTIONS(1667), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1669), - [anon_sym_error] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_break] = ACTIONS(1667), - [anon_sym_continue] = ACTIONS(1667), - [anon_sym_for] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_loop] = ACTIONS(1667), - [anon_sym_make] = ACTIONS(1667), - [anon_sym_while] = ACTIONS(1667), - [anon_sym_do] = ACTIONS(1667), - [anon_sym_if] = ACTIONS(1667), - [anon_sym_else] = ACTIONS(1667), - [anon_sym_match] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_try] = ACTIONS(1667), - [anon_sym_catch] = ACTIONS(1667), - [anon_sym_return] = ACTIONS(1667), - [anon_sym_source] = ACTIONS(1667), - [anon_sym_source_DASHenv] = ACTIONS(1667), - [anon_sym_register] = ACTIONS(1667), - [anon_sym_hide] = ACTIONS(1667), - [anon_sym_hide_DASHenv] = ACTIONS(1667), - [anon_sym_overlay] = ACTIONS(1667), - [anon_sym_as] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1667), - [aux_sym__val_number_token5] = ACTIONS(1667), - [aux_sym__val_number_token6] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1667), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1669), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), - }, - [353] = { - [sym_comment] = STATE(353), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1769), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [350] = { + [sym_comment] = STATE(350), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_alias] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_let_DASHenv] = ACTIONS(1685), + [anon_sym_mut] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [aux_sym_cmd_identifier_token1] = ACTIONS(1685), + [aux_sym_cmd_identifier_token2] = ACTIONS(1687), + [aux_sym_cmd_identifier_token3] = ACTIONS(1687), + [aux_sym_cmd_identifier_token4] = ACTIONS(1687), + [aux_sym_cmd_identifier_token5] = ACTIONS(1687), + [aux_sym_cmd_identifier_token6] = ACTIONS(1687), + [aux_sym_cmd_identifier_token7] = ACTIONS(1687), + [aux_sym_cmd_identifier_token8] = ACTIONS(1685), + [aux_sym_cmd_identifier_token9] = ACTIONS(1685), + [aux_sym_cmd_identifier_token10] = ACTIONS(1687), + [aux_sym_cmd_identifier_token11] = ACTIONS(1687), + [aux_sym_cmd_identifier_token12] = ACTIONS(1685), + [aux_sym_cmd_identifier_token13] = ACTIONS(1685), + [aux_sym_cmd_identifier_token14] = ACTIONS(1685), + [aux_sym_cmd_identifier_token15] = ACTIONS(1685), + [aux_sym_cmd_identifier_token16] = ACTIONS(1687), + [aux_sym_cmd_identifier_token17] = ACTIONS(1687), + [aux_sym_cmd_identifier_token18] = ACTIONS(1687), + [aux_sym_cmd_identifier_token19] = ACTIONS(1687), + [aux_sym_cmd_identifier_token20] = ACTIONS(1687), + [aux_sym_cmd_identifier_token21] = ACTIONS(1687), + [aux_sym_cmd_identifier_token22] = ACTIONS(1687), + [aux_sym_cmd_identifier_token23] = ACTIONS(1687), + [aux_sym_cmd_identifier_token24] = ACTIONS(1687), + [aux_sym_cmd_identifier_token25] = ACTIONS(1687), + [aux_sym_cmd_identifier_token26] = ACTIONS(1687), + [aux_sym_cmd_identifier_token27] = ACTIONS(1687), + [aux_sym_cmd_identifier_token28] = ACTIONS(1687), + [aux_sym_cmd_identifier_token29] = ACTIONS(1687), + [aux_sym_cmd_identifier_token30] = ACTIONS(1687), + [aux_sym_cmd_identifier_token31] = ACTIONS(1687), + [aux_sym_cmd_identifier_token32] = ACTIONS(1687), + [aux_sym_cmd_identifier_token33] = ACTIONS(1687), + [aux_sym_cmd_identifier_token34] = ACTIONS(1685), + [aux_sym_cmd_identifier_token35] = ACTIONS(1687), + [aux_sym_cmd_identifier_token36] = ACTIONS(1687), + [aux_sym_cmd_identifier_token37] = ACTIONS(1687), + [aux_sym_cmd_identifier_token38] = ACTIONS(1685), + [aux_sym_cmd_identifier_token39] = ACTIONS(1687), + [aux_sym_cmd_identifier_token40] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_export_DASHenv] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_make] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_else] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_catch] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_source] = ACTIONS(1685), + [anon_sym_source_DASHenv] = ACTIONS(1685), + [anon_sym_register] = ACTIONS(1685), + [anon_sym_hide] = ACTIONS(1685), + [anon_sym_hide_DASHenv] = ACTIONS(1685), + [anon_sym_overlay] = ACTIONS(1685), + [anon_sym_as] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(1761), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, - [354] = { - [sym_comment] = STATE(354), - [anon_sym_export] = ACTIONS(1587), - [anon_sym_alias] = ACTIONS(1587), - [anon_sym_let] = ACTIONS(1587), - [anon_sym_let_DASHenv] = ACTIONS(1587), - [anon_sym_mut] = ACTIONS(1587), - [anon_sym_const] = ACTIONS(1587), - [aux_sym_cmd_identifier_token1] = ACTIONS(1587), - [aux_sym_cmd_identifier_token2] = ACTIONS(1589), - [aux_sym_cmd_identifier_token3] = ACTIONS(1589), - [aux_sym_cmd_identifier_token4] = ACTIONS(1589), - [aux_sym_cmd_identifier_token5] = ACTIONS(1589), - [aux_sym_cmd_identifier_token6] = ACTIONS(1589), - [aux_sym_cmd_identifier_token7] = ACTIONS(1589), - [aux_sym_cmd_identifier_token8] = ACTIONS(1587), - [aux_sym_cmd_identifier_token9] = ACTIONS(1587), - [aux_sym_cmd_identifier_token10] = ACTIONS(1589), - [aux_sym_cmd_identifier_token11] = ACTIONS(1589), - [aux_sym_cmd_identifier_token12] = ACTIONS(1587), - [aux_sym_cmd_identifier_token13] = ACTIONS(1587), - [aux_sym_cmd_identifier_token14] = ACTIONS(1587), - [aux_sym_cmd_identifier_token15] = ACTIONS(1587), - [aux_sym_cmd_identifier_token16] = ACTIONS(1589), - [aux_sym_cmd_identifier_token17] = ACTIONS(1589), - [aux_sym_cmd_identifier_token18] = ACTIONS(1589), - [aux_sym_cmd_identifier_token19] = ACTIONS(1589), - [aux_sym_cmd_identifier_token20] = ACTIONS(1589), - [aux_sym_cmd_identifier_token21] = ACTIONS(1589), - [aux_sym_cmd_identifier_token22] = ACTIONS(1589), - [aux_sym_cmd_identifier_token23] = ACTIONS(1589), - [aux_sym_cmd_identifier_token24] = ACTIONS(1589), - [aux_sym_cmd_identifier_token25] = ACTIONS(1589), - [aux_sym_cmd_identifier_token26] = ACTIONS(1589), - [aux_sym_cmd_identifier_token27] = ACTIONS(1589), - [aux_sym_cmd_identifier_token28] = ACTIONS(1589), - [aux_sym_cmd_identifier_token29] = ACTIONS(1589), - [aux_sym_cmd_identifier_token30] = ACTIONS(1589), - [aux_sym_cmd_identifier_token31] = ACTIONS(1589), - [aux_sym_cmd_identifier_token32] = ACTIONS(1589), - [aux_sym_cmd_identifier_token33] = ACTIONS(1589), - [aux_sym_cmd_identifier_token34] = ACTIONS(1587), - [aux_sym_cmd_identifier_token35] = ACTIONS(1589), - [aux_sym_cmd_identifier_token36] = ACTIONS(1589), - [aux_sym_cmd_identifier_token37] = ACTIONS(1589), - [aux_sym_cmd_identifier_token38] = ACTIONS(1587), - [aux_sym_cmd_identifier_token39] = ACTIONS(1589), - [aux_sym_cmd_identifier_token40] = ACTIONS(1589), - [anon_sym_def] = ACTIONS(1587), - [anon_sym_export_DASHenv] = ACTIONS(1587), - [anon_sym_extern] = ACTIONS(1587), - [anon_sym_module] = ACTIONS(1587), - [anon_sym_use] = ACTIONS(1587), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1589), - [anon_sym_error] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_break] = ACTIONS(1587), - [anon_sym_continue] = ACTIONS(1587), - [anon_sym_for] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_loop] = ACTIONS(1587), - [anon_sym_make] = ACTIONS(1587), - [anon_sym_while] = ACTIONS(1587), - [anon_sym_do] = ACTIONS(1587), - [anon_sym_if] = ACTIONS(1587), - [anon_sym_else] = ACTIONS(1587), - [anon_sym_match] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_try] = ACTIONS(1587), - [anon_sym_catch] = ACTIONS(1587), - [anon_sym_return] = ACTIONS(1587), - [anon_sym_source] = ACTIONS(1587), - [anon_sym_source_DASHenv] = ACTIONS(1587), - [anon_sym_register] = ACTIONS(1587), - [anon_sym_hide] = ACTIONS(1587), - [anon_sym_hide_DASHenv] = ACTIONS(1587), - [anon_sym_overlay] = ACTIONS(1587), - [anon_sym_as] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1587), - [aux_sym__val_number_token5] = ACTIONS(1587), - [aux_sym__val_number_token6] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1587), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1589), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1587), + [351] = { + [sym__expr_parenthesized_immediate] = STATE(744), + [sym__immediate_decimal] = STATE(745), + [sym_val_variable] = STATE(744), + [sym_comment] = STATE(351), + [anon_sym_export] = ACTIONS(1705), + [anon_sym_alias] = ACTIONS(1705), + [anon_sym_let] = ACTIONS(1705), + [anon_sym_let_DASHenv] = ACTIONS(1705), + [anon_sym_mut] = ACTIONS(1705), + [anon_sym_const] = ACTIONS(1705), + [aux_sym_cmd_identifier_token1] = ACTIONS(1705), + [aux_sym_cmd_identifier_token2] = ACTIONS(1707), + [aux_sym_cmd_identifier_token3] = ACTIONS(1707), + [aux_sym_cmd_identifier_token4] = ACTIONS(1707), + [aux_sym_cmd_identifier_token5] = ACTIONS(1707), + [aux_sym_cmd_identifier_token6] = ACTIONS(1707), + [aux_sym_cmd_identifier_token7] = ACTIONS(1707), + [aux_sym_cmd_identifier_token8] = ACTIONS(1705), + [aux_sym_cmd_identifier_token9] = ACTIONS(1705), + [aux_sym_cmd_identifier_token10] = ACTIONS(1707), + [aux_sym_cmd_identifier_token11] = ACTIONS(1707), + [aux_sym_cmd_identifier_token12] = ACTIONS(1705), + [aux_sym_cmd_identifier_token13] = ACTIONS(1705), + [aux_sym_cmd_identifier_token14] = ACTIONS(1705), + [aux_sym_cmd_identifier_token15] = ACTIONS(1705), + [aux_sym_cmd_identifier_token16] = ACTIONS(1707), + [aux_sym_cmd_identifier_token17] = ACTIONS(1707), + [aux_sym_cmd_identifier_token18] = ACTIONS(1707), + [aux_sym_cmd_identifier_token19] = ACTIONS(1707), + [aux_sym_cmd_identifier_token20] = ACTIONS(1707), + [aux_sym_cmd_identifier_token21] = ACTIONS(1707), + [aux_sym_cmd_identifier_token22] = ACTIONS(1707), + [aux_sym_cmd_identifier_token23] = ACTIONS(1707), + [aux_sym_cmd_identifier_token24] = ACTIONS(1707), + [aux_sym_cmd_identifier_token25] = ACTIONS(1707), + [aux_sym_cmd_identifier_token26] = ACTIONS(1707), + [aux_sym_cmd_identifier_token27] = ACTIONS(1707), + [aux_sym_cmd_identifier_token28] = ACTIONS(1707), + [aux_sym_cmd_identifier_token29] = ACTIONS(1707), + [aux_sym_cmd_identifier_token30] = ACTIONS(1707), + [aux_sym_cmd_identifier_token31] = ACTIONS(1707), + [aux_sym_cmd_identifier_token32] = ACTIONS(1707), + [aux_sym_cmd_identifier_token33] = ACTIONS(1707), + [aux_sym_cmd_identifier_token34] = ACTIONS(1705), + [aux_sym_cmd_identifier_token35] = ACTIONS(1707), + [aux_sym_cmd_identifier_token36] = ACTIONS(1707), + [aux_sym_cmd_identifier_token37] = ACTIONS(1707), + [aux_sym_cmd_identifier_token38] = ACTIONS(1705), + [aux_sym_cmd_identifier_token39] = ACTIONS(1707), + [aux_sym_cmd_identifier_token40] = ACTIONS(1707), + [anon_sym_def] = ACTIONS(1705), + [anon_sym_export_DASHenv] = ACTIONS(1705), + [anon_sym_extern] = ACTIONS(1705), + [anon_sym_module] = ACTIONS(1705), + [anon_sym_use] = ACTIONS(1705), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_COMMA] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(1365), + [anon_sym_error] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_break] = ACTIONS(1705), + [anon_sym_continue] = ACTIONS(1705), + [anon_sym_for] = ACTIONS(1705), + [anon_sym_in2] = ACTIONS(1705), + [anon_sym_loop] = ACTIONS(1705), + [anon_sym_make] = ACTIONS(1705), + [anon_sym_while] = ACTIONS(1705), + [anon_sym_do] = ACTIONS(1705), + [anon_sym_if] = ACTIONS(1705), + [anon_sym_else] = ACTIONS(1705), + [anon_sym_match] = ACTIONS(1705), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_try] = ACTIONS(1705), + [anon_sym_catch] = ACTIONS(1705), + [anon_sym_return] = ACTIONS(1705), + [anon_sym_source] = ACTIONS(1705), + [anon_sym_source_DASHenv] = ACTIONS(1705), + [anon_sym_register] = ACTIONS(1705), + [anon_sym_hide] = ACTIONS(1705), + [anon_sym_hide_DASHenv] = ACTIONS(1705), + [anon_sym_overlay] = ACTIONS(1705), + [anon_sym_as] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(1691), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(1713), + [aux_sym__immediate_decimal_token3] = ACTIONS(1715), + [aux_sym__immediate_decimal_token4] = ACTIONS(1717), + [aux_sym__immediate_decimal_token5] = ACTIONS(1719), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1705), + [aux_sym__val_number_token5] = ACTIONS(1705), + [aux_sym__val_number_token6] = ACTIONS(1705), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1707), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), + [sym_raw_string_begin] = ACTIONS(1707), }, - [355] = { - [sym_comment] = STATE(355), - [anon_sym_export] = ACTIONS(1733), - [anon_sym_alias] = ACTIONS(1733), - [anon_sym_let] = ACTIONS(1733), - [anon_sym_let_DASHenv] = ACTIONS(1733), - [anon_sym_mut] = ACTIONS(1733), - [anon_sym_const] = ACTIONS(1733), - [aux_sym_cmd_identifier_token1] = ACTIONS(1733), - [aux_sym_cmd_identifier_token2] = ACTIONS(1735), - [aux_sym_cmd_identifier_token3] = ACTIONS(1735), - [aux_sym_cmd_identifier_token4] = ACTIONS(1735), - [aux_sym_cmd_identifier_token5] = ACTIONS(1735), - [aux_sym_cmd_identifier_token6] = ACTIONS(1735), - [aux_sym_cmd_identifier_token7] = ACTIONS(1735), - [aux_sym_cmd_identifier_token8] = ACTIONS(1733), - [aux_sym_cmd_identifier_token9] = ACTIONS(1733), - [aux_sym_cmd_identifier_token10] = ACTIONS(1735), - [aux_sym_cmd_identifier_token11] = ACTIONS(1735), - [aux_sym_cmd_identifier_token12] = ACTIONS(1733), - [aux_sym_cmd_identifier_token13] = ACTIONS(1733), - [aux_sym_cmd_identifier_token14] = ACTIONS(1733), - [aux_sym_cmd_identifier_token15] = ACTIONS(1733), - [aux_sym_cmd_identifier_token16] = ACTIONS(1735), - [aux_sym_cmd_identifier_token17] = ACTIONS(1735), - [aux_sym_cmd_identifier_token18] = ACTIONS(1735), - [aux_sym_cmd_identifier_token19] = ACTIONS(1735), - [aux_sym_cmd_identifier_token20] = ACTIONS(1735), - [aux_sym_cmd_identifier_token21] = ACTIONS(1735), - [aux_sym_cmd_identifier_token22] = ACTIONS(1735), - [aux_sym_cmd_identifier_token23] = ACTIONS(1735), - [aux_sym_cmd_identifier_token24] = ACTIONS(1735), - [aux_sym_cmd_identifier_token25] = ACTIONS(1735), - [aux_sym_cmd_identifier_token26] = ACTIONS(1735), - [aux_sym_cmd_identifier_token27] = ACTIONS(1735), - [aux_sym_cmd_identifier_token28] = ACTIONS(1735), - [aux_sym_cmd_identifier_token29] = ACTIONS(1735), - [aux_sym_cmd_identifier_token30] = ACTIONS(1735), - [aux_sym_cmd_identifier_token31] = ACTIONS(1735), - [aux_sym_cmd_identifier_token32] = ACTIONS(1735), - [aux_sym_cmd_identifier_token33] = ACTIONS(1735), - [aux_sym_cmd_identifier_token34] = ACTIONS(1733), - [aux_sym_cmd_identifier_token35] = ACTIONS(1735), - [aux_sym_cmd_identifier_token36] = ACTIONS(1735), - [aux_sym_cmd_identifier_token37] = ACTIONS(1735), - [aux_sym_cmd_identifier_token38] = ACTIONS(1733), - [aux_sym_cmd_identifier_token39] = ACTIONS(1735), - [aux_sym_cmd_identifier_token40] = ACTIONS(1735), - [anon_sym_def] = ACTIONS(1733), - [anon_sym_export_DASHenv] = ACTIONS(1733), - [anon_sym_extern] = ACTIONS(1733), - [anon_sym_module] = ACTIONS(1733), - [anon_sym_use] = ACTIONS(1733), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1735), - [anon_sym_error] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_break] = ACTIONS(1733), - [anon_sym_continue] = ACTIONS(1733), - [anon_sym_for] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_loop] = ACTIONS(1733), - [anon_sym_make] = ACTIONS(1733), - [anon_sym_while] = ACTIONS(1733), - [anon_sym_do] = ACTIONS(1733), - [anon_sym_if] = ACTIONS(1733), - [anon_sym_else] = ACTIONS(1733), - [anon_sym_match] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_try] = ACTIONS(1733), - [anon_sym_catch] = ACTIONS(1733), - [anon_sym_return] = ACTIONS(1733), - [anon_sym_source] = ACTIONS(1733), - [anon_sym_source_DASHenv] = ACTIONS(1733), - [anon_sym_register] = ACTIONS(1733), - [anon_sym_hide] = ACTIONS(1733), - [anon_sym_hide_DASHenv] = ACTIONS(1733), - [anon_sym_overlay] = ACTIONS(1733), - [anon_sym_as] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1733), - [aux_sym__val_number_token5] = ACTIONS(1733), - [aux_sym__val_number_token6] = ACTIONS(1733), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1733), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1735), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1733), + [352] = { + [sym_comment] = STATE(352), + [anon_sym_export] = ACTIONS(1597), + [anon_sym_alias] = ACTIONS(1597), + [anon_sym_let] = ACTIONS(1597), + [anon_sym_let_DASHenv] = ACTIONS(1597), + [anon_sym_mut] = ACTIONS(1597), + [anon_sym_const] = ACTIONS(1597), + [aux_sym_cmd_identifier_token1] = ACTIONS(1597), + [aux_sym_cmd_identifier_token2] = ACTIONS(1599), + [aux_sym_cmd_identifier_token3] = ACTIONS(1599), + [aux_sym_cmd_identifier_token4] = ACTIONS(1599), + [aux_sym_cmd_identifier_token5] = ACTIONS(1599), + [aux_sym_cmd_identifier_token6] = ACTIONS(1599), + [aux_sym_cmd_identifier_token7] = ACTIONS(1599), + [aux_sym_cmd_identifier_token8] = ACTIONS(1597), + [aux_sym_cmd_identifier_token9] = ACTIONS(1597), + [aux_sym_cmd_identifier_token10] = ACTIONS(1599), + [aux_sym_cmd_identifier_token11] = ACTIONS(1599), + [aux_sym_cmd_identifier_token12] = ACTIONS(1597), + [aux_sym_cmd_identifier_token13] = ACTIONS(1597), + [aux_sym_cmd_identifier_token14] = ACTIONS(1597), + [aux_sym_cmd_identifier_token15] = ACTIONS(1597), + [aux_sym_cmd_identifier_token16] = ACTIONS(1599), + [aux_sym_cmd_identifier_token17] = ACTIONS(1599), + [aux_sym_cmd_identifier_token18] = ACTIONS(1599), + [aux_sym_cmd_identifier_token19] = ACTIONS(1599), + [aux_sym_cmd_identifier_token20] = ACTIONS(1599), + [aux_sym_cmd_identifier_token21] = ACTIONS(1599), + [aux_sym_cmd_identifier_token22] = ACTIONS(1599), + [aux_sym_cmd_identifier_token23] = ACTIONS(1599), + [aux_sym_cmd_identifier_token24] = ACTIONS(1599), + [aux_sym_cmd_identifier_token25] = ACTIONS(1599), + [aux_sym_cmd_identifier_token26] = ACTIONS(1599), + [aux_sym_cmd_identifier_token27] = ACTIONS(1599), + [aux_sym_cmd_identifier_token28] = ACTIONS(1599), + [aux_sym_cmd_identifier_token29] = ACTIONS(1599), + [aux_sym_cmd_identifier_token30] = ACTIONS(1599), + [aux_sym_cmd_identifier_token31] = ACTIONS(1599), + [aux_sym_cmd_identifier_token32] = ACTIONS(1599), + [aux_sym_cmd_identifier_token33] = ACTIONS(1599), + [aux_sym_cmd_identifier_token34] = ACTIONS(1597), + [aux_sym_cmd_identifier_token35] = ACTIONS(1599), + [aux_sym_cmd_identifier_token36] = ACTIONS(1599), + [aux_sym_cmd_identifier_token37] = ACTIONS(1599), + [aux_sym_cmd_identifier_token38] = ACTIONS(1597), + [aux_sym_cmd_identifier_token39] = ACTIONS(1599), + [aux_sym_cmd_identifier_token40] = ACTIONS(1599), + [anon_sym_def] = ACTIONS(1597), + [anon_sym_export_DASHenv] = ACTIONS(1597), + [anon_sym_extern] = ACTIONS(1597), + [anon_sym_module] = ACTIONS(1597), + [anon_sym_use] = ACTIONS(1597), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_COMMA] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1599), + [anon_sym_error] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_break] = ACTIONS(1597), + [anon_sym_continue] = ACTIONS(1597), + [anon_sym_for] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_loop] = ACTIONS(1597), + [anon_sym_make] = ACTIONS(1597), + [anon_sym_while] = ACTIONS(1597), + [anon_sym_do] = ACTIONS(1597), + [anon_sym_if] = ACTIONS(1597), + [anon_sym_else] = ACTIONS(1597), + [anon_sym_match] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_try] = ACTIONS(1597), + [anon_sym_catch] = ACTIONS(1597), + [anon_sym_return] = ACTIONS(1597), + [anon_sym_source] = ACTIONS(1597), + [anon_sym_source_DASHenv] = ACTIONS(1597), + [anon_sym_register] = ACTIONS(1597), + [anon_sym_hide] = ACTIONS(1597), + [anon_sym_hide_DASHenv] = ACTIONS(1597), + [anon_sym_overlay] = ACTIONS(1597), + [anon_sym_as] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1597), + [aux_sym__val_number_token5] = ACTIONS(1597), + [aux_sym__val_number_token6] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1597), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1599), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [sym_raw_string_begin] = ACTIONS(1599), }, - [356] = { - [sym_cell_path] = STATE(539), - [sym_path] = STATE(444), - [sym_comment] = STATE(356), - [aux_sym_cell_path_repeat1] = STATE(385), + [353] = { + [sym_cell_path] = STATE(534), + [sym_path] = STATE(449), + [sym_comment] = STATE(353), + [aux_sym_cell_path_repeat1] = STATE(366), [anon_sym_export] = ACTIONS(935), [anon_sym_alias] = ACTIONS(935), [anon_sym_let] = ACTIONS(935), @@ -119681,6 +119411,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(935), [anon_sym_use] = ACTIONS(935), [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), [anon_sym_DOLLAR] = ACTIONS(937), [anon_sym_error] = ACTIONS(935), [anon_sym_DASH2] = ACTIONS(935), @@ -119726,226 +119457,121 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(937), [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(1771), + [anon_sym_DOT2] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(937), }, - [357] = { - [sym_comment] = STATE(357), - [anon_sym_export] = ACTIONS(1595), - [anon_sym_alias] = ACTIONS(1595), - [anon_sym_let] = ACTIONS(1595), - [anon_sym_let_DASHenv] = ACTIONS(1595), - [anon_sym_mut] = ACTIONS(1595), - [anon_sym_const] = ACTIONS(1595), - [aux_sym_cmd_identifier_token1] = ACTIONS(1595), - [aux_sym_cmd_identifier_token2] = ACTIONS(1597), - [aux_sym_cmd_identifier_token3] = ACTIONS(1597), - [aux_sym_cmd_identifier_token4] = ACTIONS(1597), - [aux_sym_cmd_identifier_token5] = ACTIONS(1597), - [aux_sym_cmd_identifier_token6] = ACTIONS(1597), - [aux_sym_cmd_identifier_token7] = ACTIONS(1597), - [aux_sym_cmd_identifier_token8] = ACTIONS(1595), - [aux_sym_cmd_identifier_token9] = ACTIONS(1595), - [aux_sym_cmd_identifier_token10] = ACTIONS(1597), - [aux_sym_cmd_identifier_token11] = ACTIONS(1597), - [aux_sym_cmd_identifier_token12] = ACTIONS(1595), - [aux_sym_cmd_identifier_token13] = ACTIONS(1595), - [aux_sym_cmd_identifier_token14] = ACTIONS(1595), - [aux_sym_cmd_identifier_token15] = ACTIONS(1595), - [aux_sym_cmd_identifier_token16] = ACTIONS(1597), - [aux_sym_cmd_identifier_token17] = ACTIONS(1597), - [aux_sym_cmd_identifier_token18] = ACTIONS(1597), - [aux_sym_cmd_identifier_token19] = ACTIONS(1597), - [aux_sym_cmd_identifier_token20] = ACTIONS(1597), - [aux_sym_cmd_identifier_token21] = ACTIONS(1597), - [aux_sym_cmd_identifier_token22] = ACTIONS(1597), - [aux_sym_cmd_identifier_token23] = ACTIONS(1597), - [aux_sym_cmd_identifier_token24] = ACTIONS(1597), - [aux_sym_cmd_identifier_token25] = ACTIONS(1597), - [aux_sym_cmd_identifier_token26] = ACTIONS(1597), - [aux_sym_cmd_identifier_token27] = ACTIONS(1597), - [aux_sym_cmd_identifier_token28] = ACTIONS(1597), - [aux_sym_cmd_identifier_token29] = ACTIONS(1597), - [aux_sym_cmd_identifier_token30] = ACTIONS(1597), - [aux_sym_cmd_identifier_token31] = ACTIONS(1597), - [aux_sym_cmd_identifier_token32] = ACTIONS(1597), - [aux_sym_cmd_identifier_token33] = ACTIONS(1597), - [aux_sym_cmd_identifier_token34] = ACTIONS(1595), - [aux_sym_cmd_identifier_token35] = ACTIONS(1597), - [aux_sym_cmd_identifier_token36] = ACTIONS(1597), - [aux_sym_cmd_identifier_token37] = ACTIONS(1597), - [aux_sym_cmd_identifier_token38] = ACTIONS(1595), - [aux_sym_cmd_identifier_token39] = ACTIONS(1597), - [aux_sym_cmd_identifier_token40] = ACTIONS(1597), - [anon_sym_def] = ACTIONS(1595), - [anon_sym_export_DASHenv] = ACTIONS(1595), - [anon_sym_extern] = ACTIONS(1595), - [anon_sym_module] = ACTIONS(1595), - [anon_sym_use] = ACTIONS(1595), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1597), - [anon_sym_error] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_break] = ACTIONS(1595), - [anon_sym_continue] = ACTIONS(1595), - [anon_sym_for] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_loop] = ACTIONS(1595), - [anon_sym_make] = ACTIONS(1595), - [anon_sym_while] = ACTIONS(1595), - [anon_sym_do] = ACTIONS(1595), - [anon_sym_if] = ACTIONS(1595), - [anon_sym_else] = ACTIONS(1595), - [anon_sym_match] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_try] = ACTIONS(1595), - [anon_sym_catch] = ACTIONS(1595), - [anon_sym_return] = ACTIONS(1595), - [anon_sym_source] = ACTIONS(1595), - [anon_sym_source_DASHenv] = ACTIONS(1595), - [anon_sym_register] = ACTIONS(1595), - [anon_sym_hide] = ACTIONS(1595), - [anon_sym_hide_DASHenv] = ACTIONS(1595), - [anon_sym_overlay] = ACTIONS(1595), - [anon_sym_as] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1595), - [aux_sym__val_number_token5] = ACTIONS(1595), - [aux_sym__val_number_token6] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1595), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1597), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [358] = { - [sym_cell_path] = STATE(549), - [sym_path] = STATE(444), - [sym_comment] = STATE(358), - [aux_sym_cell_path_repeat1] = STATE(385), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_alias] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_let_DASHenv] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [aux_sym_cmd_identifier_token1] = ACTIONS(1717), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), - [aux_sym_cmd_identifier_token8] = ACTIONS(1717), - [aux_sym_cmd_identifier_token9] = ACTIONS(1717), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1717), - [aux_sym_cmd_identifier_token13] = ACTIONS(1717), - [aux_sym_cmd_identifier_token14] = ACTIONS(1717), - [aux_sym_cmd_identifier_token15] = ACTIONS(1717), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), - [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), - [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), - [aux_sym_cmd_identifier_token34] = ACTIONS(1717), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_export_DASHenv] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_in2] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_make] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_source] = ACTIONS(1717), - [anon_sym_source_DASHenv] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_hide_DASHenv] = ACTIONS(1717), - [anon_sym_overlay] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1719), + [354] = { + [sym_path] = STATE(420), + [sym_comment] = STATE(354), + [aux_sym_cell_path_repeat1] = STATE(354), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(941), + [aux_sym_cmd_identifier_token3] = ACTIONS(941), + [aux_sym_cmd_identifier_token4] = ACTIONS(941), + [aux_sym_cmd_identifier_token5] = ACTIONS(941), + [aux_sym_cmd_identifier_token6] = ACTIONS(941), + [aux_sym_cmd_identifier_token7] = ACTIONS(941), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(941), + [aux_sym_cmd_identifier_token11] = ACTIONS(941), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(941), + [aux_sym_cmd_identifier_token17] = ACTIONS(941), + [aux_sym_cmd_identifier_token18] = ACTIONS(941), + [aux_sym_cmd_identifier_token19] = ACTIONS(941), + [aux_sym_cmd_identifier_token20] = ACTIONS(941), + [aux_sym_cmd_identifier_token21] = ACTIONS(941), + [aux_sym_cmd_identifier_token22] = ACTIONS(941), + [aux_sym_cmd_identifier_token23] = ACTIONS(941), + [aux_sym_cmd_identifier_token24] = ACTIONS(941), + [aux_sym_cmd_identifier_token25] = ACTIONS(941), + [aux_sym_cmd_identifier_token26] = ACTIONS(941), + [aux_sym_cmd_identifier_token27] = ACTIONS(941), + [aux_sym_cmd_identifier_token28] = ACTIONS(941), + [aux_sym_cmd_identifier_token29] = ACTIONS(941), + [aux_sym_cmd_identifier_token30] = ACTIONS(941), + [aux_sym_cmd_identifier_token31] = ACTIONS(941), + [aux_sym_cmd_identifier_token32] = ACTIONS(941), + [aux_sym_cmd_identifier_token33] = ACTIONS(941), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(941), + [aux_sym_cmd_identifier_token36] = ACTIONS(941), + [aux_sym_cmd_identifier_token37] = ACTIONS(941), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(941), + [aux_sym_cmd_identifier_token40] = ACTIONS(941), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(941), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(941), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(941), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(941), + [aux_sym__val_number_decimal_token3] = ACTIONS(941), + [aux_sym__val_number_decimal_token4] = ACTIONS(941), + [aux_sym__val_number_token1] = ACTIONS(941), + [aux_sym__val_number_token2] = ACTIONS(941), + [aux_sym__val_number_token3] = ACTIONS(941), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(941), + [sym__str_single_quotes] = ACTIONS(941), + [sym__str_back_ticks] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(941), + [sym__entry_separator] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(1765), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(943), }, - [359] = { - [sym_path] = STATE(397), - [sym_comment] = STATE(359), - [aux_sym_cell_path_repeat1] = STATE(362), + [355] = { + [sym_path] = STATE(420), + [sym_comment] = STATE(355), + [aux_sym_cell_path_repeat1] = STATE(354), [anon_sym_export] = ACTIONS(948), [anon_sym_alias] = ACTIONS(948), [anon_sym_let] = ACTIONS(948), @@ -119998,6 +119624,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(948), [anon_sym_use] = ACTIONS(948), [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), [anon_sym_DOLLAR] = ACTIONS(948), [anon_sym_error] = ACTIONS(948), [anon_sym_DASH2] = ACTIONS(948), @@ -120044,333 +119671,15 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(948), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), [sym__entry_separator] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(1715), + [anon_sym_DOT2] = ACTIONS(1725), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(950), }, - [360] = { - [sym_comment] = STATE(360), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1773), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [361] = { - [sym_comment] = STATE(361), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1731), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [362] = { - [sym_path] = STATE(397), - [sym_comment] = STATE(362), - [aux_sym_cell_path_repeat1] = STATE(362), - [anon_sym_export] = ACTIONS(941), - [anon_sym_alias] = ACTIONS(941), - [anon_sym_let] = ACTIONS(941), - [anon_sym_let_DASHenv] = ACTIONS(941), - [anon_sym_mut] = ACTIONS(941), - [anon_sym_const] = ACTIONS(941), - [aux_sym_cmd_identifier_token1] = ACTIONS(941), - [aux_sym_cmd_identifier_token2] = ACTIONS(941), - [aux_sym_cmd_identifier_token3] = ACTIONS(941), - [aux_sym_cmd_identifier_token4] = ACTIONS(941), - [aux_sym_cmd_identifier_token5] = ACTIONS(941), - [aux_sym_cmd_identifier_token6] = ACTIONS(941), - [aux_sym_cmd_identifier_token7] = ACTIONS(941), - [aux_sym_cmd_identifier_token8] = ACTIONS(941), - [aux_sym_cmd_identifier_token9] = ACTIONS(941), - [aux_sym_cmd_identifier_token10] = ACTIONS(941), - [aux_sym_cmd_identifier_token11] = ACTIONS(941), - [aux_sym_cmd_identifier_token12] = ACTIONS(941), - [aux_sym_cmd_identifier_token13] = ACTIONS(941), - [aux_sym_cmd_identifier_token14] = ACTIONS(941), - [aux_sym_cmd_identifier_token15] = ACTIONS(941), - [aux_sym_cmd_identifier_token16] = ACTIONS(941), - [aux_sym_cmd_identifier_token17] = ACTIONS(941), - [aux_sym_cmd_identifier_token18] = ACTIONS(941), - [aux_sym_cmd_identifier_token19] = ACTIONS(941), - [aux_sym_cmd_identifier_token20] = ACTIONS(941), - [aux_sym_cmd_identifier_token21] = ACTIONS(941), - [aux_sym_cmd_identifier_token22] = ACTIONS(941), - [aux_sym_cmd_identifier_token23] = ACTIONS(941), - [aux_sym_cmd_identifier_token24] = ACTIONS(941), - [aux_sym_cmd_identifier_token25] = ACTIONS(941), - [aux_sym_cmd_identifier_token26] = ACTIONS(941), - [aux_sym_cmd_identifier_token27] = ACTIONS(941), - [aux_sym_cmd_identifier_token28] = ACTIONS(941), - [aux_sym_cmd_identifier_token29] = ACTIONS(941), - [aux_sym_cmd_identifier_token30] = ACTIONS(941), - [aux_sym_cmd_identifier_token31] = ACTIONS(941), - [aux_sym_cmd_identifier_token32] = ACTIONS(941), - [aux_sym_cmd_identifier_token33] = ACTIONS(941), - [aux_sym_cmd_identifier_token34] = ACTIONS(941), - [aux_sym_cmd_identifier_token35] = ACTIONS(941), - [aux_sym_cmd_identifier_token36] = ACTIONS(941), - [aux_sym_cmd_identifier_token37] = ACTIONS(941), - [aux_sym_cmd_identifier_token38] = ACTIONS(941), - [aux_sym_cmd_identifier_token39] = ACTIONS(941), - [aux_sym_cmd_identifier_token40] = ACTIONS(941), - [anon_sym_def] = ACTIONS(941), - [anon_sym_export_DASHenv] = ACTIONS(941), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_module] = ACTIONS(941), - [anon_sym_use] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(941), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_error] = ACTIONS(941), - [anon_sym_DASH2] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in2] = ACTIONS(941), - [anon_sym_loop] = ACTIONS(941), - [anon_sym_make] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [anon_sym_do] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_else] = ACTIONS(941), - [anon_sym_match] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(941), - [anon_sym_try] = ACTIONS(941), - [anon_sym_catch] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_source] = ACTIONS(941), - [anon_sym_source_DASHenv] = ACTIONS(941), - [anon_sym_register] = ACTIONS(941), - [anon_sym_hide] = ACTIONS(941), - [anon_sym_hide_DASHenv] = ACTIONS(941), - [anon_sym_overlay] = ACTIONS(941), - [anon_sym_as] = ACTIONS(941), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(941), - [anon_sym_DOT_DOT2] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(941), - [aux_sym__val_number_decimal_token1] = ACTIONS(941), - [aux_sym__val_number_decimal_token2] = ACTIONS(941), - [aux_sym__val_number_decimal_token3] = ACTIONS(941), - [aux_sym__val_number_decimal_token4] = ACTIONS(941), - [aux_sym__val_number_token1] = ACTIONS(941), - [aux_sym__val_number_token2] = ACTIONS(941), - [aux_sym__val_number_token3] = ACTIONS(941), - [aux_sym__val_number_token4] = ACTIONS(941), - [aux_sym__val_number_token5] = ACTIONS(941), - [aux_sym__val_number_token6] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(941), - [sym__str_single_quotes] = ACTIONS(941), - [sym__str_back_ticks] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(941), - [sym__entry_separator] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(1777), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(943), - }, - [363] = { - [sym_cell_path] = STATE(547), - [sym_path] = STATE(444), - [sym_comment] = STATE(363), - [aux_sym_cell_path_repeat1] = STATE(385), + [356] = { + [sym_cell_path] = STATE(496), + [sym_path] = STATE(449), + [sym_comment] = STATE(356), + [aux_sym_cell_path_repeat1] = STATE(366), [anon_sym_export] = ACTIONS(1721), [anon_sym_alias] = ACTIONS(1721), [anon_sym_let] = ACTIONS(1721), @@ -120423,6 +119732,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1721), [anon_sym_use] = ACTIONS(1721), [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_COMMA] = ACTIONS(1723), [anon_sym_DOLLAR] = ACTIONS(1723), [anon_sym_error] = ACTIONS(1721), [anon_sym_DASH2] = ACTIONS(1721), @@ -120468,12 +119778,122 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1723), [sym__str_back_ticks] = ACTIONS(1723), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(1771), + [anon_sym_DOT2] = ACTIONS(1763), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1723), }, - [364] = { - [sym_comment] = STATE(364), + [357] = { + [sym_comment] = STATE(357), + [anon_sym_export] = ACTIONS(1605), + [anon_sym_alias] = ACTIONS(1605), + [anon_sym_let] = ACTIONS(1605), + [anon_sym_let_DASHenv] = ACTIONS(1605), + [anon_sym_mut] = ACTIONS(1605), + [anon_sym_const] = ACTIONS(1605), + [aux_sym_cmd_identifier_token1] = ACTIONS(1605), + [aux_sym_cmd_identifier_token2] = ACTIONS(1607), + [aux_sym_cmd_identifier_token3] = ACTIONS(1607), + [aux_sym_cmd_identifier_token4] = ACTIONS(1607), + [aux_sym_cmd_identifier_token5] = ACTIONS(1607), + [aux_sym_cmd_identifier_token6] = ACTIONS(1607), + [aux_sym_cmd_identifier_token7] = ACTIONS(1607), + [aux_sym_cmd_identifier_token8] = ACTIONS(1605), + [aux_sym_cmd_identifier_token9] = ACTIONS(1605), + [aux_sym_cmd_identifier_token10] = ACTIONS(1607), + [aux_sym_cmd_identifier_token11] = ACTIONS(1607), + [aux_sym_cmd_identifier_token12] = ACTIONS(1605), + [aux_sym_cmd_identifier_token13] = ACTIONS(1605), + [aux_sym_cmd_identifier_token14] = ACTIONS(1605), + [aux_sym_cmd_identifier_token15] = ACTIONS(1605), + [aux_sym_cmd_identifier_token16] = ACTIONS(1607), + [aux_sym_cmd_identifier_token17] = ACTIONS(1607), + [aux_sym_cmd_identifier_token18] = ACTIONS(1607), + [aux_sym_cmd_identifier_token19] = ACTIONS(1607), + [aux_sym_cmd_identifier_token20] = ACTIONS(1607), + [aux_sym_cmd_identifier_token21] = ACTIONS(1607), + [aux_sym_cmd_identifier_token22] = ACTIONS(1607), + [aux_sym_cmd_identifier_token23] = ACTIONS(1607), + [aux_sym_cmd_identifier_token24] = ACTIONS(1607), + [aux_sym_cmd_identifier_token25] = ACTIONS(1607), + [aux_sym_cmd_identifier_token26] = ACTIONS(1607), + [aux_sym_cmd_identifier_token27] = ACTIONS(1607), + [aux_sym_cmd_identifier_token28] = ACTIONS(1607), + [aux_sym_cmd_identifier_token29] = ACTIONS(1607), + [aux_sym_cmd_identifier_token30] = ACTIONS(1607), + [aux_sym_cmd_identifier_token31] = ACTIONS(1607), + [aux_sym_cmd_identifier_token32] = ACTIONS(1607), + [aux_sym_cmd_identifier_token33] = ACTIONS(1607), + [aux_sym_cmd_identifier_token34] = ACTIONS(1605), + [aux_sym_cmd_identifier_token35] = ACTIONS(1607), + [aux_sym_cmd_identifier_token36] = ACTIONS(1607), + [aux_sym_cmd_identifier_token37] = ACTIONS(1607), + [aux_sym_cmd_identifier_token38] = ACTIONS(1605), + [aux_sym_cmd_identifier_token39] = ACTIONS(1607), + [aux_sym_cmd_identifier_token40] = ACTIONS(1607), + [anon_sym_def] = ACTIONS(1605), + [anon_sym_export_DASHenv] = ACTIONS(1605), + [anon_sym_extern] = ACTIONS(1605), + [anon_sym_module] = ACTIONS(1605), + [anon_sym_use] = ACTIONS(1605), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_COMMA] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1607), + [anon_sym_error] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_break] = ACTIONS(1605), + [anon_sym_continue] = ACTIONS(1605), + [anon_sym_for] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_loop] = ACTIONS(1605), + [anon_sym_make] = ACTIONS(1605), + [anon_sym_while] = ACTIONS(1605), + [anon_sym_do] = ACTIONS(1605), + [anon_sym_if] = ACTIONS(1605), + [anon_sym_else] = ACTIONS(1605), + [anon_sym_match] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_try] = ACTIONS(1605), + [anon_sym_catch] = ACTIONS(1605), + [anon_sym_return] = ACTIONS(1605), + [anon_sym_source] = ACTIONS(1605), + [anon_sym_source_DASHenv] = ACTIONS(1605), + [anon_sym_register] = ACTIONS(1605), + [anon_sym_hide] = ACTIONS(1605), + [anon_sym_hide_DASHenv] = ACTIONS(1605), + [anon_sym_overlay] = ACTIONS(1605), + [anon_sym_as] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1605), + [aux_sym__val_number_token5] = ACTIONS(1605), + [aux_sym__val_number_token6] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1605), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1607), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [358] = { + [sym_cell_path] = STATE(532), + [sym_path] = STATE(449), + [sym_comment] = STATE(358), + [aux_sym_cell_path_repeat1] = STATE(366), [anon_sym_export] = ACTIONS(1757), [anon_sym_alias] = ACTIONS(1757), [anon_sym_let] = ACTIONS(1757), @@ -120525,7 +119945,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_extern] = ACTIONS(1757), [anon_sym_module] = ACTIONS(1757), [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1759), [anon_sym_DOLLAR] = ACTIONS(1759), [anon_sym_error] = ACTIONS(1757), [anon_sym_DASH2] = ACTIONS(1757), @@ -120551,14 +119972,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1757), [anon_sym_overlay] = ACTIONS(1757), [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), [anon_sym_PLUS2] = ACTIONS(1757), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(1780), - [aux_sym__immediate_decimal_token2] = ACTIONS(1782), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), [aux_sym__val_number_decimal_token1] = ACTIONS(1757), [aux_sym__val_number_decimal_token2] = ACTIONS(1759), @@ -120574,117 +119992,866 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(1759), [sym__str_back_ticks] = ACTIONS(1759), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), + [anon_sym_DOT2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1759), + }, + [359] = { + [sym_comment] = STATE(359), + [anon_sym_export] = ACTIONS(1685), + [anon_sym_alias] = ACTIONS(1685), + [anon_sym_let] = ACTIONS(1685), + [anon_sym_let_DASHenv] = ACTIONS(1685), + [anon_sym_mut] = ACTIONS(1685), + [anon_sym_const] = ACTIONS(1685), + [aux_sym_cmd_identifier_token1] = ACTIONS(1685), + [aux_sym_cmd_identifier_token2] = ACTIONS(1687), + [aux_sym_cmd_identifier_token3] = ACTIONS(1687), + [aux_sym_cmd_identifier_token4] = ACTIONS(1687), + [aux_sym_cmd_identifier_token5] = ACTIONS(1687), + [aux_sym_cmd_identifier_token6] = ACTIONS(1687), + [aux_sym_cmd_identifier_token7] = ACTIONS(1687), + [aux_sym_cmd_identifier_token8] = ACTIONS(1685), + [aux_sym_cmd_identifier_token9] = ACTIONS(1685), + [aux_sym_cmd_identifier_token10] = ACTIONS(1687), + [aux_sym_cmd_identifier_token11] = ACTIONS(1687), + [aux_sym_cmd_identifier_token12] = ACTIONS(1685), + [aux_sym_cmd_identifier_token13] = ACTIONS(1685), + [aux_sym_cmd_identifier_token14] = ACTIONS(1685), + [aux_sym_cmd_identifier_token15] = ACTIONS(1685), + [aux_sym_cmd_identifier_token16] = ACTIONS(1687), + [aux_sym_cmd_identifier_token17] = ACTIONS(1687), + [aux_sym_cmd_identifier_token18] = ACTIONS(1687), + [aux_sym_cmd_identifier_token19] = ACTIONS(1687), + [aux_sym_cmd_identifier_token20] = ACTIONS(1687), + [aux_sym_cmd_identifier_token21] = ACTIONS(1687), + [aux_sym_cmd_identifier_token22] = ACTIONS(1687), + [aux_sym_cmd_identifier_token23] = ACTIONS(1687), + [aux_sym_cmd_identifier_token24] = ACTIONS(1687), + [aux_sym_cmd_identifier_token25] = ACTIONS(1687), + [aux_sym_cmd_identifier_token26] = ACTIONS(1687), + [aux_sym_cmd_identifier_token27] = ACTIONS(1687), + [aux_sym_cmd_identifier_token28] = ACTIONS(1687), + [aux_sym_cmd_identifier_token29] = ACTIONS(1687), + [aux_sym_cmd_identifier_token30] = ACTIONS(1687), + [aux_sym_cmd_identifier_token31] = ACTIONS(1687), + [aux_sym_cmd_identifier_token32] = ACTIONS(1687), + [aux_sym_cmd_identifier_token33] = ACTIONS(1687), + [aux_sym_cmd_identifier_token34] = ACTIONS(1685), + [aux_sym_cmd_identifier_token35] = ACTIONS(1687), + [aux_sym_cmd_identifier_token36] = ACTIONS(1687), + [aux_sym_cmd_identifier_token37] = ACTIONS(1687), + [aux_sym_cmd_identifier_token38] = ACTIONS(1685), + [aux_sym_cmd_identifier_token39] = ACTIONS(1687), + [aux_sym_cmd_identifier_token40] = ACTIONS(1687), + [anon_sym_def] = ACTIONS(1685), + [anon_sym_export_DASHenv] = ACTIONS(1685), + [anon_sym_extern] = ACTIONS(1685), + [anon_sym_module] = ACTIONS(1685), + [anon_sym_use] = ACTIONS(1685), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_COMMA] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1687), + [anon_sym_error] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_break] = ACTIONS(1685), + [anon_sym_continue] = ACTIONS(1685), + [anon_sym_for] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_loop] = ACTIONS(1685), + [anon_sym_make] = ACTIONS(1685), + [anon_sym_while] = ACTIONS(1685), + [anon_sym_do] = ACTIONS(1685), + [anon_sym_if] = ACTIONS(1685), + [anon_sym_else] = ACTIONS(1685), + [anon_sym_match] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_try] = ACTIONS(1685), + [anon_sym_catch] = ACTIONS(1685), + [anon_sym_return] = ACTIONS(1685), + [anon_sym_source] = ACTIONS(1685), + [anon_sym_source_DASHenv] = ACTIONS(1685), + [anon_sym_register] = ACTIONS(1685), + [anon_sym_hide] = ACTIONS(1685), + [anon_sym_hide_DASHenv] = ACTIONS(1685), + [anon_sym_overlay] = ACTIONS(1685), + [anon_sym_as] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1685), + [aux_sym__val_number_token5] = ACTIONS(1685), + [aux_sym__val_number_token6] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1685), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1687), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), + }, + [360] = { + [sym_comment] = STATE(360), + [anon_sym_export] = ACTIONS(1727), + [anon_sym_alias] = ACTIONS(1727), + [anon_sym_let] = ACTIONS(1727), + [anon_sym_let_DASHenv] = ACTIONS(1727), + [anon_sym_mut] = ACTIONS(1727), + [anon_sym_const] = ACTIONS(1727), + [aux_sym_cmd_identifier_token1] = ACTIONS(1727), + [aux_sym_cmd_identifier_token2] = ACTIONS(1729), + [aux_sym_cmd_identifier_token3] = ACTIONS(1729), + [aux_sym_cmd_identifier_token4] = ACTIONS(1729), + [aux_sym_cmd_identifier_token5] = ACTIONS(1729), + [aux_sym_cmd_identifier_token6] = ACTIONS(1729), + [aux_sym_cmd_identifier_token7] = ACTIONS(1729), + [aux_sym_cmd_identifier_token8] = ACTIONS(1727), + [aux_sym_cmd_identifier_token9] = ACTIONS(1727), + [aux_sym_cmd_identifier_token10] = ACTIONS(1729), + [aux_sym_cmd_identifier_token11] = ACTIONS(1729), + [aux_sym_cmd_identifier_token12] = ACTIONS(1727), + [aux_sym_cmd_identifier_token13] = ACTIONS(1727), + [aux_sym_cmd_identifier_token14] = ACTIONS(1727), + [aux_sym_cmd_identifier_token15] = ACTIONS(1727), + [aux_sym_cmd_identifier_token16] = ACTIONS(1729), + [aux_sym_cmd_identifier_token17] = ACTIONS(1729), + [aux_sym_cmd_identifier_token18] = ACTIONS(1729), + [aux_sym_cmd_identifier_token19] = ACTIONS(1729), + [aux_sym_cmd_identifier_token20] = ACTIONS(1729), + [aux_sym_cmd_identifier_token21] = ACTIONS(1729), + [aux_sym_cmd_identifier_token22] = ACTIONS(1729), + [aux_sym_cmd_identifier_token23] = ACTIONS(1729), + [aux_sym_cmd_identifier_token24] = ACTIONS(1729), + [aux_sym_cmd_identifier_token25] = ACTIONS(1729), + [aux_sym_cmd_identifier_token26] = ACTIONS(1729), + [aux_sym_cmd_identifier_token27] = ACTIONS(1729), + [aux_sym_cmd_identifier_token28] = ACTIONS(1729), + [aux_sym_cmd_identifier_token29] = ACTIONS(1729), + [aux_sym_cmd_identifier_token30] = ACTIONS(1729), + [aux_sym_cmd_identifier_token31] = ACTIONS(1729), + [aux_sym_cmd_identifier_token32] = ACTIONS(1729), + [aux_sym_cmd_identifier_token33] = ACTIONS(1729), + [aux_sym_cmd_identifier_token34] = ACTIONS(1727), + [aux_sym_cmd_identifier_token35] = ACTIONS(1729), + [aux_sym_cmd_identifier_token36] = ACTIONS(1729), + [aux_sym_cmd_identifier_token37] = ACTIONS(1729), + [aux_sym_cmd_identifier_token38] = ACTIONS(1727), + [aux_sym_cmd_identifier_token39] = ACTIONS(1729), + [aux_sym_cmd_identifier_token40] = ACTIONS(1729), + [anon_sym_def] = ACTIONS(1727), + [anon_sym_export_DASHenv] = ACTIONS(1727), + [anon_sym_extern] = ACTIONS(1727), + [anon_sym_module] = ACTIONS(1727), + [anon_sym_use] = ACTIONS(1727), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_COMMA] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1729), + [anon_sym_error] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_break] = ACTIONS(1727), + [anon_sym_continue] = ACTIONS(1727), + [anon_sym_for] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_loop] = ACTIONS(1727), + [anon_sym_make] = ACTIONS(1727), + [anon_sym_while] = ACTIONS(1727), + [anon_sym_do] = ACTIONS(1727), + [anon_sym_if] = ACTIONS(1727), + [anon_sym_else] = ACTIONS(1727), + [anon_sym_match] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_try] = ACTIONS(1727), + [anon_sym_catch] = ACTIONS(1727), + [anon_sym_return] = ACTIONS(1727), + [anon_sym_source] = ACTIONS(1727), + [anon_sym_source_DASHenv] = ACTIONS(1727), + [anon_sym_register] = ACTIONS(1727), + [anon_sym_hide] = ACTIONS(1727), + [anon_sym_hide_DASHenv] = ACTIONS(1727), + [anon_sym_overlay] = ACTIONS(1727), + [anon_sym_as] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1727), + [aux_sym__val_number_token5] = ACTIONS(1727), + [aux_sym__val_number_token6] = ACTIONS(1727), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1727), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1729), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [361] = { + [sym_comment] = STATE(361), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1755), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [362] = { + [sym_comment] = STATE(362), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(1768), + [aux_sym__immediate_decimal_token2] = ACTIONS(1770), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [363] = { + [sym_comment] = STATE(363), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(1776), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [364] = { + [sym_comment] = STATE(364), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1778), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [365] = { [sym_comment] = STATE(365), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1775), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1782), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, [366] = { + [sym_path] = STATE(449), [sym_comment] = STATE(366), + [aux_sym_cell_path_repeat1] = STATE(369), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(1763), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [367] = { + [sym_comment] = STATE(367), [anon_sym_export] = ACTIONS(958), [anon_sym_alias] = ACTIONS(958), [anon_sym_let] = ACTIONS(958), @@ -120737,6 +120904,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(958), [anon_sym_use] = ACTIONS(958), [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), [anon_sym_DOLLAR] = ACTIONS(958), [anon_sym_error] = ACTIONS(958), [anon_sym_DASH2] = ACTIONS(958), @@ -120762,7 +120930,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(958), [anon_sym_overlay] = ACTIONS(958), [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(1784), + [anon_sym_QMARK2] = ACTIONS(1786), [anon_sym_PLUS2] = ACTIONS(958), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), [anon_sym_DOT_DOT2] = ACTIONS(958), @@ -120788,111 +120956,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(960), }, - [367] = { - [sym_comment] = STATE(367), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [aux_sym_cmd_identifier_token37] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT2] = ACTIONS(1790), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1792), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1792), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [sym__entry_separator] = ACTIONS(1794), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1794), - }, [368] = { [sym_comment] = STATE(368), [anon_sym_export] = ACTIONS(952), @@ -120947,6 +121010,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(952), [anon_sym_use] = ACTIONS(952), [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), [anon_sym_DOLLAR] = ACTIONS(952), [anon_sym_error] = ACTIONS(952), [anon_sym_DASH2] = ACTIONS(952), @@ -120972,7 +121036,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(952), [anon_sym_overlay] = ACTIONS(952), [anon_sym_as] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(1796), + [anon_sym_QMARK2] = ACTIONS(1788), [anon_sym_PLUS2] = ACTIONS(952), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), [anon_sym_DOT_DOT2] = ACTIONS(952), @@ -120999,324 +121063,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(954), }, [369] = { - [sym_expr_parenthesized] = STATE(4086), - [sym__spread_parenthesized] = STATE(4424), - [sym_val_range] = STATE(4425), - [sym__val_range] = STATE(7614), - [sym__val_range_with_end] = STATE(7313), - [sym__value] = STATE(4425), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym__spread_variable] = STATE(4426), - [sym_val_variable] = STATE(4029), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3826), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym__spread_list] = STATE(4424), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym__cmd_arg] = STATE(4427), - [sym_redirection] = STATE(4429), - [sym__flag] = STATE(4432), - [sym_short_flag] = STATE(4399), - [sym_long_flag] = STATE(4399), - [sym_unquoted] = STATE(4275), - [sym__unquoted_with_expr] = STATE(4434), - [sym__unquoted_anonymous_prefix] = STATE(7065), + [sym_path] = STATE(449), [sym_comment] = STATE(369), - [sym__newline] = ACTIONS(1798), - [sym__space] = ACTIONS(1798), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1825), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(1827), - [aux_sym__val_number_decimal_token3] = ACTIONS(1829), - [aux_sym__val_number_decimal_token4] = ACTIONS(1831), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1851), - [anon_sym_COLON2] = ACTIONS(1853), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1855), - [anon_sym_out_GT_GT] = ACTIONS(1855), - [anon_sym_e_GT_GT] = ACTIONS(1855), - [anon_sym_o_GT_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1855), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1859), - }, - [370] = { - [sym_comment] = STATE(370), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [sym__entry_separator] = ACTIONS(1863), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [371] = { - [sym_comment] = STATE(371), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_alias] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_let_DASHenv] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [aux_sym_cmd_identifier_token1] = ACTIONS(1865), - [aux_sym_cmd_identifier_token2] = ACTIONS(1865), - [aux_sym_cmd_identifier_token3] = ACTIONS(1865), - [aux_sym_cmd_identifier_token4] = ACTIONS(1865), - [aux_sym_cmd_identifier_token5] = ACTIONS(1865), - [aux_sym_cmd_identifier_token6] = ACTIONS(1865), - [aux_sym_cmd_identifier_token7] = ACTIONS(1865), - [aux_sym_cmd_identifier_token8] = ACTIONS(1865), - [aux_sym_cmd_identifier_token9] = ACTIONS(1865), - [aux_sym_cmd_identifier_token10] = ACTIONS(1865), - [aux_sym_cmd_identifier_token11] = ACTIONS(1865), - [aux_sym_cmd_identifier_token12] = ACTIONS(1865), - [aux_sym_cmd_identifier_token13] = ACTIONS(1865), - [aux_sym_cmd_identifier_token14] = ACTIONS(1865), - [aux_sym_cmd_identifier_token15] = ACTIONS(1865), - [aux_sym_cmd_identifier_token16] = ACTIONS(1865), - [aux_sym_cmd_identifier_token17] = ACTIONS(1865), - [aux_sym_cmd_identifier_token18] = ACTIONS(1865), - [aux_sym_cmd_identifier_token19] = ACTIONS(1865), - [aux_sym_cmd_identifier_token20] = ACTIONS(1865), - [aux_sym_cmd_identifier_token21] = ACTIONS(1865), - [aux_sym_cmd_identifier_token22] = ACTIONS(1865), - [aux_sym_cmd_identifier_token23] = ACTIONS(1865), - [aux_sym_cmd_identifier_token24] = ACTIONS(1865), - [aux_sym_cmd_identifier_token25] = ACTIONS(1865), - [aux_sym_cmd_identifier_token26] = ACTIONS(1865), - [aux_sym_cmd_identifier_token27] = ACTIONS(1865), - [aux_sym_cmd_identifier_token28] = ACTIONS(1865), - [aux_sym_cmd_identifier_token29] = ACTIONS(1865), - [aux_sym_cmd_identifier_token30] = ACTIONS(1865), - [aux_sym_cmd_identifier_token31] = ACTIONS(1865), - [aux_sym_cmd_identifier_token32] = ACTIONS(1865), - [aux_sym_cmd_identifier_token33] = ACTIONS(1865), - [aux_sym_cmd_identifier_token34] = ACTIONS(1865), - [aux_sym_cmd_identifier_token35] = ACTIONS(1865), - [aux_sym_cmd_identifier_token36] = ACTIONS(1865), - [aux_sym_cmd_identifier_token37] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1865), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1865), - [anon_sym_export_DASHenv] = ACTIONS(1865), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_error] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_in2] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_make] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_source] = ACTIONS(1865), - [anon_sym_source_DASHenv] = ACTIONS(1865), - [anon_sym_register] = ACTIONS(1865), - [anon_sym_hide] = ACTIONS(1865), - [anon_sym_hide_DASHenv] = ACTIONS(1865), - [anon_sym_overlay] = ACTIONS(1865), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT_DOT2] = ACTIONS(1869), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1871), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1871), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1865), - [aux_sym__val_number_token5] = ACTIONS(1865), - [aux_sym__val_number_token6] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [sym__entry_separator] = ACTIONS(1873), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [372] = { - [sym_path] = STATE(444), - [sym_comment] = STATE(372), - [aux_sym_cell_path_repeat1] = STATE(372), + [aux_sym_cell_path_repeat1] = STATE(369), [anon_sym_export] = ACTIONS(941), [anon_sym_alias] = ACTIONS(941), [anon_sym_let] = ACTIONS(941), @@ -121369,6 +121118,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(941), [anon_sym_use] = ACTIONS(941), [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), [anon_sym_DOLLAR] = ACTIONS(943), [anon_sym_error] = ACTIONS(941), [anon_sym_DASH2] = ACTIONS(941), @@ -121414,12 +121164,224 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(943), [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(1790), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(943), }, - [373] = { - [sym_comment] = STATE(373), + [370] = { + [sym_comment] = STATE(370), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_alias] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_let_DASHenv] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [aux_sym_cmd_identifier_token1] = ACTIONS(1793), + [aux_sym_cmd_identifier_token2] = ACTIONS(1793), + [aux_sym_cmd_identifier_token3] = ACTIONS(1793), + [aux_sym_cmd_identifier_token4] = ACTIONS(1793), + [aux_sym_cmd_identifier_token5] = ACTIONS(1793), + [aux_sym_cmd_identifier_token6] = ACTIONS(1793), + [aux_sym_cmd_identifier_token7] = ACTIONS(1793), + [aux_sym_cmd_identifier_token8] = ACTIONS(1793), + [aux_sym_cmd_identifier_token9] = ACTIONS(1793), + [aux_sym_cmd_identifier_token10] = ACTIONS(1793), + [aux_sym_cmd_identifier_token11] = ACTIONS(1793), + [aux_sym_cmd_identifier_token12] = ACTIONS(1793), + [aux_sym_cmd_identifier_token13] = ACTIONS(1793), + [aux_sym_cmd_identifier_token14] = ACTIONS(1793), + [aux_sym_cmd_identifier_token15] = ACTIONS(1793), + [aux_sym_cmd_identifier_token16] = ACTIONS(1793), + [aux_sym_cmd_identifier_token17] = ACTIONS(1793), + [aux_sym_cmd_identifier_token18] = ACTIONS(1793), + [aux_sym_cmd_identifier_token19] = ACTIONS(1793), + [aux_sym_cmd_identifier_token20] = ACTIONS(1793), + [aux_sym_cmd_identifier_token21] = ACTIONS(1793), + [aux_sym_cmd_identifier_token22] = ACTIONS(1793), + [aux_sym_cmd_identifier_token23] = ACTIONS(1793), + [aux_sym_cmd_identifier_token24] = ACTIONS(1793), + [aux_sym_cmd_identifier_token25] = ACTIONS(1793), + [aux_sym_cmd_identifier_token26] = ACTIONS(1793), + [aux_sym_cmd_identifier_token27] = ACTIONS(1793), + [aux_sym_cmd_identifier_token28] = ACTIONS(1793), + [aux_sym_cmd_identifier_token29] = ACTIONS(1793), + [aux_sym_cmd_identifier_token30] = ACTIONS(1793), + [aux_sym_cmd_identifier_token31] = ACTIONS(1793), + [aux_sym_cmd_identifier_token32] = ACTIONS(1793), + [aux_sym_cmd_identifier_token33] = ACTIONS(1793), + [aux_sym_cmd_identifier_token34] = ACTIONS(1793), + [aux_sym_cmd_identifier_token35] = ACTIONS(1793), + [aux_sym_cmd_identifier_token36] = ACTIONS(1793), + [aux_sym_cmd_identifier_token37] = ACTIONS(1793), + [aux_sym_cmd_identifier_token38] = ACTIONS(1793), + [aux_sym_cmd_identifier_token39] = ACTIONS(1793), + [aux_sym_cmd_identifier_token40] = ACTIONS(1793), + [anon_sym_def] = ACTIONS(1793), + [anon_sym_export_DASHenv] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_DOLLAR] = ACTIONS(1793), + [anon_sym_error] = ACTIONS(1793), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_in2] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_make] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_catch] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_source] = ACTIONS(1793), + [anon_sym_source_DASHenv] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_hide] = ACTIONS(1793), + [anon_sym_hide_DASHenv] = ACTIONS(1793), + [anon_sym_overlay] = ACTIONS(1793), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_PLUS2] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), + [anon_sym_DOT_DOT2] = ACTIONS(1797), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1799), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1799), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1793), + [aux_sym__val_number_decimal_token3] = ACTIONS(1793), + [aux_sym__val_number_decimal_token4] = ACTIONS(1793), + [aux_sym__val_number_token1] = ACTIONS(1793), + [aux_sym__val_number_token2] = ACTIONS(1793), + [aux_sym__val_number_token3] = ACTIONS(1793), + [aux_sym__val_number_token4] = ACTIONS(1793), + [aux_sym__val_number_token5] = ACTIONS(1793), + [aux_sym__val_number_token6] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [sym__str_single_quotes] = ACTIONS(1793), + [sym__str_back_ticks] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), + [sym__entry_separator] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [371] = { + [sym_comment] = STATE(371), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1805), + [aux_sym_cmd_identifier_token3] = ACTIONS(1805), + [aux_sym_cmd_identifier_token4] = ACTIONS(1805), + [aux_sym_cmd_identifier_token5] = ACTIONS(1805), + [aux_sym_cmd_identifier_token6] = ACTIONS(1805), + [aux_sym_cmd_identifier_token7] = ACTIONS(1805), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1805), + [aux_sym_cmd_identifier_token11] = ACTIONS(1805), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1805), + [aux_sym_cmd_identifier_token17] = ACTIONS(1805), + [aux_sym_cmd_identifier_token18] = ACTIONS(1805), + [aux_sym_cmd_identifier_token19] = ACTIONS(1805), + [aux_sym_cmd_identifier_token20] = ACTIONS(1805), + [aux_sym_cmd_identifier_token21] = ACTIONS(1805), + [aux_sym_cmd_identifier_token22] = ACTIONS(1805), + [aux_sym_cmd_identifier_token23] = ACTIONS(1805), + [aux_sym_cmd_identifier_token24] = ACTIONS(1805), + [aux_sym_cmd_identifier_token25] = ACTIONS(1805), + [aux_sym_cmd_identifier_token26] = ACTIONS(1805), + [aux_sym_cmd_identifier_token27] = ACTIONS(1805), + [aux_sym_cmd_identifier_token28] = ACTIONS(1805), + [aux_sym_cmd_identifier_token29] = ACTIONS(1805), + [aux_sym_cmd_identifier_token30] = ACTIONS(1805), + [aux_sym_cmd_identifier_token31] = ACTIONS(1805), + [aux_sym_cmd_identifier_token32] = ACTIONS(1805), + [aux_sym_cmd_identifier_token33] = ACTIONS(1805), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1805), + [aux_sym_cmd_identifier_token36] = ACTIONS(1805), + [aux_sym_cmd_identifier_token37] = ACTIONS(1805), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1805), + [aux_sym_cmd_identifier_token40] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_register] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1805), + [anon_sym_DOT_DOT2] = ACTIONS(1809), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1811), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1811), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1805), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1805), + [aux_sym__val_number_decimal_token3] = ACTIONS(1805), + [aux_sym__val_number_decimal_token4] = ACTIONS(1805), + [aux_sym__val_number_token1] = ACTIONS(1805), + [aux_sym__val_number_token2] = ACTIONS(1805), + [aux_sym__val_number_token3] = ACTIONS(1805), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [sym__str_single_quotes] = ACTIONS(1805), + [sym__str_back_ticks] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1805), + [sym__entry_separator] = ACTIONS(1813), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [372] = { + [sym_comment] = STATE(372), [anon_sym_export] = ACTIONS(964), [anon_sym_alias] = ACTIONS(964), [anon_sym_let] = ACTIONS(964), @@ -121472,6 +121434,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(964), [anon_sym_use] = ACTIONS(964), [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), [anon_sym_DOLLAR] = ACTIONS(964), [anon_sym_error] = ACTIONS(964), [anon_sym_DASH2] = ACTIONS(964), @@ -121523,218 +121486,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(966), }, - [374] = { - [sym_comment] = STATE(374), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1880), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [375] = { - [sym_comment] = STATE(375), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [376] = { - [sym_comment] = STATE(376), + [373] = { + [sym_comment] = STATE(373), [anon_sym_export] = ACTIONS(968), [anon_sym_alias] = ACTIONS(968), [anon_sym_let] = ACTIONS(968), @@ -121787,6 +121540,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(968), [anon_sym_use] = ACTIONS(968), [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), [anon_sym_DOLLAR] = ACTIONS(968), [anon_sym_error] = ACTIONS(968), [anon_sym_DASH2] = ACTIONS(968), @@ -121838,113 +121592,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(970), }, - [377] = { - [sym_comment] = STATE(377), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(1882), - [aux_sym__immediate_decimal_token2] = ACTIONS(1884), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [378] = { - [sym_comment] = STATE(378), + [374] = { + [sym_comment] = STATE(374), [anon_sym_export] = ACTIONS(972), [anon_sym_alias] = ACTIONS(972), [anon_sym_let] = ACTIONS(972), @@ -121997,6 +121646,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(972), [anon_sym_use] = ACTIONS(972), [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), [anon_sym_DOLLAR] = ACTIONS(972), [anon_sym_error] = ACTIONS(972), [anon_sym_DASH2] = ACTIONS(972), @@ -122048,113 +121698,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(974), }, - [379] = { - [sym_comment] = STATE(379), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [380] = { - [sym_comment] = STATE(380), + [375] = { + [sym_comment] = STATE(375), [anon_sym_export] = ACTIONS(976), [anon_sym_alias] = ACTIONS(976), [anon_sym_let] = ACTIONS(976), @@ -122199,1736 +121744,1125 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token36] = ACTIONS(976), [aux_sym_cmd_identifier_token37] = ACTIONS(976), [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(978), - }, - [381] = { - [sym_cell_path] = STATE(592), - [sym_path] = STATE(552), - [sym_comment] = STATE(381), - [aux_sym_cell_path_repeat1] = STATE(392), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(937), - [aux_sym_cmd_identifier_token3] = ACTIONS(937), - [aux_sym_cmd_identifier_token4] = ACTIONS(937), - [aux_sym_cmd_identifier_token5] = ACTIONS(937), - [aux_sym_cmd_identifier_token6] = ACTIONS(937), - [aux_sym_cmd_identifier_token7] = ACTIONS(937), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(937), - [aux_sym_cmd_identifier_token11] = ACTIONS(937), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(937), - [aux_sym_cmd_identifier_token17] = ACTIONS(937), - [aux_sym_cmd_identifier_token18] = ACTIONS(937), - [aux_sym_cmd_identifier_token19] = ACTIONS(937), - [aux_sym_cmd_identifier_token20] = ACTIONS(937), - [aux_sym_cmd_identifier_token21] = ACTIONS(937), - [aux_sym_cmd_identifier_token22] = ACTIONS(937), - [aux_sym_cmd_identifier_token23] = ACTIONS(937), - [aux_sym_cmd_identifier_token24] = ACTIONS(937), - [aux_sym_cmd_identifier_token25] = ACTIONS(937), - [aux_sym_cmd_identifier_token26] = ACTIONS(937), - [aux_sym_cmd_identifier_token27] = ACTIONS(937), - [aux_sym_cmd_identifier_token28] = ACTIONS(937), - [aux_sym_cmd_identifier_token29] = ACTIONS(937), - [aux_sym_cmd_identifier_token30] = ACTIONS(937), - [aux_sym_cmd_identifier_token31] = ACTIONS(937), - [aux_sym_cmd_identifier_token32] = ACTIONS(937), - [aux_sym_cmd_identifier_token33] = ACTIONS(937), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(937), - [aux_sym_cmd_identifier_token36] = ACTIONS(937), - [aux_sym_cmd_identifier_token37] = ACTIONS(937), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(937), - [aux_sym_cmd_identifier_token40] = ACTIONS(937), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_COMMA] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_register] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), - [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(937), - }, - [382] = { - [sym_comment] = STATE(382), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1888), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [383] = { - [sym_expr_parenthesized] = STATE(4086), - [sym__spread_parenthesized] = STATE(4424), - [sym_val_range] = STATE(4425), - [sym__val_range] = STATE(7614), - [sym__val_range_with_end] = STATE(7313), - [sym__value] = STATE(4425), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym__spread_variable] = STATE(4426), - [sym_val_variable] = STATE(4029), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3826), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym__spread_list] = STATE(4424), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym__cmd_arg] = STATE(4427), - [sym_redirection] = STATE(4429), - [sym__flag] = STATE(4432), - [sym_short_flag] = STATE(4399), - [sym_long_flag] = STATE(4399), - [sym_unquoted] = STATE(4275), - [sym__unquoted_with_expr] = STATE(4434), - [sym__unquoted_anonymous_prefix] = STATE(7065), - [sym_comment] = STATE(383), - [sym__newline] = ACTIONS(1801), - [sym__space] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1801), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_RBRACE] = ACTIONS(1801), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1825), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(1827), - [aux_sym__val_number_decimal_token3] = ACTIONS(1829), - [aux_sym__val_number_decimal_token4] = ACTIONS(1831), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), - [aux_sym__val_number_token4] = ACTIONS(1835), - [aux_sym__val_number_token5] = ACTIONS(1835), - [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1855), - [anon_sym_out_GT_GT] = ACTIONS(1855), - [anon_sym_e_GT_GT] = ACTIONS(1855), - [anon_sym_o_GT_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1855), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1859), - }, - [384] = { - [sym_comment] = STATE(384), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [385] = { - [sym_path] = STATE(444), - [sym_comment] = STATE(385), - [aux_sym_cell_path_repeat1] = STATE(372), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(950), - [aux_sym_cmd_identifier_token3] = ACTIONS(950), - [aux_sym_cmd_identifier_token4] = ACTIONS(950), - [aux_sym_cmd_identifier_token5] = ACTIONS(950), - [aux_sym_cmd_identifier_token6] = ACTIONS(950), - [aux_sym_cmd_identifier_token7] = ACTIONS(950), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(950), - [aux_sym_cmd_identifier_token11] = ACTIONS(950), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(950), - [aux_sym_cmd_identifier_token17] = ACTIONS(950), - [aux_sym_cmd_identifier_token18] = ACTIONS(950), - [aux_sym_cmd_identifier_token19] = ACTIONS(950), - [aux_sym_cmd_identifier_token20] = ACTIONS(950), - [aux_sym_cmd_identifier_token21] = ACTIONS(950), - [aux_sym_cmd_identifier_token22] = ACTIONS(950), - [aux_sym_cmd_identifier_token23] = ACTIONS(950), - [aux_sym_cmd_identifier_token24] = ACTIONS(950), - [aux_sym_cmd_identifier_token25] = ACTIONS(950), - [aux_sym_cmd_identifier_token26] = ACTIONS(950), - [aux_sym_cmd_identifier_token27] = ACTIONS(950), - [aux_sym_cmd_identifier_token28] = ACTIONS(950), - [aux_sym_cmd_identifier_token29] = ACTIONS(950), - [aux_sym_cmd_identifier_token30] = ACTIONS(950), - [aux_sym_cmd_identifier_token31] = ACTIONS(950), - [aux_sym_cmd_identifier_token32] = ACTIONS(950), - [aux_sym_cmd_identifier_token33] = ACTIONS(950), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(950), - [aux_sym_cmd_identifier_token36] = ACTIONS(950), - [aux_sym_cmd_identifier_token37] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(1771), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(950), - }, - [386] = { - [sym_cell_path] = STATE(681), - [sym_path] = STATE(557), - [sym_comment] = STATE(386), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1894), - [aux_sym_cmd_identifier_token4] = ACTIONS(1894), - [aux_sym_cmd_identifier_token5] = ACTIONS(1894), - [aux_sym_cmd_identifier_token6] = ACTIONS(1894), - [aux_sym_cmd_identifier_token7] = ACTIONS(1894), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1894), - [aux_sym_cmd_identifier_token11] = ACTIONS(1894), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1894), - [aux_sym_cmd_identifier_token17] = ACTIONS(1894), - [aux_sym_cmd_identifier_token18] = ACTIONS(1894), - [aux_sym_cmd_identifier_token19] = ACTIONS(1894), - [aux_sym_cmd_identifier_token20] = ACTIONS(1894), - [aux_sym_cmd_identifier_token21] = ACTIONS(1894), - [aux_sym_cmd_identifier_token22] = ACTIONS(1894), - [aux_sym_cmd_identifier_token23] = ACTIONS(1894), - [aux_sym_cmd_identifier_token24] = ACTIONS(1894), - [aux_sym_cmd_identifier_token25] = ACTIONS(1894), - [aux_sym_cmd_identifier_token26] = ACTIONS(1894), - [aux_sym_cmd_identifier_token27] = ACTIONS(1894), - [aux_sym_cmd_identifier_token28] = ACTIONS(1894), - [aux_sym_cmd_identifier_token29] = ACTIONS(1894), - [aux_sym_cmd_identifier_token30] = ACTIONS(1894), - [aux_sym_cmd_identifier_token31] = ACTIONS(1894), - [aux_sym_cmd_identifier_token32] = ACTIONS(1894), - [aux_sym_cmd_identifier_token33] = ACTIONS(1894), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1894), - [aux_sym_cmd_identifier_token36] = ACTIONS(1894), - [aux_sym_cmd_identifier_token37] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_DASH2] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in2] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_PLUS2] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [aux_sym__val_number_token4] = ACTIONS(1894), - [aux_sym__val_number_token5] = ACTIONS(1894), - [aux_sym__val_number_token6] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), - [sym__entry_separator] = ACTIONS(1896), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1896), - }, - [387] = { - [sym_comment] = STATE(387), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [aux_sym__immediate_decimal_token1] = ACTIONS(1900), - [aux_sym__immediate_decimal_token2] = ACTIONS(1902), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(978), }, - [388] = { - [sym_comment] = STATE(388), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1890), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), + [376] = { + [sym_comment] = STATE(376), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1780), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [377] = { + [sym_comment] = STATE(377), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(1751), }, - [389] = { - [sym_comment] = STATE(389), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(1904), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), + [378] = { + [sym_comment] = STATE(378), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [sym_raw_string_begin] = ACTIONS(1733), }, - [390] = { - [sym_comment] = STATE(390), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1906), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1908), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [379] = { + [sym_comment] = STATE(379), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(1815), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [391] = { - [sym_comment] = STATE(391), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(1910), - [aux_sym__immediate_decimal_token2] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), + [380] = { + [sym_comment] = STATE(380), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(1774), }, - [392] = { - [sym_path] = STATE(552), - [sym_comment] = STATE(392), - [aux_sym_cell_path_repeat1] = STATE(393), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(950), - [aux_sym_cmd_identifier_token3] = ACTIONS(950), - [aux_sym_cmd_identifier_token4] = ACTIONS(950), - [aux_sym_cmd_identifier_token5] = ACTIONS(950), - [aux_sym_cmd_identifier_token6] = ACTIONS(950), - [aux_sym_cmd_identifier_token7] = ACTIONS(950), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(950), - [aux_sym_cmd_identifier_token11] = ACTIONS(950), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(950), - [aux_sym_cmd_identifier_token17] = ACTIONS(950), - [aux_sym_cmd_identifier_token18] = ACTIONS(950), - [aux_sym_cmd_identifier_token19] = ACTIONS(950), - [aux_sym_cmd_identifier_token20] = ACTIONS(950), - [aux_sym_cmd_identifier_token21] = ACTIONS(950), - [aux_sym_cmd_identifier_token22] = ACTIONS(950), - [aux_sym_cmd_identifier_token23] = ACTIONS(950), - [aux_sym_cmd_identifier_token24] = ACTIONS(950), - [aux_sym_cmd_identifier_token25] = ACTIONS(950), - [aux_sym_cmd_identifier_token26] = ACTIONS(950), - [aux_sym_cmd_identifier_token27] = ACTIONS(950), - [aux_sym_cmd_identifier_token28] = ACTIONS(950), - [aux_sym_cmd_identifier_token29] = ACTIONS(950), - [aux_sym_cmd_identifier_token30] = ACTIONS(950), - [aux_sym_cmd_identifier_token31] = ACTIONS(950), - [aux_sym_cmd_identifier_token32] = ACTIONS(950), - [aux_sym_cmd_identifier_token33] = ACTIONS(950), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(950), - [aux_sym_cmd_identifier_token36] = ACTIONS(950), - [aux_sym_cmd_identifier_token37] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_COMMA] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(1886), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(950), + [381] = { + [sym_comment] = STATE(381), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1817), + [aux_sym_cmd_identifier_token3] = ACTIONS(1817), + [aux_sym_cmd_identifier_token4] = ACTIONS(1817), + [aux_sym_cmd_identifier_token5] = ACTIONS(1817), + [aux_sym_cmd_identifier_token6] = ACTIONS(1817), + [aux_sym_cmd_identifier_token7] = ACTIONS(1817), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1817), + [aux_sym_cmd_identifier_token11] = ACTIONS(1817), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1817), + [aux_sym_cmd_identifier_token17] = ACTIONS(1817), + [aux_sym_cmd_identifier_token18] = ACTIONS(1817), + [aux_sym_cmd_identifier_token19] = ACTIONS(1817), + [aux_sym_cmd_identifier_token20] = ACTIONS(1817), + [aux_sym_cmd_identifier_token21] = ACTIONS(1817), + [aux_sym_cmd_identifier_token22] = ACTIONS(1817), + [aux_sym_cmd_identifier_token23] = ACTIONS(1817), + [aux_sym_cmd_identifier_token24] = ACTIONS(1817), + [aux_sym_cmd_identifier_token25] = ACTIONS(1817), + [aux_sym_cmd_identifier_token26] = ACTIONS(1817), + [aux_sym_cmd_identifier_token27] = ACTIONS(1817), + [aux_sym_cmd_identifier_token28] = ACTIONS(1817), + [aux_sym_cmd_identifier_token29] = ACTIONS(1817), + [aux_sym_cmd_identifier_token30] = ACTIONS(1817), + [aux_sym_cmd_identifier_token31] = ACTIONS(1817), + [aux_sym_cmd_identifier_token32] = ACTIONS(1817), + [aux_sym_cmd_identifier_token33] = ACTIONS(1817), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1817), + [aux_sym_cmd_identifier_token36] = ACTIONS(1817), + [aux_sym_cmd_identifier_token37] = ACTIONS(1817), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1817), + [aux_sym_cmd_identifier_token40] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1817), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1817), + [aux_sym__val_number_decimal_token3] = ACTIONS(1817), + [aux_sym__val_number_decimal_token4] = ACTIONS(1817), + [aux_sym__val_number_token1] = ACTIONS(1817), + [aux_sym__val_number_token2] = ACTIONS(1817), + [aux_sym__val_number_token3] = ACTIONS(1817), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1817), + [sym__str_single_quotes] = ACTIONS(1817), + [sym__str_back_ticks] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1817), + [sym__entry_separator] = ACTIONS(1819), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1819), }, - [393] = { - [sym_path] = STATE(552), - [sym_comment] = STATE(393), - [aux_sym_cell_path_repeat1] = STATE(393), - [anon_sym_export] = ACTIONS(941), - [anon_sym_alias] = ACTIONS(941), - [anon_sym_let] = ACTIONS(941), - [anon_sym_let_DASHenv] = ACTIONS(941), - [anon_sym_mut] = ACTIONS(941), - [anon_sym_const] = ACTIONS(941), - [aux_sym_cmd_identifier_token1] = ACTIONS(941), - [aux_sym_cmd_identifier_token2] = ACTIONS(943), - [aux_sym_cmd_identifier_token3] = ACTIONS(943), - [aux_sym_cmd_identifier_token4] = ACTIONS(943), - [aux_sym_cmd_identifier_token5] = ACTIONS(943), - [aux_sym_cmd_identifier_token6] = ACTIONS(943), - [aux_sym_cmd_identifier_token7] = ACTIONS(943), - [aux_sym_cmd_identifier_token8] = ACTIONS(941), - [aux_sym_cmd_identifier_token9] = ACTIONS(941), - [aux_sym_cmd_identifier_token10] = ACTIONS(943), - [aux_sym_cmd_identifier_token11] = ACTIONS(943), - [aux_sym_cmd_identifier_token12] = ACTIONS(941), - [aux_sym_cmd_identifier_token13] = ACTIONS(941), - [aux_sym_cmd_identifier_token14] = ACTIONS(941), - [aux_sym_cmd_identifier_token15] = ACTIONS(941), - [aux_sym_cmd_identifier_token16] = ACTIONS(943), - [aux_sym_cmd_identifier_token17] = ACTIONS(943), - [aux_sym_cmd_identifier_token18] = ACTIONS(943), - [aux_sym_cmd_identifier_token19] = ACTIONS(943), - [aux_sym_cmd_identifier_token20] = ACTIONS(943), - [aux_sym_cmd_identifier_token21] = ACTIONS(943), - [aux_sym_cmd_identifier_token22] = ACTIONS(943), - [aux_sym_cmd_identifier_token23] = ACTIONS(943), - [aux_sym_cmd_identifier_token24] = ACTIONS(943), - [aux_sym_cmd_identifier_token25] = ACTIONS(943), - [aux_sym_cmd_identifier_token26] = ACTIONS(943), - [aux_sym_cmd_identifier_token27] = ACTIONS(943), - [aux_sym_cmd_identifier_token28] = ACTIONS(943), - [aux_sym_cmd_identifier_token29] = ACTIONS(943), - [aux_sym_cmd_identifier_token30] = ACTIONS(943), - [aux_sym_cmd_identifier_token31] = ACTIONS(943), - [aux_sym_cmd_identifier_token32] = ACTIONS(943), - [aux_sym_cmd_identifier_token33] = ACTIONS(943), - [aux_sym_cmd_identifier_token34] = ACTIONS(941), - [aux_sym_cmd_identifier_token35] = ACTIONS(943), - [aux_sym_cmd_identifier_token36] = ACTIONS(943), - [aux_sym_cmd_identifier_token37] = ACTIONS(943), - [aux_sym_cmd_identifier_token38] = ACTIONS(941), - [aux_sym_cmd_identifier_token39] = ACTIONS(943), - [aux_sym_cmd_identifier_token40] = ACTIONS(943), - [anon_sym_def] = ACTIONS(941), - [anon_sym_export_DASHenv] = ACTIONS(941), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_module] = ACTIONS(941), - [anon_sym_use] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_COMMA] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(941), - [anon_sym_DASH2] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in2] = ACTIONS(941), - [anon_sym_loop] = ACTIONS(941), - [anon_sym_make] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [anon_sym_do] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_else] = ACTIONS(941), - [anon_sym_match] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_try] = ACTIONS(941), - [anon_sym_catch] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_source] = ACTIONS(941), - [anon_sym_source_DASHenv] = ACTIONS(941), - [anon_sym_register] = ACTIONS(941), - [anon_sym_hide] = ACTIONS(941), - [anon_sym_hide_DASHenv] = ACTIONS(941), - [anon_sym_overlay] = ACTIONS(941), - [anon_sym_as] = ACTIONS(941), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), - [aux_sym__val_number_decimal_token1] = ACTIONS(941), - [aux_sym__val_number_decimal_token2] = ACTIONS(943), - [aux_sym__val_number_decimal_token3] = ACTIONS(943), - [aux_sym__val_number_decimal_token4] = ACTIONS(943), - [aux_sym__val_number_token1] = ACTIONS(943), - [aux_sym__val_number_token2] = ACTIONS(943), - [aux_sym__val_number_token3] = ACTIONS(943), - [aux_sym__val_number_token4] = ACTIONS(941), - [aux_sym__val_number_token5] = ACTIONS(941), - [aux_sym__val_number_token6] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(943), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), - [anon_sym_COLON2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(1914), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(943), + [382] = { + [sym_comment] = STATE(382), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(1821), + [aux_sym__immediate_decimal_token2] = ACTIONS(1823), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1733), }, - [394] = { - [sym_expr_parenthesized] = STATE(4086), - [sym__spread_parenthesized] = STATE(4424), - [sym_val_range] = STATE(4425), - [sym__val_range] = STATE(7614), - [sym__val_range_with_end] = STATE(7313), - [sym__value] = STATE(4425), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym__spread_variable] = STATE(4426), - [sym_val_variable] = STATE(4029), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3826), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym__spread_list] = STATE(4424), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym__cmd_arg] = STATE(4610), - [sym_redirection] = STATE(4429), - [sym__flag] = STATE(4432), - [sym_short_flag] = STATE(4399), - [sym_long_flag] = STATE(4399), - [sym_unquoted] = STATE(4275), - [sym__unquoted_with_expr] = STATE(4434), - [sym__unquoted_anonymous_prefix] = STATE(7065), - [sym_comment] = STATE(394), - [sym__newline] = ACTIONS(1917), - [sym__space] = ACTIONS(1919), - [anon_sym_SEMI] = ACTIONS(1917), - [anon_sym_PIPE] = ACTIONS(1917), - [anon_sym_err_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_GT_PIPE] = ACTIONS(1917), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1917), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1917), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1917), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1917), - [anon_sym_LBRACK] = ACTIONS(1803), - [anon_sym_LPAREN] = ACTIONS(1805), - [anon_sym_RPAREN] = ACTIONS(1917), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_DASH_DASH] = ACTIONS(1809), - [anon_sym_DASH2] = ACTIONS(1811), - [anon_sym_LBRACE] = ACTIONS(1813), - [anon_sym_DOT_DOT] = ACTIONS(1815), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), - [anon_sym_DOT_DOT_LT] = ACTIONS(1819), - [anon_sym_null] = ACTIONS(1821), - [anon_sym_true] = ACTIONS(1823), - [anon_sym_false] = ACTIONS(1823), + [383] = { + [sym_cell_path] = STATE(633), + [sym_path] = STATE(556), + [sym_comment] = STATE(383), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_alias] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_let_DASHenv] = ACTIONS(1825), + [anon_sym_mut] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [aux_sym_cmd_identifier_token1] = ACTIONS(1825), + [aux_sym_cmd_identifier_token2] = ACTIONS(1825), + [aux_sym_cmd_identifier_token3] = ACTIONS(1825), + [aux_sym_cmd_identifier_token4] = ACTIONS(1825), + [aux_sym_cmd_identifier_token5] = ACTIONS(1825), + [aux_sym_cmd_identifier_token6] = ACTIONS(1825), + [aux_sym_cmd_identifier_token7] = ACTIONS(1825), + [aux_sym_cmd_identifier_token8] = ACTIONS(1825), + [aux_sym_cmd_identifier_token9] = ACTIONS(1825), + [aux_sym_cmd_identifier_token10] = ACTIONS(1825), + [aux_sym_cmd_identifier_token11] = ACTIONS(1825), + [aux_sym_cmd_identifier_token12] = ACTIONS(1825), + [aux_sym_cmd_identifier_token13] = ACTIONS(1825), + [aux_sym_cmd_identifier_token14] = ACTIONS(1825), + [aux_sym_cmd_identifier_token15] = ACTIONS(1825), + [aux_sym_cmd_identifier_token16] = ACTIONS(1825), + [aux_sym_cmd_identifier_token17] = ACTIONS(1825), + [aux_sym_cmd_identifier_token18] = ACTIONS(1825), + [aux_sym_cmd_identifier_token19] = ACTIONS(1825), + [aux_sym_cmd_identifier_token20] = ACTIONS(1825), + [aux_sym_cmd_identifier_token21] = ACTIONS(1825), + [aux_sym_cmd_identifier_token22] = ACTIONS(1825), + [aux_sym_cmd_identifier_token23] = ACTIONS(1825), + [aux_sym_cmd_identifier_token24] = ACTIONS(1825), + [aux_sym_cmd_identifier_token25] = ACTIONS(1825), + [aux_sym_cmd_identifier_token26] = ACTIONS(1825), + [aux_sym_cmd_identifier_token27] = ACTIONS(1825), + [aux_sym_cmd_identifier_token28] = ACTIONS(1825), + [aux_sym_cmd_identifier_token29] = ACTIONS(1825), + [aux_sym_cmd_identifier_token30] = ACTIONS(1825), + [aux_sym_cmd_identifier_token31] = ACTIONS(1825), + [aux_sym_cmd_identifier_token32] = ACTIONS(1825), + [aux_sym_cmd_identifier_token33] = ACTIONS(1825), + [aux_sym_cmd_identifier_token34] = ACTIONS(1825), + [aux_sym_cmd_identifier_token35] = ACTIONS(1825), + [aux_sym_cmd_identifier_token36] = ACTIONS(1825), + [aux_sym_cmd_identifier_token37] = ACTIONS(1825), + [aux_sym_cmd_identifier_token38] = ACTIONS(1825), + [aux_sym_cmd_identifier_token39] = ACTIONS(1825), + [aux_sym_cmd_identifier_token40] = ACTIONS(1825), + [anon_sym_def] = ACTIONS(1825), + [anon_sym_export_DASHenv] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1825), + [anon_sym_error] = ACTIONS(1825), + [anon_sym_DASH2] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_in2] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_make] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_catch] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_source] = ACTIONS(1825), + [anon_sym_source_DASHenv] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_hide] = ACTIONS(1825), + [anon_sym_hide_DASHenv] = ACTIONS(1825), + [anon_sym_overlay] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_PLUS2] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1825), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1825), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(1827), - [aux_sym__val_number_decimal_token3] = ACTIONS(1829), + [aux_sym__val_number_decimal_token1] = ACTIONS(1825), + [aux_sym__val_number_decimal_token2] = ACTIONS(1825), + [aux_sym__val_number_decimal_token3] = ACTIONS(1825), + [aux_sym__val_number_decimal_token4] = ACTIONS(1825), + [aux_sym__val_number_token1] = ACTIONS(1825), + [aux_sym__val_number_token2] = ACTIONS(1825), + [aux_sym__val_number_token3] = ACTIONS(1825), + [aux_sym__val_number_token4] = ACTIONS(1825), + [aux_sym__val_number_token5] = ACTIONS(1825), + [aux_sym__val_number_token6] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym__str_single_quotes] = ACTIONS(1825), + [sym__str_back_ticks] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1825), + [sym__entry_separator] = ACTIONS(1827), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1827), + }, + [384] = { + [sym_cell_path] = STATE(600), + [sym_path] = STATE(556), + [sym_comment] = STATE(384), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_alias] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_let_DASHenv] = ACTIONS(1831), + [anon_sym_mut] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [aux_sym_cmd_identifier_token1] = ACTIONS(1831), + [aux_sym_cmd_identifier_token2] = ACTIONS(1831), + [aux_sym_cmd_identifier_token3] = ACTIONS(1831), + [aux_sym_cmd_identifier_token4] = ACTIONS(1831), + [aux_sym_cmd_identifier_token5] = ACTIONS(1831), + [aux_sym_cmd_identifier_token6] = ACTIONS(1831), + [aux_sym_cmd_identifier_token7] = ACTIONS(1831), + [aux_sym_cmd_identifier_token8] = ACTIONS(1831), + [aux_sym_cmd_identifier_token9] = ACTIONS(1831), + [aux_sym_cmd_identifier_token10] = ACTIONS(1831), + [aux_sym_cmd_identifier_token11] = ACTIONS(1831), + [aux_sym_cmd_identifier_token12] = ACTIONS(1831), + [aux_sym_cmd_identifier_token13] = ACTIONS(1831), + [aux_sym_cmd_identifier_token14] = ACTIONS(1831), + [aux_sym_cmd_identifier_token15] = ACTIONS(1831), + [aux_sym_cmd_identifier_token16] = ACTIONS(1831), + [aux_sym_cmd_identifier_token17] = ACTIONS(1831), + [aux_sym_cmd_identifier_token18] = ACTIONS(1831), + [aux_sym_cmd_identifier_token19] = ACTIONS(1831), + [aux_sym_cmd_identifier_token20] = ACTIONS(1831), + [aux_sym_cmd_identifier_token21] = ACTIONS(1831), + [aux_sym_cmd_identifier_token22] = ACTIONS(1831), + [aux_sym_cmd_identifier_token23] = ACTIONS(1831), + [aux_sym_cmd_identifier_token24] = ACTIONS(1831), + [aux_sym_cmd_identifier_token25] = ACTIONS(1831), + [aux_sym_cmd_identifier_token26] = ACTIONS(1831), + [aux_sym_cmd_identifier_token27] = ACTIONS(1831), + [aux_sym_cmd_identifier_token28] = ACTIONS(1831), + [aux_sym_cmd_identifier_token29] = ACTIONS(1831), + [aux_sym_cmd_identifier_token30] = ACTIONS(1831), + [aux_sym_cmd_identifier_token31] = ACTIONS(1831), + [aux_sym_cmd_identifier_token32] = ACTIONS(1831), + [aux_sym_cmd_identifier_token33] = ACTIONS(1831), + [aux_sym_cmd_identifier_token34] = ACTIONS(1831), + [aux_sym_cmd_identifier_token35] = ACTIONS(1831), + [aux_sym_cmd_identifier_token36] = ACTIONS(1831), + [aux_sym_cmd_identifier_token37] = ACTIONS(1831), + [aux_sym_cmd_identifier_token38] = ACTIONS(1831), + [aux_sym_cmd_identifier_token39] = ACTIONS(1831), + [aux_sym_cmd_identifier_token40] = ACTIONS(1831), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_export_DASHenv] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1831), + [anon_sym_COMMA] = ACTIONS(1831), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_error] = ACTIONS(1831), + [anon_sym_DASH2] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_in2] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_make] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1831), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_catch] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_source] = ACTIONS(1831), + [anon_sym_source_DASHenv] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_hide] = ACTIONS(1831), + [anon_sym_hide_DASHenv] = ACTIONS(1831), + [anon_sym_overlay] = ACTIONS(1831), + [anon_sym_as] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1831), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1831), + [aux_sym__val_number_decimal_token3] = ACTIONS(1831), [aux_sym__val_number_decimal_token4] = ACTIONS(1831), - [aux_sym__val_number_token1] = ACTIONS(1833), - [aux_sym__val_number_token2] = ACTIONS(1833), - [aux_sym__val_number_token3] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1831), + [aux_sym__val_number_token2] = ACTIONS(1831), + [aux_sym__val_number_token3] = ACTIONS(1831), + [aux_sym__val_number_token4] = ACTIONS(1831), + [aux_sym__val_number_token5] = ACTIONS(1831), + [aux_sym__val_number_token6] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1831), + [sym__str_single_quotes] = ACTIONS(1831), + [sym__str_back_ticks] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1831), + [sym__entry_separator] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1833), + }, + [385] = { + [sym_cell_path] = STATE(601), + [sym_path] = STATE(556), + [sym_comment] = STATE(385), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [aux_sym_cmd_identifier_token37] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in2] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), [aux_sym__val_number_token4] = ACTIONS(1835), [aux_sym__val_number_token5] = ACTIONS(1835), [aux_sym__val_number_token6] = ACTIONS(1835), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(1841), - [anon_sym_DQUOTE] = ACTIONS(1843), - [sym__str_single_quotes] = ACTIONS(1845), - [sym__str_back_ticks] = ACTIONS(1845), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1847), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1851), - [anon_sym_err_GT] = ACTIONS(1855), - [anon_sym_out_GT] = ACTIONS(1855), - [anon_sym_e_GT] = ACTIONS(1855), - [anon_sym_o_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT] = ACTIONS(1855), - [anon_sym_err_GT_GT] = ACTIONS(1855), - [anon_sym_out_GT_GT] = ACTIONS(1855), - [anon_sym_e_GT_GT] = ACTIONS(1855), - [anon_sym_o_GT_GT] = ACTIONS(1855), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1855), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1855), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1855), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1855), - [aux_sym_unquoted_token1] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [sym__entry_separator] = ACTIONS(1837), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1859), - }, - [395] = { - [sym_comment] = STATE(395), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(960), - [aux_sym_cmd_identifier_token3] = ACTIONS(960), - [aux_sym_cmd_identifier_token4] = ACTIONS(960), - [aux_sym_cmd_identifier_token5] = ACTIONS(960), - [aux_sym_cmd_identifier_token6] = ACTIONS(960), - [aux_sym_cmd_identifier_token7] = ACTIONS(960), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(960), - [aux_sym_cmd_identifier_token11] = ACTIONS(960), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(960), - [aux_sym_cmd_identifier_token17] = ACTIONS(960), - [aux_sym_cmd_identifier_token18] = ACTIONS(960), - [aux_sym_cmd_identifier_token19] = ACTIONS(960), - [aux_sym_cmd_identifier_token20] = ACTIONS(960), - [aux_sym_cmd_identifier_token21] = ACTIONS(960), - [aux_sym_cmd_identifier_token22] = ACTIONS(960), - [aux_sym_cmd_identifier_token23] = ACTIONS(960), - [aux_sym_cmd_identifier_token24] = ACTIONS(960), - [aux_sym_cmd_identifier_token25] = ACTIONS(960), - [aux_sym_cmd_identifier_token26] = ACTIONS(960), - [aux_sym_cmd_identifier_token27] = ACTIONS(960), - [aux_sym_cmd_identifier_token28] = ACTIONS(960), - [aux_sym_cmd_identifier_token29] = ACTIONS(960), - [aux_sym_cmd_identifier_token30] = ACTIONS(960), - [aux_sym_cmd_identifier_token31] = ACTIONS(960), - [aux_sym_cmd_identifier_token32] = ACTIONS(960), - [aux_sym_cmd_identifier_token33] = ACTIONS(960), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(960), - [aux_sym_cmd_identifier_token36] = ACTIONS(960), - [aux_sym_cmd_identifier_token37] = ACTIONS(960), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(960), - [aux_sym_cmd_identifier_token40] = ACTIONS(960), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(1921), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(960), - }, - [396] = { - [sym_comment] = STATE(396), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [aux_sym_cmd_identifier_token1] = ACTIONS(952), - [aux_sym_cmd_identifier_token2] = ACTIONS(954), - [aux_sym_cmd_identifier_token3] = ACTIONS(954), - [aux_sym_cmd_identifier_token4] = ACTIONS(954), - [aux_sym_cmd_identifier_token5] = ACTIONS(954), - [aux_sym_cmd_identifier_token6] = ACTIONS(954), - [aux_sym_cmd_identifier_token7] = ACTIONS(954), - [aux_sym_cmd_identifier_token8] = ACTIONS(952), - [aux_sym_cmd_identifier_token9] = ACTIONS(952), - [aux_sym_cmd_identifier_token10] = ACTIONS(954), - [aux_sym_cmd_identifier_token11] = ACTIONS(954), - [aux_sym_cmd_identifier_token12] = ACTIONS(952), - [aux_sym_cmd_identifier_token13] = ACTIONS(952), - [aux_sym_cmd_identifier_token14] = ACTIONS(952), - [aux_sym_cmd_identifier_token15] = ACTIONS(952), - [aux_sym_cmd_identifier_token16] = ACTIONS(954), - [aux_sym_cmd_identifier_token17] = ACTIONS(954), - [aux_sym_cmd_identifier_token18] = ACTIONS(954), - [aux_sym_cmd_identifier_token19] = ACTIONS(954), - [aux_sym_cmd_identifier_token20] = ACTIONS(954), - [aux_sym_cmd_identifier_token21] = ACTIONS(954), - [aux_sym_cmd_identifier_token22] = ACTIONS(954), - [aux_sym_cmd_identifier_token23] = ACTIONS(954), - [aux_sym_cmd_identifier_token24] = ACTIONS(954), - [aux_sym_cmd_identifier_token25] = ACTIONS(954), - [aux_sym_cmd_identifier_token26] = ACTIONS(954), - [aux_sym_cmd_identifier_token27] = ACTIONS(954), - [aux_sym_cmd_identifier_token28] = ACTIONS(954), - [aux_sym_cmd_identifier_token29] = ACTIONS(954), - [aux_sym_cmd_identifier_token30] = ACTIONS(954), - [aux_sym_cmd_identifier_token31] = ACTIONS(954), - [aux_sym_cmd_identifier_token32] = ACTIONS(954), - [aux_sym_cmd_identifier_token33] = ACTIONS(954), - [aux_sym_cmd_identifier_token34] = ACTIONS(952), - [aux_sym_cmd_identifier_token35] = ACTIONS(954), - [aux_sym_cmd_identifier_token36] = ACTIONS(954), - [aux_sym_cmd_identifier_token37] = ACTIONS(954), - [aux_sym_cmd_identifier_token38] = ACTIONS(952), - [aux_sym_cmd_identifier_token39] = ACTIONS(954), - [aux_sym_cmd_identifier_token40] = ACTIONS(954), - [anon_sym_def] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(952), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in2] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_make] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_try] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_as] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(1923), - [anon_sym_PLUS2] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), - [anon_sym_DOT_DOT2] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), - [anon_sym_DOT_DOT_LT2] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(952), - [aux_sym__val_number_token5] = ACTIONS(952), - [aux_sym__val_number_token6] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(954), + [sym_raw_string_begin] = ACTIONS(1837), }, - [397] = { - [sym_comment] = STATE(397), + [386] = { + [sym_comment] = STATE(386), [anon_sym_export] = ACTIONS(988), [anon_sym_alias] = ACTIONS(988), [anon_sym_let] = ACTIONS(988), @@ -123981,6 +122915,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(988), [anon_sym_use] = ACTIONS(988), [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), [anon_sym_DOLLAR] = ACTIONS(988), [anon_sym_error] = ACTIONS(988), [anon_sym_DASH2] = ACTIONS(988), @@ -124031,320 +122966,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(990), }, - [398] = { - [sym_cell_path] = STATE(625), - [sym_path] = STATE(557), - [sym_comment] = STATE(398), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1925), - [aux_sym_cmd_identifier_token3] = ACTIONS(1925), - [aux_sym_cmd_identifier_token4] = ACTIONS(1925), - [aux_sym_cmd_identifier_token5] = ACTIONS(1925), - [aux_sym_cmd_identifier_token6] = ACTIONS(1925), - [aux_sym_cmd_identifier_token7] = ACTIONS(1925), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1925), - [aux_sym_cmd_identifier_token11] = ACTIONS(1925), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1925), - [aux_sym_cmd_identifier_token17] = ACTIONS(1925), - [aux_sym_cmd_identifier_token18] = ACTIONS(1925), - [aux_sym_cmd_identifier_token19] = ACTIONS(1925), - [aux_sym_cmd_identifier_token20] = ACTIONS(1925), - [aux_sym_cmd_identifier_token21] = ACTIONS(1925), - [aux_sym_cmd_identifier_token22] = ACTIONS(1925), - [aux_sym_cmd_identifier_token23] = ACTIONS(1925), - [aux_sym_cmd_identifier_token24] = ACTIONS(1925), - [aux_sym_cmd_identifier_token25] = ACTIONS(1925), - [aux_sym_cmd_identifier_token26] = ACTIONS(1925), - [aux_sym_cmd_identifier_token27] = ACTIONS(1925), - [aux_sym_cmd_identifier_token28] = ACTIONS(1925), - [aux_sym_cmd_identifier_token29] = ACTIONS(1925), - [aux_sym_cmd_identifier_token30] = ACTIONS(1925), - [aux_sym_cmd_identifier_token31] = ACTIONS(1925), - [aux_sym_cmd_identifier_token32] = ACTIONS(1925), - [aux_sym_cmd_identifier_token33] = ACTIONS(1925), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1925), - [aux_sym_cmd_identifier_token36] = ACTIONS(1925), - [aux_sym_cmd_identifier_token37] = ACTIONS(1925), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1925), - [aux_sym_cmd_identifier_token40] = ACTIONS(1925), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1925), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1925), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1925), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1925), - [aux_sym__val_number_decimal_token3] = ACTIONS(1925), - [aux_sym__val_number_decimal_token4] = ACTIONS(1925), - [aux_sym__val_number_token1] = ACTIONS(1925), - [aux_sym__val_number_token2] = ACTIONS(1925), - [aux_sym__val_number_token3] = ACTIONS(1925), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1925), - [sym__str_single_quotes] = ACTIONS(1925), - [sym__str_back_ticks] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1925), - [sym__entry_separator] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [399] = { - [sym_comment] = STATE(399), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1794), - [aux_sym_cmd_identifier_token3] = ACTIONS(1794), - [aux_sym_cmd_identifier_token4] = ACTIONS(1794), - [aux_sym_cmd_identifier_token5] = ACTIONS(1794), - [aux_sym_cmd_identifier_token6] = ACTIONS(1794), - [aux_sym_cmd_identifier_token7] = ACTIONS(1794), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1794), - [aux_sym_cmd_identifier_token11] = ACTIONS(1794), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1794), - [aux_sym_cmd_identifier_token17] = ACTIONS(1794), - [aux_sym_cmd_identifier_token18] = ACTIONS(1794), - [aux_sym_cmd_identifier_token19] = ACTIONS(1794), - [aux_sym_cmd_identifier_token20] = ACTIONS(1794), - [aux_sym_cmd_identifier_token21] = ACTIONS(1794), - [aux_sym_cmd_identifier_token22] = ACTIONS(1794), - [aux_sym_cmd_identifier_token23] = ACTIONS(1794), - [aux_sym_cmd_identifier_token24] = ACTIONS(1794), - [aux_sym_cmd_identifier_token25] = ACTIONS(1794), - [aux_sym_cmd_identifier_token26] = ACTIONS(1794), - [aux_sym_cmd_identifier_token27] = ACTIONS(1794), - [aux_sym_cmd_identifier_token28] = ACTIONS(1794), - [aux_sym_cmd_identifier_token29] = ACTIONS(1794), - [aux_sym_cmd_identifier_token30] = ACTIONS(1794), - [aux_sym_cmd_identifier_token31] = ACTIONS(1794), - [aux_sym_cmd_identifier_token32] = ACTIONS(1794), - [aux_sym_cmd_identifier_token33] = ACTIONS(1794), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1794), - [aux_sym_cmd_identifier_token36] = ACTIONS(1794), - [aux_sym_cmd_identifier_token37] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), - [anon_sym_DOT_DOT2] = ACTIONS(1929), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1931), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1931), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1794), - }, - [400] = { - [sym_comment] = STATE(400), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(984), - [aux_sym_cmd_identifier_token3] = ACTIONS(984), - [aux_sym_cmd_identifier_token4] = ACTIONS(984), - [aux_sym_cmd_identifier_token5] = ACTIONS(984), - [aux_sym_cmd_identifier_token6] = ACTIONS(984), - [aux_sym_cmd_identifier_token7] = ACTIONS(984), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(984), - [aux_sym_cmd_identifier_token11] = ACTIONS(984), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(984), - [aux_sym_cmd_identifier_token17] = ACTIONS(984), - [aux_sym_cmd_identifier_token18] = ACTIONS(984), - [aux_sym_cmd_identifier_token19] = ACTIONS(984), - [aux_sym_cmd_identifier_token20] = ACTIONS(984), - [aux_sym_cmd_identifier_token21] = ACTIONS(984), - [aux_sym_cmd_identifier_token22] = ACTIONS(984), - [aux_sym_cmd_identifier_token23] = ACTIONS(984), - [aux_sym_cmd_identifier_token24] = ACTIONS(984), - [aux_sym_cmd_identifier_token25] = ACTIONS(984), - [aux_sym_cmd_identifier_token26] = ACTIONS(984), - [aux_sym_cmd_identifier_token27] = ACTIONS(984), - [aux_sym_cmd_identifier_token28] = ACTIONS(984), - [aux_sym_cmd_identifier_token29] = ACTIONS(984), - [aux_sym_cmd_identifier_token30] = ACTIONS(984), - [aux_sym_cmd_identifier_token31] = ACTIONS(984), - [aux_sym_cmd_identifier_token32] = ACTIONS(984), - [aux_sym_cmd_identifier_token33] = ACTIONS(984), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(984), - [aux_sym_cmd_identifier_token36] = ACTIONS(984), - [aux_sym_cmd_identifier_token37] = ACTIONS(984), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(984), - [aux_sym_cmd_identifier_token40] = ACTIONS(984), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(984), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(984), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(984), - [aux_sym__val_number_decimal_token3] = ACTIONS(984), - [aux_sym__val_number_decimal_token4] = ACTIONS(984), - [aux_sym__val_number_token1] = ACTIONS(984), - [aux_sym__val_number_token2] = ACTIONS(984), - [aux_sym__val_number_token3] = ACTIONS(984), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(984), - [sym__str_single_quotes] = ACTIONS(984), - [sym__str_back_ticks] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), - [sym__entry_separator] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(986), - }, - [401] = { - [sym_comment] = STATE(401), + [387] = { + [sym_comment] = STATE(387), [anon_sym_export] = ACTIONS(980), [anon_sym_alias] = ACTIONS(980), [anon_sym_let] = ACTIONS(980), @@ -124397,6 +123020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(980), [anon_sym_use] = ACTIONS(980), [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), [anon_sym_DOLLAR] = ACTIONS(980), [anon_sym_error] = ACTIONS(980), [anon_sym_DASH2] = ACTIONS(980), @@ -124447,11 +123071,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(982), }, - [402] = { - [sym_cell_path] = STATE(661), - [sym_path] = STATE(557), - [sym_comment] = STATE(402), - [aux_sym_cell_path_repeat1] = STATE(445), + [388] = { + [sym_cell_path] = STATE(608), + [sym_path] = STATE(556), + [sym_comment] = STATE(388), + [aux_sym_cell_path_repeat1] = STATE(450), [anon_sym_export] = ACTIONS(935), [anon_sym_alias] = ACTIONS(935), [anon_sym_let] = ACTIONS(935), @@ -124504,6 +123128,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(935), [anon_sym_use] = ACTIONS(935), [anon_sym_LPAREN] = ACTIONS(935), + [anon_sym_COMMA] = ACTIONS(935), [anon_sym_DOLLAR] = ACTIONS(935), [anon_sym_error] = ACTIONS(935), [anon_sym_DASH2] = ACTIONS(935), @@ -124547,220 +123172,222 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(935), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(935), [sym__entry_separator] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(937), }, - [403] = { - [sym_cell_path] = STATE(611), - [sym_path] = STATE(557), - [sym_comment] = STATE(403), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1933), - [aux_sym_cmd_identifier_token4] = ACTIONS(1933), - [aux_sym_cmd_identifier_token5] = ACTIONS(1933), - [aux_sym_cmd_identifier_token6] = ACTIONS(1933), - [aux_sym_cmd_identifier_token7] = ACTIONS(1933), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1933), - [aux_sym_cmd_identifier_token11] = ACTIONS(1933), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1933), - [aux_sym_cmd_identifier_token17] = ACTIONS(1933), - [aux_sym_cmd_identifier_token18] = ACTIONS(1933), - [aux_sym_cmd_identifier_token19] = ACTIONS(1933), - [aux_sym_cmd_identifier_token20] = ACTIONS(1933), - [aux_sym_cmd_identifier_token21] = ACTIONS(1933), - [aux_sym_cmd_identifier_token22] = ACTIONS(1933), - [aux_sym_cmd_identifier_token23] = ACTIONS(1933), - [aux_sym_cmd_identifier_token24] = ACTIONS(1933), - [aux_sym_cmd_identifier_token25] = ACTIONS(1933), - [aux_sym_cmd_identifier_token26] = ACTIONS(1933), - [aux_sym_cmd_identifier_token27] = ACTIONS(1933), - [aux_sym_cmd_identifier_token28] = ACTIONS(1933), - [aux_sym_cmd_identifier_token29] = ACTIONS(1933), - [aux_sym_cmd_identifier_token30] = ACTIONS(1933), - [aux_sym_cmd_identifier_token31] = ACTIONS(1933), - [aux_sym_cmd_identifier_token32] = ACTIONS(1933), - [aux_sym_cmd_identifier_token33] = ACTIONS(1933), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1933), - [aux_sym_cmd_identifier_token36] = ACTIONS(1933), - [aux_sym_cmd_identifier_token37] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [sym__entry_separator] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(1898), + [389] = { + [sym_cell_path] = STATE(604), + [sym_path] = STATE(556), + [sym_comment] = STATE(389), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [aux_sym_cmd_identifier_token1] = ACTIONS(1839), + [aux_sym_cmd_identifier_token2] = ACTIONS(1839), + [aux_sym_cmd_identifier_token3] = ACTIONS(1839), + [aux_sym_cmd_identifier_token4] = ACTIONS(1839), + [aux_sym_cmd_identifier_token5] = ACTIONS(1839), + [aux_sym_cmd_identifier_token6] = ACTIONS(1839), + [aux_sym_cmd_identifier_token7] = ACTIONS(1839), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1839), + [aux_sym_cmd_identifier_token11] = ACTIONS(1839), + [aux_sym_cmd_identifier_token12] = ACTIONS(1839), + [aux_sym_cmd_identifier_token13] = ACTIONS(1839), + [aux_sym_cmd_identifier_token14] = ACTIONS(1839), + [aux_sym_cmd_identifier_token15] = ACTIONS(1839), + [aux_sym_cmd_identifier_token16] = ACTIONS(1839), + [aux_sym_cmd_identifier_token17] = ACTIONS(1839), + [aux_sym_cmd_identifier_token18] = ACTIONS(1839), + [aux_sym_cmd_identifier_token19] = ACTIONS(1839), + [aux_sym_cmd_identifier_token20] = ACTIONS(1839), + [aux_sym_cmd_identifier_token21] = ACTIONS(1839), + [aux_sym_cmd_identifier_token22] = ACTIONS(1839), + [aux_sym_cmd_identifier_token23] = ACTIONS(1839), + [aux_sym_cmd_identifier_token24] = ACTIONS(1839), + [aux_sym_cmd_identifier_token25] = ACTIONS(1839), + [aux_sym_cmd_identifier_token26] = ACTIONS(1839), + [aux_sym_cmd_identifier_token27] = ACTIONS(1839), + [aux_sym_cmd_identifier_token28] = ACTIONS(1839), + [aux_sym_cmd_identifier_token29] = ACTIONS(1839), + [aux_sym_cmd_identifier_token30] = ACTIONS(1839), + [aux_sym_cmd_identifier_token31] = ACTIONS(1839), + [aux_sym_cmd_identifier_token32] = ACTIONS(1839), + [aux_sym_cmd_identifier_token33] = ACTIONS(1839), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1839), + [aux_sym_cmd_identifier_token36] = ACTIONS(1839), + [aux_sym_cmd_identifier_token37] = ACTIONS(1839), + [aux_sym_cmd_identifier_token38] = ACTIONS(1839), + [aux_sym_cmd_identifier_token39] = ACTIONS(1839), + [aux_sym_cmd_identifier_token40] = ACTIONS(1839), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1839), + [anon_sym_COMMA] = ACTIONS(1839), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in2] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_make] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1839), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_catch] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_PLUS2] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1839), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1839), + [aux_sym__val_number_decimal_token3] = ACTIONS(1839), + [aux_sym__val_number_decimal_token4] = ACTIONS(1839), + [aux_sym__val_number_token1] = ACTIONS(1839), + [aux_sym__val_number_token2] = ACTIONS(1839), + [aux_sym__val_number_token3] = ACTIONS(1839), + [aux_sym__val_number_token4] = ACTIONS(1839), + [aux_sym__val_number_token5] = ACTIONS(1839), + [aux_sym__val_number_token6] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1839), + [sym__str_single_quotes] = ACTIONS(1839), + [sym__str_back_ticks] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1839), + [sym__entry_separator] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(1841), }, - [404] = { - [sym_cell_path] = STATE(626), - [sym_path] = STATE(557), - [sym_comment] = STATE(404), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [aux_sym_cmd_identifier_token37] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [sym__entry_separator] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(1898), + [390] = { + [sym_cell_path] = STATE(605), + [sym_path] = STATE(556), + [sym_comment] = STATE(390), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [aux_sym_cmd_identifier_token37] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in2] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [sym__entry_separator] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1939), + [sym_raw_string_begin] = ACTIONS(1845), }, - [405] = { - [sym_comment] = STATE(405), + [391] = { + [sym_comment] = STATE(391), [anon_sym_export] = ACTIONS(964), [anon_sym_alias] = ACTIONS(964), [anon_sym_let] = ACTIONS(964), @@ -124813,6 +123440,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(964), [anon_sym_use] = ACTIONS(964), [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), [anon_sym_DOLLAR] = ACTIONS(966), [anon_sym_error] = ACTIONS(964), [anon_sym_DASH2] = ACTIONS(964), @@ -124863,8 +123491,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(966), }, - [406] = { - [sym_comment] = STATE(406), + [392] = { + [sym_comment] = STATE(392), [anon_sym_export] = ACTIONS(968), [anon_sym_alias] = ACTIONS(968), [anon_sym_let] = ACTIONS(968), @@ -124917,6 +123545,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(968), [anon_sym_use] = ACTIONS(968), [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), [anon_sym_DOLLAR] = ACTIONS(970), [anon_sym_error] = ACTIONS(968), [anon_sym_DASH2] = ACTIONS(968), @@ -124967,8 +123596,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(970), }, - [407] = { - [sym_comment] = STATE(407), + [393] = { + [sym_comment] = STATE(393), [anon_sym_export] = ACTIONS(972), [anon_sym_alias] = ACTIONS(972), [anon_sym_let] = ACTIONS(972), @@ -125021,6 +123650,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(972), [anon_sym_use] = ACTIONS(972), [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), [anon_sym_DOLLAR] = ACTIONS(974), [anon_sym_error] = ACTIONS(972), [anon_sym_DASH2] = ACTIONS(972), @@ -125071,2920 +123701,4833 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(974), }, + [394] = { + [sym_comment] = STATE(394), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), + }, + [395] = { + [sym_cell_path] = STATE(606), + [sym_path] = STATE(556), + [sym_comment] = STATE(395), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [aux_sym_cmd_identifier_token37] = ACTIONS(1847), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1847), + [aux_sym_cmd_identifier_token40] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1847), + [aux_sym__val_number_decimal_token3] = ACTIONS(1847), + [aux_sym__val_number_decimal_token4] = ACTIONS(1847), + [aux_sym__val_number_token1] = ACTIONS(1847), + [aux_sym__val_number_token2] = ACTIONS(1847), + [aux_sym__val_number_token3] = ACTIONS(1847), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [sym__entry_separator] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1849), + }, + [396] = { + [sym_cell_path] = STATE(609), + [sym_path] = STATE(556), + [sym_comment] = STATE(396), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_alias] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_let_DASHenv] = ACTIONS(1851), + [anon_sym_mut] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [aux_sym_cmd_identifier_token1] = ACTIONS(1851), + [aux_sym_cmd_identifier_token2] = ACTIONS(1851), + [aux_sym_cmd_identifier_token3] = ACTIONS(1851), + [aux_sym_cmd_identifier_token4] = ACTIONS(1851), + [aux_sym_cmd_identifier_token5] = ACTIONS(1851), + [aux_sym_cmd_identifier_token6] = ACTIONS(1851), + [aux_sym_cmd_identifier_token7] = ACTIONS(1851), + [aux_sym_cmd_identifier_token8] = ACTIONS(1851), + [aux_sym_cmd_identifier_token9] = ACTIONS(1851), + [aux_sym_cmd_identifier_token10] = ACTIONS(1851), + [aux_sym_cmd_identifier_token11] = ACTIONS(1851), + [aux_sym_cmd_identifier_token12] = ACTIONS(1851), + [aux_sym_cmd_identifier_token13] = ACTIONS(1851), + [aux_sym_cmd_identifier_token14] = ACTIONS(1851), + [aux_sym_cmd_identifier_token15] = ACTIONS(1851), + [aux_sym_cmd_identifier_token16] = ACTIONS(1851), + [aux_sym_cmd_identifier_token17] = ACTIONS(1851), + [aux_sym_cmd_identifier_token18] = ACTIONS(1851), + [aux_sym_cmd_identifier_token19] = ACTIONS(1851), + [aux_sym_cmd_identifier_token20] = ACTIONS(1851), + [aux_sym_cmd_identifier_token21] = ACTIONS(1851), + [aux_sym_cmd_identifier_token22] = ACTIONS(1851), + [aux_sym_cmd_identifier_token23] = ACTIONS(1851), + [aux_sym_cmd_identifier_token24] = ACTIONS(1851), + [aux_sym_cmd_identifier_token25] = ACTIONS(1851), + [aux_sym_cmd_identifier_token26] = ACTIONS(1851), + [aux_sym_cmd_identifier_token27] = ACTIONS(1851), + [aux_sym_cmd_identifier_token28] = ACTIONS(1851), + [aux_sym_cmd_identifier_token29] = ACTIONS(1851), + [aux_sym_cmd_identifier_token30] = ACTIONS(1851), + [aux_sym_cmd_identifier_token31] = ACTIONS(1851), + [aux_sym_cmd_identifier_token32] = ACTIONS(1851), + [aux_sym_cmd_identifier_token33] = ACTIONS(1851), + [aux_sym_cmd_identifier_token34] = ACTIONS(1851), + [aux_sym_cmd_identifier_token35] = ACTIONS(1851), + [aux_sym_cmd_identifier_token36] = ACTIONS(1851), + [aux_sym_cmd_identifier_token37] = ACTIONS(1851), + [aux_sym_cmd_identifier_token38] = ACTIONS(1851), + [aux_sym_cmd_identifier_token39] = ACTIONS(1851), + [aux_sym_cmd_identifier_token40] = ACTIONS(1851), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_export_DASHenv] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1851), + [anon_sym_COMMA] = ACTIONS(1851), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_error] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_in2] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_make] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1851), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_catch] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_source] = ACTIONS(1851), + [anon_sym_source_DASHenv] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1851), + [anon_sym_hide] = ACTIONS(1851), + [anon_sym_hide_DASHenv] = ACTIONS(1851), + [anon_sym_overlay] = ACTIONS(1851), + [anon_sym_as] = ACTIONS(1851), + [anon_sym_PLUS2] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1851), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1851), + [aux_sym__val_number_decimal_token3] = ACTIONS(1851), + [aux_sym__val_number_decimal_token4] = ACTIONS(1851), + [aux_sym__val_number_token1] = ACTIONS(1851), + [aux_sym__val_number_token2] = ACTIONS(1851), + [aux_sym__val_number_token3] = ACTIONS(1851), + [aux_sym__val_number_token4] = ACTIONS(1851), + [aux_sym__val_number_token5] = ACTIONS(1851), + [aux_sym__val_number_token6] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1851), + [sym__str_single_quotes] = ACTIONS(1851), + [sym__str_back_ticks] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1851), + [sym__entry_separator] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1853), + }, + [397] = { + [sym_cell_path] = STATE(610), + [sym_path] = STATE(556), + [sym_comment] = STATE(397), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_alias] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_let_DASHenv] = ACTIONS(1855), + [anon_sym_mut] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [aux_sym_cmd_identifier_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token2] = ACTIONS(1855), + [aux_sym_cmd_identifier_token3] = ACTIONS(1855), + [aux_sym_cmd_identifier_token4] = ACTIONS(1855), + [aux_sym_cmd_identifier_token5] = ACTIONS(1855), + [aux_sym_cmd_identifier_token6] = ACTIONS(1855), + [aux_sym_cmd_identifier_token7] = ACTIONS(1855), + [aux_sym_cmd_identifier_token8] = ACTIONS(1855), + [aux_sym_cmd_identifier_token9] = ACTIONS(1855), + [aux_sym_cmd_identifier_token10] = ACTIONS(1855), + [aux_sym_cmd_identifier_token11] = ACTIONS(1855), + [aux_sym_cmd_identifier_token12] = ACTIONS(1855), + [aux_sym_cmd_identifier_token13] = ACTIONS(1855), + [aux_sym_cmd_identifier_token14] = ACTIONS(1855), + [aux_sym_cmd_identifier_token15] = ACTIONS(1855), + [aux_sym_cmd_identifier_token16] = ACTIONS(1855), + [aux_sym_cmd_identifier_token17] = ACTIONS(1855), + [aux_sym_cmd_identifier_token18] = ACTIONS(1855), + [aux_sym_cmd_identifier_token19] = ACTIONS(1855), + [aux_sym_cmd_identifier_token20] = ACTIONS(1855), + [aux_sym_cmd_identifier_token21] = ACTIONS(1855), + [aux_sym_cmd_identifier_token22] = ACTIONS(1855), + [aux_sym_cmd_identifier_token23] = ACTIONS(1855), + [aux_sym_cmd_identifier_token24] = ACTIONS(1855), + [aux_sym_cmd_identifier_token25] = ACTIONS(1855), + [aux_sym_cmd_identifier_token26] = ACTIONS(1855), + [aux_sym_cmd_identifier_token27] = ACTIONS(1855), + [aux_sym_cmd_identifier_token28] = ACTIONS(1855), + [aux_sym_cmd_identifier_token29] = ACTIONS(1855), + [aux_sym_cmd_identifier_token30] = ACTIONS(1855), + [aux_sym_cmd_identifier_token31] = ACTIONS(1855), + [aux_sym_cmd_identifier_token32] = ACTIONS(1855), + [aux_sym_cmd_identifier_token33] = ACTIONS(1855), + [aux_sym_cmd_identifier_token34] = ACTIONS(1855), + [aux_sym_cmd_identifier_token35] = ACTIONS(1855), + [aux_sym_cmd_identifier_token36] = ACTIONS(1855), + [aux_sym_cmd_identifier_token37] = ACTIONS(1855), + [aux_sym_cmd_identifier_token38] = ACTIONS(1855), + [aux_sym_cmd_identifier_token39] = ACTIONS(1855), + [aux_sym_cmd_identifier_token40] = ACTIONS(1855), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_export_DASHenv] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1855), + [anon_sym_COMMA] = ACTIONS(1855), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_error] = ACTIONS(1855), + [anon_sym_DASH2] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_in2] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_make] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1855), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_source] = ACTIONS(1855), + [anon_sym_source_DASHenv] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_hide] = ACTIONS(1855), + [anon_sym_hide_DASHenv] = ACTIONS(1855), + [anon_sym_overlay] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_PLUS2] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1855), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1855), + [aux_sym__val_number_decimal_token3] = ACTIONS(1855), + [aux_sym__val_number_decimal_token4] = ACTIONS(1855), + [aux_sym__val_number_token1] = ACTIONS(1855), + [aux_sym__val_number_token2] = ACTIONS(1855), + [aux_sym__val_number_token3] = ACTIONS(1855), + [aux_sym__val_number_token4] = ACTIONS(1855), + [aux_sym__val_number_token5] = ACTIONS(1855), + [aux_sym__val_number_token6] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1855), + [sym__str_single_quotes] = ACTIONS(1855), + [sym__str_back_ticks] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1855), + [sym__entry_separator] = ACTIONS(1857), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1857), + }, + [398] = { + [sym_cell_path] = STATE(611), + [sym_path] = STATE(556), + [sym_comment] = STATE(398), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [aux_sym_cmd_identifier_token37] = ACTIONS(1859), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1859), + [aux_sym_cmd_identifier_token40] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in2] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1859), + [aux_sym__val_number_decimal_token3] = ACTIONS(1859), + [aux_sym__val_number_decimal_token4] = ACTIONS(1859), + [aux_sym__val_number_token1] = ACTIONS(1859), + [aux_sym__val_number_token2] = ACTIONS(1859), + [aux_sym__val_number_token3] = ACTIONS(1859), + [aux_sym__val_number_token4] = ACTIONS(1859), + [aux_sym__val_number_token5] = ACTIONS(1859), + [aux_sym__val_number_token6] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [sym__str_single_quotes] = ACTIONS(1859), + [sym__str_back_ticks] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), + [sym__entry_separator] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1861), + }, + [399] = { + [sym_cell_path] = STATE(612), + [sym_path] = STATE(556), + [sym_comment] = STATE(399), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1863), + [aux_sym_cmd_identifier_token3] = ACTIONS(1863), + [aux_sym_cmd_identifier_token4] = ACTIONS(1863), + [aux_sym_cmd_identifier_token5] = ACTIONS(1863), + [aux_sym_cmd_identifier_token6] = ACTIONS(1863), + [aux_sym_cmd_identifier_token7] = ACTIONS(1863), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1863), + [aux_sym_cmd_identifier_token17] = ACTIONS(1863), + [aux_sym_cmd_identifier_token18] = ACTIONS(1863), + [aux_sym_cmd_identifier_token19] = ACTIONS(1863), + [aux_sym_cmd_identifier_token20] = ACTIONS(1863), + [aux_sym_cmd_identifier_token21] = ACTIONS(1863), + [aux_sym_cmd_identifier_token22] = ACTIONS(1863), + [aux_sym_cmd_identifier_token23] = ACTIONS(1863), + [aux_sym_cmd_identifier_token24] = ACTIONS(1863), + [aux_sym_cmd_identifier_token25] = ACTIONS(1863), + [aux_sym_cmd_identifier_token26] = ACTIONS(1863), + [aux_sym_cmd_identifier_token27] = ACTIONS(1863), + [aux_sym_cmd_identifier_token28] = ACTIONS(1863), + [aux_sym_cmd_identifier_token29] = ACTIONS(1863), + [aux_sym_cmd_identifier_token30] = ACTIONS(1863), + [aux_sym_cmd_identifier_token31] = ACTIONS(1863), + [aux_sym_cmd_identifier_token32] = ACTIONS(1863), + [aux_sym_cmd_identifier_token33] = ACTIONS(1863), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [aux_sym_cmd_identifier_token37] = ACTIONS(1863), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1863), + [aux_sym_cmd_identifier_token40] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1863), + [aux_sym__val_number_decimal_token3] = ACTIONS(1863), + [aux_sym__val_number_decimal_token4] = ACTIONS(1863), + [aux_sym__val_number_token1] = ACTIONS(1863), + [aux_sym__val_number_token2] = ACTIONS(1863), + [aux_sym__val_number_token3] = ACTIONS(1863), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [sym__entry_separator] = ACTIONS(1865), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [400] = { + [sym_cell_path] = STATE(613), + [sym_path] = STATE(556), + [sym_comment] = STATE(400), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1867), + [aux_sym_cmd_identifier_token3] = ACTIONS(1867), + [aux_sym_cmd_identifier_token4] = ACTIONS(1867), + [aux_sym_cmd_identifier_token5] = ACTIONS(1867), + [aux_sym_cmd_identifier_token6] = ACTIONS(1867), + [aux_sym_cmd_identifier_token7] = ACTIONS(1867), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1867), + [aux_sym_cmd_identifier_token11] = ACTIONS(1867), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1867), + [aux_sym_cmd_identifier_token17] = ACTIONS(1867), + [aux_sym_cmd_identifier_token18] = ACTIONS(1867), + [aux_sym_cmd_identifier_token19] = ACTIONS(1867), + [aux_sym_cmd_identifier_token20] = ACTIONS(1867), + [aux_sym_cmd_identifier_token21] = ACTIONS(1867), + [aux_sym_cmd_identifier_token22] = ACTIONS(1867), + [aux_sym_cmd_identifier_token23] = ACTIONS(1867), + [aux_sym_cmd_identifier_token24] = ACTIONS(1867), + [aux_sym_cmd_identifier_token25] = ACTIONS(1867), + [aux_sym_cmd_identifier_token26] = ACTIONS(1867), + [aux_sym_cmd_identifier_token27] = ACTIONS(1867), + [aux_sym_cmd_identifier_token28] = ACTIONS(1867), + [aux_sym_cmd_identifier_token29] = ACTIONS(1867), + [aux_sym_cmd_identifier_token30] = ACTIONS(1867), + [aux_sym_cmd_identifier_token31] = ACTIONS(1867), + [aux_sym_cmd_identifier_token32] = ACTIONS(1867), + [aux_sym_cmd_identifier_token33] = ACTIONS(1867), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1867), + [aux_sym_cmd_identifier_token36] = ACTIONS(1867), + [aux_sym_cmd_identifier_token37] = ACTIONS(1867), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1867), + [aux_sym_cmd_identifier_token40] = ACTIONS(1867), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1867), + [anon_sym_COMMA] = ACTIONS(1867), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in2] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1867), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_PLUS2] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1867), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1867), + [aux_sym__val_number_decimal_token3] = ACTIONS(1867), + [aux_sym__val_number_decimal_token4] = ACTIONS(1867), + [aux_sym__val_number_token1] = ACTIONS(1867), + [aux_sym__val_number_token2] = ACTIONS(1867), + [aux_sym__val_number_token3] = ACTIONS(1867), + [aux_sym__val_number_token4] = ACTIONS(1867), + [aux_sym__val_number_token5] = ACTIONS(1867), + [aux_sym__val_number_token6] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1867), + [sym__str_single_quotes] = ACTIONS(1867), + [sym__str_back_ticks] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1867), + [sym__entry_separator] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1869), + }, + [401] = { + [sym_cell_path] = STATE(629), + [sym_path] = STATE(556), + [sym_comment] = STATE(401), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [aux_sym_cmd_identifier_token37] = ACTIONS(1871), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1871), + [aux_sym_cmd_identifier_token40] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1871), + [aux_sym__val_number_decimal_token3] = ACTIONS(1871), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1871), + [aux_sym__val_number_token2] = ACTIONS(1871), + [aux_sym__val_number_token3] = ACTIONS(1871), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1873), + }, + [402] = { + [sym_cell_path] = STATE(614), + [sym_path] = STATE(556), + [sym_comment] = STATE(402), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1875), + [aux_sym_cmd_identifier_token3] = ACTIONS(1875), + [aux_sym_cmd_identifier_token4] = ACTIONS(1875), + [aux_sym_cmd_identifier_token5] = ACTIONS(1875), + [aux_sym_cmd_identifier_token6] = ACTIONS(1875), + [aux_sym_cmd_identifier_token7] = ACTIONS(1875), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1875), + [aux_sym_cmd_identifier_token17] = ACTIONS(1875), + [aux_sym_cmd_identifier_token18] = ACTIONS(1875), + [aux_sym_cmd_identifier_token19] = ACTIONS(1875), + [aux_sym_cmd_identifier_token20] = ACTIONS(1875), + [aux_sym_cmd_identifier_token21] = ACTIONS(1875), + [aux_sym_cmd_identifier_token22] = ACTIONS(1875), + [aux_sym_cmd_identifier_token23] = ACTIONS(1875), + [aux_sym_cmd_identifier_token24] = ACTIONS(1875), + [aux_sym_cmd_identifier_token25] = ACTIONS(1875), + [aux_sym_cmd_identifier_token26] = ACTIONS(1875), + [aux_sym_cmd_identifier_token27] = ACTIONS(1875), + [aux_sym_cmd_identifier_token28] = ACTIONS(1875), + [aux_sym_cmd_identifier_token29] = ACTIONS(1875), + [aux_sym_cmd_identifier_token30] = ACTIONS(1875), + [aux_sym_cmd_identifier_token31] = ACTIONS(1875), + [aux_sym_cmd_identifier_token32] = ACTIONS(1875), + [aux_sym_cmd_identifier_token33] = ACTIONS(1875), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [aux_sym_cmd_identifier_token37] = ACTIONS(1875), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1875), + [aux_sym_cmd_identifier_token40] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1875), + [aux_sym__val_number_decimal_token3] = ACTIONS(1875), + [aux_sym__val_number_decimal_token4] = ACTIONS(1875), + [aux_sym__val_number_token1] = ACTIONS(1875), + [aux_sym__val_number_token2] = ACTIONS(1875), + [aux_sym__val_number_token3] = ACTIONS(1875), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), + [sym__entry_separator] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1877), + }, + [403] = { + [sym_cell_path] = STATE(615), + [sym_path] = STATE(556), + [sym_comment] = STATE(403), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [aux_sym_cmd_identifier_token37] = ACTIONS(1879), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1879), + [aux_sym_cmd_identifier_token40] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1879), + [aux_sym__val_number_decimal_token3] = ACTIONS(1879), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), + [aux_sym__val_number_token1] = ACTIONS(1879), + [aux_sym__val_number_token2] = ACTIONS(1879), + [aux_sym__val_number_token3] = ACTIONS(1879), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), + [sym__entry_separator] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [404] = { + [sym_comment] = STATE(404), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [405] = { + [sym_cell_path] = STATE(617), + [sym_path] = STATE(549), + [sym_comment] = STATE(405), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(935), + [anon_sym_alias] = ACTIONS(935), + [anon_sym_let] = ACTIONS(935), + [anon_sym_let_DASHenv] = ACTIONS(935), + [anon_sym_mut] = ACTIONS(935), + [anon_sym_const] = ACTIONS(935), + [aux_sym_cmd_identifier_token1] = ACTIONS(935), + [aux_sym_cmd_identifier_token2] = ACTIONS(937), + [aux_sym_cmd_identifier_token3] = ACTIONS(937), + [aux_sym_cmd_identifier_token4] = ACTIONS(937), + [aux_sym_cmd_identifier_token5] = ACTIONS(937), + [aux_sym_cmd_identifier_token6] = ACTIONS(937), + [aux_sym_cmd_identifier_token7] = ACTIONS(937), + [aux_sym_cmd_identifier_token8] = ACTIONS(935), + [aux_sym_cmd_identifier_token9] = ACTIONS(935), + [aux_sym_cmd_identifier_token10] = ACTIONS(937), + [aux_sym_cmd_identifier_token11] = ACTIONS(937), + [aux_sym_cmd_identifier_token12] = ACTIONS(935), + [aux_sym_cmd_identifier_token13] = ACTIONS(935), + [aux_sym_cmd_identifier_token14] = ACTIONS(935), + [aux_sym_cmd_identifier_token15] = ACTIONS(935), + [aux_sym_cmd_identifier_token16] = ACTIONS(937), + [aux_sym_cmd_identifier_token17] = ACTIONS(937), + [aux_sym_cmd_identifier_token18] = ACTIONS(937), + [aux_sym_cmd_identifier_token19] = ACTIONS(937), + [aux_sym_cmd_identifier_token20] = ACTIONS(937), + [aux_sym_cmd_identifier_token21] = ACTIONS(937), + [aux_sym_cmd_identifier_token22] = ACTIONS(937), + [aux_sym_cmd_identifier_token23] = ACTIONS(937), + [aux_sym_cmd_identifier_token24] = ACTIONS(937), + [aux_sym_cmd_identifier_token25] = ACTIONS(937), + [aux_sym_cmd_identifier_token26] = ACTIONS(937), + [aux_sym_cmd_identifier_token27] = ACTIONS(937), + [aux_sym_cmd_identifier_token28] = ACTIONS(937), + [aux_sym_cmd_identifier_token29] = ACTIONS(937), + [aux_sym_cmd_identifier_token30] = ACTIONS(937), + [aux_sym_cmd_identifier_token31] = ACTIONS(937), + [aux_sym_cmd_identifier_token32] = ACTIONS(937), + [aux_sym_cmd_identifier_token33] = ACTIONS(937), + [aux_sym_cmd_identifier_token34] = ACTIONS(935), + [aux_sym_cmd_identifier_token35] = ACTIONS(937), + [aux_sym_cmd_identifier_token36] = ACTIONS(937), + [aux_sym_cmd_identifier_token37] = ACTIONS(937), + [aux_sym_cmd_identifier_token38] = ACTIONS(935), + [aux_sym_cmd_identifier_token39] = ACTIONS(937), + [aux_sym_cmd_identifier_token40] = ACTIONS(937), + [anon_sym_def] = ACTIONS(935), + [anon_sym_export_DASHenv] = ACTIONS(935), + [anon_sym_extern] = ACTIONS(935), + [anon_sym_module] = ACTIONS(935), + [anon_sym_use] = ACTIONS(935), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_COMMA] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(937), + [anon_sym_error] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_break] = ACTIONS(935), + [anon_sym_continue] = ACTIONS(935), + [anon_sym_for] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(935), + [anon_sym_loop] = ACTIONS(935), + [anon_sym_make] = ACTIONS(935), + [anon_sym_while] = ACTIONS(935), + [anon_sym_do] = ACTIONS(935), + [anon_sym_if] = ACTIONS(935), + [anon_sym_else] = ACTIONS(935), + [anon_sym_match] = ACTIONS(935), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_try] = ACTIONS(935), + [anon_sym_catch] = ACTIONS(935), + [anon_sym_return] = ACTIONS(935), + [anon_sym_source] = ACTIONS(935), + [anon_sym_source_DASHenv] = ACTIONS(935), + [anon_sym_register] = ACTIONS(935), + [anon_sym_hide] = ACTIONS(935), + [anon_sym_hide_DASHenv] = ACTIONS(935), + [anon_sym_overlay] = ACTIONS(935), + [anon_sym_as] = ACTIONS(935), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(935), + [aux_sym__val_number_token5] = ACTIONS(935), + [aux_sym__val_number_token6] = ACTIONS(935), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), + [anon_sym_COLON2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), + }, + [406] = { + [sym_cell_path] = STATE(594), + [sym_path] = STATE(556), + [sym_comment] = STATE(406), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1885), + [anon_sym_alias] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_let_DASHenv] = ACTIONS(1885), + [anon_sym_mut] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [aux_sym_cmd_identifier_token1] = ACTIONS(1885), + [aux_sym_cmd_identifier_token2] = ACTIONS(1885), + [aux_sym_cmd_identifier_token3] = ACTIONS(1885), + [aux_sym_cmd_identifier_token4] = ACTIONS(1885), + [aux_sym_cmd_identifier_token5] = ACTIONS(1885), + [aux_sym_cmd_identifier_token6] = ACTIONS(1885), + [aux_sym_cmd_identifier_token7] = ACTIONS(1885), + [aux_sym_cmd_identifier_token8] = ACTIONS(1885), + [aux_sym_cmd_identifier_token9] = ACTIONS(1885), + [aux_sym_cmd_identifier_token10] = ACTIONS(1885), + [aux_sym_cmd_identifier_token11] = ACTIONS(1885), + [aux_sym_cmd_identifier_token12] = ACTIONS(1885), + [aux_sym_cmd_identifier_token13] = ACTIONS(1885), + [aux_sym_cmd_identifier_token14] = ACTIONS(1885), + [aux_sym_cmd_identifier_token15] = ACTIONS(1885), + [aux_sym_cmd_identifier_token16] = ACTIONS(1885), + [aux_sym_cmd_identifier_token17] = ACTIONS(1885), + [aux_sym_cmd_identifier_token18] = ACTIONS(1885), + [aux_sym_cmd_identifier_token19] = ACTIONS(1885), + [aux_sym_cmd_identifier_token20] = ACTIONS(1885), + [aux_sym_cmd_identifier_token21] = ACTIONS(1885), + [aux_sym_cmd_identifier_token22] = ACTIONS(1885), + [aux_sym_cmd_identifier_token23] = ACTIONS(1885), + [aux_sym_cmd_identifier_token24] = ACTIONS(1885), + [aux_sym_cmd_identifier_token25] = ACTIONS(1885), + [aux_sym_cmd_identifier_token26] = ACTIONS(1885), + [aux_sym_cmd_identifier_token27] = ACTIONS(1885), + [aux_sym_cmd_identifier_token28] = ACTIONS(1885), + [aux_sym_cmd_identifier_token29] = ACTIONS(1885), + [aux_sym_cmd_identifier_token30] = ACTIONS(1885), + [aux_sym_cmd_identifier_token31] = ACTIONS(1885), + [aux_sym_cmd_identifier_token32] = ACTIONS(1885), + [aux_sym_cmd_identifier_token33] = ACTIONS(1885), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1885), + [aux_sym_cmd_identifier_token36] = ACTIONS(1885), + [aux_sym_cmd_identifier_token37] = ACTIONS(1885), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1885), + [aux_sym_cmd_identifier_token40] = ACTIONS(1885), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_export_DASHenv] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_module] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1885), + [anon_sym_COMMA] = ACTIONS(1885), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_error] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_make] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_do] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1885), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_catch] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_source] = ACTIONS(1885), + [anon_sym_source_DASHenv] = ACTIONS(1885), + [anon_sym_register] = ACTIONS(1885), + [anon_sym_hide] = ACTIONS(1885), + [anon_sym_hide_DASHenv] = ACTIONS(1885), + [anon_sym_overlay] = ACTIONS(1885), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1885), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1885), + [aux_sym__val_number_decimal_token3] = ACTIONS(1885), + [aux_sym__val_number_decimal_token4] = ACTIONS(1885), + [aux_sym__val_number_token1] = ACTIONS(1885), + [aux_sym__val_number_token2] = ACTIONS(1885), + [aux_sym__val_number_token3] = ACTIONS(1885), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1885), + [sym__str_single_quotes] = ACTIONS(1885), + [sym__str_back_ticks] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1885), + [sym__entry_separator] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1887), + }, + [407] = { + [sym_comment] = STATE(407), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_alias] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_let_DASHenv] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [aux_sym_cmd_identifier_token1] = ACTIONS(1793), + [aux_sym_cmd_identifier_token2] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [aux_sym_cmd_identifier_token6] = ACTIONS(1801), + [aux_sym_cmd_identifier_token7] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1793), + [aux_sym_cmd_identifier_token9] = ACTIONS(1793), + [aux_sym_cmd_identifier_token10] = ACTIONS(1801), + [aux_sym_cmd_identifier_token11] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1793), + [aux_sym_cmd_identifier_token13] = ACTIONS(1793), + [aux_sym_cmd_identifier_token14] = ACTIONS(1793), + [aux_sym_cmd_identifier_token15] = ACTIONS(1793), + [aux_sym_cmd_identifier_token16] = ACTIONS(1801), + [aux_sym_cmd_identifier_token17] = ACTIONS(1801), + [aux_sym_cmd_identifier_token18] = ACTIONS(1801), + [aux_sym_cmd_identifier_token19] = ACTIONS(1801), + [aux_sym_cmd_identifier_token20] = ACTIONS(1801), + [aux_sym_cmd_identifier_token21] = ACTIONS(1801), + [aux_sym_cmd_identifier_token22] = ACTIONS(1801), + [aux_sym_cmd_identifier_token23] = ACTIONS(1801), + [aux_sym_cmd_identifier_token24] = ACTIONS(1801), + [aux_sym_cmd_identifier_token25] = ACTIONS(1801), + [aux_sym_cmd_identifier_token26] = ACTIONS(1801), + [aux_sym_cmd_identifier_token27] = ACTIONS(1801), + [aux_sym_cmd_identifier_token28] = ACTIONS(1801), + [aux_sym_cmd_identifier_token29] = ACTIONS(1801), + [aux_sym_cmd_identifier_token30] = ACTIONS(1801), + [aux_sym_cmd_identifier_token31] = ACTIONS(1801), + [aux_sym_cmd_identifier_token32] = ACTIONS(1801), + [aux_sym_cmd_identifier_token33] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1793), + [aux_sym_cmd_identifier_token35] = ACTIONS(1801), + [aux_sym_cmd_identifier_token36] = ACTIONS(1801), + [aux_sym_cmd_identifier_token37] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1793), + [aux_sym_cmd_identifier_token39] = ACTIONS(1801), + [aux_sym_cmd_identifier_token40] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1793), + [anon_sym_export_DASHenv] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1793), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_in2] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_make] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_catch] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_source] = ACTIONS(1793), + [anon_sym_source_DASHenv] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_hide] = ACTIONS(1793), + [anon_sym_hide_DASHenv] = ACTIONS(1793), + [anon_sym_overlay] = ACTIONS(1793), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_PLUS2] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [anon_sym_DOT_DOT2] = ACTIONS(1889), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1891), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1891), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1793), + [aux_sym__val_number_token5] = ACTIONS(1793), + [aux_sym__val_number_token6] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, [408] = { + [sym_cell_path] = STATE(595), + [sym_path] = STATE(556), [sym_comment] = STATE(408), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [aux_sym_cmd_identifier_token2] = ACTIONS(1893), + [aux_sym_cmd_identifier_token3] = ACTIONS(1893), + [aux_sym_cmd_identifier_token4] = ACTIONS(1893), + [aux_sym_cmd_identifier_token5] = ACTIONS(1893), + [aux_sym_cmd_identifier_token6] = ACTIONS(1893), + [aux_sym_cmd_identifier_token7] = ACTIONS(1893), + [aux_sym_cmd_identifier_token8] = ACTIONS(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1893), + [aux_sym_cmd_identifier_token11] = ACTIONS(1893), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [aux_sym_cmd_identifier_token16] = ACTIONS(1893), + [aux_sym_cmd_identifier_token17] = ACTIONS(1893), + [aux_sym_cmd_identifier_token18] = ACTIONS(1893), + [aux_sym_cmd_identifier_token19] = ACTIONS(1893), + [aux_sym_cmd_identifier_token20] = ACTIONS(1893), + [aux_sym_cmd_identifier_token21] = ACTIONS(1893), + [aux_sym_cmd_identifier_token22] = ACTIONS(1893), + [aux_sym_cmd_identifier_token23] = ACTIONS(1893), + [aux_sym_cmd_identifier_token24] = ACTIONS(1893), + [aux_sym_cmd_identifier_token25] = ACTIONS(1893), + [aux_sym_cmd_identifier_token26] = ACTIONS(1893), + [aux_sym_cmd_identifier_token27] = ACTIONS(1893), + [aux_sym_cmd_identifier_token28] = ACTIONS(1893), + [aux_sym_cmd_identifier_token29] = ACTIONS(1893), + [aux_sym_cmd_identifier_token30] = ACTIONS(1893), + [aux_sym_cmd_identifier_token31] = ACTIONS(1893), + [aux_sym_cmd_identifier_token32] = ACTIONS(1893), + [aux_sym_cmd_identifier_token33] = ACTIONS(1893), + [aux_sym_cmd_identifier_token34] = ACTIONS(1893), + [aux_sym_cmd_identifier_token35] = ACTIONS(1893), + [aux_sym_cmd_identifier_token36] = ACTIONS(1893), + [aux_sym_cmd_identifier_token37] = ACTIONS(1893), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1893), + [aux_sym_cmd_identifier_token40] = ACTIONS(1893), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1893), + [anon_sym_COMMA] = ACTIONS(1893), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1893), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1893), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1893), + [aux_sym__val_number_decimal_token3] = ACTIONS(1893), + [aux_sym__val_number_decimal_token4] = ACTIONS(1893), + [aux_sym__val_number_token1] = ACTIONS(1893), + [aux_sym__val_number_token2] = ACTIONS(1893), + [aux_sym__val_number_token3] = ACTIONS(1893), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1893), + [sym__str_single_quotes] = ACTIONS(1893), + [sym__str_back_ticks] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1893), + [sym__entry_separator] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1895), }, [409] = { [sym_comment] = STATE(409), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_alias] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_let_DASHenv] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [aux_sym_cmd_identifier_token1] = ACTIONS(1865), - [aux_sym_cmd_identifier_token2] = ACTIONS(1873), - [aux_sym_cmd_identifier_token3] = ACTIONS(1873), - [aux_sym_cmd_identifier_token4] = ACTIONS(1873), - [aux_sym_cmd_identifier_token5] = ACTIONS(1873), - [aux_sym_cmd_identifier_token6] = ACTIONS(1873), - [aux_sym_cmd_identifier_token7] = ACTIONS(1873), - [aux_sym_cmd_identifier_token8] = ACTIONS(1865), - [aux_sym_cmd_identifier_token9] = ACTIONS(1865), - [aux_sym_cmd_identifier_token10] = ACTIONS(1873), - [aux_sym_cmd_identifier_token11] = ACTIONS(1873), - [aux_sym_cmd_identifier_token12] = ACTIONS(1865), - [aux_sym_cmd_identifier_token13] = ACTIONS(1865), - [aux_sym_cmd_identifier_token14] = ACTIONS(1865), - [aux_sym_cmd_identifier_token15] = ACTIONS(1865), - [aux_sym_cmd_identifier_token16] = ACTIONS(1873), - [aux_sym_cmd_identifier_token17] = ACTIONS(1873), - [aux_sym_cmd_identifier_token18] = ACTIONS(1873), - [aux_sym_cmd_identifier_token19] = ACTIONS(1873), - [aux_sym_cmd_identifier_token20] = ACTIONS(1873), - [aux_sym_cmd_identifier_token21] = ACTIONS(1873), - [aux_sym_cmd_identifier_token22] = ACTIONS(1873), - [aux_sym_cmd_identifier_token23] = ACTIONS(1873), - [aux_sym_cmd_identifier_token24] = ACTIONS(1873), - [aux_sym_cmd_identifier_token25] = ACTIONS(1873), - [aux_sym_cmd_identifier_token26] = ACTIONS(1873), - [aux_sym_cmd_identifier_token27] = ACTIONS(1873), - [aux_sym_cmd_identifier_token28] = ACTIONS(1873), - [aux_sym_cmd_identifier_token29] = ACTIONS(1873), - [aux_sym_cmd_identifier_token30] = ACTIONS(1873), - [aux_sym_cmd_identifier_token31] = ACTIONS(1873), - [aux_sym_cmd_identifier_token32] = ACTIONS(1873), - [aux_sym_cmd_identifier_token33] = ACTIONS(1873), - [aux_sym_cmd_identifier_token34] = ACTIONS(1865), - [aux_sym_cmd_identifier_token35] = ACTIONS(1873), - [aux_sym_cmd_identifier_token36] = ACTIONS(1873), - [aux_sym_cmd_identifier_token37] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1865), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1865), - [anon_sym_export_DASHenv] = ACTIONS(1865), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_in2] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_make] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_source] = ACTIONS(1865), - [anon_sym_source_DASHenv] = ACTIONS(1865), - [anon_sym_register] = ACTIONS(1865), - [anon_sym_hide] = ACTIONS(1865), - [anon_sym_hide_DASHenv] = ACTIONS(1865), - [anon_sym_overlay] = ACTIONS(1865), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT_DOT2] = ACTIONS(1941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1865), - [aux_sym__val_number_token5] = ACTIONS(1865), - [aux_sym__val_number_token6] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, [410] = { - [sym_cell_path] = STATE(604), - [sym_path] = STATE(557), [sym_comment] = STATE(410), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1945), - [aux_sym_cmd_identifier_token3] = ACTIONS(1945), - [aux_sym_cmd_identifier_token4] = ACTIONS(1945), - [aux_sym_cmd_identifier_token5] = ACTIONS(1945), - [aux_sym_cmd_identifier_token6] = ACTIONS(1945), - [aux_sym_cmd_identifier_token7] = ACTIONS(1945), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1945), - [aux_sym_cmd_identifier_token11] = ACTIONS(1945), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1945), - [aux_sym_cmd_identifier_token17] = ACTIONS(1945), - [aux_sym_cmd_identifier_token18] = ACTIONS(1945), - [aux_sym_cmd_identifier_token19] = ACTIONS(1945), - [aux_sym_cmd_identifier_token20] = ACTIONS(1945), - [aux_sym_cmd_identifier_token21] = ACTIONS(1945), - [aux_sym_cmd_identifier_token22] = ACTIONS(1945), - [aux_sym_cmd_identifier_token23] = ACTIONS(1945), - [aux_sym_cmd_identifier_token24] = ACTIONS(1945), - [aux_sym_cmd_identifier_token25] = ACTIONS(1945), - [aux_sym_cmd_identifier_token26] = ACTIONS(1945), - [aux_sym_cmd_identifier_token27] = ACTIONS(1945), - [aux_sym_cmd_identifier_token28] = ACTIONS(1945), - [aux_sym_cmd_identifier_token29] = ACTIONS(1945), - [aux_sym_cmd_identifier_token30] = ACTIONS(1945), - [aux_sym_cmd_identifier_token31] = ACTIONS(1945), - [aux_sym_cmd_identifier_token32] = ACTIONS(1945), - [aux_sym_cmd_identifier_token33] = ACTIONS(1945), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1945), - [aux_sym_cmd_identifier_token36] = ACTIONS(1945), - [aux_sym_cmd_identifier_token37] = ACTIONS(1945), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1945), - [aux_sym_cmd_identifier_token40] = ACTIONS(1945), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1945), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1945), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1945), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1945), - [aux_sym__val_number_decimal_token3] = ACTIONS(1945), - [aux_sym__val_number_decimal_token4] = ACTIONS(1945), - [aux_sym__val_number_token1] = ACTIONS(1945), - [aux_sym__val_number_token2] = ACTIONS(1945), - [aux_sym__val_number_token3] = ACTIONS(1945), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1945), - [sym__str_single_quotes] = ACTIONS(1945), - [sym__str_back_ticks] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1945), - [sym__entry_separator] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1947), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1819), + [aux_sym_cmd_identifier_token3] = ACTIONS(1819), + [aux_sym_cmd_identifier_token4] = ACTIONS(1819), + [aux_sym_cmd_identifier_token5] = ACTIONS(1819), + [aux_sym_cmd_identifier_token6] = ACTIONS(1819), + [aux_sym_cmd_identifier_token7] = ACTIONS(1819), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1819), + [aux_sym_cmd_identifier_token11] = ACTIONS(1819), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1819), + [aux_sym_cmd_identifier_token17] = ACTIONS(1819), + [aux_sym_cmd_identifier_token18] = ACTIONS(1819), + [aux_sym_cmd_identifier_token19] = ACTIONS(1819), + [aux_sym_cmd_identifier_token20] = ACTIONS(1819), + [aux_sym_cmd_identifier_token21] = ACTIONS(1819), + [aux_sym_cmd_identifier_token22] = ACTIONS(1819), + [aux_sym_cmd_identifier_token23] = ACTIONS(1819), + [aux_sym_cmd_identifier_token24] = ACTIONS(1819), + [aux_sym_cmd_identifier_token25] = ACTIONS(1819), + [aux_sym_cmd_identifier_token26] = ACTIONS(1819), + [aux_sym_cmd_identifier_token27] = ACTIONS(1819), + [aux_sym_cmd_identifier_token28] = ACTIONS(1819), + [aux_sym_cmd_identifier_token29] = ACTIONS(1819), + [aux_sym_cmd_identifier_token30] = ACTIONS(1819), + [aux_sym_cmd_identifier_token31] = ACTIONS(1819), + [aux_sym_cmd_identifier_token32] = ACTIONS(1819), + [aux_sym_cmd_identifier_token33] = ACTIONS(1819), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1819), + [aux_sym_cmd_identifier_token36] = ACTIONS(1819), + [aux_sym_cmd_identifier_token37] = ACTIONS(1819), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1819), + [aux_sym_cmd_identifier_token40] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), }, [411] = { - [sym_cell_path] = STATE(639), - [sym_path] = STATE(557), [sym_comment] = STATE(411), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1949), - [aux_sym_cmd_identifier_token3] = ACTIONS(1949), - [aux_sym_cmd_identifier_token4] = ACTIONS(1949), - [aux_sym_cmd_identifier_token5] = ACTIONS(1949), - [aux_sym_cmd_identifier_token6] = ACTIONS(1949), - [aux_sym_cmd_identifier_token7] = ACTIONS(1949), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1949), - [aux_sym_cmd_identifier_token11] = ACTIONS(1949), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1949), - [aux_sym_cmd_identifier_token17] = ACTIONS(1949), - [aux_sym_cmd_identifier_token18] = ACTIONS(1949), - [aux_sym_cmd_identifier_token19] = ACTIONS(1949), - [aux_sym_cmd_identifier_token20] = ACTIONS(1949), - [aux_sym_cmd_identifier_token21] = ACTIONS(1949), - [aux_sym_cmd_identifier_token22] = ACTIONS(1949), - [aux_sym_cmd_identifier_token23] = ACTIONS(1949), - [aux_sym_cmd_identifier_token24] = ACTIONS(1949), - [aux_sym_cmd_identifier_token25] = ACTIONS(1949), - [aux_sym_cmd_identifier_token26] = ACTIONS(1949), - [aux_sym_cmd_identifier_token27] = ACTIONS(1949), - [aux_sym_cmd_identifier_token28] = ACTIONS(1949), - [aux_sym_cmd_identifier_token29] = ACTIONS(1949), - [aux_sym_cmd_identifier_token30] = ACTIONS(1949), - [aux_sym_cmd_identifier_token31] = ACTIONS(1949), - [aux_sym_cmd_identifier_token32] = ACTIONS(1949), - [aux_sym_cmd_identifier_token33] = ACTIONS(1949), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1949), - [aux_sym_cmd_identifier_token36] = ACTIONS(1949), - [aux_sym_cmd_identifier_token37] = ACTIONS(1949), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1949), - [aux_sym_cmd_identifier_token40] = ACTIONS(1949), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1949), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1949), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1949), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1949), - [aux_sym__val_number_decimal_token3] = ACTIONS(1949), - [aux_sym__val_number_decimal_token4] = ACTIONS(1949), - [aux_sym__val_number_token1] = ACTIONS(1949), - [aux_sym__val_number_token2] = ACTIONS(1949), - [aux_sym__val_number_token3] = ACTIONS(1949), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1949), - [sym__str_single_quotes] = ACTIONS(1949), - [sym__str_back_ticks] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1949), - [sym__entry_separator] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1951), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(1897), + [aux_sym__immediate_decimal_token2] = ACTIONS(1899), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, [412] = { - [sym_cell_path] = STATE(640), - [sym_path] = STATE(557), + [sym_cell_path] = STATE(596), + [sym_path] = STATE(556), [sym_comment] = STATE(412), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1953), - [aux_sym_cmd_identifier_token3] = ACTIONS(1953), - [aux_sym_cmd_identifier_token4] = ACTIONS(1953), - [aux_sym_cmd_identifier_token5] = ACTIONS(1953), - [aux_sym_cmd_identifier_token6] = ACTIONS(1953), - [aux_sym_cmd_identifier_token7] = ACTIONS(1953), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1953), - [aux_sym_cmd_identifier_token11] = ACTIONS(1953), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1953), - [aux_sym_cmd_identifier_token17] = ACTIONS(1953), - [aux_sym_cmd_identifier_token18] = ACTIONS(1953), - [aux_sym_cmd_identifier_token19] = ACTIONS(1953), - [aux_sym_cmd_identifier_token20] = ACTIONS(1953), - [aux_sym_cmd_identifier_token21] = ACTIONS(1953), - [aux_sym_cmd_identifier_token22] = ACTIONS(1953), - [aux_sym_cmd_identifier_token23] = ACTIONS(1953), - [aux_sym_cmd_identifier_token24] = ACTIONS(1953), - [aux_sym_cmd_identifier_token25] = ACTIONS(1953), - [aux_sym_cmd_identifier_token26] = ACTIONS(1953), - [aux_sym_cmd_identifier_token27] = ACTIONS(1953), - [aux_sym_cmd_identifier_token28] = ACTIONS(1953), - [aux_sym_cmd_identifier_token29] = ACTIONS(1953), - [aux_sym_cmd_identifier_token30] = ACTIONS(1953), - [aux_sym_cmd_identifier_token31] = ACTIONS(1953), - [aux_sym_cmd_identifier_token32] = ACTIONS(1953), - [aux_sym_cmd_identifier_token33] = ACTIONS(1953), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1953), - [aux_sym_cmd_identifier_token36] = ACTIONS(1953), - [aux_sym_cmd_identifier_token37] = ACTIONS(1953), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1953), - [aux_sym_cmd_identifier_token40] = ACTIONS(1953), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1953), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1953), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1953), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1953), - [aux_sym__val_number_decimal_token3] = ACTIONS(1953), - [aux_sym__val_number_decimal_token4] = ACTIONS(1953), - [aux_sym__val_number_token1] = ACTIONS(1953), - [aux_sym__val_number_token2] = ACTIONS(1953), - [aux_sym__val_number_token3] = ACTIONS(1953), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1953), - [sym__str_single_quotes] = ACTIONS(1953), - [sym__str_back_ticks] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1953), - [sym__entry_separator] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(1898), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1901), + [aux_sym_cmd_identifier_token3] = ACTIONS(1901), + [aux_sym_cmd_identifier_token4] = ACTIONS(1901), + [aux_sym_cmd_identifier_token5] = ACTIONS(1901), + [aux_sym_cmd_identifier_token6] = ACTIONS(1901), + [aux_sym_cmd_identifier_token7] = ACTIONS(1901), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1901), + [aux_sym_cmd_identifier_token11] = ACTIONS(1901), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1901), + [aux_sym_cmd_identifier_token17] = ACTIONS(1901), + [aux_sym_cmd_identifier_token18] = ACTIONS(1901), + [aux_sym_cmd_identifier_token19] = ACTIONS(1901), + [aux_sym_cmd_identifier_token20] = ACTIONS(1901), + [aux_sym_cmd_identifier_token21] = ACTIONS(1901), + [aux_sym_cmd_identifier_token22] = ACTIONS(1901), + [aux_sym_cmd_identifier_token23] = ACTIONS(1901), + [aux_sym_cmd_identifier_token24] = ACTIONS(1901), + [aux_sym_cmd_identifier_token25] = ACTIONS(1901), + [aux_sym_cmd_identifier_token26] = ACTIONS(1901), + [aux_sym_cmd_identifier_token27] = ACTIONS(1901), + [aux_sym_cmd_identifier_token28] = ACTIONS(1901), + [aux_sym_cmd_identifier_token29] = ACTIONS(1901), + [aux_sym_cmd_identifier_token30] = ACTIONS(1901), + [aux_sym_cmd_identifier_token31] = ACTIONS(1901), + [aux_sym_cmd_identifier_token32] = ACTIONS(1901), + [aux_sym_cmd_identifier_token33] = ACTIONS(1901), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1901), + [aux_sym_cmd_identifier_token36] = ACTIONS(1901), + [aux_sym_cmd_identifier_token37] = ACTIONS(1901), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1901), + [aux_sym_cmd_identifier_token40] = ACTIONS(1901), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1901), + [anon_sym_COMMA] = ACTIONS(1901), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1901), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1901), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1901), + [aux_sym__val_number_decimal_token3] = ACTIONS(1901), + [aux_sym__val_number_decimal_token4] = ACTIONS(1901), + [aux_sym__val_number_token1] = ACTIONS(1901), + [aux_sym__val_number_token2] = ACTIONS(1901), + [aux_sym__val_number_token3] = ACTIONS(1901), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1901), + [sym__str_single_quotes] = ACTIONS(1901), + [sym__str_back_ticks] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1901), + [sym__entry_separator] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1955), + [sym_raw_string_begin] = ACTIONS(1903), }, [413] = { - [sym_cell_path] = STATE(641), - [sym_path] = STATE(557), + [sym_expr_parenthesized] = STATE(4035), + [sym__spread_parenthesized] = STATE(4400), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(7381), + [sym__val_range_with_end] = STATE(7297), + [sym__value] = STATE(4403), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym__spread_variable] = STATE(4404), + [sym_val_variable] = STATE(4080), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3812), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym__spread_list] = STATE(4400), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym__cmd_arg] = STATE(4405), + [sym_redirection] = STATE(4408), + [sym__flag] = STATE(4409), + [sym_short_flag] = STATE(4389), + [sym_long_flag] = STATE(4389), + [sym_unquoted] = STATE(4185), + [sym__unquoted_with_expr] = STATE(4414), + [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(413), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [aux_sym_cmd_identifier_token37] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [sym__entry_separator] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(1898), + [sym__newline] = ACTIONS(1905), + [sym__space] = ACTIONS(1905), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_err_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_GT_PIPE] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1916), + [anon_sym_DASH2] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(1934), + [aux_sym__val_number_decimal_token3] = ACTIONS(1936), + [aux_sym__val_number_decimal_token4] = ACTIONS(1938), + [aux_sym__val_number_token1] = ACTIONS(1940), + [aux_sym__val_number_token2] = ACTIONS(1940), + [aux_sym__val_number_token3] = ACTIONS(1940), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1952), + [sym__str_back_ticks] = ACTIONS(1952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1958), + [anon_sym_COLON2] = ACTIONS(1960), + [anon_sym_err_GT] = ACTIONS(1962), + [anon_sym_out_GT] = ACTIONS(1962), + [anon_sym_e_GT] = ACTIONS(1962), + [anon_sym_o_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT] = ACTIONS(1962), + [anon_sym_err_GT_GT] = ACTIONS(1962), + [anon_sym_out_GT_GT] = ACTIONS(1962), + [anon_sym_e_GT_GT] = ACTIONS(1962), + [anon_sym_o_GT_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), + [aux_sym_unquoted_token1] = ACTIONS(1964), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1959), + [sym_raw_string_begin] = ACTIONS(1966), }, [414] = { - [sym_cell_path] = STATE(642), - [sym_path] = STATE(557), + [sym_cell_path] = STATE(597), + [sym_path] = STATE(556), [sym_comment] = STATE(414), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1961), - [aux_sym_cmd_identifier_token3] = ACTIONS(1961), - [aux_sym_cmd_identifier_token4] = ACTIONS(1961), - [aux_sym_cmd_identifier_token5] = ACTIONS(1961), - [aux_sym_cmd_identifier_token6] = ACTIONS(1961), - [aux_sym_cmd_identifier_token7] = ACTIONS(1961), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1961), - [aux_sym_cmd_identifier_token11] = ACTIONS(1961), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1961), - [aux_sym_cmd_identifier_token17] = ACTIONS(1961), - [aux_sym_cmd_identifier_token18] = ACTIONS(1961), - [aux_sym_cmd_identifier_token19] = ACTIONS(1961), - [aux_sym_cmd_identifier_token20] = ACTIONS(1961), - [aux_sym_cmd_identifier_token21] = ACTIONS(1961), - [aux_sym_cmd_identifier_token22] = ACTIONS(1961), - [aux_sym_cmd_identifier_token23] = ACTIONS(1961), - [aux_sym_cmd_identifier_token24] = ACTIONS(1961), - [aux_sym_cmd_identifier_token25] = ACTIONS(1961), - [aux_sym_cmd_identifier_token26] = ACTIONS(1961), - [aux_sym_cmd_identifier_token27] = ACTIONS(1961), - [aux_sym_cmd_identifier_token28] = ACTIONS(1961), - [aux_sym_cmd_identifier_token29] = ACTIONS(1961), - [aux_sym_cmd_identifier_token30] = ACTIONS(1961), - [aux_sym_cmd_identifier_token31] = ACTIONS(1961), - [aux_sym_cmd_identifier_token32] = ACTIONS(1961), - [aux_sym_cmd_identifier_token33] = ACTIONS(1961), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1961), - [aux_sym_cmd_identifier_token36] = ACTIONS(1961), - [aux_sym_cmd_identifier_token37] = ACTIONS(1961), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1961), - [aux_sym_cmd_identifier_token40] = ACTIONS(1961), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1961), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in2] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1961), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1961), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1961), - [aux_sym__val_number_decimal_token3] = ACTIONS(1961), - [aux_sym__val_number_decimal_token4] = ACTIONS(1961), - [aux_sym__val_number_token1] = ACTIONS(1961), - [aux_sym__val_number_token2] = ACTIONS(1961), - [aux_sym__val_number_token3] = ACTIONS(1961), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1961), - [sym__str_single_quotes] = ACTIONS(1961), - [sym__str_back_ticks] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1961), - [sym__entry_separator] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(1898), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1963), + [sym_raw_string_begin] = ACTIONS(1970), }, [415] = { - [sym_cell_path] = STATE(643), - [sym_path] = STATE(557), [sym_comment] = STATE(415), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1965), - [aux_sym_cmd_identifier_token3] = ACTIONS(1965), - [aux_sym_cmd_identifier_token4] = ACTIONS(1965), - [aux_sym_cmd_identifier_token5] = ACTIONS(1965), - [aux_sym_cmd_identifier_token6] = ACTIONS(1965), - [aux_sym_cmd_identifier_token7] = ACTIONS(1965), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1965), - [aux_sym_cmd_identifier_token11] = ACTIONS(1965), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1965), - [aux_sym_cmd_identifier_token17] = ACTIONS(1965), - [aux_sym_cmd_identifier_token18] = ACTIONS(1965), - [aux_sym_cmd_identifier_token19] = ACTIONS(1965), - [aux_sym_cmd_identifier_token20] = ACTIONS(1965), - [aux_sym_cmd_identifier_token21] = ACTIONS(1965), - [aux_sym_cmd_identifier_token22] = ACTIONS(1965), - [aux_sym_cmd_identifier_token23] = ACTIONS(1965), - [aux_sym_cmd_identifier_token24] = ACTIONS(1965), - [aux_sym_cmd_identifier_token25] = ACTIONS(1965), - [aux_sym_cmd_identifier_token26] = ACTIONS(1965), - [aux_sym_cmd_identifier_token27] = ACTIONS(1965), - [aux_sym_cmd_identifier_token28] = ACTIONS(1965), - [aux_sym_cmd_identifier_token29] = ACTIONS(1965), - [aux_sym_cmd_identifier_token30] = ACTIONS(1965), - [aux_sym_cmd_identifier_token31] = ACTIONS(1965), - [aux_sym_cmd_identifier_token32] = ACTIONS(1965), - [aux_sym_cmd_identifier_token33] = ACTIONS(1965), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1965), - [aux_sym_cmd_identifier_token36] = ACTIONS(1965), - [aux_sym_cmd_identifier_token37] = ACTIONS(1965), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1965), - [aux_sym_cmd_identifier_token40] = ACTIONS(1965), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1965), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1965), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1965), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1965), - [aux_sym__val_number_decimal_token3] = ACTIONS(1965), - [aux_sym__val_number_decimal_token4] = ACTIONS(1965), - [aux_sym__val_number_token1] = ACTIONS(1965), - [aux_sym__val_number_token2] = ACTIONS(1965), - [aux_sym__val_number_token3] = ACTIONS(1965), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1965), - [sym__str_single_quotes] = ACTIONS(1965), - [sym__str_back_ticks] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1965), - [sym__entry_separator] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1967), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(1972), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, [416] = { - [sym_cell_path] = STATE(600), - [sym_path] = STATE(557), [sym_comment] = STATE(416), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1969), - [aux_sym_cmd_identifier_token3] = ACTIONS(1969), - [aux_sym_cmd_identifier_token4] = ACTIONS(1969), - [aux_sym_cmd_identifier_token5] = ACTIONS(1969), - [aux_sym_cmd_identifier_token6] = ACTIONS(1969), - [aux_sym_cmd_identifier_token7] = ACTIONS(1969), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1969), - [aux_sym_cmd_identifier_token11] = ACTIONS(1969), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1969), - [aux_sym_cmd_identifier_token17] = ACTIONS(1969), - [aux_sym_cmd_identifier_token18] = ACTIONS(1969), - [aux_sym_cmd_identifier_token19] = ACTIONS(1969), - [aux_sym_cmd_identifier_token20] = ACTIONS(1969), - [aux_sym_cmd_identifier_token21] = ACTIONS(1969), - [aux_sym_cmd_identifier_token22] = ACTIONS(1969), - [aux_sym_cmd_identifier_token23] = ACTIONS(1969), - [aux_sym_cmd_identifier_token24] = ACTIONS(1969), - [aux_sym_cmd_identifier_token25] = ACTIONS(1969), - [aux_sym_cmd_identifier_token26] = ACTIONS(1969), - [aux_sym_cmd_identifier_token27] = ACTIONS(1969), - [aux_sym_cmd_identifier_token28] = ACTIONS(1969), - [aux_sym_cmd_identifier_token29] = ACTIONS(1969), - [aux_sym_cmd_identifier_token30] = ACTIONS(1969), - [aux_sym_cmd_identifier_token31] = ACTIONS(1969), - [aux_sym_cmd_identifier_token32] = ACTIONS(1969), - [aux_sym_cmd_identifier_token33] = ACTIONS(1969), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1969), - [aux_sym_cmd_identifier_token36] = ACTIONS(1969), - [aux_sym_cmd_identifier_token37] = ACTIONS(1969), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1969), - [aux_sym_cmd_identifier_token40] = ACTIONS(1969), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1969), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1969), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1969), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1969), - [aux_sym__val_number_decimal_token3] = ACTIONS(1969), - [aux_sym__val_number_decimal_token4] = ACTIONS(1969), - [aux_sym__val_number_token1] = ACTIONS(1969), - [aux_sym__val_number_token2] = ACTIONS(1969), - [aux_sym__val_number_token3] = ACTIONS(1969), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1969), - [sym__str_single_quotes] = ACTIONS(1969), - [sym__str_back_ticks] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1969), - [sym__entry_separator] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1971), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(1974), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), }, [417] = { - [sym_cell_path] = STATE(685), - [sym_path] = STATE(557), + [sym_cell_path] = STATE(628), + [sym_path] = STATE(556), [sym_comment] = STATE(417), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_alias] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_let_DASHenv] = ACTIONS(1973), - [anon_sym_mut] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [aux_sym_cmd_identifier_token1] = ACTIONS(1973), - [aux_sym_cmd_identifier_token2] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1973), - [aux_sym_cmd_identifier_token4] = ACTIONS(1973), - [aux_sym_cmd_identifier_token5] = ACTIONS(1973), - [aux_sym_cmd_identifier_token6] = ACTIONS(1973), - [aux_sym_cmd_identifier_token7] = ACTIONS(1973), - [aux_sym_cmd_identifier_token8] = ACTIONS(1973), - [aux_sym_cmd_identifier_token9] = ACTIONS(1973), - [aux_sym_cmd_identifier_token10] = ACTIONS(1973), - [aux_sym_cmd_identifier_token11] = ACTIONS(1973), - [aux_sym_cmd_identifier_token12] = ACTIONS(1973), - [aux_sym_cmd_identifier_token13] = ACTIONS(1973), - [aux_sym_cmd_identifier_token14] = ACTIONS(1973), - [aux_sym_cmd_identifier_token15] = ACTIONS(1973), - [aux_sym_cmd_identifier_token16] = ACTIONS(1973), - [aux_sym_cmd_identifier_token17] = ACTIONS(1973), - [aux_sym_cmd_identifier_token18] = ACTIONS(1973), - [aux_sym_cmd_identifier_token19] = ACTIONS(1973), - [aux_sym_cmd_identifier_token20] = ACTIONS(1973), - [aux_sym_cmd_identifier_token21] = ACTIONS(1973), - [aux_sym_cmd_identifier_token22] = ACTIONS(1973), - [aux_sym_cmd_identifier_token23] = ACTIONS(1973), - [aux_sym_cmd_identifier_token24] = ACTIONS(1973), - [aux_sym_cmd_identifier_token25] = ACTIONS(1973), - [aux_sym_cmd_identifier_token26] = ACTIONS(1973), - [aux_sym_cmd_identifier_token27] = ACTIONS(1973), - [aux_sym_cmd_identifier_token28] = ACTIONS(1973), - [aux_sym_cmd_identifier_token29] = ACTIONS(1973), - [aux_sym_cmd_identifier_token30] = ACTIONS(1973), - [aux_sym_cmd_identifier_token31] = ACTIONS(1973), - [aux_sym_cmd_identifier_token32] = ACTIONS(1973), - [aux_sym_cmd_identifier_token33] = ACTIONS(1973), - [aux_sym_cmd_identifier_token34] = ACTIONS(1973), - [aux_sym_cmd_identifier_token35] = ACTIONS(1973), - [aux_sym_cmd_identifier_token36] = ACTIONS(1973), - [aux_sym_cmd_identifier_token37] = ACTIONS(1973), - [aux_sym_cmd_identifier_token38] = ACTIONS(1973), - [aux_sym_cmd_identifier_token39] = ACTIONS(1973), - [aux_sym_cmd_identifier_token40] = ACTIONS(1973), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_export_DASHenv] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_use] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_in2] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_make] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_else] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_catch] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_as] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1973), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1973), - [aux_sym__val_number_decimal_token3] = ACTIONS(1973), - [aux_sym__val_number_decimal_token4] = ACTIONS(1973), - [aux_sym__val_number_token1] = ACTIONS(1973), - [aux_sym__val_number_token2] = ACTIONS(1973), - [aux_sym__val_number_token3] = ACTIONS(1973), - [aux_sym__val_number_token4] = ACTIONS(1973), - [aux_sym__val_number_token5] = ACTIONS(1973), - [aux_sym__val_number_token6] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1973), - [sym__str_single_quotes] = ACTIONS(1973), - [sym__str_back_ticks] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1973), - [sym__entry_separator] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(1898), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_alias] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_let_DASHenv] = ACTIONS(1976), + [anon_sym_mut] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [aux_sym_cmd_identifier_token1] = ACTIONS(1976), + [aux_sym_cmd_identifier_token2] = ACTIONS(1976), + [aux_sym_cmd_identifier_token3] = ACTIONS(1976), + [aux_sym_cmd_identifier_token4] = ACTIONS(1976), + [aux_sym_cmd_identifier_token5] = ACTIONS(1976), + [aux_sym_cmd_identifier_token6] = ACTIONS(1976), + [aux_sym_cmd_identifier_token7] = ACTIONS(1976), + [aux_sym_cmd_identifier_token8] = ACTIONS(1976), + [aux_sym_cmd_identifier_token9] = ACTIONS(1976), + [aux_sym_cmd_identifier_token10] = ACTIONS(1976), + [aux_sym_cmd_identifier_token11] = ACTIONS(1976), + [aux_sym_cmd_identifier_token12] = ACTIONS(1976), + [aux_sym_cmd_identifier_token13] = ACTIONS(1976), + [aux_sym_cmd_identifier_token14] = ACTIONS(1976), + [aux_sym_cmd_identifier_token15] = ACTIONS(1976), + [aux_sym_cmd_identifier_token16] = ACTIONS(1976), + [aux_sym_cmd_identifier_token17] = ACTIONS(1976), + [aux_sym_cmd_identifier_token18] = ACTIONS(1976), + [aux_sym_cmd_identifier_token19] = ACTIONS(1976), + [aux_sym_cmd_identifier_token20] = ACTIONS(1976), + [aux_sym_cmd_identifier_token21] = ACTIONS(1976), + [aux_sym_cmd_identifier_token22] = ACTIONS(1976), + [aux_sym_cmd_identifier_token23] = ACTIONS(1976), + [aux_sym_cmd_identifier_token24] = ACTIONS(1976), + [aux_sym_cmd_identifier_token25] = ACTIONS(1976), + [aux_sym_cmd_identifier_token26] = ACTIONS(1976), + [aux_sym_cmd_identifier_token27] = ACTIONS(1976), + [aux_sym_cmd_identifier_token28] = ACTIONS(1976), + [aux_sym_cmd_identifier_token29] = ACTIONS(1976), + [aux_sym_cmd_identifier_token30] = ACTIONS(1976), + [aux_sym_cmd_identifier_token31] = ACTIONS(1976), + [aux_sym_cmd_identifier_token32] = ACTIONS(1976), + [aux_sym_cmd_identifier_token33] = ACTIONS(1976), + [aux_sym_cmd_identifier_token34] = ACTIONS(1976), + [aux_sym_cmd_identifier_token35] = ACTIONS(1976), + [aux_sym_cmd_identifier_token36] = ACTIONS(1976), + [aux_sym_cmd_identifier_token37] = ACTIONS(1976), + [aux_sym_cmd_identifier_token38] = ACTIONS(1976), + [aux_sym_cmd_identifier_token39] = ACTIONS(1976), + [aux_sym_cmd_identifier_token40] = ACTIONS(1976), + [anon_sym_def] = ACTIONS(1976), + [anon_sym_export_DASHenv] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1976), + [anon_sym_COMMA] = ACTIONS(1976), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_error] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_in2] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_make] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1976), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_source] = ACTIONS(1976), + [anon_sym_source_DASHenv] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_hide] = ACTIONS(1976), + [anon_sym_hide_DASHenv] = ACTIONS(1976), + [anon_sym_overlay] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_PLUS2] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1976), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1976), + [aux_sym__val_number_decimal_token3] = ACTIONS(1976), + [aux_sym__val_number_decimal_token4] = ACTIONS(1976), + [aux_sym__val_number_token1] = ACTIONS(1976), + [aux_sym__val_number_token2] = ACTIONS(1976), + [aux_sym__val_number_token3] = ACTIONS(1976), + [aux_sym__val_number_token4] = ACTIONS(1976), + [aux_sym__val_number_token5] = ACTIONS(1976), + [aux_sym__val_number_token6] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1976), + [sym__str_single_quotes] = ACTIONS(1976), + [sym__str_back_ticks] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1976), + [sym__entry_separator] = ACTIONS(1978), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1975), + [sym_raw_string_begin] = ACTIONS(1978), }, [418] = { - [sym_cell_path] = STATE(645), - [sym_path] = STATE(557), [sym_comment] = STATE(418), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1977), - [aux_sym_cmd_identifier_token3] = ACTIONS(1977), - [aux_sym_cmd_identifier_token4] = ACTIONS(1977), - [aux_sym_cmd_identifier_token5] = ACTIONS(1977), - [aux_sym_cmd_identifier_token6] = ACTIONS(1977), - [aux_sym_cmd_identifier_token7] = ACTIONS(1977), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1977), - [aux_sym_cmd_identifier_token11] = ACTIONS(1977), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1977), - [aux_sym_cmd_identifier_token17] = ACTIONS(1977), - [aux_sym_cmd_identifier_token18] = ACTIONS(1977), - [aux_sym_cmd_identifier_token19] = ACTIONS(1977), - [aux_sym_cmd_identifier_token20] = ACTIONS(1977), - [aux_sym_cmd_identifier_token21] = ACTIONS(1977), - [aux_sym_cmd_identifier_token22] = ACTIONS(1977), - [aux_sym_cmd_identifier_token23] = ACTIONS(1977), - [aux_sym_cmd_identifier_token24] = ACTIONS(1977), - [aux_sym_cmd_identifier_token25] = ACTIONS(1977), - [aux_sym_cmd_identifier_token26] = ACTIONS(1977), - [aux_sym_cmd_identifier_token27] = ACTIONS(1977), - [aux_sym_cmd_identifier_token28] = ACTIONS(1977), - [aux_sym_cmd_identifier_token29] = ACTIONS(1977), - [aux_sym_cmd_identifier_token30] = ACTIONS(1977), - [aux_sym_cmd_identifier_token31] = ACTIONS(1977), - [aux_sym_cmd_identifier_token32] = ACTIONS(1977), - [aux_sym_cmd_identifier_token33] = ACTIONS(1977), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1977), - [aux_sym_cmd_identifier_token36] = ACTIONS(1977), - [aux_sym_cmd_identifier_token37] = ACTIONS(1977), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1977), - [aux_sym_cmd_identifier_token40] = ACTIONS(1977), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1977), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1977), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1977), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1977), - [aux_sym__val_number_decimal_token3] = ACTIONS(1977), - [aux_sym__val_number_decimal_token4] = ACTIONS(1977), - [aux_sym__val_number_token1] = ACTIONS(1977), - [aux_sym__val_number_token2] = ACTIONS(1977), - [aux_sym__val_number_token3] = ACTIONS(1977), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1977), - [sym__str_single_quotes] = ACTIONS(1977), - [sym__str_back_ticks] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1977), - [sym__entry_separator] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [aux_sym__immediate_decimal_token1] = ACTIONS(1980), + [aux_sym__immediate_decimal_token2] = ACTIONS(1982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1979), + [sym_raw_string_begin] = ACTIONS(1733), }, [419] = { - [sym_cell_path] = STATE(646), - [sym_path] = STATE(557), [sym_comment] = STATE(419), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [aux_sym_cmd_identifier_token37] = ACTIONS(1981), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in2] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_PLUS2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [aux_sym__val_number_token4] = ACTIONS(1981), - [aux_sym__val_number_token5] = ACTIONS(1981), - [aux_sym__val_number_token6] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), - [sym__entry_separator] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1784), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1983), + [sym_raw_string_begin] = ACTIONS(1751), }, [420] = { - [sym_cell_path] = STATE(647), - [sym_path] = STATE(557), [sym_comment] = STATE(420), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [sym__entry_separator] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(984), + [aux_sym_cmd_identifier_token3] = ACTIONS(984), + [aux_sym_cmd_identifier_token4] = ACTIONS(984), + [aux_sym_cmd_identifier_token5] = ACTIONS(984), + [aux_sym_cmd_identifier_token6] = ACTIONS(984), + [aux_sym_cmd_identifier_token7] = ACTIONS(984), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(984), + [aux_sym_cmd_identifier_token11] = ACTIONS(984), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(984), + [aux_sym_cmd_identifier_token17] = ACTIONS(984), + [aux_sym_cmd_identifier_token18] = ACTIONS(984), + [aux_sym_cmd_identifier_token19] = ACTIONS(984), + [aux_sym_cmd_identifier_token20] = ACTIONS(984), + [aux_sym_cmd_identifier_token21] = ACTIONS(984), + [aux_sym_cmd_identifier_token22] = ACTIONS(984), + [aux_sym_cmd_identifier_token23] = ACTIONS(984), + [aux_sym_cmd_identifier_token24] = ACTIONS(984), + [aux_sym_cmd_identifier_token25] = ACTIONS(984), + [aux_sym_cmd_identifier_token26] = ACTIONS(984), + [aux_sym_cmd_identifier_token27] = ACTIONS(984), + [aux_sym_cmd_identifier_token28] = ACTIONS(984), + [aux_sym_cmd_identifier_token29] = ACTIONS(984), + [aux_sym_cmd_identifier_token30] = ACTIONS(984), + [aux_sym_cmd_identifier_token31] = ACTIONS(984), + [aux_sym_cmd_identifier_token32] = ACTIONS(984), + [aux_sym_cmd_identifier_token33] = ACTIONS(984), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(984), + [aux_sym_cmd_identifier_token36] = ACTIONS(984), + [aux_sym_cmd_identifier_token37] = ACTIONS(984), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(984), + [aux_sym_cmd_identifier_token40] = ACTIONS(984), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(984), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(984), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(984), + [aux_sym__val_number_decimal_token3] = ACTIONS(984), + [aux_sym__val_number_decimal_token4] = ACTIONS(984), + [aux_sym__val_number_token1] = ACTIONS(984), + [aux_sym__val_number_token2] = ACTIONS(984), + [aux_sym__val_number_token3] = ACTIONS(984), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(984), + [sym__str_single_quotes] = ACTIONS(984), + [sym__str_back_ticks] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(984), + [sym__entry_separator] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1987), + [sym_raw_string_begin] = ACTIONS(986), }, [421] = { - [sym_cell_path] = STATE(648), - [sym_path] = STATE(557), [sym_comment] = STATE(421), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1989), - [aux_sym_cmd_identifier_token3] = ACTIONS(1989), - [aux_sym_cmd_identifier_token4] = ACTIONS(1989), - [aux_sym_cmd_identifier_token5] = ACTIONS(1989), - [aux_sym_cmd_identifier_token6] = ACTIONS(1989), - [aux_sym_cmd_identifier_token7] = ACTIONS(1989), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1989), - [aux_sym_cmd_identifier_token11] = ACTIONS(1989), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1989), - [aux_sym_cmd_identifier_token17] = ACTIONS(1989), - [aux_sym_cmd_identifier_token18] = ACTIONS(1989), - [aux_sym_cmd_identifier_token19] = ACTIONS(1989), - [aux_sym_cmd_identifier_token20] = ACTIONS(1989), - [aux_sym_cmd_identifier_token21] = ACTIONS(1989), - [aux_sym_cmd_identifier_token22] = ACTIONS(1989), - [aux_sym_cmd_identifier_token23] = ACTIONS(1989), - [aux_sym_cmd_identifier_token24] = ACTIONS(1989), - [aux_sym_cmd_identifier_token25] = ACTIONS(1989), - [aux_sym_cmd_identifier_token26] = ACTIONS(1989), - [aux_sym_cmd_identifier_token27] = ACTIONS(1989), - [aux_sym_cmd_identifier_token28] = ACTIONS(1989), - [aux_sym_cmd_identifier_token29] = ACTIONS(1989), - [aux_sym_cmd_identifier_token30] = ACTIONS(1989), - [aux_sym_cmd_identifier_token31] = ACTIONS(1989), - [aux_sym_cmd_identifier_token32] = ACTIONS(1989), - [aux_sym_cmd_identifier_token33] = ACTIONS(1989), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1989), - [aux_sym_cmd_identifier_token36] = ACTIONS(1989), - [aux_sym_cmd_identifier_token37] = ACTIONS(1989), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1989), - [aux_sym_cmd_identifier_token40] = ACTIONS(1989), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1989), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1989), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_register] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1989), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1989), - [aux_sym__val_number_decimal_token3] = ACTIONS(1989), - [aux_sym__val_number_decimal_token4] = ACTIONS(1989), - [aux_sym__val_number_token1] = ACTIONS(1989), - [aux_sym__val_number_token2] = ACTIONS(1989), - [aux_sym__val_number_token3] = ACTIONS(1989), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1989), - [sym__str_single_quotes] = ACTIONS(1989), - [sym__str_back_ticks] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1989), - [sym__entry_separator] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(1984), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(1774), }, [422] = { - [sym_cell_path] = STATE(649), - [sym_path] = STATE(557), + [sym_cell_path] = STATE(598), + [sym_path] = STATE(556), [sym_comment] = STATE(422), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1993), - [aux_sym_cmd_identifier_token3] = ACTIONS(1993), - [aux_sym_cmd_identifier_token4] = ACTIONS(1993), - [aux_sym_cmd_identifier_token5] = ACTIONS(1993), - [aux_sym_cmd_identifier_token6] = ACTIONS(1993), - [aux_sym_cmd_identifier_token7] = ACTIONS(1993), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1993), - [aux_sym_cmd_identifier_token11] = ACTIONS(1993), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1993), - [aux_sym_cmd_identifier_token17] = ACTIONS(1993), - [aux_sym_cmd_identifier_token18] = ACTIONS(1993), - [aux_sym_cmd_identifier_token19] = ACTIONS(1993), - [aux_sym_cmd_identifier_token20] = ACTIONS(1993), - [aux_sym_cmd_identifier_token21] = ACTIONS(1993), - [aux_sym_cmd_identifier_token22] = ACTIONS(1993), - [aux_sym_cmd_identifier_token23] = ACTIONS(1993), - [aux_sym_cmd_identifier_token24] = ACTIONS(1993), - [aux_sym_cmd_identifier_token25] = ACTIONS(1993), - [aux_sym_cmd_identifier_token26] = ACTIONS(1993), - [aux_sym_cmd_identifier_token27] = ACTIONS(1993), - [aux_sym_cmd_identifier_token28] = ACTIONS(1993), - [aux_sym_cmd_identifier_token29] = ACTIONS(1993), - [aux_sym_cmd_identifier_token30] = ACTIONS(1993), - [aux_sym_cmd_identifier_token31] = ACTIONS(1993), - [aux_sym_cmd_identifier_token32] = ACTIONS(1993), - [aux_sym_cmd_identifier_token33] = ACTIONS(1993), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1993), - [aux_sym_cmd_identifier_token36] = ACTIONS(1993), - [aux_sym_cmd_identifier_token37] = ACTIONS(1993), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1993), - [aux_sym_cmd_identifier_token40] = ACTIONS(1993), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1993), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in2] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1993), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1993), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1993), - [aux_sym__val_number_decimal_token3] = ACTIONS(1993), - [aux_sym__val_number_decimal_token4] = ACTIONS(1993), - [aux_sym__val_number_token1] = ACTIONS(1993), - [aux_sym__val_number_token2] = ACTIONS(1993), - [aux_sym__val_number_token3] = ACTIONS(1993), - [aux_sym__val_number_token4] = ACTIONS(1993), - [aux_sym__val_number_token5] = ACTIONS(1993), - [aux_sym__val_number_token6] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1993), - [sym__str_single_quotes] = ACTIONS(1993), - [sym__str_back_ticks] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1993), - [sym__entry_separator] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(1898), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1986), + [anon_sym_alias] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_let_DASHenv] = ACTIONS(1986), + [anon_sym_mut] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [aux_sym_cmd_identifier_token1] = ACTIONS(1986), + [aux_sym_cmd_identifier_token2] = ACTIONS(1986), + [aux_sym_cmd_identifier_token3] = ACTIONS(1986), + [aux_sym_cmd_identifier_token4] = ACTIONS(1986), + [aux_sym_cmd_identifier_token5] = ACTIONS(1986), + [aux_sym_cmd_identifier_token6] = ACTIONS(1986), + [aux_sym_cmd_identifier_token7] = ACTIONS(1986), + [aux_sym_cmd_identifier_token8] = ACTIONS(1986), + [aux_sym_cmd_identifier_token9] = ACTIONS(1986), + [aux_sym_cmd_identifier_token10] = ACTIONS(1986), + [aux_sym_cmd_identifier_token11] = ACTIONS(1986), + [aux_sym_cmd_identifier_token12] = ACTIONS(1986), + [aux_sym_cmd_identifier_token13] = ACTIONS(1986), + [aux_sym_cmd_identifier_token14] = ACTIONS(1986), + [aux_sym_cmd_identifier_token15] = ACTIONS(1986), + [aux_sym_cmd_identifier_token16] = ACTIONS(1986), + [aux_sym_cmd_identifier_token17] = ACTIONS(1986), + [aux_sym_cmd_identifier_token18] = ACTIONS(1986), + [aux_sym_cmd_identifier_token19] = ACTIONS(1986), + [aux_sym_cmd_identifier_token20] = ACTIONS(1986), + [aux_sym_cmd_identifier_token21] = ACTIONS(1986), + [aux_sym_cmd_identifier_token22] = ACTIONS(1986), + [aux_sym_cmd_identifier_token23] = ACTIONS(1986), + [aux_sym_cmd_identifier_token24] = ACTIONS(1986), + [aux_sym_cmd_identifier_token25] = ACTIONS(1986), + [aux_sym_cmd_identifier_token26] = ACTIONS(1986), + [aux_sym_cmd_identifier_token27] = ACTIONS(1986), + [aux_sym_cmd_identifier_token28] = ACTIONS(1986), + [aux_sym_cmd_identifier_token29] = ACTIONS(1986), + [aux_sym_cmd_identifier_token30] = ACTIONS(1986), + [aux_sym_cmd_identifier_token31] = ACTIONS(1986), + [aux_sym_cmd_identifier_token32] = ACTIONS(1986), + [aux_sym_cmd_identifier_token33] = ACTIONS(1986), + [aux_sym_cmd_identifier_token34] = ACTIONS(1986), + [aux_sym_cmd_identifier_token35] = ACTIONS(1986), + [aux_sym_cmd_identifier_token36] = ACTIONS(1986), + [aux_sym_cmd_identifier_token37] = ACTIONS(1986), + [aux_sym_cmd_identifier_token38] = ACTIONS(1986), + [aux_sym_cmd_identifier_token39] = ACTIONS(1986), + [aux_sym_cmd_identifier_token40] = ACTIONS(1986), + [anon_sym_def] = ACTIONS(1986), + [anon_sym_export_DASHenv] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_module] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1986), + [anon_sym_COMMA] = ACTIONS(1986), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_error] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_make] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1986), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_source] = ACTIONS(1986), + [anon_sym_source_DASHenv] = ACTIONS(1986), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_hide] = ACTIONS(1986), + [anon_sym_hide_DASHenv] = ACTIONS(1986), + [anon_sym_overlay] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1986), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1986), + [aux_sym__val_number_decimal_token3] = ACTIONS(1986), + [aux_sym__val_number_decimal_token4] = ACTIONS(1986), + [aux_sym__val_number_token1] = ACTIONS(1986), + [aux_sym__val_number_token2] = ACTIONS(1986), + [aux_sym__val_number_token3] = ACTIONS(1986), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1986), + [sym__str_single_quotes] = ACTIONS(1986), + [sym__str_back_ticks] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1986), + [sym__entry_separator] = ACTIONS(1988), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1995), + [sym_raw_string_begin] = ACTIONS(1988), }, [423] = { - [sym_cell_path] = STATE(650), - [sym_path] = STATE(557), [sym_comment] = STATE(423), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1997), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [aux_sym_cmd_identifier_token6] = ACTIONS(1997), - [aux_sym_cmd_identifier_token7] = ACTIONS(1997), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1997), - [aux_sym_cmd_identifier_token11] = ACTIONS(1997), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1997), - [aux_sym_cmd_identifier_token17] = ACTIONS(1997), - [aux_sym_cmd_identifier_token18] = ACTIONS(1997), - [aux_sym_cmd_identifier_token19] = ACTIONS(1997), - [aux_sym_cmd_identifier_token20] = ACTIONS(1997), - [aux_sym_cmd_identifier_token21] = ACTIONS(1997), - [aux_sym_cmd_identifier_token22] = ACTIONS(1997), - [aux_sym_cmd_identifier_token23] = ACTIONS(1997), - [aux_sym_cmd_identifier_token24] = ACTIONS(1997), - [aux_sym_cmd_identifier_token25] = ACTIONS(1997), - [aux_sym_cmd_identifier_token26] = ACTIONS(1997), - [aux_sym_cmd_identifier_token27] = ACTIONS(1997), - [aux_sym_cmd_identifier_token28] = ACTIONS(1997), - [aux_sym_cmd_identifier_token29] = ACTIONS(1997), - [aux_sym_cmd_identifier_token30] = ACTIONS(1997), - [aux_sym_cmd_identifier_token31] = ACTIONS(1997), - [aux_sym_cmd_identifier_token32] = ACTIONS(1997), - [aux_sym_cmd_identifier_token33] = ACTIONS(1997), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1997), - [aux_sym_cmd_identifier_token36] = ACTIONS(1997), - [aux_sym_cmd_identifier_token37] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), - [sym__entry_separator] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1999), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1990), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [424] = { [sym_comment] = STATE(424), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(1994), + [aux_sym__immediate_decimal_token2] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, [425] = { - [sym_cell_path] = STATE(651), - [sym_path] = STATE(557), + [sym_cell_path] = STATE(599), + [sym_path] = STATE(556), [sym_comment] = STATE(425), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [aux_sym_cmd_identifier_token37] = ACTIONS(2001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2001), - [aux_sym_cmd_identifier_token40] = ACTIONS(2001), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in2] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2001), - [aux_sym__val_number_token2] = ACTIONS(2001), - [aux_sym__val_number_token3] = ACTIONS(2001), - [aux_sym__val_number_token4] = ACTIONS(2001), - [aux_sym__val_number_token5] = ACTIONS(2001), - [aux_sym__val_number_token6] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym__str_single_quotes] = ACTIONS(2001), - [sym__str_back_ticks] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), - [sym__entry_separator] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(1898), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(1998), + [anon_sym_alias] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_let_DASHenv] = ACTIONS(1998), + [anon_sym_mut] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [aux_sym_cmd_identifier_token1] = ACTIONS(1998), + [aux_sym_cmd_identifier_token2] = ACTIONS(1998), + [aux_sym_cmd_identifier_token3] = ACTIONS(1998), + [aux_sym_cmd_identifier_token4] = ACTIONS(1998), + [aux_sym_cmd_identifier_token5] = ACTIONS(1998), + [aux_sym_cmd_identifier_token6] = ACTIONS(1998), + [aux_sym_cmd_identifier_token7] = ACTIONS(1998), + [aux_sym_cmd_identifier_token8] = ACTIONS(1998), + [aux_sym_cmd_identifier_token9] = ACTIONS(1998), + [aux_sym_cmd_identifier_token10] = ACTIONS(1998), + [aux_sym_cmd_identifier_token11] = ACTIONS(1998), + [aux_sym_cmd_identifier_token12] = ACTIONS(1998), + [aux_sym_cmd_identifier_token13] = ACTIONS(1998), + [aux_sym_cmd_identifier_token14] = ACTIONS(1998), + [aux_sym_cmd_identifier_token15] = ACTIONS(1998), + [aux_sym_cmd_identifier_token16] = ACTIONS(1998), + [aux_sym_cmd_identifier_token17] = ACTIONS(1998), + [aux_sym_cmd_identifier_token18] = ACTIONS(1998), + [aux_sym_cmd_identifier_token19] = ACTIONS(1998), + [aux_sym_cmd_identifier_token20] = ACTIONS(1998), + [aux_sym_cmd_identifier_token21] = ACTIONS(1998), + [aux_sym_cmd_identifier_token22] = ACTIONS(1998), + [aux_sym_cmd_identifier_token23] = ACTIONS(1998), + [aux_sym_cmd_identifier_token24] = ACTIONS(1998), + [aux_sym_cmd_identifier_token25] = ACTIONS(1998), + [aux_sym_cmd_identifier_token26] = ACTIONS(1998), + [aux_sym_cmd_identifier_token27] = ACTIONS(1998), + [aux_sym_cmd_identifier_token28] = ACTIONS(1998), + [aux_sym_cmd_identifier_token29] = ACTIONS(1998), + [aux_sym_cmd_identifier_token30] = ACTIONS(1998), + [aux_sym_cmd_identifier_token31] = ACTIONS(1998), + [aux_sym_cmd_identifier_token32] = ACTIONS(1998), + [aux_sym_cmd_identifier_token33] = ACTIONS(1998), + [aux_sym_cmd_identifier_token34] = ACTIONS(1998), + [aux_sym_cmd_identifier_token35] = ACTIONS(1998), + [aux_sym_cmd_identifier_token36] = ACTIONS(1998), + [aux_sym_cmd_identifier_token37] = ACTIONS(1998), + [aux_sym_cmd_identifier_token38] = ACTIONS(1998), + [aux_sym_cmd_identifier_token39] = ACTIONS(1998), + [aux_sym_cmd_identifier_token40] = ACTIONS(1998), + [anon_sym_def] = ACTIONS(1998), + [anon_sym_export_DASHenv] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_module] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(1998), + [anon_sym_COMMA] = ACTIONS(1998), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_error] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_in2] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_make] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_do] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_else] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(1998), + [anon_sym_try] = ACTIONS(1998), + [anon_sym_catch] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_source] = ACTIONS(1998), + [anon_sym_source_DASHenv] = ACTIONS(1998), + [anon_sym_register] = ACTIONS(1998), + [anon_sym_hide] = ACTIONS(1998), + [anon_sym_hide_DASHenv] = ACTIONS(1998), + [anon_sym_overlay] = ACTIONS(1998), + [anon_sym_as] = ACTIONS(1998), + [anon_sym_PLUS2] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1998), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(1998), + [aux_sym__val_number_decimal_token3] = ACTIONS(1998), + [aux_sym__val_number_decimal_token4] = ACTIONS(1998), + [aux_sym__val_number_token1] = ACTIONS(1998), + [aux_sym__val_number_token2] = ACTIONS(1998), + [aux_sym__val_number_token3] = ACTIONS(1998), + [aux_sym__val_number_token4] = ACTIONS(1998), + [aux_sym__val_number_token5] = ACTIONS(1998), + [aux_sym__val_number_token6] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(1998), + [sym__str_single_quotes] = ACTIONS(1998), + [sym__str_back_ticks] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1998), + [sym__entry_separator] = ACTIONS(2000), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2003), + [sym_raw_string_begin] = ACTIONS(2000), }, [426] = { - [sym_cell_path] = STATE(652), - [sym_path] = STATE(557), + [sym_expr_parenthesized] = STATE(4035), + [sym__spread_parenthesized] = STATE(4400), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(7381), + [sym__val_range_with_end] = STATE(7297), + [sym__value] = STATE(4403), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym__spread_variable] = STATE(4404), + [sym_val_variable] = STATE(4080), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3812), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym__spread_list] = STATE(4400), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym__cmd_arg] = STATE(4405), + [sym_redirection] = STATE(4408), + [sym__flag] = STATE(4409), + [sym_short_flag] = STATE(4389), + [sym_long_flag] = STATE(4389), + [sym_unquoted] = STATE(4185), + [sym__unquoted_with_expr] = STATE(4414), + [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(426), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [aux_sym_cmd_identifier_token1] = ACTIONS(2005), - [aux_sym_cmd_identifier_token2] = ACTIONS(2005), - [aux_sym_cmd_identifier_token3] = ACTIONS(2005), - [aux_sym_cmd_identifier_token4] = ACTIONS(2005), - [aux_sym_cmd_identifier_token5] = ACTIONS(2005), - [aux_sym_cmd_identifier_token6] = ACTIONS(2005), - [aux_sym_cmd_identifier_token7] = ACTIONS(2005), - [aux_sym_cmd_identifier_token8] = ACTIONS(2005), - [aux_sym_cmd_identifier_token9] = ACTIONS(2005), - [aux_sym_cmd_identifier_token10] = ACTIONS(2005), - [aux_sym_cmd_identifier_token11] = ACTIONS(2005), - [aux_sym_cmd_identifier_token12] = ACTIONS(2005), - [aux_sym_cmd_identifier_token13] = ACTIONS(2005), - [aux_sym_cmd_identifier_token14] = ACTIONS(2005), - [aux_sym_cmd_identifier_token15] = ACTIONS(2005), - [aux_sym_cmd_identifier_token16] = ACTIONS(2005), - [aux_sym_cmd_identifier_token17] = ACTIONS(2005), - [aux_sym_cmd_identifier_token18] = ACTIONS(2005), - [aux_sym_cmd_identifier_token19] = ACTIONS(2005), - [aux_sym_cmd_identifier_token20] = ACTIONS(2005), - [aux_sym_cmd_identifier_token21] = ACTIONS(2005), - [aux_sym_cmd_identifier_token22] = ACTIONS(2005), - [aux_sym_cmd_identifier_token23] = ACTIONS(2005), - [aux_sym_cmd_identifier_token24] = ACTIONS(2005), - [aux_sym_cmd_identifier_token25] = ACTIONS(2005), - [aux_sym_cmd_identifier_token26] = ACTIONS(2005), - [aux_sym_cmd_identifier_token27] = ACTIONS(2005), - [aux_sym_cmd_identifier_token28] = ACTIONS(2005), - [aux_sym_cmd_identifier_token29] = ACTIONS(2005), - [aux_sym_cmd_identifier_token30] = ACTIONS(2005), - [aux_sym_cmd_identifier_token31] = ACTIONS(2005), - [aux_sym_cmd_identifier_token32] = ACTIONS(2005), - [aux_sym_cmd_identifier_token33] = ACTIONS(2005), - [aux_sym_cmd_identifier_token34] = ACTIONS(2005), - [aux_sym_cmd_identifier_token35] = ACTIONS(2005), - [aux_sym_cmd_identifier_token36] = ACTIONS(2005), - [aux_sym_cmd_identifier_token37] = ACTIONS(2005), - [aux_sym_cmd_identifier_token38] = ACTIONS(2005), - [aux_sym_cmd_identifier_token39] = ACTIONS(2005), - [aux_sym_cmd_identifier_token40] = ACTIONS(2005), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2005), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH2] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_in2] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_make] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_else] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2005), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_catch] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_as] = ACTIONS(2005), - [anon_sym_PLUS2] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2005), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [aux_sym__val_number_decimal_token2] = ACTIONS(2005), - [aux_sym__val_number_decimal_token3] = ACTIONS(2005), - [aux_sym__val_number_decimal_token4] = ACTIONS(2005), - [aux_sym__val_number_token1] = ACTIONS(2005), - [aux_sym__val_number_token2] = ACTIONS(2005), - [aux_sym__val_number_token3] = ACTIONS(2005), - [aux_sym__val_number_token4] = ACTIONS(2005), - [aux_sym__val_number_token5] = ACTIONS(2005), - [aux_sym__val_number_token6] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2005), - [sym__str_single_quotes] = ACTIONS(2005), - [sym__str_back_ticks] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2005), - [sym__entry_separator] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(1898), + [sym__newline] = ACTIONS(1908), + [sym__space] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_err_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_GT_PIPE] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(1908), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1916), + [anon_sym_DASH2] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_RBRACE] = ACTIONS(1908), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(1934), + [aux_sym__val_number_decimal_token3] = ACTIONS(1936), + [aux_sym__val_number_decimal_token4] = ACTIONS(1938), + [aux_sym__val_number_token1] = ACTIONS(1940), + [aux_sym__val_number_token2] = ACTIONS(1940), + [aux_sym__val_number_token3] = ACTIONS(1940), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1952), + [sym__str_back_ticks] = ACTIONS(1952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1958), + [anon_sym_err_GT] = ACTIONS(1962), + [anon_sym_out_GT] = ACTIONS(1962), + [anon_sym_e_GT] = ACTIONS(1962), + [anon_sym_o_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT] = ACTIONS(1962), + [anon_sym_err_GT_GT] = ACTIONS(1962), + [anon_sym_out_GT_GT] = ACTIONS(1962), + [anon_sym_e_GT_GT] = ACTIONS(1962), + [anon_sym_o_GT_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), + [aux_sym_unquoted_token1] = ACTIONS(1964), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2007), + [sym_raw_string_begin] = ACTIONS(1966), }, [427] = { + [sym_cell_path] = STATE(627), + [sym_path] = STATE(556), [sym_comment] = STATE(427), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_alias] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_let_DASHenv] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [aux_sym_cmd_identifier_token1] = ACTIONS(2004), + [aux_sym_cmd_identifier_token2] = ACTIONS(2004), + [aux_sym_cmd_identifier_token3] = ACTIONS(2004), + [aux_sym_cmd_identifier_token4] = ACTIONS(2004), + [aux_sym_cmd_identifier_token5] = ACTIONS(2004), + [aux_sym_cmd_identifier_token6] = ACTIONS(2004), + [aux_sym_cmd_identifier_token7] = ACTIONS(2004), + [aux_sym_cmd_identifier_token8] = ACTIONS(2004), + [aux_sym_cmd_identifier_token9] = ACTIONS(2004), + [aux_sym_cmd_identifier_token10] = ACTIONS(2004), + [aux_sym_cmd_identifier_token11] = ACTIONS(2004), + [aux_sym_cmd_identifier_token12] = ACTIONS(2004), + [aux_sym_cmd_identifier_token13] = ACTIONS(2004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2004), + [aux_sym_cmd_identifier_token15] = ACTIONS(2004), + [aux_sym_cmd_identifier_token16] = ACTIONS(2004), + [aux_sym_cmd_identifier_token17] = ACTIONS(2004), + [aux_sym_cmd_identifier_token18] = ACTIONS(2004), + [aux_sym_cmd_identifier_token19] = ACTIONS(2004), + [aux_sym_cmd_identifier_token20] = ACTIONS(2004), + [aux_sym_cmd_identifier_token21] = ACTIONS(2004), + [aux_sym_cmd_identifier_token22] = ACTIONS(2004), + [aux_sym_cmd_identifier_token23] = ACTIONS(2004), + [aux_sym_cmd_identifier_token24] = ACTIONS(2004), + [aux_sym_cmd_identifier_token25] = ACTIONS(2004), + [aux_sym_cmd_identifier_token26] = ACTIONS(2004), + [aux_sym_cmd_identifier_token27] = ACTIONS(2004), + [aux_sym_cmd_identifier_token28] = ACTIONS(2004), + [aux_sym_cmd_identifier_token29] = ACTIONS(2004), + [aux_sym_cmd_identifier_token30] = ACTIONS(2004), + [aux_sym_cmd_identifier_token31] = ACTIONS(2004), + [aux_sym_cmd_identifier_token32] = ACTIONS(2004), + [aux_sym_cmd_identifier_token33] = ACTIONS(2004), + [aux_sym_cmd_identifier_token34] = ACTIONS(2004), + [aux_sym_cmd_identifier_token35] = ACTIONS(2004), + [aux_sym_cmd_identifier_token36] = ACTIONS(2004), + [aux_sym_cmd_identifier_token37] = ACTIONS(2004), + [aux_sym_cmd_identifier_token38] = ACTIONS(2004), + [aux_sym_cmd_identifier_token39] = ACTIONS(2004), + [aux_sym_cmd_identifier_token40] = ACTIONS(2004), + [anon_sym_def] = ACTIONS(2004), + [anon_sym_export_DASHenv] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2004), + [anon_sym_COMMA] = ACTIONS(2004), + [anon_sym_DOLLAR] = ACTIONS(2004), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in2] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_make] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2004), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_catch] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_source] = ACTIONS(2004), + [anon_sym_source_DASHenv] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_hide] = ACTIONS(2004), + [anon_sym_hide_DASHenv] = ACTIONS(2004), + [anon_sym_overlay] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2004), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2004), + [aux_sym__val_number_decimal_token3] = ACTIONS(2004), + [aux_sym__val_number_decimal_token4] = ACTIONS(2004), + [aux_sym__val_number_token1] = ACTIONS(2004), + [aux_sym__val_number_token2] = ACTIONS(2004), + [aux_sym__val_number_token3] = ACTIONS(2004), + [aux_sym__val_number_token4] = ACTIONS(2004), + [aux_sym__val_number_token5] = ACTIONS(2004), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2004), + [sym__str_single_quotes] = ACTIONS(2004), + [sym__str_back_ticks] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2004), + [sym__entry_separator] = ACTIONS(2006), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2006), }, [428] = { - [sym_cell_path] = STATE(653), - [sym_path] = STATE(557), + [sym_cell_path] = STATE(634), + [sym_path] = STATE(556), [sym_comment] = STATE(428), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2009), - [aux_sym_cmd_identifier_token3] = ACTIONS(2009), - [aux_sym_cmd_identifier_token4] = ACTIONS(2009), - [aux_sym_cmd_identifier_token5] = ACTIONS(2009), - [aux_sym_cmd_identifier_token6] = ACTIONS(2009), - [aux_sym_cmd_identifier_token7] = ACTIONS(2009), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2009), - [aux_sym_cmd_identifier_token11] = ACTIONS(2009), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2009), - [aux_sym_cmd_identifier_token17] = ACTIONS(2009), - [aux_sym_cmd_identifier_token18] = ACTIONS(2009), - [aux_sym_cmd_identifier_token19] = ACTIONS(2009), - [aux_sym_cmd_identifier_token20] = ACTIONS(2009), - [aux_sym_cmd_identifier_token21] = ACTIONS(2009), - [aux_sym_cmd_identifier_token22] = ACTIONS(2009), - [aux_sym_cmd_identifier_token23] = ACTIONS(2009), - [aux_sym_cmd_identifier_token24] = ACTIONS(2009), - [aux_sym_cmd_identifier_token25] = ACTIONS(2009), - [aux_sym_cmd_identifier_token26] = ACTIONS(2009), - [aux_sym_cmd_identifier_token27] = ACTIONS(2009), - [aux_sym_cmd_identifier_token28] = ACTIONS(2009), - [aux_sym_cmd_identifier_token29] = ACTIONS(2009), - [aux_sym_cmd_identifier_token30] = ACTIONS(2009), - [aux_sym_cmd_identifier_token31] = ACTIONS(2009), - [aux_sym_cmd_identifier_token32] = ACTIONS(2009), - [aux_sym_cmd_identifier_token33] = ACTIONS(2009), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2009), - [aux_sym_cmd_identifier_token36] = ACTIONS(2009), - [aux_sym_cmd_identifier_token37] = ACTIONS(2009), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2009), - [aux_sym_cmd_identifier_token40] = ACTIONS(2009), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2009), - [aux_sym__val_number_decimal_token3] = ACTIONS(2009), - [aux_sym__val_number_decimal_token4] = ACTIONS(2009), - [aux_sym__val_number_token1] = ACTIONS(2009), - [aux_sym__val_number_token2] = ACTIONS(2009), - [aux_sym__val_number_token3] = ACTIONS(2009), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym__str_single_quotes] = ACTIONS(2009), - [sym__str_back_ticks] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), - [sym__entry_separator] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(1898), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(2008), + [anon_sym_alias] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_let_DASHenv] = ACTIONS(2008), + [anon_sym_mut] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [aux_sym_cmd_identifier_token1] = ACTIONS(2008), + [aux_sym_cmd_identifier_token2] = ACTIONS(2008), + [aux_sym_cmd_identifier_token3] = ACTIONS(2008), + [aux_sym_cmd_identifier_token4] = ACTIONS(2008), + [aux_sym_cmd_identifier_token5] = ACTIONS(2008), + [aux_sym_cmd_identifier_token6] = ACTIONS(2008), + [aux_sym_cmd_identifier_token7] = ACTIONS(2008), + [aux_sym_cmd_identifier_token8] = ACTIONS(2008), + [aux_sym_cmd_identifier_token9] = ACTIONS(2008), + [aux_sym_cmd_identifier_token10] = ACTIONS(2008), + [aux_sym_cmd_identifier_token11] = ACTIONS(2008), + [aux_sym_cmd_identifier_token12] = ACTIONS(2008), + [aux_sym_cmd_identifier_token13] = ACTIONS(2008), + [aux_sym_cmd_identifier_token14] = ACTIONS(2008), + [aux_sym_cmd_identifier_token15] = ACTIONS(2008), + [aux_sym_cmd_identifier_token16] = ACTIONS(2008), + [aux_sym_cmd_identifier_token17] = ACTIONS(2008), + [aux_sym_cmd_identifier_token18] = ACTIONS(2008), + [aux_sym_cmd_identifier_token19] = ACTIONS(2008), + [aux_sym_cmd_identifier_token20] = ACTIONS(2008), + [aux_sym_cmd_identifier_token21] = ACTIONS(2008), + [aux_sym_cmd_identifier_token22] = ACTIONS(2008), + [aux_sym_cmd_identifier_token23] = ACTIONS(2008), + [aux_sym_cmd_identifier_token24] = ACTIONS(2008), + [aux_sym_cmd_identifier_token25] = ACTIONS(2008), + [aux_sym_cmd_identifier_token26] = ACTIONS(2008), + [aux_sym_cmd_identifier_token27] = ACTIONS(2008), + [aux_sym_cmd_identifier_token28] = ACTIONS(2008), + [aux_sym_cmd_identifier_token29] = ACTIONS(2008), + [aux_sym_cmd_identifier_token30] = ACTIONS(2008), + [aux_sym_cmd_identifier_token31] = ACTIONS(2008), + [aux_sym_cmd_identifier_token32] = ACTIONS(2008), + [aux_sym_cmd_identifier_token33] = ACTIONS(2008), + [aux_sym_cmd_identifier_token34] = ACTIONS(2008), + [aux_sym_cmd_identifier_token35] = ACTIONS(2008), + [aux_sym_cmd_identifier_token36] = ACTIONS(2008), + [aux_sym_cmd_identifier_token37] = ACTIONS(2008), + [aux_sym_cmd_identifier_token38] = ACTIONS(2008), + [aux_sym_cmd_identifier_token39] = ACTIONS(2008), + [aux_sym_cmd_identifier_token40] = ACTIONS(2008), + [anon_sym_def] = ACTIONS(2008), + [anon_sym_export_DASHenv] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym_module] = ACTIONS(2008), + [anon_sym_use] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2008), + [anon_sym_COMMA] = ACTIONS(2008), + [anon_sym_DOLLAR] = ACTIONS(2008), + [anon_sym_error] = ACTIONS(2008), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_in2] = ACTIONS(2008), + [anon_sym_loop] = ACTIONS(2008), + [anon_sym_make] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_match] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2008), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_catch] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_source] = ACTIONS(2008), + [anon_sym_source_DASHenv] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_hide] = ACTIONS(2008), + [anon_sym_hide_DASHenv] = ACTIONS(2008), + [anon_sym_overlay] = ACTIONS(2008), + [anon_sym_as] = ACTIONS(2008), + [anon_sym_PLUS2] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2008), + [aux_sym__val_number_decimal_token1] = ACTIONS(2008), + [aux_sym__val_number_decimal_token2] = ACTIONS(2008), + [aux_sym__val_number_decimal_token3] = ACTIONS(2008), + [aux_sym__val_number_decimal_token4] = ACTIONS(2008), + [aux_sym__val_number_token1] = ACTIONS(2008), + [aux_sym__val_number_token2] = ACTIONS(2008), + [aux_sym__val_number_token3] = ACTIONS(2008), + [aux_sym__val_number_token4] = ACTIONS(2008), + [aux_sym__val_number_token5] = ACTIONS(2008), + [aux_sym__val_number_token6] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2008), + [sym__str_single_quotes] = ACTIONS(2008), + [sym__str_back_ticks] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2008), + [sym__entry_separator] = ACTIONS(2010), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2011), + [sym_raw_string_begin] = ACTIONS(2010), }, [429] = { + [sym_cell_path] = STATE(660), + [sym_path] = STATE(556), [sym_comment] = STATE(429), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(2012), + [anon_sym_alias] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_let_DASHenv] = ACTIONS(2012), + [anon_sym_mut] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [aux_sym_cmd_identifier_token1] = ACTIONS(2012), + [aux_sym_cmd_identifier_token2] = ACTIONS(2012), + [aux_sym_cmd_identifier_token3] = ACTIONS(2012), + [aux_sym_cmd_identifier_token4] = ACTIONS(2012), + [aux_sym_cmd_identifier_token5] = ACTIONS(2012), + [aux_sym_cmd_identifier_token6] = ACTIONS(2012), + [aux_sym_cmd_identifier_token7] = ACTIONS(2012), + [aux_sym_cmd_identifier_token8] = ACTIONS(2012), + [aux_sym_cmd_identifier_token9] = ACTIONS(2012), + [aux_sym_cmd_identifier_token10] = ACTIONS(2012), + [aux_sym_cmd_identifier_token11] = ACTIONS(2012), + [aux_sym_cmd_identifier_token12] = ACTIONS(2012), + [aux_sym_cmd_identifier_token13] = ACTIONS(2012), + [aux_sym_cmd_identifier_token14] = ACTIONS(2012), + [aux_sym_cmd_identifier_token15] = ACTIONS(2012), + [aux_sym_cmd_identifier_token16] = ACTIONS(2012), + [aux_sym_cmd_identifier_token17] = ACTIONS(2012), + [aux_sym_cmd_identifier_token18] = ACTIONS(2012), + [aux_sym_cmd_identifier_token19] = ACTIONS(2012), + [aux_sym_cmd_identifier_token20] = ACTIONS(2012), + [aux_sym_cmd_identifier_token21] = ACTIONS(2012), + [aux_sym_cmd_identifier_token22] = ACTIONS(2012), + [aux_sym_cmd_identifier_token23] = ACTIONS(2012), + [aux_sym_cmd_identifier_token24] = ACTIONS(2012), + [aux_sym_cmd_identifier_token25] = ACTIONS(2012), + [aux_sym_cmd_identifier_token26] = ACTIONS(2012), + [aux_sym_cmd_identifier_token27] = ACTIONS(2012), + [aux_sym_cmd_identifier_token28] = ACTIONS(2012), + [aux_sym_cmd_identifier_token29] = ACTIONS(2012), + [aux_sym_cmd_identifier_token30] = ACTIONS(2012), + [aux_sym_cmd_identifier_token31] = ACTIONS(2012), + [aux_sym_cmd_identifier_token32] = ACTIONS(2012), + [aux_sym_cmd_identifier_token33] = ACTIONS(2012), + [aux_sym_cmd_identifier_token34] = ACTIONS(2012), + [aux_sym_cmd_identifier_token35] = ACTIONS(2012), + [aux_sym_cmd_identifier_token36] = ACTIONS(2012), + [aux_sym_cmd_identifier_token37] = ACTIONS(2012), + [aux_sym_cmd_identifier_token38] = ACTIONS(2012), + [aux_sym_cmd_identifier_token39] = ACTIONS(2012), + [aux_sym_cmd_identifier_token40] = ACTIONS(2012), + [anon_sym_def] = ACTIONS(2012), + [anon_sym_export_DASHenv] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_module] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_error] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_in2] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_make] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_catch] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_source] = ACTIONS(2012), + [anon_sym_source_DASHenv] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_hide] = ACTIONS(2012), + [anon_sym_hide_DASHenv] = ACTIONS(2012), + [anon_sym_overlay] = ACTIONS(2012), + [anon_sym_as] = ACTIONS(2012), + [anon_sym_PLUS2] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2012), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2012), + [sym__entry_separator] = ACTIONS(2014), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2014), }, [430] = { [sym_comment] = STATE(430), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [aux_sym_cmd_identifier_token37] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1861), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1813), + [aux_sym_cmd_identifier_token3] = ACTIONS(1813), + [aux_sym_cmd_identifier_token4] = ACTIONS(1813), + [aux_sym_cmd_identifier_token5] = ACTIONS(1813), + [aux_sym_cmd_identifier_token6] = ACTIONS(1813), + [aux_sym_cmd_identifier_token7] = ACTIONS(1813), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1813), + [aux_sym_cmd_identifier_token11] = ACTIONS(1813), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1813), + [aux_sym_cmd_identifier_token17] = ACTIONS(1813), + [aux_sym_cmd_identifier_token18] = ACTIONS(1813), + [aux_sym_cmd_identifier_token19] = ACTIONS(1813), + [aux_sym_cmd_identifier_token20] = ACTIONS(1813), + [aux_sym_cmd_identifier_token21] = ACTIONS(1813), + [aux_sym_cmd_identifier_token22] = ACTIONS(1813), + [aux_sym_cmd_identifier_token23] = ACTIONS(1813), + [aux_sym_cmd_identifier_token24] = ACTIONS(1813), + [aux_sym_cmd_identifier_token25] = ACTIONS(1813), + [aux_sym_cmd_identifier_token26] = ACTIONS(1813), + [aux_sym_cmd_identifier_token27] = ACTIONS(1813), + [aux_sym_cmd_identifier_token28] = ACTIONS(1813), + [aux_sym_cmd_identifier_token29] = ACTIONS(1813), + [aux_sym_cmd_identifier_token30] = ACTIONS(1813), + [aux_sym_cmd_identifier_token31] = ACTIONS(1813), + [aux_sym_cmd_identifier_token32] = ACTIONS(1813), + [aux_sym_cmd_identifier_token33] = ACTIONS(1813), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1813), + [aux_sym_cmd_identifier_token36] = ACTIONS(1813), + [aux_sym_cmd_identifier_token37] = ACTIONS(1813), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1813), + [aux_sym_cmd_identifier_token40] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_register] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1813), + [anon_sym_DOT_DOT2] = ACTIONS(2016), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2018), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1813), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [431] = { + [sym_cell_path] = STATE(584), + [sym_path] = STATE(556), + [sym_comment] = STATE(431), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(2020), + [anon_sym_alias] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_let_DASHenv] = ACTIONS(2020), + [anon_sym_mut] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [aux_sym_cmd_identifier_token1] = ACTIONS(2020), + [aux_sym_cmd_identifier_token2] = ACTIONS(2020), + [aux_sym_cmd_identifier_token3] = ACTIONS(2020), + [aux_sym_cmd_identifier_token4] = ACTIONS(2020), + [aux_sym_cmd_identifier_token5] = ACTIONS(2020), + [aux_sym_cmd_identifier_token6] = ACTIONS(2020), + [aux_sym_cmd_identifier_token7] = ACTIONS(2020), + [aux_sym_cmd_identifier_token8] = ACTIONS(2020), + [aux_sym_cmd_identifier_token9] = ACTIONS(2020), + [aux_sym_cmd_identifier_token10] = ACTIONS(2020), + [aux_sym_cmd_identifier_token11] = ACTIONS(2020), + [aux_sym_cmd_identifier_token12] = ACTIONS(2020), + [aux_sym_cmd_identifier_token13] = ACTIONS(2020), + [aux_sym_cmd_identifier_token14] = ACTIONS(2020), + [aux_sym_cmd_identifier_token15] = ACTIONS(2020), + [aux_sym_cmd_identifier_token16] = ACTIONS(2020), + [aux_sym_cmd_identifier_token17] = ACTIONS(2020), + [aux_sym_cmd_identifier_token18] = ACTIONS(2020), + [aux_sym_cmd_identifier_token19] = ACTIONS(2020), + [aux_sym_cmd_identifier_token20] = ACTIONS(2020), + [aux_sym_cmd_identifier_token21] = ACTIONS(2020), + [aux_sym_cmd_identifier_token22] = ACTIONS(2020), + [aux_sym_cmd_identifier_token23] = ACTIONS(2020), + [aux_sym_cmd_identifier_token24] = ACTIONS(2020), + [aux_sym_cmd_identifier_token25] = ACTIONS(2020), + [aux_sym_cmd_identifier_token26] = ACTIONS(2020), + [aux_sym_cmd_identifier_token27] = ACTIONS(2020), + [aux_sym_cmd_identifier_token28] = ACTIONS(2020), + [aux_sym_cmd_identifier_token29] = ACTIONS(2020), + [aux_sym_cmd_identifier_token30] = ACTIONS(2020), + [aux_sym_cmd_identifier_token31] = ACTIONS(2020), + [aux_sym_cmd_identifier_token32] = ACTIONS(2020), + [aux_sym_cmd_identifier_token33] = ACTIONS(2020), + [aux_sym_cmd_identifier_token34] = ACTIONS(2020), + [aux_sym_cmd_identifier_token35] = ACTIONS(2020), + [aux_sym_cmd_identifier_token36] = ACTIONS(2020), + [aux_sym_cmd_identifier_token37] = ACTIONS(2020), + [aux_sym_cmd_identifier_token38] = ACTIONS(2020), + [aux_sym_cmd_identifier_token39] = ACTIONS(2020), + [aux_sym_cmd_identifier_token40] = ACTIONS(2020), + [anon_sym_def] = ACTIONS(2020), + [anon_sym_export_DASHenv] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym_module] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2020), + [anon_sym_COMMA] = ACTIONS(2020), + [anon_sym_DOLLAR] = ACTIONS(2020), + [anon_sym_error] = ACTIONS(2020), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_in2] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_make] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2020), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_catch] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_source] = ACTIONS(2020), + [anon_sym_source_DASHenv] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_hide] = ACTIONS(2020), + [anon_sym_hide_DASHenv] = ACTIONS(2020), + [anon_sym_overlay] = ACTIONS(2020), + [anon_sym_as] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2020), + [aux_sym__val_number_decimal_token1] = ACTIONS(2020), + [aux_sym__val_number_decimal_token2] = ACTIONS(2020), + [aux_sym__val_number_decimal_token3] = ACTIONS(2020), + [aux_sym__val_number_decimal_token4] = ACTIONS(2020), + [aux_sym__val_number_token1] = ACTIONS(2020), + [aux_sym__val_number_token2] = ACTIONS(2020), + [aux_sym__val_number_token3] = ACTIONS(2020), + [aux_sym__val_number_token4] = ACTIONS(2020), + [aux_sym__val_number_token5] = ACTIONS(2020), + [aux_sym__val_number_token6] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2020), + [sym__str_single_quotes] = ACTIONS(2020), + [sym__str_back_ticks] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2020), + [sym__entry_separator] = ACTIONS(2022), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2022), + }, + [432] = { + [sym_cell_path] = STATE(659), + [sym_path] = STATE(556), + [sym_comment] = STATE(432), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(2024), + [anon_sym_alias] = ACTIONS(2024), + [anon_sym_let] = ACTIONS(2024), + [anon_sym_let_DASHenv] = ACTIONS(2024), + [anon_sym_mut] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [aux_sym_cmd_identifier_token1] = ACTIONS(2024), + [aux_sym_cmd_identifier_token2] = ACTIONS(2024), + [aux_sym_cmd_identifier_token3] = ACTIONS(2024), + [aux_sym_cmd_identifier_token4] = ACTIONS(2024), + [aux_sym_cmd_identifier_token5] = ACTIONS(2024), + [aux_sym_cmd_identifier_token6] = ACTIONS(2024), + [aux_sym_cmd_identifier_token7] = ACTIONS(2024), + [aux_sym_cmd_identifier_token8] = ACTIONS(2024), + [aux_sym_cmd_identifier_token9] = ACTIONS(2024), + [aux_sym_cmd_identifier_token10] = ACTIONS(2024), + [aux_sym_cmd_identifier_token11] = ACTIONS(2024), + [aux_sym_cmd_identifier_token12] = ACTIONS(2024), + [aux_sym_cmd_identifier_token13] = ACTIONS(2024), + [aux_sym_cmd_identifier_token14] = ACTIONS(2024), + [aux_sym_cmd_identifier_token15] = ACTIONS(2024), + [aux_sym_cmd_identifier_token16] = ACTIONS(2024), + [aux_sym_cmd_identifier_token17] = ACTIONS(2024), + [aux_sym_cmd_identifier_token18] = ACTIONS(2024), + [aux_sym_cmd_identifier_token19] = ACTIONS(2024), + [aux_sym_cmd_identifier_token20] = ACTIONS(2024), + [aux_sym_cmd_identifier_token21] = ACTIONS(2024), + [aux_sym_cmd_identifier_token22] = ACTIONS(2024), + [aux_sym_cmd_identifier_token23] = ACTIONS(2024), + [aux_sym_cmd_identifier_token24] = ACTIONS(2024), + [aux_sym_cmd_identifier_token25] = ACTIONS(2024), + [aux_sym_cmd_identifier_token26] = ACTIONS(2024), + [aux_sym_cmd_identifier_token27] = ACTIONS(2024), + [aux_sym_cmd_identifier_token28] = ACTIONS(2024), + [aux_sym_cmd_identifier_token29] = ACTIONS(2024), + [aux_sym_cmd_identifier_token30] = ACTIONS(2024), + [aux_sym_cmd_identifier_token31] = ACTIONS(2024), + [aux_sym_cmd_identifier_token32] = ACTIONS(2024), + [aux_sym_cmd_identifier_token33] = ACTIONS(2024), + [aux_sym_cmd_identifier_token34] = ACTIONS(2024), + [aux_sym_cmd_identifier_token35] = ACTIONS(2024), + [aux_sym_cmd_identifier_token36] = ACTIONS(2024), + [aux_sym_cmd_identifier_token37] = ACTIONS(2024), + [aux_sym_cmd_identifier_token38] = ACTIONS(2024), + [aux_sym_cmd_identifier_token39] = ACTIONS(2024), + [aux_sym_cmd_identifier_token40] = ACTIONS(2024), + [anon_sym_def] = ACTIONS(2024), + [anon_sym_export_DASHenv] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_module] = ACTIONS(2024), + [anon_sym_use] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2024), + [anon_sym_COMMA] = ACTIONS(2024), + [anon_sym_DOLLAR] = ACTIONS(2024), + [anon_sym_error] = ACTIONS(2024), + [anon_sym_DASH2] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_in2] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_make] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2024), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_catch] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_source] = ACTIONS(2024), + [anon_sym_source_DASHenv] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_hide] = ACTIONS(2024), + [anon_sym_hide_DASHenv] = ACTIONS(2024), + [anon_sym_overlay] = ACTIONS(2024), + [anon_sym_as] = ACTIONS(2024), + [anon_sym_PLUS2] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2024), + [aux_sym__val_number_decimal_token1] = ACTIONS(2024), + [aux_sym__val_number_decimal_token2] = ACTIONS(2024), + [aux_sym__val_number_decimal_token3] = ACTIONS(2024), + [aux_sym__val_number_decimal_token4] = ACTIONS(2024), + [aux_sym__val_number_token1] = ACTIONS(2024), + [aux_sym__val_number_token2] = ACTIONS(2024), + [aux_sym__val_number_token3] = ACTIONS(2024), + [aux_sym__val_number_token4] = ACTIONS(2024), + [aux_sym__val_number_token5] = ACTIONS(2024), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2024), + [sym__str_single_quotes] = ACTIONS(2024), + [sym__str_back_ticks] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2024), + [sym__entry_separator] = ACTIONS(2026), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2026), + }, + [433] = { + [sym_cell_path] = STATE(641), + [sym_path] = STATE(556), + [sym_comment] = STATE(433), + [aux_sym_cell_path_repeat1] = STATE(450), + [anon_sym_export] = ACTIONS(2028), + [anon_sym_alias] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_let_DASHenv] = ACTIONS(2028), + [anon_sym_mut] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [aux_sym_cmd_identifier_token1] = ACTIONS(2028), + [aux_sym_cmd_identifier_token2] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2028), + [aux_sym_cmd_identifier_token4] = ACTIONS(2028), + [aux_sym_cmd_identifier_token5] = ACTIONS(2028), + [aux_sym_cmd_identifier_token6] = ACTIONS(2028), + [aux_sym_cmd_identifier_token7] = ACTIONS(2028), + [aux_sym_cmd_identifier_token8] = ACTIONS(2028), + [aux_sym_cmd_identifier_token9] = ACTIONS(2028), + [aux_sym_cmd_identifier_token10] = ACTIONS(2028), + [aux_sym_cmd_identifier_token11] = ACTIONS(2028), + [aux_sym_cmd_identifier_token12] = ACTIONS(2028), + [aux_sym_cmd_identifier_token13] = ACTIONS(2028), + [aux_sym_cmd_identifier_token14] = ACTIONS(2028), + [aux_sym_cmd_identifier_token15] = ACTIONS(2028), + [aux_sym_cmd_identifier_token16] = ACTIONS(2028), + [aux_sym_cmd_identifier_token17] = ACTIONS(2028), + [aux_sym_cmd_identifier_token18] = ACTIONS(2028), + [aux_sym_cmd_identifier_token19] = ACTIONS(2028), + [aux_sym_cmd_identifier_token20] = ACTIONS(2028), + [aux_sym_cmd_identifier_token21] = ACTIONS(2028), + [aux_sym_cmd_identifier_token22] = ACTIONS(2028), + [aux_sym_cmd_identifier_token23] = ACTIONS(2028), + [aux_sym_cmd_identifier_token24] = ACTIONS(2028), + [aux_sym_cmd_identifier_token25] = ACTIONS(2028), + [aux_sym_cmd_identifier_token26] = ACTIONS(2028), + [aux_sym_cmd_identifier_token27] = ACTIONS(2028), + [aux_sym_cmd_identifier_token28] = ACTIONS(2028), + [aux_sym_cmd_identifier_token29] = ACTIONS(2028), + [aux_sym_cmd_identifier_token30] = ACTIONS(2028), + [aux_sym_cmd_identifier_token31] = ACTIONS(2028), + [aux_sym_cmd_identifier_token32] = ACTIONS(2028), + [aux_sym_cmd_identifier_token33] = ACTIONS(2028), + [aux_sym_cmd_identifier_token34] = ACTIONS(2028), + [aux_sym_cmd_identifier_token35] = ACTIONS(2028), + [aux_sym_cmd_identifier_token36] = ACTIONS(2028), + [aux_sym_cmd_identifier_token37] = ACTIONS(2028), + [aux_sym_cmd_identifier_token38] = ACTIONS(2028), + [aux_sym_cmd_identifier_token39] = ACTIONS(2028), + [aux_sym_cmd_identifier_token40] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2028), + [anon_sym_export_DASHenv] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_module] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_error] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_make] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_catch] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_source] = ACTIONS(2028), + [anon_sym_source_DASHenv] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_hide] = ACTIONS(2028), + [anon_sym_hide_DASHenv] = ACTIONS(2028), + [anon_sym_overlay] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2028), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), + [sym__entry_separator] = ACTIONS(2030), + [anon_sym_DOT2] = ACTIONS(1829), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2030), + }, + [434] = { + [sym_comment] = STATE(434), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [435] = { + [sym_cell_path] = STATE(736), + [sym_path] = STATE(549), + [sym_comment] = STATE(435), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1873), + [aux_sym_cmd_identifier_token3] = ACTIONS(1873), + [aux_sym_cmd_identifier_token4] = ACTIONS(1873), + [aux_sym_cmd_identifier_token5] = ACTIONS(1873), + [aux_sym_cmd_identifier_token6] = ACTIONS(1873), + [aux_sym_cmd_identifier_token7] = ACTIONS(1873), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1873), + [aux_sym_cmd_identifier_token11] = ACTIONS(1873), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1873), + [aux_sym_cmd_identifier_token17] = ACTIONS(1873), + [aux_sym_cmd_identifier_token18] = ACTIONS(1873), + [aux_sym_cmd_identifier_token19] = ACTIONS(1873), + [aux_sym_cmd_identifier_token20] = ACTIONS(1873), + [aux_sym_cmd_identifier_token21] = ACTIONS(1873), + [aux_sym_cmd_identifier_token22] = ACTIONS(1873), + [aux_sym_cmd_identifier_token23] = ACTIONS(1873), + [aux_sym_cmd_identifier_token24] = ACTIONS(1873), + [aux_sym_cmd_identifier_token25] = ACTIONS(1873), + [aux_sym_cmd_identifier_token26] = ACTIONS(1873), + [aux_sym_cmd_identifier_token27] = ACTIONS(1873), + [aux_sym_cmd_identifier_token28] = ACTIONS(1873), + [aux_sym_cmd_identifier_token29] = ACTIONS(1873), + [aux_sym_cmd_identifier_token30] = ACTIONS(1873), + [aux_sym_cmd_identifier_token31] = ACTIONS(1873), + [aux_sym_cmd_identifier_token32] = ACTIONS(1873), + [aux_sym_cmd_identifier_token33] = ACTIONS(1873), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1873), + [aux_sym_cmd_identifier_token36] = ACTIONS(1873), + [aux_sym_cmd_identifier_token37] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1873), + }, + [436] = { + [sym_path] = STATE(549), + [sym_comment] = STATE(436), + [aux_sym_cell_path_repeat1] = STATE(437), + [anon_sym_export] = ACTIONS(948), + [anon_sym_alias] = ACTIONS(948), + [anon_sym_let] = ACTIONS(948), + [anon_sym_let_DASHenv] = ACTIONS(948), + [anon_sym_mut] = ACTIONS(948), + [anon_sym_const] = ACTIONS(948), + [aux_sym_cmd_identifier_token1] = ACTIONS(948), + [aux_sym_cmd_identifier_token2] = ACTIONS(950), + [aux_sym_cmd_identifier_token3] = ACTIONS(950), + [aux_sym_cmd_identifier_token4] = ACTIONS(950), + [aux_sym_cmd_identifier_token5] = ACTIONS(950), + [aux_sym_cmd_identifier_token6] = ACTIONS(950), + [aux_sym_cmd_identifier_token7] = ACTIONS(950), + [aux_sym_cmd_identifier_token8] = ACTIONS(948), + [aux_sym_cmd_identifier_token9] = ACTIONS(948), + [aux_sym_cmd_identifier_token10] = ACTIONS(950), + [aux_sym_cmd_identifier_token11] = ACTIONS(950), + [aux_sym_cmd_identifier_token12] = ACTIONS(948), + [aux_sym_cmd_identifier_token13] = ACTIONS(948), + [aux_sym_cmd_identifier_token14] = ACTIONS(948), + [aux_sym_cmd_identifier_token15] = ACTIONS(948), + [aux_sym_cmd_identifier_token16] = ACTIONS(950), + [aux_sym_cmd_identifier_token17] = ACTIONS(950), + [aux_sym_cmd_identifier_token18] = ACTIONS(950), + [aux_sym_cmd_identifier_token19] = ACTIONS(950), + [aux_sym_cmd_identifier_token20] = ACTIONS(950), + [aux_sym_cmd_identifier_token21] = ACTIONS(950), + [aux_sym_cmd_identifier_token22] = ACTIONS(950), + [aux_sym_cmd_identifier_token23] = ACTIONS(950), + [aux_sym_cmd_identifier_token24] = ACTIONS(950), + [aux_sym_cmd_identifier_token25] = ACTIONS(950), + [aux_sym_cmd_identifier_token26] = ACTIONS(950), + [aux_sym_cmd_identifier_token27] = ACTIONS(950), + [aux_sym_cmd_identifier_token28] = ACTIONS(950), + [aux_sym_cmd_identifier_token29] = ACTIONS(950), + [aux_sym_cmd_identifier_token30] = ACTIONS(950), + [aux_sym_cmd_identifier_token31] = ACTIONS(950), + [aux_sym_cmd_identifier_token32] = ACTIONS(950), + [aux_sym_cmd_identifier_token33] = ACTIONS(950), + [aux_sym_cmd_identifier_token34] = ACTIONS(948), + [aux_sym_cmd_identifier_token35] = ACTIONS(950), + [aux_sym_cmd_identifier_token36] = ACTIONS(950), + [aux_sym_cmd_identifier_token37] = ACTIONS(950), + [aux_sym_cmd_identifier_token38] = ACTIONS(948), + [aux_sym_cmd_identifier_token39] = ACTIONS(950), + [aux_sym_cmd_identifier_token40] = ACTIONS(950), + [anon_sym_def] = ACTIONS(948), + [anon_sym_export_DASHenv] = ACTIONS(948), + [anon_sym_extern] = ACTIONS(948), + [anon_sym_module] = ACTIONS(948), + [anon_sym_use] = ACTIONS(948), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_COMMA] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(950), + [anon_sym_error] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_break] = ACTIONS(948), + [anon_sym_continue] = ACTIONS(948), + [anon_sym_for] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(948), + [anon_sym_loop] = ACTIONS(948), + [anon_sym_make] = ACTIONS(948), + [anon_sym_while] = ACTIONS(948), + [anon_sym_do] = ACTIONS(948), + [anon_sym_if] = ACTIONS(948), + [anon_sym_else] = ACTIONS(948), + [anon_sym_match] = ACTIONS(948), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_try] = ACTIONS(948), + [anon_sym_catch] = ACTIONS(948), + [anon_sym_return] = ACTIONS(948), + [anon_sym_source] = ACTIONS(948), + [anon_sym_source_DASHenv] = ACTIONS(948), + [anon_sym_register] = ACTIONS(948), + [anon_sym_hide] = ACTIONS(948), + [anon_sym_hide_DASHenv] = ACTIONS(948), + [anon_sym_overlay] = ACTIONS(948), + [anon_sym_as] = ACTIONS(948), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(948), + [aux_sym__val_number_token5] = ACTIONS(948), + [aux_sym__val_number_token6] = ACTIONS(948), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [437] = { + [sym_path] = STATE(549), + [sym_comment] = STATE(437), + [aux_sym_cell_path_repeat1] = STATE(437), + [anon_sym_export] = ACTIONS(941), + [anon_sym_alias] = ACTIONS(941), + [anon_sym_let] = ACTIONS(941), + [anon_sym_let_DASHenv] = ACTIONS(941), + [anon_sym_mut] = ACTIONS(941), + [anon_sym_const] = ACTIONS(941), + [aux_sym_cmd_identifier_token1] = ACTIONS(941), + [aux_sym_cmd_identifier_token2] = ACTIONS(943), + [aux_sym_cmd_identifier_token3] = ACTIONS(943), + [aux_sym_cmd_identifier_token4] = ACTIONS(943), + [aux_sym_cmd_identifier_token5] = ACTIONS(943), + [aux_sym_cmd_identifier_token6] = ACTIONS(943), + [aux_sym_cmd_identifier_token7] = ACTIONS(943), + [aux_sym_cmd_identifier_token8] = ACTIONS(941), + [aux_sym_cmd_identifier_token9] = ACTIONS(941), + [aux_sym_cmd_identifier_token10] = ACTIONS(943), + [aux_sym_cmd_identifier_token11] = ACTIONS(943), + [aux_sym_cmd_identifier_token12] = ACTIONS(941), + [aux_sym_cmd_identifier_token13] = ACTIONS(941), + [aux_sym_cmd_identifier_token14] = ACTIONS(941), + [aux_sym_cmd_identifier_token15] = ACTIONS(941), + [aux_sym_cmd_identifier_token16] = ACTIONS(943), + [aux_sym_cmd_identifier_token17] = ACTIONS(943), + [aux_sym_cmd_identifier_token18] = ACTIONS(943), + [aux_sym_cmd_identifier_token19] = ACTIONS(943), + [aux_sym_cmd_identifier_token20] = ACTIONS(943), + [aux_sym_cmd_identifier_token21] = ACTIONS(943), + [aux_sym_cmd_identifier_token22] = ACTIONS(943), + [aux_sym_cmd_identifier_token23] = ACTIONS(943), + [aux_sym_cmd_identifier_token24] = ACTIONS(943), + [aux_sym_cmd_identifier_token25] = ACTIONS(943), + [aux_sym_cmd_identifier_token26] = ACTIONS(943), + [aux_sym_cmd_identifier_token27] = ACTIONS(943), + [aux_sym_cmd_identifier_token28] = ACTIONS(943), + [aux_sym_cmd_identifier_token29] = ACTIONS(943), + [aux_sym_cmd_identifier_token30] = ACTIONS(943), + [aux_sym_cmd_identifier_token31] = ACTIONS(943), + [aux_sym_cmd_identifier_token32] = ACTIONS(943), + [aux_sym_cmd_identifier_token33] = ACTIONS(943), + [aux_sym_cmd_identifier_token34] = ACTIONS(941), + [aux_sym_cmd_identifier_token35] = ACTIONS(943), + [aux_sym_cmd_identifier_token36] = ACTIONS(943), + [aux_sym_cmd_identifier_token37] = ACTIONS(943), + [aux_sym_cmd_identifier_token38] = ACTIONS(941), + [aux_sym_cmd_identifier_token39] = ACTIONS(943), + [aux_sym_cmd_identifier_token40] = ACTIONS(943), + [anon_sym_def] = ACTIONS(941), + [anon_sym_export_DASHenv] = ACTIONS(941), + [anon_sym_extern] = ACTIONS(941), + [anon_sym_module] = ACTIONS(941), + [anon_sym_use] = ACTIONS(941), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_COMMA] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(943), + [anon_sym_error] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_break] = ACTIONS(941), + [anon_sym_continue] = ACTIONS(941), + [anon_sym_for] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(941), + [anon_sym_loop] = ACTIONS(941), + [anon_sym_make] = ACTIONS(941), + [anon_sym_while] = ACTIONS(941), + [anon_sym_do] = ACTIONS(941), + [anon_sym_if] = ACTIONS(941), + [anon_sym_else] = ACTIONS(941), + [anon_sym_match] = ACTIONS(941), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_try] = ACTIONS(941), + [anon_sym_catch] = ACTIONS(941), + [anon_sym_return] = ACTIONS(941), + [anon_sym_source] = ACTIONS(941), + [anon_sym_source_DASHenv] = ACTIONS(941), + [anon_sym_register] = ACTIONS(941), + [anon_sym_hide] = ACTIONS(941), + [anon_sym_hide_DASHenv] = ACTIONS(941), + [anon_sym_overlay] = ACTIONS(941), + [anon_sym_as] = ACTIONS(941), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(941), + [aux_sym__val_number_token5] = ACTIONS(941), + [aux_sym__val_number_token6] = ACTIONS(941), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(2032), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [431] = { - [sym_cell_path] = STATE(674), - [sym_path] = STATE(557), - [sym_comment] = STATE(431), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2013), - [anon_sym_alias] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_let_DASHenv] = ACTIONS(2013), - [anon_sym_mut] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [aux_sym_cmd_identifier_token1] = ACTIONS(2013), - [aux_sym_cmd_identifier_token2] = ACTIONS(2013), - [aux_sym_cmd_identifier_token3] = ACTIONS(2013), - [aux_sym_cmd_identifier_token4] = ACTIONS(2013), - [aux_sym_cmd_identifier_token5] = ACTIONS(2013), - [aux_sym_cmd_identifier_token6] = ACTIONS(2013), - [aux_sym_cmd_identifier_token7] = ACTIONS(2013), - [aux_sym_cmd_identifier_token8] = ACTIONS(2013), - [aux_sym_cmd_identifier_token9] = ACTIONS(2013), - [aux_sym_cmd_identifier_token10] = ACTIONS(2013), - [aux_sym_cmd_identifier_token11] = ACTIONS(2013), - [aux_sym_cmd_identifier_token12] = ACTIONS(2013), - [aux_sym_cmd_identifier_token13] = ACTIONS(2013), - [aux_sym_cmd_identifier_token14] = ACTIONS(2013), - [aux_sym_cmd_identifier_token15] = ACTIONS(2013), - [aux_sym_cmd_identifier_token16] = ACTIONS(2013), - [aux_sym_cmd_identifier_token17] = ACTIONS(2013), - [aux_sym_cmd_identifier_token18] = ACTIONS(2013), - [aux_sym_cmd_identifier_token19] = ACTIONS(2013), - [aux_sym_cmd_identifier_token20] = ACTIONS(2013), - [aux_sym_cmd_identifier_token21] = ACTIONS(2013), - [aux_sym_cmd_identifier_token22] = ACTIONS(2013), - [aux_sym_cmd_identifier_token23] = ACTIONS(2013), - [aux_sym_cmd_identifier_token24] = ACTIONS(2013), - [aux_sym_cmd_identifier_token25] = ACTIONS(2013), - [aux_sym_cmd_identifier_token26] = ACTIONS(2013), - [aux_sym_cmd_identifier_token27] = ACTIONS(2013), - [aux_sym_cmd_identifier_token28] = ACTIONS(2013), - [aux_sym_cmd_identifier_token29] = ACTIONS(2013), - [aux_sym_cmd_identifier_token30] = ACTIONS(2013), - [aux_sym_cmd_identifier_token31] = ACTIONS(2013), - [aux_sym_cmd_identifier_token32] = ACTIONS(2013), - [aux_sym_cmd_identifier_token33] = ACTIONS(2013), - [aux_sym_cmd_identifier_token34] = ACTIONS(2013), - [aux_sym_cmd_identifier_token35] = ACTIONS(2013), - [aux_sym_cmd_identifier_token36] = ACTIONS(2013), - [aux_sym_cmd_identifier_token37] = ACTIONS(2013), - [aux_sym_cmd_identifier_token38] = ACTIONS(2013), - [aux_sym_cmd_identifier_token39] = ACTIONS(2013), - [aux_sym_cmd_identifier_token40] = ACTIONS(2013), - [anon_sym_def] = ACTIONS(2013), - [anon_sym_export_DASHenv] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_module] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2013), - [anon_sym_DOLLAR] = ACTIONS(2013), - [anon_sym_error] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_in2] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_make] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2013), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_source] = ACTIONS(2013), - [anon_sym_source_DASHenv] = ACTIONS(2013), - [anon_sym_register] = ACTIONS(2013), - [anon_sym_hide] = ACTIONS(2013), - [anon_sym_hide_DASHenv] = ACTIONS(2013), - [anon_sym_overlay] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(2013), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2013), - [aux_sym__val_number_decimal_token1] = ACTIONS(2013), - [aux_sym__val_number_decimal_token2] = ACTIONS(2013), - [aux_sym__val_number_decimal_token3] = ACTIONS(2013), - [aux_sym__val_number_decimal_token4] = ACTIONS(2013), - [aux_sym__val_number_token1] = ACTIONS(2013), - [aux_sym__val_number_token2] = ACTIONS(2013), - [aux_sym__val_number_token3] = ACTIONS(2013), - [aux_sym__val_number_token4] = ACTIONS(2013), - [aux_sym__val_number_token5] = ACTIONS(2013), - [aux_sym__val_number_token6] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2013), - [sym__str_single_quotes] = ACTIONS(2013), - [sym__str_back_ticks] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2013), - [sym__entry_separator] = ACTIONS(2015), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2015), - }, - [432] = { - [sym_cell_path] = STATE(683), - [sym_path] = STATE(557), - [sym_comment] = STATE(432), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2017), - [aux_sym_cmd_identifier_token3] = ACTIONS(2017), - [aux_sym_cmd_identifier_token4] = ACTIONS(2017), - [aux_sym_cmd_identifier_token5] = ACTIONS(2017), - [aux_sym_cmd_identifier_token6] = ACTIONS(2017), - [aux_sym_cmd_identifier_token7] = ACTIONS(2017), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2017), - [aux_sym_cmd_identifier_token11] = ACTIONS(2017), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2017), - [aux_sym_cmd_identifier_token17] = ACTIONS(2017), - [aux_sym_cmd_identifier_token18] = ACTIONS(2017), - [aux_sym_cmd_identifier_token19] = ACTIONS(2017), - [aux_sym_cmd_identifier_token20] = ACTIONS(2017), - [aux_sym_cmd_identifier_token21] = ACTIONS(2017), - [aux_sym_cmd_identifier_token22] = ACTIONS(2017), - [aux_sym_cmd_identifier_token23] = ACTIONS(2017), - [aux_sym_cmd_identifier_token24] = ACTIONS(2017), - [aux_sym_cmd_identifier_token25] = ACTIONS(2017), - [aux_sym_cmd_identifier_token26] = ACTIONS(2017), - [aux_sym_cmd_identifier_token27] = ACTIONS(2017), - [aux_sym_cmd_identifier_token28] = ACTIONS(2017), - [aux_sym_cmd_identifier_token29] = ACTIONS(2017), - [aux_sym_cmd_identifier_token30] = ACTIONS(2017), - [aux_sym_cmd_identifier_token31] = ACTIONS(2017), - [aux_sym_cmd_identifier_token32] = ACTIONS(2017), - [aux_sym_cmd_identifier_token33] = ACTIONS(2017), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2017), - [aux_sym_cmd_identifier_token36] = ACTIONS(2017), - [aux_sym_cmd_identifier_token37] = ACTIONS(2017), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2017), - [aux_sym_cmd_identifier_token40] = ACTIONS(2017), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2017), - [anon_sym_DOLLAR] = ACTIONS(2017), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2017), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2017), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2017), - [aux_sym__val_number_decimal_token3] = ACTIONS(2017), - [aux_sym__val_number_decimal_token4] = ACTIONS(2017), - [aux_sym__val_number_token1] = ACTIONS(2017), - [aux_sym__val_number_token2] = ACTIONS(2017), - [aux_sym__val_number_token3] = ACTIONS(2017), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2017), - [sym__str_single_quotes] = ACTIONS(2017), - [sym__str_back_ticks] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2017), - [sym__entry_separator] = ACTIONS(2019), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2019), - }, - [433] = { - [sym_cell_path] = STATE(684), - [sym_path] = STATE(557), - [sym_comment] = STATE(433), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2021), - [anon_sym_alias] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_let_DASHenv] = ACTIONS(2021), - [anon_sym_mut] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [aux_sym_cmd_identifier_token1] = ACTIONS(2021), - [aux_sym_cmd_identifier_token2] = ACTIONS(2021), - [aux_sym_cmd_identifier_token3] = ACTIONS(2021), - [aux_sym_cmd_identifier_token4] = ACTIONS(2021), - [aux_sym_cmd_identifier_token5] = ACTIONS(2021), - [aux_sym_cmd_identifier_token6] = ACTIONS(2021), - [aux_sym_cmd_identifier_token7] = ACTIONS(2021), - [aux_sym_cmd_identifier_token8] = ACTIONS(2021), - [aux_sym_cmd_identifier_token9] = ACTIONS(2021), - [aux_sym_cmd_identifier_token10] = ACTIONS(2021), - [aux_sym_cmd_identifier_token11] = ACTIONS(2021), - [aux_sym_cmd_identifier_token12] = ACTIONS(2021), - [aux_sym_cmd_identifier_token13] = ACTIONS(2021), - [aux_sym_cmd_identifier_token14] = ACTIONS(2021), - [aux_sym_cmd_identifier_token15] = ACTIONS(2021), - [aux_sym_cmd_identifier_token16] = ACTIONS(2021), - [aux_sym_cmd_identifier_token17] = ACTIONS(2021), - [aux_sym_cmd_identifier_token18] = ACTIONS(2021), - [aux_sym_cmd_identifier_token19] = ACTIONS(2021), - [aux_sym_cmd_identifier_token20] = ACTIONS(2021), - [aux_sym_cmd_identifier_token21] = ACTIONS(2021), - [aux_sym_cmd_identifier_token22] = ACTIONS(2021), - [aux_sym_cmd_identifier_token23] = ACTIONS(2021), - [aux_sym_cmd_identifier_token24] = ACTIONS(2021), - [aux_sym_cmd_identifier_token25] = ACTIONS(2021), - [aux_sym_cmd_identifier_token26] = ACTIONS(2021), - [aux_sym_cmd_identifier_token27] = ACTIONS(2021), - [aux_sym_cmd_identifier_token28] = ACTIONS(2021), - [aux_sym_cmd_identifier_token29] = ACTIONS(2021), - [aux_sym_cmd_identifier_token30] = ACTIONS(2021), - [aux_sym_cmd_identifier_token31] = ACTIONS(2021), - [aux_sym_cmd_identifier_token32] = ACTIONS(2021), - [aux_sym_cmd_identifier_token33] = ACTIONS(2021), - [aux_sym_cmd_identifier_token34] = ACTIONS(2021), - [aux_sym_cmd_identifier_token35] = ACTIONS(2021), - [aux_sym_cmd_identifier_token36] = ACTIONS(2021), - [aux_sym_cmd_identifier_token37] = ACTIONS(2021), - [aux_sym_cmd_identifier_token38] = ACTIONS(2021), - [aux_sym_cmd_identifier_token39] = ACTIONS(2021), - [aux_sym_cmd_identifier_token40] = ACTIONS(2021), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_export_DASHenv] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_module] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2021), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_error] = ACTIONS(2021), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_in2] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_make] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_else] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2021), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_catch] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_source] = ACTIONS(2021), - [anon_sym_source_DASHenv] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2021), - [anon_sym_hide] = ACTIONS(2021), - [anon_sym_hide_DASHenv] = ACTIONS(2021), - [anon_sym_overlay] = ACTIONS(2021), - [anon_sym_as] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2021), - [aux_sym__val_number_decimal_token1] = ACTIONS(2021), - [aux_sym__val_number_decimal_token2] = ACTIONS(2021), - [aux_sym__val_number_decimal_token3] = ACTIONS(2021), - [aux_sym__val_number_decimal_token4] = ACTIONS(2021), - [aux_sym__val_number_token1] = ACTIONS(2021), - [aux_sym__val_number_token2] = ACTIONS(2021), - [aux_sym__val_number_token3] = ACTIONS(2021), - [aux_sym__val_number_token4] = ACTIONS(2021), - [aux_sym__val_number_token5] = ACTIONS(2021), - [aux_sym__val_number_token6] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2021), - [sym__str_single_quotes] = ACTIONS(2021), - [sym__str_back_ticks] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2021), - [sym__entry_separator] = ACTIONS(2023), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2023), + [sym_raw_string_begin] = ACTIONS(943), }, - [434] = { - [sym_cell_path] = STATE(644), - [sym_path] = STATE(557), - [sym_comment] = STATE(434), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2025), - [aux_sym_cmd_identifier_token3] = ACTIONS(2025), - [aux_sym_cmd_identifier_token4] = ACTIONS(2025), - [aux_sym_cmd_identifier_token5] = ACTIONS(2025), - [aux_sym_cmd_identifier_token6] = ACTIONS(2025), - [aux_sym_cmd_identifier_token7] = ACTIONS(2025), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2025), - [aux_sym_cmd_identifier_token11] = ACTIONS(2025), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2025), - [aux_sym_cmd_identifier_token17] = ACTIONS(2025), - [aux_sym_cmd_identifier_token18] = ACTIONS(2025), - [aux_sym_cmd_identifier_token19] = ACTIONS(2025), - [aux_sym_cmd_identifier_token20] = ACTIONS(2025), - [aux_sym_cmd_identifier_token21] = ACTIONS(2025), - [aux_sym_cmd_identifier_token22] = ACTIONS(2025), - [aux_sym_cmd_identifier_token23] = ACTIONS(2025), - [aux_sym_cmd_identifier_token24] = ACTIONS(2025), - [aux_sym_cmd_identifier_token25] = ACTIONS(2025), - [aux_sym_cmd_identifier_token26] = ACTIONS(2025), - [aux_sym_cmd_identifier_token27] = ACTIONS(2025), - [aux_sym_cmd_identifier_token28] = ACTIONS(2025), - [aux_sym_cmd_identifier_token29] = ACTIONS(2025), - [aux_sym_cmd_identifier_token30] = ACTIONS(2025), - [aux_sym_cmd_identifier_token31] = ACTIONS(2025), - [aux_sym_cmd_identifier_token32] = ACTIONS(2025), - [aux_sym_cmd_identifier_token33] = ACTIONS(2025), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2025), - [aux_sym_cmd_identifier_token36] = ACTIONS(2025), - [aux_sym_cmd_identifier_token37] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [sym__entry_separator] = ACTIONS(2027), - [anon_sym_DOT2] = ACTIONS(1898), + [438] = { + [sym_comment] = STATE(438), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [aux_sym_cmd_identifier_token37] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_COMMA] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in2] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [sym__entry_separator] = ACTIONS(2037), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2027), + [sym_raw_string_begin] = ACTIONS(2037), }, - [435] = { - [sym_expr_parenthesized] = STATE(4195), - [sym__spread_parenthesized] = STATE(4651), - [sym_val_range] = STATE(4633), - [sym__val_range] = STATE(7666), - [sym__val_range_with_end] = STATE(7264), - [sym__value] = STATE(4633), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4379), - [sym__spread_variable] = STATE(4656), - [sym_val_variable] = STATE(4206), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3864), - [sym__val_number] = STATE(4579), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(3997), - [sym__str_double_quotes] = STATE(3997), - [sym_val_interpolated] = STATE(4663), - [sym__inter_single_quotes] = STATE(4562), - [sym__inter_double_quotes] = STATE(4658), - [sym_val_list] = STATE(4663), - [sym__spread_list] = STATE(4651), - [sym_val_record] = STATE(4663), - [sym_val_table] = STATE(4663), - [sym_val_closure] = STATE(4663), - [sym__cmd_arg] = STATE(4664), - [sym_redirection] = STATE(4670), - [sym__flag] = STATE(4674), - [sym_short_flag] = STATE(4774), - [sym_long_flag] = STATE(4774), - [sym_unquoted] = STATE(4320), - [sym__unquoted_with_expr] = STATE(4721), - [sym__unquoted_anonymous_prefix] = STATE(6761), - [sym_comment] = STATE(435), - [ts_builtin_sym_end] = ACTIONS(1892), - [sym__newline] = ACTIONS(1801), - [sym__space] = ACTIONS(1892), - [anon_sym_SEMI] = ACTIONS(1801), - [anon_sym_PIPE] = ACTIONS(1801), - [anon_sym_err_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_GT_PIPE] = ACTIONS(1801), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), - [anon_sym_LBRACK] = ACTIONS(2029), - [anon_sym_LPAREN] = ACTIONS(2031), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_DASH_DASH] = ACTIONS(2035), - [anon_sym_DASH2] = ACTIONS(2037), - [anon_sym_LBRACE] = ACTIONS(2039), - [anon_sym_DOT_DOT] = ACTIONS(2041), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2045), - [anon_sym_DOT_DOT_LT] = ACTIONS(2045), - [anon_sym_null] = ACTIONS(2047), - [anon_sym_true] = ACTIONS(2049), - [anon_sym_false] = ACTIONS(2049), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2051), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(2053), - [aux_sym__val_number_decimal_token3] = ACTIONS(2055), - [aux_sym__val_number_decimal_token4] = ACTIONS(2057), - [aux_sym__val_number_token1] = ACTIONS(2059), - [aux_sym__val_number_token2] = ACTIONS(2059), - [aux_sym__val_number_token3] = ACTIONS(2059), - [aux_sym__val_number_token4] = ACTIONS(2061), - [aux_sym__val_number_token5] = ACTIONS(2061), - [aux_sym__val_number_token6] = ACTIONS(2061), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2065), - [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(2067), - [anon_sym_DQUOTE] = ACTIONS(2069), - [sym__str_single_quotes] = ACTIONS(2071), - [sym__str_back_ticks] = ACTIONS(2071), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2073), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2075), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2077), - [anon_sym_err_GT] = ACTIONS(2079), - [anon_sym_out_GT] = ACTIONS(2079), - [anon_sym_e_GT] = ACTIONS(2079), - [anon_sym_o_GT] = ACTIONS(2079), - [anon_sym_err_PLUSout_GT] = ACTIONS(2079), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2079), - [anon_sym_o_PLUSe_GT] = ACTIONS(2079), - [anon_sym_e_PLUSo_GT] = ACTIONS(2079), - [anon_sym_err_GT_GT] = ACTIONS(2079), - [anon_sym_out_GT_GT] = ACTIONS(2079), - [anon_sym_e_GT_GT] = ACTIONS(2079), - [anon_sym_o_GT_GT] = ACTIONS(2079), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2079), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2079), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2079), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2079), - [aux_sym_unquoted_token1] = ACTIONS(2081), + [439] = { + [sym_comment] = STATE(439), + [anon_sym_export] = ACTIONS(2039), + [anon_sym_alias] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_let_DASHenv] = ACTIONS(2039), + [anon_sym_mut] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [aux_sym_cmd_identifier_token1] = ACTIONS(2039), + [aux_sym_cmd_identifier_token2] = ACTIONS(2039), + [aux_sym_cmd_identifier_token3] = ACTIONS(2039), + [aux_sym_cmd_identifier_token4] = ACTIONS(2039), + [aux_sym_cmd_identifier_token5] = ACTIONS(2039), + [aux_sym_cmd_identifier_token6] = ACTIONS(2039), + [aux_sym_cmd_identifier_token7] = ACTIONS(2039), + [aux_sym_cmd_identifier_token8] = ACTIONS(2039), + [aux_sym_cmd_identifier_token9] = ACTIONS(2039), + [aux_sym_cmd_identifier_token10] = ACTIONS(2039), + [aux_sym_cmd_identifier_token11] = ACTIONS(2039), + [aux_sym_cmd_identifier_token12] = ACTIONS(2039), + [aux_sym_cmd_identifier_token13] = ACTIONS(2039), + [aux_sym_cmd_identifier_token14] = ACTIONS(2039), + [aux_sym_cmd_identifier_token15] = ACTIONS(2039), + [aux_sym_cmd_identifier_token16] = ACTIONS(2039), + [aux_sym_cmd_identifier_token17] = ACTIONS(2039), + [aux_sym_cmd_identifier_token18] = ACTIONS(2039), + [aux_sym_cmd_identifier_token19] = ACTIONS(2039), + [aux_sym_cmd_identifier_token20] = ACTIONS(2039), + [aux_sym_cmd_identifier_token21] = ACTIONS(2039), + [aux_sym_cmd_identifier_token22] = ACTIONS(2039), + [aux_sym_cmd_identifier_token23] = ACTIONS(2039), + [aux_sym_cmd_identifier_token24] = ACTIONS(2039), + [aux_sym_cmd_identifier_token25] = ACTIONS(2039), + [aux_sym_cmd_identifier_token26] = ACTIONS(2039), + [aux_sym_cmd_identifier_token27] = ACTIONS(2039), + [aux_sym_cmd_identifier_token28] = ACTIONS(2039), + [aux_sym_cmd_identifier_token29] = ACTIONS(2039), + [aux_sym_cmd_identifier_token30] = ACTIONS(2039), + [aux_sym_cmd_identifier_token31] = ACTIONS(2039), + [aux_sym_cmd_identifier_token32] = ACTIONS(2039), + [aux_sym_cmd_identifier_token33] = ACTIONS(2039), + [aux_sym_cmd_identifier_token34] = ACTIONS(2039), + [aux_sym_cmd_identifier_token35] = ACTIONS(2039), + [aux_sym_cmd_identifier_token36] = ACTIONS(2039), + [aux_sym_cmd_identifier_token37] = ACTIONS(2039), + [aux_sym_cmd_identifier_token38] = ACTIONS(2039), + [aux_sym_cmd_identifier_token39] = ACTIONS(2039), + [aux_sym_cmd_identifier_token40] = ACTIONS(2039), + [anon_sym_def] = ACTIONS(2039), + [anon_sym_export_DASHenv] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_module] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_DOLLAR] = ACTIONS(2039), + [anon_sym_error] = ACTIONS(2039), + [anon_sym_DASH2] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_in2] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_make] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_source] = ACTIONS(2039), + [anon_sym_source_DASHenv] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_hide] = ACTIONS(2039), + [anon_sym_hide_DASHenv] = ACTIONS(2039), + [anon_sym_overlay] = ACTIONS(2039), + [anon_sym_as] = ACTIONS(2039), + [anon_sym_PLUS2] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2039), + [anon_sym_DOT_DOT2] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2039), + [aux_sym__val_number_decimal_token1] = ACTIONS(2039), + [aux_sym__val_number_decimal_token2] = ACTIONS(2039), + [aux_sym__val_number_decimal_token3] = ACTIONS(2039), + [aux_sym__val_number_decimal_token4] = ACTIONS(2039), + [aux_sym__val_number_token1] = ACTIONS(2039), + [aux_sym__val_number_token2] = ACTIONS(2039), + [aux_sym__val_number_token3] = ACTIONS(2039), + [aux_sym__val_number_token4] = ACTIONS(2039), + [aux_sym__val_number_token5] = ACTIONS(2039), + [aux_sym__val_number_token6] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2039), + [sym__str_single_quotes] = ACTIONS(2039), + [sym__str_back_ticks] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2039), + [sym__entry_separator] = ACTIONS(2041), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2083), + [sym_raw_string_begin] = ACTIONS(2041), }, - [436] = { - [sym_comment] = STATE(436), + [440] = { + [sym_comment] = STATE(440), [anon_sym_export] = ACTIONS(1757), [anon_sym_alias] = ACTIONS(1757), [anon_sym_let] = ACTIONS(1757), @@ -127992,52 +128535,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(1757), [anon_sym_const] = ACTIONS(1757), [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), + [aux_sym_cmd_identifier_token2] = ACTIONS(1757), + [aux_sym_cmd_identifier_token3] = ACTIONS(1757), + [aux_sym_cmd_identifier_token4] = ACTIONS(1757), + [aux_sym_cmd_identifier_token5] = ACTIONS(1757), + [aux_sym_cmd_identifier_token6] = ACTIONS(1757), + [aux_sym_cmd_identifier_token7] = ACTIONS(1757), [aux_sym_cmd_identifier_token8] = ACTIONS(1757), [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), + [aux_sym_cmd_identifier_token10] = ACTIONS(1757), + [aux_sym_cmd_identifier_token11] = ACTIONS(1757), [aux_sym_cmd_identifier_token12] = ACTIONS(1757), [aux_sym_cmd_identifier_token13] = ACTIONS(1757), [aux_sym_cmd_identifier_token14] = ACTIONS(1757), [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), + [aux_sym_cmd_identifier_token16] = ACTIONS(1757), + [aux_sym_cmd_identifier_token17] = ACTIONS(1757), + [aux_sym_cmd_identifier_token18] = ACTIONS(1757), + [aux_sym_cmd_identifier_token19] = ACTIONS(1757), + [aux_sym_cmd_identifier_token20] = ACTIONS(1757), + [aux_sym_cmd_identifier_token21] = ACTIONS(1757), + [aux_sym_cmd_identifier_token22] = ACTIONS(1757), + [aux_sym_cmd_identifier_token23] = ACTIONS(1757), + [aux_sym_cmd_identifier_token24] = ACTIONS(1757), + [aux_sym_cmd_identifier_token25] = ACTIONS(1757), + [aux_sym_cmd_identifier_token26] = ACTIONS(1757), + [aux_sym_cmd_identifier_token27] = ACTIONS(1757), + [aux_sym_cmd_identifier_token28] = ACTIONS(1757), + [aux_sym_cmd_identifier_token29] = ACTIONS(1757), + [aux_sym_cmd_identifier_token30] = ACTIONS(1757), + [aux_sym_cmd_identifier_token31] = ACTIONS(1757), + [aux_sym_cmd_identifier_token32] = ACTIONS(1757), + [aux_sym_cmd_identifier_token33] = ACTIONS(1757), [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), + [aux_sym_cmd_identifier_token35] = ACTIONS(1757), + [aux_sym_cmd_identifier_token36] = ACTIONS(1757), + [aux_sym_cmd_identifier_token37] = ACTIONS(1757), [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), + [aux_sym_cmd_identifier_token39] = ACTIONS(1757), + [aux_sym_cmd_identifier_token40] = ACTIONS(1757), [anon_sym_def] = ACTIONS(1757), [anon_sym_export_DASHenv] = ACTIONS(1757), [anon_sym_extern] = ACTIONS(1757), [anon_sym_module] = ACTIONS(1757), [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_COMMA] = ACTIONS(1757), + [anon_sym_DOLLAR] = ACTIONS(1757), [anon_sym_error] = ACTIONS(1757), [anon_sym_DASH2] = ACTIONS(1757), [anon_sym_break] = ACTIONS(1757), @@ -128051,7 +128595,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1757), [anon_sym_else] = ACTIONS(1757), [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1757), [anon_sym_try] = ACTIONS(1757), [anon_sym_catch] = ACTIONS(1757), [anon_sym_return] = ACTIONS(1757), @@ -128063,860 +128607,969 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(1757), [anon_sym_as] = ACTIONS(1757), [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(2085), - [aux_sym__immediate_decimal_token2] = ACTIONS(2087), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), + [aux_sym__val_number_decimal_token2] = ACTIONS(1757), + [aux_sym__val_number_decimal_token3] = ACTIONS(1757), + [aux_sym__val_number_decimal_token4] = ACTIONS(1757), + [aux_sym__val_number_token1] = ACTIONS(1757), + [aux_sym__val_number_token2] = ACTIONS(1757), + [aux_sym__val_number_token3] = ACTIONS(1757), [aux_sym__val_number_token4] = ACTIONS(1757), [aux_sym__val_number_token5] = ACTIONS(1757), [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [437] = { - [sym_cell_path] = STATE(654), - [sym_path] = STATE(557), - [sym_comment] = STATE(437), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2089), - [aux_sym_cmd_identifier_token3] = ACTIONS(2089), - [aux_sym_cmd_identifier_token4] = ACTIONS(2089), - [aux_sym_cmd_identifier_token5] = ACTIONS(2089), - [aux_sym_cmd_identifier_token6] = ACTIONS(2089), - [aux_sym_cmd_identifier_token7] = ACTIONS(2089), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2089), - [aux_sym_cmd_identifier_token11] = ACTIONS(2089), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2089), - [aux_sym_cmd_identifier_token17] = ACTIONS(2089), - [aux_sym_cmd_identifier_token18] = ACTIONS(2089), - [aux_sym_cmd_identifier_token19] = ACTIONS(2089), - [aux_sym_cmd_identifier_token20] = ACTIONS(2089), - [aux_sym_cmd_identifier_token21] = ACTIONS(2089), - [aux_sym_cmd_identifier_token22] = ACTIONS(2089), - [aux_sym_cmd_identifier_token23] = ACTIONS(2089), - [aux_sym_cmd_identifier_token24] = ACTIONS(2089), - [aux_sym_cmd_identifier_token25] = ACTIONS(2089), - [aux_sym_cmd_identifier_token26] = ACTIONS(2089), - [aux_sym_cmd_identifier_token27] = ACTIONS(2089), - [aux_sym_cmd_identifier_token28] = ACTIONS(2089), - [aux_sym_cmd_identifier_token29] = ACTIONS(2089), - [aux_sym_cmd_identifier_token30] = ACTIONS(2089), - [aux_sym_cmd_identifier_token31] = ACTIONS(2089), - [aux_sym_cmd_identifier_token32] = ACTIONS(2089), - [aux_sym_cmd_identifier_token33] = ACTIONS(2089), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2089), - [aux_sym_cmd_identifier_token36] = ACTIONS(2089), - [aux_sym_cmd_identifier_token37] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), - [sym__entry_separator] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(1898), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2091), - }, - [438] = { - [sym_cell_path] = STATE(638), - [sym_path] = STATE(557), - [sym_comment] = STATE(438), - [aux_sym_cell_path_repeat1] = STATE(445), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_alias] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_let_DASHenv] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [aux_sym_cmd_identifier_token1] = ACTIONS(2093), - [aux_sym_cmd_identifier_token2] = ACTIONS(2093), - [aux_sym_cmd_identifier_token3] = ACTIONS(2093), - [aux_sym_cmd_identifier_token4] = ACTIONS(2093), - [aux_sym_cmd_identifier_token5] = ACTIONS(2093), - [aux_sym_cmd_identifier_token6] = ACTIONS(2093), - [aux_sym_cmd_identifier_token7] = ACTIONS(2093), - [aux_sym_cmd_identifier_token8] = ACTIONS(2093), - [aux_sym_cmd_identifier_token9] = ACTIONS(2093), - [aux_sym_cmd_identifier_token10] = ACTIONS(2093), - [aux_sym_cmd_identifier_token11] = ACTIONS(2093), - [aux_sym_cmd_identifier_token12] = ACTIONS(2093), - [aux_sym_cmd_identifier_token13] = ACTIONS(2093), - [aux_sym_cmd_identifier_token14] = ACTIONS(2093), - [aux_sym_cmd_identifier_token15] = ACTIONS(2093), - [aux_sym_cmd_identifier_token16] = ACTIONS(2093), - [aux_sym_cmd_identifier_token17] = ACTIONS(2093), - [aux_sym_cmd_identifier_token18] = ACTIONS(2093), - [aux_sym_cmd_identifier_token19] = ACTIONS(2093), - [aux_sym_cmd_identifier_token20] = ACTIONS(2093), - [aux_sym_cmd_identifier_token21] = ACTIONS(2093), - [aux_sym_cmd_identifier_token22] = ACTIONS(2093), - [aux_sym_cmd_identifier_token23] = ACTIONS(2093), - [aux_sym_cmd_identifier_token24] = ACTIONS(2093), - [aux_sym_cmd_identifier_token25] = ACTIONS(2093), - [aux_sym_cmd_identifier_token26] = ACTIONS(2093), - [aux_sym_cmd_identifier_token27] = ACTIONS(2093), - [aux_sym_cmd_identifier_token28] = ACTIONS(2093), - [aux_sym_cmd_identifier_token29] = ACTIONS(2093), - [aux_sym_cmd_identifier_token30] = ACTIONS(2093), - [aux_sym_cmd_identifier_token31] = ACTIONS(2093), - [aux_sym_cmd_identifier_token32] = ACTIONS(2093), - [aux_sym_cmd_identifier_token33] = ACTIONS(2093), - [aux_sym_cmd_identifier_token34] = ACTIONS(2093), - [aux_sym_cmd_identifier_token35] = ACTIONS(2093), - [aux_sym_cmd_identifier_token36] = ACTIONS(2093), - [aux_sym_cmd_identifier_token37] = ACTIONS(2093), - [aux_sym_cmd_identifier_token38] = ACTIONS(2093), - [aux_sym_cmd_identifier_token39] = ACTIONS(2093), - [aux_sym_cmd_identifier_token40] = ACTIONS(2093), - [anon_sym_def] = ACTIONS(2093), - [anon_sym_export_DASHenv] = ACTIONS(2093), - [anon_sym_extern] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2093), - [anon_sym_DOLLAR] = ACTIONS(2093), - [anon_sym_error] = ACTIONS(2093), - [anon_sym_DASH2] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_in2] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_make] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2093), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_source] = ACTIONS(2093), - [anon_sym_source_DASHenv] = ACTIONS(2093), - [anon_sym_register] = ACTIONS(2093), - [anon_sym_hide] = ACTIONS(2093), - [anon_sym_hide_DASHenv] = ACTIONS(2093), - [anon_sym_overlay] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_PLUS2] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2093), - [aux_sym__val_number_decimal_token1] = ACTIONS(2093), - [aux_sym__val_number_decimal_token2] = ACTIONS(2093), - [aux_sym__val_number_decimal_token3] = ACTIONS(2093), - [aux_sym__val_number_decimal_token4] = ACTIONS(2093), - [aux_sym__val_number_token1] = ACTIONS(2093), - [aux_sym__val_number_token2] = ACTIONS(2093), - [aux_sym__val_number_token3] = ACTIONS(2093), - [aux_sym__val_number_token4] = ACTIONS(2093), - [aux_sym__val_number_token5] = ACTIONS(2093), - [aux_sym__val_number_token6] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2093), - [sym__str_single_quotes] = ACTIONS(2093), - [sym__str_back_ticks] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2093), - [sym__entry_separator] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_DQUOTE] = ACTIONS(1757), + [sym__str_single_quotes] = ACTIONS(1757), + [sym__str_back_ticks] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), + [sym__entry_separator] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2095), - }, - [439] = { - [sym_cell_path] = STATE(726), - [sym_path] = STATE(656), - [sym_comment] = STATE(439), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1939), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1939), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1939), - [aux_sym_cmd_identifier_token32] = ACTIONS(1939), - [aux_sym_cmd_identifier_token33] = ACTIONS(1939), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [aux_sym_cmd_identifier_token37] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), - }, - [440] = { - [sym_cell_path] = STATE(704), - [sym_path] = STATE(656), - [sym_comment] = STATE(440), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1989), - [anon_sym_alias] = ACTIONS(1989), - [anon_sym_let] = ACTIONS(1989), - [anon_sym_let_DASHenv] = ACTIONS(1989), - [anon_sym_mut] = ACTIONS(1989), - [anon_sym_const] = ACTIONS(1989), - [aux_sym_cmd_identifier_token1] = ACTIONS(1989), - [aux_sym_cmd_identifier_token2] = ACTIONS(1991), - [aux_sym_cmd_identifier_token3] = ACTIONS(1991), - [aux_sym_cmd_identifier_token4] = ACTIONS(1991), - [aux_sym_cmd_identifier_token5] = ACTIONS(1991), - [aux_sym_cmd_identifier_token6] = ACTIONS(1991), - [aux_sym_cmd_identifier_token7] = ACTIONS(1991), - [aux_sym_cmd_identifier_token8] = ACTIONS(1989), - [aux_sym_cmd_identifier_token9] = ACTIONS(1989), - [aux_sym_cmd_identifier_token10] = ACTIONS(1991), - [aux_sym_cmd_identifier_token11] = ACTIONS(1991), - [aux_sym_cmd_identifier_token12] = ACTIONS(1989), - [aux_sym_cmd_identifier_token13] = ACTIONS(1989), - [aux_sym_cmd_identifier_token14] = ACTIONS(1989), - [aux_sym_cmd_identifier_token15] = ACTIONS(1989), - [aux_sym_cmd_identifier_token16] = ACTIONS(1991), - [aux_sym_cmd_identifier_token17] = ACTIONS(1991), - [aux_sym_cmd_identifier_token18] = ACTIONS(1991), - [aux_sym_cmd_identifier_token19] = ACTIONS(1991), - [aux_sym_cmd_identifier_token20] = ACTIONS(1991), - [aux_sym_cmd_identifier_token21] = ACTIONS(1991), - [aux_sym_cmd_identifier_token22] = ACTIONS(1991), - [aux_sym_cmd_identifier_token23] = ACTIONS(1991), - [aux_sym_cmd_identifier_token24] = ACTIONS(1991), - [aux_sym_cmd_identifier_token25] = ACTIONS(1991), - [aux_sym_cmd_identifier_token26] = ACTIONS(1991), - [aux_sym_cmd_identifier_token27] = ACTIONS(1991), - [aux_sym_cmd_identifier_token28] = ACTIONS(1991), - [aux_sym_cmd_identifier_token29] = ACTIONS(1991), - [aux_sym_cmd_identifier_token30] = ACTIONS(1991), - [aux_sym_cmd_identifier_token31] = ACTIONS(1991), - [aux_sym_cmd_identifier_token32] = ACTIONS(1991), - [aux_sym_cmd_identifier_token33] = ACTIONS(1991), - [aux_sym_cmd_identifier_token34] = ACTIONS(1989), - [aux_sym_cmd_identifier_token35] = ACTIONS(1991), - [aux_sym_cmd_identifier_token36] = ACTIONS(1991), - [aux_sym_cmd_identifier_token37] = ACTIONS(1991), - [aux_sym_cmd_identifier_token38] = ACTIONS(1989), - [aux_sym_cmd_identifier_token39] = ACTIONS(1991), - [aux_sym_cmd_identifier_token40] = ACTIONS(1991), - [anon_sym_def] = ACTIONS(1989), - [anon_sym_export_DASHenv] = ACTIONS(1989), - [anon_sym_extern] = ACTIONS(1989), - [anon_sym_module] = ACTIONS(1989), - [anon_sym_use] = ACTIONS(1989), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1991), - [anon_sym_error] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_break] = ACTIONS(1989), - [anon_sym_continue] = ACTIONS(1989), - [anon_sym_for] = ACTIONS(1989), - [anon_sym_in2] = ACTIONS(1989), - [anon_sym_loop] = ACTIONS(1989), - [anon_sym_make] = ACTIONS(1989), - [anon_sym_while] = ACTIONS(1989), - [anon_sym_do] = ACTIONS(1989), - [anon_sym_if] = ACTIONS(1989), - [anon_sym_else] = ACTIONS(1989), - [anon_sym_match] = ACTIONS(1989), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_try] = ACTIONS(1989), - [anon_sym_catch] = ACTIONS(1989), - [anon_sym_return] = ACTIONS(1989), - [anon_sym_source] = ACTIONS(1989), - [anon_sym_source_DASHenv] = ACTIONS(1989), - [anon_sym_register] = ACTIONS(1989), - [anon_sym_hide] = ACTIONS(1989), - [anon_sym_hide_DASHenv] = ACTIONS(1989), - [anon_sym_overlay] = ACTIONS(1989), - [anon_sym_as] = ACTIONS(1989), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [aux_sym__val_number_token4] = ACTIONS(1989), - [aux_sym__val_number_token5] = ACTIONS(1989), - [aux_sym__val_number_token6] = ACTIONS(1989), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(1759), }, [441] = { - [sym_cell_path] = STATE(705), - [sym_path] = STATE(656), [sym_comment] = STATE(441), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1993), - [anon_sym_alias] = ACTIONS(1993), - [anon_sym_let] = ACTIONS(1993), - [anon_sym_let_DASHenv] = ACTIONS(1993), - [anon_sym_mut] = ACTIONS(1993), - [anon_sym_const] = ACTIONS(1993), - [aux_sym_cmd_identifier_token1] = ACTIONS(1993), - [aux_sym_cmd_identifier_token2] = ACTIONS(1995), - [aux_sym_cmd_identifier_token3] = ACTIONS(1995), - [aux_sym_cmd_identifier_token4] = ACTIONS(1995), - [aux_sym_cmd_identifier_token5] = ACTIONS(1995), - [aux_sym_cmd_identifier_token6] = ACTIONS(1995), - [aux_sym_cmd_identifier_token7] = ACTIONS(1995), - [aux_sym_cmd_identifier_token8] = ACTIONS(1993), - [aux_sym_cmd_identifier_token9] = ACTIONS(1993), - [aux_sym_cmd_identifier_token10] = ACTIONS(1995), - [aux_sym_cmd_identifier_token11] = ACTIONS(1995), - [aux_sym_cmd_identifier_token12] = ACTIONS(1993), - [aux_sym_cmd_identifier_token13] = ACTIONS(1993), - [aux_sym_cmd_identifier_token14] = ACTIONS(1993), - [aux_sym_cmd_identifier_token15] = ACTIONS(1993), - [aux_sym_cmd_identifier_token16] = ACTIONS(1995), - [aux_sym_cmd_identifier_token17] = ACTIONS(1995), - [aux_sym_cmd_identifier_token18] = ACTIONS(1995), - [aux_sym_cmd_identifier_token19] = ACTIONS(1995), - [aux_sym_cmd_identifier_token20] = ACTIONS(1995), - [aux_sym_cmd_identifier_token21] = ACTIONS(1995), - [aux_sym_cmd_identifier_token22] = ACTIONS(1995), - [aux_sym_cmd_identifier_token23] = ACTIONS(1995), - [aux_sym_cmd_identifier_token24] = ACTIONS(1995), - [aux_sym_cmd_identifier_token25] = ACTIONS(1995), - [aux_sym_cmd_identifier_token26] = ACTIONS(1995), - [aux_sym_cmd_identifier_token27] = ACTIONS(1995), - [aux_sym_cmd_identifier_token28] = ACTIONS(1995), - [aux_sym_cmd_identifier_token29] = ACTIONS(1995), - [aux_sym_cmd_identifier_token30] = ACTIONS(1995), - [aux_sym_cmd_identifier_token31] = ACTIONS(1995), - [aux_sym_cmd_identifier_token32] = ACTIONS(1995), - [aux_sym_cmd_identifier_token33] = ACTIONS(1995), - [aux_sym_cmd_identifier_token34] = ACTIONS(1993), - [aux_sym_cmd_identifier_token35] = ACTIONS(1995), - [aux_sym_cmd_identifier_token36] = ACTIONS(1995), - [aux_sym_cmd_identifier_token37] = ACTIONS(1995), - [aux_sym_cmd_identifier_token38] = ACTIONS(1993), - [aux_sym_cmd_identifier_token39] = ACTIONS(1995), - [aux_sym_cmd_identifier_token40] = ACTIONS(1995), - [anon_sym_def] = ACTIONS(1993), - [anon_sym_export_DASHenv] = ACTIONS(1993), - [anon_sym_extern] = ACTIONS(1993), - [anon_sym_module] = ACTIONS(1993), - [anon_sym_use] = ACTIONS(1993), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1995), - [anon_sym_error] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_break] = ACTIONS(1993), - [anon_sym_continue] = ACTIONS(1993), - [anon_sym_for] = ACTIONS(1993), - [anon_sym_in2] = ACTIONS(1993), - [anon_sym_loop] = ACTIONS(1993), - [anon_sym_make] = ACTIONS(1993), - [anon_sym_while] = ACTIONS(1993), - [anon_sym_do] = ACTIONS(1993), - [anon_sym_if] = ACTIONS(1993), - [anon_sym_else] = ACTIONS(1993), - [anon_sym_match] = ACTIONS(1993), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_try] = ACTIONS(1993), - [anon_sym_catch] = ACTIONS(1993), - [anon_sym_return] = ACTIONS(1993), - [anon_sym_source] = ACTIONS(1993), - [anon_sym_source_DASHenv] = ACTIONS(1993), - [anon_sym_register] = ACTIONS(1993), - [anon_sym_hide] = ACTIONS(1993), - [anon_sym_hide_DASHenv] = ACTIONS(1993), - [anon_sym_overlay] = ACTIONS(1993), - [anon_sym_as] = ACTIONS(1993), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1993), - [aux_sym__val_number_token5] = ACTIONS(1993), - [aux_sym__val_number_token6] = ACTIONS(1993), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2043), + [aux_sym_cmd_identifier_token3] = ACTIONS(2043), + [aux_sym_cmd_identifier_token4] = ACTIONS(2043), + [aux_sym_cmd_identifier_token5] = ACTIONS(2043), + [aux_sym_cmd_identifier_token6] = ACTIONS(2043), + [aux_sym_cmd_identifier_token7] = ACTIONS(2043), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2043), + [aux_sym_cmd_identifier_token11] = ACTIONS(2043), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2043), + [aux_sym_cmd_identifier_token17] = ACTIONS(2043), + [aux_sym_cmd_identifier_token18] = ACTIONS(2043), + [aux_sym_cmd_identifier_token19] = ACTIONS(2043), + [aux_sym_cmd_identifier_token20] = ACTIONS(2043), + [aux_sym_cmd_identifier_token21] = ACTIONS(2043), + [aux_sym_cmd_identifier_token22] = ACTIONS(2043), + [aux_sym_cmd_identifier_token23] = ACTIONS(2043), + [aux_sym_cmd_identifier_token24] = ACTIONS(2043), + [aux_sym_cmd_identifier_token25] = ACTIONS(2043), + [aux_sym_cmd_identifier_token26] = ACTIONS(2043), + [aux_sym_cmd_identifier_token27] = ACTIONS(2043), + [aux_sym_cmd_identifier_token28] = ACTIONS(2043), + [aux_sym_cmd_identifier_token29] = ACTIONS(2043), + [aux_sym_cmd_identifier_token30] = ACTIONS(2043), + [aux_sym_cmd_identifier_token31] = ACTIONS(2043), + [aux_sym_cmd_identifier_token32] = ACTIONS(2043), + [aux_sym_cmd_identifier_token33] = ACTIONS(2043), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2043), + [aux_sym_cmd_identifier_token36] = ACTIONS(2043), + [aux_sym_cmd_identifier_token37] = ACTIONS(2043), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2043), + [aux_sym_cmd_identifier_token40] = ACTIONS(2043), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2043), + [anon_sym_COMMA] = ACTIONS(2043), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2043), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2043), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2043), + [aux_sym__val_number_decimal_token3] = ACTIONS(2043), + [aux_sym__val_number_decimal_token4] = ACTIONS(2043), + [aux_sym__val_number_token1] = ACTIONS(2043), + [aux_sym__val_number_token2] = ACTIONS(2043), + [aux_sym__val_number_token3] = ACTIONS(2043), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2043), + [sym__str_single_quotes] = ACTIONS(2043), + [sym__str_back_ticks] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2043), + [sym__entry_separator] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2045), }, [442] = { - [sym_cell_path] = STATE(706), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(699), + [sym_path] = STATE(549), [sym_comment] = STATE(442), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [aux_sym_cmd_identifier_token37] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(2008), + [anon_sym_alias] = ACTIONS(2008), + [anon_sym_let] = ACTIONS(2008), + [anon_sym_let_DASHenv] = ACTIONS(2008), + [anon_sym_mut] = ACTIONS(2008), + [anon_sym_const] = ACTIONS(2008), + [aux_sym_cmd_identifier_token1] = ACTIONS(2008), + [aux_sym_cmd_identifier_token2] = ACTIONS(2010), + [aux_sym_cmd_identifier_token3] = ACTIONS(2010), + [aux_sym_cmd_identifier_token4] = ACTIONS(2010), + [aux_sym_cmd_identifier_token5] = ACTIONS(2010), + [aux_sym_cmd_identifier_token6] = ACTIONS(2010), + [aux_sym_cmd_identifier_token7] = ACTIONS(2010), + [aux_sym_cmd_identifier_token8] = ACTIONS(2008), + [aux_sym_cmd_identifier_token9] = ACTIONS(2008), + [aux_sym_cmd_identifier_token10] = ACTIONS(2010), + [aux_sym_cmd_identifier_token11] = ACTIONS(2010), + [aux_sym_cmd_identifier_token12] = ACTIONS(2008), + [aux_sym_cmd_identifier_token13] = ACTIONS(2008), + [aux_sym_cmd_identifier_token14] = ACTIONS(2008), + [aux_sym_cmd_identifier_token15] = ACTIONS(2008), + [aux_sym_cmd_identifier_token16] = ACTIONS(2010), + [aux_sym_cmd_identifier_token17] = ACTIONS(2010), + [aux_sym_cmd_identifier_token18] = ACTIONS(2010), + [aux_sym_cmd_identifier_token19] = ACTIONS(2010), + [aux_sym_cmd_identifier_token20] = ACTIONS(2010), + [aux_sym_cmd_identifier_token21] = ACTIONS(2010), + [aux_sym_cmd_identifier_token22] = ACTIONS(2010), + [aux_sym_cmd_identifier_token23] = ACTIONS(2010), + [aux_sym_cmd_identifier_token24] = ACTIONS(2010), + [aux_sym_cmd_identifier_token25] = ACTIONS(2010), + [aux_sym_cmd_identifier_token26] = ACTIONS(2010), + [aux_sym_cmd_identifier_token27] = ACTIONS(2010), + [aux_sym_cmd_identifier_token28] = ACTIONS(2010), + [aux_sym_cmd_identifier_token29] = ACTIONS(2010), + [aux_sym_cmd_identifier_token30] = ACTIONS(2010), + [aux_sym_cmd_identifier_token31] = ACTIONS(2010), + [aux_sym_cmd_identifier_token32] = ACTIONS(2010), + [aux_sym_cmd_identifier_token33] = ACTIONS(2010), + [aux_sym_cmd_identifier_token34] = ACTIONS(2008), + [aux_sym_cmd_identifier_token35] = ACTIONS(2010), + [aux_sym_cmd_identifier_token36] = ACTIONS(2010), + [aux_sym_cmd_identifier_token37] = ACTIONS(2010), + [aux_sym_cmd_identifier_token38] = ACTIONS(2008), + [aux_sym_cmd_identifier_token39] = ACTIONS(2010), + [aux_sym_cmd_identifier_token40] = ACTIONS(2010), + [anon_sym_def] = ACTIONS(2008), + [anon_sym_export_DASHenv] = ACTIONS(2008), + [anon_sym_extern] = ACTIONS(2008), + [anon_sym_module] = ACTIONS(2008), + [anon_sym_use] = ACTIONS(2008), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_COMMA] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2010), + [anon_sym_error] = ACTIONS(2008), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_break] = ACTIONS(2008), + [anon_sym_continue] = ACTIONS(2008), + [anon_sym_for] = ACTIONS(2008), + [anon_sym_in2] = ACTIONS(2008), + [anon_sym_loop] = ACTIONS(2008), + [anon_sym_make] = ACTIONS(2008), + [anon_sym_while] = ACTIONS(2008), + [anon_sym_do] = ACTIONS(2008), + [anon_sym_if] = ACTIONS(2008), + [anon_sym_else] = ACTIONS(2008), + [anon_sym_match] = ACTIONS(2008), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_try] = ACTIONS(2008), + [anon_sym_catch] = ACTIONS(2008), + [anon_sym_return] = ACTIONS(2008), + [anon_sym_source] = ACTIONS(2008), + [anon_sym_source_DASHenv] = ACTIONS(2008), + [anon_sym_register] = ACTIONS(2008), + [anon_sym_hide] = ACTIONS(2008), + [anon_sym_hide_DASHenv] = ACTIONS(2008), + [anon_sym_overlay] = ACTIONS(2008), + [anon_sym_as] = ACTIONS(2008), + [anon_sym_PLUS2] = ACTIONS(2008), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2010), + [aux_sym__val_number_decimal_token1] = ACTIONS(2008), + [aux_sym__val_number_decimal_token2] = ACTIONS(2010), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(2010), + [aux_sym__val_number_token2] = ACTIONS(2010), + [aux_sym__val_number_token3] = ACTIONS(2010), + [aux_sym__val_number_token4] = ACTIONS(2008), + [aux_sym__val_number_token5] = ACTIONS(2008), + [aux_sym__val_number_token6] = ACTIONS(2008), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym__str_single_quotes] = ACTIONS(2010), + [sym__str_back_ticks] = ACTIONS(2010), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2010), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2010), }, [443] = { - [sym_cell_path] = STATE(733), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(678), + [sym_path] = STATE(549), [sym_comment] = STATE(443), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(935), - [anon_sym_alias] = ACTIONS(935), - [anon_sym_let] = ACTIONS(935), - [anon_sym_let_DASHenv] = ACTIONS(935), - [anon_sym_mut] = ACTIONS(935), - [anon_sym_const] = ACTIONS(935), - [aux_sym_cmd_identifier_token1] = ACTIONS(935), - [aux_sym_cmd_identifier_token2] = ACTIONS(937), - [aux_sym_cmd_identifier_token3] = ACTIONS(937), - [aux_sym_cmd_identifier_token4] = ACTIONS(937), - [aux_sym_cmd_identifier_token5] = ACTIONS(937), - [aux_sym_cmd_identifier_token6] = ACTIONS(937), - [aux_sym_cmd_identifier_token7] = ACTIONS(937), - [aux_sym_cmd_identifier_token8] = ACTIONS(935), - [aux_sym_cmd_identifier_token9] = ACTIONS(935), - [aux_sym_cmd_identifier_token10] = ACTIONS(937), - [aux_sym_cmd_identifier_token11] = ACTIONS(937), - [aux_sym_cmd_identifier_token12] = ACTIONS(935), - [aux_sym_cmd_identifier_token13] = ACTIONS(935), - [aux_sym_cmd_identifier_token14] = ACTIONS(935), - [aux_sym_cmd_identifier_token15] = ACTIONS(935), - [aux_sym_cmd_identifier_token16] = ACTIONS(937), - [aux_sym_cmd_identifier_token17] = ACTIONS(937), - [aux_sym_cmd_identifier_token18] = ACTIONS(937), - [aux_sym_cmd_identifier_token19] = ACTIONS(937), - [aux_sym_cmd_identifier_token20] = ACTIONS(937), - [aux_sym_cmd_identifier_token21] = ACTIONS(937), - [aux_sym_cmd_identifier_token22] = ACTIONS(937), - [aux_sym_cmd_identifier_token23] = ACTIONS(937), - [aux_sym_cmd_identifier_token24] = ACTIONS(937), - [aux_sym_cmd_identifier_token25] = ACTIONS(937), - [aux_sym_cmd_identifier_token26] = ACTIONS(937), - [aux_sym_cmd_identifier_token27] = ACTIONS(937), - [aux_sym_cmd_identifier_token28] = ACTIONS(937), - [aux_sym_cmd_identifier_token29] = ACTIONS(937), - [aux_sym_cmd_identifier_token30] = ACTIONS(937), - [aux_sym_cmd_identifier_token31] = ACTIONS(937), - [aux_sym_cmd_identifier_token32] = ACTIONS(937), - [aux_sym_cmd_identifier_token33] = ACTIONS(937), - [aux_sym_cmd_identifier_token34] = ACTIONS(935), - [aux_sym_cmd_identifier_token35] = ACTIONS(937), - [aux_sym_cmd_identifier_token36] = ACTIONS(937), - [aux_sym_cmd_identifier_token37] = ACTIONS(937), - [aux_sym_cmd_identifier_token38] = ACTIONS(935), - [aux_sym_cmd_identifier_token39] = ACTIONS(937), - [aux_sym_cmd_identifier_token40] = ACTIONS(937), - [anon_sym_def] = ACTIONS(935), - [anon_sym_export_DASHenv] = ACTIONS(935), - [anon_sym_extern] = ACTIONS(935), - [anon_sym_module] = ACTIONS(935), - [anon_sym_use] = ACTIONS(935), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(937), - [anon_sym_error] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_break] = ACTIONS(935), - [anon_sym_continue] = ACTIONS(935), - [anon_sym_for] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(935), - [anon_sym_loop] = ACTIONS(935), - [anon_sym_make] = ACTIONS(935), - [anon_sym_while] = ACTIONS(935), - [anon_sym_do] = ACTIONS(935), - [anon_sym_if] = ACTIONS(935), - [anon_sym_else] = ACTIONS(935), - [anon_sym_match] = ACTIONS(935), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_try] = ACTIONS(935), - [anon_sym_catch] = ACTIONS(935), - [anon_sym_return] = ACTIONS(935), - [anon_sym_source] = ACTIONS(935), - [anon_sym_source_DASHenv] = ACTIONS(935), - [anon_sym_register] = ACTIONS(935), - [anon_sym_hide] = ACTIONS(935), - [anon_sym_hide_DASHenv] = ACTIONS(935), - [anon_sym_overlay] = ACTIONS(935), - [anon_sym_as] = ACTIONS(935), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(935), - [aux_sym__val_number_token5] = ACTIONS(935), - [aux_sym__val_number_token6] = ACTIONS(935), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(937), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(2028), + [anon_sym_alias] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_let_DASHenv] = ACTIONS(2028), + [anon_sym_mut] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [aux_sym_cmd_identifier_token1] = ACTIONS(2028), + [aux_sym_cmd_identifier_token2] = ACTIONS(2030), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [aux_sym_cmd_identifier_token6] = ACTIONS(2030), + [aux_sym_cmd_identifier_token7] = ACTIONS(2030), + [aux_sym_cmd_identifier_token8] = ACTIONS(2028), + [aux_sym_cmd_identifier_token9] = ACTIONS(2028), + [aux_sym_cmd_identifier_token10] = ACTIONS(2030), + [aux_sym_cmd_identifier_token11] = ACTIONS(2030), + [aux_sym_cmd_identifier_token12] = ACTIONS(2028), + [aux_sym_cmd_identifier_token13] = ACTIONS(2028), + [aux_sym_cmd_identifier_token14] = ACTIONS(2028), + [aux_sym_cmd_identifier_token15] = ACTIONS(2028), + [aux_sym_cmd_identifier_token16] = ACTIONS(2030), + [aux_sym_cmd_identifier_token17] = ACTIONS(2030), + [aux_sym_cmd_identifier_token18] = ACTIONS(2030), + [aux_sym_cmd_identifier_token19] = ACTIONS(2030), + [aux_sym_cmd_identifier_token20] = ACTIONS(2030), + [aux_sym_cmd_identifier_token21] = ACTIONS(2030), + [aux_sym_cmd_identifier_token22] = ACTIONS(2030), + [aux_sym_cmd_identifier_token23] = ACTIONS(2030), + [aux_sym_cmd_identifier_token24] = ACTIONS(2030), + [aux_sym_cmd_identifier_token25] = ACTIONS(2030), + [aux_sym_cmd_identifier_token26] = ACTIONS(2030), + [aux_sym_cmd_identifier_token27] = ACTIONS(2030), + [aux_sym_cmd_identifier_token28] = ACTIONS(2030), + [aux_sym_cmd_identifier_token29] = ACTIONS(2030), + [aux_sym_cmd_identifier_token30] = ACTIONS(2030), + [aux_sym_cmd_identifier_token31] = ACTIONS(2030), + [aux_sym_cmd_identifier_token32] = ACTIONS(2030), + [aux_sym_cmd_identifier_token33] = ACTIONS(2030), + [aux_sym_cmd_identifier_token34] = ACTIONS(2028), + [aux_sym_cmd_identifier_token35] = ACTIONS(2030), + [aux_sym_cmd_identifier_token36] = ACTIONS(2030), + [aux_sym_cmd_identifier_token37] = ACTIONS(2030), + [aux_sym_cmd_identifier_token38] = ACTIONS(2028), + [aux_sym_cmd_identifier_token39] = ACTIONS(2030), + [aux_sym_cmd_identifier_token40] = ACTIONS(2030), + [anon_sym_def] = ACTIONS(2028), + [anon_sym_export_DASHenv] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_module] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_COMMA] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_make] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_catch] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_source] = ACTIONS(2028), + [anon_sym_source_DASHenv] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_hide] = ACTIONS(2028), + [anon_sym_hide_DASHenv] = ACTIONS(2028), + [anon_sym_overlay] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2028), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2030), }, [444] = { [sym_comment] = STATE(444), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2047), + [aux_sym_cmd_identifier_token3] = ACTIONS(2047), + [aux_sym_cmd_identifier_token4] = ACTIONS(2047), + [aux_sym_cmd_identifier_token5] = ACTIONS(2047), + [aux_sym_cmd_identifier_token6] = ACTIONS(2047), + [aux_sym_cmd_identifier_token7] = ACTIONS(2047), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2047), + [aux_sym_cmd_identifier_token17] = ACTIONS(2047), + [aux_sym_cmd_identifier_token18] = ACTIONS(2047), + [aux_sym_cmd_identifier_token19] = ACTIONS(2047), + [aux_sym_cmd_identifier_token20] = ACTIONS(2047), + [aux_sym_cmd_identifier_token21] = ACTIONS(2047), + [aux_sym_cmd_identifier_token22] = ACTIONS(2047), + [aux_sym_cmd_identifier_token23] = ACTIONS(2047), + [aux_sym_cmd_identifier_token24] = ACTIONS(2047), + [aux_sym_cmd_identifier_token25] = ACTIONS(2047), + [aux_sym_cmd_identifier_token26] = ACTIONS(2047), + [aux_sym_cmd_identifier_token27] = ACTIONS(2047), + [aux_sym_cmd_identifier_token28] = ACTIONS(2047), + [aux_sym_cmd_identifier_token29] = ACTIONS(2047), + [aux_sym_cmd_identifier_token30] = ACTIONS(2047), + [aux_sym_cmd_identifier_token31] = ACTIONS(2047), + [aux_sym_cmd_identifier_token32] = ACTIONS(2047), + [aux_sym_cmd_identifier_token33] = ACTIONS(2047), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [aux_sym_cmd_identifier_token37] = ACTIONS(2047), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2047), + [aux_sym_cmd_identifier_token40] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH2] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in2] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_PLUS2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), + [anon_sym_DOT_DOT2] = ACTIONS(2049), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2051), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2051), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2047), + [aux_sym__val_number_decimal_token3] = ACTIONS(2047), + [aux_sym__val_number_decimal_token4] = ACTIONS(2047), + [aux_sym__val_number_token1] = ACTIONS(2047), + [aux_sym__val_number_token2] = ACTIONS(2047), + [aux_sym__val_number_token3] = ACTIONS(2047), + [aux_sym__val_number_token4] = ACTIONS(2047), + [aux_sym__val_number_token5] = ACTIONS(2047), + [aux_sym__val_number_token6] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym__str_single_quotes] = ACTIONS(2047), + [sym__str_back_ticks] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), + [sym__entry_separator] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2053), }, [445] = { - [sym_path] = STATE(557), + [sym_cell_path] = STATE(700), + [sym_path] = STATE(549), [sym_comment] = STATE(445), - [aux_sym_cell_path_repeat1] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1885), + [anon_sym_alias] = ACTIONS(1885), + [anon_sym_let] = ACTIONS(1885), + [anon_sym_let_DASHenv] = ACTIONS(1885), + [anon_sym_mut] = ACTIONS(1885), + [anon_sym_const] = ACTIONS(1885), + [aux_sym_cmd_identifier_token1] = ACTIONS(1885), + [aux_sym_cmd_identifier_token2] = ACTIONS(1887), + [aux_sym_cmd_identifier_token3] = ACTIONS(1887), + [aux_sym_cmd_identifier_token4] = ACTIONS(1887), + [aux_sym_cmd_identifier_token5] = ACTIONS(1887), + [aux_sym_cmd_identifier_token6] = ACTIONS(1887), + [aux_sym_cmd_identifier_token7] = ACTIONS(1887), + [aux_sym_cmd_identifier_token8] = ACTIONS(1885), + [aux_sym_cmd_identifier_token9] = ACTIONS(1885), + [aux_sym_cmd_identifier_token10] = ACTIONS(1887), + [aux_sym_cmd_identifier_token11] = ACTIONS(1887), + [aux_sym_cmd_identifier_token12] = ACTIONS(1885), + [aux_sym_cmd_identifier_token13] = ACTIONS(1885), + [aux_sym_cmd_identifier_token14] = ACTIONS(1885), + [aux_sym_cmd_identifier_token15] = ACTIONS(1885), + [aux_sym_cmd_identifier_token16] = ACTIONS(1887), + [aux_sym_cmd_identifier_token17] = ACTIONS(1887), + [aux_sym_cmd_identifier_token18] = ACTIONS(1887), + [aux_sym_cmd_identifier_token19] = ACTIONS(1887), + [aux_sym_cmd_identifier_token20] = ACTIONS(1887), + [aux_sym_cmd_identifier_token21] = ACTIONS(1887), + [aux_sym_cmd_identifier_token22] = ACTIONS(1887), + [aux_sym_cmd_identifier_token23] = ACTIONS(1887), + [aux_sym_cmd_identifier_token24] = ACTIONS(1887), + [aux_sym_cmd_identifier_token25] = ACTIONS(1887), + [aux_sym_cmd_identifier_token26] = ACTIONS(1887), + [aux_sym_cmd_identifier_token27] = ACTIONS(1887), + [aux_sym_cmd_identifier_token28] = ACTIONS(1887), + [aux_sym_cmd_identifier_token29] = ACTIONS(1887), + [aux_sym_cmd_identifier_token30] = ACTIONS(1887), + [aux_sym_cmd_identifier_token31] = ACTIONS(1887), + [aux_sym_cmd_identifier_token32] = ACTIONS(1887), + [aux_sym_cmd_identifier_token33] = ACTIONS(1887), + [aux_sym_cmd_identifier_token34] = ACTIONS(1885), + [aux_sym_cmd_identifier_token35] = ACTIONS(1887), + [aux_sym_cmd_identifier_token36] = ACTIONS(1887), + [aux_sym_cmd_identifier_token37] = ACTIONS(1887), + [aux_sym_cmd_identifier_token38] = ACTIONS(1885), + [aux_sym_cmd_identifier_token39] = ACTIONS(1887), + [aux_sym_cmd_identifier_token40] = ACTIONS(1887), + [anon_sym_def] = ACTIONS(1885), + [anon_sym_export_DASHenv] = ACTIONS(1885), + [anon_sym_extern] = ACTIONS(1885), + [anon_sym_module] = ACTIONS(1885), + [anon_sym_use] = ACTIONS(1885), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_COMMA] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1887), + [anon_sym_error] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_break] = ACTIONS(1885), + [anon_sym_continue] = ACTIONS(1885), + [anon_sym_for] = ACTIONS(1885), + [anon_sym_in2] = ACTIONS(1885), + [anon_sym_loop] = ACTIONS(1885), + [anon_sym_make] = ACTIONS(1885), + [anon_sym_while] = ACTIONS(1885), + [anon_sym_do] = ACTIONS(1885), + [anon_sym_if] = ACTIONS(1885), + [anon_sym_else] = ACTIONS(1885), + [anon_sym_match] = ACTIONS(1885), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_try] = ACTIONS(1885), + [anon_sym_catch] = ACTIONS(1885), + [anon_sym_return] = ACTIONS(1885), + [anon_sym_source] = ACTIONS(1885), + [anon_sym_source_DASHenv] = ACTIONS(1885), + [anon_sym_register] = ACTIONS(1885), + [anon_sym_hide] = ACTIONS(1885), + [anon_sym_hide_DASHenv] = ACTIONS(1885), + [anon_sym_overlay] = ACTIONS(1885), + [anon_sym_as] = ACTIONS(1885), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1885), + [aux_sym__val_number_token5] = ACTIONS(1885), + [aux_sym__val_number_token6] = ACTIONS(1885), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1887), + }, + [446] = { + [sym_cell_path] = STATE(702), + [sym_path] = STATE(549), + [sym_comment] = STATE(446), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1893), + [anon_sym_alias] = ACTIONS(1893), + [anon_sym_let] = ACTIONS(1893), + [anon_sym_let_DASHenv] = ACTIONS(1893), + [anon_sym_mut] = ACTIONS(1893), + [anon_sym_const] = ACTIONS(1893), + [aux_sym_cmd_identifier_token1] = ACTIONS(1893), + [aux_sym_cmd_identifier_token2] = ACTIONS(1895), + [aux_sym_cmd_identifier_token3] = ACTIONS(1895), + [aux_sym_cmd_identifier_token4] = ACTIONS(1895), + [aux_sym_cmd_identifier_token5] = ACTIONS(1895), + [aux_sym_cmd_identifier_token6] = ACTIONS(1895), + [aux_sym_cmd_identifier_token7] = ACTIONS(1895), + [aux_sym_cmd_identifier_token8] = ACTIONS(1893), + [aux_sym_cmd_identifier_token9] = ACTIONS(1893), + [aux_sym_cmd_identifier_token10] = ACTIONS(1895), + [aux_sym_cmd_identifier_token11] = ACTIONS(1895), + [aux_sym_cmd_identifier_token12] = ACTIONS(1893), + [aux_sym_cmd_identifier_token13] = ACTIONS(1893), + [aux_sym_cmd_identifier_token14] = ACTIONS(1893), + [aux_sym_cmd_identifier_token15] = ACTIONS(1893), + [aux_sym_cmd_identifier_token16] = ACTIONS(1895), + [aux_sym_cmd_identifier_token17] = ACTIONS(1895), + [aux_sym_cmd_identifier_token18] = ACTIONS(1895), + [aux_sym_cmd_identifier_token19] = ACTIONS(1895), + [aux_sym_cmd_identifier_token20] = ACTIONS(1895), + [aux_sym_cmd_identifier_token21] = ACTIONS(1895), + [aux_sym_cmd_identifier_token22] = ACTIONS(1895), + [aux_sym_cmd_identifier_token23] = ACTIONS(1895), + [aux_sym_cmd_identifier_token24] = ACTIONS(1895), + [aux_sym_cmd_identifier_token25] = ACTIONS(1895), + [aux_sym_cmd_identifier_token26] = ACTIONS(1895), + [aux_sym_cmd_identifier_token27] = ACTIONS(1895), + [aux_sym_cmd_identifier_token28] = ACTIONS(1895), + [aux_sym_cmd_identifier_token29] = ACTIONS(1895), + [aux_sym_cmd_identifier_token30] = ACTIONS(1895), + [aux_sym_cmd_identifier_token31] = ACTIONS(1895), + [aux_sym_cmd_identifier_token32] = ACTIONS(1895), + [aux_sym_cmd_identifier_token33] = ACTIONS(1895), + [aux_sym_cmd_identifier_token34] = ACTIONS(1893), + [aux_sym_cmd_identifier_token35] = ACTIONS(1895), + [aux_sym_cmd_identifier_token36] = ACTIONS(1895), + [aux_sym_cmd_identifier_token37] = ACTIONS(1895), + [aux_sym_cmd_identifier_token38] = ACTIONS(1893), + [aux_sym_cmd_identifier_token39] = ACTIONS(1895), + [aux_sym_cmd_identifier_token40] = ACTIONS(1895), + [anon_sym_def] = ACTIONS(1893), + [anon_sym_export_DASHenv] = ACTIONS(1893), + [anon_sym_extern] = ACTIONS(1893), + [anon_sym_module] = ACTIONS(1893), + [anon_sym_use] = ACTIONS(1893), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_COMMA] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1895), + [anon_sym_error] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_break] = ACTIONS(1893), + [anon_sym_continue] = ACTIONS(1893), + [anon_sym_for] = ACTIONS(1893), + [anon_sym_in2] = ACTIONS(1893), + [anon_sym_loop] = ACTIONS(1893), + [anon_sym_make] = ACTIONS(1893), + [anon_sym_while] = ACTIONS(1893), + [anon_sym_do] = ACTIONS(1893), + [anon_sym_if] = ACTIONS(1893), + [anon_sym_else] = ACTIONS(1893), + [anon_sym_match] = ACTIONS(1893), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_try] = ACTIONS(1893), + [anon_sym_catch] = ACTIONS(1893), + [anon_sym_return] = ACTIONS(1893), + [anon_sym_source] = ACTIONS(1893), + [anon_sym_source_DASHenv] = ACTIONS(1893), + [anon_sym_register] = ACTIONS(1893), + [anon_sym_hide] = ACTIONS(1893), + [anon_sym_hide_DASHenv] = ACTIONS(1893), + [anon_sym_overlay] = ACTIONS(1893), + [anon_sym_as] = ACTIONS(1893), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [aux_sym__val_number_token4] = ACTIONS(1893), + [aux_sym__val_number_token5] = ACTIONS(1893), + [aux_sym__val_number_token6] = ACTIONS(1893), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [447] = { + [sym_cell_path] = STATE(747), + [sym_path] = STATE(549), + [sym_comment] = STATE(447), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1901), + [anon_sym_alias] = ACTIONS(1901), + [anon_sym_let] = ACTIONS(1901), + [anon_sym_let_DASHenv] = ACTIONS(1901), + [anon_sym_mut] = ACTIONS(1901), + [anon_sym_const] = ACTIONS(1901), + [aux_sym_cmd_identifier_token1] = ACTIONS(1901), + [aux_sym_cmd_identifier_token2] = ACTIONS(1903), + [aux_sym_cmd_identifier_token3] = ACTIONS(1903), + [aux_sym_cmd_identifier_token4] = ACTIONS(1903), + [aux_sym_cmd_identifier_token5] = ACTIONS(1903), + [aux_sym_cmd_identifier_token6] = ACTIONS(1903), + [aux_sym_cmd_identifier_token7] = ACTIONS(1903), + [aux_sym_cmd_identifier_token8] = ACTIONS(1901), + [aux_sym_cmd_identifier_token9] = ACTIONS(1901), + [aux_sym_cmd_identifier_token10] = ACTIONS(1903), + [aux_sym_cmd_identifier_token11] = ACTIONS(1903), + [aux_sym_cmd_identifier_token12] = ACTIONS(1901), + [aux_sym_cmd_identifier_token13] = ACTIONS(1901), + [aux_sym_cmd_identifier_token14] = ACTIONS(1901), + [aux_sym_cmd_identifier_token15] = ACTIONS(1901), + [aux_sym_cmd_identifier_token16] = ACTIONS(1903), + [aux_sym_cmd_identifier_token17] = ACTIONS(1903), + [aux_sym_cmd_identifier_token18] = ACTIONS(1903), + [aux_sym_cmd_identifier_token19] = ACTIONS(1903), + [aux_sym_cmd_identifier_token20] = ACTIONS(1903), + [aux_sym_cmd_identifier_token21] = ACTIONS(1903), + [aux_sym_cmd_identifier_token22] = ACTIONS(1903), + [aux_sym_cmd_identifier_token23] = ACTIONS(1903), + [aux_sym_cmd_identifier_token24] = ACTIONS(1903), + [aux_sym_cmd_identifier_token25] = ACTIONS(1903), + [aux_sym_cmd_identifier_token26] = ACTIONS(1903), + [aux_sym_cmd_identifier_token27] = ACTIONS(1903), + [aux_sym_cmd_identifier_token28] = ACTIONS(1903), + [aux_sym_cmd_identifier_token29] = ACTIONS(1903), + [aux_sym_cmd_identifier_token30] = ACTIONS(1903), + [aux_sym_cmd_identifier_token31] = ACTIONS(1903), + [aux_sym_cmd_identifier_token32] = ACTIONS(1903), + [aux_sym_cmd_identifier_token33] = ACTIONS(1903), + [aux_sym_cmd_identifier_token34] = ACTIONS(1901), + [aux_sym_cmd_identifier_token35] = ACTIONS(1903), + [aux_sym_cmd_identifier_token36] = ACTIONS(1903), + [aux_sym_cmd_identifier_token37] = ACTIONS(1903), + [aux_sym_cmd_identifier_token38] = ACTIONS(1901), + [aux_sym_cmd_identifier_token39] = ACTIONS(1903), + [aux_sym_cmd_identifier_token40] = ACTIONS(1903), + [anon_sym_def] = ACTIONS(1901), + [anon_sym_export_DASHenv] = ACTIONS(1901), + [anon_sym_extern] = ACTIONS(1901), + [anon_sym_module] = ACTIONS(1901), + [anon_sym_use] = ACTIONS(1901), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_COMMA] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1903), + [anon_sym_error] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_break] = ACTIONS(1901), + [anon_sym_continue] = ACTIONS(1901), + [anon_sym_for] = ACTIONS(1901), + [anon_sym_in2] = ACTIONS(1901), + [anon_sym_loop] = ACTIONS(1901), + [anon_sym_make] = ACTIONS(1901), + [anon_sym_while] = ACTIONS(1901), + [anon_sym_do] = ACTIONS(1901), + [anon_sym_if] = ACTIONS(1901), + [anon_sym_else] = ACTIONS(1901), + [anon_sym_match] = ACTIONS(1901), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_try] = ACTIONS(1901), + [anon_sym_catch] = ACTIONS(1901), + [anon_sym_return] = ACTIONS(1901), + [anon_sym_source] = ACTIONS(1901), + [anon_sym_source_DASHenv] = ACTIONS(1901), + [anon_sym_register] = ACTIONS(1901), + [anon_sym_hide] = ACTIONS(1901), + [anon_sym_hide_DASHenv] = ACTIONS(1901), + [anon_sym_overlay] = ACTIONS(1901), + [anon_sym_as] = ACTIONS(1901), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1901), + [aux_sym__val_number_token5] = ACTIONS(1901), + [aux_sym__val_number_token6] = ACTIONS(1901), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1903), + }, + [448] = { + [sym_cell_path] = STATE(704), + [sym_path] = STATE(549), + [sym_comment] = STATE(448), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [449] = { + [sym_comment] = STATE(449), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), + }, + [450] = { + [sym_path] = STATE(556), + [sym_comment] = STATE(450), + [aux_sym_cell_path_repeat1] = STATE(456), [anon_sym_export] = ACTIONS(948), [anon_sym_alias] = ACTIONS(948), [anon_sym_let] = ACTIONS(948), @@ -128969,6 +129622,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(948), [anon_sym_use] = ACTIONS(948), [anon_sym_LPAREN] = ACTIONS(948), + [anon_sym_COMMA] = ACTIONS(948), [anon_sym_DOLLAR] = ACTIONS(948), [anon_sym_error] = ACTIONS(948), [anon_sym_DASH2] = ACTIONS(948), @@ -129012,12 +129666,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(948), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(948), [sym__entry_separator] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(1898), + [anon_sym_DOT2] = ACTIONS(1829), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(950), }, - [446] = { - [sym_comment] = STATE(446), + [451] = { + [sym_comment] = STATE(451), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -129070,6 +129724,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1018), [anon_sym_use] = ACTIONS(1018), [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1018), [anon_sym_DOLLAR] = ACTIONS(1018), [anon_sym_error] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(1018), @@ -129119,113 +129774,426 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1020), }, - [447] = { - [sym_comment] = STATE(447), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), + [452] = { + [sym_comment] = STATE(452), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(2055), + [aux_sym__immediate_decimal_token2] = ACTIONS(2057), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [453] = { + [sym_comment] = STATE(453), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(1992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [454] = { + [sym_comment] = STATE(454), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2059), + [aux_sym_cmd_identifier_token3] = ACTIONS(2059), + [aux_sym_cmd_identifier_token4] = ACTIONS(2059), + [aux_sym_cmd_identifier_token5] = ACTIONS(2059), + [aux_sym_cmd_identifier_token6] = ACTIONS(2059), + [aux_sym_cmd_identifier_token7] = ACTIONS(2059), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2059), + [aux_sym_cmd_identifier_token17] = ACTIONS(2059), + [aux_sym_cmd_identifier_token18] = ACTIONS(2059), + [aux_sym_cmd_identifier_token19] = ACTIONS(2059), + [aux_sym_cmd_identifier_token20] = ACTIONS(2059), + [aux_sym_cmd_identifier_token21] = ACTIONS(2059), + [aux_sym_cmd_identifier_token22] = ACTIONS(2059), + [aux_sym_cmd_identifier_token23] = ACTIONS(2059), + [aux_sym_cmd_identifier_token24] = ACTIONS(2059), + [aux_sym_cmd_identifier_token25] = ACTIONS(2059), + [aux_sym_cmd_identifier_token26] = ACTIONS(2059), + [aux_sym_cmd_identifier_token27] = ACTIONS(2059), + [aux_sym_cmd_identifier_token28] = ACTIONS(2059), + [aux_sym_cmd_identifier_token29] = ACTIONS(2059), + [aux_sym_cmd_identifier_token30] = ACTIONS(2059), + [aux_sym_cmd_identifier_token31] = ACTIONS(2059), + [aux_sym_cmd_identifier_token32] = ACTIONS(2059), + [aux_sym_cmd_identifier_token33] = ACTIONS(2059), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [aux_sym_cmd_identifier_token37] = ACTIONS(2059), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2059), + [aux_sym_cmd_identifier_token40] = ACTIONS(2059), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_DASH2] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in2] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_PLUS2] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), + [anon_sym_DOT_DOT2] = ACTIONS(2061), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2063), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2063), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2059), + [aux_sym__val_number_decimal_token4] = ACTIONS(2059), + [aux_sym__val_number_token1] = ACTIONS(2059), + [aux_sym__val_number_token2] = ACTIONS(2059), + [aux_sym__val_number_token3] = ACTIONS(2059), + [aux_sym__val_number_token4] = ACTIONS(2059), + [aux_sym__val_number_token5] = ACTIONS(2059), + [aux_sym__val_number_token6] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym__str_single_quotes] = ACTIONS(2059), + [sym__str_back_ticks] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), + [sym__entry_separator] = ACTIONS(2065), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(2065), }, - [448] = { - [sym_path] = STATE(557), - [sym_comment] = STATE(448), - [aux_sym_cell_path_repeat1] = STATE(448), + [455] = { + [sym_comment] = STATE(455), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(2067), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [456] = { + [sym_path] = STATE(556), + [sym_comment] = STATE(456), + [aux_sym_cell_path_repeat1] = STATE(456), [anon_sym_export] = ACTIONS(941), [anon_sym_alias] = ACTIONS(941), [anon_sym_let] = ACTIONS(941), @@ -129278,6 +130246,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(941), [anon_sym_use] = ACTIONS(941), [anon_sym_LPAREN] = ACTIONS(941), + [anon_sym_COMMA] = ACTIONS(941), [anon_sym_DOLLAR] = ACTIONS(941), [anon_sym_error] = ACTIONS(941), [anon_sym_DASH2] = ACTIONS(941), @@ -129321,115 +130290,220 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(941), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(941), [sym__entry_separator] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(2099), + [anon_sym_DOT2] = ACTIONS(2069), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(943), }, - [449] = { - [sym_comment] = STATE(449), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), + [457] = { + [sym_cell_path] = STATE(705), + [sym_path] = STATE(549), + [sym_comment] = STATE(457), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1986), + [anon_sym_alias] = ACTIONS(1986), + [anon_sym_let] = ACTIONS(1986), + [anon_sym_let_DASHenv] = ACTIONS(1986), + [anon_sym_mut] = ACTIONS(1986), + [anon_sym_const] = ACTIONS(1986), + [aux_sym_cmd_identifier_token1] = ACTIONS(1986), + [aux_sym_cmd_identifier_token2] = ACTIONS(1988), + [aux_sym_cmd_identifier_token3] = ACTIONS(1988), + [aux_sym_cmd_identifier_token4] = ACTIONS(1988), + [aux_sym_cmd_identifier_token5] = ACTIONS(1988), + [aux_sym_cmd_identifier_token6] = ACTIONS(1988), + [aux_sym_cmd_identifier_token7] = ACTIONS(1988), + [aux_sym_cmd_identifier_token8] = ACTIONS(1986), + [aux_sym_cmd_identifier_token9] = ACTIONS(1986), + [aux_sym_cmd_identifier_token10] = ACTIONS(1988), + [aux_sym_cmd_identifier_token11] = ACTIONS(1988), + [aux_sym_cmd_identifier_token12] = ACTIONS(1986), + [aux_sym_cmd_identifier_token13] = ACTIONS(1986), + [aux_sym_cmd_identifier_token14] = ACTIONS(1986), + [aux_sym_cmd_identifier_token15] = ACTIONS(1986), + [aux_sym_cmd_identifier_token16] = ACTIONS(1988), + [aux_sym_cmd_identifier_token17] = ACTIONS(1988), + [aux_sym_cmd_identifier_token18] = ACTIONS(1988), + [aux_sym_cmd_identifier_token19] = ACTIONS(1988), + [aux_sym_cmd_identifier_token20] = ACTIONS(1988), + [aux_sym_cmd_identifier_token21] = ACTIONS(1988), + [aux_sym_cmd_identifier_token22] = ACTIONS(1988), + [aux_sym_cmd_identifier_token23] = ACTIONS(1988), + [aux_sym_cmd_identifier_token24] = ACTIONS(1988), + [aux_sym_cmd_identifier_token25] = ACTIONS(1988), + [aux_sym_cmd_identifier_token26] = ACTIONS(1988), + [aux_sym_cmd_identifier_token27] = ACTIONS(1988), + [aux_sym_cmd_identifier_token28] = ACTIONS(1988), + [aux_sym_cmd_identifier_token29] = ACTIONS(1988), + [aux_sym_cmd_identifier_token30] = ACTIONS(1988), + [aux_sym_cmd_identifier_token31] = ACTIONS(1988), + [aux_sym_cmd_identifier_token32] = ACTIONS(1988), + [aux_sym_cmd_identifier_token33] = ACTIONS(1988), + [aux_sym_cmd_identifier_token34] = ACTIONS(1986), + [aux_sym_cmd_identifier_token35] = ACTIONS(1988), + [aux_sym_cmd_identifier_token36] = ACTIONS(1988), + [aux_sym_cmd_identifier_token37] = ACTIONS(1988), + [aux_sym_cmd_identifier_token38] = ACTIONS(1986), + [aux_sym_cmd_identifier_token39] = ACTIONS(1988), + [aux_sym_cmd_identifier_token40] = ACTIONS(1988), + [anon_sym_def] = ACTIONS(1986), + [anon_sym_export_DASHenv] = ACTIONS(1986), + [anon_sym_extern] = ACTIONS(1986), + [anon_sym_module] = ACTIONS(1986), + [anon_sym_use] = ACTIONS(1986), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_COMMA] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1988), + [anon_sym_error] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_break] = ACTIONS(1986), + [anon_sym_continue] = ACTIONS(1986), + [anon_sym_for] = ACTIONS(1986), + [anon_sym_in2] = ACTIONS(1986), + [anon_sym_loop] = ACTIONS(1986), + [anon_sym_make] = ACTIONS(1986), + [anon_sym_while] = ACTIONS(1986), + [anon_sym_do] = ACTIONS(1986), + [anon_sym_if] = ACTIONS(1986), + [anon_sym_else] = ACTIONS(1986), + [anon_sym_match] = ACTIONS(1986), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_try] = ACTIONS(1986), + [anon_sym_catch] = ACTIONS(1986), + [anon_sym_return] = ACTIONS(1986), + [anon_sym_source] = ACTIONS(1986), + [anon_sym_source_DASHenv] = ACTIONS(1986), + [anon_sym_register] = ACTIONS(1986), + [anon_sym_hide] = ACTIONS(1986), + [anon_sym_hide_DASHenv] = ACTIONS(1986), + [anon_sym_overlay] = ACTIONS(1986), + [anon_sym_as] = ACTIONS(1986), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1986), + [aux_sym__val_number_token5] = ACTIONS(1986), + [aux_sym__val_number_token6] = ACTIONS(1986), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1988), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1988), + }, + [458] = { + [sym_comment] = STATE(458), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [sym_raw_string_begin] = ACTIONS(990), }, - [450] = { - [sym_comment] = STATE(450), + [459] = { + [sym_comment] = STATE(459), [anon_sym_export] = ACTIONS(980), [anon_sym_alias] = ACTIONS(980), [anon_sym_let] = ACTIONS(980), @@ -129457,4099 +130531,2891 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token19] = ACTIONS(982), [aux_sym_cmd_identifier_token20] = ACTIONS(982), [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [451] = { - [sym_cell_path] = STATE(708), - [sym_path] = STATE(656), - [sym_comment] = STATE(451), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2005), - [anon_sym_alias] = ACTIONS(2005), - [anon_sym_let] = ACTIONS(2005), - [anon_sym_let_DASHenv] = ACTIONS(2005), - [anon_sym_mut] = ACTIONS(2005), - [anon_sym_const] = ACTIONS(2005), - [aux_sym_cmd_identifier_token1] = ACTIONS(2005), - [aux_sym_cmd_identifier_token2] = ACTIONS(2007), - [aux_sym_cmd_identifier_token3] = ACTIONS(2007), - [aux_sym_cmd_identifier_token4] = ACTIONS(2007), - [aux_sym_cmd_identifier_token5] = ACTIONS(2007), - [aux_sym_cmd_identifier_token6] = ACTIONS(2007), - [aux_sym_cmd_identifier_token7] = ACTIONS(2007), - [aux_sym_cmd_identifier_token8] = ACTIONS(2005), - [aux_sym_cmd_identifier_token9] = ACTIONS(2005), - [aux_sym_cmd_identifier_token10] = ACTIONS(2007), - [aux_sym_cmd_identifier_token11] = ACTIONS(2007), - [aux_sym_cmd_identifier_token12] = ACTIONS(2005), - [aux_sym_cmd_identifier_token13] = ACTIONS(2005), - [aux_sym_cmd_identifier_token14] = ACTIONS(2005), - [aux_sym_cmd_identifier_token15] = ACTIONS(2005), - [aux_sym_cmd_identifier_token16] = ACTIONS(2007), - [aux_sym_cmd_identifier_token17] = ACTIONS(2007), - [aux_sym_cmd_identifier_token18] = ACTIONS(2007), - [aux_sym_cmd_identifier_token19] = ACTIONS(2007), - [aux_sym_cmd_identifier_token20] = ACTIONS(2007), - [aux_sym_cmd_identifier_token21] = ACTIONS(2007), - [aux_sym_cmd_identifier_token22] = ACTIONS(2007), - [aux_sym_cmd_identifier_token23] = ACTIONS(2007), - [aux_sym_cmd_identifier_token24] = ACTIONS(2007), - [aux_sym_cmd_identifier_token25] = ACTIONS(2007), - [aux_sym_cmd_identifier_token26] = ACTIONS(2007), - [aux_sym_cmd_identifier_token27] = ACTIONS(2007), - [aux_sym_cmd_identifier_token28] = ACTIONS(2007), - [aux_sym_cmd_identifier_token29] = ACTIONS(2007), - [aux_sym_cmd_identifier_token30] = ACTIONS(2007), - [aux_sym_cmd_identifier_token31] = ACTIONS(2007), - [aux_sym_cmd_identifier_token32] = ACTIONS(2007), - [aux_sym_cmd_identifier_token33] = ACTIONS(2007), - [aux_sym_cmd_identifier_token34] = ACTIONS(2005), - [aux_sym_cmd_identifier_token35] = ACTIONS(2007), - [aux_sym_cmd_identifier_token36] = ACTIONS(2007), - [aux_sym_cmd_identifier_token37] = ACTIONS(2007), - [aux_sym_cmd_identifier_token38] = ACTIONS(2005), - [aux_sym_cmd_identifier_token39] = ACTIONS(2007), - [aux_sym_cmd_identifier_token40] = ACTIONS(2007), - [anon_sym_def] = ACTIONS(2005), - [anon_sym_export_DASHenv] = ACTIONS(2005), - [anon_sym_extern] = ACTIONS(2005), - [anon_sym_module] = ACTIONS(2005), - [anon_sym_use] = ACTIONS(2005), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2007), - [anon_sym_error] = ACTIONS(2005), - [anon_sym_DASH2] = ACTIONS(2005), - [anon_sym_break] = ACTIONS(2005), - [anon_sym_continue] = ACTIONS(2005), - [anon_sym_for] = ACTIONS(2005), - [anon_sym_in2] = ACTIONS(2005), - [anon_sym_loop] = ACTIONS(2005), - [anon_sym_make] = ACTIONS(2005), - [anon_sym_while] = ACTIONS(2005), - [anon_sym_do] = ACTIONS(2005), - [anon_sym_if] = ACTIONS(2005), - [anon_sym_else] = ACTIONS(2005), - [anon_sym_match] = ACTIONS(2005), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_try] = ACTIONS(2005), - [anon_sym_catch] = ACTIONS(2005), - [anon_sym_return] = ACTIONS(2005), - [anon_sym_source] = ACTIONS(2005), - [anon_sym_source_DASHenv] = ACTIONS(2005), - [anon_sym_register] = ACTIONS(2005), - [anon_sym_hide] = ACTIONS(2005), - [anon_sym_hide_DASHenv] = ACTIONS(2005), - [anon_sym_overlay] = ACTIONS(2005), - [anon_sym_as] = ACTIONS(2005), - [anon_sym_PLUS2] = ACTIONS(2005), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2005), - [aux_sym__val_number_token5] = ACTIONS(2005), - [aux_sym__val_number_token6] = ACTIONS(2005), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2007), - }, - [452] = { - [sym_cell_path] = STATE(696), - [sym_path] = STATE(656), - [sym_comment] = STATE(452), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), - }, - [453] = { - [sym_cell_path] = STATE(709), - [sym_path] = STATE(656), - [sym_comment] = STATE(453), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2011), - [aux_sym_cmd_identifier_token3] = ACTIONS(2011), - [aux_sym_cmd_identifier_token4] = ACTIONS(2011), - [aux_sym_cmd_identifier_token5] = ACTIONS(2011), - [aux_sym_cmd_identifier_token6] = ACTIONS(2011), - [aux_sym_cmd_identifier_token7] = ACTIONS(2011), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2011), - [aux_sym_cmd_identifier_token11] = ACTIONS(2011), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2011), - [aux_sym_cmd_identifier_token17] = ACTIONS(2011), - [aux_sym_cmd_identifier_token18] = ACTIONS(2011), - [aux_sym_cmd_identifier_token19] = ACTIONS(2011), - [aux_sym_cmd_identifier_token20] = ACTIONS(2011), - [aux_sym_cmd_identifier_token21] = ACTIONS(2011), - [aux_sym_cmd_identifier_token22] = ACTIONS(2011), - [aux_sym_cmd_identifier_token23] = ACTIONS(2011), - [aux_sym_cmd_identifier_token24] = ACTIONS(2011), - [aux_sym_cmd_identifier_token25] = ACTIONS(2011), - [aux_sym_cmd_identifier_token26] = ACTIONS(2011), - [aux_sym_cmd_identifier_token27] = ACTIONS(2011), - [aux_sym_cmd_identifier_token28] = ACTIONS(2011), - [aux_sym_cmd_identifier_token29] = ACTIONS(2011), - [aux_sym_cmd_identifier_token30] = ACTIONS(2011), - [aux_sym_cmd_identifier_token31] = ACTIONS(2011), - [aux_sym_cmd_identifier_token32] = ACTIONS(2011), - [aux_sym_cmd_identifier_token33] = ACTIONS(2011), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2011), - [aux_sym_cmd_identifier_token36] = ACTIONS(2011), - [aux_sym_cmd_identifier_token37] = ACTIONS(2011), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2011), - [aux_sym_cmd_identifier_token40] = ACTIONS(2011), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2011), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2011), - }, - [454] = { - [sym_cell_path] = STATE(710), - [sym_path] = STATE(656), - [sym_comment] = STATE(454), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2091), - [aux_sym_cmd_identifier_token3] = ACTIONS(2091), - [aux_sym_cmd_identifier_token4] = ACTIONS(2091), - [aux_sym_cmd_identifier_token5] = ACTIONS(2091), - [aux_sym_cmd_identifier_token6] = ACTIONS(2091), - [aux_sym_cmd_identifier_token7] = ACTIONS(2091), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2091), - [aux_sym_cmd_identifier_token11] = ACTIONS(2091), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2091), - [aux_sym_cmd_identifier_token17] = ACTIONS(2091), - [aux_sym_cmd_identifier_token18] = ACTIONS(2091), - [aux_sym_cmd_identifier_token19] = ACTIONS(2091), - [aux_sym_cmd_identifier_token20] = ACTIONS(2091), - [aux_sym_cmd_identifier_token21] = ACTIONS(2091), - [aux_sym_cmd_identifier_token22] = ACTIONS(2091), - [aux_sym_cmd_identifier_token23] = ACTIONS(2091), - [aux_sym_cmd_identifier_token24] = ACTIONS(2091), - [aux_sym_cmd_identifier_token25] = ACTIONS(2091), - [aux_sym_cmd_identifier_token26] = ACTIONS(2091), - [aux_sym_cmd_identifier_token27] = ACTIONS(2091), - [aux_sym_cmd_identifier_token28] = ACTIONS(2091), - [aux_sym_cmd_identifier_token29] = ACTIONS(2091), - [aux_sym_cmd_identifier_token30] = ACTIONS(2091), - [aux_sym_cmd_identifier_token31] = ACTIONS(2091), - [aux_sym_cmd_identifier_token32] = ACTIONS(2091), - [aux_sym_cmd_identifier_token33] = ACTIONS(2091), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2091), - [aux_sym_cmd_identifier_token36] = ACTIONS(2091), - [aux_sym_cmd_identifier_token37] = ACTIONS(2091), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2091), - [aux_sym_cmd_identifier_token40] = ACTIONS(2091), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(2091), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2091), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2091), - }, - [455] = { - [sym_comment] = STATE(455), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [456] = { - [sym_comment] = STATE(456), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [aux_sym__immediate_decimal_token2] = ACTIONS(1912), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [457] = { - [sym_comment] = STATE(457), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [458] = { - [sym_comment] = STATE(458), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [sym__entry_separator] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [459] = { - [sym_comment] = STATE(459), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_alias] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_let_DASHenv] = ACTIONS(2102), - [anon_sym_mut] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [aux_sym_cmd_identifier_token1] = ACTIONS(2102), - [aux_sym_cmd_identifier_token2] = ACTIONS(2102), - [aux_sym_cmd_identifier_token3] = ACTIONS(2102), - [aux_sym_cmd_identifier_token4] = ACTIONS(2102), - [aux_sym_cmd_identifier_token5] = ACTIONS(2102), - [aux_sym_cmd_identifier_token6] = ACTIONS(2102), - [aux_sym_cmd_identifier_token7] = ACTIONS(2102), - [aux_sym_cmd_identifier_token8] = ACTIONS(2102), - [aux_sym_cmd_identifier_token9] = ACTIONS(2102), - [aux_sym_cmd_identifier_token10] = ACTIONS(2102), - [aux_sym_cmd_identifier_token11] = ACTIONS(2102), - [aux_sym_cmd_identifier_token12] = ACTIONS(2102), - [aux_sym_cmd_identifier_token13] = ACTIONS(2102), - [aux_sym_cmd_identifier_token14] = ACTIONS(2102), - [aux_sym_cmd_identifier_token15] = ACTIONS(2102), - [aux_sym_cmd_identifier_token16] = ACTIONS(2102), - [aux_sym_cmd_identifier_token17] = ACTIONS(2102), - [aux_sym_cmd_identifier_token18] = ACTIONS(2102), - [aux_sym_cmd_identifier_token19] = ACTIONS(2102), - [aux_sym_cmd_identifier_token20] = ACTIONS(2102), - [aux_sym_cmd_identifier_token21] = ACTIONS(2102), - [aux_sym_cmd_identifier_token22] = ACTIONS(2102), - [aux_sym_cmd_identifier_token23] = ACTIONS(2102), - [aux_sym_cmd_identifier_token24] = ACTIONS(2102), - [aux_sym_cmd_identifier_token25] = ACTIONS(2102), - [aux_sym_cmd_identifier_token26] = ACTIONS(2102), - [aux_sym_cmd_identifier_token27] = ACTIONS(2102), - [aux_sym_cmd_identifier_token28] = ACTIONS(2102), - [aux_sym_cmd_identifier_token29] = ACTIONS(2102), - [aux_sym_cmd_identifier_token30] = ACTIONS(2102), - [aux_sym_cmd_identifier_token31] = ACTIONS(2102), - [aux_sym_cmd_identifier_token32] = ACTIONS(2102), - [aux_sym_cmd_identifier_token33] = ACTIONS(2102), - [aux_sym_cmd_identifier_token34] = ACTIONS(2102), - [aux_sym_cmd_identifier_token35] = ACTIONS(2102), - [aux_sym_cmd_identifier_token36] = ACTIONS(2102), - [aux_sym_cmd_identifier_token37] = ACTIONS(2102), - [aux_sym_cmd_identifier_token38] = ACTIONS(2102), - [aux_sym_cmd_identifier_token39] = ACTIONS(2102), - [aux_sym_cmd_identifier_token40] = ACTIONS(2102), - [anon_sym_def] = ACTIONS(2102), - [anon_sym_export_DASHenv] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_use] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2102), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_error] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_in2] = ACTIONS(2102), - [anon_sym_loop] = ACTIONS(2102), - [anon_sym_make] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_match] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2102), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_source] = ACTIONS(2102), - [anon_sym_source_DASHenv] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_hide] = ACTIONS(2102), - [anon_sym_hide_DASHenv] = ACTIONS(2102), - [anon_sym_overlay] = ACTIONS(2102), - [anon_sym_as] = ACTIONS(2102), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2102), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2102), - [aux_sym__val_number_decimal_token1] = ACTIONS(2102), - [aux_sym__val_number_decimal_token2] = ACTIONS(2102), - [aux_sym__val_number_decimal_token3] = ACTIONS(2102), - [aux_sym__val_number_decimal_token4] = ACTIONS(2102), - [aux_sym__val_number_token1] = ACTIONS(2102), - [aux_sym__val_number_token2] = ACTIONS(2102), - [aux_sym__val_number_token3] = ACTIONS(2102), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2102), - [sym__str_single_quotes] = ACTIONS(2102), - [sym__str_back_ticks] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2102), - [sym__entry_separator] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2104), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), }, [460] = { [sym_comment] = STATE(460), - [anon_sym_export] = ACTIONS(964), - [anon_sym_alias] = ACTIONS(964), - [anon_sym_let] = ACTIONS(964), - [anon_sym_let_DASHenv] = ACTIONS(964), - [anon_sym_mut] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [aux_sym_cmd_identifier_token1] = ACTIONS(964), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(964), - [aux_sym_cmd_identifier_token9] = ACTIONS(964), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(964), - [aux_sym_cmd_identifier_token13] = ACTIONS(964), - [aux_sym_cmd_identifier_token14] = ACTIONS(964), - [aux_sym_cmd_identifier_token15] = ACTIONS(964), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(964), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [aux_sym_cmd_identifier_token37] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(964), - [anon_sym_export_DASHenv] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_module] = ACTIONS(964), - [anon_sym_use] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_COMMA] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_loop] = ACTIONS(964), - [anon_sym_make] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(964), - [anon_sym_catch] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_source] = ACTIONS(964), - [anon_sym_source_DASHenv] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_hide] = ACTIONS(964), - [anon_sym_hide_DASHenv] = ACTIONS(964), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_as] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(964), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [anon_sym_COLON2] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(966), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_alias] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_let_DASHenv] = ACTIONS(2072), + [anon_sym_mut] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [aux_sym_cmd_identifier_token1] = ACTIONS(2072), + [aux_sym_cmd_identifier_token2] = ACTIONS(2072), + [aux_sym_cmd_identifier_token3] = ACTIONS(2072), + [aux_sym_cmd_identifier_token4] = ACTIONS(2072), + [aux_sym_cmd_identifier_token5] = ACTIONS(2072), + [aux_sym_cmd_identifier_token6] = ACTIONS(2072), + [aux_sym_cmd_identifier_token7] = ACTIONS(2072), + [aux_sym_cmd_identifier_token8] = ACTIONS(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2072), + [aux_sym_cmd_identifier_token11] = ACTIONS(2072), + [aux_sym_cmd_identifier_token12] = ACTIONS(2072), + [aux_sym_cmd_identifier_token13] = ACTIONS(2072), + [aux_sym_cmd_identifier_token14] = ACTIONS(2072), + [aux_sym_cmd_identifier_token15] = ACTIONS(2072), + [aux_sym_cmd_identifier_token16] = ACTIONS(2072), + [aux_sym_cmd_identifier_token17] = ACTIONS(2072), + [aux_sym_cmd_identifier_token18] = ACTIONS(2072), + [aux_sym_cmd_identifier_token19] = ACTIONS(2072), + [aux_sym_cmd_identifier_token20] = ACTIONS(2072), + [aux_sym_cmd_identifier_token21] = ACTIONS(2072), + [aux_sym_cmd_identifier_token22] = ACTIONS(2072), + [aux_sym_cmd_identifier_token23] = ACTIONS(2072), + [aux_sym_cmd_identifier_token24] = ACTIONS(2072), + [aux_sym_cmd_identifier_token25] = ACTIONS(2072), + [aux_sym_cmd_identifier_token26] = ACTIONS(2072), + [aux_sym_cmd_identifier_token27] = ACTIONS(2072), + [aux_sym_cmd_identifier_token28] = ACTIONS(2072), + [aux_sym_cmd_identifier_token29] = ACTIONS(2072), + [aux_sym_cmd_identifier_token30] = ACTIONS(2072), + [aux_sym_cmd_identifier_token31] = ACTIONS(2072), + [aux_sym_cmd_identifier_token32] = ACTIONS(2072), + [aux_sym_cmd_identifier_token33] = ACTIONS(2072), + [aux_sym_cmd_identifier_token34] = ACTIONS(2072), + [aux_sym_cmd_identifier_token35] = ACTIONS(2072), + [aux_sym_cmd_identifier_token36] = ACTIONS(2072), + [aux_sym_cmd_identifier_token37] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2072), + [anon_sym_export_DASHenv] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_COMMA] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_make] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_catch] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_source] = ACTIONS(2072), + [anon_sym_source_DASHenv] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_hide] = ACTIONS(2072), + [anon_sym_hide_DASHenv] = ACTIONS(2072), + [anon_sym_overlay] = ACTIONS(2072), + [anon_sym_as] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT_DOT2] = ACTIONS(2074), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2076), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2076), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [sym__entry_separator] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2078), }, [461] = { [sym_comment] = STATE(461), - [anon_sym_export] = ACTIONS(968), - [anon_sym_alias] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_let_DASHenv] = ACTIONS(968), - [anon_sym_mut] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [aux_sym_cmd_identifier_token1] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(968), - [aux_sym_cmd_identifier_token9] = ACTIONS(968), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(968), - [aux_sym_cmd_identifier_token13] = ACTIONS(968), - [aux_sym_cmd_identifier_token14] = ACTIONS(968), - [aux_sym_cmd_identifier_token15] = ACTIONS(968), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(968), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [aux_sym_cmd_identifier_token37] = ACTIONS(970), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(970), - [aux_sym_cmd_identifier_token40] = ACTIONS(970), - [anon_sym_def] = ACTIONS(968), - [anon_sym_export_DASHenv] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_COMMA] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_make] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_try] = ACTIONS(968), - [anon_sym_catch] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_source] = ACTIONS(968), - [anon_sym_source_DASHenv] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_hide] = ACTIONS(968), - [anon_sym_hide_DASHenv] = ACTIONS(968), - [anon_sym_overlay] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(970), - [anon_sym_PLUS2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(968), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), - [anon_sym_COLON2] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(968), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(970), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_alias] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_let_DASHenv] = ACTIONS(2080), + [anon_sym_mut] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [aux_sym_cmd_identifier_token1] = ACTIONS(2080), + [aux_sym_cmd_identifier_token2] = ACTIONS(2080), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [aux_sym_cmd_identifier_token6] = ACTIONS(2080), + [aux_sym_cmd_identifier_token7] = ACTIONS(2080), + [aux_sym_cmd_identifier_token8] = ACTIONS(2080), + [aux_sym_cmd_identifier_token9] = ACTIONS(2080), + [aux_sym_cmd_identifier_token10] = ACTIONS(2080), + [aux_sym_cmd_identifier_token11] = ACTIONS(2080), + [aux_sym_cmd_identifier_token12] = ACTIONS(2080), + [aux_sym_cmd_identifier_token13] = ACTIONS(2080), + [aux_sym_cmd_identifier_token14] = ACTIONS(2080), + [aux_sym_cmd_identifier_token15] = ACTIONS(2080), + [aux_sym_cmd_identifier_token16] = ACTIONS(2080), + [aux_sym_cmd_identifier_token17] = ACTIONS(2080), + [aux_sym_cmd_identifier_token18] = ACTIONS(2080), + [aux_sym_cmd_identifier_token19] = ACTIONS(2080), + [aux_sym_cmd_identifier_token20] = ACTIONS(2080), + [aux_sym_cmd_identifier_token21] = ACTIONS(2080), + [aux_sym_cmd_identifier_token22] = ACTIONS(2080), + [aux_sym_cmd_identifier_token23] = ACTIONS(2080), + [aux_sym_cmd_identifier_token24] = ACTIONS(2080), + [aux_sym_cmd_identifier_token25] = ACTIONS(2080), + [aux_sym_cmd_identifier_token26] = ACTIONS(2080), + [aux_sym_cmd_identifier_token27] = ACTIONS(2080), + [aux_sym_cmd_identifier_token28] = ACTIONS(2080), + [aux_sym_cmd_identifier_token29] = ACTIONS(2080), + [aux_sym_cmd_identifier_token30] = ACTIONS(2080), + [aux_sym_cmd_identifier_token31] = ACTIONS(2080), + [aux_sym_cmd_identifier_token32] = ACTIONS(2080), + [aux_sym_cmd_identifier_token33] = ACTIONS(2080), + [aux_sym_cmd_identifier_token34] = ACTIONS(2080), + [aux_sym_cmd_identifier_token35] = ACTIONS(2080), + [aux_sym_cmd_identifier_token36] = ACTIONS(2080), + [aux_sym_cmd_identifier_token37] = ACTIONS(2080), + [aux_sym_cmd_identifier_token38] = ACTIONS(2080), + [aux_sym_cmd_identifier_token39] = ACTIONS(2080), + [aux_sym_cmd_identifier_token40] = ACTIONS(2080), + [anon_sym_def] = ACTIONS(2080), + [anon_sym_export_DASHenv] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_COMMA] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_error] = ACTIONS(2080), + [anon_sym_DASH2] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_in2] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_make] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_catch] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_source] = ACTIONS(2080), + [anon_sym_source_DASHenv] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_hide] = ACTIONS(2080), + [anon_sym_hide_DASHenv] = ACTIONS(2080), + [anon_sym_overlay] = ACTIONS(2080), + [anon_sym_as] = ACTIONS(2080), + [anon_sym_PLUS2] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2080), + [anon_sym_DOT_DOT2] = ACTIONS(2082), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2084), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2084), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2080), + [aux_sym__val_number_decimal_token1] = ACTIONS(2080), + [aux_sym__val_number_decimal_token2] = ACTIONS(2080), + [aux_sym__val_number_decimal_token3] = ACTIONS(2080), + [aux_sym__val_number_decimal_token4] = ACTIONS(2080), + [aux_sym__val_number_token1] = ACTIONS(2080), + [aux_sym__val_number_token2] = ACTIONS(2080), + [aux_sym__val_number_token3] = ACTIONS(2080), + [aux_sym__val_number_token4] = ACTIONS(2080), + [aux_sym__val_number_token5] = ACTIONS(2080), + [aux_sym__val_number_token6] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(2080), + [sym__str_single_quotes] = ACTIONS(2080), + [sym__str_back_ticks] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2080), + [sym__entry_separator] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2086), }, [462] = { [sym_comment] = STATE(462), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_COMMA] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [anon_sym_COLON2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [aux_sym__immediate_decimal_token2] = ACTIONS(1996), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, [463] = { [sym_comment] = STATE(463), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_COMMA] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(2088), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [sym__entry_separator] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), }, [464] = { [sym_comment] = STATE(464), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(2106), - [aux_sym__immediate_decimal_token2] = ACTIONS(2108), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, [465] = { - [sym_cell_path] = STATE(695), - [sym_path] = STATE(656), [sym_comment] = STATE(465), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1953), - [anon_sym_alias] = ACTIONS(1953), - [anon_sym_let] = ACTIONS(1953), - [anon_sym_let_DASHenv] = ACTIONS(1953), - [anon_sym_mut] = ACTIONS(1953), - [anon_sym_const] = ACTIONS(1953), - [aux_sym_cmd_identifier_token1] = ACTIONS(1953), - [aux_sym_cmd_identifier_token2] = ACTIONS(1955), - [aux_sym_cmd_identifier_token3] = ACTIONS(1955), - [aux_sym_cmd_identifier_token4] = ACTIONS(1955), - [aux_sym_cmd_identifier_token5] = ACTIONS(1955), - [aux_sym_cmd_identifier_token6] = ACTIONS(1955), - [aux_sym_cmd_identifier_token7] = ACTIONS(1955), - [aux_sym_cmd_identifier_token8] = ACTIONS(1953), - [aux_sym_cmd_identifier_token9] = ACTIONS(1953), - [aux_sym_cmd_identifier_token10] = ACTIONS(1955), - [aux_sym_cmd_identifier_token11] = ACTIONS(1955), - [aux_sym_cmd_identifier_token12] = ACTIONS(1953), - [aux_sym_cmd_identifier_token13] = ACTIONS(1953), - [aux_sym_cmd_identifier_token14] = ACTIONS(1953), - [aux_sym_cmd_identifier_token15] = ACTIONS(1953), - [aux_sym_cmd_identifier_token16] = ACTIONS(1955), - [aux_sym_cmd_identifier_token17] = ACTIONS(1955), - [aux_sym_cmd_identifier_token18] = ACTIONS(1955), - [aux_sym_cmd_identifier_token19] = ACTIONS(1955), - [aux_sym_cmd_identifier_token20] = ACTIONS(1955), - [aux_sym_cmd_identifier_token21] = ACTIONS(1955), - [aux_sym_cmd_identifier_token22] = ACTIONS(1955), - [aux_sym_cmd_identifier_token23] = ACTIONS(1955), - [aux_sym_cmd_identifier_token24] = ACTIONS(1955), - [aux_sym_cmd_identifier_token25] = ACTIONS(1955), - [aux_sym_cmd_identifier_token26] = ACTIONS(1955), - [aux_sym_cmd_identifier_token27] = ACTIONS(1955), - [aux_sym_cmd_identifier_token28] = ACTIONS(1955), - [aux_sym_cmd_identifier_token29] = ACTIONS(1955), - [aux_sym_cmd_identifier_token30] = ACTIONS(1955), - [aux_sym_cmd_identifier_token31] = ACTIONS(1955), - [aux_sym_cmd_identifier_token32] = ACTIONS(1955), - [aux_sym_cmd_identifier_token33] = ACTIONS(1955), - [aux_sym_cmd_identifier_token34] = ACTIONS(1953), - [aux_sym_cmd_identifier_token35] = ACTIONS(1955), - [aux_sym_cmd_identifier_token36] = ACTIONS(1955), - [aux_sym_cmd_identifier_token37] = ACTIONS(1955), - [aux_sym_cmd_identifier_token38] = ACTIONS(1953), - [aux_sym_cmd_identifier_token39] = ACTIONS(1955), - [aux_sym_cmd_identifier_token40] = ACTIONS(1955), - [anon_sym_def] = ACTIONS(1953), - [anon_sym_export_DASHenv] = ACTIONS(1953), - [anon_sym_extern] = ACTIONS(1953), - [anon_sym_module] = ACTIONS(1953), - [anon_sym_use] = ACTIONS(1953), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1955), - [anon_sym_error] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_break] = ACTIONS(1953), - [anon_sym_continue] = ACTIONS(1953), - [anon_sym_for] = ACTIONS(1953), - [anon_sym_in2] = ACTIONS(1953), - [anon_sym_loop] = ACTIONS(1953), - [anon_sym_make] = ACTIONS(1953), - [anon_sym_while] = ACTIONS(1953), - [anon_sym_do] = ACTIONS(1953), - [anon_sym_if] = ACTIONS(1953), - [anon_sym_else] = ACTIONS(1953), - [anon_sym_match] = ACTIONS(1953), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_try] = ACTIONS(1953), - [anon_sym_catch] = ACTIONS(1953), - [anon_sym_return] = ACTIONS(1953), - [anon_sym_source] = ACTIONS(1953), - [anon_sym_source_DASHenv] = ACTIONS(1953), - [anon_sym_register] = ACTIONS(1953), - [anon_sym_hide] = ACTIONS(1953), - [anon_sym_hide_DASHenv] = ACTIONS(1953), - [anon_sym_overlay] = ACTIONS(1953), - [anon_sym_as] = ACTIONS(1953), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1953), - [aux_sym__val_number_token5] = ACTIONS(1953), - [aux_sym__val_number_token6] = ACTIONS(1953), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1733), }, [466] = { [sym_comment] = STATE(466), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(960), - [aux_sym_cmd_identifier_token3] = ACTIONS(960), - [aux_sym_cmd_identifier_token4] = ACTIONS(960), - [aux_sym_cmd_identifier_token5] = ACTIONS(960), - [aux_sym_cmd_identifier_token6] = ACTIONS(960), - [aux_sym_cmd_identifier_token7] = ACTIONS(960), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(960), - [aux_sym_cmd_identifier_token11] = ACTIONS(960), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(960), - [aux_sym_cmd_identifier_token17] = ACTIONS(960), - [aux_sym_cmd_identifier_token18] = ACTIONS(960), - [aux_sym_cmd_identifier_token19] = ACTIONS(960), - [aux_sym_cmd_identifier_token20] = ACTIONS(960), - [aux_sym_cmd_identifier_token21] = ACTIONS(960), - [aux_sym_cmd_identifier_token22] = ACTIONS(960), - [aux_sym_cmd_identifier_token23] = ACTIONS(960), - [aux_sym_cmd_identifier_token24] = ACTIONS(960), - [aux_sym_cmd_identifier_token25] = ACTIONS(960), - [aux_sym_cmd_identifier_token26] = ACTIONS(960), - [aux_sym_cmd_identifier_token27] = ACTIONS(960), - [aux_sym_cmd_identifier_token28] = ACTIONS(960), - [aux_sym_cmd_identifier_token29] = ACTIONS(960), - [aux_sym_cmd_identifier_token30] = ACTIONS(960), - [aux_sym_cmd_identifier_token31] = ACTIONS(960), - [aux_sym_cmd_identifier_token32] = ACTIONS(960), - [aux_sym_cmd_identifier_token33] = ACTIONS(960), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(960), - [aux_sym_cmd_identifier_token36] = ACTIONS(960), - [aux_sym_cmd_identifier_token37] = ACTIONS(960), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(960), - [aux_sym_cmd_identifier_token40] = ACTIONS(960), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_COMMA] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(2110), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), - [anon_sym_COLON2] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(960), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1774), }, [467] = { - [sym_cell_path] = STATE(722), - [sym_path] = STATE(656), [sym_comment] = STATE(467), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1925), - [anon_sym_alias] = ACTIONS(1925), - [anon_sym_let] = ACTIONS(1925), - [anon_sym_let_DASHenv] = ACTIONS(1925), - [anon_sym_mut] = ACTIONS(1925), - [anon_sym_const] = ACTIONS(1925), - [aux_sym_cmd_identifier_token1] = ACTIONS(1925), - [aux_sym_cmd_identifier_token2] = ACTIONS(1927), - [aux_sym_cmd_identifier_token3] = ACTIONS(1927), - [aux_sym_cmd_identifier_token4] = ACTIONS(1927), - [aux_sym_cmd_identifier_token5] = ACTIONS(1927), - [aux_sym_cmd_identifier_token6] = ACTIONS(1927), - [aux_sym_cmd_identifier_token7] = ACTIONS(1927), - [aux_sym_cmd_identifier_token8] = ACTIONS(1925), - [aux_sym_cmd_identifier_token9] = ACTIONS(1925), - [aux_sym_cmd_identifier_token10] = ACTIONS(1927), - [aux_sym_cmd_identifier_token11] = ACTIONS(1927), - [aux_sym_cmd_identifier_token12] = ACTIONS(1925), - [aux_sym_cmd_identifier_token13] = ACTIONS(1925), - [aux_sym_cmd_identifier_token14] = ACTIONS(1925), - [aux_sym_cmd_identifier_token15] = ACTIONS(1925), - [aux_sym_cmd_identifier_token16] = ACTIONS(1927), - [aux_sym_cmd_identifier_token17] = ACTIONS(1927), - [aux_sym_cmd_identifier_token18] = ACTIONS(1927), - [aux_sym_cmd_identifier_token19] = ACTIONS(1927), - [aux_sym_cmd_identifier_token20] = ACTIONS(1927), - [aux_sym_cmd_identifier_token21] = ACTIONS(1927), - [aux_sym_cmd_identifier_token22] = ACTIONS(1927), - [aux_sym_cmd_identifier_token23] = ACTIONS(1927), - [aux_sym_cmd_identifier_token24] = ACTIONS(1927), - [aux_sym_cmd_identifier_token25] = ACTIONS(1927), - [aux_sym_cmd_identifier_token26] = ACTIONS(1927), - [aux_sym_cmd_identifier_token27] = ACTIONS(1927), - [aux_sym_cmd_identifier_token28] = ACTIONS(1927), - [aux_sym_cmd_identifier_token29] = ACTIONS(1927), - [aux_sym_cmd_identifier_token30] = ACTIONS(1927), - [aux_sym_cmd_identifier_token31] = ACTIONS(1927), - [aux_sym_cmd_identifier_token32] = ACTIONS(1927), - [aux_sym_cmd_identifier_token33] = ACTIONS(1927), - [aux_sym_cmd_identifier_token34] = ACTIONS(1925), - [aux_sym_cmd_identifier_token35] = ACTIONS(1927), - [aux_sym_cmd_identifier_token36] = ACTIONS(1927), - [aux_sym_cmd_identifier_token37] = ACTIONS(1927), - [aux_sym_cmd_identifier_token38] = ACTIONS(1925), - [aux_sym_cmd_identifier_token39] = ACTIONS(1927), - [aux_sym_cmd_identifier_token40] = ACTIONS(1927), - [anon_sym_def] = ACTIONS(1925), - [anon_sym_export_DASHenv] = ACTIONS(1925), - [anon_sym_extern] = ACTIONS(1925), - [anon_sym_module] = ACTIONS(1925), - [anon_sym_use] = ACTIONS(1925), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1927), - [anon_sym_error] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_break] = ACTIONS(1925), - [anon_sym_continue] = ACTIONS(1925), - [anon_sym_for] = ACTIONS(1925), - [anon_sym_in2] = ACTIONS(1925), - [anon_sym_loop] = ACTIONS(1925), - [anon_sym_make] = ACTIONS(1925), - [anon_sym_while] = ACTIONS(1925), - [anon_sym_do] = ACTIONS(1925), - [anon_sym_if] = ACTIONS(1925), - [anon_sym_else] = ACTIONS(1925), - [anon_sym_match] = ACTIONS(1925), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_try] = ACTIONS(1925), - [anon_sym_catch] = ACTIONS(1925), - [anon_sym_return] = ACTIONS(1925), - [anon_sym_source] = ACTIONS(1925), - [anon_sym_source_DASHenv] = ACTIONS(1925), - [anon_sym_register] = ACTIONS(1925), - [anon_sym_hide] = ACTIONS(1925), - [anon_sym_hide_DASHenv] = ACTIONS(1925), - [anon_sym_overlay] = ACTIONS(1925), - [anon_sym_as] = ACTIONS(1925), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1925), - [aux_sym__val_number_token5] = ACTIONS(1925), - [aux_sym__val_number_token6] = ACTIONS(1925), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1817), + [aux_sym_cmd_identifier_token3] = ACTIONS(1817), + [aux_sym_cmd_identifier_token4] = ACTIONS(1817), + [aux_sym_cmd_identifier_token5] = ACTIONS(1817), + [aux_sym_cmd_identifier_token6] = ACTIONS(1817), + [aux_sym_cmd_identifier_token7] = ACTIONS(1817), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1817), + [aux_sym_cmd_identifier_token11] = ACTIONS(1817), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1817), + [aux_sym_cmd_identifier_token17] = ACTIONS(1817), + [aux_sym_cmd_identifier_token18] = ACTIONS(1817), + [aux_sym_cmd_identifier_token19] = ACTIONS(1817), + [aux_sym_cmd_identifier_token20] = ACTIONS(1817), + [aux_sym_cmd_identifier_token21] = ACTIONS(1817), + [aux_sym_cmd_identifier_token22] = ACTIONS(1817), + [aux_sym_cmd_identifier_token23] = ACTIONS(1817), + [aux_sym_cmd_identifier_token24] = ACTIONS(1817), + [aux_sym_cmd_identifier_token25] = ACTIONS(1817), + [aux_sym_cmd_identifier_token26] = ACTIONS(1817), + [aux_sym_cmd_identifier_token27] = ACTIONS(1817), + [aux_sym_cmd_identifier_token28] = ACTIONS(1817), + [aux_sym_cmd_identifier_token29] = ACTIONS(1817), + [aux_sym_cmd_identifier_token30] = ACTIONS(1817), + [aux_sym_cmd_identifier_token31] = ACTIONS(1817), + [aux_sym_cmd_identifier_token32] = ACTIONS(1817), + [aux_sym_cmd_identifier_token33] = ACTIONS(1817), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1817), + [aux_sym_cmd_identifier_token36] = ACTIONS(1817), + [aux_sym_cmd_identifier_token37] = ACTIONS(1817), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1817), + [aux_sym_cmd_identifier_token40] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1817), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1817), + [aux_sym__val_number_decimal_token3] = ACTIONS(1817), + [aux_sym__val_number_decimal_token4] = ACTIONS(1817), + [aux_sym__val_number_token1] = ACTIONS(1817), + [aux_sym__val_number_token2] = ACTIONS(1817), + [aux_sym__val_number_token3] = ACTIONS(1817), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1817), + [sym__str_single_quotes] = ACTIONS(1817), + [sym__str_back_ticks] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1817), + [sym__entry_separator] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1819), }, [468] = { [sym_comment] = STATE(468), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [aux_sym_cmd_identifier_token1] = ACTIONS(952), - [aux_sym_cmd_identifier_token2] = ACTIONS(954), - [aux_sym_cmd_identifier_token3] = ACTIONS(954), - [aux_sym_cmd_identifier_token4] = ACTIONS(954), - [aux_sym_cmd_identifier_token5] = ACTIONS(954), - [aux_sym_cmd_identifier_token6] = ACTIONS(954), - [aux_sym_cmd_identifier_token7] = ACTIONS(954), - [aux_sym_cmd_identifier_token8] = ACTIONS(952), - [aux_sym_cmd_identifier_token9] = ACTIONS(952), - [aux_sym_cmd_identifier_token10] = ACTIONS(954), - [aux_sym_cmd_identifier_token11] = ACTIONS(954), - [aux_sym_cmd_identifier_token12] = ACTIONS(952), - [aux_sym_cmd_identifier_token13] = ACTIONS(952), - [aux_sym_cmd_identifier_token14] = ACTIONS(952), - [aux_sym_cmd_identifier_token15] = ACTIONS(952), - [aux_sym_cmd_identifier_token16] = ACTIONS(954), - [aux_sym_cmd_identifier_token17] = ACTIONS(954), - [aux_sym_cmd_identifier_token18] = ACTIONS(954), - [aux_sym_cmd_identifier_token19] = ACTIONS(954), - [aux_sym_cmd_identifier_token20] = ACTIONS(954), - [aux_sym_cmd_identifier_token21] = ACTIONS(954), - [aux_sym_cmd_identifier_token22] = ACTIONS(954), - [aux_sym_cmd_identifier_token23] = ACTIONS(954), - [aux_sym_cmd_identifier_token24] = ACTIONS(954), - [aux_sym_cmd_identifier_token25] = ACTIONS(954), - [aux_sym_cmd_identifier_token26] = ACTIONS(954), - [aux_sym_cmd_identifier_token27] = ACTIONS(954), - [aux_sym_cmd_identifier_token28] = ACTIONS(954), - [aux_sym_cmd_identifier_token29] = ACTIONS(954), - [aux_sym_cmd_identifier_token30] = ACTIONS(954), - [aux_sym_cmd_identifier_token31] = ACTIONS(954), - [aux_sym_cmd_identifier_token32] = ACTIONS(954), - [aux_sym_cmd_identifier_token33] = ACTIONS(954), - [aux_sym_cmd_identifier_token34] = ACTIONS(952), - [aux_sym_cmd_identifier_token35] = ACTIONS(954), - [aux_sym_cmd_identifier_token36] = ACTIONS(954), - [aux_sym_cmd_identifier_token37] = ACTIONS(954), - [aux_sym_cmd_identifier_token38] = ACTIONS(952), - [aux_sym_cmd_identifier_token39] = ACTIONS(954), - [aux_sym_cmd_identifier_token40] = ACTIONS(954), - [anon_sym_def] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_COMMA] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(952), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in2] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_make] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_try] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_as] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(2112), - [anon_sym_PLUS2] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(952), - [aux_sym__val_number_token5] = ACTIONS(952), - [aux_sym__val_number_token6] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), - [anon_sym_COLON2] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(954), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(2092), + [aux_sym__immediate_decimal_token2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [469] = { - [sym_cell_path] = STATE(697), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(671), + [sym_path] = STATE(549), [sym_comment] = STATE(469), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1961), - [anon_sym_alias] = ACTIONS(1961), - [anon_sym_let] = ACTIONS(1961), - [anon_sym_let_DASHenv] = ACTIONS(1961), - [anon_sym_mut] = ACTIONS(1961), - [anon_sym_const] = ACTIONS(1961), - [aux_sym_cmd_identifier_token1] = ACTIONS(1961), - [aux_sym_cmd_identifier_token2] = ACTIONS(1963), - [aux_sym_cmd_identifier_token3] = ACTIONS(1963), - [aux_sym_cmd_identifier_token4] = ACTIONS(1963), - [aux_sym_cmd_identifier_token5] = ACTIONS(1963), - [aux_sym_cmd_identifier_token6] = ACTIONS(1963), - [aux_sym_cmd_identifier_token7] = ACTIONS(1963), - [aux_sym_cmd_identifier_token8] = ACTIONS(1961), - [aux_sym_cmd_identifier_token9] = ACTIONS(1961), - [aux_sym_cmd_identifier_token10] = ACTIONS(1963), - [aux_sym_cmd_identifier_token11] = ACTIONS(1963), - [aux_sym_cmd_identifier_token12] = ACTIONS(1961), - [aux_sym_cmd_identifier_token13] = ACTIONS(1961), - [aux_sym_cmd_identifier_token14] = ACTIONS(1961), - [aux_sym_cmd_identifier_token15] = ACTIONS(1961), - [aux_sym_cmd_identifier_token16] = ACTIONS(1963), - [aux_sym_cmd_identifier_token17] = ACTIONS(1963), - [aux_sym_cmd_identifier_token18] = ACTIONS(1963), - [aux_sym_cmd_identifier_token19] = ACTIONS(1963), - [aux_sym_cmd_identifier_token20] = ACTIONS(1963), - [aux_sym_cmd_identifier_token21] = ACTIONS(1963), - [aux_sym_cmd_identifier_token22] = ACTIONS(1963), - [aux_sym_cmd_identifier_token23] = ACTIONS(1963), - [aux_sym_cmd_identifier_token24] = ACTIONS(1963), - [aux_sym_cmd_identifier_token25] = ACTIONS(1963), - [aux_sym_cmd_identifier_token26] = ACTIONS(1963), - [aux_sym_cmd_identifier_token27] = ACTIONS(1963), - [aux_sym_cmd_identifier_token28] = ACTIONS(1963), - [aux_sym_cmd_identifier_token29] = ACTIONS(1963), - [aux_sym_cmd_identifier_token30] = ACTIONS(1963), - [aux_sym_cmd_identifier_token31] = ACTIONS(1963), - [aux_sym_cmd_identifier_token32] = ACTIONS(1963), - [aux_sym_cmd_identifier_token33] = ACTIONS(1963), - [aux_sym_cmd_identifier_token34] = ACTIONS(1961), - [aux_sym_cmd_identifier_token35] = ACTIONS(1963), - [aux_sym_cmd_identifier_token36] = ACTIONS(1963), - [aux_sym_cmd_identifier_token37] = ACTIONS(1963), - [aux_sym_cmd_identifier_token38] = ACTIONS(1961), - [aux_sym_cmd_identifier_token39] = ACTIONS(1963), - [aux_sym_cmd_identifier_token40] = ACTIONS(1963), - [anon_sym_def] = ACTIONS(1961), - [anon_sym_export_DASHenv] = ACTIONS(1961), - [anon_sym_extern] = ACTIONS(1961), - [anon_sym_module] = ACTIONS(1961), - [anon_sym_use] = ACTIONS(1961), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1963), - [anon_sym_error] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_break] = ACTIONS(1961), - [anon_sym_continue] = ACTIONS(1961), - [anon_sym_for] = ACTIONS(1961), - [anon_sym_in2] = ACTIONS(1961), - [anon_sym_loop] = ACTIONS(1961), - [anon_sym_make] = ACTIONS(1961), - [anon_sym_while] = ACTIONS(1961), - [anon_sym_do] = ACTIONS(1961), - [anon_sym_if] = ACTIONS(1961), - [anon_sym_else] = ACTIONS(1961), - [anon_sym_match] = ACTIONS(1961), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_try] = ACTIONS(1961), - [anon_sym_catch] = ACTIONS(1961), - [anon_sym_return] = ACTIONS(1961), - [anon_sym_source] = ACTIONS(1961), - [anon_sym_source_DASHenv] = ACTIONS(1961), - [anon_sym_register] = ACTIONS(1961), - [anon_sym_hide] = ACTIONS(1961), - [anon_sym_hide_DASHenv] = ACTIONS(1961), - [anon_sym_overlay] = ACTIONS(1961), - [anon_sym_as] = ACTIONS(1961), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1961), - [aux_sym__val_number_token5] = ACTIONS(1961), - [aux_sym__val_number_token6] = ACTIONS(1961), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1998), + [anon_sym_alias] = ACTIONS(1998), + [anon_sym_let] = ACTIONS(1998), + [anon_sym_let_DASHenv] = ACTIONS(1998), + [anon_sym_mut] = ACTIONS(1998), + [anon_sym_const] = ACTIONS(1998), + [aux_sym_cmd_identifier_token1] = ACTIONS(1998), + [aux_sym_cmd_identifier_token2] = ACTIONS(2000), + [aux_sym_cmd_identifier_token3] = ACTIONS(2000), + [aux_sym_cmd_identifier_token4] = ACTIONS(2000), + [aux_sym_cmd_identifier_token5] = ACTIONS(2000), + [aux_sym_cmd_identifier_token6] = ACTIONS(2000), + [aux_sym_cmd_identifier_token7] = ACTIONS(2000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1998), + [aux_sym_cmd_identifier_token9] = ACTIONS(1998), + [aux_sym_cmd_identifier_token10] = ACTIONS(2000), + [aux_sym_cmd_identifier_token11] = ACTIONS(2000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1998), + [aux_sym_cmd_identifier_token13] = ACTIONS(1998), + [aux_sym_cmd_identifier_token14] = ACTIONS(1998), + [aux_sym_cmd_identifier_token15] = ACTIONS(1998), + [aux_sym_cmd_identifier_token16] = ACTIONS(2000), + [aux_sym_cmd_identifier_token17] = ACTIONS(2000), + [aux_sym_cmd_identifier_token18] = ACTIONS(2000), + [aux_sym_cmd_identifier_token19] = ACTIONS(2000), + [aux_sym_cmd_identifier_token20] = ACTIONS(2000), + [aux_sym_cmd_identifier_token21] = ACTIONS(2000), + [aux_sym_cmd_identifier_token22] = ACTIONS(2000), + [aux_sym_cmd_identifier_token23] = ACTIONS(2000), + [aux_sym_cmd_identifier_token24] = ACTIONS(2000), + [aux_sym_cmd_identifier_token25] = ACTIONS(2000), + [aux_sym_cmd_identifier_token26] = ACTIONS(2000), + [aux_sym_cmd_identifier_token27] = ACTIONS(2000), + [aux_sym_cmd_identifier_token28] = ACTIONS(2000), + [aux_sym_cmd_identifier_token29] = ACTIONS(2000), + [aux_sym_cmd_identifier_token30] = ACTIONS(2000), + [aux_sym_cmd_identifier_token31] = ACTIONS(2000), + [aux_sym_cmd_identifier_token32] = ACTIONS(2000), + [aux_sym_cmd_identifier_token33] = ACTIONS(2000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1998), + [aux_sym_cmd_identifier_token35] = ACTIONS(2000), + [aux_sym_cmd_identifier_token36] = ACTIONS(2000), + [aux_sym_cmd_identifier_token37] = ACTIONS(2000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1998), + [aux_sym_cmd_identifier_token39] = ACTIONS(2000), + [aux_sym_cmd_identifier_token40] = ACTIONS(2000), + [anon_sym_def] = ACTIONS(1998), + [anon_sym_export_DASHenv] = ACTIONS(1998), + [anon_sym_extern] = ACTIONS(1998), + [anon_sym_module] = ACTIONS(1998), + [anon_sym_use] = ACTIONS(1998), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_COMMA] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(2000), + [anon_sym_error] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_break] = ACTIONS(1998), + [anon_sym_continue] = ACTIONS(1998), + [anon_sym_for] = ACTIONS(1998), + [anon_sym_in2] = ACTIONS(1998), + [anon_sym_loop] = ACTIONS(1998), + [anon_sym_make] = ACTIONS(1998), + [anon_sym_while] = ACTIONS(1998), + [anon_sym_do] = ACTIONS(1998), + [anon_sym_if] = ACTIONS(1998), + [anon_sym_else] = ACTIONS(1998), + [anon_sym_match] = ACTIONS(1998), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_try] = ACTIONS(1998), + [anon_sym_catch] = ACTIONS(1998), + [anon_sym_return] = ACTIONS(1998), + [anon_sym_source] = ACTIONS(1998), + [anon_sym_source_DASHenv] = ACTIONS(1998), + [anon_sym_register] = ACTIONS(1998), + [anon_sym_hide] = ACTIONS(1998), + [anon_sym_hide_DASHenv] = ACTIONS(1998), + [anon_sym_overlay] = ACTIONS(1998), + [anon_sym_as] = ACTIONS(1998), + [anon_sym_PLUS2] = ACTIONS(1998), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(1998), + [aux_sym__val_number_token5] = ACTIONS(1998), + [aux_sym__val_number_token6] = ACTIONS(1998), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2000), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2000), }, [470] = { - [sym_cell_path] = STATE(698), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(706), + [sym_path] = STATE(549), [sym_comment] = STATE(470), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1965), - [anon_sym_alias] = ACTIONS(1965), - [anon_sym_let] = ACTIONS(1965), - [anon_sym_let_DASHenv] = ACTIONS(1965), - [anon_sym_mut] = ACTIONS(1965), - [anon_sym_const] = ACTIONS(1965), - [aux_sym_cmd_identifier_token1] = ACTIONS(1965), - [aux_sym_cmd_identifier_token2] = ACTIONS(1967), - [aux_sym_cmd_identifier_token3] = ACTIONS(1967), - [aux_sym_cmd_identifier_token4] = ACTIONS(1967), - [aux_sym_cmd_identifier_token5] = ACTIONS(1967), - [aux_sym_cmd_identifier_token6] = ACTIONS(1967), - [aux_sym_cmd_identifier_token7] = ACTIONS(1967), - [aux_sym_cmd_identifier_token8] = ACTIONS(1965), - [aux_sym_cmd_identifier_token9] = ACTIONS(1965), - [aux_sym_cmd_identifier_token10] = ACTIONS(1967), - [aux_sym_cmd_identifier_token11] = ACTIONS(1967), - [aux_sym_cmd_identifier_token12] = ACTIONS(1965), - [aux_sym_cmd_identifier_token13] = ACTIONS(1965), - [aux_sym_cmd_identifier_token14] = ACTIONS(1965), - [aux_sym_cmd_identifier_token15] = ACTIONS(1965), - [aux_sym_cmd_identifier_token16] = ACTIONS(1967), - [aux_sym_cmd_identifier_token17] = ACTIONS(1967), - [aux_sym_cmd_identifier_token18] = ACTIONS(1967), - [aux_sym_cmd_identifier_token19] = ACTIONS(1967), - [aux_sym_cmd_identifier_token20] = ACTIONS(1967), - [aux_sym_cmd_identifier_token21] = ACTIONS(1967), - [aux_sym_cmd_identifier_token22] = ACTIONS(1967), - [aux_sym_cmd_identifier_token23] = ACTIONS(1967), - [aux_sym_cmd_identifier_token24] = ACTIONS(1967), - [aux_sym_cmd_identifier_token25] = ACTIONS(1967), - [aux_sym_cmd_identifier_token26] = ACTIONS(1967), - [aux_sym_cmd_identifier_token27] = ACTIONS(1967), - [aux_sym_cmd_identifier_token28] = ACTIONS(1967), - [aux_sym_cmd_identifier_token29] = ACTIONS(1967), - [aux_sym_cmd_identifier_token30] = ACTIONS(1967), - [aux_sym_cmd_identifier_token31] = ACTIONS(1967), - [aux_sym_cmd_identifier_token32] = ACTIONS(1967), - [aux_sym_cmd_identifier_token33] = ACTIONS(1967), - [aux_sym_cmd_identifier_token34] = ACTIONS(1965), - [aux_sym_cmd_identifier_token35] = ACTIONS(1967), - [aux_sym_cmd_identifier_token36] = ACTIONS(1967), - [aux_sym_cmd_identifier_token37] = ACTIONS(1967), - [aux_sym_cmd_identifier_token38] = ACTIONS(1965), - [aux_sym_cmd_identifier_token39] = ACTIONS(1967), - [aux_sym_cmd_identifier_token40] = ACTIONS(1967), - [anon_sym_def] = ACTIONS(1965), - [anon_sym_export_DASHenv] = ACTIONS(1965), - [anon_sym_extern] = ACTIONS(1965), - [anon_sym_module] = ACTIONS(1965), - [anon_sym_use] = ACTIONS(1965), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1967), - [anon_sym_error] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_break] = ACTIONS(1965), - [anon_sym_continue] = ACTIONS(1965), - [anon_sym_for] = ACTIONS(1965), - [anon_sym_in2] = ACTIONS(1965), - [anon_sym_loop] = ACTIONS(1965), - [anon_sym_make] = ACTIONS(1965), - [anon_sym_while] = ACTIONS(1965), - [anon_sym_do] = ACTIONS(1965), - [anon_sym_if] = ACTIONS(1965), - [anon_sym_else] = ACTIONS(1965), - [anon_sym_match] = ACTIONS(1965), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_try] = ACTIONS(1965), - [anon_sym_catch] = ACTIONS(1965), - [anon_sym_return] = ACTIONS(1965), - [anon_sym_source] = ACTIONS(1965), - [anon_sym_source_DASHenv] = ACTIONS(1965), - [anon_sym_register] = ACTIONS(1965), - [anon_sym_hide] = ACTIONS(1965), - [anon_sym_hide_DASHenv] = ACTIONS(1965), - [anon_sym_overlay] = ACTIONS(1965), - [anon_sym_as] = ACTIONS(1965), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1965), - [aux_sym__val_number_token5] = ACTIONS(1965), - [aux_sym__val_number_token6] = ACTIONS(1965), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1831), + [anon_sym_alias] = ACTIONS(1831), + [anon_sym_let] = ACTIONS(1831), + [anon_sym_let_DASHenv] = ACTIONS(1831), + [anon_sym_mut] = ACTIONS(1831), + [anon_sym_const] = ACTIONS(1831), + [aux_sym_cmd_identifier_token1] = ACTIONS(1831), + [aux_sym_cmd_identifier_token2] = ACTIONS(1833), + [aux_sym_cmd_identifier_token3] = ACTIONS(1833), + [aux_sym_cmd_identifier_token4] = ACTIONS(1833), + [aux_sym_cmd_identifier_token5] = ACTIONS(1833), + [aux_sym_cmd_identifier_token6] = ACTIONS(1833), + [aux_sym_cmd_identifier_token7] = ACTIONS(1833), + [aux_sym_cmd_identifier_token8] = ACTIONS(1831), + [aux_sym_cmd_identifier_token9] = ACTIONS(1831), + [aux_sym_cmd_identifier_token10] = ACTIONS(1833), + [aux_sym_cmd_identifier_token11] = ACTIONS(1833), + [aux_sym_cmd_identifier_token12] = ACTIONS(1831), + [aux_sym_cmd_identifier_token13] = ACTIONS(1831), + [aux_sym_cmd_identifier_token14] = ACTIONS(1831), + [aux_sym_cmd_identifier_token15] = ACTIONS(1831), + [aux_sym_cmd_identifier_token16] = ACTIONS(1833), + [aux_sym_cmd_identifier_token17] = ACTIONS(1833), + [aux_sym_cmd_identifier_token18] = ACTIONS(1833), + [aux_sym_cmd_identifier_token19] = ACTIONS(1833), + [aux_sym_cmd_identifier_token20] = ACTIONS(1833), + [aux_sym_cmd_identifier_token21] = ACTIONS(1833), + [aux_sym_cmd_identifier_token22] = ACTIONS(1833), + [aux_sym_cmd_identifier_token23] = ACTIONS(1833), + [aux_sym_cmd_identifier_token24] = ACTIONS(1833), + [aux_sym_cmd_identifier_token25] = ACTIONS(1833), + [aux_sym_cmd_identifier_token26] = ACTIONS(1833), + [aux_sym_cmd_identifier_token27] = ACTIONS(1833), + [aux_sym_cmd_identifier_token28] = ACTIONS(1833), + [aux_sym_cmd_identifier_token29] = ACTIONS(1833), + [aux_sym_cmd_identifier_token30] = ACTIONS(1833), + [aux_sym_cmd_identifier_token31] = ACTIONS(1833), + [aux_sym_cmd_identifier_token32] = ACTIONS(1833), + [aux_sym_cmd_identifier_token33] = ACTIONS(1833), + [aux_sym_cmd_identifier_token34] = ACTIONS(1831), + [aux_sym_cmd_identifier_token35] = ACTIONS(1833), + [aux_sym_cmd_identifier_token36] = ACTIONS(1833), + [aux_sym_cmd_identifier_token37] = ACTIONS(1833), + [aux_sym_cmd_identifier_token38] = ACTIONS(1831), + [aux_sym_cmd_identifier_token39] = ACTIONS(1833), + [aux_sym_cmd_identifier_token40] = ACTIONS(1833), + [anon_sym_def] = ACTIONS(1831), + [anon_sym_export_DASHenv] = ACTIONS(1831), + [anon_sym_extern] = ACTIONS(1831), + [anon_sym_module] = ACTIONS(1831), + [anon_sym_use] = ACTIONS(1831), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_COMMA] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1833), + [anon_sym_error] = ACTIONS(1831), + [anon_sym_DASH2] = ACTIONS(1831), + [anon_sym_break] = ACTIONS(1831), + [anon_sym_continue] = ACTIONS(1831), + [anon_sym_for] = ACTIONS(1831), + [anon_sym_in2] = ACTIONS(1831), + [anon_sym_loop] = ACTIONS(1831), + [anon_sym_make] = ACTIONS(1831), + [anon_sym_while] = ACTIONS(1831), + [anon_sym_do] = ACTIONS(1831), + [anon_sym_if] = ACTIONS(1831), + [anon_sym_else] = ACTIONS(1831), + [anon_sym_match] = ACTIONS(1831), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_try] = ACTIONS(1831), + [anon_sym_catch] = ACTIONS(1831), + [anon_sym_return] = ACTIONS(1831), + [anon_sym_source] = ACTIONS(1831), + [anon_sym_source_DASHenv] = ACTIONS(1831), + [anon_sym_register] = ACTIONS(1831), + [anon_sym_hide] = ACTIONS(1831), + [anon_sym_hide_DASHenv] = ACTIONS(1831), + [anon_sym_overlay] = ACTIONS(1831), + [anon_sym_as] = ACTIONS(1831), + [anon_sym_PLUS2] = ACTIONS(1831), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [aux_sym__val_number_token4] = ACTIONS(1831), + [aux_sym__val_number_token5] = ACTIONS(1831), + [aux_sym__val_number_token6] = ACTIONS(1831), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1833), }, [471] = { + [sym_cell_path] = STATE(707), + [sym_path] = STATE(549), [sym_comment] = STATE(471), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [aux_sym__immediate_decimal_token2] = ACTIONS(2114), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1837), + [aux_sym_cmd_identifier_token3] = ACTIONS(1837), + [aux_sym_cmd_identifier_token4] = ACTIONS(1837), + [aux_sym_cmd_identifier_token5] = ACTIONS(1837), + [aux_sym_cmd_identifier_token6] = ACTIONS(1837), + [aux_sym_cmd_identifier_token7] = ACTIONS(1837), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1837), + [aux_sym_cmd_identifier_token11] = ACTIONS(1837), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1837), + [aux_sym_cmd_identifier_token17] = ACTIONS(1837), + [aux_sym_cmd_identifier_token18] = ACTIONS(1837), + [aux_sym_cmd_identifier_token19] = ACTIONS(1837), + [aux_sym_cmd_identifier_token20] = ACTIONS(1837), + [aux_sym_cmd_identifier_token21] = ACTIONS(1837), + [aux_sym_cmd_identifier_token22] = ACTIONS(1837), + [aux_sym_cmd_identifier_token23] = ACTIONS(1837), + [aux_sym_cmd_identifier_token24] = ACTIONS(1837), + [aux_sym_cmd_identifier_token25] = ACTIONS(1837), + [aux_sym_cmd_identifier_token26] = ACTIONS(1837), + [aux_sym_cmd_identifier_token27] = ACTIONS(1837), + [aux_sym_cmd_identifier_token28] = ACTIONS(1837), + [aux_sym_cmd_identifier_token29] = ACTIONS(1837), + [aux_sym_cmd_identifier_token30] = ACTIONS(1837), + [aux_sym_cmd_identifier_token31] = ACTIONS(1837), + [aux_sym_cmd_identifier_token32] = ACTIONS(1837), + [aux_sym_cmd_identifier_token33] = ACTIONS(1837), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1837), + [aux_sym_cmd_identifier_token36] = ACTIONS(1837), + [aux_sym_cmd_identifier_token37] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1837), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in2] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1837), }, [472] = { - [sym_cell_path] = STATE(741), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(708), + [sym_path] = STATE(549), [sym_comment] = STATE(472), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2013), - [anon_sym_alias] = ACTIONS(2013), - [anon_sym_let] = ACTIONS(2013), - [anon_sym_let_DASHenv] = ACTIONS(2013), - [anon_sym_mut] = ACTIONS(2013), - [anon_sym_const] = ACTIONS(2013), - [aux_sym_cmd_identifier_token1] = ACTIONS(2013), - [aux_sym_cmd_identifier_token2] = ACTIONS(2015), - [aux_sym_cmd_identifier_token3] = ACTIONS(2015), - [aux_sym_cmd_identifier_token4] = ACTIONS(2015), - [aux_sym_cmd_identifier_token5] = ACTIONS(2015), - [aux_sym_cmd_identifier_token6] = ACTIONS(2015), - [aux_sym_cmd_identifier_token7] = ACTIONS(2015), - [aux_sym_cmd_identifier_token8] = ACTIONS(2013), - [aux_sym_cmd_identifier_token9] = ACTIONS(2013), - [aux_sym_cmd_identifier_token10] = ACTIONS(2015), - [aux_sym_cmd_identifier_token11] = ACTIONS(2015), - [aux_sym_cmd_identifier_token12] = ACTIONS(2013), - [aux_sym_cmd_identifier_token13] = ACTIONS(2013), - [aux_sym_cmd_identifier_token14] = ACTIONS(2013), - [aux_sym_cmd_identifier_token15] = ACTIONS(2013), - [aux_sym_cmd_identifier_token16] = ACTIONS(2015), - [aux_sym_cmd_identifier_token17] = ACTIONS(2015), - [aux_sym_cmd_identifier_token18] = ACTIONS(2015), - [aux_sym_cmd_identifier_token19] = ACTIONS(2015), - [aux_sym_cmd_identifier_token20] = ACTIONS(2015), - [aux_sym_cmd_identifier_token21] = ACTIONS(2015), - [aux_sym_cmd_identifier_token22] = ACTIONS(2015), - [aux_sym_cmd_identifier_token23] = ACTIONS(2015), - [aux_sym_cmd_identifier_token24] = ACTIONS(2015), - [aux_sym_cmd_identifier_token25] = ACTIONS(2015), - [aux_sym_cmd_identifier_token26] = ACTIONS(2015), - [aux_sym_cmd_identifier_token27] = ACTIONS(2015), - [aux_sym_cmd_identifier_token28] = ACTIONS(2015), - [aux_sym_cmd_identifier_token29] = ACTIONS(2015), - [aux_sym_cmd_identifier_token30] = ACTIONS(2015), - [aux_sym_cmd_identifier_token31] = ACTIONS(2015), - [aux_sym_cmd_identifier_token32] = ACTIONS(2015), - [aux_sym_cmd_identifier_token33] = ACTIONS(2015), - [aux_sym_cmd_identifier_token34] = ACTIONS(2013), - [aux_sym_cmd_identifier_token35] = ACTIONS(2015), - [aux_sym_cmd_identifier_token36] = ACTIONS(2015), - [aux_sym_cmd_identifier_token37] = ACTIONS(2015), - [aux_sym_cmd_identifier_token38] = ACTIONS(2013), - [aux_sym_cmd_identifier_token39] = ACTIONS(2015), - [aux_sym_cmd_identifier_token40] = ACTIONS(2015), - [anon_sym_def] = ACTIONS(2013), - [anon_sym_export_DASHenv] = ACTIONS(2013), - [anon_sym_extern] = ACTIONS(2013), - [anon_sym_module] = ACTIONS(2013), - [anon_sym_use] = ACTIONS(2013), - [anon_sym_LPAREN] = ACTIONS(2015), - [anon_sym_DOLLAR] = ACTIONS(2015), - [anon_sym_error] = ACTIONS(2013), - [anon_sym_DASH2] = ACTIONS(2013), - [anon_sym_break] = ACTIONS(2013), - [anon_sym_continue] = ACTIONS(2013), - [anon_sym_for] = ACTIONS(2013), - [anon_sym_in2] = ACTIONS(2013), - [anon_sym_loop] = ACTIONS(2013), - [anon_sym_make] = ACTIONS(2013), - [anon_sym_while] = ACTIONS(2013), - [anon_sym_do] = ACTIONS(2013), - [anon_sym_if] = ACTIONS(2013), - [anon_sym_else] = ACTIONS(2013), - [anon_sym_match] = ACTIONS(2013), - [anon_sym_RBRACE] = ACTIONS(2015), - [anon_sym_try] = ACTIONS(2013), - [anon_sym_catch] = ACTIONS(2013), - [anon_sym_return] = ACTIONS(2013), - [anon_sym_source] = ACTIONS(2013), - [anon_sym_source_DASHenv] = ACTIONS(2013), - [anon_sym_register] = ACTIONS(2013), - [anon_sym_hide] = ACTIONS(2013), - [anon_sym_hide_DASHenv] = ACTIONS(2013), - [anon_sym_overlay] = ACTIONS(2013), - [anon_sym_as] = ACTIONS(2013), - [anon_sym_PLUS2] = ACTIONS(2013), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2015), - [aux_sym__val_number_decimal_token1] = ACTIONS(2013), - [aux_sym__val_number_decimal_token2] = ACTIONS(2015), - [aux_sym__val_number_decimal_token3] = ACTIONS(2015), - [aux_sym__val_number_decimal_token4] = ACTIONS(2015), - [aux_sym__val_number_token1] = ACTIONS(2015), - [aux_sym__val_number_token2] = ACTIONS(2015), - [aux_sym__val_number_token3] = ACTIONS(2015), - [aux_sym__val_number_token4] = ACTIONS(2013), - [aux_sym__val_number_token5] = ACTIONS(2013), - [aux_sym__val_number_token6] = ACTIONS(2013), - [anon_sym_DQUOTE] = ACTIONS(2015), - [sym__str_single_quotes] = ACTIONS(2015), - [sym__str_back_ticks] = ACTIONS(2015), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2015), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2015), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1839), + [anon_sym_alias] = ACTIONS(1839), + [anon_sym_let] = ACTIONS(1839), + [anon_sym_let_DASHenv] = ACTIONS(1839), + [anon_sym_mut] = ACTIONS(1839), + [anon_sym_const] = ACTIONS(1839), + [aux_sym_cmd_identifier_token1] = ACTIONS(1839), + [aux_sym_cmd_identifier_token2] = ACTIONS(1841), + [aux_sym_cmd_identifier_token3] = ACTIONS(1841), + [aux_sym_cmd_identifier_token4] = ACTIONS(1841), + [aux_sym_cmd_identifier_token5] = ACTIONS(1841), + [aux_sym_cmd_identifier_token6] = ACTIONS(1841), + [aux_sym_cmd_identifier_token7] = ACTIONS(1841), + [aux_sym_cmd_identifier_token8] = ACTIONS(1839), + [aux_sym_cmd_identifier_token9] = ACTIONS(1839), + [aux_sym_cmd_identifier_token10] = ACTIONS(1841), + [aux_sym_cmd_identifier_token11] = ACTIONS(1841), + [aux_sym_cmd_identifier_token12] = ACTIONS(1839), + [aux_sym_cmd_identifier_token13] = ACTIONS(1839), + [aux_sym_cmd_identifier_token14] = ACTIONS(1839), + [aux_sym_cmd_identifier_token15] = ACTIONS(1839), + [aux_sym_cmd_identifier_token16] = ACTIONS(1841), + [aux_sym_cmd_identifier_token17] = ACTIONS(1841), + [aux_sym_cmd_identifier_token18] = ACTIONS(1841), + [aux_sym_cmd_identifier_token19] = ACTIONS(1841), + [aux_sym_cmd_identifier_token20] = ACTIONS(1841), + [aux_sym_cmd_identifier_token21] = ACTIONS(1841), + [aux_sym_cmd_identifier_token22] = ACTIONS(1841), + [aux_sym_cmd_identifier_token23] = ACTIONS(1841), + [aux_sym_cmd_identifier_token24] = ACTIONS(1841), + [aux_sym_cmd_identifier_token25] = ACTIONS(1841), + [aux_sym_cmd_identifier_token26] = ACTIONS(1841), + [aux_sym_cmd_identifier_token27] = ACTIONS(1841), + [aux_sym_cmd_identifier_token28] = ACTIONS(1841), + [aux_sym_cmd_identifier_token29] = ACTIONS(1841), + [aux_sym_cmd_identifier_token30] = ACTIONS(1841), + [aux_sym_cmd_identifier_token31] = ACTIONS(1841), + [aux_sym_cmd_identifier_token32] = ACTIONS(1841), + [aux_sym_cmd_identifier_token33] = ACTIONS(1841), + [aux_sym_cmd_identifier_token34] = ACTIONS(1839), + [aux_sym_cmd_identifier_token35] = ACTIONS(1841), + [aux_sym_cmd_identifier_token36] = ACTIONS(1841), + [aux_sym_cmd_identifier_token37] = ACTIONS(1841), + [aux_sym_cmd_identifier_token38] = ACTIONS(1839), + [aux_sym_cmd_identifier_token39] = ACTIONS(1841), + [aux_sym_cmd_identifier_token40] = ACTIONS(1841), + [anon_sym_def] = ACTIONS(1839), + [anon_sym_export_DASHenv] = ACTIONS(1839), + [anon_sym_extern] = ACTIONS(1839), + [anon_sym_module] = ACTIONS(1839), + [anon_sym_use] = ACTIONS(1839), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_COMMA] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1841), + [anon_sym_error] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_break] = ACTIONS(1839), + [anon_sym_continue] = ACTIONS(1839), + [anon_sym_for] = ACTIONS(1839), + [anon_sym_in2] = ACTIONS(1839), + [anon_sym_loop] = ACTIONS(1839), + [anon_sym_make] = ACTIONS(1839), + [anon_sym_while] = ACTIONS(1839), + [anon_sym_do] = ACTIONS(1839), + [anon_sym_if] = ACTIONS(1839), + [anon_sym_else] = ACTIONS(1839), + [anon_sym_match] = ACTIONS(1839), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_try] = ACTIONS(1839), + [anon_sym_catch] = ACTIONS(1839), + [anon_sym_return] = ACTIONS(1839), + [anon_sym_source] = ACTIONS(1839), + [anon_sym_source_DASHenv] = ACTIONS(1839), + [anon_sym_register] = ACTIONS(1839), + [anon_sym_hide] = ACTIONS(1839), + [anon_sym_hide_DASHenv] = ACTIONS(1839), + [anon_sym_overlay] = ACTIONS(1839), + [anon_sym_as] = ACTIONS(1839), + [anon_sym_PLUS2] = ACTIONS(1839), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1839), + [aux_sym__val_number_token5] = ACTIONS(1839), + [aux_sym__val_number_token6] = ACTIONS(1839), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1841), }, [473] = { + [sym_cell_path] = STATE(709), + [sym_path] = STATE(549), [sym_comment] = STATE(473), - [anon_sym_export] = ACTIONS(2116), - [anon_sym_alias] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_let_DASHenv] = ACTIONS(2116), - [anon_sym_mut] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [aux_sym_cmd_identifier_token1] = ACTIONS(2116), - [aux_sym_cmd_identifier_token2] = ACTIONS(2116), - [aux_sym_cmd_identifier_token3] = ACTIONS(2116), - [aux_sym_cmd_identifier_token4] = ACTIONS(2116), - [aux_sym_cmd_identifier_token5] = ACTIONS(2116), - [aux_sym_cmd_identifier_token6] = ACTIONS(2116), - [aux_sym_cmd_identifier_token7] = ACTIONS(2116), - [aux_sym_cmd_identifier_token8] = ACTIONS(2116), - [aux_sym_cmd_identifier_token9] = ACTIONS(2116), - [aux_sym_cmd_identifier_token10] = ACTIONS(2116), - [aux_sym_cmd_identifier_token11] = ACTIONS(2116), - [aux_sym_cmd_identifier_token12] = ACTIONS(2116), - [aux_sym_cmd_identifier_token13] = ACTIONS(2116), - [aux_sym_cmd_identifier_token14] = ACTIONS(2116), - [aux_sym_cmd_identifier_token15] = ACTIONS(2116), - [aux_sym_cmd_identifier_token16] = ACTIONS(2116), - [aux_sym_cmd_identifier_token17] = ACTIONS(2116), - [aux_sym_cmd_identifier_token18] = ACTIONS(2116), - [aux_sym_cmd_identifier_token19] = ACTIONS(2116), - [aux_sym_cmd_identifier_token20] = ACTIONS(2116), - [aux_sym_cmd_identifier_token21] = ACTIONS(2116), - [aux_sym_cmd_identifier_token22] = ACTIONS(2116), - [aux_sym_cmd_identifier_token23] = ACTIONS(2116), - [aux_sym_cmd_identifier_token24] = ACTIONS(2116), - [aux_sym_cmd_identifier_token25] = ACTIONS(2116), - [aux_sym_cmd_identifier_token26] = ACTIONS(2116), - [aux_sym_cmd_identifier_token27] = ACTIONS(2116), - [aux_sym_cmd_identifier_token28] = ACTIONS(2116), - [aux_sym_cmd_identifier_token29] = ACTIONS(2116), - [aux_sym_cmd_identifier_token30] = ACTIONS(2116), - [aux_sym_cmd_identifier_token31] = ACTIONS(2116), - [aux_sym_cmd_identifier_token32] = ACTIONS(2116), - [aux_sym_cmd_identifier_token33] = ACTIONS(2116), - [aux_sym_cmd_identifier_token34] = ACTIONS(2116), - [aux_sym_cmd_identifier_token35] = ACTIONS(2116), - [aux_sym_cmd_identifier_token36] = ACTIONS(2116), - [aux_sym_cmd_identifier_token37] = ACTIONS(2116), - [aux_sym_cmd_identifier_token38] = ACTIONS(2116), - [aux_sym_cmd_identifier_token39] = ACTIONS(2116), - [aux_sym_cmd_identifier_token40] = ACTIONS(2116), - [anon_sym_def] = ACTIONS(2116), - [anon_sym_export_DASHenv] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_module] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_error] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_in2] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_make] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [anon_sym_catch] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_source] = ACTIONS(2116), - [anon_sym_source_DASHenv] = ACTIONS(2116), - [anon_sym_register] = ACTIONS(2116), - [anon_sym_hide] = ACTIONS(2116), - [anon_sym_hide_DASHenv] = ACTIONS(2116), - [anon_sym_overlay] = ACTIONS(2116), - [anon_sym_as] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2116), - [anon_sym_DOT_DOT2] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2116), - [aux_sym__val_number_decimal_token1] = ACTIONS(2116), - [aux_sym__val_number_decimal_token2] = ACTIONS(2116), - [aux_sym__val_number_decimal_token3] = ACTIONS(2116), - [aux_sym__val_number_decimal_token4] = ACTIONS(2116), - [aux_sym__val_number_token1] = ACTIONS(2116), - [aux_sym__val_number_token2] = ACTIONS(2116), - [aux_sym__val_number_token3] = ACTIONS(2116), - [aux_sym__val_number_token4] = ACTIONS(2116), - [aux_sym__val_number_token5] = ACTIONS(2116), - [aux_sym__val_number_token6] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym__str_single_quotes] = ACTIONS(2116), - [sym__str_back_ticks] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2116), - [sym__entry_separator] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2118), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1845), + [aux_sym_cmd_identifier_token3] = ACTIONS(1845), + [aux_sym_cmd_identifier_token4] = ACTIONS(1845), + [aux_sym_cmd_identifier_token5] = ACTIONS(1845), + [aux_sym_cmd_identifier_token6] = ACTIONS(1845), + [aux_sym_cmd_identifier_token7] = ACTIONS(1845), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1845), + [aux_sym_cmd_identifier_token11] = ACTIONS(1845), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1845), + [aux_sym_cmd_identifier_token17] = ACTIONS(1845), + [aux_sym_cmd_identifier_token18] = ACTIONS(1845), + [aux_sym_cmd_identifier_token19] = ACTIONS(1845), + [aux_sym_cmd_identifier_token20] = ACTIONS(1845), + [aux_sym_cmd_identifier_token21] = ACTIONS(1845), + [aux_sym_cmd_identifier_token22] = ACTIONS(1845), + [aux_sym_cmd_identifier_token23] = ACTIONS(1845), + [aux_sym_cmd_identifier_token24] = ACTIONS(1845), + [aux_sym_cmd_identifier_token25] = ACTIONS(1845), + [aux_sym_cmd_identifier_token26] = ACTIONS(1845), + [aux_sym_cmd_identifier_token27] = ACTIONS(1845), + [aux_sym_cmd_identifier_token28] = ACTIONS(1845), + [aux_sym_cmd_identifier_token29] = ACTIONS(1845), + [aux_sym_cmd_identifier_token30] = ACTIONS(1845), + [aux_sym_cmd_identifier_token31] = ACTIONS(1845), + [aux_sym_cmd_identifier_token32] = ACTIONS(1845), + [aux_sym_cmd_identifier_token33] = ACTIONS(1845), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1845), + [aux_sym_cmd_identifier_token36] = ACTIONS(1845), + [aux_sym_cmd_identifier_token37] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in2] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1845), }, [474] = { - [sym_cell_path] = STATE(744), - [sym_path] = STATE(656), + [sym_expr_parenthesized] = STATE(4035), + [sym__spread_parenthesized] = STATE(4400), + [sym_val_range] = STATE(4403), + [sym__val_range] = STATE(7381), + [sym__val_range_with_end] = STATE(7297), + [sym__value] = STATE(4403), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym__spread_variable] = STATE(4404), + [sym_val_variable] = STATE(4080), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3812), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym__spread_list] = STATE(4400), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym__cmd_arg] = STATE(4778), + [sym_redirection] = STATE(4408), + [sym__flag] = STATE(4409), + [sym_short_flag] = STATE(4389), + [sym_long_flag] = STATE(4389), + [sym_unquoted] = STATE(4185), + [sym__unquoted_with_expr] = STATE(4414), + [sym__unquoted_anonymous_prefix] = STATE(6977), [sym_comment] = STATE(474), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), - [aux_sym_cmd_identifier_token6] = ACTIONS(1896), - [aux_sym_cmd_identifier_token7] = ACTIONS(1896), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1896), - [aux_sym_cmd_identifier_token11] = ACTIONS(1896), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1896), - [aux_sym_cmd_identifier_token17] = ACTIONS(1896), - [aux_sym_cmd_identifier_token18] = ACTIONS(1896), - [aux_sym_cmd_identifier_token19] = ACTIONS(1896), - [aux_sym_cmd_identifier_token20] = ACTIONS(1896), - [aux_sym_cmd_identifier_token21] = ACTIONS(1896), - [aux_sym_cmd_identifier_token22] = ACTIONS(1896), - [aux_sym_cmd_identifier_token23] = ACTIONS(1896), - [aux_sym_cmd_identifier_token24] = ACTIONS(1896), - [aux_sym_cmd_identifier_token25] = ACTIONS(1896), - [aux_sym_cmd_identifier_token26] = ACTIONS(1896), - [aux_sym_cmd_identifier_token27] = ACTIONS(1896), - [aux_sym_cmd_identifier_token28] = ACTIONS(1896), - [aux_sym_cmd_identifier_token29] = ACTIONS(1896), - [aux_sym_cmd_identifier_token30] = ACTIONS(1896), - [aux_sym_cmd_identifier_token31] = ACTIONS(1896), - [aux_sym_cmd_identifier_token32] = ACTIONS(1896), - [aux_sym_cmd_identifier_token33] = ACTIONS(1896), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1896), - [aux_sym_cmd_identifier_token36] = ACTIONS(1896), - [aux_sym_cmd_identifier_token37] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_DASH2] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in2] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_PLUS2] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [aux_sym__val_number_token4] = ACTIONS(1894), - [aux_sym__val_number_token5] = ACTIONS(1894), - [aux_sym__val_number_token6] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1896), + [sym__newline] = ACTIONS(2096), + [sym__space] = ACTIONS(2098), + [anon_sym_SEMI] = ACTIONS(2096), + [anon_sym_PIPE] = ACTIONS(2096), + [anon_sym_err_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_GT_PIPE] = ACTIONS(2096), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2096), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2096), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2096), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2096), + [anon_sym_LBRACK] = ACTIONS(1910), + [anon_sym_LPAREN] = ACTIONS(1912), + [anon_sym_RPAREN] = ACTIONS(2096), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_DASH_DASH] = ACTIONS(1916), + [anon_sym_DASH2] = ACTIONS(1918), + [anon_sym_LBRACE] = ACTIONS(1920), + [anon_sym_DOT_DOT] = ACTIONS(1922), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1924), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1926), + [anon_sym_DOT_DOT_LT] = ACTIONS(1926), + [anon_sym_null] = ACTIONS(1928), + [anon_sym_true] = ACTIONS(1930), + [anon_sym_false] = ACTIONS(1930), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1932), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(1934), + [aux_sym__val_number_decimal_token3] = ACTIONS(1936), + [aux_sym__val_number_decimal_token4] = ACTIONS(1938), + [aux_sym__val_number_token1] = ACTIONS(1940), + [aux_sym__val_number_token2] = ACTIONS(1940), + [aux_sym__val_number_token3] = ACTIONS(1940), + [aux_sym__val_number_token4] = ACTIONS(1942), + [aux_sym__val_number_token5] = ACTIONS(1942), + [aux_sym__val_number_token6] = ACTIONS(1942), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(1948), + [anon_sym_DQUOTE] = ACTIONS(1950), + [sym__str_single_quotes] = ACTIONS(1952), + [sym__str_back_ticks] = ACTIONS(1952), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1956), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(1958), + [anon_sym_err_GT] = ACTIONS(1962), + [anon_sym_out_GT] = ACTIONS(1962), + [anon_sym_e_GT] = ACTIONS(1962), + [anon_sym_o_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT] = ACTIONS(1962), + [anon_sym_err_GT_GT] = ACTIONS(1962), + [anon_sym_out_GT_GT] = ACTIONS(1962), + [anon_sym_e_GT_GT] = ACTIONS(1962), + [anon_sym_o_GT_GT] = ACTIONS(1962), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1962), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1962), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1962), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1962), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1966), }, [475] = { + [sym_cell_path] = STATE(713), + [sym_path] = STATE(549), [sym_comment] = STATE(475), - [anon_sym_export] = ACTIONS(2120), - [anon_sym_alias] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_let_DASHenv] = ACTIONS(2120), - [anon_sym_mut] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [aux_sym_cmd_identifier_token1] = ACTIONS(2120), - [aux_sym_cmd_identifier_token2] = ACTIONS(2120), - [aux_sym_cmd_identifier_token3] = ACTIONS(2120), - [aux_sym_cmd_identifier_token4] = ACTIONS(2120), - [aux_sym_cmd_identifier_token5] = ACTIONS(2120), - [aux_sym_cmd_identifier_token6] = ACTIONS(2120), - [aux_sym_cmd_identifier_token7] = ACTIONS(2120), - [aux_sym_cmd_identifier_token8] = ACTIONS(2120), - [aux_sym_cmd_identifier_token9] = ACTIONS(2120), - [aux_sym_cmd_identifier_token10] = ACTIONS(2120), - [aux_sym_cmd_identifier_token11] = ACTIONS(2120), - [aux_sym_cmd_identifier_token12] = ACTIONS(2120), - [aux_sym_cmd_identifier_token13] = ACTIONS(2120), - [aux_sym_cmd_identifier_token14] = ACTIONS(2120), - [aux_sym_cmd_identifier_token15] = ACTIONS(2120), - [aux_sym_cmd_identifier_token16] = ACTIONS(2120), - [aux_sym_cmd_identifier_token17] = ACTIONS(2120), - [aux_sym_cmd_identifier_token18] = ACTIONS(2120), - [aux_sym_cmd_identifier_token19] = ACTIONS(2120), - [aux_sym_cmd_identifier_token20] = ACTIONS(2120), - [aux_sym_cmd_identifier_token21] = ACTIONS(2120), - [aux_sym_cmd_identifier_token22] = ACTIONS(2120), - [aux_sym_cmd_identifier_token23] = ACTIONS(2120), - [aux_sym_cmd_identifier_token24] = ACTIONS(2120), - [aux_sym_cmd_identifier_token25] = ACTIONS(2120), - [aux_sym_cmd_identifier_token26] = ACTIONS(2120), - [aux_sym_cmd_identifier_token27] = ACTIONS(2120), - [aux_sym_cmd_identifier_token28] = ACTIONS(2120), - [aux_sym_cmd_identifier_token29] = ACTIONS(2120), - [aux_sym_cmd_identifier_token30] = ACTIONS(2120), - [aux_sym_cmd_identifier_token31] = ACTIONS(2120), - [aux_sym_cmd_identifier_token32] = ACTIONS(2120), - [aux_sym_cmd_identifier_token33] = ACTIONS(2120), - [aux_sym_cmd_identifier_token34] = ACTIONS(2120), - [aux_sym_cmd_identifier_token35] = ACTIONS(2120), - [aux_sym_cmd_identifier_token36] = ACTIONS(2120), - [aux_sym_cmd_identifier_token37] = ACTIONS(2120), - [aux_sym_cmd_identifier_token38] = ACTIONS(2120), - [aux_sym_cmd_identifier_token39] = ACTIONS(2120), - [aux_sym_cmd_identifier_token40] = ACTIONS(2120), - [anon_sym_def] = ACTIONS(2120), - [anon_sym_export_DASHenv] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_module] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_error] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_in2] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_make] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_do] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_else] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [anon_sym_catch] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_source] = ACTIONS(2120), - [anon_sym_source_DASHenv] = ACTIONS(2120), - [anon_sym_register] = ACTIONS(2120), - [anon_sym_hide] = ACTIONS(2120), - [anon_sym_hide_DASHenv] = ACTIONS(2120), - [anon_sym_overlay] = ACTIONS(2120), - [anon_sym_as] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), - [sym__entry_separator] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2122), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1849), + [aux_sym_cmd_identifier_token3] = ACTIONS(1849), + [aux_sym_cmd_identifier_token4] = ACTIONS(1849), + [aux_sym_cmd_identifier_token5] = ACTIONS(1849), + [aux_sym_cmd_identifier_token6] = ACTIONS(1849), + [aux_sym_cmd_identifier_token7] = ACTIONS(1849), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1849), + [aux_sym_cmd_identifier_token11] = ACTIONS(1849), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1849), + [aux_sym_cmd_identifier_token17] = ACTIONS(1849), + [aux_sym_cmd_identifier_token18] = ACTIONS(1849), + [aux_sym_cmd_identifier_token19] = ACTIONS(1849), + [aux_sym_cmd_identifier_token20] = ACTIONS(1849), + [aux_sym_cmd_identifier_token21] = ACTIONS(1849), + [aux_sym_cmd_identifier_token22] = ACTIONS(1849), + [aux_sym_cmd_identifier_token23] = ACTIONS(1849), + [aux_sym_cmd_identifier_token24] = ACTIONS(1849), + [aux_sym_cmd_identifier_token25] = ACTIONS(1849), + [aux_sym_cmd_identifier_token26] = ACTIONS(1849), + [aux_sym_cmd_identifier_token27] = ACTIONS(1849), + [aux_sym_cmd_identifier_token28] = ACTIONS(1849), + [aux_sym_cmd_identifier_token29] = ACTIONS(1849), + [aux_sym_cmd_identifier_token30] = ACTIONS(1849), + [aux_sym_cmd_identifier_token31] = ACTIONS(1849), + [aux_sym_cmd_identifier_token32] = ACTIONS(1849), + [aux_sym_cmd_identifier_token33] = ACTIONS(1849), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1849), + [aux_sym_cmd_identifier_token36] = ACTIONS(1849), + [aux_sym_cmd_identifier_token37] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1849), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1849), }, [476] = { + [sym_cell_path] = STATE(714), + [sym_path] = STATE(549), [sym_comment] = STATE(476), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_alias] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_let_DASHenv] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [aux_sym_cmd_identifier_token1] = ACTIONS(2124), - [aux_sym_cmd_identifier_token2] = ACTIONS(2124), - [aux_sym_cmd_identifier_token3] = ACTIONS(2124), - [aux_sym_cmd_identifier_token4] = ACTIONS(2124), - [aux_sym_cmd_identifier_token5] = ACTIONS(2124), - [aux_sym_cmd_identifier_token6] = ACTIONS(2124), - [aux_sym_cmd_identifier_token7] = ACTIONS(2124), - [aux_sym_cmd_identifier_token8] = ACTIONS(2124), - [aux_sym_cmd_identifier_token9] = ACTIONS(2124), - [aux_sym_cmd_identifier_token10] = ACTIONS(2124), - [aux_sym_cmd_identifier_token11] = ACTIONS(2124), - [aux_sym_cmd_identifier_token12] = ACTIONS(2124), - [aux_sym_cmd_identifier_token13] = ACTIONS(2124), - [aux_sym_cmd_identifier_token14] = ACTIONS(2124), - [aux_sym_cmd_identifier_token15] = ACTIONS(2124), - [aux_sym_cmd_identifier_token16] = ACTIONS(2124), - [aux_sym_cmd_identifier_token17] = ACTIONS(2124), - [aux_sym_cmd_identifier_token18] = ACTIONS(2124), - [aux_sym_cmd_identifier_token19] = ACTIONS(2124), - [aux_sym_cmd_identifier_token20] = ACTIONS(2124), - [aux_sym_cmd_identifier_token21] = ACTIONS(2124), - [aux_sym_cmd_identifier_token22] = ACTIONS(2124), - [aux_sym_cmd_identifier_token23] = ACTIONS(2124), - [aux_sym_cmd_identifier_token24] = ACTIONS(2124), - [aux_sym_cmd_identifier_token25] = ACTIONS(2124), - [aux_sym_cmd_identifier_token26] = ACTIONS(2124), - [aux_sym_cmd_identifier_token27] = ACTIONS(2124), - [aux_sym_cmd_identifier_token28] = ACTIONS(2124), - [aux_sym_cmd_identifier_token29] = ACTIONS(2124), - [aux_sym_cmd_identifier_token30] = ACTIONS(2124), - [aux_sym_cmd_identifier_token31] = ACTIONS(2124), - [aux_sym_cmd_identifier_token32] = ACTIONS(2124), - [aux_sym_cmd_identifier_token33] = ACTIONS(2124), - [aux_sym_cmd_identifier_token34] = ACTIONS(2124), - [aux_sym_cmd_identifier_token35] = ACTIONS(2124), - [aux_sym_cmd_identifier_token36] = ACTIONS(2124), - [aux_sym_cmd_identifier_token37] = ACTIONS(2124), - [aux_sym_cmd_identifier_token38] = ACTIONS(2124), - [aux_sym_cmd_identifier_token39] = ACTIONS(2124), - [aux_sym_cmd_identifier_token40] = ACTIONS(2124), - [anon_sym_def] = ACTIONS(2124), - [anon_sym_export_DASHenv] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_error] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_in2] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_make] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_do] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_else] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [anon_sym_catch] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_source] = ACTIONS(2124), - [anon_sym_source_DASHenv] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_hide] = ACTIONS(2124), - [anon_sym_hide_DASHenv] = ACTIONS(2124), - [anon_sym_overlay] = ACTIONS(2124), - [anon_sym_as] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2124), - [anon_sym_DOT_DOT2] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2124), - [aux_sym__val_number_decimal_token1] = ACTIONS(2124), - [aux_sym__val_number_decimal_token2] = ACTIONS(2124), - [aux_sym__val_number_decimal_token3] = ACTIONS(2124), - [aux_sym__val_number_decimal_token4] = ACTIONS(2124), - [aux_sym__val_number_token1] = ACTIONS(2124), - [aux_sym__val_number_token2] = ACTIONS(2124), - [aux_sym__val_number_token3] = ACTIONS(2124), - [aux_sym__val_number_token4] = ACTIONS(2124), - [aux_sym__val_number_token5] = ACTIONS(2124), - [aux_sym__val_number_token6] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym__str_single_quotes] = ACTIONS(2124), - [sym__str_back_ticks] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2124), - [sym__entry_separator] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2130), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1851), + [anon_sym_alias] = ACTIONS(1851), + [anon_sym_let] = ACTIONS(1851), + [anon_sym_let_DASHenv] = ACTIONS(1851), + [anon_sym_mut] = ACTIONS(1851), + [anon_sym_const] = ACTIONS(1851), + [aux_sym_cmd_identifier_token1] = ACTIONS(1851), + [aux_sym_cmd_identifier_token2] = ACTIONS(1853), + [aux_sym_cmd_identifier_token3] = ACTIONS(1853), + [aux_sym_cmd_identifier_token4] = ACTIONS(1853), + [aux_sym_cmd_identifier_token5] = ACTIONS(1853), + [aux_sym_cmd_identifier_token6] = ACTIONS(1853), + [aux_sym_cmd_identifier_token7] = ACTIONS(1853), + [aux_sym_cmd_identifier_token8] = ACTIONS(1851), + [aux_sym_cmd_identifier_token9] = ACTIONS(1851), + [aux_sym_cmd_identifier_token10] = ACTIONS(1853), + [aux_sym_cmd_identifier_token11] = ACTIONS(1853), + [aux_sym_cmd_identifier_token12] = ACTIONS(1851), + [aux_sym_cmd_identifier_token13] = ACTIONS(1851), + [aux_sym_cmd_identifier_token14] = ACTIONS(1851), + [aux_sym_cmd_identifier_token15] = ACTIONS(1851), + [aux_sym_cmd_identifier_token16] = ACTIONS(1853), + [aux_sym_cmd_identifier_token17] = ACTIONS(1853), + [aux_sym_cmd_identifier_token18] = ACTIONS(1853), + [aux_sym_cmd_identifier_token19] = ACTIONS(1853), + [aux_sym_cmd_identifier_token20] = ACTIONS(1853), + [aux_sym_cmd_identifier_token21] = ACTIONS(1853), + [aux_sym_cmd_identifier_token22] = ACTIONS(1853), + [aux_sym_cmd_identifier_token23] = ACTIONS(1853), + [aux_sym_cmd_identifier_token24] = ACTIONS(1853), + [aux_sym_cmd_identifier_token25] = ACTIONS(1853), + [aux_sym_cmd_identifier_token26] = ACTIONS(1853), + [aux_sym_cmd_identifier_token27] = ACTIONS(1853), + [aux_sym_cmd_identifier_token28] = ACTIONS(1853), + [aux_sym_cmd_identifier_token29] = ACTIONS(1853), + [aux_sym_cmd_identifier_token30] = ACTIONS(1853), + [aux_sym_cmd_identifier_token31] = ACTIONS(1853), + [aux_sym_cmd_identifier_token32] = ACTIONS(1853), + [aux_sym_cmd_identifier_token33] = ACTIONS(1853), + [aux_sym_cmd_identifier_token34] = ACTIONS(1851), + [aux_sym_cmd_identifier_token35] = ACTIONS(1853), + [aux_sym_cmd_identifier_token36] = ACTIONS(1853), + [aux_sym_cmd_identifier_token37] = ACTIONS(1853), + [aux_sym_cmd_identifier_token38] = ACTIONS(1851), + [aux_sym_cmd_identifier_token39] = ACTIONS(1853), + [aux_sym_cmd_identifier_token40] = ACTIONS(1853), + [anon_sym_def] = ACTIONS(1851), + [anon_sym_export_DASHenv] = ACTIONS(1851), + [anon_sym_extern] = ACTIONS(1851), + [anon_sym_module] = ACTIONS(1851), + [anon_sym_use] = ACTIONS(1851), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_COMMA] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1853), + [anon_sym_error] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_break] = ACTIONS(1851), + [anon_sym_continue] = ACTIONS(1851), + [anon_sym_for] = ACTIONS(1851), + [anon_sym_in2] = ACTIONS(1851), + [anon_sym_loop] = ACTIONS(1851), + [anon_sym_make] = ACTIONS(1851), + [anon_sym_while] = ACTIONS(1851), + [anon_sym_do] = ACTIONS(1851), + [anon_sym_if] = ACTIONS(1851), + [anon_sym_else] = ACTIONS(1851), + [anon_sym_match] = ACTIONS(1851), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_try] = ACTIONS(1851), + [anon_sym_catch] = ACTIONS(1851), + [anon_sym_return] = ACTIONS(1851), + [anon_sym_source] = ACTIONS(1851), + [anon_sym_source_DASHenv] = ACTIONS(1851), + [anon_sym_register] = ACTIONS(1851), + [anon_sym_hide] = ACTIONS(1851), + [anon_sym_hide_DASHenv] = ACTIONS(1851), + [anon_sym_overlay] = ACTIONS(1851), + [anon_sym_as] = ACTIONS(1851), + [anon_sym_PLUS2] = ACTIONS(1851), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [aux_sym__val_number_token4] = ACTIONS(1851), + [aux_sym__val_number_token5] = ACTIONS(1851), + [aux_sym__val_number_token6] = ACTIONS(1851), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1853), }, [477] = { + [sym_cell_path] = STATE(718), + [sym_path] = STATE(549), [sym_comment] = STATE(477), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(2132), - [aux_sym__immediate_decimal_token2] = ACTIONS(2134), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1855), + [anon_sym_alias] = ACTIONS(1855), + [anon_sym_let] = ACTIONS(1855), + [anon_sym_let_DASHenv] = ACTIONS(1855), + [anon_sym_mut] = ACTIONS(1855), + [anon_sym_const] = ACTIONS(1855), + [aux_sym_cmd_identifier_token1] = ACTIONS(1855), + [aux_sym_cmd_identifier_token2] = ACTIONS(1857), + [aux_sym_cmd_identifier_token3] = ACTIONS(1857), + [aux_sym_cmd_identifier_token4] = ACTIONS(1857), + [aux_sym_cmd_identifier_token5] = ACTIONS(1857), + [aux_sym_cmd_identifier_token6] = ACTIONS(1857), + [aux_sym_cmd_identifier_token7] = ACTIONS(1857), + [aux_sym_cmd_identifier_token8] = ACTIONS(1855), + [aux_sym_cmd_identifier_token9] = ACTIONS(1855), + [aux_sym_cmd_identifier_token10] = ACTIONS(1857), + [aux_sym_cmd_identifier_token11] = ACTIONS(1857), + [aux_sym_cmd_identifier_token12] = ACTIONS(1855), + [aux_sym_cmd_identifier_token13] = ACTIONS(1855), + [aux_sym_cmd_identifier_token14] = ACTIONS(1855), + [aux_sym_cmd_identifier_token15] = ACTIONS(1855), + [aux_sym_cmd_identifier_token16] = ACTIONS(1857), + [aux_sym_cmd_identifier_token17] = ACTIONS(1857), + [aux_sym_cmd_identifier_token18] = ACTIONS(1857), + [aux_sym_cmd_identifier_token19] = ACTIONS(1857), + [aux_sym_cmd_identifier_token20] = ACTIONS(1857), + [aux_sym_cmd_identifier_token21] = ACTIONS(1857), + [aux_sym_cmd_identifier_token22] = ACTIONS(1857), + [aux_sym_cmd_identifier_token23] = ACTIONS(1857), + [aux_sym_cmd_identifier_token24] = ACTIONS(1857), + [aux_sym_cmd_identifier_token25] = ACTIONS(1857), + [aux_sym_cmd_identifier_token26] = ACTIONS(1857), + [aux_sym_cmd_identifier_token27] = ACTIONS(1857), + [aux_sym_cmd_identifier_token28] = ACTIONS(1857), + [aux_sym_cmd_identifier_token29] = ACTIONS(1857), + [aux_sym_cmd_identifier_token30] = ACTIONS(1857), + [aux_sym_cmd_identifier_token31] = ACTIONS(1857), + [aux_sym_cmd_identifier_token32] = ACTIONS(1857), + [aux_sym_cmd_identifier_token33] = ACTIONS(1857), + [aux_sym_cmd_identifier_token34] = ACTIONS(1855), + [aux_sym_cmd_identifier_token35] = ACTIONS(1857), + [aux_sym_cmd_identifier_token36] = ACTIONS(1857), + [aux_sym_cmd_identifier_token37] = ACTIONS(1857), + [aux_sym_cmd_identifier_token38] = ACTIONS(1855), + [aux_sym_cmd_identifier_token39] = ACTIONS(1857), + [aux_sym_cmd_identifier_token40] = ACTIONS(1857), + [anon_sym_def] = ACTIONS(1855), + [anon_sym_export_DASHenv] = ACTIONS(1855), + [anon_sym_extern] = ACTIONS(1855), + [anon_sym_module] = ACTIONS(1855), + [anon_sym_use] = ACTIONS(1855), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_COMMA] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1857), + [anon_sym_error] = ACTIONS(1855), + [anon_sym_DASH2] = ACTIONS(1855), + [anon_sym_break] = ACTIONS(1855), + [anon_sym_continue] = ACTIONS(1855), + [anon_sym_for] = ACTIONS(1855), + [anon_sym_in2] = ACTIONS(1855), + [anon_sym_loop] = ACTIONS(1855), + [anon_sym_make] = ACTIONS(1855), + [anon_sym_while] = ACTIONS(1855), + [anon_sym_do] = ACTIONS(1855), + [anon_sym_if] = ACTIONS(1855), + [anon_sym_else] = ACTIONS(1855), + [anon_sym_match] = ACTIONS(1855), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_try] = ACTIONS(1855), + [anon_sym_catch] = ACTIONS(1855), + [anon_sym_return] = ACTIONS(1855), + [anon_sym_source] = ACTIONS(1855), + [anon_sym_source_DASHenv] = ACTIONS(1855), + [anon_sym_register] = ACTIONS(1855), + [anon_sym_hide] = ACTIONS(1855), + [anon_sym_hide_DASHenv] = ACTIONS(1855), + [anon_sym_overlay] = ACTIONS(1855), + [anon_sym_as] = ACTIONS(1855), + [anon_sym_PLUS2] = ACTIONS(1855), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [aux_sym__val_number_token4] = ACTIONS(1855), + [aux_sym__val_number_token5] = ACTIONS(1855), + [aux_sym__val_number_token6] = ACTIONS(1855), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1857), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1857), + }, + [478] = { + [sym_cell_path] = STATE(719), + [sym_path] = STATE(549), + [sym_comment] = STATE(478), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1861), + [aux_sym_cmd_identifier_token3] = ACTIONS(1861), + [aux_sym_cmd_identifier_token4] = ACTIONS(1861), + [aux_sym_cmd_identifier_token5] = ACTIONS(1861), + [aux_sym_cmd_identifier_token6] = ACTIONS(1861), + [aux_sym_cmd_identifier_token7] = ACTIONS(1861), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1861), + [aux_sym_cmd_identifier_token11] = ACTIONS(1861), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1861), + [aux_sym_cmd_identifier_token17] = ACTIONS(1861), + [aux_sym_cmd_identifier_token18] = ACTIONS(1861), + [aux_sym_cmd_identifier_token19] = ACTIONS(1861), + [aux_sym_cmd_identifier_token20] = ACTIONS(1861), + [aux_sym_cmd_identifier_token21] = ACTIONS(1861), + [aux_sym_cmd_identifier_token22] = ACTIONS(1861), + [aux_sym_cmd_identifier_token23] = ACTIONS(1861), + [aux_sym_cmd_identifier_token24] = ACTIONS(1861), + [aux_sym_cmd_identifier_token25] = ACTIONS(1861), + [aux_sym_cmd_identifier_token26] = ACTIONS(1861), + [aux_sym_cmd_identifier_token27] = ACTIONS(1861), + [aux_sym_cmd_identifier_token28] = ACTIONS(1861), + [aux_sym_cmd_identifier_token29] = ACTIONS(1861), + [aux_sym_cmd_identifier_token30] = ACTIONS(1861), + [aux_sym_cmd_identifier_token31] = ACTIONS(1861), + [aux_sym_cmd_identifier_token32] = ACTIONS(1861), + [aux_sym_cmd_identifier_token33] = ACTIONS(1861), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1861), + [aux_sym_cmd_identifier_token36] = ACTIONS(1861), + [aux_sym_cmd_identifier_token37] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in2] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1859), + [aux_sym__val_number_token5] = ACTIONS(1859), + [aux_sym__val_number_token6] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(1883), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [478] = { - [sym_comment] = STATE(478), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), - [anon_sym_DOT_DOT2] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), - [sym__entry_separator] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2138), + [sym_raw_string_begin] = ACTIONS(1861), }, [479] = { + [sym_expr_parenthesized] = STATE(4268), + [sym__spread_parenthesized] = STATE(4640), + [sym_val_range] = STATE(4642), + [sym__val_range] = STATE(7463), + [sym__val_range_with_end] = STATE(7237), + [sym__value] = STATE(4642), + [sym_val_nothing] = STATE(4593), + [sym_val_bool] = STATE(4311), + [sym__spread_variable] = STATE(4605), + [sym_val_variable] = STATE(4198), + [sym_val_number] = STATE(4593), + [sym__val_number_decimal] = STATE(3829), + [sym__val_number] = STATE(4596), + [sym_val_duration] = STATE(4593), + [sym_val_filesize] = STATE(4593), + [sym_val_binary] = STATE(4593), + [sym_val_string] = STATE(4593), + [sym__raw_str] = STATE(3939), + [sym__str_double_quotes] = STATE(3939), + [sym_val_interpolated] = STATE(4593), + [sym__inter_single_quotes] = STATE(4597), + [sym__inter_double_quotes] = STATE(4598), + [sym_val_list] = STATE(4593), + [sym__spread_list] = STATE(4640), + [sym_val_record] = STATE(4593), + [sym_val_table] = STATE(4593), + [sym_val_closure] = STATE(4593), + [sym__cmd_arg] = STATE(4687), + [sym_redirection] = STATE(4718), + [sym__flag] = STATE(4720), + [sym_short_flag] = STATE(4569), + [sym_long_flag] = STATE(4569), + [sym_unquoted] = STATE(4334), + [sym__unquoted_with_expr] = STATE(4749), + [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(479), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_alias] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_let_DASHenv] = ACTIONS(2140), - [anon_sym_mut] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [aux_sym_cmd_identifier_token1] = ACTIONS(2140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2140), - [aux_sym_cmd_identifier_token3] = ACTIONS(2140), - [aux_sym_cmd_identifier_token4] = ACTIONS(2140), - [aux_sym_cmd_identifier_token5] = ACTIONS(2140), - [aux_sym_cmd_identifier_token6] = ACTIONS(2140), - [aux_sym_cmd_identifier_token7] = ACTIONS(2140), - [aux_sym_cmd_identifier_token8] = ACTIONS(2140), - [aux_sym_cmd_identifier_token9] = ACTIONS(2140), - [aux_sym_cmd_identifier_token10] = ACTIONS(2140), - [aux_sym_cmd_identifier_token11] = ACTIONS(2140), - [aux_sym_cmd_identifier_token12] = ACTIONS(2140), - [aux_sym_cmd_identifier_token13] = ACTIONS(2140), - [aux_sym_cmd_identifier_token14] = ACTIONS(2140), - [aux_sym_cmd_identifier_token15] = ACTIONS(2140), - [aux_sym_cmd_identifier_token16] = ACTIONS(2140), - [aux_sym_cmd_identifier_token17] = ACTIONS(2140), - [aux_sym_cmd_identifier_token18] = ACTIONS(2140), - [aux_sym_cmd_identifier_token19] = ACTIONS(2140), - [aux_sym_cmd_identifier_token20] = ACTIONS(2140), - [aux_sym_cmd_identifier_token21] = ACTIONS(2140), - [aux_sym_cmd_identifier_token22] = ACTIONS(2140), - [aux_sym_cmd_identifier_token23] = ACTIONS(2140), - [aux_sym_cmd_identifier_token24] = ACTIONS(2140), - [aux_sym_cmd_identifier_token25] = ACTIONS(2140), - [aux_sym_cmd_identifier_token26] = ACTIONS(2140), - [aux_sym_cmd_identifier_token27] = ACTIONS(2140), - [aux_sym_cmd_identifier_token28] = ACTIONS(2140), - [aux_sym_cmd_identifier_token29] = ACTIONS(2140), - [aux_sym_cmd_identifier_token30] = ACTIONS(2140), - [aux_sym_cmd_identifier_token31] = ACTIONS(2140), - [aux_sym_cmd_identifier_token32] = ACTIONS(2140), - [aux_sym_cmd_identifier_token33] = ACTIONS(2140), - [aux_sym_cmd_identifier_token34] = ACTIONS(2140), - [aux_sym_cmd_identifier_token35] = ACTIONS(2140), - [aux_sym_cmd_identifier_token36] = ACTIONS(2140), - [aux_sym_cmd_identifier_token37] = ACTIONS(2140), - [aux_sym_cmd_identifier_token38] = ACTIONS(2140), - [aux_sym_cmd_identifier_token39] = ACTIONS(2140), - [aux_sym_cmd_identifier_token40] = ACTIONS(2140), - [anon_sym_def] = ACTIONS(2140), - [anon_sym_export_DASHenv] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_error] = ACTIONS(2140), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_in2] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_make] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_source] = ACTIONS(2140), - [anon_sym_source_DASHenv] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_hide] = ACTIONS(2140), - [anon_sym_hide_DASHenv] = ACTIONS(2140), - [anon_sym_overlay] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), - [anon_sym_DOT_DOT2] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), - [aux_sym__val_number_decimal_token1] = ACTIONS(2140), - [aux_sym__val_number_decimal_token2] = ACTIONS(2140), - [aux_sym__val_number_decimal_token3] = ACTIONS(2140), - [aux_sym__val_number_decimal_token4] = ACTIONS(2140), - [aux_sym__val_number_token1] = ACTIONS(2140), - [aux_sym__val_number_token2] = ACTIONS(2140), - [aux_sym__val_number_token3] = ACTIONS(2140), - [aux_sym__val_number_token4] = ACTIONS(2140), - [aux_sym__val_number_token5] = ACTIONS(2140), - [aux_sym__val_number_token6] = ACTIONS(2140), + [ts_builtin_sym_end] = ACTIONS(2002), + [sym__newline] = ACTIONS(1908), + [sym__space] = ACTIONS(2002), + [anon_sym_SEMI] = ACTIONS(1908), + [anon_sym_PIPE] = ACTIONS(1908), + [anon_sym_err_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_GT_PIPE] = ACTIONS(1908), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1908), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1908), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1908), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1908), + [anon_sym_LBRACK] = ACTIONS(2100), + [anon_sym_LPAREN] = ACTIONS(2102), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_DASH_DASH] = ACTIONS(2106), + [anon_sym_DASH2] = ACTIONS(2108), + [anon_sym_LBRACE] = ACTIONS(2110), + [anon_sym_DOT_DOT] = ACTIONS(2112), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2114), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2116), + [anon_sym_DOT_DOT_LT] = ACTIONS(2116), + [anon_sym_null] = ACTIONS(2118), + [anon_sym_true] = ACTIONS(2120), + [anon_sym_false] = ACTIONS(2120), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(2124), + [aux_sym__val_number_decimal_token3] = ACTIONS(2126), + [aux_sym__val_number_decimal_token4] = ACTIONS(2128), + [aux_sym__val_number_token1] = ACTIONS(2130), + [aux_sym__val_number_token2] = ACTIONS(2130), + [aux_sym__val_number_token3] = ACTIONS(2130), + [aux_sym__val_number_token4] = ACTIONS(2132), + [aux_sym__val_number_token5] = ACTIONS(2132), + [aux_sym__val_number_token6] = ACTIONS(2132), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(2138), [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), - [sym__entry_separator] = ACTIONS(2142), + [sym__str_single_quotes] = ACTIONS(2142), + [sym__str_back_ticks] = ACTIONS(2142), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2144), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2146), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2150), + [anon_sym_out_GT_GT] = ACTIONS(2150), + [anon_sym_e_GT_GT] = ACTIONS(2150), + [anon_sym_o_GT_GT] = ACTIONS(2150), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), + [aux_sym_unquoted_token1] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2142), + [sym_raw_string_begin] = ACTIONS(2154), }, [480] = { - [sym_cell_path] = STATE(761), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(685), + [sym_path] = STATE(549), [sym_comment] = STATE(480), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2017), - [anon_sym_alias] = ACTIONS(2017), - [anon_sym_let] = ACTIONS(2017), - [anon_sym_let_DASHenv] = ACTIONS(2017), - [anon_sym_mut] = ACTIONS(2017), - [anon_sym_const] = ACTIONS(2017), - [aux_sym_cmd_identifier_token1] = ACTIONS(2017), - [aux_sym_cmd_identifier_token2] = ACTIONS(2019), - [aux_sym_cmd_identifier_token3] = ACTIONS(2019), - [aux_sym_cmd_identifier_token4] = ACTIONS(2019), - [aux_sym_cmd_identifier_token5] = ACTIONS(2019), - [aux_sym_cmd_identifier_token6] = ACTIONS(2019), - [aux_sym_cmd_identifier_token7] = ACTIONS(2019), - [aux_sym_cmd_identifier_token8] = ACTIONS(2017), - [aux_sym_cmd_identifier_token9] = ACTIONS(2017), - [aux_sym_cmd_identifier_token10] = ACTIONS(2019), - [aux_sym_cmd_identifier_token11] = ACTIONS(2019), - [aux_sym_cmd_identifier_token12] = ACTIONS(2017), - [aux_sym_cmd_identifier_token13] = ACTIONS(2017), - [aux_sym_cmd_identifier_token14] = ACTIONS(2017), - [aux_sym_cmd_identifier_token15] = ACTIONS(2017), - [aux_sym_cmd_identifier_token16] = ACTIONS(2019), - [aux_sym_cmd_identifier_token17] = ACTIONS(2019), - [aux_sym_cmd_identifier_token18] = ACTIONS(2019), - [aux_sym_cmd_identifier_token19] = ACTIONS(2019), - [aux_sym_cmd_identifier_token20] = ACTIONS(2019), - [aux_sym_cmd_identifier_token21] = ACTIONS(2019), - [aux_sym_cmd_identifier_token22] = ACTIONS(2019), - [aux_sym_cmd_identifier_token23] = ACTIONS(2019), - [aux_sym_cmd_identifier_token24] = ACTIONS(2019), - [aux_sym_cmd_identifier_token25] = ACTIONS(2019), - [aux_sym_cmd_identifier_token26] = ACTIONS(2019), - [aux_sym_cmd_identifier_token27] = ACTIONS(2019), - [aux_sym_cmd_identifier_token28] = ACTIONS(2019), - [aux_sym_cmd_identifier_token29] = ACTIONS(2019), - [aux_sym_cmd_identifier_token30] = ACTIONS(2019), - [aux_sym_cmd_identifier_token31] = ACTIONS(2019), - [aux_sym_cmd_identifier_token32] = ACTIONS(2019), - [aux_sym_cmd_identifier_token33] = ACTIONS(2019), - [aux_sym_cmd_identifier_token34] = ACTIONS(2017), - [aux_sym_cmd_identifier_token35] = ACTIONS(2019), - [aux_sym_cmd_identifier_token36] = ACTIONS(2019), - [aux_sym_cmd_identifier_token37] = ACTIONS(2019), - [aux_sym_cmd_identifier_token38] = ACTIONS(2017), - [aux_sym_cmd_identifier_token39] = ACTIONS(2019), - [aux_sym_cmd_identifier_token40] = ACTIONS(2019), - [anon_sym_def] = ACTIONS(2017), - [anon_sym_export_DASHenv] = ACTIONS(2017), - [anon_sym_extern] = ACTIONS(2017), - [anon_sym_module] = ACTIONS(2017), - [anon_sym_use] = ACTIONS(2017), - [anon_sym_LPAREN] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2019), - [anon_sym_error] = ACTIONS(2017), - [anon_sym_DASH2] = ACTIONS(2017), - [anon_sym_break] = ACTIONS(2017), - [anon_sym_continue] = ACTIONS(2017), - [anon_sym_for] = ACTIONS(2017), - [anon_sym_in2] = ACTIONS(2017), - [anon_sym_loop] = ACTIONS(2017), - [anon_sym_make] = ACTIONS(2017), - [anon_sym_while] = ACTIONS(2017), - [anon_sym_do] = ACTIONS(2017), - [anon_sym_if] = ACTIONS(2017), - [anon_sym_else] = ACTIONS(2017), - [anon_sym_match] = ACTIONS(2017), - [anon_sym_RBRACE] = ACTIONS(2019), - [anon_sym_try] = ACTIONS(2017), - [anon_sym_catch] = ACTIONS(2017), - [anon_sym_return] = ACTIONS(2017), - [anon_sym_source] = ACTIONS(2017), - [anon_sym_source_DASHenv] = ACTIONS(2017), - [anon_sym_register] = ACTIONS(2017), - [anon_sym_hide] = ACTIONS(2017), - [anon_sym_hide_DASHenv] = ACTIONS(2017), - [anon_sym_overlay] = ACTIONS(2017), - [anon_sym_as] = ACTIONS(2017), - [anon_sym_PLUS2] = ACTIONS(2017), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2019), - [aux_sym__val_number_decimal_token1] = ACTIONS(2017), - [aux_sym__val_number_decimal_token2] = ACTIONS(2019), - [aux_sym__val_number_decimal_token3] = ACTIONS(2019), - [aux_sym__val_number_decimal_token4] = ACTIONS(2019), - [aux_sym__val_number_token1] = ACTIONS(2019), - [aux_sym__val_number_token2] = ACTIONS(2019), - [aux_sym__val_number_token3] = ACTIONS(2019), - [aux_sym__val_number_token4] = ACTIONS(2017), - [aux_sym__val_number_token5] = ACTIONS(2017), - [aux_sym__val_number_token6] = ACTIONS(2017), - [anon_sym_DQUOTE] = ACTIONS(2019), - [sym__str_single_quotes] = ACTIONS(2019), - [sym__str_back_ticks] = ACTIONS(2019), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2019), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2019), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(2004), + [anon_sym_alias] = ACTIONS(2004), + [anon_sym_let] = ACTIONS(2004), + [anon_sym_let_DASHenv] = ACTIONS(2004), + [anon_sym_mut] = ACTIONS(2004), + [anon_sym_const] = ACTIONS(2004), + [aux_sym_cmd_identifier_token1] = ACTIONS(2004), + [aux_sym_cmd_identifier_token2] = ACTIONS(2006), + [aux_sym_cmd_identifier_token3] = ACTIONS(2006), + [aux_sym_cmd_identifier_token4] = ACTIONS(2006), + [aux_sym_cmd_identifier_token5] = ACTIONS(2006), + [aux_sym_cmd_identifier_token6] = ACTIONS(2006), + [aux_sym_cmd_identifier_token7] = ACTIONS(2006), + [aux_sym_cmd_identifier_token8] = ACTIONS(2004), + [aux_sym_cmd_identifier_token9] = ACTIONS(2004), + [aux_sym_cmd_identifier_token10] = ACTIONS(2006), + [aux_sym_cmd_identifier_token11] = ACTIONS(2006), + [aux_sym_cmd_identifier_token12] = ACTIONS(2004), + [aux_sym_cmd_identifier_token13] = ACTIONS(2004), + [aux_sym_cmd_identifier_token14] = ACTIONS(2004), + [aux_sym_cmd_identifier_token15] = ACTIONS(2004), + [aux_sym_cmd_identifier_token16] = ACTIONS(2006), + [aux_sym_cmd_identifier_token17] = ACTIONS(2006), + [aux_sym_cmd_identifier_token18] = ACTIONS(2006), + [aux_sym_cmd_identifier_token19] = ACTIONS(2006), + [aux_sym_cmd_identifier_token20] = ACTIONS(2006), + [aux_sym_cmd_identifier_token21] = ACTIONS(2006), + [aux_sym_cmd_identifier_token22] = ACTIONS(2006), + [aux_sym_cmd_identifier_token23] = ACTIONS(2006), + [aux_sym_cmd_identifier_token24] = ACTIONS(2006), + [aux_sym_cmd_identifier_token25] = ACTIONS(2006), + [aux_sym_cmd_identifier_token26] = ACTIONS(2006), + [aux_sym_cmd_identifier_token27] = ACTIONS(2006), + [aux_sym_cmd_identifier_token28] = ACTIONS(2006), + [aux_sym_cmd_identifier_token29] = ACTIONS(2006), + [aux_sym_cmd_identifier_token30] = ACTIONS(2006), + [aux_sym_cmd_identifier_token31] = ACTIONS(2006), + [aux_sym_cmd_identifier_token32] = ACTIONS(2006), + [aux_sym_cmd_identifier_token33] = ACTIONS(2006), + [aux_sym_cmd_identifier_token34] = ACTIONS(2004), + [aux_sym_cmd_identifier_token35] = ACTIONS(2006), + [aux_sym_cmd_identifier_token36] = ACTIONS(2006), + [aux_sym_cmd_identifier_token37] = ACTIONS(2006), + [aux_sym_cmd_identifier_token38] = ACTIONS(2004), + [aux_sym_cmd_identifier_token39] = ACTIONS(2006), + [aux_sym_cmd_identifier_token40] = ACTIONS(2006), + [anon_sym_def] = ACTIONS(2004), + [anon_sym_export_DASHenv] = ACTIONS(2004), + [anon_sym_extern] = ACTIONS(2004), + [anon_sym_module] = ACTIONS(2004), + [anon_sym_use] = ACTIONS(2004), + [anon_sym_LPAREN] = ACTIONS(2006), + [anon_sym_COMMA] = ACTIONS(2006), + [anon_sym_DOLLAR] = ACTIONS(2006), + [anon_sym_error] = ACTIONS(2004), + [anon_sym_DASH2] = ACTIONS(2004), + [anon_sym_break] = ACTIONS(2004), + [anon_sym_continue] = ACTIONS(2004), + [anon_sym_for] = ACTIONS(2004), + [anon_sym_in2] = ACTIONS(2004), + [anon_sym_loop] = ACTIONS(2004), + [anon_sym_make] = ACTIONS(2004), + [anon_sym_while] = ACTIONS(2004), + [anon_sym_do] = ACTIONS(2004), + [anon_sym_if] = ACTIONS(2004), + [anon_sym_else] = ACTIONS(2004), + [anon_sym_match] = ACTIONS(2004), + [anon_sym_RBRACE] = ACTIONS(2006), + [anon_sym_try] = ACTIONS(2004), + [anon_sym_catch] = ACTIONS(2004), + [anon_sym_return] = ACTIONS(2004), + [anon_sym_source] = ACTIONS(2004), + [anon_sym_source_DASHenv] = ACTIONS(2004), + [anon_sym_register] = ACTIONS(2004), + [anon_sym_hide] = ACTIONS(2004), + [anon_sym_hide_DASHenv] = ACTIONS(2004), + [anon_sym_overlay] = ACTIONS(2004), + [anon_sym_as] = ACTIONS(2004), + [anon_sym_PLUS2] = ACTIONS(2004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2006), + [aux_sym__val_number_decimal_token1] = ACTIONS(2004), + [aux_sym__val_number_decimal_token2] = ACTIONS(2006), + [aux_sym__val_number_decimal_token3] = ACTIONS(2006), + [aux_sym__val_number_decimal_token4] = ACTIONS(2006), + [aux_sym__val_number_token1] = ACTIONS(2006), + [aux_sym__val_number_token2] = ACTIONS(2006), + [aux_sym__val_number_token3] = ACTIONS(2006), + [aux_sym__val_number_token4] = ACTIONS(2004), + [aux_sym__val_number_token5] = ACTIONS(2004), + [aux_sym__val_number_token6] = ACTIONS(2004), + [anon_sym_DQUOTE] = ACTIONS(2006), + [sym__str_single_quotes] = ACTIONS(2006), + [sym__str_back_ticks] = ACTIONS(2006), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2006), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2006), }, [481] = { - [sym_cell_path] = STATE(762), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(720), + [sym_path] = STATE(549), [sym_comment] = STATE(481), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2021), - [anon_sym_alias] = ACTIONS(2021), - [anon_sym_let] = ACTIONS(2021), - [anon_sym_let_DASHenv] = ACTIONS(2021), - [anon_sym_mut] = ACTIONS(2021), - [anon_sym_const] = ACTIONS(2021), - [aux_sym_cmd_identifier_token1] = ACTIONS(2021), - [aux_sym_cmd_identifier_token2] = ACTIONS(2023), - [aux_sym_cmd_identifier_token3] = ACTIONS(2023), - [aux_sym_cmd_identifier_token4] = ACTIONS(2023), - [aux_sym_cmd_identifier_token5] = ACTIONS(2023), - [aux_sym_cmd_identifier_token6] = ACTIONS(2023), - [aux_sym_cmd_identifier_token7] = ACTIONS(2023), - [aux_sym_cmd_identifier_token8] = ACTIONS(2021), - [aux_sym_cmd_identifier_token9] = ACTIONS(2021), - [aux_sym_cmd_identifier_token10] = ACTIONS(2023), - [aux_sym_cmd_identifier_token11] = ACTIONS(2023), - [aux_sym_cmd_identifier_token12] = ACTIONS(2021), - [aux_sym_cmd_identifier_token13] = ACTIONS(2021), - [aux_sym_cmd_identifier_token14] = ACTIONS(2021), - [aux_sym_cmd_identifier_token15] = ACTIONS(2021), - [aux_sym_cmd_identifier_token16] = ACTIONS(2023), - [aux_sym_cmd_identifier_token17] = ACTIONS(2023), - [aux_sym_cmd_identifier_token18] = ACTIONS(2023), - [aux_sym_cmd_identifier_token19] = ACTIONS(2023), - [aux_sym_cmd_identifier_token20] = ACTIONS(2023), - [aux_sym_cmd_identifier_token21] = ACTIONS(2023), - [aux_sym_cmd_identifier_token22] = ACTIONS(2023), - [aux_sym_cmd_identifier_token23] = ACTIONS(2023), - [aux_sym_cmd_identifier_token24] = ACTIONS(2023), - [aux_sym_cmd_identifier_token25] = ACTIONS(2023), - [aux_sym_cmd_identifier_token26] = ACTIONS(2023), - [aux_sym_cmd_identifier_token27] = ACTIONS(2023), - [aux_sym_cmd_identifier_token28] = ACTIONS(2023), - [aux_sym_cmd_identifier_token29] = ACTIONS(2023), - [aux_sym_cmd_identifier_token30] = ACTIONS(2023), - [aux_sym_cmd_identifier_token31] = ACTIONS(2023), - [aux_sym_cmd_identifier_token32] = ACTIONS(2023), - [aux_sym_cmd_identifier_token33] = ACTIONS(2023), - [aux_sym_cmd_identifier_token34] = ACTIONS(2021), - [aux_sym_cmd_identifier_token35] = ACTIONS(2023), - [aux_sym_cmd_identifier_token36] = ACTIONS(2023), - [aux_sym_cmd_identifier_token37] = ACTIONS(2023), - [aux_sym_cmd_identifier_token38] = ACTIONS(2021), - [aux_sym_cmd_identifier_token39] = ACTIONS(2023), - [aux_sym_cmd_identifier_token40] = ACTIONS(2023), - [anon_sym_def] = ACTIONS(2021), - [anon_sym_export_DASHenv] = ACTIONS(2021), - [anon_sym_extern] = ACTIONS(2021), - [anon_sym_module] = ACTIONS(2021), - [anon_sym_use] = ACTIONS(2021), - [anon_sym_LPAREN] = ACTIONS(2023), - [anon_sym_DOLLAR] = ACTIONS(2023), - [anon_sym_error] = ACTIONS(2021), - [anon_sym_DASH2] = ACTIONS(2021), - [anon_sym_break] = ACTIONS(2021), - [anon_sym_continue] = ACTIONS(2021), - [anon_sym_for] = ACTIONS(2021), - [anon_sym_in2] = ACTIONS(2021), - [anon_sym_loop] = ACTIONS(2021), - [anon_sym_make] = ACTIONS(2021), - [anon_sym_while] = ACTIONS(2021), - [anon_sym_do] = ACTIONS(2021), - [anon_sym_if] = ACTIONS(2021), - [anon_sym_else] = ACTIONS(2021), - [anon_sym_match] = ACTIONS(2021), - [anon_sym_RBRACE] = ACTIONS(2023), - [anon_sym_try] = ACTIONS(2021), - [anon_sym_catch] = ACTIONS(2021), - [anon_sym_return] = ACTIONS(2021), - [anon_sym_source] = ACTIONS(2021), - [anon_sym_source_DASHenv] = ACTIONS(2021), - [anon_sym_register] = ACTIONS(2021), - [anon_sym_hide] = ACTIONS(2021), - [anon_sym_hide_DASHenv] = ACTIONS(2021), - [anon_sym_overlay] = ACTIONS(2021), - [anon_sym_as] = ACTIONS(2021), - [anon_sym_PLUS2] = ACTIONS(2021), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2023), - [aux_sym__val_number_decimal_token1] = ACTIONS(2021), - [aux_sym__val_number_decimal_token2] = ACTIONS(2023), - [aux_sym__val_number_decimal_token3] = ACTIONS(2023), - [aux_sym__val_number_decimal_token4] = ACTIONS(2023), - [aux_sym__val_number_token1] = ACTIONS(2023), - [aux_sym__val_number_token2] = ACTIONS(2023), - [aux_sym__val_number_token3] = ACTIONS(2023), - [aux_sym__val_number_token4] = ACTIONS(2021), - [aux_sym__val_number_token5] = ACTIONS(2021), - [aux_sym__val_number_token6] = ACTIONS(2021), - [anon_sym_DQUOTE] = ACTIONS(2023), - [sym__str_single_quotes] = ACTIONS(2023), - [sym__str_back_ticks] = ACTIONS(2023), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2023), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2023), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1865), + [aux_sym_cmd_identifier_token3] = ACTIONS(1865), + [aux_sym_cmd_identifier_token4] = ACTIONS(1865), + [aux_sym_cmd_identifier_token5] = ACTIONS(1865), + [aux_sym_cmd_identifier_token6] = ACTIONS(1865), + [aux_sym_cmd_identifier_token7] = ACTIONS(1865), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1865), + [aux_sym_cmd_identifier_token11] = ACTIONS(1865), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1865), + [aux_sym_cmd_identifier_token17] = ACTIONS(1865), + [aux_sym_cmd_identifier_token18] = ACTIONS(1865), + [aux_sym_cmd_identifier_token19] = ACTIONS(1865), + [aux_sym_cmd_identifier_token20] = ACTIONS(1865), + [aux_sym_cmd_identifier_token21] = ACTIONS(1865), + [aux_sym_cmd_identifier_token22] = ACTIONS(1865), + [aux_sym_cmd_identifier_token23] = ACTIONS(1865), + [aux_sym_cmd_identifier_token24] = ACTIONS(1865), + [aux_sym_cmd_identifier_token25] = ACTIONS(1865), + [aux_sym_cmd_identifier_token26] = ACTIONS(1865), + [aux_sym_cmd_identifier_token27] = ACTIONS(1865), + [aux_sym_cmd_identifier_token28] = ACTIONS(1865), + [aux_sym_cmd_identifier_token29] = ACTIONS(1865), + [aux_sym_cmd_identifier_token30] = ACTIONS(1865), + [aux_sym_cmd_identifier_token31] = ACTIONS(1865), + [aux_sym_cmd_identifier_token32] = ACTIONS(1865), + [aux_sym_cmd_identifier_token33] = ACTIONS(1865), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1865), + [aux_sym_cmd_identifier_token36] = ACTIONS(1865), + [aux_sym_cmd_identifier_token37] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1865), }, [482] = { - [sym_cell_path] = STATE(763), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(722), + [sym_path] = STATE(549), [sym_comment] = STATE(482), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2027), - [aux_sym_cmd_identifier_token3] = ACTIONS(2027), - [aux_sym_cmd_identifier_token4] = ACTIONS(2027), - [aux_sym_cmd_identifier_token5] = ACTIONS(2027), - [aux_sym_cmd_identifier_token6] = ACTIONS(2027), - [aux_sym_cmd_identifier_token7] = ACTIONS(2027), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2027), - [aux_sym_cmd_identifier_token11] = ACTIONS(2027), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2027), - [aux_sym_cmd_identifier_token17] = ACTIONS(2027), - [aux_sym_cmd_identifier_token18] = ACTIONS(2027), - [aux_sym_cmd_identifier_token19] = ACTIONS(2027), - [aux_sym_cmd_identifier_token20] = ACTIONS(2027), - [aux_sym_cmd_identifier_token21] = ACTIONS(2027), - [aux_sym_cmd_identifier_token22] = ACTIONS(2027), - [aux_sym_cmd_identifier_token23] = ACTIONS(2027), - [aux_sym_cmd_identifier_token24] = ACTIONS(2027), - [aux_sym_cmd_identifier_token25] = ACTIONS(2027), - [aux_sym_cmd_identifier_token26] = ACTIONS(2027), - [aux_sym_cmd_identifier_token27] = ACTIONS(2027), - [aux_sym_cmd_identifier_token28] = ACTIONS(2027), - [aux_sym_cmd_identifier_token29] = ACTIONS(2027), - [aux_sym_cmd_identifier_token30] = ACTIONS(2027), - [aux_sym_cmd_identifier_token31] = ACTIONS(2027), - [aux_sym_cmd_identifier_token32] = ACTIONS(2027), - [aux_sym_cmd_identifier_token33] = ACTIONS(2027), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2027), - [aux_sym_cmd_identifier_token36] = ACTIONS(2027), - [aux_sym_cmd_identifier_token37] = ACTIONS(2027), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2027), - [aux_sym_cmd_identifier_token40] = ACTIONS(2027), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2027), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2027), - [aux_sym__val_number_decimal_token3] = ACTIONS(2027), - [aux_sym__val_number_decimal_token4] = ACTIONS(2027), - [aux_sym__val_number_token1] = ACTIONS(2027), - [aux_sym__val_number_token2] = ACTIONS(2027), - [aux_sym__val_number_token3] = ACTIONS(2027), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2027), - [sym__str_single_quotes] = ACTIONS(2027), - [sym__str_back_ticks] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2027), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1867), + [anon_sym_alias] = ACTIONS(1867), + [anon_sym_let] = ACTIONS(1867), + [anon_sym_let_DASHenv] = ACTIONS(1867), + [anon_sym_mut] = ACTIONS(1867), + [anon_sym_const] = ACTIONS(1867), + [aux_sym_cmd_identifier_token1] = ACTIONS(1867), + [aux_sym_cmd_identifier_token2] = ACTIONS(1869), + [aux_sym_cmd_identifier_token3] = ACTIONS(1869), + [aux_sym_cmd_identifier_token4] = ACTIONS(1869), + [aux_sym_cmd_identifier_token5] = ACTIONS(1869), + [aux_sym_cmd_identifier_token6] = ACTIONS(1869), + [aux_sym_cmd_identifier_token7] = ACTIONS(1869), + [aux_sym_cmd_identifier_token8] = ACTIONS(1867), + [aux_sym_cmd_identifier_token9] = ACTIONS(1867), + [aux_sym_cmd_identifier_token10] = ACTIONS(1869), + [aux_sym_cmd_identifier_token11] = ACTIONS(1869), + [aux_sym_cmd_identifier_token12] = ACTIONS(1867), + [aux_sym_cmd_identifier_token13] = ACTIONS(1867), + [aux_sym_cmd_identifier_token14] = ACTIONS(1867), + [aux_sym_cmd_identifier_token15] = ACTIONS(1867), + [aux_sym_cmd_identifier_token16] = ACTIONS(1869), + [aux_sym_cmd_identifier_token17] = ACTIONS(1869), + [aux_sym_cmd_identifier_token18] = ACTIONS(1869), + [aux_sym_cmd_identifier_token19] = ACTIONS(1869), + [aux_sym_cmd_identifier_token20] = ACTIONS(1869), + [aux_sym_cmd_identifier_token21] = ACTIONS(1869), + [aux_sym_cmd_identifier_token22] = ACTIONS(1869), + [aux_sym_cmd_identifier_token23] = ACTIONS(1869), + [aux_sym_cmd_identifier_token24] = ACTIONS(1869), + [aux_sym_cmd_identifier_token25] = ACTIONS(1869), + [aux_sym_cmd_identifier_token26] = ACTIONS(1869), + [aux_sym_cmd_identifier_token27] = ACTIONS(1869), + [aux_sym_cmd_identifier_token28] = ACTIONS(1869), + [aux_sym_cmd_identifier_token29] = ACTIONS(1869), + [aux_sym_cmd_identifier_token30] = ACTIONS(1869), + [aux_sym_cmd_identifier_token31] = ACTIONS(1869), + [aux_sym_cmd_identifier_token32] = ACTIONS(1869), + [aux_sym_cmd_identifier_token33] = ACTIONS(1869), + [aux_sym_cmd_identifier_token34] = ACTIONS(1867), + [aux_sym_cmd_identifier_token35] = ACTIONS(1869), + [aux_sym_cmd_identifier_token36] = ACTIONS(1869), + [aux_sym_cmd_identifier_token37] = ACTIONS(1869), + [aux_sym_cmd_identifier_token38] = ACTIONS(1867), + [aux_sym_cmd_identifier_token39] = ACTIONS(1869), + [aux_sym_cmd_identifier_token40] = ACTIONS(1869), + [anon_sym_def] = ACTIONS(1867), + [anon_sym_export_DASHenv] = ACTIONS(1867), + [anon_sym_extern] = ACTIONS(1867), + [anon_sym_module] = ACTIONS(1867), + [anon_sym_use] = ACTIONS(1867), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_COMMA] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1869), + [anon_sym_error] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_break] = ACTIONS(1867), + [anon_sym_continue] = ACTIONS(1867), + [anon_sym_for] = ACTIONS(1867), + [anon_sym_in2] = ACTIONS(1867), + [anon_sym_loop] = ACTIONS(1867), + [anon_sym_make] = ACTIONS(1867), + [anon_sym_while] = ACTIONS(1867), + [anon_sym_do] = ACTIONS(1867), + [anon_sym_if] = ACTIONS(1867), + [anon_sym_else] = ACTIONS(1867), + [anon_sym_match] = ACTIONS(1867), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_try] = ACTIONS(1867), + [anon_sym_catch] = ACTIONS(1867), + [anon_sym_return] = ACTIONS(1867), + [anon_sym_source] = ACTIONS(1867), + [anon_sym_source_DASHenv] = ACTIONS(1867), + [anon_sym_register] = ACTIONS(1867), + [anon_sym_hide] = ACTIONS(1867), + [anon_sym_hide_DASHenv] = ACTIONS(1867), + [anon_sym_overlay] = ACTIONS(1867), + [anon_sym_as] = ACTIONS(1867), + [anon_sym_PLUS2] = ACTIONS(1867), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [aux_sym__val_number_token4] = ACTIONS(1867), + [aux_sym__val_number_token5] = ACTIONS(1867), + [aux_sym__val_number_token6] = ACTIONS(1867), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1869), }, [483] = { - [sym_cell_path] = STATE(699), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(730), + [sym_path] = STATE(549), [sym_comment] = STATE(483), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1969), - [anon_sym_alias] = ACTIONS(1969), - [anon_sym_let] = ACTIONS(1969), - [anon_sym_let_DASHenv] = ACTIONS(1969), - [anon_sym_mut] = ACTIONS(1969), - [anon_sym_const] = ACTIONS(1969), - [aux_sym_cmd_identifier_token1] = ACTIONS(1969), - [aux_sym_cmd_identifier_token2] = ACTIONS(1971), - [aux_sym_cmd_identifier_token3] = ACTIONS(1971), - [aux_sym_cmd_identifier_token4] = ACTIONS(1971), - [aux_sym_cmd_identifier_token5] = ACTIONS(1971), - [aux_sym_cmd_identifier_token6] = ACTIONS(1971), - [aux_sym_cmd_identifier_token7] = ACTIONS(1971), - [aux_sym_cmd_identifier_token8] = ACTIONS(1969), - [aux_sym_cmd_identifier_token9] = ACTIONS(1969), - [aux_sym_cmd_identifier_token10] = ACTIONS(1971), - [aux_sym_cmd_identifier_token11] = ACTIONS(1971), - [aux_sym_cmd_identifier_token12] = ACTIONS(1969), - [aux_sym_cmd_identifier_token13] = ACTIONS(1969), - [aux_sym_cmd_identifier_token14] = ACTIONS(1969), - [aux_sym_cmd_identifier_token15] = ACTIONS(1969), - [aux_sym_cmd_identifier_token16] = ACTIONS(1971), - [aux_sym_cmd_identifier_token17] = ACTIONS(1971), - [aux_sym_cmd_identifier_token18] = ACTIONS(1971), - [aux_sym_cmd_identifier_token19] = ACTIONS(1971), - [aux_sym_cmd_identifier_token20] = ACTIONS(1971), - [aux_sym_cmd_identifier_token21] = ACTIONS(1971), - [aux_sym_cmd_identifier_token22] = ACTIONS(1971), - [aux_sym_cmd_identifier_token23] = ACTIONS(1971), - [aux_sym_cmd_identifier_token24] = ACTIONS(1971), - [aux_sym_cmd_identifier_token25] = ACTIONS(1971), - [aux_sym_cmd_identifier_token26] = ACTIONS(1971), - [aux_sym_cmd_identifier_token27] = ACTIONS(1971), - [aux_sym_cmd_identifier_token28] = ACTIONS(1971), - [aux_sym_cmd_identifier_token29] = ACTIONS(1971), - [aux_sym_cmd_identifier_token30] = ACTIONS(1971), - [aux_sym_cmd_identifier_token31] = ACTIONS(1971), - [aux_sym_cmd_identifier_token32] = ACTIONS(1971), - [aux_sym_cmd_identifier_token33] = ACTIONS(1971), - [aux_sym_cmd_identifier_token34] = ACTIONS(1969), - [aux_sym_cmd_identifier_token35] = ACTIONS(1971), - [aux_sym_cmd_identifier_token36] = ACTIONS(1971), - [aux_sym_cmd_identifier_token37] = ACTIONS(1971), - [aux_sym_cmd_identifier_token38] = ACTIONS(1969), - [aux_sym_cmd_identifier_token39] = ACTIONS(1971), - [aux_sym_cmd_identifier_token40] = ACTIONS(1971), - [anon_sym_def] = ACTIONS(1969), - [anon_sym_export_DASHenv] = ACTIONS(1969), - [anon_sym_extern] = ACTIONS(1969), - [anon_sym_module] = ACTIONS(1969), - [anon_sym_use] = ACTIONS(1969), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1971), - [anon_sym_error] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_break] = ACTIONS(1969), - [anon_sym_continue] = ACTIONS(1969), - [anon_sym_for] = ACTIONS(1969), - [anon_sym_in2] = ACTIONS(1969), - [anon_sym_loop] = ACTIONS(1969), - [anon_sym_make] = ACTIONS(1969), - [anon_sym_while] = ACTIONS(1969), - [anon_sym_do] = ACTIONS(1969), - [anon_sym_if] = ACTIONS(1969), - [anon_sym_else] = ACTIONS(1969), - [anon_sym_match] = ACTIONS(1969), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_try] = ACTIONS(1969), - [anon_sym_catch] = ACTIONS(1969), - [anon_sym_return] = ACTIONS(1969), - [anon_sym_source] = ACTIONS(1969), - [anon_sym_source_DASHenv] = ACTIONS(1969), - [anon_sym_register] = ACTIONS(1969), - [anon_sym_hide] = ACTIONS(1969), - [anon_sym_hide_DASHenv] = ACTIONS(1969), - [anon_sym_overlay] = ACTIONS(1969), - [anon_sym_as] = ACTIONS(1969), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1969), - [aux_sym__val_number_token5] = ACTIONS(1969), - [aux_sym__val_number_token6] = ACTIONS(1969), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1877), + [aux_sym_cmd_identifier_token3] = ACTIONS(1877), + [aux_sym_cmd_identifier_token4] = ACTIONS(1877), + [aux_sym_cmd_identifier_token5] = ACTIONS(1877), + [aux_sym_cmd_identifier_token6] = ACTIONS(1877), + [aux_sym_cmd_identifier_token7] = ACTIONS(1877), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1877), + [aux_sym_cmd_identifier_token11] = ACTIONS(1877), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1877), + [aux_sym_cmd_identifier_token17] = ACTIONS(1877), + [aux_sym_cmd_identifier_token18] = ACTIONS(1877), + [aux_sym_cmd_identifier_token19] = ACTIONS(1877), + [aux_sym_cmd_identifier_token20] = ACTIONS(1877), + [aux_sym_cmd_identifier_token21] = ACTIONS(1877), + [aux_sym_cmd_identifier_token22] = ACTIONS(1877), + [aux_sym_cmd_identifier_token23] = ACTIONS(1877), + [aux_sym_cmd_identifier_token24] = ACTIONS(1877), + [aux_sym_cmd_identifier_token25] = ACTIONS(1877), + [aux_sym_cmd_identifier_token26] = ACTIONS(1877), + [aux_sym_cmd_identifier_token27] = ACTIONS(1877), + [aux_sym_cmd_identifier_token28] = ACTIONS(1877), + [aux_sym_cmd_identifier_token29] = ACTIONS(1877), + [aux_sym_cmd_identifier_token30] = ACTIONS(1877), + [aux_sym_cmd_identifier_token31] = ACTIONS(1877), + [aux_sym_cmd_identifier_token32] = ACTIONS(1877), + [aux_sym_cmd_identifier_token33] = ACTIONS(1877), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1877), + [aux_sym_cmd_identifier_token36] = ACTIONS(1877), + [aux_sym_cmd_identifier_token37] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), }, [484] = { - [sym_cell_path] = STATE(700), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(690), + [sym_path] = STATE(549), [sym_comment] = STATE(484), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_alias] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_let_DASHenv] = ACTIONS(1973), - [anon_sym_mut] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [aux_sym_cmd_identifier_token1] = ACTIONS(1973), - [aux_sym_cmd_identifier_token2] = ACTIONS(1975), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [aux_sym_cmd_identifier_token6] = ACTIONS(1975), - [aux_sym_cmd_identifier_token7] = ACTIONS(1975), - [aux_sym_cmd_identifier_token8] = ACTIONS(1973), - [aux_sym_cmd_identifier_token9] = ACTIONS(1973), - [aux_sym_cmd_identifier_token10] = ACTIONS(1975), - [aux_sym_cmd_identifier_token11] = ACTIONS(1975), - [aux_sym_cmd_identifier_token12] = ACTIONS(1973), - [aux_sym_cmd_identifier_token13] = ACTIONS(1973), - [aux_sym_cmd_identifier_token14] = ACTIONS(1973), - [aux_sym_cmd_identifier_token15] = ACTIONS(1973), - [aux_sym_cmd_identifier_token16] = ACTIONS(1975), - [aux_sym_cmd_identifier_token17] = ACTIONS(1975), - [aux_sym_cmd_identifier_token18] = ACTIONS(1975), - [aux_sym_cmd_identifier_token19] = ACTIONS(1975), - [aux_sym_cmd_identifier_token20] = ACTIONS(1975), - [aux_sym_cmd_identifier_token21] = ACTIONS(1975), - [aux_sym_cmd_identifier_token22] = ACTIONS(1975), - [aux_sym_cmd_identifier_token23] = ACTIONS(1975), - [aux_sym_cmd_identifier_token24] = ACTIONS(1975), - [aux_sym_cmd_identifier_token25] = ACTIONS(1975), - [aux_sym_cmd_identifier_token26] = ACTIONS(1975), - [aux_sym_cmd_identifier_token27] = ACTIONS(1975), - [aux_sym_cmd_identifier_token28] = ACTIONS(1975), - [aux_sym_cmd_identifier_token29] = ACTIONS(1975), - [aux_sym_cmd_identifier_token30] = ACTIONS(1975), - [aux_sym_cmd_identifier_token31] = ACTIONS(1975), - [aux_sym_cmd_identifier_token32] = ACTIONS(1975), - [aux_sym_cmd_identifier_token33] = ACTIONS(1975), - [aux_sym_cmd_identifier_token34] = ACTIONS(1973), - [aux_sym_cmd_identifier_token35] = ACTIONS(1975), - [aux_sym_cmd_identifier_token36] = ACTIONS(1975), - [aux_sym_cmd_identifier_token37] = ACTIONS(1975), - [aux_sym_cmd_identifier_token38] = ACTIONS(1973), - [aux_sym_cmd_identifier_token39] = ACTIONS(1975), - [aux_sym_cmd_identifier_token40] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_export_DASHenv] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_use] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1975), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_in2] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_make] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_else] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_catch] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_as] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1975), - [aux_sym__val_number_decimal_token3] = ACTIONS(1975), - [aux_sym__val_number_decimal_token4] = ACTIONS(1975), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [aux_sym__val_number_token4] = ACTIONS(1973), - [aux_sym__val_number_token5] = ACTIONS(1973), - [aux_sym__val_number_token6] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1975), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_alias] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_let_DASHenv] = ACTIONS(1825), + [anon_sym_mut] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [aux_sym_cmd_identifier_token1] = ACTIONS(1825), + [aux_sym_cmd_identifier_token2] = ACTIONS(1827), + [aux_sym_cmd_identifier_token3] = ACTIONS(1827), + [aux_sym_cmd_identifier_token4] = ACTIONS(1827), + [aux_sym_cmd_identifier_token5] = ACTIONS(1827), + [aux_sym_cmd_identifier_token6] = ACTIONS(1827), + [aux_sym_cmd_identifier_token7] = ACTIONS(1827), + [aux_sym_cmd_identifier_token8] = ACTIONS(1825), + [aux_sym_cmd_identifier_token9] = ACTIONS(1825), + [aux_sym_cmd_identifier_token10] = ACTIONS(1827), + [aux_sym_cmd_identifier_token11] = ACTIONS(1827), + [aux_sym_cmd_identifier_token12] = ACTIONS(1825), + [aux_sym_cmd_identifier_token13] = ACTIONS(1825), + [aux_sym_cmd_identifier_token14] = ACTIONS(1825), + [aux_sym_cmd_identifier_token15] = ACTIONS(1825), + [aux_sym_cmd_identifier_token16] = ACTIONS(1827), + [aux_sym_cmd_identifier_token17] = ACTIONS(1827), + [aux_sym_cmd_identifier_token18] = ACTIONS(1827), + [aux_sym_cmd_identifier_token19] = ACTIONS(1827), + [aux_sym_cmd_identifier_token20] = ACTIONS(1827), + [aux_sym_cmd_identifier_token21] = ACTIONS(1827), + [aux_sym_cmd_identifier_token22] = ACTIONS(1827), + [aux_sym_cmd_identifier_token23] = ACTIONS(1827), + [aux_sym_cmd_identifier_token24] = ACTIONS(1827), + [aux_sym_cmd_identifier_token25] = ACTIONS(1827), + [aux_sym_cmd_identifier_token26] = ACTIONS(1827), + [aux_sym_cmd_identifier_token27] = ACTIONS(1827), + [aux_sym_cmd_identifier_token28] = ACTIONS(1827), + [aux_sym_cmd_identifier_token29] = ACTIONS(1827), + [aux_sym_cmd_identifier_token30] = ACTIONS(1827), + [aux_sym_cmd_identifier_token31] = ACTIONS(1827), + [aux_sym_cmd_identifier_token32] = ACTIONS(1827), + [aux_sym_cmd_identifier_token33] = ACTIONS(1827), + [aux_sym_cmd_identifier_token34] = ACTIONS(1825), + [aux_sym_cmd_identifier_token35] = ACTIONS(1827), + [aux_sym_cmd_identifier_token36] = ACTIONS(1827), + [aux_sym_cmd_identifier_token37] = ACTIONS(1827), + [aux_sym_cmd_identifier_token38] = ACTIONS(1825), + [aux_sym_cmd_identifier_token39] = ACTIONS(1827), + [aux_sym_cmd_identifier_token40] = ACTIONS(1827), + [anon_sym_def] = ACTIONS(1825), + [anon_sym_export_DASHenv] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_error] = ACTIONS(1825), + [anon_sym_DASH2] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_in2] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_make] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_catch] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_source] = ACTIONS(1825), + [anon_sym_source_DASHenv] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_hide] = ACTIONS(1825), + [anon_sym_hide_DASHenv] = ACTIONS(1825), + [anon_sym_overlay] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_PLUS2] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1825), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1825), + [aux_sym__val_number_token5] = ACTIONS(1825), + [aux_sym__val_number_token6] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1827), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), }, [485] = { + [sym_cell_path] = STATE(733), + [sym_path] = STATE(549), [sym_comment] = STATE(485), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(2126), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2128), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2128), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1881), + [aux_sym_cmd_identifier_token3] = ACTIONS(1881), + [aux_sym_cmd_identifier_token4] = ACTIONS(1881), + [aux_sym_cmd_identifier_token5] = ACTIONS(1881), + [aux_sym_cmd_identifier_token6] = ACTIONS(1881), + [aux_sym_cmd_identifier_token7] = ACTIONS(1881), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1881), + [aux_sym_cmd_identifier_token11] = ACTIONS(1881), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1881), + [aux_sym_cmd_identifier_token17] = ACTIONS(1881), + [aux_sym_cmd_identifier_token18] = ACTIONS(1881), + [aux_sym_cmd_identifier_token19] = ACTIONS(1881), + [aux_sym_cmd_identifier_token20] = ACTIONS(1881), + [aux_sym_cmd_identifier_token21] = ACTIONS(1881), + [aux_sym_cmd_identifier_token22] = ACTIONS(1881), + [aux_sym_cmd_identifier_token23] = ACTIONS(1881), + [aux_sym_cmd_identifier_token24] = ACTIONS(1881), + [aux_sym_cmd_identifier_token25] = ACTIONS(1881), + [aux_sym_cmd_identifier_token26] = ACTIONS(1881), + [aux_sym_cmd_identifier_token27] = ACTIONS(1881), + [aux_sym_cmd_identifier_token28] = ACTIONS(1881), + [aux_sym_cmd_identifier_token29] = ACTIONS(1881), + [aux_sym_cmd_identifier_token30] = ACTIONS(1881), + [aux_sym_cmd_identifier_token31] = ACTIONS(1881), + [aux_sym_cmd_identifier_token32] = ACTIONS(1881), + [aux_sym_cmd_identifier_token33] = ACTIONS(1881), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1881), + [aux_sym_cmd_identifier_token36] = ACTIONS(1881), + [aux_sym_cmd_identifier_token37] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), }, [486] = { [sym_comment] = STATE(486), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(1908), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [487] = { - [sym_cell_path] = STATE(701), - [sym_path] = STATE(656), - [sym_comment] = STATE(487), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1977), - [anon_sym_alias] = ACTIONS(1977), - [anon_sym_let] = ACTIONS(1977), - [anon_sym_let_DASHenv] = ACTIONS(1977), - [anon_sym_mut] = ACTIONS(1977), - [anon_sym_const] = ACTIONS(1977), - [aux_sym_cmd_identifier_token1] = ACTIONS(1977), - [aux_sym_cmd_identifier_token2] = ACTIONS(1979), - [aux_sym_cmd_identifier_token3] = ACTIONS(1979), - [aux_sym_cmd_identifier_token4] = ACTIONS(1979), - [aux_sym_cmd_identifier_token5] = ACTIONS(1979), - [aux_sym_cmd_identifier_token6] = ACTIONS(1979), - [aux_sym_cmd_identifier_token7] = ACTIONS(1979), - [aux_sym_cmd_identifier_token8] = ACTIONS(1977), - [aux_sym_cmd_identifier_token9] = ACTIONS(1977), - [aux_sym_cmd_identifier_token10] = ACTIONS(1979), - [aux_sym_cmd_identifier_token11] = ACTIONS(1979), - [aux_sym_cmd_identifier_token12] = ACTIONS(1977), - [aux_sym_cmd_identifier_token13] = ACTIONS(1977), - [aux_sym_cmd_identifier_token14] = ACTIONS(1977), - [aux_sym_cmd_identifier_token15] = ACTIONS(1977), - [aux_sym_cmd_identifier_token16] = ACTIONS(1979), - [aux_sym_cmd_identifier_token17] = ACTIONS(1979), - [aux_sym_cmd_identifier_token18] = ACTIONS(1979), - [aux_sym_cmd_identifier_token19] = ACTIONS(1979), - [aux_sym_cmd_identifier_token20] = ACTIONS(1979), - [aux_sym_cmd_identifier_token21] = ACTIONS(1979), - [aux_sym_cmd_identifier_token22] = ACTIONS(1979), - [aux_sym_cmd_identifier_token23] = ACTIONS(1979), - [aux_sym_cmd_identifier_token24] = ACTIONS(1979), - [aux_sym_cmd_identifier_token25] = ACTIONS(1979), - [aux_sym_cmd_identifier_token26] = ACTIONS(1979), - [aux_sym_cmd_identifier_token27] = ACTIONS(1979), - [aux_sym_cmd_identifier_token28] = ACTIONS(1979), - [aux_sym_cmd_identifier_token29] = ACTIONS(1979), - [aux_sym_cmd_identifier_token30] = ACTIONS(1979), - [aux_sym_cmd_identifier_token31] = ACTIONS(1979), - [aux_sym_cmd_identifier_token32] = ACTIONS(1979), - [aux_sym_cmd_identifier_token33] = ACTIONS(1979), - [aux_sym_cmd_identifier_token34] = ACTIONS(1977), - [aux_sym_cmd_identifier_token35] = ACTIONS(1979), - [aux_sym_cmd_identifier_token36] = ACTIONS(1979), - [aux_sym_cmd_identifier_token37] = ACTIONS(1979), - [aux_sym_cmd_identifier_token38] = ACTIONS(1977), - [aux_sym_cmd_identifier_token39] = ACTIONS(1979), - [aux_sym_cmd_identifier_token40] = ACTIONS(1979), - [anon_sym_def] = ACTIONS(1977), - [anon_sym_export_DASHenv] = ACTIONS(1977), - [anon_sym_extern] = ACTIONS(1977), - [anon_sym_module] = ACTIONS(1977), - [anon_sym_use] = ACTIONS(1977), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1979), - [anon_sym_error] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_break] = ACTIONS(1977), - [anon_sym_continue] = ACTIONS(1977), - [anon_sym_for] = ACTIONS(1977), - [anon_sym_in2] = ACTIONS(1977), - [anon_sym_loop] = ACTIONS(1977), - [anon_sym_make] = ACTIONS(1977), - [anon_sym_while] = ACTIONS(1977), - [anon_sym_do] = ACTIONS(1977), - [anon_sym_if] = ACTIONS(1977), - [anon_sym_else] = ACTIONS(1977), - [anon_sym_match] = ACTIONS(1977), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_try] = ACTIONS(1977), - [anon_sym_catch] = ACTIONS(1977), - [anon_sym_return] = ACTIONS(1977), - [anon_sym_source] = ACTIONS(1977), - [anon_sym_source_DASHenv] = ACTIONS(1977), - [anon_sym_register] = ACTIONS(1977), - [anon_sym_hide] = ACTIONS(1977), - [anon_sym_hide_DASHenv] = ACTIONS(1977), - [anon_sym_overlay] = ACTIONS(1977), - [anon_sym_as] = ACTIONS(1977), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1979), - [aux_sym__val_number_decimal_token3] = ACTIONS(1979), - [aux_sym__val_number_decimal_token4] = ACTIONS(1979), - [aux_sym__val_number_token1] = ACTIONS(1979), - [aux_sym__val_number_token2] = ACTIONS(1979), - [aux_sym__val_number_token3] = ACTIONS(1979), - [aux_sym__val_number_token4] = ACTIONS(1977), - [aux_sym__val_number_token5] = ACTIONS(1977), - [aux_sym__val_number_token6] = ACTIONS(1977), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1979), - }, - [488] = { - [sym_comment] = STATE(488), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_let_DASHenv] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2144), - [aux_sym_cmd_identifier_token2] = ACTIONS(2144), - [aux_sym_cmd_identifier_token3] = ACTIONS(2144), - [aux_sym_cmd_identifier_token4] = ACTIONS(2144), - [aux_sym_cmd_identifier_token5] = ACTIONS(2144), - [aux_sym_cmd_identifier_token6] = ACTIONS(2144), - [aux_sym_cmd_identifier_token7] = ACTIONS(2144), - [aux_sym_cmd_identifier_token8] = ACTIONS(2144), - [aux_sym_cmd_identifier_token9] = ACTIONS(2144), - [aux_sym_cmd_identifier_token10] = ACTIONS(2144), - [aux_sym_cmd_identifier_token11] = ACTIONS(2144), - [aux_sym_cmd_identifier_token12] = ACTIONS(2144), - [aux_sym_cmd_identifier_token13] = ACTIONS(2144), - [aux_sym_cmd_identifier_token14] = ACTIONS(2144), - [aux_sym_cmd_identifier_token15] = ACTIONS(2144), - [aux_sym_cmd_identifier_token16] = ACTIONS(2144), - [aux_sym_cmd_identifier_token17] = ACTIONS(2144), - [aux_sym_cmd_identifier_token18] = ACTIONS(2144), - [aux_sym_cmd_identifier_token19] = ACTIONS(2144), - [aux_sym_cmd_identifier_token20] = ACTIONS(2144), - [aux_sym_cmd_identifier_token21] = ACTIONS(2144), - [aux_sym_cmd_identifier_token22] = ACTIONS(2144), - [aux_sym_cmd_identifier_token23] = ACTIONS(2144), - [aux_sym_cmd_identifier_token24] = ACTIONS(2144), - [aux_sym_cmd_identifier_token25] = ACTIONS(2144), - [aux_sym_cmd_identifier_token26] = ACTIONS(2144), - [aux_sym_cmd_identifier_token27] = ACTIONS(2144), - [aux_sym_cmd_identifier_token28] = ACTIONS(2144), - [aux_sym_cmd_identifier_token29] = ACTIONS(2144), - [aux_sym_cmd_identifier_token30] = ACTIONS(2144), - [aux_sym_cmd_identifier_token31] = ACTIONS(2144), - [aux_sym_cmd_identifier_token32] = ACTIONS(2144), - [aux_sym_cmd_identifier_token33] = ACTIONS(2144), - [aux_sym_cmd_identifier_token34] = ACTIONS(2144), - [aux_sym_cmd_identifier_token35] = ACTIONS(2144), - [aux_sym_cmd_identifier_token36] = ACTIONS(2144), - [aux_sym_cmd_identifier_token37] = ACTIONS(2144), - [aux_sym_cmd_identifier_token38] = ACTIONS(2144), - [aux_sym_cmd_identifier_token39] = ACTIONS(2144), - [aux_sym_cmd_identifier_token40] = ACTIONS(2144), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_error] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_make] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_source] = ACTIONS(2144), - [anon_sym_source_DASHenv] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_hide] = ACTIONS(2144), - [anon_sym_hide_DASHenv] = ACTIONS(2144), - [anon_sym_overlay] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(2146), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2148), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2148), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [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), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym__str_single_quotes] = ACTIONS(2144), - [sym__str_back_ticks] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2144), - [sym__entry_separator] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), - }, - [489] = { - [sym_comment] = STATE(489), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_alias] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_let_DASHenv] = ACTIONS(2152), - [anon_sym_mut] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [aux_sym_cmd_identifier_token1] = ACTIONS(2152), - [aux_sym_cmd_identifier_token2] = ACTIONS(2152), - [aux_sym_cmd_identifier_token3] = ACTIONS(2152), - [aux_sym_cmd_identifier_token4] = ACTIONS(2152), - [aux_sym_cmd_identifier_token5] = ACTIONS(2152), - [aux_sym_cmd_identifier_token6] = ACTIONS(2152), - [aux_sym_cmd_identifier_token7] = ACTIONS(2152), - [aux_sym_cmd_identifier_token8] = ACTIONS(2152), - [aux_sym_cmd_identifier_token9] = ACTIONS(2152), - [aux_sym_cmd_identifier_token10] = ACTIONS(2152), - [aux_sym_cmd_identifier_token11] = ACTIONS(2152), - [aux_sym_cmd_identifier_token12] = ACTIONS(2152), - [aux_sym_cmd_identifier_token13] = ACTIONS(2152), - [aux_sym_cmd_identifier_token14] = ACTIONS(2152), - [aux_sym_cmd_identifier_token15] = ACTIONS(2152), - [aux_sym_cmd_identifier_token16] = ACTIONS(2152), - [aux_sym_cmd_identifier_token17] = ACTIONS(2152), - [aux_sym_cmd_identifier_token18] = ACTIONS(2152), - [aux_sym_cmd_identifier_token19] = ACTIONS(2152), - [aux_sym_cmd_identifier_token20] = ACTIONS(2152), - [aux_sym_cmd_identifier_token21] = ACTIONS(2152), - [aux_sym_cmd_identifier_token22] = ACTIONS(2152), - [aux_sym_cmd_identifier_token23] = ACTIONS(2152), - [aux_sym_cmd_identifier_token24] = ACTIONS(2152), - [aux_sym_cmd_identifier_token25] = ACTIONS(2152), - [aux_sym_cmd_identifier_token26] = ACTIONS(2152), - [aux_sym_cmd_identifier_token27] = ACTIONS(2152), - [aux_sym_cmd_identifier_token28] = ACTIONS(2152), - [aux_sym_cmd_identifier_token29] = ACTIONS(2152), - [aux_sym_cmd_identifier_token30] = ACTIONS(2152), - [aux_sym_cmd_identifier_token31] = ACTIONS(2152), - [aux_sym_cmd_identifier_token32] = ACTIONS(2152), - [aux_sym_cmd_identifier_token33] = ACTIONS(2152), - [aux_sym_cmd_identifier_token34] = ACTIONS(2152), - [aux_sym_cmd_identifier_token35] = ACTIONS(2152), - [aux_sym_cmd_identifier_token36] = ACTIONS(2152), - [aux_sym_cmd_identifier_token37] = ACTIONS(2152), - [aux_sym_cmd_identifier_token38] = ACTIONS(2152), - [aux_sym_cmd_identifier_token39] = ACTIONS(2152), - [aux_sym_cmd_identifier_token40] = ACTIONS(2152), - [anon_sym_def] = ACTIONS(2152), - [anon_sym_export_DASHenv] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_error] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_in2] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_make] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_catch] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_source] = ACTIONS(2152), - [anon_sym_source_DASHenv] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_hide] = ACTIONS(2152), - [anon_sym_hide_DASHenv] = ACTIONS(2152), - [anon_sym_overlay] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(2154), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2156), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2156), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [aux_sym__val_number_token4] = ACTIONS(2152), - [aux_sym__val_number_token5] = ACTIONS(2152), - [aux_sym__val_number_token6] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [aux_sym_cmd_identifier_token37] = ACTIONS(2156), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2156), + [aux_sym_cmd_identifier_token40] = ACTIONS(2156), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in2] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), + [anon_sym_DOT_DOT2] = ACTIONS(2088), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), [sym__entry_separator] = ACTIONS(2158), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2158), }, - [490] = { - [sym_comment] = STATE(490), + [487] = { + [sym_comment] = STATE(487), [anon_sym_export] = ACTIONS(2160), [anon_sym_alias] = ACTIONS(2160), [anon_sym_let] = ACTIONS(2160), @@ -133602,6 +133468,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2160), [anon_sym_use] = ACTIONS(2160), [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), [anon_sym_DOLLAR] = ACTIONS(2160), [anon_sym_error] = ACTIONS(2160), [anon_sym_DASH2] = ACTIONS(2160), @@ -133629,9 +133496,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_as] = ACTIONS(2160), [anon_sym_PLUS2] = ACTIONS(2160), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2160), - [anon_sym_DOT_DOT2] = ACTIONS(2162), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2164), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2164), + [anon_sym_DOT_DOT2] = ACTIONS(2088), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2090), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2160), [aux_sym__val_number_decimal_token1] = ACTIONS(2160), [aux_sym__val_number_decimal_token2] = ACTIONS(2160), @@ -133647,218 +133514,1357 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2160), [sym__str_back_ticks] = ACTIONS(2160), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2160), + [sym__entry_separator] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2162), + }, + [488] = { + [sym_comment] = STATE(488), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2164), + [aux_sym_cmd_identifier_token3] = ACTIONS(2164), + [aux_sym_cmd_identifier_token4] = ACTIONS(2164), + [aux_sym_cmd_identifier_token5] = ACTIONS(2164), + [aux_sym_cmd_identifier_token6] = ACTIONS(2164), + [aux_sym_cmd_identifier_token7] = ACTIONS(2164), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2164), + [aux_sym_cmd_identifier_token11] = ACTIONS(2164), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2164), + [aux_sym_cmd_identifier_token17] = ACTIONS(2164), + [aux_sym_cmd_identifier_token18] = ACTIONS(2164), + [aux_sym_cmd_identifier_token19] = ACTIONS(2164), + [aux_sym_cmd_identifier_token20] = ACTIONS(2164), + [aux_sym_cmd_identifier_token21] = ACTIONS(2164), + [aux_sym_cmd_identifier_token22] = ACTIONS(2164), + [aux_sym_cmd_identifier_token23] = ACTIONS(2164), + [aux_sym_cmd_identifier_token24] = ACTIONS(2164), + [aux_sym_cmd_identifier_token25] = ACTIONS(2164), + [aux_sym_cmd_identifier_token26] = ACTIONS(2164), + [aux_sym_cmd_identifier_token27] = ACTIONS(2164), + [aux_sym_cmd_identifier_token28] = ACTIONS(2164), + [aux_sym_cmd_identifier_token29] = ACTIONS(2164), + [aux_sym_cmd_identifier_token30] = ACTIONS(2164), + [aux_sym_cmd_identifier_token31] = ACTIONS(2164), + [aux_sym_cmd_identifier_token32] = ACTIONS(2164), + [aux_sym_cmd_identifier_token33] = ACTIONS(2164), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2164), + [aux_sym_cmd_identifier_token36] = ACTIONS(2164), + [aux_sym_cmd_identifier_token37] = ACTIONS(2164), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2164), + [anon_sym_DOT_DOT2] = ACTIONS(2088), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2090), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2090), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2164), [sym__entry_separator] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2166), }, + [489] = { + [sym_cell_path] = STATE(710), + [sym_path] = STATE(549), + [sym_comment] = STATE(489), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(2020), + [anon_sym_alias] = ACTIONS(2020), + [anon_sym_let] = ACTIONS(2020), + [anon_sym_let_DASHenv] = ACTIONS(2020), + [anon_sym_mut] = ACTIONS(2020), + [anon_sym_const] = ACTIONS(2020), + [aux_sym_cmd_identifier_token1] = ACTIONS(2020), + [aux_sym_cmd_identifier_token2] = ACTIONS(2022), + [aux_sym_cmd_identifier_token3] = ACTIONS(2022), + [aux_sym_cmd_identifier_token4] = ACTIONS(2022), + [aux_sym_cmd_identifier_token5] = ACTIONS(2022), + [aux_sym_cmd_identifier_token6] = ACTIONS(2022), + [aux_sym_cmd_identifier_token7] = ACTIONS(2022), + [aux_sym_cmd_identifier_token8] = ACTIONS(2020), + [aux_sym_cmd_identifier_token9] = ACTIONS(2020), + [aux_sym_cmd_identifier_token10] = ACTIONS(2022), + [aux_sym_cmd_identifier_token11] = ACTIONS(2022), + [aux_sym_cmd_identifier_token12] = ACTIONS(2020), + [aux_sym_cmd_identifier_token13] = ACTIONS(2020), + [aux_sym_cmd_identifier_token14] = ACTIONS(2020), + [aux_sym_cmd_identifier_token15] = ACTIONS(2020), + [aux_sym_cmd_identifier_token16] = ACTIONS(2022), + [aux_sym_cmd_identifier_token17] = ACTIONS(2022), + [aux_sym_cmd_identifier_token18] = ACTIONS(2022), + [aux_sym_cmd_identifier_token19] = ACTIONS(2022), + [aux_sym_cmd_identifier_token20] = ACTIONS(2022), + [aux_sym_cmd_identifier_token21] = ACTIONS(2022), + [aux_sym_cmd_identifier_token22] = ACTIONS(2022), + [aux_sym_cmd_identifier_token23] = ACTIONS(2022), + [aux_sym_cmd_identifier_token24] = ACTIONS(2022), + [aux_sym_cmd_identifier_token25] = ACTIONS(2022), + [aux_sym_cmd_identifier_token26] = ACTIONS(2022), + [aux_sym_cmd_identifier_token27] = ACTIONS(2022), + [aux_sym_cmd_identifier_token28] = ACTIONS(2022), + [aux_sym_cmd_identifier_token29] = ACTIONS(2022), + [aux_sym_cmd_identifier_token30] = ACTIONS(2022), + [aux_sym_cmd_identifier_token31] = ACTIONS(2022), + [aux_sym_cmd_identifier_token32] = ACTIONS(2022), + [aux_sym_cmd_identifier_token33] = ACTIONS(2022), + [aux_sym_cmd_identifier_token34] = ACTIONS(2020), + [aux_sym_cmd_identifier_token35] = ACTIONS(2022), + [aux_sym_cmd_identifier_token36] = ACTIONS(2022), + [aux_sym_cmd_identifier_token37] = ACTIONS(2022), + [aux_sym_cmd_identifier_token38] = ACTIONS(2020), + [aux_sym_cmd_identifier_token39] = ACTIONS(2022), + [aux_sym_cmd_identifier_token40] = ACTIONS(2022), + [anon_sym_def] = ACTIONS(2020), + [anon_sym_export_DASHenv] = ACTIONS(2020), + [anon_sym_extern] = ACTIONS(2020), + [anon_sym_module] = ACTIONS(2020), + [anon_sym_use] = ACTIONS(2020), + [anon_sym_LPAREN] = ACTIONS(2022), + [anon_sym_COMMA] = ACTIONS(2022), + [anon_sym_DOLLAR] = ACTIONS(2022), + [anon_sym_error] = ACTIONS(2020), + [anon_sym_DASH2] = ACTIONS(2020), + [anon_sym_break] = ACTIONS(2020), + [anon_sym_continue] = ACTIONS(2020), + [anon_sym_for] = ACTIONS(2020), + [anon_sym_in2] = ACTIONS(2020), + [anon_sym_loop] = ACTIONS(2020), + [anon_sym_make] = ACTIONS(2020), + [anon_sym_while] = ACTIONS(2020), + [anon_sym_do] = ACTIONS(2020), + [anon_sym_if] = ACTIONS(2020), + [anon_sym_else] = ACTIONS(2020), + [anon_sym_match] = ACTIONS(2020), + [anon_sym_RBRACE] = ACTIONS(2022), + [anon_sym_try] = ACTIONS(2020), + [anon_sym_catch] = ACTIONS(2020), + [anon_sym_return] = ACTIONS(2020), + [anon_sym_source] = ACTIONS(2020), + [anon_sym_source_DASHenv] = ACTIONS(2020), + [anon_sym_register] = ACTIONS(2020), + [anon_sym_hide] = ACTIONS(2020), + [anon_sym_hide_DASHenv] = ACTIONS(2020), + [anon_sym_overlay] = ACTIONS(2020), + [anon_sym_as] = ACTIONS(2020), + [anon_sym_PLUS2] = ACTIONS(2020), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2022), + [aux_sym__val_number_decimal_token1] = ACTIONS(2020), + [aux_sym__val_number_decimal_token2] = ACTIONS(2022), + [aux_sym__val_number_decimal_token3] = ACTIONS(2022), + [aux_sym__val_number_decimal_token4] = ACTIONS(2022), + [aux_sym__val_number_token1] = ACTIONS(2022), + [aux_sym__val_number_token2] = ACTIONS(2022), + [aux_sym__val_number_token3] = ACTIONS(2022), + [aux_sym__val_number_token4] = ACTIONS(2020), + [aux_sym__val_number_token5] = ACTIONS(2020), + [aux_sym__val_number_token6] = ACTIONS(2020), + [anon_sym_DQUOTE] = ACTIONS(2022), + [sym__str_single_quotes] = ACTIONS(2022), + [sym__str_back_ticks] = ACTIONS(2022), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2022), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2022), + }, + [490] = { + [sym_cell_path] = STATE(712), + [sym_path] = STATE(549), + [sym_comment] = STATE(490), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(2024), + [anon_sym_alias] = ACTIONS(2024), + [anon_sym_let] = ACTIONS(2024), + [anon_sym_let_DASHenv] = ACTIONS(2024), + [anon_sym_mut] = ACTIONS(2024), + [anon_sym_const] = ACTIONS(2024), + [aux_sym_cmd_identifier_token1] = ACTIONS(2024), + [aux_sym_cmd_identifier_token2] = ACTIONS(2026), + [aux_sym_cmd_identifier_token3] = ACTIONS(2026), + [aux_sym_cmd_identifier_token4] = ACTIONS(2026), + [aux_sym_cmd_identifier_token5] = ACTIONS(2026), + [aux_sym_cmd_identifier_token6] = ACTIONS(2026), + [aux_sym_cmd_identifier_token7] = ACTIONS(2026), + [aux_sym_cmd_identifier_token8] = ACTIONS(2024), + [aux_sym_cmd_identifier_token9] = ACTIONS(2024), + [aux_sym_cmd_identifier_token10] = ACTIONS(2026), + [aux_sym_cmd_identifier_token11] = ACTIONS(2026), + [aux_sym_cmd_identifier_token12] = ACTIONS(2024), + [aux_sym_cmd_identifier_token13] = ACTIONS(2024), + [aux_sym_cmd_identifier_token14] = ACTIONS(2024), + [aux_sym_cmd_identifier_token15] = ACTIONS(2024), + [aux_sym_cmd_identifier_token16] = ACTIONS(2026), + [aux_sym_cmd_identifier_token17] = ACTIONS(2026), + [aux_sym_cmd_identifier_token18] = ACTIONS(2026), + [aux_sym_cmd_identifier_token19] = ACTIONS(2026), + [aux_sym_cmd_identifier_token20] = ACTIONS(2026), + [aux_sym_cmd_identifier_token21] = ACTIONS(2026), + [aux_sym_cmd_identifier_token22] = ACTIONS(2026), + [aux_sym_cmd_identifier_token23] = ACTIONS(2026), + [aux_sym_cmd_identifier_token24] = ACTIONS(2026), + [aux_sym_cmd_identifier_token25] = ACTIONS(2026), + [aux_sym_cmd_identifier_token26] = ACTIONS(2026), + [aux_sym_cmd_identifier_token27] = ACTIONS(2026), + [aux_sym_cmd_identifier_token28] = ACTIONS(2026), + [aux_sym_cmd_identifier_token29] = ACTIONS(2026), + [aux_sym_cmd_identifier_token30] = ACTIONS(2026), + [aux_sym_cmd_identifier_token31] = ACTIONS(2026), + [aux_sym_cmd_identifier_token32] = ACTIONS(2026), + [aux_sym_cmd_identifier_token33] = ACTIONS(2026), + [aux_sym_cmd_identifier_token34] = ACTIONS(2024), + [aux_sym_cmd_identifier_token35] = ACTIONS(2026), + [aux_sym_cmd_identifier_token36] = ACTIONS(2026), + [aux_sym_cmd_identifier_token37] = ACTIONS(2026), + [aux_sym_cmd_identifier_token38] = ACTIONS(2024), + [aux_sym_cmd_identifier_token39] = ACTIONS(2026), + [aux_sym_cmd_identifier_token40] = ACTIONS(2026), + [anon_sym_def] = ACTIONS(2024), + [anon_sym_export_DASHenv] = ACTIONS(2024), + [anon_sym_extern] = ACTIONS(2024), + [anon_sym_module] = ACTIONS(2024), + [anon_sym_use] = ACTIONS(2024), + [anon_sym_LPAREN] = ACTIONS(2026), + [anon_sym_COMMA] = ACTIONS(2026), + [anon_sym_DOLLAR] = ACTIONS(2026), + [anon_sym_error] = ACTIONS(2024), + [anon_sym_DASH2] = ACTIONS(2024), + [anon_sym_break] = ACTIONS(2024), + [anon_sym_continue] = ACTIONS(2024), + [anon_sym_for] = ACTIONS(2024), + [anon_sym_in2] = ACTIONS(2024), + [anon_sym_loop] = ACTIONS(2024), + [anon_sym_make] = ACTIONS(2024), + [anon_sym_while] = ACTIONS(2024), + [anon_sym_do] = ACTIONS(2024), + [anon_sym_if] = ACTIONS(2024), + [anon_sym_else] = ACTIONS(2024), + [anon_sym_match] = ACTIONS(2024), + [anon_sym_RBRACE] = ACTIONS(2026), + [anon_sym_try] = ACTIONS(2024), + [anon_sym_catch] = ACTIONS(2024), + [anon_sym_return] = ACTIONS(2024), + [anon_sym_source] = ACTIONS(2024), + [anon_sym_source_DASHenv] = ACTIONS(2024), + [anon_sym_register] = ACTIONS(2024), + [anon_sym_hide] = ACTIONS(2024), + [anon_sym_hide_DASHenv] = ACTIONS(2024), + [anon_sym_overlay] = ACTIONS(2024), + [anon_sym_as] = ACTIONS(2024), + [anon_sym_PLUS2] = ACTIONS(2024), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2026), + [aux_sym__val_number_decimal_token1] = ACTIONS(2024), + [aux_sym__val_number_decimal_token2] = ACTIONS(2026), + [aux_sym__val_number_decimal_token3] = ACTIONS(2026), + [aux_sym__val_number_decimal_token4] = ACTIONS(2026), + [aux_sym__val_number_token1] = ACTIONS(2026), + [aux_sym__val_number_token2] = ACTIONS(2026), + [aux_sym__val_number_token3] = ACTIONS(2026), + [aux_sym__val_number_token4] = ACTIONS(2024), + [aux_sym__val_number_token5] = ACTIONS(2024), + [aux_sym__val_number_token6] = ACTIONS(2024), + [anon_sym_DQUOTE] = ACTIONS(2026), + [sym__str_single_quotes] = ACTIONS(2026), + [sym__str_back_ticks] = ACTIONS(2026), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2026), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2026), + }, [491] = { + [sym_cell_path] = STATE(716), + [sym_path] = STATE(549), [sym_comment] = STATE(491), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(2168), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(2012), + [anon_sym_alias] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_let_DASHenv] = ACTIONS(2012), + [anon_sym_mut] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [aux_sym_cmd_identifier_token1] = ACTIONS(2012), + [aux_sym_cmd_identifier_token2] = ACTIONS(2014), + [aux_sym_cmd_identifier_token3] = ACTIONS(2014), + [aux_sym_cmd_identifier_token4] = ACTIONS(2014), + [aux_sym_cmd_identifier_token5] = ACTIONS(2014), + [aux_sym_cmd_identifier_token6] = ACTIONS(2014), + [aux_sym_cmd_identifier_token7] = ACTIONS(2014), + [aux_sym_cmd_identifier_token8] = ACTIONS(2012), + [aux_sym_cmd_identifier_token9] = ACTIONS(2012), + [aux_sym_cmd_identifier_token10] = ACTIONS(2014), + [aux_sym_cmd_identifier_token11] = ACTIONS(2014), + [aux_sym_cmd_identifier_token12] = ACTIONS(2012), + [aux_sym_cmd_identifier_token13] = ACTIONS(2012), + [aux_sym_cmd_identifier_token14] = ACTIONS(2012), + [aux_sym_cmd_identifier_token15] = ACTIONS(2012), + [aux_sym_cmd_identifier_token16] = ACTIONS(2014), + [aux_sym_cmd_identifier_token17] = ACTIONS(2014), + [aux_sym_cmd_identifier_token18] = ACTIONS(2014), + [aux_sym_cmd_identifier_token19] = ACTIONS(2014), + [aux_sym_cmd_identifier_token20] = ACTIONS(2014), + [aux_sym_cmd_identifier_token21] = ACTIONS(2014), + [aux_sym_cmd_identifier_token22] = ACTIONS(2014), + [aux_sym_cmd_identifier_token23] = ACTIONS(2014), + [aux_sym_cmd_identifier_token24] = ACTIONS(2014), + [aux_sym_cmd_identifier_token25] = ACTIONS(2014), + [aux_sym_cmd_identifier_token26] = ACTIONS(2014), + [aux_sym_cmd_identifier_token27] = ACTIONS(2014), + [aux_sym_cmd_identifier_token28] = ACTIONS(2014), + [aux_sym_cmd_identifier_token29] = ACTIONS(2014), + [aux_sym_cmd_identifier_token30] = ACTIONS(2014), + [aux_sym_cmd_identifier_token31] = ACTIONS(2014), + [aux_sym_cmd_identifier_token32] = ACTIONS(2014), + [aux_sym_cmd_identifier_token33] = ACTIONS(2014), + [aux_sym_cmd_identifier_token34] = ACTIONS(2012), + [aux_sym_cmd_identifier_token35] = ACTIONS(2014), + [aux_sym_cmd_identifier_token36] = ACTIONS(2014), + [aux_sym_cmd_identifier_token37] = ACTIONS(2014), + [aux_sym_cmd_identifier_token38] = ACTIONS(2012), + [aux_sym_cmd_identifier_token39] = ACTIONS(2014), + [aux_sym_cmd_identifier_token40] = ACTIONS(2014), + [anon_sym_def] = ACTIONS(2012), + [anon_sym_export_DASHenv] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_module] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_in2] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_make] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_catch] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_source] = ACTIONS(2012), + [anon_sym_source_DASHenv] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_hide] = ACTIONS(2012), + [anon_sym_hide_DASHenv] = ACTIONS(2012), + [anon_sym_overlay] = ACTIONS(2012), + [anon_sym_as] = ACTIONS(2012), + [anon_sym_PLUS2] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2012), + [aux_sym__val_number_decimal_token2] = ACTIONS(2014), + [aux_sym__val_number_decimal_token3] = ACTIONS(2014), + [aux_sym__val_number_decimal_token4] = ACTIONS(2014), + [aux_sym__val_number_token1] = ACTIONS(2014), + [aux_sym__val_number_token2] = ACTIONS(2014), + [aux_sym__val_number_token3] = ACTIONS(2014), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym__str_single_quotes] = ACTIONS(2014), + [sym__str_back_ticks] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2014), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2014), }, [492] = { - [sym_cell_path] = STATE(738), - [sym_path] = STATE(656), + [sym_cell_path] = STATE(727), + [sym_path] = STATE(549), [sym_comment] = STATE(492), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1945), - [anon_sym_alias] = ACTIONS(1945), - [anon_sym_let] = ACTIONS(1945), - [anon_sym_let_DASHenv] = ACTIONS(1945), - [anon_sym_mut] = ACTIONS(1945), - [anon_sym_const] = ACTIONS(1945), - [aux_sym_cmd_identifier_token1] = ACTIONS(1945), - [aux_sym_cmd_identifier_token2] = ACTIONS(1947), - [aux_sym_cmd_identifier_token3] = ACTIONS(1947), - [aux_sym_cmd_identifier_token4] = ACTIONS(1947), - [aux_sym_cmd_identifier_token5] = ACTIONS(1947), - [aux_sym_cmd_identifier_token6] = ACTIONS(1947), - [aux_sym_cmd_identifier_token7] = ACTIONS(1947), - [aux_sym_cmd_identifier_token8] = ACTIONS(1945), - [aux_sym_cmd_identifier_token9] = ACTIONS(1945), - [aux_sym_cmd_identifier_token10] = ACTIONS(1947), - [aux_sym_cmd_identifier_token11] = ACTIONS(1947), - [aux_sym_cmd_identifier_token12] = ACTIONS(1945), - [aux_sym_cmd_identifier_token13] = ACTIONS(1945), - [aux_sym_cmd_identifier_token14] = ACTIONS(1945), - [aux_sym_cmd_identifier_token15] = ACTIONS(1945), - [aux_sym_cmd_identifier_token16] = ACTIONS(1947), - [aux_sym_cmd_identifier_token17] = ACTIONS(1947), - [aux_sym_cmd_identifier_token18] = ACTIONS(1947), - [aux_sym_cmd_identifier_token19] = ACTIONS(1947), - [aux_sym_cmd_identifier_token20] = ACTIONS(1947), - [aux_sym_cmd_identifier_token21] = ACTIONS(1947), - [aux_sym_cmd_identifier_token22] = ACTIONS(1947), - [aux_sym_cmd_identifier_token23] = ACTIONS(1947), - [aux_sym_cmd_identifier_token24] = ACTIONS(1947), - [aux_sym_cmd_identifier_token25] = ACTIONS(1947), - [aux_sym_cmd_identifier_token26] = ACTIONS(1947), - [aux_sym_cmd_identifier_token27] = ACTIONS(1947), - [aux_sym_cmd_identifier_token28] = ACTIONS(1947), - [aux_sym_cmd_identifier_token29] = ACTIONS(1947), - [aux_sym_cmd_identifier_token30] = ACTIONS(1947), - [aux_sym_cmd_identifier_token31] = ACTIONS(1947), - [aux_sym_cmd_identifier_token32] = ACTIONS(1947), - [aux_sym_cmd_identifier_token33] = ACTIONS(1947), - [aux_sym_cmd_identifier_token34] = ACTIONS(1945), - [aux_sym_cmd_identifier_token35] = ACTIONS(1947), - [aux_sym_cmd_identifier_token36] = ACTIONS(1947), - [aux_sym_cmd_identifier_token37] = ACTIONS(1947), - [aux_sym_cmd_identifier_token38] = ACTIONS(1945), - [aux_sym_cmd_identifier_token39] = ACTIONS(1947), - [aux_sym_cmd_identifier_token40] = ACTIONS(1947), - [anon_sym_def] = ACTIONS(1945), - [anon_sym_export_DASHenv] = ACTIONS(1945), - [anon_sym_extern] = ACTIONS(1945), - [anon_sym_module] = ACTIONS(1945), - [anon_sym_use] = ACTIONS(1945), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1947), - [anon_sym_error] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_break] = ACTIONS(1945), - [anon_sym_continue] = ACTIONS(1945), - [anon_sym_for] = ACTIONS(1945), - [anon_sym_in2] = ACTIONS(1945), - [anon_sym_loop] = ACTIONS(1945), - [anon_sym_make] = ACTIONS(1945), - [anon_sym_while] = ACTIONS(1945), - [anon_sym_do] = ACTIONS(1945), - [anon_sym_if] = ACTIONS(1945), - [anon_sym_else] = ACTIONS(1945), - [anon_sym_match] = ACTIONS(1945), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_try] = ACTIONS(1945), - [anon_sym_catch] = ACTIONS(1945), - [anon_sym_return] = ACTIONS(1945), - [anon_sym_source] = ACTIONS(1945), - [anon_sym_source_DASHenv] = ACTIONS(1945), - [anon_sym_register] = ACTIONS(1945), - [anon_sym_hide] = ACTIONS(1945), - [anon_sym_hide_DASHenv] = ACTIONS(1945), - [anon_sym_overlay] = ACTIONS(1945), - [anon_sym_as] = ACTIONS(1945), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1945), - [aux_sym__val_number_token5] = ACTIONS(1945), - [aux_sym__val_number_token6] = ACTIONS(1945), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), + [aux_sym_cell_path_repeat1] = STATE(436), + [anon_sym_export] = ACTIONS(1976), + [anon_sym_alias] = ACTIONS(1976), + [anon_sym_let] = ACTIONS(1976), + [anon_sym_let_DASHenv] = ACTIONS(1976), + [anon_sym_mut] = ACTIONS(1976), + [anon_sym_const] = ACTIONS(1976), + [aux_sym_cmd_identifier_token1] = ACTIONS(1976), + [aux_sym_cmd_identifier_token2] = ACTIONS(1978), + [aux_sym_cmd_identifier_token3] = ACTIONS(1978), + [aux_sym_cmd_identifier_token4] = ACTIONS(1978), + [aux_sym_cmd_identifier_token5] = ACTIONS(1978), + [aux_sym_cmd_identifier_token6] = ACTIONS(1978), + [aux_sym_cmd_identifier_token7] = ACTIONS(1978), + [aux_sym_cmd_identifier_token8] = ACTIONS(1976), + [aux_sym_cmd_identifier_token9] = ACTIONS(1976), + [aux_sym_cmd_identifier_token10] = ACTIONS(1978), + [aux_sym_cmd_identifier_token11] = ACTIONS(1978), + [aux_sym_cmd_identifier_token12] = ACTIONS(1976), + [aux_sym_cmd_identifier_token13] = ACTIONS(1976), + [aux_sym_cmd_identifier_token14] = ACTIONS(1976), + [aux_sym_cmd_identifier_token15] = ACTIONS(1976), + [aux_sym_cmd_identifier_token16] = ACTIONS(1978), + [aux_sym_cmd_identifier_token17] = ACTIONS(1978), + [aux_sym_cmd_identifier_token18] = ACTIONS(1978), + [aux_sym_cmd_identifier_token19] = ACTIONS(1978), + [aux_sym_cmd_identifier_token20] = ACTIONS(1978), + [aux_sym_cmd_identifier_token21] = ACTIONS(1978), + [aux_sym_cmd_identifier_token22] = ACTIONS(1978), + [aux_sym_cmd_identifier_token23] = ACTIONS(1978), + [aux_sym_cmd_identifier_token24] = ACTIONS(1978), + [aux_sym_cmd_identifier_token25] = ACTIONS(1978), + [aux_sym_cmd_identifier_token26] = ACTIONS(1978), + [aux_sym_cmd_identifier_token27] = ACTIONS(1978), + [aux_sym_cmd_identifier_token28] = ACTIONS(1978), + [aux_sym_cmd_identifier_token29] = ACTIONS(1978), + [aux_sym_cmd_identifier_token30] = ACTIONS(1978), + [aux_sym_cmd_identifier_token31] = ACTIONS(1978), + [aux_sym_cmd_identifier_token32] = ACTIONS(1978), + [aux_sym_cmd_identifier_token33] = ACTIONS(1978), + [aux_sym_cmd_identifier_token34] = ACTIONS(1976), + [aux_sym_cmd_identifier_token35] = ACTIONS(1978), + [aux_sym_cmd_identifier_token36] = ACTIONS(1978), + [aux_sym_cmd_identifier_token37] = ACTIONS(1978), + [aux_sym_cmd_identifier_token38] = ACTIONS(1976), + [aux_sym_cmd_identifier_token39] = ACTIONS(1978), + [aux_sym_cmd_identifier_token40] = ACTIONS(1978), + [anon_sym_def] = ACTIONS(1976), + [anon_sym_export_DASHenv] = ACTIONS(1976), + [anon_sym_extern] = ACTIONS(1976), + [anon_sym_module] = ACTIONS(1976), + [anon_sym_use] = ACTIONS(1976), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_COMMA] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1978), + [anon_sym_error] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_break] = ACTIONS(1976), + [anon_sym_continue] = ACTIONS(1976), + [anon_sym_for] = ACTIONS(1976), + [anon_sym_in2] = ACTIONS(1976), + [anon_sym_loop] = ACTIONS(1976), + [anon_sym_make] = ACTIONS(1976), + [anon_sym_while] = ACTIONS(1976), + [anon_sym_do] = ACTIONS(1976), + [anon_sym_if] = ACTIONS(1976), + [anon_sym_else] = ACTIONS(1976), + [anon_sym_match] = ACTIONS(1976), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_try] = ACTIONS(1976), + [anon_sym_catch] = ACTIONS(1976), + [anon_sym_return] = ACTIONS(1976), + [anon_sym_source] = ACTIONS(1976), + [anon_sym_source_DASHenv] = ACTIONS(1976), + [anon_sym_register] = ACTIONS(1976), + [anon_sym_hide] = ACTIONS(1976), + [anon_sym_hide_DASHenv] = ACTIONS(1976), + [anon_sym_overlay] = ACTIONS(1976), + [anon_sym_as] = ACTIONS(1976), + [anon_sym_PLUS2] = ACTIONS(1976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [aux_sym__val_number_token4] = ACTIONS(1976), + [aux_sym__val_number_token5] = ACTIONS(1976), + [aux_sym__val_number_token6] = ACTIONS(1976), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1978), + [anon_sym_DOT2] = ACTIONS(1883), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1978), }, [493] = { [sym_comment] = STATE(493), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [aux_sym__immediate_decimal_token2] = ACTIONS(2168), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [494] = { + [sym_comment] = STATE(494), + [anon_sym_export] = ACTIONS(972), + [anon_sym_alias] = ACTIONS(972), + [anon_sym_let] = ACTIONS(972), + [anon_sym_let_DASHenv] = ACTIONS(972), + [anon_sym_mut] = ACTIONS(972), + [anon_sym_const] = ACTIONS(972), + [aux_sym_cmd_identifier_token1] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(972), + [aux_sym_cmd_identifier_token3] = ACTIONS(972), + [aux_sym_cmd_identifier_token4] = ACTIONS(972), + [aux_sym_cmd_identifier_token5] = ACTIONS(972), + [aux_sym_cmd_identifier_token6] = ACTIONS(972), + [aux_sym_cmd_identifier_token7] = ACTIONS(972), + [aux_sym_cmd_identifier_token8] = ACTIONS(972), + [aux_sym_cmd_identifier_token9] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(972), + [aux_sym_cmd_identifier_token11] = ACTIONS(972), + [aux_sym_cmd_identifier_token12] = ACTIONS(972), + [aux_sym_cmd_identifier_token13] = ACTIONS(972), + [aux_sym_cmd_identifier_token14] = ACTIONS(972), + [aux_sym_cmd_identifier_token15] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(972), + [aux_sym_cmd_identifier_token17] = ACTIONS(972), + [aux_sym_cmd_identifier_token18] = ACTIONS(972), + [aux_sym_cmd_identifier_token19] = ACTIONS(972), + [aux_sym_cmd_identifier_token20] = ACTIONS(972), + [aux_sym_cmd_identifier_token21] = ACTIONS(972), + [aux_sym_cmd_identifier_token22] = ACTIONS(972), + [aux_sym_cmd_identifier_token23] = ACTIONS(972), + [aux_sym_cmd_identifier_token24] = ACTIONS(972), + [aux_sym_cmd_identifier_token25] = ACTIONS(972), + [aux_sym_cmd_identifier_token26] = ACTIONS(972), + [aux_sym_cmd_identifier_token27] = ACTIONS(972), + [aux_sym_cmd_identifier_token28] = ACTIONS(972), + [aux_sym_cmd_identifier_token29] = ACTIONS(972), + [aux_sym_cmd_identifier_token30] = ACTIONS(972), + [aux_sym_cmd_identifier_token31] = ACTIONS(972), + [aux_sym_cmd_identifier_token32] = ACTIONS(972), + [aux_sym_cmd_identifier_token33] = ACTIONS(972), + [aux_sym_cmd_identifier_token34] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(972), + [aux_sym_cmd_identifier_token36] = ACTIONS(972), + [aux_sym_cmd_identifier_token37] = ACTIONS(972), + [aux_sym_cmd_identifier_token38] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(972), + [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [anon_sym_def] = ACTIONS(972), + [anon_sym_export_DASHenv] = ACTIONS(972), + [anon_sym_extern] = ACTIONS(972), + [anon_sym_module] = ACTIONS(972), + [anon_sym_use] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_error] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_break] = ACTIONS(972), + [anon_sym_continue] = ACTIONS(972), + [anon_sym_for] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(972), + [anon_sym_loop] = ACTIONS(972), + [anon_sym_make] = ACTIONS(972), + [anon_sym_while] = ACTIONS(972), + [anon_sym_do] = ACTIONS(972), + [anon_sym_if] = ACTIONS(972), + [anon_sym_else] = ACTIONS(972), + [anon_sym_match] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_try] = ACTIONS(972), + [anon_sym_catch] = ACTIONS(972), + [anon_sym_return] = ACTIONS(972), + [anon_sym_source] = ACTIONS(972), + [anon_sym_source_DASHenv] = ACTIONS(972), + [anon_sym_register] = ACTIONS(972), + [anon_sym_hide] = ACTIONS(972), + [anon_sym_hide_DASHenv] = ACTIONS(972), + [anon_sym_overlay] = ACTIONS(972), + [anon_sym_as] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(972), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(972), + [aux_sym__val_number_decimal_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token4] = ACTIONS(972), + [aux_sym__val_number_token1] = ACTIONS(972), + [aux_sym__val_number_token2] = ACTIONS(972), + [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_token4] = ACTIONS(972), + [aux_sym__val_number_token5] = ACTIONS(972), + [aux_sym__val_number_token6] = ACTIONS(972), + [anon_sym_DQUOTE] = ACTIONS(972), + [sym__str_single_quotes] = ACTIONS(972), + [sym__str_back_ticks] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [sym__entry_separator] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(974), + }, + [495] = { + [sym_comment] = STATE(495), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [aux_sym_cmd_identifier_token2] = ACTIONS(968), + [aux_sym_cmd_identifier_token3] = ACTIONS(968), + [aux_sym_cmd_identifier_token4] = ACTIONS(968), + [aux_sym_cmd_identifier_token5] = ACTIONS(968), + [aux_sym_cmd_identifier_token6] = ACTIONS(968), + [aux_sym_cmd_identifier_token7] = ACTIONS(968), + [aux_sym_cmd_identifier_token8] = ACTIONS(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(968), + [aux_sym_cmd_identifier_token11] = ACTIONS(968), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [aux_sym_cmd_identifier_token16] = ACTIONS(968), + [aux_sym_cmd_identifier_token17] = ACTIONS(968), + [aux_sym_cmd_identifier_token18] = ACTIONS(968), + [aux_sym_cmd_identifier_token19] = ACTIONS(968), + [aux_sym_cmd_identifier_token20] = ACTIONS(968), + [aux_sym_cmd_identifier_token21] = ACTIONS(968), + [aux_sym_cmd_identifier_token22] = ACTIONS(968), + [aux_sym_cmd_identifier_token23] = ACTIONS(968), + [aux_sym_cmd_identifier_token24] = ACTIONS(968), + [aux_sym_cmd_identifier_token25] = ACTIONS(968), + [aux_sym_cmd_identifier_token26] = ACTIONS(968), + [aux_sym_cmd_identifier_token27] = ACTIONS(968), + [aux_sym_cmd_identifier_token28] = ACTIONS(968), + [aux_sym_cmd_identifier_token29] = ACTIONS(968), + [aux_sym_cmd_identifier_token30] = ACTIONS(968), + [aux_sym_cmd_identifier_token31] = ACTIONS(968), + [aux_sym_cmd_identifier_token32] = ACTIONS(968), + [aux_sym_cmd_identifier_token33] = ACTIONS(968), + [aux_sym_cmd_identifier_token34] = ACTIONS(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(968), + [aux_sym_cmd_identifier_token36] = ACTIONS(968), + [aux_sym_cmd_identifier_token37] = ACTIONS(968), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(968), + [aux_sym_cmd_identifier_token40] = ACTIONS(968), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_error] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(968), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(968), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [aux_sym__val_number_decimal_token2] = ACTIONS(968), + [aux_sym__val_number_decimal_token3] = ACTIONS(968), + [aux_sym__val_number_decimal_token4] = ACTIONS(968), + [aux_sym__val_number_token1] = ACTIONS(968), + [aux_sym__val_number_token2] = ACTIONS(968), + [aux_sym__val_number_token3] = ACTIONS(968), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(968), + [sym__str_single_quotes] = ACTIONS(968), + [sym__str_back_ticks] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), + [sym__entry_separator] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(970), + }, + [496] = { + [sym_comment] = STATE(496), + [anon_sym_export] = ACTIONS(1757), + [anon_sym_alias] = ACTIONS(1757), + [anon_sym_let] = ACTIONS(1757), + [anon_sym_let_DASHenv] = ACTIONS(1757), + [anon_sym_mut] = ACTIONS(1757), + [anon_sym_const] = ACTIONS(1757), + [aux_sym_cmd_identifier_token1] = ACTIONS(1757), + [aux_sym_cmd_identifier_token2] = ACTIONS(1759), + [aux_sym_cmd_identifier_token3] = ACTIONS(1759), + [aux_sym_cmd_identifier_token4] = ACTIONS(1759), + [aux_sym_cmd_identifier_token5] = ACTIONS(1759), + [aux_sym_cmd_identifier_token6] = ACTIONS(1759), + [aux_sym_cmd_identifier_token7] = ACTIONS(1759), + [aux_sym_cmd_identifier_token8] = ACTIONS(1757), + [aux_sym_cmd_identifier_token9] = ACTIONS(1757), + [aux_sym_cmd_identifier_token10] = ACTIONS(1759), + [aux_sym_cmd_identifier_token11] = ACTIONS(1759), + [aux_sym_cmd_identifier_token12] = ACTIONS(1757), + [aux_sym_cmd_identifier_token13] = ACTIONS(1757), + [aux_sym_cmd_identifier_token14] = ACTIONS(1757), + [aux_sym_cmd_identifier_token15] = ACTIONS(1757), + [aux_sym_cmd_identifier_token16] = ACTIONS(1759), + [aux_sym_cmd_identifier_token17] = ACTIONS(1759), + [aux_sym_cmd_identifier_token18] = ACTIONS(1759), + [aux_sym_cmd_identifier_token19] = ACTIONS(1759), + [aux_sym_cmd_identifier_token20] = ACTIONS(1759), + [aux_sym_cmd_identifier_token21] = ACTIONS(1759), + [aux_sym_cmd_identifier_token22] = ACTIONS(1759), + [aux_sym_cmd_identifier_token23] = ACTIONS(1759), + [aux_sym_cmd_identifier_token24] = ACTIONS(1759), + [aux_sym_cmd_identifier_token25] = ACTIONS(1759), + [aux_sym_cmd_identifier_token26] = ACTIONS(1759), + [aux_sym_cmd_identifier_token27] = ACTIONS(1759), + [aux_sym_cmd_identifier_token28] = ACTIONS(1759), + [aux_sym_cmd_identifier_token29] = ACTIONS(1759), + [aux_sym_cmd_identifier_token30] = ACTIONS(1759), + [aux_sym_cmd_identifier_token31] = ACTIONS(1759), + [aux_sym_cmd_identifier_token32] = ACTIONS(1759), + [aux_sym_cmd_identifier_token33] = ACTIONS(1759), + [aux_sym_cmd_identifier_token34] = ACTIONS(1757), + [aux_sym_cmd_identifier_token35] = ACTIONS(1759), + [aux_sym_cmd_identifier_token36] = ACTIONS(1759), + [aux_sym_cmd_identifier_token37] = ACTIONS(1759), + [aux_sym_cmd_identifier_token38] = ACTIONS(1757), + [aux_sym_cmd_identifier_token39] = ACTIONS(1759), + [aux_sym_cmd_identifier_token40] = ACTIONS(1759), + [anon_sym_def] = ACTIONS(1757), + [anon_sym_export_DASHenv] = ACTIONS(1757), + [anon_sym_extern] = ACTIONS(1757), + [anon_sym_module] = ACTIONS(1757), + [anon_sym_use] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_COMMA] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1759), + [anon_sym_error] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1757), + [anon_sym_break] = ACTIONS(1757), + [anon_sym_continue] = ACTIONS(1757), + [anon_sym_for] = ACTIONS(1757), + [anon_sym_in2] = ACTIONS(1757), + [anon_sym_loop] = ACTIONS(1757), + [anon_sym_make] = ACTIONS(1757), + [anon_sym_while] = ACTIONS(1757), + [anon_sym_do] = ACTIONS(1757), + [anon_sym_if] = ACTIONS(1757), + [anon_sym_else] = ACTIONS(1757), + [anon_sym_match] = ACTIONS(1757), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_try] = ACTIONS(1757), + [anon_sym_catch] = ACTIONS(1757), + [anon_sym_return] = ACTIONS(1757), + [anon_sym_source] = ACTIONS(1757), + [anon_sym_source_DASHenv] = ACTIONS(1757), + [anon_sym_register] = ACTIONS(1757), + [anon_sym_hide] = ACTIONS(1757), + [anon_sym_hide_DASHenv] = ACTIONS(1757), + [anon_sym_overlay] = ACTIONS(1757), + [anon_sym_as] = ACTIONS(1757), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1759), + [aux_sym__val_number_decimal_token3] = ACTIONS(1759), + [aux_sym__val_number_decimal_token4] = ACTIONS(1759), + [aux_sym__val_number_token1] = ACTIONS(1759), + [aux_sym__val_number_token2] = ACTIONS(1759), + [aux_sym__val_number_token3] = ACTIONS(1759), + [aux_sym__val_number_token4] = ACTIONS(1757), + [aux_sym__val_number_token5] = ACTIONS(1757), + [aux_sym__val_number_token6] = ACTIONS(1757), + [anon_sym_DQUOTE] = ACTIONS(1759), + [sym__str_single_quotes] = ACTIONS(1759), + [sym__str_back_ticks] = ACTIONS(1759), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1759), + }, + [497] = { + [sym_comment] = STATE(497), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [498] = { + [sym_comment] = STATE(498), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(978), + }, + [499] = { + [sym_comment] = STATE(499), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2037), + [aux_sym_cmd_identifier_token3] = ACTIONS(2037), + [aux_sym_cmd_identifier_token4] = ACTIONS(2037), + [aux_sym_cmd_identifier_token5] = ACTIONS(2037), + [aux_sym_cmd_identifier_token6] = ACTIONS(2037), + [aux_sym_cmd_identifier_token7] = ACTIONS(2037), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2037), + [aux_sym_cmd_identifier_token11] = ACTIONS(2037), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2037), + [aux_sym_cmd_identifier_token17] = ACTIONS(2037), + [aux_sym_cmd_identifier_token18] = ACTIONS(2037), + [aux_sym_cmd_identifier_token19] = ACTIONS(2037), + [aux_sym_cmd_identifier_token20] = ACTIONS(2037), + [aux_sym_cmd_identifier_token21] = ACTIONS(2037), + [aux_sym_cmd_identifier_token22] = ACTIONS(2037), + [aux_sym_cmd_identifier_token23] = ACTIONS(2037), + [aux_sym_cmd_identifier_token24] = ACTIONS(2037), + [aux_sym_cmd_identifier_token25] = ACTIONS(2037), + [aux_sym_cmd_identifier_token26] = ACTIONS(2037), + [aux_sym_cmd_identifier_token27] = ACTIONS(2037), + [aux_sym_cmd_identifier_token28] = ACTIONS(2037), + [aux_sym_cmd_identifier_token29] = ACTIONS(2037), + [aux_sym_cmd_identifier_token30] = ACTIONS(2037), + [aux_sym_cmd_identifier_token31] = ACTIONS(2037), + [aux_sym_cmd_identifier_token32] = ACTIONS(2037), + [aux_sym_cmd_identifier_token33] = ACTIONS(2037), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2037), + [aux_sym_cmd_identifier_token36] = ACTIONS(2037), + [aux_sym_cmd_identifier_token37] = ACTIONS(2037), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2037), + [aux_sym_cmd_identifier_token40] = ACTIONS(2037), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_COMMA] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in2] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2037), + [anon_sym_DOT_DOT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2037), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2037), + [aux_sym__val_number_decimal_token3] = ACTIONS(2037), + [aux_sym__val_number_decimal_token4] = ACTIONS(2037), + [aux_sym__val_number_token1] = ACTIONS(2037), + [aux_sym__val_number_token2] = ACTIONS(2037), + [aux_sym__val_number_token3] = ACTIONS(2037), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2037), + }, + [500] = { + [sym_comment] = STATE(500), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [501] = { + [sym_comment] = STATE(501), [anon_sym_export] = ACTIONS(2170), [anon_sym_alias] = ACTIONS(2170), [anon_sym_let] = ACTIONS(2170), @@ -133911,6 +134917,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2170), [anon_sym_use] = ACTIONS(2170), [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2170), [anon_sym_DOLLAR] = ACTIONS(2170), [anon_sym_error] = ACTIONS(2170), [anon_sym_DASH2] = ACTIONS(2170), @@ -133936,11 +134943,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(2170), [anon_sym_overlay] = ACTIONS(2170), [anon_sym_as] = ACTIONS(2170), + [anon_sym_LPAREN2] = ACTIONS(2172), [anon_sym_PLUS2] = ACTIONS(2170), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2170), - [anon_sym_DOT_DOT2] = ACTIONS(2172), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2174), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2174), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2170), [aux_sym__val_number_decimal_token1] = ACTIONS(2170), [aux_sym__val_number_decimal_token2] = ACTIONS(2170), @@ -133956,1447 +134961,528 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2170), [sym__str_back_ticks] = ACTIONS(2170), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2170), - [sym__entry_separator] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2176), - }, - [494] = { - [sym_cell_path] = STATE(691), - [sym_path] = STATE(656), - [sym_comment] = STATE(494), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [aux_sym_cmd_identifier_token37] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [495] = { - [sym_cell_path] = STATE(702), - [sym_path] = STATE(656), - [sym_comment] = STATE(495), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in2] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_PLUS2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1981), - [aux_sym__val_number_token5] = ACTIONS(1981), - [aux_sym__val_number_token6] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [496] = { - [sym_cell_path] = STATE(693), - [sym_path] = STATE(656), - [sym_comment] = STATE(496), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2093), - [anon_sym_alias] = ACTIONS(2093), - [anon_sym_let] = ACTIONS(2093), - [anon_sym_let_DASHenv] = ACTIONS(2093), - [anon_sym_mut] = ACTIONS(2093), - [anon_sym_const] = ACTIONS(2093), - [aux_sym_cmd_identifier_token1] = ACTIONS(2093), - [aux_sym_cmd_identifier_token2] = ACTIONS(2095), - [aux_sym_cmd_identifier_token3] = ACTIONS(2095), - [aux_sym_cmd_identifier_token4] = ACTIONS(2095), - [aux_sym_cmd_identifier_token5] = ACTIONS(2095), - [aux_sym_cmd_identifier_token6] = ACTIONS(2095), - [aux_sym_cmd_identifier_token7] = ACTIONS(2095), - [aux_sym_cmd_identifier_token8] = ACTIONS(2093), - [aux_sym_cmd_identifier_token9] = ACTIONS(2093), - [aux_sym_cmd_identifier_token10] = ACTIONS(2095), - [aux_sym_cmd_identifier_token11] = ACTIONS(2095), - [aux_sym_cmd_identifier_token12] = ACTIONS(2093), - [aux_sym_cmd_identifier_token13] = ACTIONS(2093), - [aux_sym_cmd_identifier_token14] = ACTIONS(2093), - [aux_sym_cmd_identifier_token15] = ACTIONS(2093), - [aux_sym_cmd_identifier_token16] = ACTIONS(2095), - [aux_sym_cmd_identifier_token17] = ACTIONS(2095), - [aux_sym_cmd_identifier_token18] = ACTIONS(2095), - [aux_sym_cmd_identifier_token19] = ACTIONS(2095), - [aux_sym_cmd_identifier_token20] = ACTIONS(2095), - [aux_sym_cmd_identifier_token21] = ACTIONS(2095), - [aux_sym_cmd_identifier_token22] = ACTIONS(2095), - [aux_sym_cmd_identifier_token23] = ACTIONS(2095), - [aux_sym_cmd_identifier_token24] = ACTIONS(2095), - [aux_sym_cmd_identifier_token25] = ACTIONS(2095), - [aux_sym_cmd_identifier_token26] = ACTIONS(2095), - [aux_sym_cmd_identifier_token27] = ACTIONS(2095), - [aux_sym_cmd_identifier_token28] = ACTIONS(2095), - [aux_sym_cmd_identifier_token29] = ACTIONS(2095), - [aux_sym_cmd_identifier_token30] = ACTIONS(2095), - [aux_sym_cmd_identifier_token31] = ACTIONS(2095), - [aux_sym_cmd_identifier_token32] = ACTIONS(2095), - [aux_sym_cmd_identifier_token33] = ACTIONS(2095), - [aux_sym_cmd_identifier_token34] = ACTIONS(2093), - [aux_sym_cmd_identifier_token35] = ACTIONS(2095), - [aux_sym_cmd_identifier_token36] = ACTIONS(2095), - [aux_sym_cmd_identifier_token37] = ACTIONS(2095), - [aux_sym_cmd_identifier_token38] = ACTIONS(2093), - [aux_sym_cmd_identifier_token39] = ACTIONS(2095), - [aux_sym_cmd_identifier_token40] = ACTIONS(2095), - [anon_sym_def] = ACTIONS(2093), - [anon_sym_export_DASHenv] = ACTIONS(2093), - [anon_sym_extern] = ACTIONS(2093), - [anon_sym_module] = ACTIONS(2093), - [anon_sym_use] = ACTIONS(2093), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2095), - [anon_sym_error] = ACTIONS(2093), - [anon_sym_DASH2] = ACTIONS(2093), - [anon_sym_break] = ACTIONS(2093), - [anon_sym_continue] = ACTIONS(2093), - [anon_sym_for] = ACTIONS(2093), - [anon_sym_in2] = ACTIONS(2093), - [anon_sym_loop] = ACTIONS(2093), - [anon_sym_make] = ACTIONS(2093), - [anon_sym_while] = ACTIONS(2093), - [anon_sym_do] = ACTIONS(2093), - [anon_sym_if] = ACTIONS(2093), - [anon_sym_else] = ACTIONS(2093), - [anon_sym_match] = ACTIONS(2093), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_try] = ACTIONS(2093), - [anon_sym_catch] = ACTIONS(2093), - [anon_sym_return] = ACTIONS(2093), - [anon_sym_source] = ACTIONS(2093), - [anon_sym_source_DASHenv] = ACTIONS(2093), - [anon_sym_register] = ACTIONS(2093), - [anon_sym_hide] = ACTIONS(2093), - [anon_sym_hide_DASHenv] = ACTIONS(2093), - [anon_sym_overlay] = ACTIONS(2093), - [anon_sym_as] = ACTIONS(2093), - [anon_sym_PLUS2] = ACTIONS(2093), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2093), - [aux_sym__val_number_decimal_token2] = ACTIONS(2095), - [aux_sym__val_number_decimal_token3] = ACTIONS(2095), - [aux_sym__val_number_decimal_token4] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2093), - [aux_sym__val_number_token5] = ACTIONS(2093), - [aux_sym__val_number_token6] = ACTIONS(2093), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2095), - }, - [497] = { - [sym_cell_path] = STATE(703), - [sym_path] = STATE(656), - [sym_comment] = STATE(497), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1987), - [aux_sym_cmd_identifier_token3] = ACTIONS(1987), - [aux_sym_cmd_identifier_token4] = ACTIONS(1987), - [aux_sym_cmd_identifier_token5] = ACTIONS(1987), - [aux_sym_cmd_identifier_token6] = ACTIONS(1987), - [aux_sym_cmd_identifier_token7] = ACTIONS(1987), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1987), - [aux_sym_cmd_identifier_token11] = ACTIONS(1987), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1987), - [aux_sym_cmd_identifier_token17] = ACTIONS(1987), - [aux_sym_cmd_identifier_token18] = ACTIONS(1987), - [aux_sym_cmd_identifier_token19] = ACTIONS(1987), - [aux_sym_cmd_identifier_token20] = ACTIONS(1987), - [aux_sym_cmd_identifier_token21] = ACTIONS(1987), - [aux_sym_cmd_identifier_token22] = ACTIONS(1987), - [aux_sym_cmd_identifier_token23] = ACTIONS(1987), - [aux_sym_cmd_identifier_token24] = ACTIONS(1987), - [aux_sym_cmd_identifier_token25] = ACTIONS(1987), - [aux_sym_cmd_identifier_token26] = ACTIONS(1987), - [aux_sym_cmd_identifier_token27] = ACTIONS(1987), - [aux_sym_cmd_identifier_token28] = ACTIONS(1987), - [aux_sym_cmd_identifier_token29] = ACTIONS(1987), - [aux_sym_cmd_identifier_token30] = ACTIONS(1987), - [aux_sym_cmd_identifier_token31] = ACTIONS(1987), - [aux_sym_cmd_identifier_token32] = ACTIONS(1987), - [aux_sym_cmd_identifier_token33] = ACTIONS(1987), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1987), - [aux_sym_cmd_identifier_token36] = ACTIONS(1987), - [aux_sym_cmd_identifier_token37] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [498] = { - [sym_comment] = STATE(498), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_alias] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_let_DASHenv] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [aux_sym_cmd_identifier_token1] = ACTIONS(1717), - [aux_sym_cmd_identifier_token2] = ACTIONS(1717), - [aux_sym_cmd_identifier_token3] = ACTIONS(1717), - [aux_sym_cmd_identifier_token4] = ACTIONS(1717), - [aux_sym_cmd_identifier_token5] = ACTIONS(1717), - [aux_sym_cmd_identifier_token6] = ACTIONS(1717), - [aux_sym_cmd_identifier_token7] = ACTIONS(1717), - [aux_sym_cmd_identifier_token8] = ACTIONS(1717), - [aux_sym_cmd_identifier_token9] = ACTIONS(1717), - [aux_sym_cmd_identifier_token10] = ACTIONS(1717), - [aux_sym_cmd_identifier_token11] = ACTIONS(1717), - [aux_sym_cmd_identifier_token12] = ACTIONS(1717), - [aux_sym_cmd_identifier_token13] = ACTIONS(1717), - [aux_sym_cmd_identifier_token14] = ACTIONS(1717), - [aux_sym_cmd_identifier_token15] = ACTIONS(1717), - [aux_sym_cmd_identifier_token16] = ACTIONS(1717), - [aux_sym_cmd_identifier_token17] = ACTIONS(1717), - [aux_sym_cmd_identifier_token18] = ACTIONS(1717), - [aux_sym_cmd_identifier_token19] = ACTIONS(1717), - [aux_sym_cmd_identifier_token20] = ACTIONS(1717), - [aux_sym_cmd_identifier_token21] = ACTIONS(1717), - [aux_sym_cmd_identifier_token22] = ACTIONS(1717), - [aux_sym_cmd_identifier_token23] = ACTIONS(1717), - [aux_sym_cmd_identifier_token24] = ACTIONS(1717), - [aux_sym_cmd_identifier_token25] = ACTIONS(1717), - [aux_sym_cmd_identifier_token26] = ACTIONS(1717), - [aux_sym_cmd_identifier_token27] = ACTIONS(1717), - [aux_sym_cmd_identifier_token28] = ACTIONS(1717), - [aux_sym_cmd_identifier_token29] = ACTIONS(1717), - [aux_sym_cmd_identifier_token30] = ACTIONS(1717), - [aux_sym_cmd_identifier_token31] = ACTIONS(1717), - [aux_sym_cmd_identifier_token32] = ACTIONS(1717), - [aux_sym_cmd_identifier_token33] = ACTIONS(1717), - [aux_sym_cmd_identifier_token34] = ACTIONS(1717), - [aux_sym_cmd_identifier_token35] = ACTIONS(1717), - [aux_sym_cmd_identifier_token36] = ACTIONS(1717), - [aux_sym_cmd_identifier_token37] = ACTIONS(1717), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1717), - [aux_sym_cmd_identifier_token40] = ACTIONS(1717), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_export_DASHenv] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1717), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_error] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_in2] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_make] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1717), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_source] = ACTIONS(1717), - [anon_sym_source_DASHenv] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_hide_DASHenv] = ACTIONS(1717), - [anon_sym_overlay] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1717), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1717), - [aux_sym__val_number_decimal_token3] = ACTIONS(1717), - [aux_sym__val_number_decimal_token4] = ACTIONS(1717), - [aux_sym__val_number_token1] = ACTIONS(1717), - [aux_sym__val_number_token2] = ACTIONS(1717), - [aux_sym__val_number_token3] = ACTIONS(1717), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1717), - [sym__str_single_quotes] = ACTIONS(1717), - [sym__str_back_ticks] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1717), - [sym__entry_separator] = ACTIONS(1719), + [sym__entry_separator] = ACTIONS(2174), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1719), - }, - [499] = { - [sym_cell_path] = STATE(694), - [sym_path] = STATE(656), - [sym_comment] = STATE(499), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(1949), - [anon_sym_alias] = ACTIONS(1949), - [anon_sym_let] = ACTIONS(1949), - [anon_sym_let_DASHenv] = ACTIONS(1949), - [anon_sym_mut] = ACTIONS(1949), - [anon_sym_const] = ACTIONS(1949), - [aux_sym_cmd_identifier_token1] = ACTIONS(1949), - [aux_sym_cmd_identifier_token2] = ACTIONS(1951), - [aux_sym_cmd_identifier_token3] = ACTIONS(1951), - [aux_sym_cmd_identifier_token4] = ACTIONS(1951), - [aux_sym_cmd_identifier_token5] = ACTIONS(1951), - [aux_sym_cmd_identifier_token6] = ACTIONS(1951), - [aux_sym_cmd_identifier_token7] = ACTIONS(1951), - [aux_sym_cmd_identifier_token8] = ACTIONS(1949), - [aux_sym_cmd_identifier_token9] = ACTIONS(1949), - [aux_sym_cmd_identifier_token10] = ACTIONS(1951), - [aux_sym_cmd_identifier_token11] = ACTIONS(1951), - [aux_sym_cmd_identifier_token12] = ACTIONS(1949), - [aux_sym_cmd_identifier_token13] = ACTIONS(1949), - [aux_sym_cmd_identifier_token14] = ACTIONS(1949), - [aux_sym_cmd_identifier_token15] = ACTIONS(1949), - [aux_sym_cmd_identifier_token16] = ACTIONS(1951), - [aux_sym_cmd_identifier_token17] = ACTIONS(1951), - [aux_sym_cmd_identifier_token18] = ACTIONS(1951), - [aux_sym_cmd_identifier_token19] = ACTIONS(1951), - [aux_sym_cmd_identifier_token20] = ACTIONS(1951), - [aux_sym_cmd_identifier_token21] = ACTIONS(1951), - [aux_sym_cmd_identifier_token22] = ACTIONS(1951), - [aux_sym_cmd_identifier_token23] = ACTIONS(1951), - [aux_sym_cmd_identifier_token24] = ACTIONS(1951), - [aux_sym_cmd_identifier_token25] = ACTIONS(1951), - [aux_sym_cmd_identifier_token26] = ACTIONS(1951), - [aux_sym_cmd_identifier_token27] = ACTIONS(1951), - [aux_sym_cmd_identifier_token28] = ACTIONS(1951), - [aux_sym_cmd_identifier_token29] = ACTIONS(1951), - [aux_sym_cmd_identifier_token30] = ACTIONS(1951), - [aux_sym_cmd_identifier_token31] = ACTIONS(1951), - [aux_sym_cmd_identifier_token32] = ACTIONS(1951), - [aux_sym_cmd_identifier_token33] = ACTIONS(1951), - [aux_sym_cmd_identifier_token34] = ACTIONS(1949), - [aux_sym_cmd_identifier_token35] = ACTIONS(1951), - [aux_sym_cmd_identifier_token36] = ACTIONS(1951), - [aux_sym_cmd_identifier_token37] = ACTIONS(1951), - [aux_sym_cmd_identifier_token38] = ACTIONS(1949), - [aux_sym_cmd_identifier_token39] = ACTIONS(1951), - [aux_sym_cmd_identifier_token40] = ACTIONS(1951), - [anon_sym_def] = ACTIONS(1949), - [anon_sym_export_DASHenv] = ACTIONS(1949), - [anon_sym_extern] = ACTIONS(1949), - [anon_sym_module] = ACTIONS(1949), - [anon_sym_use] = ACTIONS(1949), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1951), - [anon_sym_error] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_break] = ACTIONS(1949), - [anon_sym_continue] = ACTIONS(1949), - [anon_sym_for] = ACTIONS(1949), - [anon_sym_in2] = ACTIONS(1949), - [anon_sym_loop] = ACTIONS(1949), - [anon_sym_make] = ACTIONS(1949), - [anon_sym_while] = ACTIONS(1949), - [anon_sym_do] = ACTIONS(1949), - [anon_sym_if] = ACTIONS(1949), - [anon_sym_else] = ACTIONS(1949), - [anon_sym_match] = ACTIONS(1949), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_try] = ACTIONS(1949), - [anon_sym_catch] = ACTIONS(1949), - [anon_sym_return] = ACTIONS(1949), - [anon_sym_source] = ACTIONS(1949), - [anon_sym_source_DASHenv] = ACTIONS(1949), - [anon_sym_register] = ACTIONS(1949), - [anon_sym_hide] = ACTIONS(1949), - [anon_sym_hide_DASHenv] = ACTIONS(1949), - [anon_sym_overlay] = ACTIONS(1949), - [anon_sym_as] = ACTIONS(1949), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [aux_sym__val_number_token4] = ACTIONS(1949), - [aux_sym__val_number_token5] = ACTIONS(1949), - [aux_sym__val_number_token6] = ACTIONS(1949), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [500] = { - [sym_cell_path] = STATE(707), - [sym_path] = STATE(656), - [sym_comment] = STATE(500), - [aux_sym_cell_path_repeat1] = STATE(512), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2003), - [aux_sym_cmd_identifier_token3] = ACTIONS(2003), - [aux_sym_cmd_identifier_token4] = ACTIONS(2003), - [aux_sym_cmd_identifier_token5] = ACTIONS(2003), - [aux_sym_cmd_identifier_token6] = ACTIONS(2003), - [aux_sym_cmd_identifier_token7] = ACTIONS(2003), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2003), - [aux_sym_cmd_identifier_token11] = ACTIONS(2003), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2003), - [aux_sym_cmd_identifier_token17] = ACTIONS(2003), - [aux_sym_cmd_identifier_token18] = ACTIONS(2003), - [aux_sym_cmd_identifier_token19] = ACTIONS(2003), - [aux_sym_cmd_identifier_token20] = ACTIONS(2003), - [aux_sym_cmd_identifier_token21] = ACTIONS(2003), - [aux_sym_cmd_identifier_token22] = ACTIONS(2003), - [aux_sym_cmd_identifier_token23] = ACTIONS(2003), - [aux_sym_cmd_identifier_token24] = ACTIONS(2003), - [aux_sym_cmd_identifier_token25] = ACTIONS(2003), - [aux_sym_cmd_identifier_token26] = ACTIONS(2003), - [aux_sym_cmd_identifier_token27] = ACTIONS(2003), - [aux_sym_cmd_identifier_token28] = ACTIONS(2003), - [aux_sym_cmd_identifier_token29] = ACTIONS(2003), - [aux_sym_cmd_identifier_token30] = ACTIONS(2003), - [aux_sym_cmd_identifier_token31] = ACTIONS(2003), - [aux_sym_cmd_identifier_token32] = ACTIONS(2003), - [aux_sym_cmd_identifier_token33] = ACTIONS(2003), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2003), - [aux_sym_cmd_identifier_token36] = ACTIONS(2003), - [aux_sym_cmd_identifier_token37] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2003), - [aux_sym_cmd_identifier_token40] = ACTIONS(2003), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2003), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in2] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2001), - [aux_sym__val_number_token5] = ACTIONS(2001), - [aux_sym__val_number_token6] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2003), - }, - [501] = { - [sym_comment] = STATE(501), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(2178), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [sym_raw_string_begin] = ACTIONS(2174), }, [502] = { [sym_comment] = STATE(502), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(2180), - [aux_sym__immediate_decimal_token2] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(1774), }, [503] = { [sym_comment] = STATE(503), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_alias] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_let_DASHenv] = ACTIONS(2184), - [anon_sym_mut] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [aux_sym_cmd_identifier_token1] = ACTIONS(2184), - [aux_sym_cmd_identifier_token2] = ACTIONS(2184), - [aux_sym_cmd_identifier_token3] = ACTIONS(2184), - [aux_sym_cmd_identifier_token4] = ACTIONS(2184), - [aux_sym_cmd_identifier_token5] = ACTIONS(2184), - [aux_sym_cmd_identifier_token6] = ACTIONS(2184), - [aux_sym_cmd_identifier_token7] = ACTIONS(2184), - [aux_sym_cmd_identifier_token8] = ACTIONS(2184), - [aux_sym_cmd_identifier_token9] = ACTIONS(2184), - [aux_sym_cmd_identifier_token10] = ACTIONS(2184), - [aux_sym_cmd_identifier_token11] = ACTIONS(2184), - [aux_sym_cmd_identifier_token12] = ACTIONS(2184), - [aux_sym_cmd_identifier_token13] = ACTIONS(2184), - [aux_sym_cmd_identifier_token14] = ACTIONS(2184), - [aux_sym_cmd_identifier_token15] = ACTIONS(2184), - [aux_sym_cmd_identifier_token16] = ACTIONS(2184), - [aux_sym_cmd_identifier_token17] = ACTIONS(2184), - [aux_sym_cmd_identifier_token18] = ACTIONS(2184), - [aux_sym_cmd_identifier_token19] = ACTIONS(2184), - [aux_sym_cmd_identifier_token20] = ACTIONS(2184), - [aux_sym_cmd_identifier_token21] = ACTIONS(2184), - [aux_sym_cmd_identifier_token22] = ACTIONS(2184), - [aux_sym_cmd_identifier_token23] = ACTIONS(2184), - [aux_sym_cmd_identifier_token24] = ACTIONS(2184), - [aux_sym_cmd_identifier_token25] = ACTIONS(2184), - [aux_sym_cmd_identifier_token26] = ACTIONS(2184), - [aux_sym_cmd_identifier_token27] = ACTIONS(2184), - [aux_sym_cmd_identifier_token28] = ACTIONS(2184), - [aux_sym_cmd_identifier_token29] = ACTIONS(2184), - [aux_sym_cmd_identifier_token30] = ACTIONS(2184), - [aux_sym_cmd_identifier_token31] = ACTIONS(2184), - [aux_sym_cmd_identifier_token32] = ACTIONS(2184), - [aux_sym_cmd_identifier_token33] = ACTIONS(2184), - [aux_sym_cmd_identifier_token34] = ACTIONS(2184), - [aux_sym_cmd_identifier_token35] = ACTIONS(2184), - [aux_sym_cmd_identifier_token36] = ACTIONS(2184), - [aux_sym_cmd_identifier_token37] = ACTIONS(2184), - [aux_sym_cmd_identifier_token38] = ACTIONS(2184), - [aux_sym_cmd_identifier_token39] = ACTIONS(2184), - [aux_sym_cmd_identifier_token40] = ACTIONS(2184), - [anon_sym_def] = ACTIONS(2184), - [anon_sym_export_DASHenv] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_error] = ACTIONS(2184), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_in2] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_make] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2184), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_source] = ACTIONS(2184), - [anon_sym_source_DASHenv] = ACTIONS(2184), - [anon_sym_register] = ACTIONS(2184), - [anon_sym_hide] = ACTIONS(2184), - [anon_sym_hide_DASHenv] = ACTIONS(2184), - [anon_sym_overlay] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2184), - [aux_sym__val_number_decimal_token3] = ACTIONS(2184), - [aux_sym__val_number_decimal_token4] = ACTIONS(2184), - [aux_sym__val_number_token1] = ACTIONS(2184), - [aux_sym__val_number_token2] = ACTIONS(2184), - [aux_sym__val_number_token3] = ACTIONS(2184), - [aux_sym__val_number_token4] = ACTIONS(2184), - [aux_sym__val_number_token5] = ACTIONS(2184), - [aux_sym__val_number_token6] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2184), - [sym__str_single_quotes] = ACTIONS(2184), - [sym__str_back_ticks] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2184), - [sym__entry_separator] = ACTIONS(2186), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1875), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1817), + [aux_sym_cmd_identifier_token3] = ACTIONS(1817), + [aux_sym_cmd_identifier_token4] = ACTIONS(1817), + [aux_sym_cmd_identifier_token5] = ACTIONS(1817), + [aux_sym_cmd_identifier_token6] = ACTIONS(1817), + [aux_sym_cmd_identifier_token7] = ACTIONS(1817), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1817), + [aux_sym_cmd_identifier_token11] = ACTIONS(1817), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1817), + [aux_sym_cmd_identifier_token17] = ACTIONS(1817), + [aux_sym_cmd_identifier_token18] = ACTIONS(1817), + [aux_sym_cmd_identifier_token19] = ACTIONS(1817), + [aux_sym_cmd_identifier_token20] = ACTIONS(1817), + [aux_sym_cmd_identifier_token21] = ACTIONS(1817), + [aux_sym_cmd_identifier_token22] = ACTIONS(1817), + [aux_sym_cmd_identifier_token23] = ACTIONS(1817), + [aux_sym_cmd_identifier_token24] = ACTIONS(1817), + [aux_sym_cmd_identifier_token25] = ACTIONS(1817), + [aux_sym_cmd_identifier_token26] = ACTIONS(1817), + [aux_sym_cmd_identifier_token27] = ACTIONS(1817), + [aux_sym_cmd_identifier_token28] = ACTIONS(1817), + [aux_sym_cmd_identifier_token29] = ACTIONS(1817), + [aux_sym_cmd_identifier_token30] = ACTIONS(1817), + [aux_sym_cmd_identifier_token31] = ACTIONS(1817), + [aux_sym_cmd_identifier_token32] = ACTIONS(1817), + [aux_sym_cmd_identifier_token33] = ACTIONS(1817), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1817), + [aux_sym_cmd_identifier_token36] = ACTIONS(1817), + [aux_sym_cmd_identifier_token37] = ACTIONS(1817), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1817), + [aux_sym_cmd_identifier_token40] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1817), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1817), + [aux_sym__val_number_decimal_token3] = ACTIONS(1817), + [aux_sym__val_number_decimal_token4] = ACTIONS(1817), + [aux_sym__val_number_token1] = ACTIONS(1817), + [aux_sym__val_number_token2] = ACTIONS(1817), + [aux_sym__val_number_token3] = ACTIONS(1817), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1817), + [sym__str_single_quotes] = ACTIONS(1817), + [sym__str_back_ticks] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1817), + [sym__entry_separator] = ACTIONS(1819), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1817), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2186), + [sym_raw_string_begin] = ACTIONS(1819), }, [504] = { [sym_comment] = STATE(504), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_alias] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_let_DASHenv] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [aux_sym_cmd_identifier_token1] = ACTIONS(1865), - [aux_sym_cmd_identifier_token2] = ACTIONS(1865), - [aux_sym_cmd_identifier_token3] = ACTIONS(1865), - [aux_sym_cmd_identifier_token4] = ACTIONS(1865), - [aux_sym_cmd_identifier_token5] = ACTIONS(1865), - [aux_sym_cmd_identifier_token6] = ACTIONS(1865), - [aux_sym_cmd_identifier_token7] = ACTIONS(1865), - [aux_sym_cmd_identifier_token8] = ACTIONS(1865), - [aux_sym_cmd_identifier_token9] = ACTIONS(1865), - [aux_sym_cmd_identifier_token10] = ACTIONS(1865), - [aux_sym_cmd_identifier_token11] = ACTIONS(1865), - [aux_sym_cmd_identifier_token12] = ACTIONS(1865), - [aux_sym_cmd_identifier_token13] = ACTIONS(1865), - [aux_sym_cmd_identifier_token14] = ACTIONS(1865), - [aux_sym_cmd_identifier_token15] = ACTIONS(1865), - [aux_sym_cmd_identifier_token16] = ACTIONS(1865), - [aux_sym_cmd_identifier_token17] = ACTIONS(1865), - [aux_sym_cmd_identifier_token18] = ACTIONS(1865), - [aux_sym_cmd_identifier_token19] = ACTIONS(1865), - [aux_sym_cmd_identifier_token20] = ACTIONS(1865), - [aux_sym_cmd_identifier_token21] = ACTIONS(1865), - [aux_sym_cmd_identifier_token22] = ACTIONS(1865), - [aux_sym_cmd_identifier_token23] = ACTIONS(1865), - [aux_sym_cmd_identifier_token24] = ACTIONS(1865), - [aux_sym_cmd_identifier_token25] = ACTIONS(1865), - [aux_sym_cmd_identifier_token26] = ACTIONS(1865), - [aux_sym_cmd_identifier_token27] = ACTIONS(1865), - [aux_sym_cmd_identifier_token28] = ACTIONS(1865), - [aux_sym_cmd_identifier_token29] = ACTIONS(1865), - [aux_sym_cmd_identifier_token30] = ACTIONS(1865), - [aux_sym_cmd_identifier_token31] = ACTIONS(1865), - [aux_sym_cmd_identifier_token32] = ACTIONS(1865), - [aux_sym_cmd_identifier_token33] = ACTIONS(1865), - [aux_sym_cmd_identifier_token34] = ACTIONS(1865), - [aux_sym_cmd_identifier_token35] = ACTIONS(1865), - [aux_sym_cmd_identifier_token36] = ACTIONS(1865), - [aux_sym_cmd_identifier_token37] = ACTIONS(1865), - [aux_sym_cmd_identifier_token38] = ACTIONS(1865), - [aux_sym_cmd_identifier_token39] = ACTIONS(1865), - [aux_sym_cmd_identifier_token40] = ACTIONS(1865), - [anon_sym_def] = ACTIONS(1865), - [anon_sym_export_DASHenv] = ACTIONS(1865), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_error] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_in2] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_make] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1865), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_source] = ACTIONS(1865), - [anon_sym_source_DASHenv] = ACTIONS(1865), - [anon_sym_register] = ACTIONS(1865), - [anon_sym_hide] = ACTIONS(1865), - [anon_sym_hide_DASHenv] = ACTIONS(1865), - [anon_sym_overlay] = ACTIONS(1865), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1865), - [aux_sym__val_number_decimal_token3] = ACTIONS(1865), - [aux_sym__val_number_decimal_token4] = ACTIONS(1865), - [aux_sym__val_number_token1] = ACTIONS(1865), - [aux_sym__val_number_token2] = ACTIONS(1865), - [aux_sym__val_number_token3] = ACTIONS(1865), - [aux_sym__val_number_token4] = ACTIONS(1865), - [aux_sym__val_number_token5] = ACTIONS(1865), - [aux_sym__val_number_token6] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1865), - [sym__str_single_quotes] = ACTIONS(1865), - [sym__str_back_ticks] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), - [sym__entry_separator] = ACTIONS(1873), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1873), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(960), + [aux_sym_cmd_identifier_token3] = ACTIONS(960), + [aux_sym_cmd_identifier_token4] = ACTIONS(960), + [aux_sym_cmd_identifier_token5] = ACTIONS(960), + [aux_sym_cmd_identifier_token6] = ACTIONS(960), + [aux_sym_cmd_identifier_token7] = ACTIONS(960), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(960), + [aux_sym_cmd_identifier_token11] = ACTIONS(960), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(960), + [aux_sym_cmd_identifier_token17] = ACTIONS(960), + [aux_sym_cmd_identifier_token18] = ACTIONS(960), + [aux_sym_cmd_identifier_token19] = ACTIONS(960), + [aux_sym_cmd_identifier_token20] = ACTIONS(960), + [aux_sym_cmd_identifier_token21] = ACTIONS(960), + [aux_sym_cmd_identifier_token22] = ACTIONS(960), + [aux_sym_cmd_identifier_token23] = ACTIONS(960), + [aux_sym_cmd_identifier_token24] = ACTIONS(960), + [aux_sym_cmd_identifier_token25] = ACTIONS(960), + [aux_sym_cmd_identifier_token26] = ACTIONS(960), + [aux_sym_cmd_identifier_token27] = ACTIONS(960), + [aux_sym_cmd_identifier_token28] = ACTIONS(960), + [aux_sym_cmd_identifier_token29] = ACTIONS(960), + [aux_sym_cmd_identifier_token30] = ACTIONS(960), + [aux_sym_cmd_identifier_token31] = ACTIONS(960), + [aux_sym_cmd_identifier_token32] = ACTIONS(960), + [aux_sym_cmd_identifier_token33] = ACTIONS(960), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(960), + [aux_sym_cmd_identifier_token36] = ACTIONS(960), + [aux_sym_cmd_identifier_token37] = ACTIONS(960), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(960), + [aux_sym_cmd_identifier_token40] = ACTIONS(960), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_COMMA] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(960), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(2176), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, [505] = { [sym_comment] = STATE(505), - [anon_sym_export] = ACTIONS(2120), - [anon_sym_alias] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_let_DASHenv] = ACTIONS(2120), - [anon_sym_mut] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [aux_sym_cmd_identifier_token1] = ACTIONS(2120), - [aux_sym_cmd_identifier_token2] = ACTIONS(2122), - [aux_sym_cmd_identifier_token3] = ACTIONS(2122), - [aux_sym_cmd_identifier_token4] = ACTIONS(2122), - [aux_sym_cmd_identifier_token5] = ACTIONS(2122), - [aux_sym_cmd_identifier_token6] = ACTIONS(2122), - [aux_sym_cmd_identifier_token7] = ACTIONS(2122), - [aux_sym_cmd_identifier_token8] = ACTIONS(2120), - [aux_sym_cmd_identifier_token9] = ACTIONS(2120), - [aux_sym_cmd_identifier_token10] = ACTIONS(2122), - [aux_sym_cmd_identifier_token11] = ACTIONS(2122), - [aux_sym_cmd_identifier_token12] = ACTIONS(2120), - [aux_sym_cmd_identifier_token13] = ACTIONS(2120), - [aux_sym_cmd_identifier_token14] = ACTIONS(2120), - [aux_sym_cmd_identifier_token15] = ACTIONS(2120), - [aux_sym_cmd_identifier_token16] = ACTIONS(2122), - [aux_sym_cmd_identifier_token17] = ACTIONS(2122), - [aux_sym_cmd_identifier_token18] = ACTIONS(2122), - [aux_sym_cmd_identifier_token19] = ACTIONS(2122), - [aux_sym_cmd_identifier_token20] = ACTIONS(2122), - [aux_sym_cmd_identifier_token21] = ACTIONS(2122), - [aux_sym_cmd_identifier_token22] = ACTIONS(2122), - [aux_sym_cmd_identifier_token23] = ACTIONS(2122), - [aux_sym_cmd_identifier_token24] = ACTIONS(2122), - [aux_sym_cmd_identifier_token25] = ACTIONS(2122), - [aux_sym_cmd_identifier_token26] = ACTIONS(2122), - [aux_sym_cmd_identifier_token27] = ACTIONS(2122), - [aux_sym_cmd_identifier_token28] = ACTIONS(2122), - [aux_sym_cmd_identifier_token29] = ACTIONS(2122), - [aux_sym_cmd_identifier_token30] = ACTIONS(2122), - [aux_sym_cmd_identifier_token31] = ACTIONS(2122), - [aux_sym_cmd_identifier_token32] = ACTIONS(2122), - [aux_sym_cmd_identifier_token33] = ACTIONS(2122), - [aux_sym_cmd_identifier_token34] = ACTIONS(2120), - [aux_sym_cmd_identifier_token35] = ACTIONS(2122), - [aux_sym_cmd_identifier_token36] = ACTIONS(2122), - [aux_sym_cmd_identifier_token37] = ACTIONS(2122), - [aux_sym_cmd_identifier_token38] = ACTIONS(2120), - [aux_sym_cmd_identifier_token39] = ACTIONS(2122), - [aux_sym_cmd_identifier_token40] = ACTIONS(2122), - [anon_sym_def] = ACTIONS(2120), - [anon_sym_export_DASHenv] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_module] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_error] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_in2] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_make] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_do] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_else] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2120), - [anon_sym_catch] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_source] = ACTIONS(2120), - [anon_sym_source_DASHenv] = ACTIONS(2120), - [anon_sym_register] = ACTIONS(2120), - [anon_sym_hide] = ACTIONS(2120), - [anon_sym_hide_DASHenv] = ACTIONS(2120), - [anon_sym_overlay] = ACTIONS(2120), - [anon_sym_as] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2122), - [aux_sym__val_number_decimal_token3] = ACTIONS(2122), - [aux_sym__val_number_decimal_token4] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2122), - }, - [506] = { - [sym_comment] = STATE(506), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_COMMA] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(954), + [aux_sym_cmd_identifier_token3] = ACTIONS(954), + [aux_sym_cmd_identifier_token4] = ACTIONS(954), + [aux_sym_cmd_identifier_token5] = ACTIONS(954), + [aux_sym_cmd_identifier_token6] = ACTIONS(954), + [aux_sym_cmd_identifier_token7] = ACTIONS(954), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(954), + [aux_sym_cmd_identifier_token11] = ACTIONS(954), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(954), + [aux_sym_cmd_identifier_token17] = ACTIONS(954), + [aux_sym_cmd_identifier_token18] = ACTIONS(954), + [aux_sym_cmd_identifier_token19] = ACTIONS(954), + [aux_sym_cmd_identifier_token20] = ACTIONS(954), + [aux_sym_cmd_identifier_token21] = ACTIONS(954), + [aux_sym_cmd_identifier_token22] = ACTIONS(954), + [aux_sym_cmd_identifier_token23] = ACTIONS(954), + [aux_sym_cmd_identifier_token24] = ACTIONS(954), + [aux_sym_cmd_identifier_token25] = ACTIONS(954), + [aux_sym_cmd_identifier_token26] = ACTIONS(954), + [aux_sym_cmd_identifier_token27] = ACTIONS(954), + [aux_sym_cmd_identifier_token28] = ACTIONS(954), + [aux_sym_cmd_identifier_token29] = ACTIONS(954), + [aux_sym_cmd_identifier_token30] = ACTIONS(954), + [aux_sym_cmd_identifier_token31] = ACTIONS(954), + [aux_sym_cmd_identifier_token32] = ACTIONS(954), + [aux_sym_cmd_identifier_token33] = ACTIONS(954), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(954), + [aux_sym_cmd_identifier_token36] = ACTIONS(954), + [aux_sym_cmd_identifier_token37] = ACTIONS(954), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(954), + [aux_sym_cmd_identifier_token40] = ACTIONS(954), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_COMMA] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(954), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(2178), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [sym_raw_string_begin] = ACTIONS(954), + }, + [506] = { + [sym_comment] = STATE(506), + [anon_sym_export] = ACTIONS(2180), + [anon_sym_alias] = ACTIONS(2180), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_let_DASHenv] = ACTIONS(2180), + [anon_sym_mut] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(2180), + [aux_sym_cmd_identifier_token1] = ACTIONS(2180), + [aux_sym_cmd_identifier_token2] = ACTIONS(2180), + [aux_sym_cmd_identifier_token3] = ACTIONS(2180), + [aux_sym_cmd_identifier_token4] = ACTIONS(2180), + [aux_sym_cmd_identifier_token5] = ACTIONS(2180), + [aux_sym_cmd_identifier_token6] = ACTIONS(2180), + [aux_sym_cmd_identifier_token7] = ACTIONS(2180), + [aux_sym_cmd_identifier_token8] = ACTIONS(2180), + [aux_sym_cmd_identifier_token9] = ACTIONS(2180), + [aux_sym_cmd_identifier_token10] = ACTIONS(2180), + [aux_sym_cmd_identifier_token11] = ACTIONS(2180), + [aux_sym_cmd_identifier_token12] = ACTIONS(2180), + [aux_sym_cmd_identifier_token13] = ACTIONS(2180), + [aux_sym_cmd_identifier_token14] = ACTIONS(2180), + [aux_sym_cmd_identifier_token15] = ACTIONS(2180), + [aux_sym_cmd_identifier_token16] = ACTIONS(2180), + [aux_sym_cmd_identifier_token17] = ACTIONS(2180), + [aux_sym_cmd_identifier_token18] = ACTIONS(2180), + [aux_sym_cmd_identifier_token19] = ACTIONS(2180), + [aux_sym_cmd_identifier_token20] = ACTIONS(2180), + [aux_sym_cmd_identifier_token21] = ACTIONS(2180), + [aux_sym_cmd_identifier_token22] = ACTIONS(2180), + [aux_sym_cmd_identifier_token23] = ACTIONS(2180), + [aux_sym_cmd_identifier_token24] = ACTIONS(2180), + [aux_sym_cmd_identifier_token25] = ACTIONS(2180), + [aux_sym_cmd_identifier_token26] = ACTIONS(2180), + [aux_sym_cmd_identifier_token27] = ACTIONS(2180), + [aux_sym_cmd_identifier_token28] = ACTIONS(2180), + [aux_sym_cmd_identifier_token29] = ACTIONS(2180), + [aux_sym_cmd_identifier_token30] = ACTIONS(2180), + [aux_sym_cmd_identifier_token31] = ACTIONS(2180), + [aux_sym_cmd_identifier_token32] = ACTIONS(2180), + [aux_sym_cmd_identifier_token33] = ACTIONS(2180), + [aux_sym_cmd_identifier_token34] = ACTIONS(2180), + [aux_sym_cmd_identifier_token35] = ACTIONS(2180), + [aux_sym_cmd_identifier_token36] = ACTIONS(2180), + [aux_sym_cmd_identifier_token37] = ACTIONS(2180), + [aux_sym_cmd_identifier_token38] = ACTIONS(2180), + [aux_sym_cmd_identifier_token39] = ACTIONS(2180), + [aux_sym_cmd_identifier_token40] = ACTIONS(2180), + [anon_sym_def] = ACTIONS(2180), + [anon_sym_export_DASHenv] = ACTIONS(2180), + [anon_sym_extern] = ACTIONS(2180), + [anon_sym_module] = ACTIONS(2180), + [anon_sym_use] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_COMMA] = ACTIONS(2180), + [anon_sym_DOLLAR] = ACTIONS(2180), + [anon_sym_error] = ACTIONS(2180), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_in2] = ACTIONS(2180), + [anon_sym_loop] = ACTIONS(2180), + [anon_sym_make] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_do] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_else] = ACTIONS(2180), + [anon_sym_match] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2180), + [anon_sym_try] = ACTIONS(2180), + [anon_sym_catch] = ACTIONS(2180), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_source] = ACTIONS(2180), + [anon_sym_source_DASHenv] = ACTIONS(2180), + [anon_sym_register] = ACTIONS(2180), + [anon_sym_hide] = ACTIONS(2180), + [anon_sym_hide_DASHenv] = ACTIONS(2180), + [anon_sym_overlay] = ACTIONS(2180), + [anon_sym_as] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(2182), + [anon_sym_PLUS2] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2180), + [aux_sym__val_number_decimal_token1] = ACTIONS(2180), + [aux_sym__val_number_decimal_token2] = ACTIONS(2180), + [aux_sym__val_number_decimal_token3] = ACTIONS(2180), + [aux_sym__val_number_decimal_token4] = ACTIONS(2180), + [aux_sym__val_number_token1] = ACTIONS(2180), + [aux_sym__val_number_token2] = ACTIONS(2180), + [aux_sym__val_number_token3] = ACTIONS(2180), + [aux_sym__val_number_token4] = ACTIONS(2180), + [aux_sym__val_number_token5] = ACTIONS(2180), + [aux_sym__val_number_token6] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2180), + [sym__str_single_quotes] = ACTIONS(2180), + [sym__str_back_ticks] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2180), + [sym__entry_separator] = ACTIONS(2184), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2184), }, [507] = { [sym_comment] = STATE(507), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_COMMA] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [508] = { - [sym_comment] = STATE(508), [anon_sym_export] = ACTIONS(2188), [anon_sym_alias] = ACTIONS(2188), [anon_sym_let] = ACTIONS(2188), @@ -135449,6 +135535,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2188), [anon_sym_use] = ACTIONS(2188), [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2188), [anon_sym_DOLLAR] = ACTIONS(2188), [anon_sym_error] = ACTIONS(2188), [anon_sym_DASH2] = ACTIONS(2188), @@ -135474,7 +135561,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(2188), [anon_sym_overlay] = ACTIONS(2188), [anon_sym_as] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(2190), + [anon_sym_LPAREN2] = ACTIONS(1795), [anon_sym_PLUS2] = ACTIONS(2188), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2188), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2188), @@ -135492,115 +135579,425 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_single_quotes] = ACTIONS(2188), [sym__str_back_ticks] = ACTIONS(2188), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2188), - [sym__entry_separator] = ACTIONS(2192), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), + [sym__entry_separator] = ACTIONS(2190), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2190), + }, + [508] = { + [sym_comment] = STATE(508), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_alias] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_let_DASHenv] = ACTIONS(2192), + [anon_sym_mut] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [aux_sym_cmd_identifier_token1] = ACTIONS(2192), + [aux_sym_cmd_identifier_token2] = ACTIONS(2192), + [aux_sym_cmd_identifier_token3] = ACTIONS(2192), + [aux_sym_cmd_identifier_token4] = ACTIONS(2192), + [aux_sym_cmd_identifier_token5] = ACTIONS(2192), + [aux_sym_cmd_identifier_token6] = ACTIONS(2192), + [aux_sym_cmd_identifier_token7] = ACTIONS(2192), + [aux_sym_cmd_identifier_token8] = ACTIONS(2192), + [aux_sym_cmd_identifier_token9] = ACTIONS(2192), + [aux_sym_cmd_identifier_token10] = ACTIONS(2192), + [aux_sym_cmd_identifier_token11] = ACTIONS(2192), + [aux_sym_cmd_identifier_token12] = ACTIONS(2192), + [aux_sym_cmd_identifier_token13] = ACTIONS(2192), + [aux_sym_cmd_identifier_token14] = ACTIONS(2192), + [aux_sym_cmd_identifier_token15] = ACTIONS(2192), + [aux_sym_cmd_identifier_token16] = ACTIONS(2192), + [aux_sym_cmd_identifier_token17] = ACTIONS(2192), + [aux_sym_cmd_identifier_token18] = ACTIONS(2192), + [aux_sym_cmd_identifier_token19] = ACTIONS(2192), + [aux_sym_cmd_identifier_token20] = ACTIONS(2192), + [aux_sym_cmd_identifier_token21] = ACTIONS(2192), + [aux_sym_cmd_identifier_token22] = ACTIONS(2192), + [aux_sym_cmd_identifier_token23] = ACTIONS(2192), + [aux_sym_cmd_identifier_token24] = ACTIONS(2192), + [aux_sym_cmd_identifier_token25] = ACTIONS(2192), + [aux_sym_cmd_identifier_token26] = ACTIONS(2192), + [aux_sym_cmd_identifier_token27] = ACTIONS(2192), + [aux_sym_cmd_identifier_token28] = ACTIONS(2192), + [aux_sym_cmd_identifier_token29] = ACTIONS(2192), + [aux_sym_cmd_identifier_token30] = ACTIONS(2192), + [aux_sym_cmd_identifier_token31] = ACTIONS(2192), + [aux_sym_cmd_identifier_token32] = ACTIONS(2192), + [aux_sym_cmd_identifier_token33] = ACTIONS(2192), + [aux_sym_cmd_identifier_token34] = ACTIONS(2192), + [aux_sym_cmd_identifier_token35] = ACTIONS(2192), + [aux_sym_cmd_identifier_token36] = ACTIONS(2192), + [aux_sym_cmd_identifier_token37] = ACTIONS(2192), + [aux_sym_cmd_identifier_token38] = ACTIONS(2192), + [aux_sym_cmd_identifier_token39] = ACTIONS(2192), + [aux_sym_cmd_identifier_token40] = ACTIONS(2192), + [anon_sym_def] = ACTIONS(2192), + [anon_sym_export_DASHenv] = ACTIONS(2192), + [anon_sym_extern] = ACTIONS(2192), + [anon_sym_module] = ACTIONS(2192), + [anon_sym_use] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_error] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_loop] = ACTIONS(2192), + [anon_sym_make] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_match] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_catch] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_source] = ACTIONS(2192), + [anon_sym_source_DASHenv] = ACTIONS(2192), + [anon_sym_register] = ACTIONS(2192), + [anon_sym_hide] = ACTIONS(2192), + [anon_sym_hide_DASHenv] = ACTIONS(2192), + [anon_sym_overlay] = ACTIONS(2192), + [anon_sym_as] = ACTIONS(2192), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token2] = ACTIONS(2192), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2192), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2192), + [aux_sym__val_number_token5] = ACTIONS(2192), + [aux_sym__val_number_token6] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2192), + [sym__str_single_quotes] = ACTIONS(2192), + [sym__str_back_ticks] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2192), + [sym__entry_separator] = ACTIONS(2196), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2192), + [sym_raw_string_begin] = ACTIONS(2196), }, [509] = { [sym_comment] = STATE(509), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_alias] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_let_DASHenv] = ACTIONS(2194), - [anon_sym_mut] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [aux_sym_cmd_identifier_token1] = ACTIONS(2194), - [aux_sym_cmd_identifier_token2] = ACTIONS(2194), - [aux_sym_cmd_identifier_token3] = ACTIONS(2194), - [aux_sym_cmd_identifier_token4] = ACTIONS(2194), - [aux_sym_cmd_identifier_token5] = ACTIONS(2194), - [aux_sym_cmd_identifier_token6] = ACTIONS(2194), - [aux_sym_cmd_identifier_token7] = ACTIONS(2194), - [aux_sym_cmd_identifier_token8] = ACTIONS(2194), - [aux_sym_cmd_identifier_token9] = ACTIONS(2194), - [aux_sym_cmd_identifier_token10] = ACTIONS(2194), - [aux_sym_cmd_identifier_token11] = ACTIONS(2194), - [aux_sym_cmd_identifier_token12] = ACTIONS(2194), - [aux_sym_cmd_identifier_token13] = ACTIONS(2194), - [aux_sym_cmd_identifier_token14] = ACTIONS(2194), - [aux_sym_cmd_identifier_token15] = ACTIONS(2194), - [aux_sym_cmd_identifier_token16] = ACTIONS(2194), - [aux_sym_cmd_identifier_token17] = ACTIONS(2194), - [aux_sym_cmd_identifier_token18] = ACTIONS(2194), - [aux_sym_cmd_identifier_token19] = ACTIONS(2194), - [aux_sym_cmd_identifier_token20] = ACTIONS(2194), - [aux_sym_cmd_identifier_token21] = ACTIONS(2194), - [aux_sym_cmd_identifier_token22] = ACTIONS(2194), - [aux_sym_cmd_identifier_token23] = ACTIONS(2194), - [aux_sym_cmd_identifier_token24] = ACTIONS(2194), - [aux_sym_cmd_identifier_token25] = ACTIONS(2194), - [aux_sym_cmd_identifier_token26] = ACTIONS(2194), - [aux_sym_cmd_identifier_token27] = ACTIONS(2194), - [aux_sym_cmd_identifier_token28] = ACTIONS(2194), - [aux_sym_cmd_identifier_token29] = ACTIONS(2194), - [aux_sym_cmd_identifier_token30] = ACTIONS(2194), - [aux_sym_cmd_identifier_token31] = ACTIONS(2194), - [aux_sym_cmd_identifier_token32] = ACTIONS(2194), - [aux_sym_cmd_identifier_token33] = ACTIONS(2194), - [aux_sym_cmd_identifier_token34] = ACTIONS(2194), - [aux_sym_cmd_identifier_token35] = ACTIONS(2194), - [aux_sym_cmd_identifier_token36] = ACTIONS(2194), - [aux_sym_cmd_identifier_token37] = ACTIONS(2194), - [aux_sym_cmd_identifier_token38] = ACTIONS(2194), - [aux_sym_cmd_identifier_token39] = ACTIONS(2194), - [aux_sym_cmd_identifier_token40] = ACTIONS(2194), - [anon_sym_def] = ACTIONS(2194), - [anon_sym_export_DASHenv] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_use] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_error] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_in2] = ACTIONS(2194), - [anon_sym_loop] = ACTIONS(2194), - [anon_sym_make] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2194), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_source] = ACTIONS(2194), - [anon_sym_source_DASHenv] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_hide] = ACTIONS(2194), - [anon_sym_hide_DASHenv] = ACTIONS(2194), - [anon_sym_overlay] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_PLUS2] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2194), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2194), - [aux_sym__val_number_decimal_token3] = ACTIONS(2194), - [aux_sym__val_number_decimal_token4] = ACTIONS(2194), - [aux_sym__val_number_token1] = ACTIONS(2194), - [aux_sym__val_number_token2] = ACTIONS(2194), - [aux_sym__val_number_token3] = ACTIONS(2194), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2194), - [sym__str_single_quotes] = ACTIONS(2194), - [sym__str_back_ticks] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2194), - [sym__entry_separator] = ACTIONS(2198), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2200), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [aux_sym_cmd_identifier_token37] = ACTIONS(2200), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2200), + [aux_sym_cmd_identifier_token40] = ACTIONS(2200), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [aux_sym__val_number_token4] = ACTIONS(2200), + [aux_sym__val_number_token5] = ACTIONS(2200), + [aux_sym__val_number_token6] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2200), + [sym__str_single_quotes] = ACTIONS(2200), + [sym__str_back_ticks] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2200), + [sym__entry_separator] = ACTIONS(2202), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2198), + [sym_raw_string_begin] = ACTIONS(2202), }, [510] = { [sym_comment] = STATE(510), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [aux_sym__immediate_decimal_token1] = ACTIONS(2204), + [aux_sym__immediate_decimal_token2] = ACTIONS(2206), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [511] = { + [sym_comment] = STATE(511), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_alias] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_let_DASHenv] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [aux_sym_cmd_identifier_token1] = ACTIONS(1793), + [aux_sym_cmd_identifier_token2] = ACTIONS(1793), + [aux_sym_cmd_identifier_token3] = ACTIONS(1793), + [aux_sym_cmd_identifier_token4] = ACTIONS(1793), + [aux_sym_cmd_identifier_token5] = ACTIONS(1793), + [aux_sym_cmd_identifier_token6] = ACTIONS(1793), + [aux_sym_cmd_identifier_token7] = ACTIONS(1793), + [aux_sym_cmd_identifier_token8] = ACTIONS(1793), + [aux_sym_cmd_identifier_token9] = ACTIONS(1793), + [aux_sym_cmd_identifier_token10] = ACTIONS(1793), + [aux_sym_cmd_identifier_token11] = ACTIONS(1793), + [aux_sym_cmd_identifier_token12] = ACTIONS(1793), + [aux_sym_cmd_identifier_token13] = ACTIONS(1793), + [aux_sym_cmd_identifier_token14] = ACTIONS(1793), + [aux_sym_cmd_identifier_token15] = ACTIONS(1793), + [aux_sym_cmd_identifier_token16] = ACTIONS(1793), + [aux_sym_cmd_identifier_token17] = ACTIONS(1793), + [aux_sym_cmd_identifier_token18] = ACTIONS(1793), + [aux_sym_cmd_identifier_token19] = ACTIONS(1793), + [aux_sym_cmd_identifier_token20] = ACTIONS(1793), + [aux_sym_cmd_identifier_token21] = ACTIONS(1793), + [aux_sym_cmd_identifier_token22] = ACTIONS(1793), + [aux_sym_cmd_identifier_token23] = ACTIONS(1793), + [aux_sym_cmd_identifier_token24] = ACTIONS(1793), + [aux_sym_cmd_identifier_token25] = ACTIONS(1793), + [aux_sym_cmd_identifier_token26] = ACTIONS(1793), + [aux_sym_cmd_identifier_token27] = ACTIONS(1793), + [aux_sym_cmd_identifier_token28] = ACTIONS(1793), + [aux_sym_cmd_identifier_token29] = ACTIONS(1793), + [aux_sym_cmd_identifier_token30] = ACTIONS(1793), + [aux_sym_cmd_identifier_token31] = ACTIONS(1793), + [aux_sym_cmd_identifier_token32] = ACTIONS(1793), + [aux_sym_cmd_identifier_token33] = ACTIONS(1793), + [aux_sym_cmd_identifier_token34] = ACTIONS(1793), + [aux_sym_cmd_identifier_token35] = ACTIONS(1793), + [aux_sym_cmd_identifier_token36] = ACTIONS(1793), + [aux_sym_cmd_identifier_token37] = ACTIONS(1793), + [aux_sym_cmd_identifier_token38] = ACTIONS(1793), + [aux_sym_cmd_identifier_token39] = ACTIONS(1793), + [aux_sym_cmd_identifier_token40] = ACTIONS(1793), + [anon_sym_def] = ACTIONS(1793), + [anon_sym_export_DASHenv] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1793), + [anon_sym_DOLLAR] = ACTIONS(1793), + [anon_sym_error] = ACTIONS(1793), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_in2] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_make] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1793), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_catch] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_source] = ACTIONS(1793), + [anon_sym_source_DASHenv] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_hide] = ACTIONS(1793), + [anon_sym_hide_DASHenv] = ACTIONS(1793), + [anon_sym_overlay] = ACTIONS(1793), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_PLUS2] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1793), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1793), + [aux_sym__val_number_decimal_token3] = ACTIONS(1793), + [aux_sym__val_number_decimal_token4] = ACTIONS(1793), + [aux_sym__val_number_token1] = ACTIONS(1793), + [aux_sym__val_number_token2] = ACTIONS(1793), + [aux_sym__val_number_token3] = ACTIONS(1793), + [aux_sym__val_number_token4] = ACTIONS(1793), + [aux_sym__val_number_token5] = ACTIONS(1793), + [aux_sym__val_number_token6] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1793), + [sym__str_single_quotes] = ACTIONS(1793), + [sym__str_back_ticks] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1793), + [sym__entry_separator] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [512] = { + [sym_comment] = STATE(512), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -135653,6 +136050,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1004), [anon_sym_use] = ACTIONS(1004), [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_error] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), @@ -135678,7 +136076,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1004), [anon_sym_overlay] = ACTIONS(1004), [anon_sym_as] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2208), [anon_sym_PLUS2] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), @@ -135697,2583 +136095,651 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1004), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), [sym__entry_separator] = ACTIONS(1000), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2204), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2210), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1000), }, - [511] = { - [sym_comment] = STATE(511), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [512] = { - [sym_path] = STATE(656), - [sym_comment] = STATE(512), - [aux_sym_cell_path_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(948), - [anon_sym_alias] = ACTIONS(948), - [anon_sym_let] = ACTIONS(948), - [anon_sym_let_DASHenv] = ACTIONS(948), - [anon_sym_mut] = ACTIONS(948), - [anon_sym_const] = ACTIONS(948), - [aux_sym_cmd_identifier_token1] = ACTIONS(948), - [aux_sym_cmd_identifier_token2] = ACTIONS(950), - [aux_sym_cmd_identifier_token3] = ACTIONS(950), - [aux_sym_cmd_identifier_token4] = ACTIONS(950), - [aux_sym_cmd_identifier_token5] = ACTIONS(950), - [aux_sym_cmd_identifier_token6] = ACTIONS(950), - [aux_sym_cmd_identifier_token7] = ACTIONS(950), - [aux_sym_cmd_identifier_token8] = ACTIONS(948), - [aux_sym_cmd_identifier_token9] = ACTIONS(948), - [aux_sym_cmd_identifier_token10] = ACTIONS(950), - [aux_sym_cmd_identifier_token11] = ACTIONS(950), - [aux_sym_cmd_identifier_token12] = ACTIONS(948), - [aux_sym_cmd_identifier_token13] = ACTIONS(948), - [aux_sym_cmd_identifier_token14] = ACTIONS(948), - [aux_sym_cmd_identifier_token15] = ACTIONS(948), - [aux_sym_cmd_identifier_token16] = ACTIONS(950), - [aux_sym_cmd_identifier_token17] = ACTIONS(950), - [aux_sym_cmd_identifier_token18] = ACTIONS(950), - [aux_sym_cmd_identifier_token19] = ACTIONS(950), - [aux_sym_cmd_identifier_token20] = ACTIONS(950), - [aux_sym_cmd_identifier_token21] = ACTIONS(950), - [aux_sym_cmd_identifier_token22] = ACTIONS(950), - [aux_sym_cmd_identifier_token23] = ACTIONS(950), - [aux_sym_cmd_identifier_token24] = ACTIONS(950), - [aux_sym_cmd_identifier_token25] = ACTIONS(950), - [aux_sym_cmd_identifier_token26] = ACTIONS(950), - [aux_sym_cmd_identifier_token27] = ACTIONS(950), - [aux_sym_cmd_identifier_token28] = ACTIONS(950), - [aux_sym_cmd_identifier_token29] = ACTIONS(950), - [aux_sym_cmd_identifier_token30] = ACTIONS(950), - [aux_sym_cmd_identifier_token31] = ACTIONS(950), - [aux_sym_cmd_identifier_token32] = ACTIONS(950), - [aux_sym_cmd_identifier_token33] = ACTIONS(950), - [aux_sym_cmd_identifier_token34] = ACTIONS(948), - [aux_sym_cmd_identifier_token35] = ACTIONS(950), - [aux_sym_cmd_identifier_token36] = ACTIONS(950), - [aux_sym_cmd_identifier_token37] = ACTIONS(950), - [aux_sym_cmd_identifier_token38] = ACTIONS(948), - [aux_sym_cmd_identifier_token39] = ACTIONS(950), - [aux_sym_cmd_identifier_token40] = ACTIONS(950), - [anon_sym_def] = ACTIONS(948), - [anon_sym_export_DASHenv] = ACTIONS(948), - [anon_sym_extern] = ACTIONS(948), - [anon_sym_module] = ACTIONS(948), - [anon_sym_use] = ACTIONS(948), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(950), - [anon_sym_error] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_break] = ACTIONS(948), - [anon_sym_continue] = ACTIONS(948), - [anon_sym_for] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(948), - [anon_sym_loop] = ACTIONS(948), - [anon_sym_make] = ACTIONS(948), - [anon_sym_while] = ACTIONS(948), - [anon_sym_do] = ACTIONS(948), - [anon_sym_if] = ACTIONS(948), - [anon_sym_else] = ACTIONS(948), - [anon_sym_match] = ACTIONS(948), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_try] = ACTIONS(948), - [anon_sym_catch] = ACTIONS(948), - [anon_sym_return] = ACTIONS(948), - [anon_sym_source] = ACTIONS(948), - [anon_sym_source_DASHenv] = ACTIONS(948), - [anon_sym_register] = ACTIONS(948), - [anon_sym_hide] = ACTIONS(948), - [anon_sym_hide_DASHenv] = ACTIONS(948), - [anon_sym_overlay] = ACTIONS(948), - [anon_sym_as] = ACTIONS(948), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(948), - [aux_sym__val_number_token5] = ACTIONS(948), - [aux_sym__val_number_token6] = ACTIONS(948), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(2097), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(950), - }, [513] = { [sym_comment] = STATE(513), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_alias] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_let_DASHenv] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [aux_sym_cmd_identifier_token1] = ACTIONS(2124), - [aux_sym_cmd_identifier_token2] = ACTIONS(2130), - [aux_sym_cmd_identifier_token3] = ACTIONS(2130), - [aux_sym_cmd_identifier_token4] = ACTIONS(2130), - [aux_sym_cmd_identifier_token5] = ACTIONS(2130), - [aux_sym_cmd_identifier_token6] = ACTIONS(2130), - [aux_sym_cmd_identifier_token7] = ACTIONS(2130), - [aux_sym_cmd_identifier_token8] = ACTIONS(2124), - [aux_sym_cmd_identifier_token9] = ACTIONS(2124), - [aux_sym_cmd_identifier_token10] = ACTIONS(2130), - [aux_sym_cmd_identifier_token11] = ACTIONS(2130), - [aux_sym_cmd_identifier_token12] = ACTIONS(2124), - [aux_sym_cmd_identifier_token13] = ACTIONS(2124), - [aux_sym_cmd_identifier_token14] = ACTIONS(2124), - [aux_sym_cmd_identifier_token15] = ACTIONS(2124), - [aux_sym_cmd_identifier_token16] = ACTIONS(2130), - [aux_sym_cmd_identifier_token17] = ACTIONS(2130), - [aux_sym_cmd_identifier_token18] = ACTIONS(2130), - [aux_sym_cmd_identifier_token19] = ACTIONS(2130), - [aux_sym_cmd_identifier_token20] = ACTIONS(2130), - [aux_sym_cmd_identifier_token21] = ACTIONS(2130), - [aux_sym_cmd_identifier_token22] = ACTIONS(2130), - [aux_sym_cmd_identifier_token23] = ACTIONS(2130), - [aux_sym_cmd_identifier_token24] = ACTIONS(2130), - [aux_sym_cmd_identifier_token25] = ACTIONS(2130), - [aux_sym_cmd_identifier_token26] = ACTIONS(2130), - [aux_sym_cmd_identifier_token27] = ACTIONS(2130), - [aux_sym_cmd_identifier_token28] = ACTIONS(2130), - [aux_sym_cmd_identifier_token29] = ACTIONS(2130), - [aux_sym_cmd_identifier_token30] = ACTIONS(2130), - [aux_sym_cmd_identifier_token31] = ACTIONS(2130), - [aux_sym_cmd_identifier_token32] = ACTIONS(2130), - [aux_sym_cmd_identifier_token33] = ACTIONS(2130), - [aux_sym_cmd_identifier_token34] = ACTIONS(2124), - [aux_sym_cmd_identifier_token35] = ACTIONS(2130), - [aux_sym_cmd_identifier_token36] = ACTIONS(2130), - [aux_sym_cmd_identifier_token37] = ACTIONS(2130), - [aux_sym_cmd_identifier_token38] = ACTIONS(2124), - [aux_sym_cmd_identifier_token39] = ACTIONS(2130), - [aux_sym_cmd_identifier_token40] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2124), - [anon_sym_export_DASHenv] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_error] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_in2] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_make] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_do] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_else] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2124), - [anon_sym_catch] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_source] = ACTIONS(2124), - [anon_sym_source_DASHenv] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_hide] = ACTIONS(2124), - [anon_sym_hide_DASHenv] = ACTIONS(2124), - [anon_sym_overlay] = ACTIONS(2124), - [anon_sym_as] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), - [anon_sym_DOT_DOT2] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2208), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2124), - [aux_sym__val_number_decimal_token2] = ACTIONS(2130), - [aux_sym__val_number_decimal_token3] = ACTIONS(2130), - [aux_sym__val_number_decimal_token4] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2124), - [aux_sym__val_number_token5] = ACTIONS(2124), - [aux_sym__val_number_token6] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2130), - }, - [514] = { - [sym_comment] = STATE(514), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(958), - [aux_sym_cmd_identifier_token3] = ACTIONS(958), - [aux_sym_cmd_identifier_token4] = ACTIONS(958), - [aux_sym_cmd_identifier_token5] = ACTIONS(958), - [aux_sym_cmd_identifier_token6] = ACTIONS(958), - [aux_sym_cmd_identifier_token7] = ACTIONS(958), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(958), - [aux_sym_cmd_identifier_token11] = ACTIONS(958), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(958), - [aux_sym_cmd_identifier_token17] = ACTIONS(958), - [aux_sym_cmd_identifier_token18] = ACTIONS(958), - [aux_sym_cmd_identifier_token19] = ACTIONS(958), - [aux_sym_cmd_identifier_token20] = ACTIONS(958), - [aux_sym_cmd_identifier_token21] = ACTIONS(958), - [aux_sym_cmd_identifier_token22] = ACTIONS(958), - [aux_sym_cmd_identifier_token23] = ACTIONS(958), - [aux_sym_cmd_identifier_token24] = ACTIONS(958), - [aux_sym_cmd_identifier_token25] = ACTIONS(958), - [aux_sym_cmd_identifier_token26] = ACTIONS(958), - [aux_sym_cmd_identifier_token27] = ACTIONS(958), - [aux_sym_cmd_identifier_token28] = ACTIONS(958), - [aux_sym_cmd_identifier_token29] = ACTIONS(958), - [aux_sym_cmd_identifier_token30] = ACTIONS(958), - [aux_sym_cmd_identifier_token31] = ACTIONS(958), - [aux_sym_cmd_identifier_token32] = ACTIONS(958), - [aux_sym_cmd_identifier_token33] = ACTIONS(958), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(958), - [aux_sym_cmd_identifier_token36] = ACTIONS(958), - [aux_sym_cmd_identifier_token37] = ACTIONS(958), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(958), - [aux_sym_cmd_identifier_token40] = ACTIONS(958), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(958), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(958), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(2210), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(958), - [aux_sym__val_number_decimal_token3] = ACTIONS(958), - [aux_sym__val_number_decimal_token4] = ACTIONS(958), - [aux_sym__val_number_token1] = ACTIONS(958), - [aux_sym__val_number_token2] = ACTIONS(958), - [aux_sym__val_number_token3] = ACTIONS(958), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(958), - [sym__str_single_quotes] = ACTIONS(958), - [sym__str_back_ticks] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), - [sym__entry_separator] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(960), - }, - [515] = { - [sym_comment] = STATE(515), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2138), - [aux_sym_cmd_identifier_token3] = ACTIONS(2138), - [aux_sym_cmd_identifier_token4] = ACTIONS(2138), - [aux_sym_cmd_identifier_token5] = ACTIONS(2138), - [aux_sym_cmd_identifier_token6] = ACTIONS(2138), - [aux_sym_cmd_identifier_token7] = ACTIONS(2138), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2138), - [aux_sym_cmd_identifier_token11] = ACTIONS(2138), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2138), - [aux_sym_cmd_identifier_token17] = ACTIONS(2138), - [aux_sym_cmd_identifier_token18] = ACTIONS(2138), - [aux_sym_cmd_identifier_token19] = ACTIONS(2138), - [aux_sym_cmd_identifier_token20] = ACTIONS(2138), - [aux_sym_cmd_identifier_token21] = ACTIONS(2138), - [aux_sym_cmd_identifier_token22] = ACTIONS(2138), - [aux_sym_cmd_identifier_token23] = ACTIONS(2138), - [aux_sym_cmd_identifier_token24] = ACTIONS(2138), - [aux_sym_cmd_identifier_token25] = ACTIONS(2138), - [aux_sym_cmd_identifier_token26] = ACTIONS(2138), - [aux_sym_cmd_identifier_token27] = ACTIONS(2138), - [aux_sym_cmd_identifier_token28] = ACTIONS(2138), - [aux_sym_cmd_identifier_token29] = ACTIONS(2138), - [aux_sym_cmd_identifier_token30] = ACTIONS(2138), - [aux_sym_cmd_identifier_token31] = ACTIONS(2138), - [aux_sym_cmd_identifier_token32] = ACTIONS(2138), - [aux_sym_cmd_identifier_token33] = ACTIONS(2138), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2138), - [aux_sym_cmd_identifier_token36] = ACTIONS(2138), - [aux_sym_cmd_identifier_token37] = ACTIONS(2138), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2138), - [aux_sym_cmd_identifier_token40] = ACTIONS(2138), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), - [anon_sym_DOT_DOT2] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2208), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2138), - [aux_sym__val_number_decimal_token3] = ACTIONS(2138), - [aux_sym__val_number_decimal_token4] = ACTIONS(2138), - [aux_sym__val_number_token1] = ACTIONS(2138), - [aux_sym__val_number_token2] = ACTIONS(2138), - [aux_sym__val_number_token3] = ACTIONS(2138), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2138), - [sym__str_single_quotes] = ACTIONS(2138), - [sym__str_back_ticks] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2138), - }, - [516] = { - [sym_path] = STATE(656), - [sym_comment] = STATE(516), - [aux_sym_cell_path_repeat1] = STATE(516), - [anon_sym_export] = ACTIONS(941), - [anon_sym_alias] = ACTIONS(941), - [anon_sym_let] = ACTIONS(941), - [anon_sym_let_DASHenv] = ACTIONS(941), - [anon_sym_mut] = ACTIONS(941), - [anon_sym_const] = ACTIONS(941), - [aux_sym_cmd_identifier_token1] = ACTIONS(941), - [aux_sym_cmd_identifier_token2] = ACTIONS(943), - [aux_sym_cmd_identifier_token3] = ACTIONS(943), - [aux_sym_cmd_identifier_token4] = ACTIONS(943), - [aux_sym_cmd_identifier_token5] = ACTIONS(943), - [aux_sym_cmd_identifier_token6] = ACTIONS(943), - [aux_sym_cmd_identifier_token7] = ACTIONS(943), - [aux_sym_cmd_identifier_token8] = ACTIONS(941), - [aux_sym_cmd_identifier_token9] = ACTIONS(941), - [aux_sym_cmd_identifier_token10] = ACTIONS(943), - [aux_sym_cmd_identifier_token11] = ACTIONS(943), - [aux_sym_cmd_identifier_token12] = ACTIONS(941), - [aux_sym_cmd_identifier_token13] = ACTIONS(941), - [aux_sym_cmd_identifier_token14] = ACTIONS(941), - [aux_sym_cmd_identifier_token15] = ACTIONS(941), - [aux_sym_cmd_identifier_token16] = ACTIONS(943), - [aux_sym_cmd_identifier_token17] = ACTIONS(943), - [aux_sym_cmd_identifier_token18] = ACTIONS(943), - [aux_sym_cmd_identifier_token19] = ACTIONS(943), - [aux_sym_cmd_identifier_token20] = ACTIONS(943), - [aux_sym_cmd_identifier_token21] = ACTIONS(943), - [aux_sym_cmd_identifier_token22] = ACTIONS(943), - [aux_sym_cmd_identifier_token23] = ACTIONS(943), - [aux_sym_cmd_identifier_token24] = ACTIONS(943), - [aux_sym_cmd_identifier_token25] = ACTIONS(943), - [aux_sym_cmd_identifier_token26] = ACTIONS(943), - [aux_sym_cmd_identifier_token27] = ACTIONS(943), - [aux_sym_cmd_identifier_token28] = ACTIONS(943), - [aux_sym_cmd_identifier_token29] = ACTIONS(943), - [aux_sym_cmd_identifier_token30] = ACTIONS(943), - [aux_sym_cmd_identifier_token31] = ACTIONS(943), - [aux_sym_cmd_identifier_token32] = ACTIONS(943), - [aux_sym_cmd_identifier_token33] = ACTIONS(943), - [aux_sym_cmd_identifier_token34] = ACTIONS(941), - [aux_sym_cmd_identifier_token35] = ACTIONS(943), - [aux_sym_cmd_identifier_token36] = ACTIONS(943), - [aux_sym_cmd_identifier_token37] = ACTIONS(943), - [aux_sym_cmd_identifier_token38] = ACTIONS(941), - [aux_sym_cmd_identifier_token39] = ACTIONS(943), - [aux_sym_cmd_identifier_token40] = ACTIONS(943), - [anon_sym_def] = ACTIONS(941), - [anon_sym_export_DASHenv] = ACTIONS(941), - [anon_sym_extern] = ACTIONS(941), - [anon_sym_module] = ACTIONS(941), - [anon_sym_use] = ACTIONS(941), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(943), - [anon_sym_error] = ACTIONS(941), - [anon_sym_DASH2] = ACTIONS(941), - [anon_sym_break] = ACTIONS(941), - [anon_sym_continue] = ACTIONS(941), - [anon_sym_for] = ACTIONS(941), - [anon_sym_in2] = ACTIONS(941), - [anon_sym_loop] = ACTIONS(941), - [anon_sym_make] = ACTIONS(941), - [anon_sym_while] = ACTIONS(941), - [anon_sym_do] = ACTIONS(941), - [anon_sym_if] = ACTIONS(941), - [anon_sym_else] = ACTIONS(941), - [anon_sym_match] = ACTIONS(941), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_try] = ACTIONS(941), - [anon_sym_catch] = ACTIONS(941), - [anon_sym_return] = ACTIONS(941), - [anon_sym_source] = ACTIONS(941), - [anon_sym_source_DASHenv] = ACTIONS(941), - [anon_sym_register] = ACTIONS(941), - [anon_sym_hide] = ACTIONS(941), - [anon_sym_hide_DASHenv] = ACTIONS(941), - [anon_sym_overlay] = ACTIONS(941), - [anon_sym_as] = ACTIONS(941), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(943), - [aux_sym__val_number_decimal_token1] = ACTIONS(941), - [aux_sym__val_number_decimal_token2] = ACTIONS(943), - [aux_sym__val_number_decimal_token3] = ACTIONS(943), - [aux_sym__val_number_decimal_token4] = ACTIONS(943), - [aux_sym__val_number_token1] = ACTIONS(943), - [aux_sym__val_number_token2] = ACTIONS(943), - [aux_sym__val_number_token3] = ACTIONS(943), - [aux_sym__val_number_token4] = ACTIONS(941), - [aux_sym__val_number_token5] = ACTIONS(941), - [aux_sym__val_number_token6] = ACTIONS(941), - [anon_sym_DQUOTE] = ACTIONS(943), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(2212), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(943), - }, - [517] = { - [sym_comment] = STATE(517), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_alias] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_let_DASHenv] = ACTIONS(2140), - [anon_sym_mut] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [aux_sym_cmd_identifier_token1] = ACTIONS(2140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2142), - [aux_sym_cmd_identifier_token3] = ACTIONS(2142), - [aux_sym_cmd_identifier_token4] = ACTIONS(2142), - [aux_sym_cmd_identifier_token5] = ACTIONS(2142), - [aux_sym_cmd_identifier_token6] = ACTIONS(2142), - [aux_sym_cmd_identifier_token7] = ACTIONS(2142), - [aux_sym_cmd_identifier_token8] = ACTIONS(2140), - [aux_sym_cmd_identifier_token9] = ACTIONS(2140), - [aux_sym_cmd_identifier_token10] = ACTIONS(2142), - [aux_sym_cmd_identifier_token11] = ACTIONS(2142), - [aux_sym_cmd_identifier_token12] = ACTIONS(2140), - [aux_sym_cmd_identifier_token13] = ACTIONS(2140), - [aux_sym_cmd_identifier_token14] = ACTIONS(2140), - [aux_sym_cmd_identifier_token15] = ACTIONS(2140), - [aux_sym_cmd_identifier_token16] = ACTIONS(2142), - [aux_sym_cmd_identifier_token17] = ACTIONS(2142), - [aux_sym_cmd_identifier_token18] = ACTIONS(2142), - [aux_sym_cmd_identifier_token19] = ACTIONS(2142), - [aux_sym_cmd_identifier_token20] = ACTIONS(2142), - [aux_sym_cmd_identifier_token21] = ACTIONS(2142), - [aux_sym_cmd_identifier_token22] = ACTIONS(2142), - [aux_sym_cmd_identifier_token23] = ACTIONS(2142), - [aux_sym_cmd_identifier_token24] = ACTIONS(2142), - [aux_sym_cmd_identifier_token25] = ACTIONS(2142), - [aux_sym_cmd_identifier_token26] = ACTIONS(2142), - [aux_sym_cmd_identifier_token27] = ACTIONS(2142), - [aux_sym_cmd_identifier_token28] = ACTIONS(2142), - [aux_sym_cmd_identifier_token29] = ACTIONS(2142), - [aux_sym_cmd_identifier_token30] = ACTIONS(2142), - [aux_sym_cmd_identifier_token31] = ACTIONS(2142), - [aux_sym_cmd_identifier_token32] = ACTIONS(2142), - [aux_sym_cmd_identifier_token33] = ACTIONS(2142), - [aux_sym_cmd_identifier_token34] = ACTIONS(2140), - [aux_sym_cmd_identifier_token35] = ACTIONS(2142), - [aux_sym_cmd_identifier_token36] = ACTIONS(2142), - [aux_sym_cmd_identifier_token37] = ACTIONS(2142), - [aux_sym_cmd_identifier_token38] = ACTIONS(2140), - [aux_sym_cmd_identifier_token39] = ACTIONS(2142), - [aux_sym_cmd_identifier_token40] = ACTIONS(2142), - [anon_sym_def] = ACTIONS(2140), - [anon_sym_export_DASHenv] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2142), - [anon_sym_error] = ACTIONS(2140), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_in2] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_make] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_source] = ACTIONS(2140), - [anon_sym_source_DASHenv] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_hide] = ACTIONS(2140), - [anon_sym_hide_DASHenv] = ACTIONS(2140), - [anon_sym_overlay] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2142), - [anon_sym_DOT_DOT2] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2208), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2142), - [aux_sym__val_number_decimal_token1] = ACTIONS(2140), - [aux_sym__val_number_decimal_token2] = ACTIONS(2142), - [aux_sym__val_number_decimal_token3] = ACTIONS(2142), - [aux_sym__val_number_decimal_token4] = ACTIONS(2142), - [aux_sym__val_number_token1] = ACTIONS(2142), - [aux_sym__val_number_token2] = ACTIONS(2142), - [aux_sym__val_number_token3] = ACTIONS(2142), - [aux_sym__val_number_token4] = ACTIONS(2140), - [aux_sym__val_number_token5] = ACTIONS(2140), - [aux_sym__val_number_token6] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym__str_single_quotes] = ACTIONS(2142), - [sym__str_back_ticks] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2142), - }, - [518] = { - [sym_comment] = STATE(518), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [aux_sym_cmd_identifier_token1] = ACTIONS(952), - [aux_sym_cmd_identifier_token2] = ACTIONS(952), - [aux_sym_cmd_identifier_token3] = ACTIONS(952), - [aux_sym_cmd_identifier_token4] = ACTIONS(952), - [aux_sym_cmd_identifier_token5] = ACTIONS(952), - [aux_sym_cmd_identifier_token6] = ACTIONS(952), - [aux_sym_cmd_identifier_token7] = ACTIONS(952), - [aux_sym_cmd_identifier_token8] = ACTIONS(952), - [aux_sym_cmd_identifier_token9] = ACTIONS(952), - [aux_sym_cmd_identifier_token10] = ACTIONS(952), - [aux_sym_cmd_identifier_token11] = ACTIONS(952), - [aux_sym_cmd_identifier_token12] = ACTIONS(952), - [aux_sym_cmd_identifier_token13] = ACTIONS(952), - [aux_sym_cmd_identifier_token14] = ACTIONS(952), - [aux_sym_cmd_identifier_token15] = ACTIONS(952), - [aux_sym_cmd_identifier_token16] = ACTIONS(952), - [aux_sym_cmd_identifier_token17] = ACTIONS(952), - [aux_sym_cmd_identifier_token18] = ACTIONS(952), - [aux_sym_cmd_identifier_token19] = ACTIONS(952), - [aux_sym_cmd_identifier_token20] = ACTIONS(952), - [aux_sym_cmd_identifier_token21] = ACTIONS(952), - [aux_sym_cmd_identifier_token22] = ACTIONS(952), - [aux_sym_cmd_identifier_token23] = ACTIONS(952), - [aux_sym_cmd_identifier_token24] = ACTIONS(952), - [aux_sym_cmd_identifier_token25] = ACTIONS(952), - [aux_sym_cmd_identifier_token26] = ACTIONS(952), - [aux_sym_cmd_identifier_token27] = ACTIONS(952), - [aux_sym_cmd_identifier_token28] = ACTIONS(952), - [aux_sym_cmd_identifier_token29] = ACTIONS(952), - [aux_sym_cmd_identifier_token30] = ACTIONS(952), - [aux_sym_cmd_identifier_token31] = ACTIONS(952), - [aux_sym_cmd_identifier_token32] = ACTIONS(952), - [aux_sym_cmd_identifier_token33] = ACTIONS(952), - [aux_sym_cmd_identifier_token34] = ACTIONS(952), - [aux_sym_cmd_identifier_token35] = ACTIONS(952), - [aux_sym_cmd_identifier_token36] = ACTIONS(952), - [aux_sym_cmd_identifier_token37] = ACTIONS(952), - [aux_sym_cmd_identifier_token38] = ACTIONS(952), - [aux_sym_cmd_identifier_token39] = ACTIONS(952), - [aux_sym_cmd_identifier_token40] = ACTIONS(952), - [anon_sym_def] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(952), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_error] = ACTIONS(952), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in2] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_make] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(952), - [anon_sym_try] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_as] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(2215), - [anon_sym_PLUS2] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(952), - [aux_sym__val_number_decimal_token3] = ACTIONS(952), - [aux_sym__val_number_decimal_token4] = ACTIONS(952), - [aux_sym__val_number_token1] = ACTIONS(952), - [aux_sym__val_number_token2] = ACTIONS(952), - [aux_sym__val_number_token3] = ACTIONS(952), - [aux_sym__val_number_token4] = ACTIONS(952), - [aux_sym__val_number_token5] = ACTIONS(952), - [aux_sym__val_number_token6] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(952), - [sym__str_single_quotes] = ACTIONS(952), - [sym__str_back_ticks] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), - [sym__entry_separator] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(954), - }, - [519] = { - [sym_comment] = STATE(519), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(2108), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [520] = { - [sym__expr_parenthesized_immediate] = STATE(7323), - [sym_comment] = STATE(520), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_alias] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_let_DASHenv] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [aux_sym_cmd_identifier_token1] = ACTIONS(2124), - [aux_sym_cmd_identifier_token2] = ACTIONS(2124), - [aux_sym_cmd_identifier_token3] = ACTIONS(2124), - [aux_sym_cmd_identifier_token4] = ACTIONS(2124), - [aux_sym_cmd_identifier_token5] = ACTIONS(2124), - [aux_sym_cmd_identifier_token6] = ACTIONS(2124), - [aux_sym_cmd_identifier_token7] = ACTIONS(2124), - [aux_sym_cmd_identifier_token8] = ACTIONS(2124), - [aux_sym_cmd_identifier_token9] = ACTIONS(2124), - [aux_sym_cmd_identifier_token10] = ACTIONS(2124), - [aux_sym_cmd_identifier_token11] = ACTIONS(2124), - [aux_sym_cmd_identifier_token12] = ACTIONS(2124), - [aux_sym_cmd_identifier_token13] = ACTIONS(2124), - [aux_sym_cmd_identifier_token14] = ACTIONS(2124), - [aux_sym_cmd_identifier_token15] = ACTIONS(2124), - [aux_sym_cmd_identifier_token16] = ACTIONS(2124), - [aux_sym_cmd_identifier_token17] = ACTIONS(2124), - [aux_sym_cmd_identifier_token18] = ACTIONS(2124), - [aux_sym_cmd_identifier_token19] = ACTIONS(2124), - [aux_sym_cmd_identifier_token20] = ACTIONS(2124), - [aux_sym_cmd_identifier_token21] = ACTIONS(2124), - [aux_sym_cmd_identifier_token22] = ACTIONS(2124), - [aux_sym_cmd_identifier_token23] = ACTIONS(2124), - [aux_sym_cmd_identifier_token24] = ACTIONS(2124), - [aux_sym_cmd_identifier_token25] = ACTIONS(2124), - [aux_sym_cmd_identifier_token26] = ACTIONS(2124), - [aux_sym_cmd_identifier_token27] = ACTIONS(2124), - [aux_sym_cmd_identifier_token28] = ACTIONS(2124), - [aux_sym_cmd_identifier_token29] = ACTIONS(2124), - [aux_sym_cmd_identifier_token30] = ACTIONS(2124), - [aux_sym_cmd_identifier_token31] = ACTIONS(2124), - [aux_sym_cmd_identifier_token32] = ACTIONS(2124), - [aux_sym_cmd_identifier_token33] = ACTIONS(2124), - [aux_sym_cmd_identifier_token34] = ACTIONS(2124), - [aux_sym_cmd_identifier_token35] = ACTIONS(2124), - [aux_sym_cmd_identifier_token36] = ACTIONS(2124), - [aux_sym_cmd_identifier_token37] = ACTIONS(2124), - [aux_sym_cmd_identifier_token38] = ACTIONS(2124), - [aux_sym_cmd_identifier_token39] = ACTIONS(2124), - [aux_sym_cmd_identifier_token40] = ACTIONS(2124), - [anon_sym_def] = ACTIONS(2124), - [anon_sym_export_DASHenv] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_error] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_in2] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_make] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_do] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_else] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [anon_sym_catch] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_source] = ACTIONS(2124), - [anon_sym_source_DASHenv] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_hide] = ACTIONS(2124), - [anon_sym_hide_DASHenv] = ACTIONS(2124), - [anon_sym_overlay] = ACTIONS(2124), - [anon_sym_as] = ACTIONS(2124), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2124), - [aux_sym__val_number_decimal_token1] = ACTIONS(2124), - [aux_sym__val_number_decimal_token2] = ACTIONS(2124), - [aux_sym__val_number_decimal_token3] = ACTIONS(2124), - [aux_sym__val_number_decimal_token4] = ACTIONS(2124), - [aux_sym__val_number_token1] = ACTIONS(2124), - [aux_sym__val_number_token2] = ACTIONS(2124), - [aux_sym__val_number_token3] = ACTIONS(2124), - [aux_sym__val_number_token4] = ACTIONS(2124), - [aux_sym__val_number_token5] = ACTIONS(2124), - [aux_sym__val_number_token6] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym__str_single_quotes] = ACTIONS(2124), - [sym__str_back_ticks] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2124), - [sym__entry_separator] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2130), - }, - [521] = { - [sym_comment] = STATE(521), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1786), - [aux_sym_cmd_identifier_token3] = ACTIONS(1786), - [aux_sym_cmd_identifier_token4] = ACTIONS(1786), - [aux_sym_cmd_identifier_token5] = ACTIONS(1786), - [aux_sym_cmd_identifier_token6] = ACTIONS(1786), - [aux_sym_cmd_identifier_token7] = ACTIONS(1786), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1786), - [aux_sym_cmd_identifier_token11] = ACTIONS(1786), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1786), - [aux_sym_cmd_identifier_token17] = ACTIONS(1786), - [aux_sym_cmd_identifier_token18] = ACTIONS(1786), - [aux_sym_cmd_identifier_token19] = ACTIONS(1786), - [aux_sym_cmd_identifier_token20] = ACTIONS(1786), - [aux_sym_cmd_identifier_token21] = ACTIONS(1786), - [aux_sym_cmd_identifier_token22] = ACTIONS(1786), - [aux_sym_cmd_identifier_token23] = ACTIONS(1786), - [aux_sym_cmd_identifier_token24] = ACTIONS(1786), - [aux_sym_cmd_identifier_token25] = ACTIONS(1786), - [aux_sym_cmd_identifier_token26] = ACTIONS(1786), - [aux_sym_cmd_identifier_token27] = ACTIONS(1786), - [aux_sym_cmd_identifier_token28] = ACTIONS(1786), - [aux_sym_cmd_identifier_token29] = ACTIONS(1786), - [aux_sym_cmd_identifier_token30] = ACTIONS(1786), - [aux_sym_cmd_identifier_token31] = ACTIONS(1786), - [aux_sym_cmd_identifier_token32] = ACTIONS(1786), - [aux_sym_cmd_identifier_token33] = ACTIONS(1786), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1786), - [aux_sym_cmd_identifier_token36] = ACTIONS(1786), - [aux_sym_cmd_identifier_token37] = ACTIONS(1786), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1786), - [aux_sym_cmd_identifier_token40] = ACTIONS(1786), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1786), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1786), - [aux_sym__val_number_decimal_token3] = ACTIONS(1786), - [aux_sym__val_number_decimal_token4] = ACTIONS(1786), - [aux_sym__val_number_token1] = ACTIONS(1786), - [aux_sym__val_number_token2] = ACTIONS(1786), - [aux_sym__val_number_token3] = ACTIONS(1786), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1786), - [sym__str_single_quotes] = ACTIONS(1786), - [sym__str_back_ticks] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1786), - [sym__entry_separator] = ACTIONS(1794), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1794), - }, - [522] = { - [sym__expr_parenthesized_immediate] = STATE(7323), - [sym_comment] = STATE(522), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), - [sym__entry_separator] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2138), - }, - [523] = { - [sym__expr_parenthesized_immediate] = STATE(7323), - [sym_comment] = STATE(523), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_alias] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_let_DASHenv] = ACTIONS(2140), - [anon_sym_mut] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [aux_sym_cmd_identifier_token1] = ACTIONS(2140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2140), - [aux_sym_cmd_identifier_token3] = ACTIONS(2140), - [aux_sym_cmd_identifier_token4] = ACTIONS(2140), - [aux_sym_cmd_identifier_token5] = ACTIONS(2140), - [aux_sym_cmd_identifier_token6] = ACTIONS(2140), - [aux_sym_cmd_identifier_token7] = ACTIONS(2140), - [aux_sym_cmd_identifier_token8] = ACTIONS(2140), - [aux_sym_cmd_identifier_token9] = ACTIONS(2140), - [aux_sym_cmd_identifier_token10] = ACTIONS(2140), - [aux_sym_cmd_identifier_token11] = ACTIONS(2140), - [aux_sym_cmd_identifier_token12] = ACTIONS(2140), - [aux_sym_cmd_identifier_token13] = ACTIONS(2140), - [aux_sym_cmd_identifier_token14] = ACTIONS(2140), - [aux_sym_cmd_identifier_token15] = ACTIONS(2140), - [aux_sym_cmd_identifier_token16] = ACTIONS(2140), - [aux_sym_cmd_identifier_token17] = ACTIONS(2140), - [aux_sym_cmd_identifier_token18] = ACTIONS(2140), - [aux_sym_cmd_identifier_token19] = ACTIONS(2140), - [aux_sym_cmd_identifier_token20] = ACTIONS(2140), - [aux_sym_cmd_identifier_token21] = ACTIONS(2140), - [aux_sym_cmd_identifier_token22] = ACTIONS(2140), - [aux_sym_cmd_identifier_token23] = ACTIONS(2140), - [aux_sym_cmd_identifier_token24] = ACTIONS(2140), - [aux_sym_cmd_identifier_token25] = ACTIONS(2140), - [aux_sym_cmd_identifier_token26] = ACTIONS(2140), - [aux_sym_cmd_identifier_token27] = ACTIONS(2140), - [aux_sym_cmd_identifier_token28] = ACTIONS(2140), - [aux_sym_cmd_identifier_token29] = ACTIONS(2140), - [aux_sym_cmd_identifier_token30] = ACTIONS(2140), - [aux_sym_cmd_identifier_token31] = ACTIONS(2140), - [aux_sym_cmd_identifier_token32] = ACTIONS(2140), - [aux_sym_cmd_identifier_token33] = ACTIONS(2140), - [aux_sym_cmd_identifier_token34] = ACTIONS(2140), - [aux_sym_cmd_identifier_token35] = ACTIONS(2140), - [aux_sym_cmd_identifier_token36] = ACTIONS(2140), - [aux_sym_cmd_identifier_token37] = ACTIONS(2140), - [aux_sym_cmd_identifier_token38] = ACTIONS(2140), - [aux_sym_cmd_identifier_token39] = ACTIONS(2140), - [aux_sym_cmd_identifier_token40] = ACTIONS(2140), - [anon_sym_def] = ACTIONS(2140), - [anon_sym_export_DASHenv] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_error] = ACTIONS(2140), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_in2] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_make] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_source] = ACTIONS(2140), - [anon_sym_source_DASHenv] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_hide] = ACTIONS(2140), - [anon_sym_hide_DASHenv] = ACTIONS(2140), - [anon_sym_overlay] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), - [aux_sym__val_number_decimal_token1] = ACTIONS(2140), - [aux_sym__val_number_decimal_token2] = ACTIONS(2140), - [aux_sym__val_number_decimal_token3] = ACTIONS(2140), - [aux_sym__val_number_decimal_token4] = ACTIONS(2140), - [aux_sym__val_number_token1] = ACTIONS(2140), - [aux_sym__val_number_token2] = ACTIONS(2140), - [aux_sym__val_number_token3] = ACTIONS(2140), - [aux_sym__val_number_token4] = ACTIONS(2140), - [aux_sym__val_number_token5] = ACTIONS(2140), - [aux_sym__val_number_token6] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), - [sym__entry_separator] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2142), - }, - [524] = { - [sym_comment] = STATE(524), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [525] = { - [sym_comment] = STATE(525), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [526] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(526), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_alias] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_let_DASHenv] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [aux_sym_cmd_identifier_token1] = ACTIONS(2217), - [aux_sym_cmd_identifier_token2] = ACTIONS(2217), - [aux_sym_cmd_identifier_token3] = ACTIONS(2217), - [aux_sym_cmd_identifier_token4] = ACTIONS(2217), - [aux_sym_cmd_identifier_token5] = ACTIONS(2217), - [aux_sym_cmd_identifier_token6] = ACTIONS(2217), - [aux_sym_cmd_identifier_token7] = ACTIONS(2217), - [aux_sym_cmd_identifier_token8] = ACTIONS(2217), - [aux_sym_cmd_identifier_token9] = ACTIONS(2217), - [aux_sym_cmd_identifier_token10] = ACTIONS(2217), - [aux_sym_cmd_identifier_token11] = ACTIONS(2217), - [aux_sym_cmd_identifier_token12] = ACTIONS(2217), - [aux_sym_cmd_identifier_token13] = ACTIONS(2217), - [aux_sym_cmd_identifier_token14] = ACTIONS(2217), - [aux_sym_cmd_identifier_token15] = ACTIONS(2217), - [aux_sym_cmd_identifier_token16] = ACTIONS(2217), - [aux_sym_cmd_identifier_token17] = ACTIONS(2217), - [aux_sym_cmd_identifier_token18] = ACTIONS(2217), - [aux_sym_cmd_identifier_token19] = ACTIONS(2217), - [aux_sym_cmd_identifier_token20] = ACTIONS(2217), - [aux_sym_cmd_identifier_token21] = ACTIONS(2217), - [aux_sym_cmd_identifier_token22] = ACTIONS(2217), - [aux_sym_cmd_identifier_token23] = ACTIONS(2217), - [aux_sym_cmd_identifier_token24] = ACTIONS(2217), - [aux_sym_cmd_identifier_token25] = ACTIONS(2217), - [aux_sym_cmd_identifier_token26] = ACTIONS(2217), - [aux_sym_cmd_identifier_token27] = ACTIONS(2217), - [aux_sym_cmd_identifier_token28] = ACTIONS(2217), - [aux_sym_cmd_identifier_token29] = ACTIONS(2217), - [aux_sym_cmd_identifier_token30] = ACTIONS(2217), - [aux_sym_cmd_identifier_token31] = ACTIONS(2217), - [aux_sym_cmd_identifier_token32] = ACTIONS(2217), - [aux_sym_cmd_identifier_token33] = ACTIONS(2217), - [aux_sym_cmd_identifier_token34] = ACTIONS(2217), - [aux_sym_cmd_identifier_token35] = ACTIONS(2217), - [aux_sym_cmd_identifier_token36] = ACTIONS(2217), - [aux_sym_cmd_identifier_token37] = ACTIONS(2217), - [aux_sym_cmd_identifier_token38] = ACTIONS(2217), - [aux_sym_cmd_identifier_token39] = ACTIONS(2217), - [aux_sym_cmd_identifier_token40] = ACTIONS(2217), - [anon_sym_def] = ACTIONS(2217), - [anon_sym_export_DASHenv] = ACTIONS(2217), - [anon_sym_extern] = ACTIONS(2217), - [anon_sym_module] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2217), - [anon_sym_error] = ACTIONS(2217), - [anon_sym_DASH2] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_in2] = ACTIONS(2217), - [anon_sym_loop] = ACTIONS(2217), - [anon_sym_make] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2217), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_catch] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_source] = ACTIONS(2217), - [anon_sym_source_DASHenv] = ACTIONS(2217), - [anon_sym_register] = ACTIONS(2217), - [anon_sym_hide] = ACTIONS(2217), - [anon_sym_hide_DASHenv] = ACTIONS(2217), - [anon_sym_overlay] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2217), - [aux_sym__val_number_decimal_token1] = ACTIONS(2217), - [aux_sym__val_number_decimal_token2] = ACTIONS(2217), - [aux_sym__val_number_decimal_token3] = ACTIONS(2217), - [aux_sym__val_number_decimal_token4] = ACTIONS(2217), - [aux_sym__val_number_token1] = ACTIONS(2217), - [aux_sym__val_number_token2] = ACTIONS(2217), - [aux_sym__val_number_token3] = ACTIONS(2217), - [aux_sym__val_number_token4] = ACTIONS(2217), - [aux_sym__val_number_token5] = ACTIONS(2217), - [aux_sym__val_number_token6] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2217), - [sym__str_single_quotes] = ACTIONS(2217), - [sym__str_back_ticks] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2217), - [sym__entry_separator] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2219), - }, - [527] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(527), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_alias] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_let_DASHenv] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [aux_sym_cmd_identifier_token1] = ACTIONS(2221), - [aux_sym_cmd_identifier_token2] = ACTIONS(2221), - [aux_sym_cmd_identifier_token3] = ACTIONS(2221), - [aux_sym_cmd_identifier_token4] = ACTIONS(2221), - [aux_sym_cmd_identifier_token5] = ACTIONS(2221), - [aux_sym_cmd_identifier_token6] = ACTIONS(2221), - [aux_sym_cmd_identifier_token7] = ACTIONS(2221), - [aux_sym_cmd_identifier_token8] = ACTIONS(2221), - [aux_sym_cmd_identifier_token9] = ACTIONS(2221), - [aux_sym_cmd_identifier_token10] = ACTIONS(2221), - [aux_sym_cmd_identifier_token11] = ACTIONS(2221), - [aux_sym_cmd_identifier_token12] = ACTIONS(2221), - [aux_sym_cmd_identifier_token13] = ACTIONS(2221), - [aux_sym_cmd_identifier_token14] = ACTIONS(2221), - [aux_sym_cmd_identifier_token15] = ACTIONS(2221), - [aux_sym_cmd_identifier_token16] = ACTIONS(2221), - [aux_sym_cmd_identifier_token17] = ACTIONS(2221), - [aux_sym_cmd_identifier_token18] = ACTIONS(2221), - [aux_sym_cmd_identifier_token19] = ACTIONS(2221), - [aux_sym_cmd_identifier_token20] = ACTIONS(2221), - [aux_sym_cmd_identifier_token21] = ACTIONS(2221), - [aux_sym_cmd_identifier_token22] = ACTIONS(2221), - [aux_sym_cmd_identifier_token23] = ACTIONS(2221), - [aux_sym_cmd_identifier_token24] = ACTIONS(2221), - [aux_sym_cmd_identifier_token25] = ACTIONS(2221), - [aux_sym_cmd_identifier_token26] = ACTIONS(2221), - [aux_sym_cmd_identifier_token27] = ACTIONS(2221), - [aux_sym_cmd_identifier_token28] = ACTIONS(2221), - [aux_sym_cmd_identifier_token29] = ACTIONS(2221), - [aux_sym_cmd_identifier_token30] = ACTIONS(2221), - [aux_sym_cmd_identifier_token31] = ACTIONS(2221), - [aux_sym_cmd_identifier_token32] = ACTIONS(2221), - [aux_sym_cmd_identifier_token33] = ACTIONS(2221), - [aux_sym_cmd_identifier_token34] = ACTIONS(2221), - [aux_sym_cmd_identifier_token35] = ACTIONS(2221), - [aux_sym_cmd_identifier_token36] = ACTIONS(2221), - [aux_sym_cmd_identifier_token37] = ACTIONS(2221), - [aux_sym_cmd_identifier_token38] = ACTIONS(2221), - [aux_sym_cmd_identifier_token39] = ACTIONS(2221), - [aux_sym_cmd_identifier_token40] = ACTIONS(2221), - [anon_sym_def] = ACTIONS(2221), - [anon_sym_export_DASHenv] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2221), - [anon_sym_error] = ACTIONS(2221), - [anon_sym_DASH2] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_in2] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_make] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2221), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_source] = ACTIONS(2221), - [anon_sym_source_DASHenv] = ACTIONS(2221), - [anon_sym_register] = ACTIONS(2221), - [anon_sym_hide] = ACTIONS(2221), - [anon_sym_hide_DASHenv] = ACTIONS(2221), - [anon_sym_overlay] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2221), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_decimal_token2] = ACTIONS(2221), - [aux_sym__val_number_decimal_token3] = ACTIONS(2221), - [aux_sym__val_number_decimal_token4] = ACTIONS(2221), - [aux_sym__val_number_token1] = ACTIONS(2221), - [aux_sym__val_number_token2] = ACTIONS(2221), - [aux_sym__val_number_token3] = ACTIONS(2221), - [aux_sym__val_number_token4] = ACTIONS(2221), - [aux_sym__val_number_token5] = ACTIONS(2221), - [aux_sym__val_number_token6] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2221), - [sym__str_single_quotes] = ACTIONS(2221), - [sym__str_back_ticks] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2221), - [sym__entry_separator] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2223), - }, - [528] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(528), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_alias] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_let_DASHenv] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [aux_sym_cmd_identifier_token1] = ACTIONS(2225), - [aux_sym_cmd_identifier_token2] = ACTIONS(2225), - [aux_sym_cmd_identifier_token3] = ACTIONS(2225), - [aux_sym_cmd_identifier_token4] = ACTIONS(2225), - [aux_sym_cmd_identifier_token5] = ACTIONS(2225), - [aux_sym_cmd_identifier_token6] = ACTIONS(2225), - [aux_sym_cmd_identifier_token7] = ACTIONS(2225), - [aux_sym_cmd_identifier_token8] = ACTIONS(2225), - [aux_sym_cmd_identifier_token9] = ACTIONS(2225), - [aux_sym_cmd_identifier_token10] = ACTIONS(2225), - [aux_sym_cmd_identifier_token11] = ACTIONS(2225), - [aux_sym_cmd_identifier_token12] = ACTIONS(2225), - [aux_sym_cmd_identifier_token13] = ACTIONS(2225), - [aux_sym_cmd_identifier_token14] = ACTIONS(2225), - [aux_sym_cmd_identifier_token15] = ACTIONS(2225), - [aux_sym_cmd_identifier_token16] = ACTIONS(2225), - [aux_sym_cmd_identifier_token17] = ACTIONS(2225), - [aux_sym_cmd_identifier_token18] = ACTIONS(2225), - [aux_sym_cmd_identifier_token19] = ACTIONS(2225), - [aux_sym_cmd_identifier_token20] = ACTIONS(2225), - [aux_sym_cmd_identifier_token21] = ACTIONS(2225), - [aux_sym_cmd_identifier_token22] = ACTIONS(2225), - [aux_sym_cmd_identifier_token23] = ACTIONS(2225), - [aux_sym_cmd_identifier_token24] = ACTIONS(2225), - [aux_sym_cmd_identifier_token25] = ACTIONS(2225), - [aux_sym_cmd_identifier_token26] = ACTIONS(2225), - [aux_sym_cmd_identifier_token27] = ACTIONS(2225), - [aux_sym_cmd_identifier_token28] = ACTIONS(2225), - [aux_sym_cmd_identifier_token29] = ACTIONS(2225), - [aux_sym_cmd_identifier_token30] = ACTIONS(2225), - [aux_sym_cmd_identifier_token31] = ACTIONS(2225), - [aux_sym_cmd_identifier_token32] = ACTIONS(2225), - [aux_sym_cmd_identifier_token33] = ACTIONS(2225), - [aux_sym_cmd_identifier_token34] = ACTIONS(2225), - [aux_sym_cmd_identifier_token35] = ACTIONS(2225), - [aux_sym_cmd_identifier_token36] = ACTIONS(2225), - [aux_sym_cmd_identifier_token37] = ACTIONS(2225), - [aux_sym_cmd_identifier_token38] = ACTIONS(2225), - [aux_sym_cmd_identifier_token39] = ACTIONS(2225), - [aux_sym_cmd_identifier_token40] = ACTIONS(2225), - [anon_sym_def] = ACTIONS(2225), - [anon_sym_export_DASHenv] = ACTIONS(2225), - [anon_sym_extern] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2225), - [anon_sym_error] = ACTIONS(2225), - [anon_sym_DASH2] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_in2] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_make] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2225), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_catch] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_source] = ACTIONS(2225), - [anon_sym_source_DASHenv] = ACTIONS(2225), - [anon_sym_register] = ACTIONS(2225), - [anon_sym_hide] = ACTIONS(2225), - [anon_sym_hide_DASHenv] = ACTIONS(2225), - [anon_sym_overlay] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2225), - [aux_sym__val_number_decimal_token1] = ACTIONS(2225), - [aux_sym__val_number_decimal_token2] = ACTIONS(2225), - [aux_sym__val_number_decimal_token3] = ACTIONS(2225), - [aux_sym__val_number_decimal_token4] = ACTIONS(2225), - [aux_sym__val_number_token1] = ACTIONS(2225), - [aux_sym__val_number_token2] = ACTIONS(2225), - [aux_sym__val_number_token3] = ACTIONS(2225), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2225), - [sym__str_single_quotes] = ACTIONS(2225), - [sym__str_back_ticks] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2225), - [sym__entry_separator] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2227), - }, - [529] = { - [sym_comment] = STATE(529), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [sym__entry_separator] = ACTIONS(1863), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [530] = { - [sym_comment] = STATE(530), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [aux_sym_cmd_identifier_token1] = ACTIONS(2229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2229), - [aux_sym_cmd_identifier_token3] = ACTIONS(2229), - [aux_sym_cmd_identifier_token4] = ACTIONS(2229), - [aux_sym_cmd_identifier_token5] = ACTIONS(2229), - [aux_sym_cmd_identifier_token6] = ACTIONS(2229), - [aux_sym_cmd_identifier_token7] = ACTIONS(2229), - [aux_sym_cmd_identifier_token8] = ACTIONS(2229), - [aux_sym_cmd_identifier_token9] = ACTIONS(2229), - [aux_sym_cmd_identifier_token10] = ACTIONS(2229), - [aux_sym_cmd_identifier_token11] = ACTIONS(2229), - [aux_sym_cmd_identifier_token12] = ACTIONS(2229), - [aux_sym_cmd_identifier_token13] = ACTIONS(2229), - [aux_sym_cmd_identifier_token14] = ACTIONS(2229), - [aux_sym_cmd_identifier_token15] = ACTIONS(2229), - [aux_sym_cmd_identifier_token16] = ACTIONS(2229), - [aux_sym_cmd_identifier_token17] = ACTIONS(2229), - [aux_sym_cmd_identifier_token18] = ACTIONS(2229), - [aux_sym_cmd_identifier_token19] = ACTIONS(2229), - [aux_sym_cmd_identifier_token20] = ACTIONS(2229), - [aux_sym_cmd_identifier_token21] = ACTIONS(2229), - [aux_sym_cmd_identifier_token22] = ACTIONS(2229), - [aux_sym_cmd_identifier_token23] = ACTIONS(2229), - [aux_sym_cmd_identifier_token24] = ACTIONS(2229), - [aux_sym_cmd_identifier_token25] = ACTIONS(2229), - [aux_sym_cmd_identifier_token26] = ACTIONS(2229), - [aux_sym_cmd_identifier_token27] = ACTIONS(2229), - [aux_sym_cmd_identifier_token28] = ACTIONS(2229), - [aux_sym_cmd_identifier_token29] = ACTIONS(2229), - [aux_sym_cmd_identifier_token30] = ACTIONS(2229), - [aux_sym_cmd_identifier_token31] = ACTIONS(2229), - [aux_sym_cmd_identifier_token32] = ACTIONS(2229), - [aux_sym_cmd_identifier_token33] = ACTIONS(2229), - [aux_sym_cmd_identifier_token34] = ACTIONS(2229), - [aux_sym_cmd_identifier_token35] = ACTIONS(2229), - [aux_sym_cmd_identifier_token36] = ACTIONS(2229), - [aux_sym_cmd_identifier_token37] = ACTIONS(2229), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2229), - [aux_sym_cmd_identifier_token40] = ACTIONS(2229), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_in2] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_make] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2229), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_catch] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2229), - [sym__str_single_quotes] = ACTIONS(2229), - [sym__str_back_ticks] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2229), - [sym__entry_separator] = ACTIONS(2233), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), - }, - [531] = { - [sym_comment] = STATE(531), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [aux_sym_cmd_identifier_token1] = ACTIONS(2237), - [aux_sym_cmd_identifier_token2] = ACTIONS(2237), - [aux_sym_cmd_identifier_token3] = ACTIONS(2237), - [aux_sym_cmd_identifier_token4] = ACTIONS(2237), - [aux_sym_cmd_identifier_token5] = ACTIONS(2237), - [aux_sym_cmd_identifier_token6] = ACTIONS(2237), - [aux_sym_cmd_identifier_token7] = ACTIONS(2237), - [aux_sym_cmd_identifier_token8] = ACTIONS(2237), - [aux_sym_cmd_identifier_token9] = ACTIONS(2237), - [aux_sym_cmd_identifier_token10] = ACTIONS(2237), - [aux_sym_cmd_identifier_token11] = ACTIONS(2237), - [aux_sym_cmd_identifier_token12] = ACTIONS(2237), - [aux_sym_cmd_identifier_token13] = ACTIONS(2237), - [aux_sym_cmd_identifier_token14] = ACTIONS(2237), - [aux_sym_cmd_identifier_token15] = ACTIONS(2237), - [aux_sym_cmd_identifier_token16] = ACTIONS(2237), - [aux_sym_cmd_identifier_token17] = ACTIONS(2237), - [aux_sym_cmd_identifier_token18] = ACTIONS(2237), - [aux_sym_cmd_identifier_token19] = ACTIONS(2237), - [aux_sym_cmd_identifier_token20] = ACTIONS(2237), - [aux_sym_cmd_identifier_token21] = ACTIONS(2237), - [aux_sym_cmd_identifier_token22] = ACTIONS(2237), - [aux_sym_cmd_identifier_token23] = ACTIONS(2237), - [aux_sym_cmd_identifier_token24] = ACTIONS(2237), - [aux_sym_cmd_identifier_token25] = ACTIONS(2237), - [aux_sym_cmd_identifier_token26] = ACTIONS(2237), - [aux_sym_cmd_identifier_token27] = ACTIONS(2237), - [aux_sym_cmd_identifier_token28] = ACTIONS(2237), - [aux_sym_cmd_identifier_token29] = ACTIONS(2237), - [aux_sym_cmd_identifier_token30] = ACTIONS(2237), - [aux_sym_cmd_identifier_token31] = ACTIONS(2237), - [aux_sym_cmd_identifier_token32] = ACTIONS(2237), - [aux_sym_cmd_identifier_token33] = ACTIONS(2237), - [aux_sym_cmd_identifier_token34] = ACTIONS(2237), - [aux_sym_cmd_identifier_token35] = ACTIONS(2237), - [aux_sym_cmd_identifier_token36] = ACTIONS(2237), - [aux_sym_cmd_identifier_token37] = ACTIONS(2237), - [aux_sym_cmd_identifier_token38] = ACTIONS(2237), - [aux_sym_cmd_identifier_token39] = ACTIONS(2237), - [aux_sym_cmd_identifier_token40] = ACTIONS(2237), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_make] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_catch] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [aux_sym__val_number_token4] = ACTIONS(2237), - [aux_sym__val_number_token5] = ACTIONS(2237), - [aux_sym__val_number_token6] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2237), - [sym__str_single_quotes] = ACTIONS(2237), - [sym__str_back_ticks] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2237), - [sym__entry_separator] = ACTIONS(2241), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2241), + [anon_sym_export] = ACTIONS(2039), + [anon_sym_alias] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_let_DASHenv] = ACTIONS(2039), + [anon_sym_mut] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [aux_sym_cmd_identifier_token1] = ACTIONS(2039), + [aux_sym_cmd_identifier_token2] = ACTIONS(2041), + [aux_sym_cmd_identifier_token3] = ACTIONS(2041), + [aux_sym_cmd_identifier_token4] = ACTIONS(2041), + [aux_sym_cmd_identifier_token5] = ACTIONS(2041), + [aux_sym_cmd_identifier_token6] = ACTIONS(2041), + [aux_sym_cmd_identifier_token7] = ACTIONS(2041), + [aux_sym_cmd_identifier_token8] = ACTIONS(2039), + [aux_sym_cmd_identifier_token9] = ACTIONS(2039), + [aux_sym_cmd_identifier_token10] = ACTIONS(2041), + [aux_sym_cmd_identifier_token11] = ACTIONS(2041), + [aux_sym_cmd_identifier_token12] = ACTIONS(2039), + [aux_sym_cmd_identifier_token13] = ACTIONS(2039), + [aux_sym_cmd_identifier_token14] = ACTIONS(2039), + [aux_sym_cmd_identifier_token15] = ACTIONS(2039), + [aux_sym_cmd_identifier_token16] = ACTIONS(2041), + [aux_sym_cmd_identifier_token17] = ACTIONS(2041), + [aux_sym_cmd_identifier_token18] = ACTIONS(2041), + [aux_sym_cmd_identifier_token19] = ACTIONS(2041), + [aux_sym_cmd_identifier_token20] = ACTIONS(2041), + [aux_sym_cmd_identifier_token21] = ACTIONS(2041), + [aux_sym_cmd_identifier_token22] = ACTIONS(2041), + [aux_sym_cmd_identifier_token23] = ACTIONS(2041), + [aux_sym_cmd_identifier_token24] = ACTIONS(2041), + [aux_sym_cmd_identifier_token25] = ACTIONS(2041), + [aux_sym_cmd_identifier_token26] = ACTIONS(2041), + [aux_sym_cmd_identifier_token27] = ACTIONS(2041), + [aux_sym_cmd_identifier_token28] = ACTIONS(2041), + [aux_sym_cmd_identifier_token29] = ACTIONS(2041), + [aux_sym_cmd_identifier_token30] = ACTIONS(2041), + [aux_sym_cmd_identifier_token31] = ACTIONS(2041), + [aux_sym_cmd_identifier_token32] = ACTIONS(2041), + [aux_sym_cmd_identifier_token33] = ACTIONS(2041), + [aux_sym_cmd_identifier_token34] = ACTIONS(2039), + [aux_sym_cmd_identifier_token35] = ACTIONS(2041), + [aux_sym_cmd_identifier_token36] = ACTIONS(2041), + [aux_sym_cmd_identifier_token37] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2039), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2039), + [anon_sym_export_DASHenv] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_module] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2039), + [anon_sym_DASH2] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_in2] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_make] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_source] = ACTIONS(2039), + [anon_sym_source_DASHenv] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_hide] = ACTIONS(2039), + [anon_sym_hide_DASHenv] = ACTIONS(2039), + [anon_sym_overlay] = ACTIONS(2039), + [anon_sym_as] = ACTIONS(2039), + [anon_sym_PLUS2] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), + [anon_sym_DOT_DOT2] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2039), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [aux_sym__val_number_token4] = ACTIONS(2039), + [aux_sym__val_number_token5] = ACTIONS(2039), + [aux_sym__val_number_token6] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2041), }, - [532] = { - [sym_comment] = STATE(532), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(2206), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2208), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2208), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1000), + [514] = { + [sym_comment] = STATE(514), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(2212), + [aux_sym__immediate_decimal_token2] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, - [533] = { - [sym_comment] = STATE(533), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [aux_sym_cmd_identifier_token1] = ACTIONS(2245), - [aux_sym_cmd_identifier_token2] = ACTIONS(2245), - [aux_sym_cmd_identifier_token3] = ACTIONS(2245), - [aux_sym_cmd_identifier_token4] = ACTIONS(2245), - [aux_sym_cmd_identifier_token5] = ACTIONS(2245), - [aux_sym_cmd_identifier_token6] = ACTIONS(2245), - [aux_sym_cmd_identifier_token7] = ACTIONS(2245), - [aux_sym_cmd_identifier_token8] = ACTIONS(2245), - [aux_sym_cmd_identifier_token9] = ACTIONS(2245), - [aux_sym_cmd_identifier_token10] = ACTIONS(2245), - [aux_sym_cmd_identifier_token11] = ACTIONS(2245), - [aux_sym_cmd_identifier_token12] = ACTIONS(2245), - [aux_sym_cmd_identifier_token13] = ACTIONS(2245), - [aux_sym_cmd_identifier_token14] = ACTIONS(2245), - [aux_sym_cmd_identifier_token15] = ACTIONS(2245), - [aux_sym_cmd_identifier_token16] = ACTIONS(2245), - [aux_sym_cmd_identifier_token17] = ACTIONS(2245), - [aux_sym_cmd_identifier_token18] = ACTIONS(2245), - [aux_sym_cmd_identifier_token19] = ACTIONS(2245), - [aux_sym_cmd_identifier_token20] = ACTIONS(2245), - [aux_sym_cmd_identifier_token21] = ACTIONS(2245), - [aux_sym_cmd_identifier_token22] = ACTIONS(2245), - [aux_sym_cmd_identifier_token23] = ACTIONS(2245), - [aux_sym_cmd_identifier_token24] = ACTIONS(2245), - [aux_sym_cmd_identifier_token25] = ACTIONS(2245), - [aux_sym_cmd_identifier_token26] = ACTIONS(2245), - [aux_sym_cmd_identifier_token27] = ACTIONS(2245), - [aux_sym_cmd_identifier_token28] = ACTIONS(2245), - [aux_sym_cmd_identifier_token29] = ACTIONS(2245), - [aux_sym_cmd_identifier_token30] = ACTIONS(2245), - [aux_sym_cmd_identifier_token31] = ACTIONS(2245), - [aux_sym_cmd_identifier_token32] = ACTIONS(2245), - [aux_sym_cmd_identifier_token33] = ACTIONS(2245), - [aux_sym_cmd_identifier_token34] = ACTIONS(2245), - [aux_sym_cmd_identifier_token35] = ACTIONS(2245), - [aux_sym_cmd_identifier_token36] = ACTIONS(2245), - [aux_sym_cmd_identifier_token37] = ACTIONS(2245), - [aux_sym_cmd_identifier_token38] = ACTIONS(2245), - [aux_sym_cmd_identifier_token39] = ACTIONS(2245), - [aux_sym_cmd_identifier_token40] = ACTIONS(2245), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_make] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_catch] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [aux_sym__val_number_token4] = ACTIONS(2245), - [aux_sym__val_number_token5] = ACTIONS(2245), - [aux_sym__val_number_token6] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2245), - [sym__str_single_quotes] = ACTIONS(2245), - [sym__str_back_ticks] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2245), - [sym__entry_separator] = ACTIONS(2247), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), + [515] = { + [sym_comment] = STATE(515), + [anon_sym_export] = ACTIONS(2216), + [anon_sym_alias] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_let_DASHenv] = ACTIONS(2216), + [anon_sym_mut] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [aux_sym_cmd_identifier_token1] = ACTIONS(2216), + [aux_sym_cmd_identifier_token2] = ACTIONS(2216), + [aux_sym_cmd_identifier_token3] = ACTIONS(2216), + [aux_sym_cmd_identifier_token4] = ACTIONS(2216), + [aux_sym_cmd_identifier_token5] = ACTIONS(2216), + [aux_sym_cmd_identifier_token6] = ACTIONS(2216), + [aux_sym_cmd_identifier_token7] = ACTIONS(2216), + [aux_sym_cmd_identifier_token8] = ACTIONS(2216), + [aux_sym_cmd_identifier_token9] = ACTIONS(2216), + [aux_sym_cmd_identifier_token10] = ACTIONS(2216), + [aux_sym_cmd_identifier_token11] = ACTIONS(2216), + [aux_sym_cmd_identifier_token12] = ACTIONS(2216), + [aux_sym_cmd_identifier_token13] = ACTIONS(2216), + [aux_sym_cmd_identifier_token14] = ACTIONS(2216), + [aux_sym_cmd_identifier_token15] = ACTIONS(2216), + [aux_sym_cmd_identifier_token16] = ACTIONS(2216), + [aux_sym_cmd_identifier_token17] = ACTIONS(2216), + [aux_sym_cmd_identifier_token18] = ACTIONS(2216), + [aux_sym_cmd_identifier_token19] = ACTIONS(2216), + [aux_sym_cmd_identifier_token20] = ACTIONS(2216), + [aux_sym_cmd_identifier_token21] = ACTIONS(2216), + [aux_sym_cmd_identifier_token22] = ACTIONS(2216), + [aux_sym_cmd_identifier_token23] = ACTIONS(2216), + [aux_sym_cmd_identifier_token24] = ACTIONS(2216), + [aux_sym_cmd_identifier_token25] = ACTIONS(2216), + [aux_sym_cmd_identifier_token26] = ACTIONS(2216), + [aux_sym_cmd_identifier_token27] = ACTIONS(2216), + [aux_sym_cmd_identifier_token28] = ACTIONS(2216), + [aux_sym_cmd_identifier_token29] = ACTIONS(2216), + [aux_sym_cmd_identifier_token30] = ACTIONS(2216), + [aux_sym_cmd_identifier_token31] = ACTIONS(2216), + [aux_sym_cmd_identifier_token32] = ACTIONS(2216), + [aux_sym_cmd_identifier_token33] = ACTIONS(2216), + [aux_sym_cmd_identifier_token34] = ACTIONS(2216), + [aux_sym_cmd_identifier_token35] = ACTIONS(2216), + [aux_sym_cmd_identifier_token36] = ACTIONS(2216), + [aux_sym_cmd_identifier_token37] = ACTIONS(2216), + [aux_sym_cmd_identifier_token38] = ACTIONS(2216), + [aux_sym_cmd_identifier_token39] = ACTIONS(2216), + [aux_sym_cmd_identifier_token40] = ACTIONS(2216), + [anon_sym_def] = ACTIONS(2216), + [anon_sym_export_DASHenv] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2216), + [anon_sym_module] = ACTIONS(2216), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_COMMA] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_error] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_in2] = ACTIONS(2216), + [anon_sym_loop] = ACTIONS(2216), + [anon_sym_make] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2216), + [anon_sym_do] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_else] = ACTIONS(2216), + [anon_sym_match] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2216), + [anon_sym_try] = ACTIONS(2216), + [anon_sym_catch] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_source] = ACTIONS(2216), + [anon_sym_source_DASHenv] = ACTIONS(2216), + [anon_sym_register] = ACTIONS(2216), + [anon_sym_hide] = ACTIONS(2216), + [anon_sym_hide_DASHenv] = ACTIONS(2216), + [anon_sym_overlay] = ACTIONS(2216), + [anon_sym_as] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2216), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2216), + [sym__str_single_quotes] = ACTIONS(2216), + [sym__str_back_ticks] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2216), + [sym__entry_separator] = ACTIONS(2218), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2216), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2247), + [sym_raw_string_begin] = ACTIONS(2218), }, - [534] = { - [sym_comment] = STATE(534), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [516] = { + [sym_comment] = STATE(516), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(2094), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [535] = { - [sym_comment] = STATE(535), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_let_DASHenv] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2144), - [aux_sym_cmd_identifier_token2] = ACTIONS(2150), - [aux_sym_cmd_identifier_token3] = ACTIONS(2150), - [aux_sym_cmd_identifier_token4] = ACTIONS(2150), - [aux_sym_cmd_identifier_token5] = ACTIONS(2150), - [aux_sym_cmd_identifier_token6] = ACTIONS(2150), - [aux_sym_cmd_identifier_token7] = ACTIONS(2150), - [aux_sym_cmd_identifier_token8] = ACTIONS(2144), - [aux_sym_cmd_identifier_token9] = ACTIONS(2144), - [aux_sym_cmd_identifier_token10] = ACTIONS(2150), - [aux_sym_cmd_identifier_token11] = ACTIONS(2150), - [aux_sym_cmd_identifier_token12] = ACTIONS(2144), - [aux_sym_cmd_identifier_token13] = ACTIONS(2144), - [aux_sym_cmd_identifier_token14] = ACTIONS(2144), - [aux_sym_cmd_identifier_token15] = ACTIONS(2144), - [aux_sym_cmd_identifier_token16] = ACTIONS(2150), - [aux_sym_cmd_identifier_token17] = ACTIONS(2150), - [aux_sym_cmd_identifier_token18] = ACTIONS(2150), - [aux_sym_cmd_identifier_token19] = ACTIONS(2150), - [aux_sym_cmd_identifier_token20] = ACTIONS(2150), - [aux_sym_cmd_identifier_token21] = ACTIONS(2150), - [aux_sym_cmd_identifier_token22] = ACTIONS(2150), - [aux_sym_cmd_identifier_token23] = ACTIONS(2150), - [aux_sym_cmd_identifier_token24] = ACTIONS(2150), - [aux_sym_cmd_identifier_token25] = ACTIONS(2150), - [aux_sym_cmd_identifier_token26] = ACTIONS(2150), - [aux_sym_cmd_identifier_token27] = ACTIONS(2150), - [aux_sym_cmd_identifier_token28] = ACTIONS(2150), - [aux_sym_cmd_identifier_token29] = ACTIONS(2150), - [aux_sym_cmd_identifier_token30] = ACTIONS(2150), - [aux_sym_cmd_identifier_token31] = ACTIONS(2150), - [aux_sym_cmd_identifier_token32] = ACTIONS(2150), - [aux_sym_cmd_identifier_token33] = ACTIONS(2150), - [aux_sym_cmd_identifier_token34] = ACTIONS(2144), - [aux_sym_cmd_identifier_token35] = ACTIONS(2150), - [aux_sym_cmd_identifier_token36] = ACTIONS(2150), - [aux_sym_cmd_identifier_token37] = ACTIONS(2150), - [aux_sym_cmd_identifier_token38] = ACTIONS(2144), - [aux_sym_cmd_identifier_token39] = ACTIONS(2150), - [aux_sym_cmd_identifier_token40] = ACTIONS(2150), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2150), - [anon_sym_error] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_make] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_source] = ACTIONS(2144), - [anon_sym_source_DASHenv] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_hide] = ACTIONS(2144), - [anon_sym_hide_DASHenv] = ACTIONS(2144), - [anon_sym_overlay] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2150), - [anon_sym_DOT_DOT2] = ACTIONS(2249), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2251), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2251), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2150), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2150), - [aux_sym__val_number_decimal_token3] = ACTIONS(2150), - [aux_sym__val_number_decimal_token4] = ACTIONS(2150), - [aux_sym__val_number_token1] = ACTIONS(2150), - [aux_sym__val_number_token2] = ACTIONS(2150), - [aux_sym__val_number_token3] = ACTIONS(2150), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2150), + [517] = { + [sym_comment] = STATE(517), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(2220), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [536] = { - [sym_comment] = STATE(536), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_alias] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_let_DASHenv] = ACTIONS(2152), - [anon_sym_mut] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [aux_sym_cmd_identifier_token1] = ACTIONS(2152), + [518] = { + [sym_comment] = STATE(518), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [519] = { + [sym_comment] = STATE(519), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), [aux_sym_cmd_identifier_token2] = ACTIONS(2158), [aux_sym_cmd_identifier_token3] = ACTIONS(2158), [aux_sym_cmd_identifier_token4] = ACTIONS(2158), [aux_sym_cmd_identifier_token5] = ACTIONS(2158), [aux_sym_cmd_identifier_token6] = ACTIONS(2158), [aux_sym_cmd_identifier_token7] = ACTIONS(2158), - [aux_sym_cmd_identifier_token8] = ACTIONS(2152), - [aux_sym_cmd_identifier_token9] = ACTIONS(2152), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), [aux_sym_cmd_identifier_token10] = ACTIONS(2158), [aux_sym_cmd_identifier_token11] = ACTIONS(2158), - [aux_sym_cmd_identifier_token12] = ACTIONS(2152), - [aux_sym_cmd_identifier_token13] = ACTIONS(2152), - [aux_sym_cmd_identifier_token14] = ACTIONS(2152), - [aux_sym_cmd_identifier_token15] = ACTIONS(2152), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), [aux_sym_cmd_identifier_token16] = ACTIONS(2158), [aux_sym_cmd_identifier_token17] = ACTIONS(2158), [aux_sym_cmd_identifier_token18] = ACTIONS(2158), @@ -138292,60 +136758,61 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2158), [aux_sym_cmd_identifier_token32] = ACTIONS(2158), [aux_sym_cmd_identifier_token33] = ACTIONS(2158), - [aux_sym_cmd_identifier_token34] = ACTIONS(2152), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), [aux_sym_cmd_identifier_token35] = ACTIONS(2158), [aux_sym_cmd_identifier_token36] = ACTIONS(2158), [aux_sym_cmd_identifier_token37] = ACTIONS(2158), - [aux_sym_cmd_identifier_token38] = ACTIONS(2152), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), [aux_sym_cmd_identifier_token39] = ACTIONS(2158), [aux_sym_cmd_identifier_token40] = ACTIONS(2158), - [anon_sym_def] = ACTIONS(2152), - [anon_sym_export_DASHenv] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_COMMA] = ACTIONS(2158), [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_error] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_in2] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_make] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in2] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_catch] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_source] = ACTIONS(2152), - [anon_sym_source_DASHenv] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_hide] = ACTIONS(2152), - [anon_sym_hide_DASHenv] = ACTIONS(2152), - [anon_sym_overlay] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2152), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(2156), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), - [anon_sym_DOT_DOT2] = ACTIONS(2253), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2255), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2255), + [anon_sym_DOT_DOT2] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2224), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2224), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), [aux_sym__val_number_decimal_token2] = ACTIONS(2158), [aux_sym__val_number_decimal_token3] = ACTIONS(2158), [aux_sym__val_number_decimal_token4] = ACTIONS(2158), [aux_sym__val_number_token1] = ACTIONS(2158), [aux_sym__val_number_token2] = ACTIONS(2158), [aux_sym__val_number_token3] = ACTIONS(2158), - [aux_sym__val_number_token4] = ACTIONS(2152), - [aux_sym__val_number_token5] = ACTIONS(2152), - [aux_sym__val_number_token6] = ACTIONS(2152), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), [anon_sym_DQUOTE] = ACTIONS(2158), [sym__str_single_quotes] = ACTIONS(2158), [sym__str_back_ticks] = ACTIONS(2158), @@ -138353,8 +136820,214 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2158), }, - [537] = { - [sym_comment] = STATE(537), + [520] = { + [sym_comment] = STATE(520), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(964), + [aux_sym_cmd_identifier_token3] = ACTIONS(964), + [aux_sym_cmd_identifier_token4] = ACTIONS(964), + [aux_sym_cmd_identifier_token5] = ACTIONS(964), + [aux_sym_cmd_identifier_token6] = ACTIONS(964), + [aux_sym_cmd_identifier_token7] = ACTIONS(964), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(964), + [aux_sym_cmd_identifier_token11] = ACTIONS(964), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(964), + [aux_sym_cmd_identifier_token17] = ACTIONS(964), + [aux_sym_cmd_identifier_token18] = ACTIONS(964), + [aux_sym_cmd_identifier_token19] = ACTIONS(964), + [aux_sym_cmd_identifier_token20] = ACTIONS(964), + [aux_sym_cmd_identifier_token21] = ACTIONS(964), + [aux_sym_cmd_identifier_token22] = ACTIONS(964), + [aux_sym_cmd_identifier_token23] = ACTIONS(964), + [aux_sym_cmd_identifier_token24] = ACTIONS(964), + [aux_sym_cmd_identifier_token25] = ACTIONS(964), + [aux_sym_cmd_identifier_token26] = ACTIONS(964), + [aux_sym_cmd_identifier_token27] = ACTIONS(964), + [aux_sym_cmd_identifier_token28] = ACTIONS(964), + [aux_sym_cmd_identifier_token29] = ACTIONS(964), + [aux_sym_cmd_identifier_token30] = ACTIONS(964), + [aux_sym_cmd_identifier_token31] = ACTIONS(964), + [aux_sym_cmd_identifier_token32] = ACTIONS(964), + [aux_sym_cmd_identifier_token33] = ACTIONS(964), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(964), + [aux_sym_cmd_identifier_token36] = ACTIONS(964), + [aux_sym_cmd_identifier_token37] = ACTIONS(964), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(964), + [aux_sym_cmd_identifier_token40] = ACTIONS(964), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(964), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(964), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(964), + [aux_sym__val_number_decimal_token3] = ACTIONS(964), + [aux_sym__val_number_decimal_token4] = ACTIONS(964), + [aux_sym__val_number_token1] = ACTIONS(964), + [aux_sym__val_number_token2] = ACTIONS(964), + [aux_sym__val_number_token3] = ACTIONS(964), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(964), + [sym__str_single_quotes] = ACTIONS(964), + [sym__str_back_ticks] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), + [sym__entry_separator] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(966), + }, + [521] = { + [sym_comment] = STATE(521), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_alias] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_let_DASHenv] = ACTIONS(2226), + [anon_sym_mut] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [aux_sym_cmd_identifier_token1] = ACTIONS(2226), + [aux_sym_cmd_identifier_token2] = ACTIONS(2226), + [aux_sym_cmd_identifier_token3] = ACTIONS(2226), + [aux_sym_cmd_identifier_token4] = ACTIONS(2226), + [aux_sym_cmd_identifier_token5] = ACTIONS(2226), + [aux_sym_cmd_identifier_token6] = ACTIONS(2226), + [aux_sym_cmd_identifier_token7] = ACTIONS(2226), + [aux_sym_cmd_identifier_token8] = ACTIONS(2226), + [aux_sym_cmd_identifier_token9] = ACTIONS(2226), + [aux_sym_cmd_identifier_token10] = ACTIONS(2226), + [aux_sym_cmd_identifier_token11] = ACTIONS(2226), + [aux_sym_cmd_identifier_token12] = ACTIONS(2226), + [aux_sym_cmd_identifier_token13] = ACTIONS(2226), + [aux_sym_cmd_identifier_token14] = ACTIONS(2226), + [aux_sym_cmd_identifier_token15] = ACTIONS(2226), + [aux_sym_cmd_identifier_token16] = ACTIONS(2226), + [aux_sym_cmd_identifier_token17] = ACTIONS(2226), + [aux_sym_cmd_identifier_token18] = ACTIONS(2226), + [aux_sym_cmd_identifier_token19] = ACTIONS(2226), + [aux_sym_cmd_identifier_token20] = ACTIONS(2226), + [aux_sym_cmd_identifier_token21] = ACTIONS(2226), + [aux_sym_cmd_identifier_token22] = ACTIONS(2226), + [aux_sym_cmd_identifier_token23] = ACTIONS(2226), + [aux_sym_cmd_identifier_token24] = ACTIONS(2226), + [aux_sym_cmd_identifier_token25] = ACTIONS(2226), + [aux_sym_cmd_identifier_token26] = ACTIONS(2226), + [aux_sym_cmd_identifier_token27] = ACTIONS(2226), + [aux_sym_cmd_identifier_token28] = ACTIONS(2226), + [aux_sym_cmd_identifier_token29] = ACTIONS(2226), + [aux_sym_cmd_identifier_token30] = ACTIONS(2226), + [aux_sym_cmd_identifier_token31] = ACTIONS(2226), + [aux_sym_cmd_identifier_token32] = ACTIONS(2226), + [aux_sym_cmd_identifier_token33] = ACTIONS(2226), + [aux_sym_cmd_identifier_token34] = ACTIONS(2226), + [aux_sym_cmd_identifier_token35] = ACTIONS(2226), + [aux_sym_cmd_identifier_token36] = ACTIONS(2226), + [aux_sym_cmd_identifier_token37] = ACTIONS(2226), + [aux_sym_cmd_identifier_token38] = ACTIONS(2226), + [aux_sym_cmd_identifier_token39] = ACTIONS(2226), + [aux_sym_cmd_identifier_token40] = ACTIONS(2226), + [anon_sym_def] = ACTIONS(2226), + [anon_sym_export_DASHenv] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_error] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_in2] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_make] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2226), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_catch] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_source] = ACTIONS(2226), + [anon_sym_source_DASHenv] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_hide] = ACTIONS(2226), + [anon_sym_hide_DASHenv] = ACTIONS(2226), + [anon_sym_overlay] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2226), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [aux_sym__val_number_decimal_token2] = ACTIONS(2226), + [aux_sym__val_number_decimal_token3] = ACTIONS(2226), + [aux_sym__val_number_decimal_token4] = ACTIONS(2226), + [aux_sym__val_number_token1] = ACTIONS(2226), + [aux_sym__val_number_token2] = ACTIONS(2226), + [aux_sym__val_number_token3] = ACTIONS(2226), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2226), + [sym__str_single_quotes] = ACTIONS(2226), + [sym__str_back_ticks] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2226), + [sym__entry_separator] = ACTIONS(2230), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2230), + }, + [522] = { + [sym_comment] = STATE(522), [anon_sym_export] = ACTIONS(2160), [anon_sym_alias] = ACTIONS(2160), [anon_sym_let] = ACTIONS(2160), @@ -138362,20 +137035,123 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2160), [anon_sym_const] = ACTIONS(2160), [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2162), + [aux_sym_cmd_identifier_token3] = ACTIONS(2162), + [aux_sym_cmd_identifier_token4] = ACTIONS(2162), + [aux_sym_cmd_identifier_token5] = ACTIONS(2162), + [aux_sym_cmd_identifier_token6] = ACTIONS(2162), + [aux_sym_cmd_identifier_token7] = ACTIONS(2162), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2162), + [aux_sym_cmd_identifier_token11] = ACTIONS(2162), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2162), + [aux_sym_cmd_identifier_token17] = ACTIONS(2162), + [aux_sym_cmd_identifier_token18] = ACTIONS(2162), + [aux_sym_cmd_identifier_token19] = ACTIONS(2162), + [aux_sym_cmd_identifier_token20] = ACTIONS(2162), + [aux_sym_cmd_identifier_token21] = ACTIONS(2162), + [aux_sym_cmd_identifier_token22] = ACTIONS(2162), + [aux_sym_cmd_identifier_token23] = ACTIONS(2162), + [aux_sym_cmd_identifier_token24] = ACTIONS(2162), + [aux_sym_cmd_identifier_token25] = ACTIONS(2162), + [aux_sym_cmd_identifier_token26] = ACTIONS(2162), + [aux_sym_cmd_identifier_token27] = ACTIONS(2162), + [aux_sym_cmd_identifier_token28] = ACTIONS(2162), + [aux_sym_cmd_identifier_token29] = ACTIONS(2162), + [aux_sym_cmd_identifier_token30] = ACTIONS(2162), + [aux_sym_cmd_identifier_token31] = ACTIONS(2162), + [aux_sym_cmd_identifier_token32] = ACTIONS(2162), + [aux_sym_cmd_identifier_token33] = ACTIONS(2162), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2162), + [aux_sym_cmd_identifier_token36] = ACTIONS(2162), + [aux_sym_cmd_identifier_token37] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [anon_sym_def] = ACTIONS(2160), + [anon_sym_export_DASHenv] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_in2] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_make] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_source] = ACTIONS(2160), + [anon_sym_source_DASHenv] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_hide] = ACTIONS(2160), + [anon_sym_hide_DASHenv] = ACTIONS(2160), + [anon_sym_overlay] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2162), + [anon_sym_DOT_DOT2] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2224), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2160), + [aux_sym__val_number_token5] = ACTIONS(2160), + [aux_sym__val_number_token6] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym__str_single_quotes] = ACTIONS(2162), + [sym__str_back_ticks] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2162), + }, + [523] = { + [sym_comment] = STATE(523), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), [aux_sym_cmd_identifier_token2] = ACTIONS(2166), [aux_sym_cmd_identifier_token3] = ACTIONS(2166), [aux_sym_cmd_identifier_token4] = ACTIONS(2166), [aux_sym_cmd_identifier_token5] = ACTIONS(2166), [aux_sym_cmd_identifier_token6] = ACTIONS(2166), [aux_sym_cmd_identifier_token7] = ACTIONS(2166), - [aux_sym_cmd_identifier_token8] = ACTIONS(2160), - [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), [aux_sym_cmd_identifier_token10] = ACTIONS(2166), [aux_sym_cmd_identifier_token11] = ACTIONS(2166), - [aux_sym_cmd_identifier_token12] = ACTIONS(2160), - [aux_sym_cmd_identifier_token13] = ACTIONS(2160), - [aux_sym_cmd_identifier_token14] = ACTIONS(2160), - [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), [aux_sym_cmd_identifier_token16] = ACTIONS(2166), [aux_sym_cmd_identifier_token17] = ACTIONS(2166), [aux_sym_cmd_identifier_token18] = ACTIONS(2166), @@ -138394,20 +137170,537 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2166), [aux_sym_cmd_identifier_token32] = ACTIONS(2166), [aux_sym_cmd_identifier_token33] = ACTIONS(2166), - [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), [aux_sym_cmd_identifier_token35] = ACTIONS(2166), [aux_sym_cmd_identifier_token36] = ACTIONS(2166), [aux_sym_cmd_identifier_token37] = ACTIONS(2166), - [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), [aux_sym_cmd_identifier_token39] = ACTIONS(2166), [aux_sym_cmd_identifier_token40] = ACTIONS(2166), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), + [anon_sym_DOT_DOT2] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2224), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2166), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2166), + [aux_sym__val_number_decimal_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token4] = ACTIONS(2166), + [aux_sym__val_number_token1] = ACTIONS(2166), + [aux_sym__val_number_token2] = ACTIONS(2166), + [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [524] = { + [sym_comment] = STATE(524), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2065), + [aux_sym_cmd_identifier_token4] = ACTIONS(2065), + [aux_sym_cmd_identifier_token5] = ACTIONS(2065), + [aux_sym_cmd_identifier_token6] = ACTIONS(2065), + [aux_sym_cmd_identifier_token7] = ACTIONS(2065), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2065), + [aux_sym_cmd_identifier_token11] = ACTIONS(2065), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2065), + [aux_sym_cmd_identifier_token17] = ACTIONS(2065), + [aux_sym_cmd_identifier_token18] = ACTIONS(2065), + [aux_sym_cmd_identifier_token19] = ACTIONS(2065), + [aux_sym_cmd_identifier_token20] = ACTIONS(2065), + [aux_sym_cmd_identifier_token21] = ACTIONS(2065), + [aux_sym_cmd_identifier_token22] = ACTIONS(2065), + [aux_sym_cmd_identifier_token23] = ACTIONS(2065), + [aux_sym_cmd_identifier_token24] = ACTIONS(2065), + [aux_sym_cmd_identifier_token25] = ACTIONS(2065), + [aux_sym_cmd_identifier_token26] = ACTIONS(2065), + [aux_sym_cmd_identifier_token27] = ACTIONS(2065), + [aux_sym_cmd_identifier_token28] = ACTIONS(2065), + [aux_sym_cmd_identifier_token29] = ACTIONS(2065), + [aux_sym_cmd_identifier_token30] = ACTIONS(2065), + [aux_sym_cmd_identifier_token31] = ACTIONS(2065), + [aux_sym_cmd_identifier_token32] = ACTIONS(2065), + [aux_sym_cmd_identifier_token33] = ACTIONS(2065), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2065), + [aux_sym_cmd_identifier_token36] = ACTIONS(2065), + [aux_sym_cmd_identifier_token37] = ACTIONS(2065), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2065), + [aux_sym_cmd_identifier_token40] = ACTIONS(2065), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_DASH2] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in2] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_PLUS2] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), + [anon_sym_DOT_DOT2] = ACTIONS(2234), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2236), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2236), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2059), + [aux_sym__val_number_token5] = ACTIONS(2059), + [aux_sym__val_number_token6] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2065), + }, + [525] = { + [sym_comment] = STATE(525), + [anon_sym_export] = ACTIONS(964), + [anon_sym_alias] = ACTIONS(964), + [anon_sym_let] = ACTIONS(964), + [anon_sym_let_DASHenv] = ACTIONS(964), + [anon_sym_mut] = ACTIONS(964), + [anon_sym_const] = ACTIONS(964), + [aux_sym_cmd_identifier_token1] = ACTIONS(964), + [aux_sym_cmd_identifier_token2] = ACTIONS(966), + [aux_sym_cmd_identifier_token3] = ACTIONS(966), + [aux_sym_cmd_identifier_token4] = ACTIONS(966), + [aux_sym_cmd_identifier_token5] = ACTIONS(966), + [aux_sym_cmd_identifier_token6] = ACTIONS(966), + [aux_sym_cmd_identifier_token7] = ACTIONS(966), + [aux_sym_cmd_identifier_token8] = ACTIONS(964), + [aux_sym_cmd_identifier_token9] = ACTIONS(964), + [aux_sym_cmd_identifier_token10] = ACTIONS(966), + [aux_sym_cmd_identifier_token11] = ACTIONS(966), + [aux_sym_cmd_identifier_token12] = ACTIONS(964), + [aux_sym_cmd_identifier_token13] = ACTIONS(964), + [aux_sym_cmd_identifier_token14] = ACTIONS(964), + [aux_sym_cmd_identifier_token15] = ACTIONS(964), + [aux_sym_cmd_identifier_token16] = ACTIONS(966), + [aux_sym_cmd_identifier_token17] = ACTIONS(966), + [aux_sym_cmd_identifier_token18] = ACTIONS(966), + [aux_sym_cmd_identifier_token19] = ACTIONS(966), + [aux_sym_cmd_identifier_token20] = ACTIONS(966), + [aux_sym_cmd_identifier_token21] = ACTIONS(966), + [aux_sym_cmd_identifier_token22] = ACTIONS(966), + [aux_sym_cmd_identifier_token23] = ACTIONS(966), + [aux_sym_cmd_identifier_token24] = ACTIONS(966), + [aux_sym_cmd_identifier_token25] = ACTIONS(966), + [aux_sym_cmd_identifier_token26] = ACTIONS(966), + [aux_sym_cmd_identifier_token27] = ACTIONS(966), + [aux_sym_cmd_identifier_token28] = ACTIONS(966), + [aux_sym_cmd_identifier_token29] = ACTIONS(966), + [aux_sym_cmd_identifier_token30] = ACTIONS(966), + [aux_sym_cmd_identifier_token31] = ACTIONS(966), + [aux_sym_cmd_identifier_token32] = ACTIONS(966), + [aux_sym_cmd_identifier_token33] = ACTIONS(966), + [aux_sym_cmd_identifier_token34] = ACTIONS(964), + [aux_sym_cmd_identifier_token35] = ACTIONS(966), + [aux_sym_cmd_identifier_token36] = ACTIONS(966), + [aux_sym_cmd_identifier_token37] = ACTIONS(966), + [aux_sym_cmd_identifier_token38] = ACTIONS(964), + [aux_sym_cmd_identifier_token39] = ACTIONS(966), + [aux_sym_cmd_identifier_token40] = ACTIONS(966), + [anon_sym_def] = ACTIONS(964), + [anon_sym_export_DASHenv] = ACTIONS(964), + [anon_sym_extern] = ACTIONS(964), + [anon_sym_module] = ACTIONS(964), + [anon_sym_use] = ACTIONS(964), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(966), + [anon_sym_error] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_break] = ACTIONS(964), + [anon_sym_continue] = ACTIONS(964), + [anon_sym_for] = ACTIONS(964), + [anon_sym_in2] = ACTIONS(964), + [anon_sym_loop] = ACTIONS(964), + [anon_sym_make] = ACTIONS(964), + [anon_sym_while] = ACTIONS(964), + [anon_sym_do] = ACTIONS(964), + [anon_sym_if] = ACTIONS(964), + [anon_sym_else] = ACTIONS(964), + [anon_sym_match] = ACTIONS(964), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_try] = ACTIONS(964), + [anon_sym_catch] = ACTIONS(964), + [anon_sym_return] = ACTIONS(964), + [anon_sym_source] = ACTIONS(964), + [anon_sym_source_DASHenv] = ACTIONS(964), + [anon_sym_register] = ACTIONS(964), + [anon_sym_hide] = ACTIONS(964), + [anon_sym_hide_DASHenv] = ACTIONS(964), + [anon_sym_overlay] = ACTIONS(964), + [anon_sym_as] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(964), + [aux_sym__val_number_token5] = ACTIONS(964), + [aux_sym__val_number_token6] = ACTIONS(964), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(966), + }, + [526] = { + [sym__expr_parenthesized_immediate] = STATE(7277), + [sym_comment] = STATE(526), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [aux_sym_cmd_identifier_token37] = ACTIONS(2156), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2156), + [aux_sym_cmd_identifier_token40] = ACTIONS(2156), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in2] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), + [sym__entry_separator] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2158), + }, + [527] = { + [sym_comment] = STATE(527), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [528] = { + [sym__expr_parenthesized_immediate] = STATE(7277), + [sym_comment] = STATE(528), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_alias] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_let_DASHenv] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2160), + [aux_sym_cmd_identifier_token3] = ACTIONS(2160), + [aux_sym_cmd_identifier_token4] = ACTIONS(2160), + [aux_sym_cmd_identifier_token5] = ACTIONS(2160), + [aux_sym_cmd_identifier_token6] = ACTIONS(2160), + [aux_sym_cmd_identifier_token7] = ACTIONS(2160), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2160), + [aux_sym_cmd_identifier_token11] = ACTIONS(2160), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2160), + [aux_sym_cmd_identifier_token17] = ACTIONS(2160), + [aux_sym_cmd_identifier_token18] = ACTIONS(2160), + [aux_sym_cmd_identifier_token19] = ACTIONS(2160), + [aux_sym_cmd_identifier_token20] = ACTIONS(2160), + [aux_sym_cmd_identifier_token21] = ACTIONS(2160), + [aux_sym_cmd_identifier_token22] = ACTIONS(2160), + [aux_sym_cmd_identifier_token23] = ACTIONS(2160), + [aux_sym_cmd_identifier_token24] = ACTIONS(2160), + [aux_sym_cmd_identifier_token25] = ACTIONS(2160), + [aux_sym_cmd_identifier_token26] = ACTIONS(2160), + [aux_sym_cmd_identifier_token27] = ACTIONS(2160), + [aux_sym_cmd_identifier_token28] = ACTIONS(2160), + [aux_sym_cmd_identifier_token29] = ACTIONS(2160), + [aux_sym_cmd_identifier_token30] = ACTIONS(2160), + [aux_sym_cmd_identifier_token31] = ACTIONS(2160), + [aux_sym_cmd_identifier_token32] = ACTIONS(2160), + [aux_sym_cmd_identifier_token33] = ACTIONS(2160), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2160), + [aux_sym_cmd_identifier_token36] = ACTIONS(2160), + [aux_sym_cmd_identifier_token37] = ACTIONS(2160), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2160), + [aux_sym_cmd_identifier_token40] = ACTIONS(2160), [anon_sym_def] = ACTIONS(2160), [anon_sym_export_DASHenv] = ACTIONS(2160), [anon_sym_extern] = ACTIONS(2160), [anon_sym_module] = ACTIONS(2160), [anon_sym_use] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(2160), [anon_sym_error] = ACTIONS(2160), [anon_sym_DASH2] = ACTIONS(2160), [anon_sym_break] = ACTIONS(2160), @@ -138421,7 +137714,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2160), [anon_sym_else] = ACTIONS(2160), [anon_sym_match] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_RBRACE] = ACTIONS(2160), [anon_sym_try] = ACTIONS(2160), [anon_sym_catch] = ACTIONS(2160), [anon_sym_return] = ACTIONS(2160), @@ -138432,133 +137725,545 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(2160), [anon_sym_overlay] = ACTIONS(2160), [anon_sym_as] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(1665), [anon_sym_PLUS2] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), - [anon_sym_DOT_DOT2] = ACTIONS(2257), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2259), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2259), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2160), [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2166), - [aux_sym__val_number_decimal_token3] = ACTIONS(2166), - [aux_sym__val_number_decimal_token4] = ACTIONS(2166), - [aux_sym__val_number_token1] = ACTIONS(2166), - [aux_sym__val_number_token2] = ACTIONS(2166), - [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token2] = ACTIONS(2160), + [aux_sym__val_number_decimal_token3] = ACTIONS(2160), + [aux_sym__val_number_decimal_token4] = ACTIONS(2160), + [aux_sym__val_number_token1] = ACTIONS(2160), + [aux_sym__val_number_token2] = ACTIONS(2160), + [aux_sym__val_number_token3] = ACTIONS(2160), [aux_sym__val_number_token4] = ACTIONS(2160), [aux_sym__val_number_token5] = ACTIONS(2160), [aux_sym__val_number_token6] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2166), - [sym__str_single_quotes] = ACTIONS(2166), - [sym__str_back_ticks] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), + [anon_sym_DQUOTE] = ACTIONS(2160), + [sym__str_single_quotes] = ACTIONS(2160), + [sym__str_back_ticks] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2160), + [sym__entry_separator] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2162), + }, + [529] = { + [sym_comment] = STATE(529), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1819), + [aux_sym_cmd_identifier_token3] = ACTIONS(1819), + [aux_sym_cmd_identifier_token4] = ACTIONS(1819), + [aux_sym_cmd_identifier_token5] = ACTIONS(1819), + [aux_sym_cmd_identifier_token6] = ACTIONS(1819), + [aux_sym_cmd_identifier_token7] = ACTIONS(1819), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1819), + [aux_sym_cmd_identifier_token11] = ACTIONS(1819), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1819), + [aux_sym_cmd_identifier_token17] = ACTIONS(1819), + [aux_sym_cmd_identifier_token18] = ACTIONS(1819), + [aux_sym_cmd_identifier_token19] = ACTIONS(1819), + [aux_sym_cmd_identifier_token20] = ACTIONS(1819), + [aux_sym_cmd_identifier_token21] = ACTIONS(1819), + [aux_sym_cmd_identifier_token22] = ACTIONS(1819), + [aux_sym_cmd_identifier_token23] = ACTIONS(1819), + [aux_sym_cmd_identifier_token24] = ACTIONS(1819), + [aux_sym_cmd_identifier_token25] = ACTIONS(1819), + [aux_sym_cmd_identifier_token26] = ACTIONS(1819), + [aux_sym_cmd_identifier_token27] = ACTIONS(1819), + [aux_sym_cmd_identifier_token28] = ACTIONS(1819), + [aux_sym_cmd_identifier_token29] = ACTIONS(1819), + [aux_sym_cmd_identifier_token30] = ACTIONS(1819), + [aux_sym_cmd_identifier_token31] = ACTIONS(1819), + [aux_sym_cmd_identifier_token32] = ACTIONS(1819), + [aux_sym_cmd_identifier_token33] = ACTIONS(1819), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1819), + [aux_sym_cmd_identifier_token36] = ACTIONS(1819), + [aux_sym_cmd_identifier_token37] = ACTIONS(1819), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1819), + [aux_sym_cmd_identifier_token40] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [530] = { + [sym_comment] = STATE(530), + [anon_sym_export] = ACTIONS(968), + [anon_sym_alias] = ACTIONS(968), + [anon_sym_let] = ACTIONS(968), + [anon_sym_let_DASHenv] = ACTIONS(968), + [anon_sym_mut] = ACTIONS(968), + [anon_sym_const] = ACTIONS(968), + [aux_sym_cmd_identifier_token1] = ACTIONS(968), + [aux_sym_cmd_identifier_token2] = ACTIONS(970), + [aux_sym_cmd_identifier_token3] = ACTIONS(970), + [aux_sym_cmd_identifier_token4] = ACTIONS(970), + [aux_sym_cmd_identifier_token5] = ACTIONS(970), + [aux_sym_cmd_identifier_token6] = ACTIONS(970), + [aux_sym_cmd_identifier_token7] = ACTIONS(970), + [aux_sym_cmd_identifier_token8] = ACTIONS(968), + [aux_sym_cmd_identifier_token9] = ACTIONS(968), + [aux_sym_cmd_identifier_token10] = ACTIONS(970), + [aux_sym_cmd_identifier_token11] = ACTIONS(970), + [aux_sym_cmd_identifier_token12] = ACTIONS(968), + [aux_sym_cmd_identifier_token13] = ACTIONS(968), + [aux_sym_cmd_identifier_token14] = ACTIONS(968), + [aux_sym_cmd_identifier_token15] = ACTIONS(968), + [aux_sym_cmd_identifier_token16] = ACTIONS(970), + [aux_sym_cmd_identifier_token17] = ACTIONS(970), + [aux_sym_cmd_identifier_token18] = ACTIONS(970), + [aux_sym_cmd_identifier_token19] = ACTIONS(970), + [aux_sym_cmd_identifier_token20] = ACTIONS(970), + [aux_sym_cmd_identifier_token21] = ACTIONS(970), + [aux_sym_cmd_identifier_token22] = ACTIONS(970), + [aux_sym_cmd_identifier_token23] = ACTIONS(970), + [aux_sym_cmd_identifier_token24] = ACTIONS(970), + [aux_sym_cmd_identifier_token25] = ACTIONS(970), + [aux_sym_cmd_identifier_token26] = ACTIONS(970), + [aux_sym_cmd_identifier_token27] = ACTIONS(970), + [aux_sym_cmd_identifier_token28] = ACTIONS(970), + [aux_sym_cmd_identifier_token29] = ACTIONS(970), + [aux_sym_cmd_identifier_token30] = ACTIONS(970), + [aux_sym_cmd_identifier_token31] = ACTIONS(970), + [aux_sym_cmd_identifier_token32] = ACTIONS(970), + [aux_sym_cmd_identifier_token33] = ACTIONS(970), + [aux_sym_cmd_identifier_token34] = ACTIONS(968), + [aux_sym_cmd_identifier_token35] = ACTIONS(970), + [aux_sym_cmd_identifier_token36] = ACTIONS(970), + [aux_sym_cmd_identifier_token37] = ACTIONS(970), + [aux_sym_cmd_identifier_token38] = ACTIONS(968), + [aux_sym_cmd_identifier_token39] = ACTIONS(970), + [aux_sym_cmd_identifier_token40] = ACTIONS(970), + [anon_sym_def] = ACTIONS(968), + [anon_sym_export_DASHenv] = ACTIONS(968), + [anon_sym_extern] = ACTIONS(968), + [anon_sym_module] = ACTIONS(968), + [anon_sym_use] = ACTIONS(968), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(970), + [anon_sym_error] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_break] = ACTIONS(968), + [anon_sym_continue] = ACTIONS(968), + [anon_sym_for] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(968), + [anon_sym_loop] = ACTIONS(968), + [anon_sym_make] = ACTIONS(968), + [anon_sym_while] = ACTIONS(968), + [anon_sym_do] = ACTIONS(968), + [anon_sym_if] = ACTIONS(968), + [anon_sym_else] = ACTIONS(968), + [anon_sym_match] = ACTIONS(968), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_try] = ACTIONS(968), + [anon_sym_catch] = ACTIONS(968), + [anon_sym_return] = ACTIONS(968), + [anon_sym_source] = ACTIONS(968), + [anon_sym_source_DASHenv] = ACTIONS(968), + [anon_sym_register] = ACTIONS(968), + [anon_sym_hide] = ACTIONS(968), + [anon_sym_hide_DASHenv] = ACTIONS(968), + [anon_sym_overlay] = ACTIONS(968), + [anon_sym_as] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [aux_sym__val_number_token4] = ACTIONS(968), + [aux_sym__val_number_token5] = ACTIONS(968), + [aux_sym__val_number_token6] = ACTIONS(968), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), + [anon_sym_COLON2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(970), + }, + [531] = { + [sym__expr_parenthesized_immediate] = STATE(7277), + [sym_comment] = STATE(531), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2164), + [aux_sym_cmd_identifier_token3] = ACTIONS(2164), + [aux_sym_cmd_identifier_token4] = ACTIONS(2164), + [aux_sym_cmd_identifier_token5] = ACTIONS(2164), + [aux_sym_cmd_identifier_token6] = ACTIONS(2164), + [aux_sym_cmd_identifier_token7] = ACTIONS(2164), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2164), + [aux_sym_cmd_identifier_token11] = ACTIONS(2164), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2164), + [aux_sym_cmd_identifier_token17] = ACTIONS(2164), + [aux_sym_cmd_identifier_token18] = ACTIONS(2164), + [aux_sym_cmd_identifier_token19] = ACTIONS(2164), + [aux_sym_cmd_identifier_token20] = ACTIONS(2164), + [aux_sym_cmd_identifier_token21] = ACTIONS(2164), + [aux_sym_cmd_identifier_token22] = ACTIONS(2164), + [aux_sym_cmd_identifier_token23] = ACTIONS(2164), + [aux_sym_cmd_identifier_token24] = ACTIONS(2164), + [aux_sym_cmd_identifier_token25] = ACTIONS(2164), + [aux_sym_cmd_identifier_token26] = ACTIONS(2164), + [aux_sym_cmd_identifier_token27] = ACTIONS(2164), + [aux_sym_cmd_identifier_token28] = ACTIONS(2164), + [aux_sym_cmd_identifier_token29] = ACTIONS(2164), + [aux_sym_cmd_identifier_token30] = ACTIONS(2164), + [aux_sym_cmd_identifier_token31] = ACTIONS(2164), + [aux_sym_cmd_identifier_token32] = ACTIONS(2164), + [aux_sym_cmd_identifier_token33] = ACTIONS(2164), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2164), + [aux_sym_cmd_identifier_token36] = ACTIONS(2164), + [aux_sym_cmd_identifier_token37] = ACTIONS(2164), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2164), + [sym__entry_separator] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2166), }, - [538] = { - [sym_comment] = STATE(538), - [anon_sym_export] = ACTIONS(2170), - [anon_sym_alias] = ACTIONS(2170), - [anon_sym_let] = ACTIONS(2170), - [anon_sym_let_DASHenv] = ACTIONS(2170), - [anon_sym_mut] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [aux_sym_cmd_identifier_token1] = ACTIONS(2170), - [aux_sym_cmd_identifier_token2] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [aux_sym_cmd_identifier_token6] = ACTIONS(2176), - [aux_sym_cmd_identifier_token7] = ACTIONS(2176), - [aux_sym_cmd_identifier_token8] = ACTIONS(2170), - [aux_sym_cmd_identifier_token9] = ACTIONS(2170), - [aux_sym_cmd_identifier_token10] = ACTIONS(2176), - [aux_sym_cmd_identifier_token11] = ACTIONS(2176), - [aux_sym_cmd_identifier_token12] = ACTIONS(2170), - [aux_sym_cmd_identifier_token13] = ACTIONS(2170), - [aux_sym_cmd_identifier_token14] = ACTIONS(2170), - [aux_sym_cmd_identifier_token15] = ACTIONS(2170), - [aux_sym_cmd_identifier_token16] = ACTIONS(2176), - [aux_sym_cmd_identifier_token17] = ACTIONS(2176), - [aux_sym_cmd_identifier_token18] = ACTIONS(2176), - [aux_sym_cmd_identifier_token19] = ACTIONS(2176), - [aux_sym_cmd_identifier_token20] = ACTIONS(2176), - [aux_sym_cmd_identifier_token21] = ACTIONS(2176), - [aux_sym_cmd_identifier_token22] = ACTIONS(2176), - [aux_sym_cmd_identifier_token23] = ACTIONS(2176), - [aux_sym_cmd_identifier_token24] = ACTIONS(2176), - [aux_sym_cmd_identifier_token25] = ACTIONS(2176), - [aux_sym_cmd_identifier_token26] = ACTIONS(2176), - [aux_sym_cmd_identifier_token27] = ACTIONS(2176), - [aux_sym_cmd_identifier_token28] = ACTIONS(2176), - [aux_sym_cmd_identifier_token29] = ACTIONS(2176), - [aux_sym_cmd_identifier_token30] = ACTIONS(2176), - [aux_sym_cmd_identifier_token31] = ACTIONS(2176), - [aux_sym_cmd_identifier_token32] = ACTIONS(2176), - [aux_sym_cmd_identifier_token33] = ACTIONS(2176), - [aux_sym_cmd_identifier_token34] = ACTIONS(2170), - [aux_sym_cmd_identifier_token35] = ACTIONS(2176), - [aux_sym_cmd_identifier_token36] = ACTIONS(2176), - [aux_sym_cmd_identifier_token37] = ACTIONS(2176), - [aux_sym_cmd_identifier_token38] = ACTIONS(2170), - [aux_sym_cmd_identifier_token39] = ACTIONS(2176), - [aux_sym_cmd_identifier_token40] = ACTIONS(2176), - [anon_sym_def] = ACTIONS(2170), - [anon_sym_export_DASHenv] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_module] = ACTIONS(2170), - [anon_sym_use] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2176), - [anon_sym_error] = ACTIONS(2170), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_in2] = ACTIONS(2170), - [anon_sym_loop] = ACTIONS(2170), - [anon_sym_make] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_source] = ACTIONS(2170), - [anon_sym_source_DASHenv] = ACTIONS(2170), - [anon_sym_register] = ACTIONS(2170), - [anon_sym_hide] = ACTIONS(2170), - [anon_sym_hide_DASHenv] = ACTIONS(2170), - [anon_sym_overlay] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2176), - [anon_sym_DOT_DOT2] = ACTIONS(2261), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2263), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2263), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2170), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2170), - [aux_sym__val_number_token5] = ACTIONS(2170), - [aux_sym__val_number_token6] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2176), + [532] = { + [sym_comment] = STATE(532), + [anon_sym_export] = ACTIONS(2043), + [anon_sym_alias] = ACTIONS(2043), + [anon_sym_let] = ACTIONS(2043), + [anon_sym_let_DASHenv] = ACTIONS(2043), + [anon_sym_mut] = ACTIONS(2043), + [anon_sym_const] = ACTIONS(2043), + [aux_sym_cmd_identifier_token1] = ACTIONS(2043), + [aux_sym_cmd_identifier_token2] = ACTIONS(2045), + [aux_sym_cmd_identifier_token3] = ACTIONS(2045), + [aux_sym_cmd_identifier_token4] = ACTIONS(2045), + [aux_sym_cmd_identifier_token5] = ACTIONS(2045), + [aux_sym_cmd_identifier_token6] = ACTIONS(2045), + [aux_sym_cmd_identifier_token7] = ACTIONS(2045), + [aux_sym_cmd_identifier_token8] = ACTIONS(2043), + [aux_sym_cmd_identifier_token9] = ACTIONS(2043), + [aux_sym_cmd_identifier_token10] = ACTIONS(2045), + [aux_sym_cmd_identifier_token11] = ACTIONS(2045), + [aux_sym_cmd_identifier_token12] = ACTIONS(2043), + [aux_sym_cmd_identifier_token13] = ACTIONS(2043), + [aux_sym_cmd_identifier_token14] = ACTIONS(2043), + [aux_sym_cmd_identifier_token15] = ACTIONS(2043), + [aux_sym_cmd_identifier_token16] = ACTIONS(2045), + [aux_sym_cmd_identifier_token17] = ACTIONS(2045), + [aux_sym_cmd_identifier_token18] = ACTIONS(2045), + [aux_sym_cmd_identifier_token19] = ACTIONS(2045), + [aux_sym_cmd_identifier_token20] = ACTIONS(2045), + [aux_sym_cmd_identifier_token21] = ACTIONS(2045), + [aux_sym_cmd_identifier_token22] = ACTIONS(2045), + [aux_sym_cmd_identifier_token23] = ACTIONS(2045), + [aux_sym_cmd_identifier_token24] = ACTIONS(2045), + [aux_sym_cmd_identifier_token25] = ACTIONS(2045), + [aux_sym_cmd_identifier_token26] = ACTIONS(2045), + [aux_sym_cmd_identifier_token27] = ACTIONS(2045), + [aux_sym_cmd_identifier_token28] = ACTIONS(2045), + [aux_sym_cmd_identifier_token29] = ACTIONS(2045), + [aux_sym_cmd_identifier_token30] = ACTIONS(2045), + [aux_sym_cmd_identifier_token31] = ACTIONS(2045), + [aux_sym_cmd_identifier_token32] = ACTIONS(2045), + [aux_sym_cmd_identifier_token33] = ACTIONS(2045), + [aux_sym_cmd_identifier_token34] = ACTIONS(2043), + [aux_sym_cmd_identifier_token35] = ACTIONS(2045), + [aux_sym_cmd_identifier_token36] = ACTIONS(2045), + [aux_sym_cmd_identifier_token37] = ACTIONS(2045), + [aux_sym_cmd_identifier_token38] = ACTIONS(2043), + [aux_sym_cmd_identifier_token39] = ACTIONS(2045), + [aux_sym_cmd_identifier_token40] = ACTIONS(2045), + [anon_sym_def] = ACTIONS(2043), + [anon_sym_export_DASHenv] = ACTIONS(2043), + [anon_sym_extern] = ACTIONS(2043), + [anon_sym_module] = ACTIONS(2043), + [anon_sym_use] = ACTIONS(2043), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_COMMA] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2045), + [anon_sym_error] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_break] = ACTIONS(2043), + [anon_sym_continue] = ACTIONS(2043), + [anon_sym_for] = ACTIONS(2043), + [anon_sym_in2] = ACTIONS(2043), + [anon_sym_loop] = ACTIONS(2043), + [anon_sym_make] = ACTIONS(2043), + [anon_sym_while] = ACTIONS(2043), + [anon_sym_do] = ACTIONS(2043), + [anon_sym_if] = ACTIONS(2043), + [anon_sym_else] = ACTIONS(2043), + [anon_sym_match] = ACTIONS(2043), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_try] = ACTIONS(2043), + [anon_sym_catch] = ACTIONS(2043), + [anon_sym_return] = ACTIONS(2043), + [anon_sym_source] = ACTIONS(2043), + [anon_sym_source_DASHenv] = ACTIONS(2043), + [anon_sym_register] = ACTIONS(2043), + [anon_sym_hide] = ACTIONS(2043), + [anon_sym_hide_DASHenv] = ACTIONS(2043), + [anon_sym_overlay] = ACTIONS(2043), + [anon_sym_as] = ACTIONS(2043), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2045), + [anon_sym_DOT_DOT2] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [aux_sym__val_number_token4] = ACTIONS(2043), + [aux_sym__val_number_token5] = ACTIONS(2043), + [aux_sym__val_number_token6] = ACTIONS(2043), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2045), }, - [539] = { - [sym_comment] = STATE(539), + [533] = { + [sym_comment] = STATE(533), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1805), + [aux_sym_cmd_identifier_token3] = ACTIONS(1805), + [aux_sym_cmd_identifier_token4] = ACTIONS(1805), + [aux_sym_cmd_identifier_token5] = ACTIONS(1805), + [aux_sym_cmd_identifier_token6] = ACTIONS(1805), + [aux_sym_cmd_identifier_token7] = ACTIONS(1805), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1805), + [aux_sym_cmd_identifier_token11] = ACTIONS(1805), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1805), + [aux_sym_cmd_identifier_token17] = ACTIONS(1805), + [aux_sym_cmd_identifier_token18] = ACTIONS(1805), + [aux_sym_cmd_identifier_token19] = ACTIONS(1805), + [aux_sym_cmd_identifier_token20] = ACTIONS(1805), + [aux_sym_cmd_identifier_token21] = ACTIONS(1805), + [aux_sym_cmd_identifier_token22] = ACTIONS(1805), + [aux_sym_cmd_identifier_token23] = ACTIONS(1805), + [aux_sym_cmd_identifier_token24] = ACTIONS(1805), + [aux_sym_cmd_identifier_token25] = ACTIONS(1805), + [aux_sym_cmd_identifier_token26] = ACTIONS(1805), + [aux_sym_cmd_identifier_token27] = ACTIONS(1805), + [aux_sym_cmd_identifier_token28] = ACTIONS(1805), + [aux_sym_cmd_identifier_token29] = ACTIONS(1805), + [aux_sym_cmd_identifier_token30] = ACTIONS(1805), + [aux_sym_cmd_identifier_token31] = ACTIONS(1805), + [aux_sym_cmd_identifier_token32] = ACTIONS(1805), + [aux_sym_cmd_identifier_token33] = ACTIONS(1805), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1805), + [aux_sym_cmd_identifier_token36] = ACTIONS(1805), + [aux_sym_cmd_identifier_token37] = ACTIONS(1805), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1805), + [aux_sym_cmd_identifier_token40] = ACTIONS(1805), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1805), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_register] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1805), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1805), + [aux_sym__val_number_decimal_token3] = ACTIONS(1805), + [aux_sym__val_number_decimal_token4] = ACTIONS(1805), + [aux_sym__val_number_token1] = ACTIONS(1805), + [aux_sym__val_number_token2] = ACTIONS(1805), + [aux_sym__val_number_token3] = ACTIONS(1805), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1805), + [sym__str_single_quotes] = ACTIONS(1805), + [sym__str_back_ticks] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1805), + [sym__entry_separator] = ACTIONS(1813), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [534] = { + [sym_comment] = STATE(534), [anon_sym_export] = ACTIONS(1018), [anon_sym_alias] = ACTIONS(1018), [anon_sym_let] = ACTIONS(1018), @@ -138611,6 +138316,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1018), [anon_sym_use] = ACTIONS(1018), [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), [anon_sym_DOLLAR] = ACTIONS(1020), [anon_sym_error] = ACTIONS(1018), [anon_sym_DASH2] = ACTIONS(1018), @@ -138659,824 +138365,523 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1020), }, - [540] = { - [sym_comment] = STATE(540), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_alias] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_let_DASHenv] = ACTIONS(2265), - [anon_sym_mut] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [aux_sym_cmd_identifier_token1] = ACTIONS(2265), - [aux_sym_cmd_identifier_token2] = ACTIONS(2265), - [aux_sym_cmd_identifier_token3] = ACTIONS(2265), - [aux_sym_cmd_identifier_token4] = ACTIONS(2265), - [aux_sym_cmd_identifier_token5] = ACTIONS(2265), - [aux_sym_cmd_identifier_token6] = ACTIONS(2265), - [aux_sym_cmd_identifier_token7] = ACTIONS(2265), - [aux_sym_cmd_identifier_token8] = ACTIONS(2265), - [aux_sym_cmd_identifier_token9] = ACTIONS(2265), - [aux_sym_cmd_identifier_token10] = ACTIONS(2265), - [aux_sym_cmd_identifier_token11] = ACTIONS(2265), - [aux_sym_cmd_identifier_token12] = ACTIONS(2265), - [aux_sym_cmd_identifier_token13] = ACTIONS(2265), - [aux_sym_cmd_identifier_token14] = ACTIONS(2265), - [aux_sym_cmd_identifier_token15] = ACTIONS(2265), - [aux_sym_cmd_identifier_token16] = ACTIONS(2265), - [aux_sym_cmd_identifier_token17] = ACTIONS(2265), - [aux_sym_cmd_identifier_token18] = ACTIONS(2265), - [aux_sym_cmd_identifier_token19] = ACTIONS(2265), - [aux_sym_cmd_identifier_token20] = ACTIONS(2265), - [aux_sym_cmd_identifier_token21] = ACTIONS(2265), - [aux_sym_cmd_identifier_token22] = ACTIONS(2265), - [aux_sym_cmd_identifier_token23] = ACTIONS(2265), - [aux_sym_cmd_identifier_token24] = ACTIONS(2265), - [aux_sym_cmd_identifier_token25] = ACTIONS(2265), - [aux_sym_cmd_identifier_token26] = ACTIONS(2265), - [aux_sym_cmd_identifier_token27] = ACTIONS(2265), - [aux_sym_cmd_identifier_token28] = ACTIONS(2265), - [aux_sym_cmd_identifier_token29] = ACTIONS(2265), - [aux_sym_cmd_identifier_token30] = ACTIONS(2265), - [aux_sym_cmd_identifier_token31] = ACTIONS(2265), - [aux_sym_cmd_identifier_token32] = ACTIONS(2265), - [aux_sym_cmd_identifier_token33] = ACTIONS(2265), - [aux_sym_cmd_identifier_token34] = ACTIONS(2265), - [aux_sym_cmd_identifier_token35] = ACTIONS(2265), - [aux_sym_cmd_identifier_token36] = ACTIONS(2265), - [aux_sym_cmd_identifier_token37] = ACTIONS(2265), - [aux_sym_cmd_identifier_token38] = ACTIONS(2265), - [aux_sym_cmd_identifier_token39] = ACTIONS(2265), - [aux_sym_cmd_identifier_token40] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2265), - [anon_sym_export_DASHenv] = ACTIONS(2265), - [anon_sym_extern] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_error] = ACTIONS(2265), - [anon_sym_DASH2] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_in2] = ACTIONS(2265), - [anon_sym_loop] = ACTIONS(2265), - [anon_sym_make] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2265), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_catch] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_source] = ACTIONS(2265), - [anon_sym_source_DASHenv] = ACTIONS(2265), - [anon_sym_register] = ACTIONS(2265), - [anon_sym_hide] = ACTIONS(2265), - [anon_sym_hide_DASHenv] = ACTIONS(2265), - [anon_sym_overlay] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_LPAREN2] = ACTIONS(2267), - [anon_sym_PLUS2] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2265), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [aux_sym__val_number_token4] = ACTIONS(2265), - [aux_sym__val_number_token5] = ACTIONS(2265), - [aux_sym__val_number_token6] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2265), - [sym__str_single_quotes] = ACTIONS(2265), - [sym__str_back_ticks] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2265), - [sym__entry_separator] = ACTIONS(2267), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2265), + [535] = { + [sym_comment] = STATE(535), + [anon_sym_export] = ACTIONS(958), + [anon_sym_alias] = ACTIONS(958), + [anon_sym_let] = ACTIONS(958), + [anon_sym_let_DASHenv] = ACTIONS(958), + [anon_sym_mut] = ACTIONS(958), + [anon_sym_const] = ACTIONS(958), + [aux_sym_cmd_identifier_token1] = ACTIONS(958), + [aux_sym_cmd_identifier_token2] = ACTIONS(958), + [aux_sym_cmd_identifier_token3] = ACTIONS(958), + [aux_sym_cmd_identifier_token4] = ACTIONS(958), + [aux_sym_cmd_identifier_token5] = ACTIONS(958), + [aux_sym_cmd_identifier_token6] = ACTIONS(958), + [aux_sym_cmd_identifier_token7] = ACTIONS(958), + [aux_sym_cmd_identifier_token8] = ACTIONS(958), + [aux_sym_cmd_identifier_token9] = ACTIONS(958), + [aux_sym_cmd_identifier_token10] = ACTIONS(958), + [aux_sym_cmd_identifier_token11] = ACTIONS(958), + [aux_sym_cmd_identifier_token12] = ACTIONS(958), + [aux_sym_cmd_identifier_token13] = ACTIONS(958), + [aux_sym_cmd_identifier_token14] = ACTIONS(958), + [aux_sym_cmd_identifier_token15] = ACTIONS(958), + [aux_sym_cmd_identifier_token16] = ACTIONS(958), + [aux_sym_cmd_identifier_token17] = ACTIONS(958), + [aux_sym_cmd_identifier_token18] = ACTIONS(958), + [aux_sym_cmd_identifier_token19] = ACTIONS(958), + [aux_sym_cmd_identifier_token20] = ACTIONS(958), + [aux_sym_cmd_identifier_token21] = ACTIONS(958), + [aux_sym_cmd_identifier_token22] = ACTIONS(958), + [aux_sym_cmd_identifier_token23] = ACTIONS(958), + [aux_sym_cmd_identifier_token24] = ACTIONS(958), + [aux_sym_cmd_identifier_token25] = ACTIONS(958), + [aux_sym_cmd_identifier_token26] = ACTIONS(958), + [aux_sym_cmd_identifier_token27] = ACTIONS(958), + [aux_sym_cmd_identifier_token28] = ACTIONS(958), + [aux_sym_cmd_identifier_token29] = ACTIONS(958), + [aux_sym_cmd_identifier_token30] = ACTIONS(958), + [aux_sym_cmd_identifier_token31] = ACTIONS(958), + [aux_sym_cmd_identifier_token32] = ACTIONS(958), + [aux_sym_cmd_identifier_token33] = ACTIONS(958), + [aux_sym_cmd_identifier_token34] = ACTIONS(958), + [aux_sym_cmd_identifier_token35] = ACTIONS(958), + [aux_sym_cmd_identifier_token36] = ACTIONS(958), + [aux_sym_cmd_identifier_token37] = ACTIONS(958), + [aux_sym_cmd_identifier_token38] = ACTIONS(958), + [aux_sym_cmd_identifier_token39] = ACTIONS(958), + [aux_sym_cmd_identifier_token40] = ACTIONS(958), + [anon_sym_def] = ACTIONS(958), + [anon_sym_export_DASHenv] = ACTIONS(958), + [anon_sym_extern] = ACTIONS(958), + [anon_sym_module] = ACTIONS(958), + [anon_sym_use] = ACTIONS(958), + [anon_sym_LPAREN] = ACTIONS(958), + [anon_sym_COMMA] = ACTIONS(958), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_error] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_break] = ACTIONS(958), + [anon_sym_continue] = ACTIONS(958), + [anon_sym_for] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(958), + [anon_sym_loop] = ACTIONS(958), + [anon_sym_make] = ACTIONS(958), + [anon_sym_while] = ACTIONS(958), + [anon_sym_do] = ACTIONS(958), + [anon_sym_if] = ACTIONS(958), + [anon_sym_else] = ACTIONS(958), + [anon_sym_match] = ACTIONS(958), + [anon_sym_RBRACE] = ACTIONS(958), + [anon_sym_try] = ACTIONS(958), + [anon_sym_catch] = ACTIONS(958), + [anon_sym_return] = ACTIONS(958), + [anon_sym_source] = ACTIONS(958), + [anon_sym_source_DASHenv] = ACTIONS(958), + [anon_sym_register] = ACTIONS(958), + [anon_sym_hide] = ACTIONS(958), + [anon_sym_hide_DASHenv] = ACTIONS(958), + [anon_sym_overlay] = ACTIONS(958), + [anon_sym_as] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(2238), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(958), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(958), + [aux_sym__val_number_decimal_token3] = ACTIONS(958), + [aux_sym__val_number_decimal_token4] = ACTIONS(958), + [aux_sym__val_number_token1] = ACTIONS(958), + [aux_sym__val_number_token2] = ACTIONS(958), + [aux_sym__val_number_token3] = ACTIONS(958), + [aux_sym__val_number_token4] = ACTIONS(958), + [aux_sym__val_number_token5] = ACTIONS(958), + [aux_sym__val_number_token6] = ACTIONS(958), + [anon_sym_DQUOTE] = ACTIONS(958), + [sym__str_single_quotes] = ACTIONS(958), + [sym__str_back_ticks] = ACTIONS(958), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(958), + [sym__entry_separator] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2267), + [sym_raw_string_begin] = ACTIONS(960), }, - [541] = { - [sym_comment] = STATE(541), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [aux_sym__immediate_decimal_token1] = ACTIONS(2269), - [aux_sym__immediate_decimal_token2] = ACTIONS(2271), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), + [536] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(536), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_alias] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_let_DASHenv] = ACTIONS(2240), + [anon_sym_mut] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [aux_sym_cmd_identifier_token1] = ACTIONS(2240), + [aux_sym_cmd_identifier_token2] = ACTIONS(2240), + [aux_sym_cmd_identifier_token3] = ACTIONS(2240), + [aux_sym_cmd_identifier_token4] = ACTIONS(2240), + [aux_sym_cmd_identifier_token5] = ACTIONS(2240), + [aux_sym_cmd_identifier_token6] = ACTIONS(2240), + [aux_sym_cmd_identifier_token7] = ACTIONS(2240), + [aux_sym_cmd_identifier_token8] = ACTIONS(2240), + [aux_sym_cmd_identifier_token9] = ACTIONS(2240), + [aux_sym_cmd_identifier_token10] = ACTIONS(2240), + [aux_sym_cmd_identifier_token11] = ACTIONS(2240), + [aux_sym_cmd_identifier_token12] = ACTIONS(2240), + [aux_sym_cmd_identifier_token13] = ACTIONS(2240), + [aux_sym_cmd_identifier_token14] = ACTIONS(2240), + [aux_sym_cmd_identifier_token15] = ACTIONS(2240), + [aux_sym_cmd_identifier_token16] = ACTIONS(2240), + [aux_sym_cmd_identifier_token17] = ACTIONS(2240), + [aux_sym_cmd_identifier_token18] = ACTIONS(2240), + [aux_sym_cmd_identifier_token19] = ACTIONS(2240), + [aux_sym_cmd_identifier_token20] = ACTIONS(2240), + [aux_sym_cmd_identifier_token21] = ACTIONS(2240), + [aux_sym_cmd_identifier_token22] = ACTIONS(2240), + [aux_sym_cmd_identifier_token23] = ACTIONS(2240), + [aux_sym_cmd_identifier_token24] = ACTIONS(2240), + [aux_sym_cmd_identifier_token25] = ACTIONS(2240), + [aux_sym_cmd_identifier_token26] = ACTIONS(2240), + [aux_sym_cmd_identifier_token27] = ACTIONS(2240), + [aux_sym_cmd_identifier_token28] = ACTIONS(2240), + [aux_sym_cmd_identifier_token29] = ACTIONS(2240), + [aux_sym_cmd_identifier_token30] = ACTIONS(2240), + [aux_sym_cmd_identifier_token31] = ACTIONS(2240), + [aux_sym_cmd_identifier_token32] = ACTIONS(2240), + [aux_sym_cmd_identifier_token33] = ACTIONS(2240), + [aux_sym_cmd_identifier_token34] = ACTIONS(2240), + [aux_sym_cmd_identifier_token35] = ACTIONS(2240), + [aux_sym_cmd_identifier_token36] = ACTIONS(2240), + [aux_sym_cmd_identifier_token37] = ACTIONS(2240), + [aux_sym_cmd_identifier_token38] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2240), + [aux_sym_cmd_identifier_token40] = ACTIONS(2240), + [anon_sym_def] = ACTIONS(2240), + [anon_sym_export_DASHenv] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_use] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(2240), + [anon_sym_DOLLAR] = ACTIONS(2240), + [anon_sym_error] = ACTIONS(2240), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_in2] = ACTIONS(2240), + [anon_sym_loop] = ACTIONS(2240), + [anon_sym_make] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_match] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2240), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_catch] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_source] = ACTIONS(2240), + [anon_sym_source_DASHenv] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_hide] = ACTIONS(2240), + [anon_sym_hide_DASHenv] = ACTIONS(2240), + [anon_sym_overlay] = ACTIONS(2240), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2240), + [aux_sym__val_number_decimal_token1] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2240), + [aux_sym__val_number_decimal_token3] = ACTIONS(2240), + [aux_sym__val_number_decimal_token4] = ACTIONS(2240), + [aux_sym__val_number_token1] = ACTIONS(2240), + [aux_sym__val_number_token2] = ACTIONS(2240), + [aux_sym__val_number_token3] = ACTIONS(2240), + [aux_sym__val_number_token4] = ACTIONS(2240), + [aux_sym__val_number_token5] = ACTIONS(2240), + [aux_sym__val_number_token6] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2240), + [sym__str_single_quotes] = ACTIONS(2240), + [sym__str_back_ticks] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2240), + [sym__entry_separator] = ACTIONS(2242), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [542] = { - [sym_comment] = STATE(542), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(2242), }, - [543] = { - [sym_comment] = STATE(543), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [544] = { - [sym_comment] = STATE(544), - [anon_sym_export] = ACTIONS(964), - [anon_sym_alias] = ACTIONS(964), - [anon_sym_let] = ACTIONS(964), - [anon_sym_let_DASHenv] = ACTIONS(964), - [anon_sym_mut] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [aux_sym_cmd_identifier_token1] = ACTIONS(964), - [aux_sym_cmd_identifier_token2] = ACTIONS(964), - [aux_sym_cmd_identifier_token3] = ACTIONS(964), - [aux_sym_cmd_identifier_token4] = ACTIONS(964), - [aux_sym_cmd_identifier_token5] = ACTIONS(964), - [aux_sym_cmd_identifier_token6] = ACTIONS(964), - [aux_sym_cmd_identifier_token7] = ACTIONS(964), - [aux_sym_cmd_identifier_token8] = ACTIONS(964), - [aux_sym_cmd_identifier_token9] = ACTIONS(964), - [aux_sym_cmd_identifier_token10] = ACTIONS(964), - [aux_sym_cmd_identifier_token11] = ACTIONS(964), - [aux_sym_cmd_identifier_token12] = ACTIONS(964), - [aux_sym_cmd_identifier_token13] = ACTIONS(964), - [aux_sym_cmd_identifier_token14] = ACTIONS(964), - [aux_sym_cmd_identifier_token15] = ACTIONS(964), - [aux_sym_cmd_identifier_token16] = ACTIONS(964), - [aux_sym_cmd_identifier_token17] = ACTIONS(964), - [aux_sym_cmd_identifier_token18] = ACTIONS(964), - [aux_sym_cmd_identifier_token19] = ACTIONS(964), - [aux_sym_cmd_identifier_token20] = ACTIONS(964), - [aux_sym_cmd_identifier_token21] = ACTIONS(964), - [aux_sym_cmd_identifier_token22] = ACTIONS(964), - [aux_sym_cmd_identifier_token23] = ACTIONS(964), - [aux_sym_cmd_identifier_token24] = ACTIONS(964), - [aux_sym_cmd_identifier_token25] = ACTIONS(964), - [aux_sym_cmd_identifier_token26] = ACTIONS(964), - [aux_sym_cmd_identifier_token27] = ACTIONS(964), - [aux_sym_cmd_identifier_token28] = ACTIONS(964), - [aux_sym_cmd_identifier_token29] = ACTIONS(964), - [aux_sym_cmd_identifier_token30] = ACTIONS(964), - [aux_sym_cmd_identifier_token31] = ACTIONS(964), - [aux_sym_cmd_identifier_token32] = ACTIONS(964), - [aux_sym_cmd_identifier_token33] = ACTIONS(964), - [aux_sym_cmd_identifier_token34] = ACTIONS(964), - [aux_sym_cmd_identifier_token35] = ACTIONS(964), - [aux_sym_cmd_identifier_token36] = ACTIONS(964), - [aux_sym_cmd_identifier_token37] = ACTIONS(964), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(964), - [aux_sym_cmd_identifier_token40] = ACTIONS(964), - [anon_sym_def] = ACTIONS(964), - [anon_sym_export_DASHenv] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_module] = ACTIONS(964), - [anon_sym_use] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(964), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_error] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_loop] = ACTIONS(964), - [anon_sym_make] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(964), - [anon_sym_try] = ACTIONS(964), - [anon_sym_catch] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_source] = ACTIONS(964), - [anon_sym_source_DASHenv] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_hide] = ACTIONS(964), - [anon_sym_hide_DASHenv] = ACTIONS(964), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_as] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(964), - [anon_sym_PLUS2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(964), - [aux_sym__val_number_decimal_token1] = ACTIONS(964), - [aux_sym__val_number_decimal_token2] = ACTIONS(964), - [aux_sym__val_number_decimal_token3] = ACTIONS(964), - [aux_sym__val_number_decimal_token4] = ACTIONS(964), - [aux_sym__val_number_token1] = ACTIONS(964), - [aux_sym__val_number_token2] = ACTIONS(964), - [aux_sym__val_number_token3] = ACTIONS(964), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(964), - [sym__str_single_quotes] = ACTIONS(964), - [sym__str_back_ticks] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(964), - [sym__entry_separator] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(964), + [537] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(537), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_alias] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_let_DASHenv] = ACTIONS(2244), + [anon_sym_mut] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [aux_sym_cmd_identifier_token1] = ACTIONS(2244), + [aux_sym_cmd_identifier_token2] = ACTIONS(2244), + [aux_sym_cmd_identifier_token3] = ACTIONS(2244), + [aux_sym_cmd_identifier_token4] = ACTIONS(2244), + [aux_sym_cmd_identifier_token5] = ACTIONS(2244), + [aux_sym_cmd_identifier_token6] = ACTIONS(2244), + [aux_sym_cmd_identifier_token7] = ACTIONS(2244), + [aux_sym_cmd_identifier_token8] = ACTIONS(2244), + [aux_sym_cmd_identifier_token9] = ACTIONS(2244), + [aux_sym_cmd_identifier_token10] = ACTIONS(2244), + [aux_sym_cmd_identifier_token11] = ACTIONS(2244), + [aux_sym_cmd_identifier_token12] = ACTIONS(2244), + [aux_sym_cmd_identifier_token13] = ACTIONS(2244), + [aux_sym_cmd_identifier_token14] = ACTIONS(2244), + [aux_sym_cmd_identifier_token15] = ACTIONS(2244), + [aux_sym_cmd_identifier_token16] = ACTIONS(2244), + [aux_sym_cmd_identifier_token17] = ACTIONS(2244), + [aux_sym_cmd_identifier_token18] = ACTIONS(2244), + [aux_sym_cmd_identifier_token19] = ACTIONS(2244), + [aux_sym_cmd_identifier_token20] = ACTIONS(2244), + [aux_sym_cmd_identifier_token21] = ACTIONS(2244), + [aux_sym_cmd_identifier_token22] = ACTIONS(2244), + [aux_sym_cmd_identifier_token23] = ACTIONS(2244), + [aux_sym_cmd_identifier_token24] = ACTIONS(2244), + [aux_sym_cmd_identifier_token25] = ACTIONS(2244), + [aux_sym_cmd_identifier_token26] = ACTIONS(2244), + [aux_sym_cmd_identifier_token27] = ACTIONS(2244), + [aux_sym_cmd_identifier_token28] = ACTIONS(2244), + [aux_sym_cmd_identifier_token29] = ACTIONS(2244), + [aux_sym_cmd_identifier_token30] = ACTIONS(2244), + [aux_sym_cmd_identifier_token31] = ACTIONS(2244), + [aux_sym_cmd_identifier_token32] = ACTIONS(2244), + [aux_sym_cmd_identifier_token33] = ACTIONS(2244), + [aux_sym_cmd_identifier_token34] = ACTIONS(2244), + [aux_sym_cmd_identifier_token35] = ACTIONS(2244), + [aux_sym_cmd_identifier_token36] = ACTIONS(2244), + [aux_sym_cmd_identifier_token37] = ACTIONS(2244), + [aux_sym_cmd_identifier_token38] = ACTIONS(2244), + [aux_sym_cmd_identifier_token39] = ACTIONS(2244), + [aux_sym_cmd_identifier_token40] = ACTIONS(2244), + [anon_sym_def] = ACTIONS(2244), + [anon_sym_export_DASHenv] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_use] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2244), + [anon_sym_DOLLAR] = ACTIONS(2244), + [anon_sym_error] = ACTIONS(2244), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_in2] = ACTIONS(2244), + [anon_sym_loop] = ACTIONS(2244), + [anon_sym_make] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2244), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_source] = ACTIONS(2244), + [anon_sym_source_DASHenv] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_hide] = ACTIONS(2244), + [anon_sym_hide_DASHenv] = ACTIONS(2244), + [anon_sym_overlay] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2244), + [aux_sym__val_number_decimal_token1] = ACTIONS(2244), + [aux_sym__val_number_decimal_token2] = ACTIONS(2244), + [aux_sym__val_number_decimal_token3] = ACTIONS(2244), + [aux_sym__val_number_decimal_token4] = ACTIONS(2244), + [aux_sym__val_number_token1] = ACTIONS(2244), + [aux_sym__val_number_token2] = ACTIONS(2244), + [aux_sym__val_number_token3] = ACTIONS(2244), + [aux_sym__val_number_token4] = ACTIONS(2244), + [aux_sym__val_number_token5] = ACTIONS(2244), + [aux_sym__val_number_token6] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2244), + [sym__str_single_quotes] = ACTIONS(2244), + [sym__str_back_ticks] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2244), + [sym__entry_separator] = ACTIONS(2246), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(966), + [sym_raw_string_begin] = ACTIONS(2246), }, - [545] = { - [sym_comment] = STATE(545), - [anon_sym_export] = ACTIONS(968), - [anon_sym_alias] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_let_DASHenv] = ACTIONS(968), - [anon_sym_mut] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [aux_sym_cmd_identifier_token1] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(968), - [aux_sym_cmd_identifier_token3] = ACTIONS(968), - [aux_sym_cmd_identifier_token4] = ACTIONS(968), - [aux_sym_cmd_identifier_token5] = ACTIONS(968), - [aux_sym_cmd_identifier_token6] = ACTIONS(968), - [aux_sym_cmd_identifier_token7] = ACTIONS(968), - [aux_sym_cmd_identifier_token8] = ACTIONS(968), - [aux_sym_cmd_identifier_token9] = ACTIONS(968), - [aux_sym_cmd_identifier_token10] = ACTIONS(968), - [aux_sym_cmd_identifier_token11] = ACTIONS(968), - [aux_sym_cmd_identifier_token12] = ACTIONS(968), - [aux_sym_cmd_identifier_token13] = ACTIONS(968), - [aux_sym_cmd_identifier_token14] = ACTIONS(968), - [aux_sym_cmd_identifier_token15] = ACTIONS(968), - [aux_sym_cmd_identifier_token16] = ACTIONS(968), - [aux_sym_cmd_identifier_token17] = ACTIONS(968), - [aux_sym_cmd_identifier_token18] = ACTIONS(968), - [aux_sym_cmd_identifier_token19] = ACTIONS(968), - [aux_sym_cmd_identifier_token20] = ACTIONS(968), - [aux_sym_cmd_identifier_token21] = ACTIONS(968), - [aux_sym_cmd_identifier_token22] = ACTIONS(968), - [aux_sym_cmd_identifier_token23] = ACTIONS(968), - [aux_sym_cmd_identifier_token24] = ACTIONS(968), - [aux_sym_cmd_identifier_token25] = ACTIONS(968), - [aux_sym_cmd_identifier_token26] = ACTIONS(968), - [aux_sym_cmd_identifier_token27] = ACTIONS(968), - [aux_sym_cmd_identifier_token28] = ACTIONS(968), - [aux_sym_cmd_identifier_token29] = ACTIONS(968), - [aux_sym_cmd_identifier_token30] = ACTIONS(968), - [aux_sym_cmd_identifier_token31] = ACTIONS(968), - [aux_sym_cmd_identifier_token32] = ACTIONS(968), - [aux_sym_cmd_identifier_token33] = ACTIONS(968), - [aux_sym_cmd_identifier_token34] = ACTIONS(968), - [aux_sym_cmd_identifier_token35] = ACTIONS(968), - [aux_sym_cmd_identifier_token36] = ACTIONS(968), - [aux_sym_cmd_identifier_token37] = ACTIONS(968), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(968), - [aux_sym_cmd_identifier_token40] = ACTIONS(968), - [anon_sym_def] = ACTIONS(968), - [anon_sym_export_DASHenv] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(968), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_error] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_make] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(968), - [anon_sym_try] = ACTIONS(968), - [anon_sym_catch] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_source] = ACTIONS(968), - [anon_sym_source_DASHenv] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_hide] = ACTIONS(968), - [anon_sym_hide_DASHenv] = ACTIONS(968), - [anon_sym_overlay] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(968), - [anon_sym_PLUS2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(968), - [aux_sym__val_number_decimal_token1] = ACTIONS(968), - [aux_sym__val_number_decimal_token2] = ACTIONS(968), - [aux_sym__val_number_decimal_token3] = ACTIONS(968), - [aux_sym__val_number_decimal_token4] = ACTIONS(968), - [aux_sym__val_number_token1] = ACTIONS(968), - [aux_sym__val_number_token2] = ACTIONS(968), - [aux_sym__val_number_token3] = ACTIONS(968), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(968), - [sym__str_single_quotes] = ACTIONS(968), - [sym__str_back_ticks] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(968), - [sym__entry_separator] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(968), + [538] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(538), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_alias] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_let_DASHenv] = ACTIONS(2248), + [anon_sym_mut] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [aux_sym_cmd_identifier_token1] = ACTIONS(2248), + [aux_sym_cmd_identifier_token2] = ACTIONS(2248), + [aux_sym_cmd_identifier_token3] = ACTIONS(2248), + [aux_sym_cmd_identifier_token4] = ACTIONS(2248), + [aux_sym_cmd_identifier_token5] = ACTIONS(2248), + [aux_sym_cmd_identifier_token6] = ACTIONS(2248), + [aux_sym_cmd_identifier_token7] = ACTIONS(2248), + [aux_sym_cmd_identifier_token8] = ACTIONS(2248), + [aux_sym_cmd_identifier_token9] = ACTIONS(2248), + [aux_sym_cmd_identifier_token10] = ACTIONS(2248), + [aux_sym_cmd_identifier_token11] = ACTIONS(2248), + [aux_sym_cmd_identifier_token12] = ACTIONS(2248), + [aux_sym_cmd_identifier_token13] = ACTIONS(2248), + [aux_sym_cmd_identifier_token14] = ACTIONS(2248), + [aux_sym_cmd_identifier_token15] = ACTIONS(2248), + [aux_sym_cmd_identifier_token16] = ACTIONS(2248), + [aux_sym_cmd_identifier_token17] = ACTIONS(2248), + [aux_sym_cmd_identifier_token18] = ACTIONS(2248), + [aux_sym_cmd_identifier_token19] = ACTIONS(2248), + [aux_sym_cmd_identifier_token20] = ACTIONS(2248), + [aux_sym_cmd_identifier_token21] = ACTIONS(2248), + [aux_sym_cmd_identifier_token22] = ACTIONS(2248), + [aux_sym_cmd_identifier_token23] = ACTIONS(2248), + [aux_sym_cmd_identifier_token24] = ACTIONS(2248), + [aux_sym_cmd_identifier_token25] = ACTIONS(2248), + [aux_sym_cmd_identifier_token26] = ACTIONS(2248), + [aux_sym_cmd_identifier_token27] = ACTIONS(2248), + [aux_sym_cmd_identifier_token28] = ACTIONS(2248), + [aux_sym_cmd_identifier_token29] = ACTIONS(2248), + [aux_sym_cmd_identifier_token30] = ACTIONS(2248), + [aux_sym_cmd_identifier_token31] = ACTIONS(2248), + [aux_sym_cmd_identifier_token32] = ACTIONS(2248), + [aux_sym_cmd_identifier_token33] = ACTIONS(2248), + [aux_sym_cmd_identifier_token34] = ACTIONS(2248), + [aux_sym_cmd_identifier_token35] = ACTIONS(2248), + [aux_sym_cmd_identifier_token36] = ACTIONS(2248), + [aux_sym_cmd_identifier_token37] = ACTIONS(2248), + [aux_sym_cmd_identifier_token38] = ACTIONS(2248), + [aux_sym_cmd_identifier_token39] = ACTIONS(2248), + [aux_sym_cmd_identifier_token40] = ACTIONS(2248), + [anon_sym_def] = ACTIONS(2248), + [anon_sym_export_DASHenv] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_COMMA] = ACTIONS(2248), + [anon_sym_DOLLAR] = ACTIONS(2248), + [anon_sym_error] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_in2] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_make] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2248), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_source] = ACTIONS(2248), + [anon_sym_source_DASHenv] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_hide] = ACTIONS(2248), + [anon_sym_hide_DASHenv] = ACTIONS(2248), + [anon_sym_overlay] = ACTIONS(2248), + [anon_sym_as] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2248), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2248), + [aux_sym__val_number_decimal_token3] = ACTIONS(2248), + [aux_sym__val_number_decimal_token4] = ACTIONS(2248), + [aux_sym__val_number_token1] = ACTIONS(2248), + [aux_sym__val_number_token2] = ACTIONS(2248), + [aux_sym__val_number_token3] = ACTIONS(2248), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2248), + [sym__str_single_quotes] = ACTIONS(2248), + [sym__str_back_ticks] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2248), + [sym__entry_separator] = ACTIONS(2250), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(970), - }, - [546] = { - [sym_comment] = STATE(546), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [aux_sym_cmd_identifier_token37] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), + [sym_raw_string_begin] = ACTIONS(2250), }, - [547] = { - [sym_comment] = STATE(547), - [anon_sym_export] = ACTIONS(1717), - [anon_sym_alias] = ACTIONS(1717), - [anon_sym_let] = ACTIONS(1717), - [anon_sym_let_DASHenv] = ACTIONS(1717), - [anon_sym_mut] = ACTIONS(1717), - [anon_sym_const] = ACTIONS(1717), - [aux_sym_cmd_identifier_token1] = ACTIONS(1717), - [aux_sym_cmd_identifier_token2] = ACTIONS(1719), - [aux_sym_cmd_identifier_token3] = ACTIONS(1719), - [aux_sym_cmd_identifier_token4] = ACTIONS(1719), - [aux_sym_cmd_identifier_token5] = ACTIONS(1719), - [aux_sym_cmd_identifier_token6] = ACTIONS(1719), - [aux_sym_cmd_identifier_token7] = ACTIONS(1719), - [aux_sym_cmd_identifier_token8] = ACTIONS(1717), - [aux_sym_cmd_identifier_token9] = ACTIONS(1717), - [aux_sym_cmd_identifier_token10] = ACTIONS(1719), - [aux_sym_cmd_identifier_token11] = ACTIONS(1719), - [aux_sym_cmd_identifier_token12] = ACTIONS(1717), - [aux_sym_cmd_identifier_token13] = ACTIONS(1717), - [aux_sym_cmd_identifier_token14] = ACTIONS(1717), - [aux_sym_cmd_identifier_token15] = ACTIONS(1717), - [aux_sym_cmd_identifier_token16] = ACTIONS(1719), - [aux_sym_cmd_identifier_token17] = ACTIONS(1719), - [aux_sym_cmd_identifier_token18] = ACTIONS(1719), - [aux_sym_cmd_identifier_token19] = ACTIONS(1719), - [aux_sym_cmd_identifier_token20] = ACTIONS(1719), - [aux_sym_cmd_identifier_token21] = ACTIONS(1719), - [aux_sym_cmd_identifier_token22] = ACTIONS(1719), - [aux_sym_cmd_identifier_token23] = ACTIONS(1719), - [aux_sym_cmd_identifier_token24] = ACTIONS(1719), - [aux_sym_cmd_identifier_token25] = ACTIONS(1719), - [aux_sym_cmd_identifier_token26] = ACTIONS(1719), - [aux_sym_cmd_identifier_token27] = ACTIONS(1719), - [aux_sym_cmd_identifier_token28] = ACTIONS(1719), - [aux_sym_cmd_identifier_token29] = ACTIONS(1719), - [aux_sym_cmd_identifier_token30] = ACTIONS(1719), - [aux_sym_cmd_identifier_token31] = ACTIONS(1719), - [aux_sym_cmd_identifier_token32] = ACTIONS(1719), - [aux_sym_cmd_identifier_token33] = ACTIONS(1719), - [aux_sym_cmd_identifier_token34] = ACTIONS(1717), - [aux_sym_cmd_identifier_token35] = ACTIONS(1719), - [aux_sym_cmd_identifier_token36] = ACTIONS(1719), - [aux_sym_cmd_identifier_token37] = ACTIONS(1719), - [aux_sym_cmd_identifier_token38] = ACTIONS(1717), - [aux_sym_cmd_identifier_token39] = ACTIONS(1719), - [aux_sym_cmd_identifier_token40] = ACTIONS(1719), - [anon_sym_def] = ACTIONS(1717), - [anon_sym_export_DASHenv] = ACTIONS(1717), - [anon_sym_extern] = ACTIONS(1717), - [anon_sym_module] = ACTIONS(1717), - [anon_sym_use] = ACTIONS(1717), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1719), - [anon_sym_error] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_break] = ACTIONS(1717), - [anon_sym_continue] = ACTIONS(1717), - [anon_sym_for] = ACTIONS(1717), - [anon_sym_in2] = ACTIONS(1717), - [anon_sym_loop] = ACTIONS(1717), - [anon_sym_make] = ACTIONS(1717), - [anon_sym_while] = ACTIONS(1717), - [anon_sym_do] = ACTIONS(1717), - [anon_sym_if] = ACTIONS(1717), - [anon_sym_else] = ACTIONS(1717), - [anon_sym_match] = ACTIONS(1717), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_try] = ACTIONS(1717), - [anon_sym_catch] = ACTIONS(1717), - [anon_sym_return] = ACTIONS(1717), - [anon_sym_source] = ACTIONS(1717), - [anon_sym_source_DASHenv] = ACTIONS(1717), - [anon_sym_register] = ACTIONS(1717), - [anon_sym_hide] = ACTIONS(1717), - [anon_sym_hide_DASHenv] = ACTIONS(1717), - [anon_sym_overlay] = ACTIONS(1717), - [anon_sym_as] = ACTIONS(1717), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1717), - [aux_sym__val_number_token5] = ACTIONS(1717), - [aux_sym__val_number_token6] = ACTIONS(1717), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1719), + [539] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(539), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_alias] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_let_DASHenv] = ACTIONS(2252), + [anon_sym_mut] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [aux_sym_cmd_identifier_token1] = ACTIONS(2252), + [aux_sym_cmd_identifier_token2] = ACTIONS(2252), + [aux_sym_cmd_identifier_token3] = ACTIONS(2252), + [aux_sym_cmd_identifier_token4] = ACTIONS(2252), + [aux_sym_cmd_identifier_token5] = ACTIONS(2252), + [aux_sym_cmd_identifier_token6] = ACTIONS(2252), + [aux_sym_cmd_identifier_token7] = ACTIONS(2252), + [aux_sym_cmd_identifier_token8] = ACTIONS(2252), + [aux_sym_cmd_identifier_token9] = ACTIONS(2252), + [aux_sym_cmd_identifier_token10] = ACTIONS(2252), + [aux_sym_cmd_identifier_token11] = ACTIONS(2252), + [aux_sym_cmd_identifier_token12] = ACTIONS(2252), + [aux_sym_cmd_identifier_token13] = ACTIONS(2252), + [aux_sym_cmd_identifier_token14] = ACTIONS(2252), + [aux_sym_cmd_identifier_token15] = ACTIONS(2252), + [aux_sym_cmd_identifier_token16] = ACTIONS(2252), + [aux_sym_cmd_identifier_token17] = ACTIONS(2252), + [aux_sym_cmd_identifier_token18] = ACTIONS(2252), + [aux_sym_cmd_identifier_token19] = ACTIONS(2252), + [aux_sym_cmd_identifier_token20] = ACTIONS(2252), + [aux_sym_cmd_identifier_token21] = ACTIONS(2252), + [aux_sym_cmd_identifier_token22] = ACTIONS(2252), + [aux_sym_cmd_identifier_token23] = ACTIONS(2252), + [aux_sym_cmd_identifier_token24] = ACTIONS(2252), + [aux_sym_cmd_identifier_token25] = ACTIONS(2252), + [aux_sym_cmd_identifier_token26] = ACTIONS(2252), + [aux_sym_cmd_identifier_token27] = ACTIONS(2252), + [aux_sym_cmd_identifier_token28] = ACTIONS(2252), + [aux_sym_cmd_identifier_token29] = ACTIONS(2252), + [aux_sym_cmd_identifier_token30] = ACTIONS(2252), + [aux_sym_cmd_identifier_token31] = ACTIONS(2252), + [aux_sym_cmd_identifier_token32] = ACTIONS(2252), + [aux_sym_cmd_identifier_token33] = ACTIONS(2252), + [aux_sym_cmd_identifier_token34] = ACTIONS(2252), + [aux_sym_cmd_identifier_token35] = ACTIONS(2252), + [aux_sym_cmd_identifier_token36] = ACTIONS(2252), + [aux_sym_cmd_identifier_token37] = ACTIONS(2252), + [aux_sym_cmd_identifier_token38] = ACTIONS(2252), + [aux_sym_cmd_identifier_token39] = ACTIONS(2252), + [aux_sym_cmd_identifier_token40] = ACTIONS(2252), + [anon_sym_def] = ACTIONS(2252), + [anon_sym_export_DASHenv] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_COMMA] = ACTIONS(2252), + [anon_sym_DOLLAR] = ACTIONS(2252), + [anon_sym_error] = ACTIONS(2252), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_in2] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_make] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_source] = ACTIONS(2252), + [anon_sym_source_DASHenv] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_hide] = ACTIONS(2252), + [anon_sym_hide_DASHenv] = ACTIONS(2252), + [anon_sym_overlay] = ACTIONS(2252), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2252), + [aux_sym__val_number_decimal_token1] = ACTIONS(2252), + [aux_sym__val_number_decimal_token2] = ACTIONS(2252), + [aux_sym__val_number_decimal_token3] = ACTIONS(2252), + [aux_sym__val_number_decimal_token4] = ACTIONS(2252), + [aux_sym__val_number_token1] = ACTIONS(2252), + [aux_sym__val_number_token2] = ACTIONS(2252), + [aux_sym__val_number_token3] = ACTIONS(2252), + [aux_sym__val_number_token4] = ACTIONS(2252), + [aux_sym__val_number_token5] = ACTIONS(2252), + [aux_sym__val_number_token6] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2252), + [sym__str_single_quotes] = ACTIONS(2252), + [sym__str_back_ticks] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2252), + [sym__entry_separator] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2254), }, - [548] = { - [sym_comment] = STATE(548), + [540] = { + [sym_comment] = STATE(540), [anon_sym_export] = ACTIONS(972), [anon_sym_alias] = ACTIONS(972), [anon_sym_let] = ACTIONS(972), @@ -139484,52 +138889,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(972), [anon_sym_const] = ACTIONS(972), [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(972), - [aux_sym_cmd_identifier_token3] = ACTIONS(972), - [aux_sym_cmd_identifier_token4] = ACTIONS(972), - [aux_sym_cmd_identifier_token5] = ACTIONS(972), - [aux_sym_cmd_identifier_token6] = ACTIONS(972), - [aux_sym_cmd_identifier_token7] = ACTIONS(972), + [aux_sym_cmd_identifier_token2] = ACTIONS(974), + [aux_sym_cmd_identifier_token3] = ACTIONS(974), + [aux_sym_cmd_identifier_token4] = ACTIONS(974), + [aux_sym_cmd_identifier_token5] = ACTIONS(974), + [aux_sym_cmd_identifier_token6] = ACTIONS(974), + [aux_sym_cmd_identifier_token7] = ACTIONS(974), [aux_sym_cmd_identifier_token8] = ACTIONS(972), [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(972), - [aux_sym_cmd_identifier_token11] = ACTIONS(972), + [aux_sym_cmd_identifier_token10] = ACTIONS(974), + [aux_sym_cmd_identifier_token11] = ACTIONS(974), [aux_sym_cmd_identifier_token12] = ACTIONS(972), [aux_sym_cmd_identifier_token13] = ACTIONS(972), [aux_sym_cmd_identifier_token14] = ACTIONS(972), [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(972), - [aux_sym_cmd_identifier_token17] = ACTIONS(972), - [aux_sym_cmd_identifier_token18] = ACTIONS(972), - [aux_sym_cmd_identifier_token19] = ACTIONS(972), - [aux_sym_cmd_identifier_token20] = ACTIONS(972), - [aux_sym_cmd_identifier_token21] = ACTIONS(972), - [aux_sym_cmd_identifier_token22] = ACTIONS(972), - [aux_sym_cmd_identifier_token23] = ACTIONS(972), - [aux_sym_cmd_identifier_token24] = ACTIONS(972), - [aux_sym_cmd_identifier_token25] = ACTIONS(972), - [aux_sym_cmd_identifier_token26] = ACTIONS(972), - [aux_sym_cmd_identifier_token27] = ACTIONS(972), - [aux_sym_cmd_identifier_token28] = ACTIONS(972), - [aux_sym_cmd_identifier_token29] = ACTIONS(972), - [aux_sym_cmd_identifier_token30] = ACTIONS(972), - [aux_sym_cmd_identifier_token31] = ACTIONS(972), - [aux_sym_cmd_identifier_token32] = ACTIONS(972), - [aux_sym_cmd_identifier_token33] = ACTIONS(972), + [aux_sym_cmd_identifier_token16] = ACTIONS(974), + [aux_sym_cmd_identifier_token17] = ACTIONS(974), + [aux_sym_cmd_identifier_token18] = ACTIONS(974), + [aux_sym_cmd_identifier_token19] = ACTIONS(974), + [aux_sym_cmd_identifier_token20] = ACTIONS(974), + [aux_sym_cmd_identifier_token21] = ACTIONS(974), + [aux_sym_cmd_identifier_token22] = ACTIONS(974), + [aux_sym_cmd_identifier_token23] = ACTIONS(974), + [aux_sym_cmd_identifier_token24] = ACTIONS(974), + [aux_sym_cmd_identifier_token25] = ACTIONS(974), + [aux_sym_cmd_identifier_token26] = ACTIONS(974), + [aux_sym_cmd_identifier_token27] = ACTIONS(974), + [aux_sym_cmd_identifier_token28] = ACTIONS(974), + [aux_sym_cmd_identifier_token29] = ACTIONS(974), + [aux_sym_cmd_identifier_token30] = ACTIONS(974), + [aux_sym_cmd_identifier_token31] = ACTIONS(974), + [aux_sym_cmd_identifier_token32] = ACTIONS(974), + [aux_sym_cmd_identifier_token33] = ACTIONS(974), [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(972), - [aux_sym_cmd_identifier_token36] = ACTIONS(972), - [aux_sym_cmd_identifier_token37] = ACTIONS(972), + [aux_sym_cmd_identifier_token35] = ACTIONS(974), + [aux_sym_cmd_identifier_token36] = ACTIONS(974), + [aux_sym_cmd_identifier_token37] = ACTIONS(974), [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(972), - [aux_sym_cmd_identifier_token40] = ACTIONS(972), + [aux_sym_cmd_identifier_token39] = ACTIONS(974), + [aux_sym_cmd_identifier_token40] = ACTIONS(974), [anon_sym_def] = ACTIONS(972), [anon_sym_export_DASHenv] = ACTIONS(972), [anon_sym_extern] = ACTIONS(972), [anon_sym_module] = ACTIONS(972), [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(972), - [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(974), [anon_sym_error] = ACTIONS(972), [anon_sym_DASH2] = ACTIONS(972), [anon_sym_break] = ACTIONS(972), @@ -139543,7 +138949,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(972), [anon_sym_else] = ACTIONS(972), [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(972), + [anon_sym_RBRACE] = ACTIONS(974), [anon_sym_try] = ACTIONS(972), [anon_sym_catch] = ACTIONS(972), [anon_sym_return] = ACTIONS(972), @@ -139554,133 +138960,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(972), [anon_sym_overlay] = ACTIONS(972), [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(972), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(972), - [aux_sym__val_number_decimal_token3] = ACTIONS(972), - [aux_sym__val_number_decimal_token4] = ACTIONS(972), - [aux_sym__val_number_token1] = ACTIONS(972), - [aux_sym__val_number_token2] = ACTIONS(972), - [aux_sym__val_number_token3] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), [aux_sym__val_number_token4] = ACTIONS(972), [aux_sym__val_number_token5] = ACTIONS(972), [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(972), - [sym__str_single_quotes] = ACTIONS(972), - [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [sym__entry_separator] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), + [anon_sym_COLON2] = ACTIONS(974), [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(974), }, - [549] = { - [sym_comment] = STATE(549), - [anon_sym_export] = ACTIONS(2102), - [anon_sym_alias] = ACTIONS(2102), - [anon_sym_let] = ACTIONS(2102), - [anon_sym_let_DASHenv] = ACTIONS(2102), - [anon_sym_mut] = ACTIONS(2102), - [anon_sym_const] = ACTIONS(2102), - [aux_sym_cmd_identifier_token1] = ACTIONS(2102), - [aux_sym_cmd_identifier_token2] = ACTIONS(2104), - [aux_sym_cmd_identifier_token3] = ACTIONS(2104), - [aux_sym_cmd_identifier_token4] = ACTIONS(2104), - [aux_sym_cmd_identifier_token5] = ACTIONS(2104), - [aux_sym_cmd_identifier_token6] = ACTIONS(2104), - [aux_sym_cmd_identifier_token7] = ACTIONS(2104), - [aux_sym_cmd_identifier_token8] = ACTIONS(2102), - [aux_sym_cmd_identifier_token9] = ACTIONS(2102), - [aux_sym_cmd_identifier_token10] = ACTIONS(2104), - [aux_sym_cmd_identifier_token11] = ACTIONS(2104), - [aux_sym_cmd_identifier_token12] = ACTIONS(2102), - [aux_sym_cmd_identifier_token13] = ACTIONS(2102), - [aux_sym_cmd_identifier_token14] = ACTIONS(2102), - [aux_sym_cmd_identifier_token15] = ACTIONS(2102), - [aux_sym_cmd_identifier_token16] = ACTIONS(2104), - [aux_sym_cmd_identifier_token17] = ACTIONS(2104), - [aux_sym_cmd_identifier_token18] = ACTIONS(2104), - [aux_sym_cmd_identifier_token19] = ACTIONS(2104), - [aux_sym_cmd_identifier_token20] = ACTIONS(2104), - [aux_sym_cmd_identifier_token21] = ACTIONS(2104), - [aux_sym_cmd_identifier_token22] = ACTIONS(2104), - [aux_sym_cmd_identifier_token23] = ACTIONS(2104), - [aux_sym_cmd_identifier_token24] = ACTIONS(2104), - [aux_sym_cmd_identifier_token25] = ACTIONS(2104), - [aux_sym_cmd_identifier_token26] = ACTIONS(2104), - [aux_sym_cmd_identifier_token27] = ACTIONS(2104), - [aux_sym_cmd_identifier_token28] = ACTIONS(2104), - [aux_sym_cmd_identifier_token29] = ACTIONS(2104), - [aux_sym_cmd_identifier_token30] = ACTIONS(2104), - [aux_sym_cmd_identifier_token31] = ACTIONS(2104), - [aux_sym_cmd_identifier_token32] = ACTIONS(2104), - [aux_sym_cmd_identifier_token33] = ACTIONS(2104), - [aux_sym_cmd_identifier_token34] = ACTIONS(2102), - [aux_sym_cmd_identifier_token35] = ACTIONS(2104), - [aux_sym_cmd_identifier_token36] = ACTIONS(2104), - [aux_sym_cmd_identifier_token37] = ACTIONS(2104), - [aux_sym_cmd_identifier_token38] = ACTIONS(2102), - [aux_sym_cmd_identifier_token39] = ACTIONS(2104), - [aux_sym_cmd_identifier_token40] = ACTIONS(2104), - [anon_sym_def] = ACTIONS(2102), - [anon_sym_export_DASHenv] = ACTIONS(2102), - [anon_sym_extern] = ACTIONS(2102), - [anon_sym_module] = ACTIONS(2102), - [anon_sym_use] = ACTIONS(2102), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2104), - [anon_sym_error] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_break] = ACTIONS(2102), - [anon_sym_continue] = ACTIONS(2102), - [anon_sym_for] = ACTIONS(2102), - [anon_sym_in2] = ACTIONS(2102), - [anon_sym_loop] = ACTIONS(2102), - [anon_sym_make] = ACTIONS(2102), - [anon_sym_while] = ACTIONS(2102), - [anon_sym_do] = ACTIONS(2102), - [anon_sym_if] = ACTIONS(2102), - [anon_sym_else] = ACTIONS(2102), - [anon_sym_match] = ACTIONS(2102), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_try] = ACTIONS(2102), - [anon_sym_catch] = ACTIONS(2102), - [anon_sym_return] = ACTIONS(2102), - [anon_sym_source] = ACTIONS(2102), - [anon_sym_source_DASHenv] = ACTIONS(2102), - [anon_sym_register] = ACTIONS(2102), - [anon_sym_hide] = ACTIONS(2102), - [anon_sym_hide_DASHenv] = ACTIONS(2102), - [anon_sym_overlay] = ACTIONS(2102), - [anon_sym_as] = ACTIONS(2102), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2104), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2102), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2102), - [aux_sym__val_number_token5] = ACTIONS(2102), - [aux_sym__val_number_token6] = ACTIONS(2102), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2104), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [550] = { - [sym_comment] = STATE(550), + [541] = { + [sym_comment] = STATE(541), [anon_sym_export] = ACTIONS(976), [anon_sym_alias] = ACTIONS(976), [anon_sym_let] = ACTIONS(976), @@ -139688,52 +138992,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(976), [anon_sym_const] = ACTIONS(976), [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(978), + [aux_sym_cmd_identifier_token3] = ACTIONS(978), + [aux_sym_cmd_identifier_token4] = ACTIONS(978), + [aux_sym_cmd_identifier_token5] = ACTIONS(978), + [aux_sym_cmd_identifier_token6] = ACTIONS(978), + [aux_sym_cmd_identifier_token7] = ACTIONS(978), [aux_sym_cmd_identifier_token8] = ACTIONS(976), [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(978), + [aux_sym_cmd_identifier_token11] = ACTIONS(978), [aux_sym_cmd_identifier_token12] = ACTIONS(976), [aux_sym_cmd_identifier_token13] = ACTIONS(976), [aux_sym_cmd_identifier_token14] = ACTIONS(976), [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(978), + [aux_sym_cmd_identifier_token17] = ACTIONS(978), + [aux_sym_cmd_identifier_token18] = ACTIONS(978), + [aux_sym_cmd_identifier_token19] = ACTIONS(978), + [aux_sym_cmd_identifier_token20] = ACTIONS(978), + [aux_sym_cmd_identifier_token21] = ACTIONS(978), + [aux_sym_cmd_identifier_token22] = ACTIONS(978), + [aux_sym_cmd_identifier_token23] = ACTIONS(978), + [aux_sym_cmd_identifier_token24] = ACTIONS(978), + [aux_sym_cmd_identifier_token25] = ACTIONS(978), + [aux_sym_cmd_identifier_token26] = ACTIONS(978), + [aux_sym_cmd_identifier_token27] = ACTIONS(978), + [aux_sym_cmd_identifier_token28] = ACTIONS(978), + [aux_sym_cmd_identifier_token29] = ACTIONS(978), + [aux_sym_cmd_identifier_token30] = ACTIONS(978), + [aux_sym_cmd_identifier_token31] = ACTIONS(978), + [aux_sym_cmd_identifier_token32] = ACTIONS(978), + [aux_sym_cmd_identifier_token33] = ACTIONS(978), [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(978), + [aux_sym_cmd_identifier_token36] = ACTIONS(978), + [aux_sym_cmd_identifier_token37] = ACTIONS(978), [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(978), + [aux_sym_cmd_identifier_token40] = ACTIONS(978), [anon_sym_def] = ACTIONS(976), [anon_sym_export_DASHenv] = ACTIONS(976), [anon_sym_extern] = ACTIONS(976), [anon_sym_module] = ACTIONS(976), [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(978), [anon_sym_error] = ACTIONS(976), [anon_sym_DASH2] = ACTIONS(976), [anon_sym_break] = ACTIONS(976), @@ -139747,7 +139052,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(976), [anon_sym_else] = ACTIONS(976), [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(978), [anon_sym_try] = ACTIONS(976), [anon_sym_catch] = ACTIONS(976), [anon_sym_return] = ACTIONS(976), @@ -139758,640 +139063,1363 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(976), [anon_sym_overlay] = ACTIONS(976), [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), [aux_sym__val_number_token4] = ACTIONS(976), [aux_sym__val_number_token5] = ACTIONS(976), [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(978), [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(978), }, + [542] = { + [sym_comment] = STATE(542), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(2222), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2224), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2224), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [543] = { + [sym_comment] = STATE(543), + [anon_sym_export] = ACTIONS(952), + [anon_sym_alias] = ACTIONS(952), + [anon_sym_let] = ACTIONS(952), + [anon_sym_let_DASHenv] = ACTIONS(952), + [anon_sym_mut] = ACTIONS(952), + [anon_sym_const] = ACTIONS(952), + [aux_sym_cmd_identifier_token1] = ACTIONS(952), + [aux_sym_cmd_identifier_token2] = ACTIONS(952), + [aux_sym_cmd_identifier_token3] = ACTIONS(952), + [aux_sym_cmd_identifier_token4] = ACTIONS(952), + [aux_sym_cmd_identifier_token5] = ACTIONS(952), + [aux_sym_cmd_identifier_token6] = ACTIONS(952), + [aux_sym_cmd_identifier_token7] = ACTIONS(952), + [aux_sym_cmd_identifier_token8] = ACTIONS(952), + [aux_sym_cmd_identifier_token9] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(952), + [aux_sym_cmd_identifier_token11] = ACTIONS(952), + [aux_sym_cmd_identifier_token12] = ACTIONS(952), + [aux_sym_cmd_identifier_token13] = ACTIONS(952), + [aux_sym_cmd_identifier_token14] = ACTIONS(952), + [aux_sym_cmd_identifier_token15] = ACTIONS(952), + [aux_sym_cmd_identifier_token16] = ACTIONS(952), + [aux_sym_cmd_identifier_token17] = ACTIONS(952), + [aux_sym_cmd_identifier_token18] = ACTIONS(952), + [aux_sym_cmd_identifier_token19] = ACTIONS(952), + [aux_sym_cmd_identifier_token20] = ACTIONS(952), + [aux_sym_cmd_identifier_token21] = ACTIONS(952), + [aux_sym_cmd_identifier_token22] = ACTIONS(952), + [aux_sym_cmd_identifier_token23] = ACTIONS(952), + [aux_sym_cmd_identifier_token24] = ACTIONS(952), + [aux_sym_cmd_identifier_token25] = ACTIONS(952), + [aux_sym_cmd_identifier_token26] = ACTIONS(952), + [aux_sym_cmd_identifier_token27] = ACTIONS(952), + [aux_sym_cmd_identifier_token28] = ACTIONS(952), + [aux_sym_cmd_identifier_token29] = ACTIONS(952), + [aux_sym_cmd_identifier_token30] = ACTIONS(952), + [aux_sym_cmd_identifier_token31] = ACTIONS(952), + [aux_sym_cmd_identifier_token32] = ACTIONS(952), + [aux_sym_cmd_identifier_token33] = ACTIONS(952), + [aux_sym_cmd_identifier_token34] = ACTIONS(952), + [aux_sym_cmd_identifier_token35] = ACTIONS(952), + [aux_sym_cmd_identifier_token36] = ACTIONS(952), + [aux_sym_cmd_identifier_token37] = ACTIONS(952), + [aux_sym_cmd_identifier_token38] = ACTIONS(952), + [aux_sym_cmd_identifier_token39] = ACTIONS(952), + [aux_sym_cmd_identifier_token40] = ACTIONS(952), + [anon_sym_def] = ACTIONS(952), + [anon_sym_export_DASHenv] = ACTIONS(952), + [anon_sym_extern] = ACTIONS(952), + [anon_sym_module] = ACTIONS(952), + [anon_sym_use] = ACTIONS(952), + [anon_sym_LPAREN] = ACTIONS(952), + [anon_sym_COMMA] = ACTIONS(952), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_error] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_break] = ACTIONS(952), + [anon_sym_continue] = ACTIONS(952), + [anon_sym_for] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(952), + [anon_sym_loop] = ACTIONS(952), + [anon_sym_make] = ACTIONS(952), + [anon_sym_while] = ACTIONS(952), + [anon_sym_do] = ACTIONS(952), + [anon_sym_if] = ACTIONS(952), + [anon_sym_else] = ACTIONS(952), + [anon_sym_match] = ACTIONS(952), + [anon_sym_RBRACE] = ACTIONS(952), + [anon_sym_try] = ACTIONS(952), + [anon_sym_catch] = ACTIONS(952), + [anon_sym_return] = ACTIONS(952), + [anon_sym_source] = ACTIONS(952), + [anon_sym_source_DASHenv] = ACTIONS(952), + [anon_sym_register] = ACTIONS(952), + [anon_sym_hide] = ACTIONS(952), + [anon_sym_hide_DASHenv] = ACTIONS(952), + [anon_sym_overlay] = ACTIONS(952), + [anon_sym_as] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(2256), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(952), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(952), + [aux_sym__val_number_decimal_token3] = ACTIONS(952), + [aux_sym__val_number_decimal_token4] = ACTIONS(952), + [aux_sym__val_number_token1] = ACTIONS(952), + [aux_sym__val_number_token2] = ACTIONS(952), + [aux_sym__val_number_token3] = ACTIONS(952), + [aux_sym__val_number_token4] = ACTIONS(952), + [aux_sym__val_number_token5] = ACTIONS(952), + [aux_sym__val_number_token6] = ACTIONS(952), + [anon_sym_DQUOTE] = ACTIONS(952), + [sym__str_single_quotes] = ACTIONS(952), + [sym__str_back_ticks] = ACTIONS(952), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(952), + [sym__entry_separator] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(954), + }, + [544] = { + [sym_comment] = STATE(544), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2053), + [aux_sym_cmd_identifier_token3] = ACTIONS(2053), + [aux_sym_cmd_identifier_token4] = ACTIONS(2053), + [aux_sym_cmd_identifier_token5] = ACTIONS(2053), + [aux_sym_cmd_identifier_token6] = ACTIONS(2053), + [aux_sym_cmd_identifier_token7] = ACTIONS(2053), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2053), + [aux_sym_cmd_identifier_token11] = ACTIONS(2053), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2053), + [aux_sym_cmd_identifier_token17] = ACTIONS(2053), + [aux_sym_cmd_identifier_token18] = ACTIONS(2053), + [aux_sym_cmd_identifier_token19] = ACTIONS(2053), + [aux_sym_cmd_identifier_token20] = ACTIONS(2053), + [aux_sym_cmd_identifier_token21] = ACTIONS(2053), + [aux_sym_cmd_identifier_token22] = ACTIONS(2053), + [aux_sym_cmd_identifier_token23] = ACTIONS(2053), + [aux_sym_cmd_identifier_token24] = ACTIONS(2053), + [aux_sym_cmd_identifier_token25] = ACTIONS(2053), + [aux_sym_cmd_identifier_token26] = ACTIONS(2053), + [aux_sym_cmd_identifier_token27] = ACTIONS(2053), + [aux_sym_cmd_identifier_token28] = ACTIONS(2053), + [aux_sym_cmd_identifier_token29] = ACTIONS(2053), + [aux_sym_cmd_identifier_token30] = ACTIONS(2053), + [aux_sym_cmd_identifier_token31] = ACTIONS(2053), + [aux_sym_cmd_identifier_token32] = ACTIONS(2053), + [aux_sym_cmd_identifier_token33] = ACTIONS(2053), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2053), + [aux_sym_cmd_identifier_token36] = ACTIONS(2053), + [aux_sym_cmd_identifier_token37] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH2] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in2] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_PLUS2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT_DOT2] = ACTIONS(2258), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2260), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2260), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2047), + [aux_sym__val_number_token5] = ACTIONS(2047), + [aux_sym__val_number_token6] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [545] = { + [sym_comment] = STATE(545), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_alias] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_let_DASHenv] = ACTIONS(2080), + [anon_sym_mut] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [aux_sym_cmd_identifier_token1] = ACTIONS(2080), + [aux_sym_cmd_identifier_token2] = ACTIONS(2086), + [aux_sym_cmd_identifier_token3] = ACTIONS(2086), + [aux_sym_cmd_identifier_token4] = ACTIONS(2086), + [aux_sym_cmd_identifier_token5] = ACTIONS(2086), + [aux_sym_cmd_identifier_token6] = ACTIONS(2086), + [aux_sym_cmd_identifier_token7] = ACTIONS(2086), + [aux_sym_cmd_identifier_token8] = ACTIONS(2080), + [aux_sym_cmd_identifier_token9] = ACTIONS(2080), + [aux_sym_cmd_identifier_token10] = ACTIONS(2086), + [aux_sym_cmd_identifier_token11] = ACTIONS(2086), + [aux_sym_cmd_identifier_token12] = ACTIONS(2080), + [aux_sym_cmd_identifier_token13] = ACTIONS(2080), + [aux_sym_cmd_identifier_token14] = ACTIONS(2080), + [aux_sym_cmd_identifier_token15] = ACTIONS(2080), + [aux_sym_cmd_identifier_token16] = ACTIONS(2086), + [aux_sym_cmd_identifier_token17] = ACTIONS(2086), + [aux_sym_cmd_identifier_token18] = ACTIONS(2086), + [aux_sym_cmd_identifier_token19] = ACTIONS(2086), + [aux_sym_cmd_identifier_token20] = ACTIONS(2086), + [aux_sym_cmd_identifier_token21] = ACTIONS(2086), + [aux_sym_cmd_identifier_token22] = ACTIONS(2086), + [aux_sym_cmd_identifier_token23] = ACTIONS(2086), + [aux_sym_cmd_identifier_token24] = ACTIONS(2086), + [aux_sym_cmd_identifier_token25] = ACTIONS(2086), + [aux_sym_cmd_identifier_token26] = ACTIONS(2086), + [aux_sym_cmd_identifier_token27] = ACTIONS(2086), + [aux_sym_cmd_identifier_token28] = ACTIONS(2086), + [aux_sym_cmd_identifier_token29] = ACTIONS(2086), + [aux_sym_cmd_identifier_token30] = ACTIONS(2086), + [aux_sym_cmd_identifier_token31] = ACTIONS(2086), + [aux_sym_cmd_identifier_token32] = ACTIONS(2086), + [aux_sym_cmd_identifier_token33] = ACTIONS(2086), + [aux_sym_cmd_identifier_token34] = ACTIONS(2080), + [aux_sym_cmd_identifier_token35] = ACTIONS(2086), + [aux_sym_cmd_identifier_token36] = ACTIONS(2086), + [aux_sym_cmd_identifier_token37] = ACTIONS(2086), + [aux_sym_cmd_identifier_token38] = ACTIONS(2080), + [aux_sym_cmd_identifier_token39] = ACTIONS(2086), + [aux_sym_cmd_identifier_token40] = ACTIONS(2086), + [anon_sym_def] = ACTIONS(2080), + [anon_sym_export_DASHenv] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_COMMA] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_error] = ACTIONS(2080), + [anon_sym_DASH2] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_in2] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_make] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_catch] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_source] = ACTIONS(2080), + [anon_sym_source_DASHenv] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_hide] = ACTIONS(2080), + [anon_sym_hide_DASHenv] = ACTIONS(2080), + [anon_sym_overlay] = ACTIONS(2080), + [anon_sym_as] = ACTIONS(2080), + [anon_sym_PLUS2] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), + [anon_sym_DOT_DOT2] = ACTIONS(2262), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2264), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2264), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), + [aux_sym__val_number_decimal_token1] = ACTIONS(2080), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2086), + [aux_sym__val_number_decimal_token4] = ACTIONS(2086), + [aux_sym__val_number_token1] = ACTIONS(2086), + [aux_sym__val_number_token2] = ACTIONS(2086), + [aux_sym__val_number_token3] = ACTIONS(2086), + [aux_sym__val_number_token4] = ACTIONS(2080), + [aux_sym__val_number_token5] = ACTIONS(2080), + [aux_sym__val_number_token6] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym__str_single_quotes] = ACTIONS(2086), + [sym__str_back_ticks] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2086), + }, + [546] = { + [sym_comment] = STATE(546), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_alias] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_let_DASHenv] = ACTIONS(2072), + [anon_sym_mut] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [aux_sym_cmd_identifier_token1] = ACTIONS(2072), + [aux_sym_cmd_identifier_token2] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2078), + [aux_sym_cmd_identifier_token4] = ACTIONS(2078), + [aux_sym_cmd_identifier_token5] = ACTIONS(2078), + [aux_sym_cmd_identifier_token6] = ACTIONS(2078), + [aux_sym_cmd_identifier_token7] = ACTIONS(2078), + [aux_sym_cmd_identifier_token8] = ACTIONS(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2078), + [aux_sym_cmd_identifier_token11] = ACTIONS(2078), + [aux_sym_cmd_identifier_token12] = ACTIONS(2072), + [aux_sym_cmd_identifier_token13] = ACTIONS(2072), + [aux_sym_cmd_identifier_token14] = ACTIONS(2072), + [aux_sym_cmd_identifier_token15] = ACTIONS(2072), + [aux_sym_cmd_identifier_token16] = ACTIONS(2078), + [aux_sym_cmd_identifier_token17] = ACTIONS(2078), + [aux_sym_cmd_identifier_token18] = ACTIONS(2078), + [aux_sym_cmd_identifier_token19] = ACTIONS(2078), + [aux_sym_cmd_identifier_token20] = ACTIONS(2078), + [aux_sym_cmd_identifier_token21] = ACTIONS(2078), + [aux_sym_cmd_identifier_token22] = ACTIONS(2078), + [aux_sym_cmd_identifier_token23] = ACTIONS(2078), + [aux_sym_cmd_identifier_token24] = ACTIONS(2078), + [aux_sym_cmd_identifier_token25] = ACTIONS(2078), + [aux_sym_cmd_identifier_token26] = ACTIONS(2078), + [aux_sym_cmd_identifier_token27] = ACTIONS(2078), + [aux_sym_cmd_identifier_token28] = ACTIONS(2078), + [aux_sym_cmd_identifier_token29] = ACTIONS(2078), + [aux_sym_cmd_identifier_token30] = ACTIONS(2078), + [aux_sym_cmd_identifier_token31] = ACTIONS(2078), + [aux_sym_cmd_identifier_token32] = ACTIONS(2078), + [aux_sym_cmd_identifier_token33] = ACTIONS(2078), + [aux_sym_cmd_identifier_token34] = ACTIONS(2072), + [aux_sym_cmd_identifier_token35] = ACTIONS(2078), + [aux_sym_cmd_identifier_token36] = ACTIONS(2078), + [aux_sym_cmd_identifier_token37] = ACTIONS(2078), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2078), + [aux_sym_cmd_identifier_token40] = ACTIONS(2078), + [anon_sym_def] = ACTIONS(2072), + [anon_sym_export_DASHenv] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_COMMA] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2078), + [anon_sym_error] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_make] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_catch] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_source] = ACTIONS(2072), + [anon_sym_source_DASHenv] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_hide] = ACTIONS(2072), + [anon_sym_hide_DASHenv] = ACTIONS(2072), + [anon_sym_overlay] = ACTIONS(2072), + [anon_sym_as] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), + [anon_sym_DOT_DOT2] = ACTIONS(2266), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2268), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2268), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2078), + [aux_sym__val_number_decimal_token3] = ACTIONS(2078), + [aux_sym__val_number_decimal_token4] = ACTIONS(2078), + [aux_sym__val_number_token1] = ACTIONS(2078), + [aux_sym__val_number_token2] = ACTIONS(2078), + [aux_sym__val_number_token3] = ACTIONS(2078), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [547] = { + [sym_comment] = STATE(547), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [548] = { + [sym_comment] = STATE(548), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [549] = { + [sym_comment] = STATE(549), + [anon_sym_export] = ACTIONS(984), + [anon_sym_alias] = ACTIONS(984), + [anon_sym_let] = ACTIONS(984), + [anon_sym_let_DASHenv] = ACTIONS(984), + [anon_sym_mut] = ACTIONS(984), + [anon_sym_const] = ACTIONS(984), + [aux_sym_cmd_identifier_token1] = ACTIONS(984), + [aux_sym_cmd_identifier_token2] = ACTIONS(986), + [aux_sym_cmd_identifier_token3] = ACTIONS(986), + [aux_sym_cmd_identifier_token4] = ACTIONS(986), + [aux_sym_cmd_identifier_token5] = ACTIONS(986), + [aux_sym_cmd_identifier_token6] = ACTIONS(986), + [aux_sym_cmd_identifier_token7] = ACTIONS(986), + [aux_sym_cmd_identifier_token8] = ACTIONS(984), + [aux_sym_cmd_identifier_token9] = ACTIONS(984), + [aux_sym_cmd_identifier_token10] = ACTIONS(986), + [aux_sym_cmd_identifier_token11] = ACTIONS(986), + [aux_sym_cmd_identifier_token12] = ACTIONS(984), + [aux_sym_cmd_identifier_token13] = ACTIONS(984), + [aux_sym_cmd_identifier_token14] = ACTIONS(984), + [aux_sym_cmd_identifier_token15] = ACTIONS(984), + [aux_sym_cmd_identifier_token16] = ACTIONS(986), + [aux_sym_cmd_identifier_token17] = ACTIONS(986), + [aux_sym_cmd_identifier_token18] = ACTIONS(986), + [aux_sym_cmd_identifier_token19] = ACTIONS(986), + [aux_sym_cmd_identifier_token20] = ACTIONS(986), + [aux_sym_cmd_identifier_token21] = ACTIONS(986), + [aux_sym_cmd_identifier_token22] = ACTIONS(986), + [aux_sym_cmd_identifier_token23] = ACTIONS(986), + [aux_sym_cmd_identifier_token24] = ACTIONS(986), + [aux_sym_cmd_identifier_token25] = ACTIONS(986), + [aux_sym_cmd_identifier_token26] = ACTIONS(986), + [aux_sym_cmd_identifier_token27] = ACTIONS(986), + [aux_sym_cmd_identifier_token28] = ACTIONS(986), + [aux_sym_cmd_identifier_token29] = ACTIONS(986), + [aux_sym_cmd_identifier_token30] = ACTIONS(986), + [aux_sym_cmd_identifier_token31] = ACTIONS(986), + [aux_sym_cmd_identifier_token32] = ACTIONS(986), + [aux_sym_cmd_identifier_token33] = ACTIONS(986), + [aux_sym_cmd_identifier_token34] = ACTIONS(984), + [aux_sym_cmd_identifier_token35] = ACTIONS(986), + [aux_sym_cmd_identifier_token36] = ACTIONS(986), + [aux_sym_cmd_identifier_token37] = ACTIONS(986), + [aux_sym_cmd_identifier_token38] = ACTIONS(984), + [aux_sym_cmd_identifier_token39] = ACTIONS(986), + [aux_sym_cmd_identifier_token40] = ACTIONS(986), + [anon_sym_def] = ACTIONS(984), + [anon_sym_export_DASHenv] = ACTIONS(984), + [anon_sym_extern] = ACTIONS(984), + [anon_sym_module] = ACTIONS(984), + [anon_sym_use] = ACTIONS(984), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_COMMA] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(986), + [anon_sym_error] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_break] = ACTIONS(984), + [anon_sym_continue] = ACTIONS(984), + [anon_sym_for] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(984), + [anon_sym_loop] = ACTIONS(984), + [anon_sym_make] = ACTIONS(984), + [anon_sym_while] = ACTIONS(984), + [anon_sym_do] = ACTIONS(984), + [anon_sym_if] = ACTIONS(984), + [anon_sym_else] = ACTIONS(984), + [anon_sym_match] = ACTIONS(984), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_try] = ACTIONS(984), + [anon_sym_catch] = ACTIONS(984), + [anon_sym_return] = ACTIONS(984), + [anon_sym_source] = ACTIONS(984), + [anon_sym_source_DASHenv] = ACTIONS(984), + [anon_sym_register] = ACTIONS(984), + [anon_sym_hide] = ACTIONS(984), + [anon_sym_hide_DASHenv] = ACTIONS(984), + [anon_sym_overlay] = ACTIONS(984), + [anon_sym_as] = ACTIONS(984), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(984), + [aux_sym__val_number_token5] = ACTIONS(984), + [aux_sym__val_number_token6] = ACTIONS(984), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), + }, + [550] = { + [sym_comment] = STATE(550), + [anon_sym_export] = ACTIONS(2216), + [anon_sym_alias] = ACTIONS(2216), + [anon_sym_let] = ACTIONS(2216), + [anon_sym_let_DASHenv] = ACTIONS(2216), + [anon_sym_mut] = ACTIONS(2216), + [anon_sym_const] = ACTIONS(2216), + [aux_sym_cmd_identifier_token1] = ACTIONS(2216), + [aux_sym_cmd_identifier_token2] = ACTIONS(2216), + [aux_sym_cmd_identifier_token3] = ACTIONS(2216), + [aux_sym_cmd_identifier_token4] = ACTIONS(2216), + [aux_sym_cmd_identifier_token5] = ACTIONS(2216), + [aux_sym_cmd_identifier_token6] = ACTIONS(2216), + [aux_sym_cmd_identifier_token7] = ACTIONS(2216), + [aux_sym_cmd_identifier_token8] = ACTIONS(2216), + [aux_sym_cmd_identifier_token9] = ACTIONS(2216), + [aux_sym_cmd_identifier_token10] = ACTIONS(2216), + [aux_sym_cmd_identifier_token11] = ACTIONS(2216), + [aux_sym_cmd_identifier_token12] = ACTIONS(2216), + [aux_sym_cmd_identifier_token13] = ACTIONS(2216), + [aux_sym_cmd_identifier_token14] = ACTIONS(2216), + [aux_sym_cmd_identifier_token15] = ACTIONS(2216), + [aux_sym_cmd_identifier_token16] = ACTIONS(2216), + [aux_sym_cmd_identifier_token17] = ACTIONS(2216), + [aux_sym_cmd_identifier_token18] = ACTIONS(2216), + [aux_sym_cmd_identifier_token19] = ACTIONS(2216), + [aux_sym_cmd_identifier_token20] = ACTIONS(2216), + [aux_sym_cmd_identifier_token21] = ACTIONS(2216), + [aux_sym_cmd_identifier_token22] = ACTIONS(2216), + [aux_sym_cmd_identifier_token23] = ACTIONS(2216), + [aux_sym_cmd_identifier_token24] = ACTIONS(2216), + [aux_sym_cmd_identifier_token25] = ACTIONS(2216), + [aux_sym_cmd_identifier_token26] = ACTIONS(2216), + [aux_sym_cmd_identifier_token27] = ACTIONS(2216), + [aux_sym_cmd_identifier_token28] = ACTIONS(2216), + [aux_sym_cmd_identifier_token29] = ACTIONS(2216), + [aux_sym_cmd_identifier_token30] = ACTIONS(2216), + [aux_sym_cmd_identifier_token31] = ACTIONS(2216), + [aux_sym_cmd_identifier_token32] = ACTIONS(2216), + [aux_sym_cmd_identifier_token33] = ACTIONS(2216), + [aux_sym_cmd_identifier_token34] = ACTIONS(2216), + [aux_sym_cmd_identifier_token35] = ACTIONS(2216), + [aux_sym_cmd_identifier_token36] = ACTIONS(2216), + [aux_sym_cmd_identifier_token37] = ACTIONS(2216), + [aux_sym_cmd_identifier_token38] = ACTIONS(2216), + [aux_sym_cmd_identifier_token39] = ACTIONS(2216), + [aux_sym_cmd_identifier_token40] = ACTIONS(2216), + [anon_sym_def] = ACTIONS(2216), + [anon_sym_export_DASHenv] = ACTIONS(2216), + [anon_sym_extern] = ACTIONS(2216), + [anon_sym_module] = ACTIONS(2216), + [anon_sym_use] = ACTIONS(2216), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_COMMA] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_error] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2216), + [anon_sym_break] = ACTIONS(2216), + [anon_sym_continue] = ACTIONS(2216), + [anon_sym_for] = ACTIONS(2216), + [anon_sym_in2] = ACTIONS(2216), + [anon_sym_loop] = ACTIONS(2216), + [anon_sym_make] = ACTIONS(2216), + [anon_sym_while] = ACTIONS(2216), + [anon_sym_do] = ACTIONS(2216), + [anon_sym_if] = ACTIONS(2216), + [anon_sym_else] = ACTIONS(2216), + [anon_sym_match] = ACTIONS(2216), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_try] = ACTIONS(2216), + [anon_sym_catch] = ACTIONS(2216), + [anon_sym_return] = ACTIONS(2216), + [anon_sym_source] = ACTIONS(2216), + [anon_sym_source_DASHenv] = ACTIONS(2216), + [anon_sym_register] = ACTIONS(2216), + [anon_sym_hide] = ACTIONS(2216), + [anon_sym_hide_DASHenv] = ACTIONS(2216), + [anon_sym_overlay] = ACTIONS(2216), + [anon_sym_as] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_PLUS2] = ACTIONS(2216), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2216), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2218), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, [551] = { [sym_comment] = STATE(551), - [anon_sym_export] = ACTIONS(2116), - [anon_sym_alias] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_let_DASHenv] = ACTIONS(2116), - [anon_sym_mut] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [aux_sym_cmd_identifier_token1] = ACTIONS(2116), - [aux_sym_cmd_identifier_token2] = ACTIONS(2118), - [aux_sym_cmd_identifier_token3] = ACTIONS(2118), - [aux_sym_cmd_identifier_token4] = ACTIONS(2118), - [aux_sym_cmd_identifier_token5] = ACTIONS(2118), - [aux_sym_cmd_identifier_token6] = ACTIONS(2118), - [aux_sym_cmd_identifier_token7] = ACTIONS(2118), - [aux_sym_cmd_identifier_token8] = ACTIONS(2116), - [aux_sym_cmd_identifier_token9] = ACTIONS(2116), - [aux_sym_cmd_identifier_token10] = ACTIONS(2118), - [aux_sym_cmd_identifier_token11] = ACTIONS(2118), - [aux_sym_cmd_identifier_token12] = ACTIONS(2116), - [aux_sym_cmd_identifier_token13] = ACTIONS(2116), - [aux_sym_cmd_identifier_token14] = ACTIONS(2116), - [aux_sym_cmd_identifier_token15] = ACTIONS(2116), - [aux_sym_cmd_identifier_token16] = ACTIONS(2118), - [aux_sym_cmd_identifier_token17] = ACTIONS(2118), - [aux_sym_cmd_identifier_token18] = ACTIONS(2118), - [aux_sym_cmd_identifier_token19] = ACTIONS(2118), - [aux_sym_cmd_identifier_token20] = ACTIONS(2118), - [aux_sym_cmd_identifier_token21] = ACTIONS(2118), - [aux_sym_cmd_identifier_token22] = ACTIONS(2118), - [aux_sym_cmd_identifier_token23] = ACTIONS(2118), - [aux_sym_cmd_identifier_token24] = ACTIONS(2118), - [aux_sym_cmd_identifier_token25] = ACTIONS(2118), - [aux_sym_cmd_identifier_token26] = ACTIONS(2118), - [aux_sym_cmd_identifier_token27] = ACTIONS(2118), - [aux_sym_cmd_identifier_token28] = ACTIONS(2118), - [aux_sym_cmd_identifier_token29] = ACTIONS(2118), - [aux_sym_cmd_identifier_token30] = ACTIONS(2118), - [aux_sym_cmd_identifier_token31] = ACTIONS(2118), - [aux_sym_cmd_identifier_token32] = ACTIONS(2118), - [aux_sym_cmd_identifier_token33] = ACTIONS(2118), - [aux_sym_cmd_identifier_token34] = ACTIONS(2116), - [aux_sym_cmd_identifier_token35] = ACTIONS(2118), - [aux_sym_cmd_identifier_token36] = ACTIONS(2118), - [aux_sym_cmd_identifier_token37] = ACTIONS(2118), - [aux_sym_cmd_identifier_token38] = ACTIONS(2116), - [aux_sym_cmd_identifier_token39] = ACTIONS(2118), - [aux_sym_cmd_identifier_token40] = ACTIONS(2118), - [anon_sym_def] = ACTIONS(2116), - [anon_sym_export_DASHenv] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_module] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2118), - [anon_sym_error] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_in2] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_make] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2116), - [anon_sym_catch] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_source] = ACTIONS(2116), - [anon_sym_source_DASHenv] = ACTIONS(2116), - [anon_sym_register] = ACTIONS(2116), - [anon_sym_hide] = ACTIONS(2116), - [anon_sym_hide_DASHenv] = ACTIONS(2116), - [anon_sym_overlay] = ACTIONS(2116), - [anon_sym_as] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), - [anon_sym_DOT_DOT2] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2116), - [aux_sym__val_number_decimal_token2] = ACTIONS(2118), - [aux_sym__val_number_decimal_token3] = ACTIONS(2118), - [aux_sym__val_number_decimal_token4] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2116), - [aux_sym__val_number_token5] = ACTIONS(2116), - [aux_sym__val_number_token6] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2118), + [anon_sym_export] = ACTIONS(2226), + [anon_sym_alias] = ACTIONS(2226), + [anon_sym_let] = ACTIONS(2226), + [anon_sym_let_DASHenv] = ACTIONS(2226), + [anon_sym_mut] = ACTIONS(2226), + [anon_sym_const] = ACTIONS(2226), + [aux_sym_cmd_identifier_token1] = ACTIONS(2226), + [aux_sym_cmd_identifier_token2] = ACTIONS(2226), + [aux_sym_cmd_identifier_token3] = ACTIONS(2226), + [aux_sym_cmd_identifier_token4] = ACTIONS(2226), + [aux_sym_cmd_identifier_token5] = ACTIONS(2226), + [aux_sym_cmd_identifier_token6] = ACTIONS(2226), + [aux_sym_cmd_identifier_token7] = ACTIONS(2226), + [aux_sym_cmd_identifier_token8] = ACTIONS(2226), + [aux_sym_cmd_identifier_token9] = ACTIONS(2226), + [aux_sym_cmd_identifier_token10] = ACTIONS(2226), + [aux_sym_cmd_identifier_token11] = ACTIONS(2226), + [aux_sym_cmd_identifier_token12] = ACTIONS(2226), + [aux_sym_cmd_identifier_token13] = ACTIONS(2226), + [aux_sym_cmd_identifier_token14] = ACTIONS(2226), + [aux_sym_cmd_identifier_token15] = ACTIONS(2226), + [aux_sym_cmd_identifier_token16] = ACTIONS(2226), + [aux_sym_cmd_identifier_token17] = ACTIONS(2226), + [aux_sym_cmd_identifier_token18] = ACTIONS(2226), + [aux_sym_cmd_identifier_token19] = ACTIONS(2226), + [aux_sym_cmd_identifier_token20] = ACTIONS(2226), + [aux_sym_cmd_identifier_token21] = ACTIONS(2226), + [aux_sym_cmd_identifier_token22] = ACTIONS(2226), + [aux_sym_cmd_identifier_token23] = ACTIONS(2226), + [aux_sym_cmd_identifier_token24] = ACTIONS(2226), + [aux_sym_cmd_identifier_token25] = ACTIONS(2226), + [aux_sym_cmd_identifier_token26] = ACTIONS(2226), + [aux_sym_cmd_identifier_token27] = ACTIONS(2226), + [aux_sym_cmd_identifier_token28] = ACTIONS(2226), + [aux_sym_cmd_identifier_token29] = ACTIONS(2226), + [aux_sym_cmd_identifier_token30] = ACTIONS(2226), + [aux_sym_cmd_identifier_token31] = ACTIONS(2226), + [aux_sym_cmd_identifier_token32] = ACTIONS(2226), + [aux_sym_cmd_identifier_token33] = ACTIONS(2226), + [aux_sym_cmd_identifier_token34] = ACTIONS(2226), + [aux_sym_cmd_identifier_token35] = ACTIONS(2226), + [aux_sym_cmd_identifier_token36] = ACTIONS(2226), + [aux_sym_cmd_identifier_token37] = ACTIONS(2226), + [aux_sym_cmd_identifier_token38] = ACTIONS(2226), + [aux_sym_cmd_identifier_token39] = ACTIONS(2226), + [aux_sym_cmd_identifier_token40] = ACTIONS(2226), + [anon_sym_def] = ACTIONS(2226), + [anon_sym_export_DASHenv] = ACTIONS(2226), + [anon_sym_extern] = ACTIONS(2226), + [anon_sym_module] = ACTIONS(2226), + [anon_sym_use] = ACTIONS(2226), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_COMMA] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_error] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_break] = ACTIONS(2226), + [anon_sym_continue] = ACTIONS(2226), + [anon_sym_for] = ACTIONS(2226), + [anon_sym_in2] = ACTIONS(2226), + [anon_sym_loop] = ACTIONS(2226), + [anon_sym_make] = ACTIONS(2226), + [anon_sym_while] = ACTIONS(2226), + [anon_sym_do] = ACTIONS(2226), + [anon_sym_if] = ACTIONS(2226), + [anon_sym_else] = ACTIONS(2226), + [anon_sym_match] = ACTIONS(2226), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_try] = ACTIONS(2226), + [anon_sym_catch] = ACTIONS(2226), + [anon_sym_return] = ACTIONS(2226), + [anon_sym_source] = ACTIONS(2226), + [anon_sym_source_DASHenv] = ACTIONS(2226), + [anon_sym_register] = ACTIONS(2226), + [anon_sym_hide] = ACTIONS(2226), + [anon_sym_hide_DASHenv] = ACTIONS(2226), + [anon_sym_overlay] = ACTIONS(2226), + [anon_sym_as] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_PLUS2] = ACTIONS(2226), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2226), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [aux_sym__val_number_decimal_token2] = ACTIONS(2226), + [aux_sym__val_number_decimal_token3] = ACTIONS(2226), + [aux_sym__val_number_decimal_token4] = ACTIONS(2226), + [aux_sym__val_number_token1] = ACTIONS(2226), + [aux_sym__val_number_token2] = ACTIONS(2226), + [aux_sym__val_number_token3] = ACTIONS(2226), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2230), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2230), }, [552] = { [sym_comment] = STATE(552), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_COMMA] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [anon_sym_COLON2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [anon_sym_export] = ACTIONS(1793), + [anon_sym_alias] = ACTIONS(1793), + [anon_sym_let] = ACTIONS(1793), + [anon_sym_let_DASHenv] = ACTIONS(1793), + [anon_sym_mut] = ACTIONS(1793), + [anon_sym_const] = ACTIONS(1793), + [aux_sym_cmd_identifier_token1] = ACTIONS(1793), + [aux_sym_cmd_identifier_token2] = ACTIONS(1801), + [aux_sym_cmd_identifier_token3] = ACTIONS(1801), + [aux_sym_cmd_identifier_token4] = ACTIONS(1801), + [aux_sym_cmd_identifier_token5] = ACTIONS(1801), + [aux_sym_cmd_identifier_token6] = ACTIONS(1801), + [aux_sym_cmd_identifier_token7] = ACTIONS(1801), + [aux_sym_cmd_identifier_token8] = ACTIONS(1793), + [aux_sym_cmd_identifier_token9] = ACTIONS(1793), + [aux_sym_cmd_identifier_token10] = ACTIONS(1801), + [aux_sym_cmd_identifier_token11] = ACTIONS(1801), + [aux_sym_cmd_identifier_token12] = ACTIONS(1793), + [aux_sym_cmd_identifier_token13] = ACTIONS(1793), + [aux_sym_cmd_identifier_token14] = ACTIONS(1793), + [aux_sym_cmd_identifier_token15] = ACTIONS(1793), + [aux_sym_cmd_identifier_token16] = ACTIONS(1801), + [aux_sym_cmd_identifier_token17] = ACTIONS(1801), + [aux_sym_cmd_identifier_token18] = ACTIONS(1801), + [aux_sym_cmd_identifier_token19] = ACTIONS(1801), + [aux_sym_cmd_identifier_token20] = ACTIONS(1801), + [aux_sym_cmd_identifier_token21] = ACTIONS(1801), + [aux_sym_cmd_identifier_token22] = ACTIONS(1801), + [aux_sym_cmd_identifier_token23] = ACTIONS(1801), + [aux_sym_cmd_identifier_token24] = ACTIONS(1801), + [aux_sym_cmd_identifier_token25] = ACTIONS(1801), + [aux_sym_cmd_identifier_token26] = ACTIONS(1801), + [aux_sym_cmd_identifier_token27] = ACTIONS(1801), + [aux_sym_cmd_identifier_token28] = ACTIONS(1801), + [aux_sym_cmd_identifier_token29] = ACTIONS(1801), + [aux_sym_cmd_identifier_token30] = ACTIONS(1801), + [aux_sym_cmd_identifier_token31] = ACTIONS(1801), + [aux_sym_cmd_identifier_token32] = ACTIONS(1801), + [aux_sym_cmd_identifier_token33] = ACTIONS(1801), + [aux_sym_cmd_identifier_token34] = ACTIONS(1793), + [aux_sym_cmd_identifier_token35] = ACTIONS(1801), + [aux_sym_cmd_identifier_token36] = ACTIONS(1801), + [aux_sym_cmd_identifier_token37] = ACTIONS(1801), + [aux_sym_cmd_identifier_token38] = ACTIONS(1793), + [aux_sym_cmd_identifier_token39] = ACTIONS(1801), + [aux_sym_cmd_identifier_token40] = ACTIONS(1801), + [anon_sym_def] = ACTIONS(1793), + [anon_sym_export_DASHenv] = ACTIONS(1793), + [anon_sym_extern] = ACTIONS(1793), + [anon_sym_module] = ACTIONS(1793), + [anon_sym_use] = ACTIONS(1793), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_COMMA] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1801), + [anon_sym_error] = ACTIONS(1793), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_break] = ACTIONS(1793), + [anon_sym_continue] = ACTIONS(1793), + [anon_sym_for] = ACTIONS(1793), + [anon_sym_in2] = ACTIONS(1793), + [anon_sym_loop] = ACTIONS(1793), + [anon_sym_make] = ACTIONS(1793), + [anon_sym_while] = ACTIONS(1793), + [anon_sym_do] = ACTIONS(1793), + [anon_sym_if] = ACTIONS(1793), + [anon_sym_else] = ACTIONS(1793), + [anon_sym_match] = ACTIONS(1793), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_try] = ACTIONS(1793), + [anon_sym_catch] = ACTIONS(1793), + [anon_sym_return] = ACTIONS(1793), + [anon_sym_source] = ACTIONS(1793), + [anon_sym_source_DASHenv] = ACTIONS(1793), + [anon_sym_register] = ACTIONS(1793), + [anon_sym_hide] = ACTIONS(1793), + [anon_sym_hide_DASHenv] = ACTIONS(1793), + [anon_sym_overlay] = ACTIONS(1793), + [anon_sym_as] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_PLUS2] = ACTIONS(1793), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1793), + [aux_sym__val_number_token5] = ACTIONS(1793), + [aux_sym__val_number_token6] = ACTIONS(1793), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1801), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), }, [553] = { - [sym__expr_parenthesized_immediate] = STATE(7459), [sym_comment] = STATE(553), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_let_DASHenv] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [aux_sym_cmd_identifier_token1] = ACTIONS(2273), - [aux_sym_cmd_identifier_token2] = ACTIONS(2273), - [aux_sym_cmd_identifier_token3] = ACTIONS(2273), - [aux_sym_cmd_identifier_token4] = ACTIONS(2273), - [aux_sym_cmd_identifier_token5] = ACTIONS(2273), - [aux_sym_cmd_identifier_token6] = ACTIONS(2273), - [aux_sym_cmd_identifier_token7] = ACTIONS(2273), - [aux_sym_cmd_identifier_token8] = ACTIONS(2273), - [aux_sym_cmd_identifier_token9] = ACTIONS(2273), - [aux_sym_cmd_identifier_token10] = ACTIONS(2273), - [aux_sym_cmd_identifier_token11] = ACTIONS(2273), - [aux_sym_cmd_identifier_token12] = ACTIONS(2273), - [aux_sym_cmd_identifier_token13] = ACTIONS(2273), - [aux_sym_cmd_identifier_token14] = ACTIONS(2273), - [aux_sym_cmd_identifier_token15] = ACTIONS(2273), - [aux_sym_cmd_identifier_token16] = ACTIONS(2273), - [aux_sym_cmd_identifier_token17] = ACTIONS(2273), - [aux_sym_cmd_identifier_token18] = ACTIONS(2273), - [aux_sym_cmd_identifier_token19] = ACTIONS(2273), - [aux_sym_cmd_identifier_token20] = ACTIONS(2273), - [aux_sym_cmd_identifier_token21] = ACTIONS(2273), - [aux_sym_cmd_identifier_token22] = ACTIONS(2273), - [aux_sym_cmd_identifier_token23] = ACTIONS(2273), - [aux_sym_cmd_identifier_token24] = ACTIONS(2273), - [aux_sym_cmd_identifier_token25] = ACTIONS(2273), - [aux_sym_cmd_identifier_token26] = ACTIONS(2273), - [aux_sym_cmd_identifier_token27] = ACTIONS(2273), - [aux_sym_cmd_identifier_token28] = ACTIONS(2273), - [aux_sym_cmd_identifier_token29] = ACTIONS(2273), - [aux_sym_cmd_identifier_token30] = ACTIONS(2273), - [aux_sym_cmd_identifier_token31] = ACTIONS(2273), - [aux_sym_cmd_identifier_token32] = ACTIONS(2273), - [aux_sym_cmd_identifier_token33] = ACTIONS(2273), - [aux_sym_cmd_identifier_token34] = ACTIONS(2273), - [aux_sym_cmd_identifier_token35] = ACTIONS(2273), - [aux_sym_cmd_identifier_token36] = ACTIONS(2273), - [aux_sym_cmd_identifier_token37] = ACTIONS(2273), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2273), - [aux_sym_cmd_identifier_token40] = ACTIONS(2273), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_export_DASHenv] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_module] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2273), - [anon_sym_error] = ACTIONS(2273), - [anon_sym_DASH2] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_in2] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_make] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2273), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_catch] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_source] = ACTIONS(2273), - [anon_sym_source_DASHenv] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_hide] = ACTIONS(2273), - [anon_sym_hide_DASHenv] = ACTIONS(2273), - [anon_sym_overlay] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2273), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2273), - [aux_sym__val_number_decimal_token3] = ACTIONS(2273), - [aux_sym__val_number_decimal_token4] = ACTIONS(2273), - [aux_sym__val_number_token1] = ACTIONS(2273), - [aux_sym__val_number_token2] = ACTIONS(2273), - [aux_sym__val_number_token3] = ACTIONS(2273), - [aux_sym__val_number_token4] = ACTIONS(2273), - [aux_sym__val_number_token5] = ACTIONS(2273), - [aux_sym__val_number_token6] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2273), - [sym__str_single_quotes] = ACTIONS(2273), - [sym__str_back_ticks] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2273), - [sym__entry_separator] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2275), - }, - [554] = { - [sym_comment] = STATE(554), - [anon_sym_export] = ACTIONS(968), - [anon_sym_alias] = ACTIONS(968), - [anon_sym_let] = ACTIONS(968), - [anon_sym_let_DASHenv] = ACTIONS(968), - [anon_sym_mut] = ACTIONS(968), - [anon_sym_const] = ACTIONS(968), - [aux_sym_cmd_identifier_token1] = ACTIONS(968), - [aux_sym_cmd_identifier_token2] = ACTIONS(970), - [aux_sym_cmd_identifier_token3] = ACTIONS(970), - [aux_sym_cmd_identifier_token4] = ACTIONS(970), - [aux_sym_cmd_identifier_token5] = ACTIONS(970), - [aux_sym_cmd_identifier_token6] = ACTIONS(970), - [aux_sym_cmd_identifier_token7] = ACTIONS(970), - [aux_sym_cmd_identifier_token8] = ACTIONS(968), - [aux_sym_cmd_identifier_token9] = ACTIONS(968), - [aux_sym_cmd_identifier_token10] = ACTIONS(970), - [aux_sym_cmd_identifier_token11] = ACTIONS(970), - [aux_sym_cmd_identifier_token12] = ACTIONS(968), - [aux_sym_cmd_identifier_token13] = ACTIONS(968), - [aux_sym_cmd_identifier_token14] = ACTIONS(968), - [aux_sym_cmd_identifier_token15] = ACTIONS(968), - [aux_sym_cmd_identifier_token16] = ACTIONS(970), - [aux_sym_cmd_identifier_token17] = ACTIONS(970), - [aux_sym_cmd_identifier_token18] = ACTIONS(970), - [aux_sym_cmd_identifier_token19] = ACTIONS(970), - [aux_sym_cmd_identifier_token20] = ACTIONS(970), - [aux_sym_cmd_identifier_token21] = ACTIONS(970), - [aux_sym_cmd_identifier_token22] = ACTIONS(970), - [aux_sym_cmd_identifier_token23] = ACTIONS(970), - [aux_sym_cmd_identifier_token24] = ACTIONS(970), - [aux_sym_cmd_identifier_token25] = ACTIONS(970), - [aux_sym_cmd_identifier_token26] = ACTIONS(970), - [aux_sym_cmd_identifier_token27] = ACTIONS(970), - [aux_sym_cmd_identifier_token28] = ACTIONS(970), - [aux_sym_cmd_identifier_token29] = ACTIONS(970), - [aux_sym_cmd_identifier_token30] = ACTIONS(970), - [aux_sym_cmd_identifier_token31] = ACTIONS(970), - [aux_sym_cmd_identifier_token32] = ACTIONS(970), - [aux_sym_cmd_identifier_token33] = ACTIONS(970), - [aux_sym_cmd_identifier_token34] = ACTIONS(968), - [aux_sym_cmd_identifier_token35] = ACTIONS(970), - [aux_sym_cmd_identifier_token36] = ACTIONS(970), - [aux_sym_cmd_identifier_token37] = ACTIONS(970), - [aux_sym_cmd_identifier_token38] = ACTIONS(968), - [aux_sym_cmd_identifier_token39] = ACTIONS(970), - [aux_sym_cmd_identifier_token40] = ACTIONS(970), - [anon_sym_def] = ACTIONS(968), - [anon_sym_export_DASHenv] = ACTIONS(968), - [anon_sym_extern] = ACTIONS(968), - [anon_sym_module] = ACTIONS(968), - [anon_sym_use] = ACTIONS(968), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(970), - [anon_sym_error] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_break] = ACTIONS(968), - [anon_sym_continue] = ACTIONS(968), - [anon_sym_for] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(968), - [anon_sym_loop] = ACTIONS(968), - [anon_sym_make] = ACTIONS(968), - [anon_sym_while] = ACTIONS(968), - [anon_sym_do] = ACTIONS(968), - [anon_sym_if] = ACTIONS(968), - [anon_sym_else] = ACTIONS(968), - [anon_sym_match] = ACTIONS(968), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_try] = ACTIONS(968), - [anon_sym_catch] = ACTIONS(968), - [anon_sym_return] = ACTIONS(968), - [anon_sym_source] = ACTIONS(968), - [anon_sym_source_DASHenv] = ACTIONS(968), - [anon_sym_register] = ACTIONS(968), - [anon_sym_hide] = ACTIONS(968), - [anon_sym_hide_DASHenv] = ACTIONS(968), - [anon_sym_overlay] = ACTIONS(968), - [anon_sym_as] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(970), - [anon_sym_PLUS2] = ACTIONS(968), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(968), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [aux_sym__val_number_token4] = ACTIONS(968), - [aux_sym__val_number_token5] = ACTIONS(968), - [aux_sym__val_number_token6] = ACTIONS(968), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_export] = ACTIONS(2170), + [anon_sym_alias] = ACTIONS(2170), + [anon_sym_let] = ACTIONS(2170), + [anon_sym_let_DASHenv] = ACTIONS(2170), + [anon_sym_mut] = ACTIONS(2170), + [anon_sym_const] = ACTIONS(2170), + [aux_sym_cmd_identifier_token1] = ACTIONS(2170), + [aux_sym_cmd_identifier_token2] = ACTIONS(2174), + [aux_sym_cmd_identifier_token3] = ACTIONS(2174), + [aux_sym_cmd_identifier_token4] = ACTIONS(2174), + [aux_sym_cmd_identifier_token5] = ACTIONS(2174), + [aux_sym_cmd_identifier_token6] = ACTIONS(2174), + [aux_sym_cmd_identifier_token7] = ACTIONS(2174), + [aux_sym_cmd_identifier_token8] = ACTIONS(2170), + [aux_sym_cmd_identifier_token9] = ACTIONS(2170), + [aux_sym_cmd_identifier_token10] = ACTIONS(2174), + [aux_sym_cmd_identifier_token11] = ACTIONS(2174), + [aux_sym_cmd_identifier_token12] = ACTIONS(2170), + [aux_sym_cmd_identifier_token13] = ACTIONS(2170), + [aux_sym_cmd_identifier_token14] = ACTIONS(2170), + [aux_sym_cmd_identifier_token15] = ACTIONS(2170), + [aux_sym_cmd_identifier_token16] = ACTIONS(2174), + [aux_sym_cmd_identifier_token17] = ACTIONS(2174), + [aux_sym_cmd_identifier_token18] = ACTIONS(2174), + [aux_sym_cmd_identifier_token19] = ACTIONS(2174), + [aux_sym_cmd_identifier_token20] = ACTIONS(2174), + [aux_sym_cmd_identifier_token21] = ACTIONS(2174), + [aux_sym_cmd_identifier_token22] = ACTIONS(2174), + [aux_sym_cmd_identifier_token23] = ACTIONS(2174), + [aux_sym_cmd_identifier_token24] = ACTIONS(2174), + [aux_sym_cmd_identifier_token25] = ACTIONS(2174), + [aux_sym_cmd_identifier_token26] = ACTIONS(2174), + [aux_sym_cmd_identifier_token27] = ACTIONS(2174), + [aux_sym_cmd_identifier_token28] = ACTIONS(2174), + [aux_sym_cmd_identifier_token29] = ACTIONS(2174), + [aux_sym_cmd_identifier_token30] = ACTIONS(2174), + [aux_sym_cmd_identifier_token31] = ACTIONS(2174), + [aux_sym_cmd_identifier_token32] = ACTIONS(2174), + [aux_sym_cmd_identifier_token33] = ACTIONS(2174), + [aux_sym_cmd_identifier_token34] = ACTIONS(2170), + [aux_sym_cmd_identifier_token35] = ACTIONS(2174), + [aux_sym_cmd_identifier_token36] = ACTIONS(2174), + [aux_sym_cmd_identifier_token37] = ACTIONS(2174), + [aux_sym_cmd_identifier_token38] = ACTIONS(2170), + [aux_sym_cmd_identifier_token39] = ACTIONS(2174), + [aux_sym_cmd_identifier_token40] = ACTIONS(2174), + [anon_sym_def] = ACTIONS(2170), + [anon_sym_export_DASHenv] = ACTIONS(2170), + [anon_sym_extern] = ACTIONS(2170), + [anon_sym_module] = ACTIONS(2170), + [anon_sym_use] = ACTIONS(2170), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_COMMA] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2174), + [anon_sym_error] = ACTIONS(2170), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_break] = ACTIONS(2170), + [anon_sym_continue] = ACTIONS(2170), + [anon_sym_for] = ACTIONS(2170), + [anon_sym_in2] = ACTIONS(2170), + [anon_sym_loop] = ACTIONS(2170), + [anon_sym_make] = ACTIONS(2170), + [anon_sym_while] = ACTIONS(2170), + [anon_sym_do] = ACTIONS(2170), + [anon_sym_if] = ACTIONS(2170), + [anon_sym_else] = ACTIONS(2170), + [anon_sym_match] = ACTIONS(2170), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_try] = ACTIONS(2170), + [anon_sym_catch] = ACTIONS(2170), + [anon_sym_return] = ACTIONS(2170), + [anon_sym_source] = ACTIONS(2170), + [anon_sym_source_DASHenv] = ACTIONS(2170), + [anon_sym_register] = ACTIONS(2170), + [anon_sym_hide] = ACTIONS(2170), + [anon_sym_hide_DASHenv] = ACTIONS(2170), + [anon_sym_overlay] = ACTIONS(2170), + [anon_sym_as] = ACTIONS(2170), + [anon_sym_LPAREN2] = ACTIONS(2172), + [anon_sym_PLUS2] = ACTIONS(2170), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2174), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2174), + [aux_sym__val_number_decimal_token3] = ACTIONS(2174), + [aux_sym__val_number_decimal_token4] = ACTIONS(2174), + [aux_sym__val_number_token1] = ACTIONS(2174), + [aux_sym__val_number_token2] = ACTIONS(2174), + [aux_sym__val_number_token3] = ACTIONS(2174), + [aux_sym__val_number_token4] = ACTIONS(2170), + [aux_sym__val_number_token5] = ACTIONS(2170), + [aux_sym__val_number_token6] = ACTIONS(2170), + [anon_sym_DQUOTE] = ACTIONS(2174), + [sym__str_single_quotes] = ACTIONS(2174), + [sym__str_back_ticks] = ACTIONS(2174), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2174), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(970), + [sym_raw_string_begin] = ACTIONS(2174), + }, + [554] = { + [sym_comment] = STATE(554), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [555] = { [sym_comment] = STATE(555), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1681), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1681), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1681), - [aux_sym_cmd_identifier_token32] = ACTIONS(1681), - [aux_sym_cmd_identifier_token33] = ACTIONS(1681), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1681), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [aux_sym_cmd_identifier_token37] = ACTIONS(1681), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1681), - [aux_sym_cmd_identifier_token40] = ACTIONS(1681), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1681), - [aux_sym__val_number_decimal_token3] = ACTIONS(1681), - [aux_sym__val_number_decimal_token4] = ACTIONS(1681), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym__str_single_quotes] = ACTIONS(1681), - [sym__str_back_ticks] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), - [sym__entry_separator] = ACTIONS(1693), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1695), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [556] = { - [sym_comment] = STATE(556), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_alias] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_let_DASHenv] = ACTIONS(2277), - [anon_sym_mut] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [aux_sym_cmd_identifier_token1] = ACTIONS(2277), - [aux_sym_cmd_identifier_token2] = ACTIONS(2277), - [aux_sym_cmd_identifier_token3] = ACTIONS(2277), - [aux_sym_cmd_identifier_token4] = ACTIONS(2277), - [aux_sym_cmd_identifier_token5] = ACTIONS(2277), - [aux_sym_cmd_identifier_token6] = ACTIONS(2277), - [aux_sym_cmd_identifier_token7] = ACTIONS(2277), - [aux_sym_cmd_identifier_token8] = ACTIONS(2277), - [aux_sym_cmd_identifier_token9] = ACTIONS(2277), - [aux_sym_cmd_identifier_token10] = ACTIONS(2277), - [aux_sym_cmd_identifier_token11] = ACTIONS(2277), - [aux_sym_cmd_identifier_token12] = ACTIONS(2277), - [aux_sym_cmd_identifier_token13] = ACTIONS(2277), - [aux_sym_cmd_identifier_token14] = ACTIONS(2277), - [aux_sym_cmd_identifier_token15] = ACTIONS(2277), - [aux_sym_cmd_identifier_token16] = ACTIONS(2277), - [aux_sym_cmd_identifier_token17] = ACTIONS(2277), - [aux_sym_cmd_identifier_token18] = ACTIONS(2277), - [aux_sym_cmd_identifier_token19] = ACTIONS(2277), - [aux_sym_cmd_identifier_token20] = ACTIONS(2277), - [aux_sym_cmd_identifier_token21] = ACTIONS(2277), - [aux_sym_cmd_identifier_token22] = ACTIONS(2277), - [aux_sym_cmd_identifier_token23] = ACTIONS(2277), - [aux_sym_cmd_identifier_token24] = ACTIONS(2277), - [aux_sym_cmd_identifier_token25] = ACTIONS(2277), - [aux_sym_cmd_identifier_token26] = ACTIONS(2277), - [aux_sym_cmd_identifier_token27] = ACTIONS(2277), - [aux_sym_cmd_identifier_token28] = ACTIONS(2277), - [aux_sym_cmd_identifier_token29] = ACTIONS(2277), - [aux_sym_cmd_identifier_token30] = ACTIONS(2277), - [aux_sym_cmd_identifier_token31] = ACTIONS(2277), - [aux_sym_cmd_identifier_token32] = ACTIONS(2277), - [aux_sym_cmd_identifier_token33] = ACTIONS(2277), - [aux_sym_cmd_identifier_token34] = ACTIONS(2277), - [aux_sym_cmd_identifier_token35] = ACTIONS(2277), - [aux_sym_cmd_identifier_token36] = ACTIONS(2277), - [aux_sym_cmd_identifier_token37] = ACTIONS(2277), - [aux_sym_cmd_identifier_token38] = ACTIONS(2277), - [aux_sym_cmd_identifier_token39] = ACTIONS(2277), - [aux_sym_cmd_identifier_token40] = ACTIONS(2277), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_export_DASHenv] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2277), - [anon_sym_error] = ACTIONS(2277), - [anon_sym_DASH2] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_in2] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_make] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2277), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_catch] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_source] = ACTIONS(2277), - [anon_sym_source_DASHenv] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_hide] = ACTIONS(2277), - [anon_sym_hide_DASHenv] = ACTIONS(2277), - [anon_sym_overlay] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2277), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2277), - [aux_sym__val_number_decimal_token3] = ACTIONS(2277), - [aux_sym__val_number_decimal_token4] = ACTIONS(2277), - [aux_sym__val_number_token1] = ACTIONS(2277), - [aux_sym__val_number_token2] = ACTIONS(2277), - [aux_sym__val_number_token3] = ACTIONS(2277), - [aux_sym__val_number_token4] = ACTIONS(2277), - [aux_sym__val_number_token5] = ACTIONS(2277), - [aux_sym__val_number_token6] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2277), - [sym__str_single_quotes] = ACTIONS(2277), - [sym__str_back_ticks] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2277), - [sym__entry_separator] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2279), - }, - [557] = { - [sym_comment] = STATE(557), [anon_sym_export] = ACTIONS(988), [anon_sym_alias] = ACTIONS(988), [anon_sym_let] = ACTIONS(988), @@ -140444,6 +140472,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(988), [anon_sym_use] = ACTIONS(988), [anon_sym_LPAREN] = ACTIONS(988), + [anon_sym_COMMA] = ACTIONS(988), [anon_sym_DOLLAR] = ACTIONS(988), [anon_sym_error] = ACTIONS(988), [anon_sym_DASH2] = ACTIONS(988), @@ -140491,1624 +140520,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(990), }, - [558] = { - [sym_comment] = STATE(558), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2281), - [aux_sym_cmd_identifier_token3] = ACTIONS(2281), - [aux_sym_cmd_identifier_token4] = ACTIONS(2281), - [aux_sym_cmd_identifier_token5] = ACTIONS(2281), - [aux_sym_cmd_identifier_token6] = ACTIONS(2281), - [aux_sym_cmd_identifier_token7] = ACTIONS(2281), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2281), - [aux_sym_cmd_identifier_token11] = ACTIONS(2281), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2281), - [aux_sym_cmd_identifier_token17] = ACTIONS(2281), - [aux_sym_cmd_identifier_token18] = ACTIONS(2281), - [aux_sym_cmd_identifier_token19] = ACTIONS(2281), - [aux_sym_cmd_identifier_token20] = ACTIONS(2281), - [aux_sym_cmd_identifier_token21] = ACTIONS(2281), - [aux_sym_cmd_identifier_token22] = ACTIONS(2281), - [aux_sym_cmd_identifier_token23] = ACTIONS(2281), - [aux_sym_cmd_identifier_token24] = ACTIONS(2281), - [aux_sym_cmd_identifier_token25] = ACTIONS(2281), - [aux_sym_cmd_identifier_token26] = ACTIONS(2281), - [aux_sym_cmd_identifier_token27] = ACTIONS(2281), - [aux_sym_cmd_identifier_token28] = ACTIONS(2281), - [aux_sym_cmd_identifier_token29] = ACTIONS(2281), - [aux_sym_cmd_identifier_token30] = ACTIONS(2281), - [aux_sym_cmd_identifier_token31] = ACTIONS(2281), - [aux_sym_cmd_identifier_token32] = ACTIONS(2281), - [aux_sym_cmd_identifier_token33] = ACTIONS(2281), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2281), - [aux_sym_cmd_identifier_token36] = ACTIONS(2281), - [aux_sym_cmd_identifier_token37] = ACTIONS(2281), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2281), - [aux_sym_cmd_identifier_token40] = ACTIONS(2281), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2281), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in2] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2281), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2283), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2281), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2281), - [aux_sym__val_number_decimal_token3] = ACTIONS(2281), - [aux_sym__val_number_decimal_token4] = ACTIONS(2281), - [aux_sym__val_number_token1] = ACTIONS(2281), - [aux_sym__val_number_token2] = ACTIONS(2281), - [aux_sym__val_number_token3] = ACTIONS(2281), - [aux_sym__val_number_token4] = ACTIONS(2281), - [aux_sym__val_number_token5] = ACTIONS(2281), - [aux_sym__val_number_token6] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2281), - [sym__str_single_quotes] = ACTIONS(2281), - [sym__str_back_ticks] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2281), - [sym__entry_separator] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2283), - }, - [559] = { - [sym_comment] = STATE(559), - [anon_sym_export] = ACTIONS(992), - [anon_sym_alias] = ACTIONS(992), - [anon_sym_let] = ACTIONS(992), - [anon_sym_let_DASHenv] = ACTIONS(992), - [anon_sym_mut] = ACTIONS(992), - [anon_sym_const] = ACTIONS(992), - [aux_sym_cmd_identifier_token1] = ACTIONS(992), - [aux_sym_cmd_identifier_token2] = ACTIONS(998), - [aux_sym_cmd_identifier_token3] = ACTIONS(998), - [aux_sym_cmd_identifier_token4] = ACTIONS(998), - [aux_sym_cmd_identifier_token5] = ACTIONS(998), - [aux_sym_cmd_identifier_token6] = ACTIONS(998), - [aux_sym_cmd_identifier_token7] = ACTIONS(998), - [aux_sym_cmd_identifier_token8] = ACTIONS(992), - [aux_sym_cmd_identifier_token9] = ACTIONS(992), - [aux_sym_cmd_identifier_token10] = ACTIONS(998), - [aux_sym_cmd_identifier_token11] = ACTIONS(998), - [aux_sym_cmd_identifier_token12] = ACTIONS(992), - [aux_sym_cmd_identifier_token13] = ACTIONS(992), - [aux_sym_cmd_identifier_token14] = ACTIONS(992), - [aux_sym_cmd_identifier_token15] = ACTIONS(992), - [aux_sym_cmd_identifier_token16] = ACTIONS(998), - [aux_sym_cmd_identifier_token17] = ACTIONS(998), - [aux_sym_cmd_identifier_token18] = ACTIONS(998), - [aux_sym_cmd_identifier_token19] = ACTIONS(998), - [aux_sym_cmd_identifier_token20] = ACTIONS(998), - [aux_sym_cmd_identifier_token21] = ACTIONS(998), - [aux_sym_cmd_identifier_token22] = ACTIONS(998), - [aux_sym_cmd_identifier_token23] = ACTIONS(998), - [aux_sym_cmd_identifier_token24] = ACTIONS(998), - [aux_sym_cmd_identifier_token25] = ACTIONS(998), - [aux_sym_cmd_identifier_token26] = ACTIONS(998), - [aux_sym_cmd_identifier_token27] = ACTIONS(998), - [aux_sym_cmd_identifier_token28] = ACTIONS(998), - [aux_sym_cmd_identifier_token29] = ACTIONS(998), - [aux_sym_cmd_identifier_token30] = ACTIONS(998), - [aux_sym_cmd_identifier_token31] = ACTIONS(998), - [aux_sym_cmd_identifier_token32] = ACTIONS(998), - [aux_sym_cmd_identifier_token33] = ACTIONS(998), - [aux_sym_cmd_identifier_token34] = ACTIONS(992), - [aux_sym_cmd_identifier_token35] = ACTIONS(998), - [aux_sym_cmd_identifier_token36] = ACTIONS(998), - [aux_sym_cmd_identifier_token37] = ACTIONS(998), - [aux_sym_cmd_identifier_token38] = ACTIONS(992), - [aux_sym_cmd_identifier_token39] = ACTIONS(998), - [aux_sym_cmd_identifier_token40] = ACTIONS(998), - [anon_sym_def] = ACTIONS(992), - [anon_sym_export_DASHenv] = ACTIONS(992), - [anon_sym_extern] = ACTIONS(992), - [anon_sym_module] = ACTIONS(992), - [anon_sym_use] = ACTIONS(992), - [anon_sym_LPAREN] = ACTIONS(998), - [anon_sym_COMMA] = ACTIONS(1002), - [anon_sym_DOLLAR] = ACTIONS(998), - [anon_sym_error] = ACTIONS(992), - [anon_sym_DASH2] = ACTIONS(992), - [anon_sym_break] = ACTIONS(992), - [anon_sym_continue] = ACTIONS(992), - [anon_sym_for] = ACTIONS(992), - [anon_sym_in2] = ACTIONS(992), - [anon_sym_loop] = ACTIONS(992), - [anon_sym_make] = ACTIONS(992), - [anon_sym_while] = ACTIONS(992), - [anon_sym_do] = ACTIONS(992), - [anon_sym_if] = ACTIONS(992), - [anon_sym_else] = ACTIONS(992), - [anon_sym_match] = ACTIONS(992), - [anon_sym_RBRACE] = ACTIONS(998), - [anon_sym_try] = ACTIONS(992), - [anon_sym_catch] = ACTIONS(992), - [anon_sym_return] = ACTIONS(992), - [anon_sym_source] = ACTIONS(992), - [anon_sym_source_DASHenv] = ACTIONS(992), - [anon_sym_register] = ACTIONS(992), - [anon_sym_hide] = ACTIONS(992), - [anon_sym_hide_DASHenv] = ACTIONS(992), - [anon_sym_overlay] = ACTIONS(992), - [anon_sym_as] = ACTIONS(992), - [anon_sym_PLUS2] = ACTIONS(992), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), - [aux_sym__val_number_decimal_token1] = ACTIONS(992), - [aux_sym__val_number_decimal_token2] = ACTIONS(998), - [aux_sym__val_number_decimal_token3] = ACTIONS(998), - [aux_sym__val_number_decimal_token4] = ACTIONS(998), - [aux_sym__val_number_token1] = ACTIONS(998), - [aux_sym__val_number_token2] = ACTIONS(998), - [aux_sym__val_number_token3] = ACTIONS(998), - [aux_sym__val_number_token4] = ACTIONS(992), - [aux_sym__val_number_token5] = ACTIONS(992), - [aux_sym__val_number_token6] = ACTIONS(992), - [anon_sym_DQUOTE] = ACTIONS(998), - [sym__str_single_quotes] = ACTIONS(998), - [sym__str_back_ticks] = ACTIONS(998), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), - [anon_sym_COLON2] = ACTIONS(2285), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(998), - }, - [560] = { - [sym_comment] = STATE(560), - [aux_sym__multiple_types_repeat1] = STATE(560), - [anon_sym_export] = ACTIONS(2287), - [anon_sym_alias] = ACTIONS(2287), - [anon_sym_let] = ACTIONS(2287), - [anon_sym_let_DASHenv] = ACTIONS(2287), - [anon_sym_mut] = ACTIONS(2287), - [anon_sym_const] = ACTIONS(2287), - [aux_sym_cmd_identifier_token1] = ACTIONS(2287), - [aux_sym_cmd_identifier_token2] = ACTIONS(2287), - [aux_sym_cmd_identifier_token3] = ACTIONS(2287), - [aux_sym_cmd_identifier_token4] = ACTIONS(2287), - [aux_sym_cmd_identifier_token5] = ACTIONS(2287), - [aux_sym_cmd_identifier_token6] = ACTIONS(2287), - [aux_sym_cmd_identifier_token7] = ACTIONS(2287), - [aux_sym_cmd_identifier_token8] = ACTIONS(2287), - [aux_sym_cmd_identifier_token9] = ACTIONS(2287), - [aux_sym_cmd_identifier_token10] = ACTIONS(2287), - [aux_sym_cmd_identifier_token11] = ACTIONS(2287), - [aux_sym_cmd_identifier_token12] = ACTIONS(2287), - [aux_sym_cmd_identifier_token13] = ACTIONS(2287), - [aux_sym_cmd_identifier_token14] = ACTIONS(2287), - [aux_sym_cmd_identifier_token15] = ACTIONS(2287), - [aux_sym_cmd_identifier_token16] = ACTIONS(2287), - [aux_sym_cmd_identifier_token17] = ACTIONS(2287), - [aux_sym_cmd_identifier_token18] = ACTIONS(2287), - [aux_sym_cmd_identifier_token19] = ACTIONS(2287), - [aux_sym_cmd_identifier_token20] = ACTIONS(2287), - [aux_sym_cmd_identifier_token21] = ACTIONS(2287), - [aux_sym_cmd_identifier_token22] = ACTIONS(2287), - [aux_sym_cmd_identifier_token23] = ACTIONS(2287), - [aux_sym_cmd_identifier_token24] = ACTIONS(2287), - [aux_sym_cmd_identifier_token25] = ACTIONS(2287), - [aux_sym_cmd_identifier_token26] = ACTIONS(2287), - [aux_sym_cmd_identifier_token27] = ACTIONS(2287), - [aux_sym_cmd_identifier_token28] = ACTIONS(2287), - [aux_sym_cmd_identifier_token29] = ACTIONS(2287), - [aux_sym_cmd_identifier_token30] = ACTIONS(2287), - [aux_sym_cmd_identifier_token31] = ACTIONS(2287), - [aux_sym_cmd_identifier_token32] = ACTIONS(2287), - [aux_sym_cmd_identifier_token33] = ACTIONS(2287), - [aux_sym_cmd_identifier_token34] = ACTIONS(2287), - [aux_sym_cmd_identifier_token35] = ACTIONS(2287), - [aux_sym_cmd_identifier_token36] = ACTIONS(2287), - [aux_sym_cmd_identifier_token37] = ACTIONS(2287), - [aux_sym_cmd_identifier_token38] = ACTIONS(2287), - [aux_sym_cmd_identifier_token39] = ACTIONS(2287), - [aux_sym_cmd_identifier_token40] = ACTIONS(2287), - [anon_sym_def] = ACTIONS(2287), - [anon_sym_export_DASHenv] = ACTIONS(2287), - [anon_sym_extern] = ACTIONS(2287), - [anon_sym_module] = ACTIONS(2287), - [anon_sym_use] = ACTIONS(2287), - [anon_sym_LPAREN] = ACTIONS(2287), - [anon_sym_DOLLAR] = ACTIONS(2287), - [anon_sym_error] = ACTIONS(2287), - [anon_sym_DASH2] = ACTIONS(2287), - [anon_sym_break] = ACTIONS(2287), - [anon_sym_continue] = ACTIONS(2287), - [anon_sym_for] = ACTIONS(2287), - [anon_sym_in2] = ACTIONS(2287), - [anon_sym_loop] = ACTIONS(2287), - [anon_sym_make] = ACTIONS(2287), - [anon_sym_while] = ACTIONS(2287), - [anon_sym_do] = ACTIONS(2287), - [anon_sym_if] = ACTIONS(2287), - [anon_sym_else] = ACTIONS(2287), - [anon_sym_match] = ACTIONS(2287), - [anon_sym_RBRACE] = ACTIONS(2287), - [anon_sym_try] = ACTIONS(2287), - [anon_sym_catch] = ACTIONS(2287), - [anon_sym_return] = ACTIONS(2287), - [anon_sym_source] = ACTIONS(2287), - [anon_sym_source_DASHenv] = ACTIONS(2287), - [anon_sym_register] = ACTIONS(2287), - [anon_sym_hide] = ACTIONS(2287), - [anon_sym_hide_DASHenv] = ACTIONS(2287), - [anon_sym_overlay] = ACTIONS(2287), - [anon_sym_as] = ACTIONS(2287), - [anon_sym_PLUS2] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2287), - [aux_sym__val_number_decimal_token1] = ACTIONS(2287), - [aux_sym__val_number_decimal_token2] = ACTIONS(2287), - [aux_sym__val_number_decimal_token3] = ACTIONS(2287), - [aux_sym__val_number_decimal_token4] = ACTIONS(2287), - [aux_sym__val_number_token1] = ACTIONS(2287), - [aux_sym__val_number_token2] = ACTIONS(2287), - [aux_sym__val_number_token3] = ACTIONS(2287), - [aux_sym__val_number_token4] = ACTIONS(2287), - [aux_sym__val_number_token5] = ACTIONS(2287), - [aux_sym__val_number_token6] = ACTIONS(2287), - [anon_sym_DQUOTE] = ACTIONS(2287), - [sym__str_single_quotes] = ACTIONS(2287), - [sym__str_back_ticks] = ACTIONS(2287), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2287), - [sym__entry_separator] = ACTIONS(2289), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2292), - }, - [561] = { - [sym_comment] = STATE(561), - [anon_sym_export] = ACTIONS(2229), - [anon_sym_alias] = ACTIONS(2229), - [anon_sym_let] = ACTIONS(2229), - [anon_sym_let_DASHenv] = ACTIONS(2229), - [anon_sym_mut] = ACTIONS(2229), - [anon_sym_const] = ACTIONS(2229), - [aux_sym_cmd_identifier_token1] = ACTIONS(2229), - [aux_sym_cmd_identifier_token2] = ACTIONS(2229), - [aux_sym_cmd_identifier_token3] = ACTIONS(2229), - [aux_sym_cmd_identifier_token4] = ACTIONS(2229), - [aux_sym_cmd_identifier_token5] = ACTIONS(2229), - [aux_sym_cmd_identifier_token6] = ACTIONS(2229), - [aux_sym_cmd_identifier_token7] = ACTIONS(2229), - [aux_sym_cmd_identifier_token8] = ACTIONS(2229), - [aux_sym_cmd_identifier_token9] = ACTIONS(2229), - [aux_sym_cmd_identifier_token10] = ACTIONS(2229), - [aux_sym_cmd_identifier_token11] = ACTIONS(2229), - [aux_sym_cmd_identifier_token12] = ACTIONS(2229), - [aux_sym_cmd_identifier_token13] = ACTIONS(2229), - [aux_sym_cmd_identifier_token14] = ACTIONS(2229), - [aux_sym_cmd_identifier_token15] = ACTIONS(2229), - [aux_sym_cmd_identifier_token16] = ACTIONS(2229), - [aux_sym_cmd_identifier_token17] = ACTIONS(2229), - [aux_sym_cmd_identifier_token18] = ACTIONS(2229), - [aux_sym_cmd_identifier_token19] = ACTIONS(2229), - [aux_sym_cmd_identifier_token20] = ACTIONS(2229), - [aux_sym_cmd_identifier_token21] = ACTIONS(2229), - [aux_sym_cmd_identifier_token22] = ACTIONS(2229), - [aux_sym_cmd_identifier_token23] = ACTIONS(2229), - [aux_sym_cmd_identifier_token24] = ACTIONS(2229), - [aux_sym_cmd_identifier_token25] = ACTIONS(2229), - [aux_sym_cmd_identifier_token26] = ACTIONS(2229), - [aux_sym_cmd_identifier_token27] = ACTIONS(2229), - [aux_sym_cmd_identifier_token28] = ACTIONS(2229), - [aux_sym_cmd_identifier_token29] = ACTIONS(2229), - [aux_sym_cmd_identifier_token30] = ACTIONS(2229), - [aux_sym_cmd_identifier_token31] = ACTIONS(2229), - [aux_sym_cmd_identifier_token32] = ACTIONS(2229), - [aux_sym_cmd_identifier_token33] = ACTIONS(2229), - [aux_sym_cmd_identifier_token34] = ACTIONS(2229), - [aux_sym_cmd_identifier_token35] = ACTIONS(2229), - [aux_sym_cmd_identifier_token36] = ACTIONS(2229), - [aux_sym_cmd_identifier_token37] = ACTIONS(2229), - [aux_sym_cmd_identifier_token38] = ACTIONS(2229), - [aux_sym_cmd_identifier_token39] = ACTIONS(2229), - [aux_sym_cmd_identifier_token40] = ACTIONS(2229), - [anon_sym_def] = ACTIONS(2229), - [anon_sym_export_DASHenv] = ACTIONS(2229), - [anon_sym_extern] = ACTIONS(2229), - [anon_sym_module] = ACTIONS(2229), - [anon_sym_use] = ACTIONS(2229), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_error] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_break] = ACTIONS(2229), - [anon_sym_continue] = ACTIONS(2229), - [anon_sym_for] = ACTIONS(2229), - [anon_sym_in2] = ACTIONS(2229), - [anon_sym_loop] = ACTIONS(2229), - [anon_sym_make] = ACTIONS(2229), - [anon_sym_while] = ACTIONS(2229), - [anon_sym_do] = ACTIONS(2229), - [anon_sym_if] = ACTIONS(2229), - [anon_sym_else] = ACTIONS(2229), - [anon_sym_match] = ACTIONS(2229), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_try] = ACTIONS(2229), - [anon_sym_catch] = ACTIONS(2229), - [anon_sym_return] = ACTIONS(2229), - [anon_sym_source] = ACTIONS(2229), - [anon_sym_source_DASHenv] = ACTIONS(2229), - [anon_sym_register] = ACTIONS(2229), - [anon_sym_hide] = ACTIONS(2229), - [anon_sym_hide_DASHenv] = ACTIONS(2229), - [anon_sym_overlay] = ACTIONS(2229), - [anon_sym_as] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_PLUS2] = ACTIONS(2229), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2233), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), - }, - [562] = { - [sym_comment] = STATE(562), - [anon_sym_export] = ACTIONS(1865), - [anon_sym_alias] = ACTIONS(1865), - [anon_sym_let] = ACTIONS(1865), - [anon_sym_let_DASHenv] = ACTIONS(1865), - [anon_sym_mut] = ACTIONS(1865), - [anon_sym_const] = ACTIONS(1865), - [aux_sym_cmd_identifier_token1] = ACTIONS(1865), - [aux_sym_cmd_identifier_token2] = ACTIONS(1873), - [aux_sym_cmd_identifier_token3] = ACTIONS(1873), - [aux_sym_cmd_identifier_token4] = ACTIONS(1873), - [aux_sym_cmd_identifier_token5] = ACTIONS(1873), - [aux_sym_cmd_identifier_token6] = ACTIONS(1873), - [aux_sym_cmd_identifier_token7] = ACTIONS(1873), - [aux_sym_cmd_identifier_token8] = ACTIONS(1865), - [aux_sym_cmd_identifier_token9] = ACTIONS(1865), - [aux_sym_cmd_identifier_token10] = ACTIONS(1873), - [aux_sym_cmd_identifier_token11] = ACTIONS(1873), - [aux_sym_cmd_identifier_token12] = ACTIONS(1865), - [aux_sym_cmd_identifier_token13] = ACTIONS(1865), - [aux_sym_cmd_identifier_token14] = ACTIONS(1865), - [aux_sym_cmd_identifier_token15] = ACTIONS(1865), - [aux_sym_cmd_identifier_token16] = ACTIONS(1873), - [aux_sym_cmd_identifier_token17] = ACTIONS(1873), - [aux_sym_cmd_identifier_token18] = ACTIONS(1873), - [aux_sym_cmd_identifier_token19] = ACTIONS(1873), - [aux_sym_cmd_identifier_token20] = ACTIONS(1873), - [aux_sym_cmd_identifier_token21] = ACTIONS(1873), - [aux_sym_cmd_identifier_token22] = ACTIONS(1873), - [aux_sym_cmd_identifier_token23] = ACTIONS(1873), - [aux_sym_cmd_identifier_token24] = ACTIONS(1873), - [aux_sym_cmd_identifier_token25] = ACTIONS(1873), - [aux_sym_cmd_identifier_token26] = ACTIONS(1873), - [aux_sym_cmd_identifier_token27] = ACTIONS(1873), - [aux_sym_cmd_identifier_token28] = ACTIONS(1873), - [aux_sym_cmd_identifier_token29] = ACTIONS(1873), - [aux_sym_cmd_identifier_token30] = ACTIONS(1873), - [aux_sym_cmd_identifier_token31] = ACTIONS(1873), - [aux_sym_cmd_identifier_token32] = ACTIONS(1873), - [aux_sym_cmd_identifier_token33] = ACTIONS(1873), - [aux_sym_cmd_identifier_token34] = ACTIONS(1865), - [aux_sym_cmd_identifier_token35] = ACTIONS(1873), - [aux_sym_cmd_identifier_token36] = ACTIONS(1873), - [aux_sym_cmd_identifier_token37] = ACTIONS(1873), - [aux_sym_cmd_identifier_token38] = ACTIONS(1865), - [aux_sym_cmd_identifier_token39] = ACTIONS(1873), - [aux_sym_cmd_identifier_token40] = ACTIONS(1873), - [anon_sym_def] = ACTIONS(1865), - [anon_sym_export_DASHenv] = ACTIONS(1865), - [anon_sym_extern] = ACTIONS(1865), - [anon_sym_module] = ACTIONS(1865), - [anon_sym_use] = ACTIONS(1865), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1873), - [anon_sym_error] = ACTIONS(1865), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_break] = ACTIONS(1865), - [anon_sym_continue] = ACTIONS(1865), - [anon_sym_for] = ACTIONS(1865), - [anon_sym_in2] = ACTIONS(1865), - [anon_sym_loop] = ACTIONS(1865), - [anon_sym_make] = ACTIONS(1865), - [anon_sym_while] = ACTIONS(1865), - [anon_sym_do] = ACTIONS(1865), - [anon_sym_if] = ACTIONS(1865), - [anon_sym_else] = ACTIONS(1865), - [anon_sym_match] = ACTIONS(1865), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_try] = ACTIONS(1865), - [anon_sym_catch] = ACTIONS(1865), - [anon_sym_return] = ACTIONS(1865), - [anon_sym_source] = ACTIONS(1865), - [anon_sym_source_DASHenv] = ACTIONS(1865), - [anon_sym_register] = ACTIONS(1865), - [anon_sym_hide] = ACTIONS(1865), - [anon_sym_hide_DASHenv] = ACTIONS(1865), - [anon_sym_overlay] = ACTIONS(1865), - [anon_sym_as] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(1865), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1865), - [aux_sym__val_number_token5] = ACTIONS(1865), - [aux_sym__val_number_token6] = ACTIONS(1865), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [563] = { - [sym__expr_parenthesized_immediate] = STATE(7357), - [sym_comment] = STATE(563), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_alias] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_let_DASHenv] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [aux_sym_cmd_identifier_token1] = ACTIONS(2124), - [aux_sym_cmd_identifier_token2] = ACTIONS(2130), - [aux_sym_cmd_identifier_token3] = ACTIONS(2130), - [aux_sym_cmd_identifier_token4] = ACTIONS(2130), - [aux_sym_cmd_identifier_token5] = ACTIONS(2130), - [aux_sym_cmd_identifier_token6] = ACTIONS(2130), - [aux_sym_cmd_identifier_token7] = ACTIONS(2130), - [aux_sym_cmd_identifier_token8] = ACTIONS(2124), - [aux_sym_cmd_identifier_token9] = ACTIONS(2124), - [aux_sym_cmd_identifier_token10] = ACTIONS(2130), - [aux_sym_cmd_identifier_token11] = ACTIONS(2130), - [aux_sym_cmd_identifier_token12] = ACTIONS(2124), - [aux_sym_cmd_identifier_token13] = ACTIONS(2124), - [aux_sym_cmd_identifier_token14] = ACTIONS(2124), - [aux_sym_cmd_identifier_token15] = ACTIONS(2124), - [aux_sym_cmd_identifier_token16] = ACTIONS(2130), - [aux_sym_cmd_identifier_token17] = ACTIONS(2130), - [aux_sym_cmd_identifier_token18] = ACTIONS(2130), - [aux_sym_cmd_identifier_token19] = ACTIONS(2130), - [aux_sym_cmd_identifier_token20] = ACTIONS(2130), - [aux_sym_cmd_identifier_token21] = ACTIONS(2130), - [aux_sym_cmd_identifier_token22] = ACTIONS(2130), - [aux_sym_cmd_identifier_token23] = ACTIONS(2130), - [aux_sym_cmd_identifier_token24] = ACTIONS(2130), - [aux_sym_cmd_identifier_token25] = ACTIONS(2130), - [aux_sym_cmd_identifier_token26] = ACTIONS(2130), - [aux_sym_cmd_identifier_token27] = ACTIONS(2130), - [aux_sym_cmd_identifier_token28] = ACTIONS(2130), - [aux_sym_cmd_identifier_token29] = ACTIONS(2130), - [aux_sym_cmd_identifier_token30] = ACTIONS(2130), - [aux_sym_cmd_identifier_token31] = ACTIONS(2130), - [aux_sym_cmd_identifier_token32] = ACTIONS(2130), - [aux_sym_cmd_identifier_token33] = ACTIONS(2130), - [aux_sym_cmd_identifier_token34] = ACTIONS(2124), - [aux_sym_cmd_identifier_token35] = ACTIONS(2130), - [aux_sym_cmd_identifier_token36] = ACTIONS(2130), - [aux_sym_cmd_identifier_token37] = ACTIONS(2130), - [aux_sym_cmd_identifier_token38] = ACTIONS(2124), - [aux_sym_cmd_identifier_token39] = ACTIONS(2130), - [aux_sym_cmd_identifier_token40] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2124), - [anon_sym_export_DASHenv] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_error] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_in2] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_make] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_do] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_else] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2124), - [anon_sym_catch] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_source] = ACTIONS(2124), - [anon_sym_source_DASHenv] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_hide] = ACTIONS(2124), - [anon_sym_hide_DASHenv] = ACTIONS(2124), - [anon_sym_overlay] = ACTIONS(2124), - [anon_sym_as] = ACTIONS(2124), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2124), - [aux_sym__val_number_decimal_token2] = ACTIONS(2130), - [aux_sym__val_number_decimal_token3] = ACTIONS(2130), - [aux_sym__val_number_decimal_token4] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2124), - [aux_sym__val_number_token5] = ACTIONS(2124), - [aux_sym__val_number_token6] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2130), - }, - [564] = { - [sym_comment] = STATE(564), - [anon_sym_export] = ACTIONS(2194), - [anon_sym_alias] = ACTIONS(2194), - [anon_sym_let] = ACTIONS(2194), - [anon_sym_let_DASHenv] = ACTIONS(2194), - [anon_sym_mut] = ACTIONS(2194), - [anon_sym_const] = ACTIONS(2194), - [aux_sym_cmd_identifier_token1] = ACTIONS(2194), - [aux_sym_cmd_identifier_token2] = ACTIONS(2198), - [aux_sym_cmd_identifier_token3] = ACTIONS(2198), - [aux_sym_cmd_identifier_token4] = ACTIONS(2198), - [aux_sym_cmd_identifier_token5] = ACTIONS(2198), - [aux_sym_cmd_identifier_token6] = ACTIONS(2198), - [aux_sym_cmd_identifier_token7] = ACTIONS(2198), - [aux_sym_cmd_identifier_token8] = ACTIONS(2194), - [aux_sym_cmd_identifier_token9] = ACTIONS(2194), - [aux_sym_cmd_identifier_token10] = ACTIONS(2198), - [aux_sym_cmd_identifier_token11] = ACTIONS(2198), - [aux_sym_cmd_identifier_token12] = ACTIONS(2194), - [aux_sym_cmd_identifier_token13] = ACTIONS(2194), - [aux_sym_cmd_identifier_token14] = ACTIONS(2194), - [aux_sym_cmd_identifier_token15] = ACTIONS(2194), - [aux_sym_cmd_identifier_token16] = ACTIONS(2198), - [aux_sym_cmd_identifier_token17] = ACTIONS(2198), - [aux_sym_cmd_identifier_token18] = ACTIONS(2198), - [aux_sym_cmd_identifier_token19] = ACTIONS(2198), - [aux_sym_cmd_identifier_token20] = ACTIONS(2198), - [aux_sym_cmd_identifier_token21] = ACTIONS(2198), - [aux_sym_cmd_identifier_token22] = ACTIONS(2198), - [aux_sym_cmd_identifier_token23] = ACTIONS(2198), - [aux_sym_cmd_identifier_token24] = ACTIONS(2198), - [aux_sym_cmd_identifier_token25] = ACTIONS(2198), - [aux_sym_cmd_identifier_token26] = ACTIONS(2198), - [aux_sym_cmd_identifier_token27] = ACTIONS(2198), - [aux_sym_cmd_identifier_token28] = ACTIONS(2198), - [aux_sym_cmd_identifier_token29] = ACTIONS(2198), - [aux_sym_cmd_identifier_token30] = ACTIONS(2198), - [aux_sym_cmd_identifier_token31] = ACTIONS(2198), - [aux_sym_cmd_identifier_token32] = ACTIONS(2198), - [aux_sym_cmd_identifier_token33] = ACTIONS(2198), - [aux_sym_cmd_identifier_token34] = ACTIONS(2194), - [aux_sym_cmd_identifier_token35] = ACTIONS(2198), - [aux_sym_cmd_identifier_token36] = ACTIONS(2198), - [aux_sym_cmd_identifier_token37] = ACTIONS(2198), - [aux_sym_cmd_identifier_token38] = ACTIONS(2194), - [aux_sym_cmd_identifier_token39] = ACTIONS(2198), - [aux_sym_cmd_identifier_token40] = ACTIONS(2198), - [anon_sym_def] = ACTIONS(2194), - [anon_sym_export_DASHenv] = ACTIONS(2194), - [anon_sym_extern] = ACTIONS(2194), - [anon_sym_module] = ACTIONS(2194), - [anon_sym_use] = ACTIONS(2194), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2198), - [anon_sym_error] = ACTIONS(2194), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_break] = ACTIONS(2194), - [anon_sym_continue] = ACTIONS(2194), - [anon_sym_for] = ACTIONS(2194), - [anon_sym_in2] = ACTIONS(2194), - [anon_sym_loop] = ACTIONS(2194), - [anon_sym_make] = ACTIONS(2194), - [anon_sym_while] = ACTIONS(2194), - [anon_sym_do] = ACTIONS(2194), - [anon_sym_if] = ACTIONS(2194), - [anon_sym_else] = ACTIONS(2194), - [anon_sym_match] = ACTIONS(2194), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_try] = ACTIONS(2194), - [anon_sym_catch] = ACTIONS(2194), - [anon_sym_return] = ACTIONS(2194), - [anon_sym_source] = ACTIONS(2194), - [anon_sym_source_DASHenv] = ACTIONS(2194), - [anon_sym_register] = ACTIONS(2194), - [anon_sym_hide] = ACTIONS(2194), - [anon_sym_hide_DASHenv] = ACTIONS(2194), - [anon_sym_overlay] = ACTIONS(2194), - [anon_sym_as] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_PLUS2] = ACTIONS(2194), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [aux_sym__val_number_token4] = ACTIONS(2194), - [aux_sym__val_number_token5] = ACTIONS(2194), - [aux_sym__val_number_token6] = ACTIONS(2194), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2198), - [aux_sym__unquoted_in_record_token2] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2198), - }, - [565] = { - [sym_comment] = STATE(565), - [anon_sym_export] = ACTIONS(2188), - [anon_sym_alias] = ACTIONS(2188), - [anon_sym_let] = ACTIONS(2188), - [anon_sym_let_DASHenv] = ACTIONS(2188), - [anon_sym_mut] = ACTIONS(2188), - [anon_sym_const] = ACTIONS(2188), - [aux_sym_cmd_identifier_token1] = ACTIONS(2188), - [aux_sym_cmd_identifier_token2] = ACTIONS(2192), - [aux_sym_cmd_identifier_token3] = ACTIONS(2192), - [aux_sym_cmd_identifier_token4] = ACTIONS(2192), - [aux_sym_cmd_identifier_token5] = ACTIONS(2192), - [aux_sym_cmd_identifier_token6] = ACTIONS(2192), - [aux_sym_cmd_identifier_token7] = ACTIONS(2192), - [aux_sym_cmd_identifier_token8] = ACTIONS(2188), - [aux_sym_cmd_identifier_token9] = ACTIONS(2188), - [aux_sym_cmd_identifier_token10] = ACTIONS(2192), - [aux_sym_cmd_identifier_token11] = ACTIONS(2192), - [aux_sym_cmd_identifier_token12] = ACTIONS(2188), - [aux_sym_cmd_identifier_token13] = ACTIONS(2188), - [aux_sym_cmd_identifier_token14] = ACTIONS(2188), - [aux_sym_cmd_identifier_token15] = ACTIONS(2188), - [aux_sym_cmd_identifier_token16] = ACTIONS(2192), - [aux_sym_cmd_identifier_token17] = ACTIONS(2192), - [aux_sym_cmd_identifier_token18] = ACTIONS(2192), - [aux_sym_cmd_identifier_token19] = ACTIONS(2192), - [aux_sym_cmd_identifier_token20] = ACTIONS(2192), - [aux_sym_cmd_identifier_token21] = ACTIONS(2192), - [aux_sym_cmd_identifier_token22] = ACTIONS(2192), - [aux_sym_cmd_identifier_token23] = ACTIONS(2192), - [aux_sym_cmd_identifier_token24] = ACTIONS(2192), - [aux_sym_cmd_identifier_token25] = ACTIONS(2192), - [aux_sym_cmd_identifier_token26] = ACTIONS(2192), - [aux_sym_cmd_identifier_token27] = ACTIONS(2192), - [aux_sym_cmd_identifier_token28] = ACTIONS(2192), - [aux_sym_cmd_identifier_token29] = ACTIONS(2192), - [aux_sym_cmd_identifier_token30] = ACTIONS(2192), - [aux_sym_cmd_identifier_token31] = ACTIONS(2192), - [aux_sym_cmd_identifier_token32] = ACTIONS(2192), - [aux_sym_cmd_identifier_token33] = ACTIONS(2192), - [aux_sym_cmd_identifier_token34] = ACTIONS(2188), - [aux_sym_cmd_identifier_token35] = ACTIONS(2192), - [aux_sym_cmd_identifier_token36] = ACTIONS(2192), - [aux_sym_cmd_identifier_token37] = ACTIONS(2192), - [aux_sym_cmd_identifier_token38] = ACTIONS(2188), - [aux_sym_cmd_identifier_token39] = ACTIONS(2192), - [aux_sym_cmd_identifier_token40] = ACTIONS(2192), - [anon_sym_def] = ACTIONS(2188), - [anon_sym_export_DASHenv] = ACTIONS(2188), - [anon_sym_extern] = ACTIONS(2188), - [anon_sym_module] = ACTIONS(2188), - [anon_sym_use] = ACTIONS(2188), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_DOLLAR] = ACTIONS(2192), - [anon_sym_error] = ACTIONS(2188), - [anon_sym_DASH2] = ACTIONS(2188), - [anon_sym_break] = ACTIONS(2188), - [anon_sym_continue] = ACTIONS(2188), - [anon_sym_for] = ACTIONS(2188), - [anon_sym_in2] = ACTIONS(2188), - [anon_sym_loop] = ACTIONS(2188), - [anon_sym_make] = ACTIONS(2188), - [anon_sym_while] = ACTIONS(2188), - [anon_sym_do] = ACTIONS(2188), - [anon_sym_if] = ACTIONS(2188), - [anon_sym_else] = ACTIONS(2188), - [anon_sym_match] = ACTIONS(2188), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_try] = ACTIONS(2188), - [anon_sym_catch] = ACTIONS(2188), - [anon_sym_return] = ACTIONS(2188), - [anon_sym_source] = ACTIONS(2188), - [anon_sym_source_DASHenv] = ACTIONS(2188), - [anon_sym_register] = ACTIONS(2188), - [anon_sym_hide] = ACTIONS(2188), - [anon_sym_hide_DASHenv] = ACTIONS(2188), - [anon_sym_overlay] = ACTIONS(2188), - [anon_sym_as] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_PLUS2] = ACTIONS(2188), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2192), - [aux_sym__val_number_decimal_token1] = ACTIONS(2188), - [aux_sym__val_number_decimal_token2] = ACTIONS(2192), - [aux_sym__val_number_decimal_token3] = ACTIONS(2192), - [aux_sym__val_number_decimal_token4] = ACTIONS(2192), - [aux_sym__val_number_token1] = ACTIONS(2192), - [aux_sym__val_number_token2] = ACTIONS(2192), - [aux_sym__val_number_token3] = ACTIONS(2192), - [aux_sym__val_number_token4] = ACTIONS(2188), - [aux_sym__val_number_token5] = ACTIONS(2188), - [aux_sym__val_number_token6] = ACTIONS(2188), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym__str_single_quotes] = ACTIONS(2192), - [sym__str_back_ticks] = ACTIONS(2192), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2192), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2192), - }, - [566] = { - [sym_comment] = STATE(566), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [567] = { - [sym__expr_parenthesized_immediate] = STATE(7357), - [sym_comment] = STATE(567), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2138), - [aux_sym_cmd_identifier_token3] = ACTIONS(2138), - [aux_sym_cmd_identifier_token4] = ACTIONS(2138), - [aux_sym_cmd_identifier_token5] = ACTIONS(2138), - [aux_sym_cmd_identifier_token6] = ACTIONS(2138), - [aux_sym_cmd_identifier_token7] = ACTIONS(2138), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2138), - [aux_sym_cmd_identifier_token11] = ACTIONS(2138), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2138), - [aux_sym_cmd_identifier_token17] = ACTIONS(2138), - [aux_sym_cmd_identifier_token18] = ACTIONS(2138), - [aux_sym_cmd_identifier_token19] = ACTIONS(2138), - [aux_sym_cmd_identifier_token20] = ACTIONS(2138), - [aux_sym_cmd_identifier_token21] = ACTIONS(2138), - [aux_sym_cmd_identifier_token22] = ACTIONS(2138), - [aux_sym_cmd_identifier_token23] = ACTIONS(2138), - [aux_sym_cmd_identifier_token24] = ACTIONS(2138), - [aux_sym_cmd_identifier_token25] = ACTIONS(2138), - [aux_sym_cmd_identifier_token26] = ACTIONS(2138), - [aux_sym_cmd_identifier_token27] = ACTIONS(2138), - [aux_sym_cmd_identifier_token28] = ACTIONS(2138), - [aux_sym_cmd_identifier_token29] = ACTIONS(2138), - [aux_sym_cmd_identifier_token30] = ACTIONS(2138), - [aux_sym_cmd_identifier_token31] = ACTIONS(2138), - [aux_sym_cmd_identifier_token32] = ACTIONS(2138), - [aux_sym_cmd_identifier_token33] = ACTIONS(2138), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2138), - [aux_sym_cmd_identifier_token36] = ACTIONS(2138), - [aux_sym_cmd_identifier_token37] = ACTIONS(2138), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2138), - [aux_sym_cmd_identifier_token40] = ACTIONS(2138), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2138), - [aux_sym__val_number_decimal_token3] = ACTIONS(2138), - [aux_sym__val_number_decimal_token4] = ACTIONS(2138), - [aux_sym__val_number_token1] = ACTIONS(2138), - [aux_sym__val_number_token2] = ACTIONS(2138), - [aux_sym__val_number_token3] = ACTIONS(2138), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2138), - [sym__str_single_quotes] = ACTIONS(2138), - [sym__str_back_ticks] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2138), - }, - [568] = { - [sym_comment] = STATE(568), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [aux_sym_cmd_identifier_token37] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [569] = { - [sym_comment] = STATE(569), - [anon_sym_export] = ACTIONS(1786), - [anon_sym_alias] = ACTIONS(1786), - [anon_sym_let] = ACTIONS(1786), - [anon_sym_let_DASHenv] = ACTIONS(1786), - [anon_sym_mut] = ACTIONS(1786), - [anon_sym_const] = ACTIONS(1786), - [aux_sym_cmd_identifier_token1] = ACTIONS(1786), - [aux_sym_cmd_identifier_token2] = ACTIONS(1794), - [aux_sym_cmd_identifier_token3] = ACTIONS(1794), - [aux_sym_cmd_identifier_token4] = ACTIONS(1794), - [aux_sym_cmd_identifier_token5] = ACTIONS(1794), - [aux_sym_cmd_identifier_token6] = ACTIONS(1794), - [aux_sym_cmd_identifier_token7] = ACTIONS(1794), - [aux_sym_cmd_identifier_token8] = ACTIONS(1786), - [aux_sym_cmd_identifier_token9] = ACTIONS(1786), - [aux_sym_cmd_identifier_token10] = ACTIONS(1794), - [aux_sym_cmd_identifier_token11] = ACTIONS(1794), - [aux_sym_cmd_identifier_token12] = ACTIONS(1786), - [aux_sym_cmd_identifier_token13] = ACTIONS(1786), - [aux_sym_cmd_identifier_token14] = ACTIONS(1786), - [aux_sym_cmd_identifier_token15] = ACTIONS(1786), - [aux_sym_cmd_identifier_token16] = ACTIONS(1794), - [aux_sym_cmd_identifier_token17] = ACTIONS(1794), - [aux_sym_cmd_identifier_token18] = ACTIONS(1794), - [aux_sym_cmd_identifier_token19] = ACTIONS(1794), - [aux_sym_cmd_identifier_token20] = ACTIONS(1794), - [aux_sym_cmd_identifier_token21] = ACTIONS(1794), - [aux_sym_cmd_identifier_token22] = ACTIONS(1794), - [aux_sym_cmd_identifier_token23] = ACTIONS(1794), - [aux_sym_cmd_identifier_token24] = ACTIONS(1794), - [aux_sym_cmd_identifier_token25] = ACTIONS(1794), - [aux_sym_cmd_identifier_token26] = ACTIONS(1794), - [aux_sym_cmd_identifier_token27] = ACTIONS(1794), - [aux_sym_cmd_identifier_token28] = ACTIONS(1794), - [aux_sym_cmd_identifier_token29] = ACTIONS(1794), - [aux_sym_cmd_identifier_token30] = ACTIONS(1794), - [aux_sym_cmd_identifier_token31] = ACTIONS(1794), - [aux_sym_cmd_identifier_token32] = ACTIONS(1794), - [aux_sym_cmd_identifier_token33] = ACTIONS(1794), - [aux_sym_cmd_identifier_token34] = ACTIONS(1786), - [aux_sym_cmd_identifier_token35] = ACTIONS(1794), - [aux_sym_cmd_identifier_token36] = ACTIONS(1794), - [aux_sym_cmd_identifier_token37] = ACTIONS(1794), - [aux_sym_cmd_identifier_token38] = ACTIONS(1786), - [aux_sym_cmd_identifier_token39] = ACTIONS(1794), - [aux_sym_cmd_identifier_token40] = ACTIONS(1794), - [anon_sym_def] = ACTIONS(1786), - [anon_sym_export_DASHenv] = ACTIONS(1786), - [anon_sym_extern] = ACTIONS(1786), - [anon_sym_module] = ACTIONS(1786), - [anon_sym_use] = ACTIONS(1786), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1794), - [anon_sym_error] = ACTIONS(1786), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_break] = ACTIONS(1786), - [anon_sym_continue] = ACTIONS(1786), - [anon_sym_for] = ACTIONS(1786), - [anon_sym_in2] = ACTIONS(1786), - [anon_sym_loop] = ACTIONS(1786), - [anon_sym_make] = ACTIONS(1786), - [anon_sym_while] = ACTIONS(1786), - [anon_sym_do] = ACTIONS(1786), - [anon_sym_if] = ACTIONS(1786), - [anon_sym_else] = ACTIONS(1786), - [anon_sym_match] = ACTIONS(1786), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_try] = ACTIONS(1786), - [anon_sym_catch] = ACTIONS(1786), - [anon_sym_return] = ACTIONS(1786), - [anon_sym_source] = ACTIONS(1786), - [anon_sym_source_DASHenv] = ACTIONS(1786), - [anon_sym_register] = ACTIONS(1786), - [anon_sym_hide] = ACTIONS(1786), - [anon_sym_hide_DASHenv] = ACTIONS(1786), - [anon_sym_overlay] = ACTIONS(1786), - [anon_sym_as] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_PLUS2] = ACTIONS(1786), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [aux_sym__val_number_token4] = ACTIONS(1786), - [aux_sym__val_number_token5] = ACTIONS(1786), - [aux_sym__val_number_token6] = ACTIONS(1786), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1794), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1794), - }, - [570] = { - [sym_comment] = STATE(570), - [aux_sym__multiple_types_repeat1] = STATE(560), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_alias] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_let_DASHenv] = ACTIONS(2294), - [anon_sym_mut] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [aux_sym_cmd_identifier_token1] = ACTIONS(2294), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2294), - [aux_sym_cmd_identifier_token9] = ACTIONS(2294), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2294), - [aux_sym_cmd_identifier_token13] = ACTIONS(2294), - [aux_sym_cmd_identifier_token14] = ACTIONS(2294), - [aux_sym_cmd_identifier_token15] = ACTIONS(2294), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2294), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2294), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2294), - [anon_sym_export_DASHenv] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_error] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_in2] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_make] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2296), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_catch] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_source] = ACTIONS(2294), - [anon_sym_source_DASHenv] = ACTIONS(2294), - [anon_sym_register] = ACTIONS(2294), - [anon_sym_hide] = ACTIONS(2294), - [anon_sym_hide_DASHenv] = ACTIONS(2294), - [anon_sym_overlay] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2294), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [sym__entry_separator] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), - }, - [571] = { - [sym__expr_parenthesized_immediate] = STATE(7357), - [sym_comment] = STATE(571), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_alias] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_let_DASHenv] = ACTIONS(2140), - [anon_sym_mut] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [aux_sym_cmd_identifier_token1] = ACTIONS(2140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2142), - [aux_sym_cmd_identifier_token3] = ACTIONS(2142), - [aux_sym_cmd_identifier_token4] = ACTIONS(2142), - [aux_sym_cmd_identifier_token5] = ACTIONS(2142), - [aux_sym_cmd_identifier_token6] = ACTIONS(2142), - [aux_sym_cmd_identifier_token7] = ACTIONS(2142), - [aux_sym_cmd_identifier_token8] = ACTIONS(2140), - [aux_sym_cmd_identifier_token9] = ACTIONS(2140), - [aux_sym_cmd_identifier_token10] = ACTIONS(2142), - [aux_sym_cmd_identifier_token11] = ACTIONS(2142), - [aux_sym_cmd_identifier_token12] = ACTIONS(2140), - [aux_sym_cmd_identifier_token13] = ACTIONS(2140), - [aux_sym_cmd_identifier_token14] = ACTIONS(2140), - [aux_sym_cmd_identifier_token15] = ACTIONS(2140), - [aux_sym_cmd_identifier_token16] = ACTIONS(2142), - [aux_sym_cmd_identifier_token17] = ACTIONS(2142), - [aux_sym_cmd_identifier_token18] = ACTIONS(2142), - [aux_sym_cmd_identifier_token19] = ACTIONS(2142), - [aux_sym_cmd_identifier_token20] = ACTIONS(2142), - [aux_sym_cmd_identifier_token21] = ACTIONS(2142), - [aux_sym_cmd_identifier_token22] = ACTIONS(2142), - [aux_sym_cmd_identifier_token23] = ACTIONS(2142), - [aux_sym_cmd_identifier_token24] = ACTIONS(2142), - [aux_sym_cmd_identifier_token25] = ACTIONS(2142), - [aux_sym_cmd_identifier_token26] = ACTIONS(2142), - [aux_sym_cmd_identifier_token27] = ACTIONS(2142), - [aux_sym_cmd_identifier_token28] = ACTIONS(2142), - [aux_sym_cmd_identifier_token29] = ACTIONS(2142), - [aux_sym_cmd_identifier_token30] = ACTIONS(2142), - [aux_sym_cmd_identifier_token31] = ACTIONS(2142), - [aux_sym_cmd_identifier_token32] = ACTIONS(2142), - [aux_sym_cmd_identifier_token33] = ACTIONS(2142), - [aux_sym_cmd_identifier_token34] = ACTIONS(2140), - [aux_sym_cmd_identifier_token35] = ACTIONS(2142), - [aux_sym_cmd_identifier_token36] = ACTIONS(2142), - [aux_sym_cmd_identifier_token37] = ACTIONS(2142), - [aux_sym_cmd_identifier_token38] = ACTIONS(2140), - [aux_sym_cmd_identifier_token39] = ACTIONS(2142), - [aux_sym_cmd_identifier_token40] = ACTIONS(2142), - [anon_sym_def] = ACTIONS(2140), - [anon_sym_export_DASHenv] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2142), - [anon_sym_error] = ACTIONS(2140), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_in2] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_make] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_source] = ACTIONS(2140), - [anon_sym_source_DASHenv] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_hide] = ACTIONS(2140), - [anon_sym_hide_DASHenv] = ACTIONS(2140), - [anon_sym_overlay] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2142), - [aux_sym__val_number_decimal_token1] = ACTIONS(2140), - [aux_sym__val_number_decimal_token2] = ACTIONS(2142), - [aux_sym__val_number_decimal_token3] = ACTIONS(2142), - [aux_sym__val_number_decimal_token4] = ACTIONS(2142), - [aux_sym__val_number_token1] = ACTIONS(2142), - [aux_sym__val_number_token2] = ACTIONS(2142), - [aux_sym__val_number_token3] = ACTIONS(2142), - [aux_sym__val_number_token4] = ACTIONS(2140), - [aux_sym__val_number_token5] = ACTIONS(2140), - [aux_sym__val_number_token6] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym__str_single_quotes] = ACTIONS(2142), - [sym__str_back_ticks] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2142), - }, - [572] = { - [sym_comment] = STATE(572), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [573] = { - [sym_comment] = STATE(573), - [aux_sym__multiple_types_repeat1] = STATE(560), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_alias] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_let_DASHenv] = ACTIONS(2294), - [anon_sym_mut] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [aux_sym_cmd_identifier_token1] = ACTIONS(2294), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2294), - [aux_sym_cmd_identifier_token9] = ACTIONS(2294), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2294), - [aux_sym_cmd_identifier_token13] = ACTIONS(2294), - [aux_sym_cmd_identifier_token14] = ACTIONS(2294), - [aux_sym_cmd_identifier_token15] = ACTIONS(2294), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2294), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2294), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2294), - [anon_sym_export_DASHenv] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_error] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_in2] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_make] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2302), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_catch] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_source] = ACTIONS(2294), - [anon_sym_source_DASHenv] = ACTIONS(2294), - [anon_sym_register] = ACTIONS(2294), - [anon_sym_hide] = ACTIONS(2294), - [anon_sym_hide_DASHenv] = ACTIONS(2294), - [anon_sym_overlay] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2294), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [sym__entry_separator] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), - }, - [574] = { - [sym_comment] = STATE(574), + [556] = { + [sym_comment] = STATE(556), [anon_sym_export] = ACTIONS(984), [anon_sym_alias] = ACTIONS(984), [anon_sym_let] = ACTIONS(984), @@ -142161,6 +140574,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(984), [anon_sym_use] = ACTIONS(984), [anon_sym_LPAREN] = ACTIONS(984), + [anon_sym_COMMA] = ACTIONS(984), [anon_sym_DOLLAR] = ACTIONS(984), [anon_sym_error] = ACTIONS(984), [anon_sym_DASH2] = ACTIONS(984), @@ -142208,210 +140622,620 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(986), }, - [575] = { - [sym_comment] = STATE(575), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [aux_sym__immediate_decimal_token2] = ACTIONS(2182), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), + [557] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(557), + [anon_sym_export] = ACTIONS(2240), + [anon_sym_alias] = ACTIONS(2240), + [anon_sym_let] = ACTIONS(2240), + [anon_sym_let_DASHenv] = ACTIONS(2240), + [anon_sym_mut] = ACTIONS(2240), + [anon_sym_const] = ACTIONS(2240), + [aux_sym_cmd_identifier_token1] = ACTIONS(2240), + [aux_sym_cmd_identifier_token2] = ACTIONS(2242), + [aux_sym_cmd_identifier_token3] = ACTIONS(2242), + [aux_sym_cmd_identifier_token4] = ACTIONS(2242), + [aux_sym_cmd_identifier_token5] = ACTIONS(2242), + [aux_sym_cmd_identifier_token6] = ACTIONS(2242), + [aux_sym_cmd_identifier_token7] = ACTIONS(2242), + [aux_sym_cmd_identifier_token8] = ACTIONS(2240), + [aux_sym_cmd_identifier_token9] = ACTIONS(2240), + [aux_sym_cmd_identifier_token10] = ACTIONS(2242), + [aux_sym_cmd_identifier_token11] = ACTIONS(2242), + [aux_sym_cmd_identifier_token12] = ACTIONS(2240), + [aux_sym_cmd_identifier_token13] = ACTIONS(2240), + [aux_sym_cmd_identifier_token14] = ACTIONS(2240), + [aux_sym_cmd_identifier_token15] = ACTIONS(2240), + [aux_sym_cmd_identifier_token16] = ACTIONS(2242), + [aux_sym_cmd_identifier_token17] = ACTIONS(2242), + [aux_sym_cmd_identifier_token18] = ACTIONS(2242), + [aux_sym_cmd_identifier_token19] = ACTIONS(2242), + [aux_sym_cmd_identifier_token20] = ACTIONS(2242), + [aux_sym_cmd_identifier_token21] = ACTIONS(2242), + [aux_sym_cmd_identifier_token22] = ACTIONS(2242), + [aux_sym_cmd_identifier_token23] = ACTIONS(2242), + [aux_sym_cmd_identifier_token24] = ACTIONS(2242), + [aux_sym_cmd_identifier_token25] = ACTIONS(2242), + [aux_sym_cmd_identifier_token26] = ACTIONS(2242), + [aux_sym_cmd_identifier_token27] = ACTIONS(2242), + [aux_sym_cmd_identifier_token28] = ACTIONS(2242), + [aux_sym_cmd_identifier_token29] = ACTIONS(2242), + [aux_sym_cmd_identifier_token30] = ACTIONS(2242), + [aux_sym_cmd_identifier_token31] = ACTIONS(2242), + [aux_sym_cmd_identifier_token32] = ACTIONS(2242), + [aux_sym_cmd_identifier_token33] = ACTIONS(2242), + [aux_sym_cmd_identifier_token34] = ACTIONS(2240), + [aux_sym_cmd_identifier_token35] = ACTIONS(2242), + [aux_sym_cmd_identifier_token36] = ACTIONS(2242), + [aux_sym_cmd_identifier_token37] = ACTIONS(2242), + [aux_sym_cmd_identifier_token38] = ACTIONS(2240), + [aux_sym_cmd_identifier_token39] = ACTIONS(2242), + [aux_sym_cmd_identifier_token40] = ACTIONS(2242), + [anon_sym_def] = ACTIONS(2240), + [anon_sym_export_DASHenv] = ACTIONS(2240), + [anon_sym_extern] = ACTIONS(2240), + [anon_sym_module] = ACTIONS(2240), + [anon_sym_use] = ACTIONS(2240), + [anon_sym_LPAREN] = ACTIONS(2240), + [anon_sym_COMMA] = ACTIONS(2242), + [anon_sym_DOLLAR] = ACTIONS(2242), + [anon_sym_error] = ACTIONS(2240), + [anon_sym_DASH2] = ACTIONS(2240), + [anon_sym_break] = ACTIONS(2240), + [anon_sym_continue] = ACTIONS(2240), + [anon_sym_for] = ACTIONS(2240), + [anon_sym_in2] = ACTIONS(2240), + [anon_sym_loop] = ACTIONS(2240), + [anon_sym_make] = ACTIONS(2240), + [anon_sym_while] = ACTIONS(2240), + [anon_sym_do] = ACTIONS(2240), + [anon_sym_if] = ACTIONS(2240), + [anon_sym_else] = ACTIONS(2240), + [anon_sym_match] = ACTIONS(2240), + [anon_sym_RBRACE] = ACTIONS(2242), + [anon_sym_try] = ACTIONS(2240), + [anon_sym_catch] = ACTIONS(2240), + [anon_sym_return] = ACTIONS(2240), + [anon_sym_source] = ACTIONS(2240), + [anon_sym_source_DASHenv] = ACTIONS(2240), + [anon_sym_register] = ACTIONS(2240), + [anon_sym_hide] = ACTIONS(2240), + [anon_sym_hide_DASHenv] = ACTIONS(2240), + [anon_sym_overlay] = ACTIONS(2240), + [anon_sym_as] = ACTIONS(2240), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2240), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2242), + [aux_sym__val_number_decimal_token1] = ACTIONS(2240), + [aux_sym__val_number_decimal_token2] = ACTIONS(2242), + [aux_sym__val_number_decimal_token3] = ACTIONS(2242), + [aux_sym__val_number_decimal_token4] = ACTIONS(2242), + [aux_sym__val_number_token1] = ACTIONS(2242), + [aux_sym__val_number_token2] = ACTIONS(2242), + [aux_sym__val_number_token3] = ACTIONS(2242), + [aux_sym__val_number_token4] = ACTIONS(2240), + [aux_sym__val_number_token5] = ACTIONS(2240), + [aux_sym__val_number_token6] = ACTIONS(2240), + [anon_sym_DQUOTE] = ACTIONS(2242), + [sym__str_single_quotes] = ACTIONS(2242), + [sym__str_back_ticks] = ACTIONS(2242), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2242), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2242), }, - [576] = { - [sym_comment] = STATE(576), - [anon_sym_export] = ACTIONS(2265), - [anon_sym_alias] = ACTIONS(2265), - [anon_sym_let] = ACTIONS(2265), - [anon_sym_let_DASHenv] = ACTIONS(2265), - [anon_sym_mut] = ACTIONS(2265), - [anon_sym_const] = ACTIONS(2265), - [aux_sym_cmd_identifier_token1] = ACTIONS(2265), - [aux_sym_cmd_identifier_token2] = ACTIONS(2265), - [aux_sym_cmd_identifier_token3] = ACTIONS(2265), - [aux_sym_cmd_identifier_token4] = ACTIONS(2265), - [aux_sym_cmd_identifier_token5] = ACTIONS(2265), - [aux_sym_cmd_identifier_token6] = ACTIONS(2265), - [aux_sym_cmd_identifier_token7] = ACTIONS(2265), - [aux_sym_cmd_identifier_token8] = ACTIONS(2265), - [aux_sym_cmd_identifier_token9] = ACTIONS(2265), - [aux_sym_cmd_identifier_token10] = ACTIONS(2265), - [aux_sym_cmd_identifier_token11] = ACTIONS(2265), - [aux_sym_cmd_identifier_token12] = ACTIONS(2265), - [aux_sym_cmd_identifier_token13] = ACTIONS(2265), - [aux_sym_cmd_identifier_token14] = ACTIONS(2265), - [aux_sym_cmd_identifier_token15] = ACTIONS(2265), - [aux_sym_cmd_identifier_token16] = ACTIONS(2265), - [aux_sym_cmd_identifier_token17] = ACTIONS(2265), - [aux_sym_cmd_identifier_token18] = ACTIONS(2265), - [aux_sym_cmd_identifier_token19] = ACTIONS(2265), - [aux_sym_cmd_identifier_token20] = ACTIONS(2265), - [aux_sym_cmd_identifier_token21] = ACTIONS(2265), - [aux_sym_cmd_identifier_token22] = ACTIONS(2265), - [aux_sym_cmd_identifier_token23] = ACTIONS(2265), - [aux_sym_cmd_identifier_token24] = ACTIONS(2265), - [aux_sym_cmd_identifier_token25] = ACTIONS(2265), - [aux_sym_cmd_identifier_token26] = ACTIONS(2265), - [aux_sym_cmd_identifier_token27] = ACTIONS(2265), - [aux_sym_cmd_identifier_token28] = ACTIONS(2265), - [aux_sym_cmd_identifier_token29] = ACTIONS(2265), - [aux_sym_cmd_identifier_token30] = ACTIONS(2265), - [aux_sym_cmd_identifier_token31] = ACTIONS(2265), - [aux_sym_cmd_identifier_token32] = ACTIONS(2265), - [aux_sym_cmd_identifier_token33] = ACTIONS(2265), - [aux_sym_cmd_identifier_token34] = ACTIONS(2265), - [aux_sym_cmd_identifier_token35] = ACTIONS(2265), - [aux_sym_cmd_identifier_token36] = ACTIONS(2265), - [aux_sym_cmd_identifier_token37] = ACTIONS(2265), - [aux_sym_cmd_identifier_token38] = ACTIONS(2265), - [aux_sym_cmd_identifier_token39] = ACTIONS(2265), - [aux_sym_cmd_identifier_token40] = ACTIONS(2265), - [anon_sym_def] = ACTIONS(2265), - [anon_sym_export_DASHenv] = ACTIONS(2265), - [anon_sym_extern] = ACTIONS(2265), - [anon_sym_module] = ACTIONS(2265), - [anon_sym_use] = ACTIONS(2265), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_error] = ACTIONS(2265), - [anon_sym_DASH2] = ACTIONS(2265), - [anon_sym_break] = ACTIONS(2265), - [anon_sym_continue] = ACTIONS(2265), - [anon_sym_for] = ACTIONS(2265), - [anon_sym_in2] = ACTIONS(2265), - [anon_sym_loop] = ACTIONS(2265), - [anon_sym_make] = ACTIONS(2265), - [anon_sym_while] = ACTIONS(2265), - [anon_sym_do] = ACTIONS(2265), - [anon_sym_if] = ACTIONS(2265), - [anon_sym_else] = ACTIONS(2265), - [anon_sym_match] = ACTIONS(2265), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_try] = ACTIONS(2265), - [anon_sym_catch] = ACTIONS(2265), - [anon_sym_return] = ACTIONS(2265), - [anon_sym_source] = ACTIONS(2265), - [anon_sym_source_DASHenv] = ACTIONS(2265), - [anon_sym_register] = ACTIONS(2265), - [anon_sym_hide] = ACTIONS(2265), - [anon_sym_hide_DASHenv] = ACTIONS(2265), - [anon_sym_overlay] = ACTIONS(2265), - [anon_sym_as] = ACTIONS(2265), - [anon_sym_LPAREN2] = ACTIONS(2267), - [anon_sym_PLUS2] = ACTIONS(2265), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2265), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [aux_sym__val_number_token4] = ACTIONS(2265), - [aux_sym__val_number_token5] = ACTIONS(2265), - [aux_sym__val_number_token6] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2267), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2267), + [558] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(558), + [anon_sym_export] = ACTIONS(2244), + [anon_sym_alias] = ACTIONS(2244), + [anon_sym_let] = ACTIONS(2244), + [anon_sym_let_DASHenv] = ACTIONS(2244), + [anon_sym_mut] = ACTIONS(2244), + [anon_sym_const] = ACTIONS(2244), + [aux_sym_cmd_identifier_token1] = ACTIONS(2244), + [aux_sym_cmd_identifier_token2] = ACTIONS(2246), + [aux_sym_cmd_identifier_token3] = ACTIONS(2246), + [aux_sym_cmd_identifier_token4] = ACTIONS(2246), + [aux_sym_cmd_identifier_token5] = ACTIONS(2246), + [aux_sym_cmd_identifier_token6] = ACTIONS(2246), + [aux_sym_cmd_identifier_token7] = ACTIONS(2246), + [aux_sym_cmd_identifier_token8] = ACTIONS(2244), + [aux_sym_cmd_identifier_token9] = ACTIONS(2244), + [aux_sym_cmd_identifier_token10] = ACTIONS(2246), + [aux_sym_cmd_identifier_token11] = ACTIONS(2246), + [aux_sym_cmd_identifier_token12] = ACTIONS(2244), + [aux_sym_cmd_identifier_token13] = ACTIONS(2244), + [aux_sym_cmd_identifier_token14] = ACTIONS(2244), + [aux_sym_cmd_identifier_token15] = ACTIONS(2244), + [aux_sym_cmd_identifier_token16] = ACTIONS(2246), + [aux_sym_cmd_identifier_token17] = ACTIONS(2246), + [aux_sym_cmd_identifier_token18] = ACTIONS(2246), + [aux_sym_cmd_identifier_token19] = ACTIONS(2246), + [aux_sym_cmd_identifier_token20] = ACTIONS(2246), + [aux_sym_cmd_identifier_token21] = ACTIONS(2246), + [aux_sym_cmd_identifier_token22] = ACTIONS(2246), + [aux_sym_cmd_identifier_token23] = ACTIONS(2246), + [aux_sym_cmd_identifier_token24] = ACTIONS(2246), + [aux_sym_cmd_identifier_token25] = ACTIONS(2246), + [aux_sym_cmd_identifier_token26] = ACTIONS(2246), + [aux_sym_cmd_identifier_token27] = ACTIONS(2246), + [aux_sym_cmd_identifier_token28] = ACTIONS(2246), + [aux_sym_cmd_identifier_token29] = ACTIONS(2246), + [aux_sym_cmd_identifier_token30] = ACTIONS(2246), + [aux_sym_cmd_identifier_token31] = ACTIONS(2246), + [aux_sym_cmd_identifier_token32] = ACTIONS(2246), + [aux_sym_cmd_identifier_token33] = ACTIONS(2246), + [aux_sym_cmd_identifier_token34] = ACTIONS(2244), + [aux_sym_cmd_identifier_token35] = ACTIONS(2246), + [aux_sym_cmd_identifier_token36] = ACTIONS(2246), + [aux_sym_cmd_identifier_token37] = ACTIONS(2246), + [aux_sym_cmd_identifier_token38] = ACTIONS(2244), + [aux_sym_cmd_identifier_token39] = ACTIONS(2246), + [aux_sym_cmd_identifier_token40] = ACTIONS(2246), + [anon_sym_def] = ACTIONS(2244), + [anon_sym_export_DASHenv] = ACTIONS(2244), + [anon_sym_extern] = ACTIONS(2244), + [anon_sym_module] = ACTIONS(2244), + [anon_sym_use] = ACTIONS(2244), + [anon_sym_LPAREN] = ACTIONS(2244), + [anon_sym_COMMA] = ACTIONS(2246), + [anon_sym_DOLLAR] = ACTIONS(2246), + [anon_sym_error] = ACTIONS(2244), + [anon_sym_DASH2] = ACTIONS(2244), + [anon_sym_break] = ACTIONS(2244), + [anon_sym_continue] = ACTIONS(2244), + [anon_sym_for] = ACTIONS(2244), + [anon_sym_in2] = ACTIONS(2244), + [anon_sym_loop] = ACTIONS(2244), + [anon_sym_make] = ACTIONS(2244), + [anon_sym_while] = ACTIONS(2244), + [anon_sym_do] = ACTIONS(2244), + [anon_sym_if] = ACTIONS(2244), + [anon_sym_else] = ACTIONS(2244), + [anon_sym_match] = ACTIONS(2244), + [anon_sym_RBRACE] = ACTIONS(2246), + [anon_sym_try] = ACTIONS(2244), + [anon_sym_catch] = ACTIONS(2244), + [anon_sym_return] = ACTIONS(2244), + [anon_sym_source] = ACTIONS(2244), + [anon_sym_source_DASHenv] = ACTIONS(2244), + [anon_sym_register] = ACTIONS(2244), + [anon_sym_hide] = ACTIONS(2244), + [anon_sym_hide_DASHenv] = ACTIONS(2244), + [anon_sym_overlay] = ACTIONS(2244), + [anon_sym_as] = ACTIONS(2244), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2244), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2246), + [aux_sym__val_number_decimal_token1] = ACTIONS(2244), + [aux_sym__val_number_decimal_token2] = ACTIONS(2246), + [aux_sym__val_number_decimal_token3] = ACTIONS(2246), + [aux_sym__val_number_decimal_token4] = ACTIONS(2246), + [aux_sym__val_number_token1] = ACTIONS(2246), + [aux_sym__val_number_token2] = ACTIONS(2246), + [aux_sym__val_number_token3] = ACTIONS(2246), + [aux_sym__val_number_token4] = ACTIONS(2244), + [aux_sym__val_number_token5] = ACTIONS(2244), + [aux_sym__val_number_token6] = ACTIONS(2244), + [anon_sym_DQUOTE] = ACTIONS(2246), + [sym__str_single_quotes] = ACTIONS(2246), + [sym__str_back_ticks] = ACTIONS(2246), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2246), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2246), }, - [577] = { - [sym_comment] = STATE(577), + [559] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(559), + [anon_sym_export] = ACTIONS(2248), + [anon_sym_alias] = ACTIONS(2248), + [anon_sym_let] = ACTIONS(2248), + [anon_sym_let_DASHenv] = ACTIONS(2248), + [anon_sym_mut] = ACTIONS(2248), + [anon_sym_const] = ACTIONS(2248), + [aux_sym_cmd_identifier_token1] = ACTIONS(2248), + [aux_sym_cmd_identifier_token2] = ACTIONS(2250), + [aux_sym_cmd_identifier_token3] = ACTIONS(2250), + [aux_sym_cmd_identifier_token4] = ACTIONS(2250), + [aux_sym_cmd_identifier_token5] = ACTIONS(2250), + [aux_sym_cmd_identifier_token6] = ACTIONS(2250), + [aux_sym_cmd_identifier_token7] = ACTIONS(2250), + [aux_sym_cmd_identifier_token8] = ACTIONS(2248), + [aux_sym_cmd_identifier_token9] = ACTIONS(2248), + [aux_sym_cmd_identifier_token10] = ACTIONS(2250), + [aux_sym_cmd_identifier_token11] = ACTIONS(2250), + [aux_sym_cmd_identifier_token12] = ACTIONS(2248), + [aux_sym_cmd_identifier_token13] = ACTIONS(2248), + [aux_sym_cmd_identifier_token14] = ACTIONS(2248), + [aux_sym_cmd_identifier_token15] = ACTIONS(2248), + [aux_sym_cmd_identifier_token16] = ACTIONS(2250), + [aux_sym_cmd_identifier_token17] = ACTIONS(2250), + [aux_sym_cmd_identifier_token18] = ACTIONS(2250), + [aux_sym_cmd_identifier_token19] = ACTIONS(2250), + [aux_sym_cmd_identifier_token20] = ACTIONS(2250), + [aux_sym_cmd_identifier_token21] = ACTIONS(2250), + [aux_sym_cmd_identifier_token22] = ACTIONS(2250), + [aux_sym_cmd_identifier_token23] = ACTIONS(2250), + [aux_sym_cmd_identifier_token24] = ACTIONS(2250), + [aux_sym_cmd_identifier_token25] = ACTIONS(2250), + [aux_sym_cmd_identifier_token26] = ACTIONS(2250), + [aux_sym_cmd_identifier_token27] = ACTIONS(2250), + [aux_sym_cmd_identifier_token28] = ACTIONS(2250), + [aux_sym_cmd_identifier_token29] = ACTIONS(2250), + [aux_sym_cmd_identifier_token30] = ACTIONS(2250), + [aux_sym_cmd_identifier_token31] = ACTIONS(2250), + [aux_sym_cmd_identifier_token32] = ACTIONS(2250), + [aux_sym_cmd_identifier_token33] = ACTIONS(2250), + [aux_sym_cmd_identifier_token34] = ACTIONS(2248), + [aux_sym_cmd_identifier_token35] = ACTIONS(2250), + [aux_sym_cmd_identifier_token36] = ACTIONS(2250), + [aux_sym_cmd_identifier_token37] = ACTIONS(2250), + [aux_sym_cmd_identifier_token38] = ACTIONS(2248), + [aux_sym_cmd_identifier_token39] = ACTIONS(2250), + [aux_sym_cmd_identifier_token40] = ACTIONS(2250), + [anon_sym_def] = ACTIONS(2248), + [anon_sym_export_DASHenv] = ACTIONS(2248), + [anon_sym_extern] = ACTIONS(2248), + [anon_sym_module] = ACTIONS(2248), + [anon_sym_use] = ACTIONS(2248), + [anon_sym_LPAREN] = ACTIONS(2248), + [anon_sym_COMMA] = ACTIONS(2250), + [anon_sym_DOLLAR] = ACTIONS(2250), + [anon_sym_error] = ACTIONS(2248), + [anon_sym_DASH2] = ACTIONS(2248), + [anon_sym_break] = ACTIONS(2248), + [anon_sym_continue] = ACTIONS(2248), + [anon_sym_for] = ACTIONS(2248), + [anon_sym_in2] = ACTIONS(2248), + [anon_sym_loop] = ACTIONS(2248), + [anon_sym_make] = ACTIONS(2248), + [anon_sym_while] = ACTIONS(2248), + [anon_sym_do] = ACTIONS(2248), + [anon_sym_if] = ACTIONS(2248), + [anon_sym_else] = ACTIONS(2248), + [anon_sym_match] = ACTIONS(2248), + [anon_sym_RBRACE] = ACTIONS(2250), + [anon_sym_try] = ACTIONS(2248), + [anon_sym_catch] = ACTIONS(2248), + [anon_sym_return] = ACTIONS(2248), + [anon_sym_source] = ACTIONS(2248), + [anon_sym_source_DASHenv] = ACTIONS(2248), + [anon_sym_register] = ACTIONS(2248), + [anon_sym_hide] = ACTIONS(2248), + [anon_sym_hide_DASHenv] = ACTIONS(2248), + [anon_sym_overlay] = ACTIONS(2248), + [anon_sym_as] = ACTIONS(2248), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2248), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2250), + [aux_sym__val_number_decimal_token1] = ACTIONS(2248), + [aux_sym__val_number_decimal_token2] = ACTIONS(2250), + [aux_sym__val_number_decimal_token3] = ACTIONS(2250), + [aux_sym__val_number_decimal_token4] = ACTIONS(2250), + [aux_sym__val_number_token1] = ACTIONS(2250), + [aux_sym__val_number_token2] = ACTIONS(2250), + [aux_sym__val_number_token3] = ACTIONS(2250), + [aux_sym__val_number_token4] = ACTIONS(2248), + [aux_sym__val_number_token5] = ACTIONS(2248), + [aux_sym__val_number_token6] = ACTIONS(2248), + [anon_sym_DQUOTE] = ACTIONS(2250), + [sym__str_single_quotes] = ACTIONS(2250), + [sym__str_back_ticks] = ACTIONS(2250), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2250), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2250), + }, + [560] = { + [sym_comment] = STATE(560), + [anon_sym_export] = ACTIONS(1805), + [anon_sym_alias] = ACTIONS(1805), + [anon_sym_let] = ACTIONS(1805), + [anon_sym_let_DASHenv] = ACTIONS(1805), + [anon_sym_mut] = ACTIONS(1805), + [anon_sym_const] = ACTIONS(1805), + [aux_sym_cmd_identifier_token1] = ACTIONS(1805), + [aux_sym_cmd_identifier_token2] = ACTIONS(1813), + [aux_sym_cmd_identifier_token3] = ACTIONS(1813), + [aux_sym_cmd_identifier_token4] = ACTIONS(1813), + [aux_sym_cmd_identifier_token5] = ACTIONS(1813), + [aux_sym_cmd_identifier_token6] = ACTIONS(1813), + [aux_sym_cmd_identifier_token7] = ACTIONS(1813), + [aux_sym_cmd_identifier_token8] = ACTIONS(1805), + [aux_sym_cmd_identifier_token9] = ACTIONS(1805), + [aux_sym_cmd_identifier_token10] = ACTIONS(1813), + [aux_sym_cmd_identifier_token11] = ACTIONS(1813), + [aux_sym_cmd_identifier_token12] = ACTIONS(1805), + [aux_sym_cmd_identifier_token13] = ACTIONS(1805), + [aux_sym_cmd_identifier_token14] = ACTIONS(1805), + [aux_sym_cmd_identifier_token15] = ACTIONS(1805), + [aux_sym_cmd_identifier_token16] = ACTIONS(1813), + [aux_sym_cmd_identifier_token17] = ACTIONS(1813), + [aux_sym_cmd_identifier_token18] = ACTIONS(1813), + [aux_sym_cmd_identifier_token19] = ACTIONS(1813), + [aux_sym_cmd_identifier_token20] = ACTIONS(1813), + [aux_sym_cmd_identifier_token21] = ACTIONS(1813), + [aux_sym_cmd_identifier_token22] = ACTIONS(1813), + [aux_sym_cmd_identifier_token23] = ACTIONS(1813), + [aux_sym_cmd_identifier_token24] = ACTIONS(1813), + [aux_sym_cmd_identifier_token25] = ACTIONS(1813), + [aux_sym_cmd_identifier_token26] = ACTIONS(1813), + [aux_sym_cmd_identifier_token27] = ACTIONS(1813), + [aux_sym_cmd_identifier_token28] = ACTIONS(1813), + [aux_sym_cmd_identifier_token29] = ACTIONS(1813), + [aux_sym_cmd_identifier_token30] = ACTIONS(1813), + [aux_sym_cmd_identifier_token31] = ACTIONS(1813), + [aux_sym_cmd_identifier_token32] = ACTIONS(1813), + [aux_sym_cmd_identifier_token33] = ACTIONS(1813), + [aux_sym_cmd_identifier_token34] = ACTIONS(1805), + [aux_sym_cmd_identifier_token35] = ACTIONS(1813), + [aux_sym_cmd_identifier_token36] = ACTIONS(1813), + [aux_sym_cmd_identifier_token37] = ACTIONS(1813), + [aux_sym_cmd_identifier_token38] = ACTIONS(1805), + [aux_sym_cmd_identifier_token39] = ACTIONS(1813), + [aux_sym_cmd_identifier_token40] = ACTIONS(1813), + [anon_sym_def] = ACTIONS(1805), + [anon_sym_export_DASHenv] = ACTIONS(1805), + [anon_sym_extern] = ACTIONS(1805), + [anon_sym_module] = ACTIONS(1805), + [anon_sym_use] = ACTIONS(1805), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_COMMA] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1813), + [anon_sym_error] = ACTIONS(1805), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_break] = ACTIONS(1805), + [anon_sym_continue] = ACTIONS(1805), + [anon_sym_for] = ACTIONS(1805), + [anon_sym_in2] = ACTIONS(1805), + [anon_sym_loop] = ACTIONS(1805), + [anon_sym_make] = ACTIONS(1805), + [anon_sym_while] = ACTIONS(1805), + [anon_sym_do] = ACTIONS(1805), + [anon_sym_if] = ACTIONS(1805), + [anon_sym_else] = ACTIONS(1805), + [anon_sym_match] = ACTIONS(1805), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_try] = ACTIONS(1805), + [anon_sym_catch] = ACTIONS(1805), + [anon_sym_return] = ACTIONS(1805), + [anon_sym_source] = ACTIONS(1805), + [anon_sym_source_DASHenv] = ACTIONS(1805), + [anon_sym_register] = ACTIONS(1805), + [anon_sym_hide] = ACTIONS(1805), + [anon_sym_hide_DASHenv] = ACTIONS(1805), + [anon_sym_overlay] = ACTIONS(1805), + [anon_sym_as] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_PLUS2] = ACTIONS(1805), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1805), + [aux_sym__val_number_token5] = ACTIONS(1805), + [aux_sym__val_number_token6] = ACTIONS(1805), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1813), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [561] = { + [sym__expr_parenthesized_immediate] = STATE(7504), + [sym_comment] = STATE(561), + [anon_sym_export] = ACTIONS(2252), + [anon_sym_alias] = ACTIONS(2252), + [anon_sym_let] = ACTIONS(2252), + [anon_sym_let_DASHenv] = ACTIONS(2252), + [anon_sym_mut] = ACTIONS(2252), + [anon_sym_const] = ACTIONS(2252), + [aux_sym_cmd_identifier_token1] = ACTIONS(2252), + [aux_sym_cmd_identifier_token2] = ACTIONS(2254), + [aux_sym_cmd_identifier_token3] = ACTIONS(2254), + [aux_sym_cmd_identifier_token4] = ACTIONS(2254), + [aux_sym_cmd_identifier_token5] = ACTIONS(2254), + [aux_sym_cmd_identifier_token6] = ACTIONS(2254), + [aux_sym_cmd_identifier_token7] = ACTIONS(2254), + [aux_sym_cmd_identifier_token8] = ACTIONS(2252), + [aux_sym_cmd_identifier_token9] = ACTIONS(2252), + [aux_sym_cmd_identifier_token10] = ACTIONS(2254), + [aux_sym_cmd_identifier_token11] = ACTIONS(2254), + [aux_sym_cmd_identifier_token12] = ACTIONS(2252), + [aux_sym_cmd_identifier_token13] = ACTIONS(2252), + [aux_sym_cmd_identifier_token14] = ACTIONS(2252), + [aux_sym_cmd_identifier_token15] = ACTIONS(2252), + [aux_sym_cmd_identifier_token16] = ACTIONS(2254), + [aux_sym_cmd_identifier_token17] = ACTIONS(2254), + [aux_sym_cmd_identifier_token18] = ACTIONS(2254), + [aux_sym_cmd_identifier_token19] = ACTIONS(2254), + [aux_sym_cmd_identifier_token20] = ACTIONS(2254), + [aux_sym_cmd_identifier_token21] = ACTIONS(2254), + [aux_sym_cmd_identifier_token22] = ACTIONS(2254), + [aux_sym_cmd_identifier_token23] = ACTIONS(2254), + [aux_sym_cmd_identifier_token24] = ACTIONS(2254), + [aux_sym_cmd_identifier_token25] = ACTIONS(2254), + [aux_sym_cmd_identifier_token26] = ACTIONS(2254), + [aux_sym_cmd_identifier_token27] = ACTIONS(2254), + [aux_sym_cmd_identifier_token28] = ACTIONS(2254), + [aux_sym_cmd_identifier_token29] = ACTIONS(2254), + [aux_sym_cmd_identifier_token30] = ACTIONS(2254), + [aux_sym_cmd_identifier_token31] = ACTIONS(2254), + [aux_sym_cmd_identifier_token32] = ACTIONS(2254), + [aux_sym_cmd_identifier_token33] = ACTIONS(2254), + [aux_sym_cmd_identifier_token34] = ACTIONS(2252), + [aux_sym_cmd_identifier_token35] = ACTIONS(2254), + [aux_sym_cmd_identifier_token36] = ACTIONS(2254), + [aux_sym_cmd_identifier_token37] = ACTIONS(2254), + [aux_sym_cmd_identifier_token38] = ACTIONS(2252), + [aux_sym_cmd_identifier_token39] = ACTIONS(2254), + [aux_sym_cmd_identifier_token40] = ACTIONS(2254), + [anon_sym_def] = ACTIONS(2252), + [anon_sym_export_DASHenv] = ACTIONS(2252), + [anon_sym_extern] = ACTIONS(2252), + [anon_sym_module] = ACTIONS(2252), + [anon_sym_use] = ACTIONS(2252), + [anon_sym_LPAREN] = ACTIONS(2252), + [anon_sym_COMMA] = ACTIONS(2254), + [anon_sym_DOLLAR] = ACTIONS(2254), + [anon_sym_error] = ACTIONS(2252), + [anon_sym_DASH2] = ACTIONS(2252), + [anon_sym_break] = ACTIONS(2252), + [anon_sym_continue] = ACTIONS(2252), + [anon_sym_for] = ACTIONS(2252), + [anon_sym_in2] = ACTIONS(2252), + [anon_sym_loop] = ACTIONS(2252), + [anon_sym_make] = ACTIONS(2252), + [anon_sym_while] = ACTIONS(2252), + [anon_sym_do] = ACTIONS(2252), + [anon_sym_if] = ACTIONS(2252), + [anon_sym_else] = ACTIONS(2252), + [anon_sym_match] = ACTIONS(2252), + [anon_sym_RBRACE] = ACTIONS(2254), + [anon_sym_try] = ACTIONS(2252), + [anon_sym_catch] = ACTIONS(2252), + [anon_sym_return] = ACTIONS(2252), + [anon_sym_source] = ACTIONS(2252), + [anon_sym_source_DASHenv] = ACTIONS(2252), + [anon_sym_register] = ACTIONS(2252), + [anon_sym_hide] = ACTIONS(2252), + [anon_sym_hide_DASHenv] = ACTIONS(2252), + [anon_sym_overlay] = ACTIONS(2252), + [anon_sym_as] = ACTIONS(2252), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2252), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2254), + [aux_sym__val_number_decimal_token1] = ACTIONS(2252), + [aux_sym__val_number_decimal_token2] = ACTIONS(2254), + [aux_sym__val_number_decimal_token3] = ACTIONS(2254), + [aux_sym__val_number_decimal_token4] = ACTIONS(2254), + [aux_sym__val_number_token1] = ACTIONS(2254), + [aux_sym__val_number_token2] = ACTIONS(2254), + [aux_sym__val_number_token3] = ACTIONS(2254), + [aux_sym__val_number_token4] = ACTIONS(2252), + [aux_sym__val_number_token5] = ACTIONS(2252), + [aux_sym__val_number_token6] = ACTIONS(2252), + [anon_sym_DQUOTE] = ACTIONS(2254), + [sym__str_single_quotes] = ACTIONS(2254), + [sym__str_back_ticks] = ACTIONS(2254), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2254), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2254), + }, + [562] = { + [sym_comment] = STATE(562), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(2270), + [aux_sym__immediate_decimal_token2] = ACTIONS(2272), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [563] = { + [sym_comment] = STATE(563), [anon_sym_export] = ACTIONS(980), [anon_sym_alias] = ACTIONS(980), [anon_sym_let] = ACTIONS(980), @@ -142419,2522 +141243,1835 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(980), [anon_sym_const] = ACTIONS(980), [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(980), - [aux_sym_cmd_identifier_token3] = ACTIONS(980), - [aux_sym_cmd_identifier_token4] = ACTIONS(980), - [aux_sym_cmd_identifier_token5] = ACTIONS(980), - [aux_sym_cmd_identifier_token6] = ACTIONS(980), - [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(982), + [aux_sym_cmd_identifier_token3] = ACTIONS(982), + [aux_sym_cmd_identifier_token4] = ACTIONS(982), + [aux_sym_cmd_identifier_token5] = ACTIONS(982), + [aux_sym_cmd_identifier_token6] = ACTIONS(982), + [aux_sym_cmd_identifier_token7] = ACTIONS(982), [aux_sym_cmd_identifier_token8] = ACTIONS(980), [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(980), - [aux_sym_cmd_identifier_token11] = ACTIONS(980), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(980), - [aux_sym_cmd_identifier_token17] = ACTIONS(980), - [aux_sym_cmd_identifier_token18] = ACTIONS(980), - [aux_sym_cmd_identifier_token19] = ACTIONS(980), - [aux_sym_cmd_identifier_token20] = ACTIONS(980), - [aux_sym_cmd_identifier_token21] = ACTIONS(980), - [aux_sym_cmd_identifier_token22] = ACTIONS(980), - [aux_sym_cmd_identifier_token23] = ACTIONS(980), - [aux_sym_cmd_identifier_token24] = ACTIONS(980), - [aux_sym_cmd_identifier_token25] = ACTIONS(980), - [aux_sym_cmd_identifier_token26] = ACTIONS(980), - [aux_sym_cmd_identifier_token27] = ACTIONS(980), - [aux_sym_cmd_identifier_token28] = ACTIONS(980), - [aux_sym_cmd_identifier_token29] = ACTIONS(980), - [aux_sym_cmd_identifier_token30] = ACTIONS(980), - [aux_sym_cmd_identifier_token31] = ACTIONS(980), - [aux_sym_cmd_identifier_token32] = ACTIONS(980), - [aux_sym_cmd_identifier_token33] = ACTIONS(980), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(980), - [aux_sym_cmd_identifier_token36] = ACTIONS(980), - [aux_sym_cmd_identifier_token37] = ACTIONS(980), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(980), - [aux_sym_cmd_identifier_token40] = ACTIONS(980), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(980), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(980), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(980), - [aux_sym__val_number_decimal_token3] = ACTIONS(980), - [aux_sym__val_number_decimal_token4] = ACTIONS(980), - [aux_sym__val_number_token1] = ACTIONS(980), - [aux_sym__val_number_token2] = ACTIONS(980), - [aux_sym__val_number_token3] = ACTIONS(980), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(980), - [sym__str_single_quotes] = ACTIONS(980), - [sym__str_back_ticks] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), - [sym__entry_separator] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(982), - }, - [578] = { - [sym_comment] = STATE(578), - [aux_sym__multiple_types_repeat1] = STATE(560), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_alias] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_let_DASHenv] = ACTIONS(2294), - [anon_sym_mut] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [aux_sym_cmd_identifier_token1] = ACTIONS(2294), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2294), - [aux_sym_cmd_identifier_token9] = ACTIONS(2294), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2294), - [aux_sym_cmd_identifier_token13] = ACTIONS(2294), - [aux_sym_cmd_identifier_token14] = ACTIONS(2294), - [aux_sym_cmd_identifier_token15] = ACTIONS(2294), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2294), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2294), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2294), - [anon_sym_export_DASHenv] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_error] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_in2] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_make] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2304), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_catch] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_source] = ACTIONS(2294), - [anon_sym_source_DASHenv] = ACTIONS(2294), - [anon_sym_register] = ACTIONS(2294), - [anon_sym_hide] = ACTIONS(2294), - [anon_sym_hide_DASHenv] = ACTIONS(2294), - [anon_sym_overlay] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2294), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [sym__entry_separator] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), - }, - [579] = { - [sym_comment] = STATE(579), - [aux_sym__multiple_types_repeat1] = STATE(560), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_alias] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_let_DASHenv] = ACTIONS(2294), - [anon_sym_mut] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [aux_sym_cmd_identifier_token1] = ACTIONS(2294), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2294), - [aux_sym_cmd_identifier_token9] = ACTIONS(2294), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2294), - [aux_sym_cmd_identifier_token13] = ACTIONS(2294), - [aux_sym_cmd_identifier_token14] = ACTIONS(2294), - [aux_sym_cmd_identifier_token15] = ACTIONS(2294), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2294), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2294), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2294), - [anon_sym_export_DASHenv] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_error] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_in2] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_make] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_RBRACE] = ACTIONS(2306), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_catch] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_source] = ACTIONS(2294), - [anon_sym_source_DASHenv] = ACTIONS(2294), - [anon_sym_register] = ACTIONS(2294), - [anon_sym_hide] = ACTIONS(2294), - [anon_sym_hide_DASHenv] = ACTIONS(2294), - [anon_sym_overlay] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2294), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [sym__entry_separator] = ACTIONS(2298), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), - }, - [580] = { - [sym_comment] = STATE(580), - [anon_sym_export] = ACTIONS(2245), - [anon_sym_alias] = ACTIONS(2245), - [anon_sym_let] = ACTIONS(2245), - [anon_sym_let_DASHenv] = ACTIONS(2245), - [anon_sym_mut] = ACTIONS(2245), - [anon_sym_const] = ACTIONS(2245), - [aux_sym_cmd_identifier_token1] = ACTIONS(2245), - [aux_sym_cmd_identifier_token2] = ACTIONS(2245), - [aux_sym_cmd_identifier_token3] = ACTIONS(2245), - [aux_sym_cmd_identifier_token4] = ACTIONS(2245), - [aux_sym_cmd_identifier_token5] = ACTIONS(2245), - [aux_sym_cmd_identifier_token6] = ACTIONS(2245), - [aux_sym_cmd_identifier_token7] = ACTIONS(2245), - [aux_sym_cmd_identifier_token8] = ACTIONS(2245), - [aux_sym_cmd_identifier_token9] = ACTIONS(2245), - [aux_sym_cmd_identifier_token10] = ACTIONS(2245), - [aux_sym_cmd_identifier_token11] = ACTIONS(2245), - [aux_sym_cmd_identifier_token12] = ACTIONS(2245), - [aux_sym_cmd_identifier_token13] = ACTIONS(2245), - [aux_sym_cmd_identifier_token14] = ACTIONS(2245), - [aux_sym_cmd_identifier_token15] = ACTIONS(2245), - [aux_sym_cmd_identifier_token16] = ACTIONS(2245), - [aux_sym_cmd_identifier_token17] = ACTIONS(2245), - [aux_sym_cmd_identifier_token18] = ACTIONS(2245), - [aux_sym_cmd_identifier_token19] = ACTIONS(2245), - [aux_sym_cmd_identifier_token20] = ACTIONS(2245), - [aux_sym_cmd_identifier_token21] = ACTIONS(2245), - [aux_sym_cmd_identifier_token22] = ACTIONS(2245), - [aux_sym_cmd_identifier_token23] = ACTIONS(2245), - [aux_sym_cmd_identifier_token24] = ACTIONS(2245), - [aux_sym_cmd_identifier_token25] = ACTIONS(2245), - [aux_sym_cmd_identifier_token26] = ACTIONS(2245), - [aux_sym_cmd_identifier_token27] = ACTIONS(2245), - [aux_sym_cmd_identifier_token28] = ACTIONS(2245), - [aux_sym_cmd_identifier_token29] = ACTIONS(2245), - [aux_sym_cmd_identifier_token30] = ACTIONS(2245), - [aux_sym_cmd_identifier_token31] = ACTIONS(2245), - [aux_sym_cmd_identifier_token32] = ACTIONS(2245), - [aux_sym_cmd_identifier_token33] = ACTIONS(2245), - [aux_sym_cmd_identifier_token34] = ACTIONS(2245), - [aux_sym_cmd_identifier_token35] = ACTIONS(2245), - [aux_sym_cmd_identifier_token36] = ACTIONS(2245), - [aux_sym_cmd_identifier_token37] = ACTIONS(2245), - [aux_sym_cmd_identifier_token38] = ACTIONS(2245), - [aux_sym_cmd_identifier_token39] = ACTIONS(2245), - [aux_sym_cmd_identifier_token40] = ACTIONS(2245), - [anon_sym_def] = ACTIONS(2245), - [anon_sym_export_DASHenv] = ACTIONS(2245), - [anon_sym_extern] = ACTIONS(2245), - [anon_sym_module] = ACTIONS(2245), - [anon_sym_use] = ACTIONS(2245), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_error] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_break] = ACTIONS(2245), - [anon_sym_continue] = ACTIONS(2245), - [anon_sym_for] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_loop] = ACTIONS(2245), - [anon_sym_make] = ACTIONS(2245), - [anon_sym_while] = ACTIONS(2245), - [anon_sym_do] = ACTIONS(2245), - [anon_sym_if] = ACTIONS(2245), - [anon_sym_else] = ACTIONS(2245), - [anon_sym_match] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_try] = ACTIONS(2245), - [anon_sym_catch] = ACTIONS(2245), - [anon_sym_return] = ACTIONS(2245), - [anon_sym_source] = ACTIONS(2245), - [anon_sym_source_DASHenv] = ACTIONS(2245), - [anon_sym_register] = ACTIONS(2245), - [anon_sym_hide] = ACTIONS(2245), - [anon_sym_hide_DASHenv] = ACTIONS(2245), - [anon_sym_overlay] = ACTIONS(2245), - [anon_sym_as] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [aux_sym__val_number_token4] = ACTIONS(2245), - [aux_sym__val_number_token5] = ACTIONS(2245), - [aux_sym__val_number_token6] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2247), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2247), - }, - [581] = { - [sym_comment] = STATE(581), - [anon_sym_export] = ACTIONS(958), - [anon_sym_alias] = ACTIONS(958), - [anon_sym_let] = ACTIONS(958), - [anon_sym_let_DASHenv] = ACTIONS(958), - [anon_sym_mut] = ACTIONS(958), - [anon_sym_const] = ACTIONS(958), - [aux_sym_cmd_identifier_token1] = ACTIONS(958), - [aux_sym_cmd_identifier_token2] = ACTIONS(960), - [aux_sym_cmd_identifier_token3] = ACTIONS(960), - [aux_sym_cmd_identifier_token4] = ACTIONS(960), - [aux_sym_cmd_identifier_token5] = ACTIONS(960), - [aux_sym_cmd_identifier_token6] = ACTIONS(960), - [aux_sym_cmd_identifier_token7] = ACTIONS(960), - [aux_sym_cmd_identifier_token8] = ACTIONS(958), - [aux_sym_cmd_identifier_token9] = ACTIONS(958), - [aux_sym_cmd_identifier_token10] = ACTIONS(960), - [aux_sym_cmd_identifier_token11] = ACTIONS(960), - [aux_sym_cmd_identifier_token12] = ACTIONS(958), - [aux_sym_cmd_identifier_token13] = ACTIONS(958), - [aux_sym_cmd_identifier_token14] = ACTIONS(958), - [aux_sym_cmd_identifier_token15] = ACTIONS(958), - [aux_sym_cmd_identifier_token16] = ACTIONS(960), - [aux_sym_cmd_identifier_token17] = ACTIONS(960), - [aux_sym_cmd_identifier_token18] = ACTIONS(960), - [aux_sym_cmd_identifier_token19] = ACTIONS(960), - [aux_sym_cmd_identifier_token20] = ACTIONS(960), - [aux_sym_cmd_identifier_token21] = ACTIONS(960), - [aux_sym_cmd_identifier_token22] = ACTIONS(960), - [aux_sym_cmd_identifier_token23] = ACTIONS(960), - [aux_sym_cmd_identifier_token24] = ACTIONS(960), - [aux_sym_cmd_identifier_token25] = ACTIONS(960), - [aux_sym_cmd_identifier_token26] = ACTIONS(960), - [aux_sym_cmd_identifier_token27] = ACTIONS(960), - [aux_sym_cmd_identifier_token28] = ACTIONS(960), - [aux_sym_cmd_identifier_token29] = ACTIONS(960), - [aux_sym_cmd_identifier_token30] = ACTIONS(960), - [aux_sym_cmd_identifier_token31] = ACTIONS(960), - [aux_sym_cmd_identifier_token32] = ACTIONS(960), - [aux_sym_cmd_identifier_token33] = ACTIONS(960), - [aux_sym_cmd_identifier_token34] = ACTIONS(958), - [aux_sym_cmd_identifier_token35] = ACTIONS(960), - [aux_sym_cmd_identifier_token36] = ACTIONS(960), - [aux_sym_cmd_identifier_token37] = ACTIONS(960), - [aux_sym_cmd_identifier_token38] = ACTIONS(958), - [aux_sym_cmd_identifier_token39] = ACTIONS(960), - [aux_sym_cmd_identifier_token40] = ACTIONS(960), - [anon_sym_def] = ACTIONS(958), - [anon_sym_export_DASHenv] = ACTIONS(958), - [anon_sym_extern] = ACTIONS(958), - [anon_sym_module] = ACTIONS(958), - [anon_sym_use] = ACTIONS(958), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(960), - [anon_sym_error] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_break] = ACTIONS(958), - [anon_sym_continue] = ACTIONS(958), - [anon_sym_for] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(958), - [anon_sym_loop] = ACTIONS(958), - [anon_sym_make] = ACTIONS(958), - [anon_sym_while] = ACTIONS(958), - [anon_sym_do] = ACTIONS(958), - [anon_sym_if] = ACTIONS(958), - [anon_sym_else] = ACTIONS(958), - [anon_sym_match] = ACTIONS(958), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_try] = ACTIONS(958), - [anon_sym_catch] = ACTIONS(958), - [anon_sym_return] = ACTIONS(958), - [anon_sym_source] = ACTIONS(958), - [anon_sym_source_DASHenv] = ACTIONS(958), - [anon_sym_register] = ACTIONS(958), - [anon_sym_hide] = ACTIONS(958), - [anon_sym_hide_DASHenv] = ACTIONS(958), - [anon_sym_overlay] = ACTIONS(958), - [anon_sym_as] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(2308), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(958), - [aux_sym__val_number_token5] = ACTIONS(958), - [aux_sym__val_number_token6] = ACTIONS(958), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(960), - }, - [582] = { - [sym_comment] = STATE(582), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [aux_sym__immediate_decimal_token2] = ACTIONS(2310), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [583] = { - [sym_comment] = STATE(583), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1004), - [aux_sym_cmd_identifier_token3] = ACTIONS(1004), - [aux_sym_cmd_identifier_token4] = ACTIONS(1004), - [aux_sym_cmd_identifier_token5] = ACTIONS(1004), - [aux_sym_cmd_identifier_token6] = ACTIONS(1004), - [aux_sym_cmd_identifier_token7] = ACTIONS(1004), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1004), - [aux_sym_cmd_identifier_token11] = ACTIONS(1004), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1004), - [aux_sym_cmd_identifier_token17] = ACTIONS(1004), - [aux_sym_cmd_identifier_token18] = ACTIONS(1004), - [aux_sym_cmd_identifier_token19] = ACTIONS(1004), - [aux_sym_cmd_identifier_token20] = ACTIONS(1004), - [aux_sym_cmd_identifier_token21] = ACTIONS(1004), - [aux_sym_cmd_identifier_token22] = ACTIONS(1004), - [aux_sym_cmd_identifier_token23] = ACTIONS(1004), - [aux_sym_cmd_identifier_token24] = ACTIONS(1004), - [aux_sym_cmd_identifier_token25] = ACTIONS(1004), - [aux_sym_cmd_identifier_token26] = ACTIONS(1004), - [aux_sym_cmd_identifier_token27] = ACTIONS(1004), - [aux_sym_cmd_identifier_token28] = ACTIONS(1004), - [aux_sym_cmd_identifier_token29] = ACTIONS(1004), - [aux_sym_cmd_identifier_token30] = ACTIONS(1004), - [aux_sym_cmd_identifier_token31] = ACTIONS(1004), - [aux_sym_cmd_identifier_token32] = ACTIONS(1004), - [aux_sym_cmd_identifier_token33] = ACTIONS(1004), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1004), - [aux_sym_cmd_identifier_token36] = ACTIONS(1004), - [aux_sym_cmd_identifier_token37] = ACTIONS(1004), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1004), - [aux_sym_cmd_identifier_token40] = ACTIONS(1004), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [584] = { - [sym_comment] = STATE(584), - [anon_sym_export] = ACTIONS(964), - [anon_sym_alias] = ACTIONS(964), - [anon_sym_let] = ACTIONS(964), - [anon_sym_let_DASHenv] = ACTIONS(964), - [anon_sym_mut] = ACTIONS(964), - [anon_sym_const] = ACTIONS(964), - [aux_sym_cmd_identifier_token1] = ACTIONS(964), - [aux_sym_cmd_identifier_token2] = ACTIONS(966), - [aux_sym_cmd_identifier_token3] = ACTIONS(966), - [aux_sym_cmd_identifier_token4] = ACTIONS(966), - [aux_sym_cmd_identifier_token5] = ACTIONS(966), - [aux_sym_cmd_identifier_token6] = ACTIONS(966), - [aux_sym_cmd_identifier_token7] = ACTIONS(966), - [aux_sym_cmd_identifier_token8] = ACTIONS(964), - [aux_sym_cmd_identifier_token9] = ACTIONS(964), - [aux_sym_cmd_identifier_token10] = ACTIONS(966), - [aux_sym_cmd_identifier_token11] = ACTIONS(966), - [aux_sym_cmd_identifier_token12] = ACTIONS(964), - [aux_sym_cmd_identifier_token13] = ACTIONS(964), - [aux_sym_cmd_identifier_token14] = ACTIONS(964), - [aux_sym_cmd_identifier_token15] = ACTIONS(964), - [aux_sym_cmd_identifier_token16] = ACTIONS(966), - [aux_sym_cmd_identifier_token17] = ACTIONS(966), - [aux_sym_cmd_identifier_token18] = ACTIONS(966), - [aux_sym_cmd_identifier_token19] = ACTIONS(966), - [aux_sym_cmd_identifier_token20] = ACTIONS(966), - [aux_sym_cmd_identifier_token21] = ACTIONS(966), - [aux_sym_cmd_identifier_token22] = ACTIONS(966), - [aux_sym_cmd_identifier_token23] = ACTIONS(966), - [aux_sym_cmd_identifier_token24] = ACTIONS(966), - [aux_sym_cmd_identifier_token25] = ACTIONS(966), - [aux_sym_cmd_identifier_token26] = ACTIONS(966), - [aux_sym_cmd_identifier_token27] = ACTIONS(966), - [aux_sym_cmd_identifier_token28] = ACTIONS(966), - [aux_sym_cmd_identifier_token29] = ACTIONS(966), - [aux_sym_cmd_identifier_token30] = ACTIONS(966), - [aux_sym_cmd_identifier_token31] = ACTIONS(966), - [aux_sym_cmd_identifier_token32] = ACTIONS(966), - [aux_sym_cmd_identifier_token33] = ACTIONS(966), - [aux_sym_cmd_identifier_token34] = ACTIONS(964), - [aux_sym_cmd_identifier_token35] = ACTIONS(966), - [aux_sym_cmd_identifier_token36] = ACTIONS(966), - [aux_sym_cmd_identifier_token37] = ACTIONS(966), - [aux_sym_cmd_identifier_token38] = ACTIONS(964), - [aux_sym_cmd_identifier_token39] = ACTIONS(966), - [aux_sym_cmd_identifier_token40] = ACTIONS(966), - [anon_sym_def] = ACTIONS(964), - [anon_sym_export_DASHenv] = ACTIONS(964), - [anon_sym_extern] = ACTIONS(964), - [anon_sym_module] = ACTIONS(964), - [anon_sym_use] = ACTIONS(964), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(966), - [anon_sym_error] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_break] = ACTIONS(964), - [anon_sym_continue] = ACTIONS(964), - [anon_sym_for] = ACTIONS(964), - [anon_sym_in2] = ACTIONS(964), - [anon_sym_loop] = ACTIONS(964), - [anon_sym_make] = ACTIONS(964), - [anon_sym_while] = ACTIONS(964), - [anon_sym_do] = ACTIONS(964), - [anon_sym_if] = ACTIONS(964), - [anon_sym_else] = ACTIONS(964), - [anon_sym_match] = ACTIONS(964), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_try] = ACTIONS(964), - [anon_sym_catch] = ACTIONS(964), - [anon_sym_return] = ACTIONS(964), - [anon_sym_source] = ACTIONS(964), - [anon_sym_source_DASHenv] = ACTIONS(964), - [anon_sym_register] = ACTIONS(964), - [anon_sym_hide] = ACTIONS(964), - [anon_sym_hide_DASHenv] = ACTIONS(964), - [anon_sym_overlay] = ACTIONS(964), - [anon_sym_as] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(964), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(964), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [aux_sym__val_number_token4] = ACTIONS(964), - [aux_sym__val_number_token5] = ACTIONS(964), - [aux_sym__val_number_token6] = ACTIONS(964), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(964), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(966), - }, - [585] = { - [sym_comment] = STATE(585), - [anon_sym_export] = ACTIONS(952), - [anon_sym_alias] = ACTIONS(952), - [anon_sym_let] = ACTIONS(952), - [anon_sym_let_DASHenv] = ACTIONS(952), - [anon_sym_mut] = ACTIONS(952), - [anon_sym_const] = ACTIONS(952), - [aux_sym_cmd_identifier_token1] = ACTIONS(952), - [aux_sym_cmd_identifier_token2] = ACTIONS(954), - [aux_sym_cmd_identifier_token3] = ACTIONS(954), - [aux_sym_cmd_identifier_token4] = ACTIONS(954), - [aux_sym_cmd_identifier_token5] = ACTIONS(954), - [aux_sym_cmd_identifier_token6] = ACTIONS(954), - [aux_sym_cmd_identifier_token7] = ACTIONS(954), - [aux_sym_cmd_identifier_token8] = ACTIONS(952), - [aux_sym_cmd_identifier_token9] = ACTIONS(952), - [aux_sym_cmd_identifier_token10] = ACTIONS(954), - [aux_sym_cmd_identifier_token11] = ACTIONS(954), - [aux_sym_cmd_identifier_token12] = ACTIONS(952), - [aux_sym_cmd_identifier_token13] = ACTIONS(952), - [aux_sym_cmd_identifier_token14] = ACTIONS(952), - [aux_sym_cmd_identifier_token15] = ACTIONS(952), - [aux_sym_cmd_identifier_token16] = ACTIONS(954), - [aux_sym_cmd_identifier_token17] = ACTIONS(954), - [aux_sym_cmd_identifier_token18] = ACTIONS(954), - [aux_sym_cmd_identifier_token19] = ACTIONS(954), - [aux_sym_cmd_identifier_token20] = ACTIONS(954), - [aux_sym_cmd_identifier_token21] = ACTIONS(954), - [aux_sym_cmd_identifier_token22] = ACTIONS(954), - [aux_sym_cmd_identifier_token23] = ACTIONS(954), - [aux_sym_cmd_identifier_token24] = ACTIONS(954), - [aux_sym_cmd_identifier_token25] = ACTIONS(954), - [aux_sym_cmd_identifier_token26] = ACTIONS(954), - [aux_sym_cmd_identifier_token27] = ACTIONS(954), - [aux_sym_cmd_identifier_token28] = ACTIONS(954), - [aux_sym_cmd_identifier_token29] = ACTIONS(954), - [aux_sym_cmd_identifier_token30] = ACTIONS(954), - [aux_sym_cmd_identifier_token31] = ACTIONS(954), - [aux_sym_cmd_identifier_token32] = ACTIONS(954), - [aux_sym_cmd_identifier_token33] = ACTIONS(954), - [aux_sym_cmd_identifier_token34] = ACTIONS(952), - [aux_sym_cmd_identifier_token35] = ACTIONS(954), - [aux_sym_cmd_identifier_token36] = ACTIONS(954), - [aux_sym_cmd_identifier_token37] = ACTIONS(954), - [aux_sym_cmd_identifier_token38] = ACTIONS(952), - [aux_sym_cmd_identifier_token39] = ACTIONS(954), - [aux_sym_cmd_identifier_token40] = ACTIONS(954), - [anon_sym_def] = ACTIONS(952), - [anon_sym_export_DASHenv] = ACTIONS(952), - [anon_sym_extern] = ACTIONS(952), - [anon_sym_module] = ACTIONS(952), - [anon_sym_use] = ACTIONS(952), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(954), - [anon_sym_error] = ACTIONS(952), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_break] = ACTIONS(952), - [anon_sym_continue] = ACTIONS(952), - [anon_sym_for] = ACTIONS(952), - [anon_sym_in2] = ACTIONS(952), - [anon_sym_loop] = ACTIONS(952), - [anon_sym_make] = ACTIONS(952), - [anon_sym_while] = ACTIONS(952), - [anon_sym_do] = ACTIONS(952), - [anon_sym_if] = ACTIONS(952), - [anon_sym_else] = ACTIONS(952), - [anon_sym_match] = ACTIONS(952), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_try] = ACTIONS(952), - [anon_sym_catch] = ACTIONS(952), - [anon_sym_return] = ACTIONS(952), - [anon_sym_source] = ACTIONS(952), - [anon_sym_source_DASHenv] = ACTIONS(952), - [anon_sym_register] = ACTIONS(952), - [anon_sym_hide] = ACTIONS(952), - [anon_sym_hide_DASHenv] = ACTIONS(952), - [anon_sym_overlay] = ACTIONS(952), - [anon_sym_as] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(2312), - [anon_sym_PLUS2] = ACTIONS(952), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(952), - [aux_sym__val_number_token5] = ACTIONS(952), - [aux_sym__val_number_token6] = ACTIONS(952), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), + [aux_sym_cmd_identifier_token10] = ACTIONS(982), + [aux_sym_cmd_identifier_token11] = ACTIONS(982), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(982), + [aux_sym_cmd_identifier_token17] = ACTIONS(982), + [aux_sym_cmd_identifier_token18] = ACTIONS(982), + [aux_sym_cmd_identifier_token19] = ACTIONS(982), + [aux_sym_cmd_identifier_token20] = ACTIONS(982), + [aux_sym_cmd_identifier_token21] = ACTIONS(982), + [aux_sym_cmd_identifier_token22] = ACTIONS(982), + [aux_sym_cmd_identifier_token23] = ACTIONS(982), + [aux_sym_cmd_identifier_token24] = ACTIONS(982), + [aux_sym_cmd_identifier_token25] = ACTIONS(982), + [aux_sym_cmd_identifier_token26] = ACTIONS(982), + [aux_sym_cmd_identifier_token27] = ACTIONS(982), + [aux_sym_cmd_identifier_token28] = ACTIONS(982), + [aux_sym_cmd_identifier_token29] = ACTIONS(982), + [aux_sym_cmd_identifier_token30] = ACTIONS(982), + [aux_sym_cmd_identifier_token31] = ACTIONS(982), + [aux_sym_cmd_identifier_token32] = ACTIONS(982), + [aux_sym_cmd_identifier_token33] = ACTIONS(982), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(982), + [aux_sym_cmd_identifier_token36] = ACTIONS(982), + [aux_sym_cmd_identifier_token37] = ACTIONS(982), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(982), + [aux_sym_cmd_identifier_token40] = ACTIONS(982), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_COMMA] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(982), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(954), + [sym_raw_string_begin] = ACTIONS(982), }, - [586] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(586), - [anon_sym_export] = ACTIONS(2273), - [anon_sym_alias] = ACTIONS(2273), - [anon_sym_let] = ACTIONS(2273), - [anon_sym_let_DASHenv] = ACTIONS(2273), - [anon_sym_mut] = ACTIONS(2273), - [anon_sym_const] = ACTIONS(2273), - [aux_sym_cmd_identifier_token1] = ACTIONS(2273), - [aux_sym_cmd_identifier_token2] = ACTIONS(2275), - [aux_sym_cmd_identifier_token3] = ACTIONS(2275), - [aux_sym_cmd_identifier_token4] = ACTIONS(2275), - [aux_sym_cmd_identifier_token5] = ACTIONS(2275), - [aux_sym_cmd_identifier_token6] = ACTIONS(2275), - [aux_sym_cmd_identifier_token7] = ACTIONS(2275), - [aux_sym_cmd_identifier_token8] = ACTIONS(2273), - [aux_sym_cmd_identifier_token9] = ACTIONS(2273), - [aux_sym_cmd_identifier_token10] = ACTIONS(2275), - [aux_sym_cmd_identifier_token11] = ACTIONS(2275), - [aux_sym_cmd_identifier_token12] = ACTIONS(2273), - [aux_sym_cmd_identifier_token13] = ACTIONS(2273), - [aux_sym_cmd_identifier_token14] = ACTIONS(2273), - [aux_sym_cmd_identifier_token15] = ACTIONS(2273), - [aux_sym_cmd_identifier_token16] = ACTIONS(2275), - [aux_sym_cmd_identifier_token17] = ACTIONS(2275), - [aux_sym_cmd_identifier_token18] = ACTIONS(2275), - [aux_sym_cmd_identifier_token19] = ACTIONS(2275), - [aux_sym_cmd_identifier_token20] = ACTIONS(2275), - [aux_sym_cmd_identifier_token21] = ACTIONS(2275), - [aux_sym_cmd_identifier_token22] = ACTIONS(2275), - [aux_sym_cmd_identifier_token23] = ACTIONS(2275), - [aux_sym_cmd_identifier_token24] = ACTIONS(2275), - [aux_sym_cmd_identifier_token25] = ACTIONS(2275), - [aux_sym_cmd_identifier_token26] = ACTIONS(2275), - [aux_sym_cmd_identifier_token27] = ACTIONS(2275), - [aux_sym_cmd_identifier_token28] = ACTIONS(2275), - [aux_sym_cmd_identifier_token29] = ACTIONS(2275), - [aux_sym_cmd_identifier_token30] = ACTIONS(2275), - [aux_sym_cmd_identifier_token31] = ACTIONS(2275), - [aux_sym_cmd_identifier_token32] = ACTIONS(2275), - [aux_sym_cmd_identifier_token33] = ACTIONS(2275), - [aux_sym_cmd_identifier_token34] = ACTIONS(2273), - [aux_sym_cmd_identifier_token35] = ACTIONS(2275), - [aux_sym_cmd_identifier_token36] = ACTIONS(2275), - [aux_sym_cmd_identifier_token37] = ACTIONS(2275), - [aux_sym_cmd_identifier_token38] = ACTIONS(2273), - [aux_sym_cmd_identifier_token39] = ACTIONS(2275), - [aux_sym_cmd_identifier_token40] = ACTIONS(2275), - [anon_sym_def] = ACTIONS(2273), - [anon_sym_export_DASHenv] = ACTIONS(2273), - [anon_sym_extern] = ACTIONS(2273), - [anon_sym_module] = ACTIONS(2273), - [anon_sym_use] = ACTIONS(2273), - [anon_sym_LPAREN] = ACTIONS(2273), - [anon_sym_DOLLAR] = ACTIONS(2275), - [anon_sym_error] = ACTIONS(2273), - [anon_sym_DASH2] = ACTIONS(2273), - [anon_sym_break] = ACTIONS(2273), - [anon_sym_continue] = ACTIONS(2273), - [anon_sym_for] = ACTIONS(2273), - [anon_sym_in2] = ACTIONS(2273), - [anon_sym_loop] = ACTIONS(2273), - [anon_sym_make] = ACTIONS(2273), - [anon_sym_while] = ACTIONS(2273), - [anon_sym_do] = ACTIONS(2273), - [anon_sym_if] = ACTIONS(2273), - [anon_sym_else] = ACTIONS(2273), - [anon_sym_match] = ACTIONS(2273), - [anon_sym_RBRACE] = ACTIONS(2275), - [anon_sym_try] = ACTIONS(2273), - [anon_sym_catch] = ACTIONS(2273), - [anon_sym_return] = ACTIONS(2273), - [anon_sym_source] = ACTIONS(2273), - [anon_sym_source_DASHenv] = ACTIONS(2273), - [anon_sym_register] = ACTIONS(2273), - [anon_sym_hide] = ACTIONS(2273), - [anon_sym_hide_DASHenv] = ACTIONS(2273), - [anon_sym_overlay] = ACTIONS(2273), - [anon_sym_as] = ACTIONS(2273), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2275), - [aux_sym__val_number_decimal_token1] = ACTIONS(2273), - [aux_sym__val_number_decimal_token2] = ACTIONS(2275), - [aux_sym__val_number_decimal_token3] = ACTIONS(2275), - [aux_sym__val_number_decimal_token4] = ACTIONS(2275), - [aux_sym__val_number_token1] = ACTIONS(2275), - [aux_sym__val_number_token2] = ACTIONS(2275), - [aux_sym__val_number_token3] = ACTIONS(2275), - [aux_sym__val_number_token4] = ACTIONS(2273), - [aux_sym__val_number_token5] = ACTIONS(2273), - [aux_sym__val_number_token6] = ACTIONS(2273), - [anon_sym_DQUOTE] = ACTIONS(2275), - [sym__str_single_quotes] = ACTIONS(2275), - [sym__str_back_ticks] = ACTIONS(2275), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2275), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2275), + [564] = { + [sym_comment] = STATE(564), + [aux_sym__multiple_types_repeat1] = STATE(589), + [anon_sym_export] = ACTIONS(992), + [anon_sym_alias] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_let_DASHenv] = ACTIONS(992), + [anon_sym_mut] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [aux_sym_cmd_identifier_token1] = ACTIONS(992), + [aux_sym_cmd_identifier_token2] = ACTIONS(992), + [aux_sym_cmd_identifier_token3] = ACTIONS(992), + [aux_sym_cmd_identifier_token4] = ACTIONS(992), + [aux_sym_cmd_identifier_token5] = ACTIONS(992), + [aux_sym_cmd_identifier_token6] = ACTIONS(992), + [aux_sym_cmd_identifier_token7] = ACTIONS(992), + [aux_sym_cmd_identifier_token8] = ACTIONS(992), + [aux_sym_cmd_identifier_token9] = ACTIONS(992), + [aux_sym_cmd_identifier_token10] = ACTIONS(992), + [aux_sym_cmd_identifier_token11] = ACTIONS(992), + [aux_sym_cmd_identifier_token12] = ACTIONS(992), + [aux_sym_cmd_identifier_token13] = ACTIONS(992), + [aux_sym_cmd_identifier_token14] = ACTIONS(992), + [aux_sym_cmd_identifier_token15] = ACTIONS(992), + [aux_sym_cmd_identifier_token16] = ACTIONS(992), + [aux_sym_cmd_identifier_token17] = ACTIONS(992), + [aux_sym_cmd_identifier_token18] = ACTIONS(992), + [aux_sym_cmd_identifier_token19] = ACTIONS(992), + [aux_sym_cmd_identifier_token20] = ACTIONS(992), + [aux_sym_cmd_identifier_token21] = ACTIONS(992), + [aux_sym_cmd_identifier_token22] = ACTIONS(992), + [aux_sym_cmd_identifier_token23] = ACTIONS(992), + [aux_sym_cmd_identifier_token24] = ACTIONS(992), + [aux_sym_cmd_identifier_token25] = ACTIONS(992), + [aux_sym_cmd_identifier_token26] = ACTIONS(992), + [aux_sym_cmd_identifier_token27] = ACTIONS(992), + [aux_sym_cmd_identifier_token28] = ACTIONS(992), + [aux_sym_cmd_identifier_token29] = ACTIONS(992), + [aux_sym_cmd_identifier_token30] = ACTIONS(992), + [aux_sym_cmd_identifier_token31] = ACTIONS(992), + [aux_sym_cmd_identifier_token32] = ACTIONS(992), + [aux_sym_cmd_identifier_token33] = ACTIONS(992), + [aux_sym_cmd_identifier_token34] = ACTIONS(992), + [aux_sym_cmd_identifier_token35] = ACTIONS(992), + [aux_sym_cmd_identifier_token36] = ACTIONS(992), + [aux_sym_cmd_identifier_token37] = ACTIONS(992), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(992), + [aux_sym_cmd_identifier_token40] = ACTIONS(992), + [anon_sym_def] = ACTIONS(992), + [anon_sym_export_DASHenv] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(992), + [anon_sym_COMMA] = ACTIONS(2274), + [anon_sym_DOLLAR] = ACTIONS(992), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_make] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(2276), + [anon_sym_try] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_source] = ACTIONS(992), + [anon_sym_source_DASHenv] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_hide_DASHenv] = ACTIONS(992), + [anon_sym_overlay] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(992), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(992), + [aux_sym__val_number_decimal_token3] = ACTIONS(992), + [aux_sym__val_number_decimal_token4] = ACTIONS(992), + [aux_sym__val_number_token1] = ACTIONS(992), + [aux_sym__val_number_token2] = ACTIONS(992), + [aux_sym__val_number_token3] = ACTIONS(992), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(992), + [sym__str_single_quotes] = ACTIONS(992), + [sym__str_back_ticks] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(992), + [sym__entry_separator] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(998), }, - [587] = { - [sym_comment] = STATE(587), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(2314), - [aux_sym__immediate_decimal_token2] = ACTIONS(2316), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [565] = { + [sym_comment] = STATE(565), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_alias] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_let_DASHenv] = ACTIONS(2280), + [anon_sym_mut] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [aux_sym_cmd_identifier_token1] = ACTIONS(2280), + [aux_sym_cmd_identifier_token2] = ACTIONS(2280), + [aux_sym_cmd_identifier_token3] = ACTIONS(2280), + [aux_sym_cmd_identifier_token4] = ACTIONS(2280), + [aux_sym_cmd_identifier_token5] = ACTIONS(2280), + [aux_sym_cmd_identifier_token6] = ACTIONS(2280), + [aux_sym_cmd_identifier_token7] = ACTIONS(2280), + [aux_sym_cmd_identifier_token8] = ACTIONS(2280), + [aux_sym_cmd_identifier_token9] = ACTIONS(2280), + [aux_sym_cmd_identifier_token10] = ACTIONS(2280), + [aux_sym_cmd_identifier_token11] = ACTIONS(2280), + [aux_sym_cmd_identifier_token12] = ACTIONS(2280), + [aux_sym_cmd_identifier_token13] = ACTIONS(2280), + [aux_sym_cmd_identifier_token14] = ACTIONS(2280), + [aux_sym_cmd_identifier_token15] = ACTIONS(2280), + [aux_sym_cmd_identifier_token16] = ACTIONS(2280), + [aux_sym_cmd_identifier_token17] = ACTIONS(2280), + [aux_sym_cmd_identifier_token18] = ACTIONS(2280), + [aux_sym_cmd_identifier_token19] = ACTIONS(2280), + [aux_sym_cmd_identifier_token20] = ACTIONS(2280), + [aux_sym_cmd_identifier_token21] = ACTIONS(2280), + [aux_sym_cmd_identifier_token22] = ACTIONS(2280), + [aux_sym_cmd_identifier_token23] = ACTIONS(2280), + [aux_sym_cmd_identifier_token24] = ACTIONS(2280), + [aux_sym_cmd_identifier_token25] = ACTIONS(2280), + [aux_sym_cmd_identifier_token26] = ACTIONS(2280), + [aux_sym_cmd_identifier_token27] = ACTIONS(2280), + [aux_sym_cmd_identifier_token28] = ACTIONS(2280), + [aux_sym_cmd_identifier_token29] = ACTIONS(2280), + [aux_sym_cmd_identifier_token30] = ACTIONS(2280), + [aux_sym_cmd_identifier_token31] = ACTIONS(2280), + [aux_sym_cmd_identifier_token32] = ACTIONS(2280), + [aux_sym_cmd_identifier_token33] = ACTIONS(2280), + [aux_sym_cmd_identifier_token34] = ACTIONS(2280), + [aux_sym_cmd_identifier_token35] = ACTIONS(2280), + [aux_sym_cmd_identifier_token36] = ACTIONS(2280), + [aux_sym_cmd_identifier_token37] = ACTIONS(2280), + [aux_sym_cmd_identifier_token38] = ACTIONS(2280), + [aux_sym_cmd_identifier_token39] = ACTIONS(2280), + [aux_sym_cmd_identifier_token40] = ACTIONS(2280), + [anon_sym_def] = ACTIONS(2280), + [anon_sym_export_DASHenv] = ACTIONS(2280), + [anon_sym_extern] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_use] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2280), + [anon_sym_COMMA] = ACTIONS(2280), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_error] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_in2] = ACTIONS(2280), + [anon_sym_loop] = ACTIONS(2280), + [anon_sym_make] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_match] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2280), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_source] = ACTIONS(2280), + [anon_sym_source_DASHenv] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2280), + [anon_sym_hide] = ACTIONS(2280), + [anon_sym_hide_DASHenv] = ACTIONS(2280), + [anon_sym_overlay] = ACTIONS(2280), + [anon_sym_as] = ACTIONS(2280), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2280), + [aux_sym__val_number_decimal_token1] = ACTIONS(2280), + [aux_sym__val_number_decimal_token2] = ACTIONS(2280), + [aux_sym__val_number_decimal_token3] = ACTIONS(2280), + [aux_sym__val_number_decimal_token4] = ACTIONS(2280), + [aux_sym__val_number_token1] = ACTIONS(2280), + [aux_sym__val_number_token2] = ACTIONS(2280), + [aux_sym__val_number_token3] = ACTIONS(2280), + [aux_sym__val_number_token4] = ACTIONS(2280), + [aux_sym__val_number_token5] = ACTIONS(2280), + [aux_sym__val_number_token6] = ACTIONS(2280), + [anon_sym_LBRACK2] = ACTIONS(2282), + [anon_sym_DQUOTE] = ACTIONS(2280), + [sym__str_single_quotes] = ACTIONS(2280), + [sym__str_back_ticks] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2280), + [sym__entry_separator] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2284), }, - [588] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(588), - [anon_sym_export] = ACTIONS(2217), - [anon_sym_alias] = ACTIONS(2217), - [anon_sym_let] = ACTIONS(2217), - [anon_sym_let_DASHenv] = ACTIONS(2217), - [anon_sym_mut] = ACTIONS(2217), - [anon_sym_const] = ACTIONS(2217), - [aux_sym_cmd_identifier_token1] = ACTIONS(2217), - [aux_sym_cmd_identifier_token2] = ACTIONS(2219), - [aux_sym_cmd_identifier_token3] = ACTIONS(2219), - [aux_sym_cmd_identifier_token4] = ACTIONS(2219), - [aux_sym_cmd_identifier_token5] = ACTIONS(2219), - [aux_sym_cmd_identifier_token6] = ACTIONS(2219), - [aux_sym_cmd_identifier_token7] = ACTIONS(2219), - [aux_sym_cmd_identifier_token8] = ACTIONS(2217), - [aux_sym_cmd_identifier_token9] = ACTIONS(2217), - [aux_sym_cmd_identifier_token10] = ACTIONS(2219), - [aux_sym_cmd_identifier_token11] = ACTIONS(2219), - [aux_sym_cmd_identifier_token12] = ACTIONS(2217), - [aux_sym_cmd_identifier_token13] = ACTIONS(2217), - [aux_sym_cmd_identifier_token14] = ACTIONS(2217), - [aux_sym_cmd_identifier_token15] = ACTIONS(2217), - [aux_sym_cmd_identifier_token16] = ACTIONS(2219), - [aux_sym_cmd_identifier_token17] = ACTIONS(2219), - [aux_sym_cmd_identifier_token18] = ACTIONS(2219), - [aux_sym_cmd_identifier_token19] = ACTIONS(2219), - [aux_sym_cmd_identifier_token20] = ACTIONS(2219), - [aux_sym_cmd_identifier_token21] = ACTIONS(2219), - [aux_sym_cmd_identifier_token22] = ACTIONS(2219), - [aux_sym_cmd_identifier_token23] = ACTIONS(2219), - [aux_sym_cmd_identifier_token24] = ACTIONS(2219), - [aux_sym_cmd_identifier_token25] = ACTIONS(2219), - [aux_sym_cmd_identifier_token26] = ACTIONS(2219), - [aux_sym_cmd_identifier_token27] = ACTIONS(2219), - [aux_sym_cmd_identifier_token28] = ACTIONS(2219), - [aux_sym_cmd_identifier_token29] = ACTIONS(2219), - [aux_sym_cmd_identifier_token30] = ACTIONS(2219), - [aux_sym_cmd_identifier_token31] = ACTIONS(2219), - [aux_sym_cmd_identifier_token32] = ACTIONS(2219), - [aux_sym_cmd_identifier_token33] = ACTIONS(2219), - [aux_sym_cmd_identifier_token34] = ACTIONS(2217), - [aux_sym_cmd_identifier_token35] = ACTIONS(2219), - [aux_sym_cmd_identifier_token36] = ACTIONS(2219), - [aux_sym_cmd_identifier_token37] = ACTIONS(2219), - [aux_sym_cmd_identifier_token38] = ACTIONS(2217), - [aux_sym_cmd_identifier_token39] = ACTIONS(2219), - [aux_sym_cmd_identifier_token40] = ACTIONS(2219), - [anon_sym_def] = ACTIONS(2217), - [anon_sym_export_DASHenv] = ACTIONS(2217), - [anon_sym_extern] = ACTIONS(2217), - [anon_sym_module] = ACTIONS(2217), - [anon_sym_use] = ACTIONS(2217), - [anon_sym_LPAREN] = ACTIONS(2217), - [anon_sym_DOLLAR] = ACTIONS(2219), - [anon_sym_error] = ACTIONS(2217), - [anon_sym_DASH2] = ACTIONS(2217), - [anon_sym_break] = ACTIONS(2217), - [anon_sym_continue] = ACTIONS(2217), - [anon_sym_for] = ACTIONS(2217), - [anon_sym_in2] = ACTIONS(2217), - [anon_sym_loop] = ACTIONS(2217), - [anon_sym_make] = ACTIONS(2217), - [anon_sym_while] = ACTIONS(2217), - [anon_sym_do] = ACTIONS(2217), - [anon_sym_if] = ACTIONS(2217), - [anon_sym_else] = ACTIONS(2217), - [anon_sym_match] = ACTIONS(2217), - [anon_sym_RBRACE] = ACTIONS(2219), - [anon_sym_try] = ACTIONS(2217), - [anon_sym_catch] = ACTIONS(2217), - [anon_sym_return] = ACTIONS(2217), - [anon_sym_source] = ACTIONS(2217), - [anon_sym_source_DASHenv] = ACTIONS(2217), - [anon_sym_register] = ACTIONS(2217), - [anon_sym_hide] = ACTIONS(2217), - [anon_sym_hide_DASHenv] = ACTIONS(2217), - [anon_sym_overlay] = ACTIONS(2217), - [anon_sym_as] = ACTIONS(2217), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2217), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2219), - [aux_sym__val_number_decimal_token1] = ACTIONS(2217), - [aux_sym__val_number_decimal_token2] = ACTIONS(2219), - [aux_sym__val_number_decimal_token3] = ACTIONS(2219), - [aux_sym__val_number_decimal_token4] = ACTIONS(2219), - [aux_sym__val_number_token1] = ACTIONS(2219), - [aux_sym__val_number_token2] = ACTIONS(2219), - [aux_sym__val_number_token3] = ACTIONS(2219), - [aux_sym__val_number_token4] = ACTIONS(2217), - [aux_sym__val_number_token5] = ACTIONS(2217), - [aux_sym__val_number_token6] = ACTIONS(2217), - [anon_sym_DQUOTE] = ACTIONS(2219), - [sym__str_single_quotes] = ACTIONS(2219), - [sym__str_back_ticks] = ACTIONS(2219), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2219), + [566] = { + [sym_comment] = STATE(566), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1663), + [aux_sym_cmd_identifier_token3] = ACTIONS(1663), + [aux_sym_cmd_identifier_token4] = ACTIONS(1663), + [aux_sym_cmd_identifier_token5] = ACTIONS(1663), + [aux_sym_cmd_identifier_token6] = ACTIONS(1663), + [aux_sym_cmd_identifier_token7] = ACTIONS(1663), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1663), + [aux_sym_cmd_identifier_token11] = ACTIONS(1663), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1663), + [aux_sym_cmd_identifier_token17] = ACTIONS(1663), + [aux_sym_cmd_identifier_token18] = ACTIONS(1663), + [aux_sym_cmd_identifier_token19] = ACTIONS(1663), + [aux_sym_cmd_identifier_token20] = ACTIONS(1663), + [aux_sym_cmd_identifier_token21] = ACTIONS(1663), + [aux_sym_cmd_identifier_token22] = ACTIONS(1663), + [aux_sym_cmd_identifier_token23] = ACTIONS(1663), + [aux_sym_cmd_identifier_token24] = ACTIONS(1663), + [aux_sym_cmd_identifier_token25] = ACTIONS(1663), + [aux_sym_cmd_identifier_token26] = ACTIONS(1663), + [aux_sym_cmd_identifier_token27] = ACTIONS(1663), + [aux_sym_cmd_identifier_token28] = ACTIONS(1663), + [aux_sym_cmd_identifier_token29] = ACTIONS(1663), + [aux_sym_cmd_identifier_token30] = ACTIONS(1663), + [aux_sym_cmd_identifier_token31] = ACTIONS(1663), + [aux_sym_cmd_identifier_token32] = ACTIONS(1663), + [aux_sym_cmd_identifier_token33] = ACTIONS(1663), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1663), + [aux_sym_cmd_identifier_token36] = ACTIONS(1663), + [aux_sym_cmd_identifier_token37] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1663), + [aux_sym_cmd_identifier_token40] = ACTIONS(1663), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), + [sym__entry_separator] = ACTIONS(1675), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1677), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1675), }, - [589] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(589), - [anon_sym_export] = ACTIONS(2221), - [anon_sym_alias] = ACTIONS(2221), - [anon_sym_let] = ACTIONS(2221), - [anon_sym_let_DASHenv] = ACTIONS(2221), - [anon_sym_mut] = ACTIONS(2221), - [anon_sym_const] = ACTIONS(2221), - [aux_sym_cmd_identifier_token1] = ACTIONS(2221), - [aux_sym_cmd_identifier_token2] = ACTIONS(2223), - [aux_sym_cmd_identifier_token3] = ACTIONS(2223), - [aux_sym_cmd_identifier_token4] = ACTIONS(2223), - [aux_sym_cmd_identifier_token5] = ACTIONS(2223), - [aux_sym_cmd_identifier_token6] = ACTIONS(2223), - [aux_sym_cmd_identifier_token7] = ACTIONS(2223), - [aux_sym_cmd_identifier_token8] = ACTIONS(2221), - [aux_sym_cmd_identifier_token9] = ACTIONS(2221), - [aux_sym_cmd_identifier_token10] = ACTIONS(2223), - [aux_sym_cmd_identifier_token11] = ACTIONS(2223), - [aux_sym_cmd_identifier_token12] = ACTIONS(2221), - [aux_sym_cmd_identifier_token13] = ACTIONS(2221), - [aux_sym_cmd_identifier_token14] = ACTIONS(2221), - [aux_sym_cmd_identifier_token15] = ACTIONS(2221), - [aux_sym_cmd_identifier_token16] = ACTIONS(2223), - [aux_sym_cmd_identifier_token17] = ACTIONS(2223), - [aux_sym_cmd_identifier_token18] = ACTIONS(2223), - [aux_sym_cmd_identifier_token19] = ACTIONS(2223), - [aux_sym_cmd_identifier_token20] = ACTIONS(2223), - [aux_sym_cmd_identifier_token21] = ACTIONS(2223), - [aux_sym_cmd_identifier_token22] = ACTIONS(2223), - [aux_sym_cmd_identifier_token23] = ACTIONS(2223), - [aux_sym_cmd_identifier_token24] = ACTIONS(2223), - [aux_sym_cmd_identifier_token25] = ACTIONS(2223), - [aux_sym_cmd_identifier_token26] = ACTIONS(2223), - [aux_sym_cmd_identifier_token27] = ACTIONS(2223), - [aux_sym_cmd_identifier_token28] = ACTIONS(2223), - [aux_sym_cmd_identifier_token29] = ACTIONS(2223), - [aux_sym_cmd_identifier_token30] = ACTIONS(2223), - [aux_sym_cmd_identifier_token31] = ACTIONS(2223), - [aux_sym_cmd_identifier_token32] = ACTIONS(2223), - [aux_sym_cmd_identifier_token33] = ACTIONS(2223), - [aux_sym_cmd_identifier_token34] = ACTIONS(2221), - [aux_sym_cmd_identifier_token35] = ACTIONS(2223), - [aux_sym_cmd_identifier_token36] = ACTIONS(2223), - [aux_sym_cmd_identifier_token37] = ACTIONS(2223), - [aux_sym_cmd_identifier_token38] = ACTIONS(2221), - [aux_sym_cmd_identifier_token39] = ACTIONS(2223), - [aux_sym_cmd_identifier_token40] = ACTIONS(2223), - [anon_sym_def] = ACTIONS(2221), - [anon_sym_export_DASHenv] = ACTIONS(2221), - [anon_sym_extern] = ACTIONS(2221), - [anon_sym_module] = ACTIONS(2221), - [anon_sym_use] = ACTIONS(2221), - [anon_sym_LPAREN] = ACTIONS(2221), - [anon_sym_DOLLAR] = ACTIONS(2223), - [anon_sym_error] = ACTIONS(2221), - [anon_sym_DASH2] = ACTIONS(2221), - [anon_sym_break] = ACTIONS(2221), - [anon_sym_continue] = ACTIONS(2221), - [anon_sym_for] = ACTIONS(2221), - [anon_sym_in2] = ACTIONS(2221), - [anon_sym_loop] = ACTIONS(2221), - [anon_sym_make] = ACTIONS(2221), - [anon_sym_while] = ACTIONS(2221), - [anon_sym_do] = ACTIONS(2221), - [anon_sym_if] = ACTIONS(2221), - [anon_sym_else] = ACTIONS(2221), - [anon_sym_match] = ACTIONS(2221), - [anon_sym_RBRACE] = ACTIONS(2223), - [anon_sym_try] = ACTIONS(2221), - [anon_sym_catch] = ACTIONS(2221), - [anon_sym_return] = ACTIONS(2221), - [anon_sym_source] = ACTIONS(2221), - [anon_sym_source_DASHenv] = ACTIONS(2221), - [anon_sym_register] = ACTIONS(2221), - [anon_sym_hide] = ACTIONS(2221), - [anon_sym_hide_DASHenv] = ACTIONS(2221), - [anon_sym_overlay] = ACTIONS(2221), - [anon_sym_as] = ACTIONS(2221), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2221), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2223), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2223), - [aux_sym__val_number_decimal_token1] = ACTIONS(2221), - [aux_sym__val_number_decimal_token2] = ACTIONS(2223), - [aux_sym__val_number_decimal_token3] = ACTIONS(2223), - [aux_sym__val_number_decimal_token4] = ACTIONS(2223), - [aux_sym__val_number_token1] = ACTIONS(2223), - [aux_sym__val_number_token2] = ACTIONS(2223), - [aux_sym__val_number_token3] = ACTIONS(2223), - [aux_sym__val_number_token4] = ACTIONS(2221), - [aux_sym__val_number_token5] = ACTIONS(2221), - [aux_sym__val_number_token6] = ACTIONS(2221), - [anon_sym_DQUOTE] = ACTIONS(2223), - [sym__str_single_quotes] = ACTIONS(2223), - [sym__str_back_ticks] = ACTIONS(2223), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2223), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2223), + [567] = { + [sym_comment] = STATE(567), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2286), + [aux_sym_cmd_identifier_token3] = ACTIONS(2286), + [aux_sym_cmd_identifier_token4] = ACTIONS(2286), + [aux_sym_cmd_identifier_token5] = ACTIONS(2286), + [aux_sym_cmd_identifier_token6] = ACTIONS(2286), + [aux_sym_cmd_identifier_token7] = ACTIONS(2286), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2286), + [aux_sym_cmd_identifier_token11] = ACTIONS(2286), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2286), + [aux_sym_cmd_identifier_token17] = ACTIONS(2286), + [aux_sym_cmd_identifier_token18] = ACTIONS(2286), + [aux_sym_cmd_identifier_token19] = ACTIONS(2286), + [aux_sym_cmd_identifier_token20] = ACTIONS(2286), + [aux_sym_cmd_identifier_token21] = ACTIONS(2286), + [aux_sym_cmd_identifier_token22] = ACTIONS(2286), + [aux_sym_cmd_identifier_token23] = ACTIONS(2286), + [aux_sym_cmd_identifier_token24] = ACTIONS(2286), + [aux_sym_cmd_identifier_token25] = ACTIONS(2286), + [aux_sym_cmd_identifier_token26] = ACTIONS(2286), + [aux_sym_cmd_identifier_token27] = ACTIONS(2286), + [aux_sym_cmd_identifier_token28] = ACTIONS(2286), + [aux_sym_cmd_identifier_token29] = ACTIONS(2286), + [aux_sym_cmd_identifier_token30] = ACTIONS(2286), + [aux_sym_cmd_identifier_token31] = ACTIONS(2286), + [aux_sym_cmd_identifier_token32] = ACTIONS(2286), + [aux_sym_cmd_identifier_token33] = ACTIONS(2286), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2286), + [aux_sym_cmd_identifier_token36] = ACTIONS(2286), + [aux_sym_cmd_identifier_token37] = ACTIONS(2286), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2286), + [aux_sym_cmd_identifier_token40] = ACTIONS(2286), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_COMMA] = ACTIONS(2286), + [anon_sym_DOLLAR] = ACTIONS(2286), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2286), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_LPAREN2] = ACTIONS(2288), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2286), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2286), + [aux_sym__val_number_decimal_token3] = ACTIONS(2286), + [aux_sym__val_number_decimal_token4] = ACTIONS(2286), + [aux_sym__val_number_token1] = ACTIONS(2286), + [aux_sym__val_number_token2] = ACTIONS(2286), + [aux_sym__val_number_token3] = ACTIONS(2286), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2286), + [sym__str_single_quotes] = ACTIONS(2286), + [sym__str_back_ticks] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2286), + [sym__entry_separator] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2288), }, - [590] = { - [sym__expr_parenthesized_immediate] = STATE(7459), - [sym_comment] = STATE(590), - [anon_sym_export] = ACTIONS(2225), - [anon_sym_alias] = ACTIONS(2225), - [anon_sym_let] = ACTIONS(2225), - [anon_sym_let_DASHenv] = ACTIONS(2225), - [anon_sym_mut] = ACTIONS(2225), - [anon_sym_const] = ACTIONS(2225), - [aux_sym_cmd_identifier_token1] = ACTIONS(2225), - [aux_sym_cmd_identifier_token2] = ACTIONS(2227), - [aux_sym_cmd_identifier_token3] = ACTIONS(2227), - [aux_sym_cmd_identifier_token4] = ACTIONS(2227), - [aux_sym_cmd_identifier_token5] = ACTIONS(2227), - [aux_sym_cmd_identifier_token6] = ACTIONS(2227), - [aux_sym_cmd_identifier_token7] = ACTIONS(2227), - [aux_sym_cmd_identifier_token8] = ACTIONS(2225), - [aux_sym_cmd_identifier_token9] = ACTIONS(2225), - [aux_sym_cmd_identifier_token10] = ACTIONS(2227), - [aux_sym_cmd_identifier_token11] = ACTIONS(2227), - [aux_sym_cmd_identifier_token12] = ACTIONS(2225), - [aux_sym_cmd_identifier_token13] = ACTIONS(2225), - [aux_sym_cmd_identifier_token14] = ACTIONS(2225), - [aux_sym_cmd_identifier_token15] = ACTIONS(2225), - [aux_sym_cmd_identifier_token16] = ACTIONS(2227), - [aux_sym_cmd_identifier_token17] = ACTIONS(2227), - [aux_sym_cmd_identifier_token18] = ACTIONS(2227), - [aux_sym_cmd_identifier_token19] = ACTIONS(2227), - [aux_sym_cmd_identifier_token20] = ACTIONS(2227), - [aux_sym_cmd_identifier_token21] = ACTIONS(2227), - [aux_sym_cmd_identifier_token22] = ACTIONS(2227), - [aux_sym_cmd_identifier_token23] = ACTIONS(2227), - [aux_sym_cmd_identifier_token24] = ACTIONS(2227), - [aux_sym_cmd_identifier_token25] = ACTIONS(2227), - [aux_sym_cmd_identifier_token26] = ACTIONS(2227), - [aux_sym_cmd_identifier_token27] = ACTIONS(2227), - [aux_sym_cmd_identifier_token28] = ACTIONS(2227), - [aux_sym_cmd_identifier_token29] = ACTIONS(2227), - [aux_sym_cmd_identifier_token30] = ACTIONS(2227), - [aux_sym_cmd_identifier_token31] = ACTIONS(2227), - [aux_sym_cmd_identifier_token32] = ACTIONS(2227), - [aux_sym_cmd_identifier_token33] = ACTIONS(2227), - [aux_sym_cmd_identifier_token34] = ACTIONS(2225), - [aux_sym_cmd_identifier_token35] = ACTIONS(2227), - [aux_sym_cmd_identifier_token36] = ACTIONS(2227), - [aux_sym_cmd_identifier_token37] = ACTIONS(2227), - [aux_sym_cmd_identifier_token38] = ACTIONS(2225), - [aux_sym_cmd_identifier_token39] = ACTIONS(2227), - [aux_sym_cmd_identifier_token40] = ACTIONS(2227), - [anon_sym_def] = ACTIONS(2225), - [anon_sym_export_DASHenv] = ACTIONS(2225), - [anon_sym_extern] = ACTIONS(2225), - [anon_sym_module] = ACTIONS(2225), - [anon_sym_use] = ACTIONS(2225), - [anon_sym_LPAREN] = ACTIONS(2225), - [anon_sym_DOLLAR] = ACTIONS(2227), - [anon_sym_error] = ACTIONS(2225), - [anon_sym_DASH2] = ACTIONS(2225), - [anon_sym_break] = ACTIONS(2225), - [anon_sym_continue] = ACTIONS(2225), - [anon_sym_for] = ACTIONS(2225), - [anon_sym_in2] = ACTIONS(2225), - [anon_sym_loop] = ACTIONS(2225), - [anon_sym_make] = ACTIONS(2225), - [anon_sym_while] = ACTIONS(2225), - [anon_sym_do] = ACTIONS(2225), - [anon_sym_if] = ACTIONS(2225), - [anon_sym_else] = ACTIONS(2225), - [anon_sym_match] = ACTIONS(2225), - [anon_sym_RBRACE] = ACTIONS(2227), - [anon_sym_try] = ACTIONS(2225), - [anon_sym_catch] = ACTIONS(2225), - [anon_sym_return] = ACTIONS(2225), - [anon_sym_source] = ACTIONS(2225), - [anon_sym_source_DASHenv] = ACTIONS(2225), - [anon_sym_register] = ACTIONS(2225), - [anon_sym_hide] = ACTIONS(2225), - [anon_sym_hide_DASHenv] = ACTIONS(2225), - [anon_sym_overlay] = ACTIONS(2225), - [anon_sym_as] = ACTIONS(2225), - [anon_sym_LPAREN2] = ACTIONS(1683), - [anon_sym_PLUS2] = ACTIONS(2225), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2227), - [aux_sym__val_number_decimal_token1] = ACTIONS(2225), - [aux_sym__val_number_decimal_token2] = ACTIONS(2227), - [aux_sym__val_number_decimal_token3] = ACTIONS(2227), - [aux_sym__val_number_decimal_token4] = ACTIONS(2227), - [aux_sym__val_number_token1] = ACTIONS(2227), - [aux_sym__val_number_token2] = ACTIONS(2227), - [aux_sym__val_number_token3] = ACTIONS(2227), - [aux_sym__val_number_token4] = ACTIONS(2225), - [aux_sym__val_number_token5] = ACTIONS(2225), - [aux_sym__val_number_token6] = ACTIONS(2225), - [anon_sym_DQUOTE] = ACTIONS(2227), - [sym__str_single_quotes] = ACTIONS(2227), - [sym__str_back_ticks] = ACTIONS(2227), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2227), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2227), + [568] = { + [sym_comment] = STATE(568), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [591] = { - [sym_comment] = STATE(591), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [569] = { + [sym_comment] = STATE(569), + [anon_sym_export] = ACTIONS(2290), + [anon_sym_alias] = ACTIONS(2290), + [anon_sym_let] = ACTIONS(2290), + [anon_sym_let_DASHenv] = ACTIONS(2290), + [anon_sym_mut] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [aux_sym_cmd_identifier_token1] = ACTIONS(2290), + [aux_sym_cmd_identifier_token2] = ACTIONS(2290), + [aux_sym_cmd_identifier_token3] = ACTIONS(2290), + [aux_sym_cmd_identifier_token4] = ACTIONS(2290), + [aux_sym_cmd_identifier_token5] = ACTIONS(2290), + [aux_sym_cmd_identifier_token6] = ACTIONS(2290), + [aux_sym_cmd_identifier_token7] = ACTIONS(2290), + [aux_sym_cmd_identifier_token8] = ACTIONS(2290), + [aux_sym_cmd_identifier_token9] = ACTIONS(2290), + [aux_sym_cmd_identifier_token10] = ACTIONS(2290), + [aux_sym_cmd_identifier_token11] = ACTIONS(2290), + [aux_sym_cmd_identifier_token12] = ACTIONS(2290), + [aux_sym_cmd_identifier_token13] = ACTIONS(2290), + [aux_sym_cmd_identifier_token14] = ACTIONS(2290), + [aux_sym_cmd_identifier_token15] = ACTIONS(2290), + [aux_sym_cmd_identifier_token16] = ACTIONS(2290), + [aux_sym_cmd_identifier_token17] = ACTIONS(2290), + [aux_sym_cmd_identifier_token18] = ACTIONS(2290), + [aux_sym_cmd_identifier_token19] = ACTIONS(2290), + [aux_sym_cmd_identifier_token20] = ACTIONS(2290), + [aux_sym_cmd_identifier_token21] = ACTIONS(2290), + [aux_sym_cmd_identifier_token22] = ACTIONS(2290), + [aux_sym_cmd_identifier_token23] = ACTIONS(2290), + [aux_sym_cmd_identifier_token24] = ACTIONS(2290), + [aux_sym_cmd_identifier_token25] = ACTIONS(2290), + [aux_sym_cmd_identifier_token26] = ACTIONS(2290), + [aux_sym_cmd_identifier_token27] = ACTIONS(2290), + [aux_sym_cmd_identifier_token28] = ACTIONS(2290), + [aux_sym_cmd_identifier_token29] = ACTIONS(2290), + [aux_sym_cmd_identifier_token30] = ACTIONS(2290), + [aux_sym_cmd_identifier_token31] = ACTIONS(2290), + [aux_sym_cmd_identifier_token32] = ACTIONS(2290), + [aux_sym_cmd_identifier_token33] = ACTIONS(2290), + [aux_sym_cmd_identifier_token34] = ACTIONS(2290), + [aux_sym_cmd_identifier_token35] = ACTIONS(2290), + [aux_sym_cmd_identifier_token36] = ACTIONS(2290), + [aux_sym_cmd_identifier_token37] = ACTIONS(2290), + [aux_sym_cmd_identifier_token38] = ACTIONS(2290), + [aux_sym_cmd_identifier_token39] = ACTIONS(2290), + [aux_sym_cmd_identifier_token40] = ACTIONS(2290), + [anon_sym_def] = ACTIONS(2290), + [anon_sym_export_DASHenv] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym_module] = ACTIONS(2290), + [anon_sym_use] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2290), + [anon_sym_DOLLAR] = ACTIONS(2290), + [anon_sym_error] = ACTIONS(2290), + [anon_sym_DASH2] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2290), + [anon_sym_continue] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2290), + [anon_sym_in2] = ACTIONS(2290), + [anon_sym_loop] = ACTIONS(2290), + [anon_sym_make] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2290), + [anon_sym_do] = ACTIONS(2290), + [anon_sym_if] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2290), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2290), + [anon_sym_try] = ACTIONS(2290), + [anon_sym_catch] = ACTIONS(2290), + [anon_sym_return] = ACTIONS(2290), + [anon_sym_source] = ACTIONS(2290), + [anon_sym_source_DASHenv] = ACTIONS(2290), + [anon_sym_register] = ACTIONS(2290), + [anon_sym_hide] = ACTIONS(2290), + [anon_sym_hide_DASHenv] = ACTIONS(2290), + [anon_sym_overlay] = ACTIONS(2290), + [anon_sym_as] = ACTIONS(2290), + [anon_sym_LPAREN2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2290), + [aux_sym__val_number_decimal_token1] = ACTIONS(2290), + [aux_sym__val_number_decimal_token2] = ACTIONS(2290), + [aux_sym__val_number_decimal_token3] = ACTIONS(2290), + [aux_sym__val_number_decimal_token4] = ACTIONS(2290), + [aux_sym__val_number_token1] = ACTIONS(2290), + [aux_sym__val_number_token2] = ACTIONS(2290), + [aux_sym__val_number_token3] = ACTIONS(2290), + [aux_sym__val_number_token4] = ACTIONS(2290), + [aux_sym__val_number_token5] = ACTIONS(2290), + [aux_sym__val_number_token6] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2290), + [sym__str_single_quotes] = ACTIONS(2290), + [sym__str_back_ticks] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2290), + [sym__entry_separator] = ACTIONS(2292), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2292), }, - [592] = { - [sym_comment] = STATE(592), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_COMMA] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), - [anon_sym_COLON2] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), + [570] = { + [sym_comment] = STATE(570), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1819), + [aux_sym_cmd_identifier_token3] = ACTIONS(1819), + [aux_sym_cmd_identifier_token4] = ACTIONS(1819), + [aux_sym_cmd_identifier_token5] = ACTIONS(1819), + [aux_sym_cmd_identifier_token6] = ACTIONS(1819), + [aux_sym_cmd_identifier_token7] = ACTIONS(1819), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1819), + [aux_sym_cmd_identifier_token11] = ACTIONS(1819), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1819), + [aux_sym_cmd_identifier_token17] = ACTIONS(1819), + [aux_sym_cmd_identifier_token18] = ACTIONS(1819), + [aux_sym_cmd_identifier_token19] = ACTIONS(1819), + [aux_sym_cmd_identifier_token20] = ACTIONS(1819), + [aux_sym_cmd_identifier_token21] = ACTIONS(1819), + [aux_sym_cmd_identifier_token22] = ACTIONS(1819), + [aux_sym_cmd_identifier_token23] = ACTIONS(1819), + [aux_sym_cmd_identifier_token24] = ACTIONS(1819), + [aux_sym_cmd_identifier_token25] = ACTIONS(1819), + [aux_sym_cmd_identifier_token26] = ACTIONS(1819), + [aux_sym_cmd_identifier_token27] = ACTIONS(1819), + [aux_sym_cmd_identifier_token28] = ACTIONS(1819), + [aux_sym_cmd_identifier_token29] = ACTIONS(1819), + [aux_sym_cmd_identifier_token30] = ACTIONS(1819), + [aux_sym_cmd_identifier_token31] = ACTIONS(1819), + [aux_sym_cmd_identifier_token32] = ACTIONS(1819), + [aux_sym_cmd_identifier_token33] = ACTIONS(1819), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1819), + [aux_sym_cmd_identifier_token36] = ACTIONS(1819), + [aux_sym_cmd_identifier_token37] = ACTIONS(1819), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1819), + [aux_sym_cmd_identifier_token40] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), }, - [593] = { - [sym_comment] = STATE(593), - [anon_sym_export] = ACTIONS(2184), - [anon_sym_alias] = ACTIONS(2184), - [anon_sym_let] = ACTIONS(2184), - [anon_sym_let_DASHenv] = ACTIONS(2184), - [anon_sym_mut] = ACTIONS(2184), - [anon_sym_const] = ACTIONS(2184), - [aux_sym_cmd_identifier_token1] = ACTIONS(2184), - [aux_sym_cmd_identifier_token2] = ACTIONS(2186), - [aux_sym_cmd_identifier_token3] = ACTIONS(2186), - [aux_sym_cmd_identifier_token4] = ACTIONS(2186), - [aux_sym_cmd_identifier_token5] = ACTIONS(2186), - [aux_sym_cmd_identifier_token6] = ACTIONS(2186), - [aux_sym_cmd_identifier_token7] = ACTIONS(2186), - [aux_sym_cmd_identifier_token8] = ACTIONS(2184), - [aux_sym_cmd_identifier_token9] = ACTIONS(2184), - [aux_sym_cmd_identifier_token10] = ACTIONS(2186), - [aux_sym_cmd_identifier_token11] = ACTIONS(2186), - [aux_sym_cmd_identifier_token12] = ACTIONS(2184), - [aux_sym_cmd_identifier_token13] = ACTIONS(2184), - [aux_sym_cmd_identifier_token14] = ACTIONS(2184), - [aux_sym_cmd_identifier_token15] = ACTIONS(2184), - [aux_sym_cmd_identifier_token16] = ACTIONS(2186), - [aux_sym_cmd_identifier_token17] = ACTIONS(2186), - [aux_sym_cmd_identifier_token18] = ACTIONS(2186), - [aux_sym_cmd_identifier_token19] = ACTIONS(2186), - [aux_sym_cmd_identifier_token20] = ACTIONS(2186), - [aux_sym_cmd_identifier_token21] = ACTIONS(2186), - [aux_sym_cmd_identifier_token22] = ACTIONS(2186), - [aux_sym_cmd_identifier_token23] = ACTIONS(2186), - [aux_sym_cmd_identifier_token24] = ACTIONS(2186), - [aux_sym_cmd_identifier_token25] = ACTIONS(2186), - [aux_sym_cmd_identifier_token26] = ACTIONS(2186), - [aux_sym_cmd_identifier_token27] = ACTIONS(2186), - [aux_sym_cmd_identifier_token28] = ACTIONS(2186), - [aux_sym_cmd_identifier_token29] = ACTIONS(2186), - [aux_sym_cmd_identifier_token30] = ACTIONS(2186), - [aux_sym_cmd_identifier_token31] = ACTIONS(2186), - [aux_sym_cmd_identifier_token32] = ACTIONS(2186), - [aux_sym_cmd_identifier_token33] = ACTIONS(2186), - [aux_sym_cmd_identifier_token34] = ACTIONS(2184), - [aux_sym_cmd_identifier_token35] = ACTIONS(2186), - [aux_sym_cmd_identifier_token36] = ACTIONS(2186), - [aux_sym_cmd_identifier_token37] = ACTIONS(2186), - [aux_sym_cmd_identifier_token38] = ACTIONS(2184), - [aux_sym_cmd_identifier_token39] = ACTIONS(2186), - [aux_sym_cmd_identifier_token40] = ACTIONS(2186), - [anon_sym_def] = ACTIONS(2184), - [anon_sym_export_DASHenv] = ACTIONS(2184), - [anon_sym_extern] = ACTIONS(2184), - [anon_sym_module] = ACTIONS(2184), - [anon_sym_use] = ACTIONS(2184), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2186), - [anon_sym_error] = ACTIONS(2184), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_break] = ACTIONS(2184), - [anon_sym_continue] = ACTIONS(2184), - [anon_sym_for] = ACTIONS(2184), - [anon_sym_in2] = ACTIONS(2184), - [anon_sym_loop] = ACTIONS(2184), - [anon_sym_make] = ACTIONS(2184), - [anon_sym_while] = ACTIONS(2184), - [anon_sym_do] = ACTIONS(2184), - [anon_sym_if] = ACTIONS(2184), - [anon_sym_else] = ACTIONS(2184), - [anon_sym_match] = ACTIONS(2184), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_try] = ACTIONS(2184), - [anon_sym_catch] = ACTIONS(2184), - [anon_sym_return] = ACTIONS(2184), - [anon_sym_source] = ACTIONS(2184), - [anon_sym_source_DASHenv] = ACTIONS(2184), - [anon_sym_register] = ACTIONS(2184), - [anon_sym_hide] = ACTIONS(2184), - [anon_sym_hide_DASHenv] = ACTIONS(2184), - [anon_sym_overlay] = ACTIONS(2184), - [anon_sym_as] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_PLUS2] = ACTIONS(2184), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2186), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(2186), - [aux_sym__val_number_token2] = ACTIONS(2186), - [aux_sym__val_number_token3] = ACTIONS(2186), - [aux_sym__val_number_token4] = ACTIONS(2184), - [aux_sym__val_number_token5] = ACTIONS(2184), - [aux_sym__val_number_token6] = ACTIONS(2184), - [anon_sym_DQUOTE] = ACTIONS(2186), - [sym__str_single_quotes] = ACTIONS(2186), - [sym__str_back_ticks] = ACTIONS(2186), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2186), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2186), + [571] = { + [sym_comment] = STATE(571), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(2294), + [aux_sym__immediate_decimal_token2] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [594] = { - [sym_comment] = STATE(594), - [anon_sym_export] = ACTIONS(2318), - [anon_sym_alias] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2318), - [anon_sym_let_DASHenv] = ACTIONS(2318), - [anon_sym_mut] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [aux_sym_cmd_identifier_token1] = ACTIONS(2318), - [aux_sym_cmd_identifier_token2] = ACTIONS(2318), - [aux_sym_cmd_identifier_token3] = ACTIONS(2318), - [aux_sym_cmd_identifier_token4] = ACTIONS(2318), - [aux_sym_cmd_identifier_token5] = ACTIONS(2318), - [aux_sym_cmd_identifier_token6] = ACTIONS(2318), - [aux_sym_cmd_identifier_token7] = ACTIONS(2318), - [aux_sym_cmd_identifier_token8] = ACTIONS(2318), - [aux_sym_cmd_identifier_token9] = ACTIONS(2318), - [aux_sym_cmd_identifier_token10] = ACTIONS(2318), - [aux_sym_cmd_identifier_token11] = ACTIONS(2318), - [aux_sym_cmd_identifier_token12] = ACTIONS(2318), - [aux_sym_cmd_identifier_token13] = ACTIONS(2318), - [aux_sym_cmd_identifier_token14] = ACTIONS(2318), - [aux_sym_cmd_identifier_token15] = ACTIONS(2318), - [aux_sym_cmd_identifier_token16] = ACTIONS(2318), - [aux_sym_cmd_identifier_token17] = ACTIONS(2318), - [aux_sym_cmd_identifier_token18] = ACTIONS(2318), - [aux_sym_cmd_identifier_token19] = ACTIONS(2318), - [aux_sym_cmd_identifier_token20] = ACTIONS(2318), - [aux_sym_cmd_identifier_token21] = ACTIONS(2318), - [aux_sym_cmd_identifier_token22] = ACTIONS(2318), - [aux_sym_cmd_identifier_token23] = ACTIONS(2318), - [aux_sym_cmd_identifier_token24] = ACTIONS(2318), - [aux_sym_cmd_identifier_token25] = ACTIONS(2318), - [aux_sym_cmd_identifier_token26] = ACTIONS(2318), - [aux_sym_cmd_identifier_token27] = ACTIONS(2318), - [aux_sym_cmd_identifier_token28] = ACTIONS(2318), - [aux_sym_cmd_identifier_token29] = ACTIONS(2318), - [aux_sym_cmd_identifier_token30] = ACTIONS(2318), - [aux_sym_cmd_identifier_token31] = ACTIONS(2318), - [aux_sym_cmd_identifier_token32] = ACTIONS(2318), - [aux_sym_cmd_identifier_token33] = ACTIONS(2318), - [aux_sym_cmd_identifier_token34] = ACTIONS(2318), - [aux_sym_cmd_identifier_token35] = ACTIONS(2318), - [aux_sym_cmd_identifier_token36] = ACTIONS(2318), - [aux_sym_cmd_identifier_token37] = ACTIONS(2318), - [aux_sym_cmd_identifier_token38] = ACTIONS(2318), - [aux_sym_cmd_identifier_token39] = ACTIONS(2318), - [aux_sym_cmd_identifier_token40] = ACTIONS(2318), - [anon_sym_def] = ACTIONS(2318), - [anon_sym_export_DASHenv] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_module] = ACTIONS(2318), - [anon_sym_use] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2318), - [anon_sym_DOLLAR] = ACTIONS(2318), - [anon_sym_error] = ACTIONS(2318), - [anon_sym_DASH2] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_in2] = ACTIONS(2318), - [anon_sym_loop] = ACTIONS(2318), - [anon_sym_make] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_else] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2318), - [anon_sym_RBRACE] = ACTIONS(2318), - [anon_sym_try] = ACTIONS(2318), - [anon_sym_catch] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_source] = ACTIONS(2318), - [anon_sym_source_DASHenv] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_hide] = ACTIONS(2318), - [anon_sym_hide_DASHenv] = ACTIONS(2318), - [anon_sym_overlay] = ACTIONS(2318), - [anon_sym_as] = ACTIONS(2318), - [anon_sym_PLUS2] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2318), - [aux_sym__val_number_decimal_token1] = ACTIONS(2318), - [aux_sym__val_number_decimal_token2] = ACTIONS(2318), - [aux_sym__val_number_decimal_token3] = ACTIONS(2318), - [aux_sym__val_number_decimal_token4] = ACTIONS(2318), - [aux_sym__val_number_token1] = ACTIONS(2318), - [aux_sym__val_number_token2] = ACTIONS(2318), - [aux_sym__val_number_token3] = ACTIONS(2318), - [aux_sym__val_number_token4] = ACTIONS(2318), - [aux_sym__val_number_token5] = ACTIONS(2318), - [aux_sym__val_number_token6] = ACTIONS(2318), - [anon_sym_LBRACK2] = ACTIONS(2320), - [anon_sym_DQUOTE] = ACTIONS(2318), - [sym__str_single_quotes] = ACTIONS(2318), - [sym__str_back_ticks] = ACTIONS(2318), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2318), - [sym__entry_separator] = ACTIONS(2322), + [572] = { + [sym_comment] = STATE(572), + [anon_sym_export] = ACTIONS(980), + [anon_sym_alias] = ACTIONS(980), + [anon_sym_let] = ACTIONS(980), + [anon_sym_let_DASHenv] = ACTIONS(980), + [anon_sym_mut] = ACTIONS(980), + [anon_sym_const] = ACTIONS(980), + [aux_sym_cmd_identifier_token1] = ACTIONS(980), + [aux_sym_cmd_identifier_token2] = ACTIONS(980), + [aux_sym_cmd_identifier_token3] = ACTIONS(980), + [aux_sym_cmd_identifier_token4] = ACTIONS(980), + [aux_sym_cmd_identifier_token5] = ACTIONS(980), + [aux_sym_cmd_identifier_token6] = ACTIONS(980), + [aux_sym_cmd_identifier_token7] = ACTIONS(980), + [aux_sym_cmd_identifier_token8] = ACTIONS(980), + [aux_sym_cmd_identifier_token9] = ACTIONS(980), + [aux_sym_cmd_identifier_token10] = ACTIONS(980), + [aux_sym_cmd_identifier_token11] = ACTIONS(980), + [aux_sym_cmd_identifier_token12] = ACTIONS(980), + [aux_sym_cmd_identifier_token13] = ACTIONS(980), + [aux_sym_cmd_identifier_token14] = ACTIONS(980), + [aux_sym_cmd_identifier_token15] = ACTIONS(980), + [aux_sym_cmd_identifier_token16] = ACTIONS(980), + [aux_sym_cmd_identifier_token17] = ACTIONS(980), + [aux_sym_cmd_identifier_token18] = ACTIONS(980), + [aux_sym_cmd_identifier_token19] = ACTIONS(980), + [aux_sym_cmd_identifier_token20] = ACTIONS(980), + [aux_sym_cmd_identifier_token21] = ACTIONS(980), + [aux_sym_cmd_identifier_token22] = ACTIONS(980), + [aux_sym_cmd_identifier_token23] = ACTIONS(980), + [aux_sym_cmd_identifier_token24] = ACTIONS(980), + [aux_sym_cmd_identifier_token25] = ACTIONS(980), + [aux_sym_cmd_identifier_token26] = ACTIONS(980), + [aux_sym_cmd_identifier_token27] = ACTIONS(980), + [aux_sym_cmd_identifier_token28] = ACTIONS(980), + [aux_sym_cmd_identifier_token29] = ACTIONS(980), + [aux_sym_cmd_identifier_token30] = ACTIONS(980), + [aux_sym_cmd_identifier_token31] = ACTIONS(980), + [aux_sym_cmd_identifier_token32] = ACTIONS(980), + [aux_sym_cmd_identifier_token33] = ACTIONS(980), + [aux_sym_cmd_identifier_token34] = ACTIONS(980), + [aux_sym_cmd_identifier_token35] = ACTIONS(980), + [aux_sym_cmd_identifier_token36] = ACTIONS(980), + [aux_sym_cmd_identifier_token37] = ACTIONS(980), + [aux_sym_cmd_identifier_token38] = ACTIONS(980), + [aux_sym_cmd_identifier_token39] = ACTIONS(980), + [aux_sym_cmd_identifier_token40] = ACTIONS(980), + [anon_sym_def] = ACTIONS(980), + [anon_sym_export_DASHenv] = ACTIONS(980), + [anon_sym_extern] = ACTIONS(980), + [anon_sym_module] = ACTIONS(980), + [anon_sym_use] = ACTIONS(980), + [anon_sym_LPAREN] = ACTIONS(980), + [anon_sym_COMMA] = ACTIONS(980), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_error] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_break] = ACTIONS(980), + [anon_sym_continue] = ACTIONS(980), + [anon_sym_for] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(980), + [anon_sym_loop] = ACTIONS(980), + [anon_sym_make] = ACTIONS(980), + [anon_sym_while] = ACTIONS(980), + [anon_sym_do] = ACTIONS(980), + [anon_sym_if] = ACTIONS(980), + [anon_sym_else] = ACTIONS(980), + [anon_sym_match] = ACTIONS(980), + [anon_sym_RBRACE] = ACTIONS(980), + [anon_sym_try] = ACTIONS(980), + [anon_sym_catch] = ACTIONS(980), + [anon_sym_return] = ACTIONS(980), + [anon_sym_source] = ACTIONS(980), + [anon_sym_source_DASHenv] = ACTIONS(980), + [anon_sym_register] = ACTIONS(980), + [anon_sym_hide] = ACTIONS(980), + [anon_sym_hide_DASHenv] = ACTIONS(980), + [anon_sym_overlay] = ACTIONS(980), + [anon_sym_as] = ACTIONS(980), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(980), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(980), + [aux_sym__val_number_decimal_token3] = ACTIONS(980), + [aux_sym__val_number_decimal_token4] = ACTIONS(980), + [aux_sym__val_number_token1] = ACTIONS(980), + [aux_sym__val_number_token2] = ACTIONS(980), + [aux_sym__val_number_token3] = ACTIONS(980), + [aux_sym__val_number_token4] = ACTIONS(980), + [aux_sym__val_number_token5] = ACTIONS(980), + [aux_sym__val_number_token6] = ACTIONS(980), + [anon_sym_DQUOTE] = ACTIONS(980), + [sym__str_single_quotes] = ACTIONS(980), + [sym__str_back_ticks] = ACTIONS(980), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(980), + [sym__entry_separator] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2322), + [sym_raw_string_begin] = ACTIONS(982), }, - [595] = { - [sym_comment] = STATE(595), - [anon_sym_export] = ACTIONS(972), - [anon_sym_alias] = ACTIONS(972), - [anon_sym_let] = ACTIONS(972), - [anon_sym_let_DASHenv] = ACTIONS(972), - [anon_sym_mut] = ACTIONS(972), - [anon_sym_const] = ACTIONS(972), - [aux_sym_cmd_identifier_token1] = ACTIONS(972), - [aux_sym_cmd_identifier_token2] = ACTIONS(974), - [aux_sym_cmd_identifier_token3] = ACTIONS(974), - [aux_sym_cmd_identifier_token4] = ACTIONS(974), - [aux_sym_cmd_identifier_token5] = ACTIONS(974), - [aux_sym_cmd_identifier_token6] = ACTIONS(974), - [aux_sym_cmd_identifier_token7] = ACTIONS(974), - [aux_sym_cmd_identifier_token8] = ACTIONS(972), - [aux_sym_cmd_identifier_token9] = ACTIONS(972), - [aux_sym_cmd_identifier_token10] = ACTIONS(974), - [aux_sym_cmd_identifier_token11] = ACTIONS(974), - [aux_sym_cmd_identifier_token12] = ACTIONS(972), - [aux_sym_cmd_identifier_token13] = ACTIONS(972), - [aux_sym_cmd_identifier_token14] = ACTIONS(972), - [aux_sym_cmd_identifier_token15] = ACTIONS(972), - [aux_sym_cmd_identifier_token16] = ACTIONS(974), - [aux_sym_cmd_identifier_token17] = ACTIONS(974), - [aux_sym_cmd_identifier_token18] = ACTIONS(974), - [aux_sym_cmd_identifier_token19] = ACTIONS(974), - [aux_sym_cmd_identifier_token20] = ACTIONS(974), - [aux_sym_cmd_identifier_token21] = ACTIONS(974), - [aux_sym_cmd_identifier_token22] = ACTIONS(974), - [aux_sym_cmd_identifier_token23] = ACTIONS(974), - [aux_sym_cmd_identifier_token24] = ACTIONS(974), - [aux_sym_cmd_identifier_token25] = ACTIONS(974), - [aux_sym_cmd_identifier_token26] = ACTIONS(974), - [aux_sym_cmd_identifier_token27] = ACTIONS(974), - [aux_sym_cmd_identifier_token28] = ACTIONS(974), - [aux_sym_cmd_identifier_token29] = ACTIONS(974), - [aux_sym_cmd_identifier_token30] = ACTIONS(974), - [aux_sym_cmd_identifier_token31] = ACTIONS(974), - [aux_sym_cmd_identifier_token32] = ACTIONS(974), - [aux_sym_cmd_identifier_token33] = ACTIONS(974), - [aux_sym_cmd_identifier_token34] = ACTIONS(972), - [aux_sym_cmd_identifier_token35] = ACTIONS(974), - [aux_sym_cmd_identifier_token36] = ACTIONS(974), - [aux_sym_cmd_identifier_token37] = ACTIONS(974), - [aux_sym_cmd_identifier_token38] = ACTIONS(972), - [aux_sym_cmd_identifier_token39] = ACTIONS(974), - [aux_sym_cmd_identifier_token40] = ACTIONS(974), - [anon_sym_def] = ACTIONS(972), - [anon_sym_export_DASHenv] = ACTIONS(972), - [anon_sym_extern] = ACTIONS(972), - [anon_sym_module] = ACTIONS(972), - [anon_sym_use] = ACTIONS(972), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(974), - [anon_sym_error] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_break] = ACTIONS(972), - [anon_sym_continue] = ACTIONS(972), - [anon_sym_for] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(972), - [anon_sym_loop] = ACTIONS(972), - [anon_sym_make] = ACTIONS(972), - [anon_sym_while] = ACTIONS(972), - [anon_sym_do] = ACTIONS(972), - [anon_sym_if] = ACTIONS(972), - [anon_sym_else] = ACTIONS(972), - [anon_sym_match] = ACTIONS(972), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_try] = ACTIONS(972), - [anon_sym_catch] = ACTIONS(972), - [anon_sym_return] = ACTIONS(972), - [anon_sym_source] = ACTIONS(972), - [anon_sym_source_DASHenv] = ACTIONS(972), - [anon_sym_register] = ACTIONS(972), - [anon_sym_hide] = ACTIONS(972), - [anon_sym_hide_DASHenv] = ACTIONS(972), - [anon_sym_overlay] = ACTIONS(972), - [anon_sym_as] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(972), - [aux_sym__val_number_token5] = ACTIONS(972), - [aux_sym__val_number_token6] = ACTIONS(972), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), + [573] = { + [sym_comment] = STATE(573), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [aux_sym__immediate_decimal_token2] = ACTIONS(2214), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, - [596] = { - [sym_comment] = STATE(596), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(978), - [aux_sym_cmd_identifier_token3] = ACTIONS(978), - [aux_sym_cmd_identifier_token4] = ACTIONS(978), - [aux_sym_cmd_identifier_token5] = ACTIONS(978), - [aux_sym_cmd_identifier_token6] = ACTIONS(978), - [aux_sym_cmd_identifier_token7] = ACTIONS(978), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(978), - [aux_sym_cmd_identifier_token11] = ACTIONS(978), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(978), - [aux_sym_cmd_identifier_token17] = ACTIONS(978), - [aux_sym_cmd_identifier_token18] = ACTIONS(978), - [aux_sym_cmd_identifier_token19] = ACTIONS(978), - [aux_sym_cmd_identifier_token20] = ACTIONS(978), - [aux_sym_cmd_identifier_token21] = ACTIONS(978), - [aux_sym_cmd_identifier_token22] = ACTIONS(978), - [aux_sym_cmd_identifier_token23] = ACTIONS(978), - [aux_sym_cmd_identifier_token24] = ACTIONS(978), - [aux_sym_cmd_identifier_token25] = ACTIONS(978), - [aux_sym_cmd_identifier_token26] = ACTIONS(978), - [aux_sym_cmd_identifier_token27] = ACTIONS(978), - [aux_sym_cmd_identifier_token28] = ACTIONS(978), - [aux_sym_cmd_identifier_token29] = ACTIONS(978), - [aux_sym_cmd_identifier_token30] = ACTIONS(978), - [aux_sym_cmd_identifier_token31] = ACTIONS(978), - [aux_sym_cmd_identifier_token32] = ACTIONS(978), - [aux_sym_cmd_identifier_token33] = ACTIONS(978), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(978), - [aux_sym_cmd_identifier_token36] = ACTIONS(978), - [aux_sym_cmd_identifier_token37] = ACTIONS(978), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(978), - [aux_sym_cmd_identifier_token40] = ACTIONS(978), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(978), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), + [574] = { + [sym__expr_parenthesized_immediate] = STATE(7268), + [sym_comment] = STATE(574), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2158), + [aux_sym_cmd_identifier_token3] = ACTIONS(2158), + [aux_sym_cmd_identifier_token4] = ACTIONS(2158), + [aux_sym_cmd_identifier_token5] = ACTIONS(2158), + [aux_sym_cmd_identifier_token6] = ACTIONS(2158), + [aux_sym_cmd_identifier_token7] = ACTIONS(2158), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2158), + [aux_sym_cmd_identifier_token11] = ACTIONS(2158), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2158), + [aux_sym_cmd_identifier_token17] = ACTIONS(2158), + [aux_sym_cmd_identifier_token18] = ACTIONS(2158), + [aux_sym_cmd_identifier_token19] = ACTIONS(2158), + [aux_sym_cmd_identifier_token20] = ACTIONS(2158), + [aux_sym_cmd_identifier_token21] = ACTIONS(2158), + [aux_sym_cmd_identifier_token22] = ACTIONS(2158), + [aux_sym_cmd_identifier_token23] = ACTIONS(2158), + [aux_sym_cmd_identifier_token24] = ACTIONS(2158), + [aux_sym_cmd_identifier_token25] = ACTIONS(2158), + [aux_sym_cmd_identifier_token26] = ACTIONS(2158), + [aux_sym_cmd_identifier_token27] = ACTIONS(2158), + [aux_sym_cmd_identifier_token28] = ACTIONS(2158), + [aux_sym_cmd_identifier_token29] = ACTIONS(2158), + [aux_sym_cmd_identifier_token30] = ACTIONS(2158), + [aux_sym_cmd_identifier_token31] = ACTIONS(2158), + [aux_sym_cmd_identifier_token32] = ACTIONS(2158), + [aux_sym_cmd_identifier_token33] = ACTIONS(2158), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2158), + [aux_sym_cmd_identifier_token36] = ACTIONS(2158), + [aux_sym_cmd_identifier_token37] = ACTIONS(2158), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2158), + [aux_sym_cmd_identifier_token40] = ACTIONS(2158), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in2] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2158), + [aux_sym__val_number_decimal_token3] = ACTIONS(2158), + [aux_sym__val_number_decimal_token4] = ACTIONS(2158), + [aux_sym__val_number_token1] = ACTIONS(2158), + [aux_sym__val_number_token2] = ACTIONS(2158), + [aux_sym__val_number_token3] = ACTIONS(2158), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym__str_single_quotes] = ACTIONS(2158), + [sym__str_back_ticks] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [sym_raw_string_begin] = ACTIONS(2158), }, - [597] = { - [sym_comment] = STATE(597), - [aux_sym__multiple_types_repeat1] = STATE(573), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_alias] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_let_DASHenv] = ACTIONS(2324), - [anon_sym_mut] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [aux_sym_cmd_identifier_token1] = ACTIONS(2324), - [aux_sym_cmd_identifier_token2] = ACTIONS(2324), - [aux_sym_cmd_identifier_token3] = ACTIONS(2324), - [aux_sym_cmd_identifier_token4] = ACTIONS(2324), - [aux_sym_cmd_identifier_token5] = ACTIONS(2324), - [aux_sym_cmd_identifier_token6] = ACTIONS(2324), - [aux_sym_cmd_identifier_token7] = ACTIONS(2324), - [aux_sym_cmd_identifier_token8] = ACTIONS(2324), - [aux_sym_cmd_identifier_token9] = ACTIONS(2324), - [aux_sym_cmd_identifier_token10] = ACTIONS(2324), - [aux_sym_cmd_identifier_token11] = ACTIONS(2324), - [aux_sym_cmd_identifier_token12] = ACTIONS(2324), - [aux_sym_cmd_identifier_token13] = ACTIONS(2324), - [aux_sym_cmd_identifier_token14] = ACTIONS(2324), - [aux_sym_cmd_identifier_token15] = ACTIONS(2324), - [aux_sym_cmd_identifier_token16] = ACTIONS(2324), - [aux_sym_cmd_identifier_token17] = ACTIONS(2324), - [aux_sym_cmd_identifier_token18] = ACTIONS(2324), - [aux_sym_cmd_identifier_token19] = ACTIONS(2324), - [aux_sym_cmd_identifier_token20] = ACTIONS(2324), - [aux_sym_cmd_identifier_token21] = ACTIONS(2324), - [aux_sym_cmd_identifier_token22] = ACTIONS(2324), - [aux_sym_cmd_identifier_token23] = ACTIONS(2324), - [aux_sym_cmd_identifier_token24] = ACTIONS(2324), - [aux_sym_cmd_identifier_token25] = ACTIONS(2324), - [aux_sym_cmd_identifier_token26] = ACTIONS(2324), - [aux_sym_cmd_identifier_token27] = ACTIONS(2324), - [aux_sym_cmd_identifier_token28] = ACTIONS(2324), - [aux_sym_cmd_identifier_token29] = ACTIONS(2324), - [aux_sym_cmd_identifier_token30] = ACTIONS(2324), - [aux_sym_cmd_identifier_token31] = ACTIONS(2324), - [aux_sym_cmd_identifier_token32] = ACTIONS(2324), - [aux_sym_cmd_identifier_token33] = ACTIONS(2324), - [aux_sym_cmd_identifier_token34] = ACTIONS(2324), - [aux_sym_cmd_identifier_token35] = ACTIONS(2324), - [aux_sym_cmd_identifier_token36] = ACTIONS(2324), - [aux_sym_cmd_identifier_token37] = ACTIONS(2324), - [aux_sym_cmd_identifier_token38] = ACTIONS(2324), - [aux_sym_cmd_identifier_token39] = ACTIONS(2324), - [aux_sym_cmd_identifier_token40] = ACTIONS(2324), - [anon_sym_def] = ACTIONS(2324), - [anon_sym_export_DASHenv] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2324), - [anon_sym_DOLLAR] = ACTIONS(2324), - [anon_sym_error] = ACTIONS(2324), - [anon_sym_DASH2] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_in2] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_make] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2326), - [anon_sym_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_source] = ACTIONS(2324), - [anon_sym_source_DASHenv] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_hide] = ACTIONS(2324), - [anon_sym_hide_DASHenv] = ACTIONS(2324), - [anon_sym_overlay] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_PLUS2] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2324), - [aux_sym__val_number_decimal_token1] = ACTIONS(2324), - [aux_sym__val_number_decimal_token2] = ACTIONS(2324), - [aux_sym__val_number_decimal_token3] = ACTIONS(2324), - [aux_sym__val_number_decimal_token4] = ACTIONS(2324), - [aux_sym__val_number_token1] = ACTIONS(2324), - [aux_sym__val_number_token2] = ACTIONS(2324), - [aux_sym__val_number_token3] = ACTIONS(2324), - [aux_sym__val_number_token4] = ACTIONS(2324), - [aux_sym__val_number_token5] = ACTIONS(2324), - [aux_sym__val_number_token6] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2324), - [sym__str_single_quotes] = ACTIONS(2324), - [sym__str_back_ticks] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2324), - [sym__entry_separator] = ACTIONS(2298), + [575] = { + [sym_comment] = STATE(575), + [anon_sym_export] = ACTIONS(2192), + [anon_sym_alias] = ACTIONS(2192), + [anon_sym_let] = ACTIONS(2192), + [anon_sym_let_DASHenv] = ACTIONS(2192), + [anon_sym_mut] = ACTIONS(2192), + [anon_sym_const] = ACTIONS(2192), + [aux_sym_cmd_identifier_token1] = ACTIONS(2192), + [aux_sym_cmd_identifier_token2] = ACTIONS(2192), + [aux_sym_cmd_identifier_token3] = ACTIONS(2192), + [aux_sym_cmd_identifier_token4] = ACTIONS(2192), + [aux_sym_cmd_identifier_token5] = ACTIONS(2192), + [aux_sym_cmd_identifier_token6] = ACTIONS(2192), + [aux_sym_cmd_identifier_token7] = ACTIONS(2192), + [aux_sym_cmd_identifier_token8] = ACTIONS(2192), + [aux_sym_cmd_identifier_token9] = ACTIONS(2192), + [aux_sym_cmd_identifier_token10] = ACTIONS(2192), + [aux_sym_cmd_identifier_token11] = ACTIONS(2192), + [aux_sym_cmd_identifier_token12] = ACTIONS(2192), + [aux_sym_cmd_identifier_token13] = ACTIONS(2192), + [aux_sym_cmd_identifier_token14] = ACTIONS(2192), + [aux_sym_cmd_identifier_token15] = ACTIONS(2192), + [aux_sym_cmd_identifier_token16] = ACTIONS(2192), + [aux_sym_cmd_identifier_token17] = ACTIONS(2192), + [aux_sym_cmd_identifier_token18] = ACTIONS(2192), + [aux_sym_cmd_identifier_token19] = ACTIONS(2192), + [aux_sym_cmd_identifier_token20] = ACTIONS(2192), + [aux_sym_cmd_identifier_token21] = ACTIONS(2192), + [aux_sym_cmd_identifier_token22] = ACTIONS(2192), + [aux_sym_cmd_identifier_token23] = ACTIONS(2192), + [aux_sym_cmd_identifier_token24] = ACTIONS(2192), + [aux_sym_cmd_identifier_token25] = ACTIONS(2192), + [aux_sym_cmd_identifier_token26] = ACTIONS(2192), + [aux_sym_cmd_identifier_token27] = ACTIONS(2192), + [aux_sym_cmd_identifier_token28] = ACTIONS(2192), + [aux_sym_cmd_identifier_token29] = ACTIONS(2192), + [aux_sym_cmd_identifier_token30] = ACTIONS(2192), + [aux_sym_cmd_identifier_token31] = ACTIONS(2192), + [aux_sym_cmd_identifier_token32] = ACTIONS(2192), + [aux_sym_cmd_identifier_token33] = ACTIONS(2192), + [aux_sym_cmd_identifier_token34] = ACTIONS(2192), + [aux_sym_cmd_identifier_token35] = ACTIONS(2192), + [aux_sym_cmd_identifier_token36] = ACTIONS(2192), + [aux_sym_cmd_identifier_token37] = ACTIONS(2192), + [aux_sym_cmd_identifier_token38] = ACTIONS(2192), + [aux_sym_cmd_identifier_token39] = ACTIONS(2192), + [aux_sym_cmd_identifier_token40] = ACTIONS(2192), + [anon_sym_def] = ACTIONS(2192), + [anon_sym_export_DASHenv] = ACTIONS(2192), + [anon_sym_extern] = ACTIONS(2192), + [anon_sym_module] = ACTIONS(2192), + [anon_sym_use] = ACTIONS(2192), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_COMMA] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_error] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_break] = ACTIONS(2192), + [anon_sym_continue] = ACTIONS(2192), + [anon_sym_for] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_loop] = ACTIONS(2192), + [anon_sym_make] = ACTIONS(2192), + [anon_sym_while] = ACTIONS(2192), + [anon_sym_do] = ACTIONS(2192), + [anon_sym_if] = ACTIONS(2192), + [anon_sym_else] = ACTIONS(2192), + [anon_sym_match] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_try] = ACTIONS(2192), + [anon_sym_catch] = ACTIONS(2192), + [anon_sym_return] = ACTIONS(2192), + [anon_sym_source] = ACTIONS(2192), + [anon_sym_source_DASHenv] = ACTIONS(2192), + [anon_sym_register] = ACTIONS(2192), + [anon_sym_hide] = ACTIONS(2192), + [anon_sym_hide_DASHenv] = ACTIONS(2192), + [anon_sym_overlay] = ACTIONS(2192), + [anon_sym_as] = ACTIONS(2192), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token2] = ACTIONS(2192), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2192), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2192), + [aux_sym__val_number_token5] = ACTIONS(2192), + [aux_sym__val_number_token6] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2196), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2198), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2328), + [sym_raw_string_begin] = ACTIONS(2196), }, - [598] = { - [sym_comment] = STATE(598), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(2330), - [aux_sym__immediate_decimal_token2] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [576] = { + [sym_comment] = STATE(576), + [anon_sym_export] = ACTIONS(2200), + [anon_sym_alias] = ACTIONS(2200), + [anon_sym_let] = ACTIONS(2200), + [anon_sym_let_DASHenv] = ACTIONS(2200), + [anon_sym_mut] = ACTIONS(2200), + [anon_sym_const] = ACTIONS(2200), + [aux_sym_cmd_identifier_token1] = ACTIONS(2200), + [aux_sym_cmd_identifier_token2] = ACTIONS(2200), + [aux_sym_cmd_identifier_token3] = ACTIONS(2200), + [aux_sym_cmd_identifier_token4] = ACTIONS(2200), + [aux_sym_cmd_identifier_token5] = ACTIONS(2200), + [aux_sym_cmd_identifier_token6] = ACTIONS(2200), + [aux_sym_cmd_identifier_token7] = ACTIONS(2200), + [aux_sym_cmd_identifier_token8] = ACTIONS(2200), + [aux_sym_cmd_identifier_token9] = ACTIONS(2200), + [aux_sym_cmd_identifier_token10] = ACTIONS(2200), + [aux_sym_cmd_identifier_token11] = ACTIONS(2200), + [aux_sym_cmd_identifier_token12] = ACTIONS(2200), + [aux_sym_cmd_identifier_token13] = ACTIONS(2200), + [aux_sym_cmd_identifier_token14] = ACTIONS(2200), + [aux_sym_cmd_identifier_token15] = ACTIONS(2200), + [aux_sym_cmd_identifier_token16] = ACTIONS(2200), + [aux_sym_cmd_identifier_token17] = ACTIONS(2200), + [aux_sym_cmd_identifier_token18] = ACTIONS(2200), + [aux_sym_cmd_identifier_token19] = ACTIONS(2200), + [aux_sym_cmd_identifier_token20] = ACTIONS(2200), + [aux_sym_cmd_identifier_token21] = ACTIONS(2200), + [aux_sym_cmd_identifier_token22] = ACTIONS(2200), + [aux_sym_cmd_identifier_token23] = ACTIONS(2200), + [aux_sym_cmd_identifier_token24] = ACTIONS(2200), + [aux_sym_cmd_identifier_token25] = ACTIONS(2200), + [aux_sym_cmd_identifier_token26] = ACTIONS(2200), + [aux_sym_cmd_identifier_token27] = ACTIONS(2200), + [aux_sym_cmd_identifier_token28] = ACTIONS(2200), + [aux_sym_cmd_identifier_token29] = ACTIONS(2200), + [aux_sym_cmd_identifier_token30] = ACTIONS(2200), + [aux_sym_cmd_identifier_token31] = ACTIONS(2200), + [aux_sym_cmd_identifier_token32] = ACTIONS(2200), + [aux_sym_cmd_identifier_token33] = ACTIONS(2200), + [aux_sym_cmd_identifier_token34] = ACTIONS(2200), + [aux_sym_cmd_identifier_token35] = ACTIONS(2200), + [aux_sym_cmd_identifier_token36] = ACTIONS(2200), + [aux_sym_cmd_identifier_token37] = ACTIONS(2200), + [aux_sym_cmd_identifier_token38] = ACTIONS(2200), + [aux_sym_cmd_identifier_token39] = ACTIONS(2200), + [aux_sym_cmd_identifier_token40] = ACTIONS(2200), + [anon_sym_def] = ACTIONS(2200), + [anon_sym_export_DASHenv] = ACTIONS(2200), + [anon_sym_extern] = ACTIONS(2200), + [anon_sym_module] = ACTIONS(2200), + [anon_sym_use] = ACTIONS(2200), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_COMMA] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_error] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_break] = ACTIONS(2200), + [anon_sym_continue] = ACTIONS(2200), + [anon_sym_for] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_loop] = ACTIONS(2200), + [anon_sym_make] = ACTIONS(2200), + [anon_sym_while] = ACTIONS(2200), + [anon_sym_do] = ACTIONS(2200), + [anon_sym_if] = ACTIONS(2200), + [anon_sym_else] = ACTIONS(2200), + [anon_sym_match] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_try] = ACTIONS(2200), + [anon_sym_catch] = ACTIONS(2200), + [anon_sym_return] = ACTIONS(2200), + [anon_sym_source] = ACTIONS(2200), + [anon_sym_source_DASHenv] = ACTIONS(2200), + [anon_sym_register] = ACTIONS(2200), + [anon_sym_hide] = ACTIONS(2200), + [anon_sym_hide_DASHenv] = ACTIONS(2200), + [anon_sym_overlay] = ACTIONS(2200), + [anon_sym_as] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_PLUS2] = ACTIONS(2200), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [aux_sym__val_number_token4] = ACTIONS(2200), + [aux_sym__val_number_token5] = ACTIONS(2200), + [aux_sym__val_number_token6] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2202), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [577] = { + [sym_comment] = STATE(577), + [anon_sym_export] = ACTIONS(2180), + [anon_sym_alias] = ACTIONS(2180), + [anon_sym_let] = ACTIONS(2180), + [anon_sym_let_DASHenv] = ACTIONS(2180), + [anon_sym_mut] = ACTIONS(2180), + [anon_sym_const] = ACTIONS(2180), + [aux_sym_cmd_identifier_token1] = ACTIONS(2180), + [aux_sym_cmd_identifier_token2] = ACTIONS(2184), + [aux_sym_cmd_identifier_token3] = ACTIONS(2184), + [aux_sym_cmd_identifier_token4] = ACTIONS(2184), + [aux_sym_cmd_identifier_token5] = ACTIONS(2184), + [aux_sym_cmd_identifier_token6] = ACTIONS(2184), + [aux_sym_cmd_identifier_token7] = ACTIONS(2184), + [aux_sym_cmd_identifier_token8] = ACTIONS(2180), + [aux_sym_cmd_identifier_token9] = ACTIONS(2180), + [aux_sym_cmd_identifier_token10] = ACTIONS(2184), + [aux_sym_cmd_identifier_token11] = ACTIONS(2184), + [aux_sym_cmd_identifier_token12] = ACTIONS(2180), + [aux_sym_cmd_identifier_token13] = ACTIONS(2180), + [aux_sym_cmd_identifier_token14] = ACTIONS(2180), + [aux_sym_cmd_identifier_token15] = ACTIONS(2180), + [aux_sym_cmd_identifier_token16] = ACTIONS(2184), + [aux_sym_cmd_identifier_token17] = ACTIONS(2184), + [aux_sym_cmd_identifier_token18] = ACTIONS(2184), + [aux_sym_cmd_identifier_token19] = ACTIONS(2184), + [aux_sym_cmd_identifier_token20] = ACTIONS(2184), + [aux_sym_cmd_identifier_token21] = ACTIONS(2184), + [aux_sym_cmd_identifier_token22] = ACTIONS(2184), + [aux_sym_cmd_identifier_token23] = ACTIONS(2184), + [aux_sym_cmd_identifier_token24] = ACTIONS(2184), + [aux_sym_cmd_identifier_token25] = ACTIONS(2184), + [aux_sym_cmd_identifier_token26] = ACTIONS(2184), + [aux_sym_cmd_identifier_token27] = ACTIONS(2184), + [aux_sym_cmd_identifier_token28] = ACTIONS(2184), + [aux_sym_cmd_identifier_token29] = ACTIONS(2184), + [aux_sym_cmd_identifier_token30] = ACTIONS(2184), + [aux_sym_cmd_identifier_token31] = ACTIONS(2184), + [aux_sym_cmd_identifier_token32] = ACTIONS(2184), + [aux_sym_cmd_identifier_token33] = ACTIONS(2184), + [aux_sym_cmd_identifier_token34] = ACTIONS(2180), + [aux_sym_cmd_identifier_token35] = ACTIONS(2184), + [aux_sym_cmd_identifier_token36] = ACTIONS(2184), + [aux_sym_cmd_identifier_token37] = ACTIONS(2184), + [aux_sym_cmd_identifier_token38] = ACTIONS(2180), + [aux_sym_cmd_identifier_token39] = ACTIONS(2184), + [aux_sym_cmd_identifier_token40] = ACTIONS(2184), + [anon_sym_def] = ACTIONS(2180), + [anon_sym_export_DASHenv] = ACTIONS(2180), + [anon_sym_extern] = ACTIONS(2180), + [anon_sym_module] = ACTIONS(2180), + [anon_sym_use] = ACTIONS(2180), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_COMMA] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2184), + [anon_sym_error] = ACTIONS(2180), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_break] = ACTIONS(2180), + [anon_sym_continue] = ACTIONS(2180), + [anon_sym_for] = ACTIONS(2180), + [anon_sym_in2] = ACTIONS(2180), + [anon_sym_loop] = ACTIONS(2180), + [anon_sym_make] = ACTIONS(2180), + [anon_sym_while] = ACTIONS(2180), + [anon_sym_do] = ACTIONS(2180), + [anon_sym_if] = ACTIONS(2180), + [anon_sym_else] = ACTIONS(2180), + [anon_sym_match] = ACTIONS(2180), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_try] = ACTIONS(2180), + [anon_sym_catch] = ACTIONS(2180), + [anon_sym_return] = ACTIONS(2180), + [anon_sym_source] = ACTIONS(2180), + [anon_sym_source_DASHenv] = ACTIONS(2180), + [anon_sym_register] = ACTIONS(2180), + [anon_sym_hide] = ACTIONS(2180), + [anon_sym_hide_DASHenv] = ACTIONS(2180), + [anon_sym_overlay] = ACTIONS(2180), + [anon_sym_as] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(2182), + [anon_sym_PLUS2] = ACTIONS(2180), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2184), + [aux_sym__val_number_decimal_token1] = ACTIONS(2180), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2184), + [aux_sym__val_number_decimal_token4] = ACTIONS(2184), + [aux_sym__val_number_token1] = ACTIONS(2184), + [aux_sym__val_number_token2] = ACTIONS(2184), + [aux_sym__val_number_token3] = ACTIONS(2184), + [aux_sym__val_number_token4] = ACTIONS(2180), + [aux_sym__val_number_token5] = ACTIONS(2180), + [aux_sym__val_number_token6] = ACTIONS(2180), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym__str_single_quotes] = ACTIONS(2184), + [sym__str_back_ticks] = ACTIONS(2184), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2184), + [aux_sym__unquoted_in_record_token2] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2184), + }, + [578] = { + [sym_comment] = STATE(578), + [anon_sym_export] = ACTIONS(2188), + [anon_sym_alias] = ACTIONS(2188), + [anon_sym_let] = ACTIONS(2188), + [anon_sym_let_DASHenv] = ACTIONS(2188), + [anon_sym_mut] = ACTIONS(2188), + [anon_sym_const] = ACTIONS(2188), + [aux_sym_cmd_identifier_token1] = ACTIONS(2188), + [aux_sym_cmd_identifier_token2] = ACTIONS(2190), + [aux_sym_cmd_identifier_token3] = ACTIONS(2190), + [aux_sym_cmd_identifier_token4] = ACTIONS(2190), + [aux_sym_cmd_identifier_token5] = ACTIONS(2190), + [aux_sym_cmd_identifier_token6] = ACTIONS(2190), + [aux_sym_cmd_identifier_token7] = ACTIONS(2190), + [aux_sym_cmd_identifier_token8] = ACTIONS(2188), + [aux_sym_cmd_identifier_token9] = ACTIONS(2188), + [aux_sym_cmd_identifier_token10] = ACTIONS(2190), + [aux_sym_cmd_identifier_token11] = ACTIONS(2190), + [aux_sym_cmd_identifier_token12] = ACTIONS(2188), + [aux_sym_cmd_identifier_token13] = ACTIONS(2188), + [aux_sym_cmd_identifier_token14] = ACTIONS(2188), + [aux_sym_cmd_identifier_token15] = ACTIONS(2188), + [aux_sym_cmd_identifier_token16] = ACTIONS(2190), + [aux_sym_cmd_identifier_token17] = ACTIONS(2190), + [aux_sym_cmd_identifier_token18] = ACTIONS(2190), + [aux_sym_cmd_identifier_token19] = ACTIONS(2190), + [aux_sym_cmd_identifier_token20] = ACTIONS(2190), + [aux_sym_cmd_identifier_token21] = ACTIONS(2190), + [aux_sym_cmd_identifier_token22] = ACTIONS(2190), + [aux_sym_cmd_identifier_token23] = ACTIONS(2190), + [aux_sym_cmd_identifier_token24] = ACTIONS(2190), + [aux_sym_cmd_identifier_token25] = ACTIONS(2190), + [aux_sym_cmd_identifier_token26] = ACTIONS(2190), + [aux_sym_cmd_identifier_token27] = ACTIONS(2190), + [aux_sym_cmd_identifier_token28] = ACTIONS(2190), + [aux_sym_cmd_identifier_token29] = ACTIONS(2190), + [aux_sym_cmd_identifier_token30] = ACTIONS(2190), + [aux_sym_cmd_identifier_token31] = ACTIONS(2190), + [aux_sym_cmd_identifier_token32] = ACTIONS(2190), + [aux_sym_cmd_identifier_token33] = ACTIONS(2190), + [aux_sym_cmd_identifier_token34] = ACTIONS(2188), + [aux_sym_cmd_identifier_token35] = ACTIONS(2190), + [aux_sym_cmd_identifier_token36] = ACTIONS(2190), + [aux_sym_cmd_identifier_token37] = ACTIONS(2190), + [aux_sym_cmd_identifier_token38] = ACTIONS(2188), + [aux_sym_cmd_identifier_token39] = ACTIONS(2190), + [aux_sym_cmd_identifier_token40] = ACTIONS(2190), + [anon_sym_def] = ACTIONS(2188), + [anon_sym_export_DASHenv] = ACTIONS(2188), + [anon_sym_extern] = ACTIONS(2188), + [anon_sym_module] = ACTIONS(2188), + [anon_sym_use] = ACTIONS(2188), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_COMMA] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(2190), + [anon_sym_error] = ACTIONS(2188), + [anon_sym_DASH2] = ACTIONS(2188), + [anon_sym_break] = ACTIONS(2188), + [anon_sym_continue] = ACTIONS(2188), + [anon_sym_for] = ACTIONS(2188), + [anon_sym_in2] = ACTIONS(2188), + [anon_sym_loop] = ACTIONS(2188), + [anon_sym_make] = ACTIONS(2188), + [anon_sym_while] = ACTIONS(2188), + [anon_sym_do] = ACTIONS(2188), + [anon_sym_if] = ACTIONS(2188), + [anon_sym_else] = ACTIONS(2188), + [anon_sym_match] = ACTIONS(2188), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_try] = ACTIONS(2188), + [anon_sym_catch] = ACTIONS(2188), + [anon_sym_return] = ACTIONS(2188), + [anon_sym_source] = ACTIONS(2188), + [anon_sym_source_DASHenv] = ACTIONS(2188), + [anon_sym_register] = ACTIONS(2188), + [anon_sym_hide] = ACTIONS(2188), + [anon_sym_hide_DASHenv] = ACTIONS(2188), + [anon_sym_overlay] = ACTIONS(2188), + [anon_sym_as] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_PLUS2] = ACTIONS(2188), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2190), + [aux_sym__val_number_decimal_token1] = ACTIONS(2188), + [aux_sym__val_number_decimal_token2] = ACTIONS(2190), + [aux_sym__val_number_decimal_token3] = ACTIONS(2190), + [aux_sym__val_number_decimal_token4] = ACTIONS(2190), + [aux_sym__val_number_token1] = ACTIONS(2190), + [aux_sym__val_number_token2] = ACTIONS(2190), + [aux_sym__val_number_token3] = ACTIONS(2190), + [aux_sym__val_number_token4] = ACTIONS(2188), + [aux_sym__val_number_token5] = ACTIONS(2188), + [aux_sym__val_number_token6] = ACTIONS(2188), + [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__str_single_quotes] = ACTIONS(2190), + [sym__str_back_ticks] = ACTIONS(2190), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2190), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1803), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [599] = { - [sym_comment] = STATE(599), - [anon_sym_export] = ACTIONS(2237), - [anon_sym_alias] = ACTIONS(2237), - [anon_sym_let] = ACTIONS(2237), - [anon_sym_let_DASHenv] = ACTIONS(2237), - [anon_sym_mut] = ACTIONS(2237), - [anon_sym_const] = ACTIONS(2237), - [aux_sym_cmd_identifier_token1] = ACTIONS(2237), - [aux_sym_cmd_identifier_token2] = ACTIONS(2237), - [aux_sym_cmd_identifier_token3] = ACTIONS(2237), - [aux_sym_cmd_identifier_token4] = ACTIONS(2237), - [aux_sym_cmd_identifier_token5] = ACTIONS(2237), - [aux_sym_cmd_identifier_token6] = ACTIONS(2237), - [aux_sym_cmd_identifier_token7] = ACTIONS(2237), - [aux_sym_cmd_identifier_token8] = ACTIONS(2237), - [aux_sym_cmd_identifier_token9] = ACTIONS(2237), - [aux_sym_cmd_identifier_token10] = ACTIONS(2237), - [aux_sym_cmd_identifier_token11] = ACTIONS(2237), - [aux_sym_cmd_identifier_token12] = ACTIONS(2237), - [aux_sym_cmd_identifier_token13] = ACTIONS(2237), - [aux_sym_cmd_identifier_token14] = ACTIONS(2237), - [aux_sym_cmd_identifier_token15] = ACTIONS(2237), - [aux_sym_cmd_identifier_token16] = ACTIONS(2237), - [aux_sym_cmd_identifier_token17] = ACTIONS(2237), - [aux_sym_cmd_identifier_token18] = ACTIONS(2237), - [aux_sym_cmd_identifier_token19] = ACTIONS(2237), - [aux_sym_cmd_identifier_token20] = ACTIONS(2237), - [aux_sym_cmd_identifier_token21] = ACTIONS(2237), - [aux_sym_cmd_identifier_token22] = ACTIONS(2237), - [aux_sym_cmd_identifier_token23] = ACTIONS(2237), - [aux_sym_cmd_identifier_token24] = ACTIONS(2237), - [aux_sym_cmd_identifier_token25] = ACTIONS(2237), - [aux_sym_cmd_identifier_token26] = ACTIONS(2237), - [aux_sym_cmd_identifier_token27] = ACTIONS(2237), - [aux_sym_cmd_identifier_token28] = ACTIONS(2237), - [aux_sym_cmd_identifier_token29] = ACTIONS(2237), - [aux_sym_cmd_identifier_token30] = ACTIONS(2237), - [aux_sym_cmd_identifier_token31] = ACTIONS(2237), - [aux_sym_cmd_identifier_token32] = ACTIONS(2237), - [aux_sym_cmd_identifier_token33] = ACTIONS(2237), - [aux_sym_cmd_identifier_token34] = ACTIONS(2237), - [aux_sym_cmd_identifier_token35] = ACTIONS(2237), - [aux_sym_cmd_identifier_token36] = ACTIONS(2237), - [aux_sym_cmd_identifier_token37] = ACTIONS(2237), - [aux_sym_cmd_identifier_token38] = ACTIONS(2237), - [aux_sym_cmd_identifier_token39] = ACTIONS(2237), - [aux_sym_cmd_identifier_token40] = ACTIONS(2237), - [anon_sym_def] = ACTIONS(2237), - [anon_sym_export_DASHenv] = ACTIONS(2237), - [anon_sym_extern] = ACTIONS(2237), - [anon_sym_module] = ACTIONS(2237), - [anon_sym_use] = ACTIONS(2237), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_error] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_break] = ACTIONS(2237), - [anon_sym_continue] = ACTIONS(2237), - [anon_sym_for] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_loop] = ACTIONS(2237), - [anon_sym_make] = ACTIONS(2237), - [anon_sym_while] = ACTIONS(2237), - [anon_sym_do] = ACTIONS(2237), - [anon_sym_if] = ACTIONS(2237), - [anon_sym_else] = ACTIONS(2237), - [anon_sym_match] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_try] = ACTIONS(2237), - [anon_sym_catch] = ACTIONS(2237), - [anon_sym_return] = ACTIONS(2237), - [anon_sym_source] = ACTIONS(2237), - [anon_sym_source_DASHenv] = ACTIONS(2237), - [anon_sym_register] = ACTIONS(2237), - [anon_sym_hide] = ACTIONS(2237), - [anon_sym_hide_DASHenv] = ACTIONS(2237), - [anon_sym_overlay] = ACTIONS(2237), - [anon_sym_as] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [aux_sym__val_number_token4] = ACTIONS(2237), - [aux_sym__val_number_token5] = ACTIONS(2237), - [aux_sym__val_number_token6] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2241), - [aux_sym__unquoted_in_record_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2241), + [sym_raw_string_begin] = ACTIONS(2190), }, - [600] = { - [sym_comment] = STATE(600), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1985), - [aux_sym_cmd_identifier_token3] = ACTIONS(1985), - [aux_sym_cmd_identifier_token4] = ACTIONS(1985), - [aux_sym_cmd_identifier_token5] = ACTIONS(1985), - [aux_sym_cmd_identifier_token6] = ACTIONS(1985), - [aux_sym_cmd_identifier_token7] = ACTIONS(1985), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1985), - [aux_sym_cmd_identifier_token11] = ACTIONS(1985), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1985), - [aux_sym_cmd_identifier_token17] = ACTIONS(1985), - [aux_sym_cmd_identifier_token18] = ACTIONS(1985), - [aux_sym_cmd_identifier_token19] = ACTIONS(1985), - [aux_sym_cmd_identifier_token20] = ACTIONS(1985), - [aux_sym_cmd_identifier_token21] = ACTIONS(1985), - [aux_sym_cmd_identifier_token22] = ACTIONS(1985), - [aux_sym_cmd_identifier_token23] = ACTIONS(1985), - [aux_sym_cmd_identifier_token24] = ACTIONS(1985), - [aux_sym_cmd_identifier_token25] = ACTIONS(1985), - [aux_sym_cmd_identifier_token26] = ACTIONS(1985), - [aux_sym_cmd_identifier_token27] = ACTIONS(1985), - [aux_sym_cmd_identifier_token28] = ACTIONS(1985), - [aux_sym_cmd_identifier_token29] = ACTIONS(1985), - [aux_sym_cmd_identifier_token30] = ACTIONS(1985), - [aux_sym_cmd_identifier_token31] = ACTIONS(1985), - [aux_sym_cmd_identifier_token32] = ACTIONS(1985), - [aux_sym_cmd_identifier_token33] = ACTIONS(1985), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1985), - [aux_sym_cmd_identifier_token36] = ACTIONS(1985), - [aux_sym_cmd_identifier_token37] = ACTIONS(1985), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1985), - [aux_sym_cmd_identifier_token40] = ACTIONS(1985), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1985), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1985), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1985), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1985), - [aux_sym__val_number_decimal_token3] = ACTIONS(1985), - [aux_sym__val_number_decimal_token4] = ACTIONS(1985), - [aux_sym__val_number_token1] = ACTIONS(1985), - [aux_sym__val_number_token2] = ACTIONS(1985), - [aux_sym__val_number_token3] = ACTIONS(1985), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1985), - [sym__str_single_quotes] = ACTIONS(1985), - [sym__str_back_ticks] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1985), - [sym__entry_separator] = ACTIONS(1987), + [579] = { + [sym_comment] = STATE(579), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [aux_sym__immediate_decimal_token2] = ACTIONS(2298), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1987), + [sym_raw_string_begin] = ACTIONS(1774), }, - [601] = { - [sym_comment] = STATE(601), - [aux_sym_shebang_repeat1] = STATE(601), - [anon_sym_export] = ACTIONS(1274), - [anon_sym_alias] = ACTIONS(1274), - [anon_sym_let] = ACTIONS(1274), - [anon_sym_let_DASHenv] = ACTIONS(1274), - [anon_sym_mut] = ACTIONS(1274), - [anon_sym_const] = ACTIONS(1274), - [aux_sym_cmd_identifier_token1] = ACTIONS(1274), - [aux_sym_cmd_identifier_token2] = ACTIONS(1276), - [aux_sym_cmd_identifier_token3] = ACTIONS(1276), - [aux_sym_cmd_identifier_token4] = ACTIONS(1276), - [aux_sym_cmd_identifier_token5] = ACTIONS(1276), - [aux_sym_cmd_identifier_token6] = ACTIONS(1276), - [aux_sym_cmd_identifier_token7] = ACTIONS(1276), - [aux_sym_cmd_identifier_token8] = ACTIONS(1274), - [aux_sym_cmd_identifier_token9] = ACTIONS(1274), - [aux_sym_cmd_identifier_token10] = ACTIONS(1276), - [aux_sym_cmd_identifier_token11] = ACTIONS(1276), - [aux_sym_cmd_identifier_token12] = ACTIONS(1274), - [aux_sym_cmd_identifier_token13] = ACTIONS(1274), - [aux_sym_cmd_identifier_token14] = ACTIONS(1274), - [aux_sym_cmd_identifier_token15] = ACTIONS(1274), - [aux_sym_cmd_identifier_token16] = ACTIONS(1276), - [aux_sym_cmd_identifier_token17] = ACTIONS(1276), - [aux_sym_cmd_identifier_token18] = ACTIONS(1276), - [aux_sym_cmd_identifier_token19] = ACTIONS(1276), - [aux_sym_cmd_identifier_token20] = ACTIONS(1276), - [aux_sym_cmd_identifier_token21] = ACTIONS(1276), - [aux_sym_cmd_identifier_token22] = ACTIONS(1276), - [aux_sym_cmd_identifier_token23] = ACTIONS(1276), - [aux_sym_cmd_identifier_token24] = ACTIONS(1276), - [aux_sym_cmd_identifier_token25] = ACTIONS(1276), - [aux_sym_cmd_identifier_token26] = ACTIONS(1276), - [aux_sym_cmd_identifier_token27] = ACTIONS(1276), - [aux_sym_cmd_identifier_token28] = ACTIONS(1276), - [aux_sym_cmd_identifier_token29] = ACTIONS(1276), - [aux_sym_cmd_identifier_token30] = ACTIONS(1276), - [aux_sym_cmd_identifier_token31] = ACTIONS(1276), - [aux_sym_cmd_identifier_token32] = ACTIONS(1276), - [aux_sym_cmd_identifier_token33] = ACTIONS(1276), - [aux_sym_cmd_identifier_token34] = ACTIONS(1274), - [aux_sym_cmd_identifier_token35] = ACTIONS(1276), - [aux_sym_cmd_identifier_token36] = ACTIONS(1276), - [aux_sym_cmd_identifier_token37] = ACTIONS(1276), - [aux_sym_cmd_identifier_token38] = ACTIONS(1274), - [aux_sym_cmd_identifier_token39] = ACTIONS(1276), - [aux_sym_cmd_identifier_token40] = ACTIONS(1276), - [sym__newline] = ACTIONS(2334), - [anon_sym_def] = ACTIONS(1274), - [anon_sym_export_DASHenv] = ACTIONS(1274), - [anon_sym_extern] = ACTIONS(1274), - [anon_sym_module] = ACTIONS(1274), - [anon_sym_use] = ACTIONS(1274), - [anon_sym_LPAREN] = ACTIONS(1276), - [anon_sym_DOLLAR] = ACTIONS(1276), - [anon_sym_error] = ACTIONS(1274), - [anon_sym_DASH2] = ACTIONS(1274), - [anon_sym_break] = ACTIONS(1274), - [anon_sym_continue] = ACTIONS(1274), - [anon_sym_for] = ACTIONS(1274), - [anon_sym_in2] = ACTIONS(1274), - [anon_sym_loop] = ACTIONS(1274), - [anon_sym_make] = ACTIONS(1274), - [anon_sym_while] = ACTIONS(1274), - [anon_sym_do] = ACTIONS(1274), - [anon_sym_if] = ACTIONS(1274), - [anon_sym_else] = ACTIONS(1274), - [anon_sym_match] = ACTIONS(1274), - [anon_sym_try] = ACTIONS(1274), - [anon_sym_catch] = ACTIONS(1274), - [anon_sym_return] = ACTIONS(1274), - [anon_sym_source] = ACTIONS(1274), - [anon_sym_source_DASHenv] = ACTIONS(1274), - [anon_sym_register] = ACTIONS(1274), - [anon_sym_hide] = ACTIONS(1274), - [anon_sym_hide_DASHenv] = ACTIONS(1274), - [anon_sym_overlay] = ACTIONS(1274), - [anon_sym_as] = ACTIONS(1274), - [anon_sym_PLUS2] = ACTIONS(1274), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1276), - [aux_sym__val_number_decimal_token1] = ACTIONS(1274), - [aux_sym__val_number_decimal_token2] = ACTIONS(1276), - [aux_sym__val_number_decimal_token3] = ACTIONS(1276), - [aux_sym__val_number_decimal_token4] = ACTIONS(1276), - [aux_sym__val_number_token1] = ACTIONS(1276), - [aux_sym__val_number_token2] = ACTIONS(1276), - [aux_sym__val_number_token3] = ACTIONS(1276), - [aux_sym__val_number_token4] = ACTIONS(1274), - [aux_sym__val_number_token5] = ACTIONS(1274), - [aux_sym__val_number_token6] = ACTIONS(1274), - [anon_sym_DQUOTE] = ACTIONS(1276), - [sym__str_single_quotes] = ACTIONS(1276), - [sym__str_back_ticks] = ACTIONS(1276), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1276), + [580] = { + [sym__expr_parenthesized_immediate] = STATE(7268), + [sym_comment] = STATE(580), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_alias] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_let_DASHenv] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2162), + [aux_sym_cmd_identifier_token3] = ACTIONS(2162), + [aux_sym_cmd_identifier_token4] = ACTIONS(2162), + [aux_sym_cmd_identifier_token5] = ACTIONS(2162), + [aux_sym_cmd_identifier_token6] = ACTIONS(2162), + [aux_sym_cmd_identifier_token7] = ACTIONS(2162), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2162), + [aux_sym_cmd_identifier_token11] = ACTIONS(2162), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2162), + [aux_sym_cmd_identifier_token17] = ACTIONS(2162), + [aux_sym_cmd_identifier_token18] = ACTIONS(2162), + [aux_sym_cmd_identifier_token19] = ACTIONS(2162), + [aux_sym_cmd_identifier_token20] = ACTIONS(2162), + [aux_sym_cmd_identifier_token21] = ACTIONS(2162), + [aux_sym_cmd_identifier_token22] = ACTIONS(2162), + [aux_sym_cmd_identifier_token23] = ACTIONS(2162), + [aux_sym_cmd_identifier_token24] = ACTIONS(2162), + [aux_sym_cmd_identifier_token25] = ACTIONS(2162), + [aux_sym_cmd_identifier_token26] = ACTIONS(2162), + [aux_sym_cmd_identifier_token27] = ACTIONS(2162), + [aux_sym_cmd_identifier_token28] = ACTIONS(2162), + [aux_sym_cmd_identifier_token29] = ACTIONS(2162), + [aux_sym_cmd_identifier_token30] = ACTIONS(2162), + [aux_sym_cmd_identifier_token31] = ACTIONS(2162), + [aux_sym_cmd_identifier_token32] = ACTIONS(2162), + [aux_sym_cmd_identifier_token33] = ACTIONS(2162), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2162), + [aux_sym_cmd_identifier_token36] = ACTIONS(2162), + [aux_sym_cmd_identifier_token37] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [anon_sym_def] = ACTIONS(2160), + [anon_sym_export_DASHenv] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_in2] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_make] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_source] = ACTIONS(2160), + [anon_sym_source_DASHenv] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_hide] = ACTIONS(2160), + [anon_sym_hide_DASHenv] = ACTIONS(2160), + [anon_sym_overlay] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2160), + [aux_sym__val_number_token5] = ACTIONS(2160), + [aux_sym__val_number_token6] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym__str_single_quotes] = ACTIONS(2162), + [sym__str_back_ticks] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2162), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1276), + [sym_raw_string_begin] = ACTIONS(2162), }, - [602] = { - [sym_comment] = STATE(602), + [581] = { + [sym_comment] = STATE(581), [anon_sym_export] = ACTIONS(1004), [anon_sym_alias] = ACTIONS(1004), [anon_sym_let] = ACTIONS(1004), @@ -144987,6 +143124,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(1004), [anon_sym_use] = ACTIONS(1004), [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1000), [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_error] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), @@ -145001,7 +143139,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1004), [anon_sym_else] = ACTIONS(1004), [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_try] = ACTIONS(1004), [anon_sym_catch] = ACTIONS(1004), [anon_sym_return] = ACTIONS(1004), @@ -145012,8 +143150,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide_DASHenv] = ACTIONS(1004), [anon_sym_overlay] = ACTIONS(1004), [anon_sym_as] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2208), [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), [aux_sym__val_number_decimal_token1] = ACTIONS(1004), [aux_sym__val_number_decimal_token2] = ACTIONS(1004), @@ -145025,2137 +143164,847 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1004), [aux_sym__val_number_token5] = ACTIONS(1004), [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1004), - [sym__str_single_quotes] = ACTIONS(1004), - [sym__str_back_ticks] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), - [sym__entry_separator] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), + [aux_sym__unquoted_in_record_token4] = ACTIONS(2210), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1000), }, - [603] = { - [sym_comment] = STATE(603), - [anon_sym_export] = ACTIONS(2170), - [anon_sym_alias] = ACTIONS(2170), - [anon_sym_let] = ACTIONS(2170), - [anon_sym_let_DASHenv] = ACTIONS(2170), - [anon_sym_mut] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [aux_sym_cmd_identifier_token1] = ACTIONS(2170), - [aux_sym_cmd_identifier_token2] = ACTIONS(2170), - [aux_sym_cmd_identifier_token3] = ACTIONS(2170), - [aux_sym_cmd_identifier_token4] = ACTIONS(2170), - [aux_sym_cmd_identifier_token5] = ACTIONS(2170), - [aux_sym_cmd_identifier_token6] = ACTIONS(2170), - [aux_sym_cmd_identifier_token7] = ACTIONS(2170), - [aux_sym_cmd_identifier_token8] = ACTIONS(2170), - [aux_sym_cmd_identifier_token9] = ACTIONS(2170), - [aux_sym_cmd_identifier_token10] = ACTIONS(2170), - [aux_sym_cmd_identifier_token11] = ACTIONS(2170), - [aux_sym_cmd_identifier_token12] = ACTIONS(2170), - [aux_sym_cmd_identifier_token13] = ACTIONS(2170), - [aux_sym_cmd_identifier_token14] = ACTIONS(2170), - [aux_sym_cmd_identifier_token15] = ACTIONS(2170), - [aux_sym_cmd_identifier_token16] = ACTIONS(2170), - [aux_sym_cmd_identifier_token17] = ACTIONS(2170), - [aux_sym_cmd_identifier_token18] = ACTIONS(2170), - [aux_sym_cmd_identifier_token19] = ACTIONS(2170), - [aux_sym_cmd_identifier_token20] = ACTIONS(2170), - [aux_sym_cmd_identifier_token21] = ACTIONS(2170), - [aux_sym_cmd_identifier_token22] = ACTIONS(2170), - [aux_sym_cmd_identifier_token23] = ACTIONS(2170), - [aux_sym_cmd_identifier_token24] = ACTIONS(2170), - [aux_sym_cmd_identifier_token25] = ACTIONS(2170), - [aux_sym_cmd_identifier_token26] = ACTIONS(2170), - [aux_sym_cmd_identifier_token27] = ACTIONS(2170), - [aux_sym_cmd_identifier_token28] = ACTIONS(2170), - [aux_sym_cmd_identifier_token29] = ACTIONS(2170), - [aux_sym_cmd_identifier_token30] = ACTIONS(2170), - [aux_sym_cmd_identifier_token31] = ACTIONS(2170), - [aux_sym_cmd_identifier_token32] = ACTIONS(2170), - [aux_sym_cmd_identifier_token33] = ACTIONS(2170), - [aux_sym_cmd_identifier_token34] = ACTIONS(2170), - [aux_sym_cmd_identifier_token35] = ACTIONS(2170), - [aux_sym_cmd_identifier_token36] = ACTIONS(2170), - [aux_sym_cmd_identifier_token37] = ACTIONS(2170), - [aux_sym_cmd_identifier_token38] = ACTIONS(2170), - [aux_sym_cmd_identifier_token39] = ACTIONS(2170), - [aux_sym_cmd_identifier_token40] = ACTIONS(2170), - [anon_sym_def] = ACTIONS(2170), - [anon_sym_export_DASHenv] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_module] = ACTIONS(2170), - [anon_sym_use] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2170), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_error] = ACTIONS(2170), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_in2] = ACTIONS(2170), - [anon_sym_loop] = ACTIONS(2170), - [anon_sym_make] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2170), - [anon_sym_try] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_source] = ACTIONS(2170), - [anon_sym_source_DASHenv] = ACTIONS(2170), - [anon_sym_register] = ACTIONS(2170), - [anon_sym_hide] = ACTIONS(2170), - [anon_sym_hide_DASHenv] = ACTIONS(2170), - [anon_sym_overlay] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2170), - [aux_sym__val_number_decimal_token1] = ACTIONS(2170), - [aux_sym__val_number_decimal_token2] = ACTIONS(2170), - [aux_sym__val_number_decimal_token3] = ACTIONS(2170), - [aux_sym__val_number_decimal_token4] = ACTIONS(2170), - [aux_sym__val_number_token1] = ACTIONS(2170), - [aux_sym__val_number_token2] = ACTIONS(2170), - [aux_sym__val_number_token3] = ACTIONS(2170), - [aux_sym__val_number_token4] = ACTIONS(2170), - [aux_sym__val_number_token5] = ACTIONS(2170), - [aux_sym__val_number_token6] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2170), - [sym__str_single_quotes] = ACTIONS(2170), - [sym__str_back_ticks] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2170), - [sym__entry_separator] = ACTIONS(2176), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2176), - }, - [604] = { - [sym_comment] = STATE(604), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1933), - [aux_sym_cmd_identifier_token3] = ACTIONS(1933), - [aux_sym_cmd_identifier_token4] = ACTIONS(1933), - [aux_sym_cmd_identifier_token5] = ACTIONS(1933), - [aux_sym_cmd_identifier_token6] = ACTIONS(1933), - [aux_sym_cmd_identifier_token7] = ACTIONS(1933), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1933), - [aux_sym_cmd_identifier_token11] = ACTIONS(1933), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1933), - [aux_sym_cmd_identifier_token17] = ACTIONS(1933), - [aux_sym_cmd_identifier_token18] = ACTIONS(1933), - [aux_sym_cmd_identifier_token19] = ACTIONS(1933), - [aux_sym_cmd_identifier_token20] = ACTIONS(1933), - [aux_sym_cmd_identifier_token21] = ACTIONS(1933), - [aux_sym_cmd_identifier_token22] = ACTIONS(1933), - [aux_sym_cmd_identifier_token23] = ACTIONS(1933), - [aux_sym_cmd_identifier_token24] = ACTIONS(1933), - [aux_sym_cmd_identifier_token25] = ACTIONS(1933), - [aux_sym_cmd_identifier_token26] = ACTIONS(1933), - [aux_sym_cmd_identifier_token27] = ACTIONS(1933), - [aux_sym_cmd_identifier_token28] = ACTIONS(1933), - [aux_sym_cmd_identifier_token29] = ACTIONS(1933), - [aux_sym_cmd_identifier_token30] = ACTIONS(1933), - [aux_sym_cmd_identifier_token31] = ACTIONS(1933), - [aux_sym_cmd_identifier_token32] = ACTIONS(1933), - [aux_sym_cmd_identifier_token33] = ACTIONS(1933), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1933), - [aux_sym_cmd_identifier_token36] = ACTIONS(1933), - [aux_sym_cmd_identifier_token37] = ACTIONS(1933), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1933), - [aux_sym_cmd_identifier_token40] = ACTIONS(1933), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1933), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1933), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1933), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1933), - [aux_sym__val_number_decimal_token3] = ACTIONS(1933), - [aux_sym__val_number_decimal_token4] = ACTIONS(1933), - [aux_sym__val_number_token1] = ACTIONS(1933), - [aux_sym__val_number_token2] = ACTIONS(1933), - [aux_sym__val_number_token3] = ACTIONS(1933), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1933), - [sym__str_single_quotes] = ACTIONS(1933), - [sym__str_back_ticks] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1933), - [sym__entry_separator] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [605] = { - [sym_comment] = STATE(605), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2337), - [aux_sym_cmd_identifier_token3] = ACTIONS(2337), - [aux_sym_cmd_identifier_token4] = ACTIONS(2337), - [aux_sym_cmd_identifier_token5] = ACTIONS(2337), - [aux_sym_cmd_identifier_token6] = ACTIONS(2337), - [aux_sym_cmd_identifier_token7] = ACTIONS(2337), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2337), - [aux_sym_cmd_identifier_token11] = ACTIONS(2337), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2337), - [aux_sym_cmd_identifier_token17] = ACTIONS(2337), - [aux_sym_cmd_identifier_token18] = ACTIONS(2337), - [aux_sym_cmd_identifier_token19] = ACTIONS(2337), - [aux_sym_cmd_identifier_token20] = ACTIONS(2337), - [aux_sym_cmd_identifier_token21] = ACTIONS(2337), - [aux_sym_cmd_identifier_token22] = ACTIONS(2337), - [aux_sym_cmd_identifier_token23] = ACTIONS(2337), - [aux_sym_cmd_identifier_token24] = ACTIONS(2337), - [aux_sym_cmd_identifier_token25] = ACTIONS(2337), - [aux_sym_cmd_identifier_token26] = ACTIONS(2337), - [aux_sym_cmd_identifier_token27] = ACTIONS(2337), - [aux_sym_cmd_identifier_token28] = ACTIONS(2337), - [aux_sym_cmd_identifier_token29] = ACTIONS(2337), - [aux_sym_cmd_identifier_token30] = ACTIONS(2337), - [aux_sym_cmd_identifier_token31] = ACTIONS(2337), - [aux_sym_cmd_identifier_token32] = ACTIONS(2337), - [aux_sym_cmd_identifier_token33] = ACTIONS(2337), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2337), - [aux_sym_cmd_identifier_token36] = ACTIONS(2337), - [aux_sym_cmd_identifier_token37] = ACTIONS(2337), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2337), - [aux_sym_cmd_identifier_token40] = ACTIONS(2337), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2337), - [anon_sym_DOLLAR] = ACTIONS(2337), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in2] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2337), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2337), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2337), - [aux_sym__val_number_decimal_token3] = ACTIONS(2337), - [aux_sym__val_number_decimal_token4] = ACTIONS(2337), - [aux_sym__val_number_token1] = ACTIONS(2337), - [aux_sym__val_number_token2] = ACTIONS(2337), - [aux_sym__val_number_token3] = ACTIONS(2337), - [aux_sym__val_number_token4] = ACTIONS(2337), - [aux_sym__val_number_token5] = ACTIONS(2337), - [aux_sym__val_number_token6] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2337), - [sym__str_single_quotes] = ACTIONS(2337), - [sym__str_back_ticks] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2337), - [sym__entry_separator] = ACTIONS(2339), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2339), - }, - [606] = { - [sym_comment] = STATE(606), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2341), - [aux_sym_cmd_identifier_token3] = ACTIONS(2341), - [aux_sym_cmd_identifier_token4] = ACTIONS(2341), - [aux_sym_cmd_identifier_token5] = ACTIONS(2341), - [aux_sym_cmd_identifier_token6] = ACTIONS(2341), - [aux_sym_cmd_identifier_token7] = ACTIONS(2341), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2341), - [aux_sym_cmd_identifier_token11] = ACTIONS(2341), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2341), - [aux_sym_cmd_identifier_token17] = ACTIONS(2341), - [aux_sym_cmd_identifier_token18] = ACTIONS(2341), - [aux_sym_cmd_identifier_token19] = ACTIONS(2341), - [aux_sym_cmd_identifier_token20] = ACTIONS(2341), - [aux_sym_cmd_identifier_token21] = ACTIONS(2341), - [aux_sym_cmd_identifier_token22] = ACTIONS(2341), - [aux_sym_cmd_identifier_token23] = ACTIONS(2341), - [aux_sym_cmd_identifier_token24] = ACTIONS(2341), - [aux_sym_cmd_identifier_token25] = ACTIONS(2341), - [aux_sym_cmd_identifier_token26] = ACTIONS(2341), - [aux_sym_cmd_identifier_token27] = ACTIONS(2341), - [aux_sym_cmd_identifier_token28] = ACTIONS(2341), - [aux_sym_cmd_identifier_token29] = ACTIONS(2341), - [aux_sym_cmd_identifier_token30] = ACTIONS(2341), - [aux_sym_cmd_identifier_token31] = ACTIONS(2341), - [aux_sym_cmd_identifier_token32] = ACTIONS(2341), - [aux_sym_cmd_identifier_token33] = ACTIONS(2341), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2341), - [aux_sym_cmd_identifier_token36] = ACTIONS(2341), - [aux_sym_cmd_identifier_token37] = ACTIONS(2341), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2341), - [aux_sym_cmd_identifier_token40] = ACTIONS(2341), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2341), - [anon_sym_DOLLAR] = ACTIONS(2341), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_DASH2] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in2] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2341), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_PLUS2] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2341), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2341), - [aux_sym__val_number_decimal_token3] = ACTIONS(2341), - [aux_sym__val_number_decimal_token4] = ACTIONS(2341), - [aux_sym__val_number_token1] = ACTIONS(2341), - [aux_sym__val_number_token2] = ACTIONS(2341), - [aux_sym__val_number_token3] = ACTIONS(2341), - [aux_sym__val_number_token4] = ACTIONS(2341), - [aux_sym__val_number_token5] = ACTIONS(2341), - [aux_sym__val_number_token6] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2341), - [sym__str_single_quotes] = ACTIONS(2341), - [sym__str_back_ticks] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2341), - [sym__entry_separator] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2343), - }, - [607] = { - [sym_comment] = STATE(607), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_let_DASHenv] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2144), - [aux_sym_cmd_identifier_token2] = ACTIONS(2144), - [aux_sym_cmd_identifier_token3] = ACTIONS(2144), - [aux_sym_cmd_identifier_token4] = ACTIONS(2144), - [aux_sym_cmd_identifier_token5] = ACTIONS(2144), - [aux_sym_cmd_identifier_token6] = ACTIONS(2144), - [aux_sym_cmd_identifier_token7] = ACTIONS(2144), - [aux_sym_cmd_identifier_token8] = ACTIONS(2144), - [aux_sym_cmd_identifier_token9] = ACTIONS(2144), - [aux_sym_cmd_identifier_token10] = ACTIONS(2144), - [aux_sym_cmd_identifier_token11] = ACTIONS(2144), - [aux_sym_cmd_identifier_token12] = ACTIONS(2144), - [aux_sym_cmd_identifier_token13] = ACTIONS(2144), - [aux_sym_cmd_identifier_token14] = ACTIONS(2144), - [aux_sym_cmd_identifier_token15] = ACTIONS(2144), - [aux_sym_cmd_identifier_token16] = ACTIONS(2144), - [aux_sym_cmd_identifier_token17] = ACTIONS(2144), - [aux_sym_cmd_identifier_token18] = ACTIONS(2144), - [aux_sym_cmd_identifier_token19] = ACTIONS(2144), - [aux_sym_cmd_identifier_token20] = ACTIONS(2144), - [aux_sym_cmd_identifier_token21] = ACTIONS(2144), - [aux_sym_cmd_identifier_token22] = ACTIONS(2144), - [aux_sym_cmd_identifier_token23] = ACTIONS(2144), - [aux_sym_cmd_identifier_token24] = ACTIONS(2144), - [aux_sym_cmd_identifier_token25] = ACTIONS(2144), - [aux_sym_cmd_identifier_token26] = ACTIONS(2144), - [aux_sym_cmd_identifier_token27] = ACTIONS(2144), - [aux_sym_cmd_identifier_token28] = ACTIONS(2144), - [aux_sym_cmd_identifier_token29] = ACTIONS(2144), - [aux_sym_cmd_identifier_token30] = ACTIONS(2144), - [aux_sym_cmd_identifier_token31] = ACTIONS(2144), - [aux_sym_cmd_identifier_token32] = ACTIONS(2144), - [aux_sym_cmd_identifier_token33] = ACTIONS(2144), - [aux_sym_cmd_identifier_token34] = ACTIONS(2144), - [aux_sym_cmd_identifier_token35] = ACTIONS(2144), - [aux_sym_cmd_identifier_token36] = ACTIONS(2144), - [aux_sym_cmd_identifier_token37] = ACTIONS(2144), - [aux_sym_cmd_identifier_token38] = ACTIONS(2144), - [aux_sym_cmd_identifier_token39] = ACTIONS(2144), - [aux_sym_cmd_identifier_token40] = ACTIONS(2144), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2144), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_error] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_make] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2144), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_source] = ACTIONS(2144), - [anon_sym_source_DASHenv] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_hide] = ACTIONS(2144), - [anon_sym_hide_DASHenv] = ACTIONS(2144), - [anon_sym_overlay] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2144), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [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), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2144), - [sym__str_single_quotes] = ACTIONS(2144), - [sym__str_back_ticks] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2144), - [sym__entry_separator] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2150), - }, - [608] = { - [sym_comment] = STATE(608), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_alias] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_let_DASHenv] = ACTIONS(2152), - [anon_sym_mut] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [aux_sym_cmd_identifier_token1] = ACTIONS(2152), - [aux_sym_cmd_identifier_token2] = ACTIONS(2152), - [aux_sym_cmd_identifier_token3] = ACTIONS(2152), - [aux_sym_cmd_identifier_token4] = ACTIONS(2152), - [aux_sym_cmd_identifier_token5] = ACTIONS(2152), - [aux_sym_cmd_identifier_token6] = ACTIONS(2152), - [aux_sym_cmd_identifier_token7] = ACTIONS(2152), - [aux_sym_cmd_identifier_token8] = ACTIONS(2152), - [aux_sym_cmd_identifier_token9] = ACTIONS(2152), - [aux_sym_cmd_identifier_token10] = ACTIONS(2152), - [aux_sym_cmd_identifier_token11] = ACTIONS(2152), - [aux_sym_cmd_identifier_token12] = ACTIONS(2152), - [aux_sym_cmd_identifier_token13] = ACTIONS(2152), - [aux_sym_cmd_identifier_token14] = ACTIONS(2152), - [aux_sym_cmd_identifier_token15] = ACTIONS(2152), - [aux_sym_cmd_identifier_token16] = ACTIONS(2152), - [aux_sym_cmd_identifier_token17] = ACTIONS(2152), - [aux_sym_cmd_identifier_token18] = ACTIONS(2152), - [aux_sym_cmd_identifier_token19] = ACTIONS(2152), - [aux_sym_cmd_identifier_token20] = ACTIONS(2152), - [aux_sym_cmd_identifier_token21] = ACTIONS(2152), - [aux_sym_cmd_identifier_token22] = ACTIONS(2152), - [aux_sym_cmd_identifier_token23] = ACTIONS(2152), - [aux_sym_cmd_identifier_token24] = ACTIONS(2152), - [aux_sym_cmd_identifier_token25] = ACTIONS(2152), - [aux_sym_cmd_identifier_token26] = ACTIONS(2152), - [aux_sym_cmd_identifier_token27] = ACTIONS(2152), - [aux_sym_cmd_identifier_token28] = ACTIONS(2152), - [aux_sym_cmd_identifier_token29] = ACTIONS(2152), - [aux_sym_cmd_identifier_token30] = ACTIONS(2152), - [aux_sym_cmd_identifier_token31] = ACTIONS(2152), - [aux_sym_cmd_identifier_token32] = ACTIONS(2152), - [aux_sym_cmd_identifier_token33] = ACTIONS(2152), - [aux_sym_cmd_identifier_token34] = ACTIONS(2152), - [aux_sym_cmd_identifier_token35] = ACTIONS(2152), - [aux_sym_cmd_identifier_token36] = ACTIONS(2152), - [aux_sym_cmd_identifier_token37] = ACTIONS(2152), - [aux_sym_cmd_identifier_token38] = ACTIONS(2152), - [aux_sym_cmd_identifier_token39] = ACTIONS(2152), - [aux_sym_cmd_identifier_token40] = ACTIONS(2152), - [anon_sym_def] = ACTIONS(2152), - [anon_sym_export_DASHenv] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2152), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_error] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_in2] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_make] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2152), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_catch] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_source] = ACTIONS(2152), - [anon_sym_source_DASHenv] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_hide] = ACTIONS(2152), - [anon_sym_hide_DASHenv] = ACTIONS(2152), - [anon_sym_overlay] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2152), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2152), - [aux_sym__val_number_decimal_token3] = ACTIONS(2152), - [aux_sym__val_number_decimal_token4] = ACTIONS(2152), - [aux_sym__val_number_token1] = ACTIONS(2152), - [aux_sym__val_number_token2] = ACTIONS(2152), - [aux_sym__val_number_token3] = ACTIONS(2152), - [aux_sym__val_number_token4] = ACTIONS(2152), - [aux_sym__val_number_token5] = ACTIONS(2152), - [aux_sym__val_number_token6] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2152), - [sym__str_single_quotes] = ACTIONS(2152), - [sym__str_back_ticks] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2152), - [sym__entry_separator] = ACTIONS(2158), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2158), - }, - [609] = { - [sym_comment] = STATE(609), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_alias] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_DASHenv] = ACTIONS(2160), - [anon_sym_mut] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [aux_sym_cmd_identifier_token1] = ACTIONS(2160), - [aux_sym_cmd_identifier_token2] = ACTIONS(2160), - [aux_sym_cmd_identifier_token3] = ACTIONS(2160), - [aux_sym_cmd_identifier_token4] = ACTIONS(2160), - [aux_sym_cmd_identifier_token5] = ACTIONS(2160), - [aux_sym_cmd_identifier_token6] = ACTIONS(2160), - [aux_sym_cmd_identifier_token7] = ACTIONS(2160), - [aux_sym_cmd_identifier_token8] = ACTIONS(2160), - [aux_sym_cmd_identifier_token9] = ACTIONS(2160), - [aux_sym_cmd_identifier_token10] = ACTIONS(2160), - [aux_sym_cmd_identifier_token11] = ACTIONS(2160), - [aux_sym_cmd_identifier_token12] = ACTIONS(2160), - [aux_sym_cmd_identifier_token13] = ACTIONS(2160), - [aux_sym_cmd_identifier_token14] = ACTIONS(2160), - [aux_sym_cmd_identifier_token15] = ACTIONS(2160), - [aux_sym_cmd_identifier_token16] = ACTIONS(2160), - [aux_sym_cmd_identifier_token17] = ACTIONS(2160), - [aux_sym_cmd_identifier_token18] = ACTIONS(2160), - [aux_sym_cmd_identifier_token19] = ACTIONS(2160), - [aux_sym_cmd_identifier_token20] = ACTIONS(2160), - [aux_sym_cmd_identifier_token21] = ACTIONS(2160), - [aux_sym_cmd_identifier_token22] = ACTIONS(2160), - [aux_sym_cmd_identifier_token23] = ACTIONS(2160), - [aux_sym_cmd_identifier_token24] = ACTIONS(2160), - [aux_sym_cmd_identifier_token25] = ACTIONS(2160), - [aux_sym_cmd_identifier_token26] = ACTIONS(2160), - [aux_sym_cmd_identifier_token27] = ACTIONS(2160), - [aux_sym_cmd_identifier_token28] = ACTIONS(2160), - [aux_sym_cmd_identifier_token29] = ACTIONS(2160), - [aux_sym_cmd_identifier_token30] = ACTIONS(2160), - [aux_sym_cmd_identifier_token31] = ACTIONS(2160), - [aux_sym_cmd_identifier_token32] = ACTIONS(2160), - [aux_sym_cmd_identifier_token33] = ACTIONS(2160), - [aux_sym_cmd_identifier_token34] = ACTIONS(2160), - [aux_sym_cmd_identifier_token35] = ACTIONS(2160), - [aux_sym_cmd_identifier_token36] = ACTIONS(2160), - [aux_sym_cmd_identifier_token37] = ACTIONS(2160), - [aux_sym_cmd_identifier_token38] = ACTIONS(2160), - [aux_sym_cmd_identifier_token39] = ACTIONS(2160), - [aux_sym_cmd_identifier_token40] = ACTIONS(2160), - [anon_sym_def] = ACTIONS(2160), - [anon_sym_export_DASHenv] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2160), - [anon_sym_DOLLAR] = ACTIONS(2160), - [anon_sym_error] = ACTIONS(2160), - [anon_sym_DASH2] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_in2] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_make] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2160), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_source] = ACTIONS(2160), - [anon_sym_source_DASHenv] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_hide] = ACTIONS(2160), - [anon_sym_hide_DASHenv] = ACTIONS(2160), - [anon_sym_overlay] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_PLUS2] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2160), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2160), - [aux_sym__val_number_decimal_token3] = ACTIONS(2160), - [aux_sym__val_number_decimal_token4] = ACTIONS(2160), - [aux_sym__val_number_token1] = ACTIONS(2160), - [aux_sym__val_number_token2] = ACTIONS(2160), - [aux_sym__val_number_token3] = ACTIONS(2160), - [aux_sym__val_number_token4] = ACTIONS(2160), - [aux_sym__val_number_token5] = ACTIONS(2160), - [aux_sym__val_number_token6] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2160), - [sym__str_single_quotes] = ACTIONS(2160), - [sym__str_back_ticks] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2160), - [sym__entry_separator] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(3), + [582] = { + [sym__expr_parenthesized_immediate] = STATE(7268), + [sym_comment] = STATE(582), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2166), + [aux_sym_cmd_identifier_token3] = ACTIONS(2166), + [aux_sym_cmd_identifier_token4] = ACTIONS(2166), + [aux_sym_cmd_identifier_token5] = ACTIONS(2166), + [aux_sym_cmd_identifier_token6] = ACTIONS(2166), + [aux_sym_cmd_identifier_token7] = ACTIONS(2166), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2166), + [aux_sym_cmd_identifier_token11] = ACTIONS(2166), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2166), + [aux_sym_cmd_identifier_token17] = ACTIONS(2166), + [aux_sym_cmd_identifier_token18] = ACTIONS(2166), + [aux_sym_cmd_identifier_token19] = ACTIONS(2166), + [aux_sym_cmd_identifier_token20] = ACTIONS(2166), + [aux_sym_cmd_identifier_token21] = ACTIONS(2166), + [aux_sym_cmd_identifier_token22] = ACTIONS(2166), + [aux_sym_cmd_identifier_token23] = ACTIONS(2166), + [aux_sym_cmd_identifier_token24] = ACTIONS(2166), + [aux_sym_cmd_identifier_token25] = ACTIONS(2166), + [aux_sym_cmd_identifier_token26] = ACTIONS(2166), + [aux_sym_cmd_identifier_token27] = ACTIONS(2166), + [aux_sym_cmd_identifier_token28] = ACTIONS(2166), + [aux_sym_cmd_identifier_token29] = ACTIONS(2166), + [aux_sym_cmd_identifier_token30] = ACTIONS(2166), + [aux_sym_cmd_identifier_token31] = ACTIONS(2166), + [aux_sym_cmd_identifier_token32] = ACTIONS(2166), + [aux_sym_cmd_identifier_token33] = ACTIONS(2166), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2166), + [aux_sym_cmd_identifier_token36] = ACTIONS(2166), + [aux_sym_cmd_identifier_token37] = ACTIONS(2166), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2166), + [aux_sym_cmd_identifier_token40] = ACTIONS(2166), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_LPAREN2] = ACTIONS(1665), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2166), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2166), + [aux_sym__val_number_decimal_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token4] = ACTIONS(2166), + [aux_sym__val_number_token1] = ACTIONS(2166), + [aux_sym__val_number_token2] = ACTIONS(2166), + [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2166), }, - [610] = { - [sym_comment] = STATE(610), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_alias] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_let_DASHenv] = ACTIONS(2345), - [anon_sym_mut] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [aux_sym_cmd_identifier_token1] = ACTIONS(2345), - [aux_sym_cmd_identifier_token2] = ACTIONS(2345), - [aux_sym_cmd_identifier_token3] = ACTIONS(2345), - [aux_sym_cmd_identifier_token4] = ACTIONS(2345), - [aux_sym_cmd_identifier_token5] = ACTIONS(2345), - [aux_sym_cmd_identifier_token6] = ACTIONS(2345), - [aux_sym_cmd_identifier_token7] = ACTIONS(2345), - [aux_sym_cmd_identifier_token8] = ACTIONS(2345), - [aux_sym_cmd_identifier_token9] = ACTIONS(2345), - [aux_sym_cmd_identifier_token10] = ACTIONS(2345), - [aux_sym_cmd_identifier_token11] = ACTIONS(2345), - [aux_sym_cmd_identifier_token12] = ACTIONS(2345), - [aux_sym_cmd_identifier_token13] = ACTIONS(2345), - [aux_sym_cmd_identifier_token14] = ACTIONS(2345), - [aux_sym_cmd_identifier_token15] = ACTIONS(2345), - [aux_sym_cmd_identifier_token16] = ACTIONS(2345), - [aux_sym_cmd_identifier_token17] = ACTIONS(2345), - [aux_sym_cmd_identifier_token18] = ACTIONS(2345), - [aux_sym_cmd_identifier_token19] = ACTIONS(2345), - [aux_sym_cmd_identifier_token20] = ACTIONS(2345), - [aux_sym_cmd_identifier_token21] = ACTIONS(2345), - [aux_sym_cmd_identifier_token22] = ACTIONS(2345), - [aux_sym_cmd_identifier_token23] = ACTIONS(2345), - [aux_sym_cmd_identifier_token24] = ACTIONS(2345), - [aux_sym_cmd_identifier_token25] = ACTIONS(2345), - [aux_sym_cmd_identifier_token26] = ACTIONS(2345), - [aux_sym_cmd_identifier_token27] = ACTIONS(2345), - [aux_sym_cmd_identifier_token28] = ACTIONS(2345), - [aux_sym_cmd_identifier_token29] = ACTIONS(2345), - [aux_sym_cmd_identifier_token30] = ACTIONS(2345), - [aux_sym_cmd_identifier_token31] = ACTIONS(2345), - [aux_sym_cmd_identifier_token32] = ACTIONS(2345), - [aux_sym_cmd_identifier_token33] = ACTIONS(2345), - [aux_sym_cmd_identifier_token34] = ACTIONS(2345), - [aux_sym_cmd_identifier_token35] = ACTIONS(2345), - [aux_sym_cmd_identifier_token36] = ACTIONS(2345), - [aux_sym_cmd_identifier_token37] = ACTIONS(2345), - [aux_sym_cmd_identifier_token38] = ACTIONS(2345), - [aux_sym_cmd_identifier_token39] = ACTIONS(2345), - [aux_sym_cmd_identifier_token40] = ACTIONS(2345), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_export_DASHenv] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2345), - [anon_sym_DOLLAR] = ACTIONS(2345), - [anon_sym_error] = ACTIONS(2345), - [anon_sym_DASH2] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_in2] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_make] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2345), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_catch] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_source] = ACTIONS(2345), - [anon_sym_source_DASHenv] = ACTIONS(2345), - [anon_sym_register] = ACTIONS(2345), - [anon_sym_hide] = ACTIONS(2345), - [anon_sym_hide_DASHenv] = ACTIONS(2345), - [anon_sym_overlay] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_PLUS2] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2345), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2345), - [aux_sym__val_number_decimal_token3] = ACTIONS(2345), - [aux_sym__val_number_decimal_token4] = ACTIONS(2345), - [aux_sym__val_number_token1] = ACTIONS(2345), - [aux_sym__val_number_token2] = ACTIONS(2345), - [aux_sym__val_number_token3] = ACTIONS(2345), - [aux_sym__val_number_token4] = ACTIONS(2345), - [aux_sym__val_number_token5] = ACTIONS(2345), - [aux_sym__val_number_token6] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2345), - [sym__str_single_quotes] = ACTIONS(2345), - [sym__str_back_ticks] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2345), - [sym__entry_separator] = ACTIONS(2347), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2347), - }, - [611] = { - [sym_comment] = STATE(611), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [aux_sym_cmd_identifier_token1] = ACTIONS(2349), - [aux_sym_cmd_identifier_token2] = ACTIONS(2349), - [aux_sym_cmd_identifier_token3] = ACTIONS(2349), - [aux_sym_cmd_identifier_token4] = ACTIONS(2349), - [aux_sym_cmd_identifier_token5] = ACTIONS(2349), - [aux_sym_cmd_identifier_token6] = ACTIONS(2349), - [aux_sym_cmd_identifier_token7] = ACTIONS(2349), - [aux_sym_cmd_identifier_token8] = ACTIONS(2349), - [aux_sym_cmd_identifier_token9] = ACTIONS(2349), - [aux_sym_cmd_identifier_token10] = ACTIONS(2349), - [aux_sym_cmd_identifier_token11] = ACTIONS(2349), - [aux_sym_cmd_identifier_token12] = ACTIONS(2349), - [aux_sym_cmd_identifier_token13] = ACTIONS(2349), - [aux_sym_cmd_identifier_token14] = ACTIONS(2349), - [aux_sym_cmd_identifier_token15] = ACTIONS(2349), - [aux_sym_cmd_identifier_token16] = ACTIONS(2349), - [aux_sym_cmd_identifier_token17] = ACTIONS(2349), - [aux_sym_cmd_identifier_token18] = ACTIONS(2349), - [aux_sym_cmd_identifier_token19] = ACTIONS(2349), - [aux_sym_cmd_identifier_token20] = ACTIONS(2349), - [aux_sym_cmd_identifier_token21] = ACTIONS(2349), - [aux_sym_cmd_identifier_token22] = ACTIONS(2349), - [aux_sym_cmd_identifier_token23] = ACTIONS(2349), - [aux_sym_cmd_identifier_token24] = ACTIONS(2349), - [aux_sym_cmd_identifier_token25] = ACTIONS(2349), - [aux_sym_cmd_identifier_token26] = ACTIONS(2349), - [aux_sym_cmd_identifier_token27] = ACTIONS(2349), - [aux_sym_cmd_identifier_token28] = ACTIONS(2349), - [aux_sym_cmd_identifier_token29] = ACTIONS(2349), - [aux_sym_cmd_identifier_token30] = ACTIONS(2349), - [aux_sym_cmd_identifier_token31] = ACTIONS(2349), - [aux_sym_cmd_identifier_token32] = ACTIONS(2349), - [aux_sym_cmd_identifier_token33] = ACTIONS(2349), - [aux_sym_cmd_identifier_token34] = ACTIONS(2349), - [aux_sym_cmd_identifier_token35] = ACTIONS(2349), - [aux_sym_cmd_identifier_token36] = ACTIONS(2349), - [aux_sym_cmd_identifier_token37] = ACTIONS(2349), - [aux_sym_cmd_identifier_token38] = ACTIONS(2349), - [aux_sym_cmd_identifier_token39] = ACTIONS(2349), - [aux_sym_cmd_identifier_token40] = ACTIONS(2349), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2349), - [anon_sym_DOLLAR] = ACTIONS(2349), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_DASH2] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in2] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2349), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_PLUS2] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2349), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2349), - [aux_sym__val_number_decimal_token3] = ACTIONS(2349), - [aux_sym__val_number_decimal_token4] = ACTIONS(2349), - [aux_sym__val_number_token1] = ACTIONS(2349), - [aux_sym__val_number_token2] = ACTIONS(2349), - [aux_sym__val_number_token3] = ACTIONS(2349), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2349), - [sym__str_single_quotes] = ACTIONS(2349), - [sym__str_back_ticks] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2349), - [sym__entry_separator] = ACTIONS(2351), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2351), - }, - [612] = { - [sym_comment] = STATE(612), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_alias] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_let_DASHenv] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [aux_sym_cmd_identifier_token1] = ACTIONS(2353), - [aux_sym_cmd_identifier_token2] = ACTIONS(2353), - [aux_sym_cmd_identifier_token3] = ACTIONS(2353), - [aux_sym_cmd_identifier_token4] = ACTIONS(2353), - [aux_sym_cmd_identifier_token5] = ACTIONS(2353), - [aux_sym_cmd_identifier_token6] = ACTIONS(2353), - [aux_sym_cmd_identifier_token7] = ACTIONS(2353), - [aux_sym_cmd_identifier_token8] = ACTIONS(2353), - [aux_sym_cmd_identifier_token9] = ACTIONS(2353), - [aux_sym_cmd_identifier_token10] = ACTIONS(2353), - [aux_sym_cmd_identifier_token11] = ACTIONS(2353), - [aux_sym_cmd_identifier_token12] = ACTIONS(2353), - [aux_sym_cmd_identifier_token13] = ACTIONS(2353), - [aux_sym_cmd_identifier_token14] = ACTIONS(2353), - [aux_sym_cmd_identifier_token15] = ACTIONS(2353), - [aux_sym_cmd_identifier_token16] = ACTIONS(2353), - [aux_sym_cmd_identifier_token17] = ACTIONS(2353), - [aux_sym_cmd_identifier_token18] = ACTIONS(2353), - [aux_sym_cmd_identifier_token19] = ACTIONS(2353), - [aux_sym_cmd_identifier_token20] = ACTIONS(2353), - [aux_sym_cmd_identifier_token21] = ACTIONS(2353), - [aux_sym_cmd_identifier_token22] = ACTIONS(2353), - [aux_sym_cmd_identifier_token23] = ACTIONS(2353), - [aux_sym_cmd_identifier_token24] = ACTIONS(2353), - [aux_sym_cmd_identifier_token25] = ACTIONS(2353), - [aux_sym_cmd_identifier_token26] = ACTIONS(2353), - [aux_sym_cmd_identifier_token27] = ACTIONS(2353), - [aux_sym_cmd_identifier_token28] = ACTIONS(2353), - [aux_sym_cmd_identifier_token29] = ACTIONS(2353), - [aux_sym_cmd_identifier_token30] = ACTIONS(2353), - [aux_sym_cmd_identifier_token31] = ACTIONS(2353), - [aux_sym_cmd_identifier_token32] = ACTIONS(2353), - [aux_sym_cmd_identifier_token33] = ACTIONS(2353), - [aux_sym_cmd_identifier_token34] = ACTIONS(2353), - [aux_sym_cmd_identifier_token35] = ACTIONS(2353), - [aux_sym_cmd_identifier_token36] = ACTIONS(2353), - [aux_sym_cmd_identifier_token37] = ACTIONS(2353), - [aux_sym_cmd_identifier_token38] = ACTIONS(2353), - [aux_sym_cmd_identifier_token39] = ACTIONS(2353), - [aux_sym_cmd_identifier_token40] = ACTIONS(2353), - [anon_sym_def] = ACTIONS(2353), - [anon_sym_export_DASHenv] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2353), - [anon_sym_DOLLAR] = ACTIONS(2353), - [anon_sym_error] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_in2] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_make] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2353), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_catch] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_source] = ACTIONS(2353), - [anon_sym_source_DASHenv] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_hide] = ACTIONS(2353), - [anon_sym_hide_DASHenv] = ACTIONS(2353), - [anon_sym_overlay] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_PLUS2] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2353), - [aux_sym__val_number_decimal_token1] = ACTIONS(2353), - [aux_sym__val_number_decimal_token2] = ACTIONS(2353), - [aux_sym__val_number_decimal_token3] = ACTIONS(2353), - [aux_sym__val_number_decimal_token4] = ACTIONS(2353), - [aux_sym__val_number_token1] = ACTIONS(2353), - [aux_sym__val_number_token2] = ACTIONS(2353), - [aux_sym__val_number_token3] = ACTIONS(2353), - [aux_sym__val_number_token4] = ACTIONS(2353), - [aux_sym__val_number_token5] = ACTIONS(2353), - [aux_sym__val_number_token6] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2353), - [sym__str_single_quotes] = ACTIONS(2353), - [sym__str_back_ticks] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2353), - [sym__entry_separator] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2355), - }, - [613] = { - [sym_comment] = STATE(613), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_alias] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_let_DASHenv] = ACTIONS(2357), - [anon_sym_mut] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [aux_sym_cmd_identifier_token1] = ACTIONS(2357), - [aux_sym_cmd_identifier_token2] = ACTIONS(2357), - [aux_sym_cmd_identifier_token3] = ACTIONS(2357), - [aux_sym_cmd_identifier_token4] = ACTIONS(2357), - [aux_sym_cmd_identifier_token5] = ACTIONS(2357), - [aux_sym_cmd_identifier_token6] = ACTIONS(2357), - [aux_sym_cmd_identifier_token7] = ACTIONS(2357), - [aux_sym_cmd_identifier_token8] = ACTIONS(2357), - [aux_sym_cmd_identifier_token9] = ACTIONS(2357), - [aux_sym_cmd_identifier_token10] = ACTIONS(2357), - [aux_sym_cmd_identifier_token11] = ACTIONS(2357), - [aux_sym_cmd_identifier_token12] = ACTIONS(2357), - [aux_sym_cmd_identifier_token13] = ACTIONS(2357), - [aux_sym_cmd_identifier_token14] = ACTIONS(2357), - [aux_sym_cmd_identifier_token15] = ACTIONS(2357), - [aux_sym_cmd_identifier_token16] = ACTIONS(2357), - [aux_sym_cmd_identifier_token17] = ACTIONS(2357), - [aux_sym_cmd_identifier_token18] = ACTIONS(2357), - [aux_sym_cmd_identifier_token19] = ACTIONS(2357), - [aux_sym_cmd_identifier_token20] = ACTIONS(2357), - [aux_sym_cmd_identifier_token21] = ACTIONS(2357), - [aux_sym_cmd_identifier_token22] = ACTIONS(2357), - [aux_sym_cmd_identifier_token23] = ACTIONS(2357), - [aux_sym_cmd_identifier_token24] = ACTIONS(2357), - [aux_sym_cmd_identifier_token25] = ACTIONS(2357), - [aux_sym_cmd_identifier_token26] = ACTIONS(2357), - [aux_sym_cmd_identifier_token27] = ACTIONS(2357), - [aux_sym_cmd_identifier_token28] = ACTIONS(2357), - [aux_sym_cmd_identifier_token29] = ACTIONS(2357), - [aux_sym_cmd_identifier_token30] = ACTIONS(2357), - [aux_sym_cmd_identifier_token31] = ACTIONS(2357), - [aux_sym_cmd_identifier_token32] = ACTIONS(2357), - [aux_sym_cmd_identifier_token33] = ACTIONS(2357), - [aux_sym_cmd_identifier_token34] = ACTIONS(2357), - [aux_sym_cmd_identifier_token35] = ACTIONS(2357), - [aux_sym_cmd_identifier_token36] = ACTIONS(2357), - [aux_sym_cmd_identifier_token37] = ACTIONS(2357), - [aux_sym_cmd_identifier_token38] = ACTIONS(2357), - [aux_sym_cmd_identifier_token39] = ACTIONS(2357), - [aux_sym_cmd_identifier_token40] = ACTIONS(2357), - [anon_sym_def] = ACTIONS(2357), - [anon_sym_export_DASHenv] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2357), - [anon_sym_DOLLAR] = ACTIONS(2357), - [anon_sym_error] = ACTIONS(2357), - [anon_sym_DASH2] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_in2] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_make] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2357), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_catch] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_source] = ACTIONS(2357), - [anon_sym_source_DASHenv] = ACTIONS(2357), - [anon_sym_register] = ACTIONS(2357), - [anon_sym_hide] = ACTIONS(2357), - [anon_sym_hide_DASHenv] = ACTIONS(2357), - [anon_sym_overlay] = ACTIONS(2357), - [anon_sym_as] = ACTIONS(2357), - [anon_sym_PLUS2] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2357), - [aux_sym__val_number_decimal_token1] = ACTIONS(2357), - [aux_sym__val_number_decimal_token2] = ACTIONS(2357), - [aux_sym__val_number_decimal_token3] = ACTIONS(2357), - [aux_sym__val_number_decimal_token4] = ACTIONS(2357), - [aux_sym__val_number_token1] = ACTIONS(2357), - [aux_sym__val_number_token2] = ACTIONS(2357), - [aux_sym__val_number_token3] = ACTIONS(2357), - [aux_sym__val_number_token4] = ACTIONS(2357), - [aux_sym__val_number_token5] = ACTIONS(2357), - [aux_sym__val_number_token6] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2357), - [sym__str_single_quotes] = ACTIONS(2357), - [sym__str_back_ticks] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2357), - [sym__entry_separator] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2359), - }, - [614] = { - [sym_comment] = STATE(614), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [aux_sym_cmd_identifier_token1] = ACTIONS(2361), - [aux_sym_cmd_identifier_token2] = ACTIONS(2361), - [aux_sym_cmd_identifier_token3] = ACTIONS(2361), - [aux_sym_cmd_identifier_token4] = ACTIONS(2361), - [aux_sym_cmd_identifier_token5] = ACTIONS(2361), - [aux_sym_cmd_identifier_token6] = ACTIONS(2361), - [aux_sym_cmd_identifier_token7] = ACTIONS(2361), - [aux_sym_cmd_identifier_token8] = ACTIONS(2361), - [aux_sym_cmd_identifier_token9] = ACTIONS(2361), - [aux_sym_cmd_identifier_token10] = ACTIONS(2361), - [aux_sym_cmd_identifier_token11] = ACTIONS(2361), - [aux_sym_cmd_identifier_token12] = ACTIONS(2361), - [aux_sym_cmd_identifier_token13] = ACTIONS(2361), - [aux_sym_cmd_identifier_token14] = ACTIONS(2361), - [aux_sym_cmd_identifier_token15] = ACTIONS(2361), - [aux_sym_cmd_identifier_token16] = ACTIONS(2361), - [aux_sym_cmd_identifier_token17] = ACTIONS(2361), - [aux_sym_cmd_identifier_token18] = ACTIONS(2361), - [aux_sym_cmd_identifier_token19] = ACTIONS(2361), - [aux_sym_cmd_identifier_token20] = ACTIONS(2361), - [aux_sym_cmd_identifier_token21] = ACTIONS(2361), - [aux_sym_cmd_identifier_token22] = ACTIONS(2361), - [aux_sym_cmd_identifier_token23] = ACTIONS(2361), - [aux_sym_cmd_identifier_token24] = ACTIONS(2361), - [aux_sym_cmd_identifier_token25] = ACTIONS(2361), - [aux_sym_cmd_identifier_token26] = ACTIONS(2361), - [aux_sym_cmd_identifier_token27] = ACTIONS(2361), - [aux_sym_cmd_identifier_token28] = ACTIONS(2361), - [aux_sym_cmd_identifier_token29] = ACTIONS(2361), - [aux_sym_cmd_identifier_token30] = ACTIONS(2361), - [aux_sym_cmd_identifier_token31] = ACTIONS(2361), - [aux_sym_cmd_identifier_token32] = ACTIONS(2361), - [aux_sym_cmd_identifier_token33] = ACTIONS(2361), - [aux_sym_cmd_identifier_token34] = ACTIONS(2361), - [aux_sym_cmd_identifier_token35] = ACTIONS(2361), - [aux_sym_cmd_identifier_token36] = ACTIONS(2361), - [aux_sym_cmd_identifier_token37] = ACTIONS(2361), - [aux_sym_cmd_identifier_token38] = ACTIONS(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2361), - [aux_sym_cmd_identifier_token40] = ACTIONS(2361), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2361), - [anon_sym_DOLLAR] = ACTIONS(2361), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_DASH2] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_in2] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_make] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2361), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_PLUS2] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2361), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [aux_sym__val_number_decimal_token2] = ACTIONS(2361), - [aux_sym__val_number_decimal_token3] = ACTIONS(2361), - [aux_sym__val_number_decimal_token4] = ACTIONS(2361), - [aux_sym__val_number_token1] = ACTIONS(2361), - [aux_sym__val_number_token2] = ACTIONS(2361), - [aux_sym__val_number_token3] = ACTIONS(2361), - [aux_sym__val_number_token4] = ACTIONS(2361), - [aux_sym__val_number_token5] = ACTIONS(2361), - [aux_sym__val_number_token6] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2361), - [sym__str_single_quotes] = ACTIONS(2361), - [sym__str_back_ticks] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2361), - [sym__entry_separator] = ACTIONS(2363), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2363), - }, - [615] = { - [sym_comment] = STATE(615), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_alias] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_DASHenv] = ACTIONS(2365), - [anon_sym_mut] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [aux_sym_cmd_identifier_token2] = ACTIONS(2365), - [aux_sym_cmd_identifier_token3] = ACTIONS(2365), - [aux_sym_cmd_identifier_token4] = ACTIONS(2365), - [aux_sym_cmd_identifier_token5] = ACTIONS(2365), - [aux_sym_cmd_identifier_token6] = ACTIONS(2365), - [aux_sym_cmd_identifier_token7] = ACTIONS(2365), - [aux_sym_cmd_identifier_token8] = ACTIONS(2365), - [aux_sym_cmd_identifier_token9] = ACTIONS(2365), - [aux_sym_cmd_identifier_token10] = ACTIONS(2365), - [aux_sym_cmd_identifier_token11] = ACTIONS(2365), - [aux_sym_cmd_identifier_token12] = ACTIONS(2365), - [aux_sym_cmd_identifier_token13] = ACTIONS(2365), - [aux_sym_cmd_identifier_token14] = ACTIONS(2365), - [aux_sym_cmd_identifier_token15] = ACTIONS(2365), - [aux_sym_cmd_identifier_token16] = ACTIONS(2365), - [aux_sym_cmd_identifier_token17] = ACTIONS(2365), - [aux_sym_cmd_identifier_token18] = ACTIONS(2365), - [aux_sym_cmd_identifier_token19] = ACTIONS(2365), - [aux_sym_cmd_identifier_token20] = ACTIONS(2365), - [aux_sym_cmd_identifier_token21] = ACTIONS(2365), - [aux_sym_cmd_identifier_token22] = ACTIONS(2365), - [aux_sym_cmd_identifier_token23] = ACTIONS(2365), - [aux_sym_cmd_identifier_token24] = ACTIONS(2365), - [aux_sym_cmd_identifier_token25] = ACTIONS(2365), - [aux_sym_cmd_identifier_token26] = ACTIONS(2365), - [aux_sym_cmd_identifier_token27] = ACTIONS(2365), - [aux_sym_cmd_identifier_token28] = ACTIONS(2365), - [aux_sym_cmd_identifier_token29] = ACTIONS(2365), - [aux_sym_cmd_identifier_token30] = ACTIONS(2365), - [aux_sym_cmd_identifier_token31] = ACTIONS(2365), - [aux_sym_cmd_identifier_token32] = ACTIONS(2365), - [aux_sym_cmd_identifier_token33] = ACTIONS(2365), - [aux_sym_cmd_identifier_token34] = ACTIONS(2365), - [aux_sym_cmd_identifier_token35] = ACTIONS(2365), - [aux_sym_cmd_identifier_token36] = ACTIONS(2365), - [aux_sym_cmd_identifier_token37] = ACTIONS(2365), - [aux_sym_cmd_identifier_token38] = ACTIONS(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2365), - [aux_sym_cmd_identifier_token40] = ACTIONS(2365), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_export_DASHenv] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2365), - [anon_sym_DOLLAR] = ACTIONS(2365), - [anon_sym_error] = ACTIONS(2365), - [anon_sym_DASH2] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_in2] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_make] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2365), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_source] = ACTIONS(2365), - [anon_sym_source_DASHenv] = ACTIONS(2365), - [anon_sym_register] = ACTIONS(2365), - [anon_sym_hide] = ACTIONS(2365), - [anon_sym_hide_DASHenv] = ACTIONS(2365), - [anon_sym_overlay] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_PLUS2] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2365), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2365), - [aux_sym__val_number_decimal_token3] = ACTIONS(2365), - [aux_sym__val_number_decimal_token4] = ACTIONS(2365), - [aux_sym__val_number_token1] = ACTIONS(2365), - [aux_sym__val_number_token2] = ACTIONS(2365), - [aux_sym__val_number_token3] = ACTIONS(2365), - [aux_sym__val_number_token4] = ACTIONS(2365), - [aux_sym__val_number_token5] = ACTIONS(2365), - [aux_sym__val_number_token6] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2365), - [sym__str_single_quotes] = ACTIONS(2365), - [sym__str_back_ticks] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2365), - [sym__entry_separator] = ACTIONS(2367), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2367), - }, - [616] = { - [sym_comment] = STATE(616), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_alias] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_let_DASHenv] = ACTIONS(2369), - [anon_sym_mut] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [aux_sym_cmd_identifier_token1] = ACTIONS(2369), - [aux_sym_cmd_identifier_token2] = ACTIONS(2369), - [aux_sym_cmd_identifier_token3] = ACTIONS(2369), - [aux_sym_cmd_identifier_token4] = ACTIONS(2369), - [aux_sym_cmd_identifier_token5] = ACTIONS(2369), - [aux_sym_cmd_identifier_token6] = ACTIONS(2369), - [aux_sym_cmd_identifier_token7] = ACTIONS(2369), - [aux_sym_cmd_identifier_token8] = ACTIONS(2369), - [aux_sym_cmd_identifier_token9] = ACTIONS(2369), - [aux_sym_cmd_identifier_token10] = ACTIONS(2369), - [aux_sym_cmd_identifier_token11] = ACTIONS(2369), - [aux_sym_cmd_identifier_token12] = ACTIONS(2369), - [aux_sym_cmd_identifier_token13] = ACTIONS(2369), - [aux_sym_cmd_identifier_token14] = ACTIONS(2369), - [aux_sym_cmd_identifier_token15] = ACTIONS(2369), - [aux_sym_cmd_identifier_token16] = ACTIONS(2369), - [aux_sym_cmd_identifier_token17] = ACTIONS(2369), - [aux_sym_cmd_identifier_token18] = ACTIONS(2369), - [aux_sym_cmd_identifier_token19] = ACTIONS(2369), - [aux_sym_cmd_identifier_token20] = ACTIONS(2369), - [aux_sym_cmd_identifier_token21] = ACTIONS(2369), - [aux_sym_cmd_identifier_token22] = ACTIONS(2369), - [aux_sym_cmd_identifier_token23] = ACTIONS(2369), - [aux_sym_cmd_identifier_token24] = ACTIONS(2369), - [aux_sym_cmd_identifier_token25] = ACTIONS(2369), - [aux_sym_cmd_identifier_token26] = ACTIONS(2369), - [aux_sym_cmd_identifier_token27] = ACTIONS(2369), - [aux_sym_cmd_identifier_token28] = ACTIONS(2369), - [aux_sym_cmd_identifier_token29] = ACTIONS(2369), - [aux_sym_cmd_identifier_token30] = ACTIONS(2369), - [aux_sym_cmd_identifier_token31] = ACTIONS(2369), - [aux_sym_cmd_identifier_token32] = ACTIONS(2369), - [aux_sym_cmd_identifier_token33] = ACTIONS(2369), - [aux_sym_cmd_identifier_token34] = ACTIONS(2369), - [aux_sym_cmd_identifier_token35] = ACTIONS(2369), - [aux_sym_cmd_identifier_token36] = ACTIONS(2369), - [aux_sym_cmd_identifier_token37] = ACTIONS(2369), - [aux_sym_cmd_identifier_token38] = ACTIONS(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2369), - [aux_sym_cmd_identifier_token40] = ACTIONS(2369), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_export_DASHenv] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2369), - [anon_sym_DOLLAR] = ACTIONS(2369), - [anon_sym_error] = ACTIONS(2369), - [anon_sym_DASH2] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in2] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_make] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2369), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_catch] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_source] = ACTIONS(2369), - [anon_sym_source_DASHenv] = ACTIONS(2369), - [anon_sym_register] = ACTIONS(2369), - [anon_sym_hide] = ACTIONS(2369), - [anon_sym_hide_DASHenv] = ACTIONS(2369), - [anon_sym_overlay] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_PLUS2] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2369), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [aux_sym__val_number_decimal_token2] = ACTIONS(2369), - [aux_sym__val_number_decimal_token3] = ACTIONS(2369), - [aux_sym__val_number_decimal_token4] = ACTIONS(2369), - [aux_sym__val_number_token1] = ACTIONS(2369), - [aux_sym__val_number_token2] = ACTIONS(2369), - [aux_sym__val_number_token3] = ACTIONS(2369), - [aux_sym__val_number_token4] = ACTIONS(2369), - [aux_sym__val_number_token5] = ACTIONS(2369), - [aux_sym__val_number_token6] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2369), - [sym__str_single_quotes] = ACTIONS(2369), - [sym__str_back_ticks] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2369), - [sym__entry_separator] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2371), - }, - [617] = { - [sym_comment] = STATE(617), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_let_DASHenv] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2373), - [aux_sym_cmd_identifier_token2] = ACTIONS(2373), - [aux_sym_cmd_identifier_token3] = ACTIONS(2373), - [aux_sym_cmd_identifier_token4] = ACTIONS(2373), - [aux_sym_cmd_identifier_token5] = ACTIONS(2373), - [aux_sym_cmd_identifier_token6] = ACTIONS(2373), - [aux_sym_cmd_identifier_token7] = ACTIONS(2373), - [aux_sym_cmd_identifier_token8] = ACTIONS(2373), - [aux_sym_cmd_identifier_token9] = ACTIONS(2373), - [aux_sym_cmd_identifier_token10] = ACTIONS(2373), - [aux_sym_cmd_identifier_token11] = ACTIONS(2373), - [aux_sym_cmd_identifier_token12] = ACTIONS(2373), - [aux_sym_cmd_identifier_token13] = ACTIONS(2373), - [aux_sym_cmd_identifier_token14] = ACTIONS(2373), - [aux_sym_cmd_identifier_token15] = ACTIONS(2373), - [aux_sym_cmd_identifier_token16] = ACTIONS(2373), - [aux_sym_cmd_identifier_token17] = ACTIONS(2373), - [aux_sym_cmd_identifier_token18] = ACTIONS(2373), - [aux_sym_cmd_identifier_token19] = ACTIONS(2373), - [aux_sym_cmd_identifier_token20] = ACTIONS(2373), - [aux_sym_cmd_identifier_token21] = ACTIONS(2373), - [aux_sym_cmd_identifier_token22] = ACTIONS(2373), - [aux_sym_cmd_identifier_token23] = ACTIONS(2373), - [aux_sym_cmd_identifier_token24] = ACTIONS(2373), - [aux_sym_cmd_identifier_token25] = ACTIONS(2373), - [aux_sym_cmd_identifier_token26] = ACTIONS(2373), - [aux_sym_cmd_identifier_token27] = ACTIONS(2373), - [aux_sym_cmd_identifier_token28] = ACTIONS(2373), - [aux_sym_cmd_identifier_token29] = ACTIONS(2373), - [aux_sym_cmd_identifier_token30] = ACTIONS(2373), - [aux_sym_cmd_identifier_token31] = ACTIONS(2373), - [aux_sym_cmd_identifier_token32] = ACTIONS(2373), - [aux_sym_cmd_identifier_token33] = ACTIONS(2373), - [aux_sym_cmd_identifier_token34] = ACTIONS(2373), - [aux_sym_cmd_identifier_token35] = ACTIONS(2373), - [aux_sym_cmd_identifier_token36] = ACTIONS(2373), - [aux_sym_cmd_identifier_token37] = ACTIONS(2373), - [aux_sym_cmd_identifier_token38] = ACTIONS(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2373), - [aux_sym_cmd_identifier_token40] = ACTIONS(2373), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2373), - [anon_sym_DOLLAR] = ACTIONS(2373), - [anon_sym_error] = ACTIONS(2373), - [anon_sym_DASH2] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_in2] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_make] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2373), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_source] = ACTIONS(2373), - [anon_sym_source_DASHenv] = ACTIONS(2373), - [anon_sym_register] = ACTIONS(2373), - [anon_sym_hide] = ACTIONS(2373), - [anon_sym_hide_DASHenv] = ACTIONS(2373), - [anon_sym_overlay] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_PLUS2] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), - [aux_sym__val_number_decimal_token1] = ACTIONS(2373), - [aux_sym__val_number_decimal_token2] = ACTIONS(2373), - [aux_sym__val_number_decimal_token3] = ACTIONS(2373), - [aux_sym__val_number_decimal_token4] = ACTIONS(2373), - [aux_sym__val_number_token1] = ACTIONS(2373), - [aux_sym__val_number_token2] = ACTIONS(2373), - [aux_sym__val_number_token3] = ACTIONS(2373), - [aux_sym__val_number_token4] = ACTIONS(2373), - [aux_sym__val_number_token5] = ACTIONS(2373), - [aux_sym__val_number_token6] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2373), - [sym__str_single_quotes] = ACTIONS(2373), - [sym__str_back_ticks] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), - [sym__entry_separator] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2375), - }, - [618] = { - [sym_comment] = STATE(618), - [anon_sym_export] = ACTIONS(2377), - [anon_sym_alias] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_let_DASHenv] = ACTIONS(2377), - [anon_sym_mut] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [aux_sym_cmd_identifier_token1] = ACTIONS(2377), - [aux_sym_cmd_identifier_token2] = ACTIONS(2377), - [aux_sym_cmd_identifier_token3] = ACTIONS(2377), - [aux_sym_cmd_identifier_token4] = ACTIONS(2377), - [aux_sym_cmd_identifier_token5] = ACTIONS(2377), - [aux_sym_cmd_identifier_token6] = ACTIONS(2377), - [aux_sym_cmd_identifier_token7] = ACTIONS(2377), - [aux_sym_cmd_identifier_token8] = ACTIONS(2377), - [aux_sym_cmd_identifier_token9] = ACTIONS(2377), - [aux_sym_cmd_identifier_token10] = ACTIONS(2377), - [aux_sym_cmd_identifier_token11] = ACTIONS(2377), - [aux_sym_cmd_identifier_token12] = ACTIONS(2377), - [aux_sym_cmd_identifier_token13] = ACTIONS(2377), - [aux_sym_cmd_identifier_token14] = ACTIONS(2377), - [aux_sym_cmd_identifier_token15] = ACTIONS(2377), - [aux_sym_cmd_identifier_token16] = ACTIONS(2377), - [aux_sym_cmd_identifier_token17] = ACTIONS(2377), - [aux_sym_cmd_identifier_token18] = ACTIONS(2377), - [aux_sym_cmd_identifier_token19] = ACTIONS(2377), - [aux_sym_cmd_identifier_token20] = ACTIONS(2377), - [aux_sym_cmd_identifier_token21] = ACTIONS(2377), - [aux_sym_cmd_identifier_token22] = ACTIONS(2377), - [aux_sym_cmd_identifier_token23] = ACTIONS(2377), - [aux_sym_cmd_identifier_token24] = ACTIONS(2377), - [aux_sym_cmd_identifier_token25] = ACTIONS(2377), - [aux_sym_cmd_identifier_token26] = ACTIONS(2377), - [aux_sym_cmd_identifier_token27] = ACTIONS(2377), - [aux_sym_cmd_identifier_token28] = ACTIONS(2377), - [aux_sym_cmd_identifier_token29] = ACTIONS(2377), - [aux_sym_cmd_identifier_token30] = ACTIONS(2377), - [aux_sym_cmd_identifier_token31] = ACTIONS(2377), - [aux_sym_cmd_identifier_token32] = ACTIONS(2377), - [aux_sym_cmd_identifier_token33] = ACTIONS(2377), - [aux_sym_cmd_identifier_token34] = ACTIONS(2377), - [aux_sym_cmd_identifier_token35] = ACTIONS(2377), - [aux_sym_cmd_identifier_token36] = ACTIONS(2377), - [aux_sym_cmd_identifier_token37] = ACTIONS(2377), - [aux_sym_cmd_identifier_token38] = ACTIONS(2377), - [aux_sym_cmd_identifier_token39] = ACTIONS(2377), - [aux_sym_cmd_identifier_token40] = ACTIONS(2377), - [anon_sym_def] = ACTIONS(2377), - [anon_sym_export_DASHenv] = ACTIONS(2377), - [anon_sym_extern] = ACTIONS(2377), - [anon_sym_module] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2377), - [anon_sym_DOLLAR] = ACTIONS(2377), - [anon_sym_error] = ACTIONS(2377), - [anon_sym_DASH2] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_in2] = ACTIONS(2377), - [anon_sym_loop] = ACTIONS(2377), - [anon_sym_make] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2377), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_catch] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_source] = ACTIONS(2377), - [anon_sym_source_DASHenv] = ACTIONS(2377), - [anon_sym_register] = ACTIONS(2377), - [anon_sym_hide] = ACTIONS(2377), - [anon_sym_hide_DASHenv] = ACTIONS(2377), - [anon_sym_overlay] = ACTIONS(2377), - [anon_sym_as] = ACTIONS(2377), - [anon_sym_PLUS2] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), - [aux_sym__val_number_decimal_token1] = ACTIONS(2377), - [aux_sym__val_number_decimal_token2] = ACTIONS(2377), - [aux_sym__val_number_decimal_token3] = ACTIONS(2377), - [aux_sym__val_number_decimal_token4] = ACTIONS(2377), - [aux_sym__val_number_token1] = ACTIONS(2377), - [aux_sym__val_number_token2] = ACTIONS(2377), - [aux_sym__val_number_token3] = ACTIONS(2377), - [aux_sym__val_number_token4] = ACTIONS(2377), - [aux_sym__val_number_token5] = ACTIONS(2377), - [aux_sym__val_number_token6] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2377), - [sym__str_single_quotes] = ACTIONS(2377), - [sym__str_back_ticks] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), - [sym__entry_separator] = ACTIONS(2379), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2379), - }, - [619] = { - [sym_comment] = STATE(619), - [anon_sym_export] = ACTIONS(2381), - [anon_sym_alias] = ACTIONS(2381), - [anon_sym_let] = ACTIONS(2381), - [anon_sym_let_DASHenv] = ACTIONS(2381), - [anon_sym_mut] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [aux_sym_cmd_identifier_token1] = ACTIONS(2381), - [aux_sym_cmd_identifier_token2] = ACTIONS(2381), - [aux_sym_cmd_identifier_token3] = ACTIONS(2381), - [aux_sym_cmd_identifier_token4] = ACTIONS(2381), - [aux_sym_cmd_identifier_token5] = ACTIONS(2381), - [aux_sym_cmd_identifier_token6] = ACTIONS(2381), - [aux_sym_cmd_identifier_token7] = ACTIONS(2381), - [aux_sym_cmd_identifier_token8] = ACTIONS(2381), - [aux_sym_cmd_identifier_token9] = ACTIONS(2381), - [aux_sym_cmd_identifier_token10] = ACTIONS(2381), - [aux_sym_cmd_identifier_token11] = ACTIONS(2381), - [aux_sym_cmd_identifier_token12] = ACTIONS(2381), - [aux_sym_cmd_identifier_token13] = ACTIONS(2381), - [aux_sym_cmd_identifier_token14] = ACTIONS(2381), - [aux_sym_cmd_identifier_token15] = ACTIONS(2381), - [aux_sym_cmd_identifier_token16] = ACTIONS(2381), - [aux_sym_cmd_identifier_token17] = ACTIONS(2381), - [aux_sym_cmd_identifier_token18] = ACTIONS(2381), - [aux_sym_cmd_identifier_token19] = ACTIONS(2381), - [aux_sym_cmd_identifier_token20] = ACTIONS(2381), - [aux_sym_cmd_identifier_token21] = ACTIONS(2381), - [aux_sym_cmd_identifier_token22] = ACTIONS(2381), - [aux_sym_cmd_identifier_token23] = ACTIONS(2381), - [aux_sym_cmd_identifier_token24] = ACTIONS(2381), - [aux_sym_cmd_identifier_token25] = ACTIONS(2381), - [aux_sym_cmd_identifier_token26] = ACTIONS(2381), - [aux_sym_cmd_identifier_token27] = ACTIONS(2381), - [aux_sym_cmd_identifier_token28] = ACTIONS(2381), - [aux_sym_cmd_identifier_token29] = ACTIONS(2381), - [aux_sym_cmd_identifier_token30] = ACTIONS(2381), - [aux_sym_cmd_identifier_token31] = ACTIONS(2381), - [aux_sym_cmd_identifier_token32] = ACTIONS(2381), - [aux_sym_cmd_identifier_token33] = ACTIONS(2381), - [aux_sym_cmd_identifier_token34] = ACTIONS(2381), - [aux_sym_cmd_identifier_token35] = ACTIONS(2381), - [aux_sym_cmd_identifier_token36] = ACTIONS(2381), - [aux_sym_cmd_identifier_token37] = ACTIONS(2381), - [aux_sym_cmd_identifier_token38] = ACTIONS(2381), - [aux_sym_cmd_identifier_token39] = ACTIONS(2381), - [aux_sym_cmd_identifier_token40] = ACTIONS(2381), - [anon_sym_def] = ACTIONS(2381), - [anon_sym_export_DASHenv] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2381), - [anon_sym_module] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2381), - [anon_sym_DOLLAR] = ACTIONS(2381), - [anon_sym_error] = ACTIONS(2381), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_in2] = ACTIONS(2381), - [anon_sym_loop] = ACTIONS(2381), - [anon_sym_make] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_else] = ACTIONS(2381), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2381), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_catch] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_source] = ACTIONS(2381), - [anon_sym_source_DASHenv] = ACTIONS(2381), - [anon_sym_register] = ACTIONS(2381), - [anon_sym_hide] = ACTIONS(2381), - [anon_sym_hide_DASHenv] = ACTIONS(2381), - [anon_sym_overlay] = ACTIONS(2381), - [anon_sym_as] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), - [aux_sym__val_number_decimal_token1] = ACTIONS(2381), - [aux_sym__val_number_decimal_token2] = ACTIONS(2381), - [aux_sym__val_number_decimal_token3] = ACTIONS(2381), - [aux_sym__val_number_decimal_token4] = ACTIONS(2381), - [aux_sym__val_number_token1] = ACTIONS(2381), - [aux_sym__val_number_token2] = ACTIONS(2381), - [aux_sym__val_number_token3] = ACTIONS(2381), - [aux_sym__val_number_token4] = ACTIONS(2381), - [aux_sym__val_number_token5] = ACTIONS(2381), - [aux_sym__val_number_token6] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2381), - [sym__str_single_quotes] = ACTIONS(2381), - [sym__str_back_ticks] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), - [sym__entry_separator] = ACTIONS(2383), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2383), - }, - [620] = { - [sym_comment] = STATE(620), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_alias] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_let_DASHenv] = ACTIONS(2385), - [anon_sym_mut] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [aux_sym_cmd_identifier_token1] = ACTIONS(2385), - [aux_sym_cmd_identifier_token2] = ACTIONS(2385), - [aux_sym_cmd_identifier_token3] = ACTIONS(2385), - [aux_sym_cmd_identifier_token4] = ACTIONS(2385), - [aux_sym_cmd_identifier_token5] = ACTIONS(2385), - [aux_sym_cmd_identifier_token6] = ACTIONS(2385), - [aux_sym_cmd_identifier_token7] = ACTIONS(2385), - [aux_sym_cmd_identifier_token8] = ACTIONS(2385), - [aux_sym_cmd_identifier_token9] = ACTIONS(2385), - [aux_sym_cmd_identifier_token10] = ACTIONS(2385), - [aux_sym_cmd_identifier_token11] = ACTIONS(2385), - [aux_sym_cmd_identifier_token12] = ACTIONS(2385), - [aux_sym_cmd_identifier_token13] = ACTIONS(2385), - [aux_sym_cmd_identifier_token14] = ACTIONS(2385), - [aux_sym_cmd_identifier_token15] = ACTIONS(2385), - [aux_sym_cmd_identifier_token16] = ACTIONS(2385), - [aux_sym_cmd_identifier_token17] = ACTIONS(2385), - [aux_sym_cmd_identifier_token18] = ACTIONS(2385), - [aux_sym_cmd_identifier_token19] = ACTIONS(2385), - [aux_sym_cmd_identifier_token20] = ACTIONS(2385), - [aux_sym_cmd_identifier_token21] = ACTIONS(2385), - [aux_sym_cmd_identifier_token22] = ACTIONS(2385), - [aux_sym_cmd_identifier_token23] = ACTIONS(2385), - [aux_sym_cmd_identifier_token24] = ACTIONS(2385), - [aux_sym_cmd_identifier_token25] = ACTIONS(2385), - [aux_sym_cmd_identifier_token26] = ACTIONS(2385), - [aux_sym_cmd_identifier_token27] = ACTIONS(2385), - [aux_sym_cmd_identifier_token28] = ACTIONS(2385), - [aux_sym_cmd_identifier_token29] = ACTIONS(2385), - [aux_sym_cmd_identifier_token30] = ACTIONS(2385), - [aux_sym_cmd_identifier_token31] = ACTIONS(2385), - [aux_sym_cmd_identifier_token32] = ACTIONS(2385), - [aux_sym_cmd_identifier_token33] = ACTIONS(2385), - [aux_sym_cmd_identifier_token34] = ACTIONS(2385), - [aux_sym_cmd_identifier_token35] = ACTIONS(2385), - [aux_sym_cmd_identifier_token36] = ACTIONS(2385), - [aux_sym_cmd_identifier_token37] = ACTIONS(2385), - [aux_sym_cmd_identifier_token38] = ACTIONS(2385), - [aux_sym_cmd_identifier_token39] = ACTIONS(2385), - [aux_sym_cmd_identifier_token40] = ACTIONS(2385), - [anon_sym_def] = ACTIONS(2385), - [anon_sym_export_DASHenv] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym_module] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2385), - [anon_sym_DOLLAR] = ACTIONS(2385), - [anon_sym_error] = ACTIONS(2385), - [anon_sym_DASH2] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_in2] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_make] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_else] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2385), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_catch] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_source] = ACTIONS(2385), - [anon_sym_source_DASHenv] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_hide] = ACTIONS(2385), - [anon_sym_hide_DASHenv] = ACTIONS(2385), - [anon_sym_overlay] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_PLUS2] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), - [aux_sym__val_number_decimal_token1] = ACTIONS(2385), - [aux_sym__val_number_decimal_token2] = ACTIONS(2385), - [aux_sym__val_number_decimal_token3] = ACTIONS(2385), - [aux_sym__val_number_decimal_token4] = ACTIONS(2385), - [aux_sym__val_number_token1] = ACTIONS(2385), - [aux_sym__val_number_token2] = ACTIONS(2385), - [aux_sym__val_number_token3] = ACTIONS(2385), - [aux_sym__val_number_token4] = ACTIONS(2385), - [aux_sym__val_number_token5] = ACTIONS(2385), - [aux_sym__val_number_token6] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2385), - [sym__str_single_quotes] = ACTIONS(2385), - [sym__str_back_ticks] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), - [sym__entry_separator] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2387), - }, - [621] = { - [sym_comment] = STATE(621), - [anon_sym_export] = ACTIONS(2389), - [anon_sym_alias] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_let_DASHenv] = ACTIONS(2389), - [anon_sym_mut] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [aux_sym_cmd_identifier_token1] = ACTIONS(2389), - [aux_sym_cmd_identifier_token2] = ACTIONS(2389), - [aux_sym_cmd_identifier_token3] = ACTIONS(2389), - [aux_sym_cmd_identifier_token4] = ACTIONS(2389), - [aux_sym_cmd_identifier_token5] = ACTIONS(2389), - [aux_sym_cmd_identifier_token6] = ACTIONS(2389), - [aux_sym_cmd_identifier_token7] = ACTIONS(2389), - [aux_sym_cmd_identifier_token8] = ACTIONS(2389), - [aux_sym_cmd_identifier_token9] = ACTIONS(2389), - [aux_sym_cmd_identifier_token10] = ACTIONS(2389), - [aux_sym_cmd_identifier_token11] = ACTIONS(2389), - [aux_sym_cmd_identifier_token12] = ACTIONS(2389), - [aux_sym_cmd_identifier_token13] = ACTIONS(2389), - [aux_sym_cmd_identifier_token14] = ACTIONS(2389), - [aux_sym_cmd_identifier_token15] = ACTIONS(2389), - [aux_sym_cmd_identifier_token16] = ACTIONS(2389), - [aux_sym_cmd_identifier_token17] = ACTIONS(2389), - [aux_sym_cmd_identifier_token18] = ACTIONS(2389), - [aux_sym_cmd_identifier_token19] = ACTIONS(2389), - [aux_sym_cmd_identifier_token20] = ACTIONS(2389), - [aux_sym_cmd_identifier_token21] = ACTIONS(2389), - [aux_sym_cmd_identifier_token22] = ACTIONS(2389), - [aux_sym_cmd_identifier_token23] = ACTIONS(2389), - [aux_sym_cmd_identifier_token24] = ACTIONS(2389), - [aux_sym_cmd_identifier_token25] = ACTIONS(2389), - [aux_sym_cmd_identifier_token26] = ACTIONS(2389), - [aux_sym_cmd_identifier_token27] = ACTIONS(2389), - [aux_sym_cmd_identifier_token28] = ACTIONS(2389), - [aux_sym_cmd_identifier_token29] = ACTIONS(2389), - [aux_sym_cmd_identifier_token30] = ACTIONS(2389), - [aux_sym_cmd_identifier_token31] = ACTIONS(2389), - [aux_sym_cmd_identifier_token32] = ACTIONS(2389), - [aux_sym_cmd_identifier_token33] = ACTIONS(2389), - [aux_sym_cmd_identifier_token34] = ACTIONS(2389), - [aux_sym_cmd_identifier_token35] = ACTIONS(2389), - [aux_sym_cmd_identifier_token36] = ACTIONS(2389), - [aux_sym_cmd_identifier_token37] = ACTIONS(2389), - [aux_sym_cmd_identifier_token38] = ACTIONS(2389), - [aux_sym_cmd_identifier_token39] = ACTIONS(2389), - [aux_sym_cmd_identifier_token40] = ACTIONS(2389), - [anon_sym_def] = ACTIONS(2389), - [anon_sym_export_DASHenv] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(2389), - [anon_sym_module] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2389), - [anon_sym_DOLLAR] = ACTIONS(2389), - [anon_sym_error] = ACTIONS(2389), - [anon_sym_DASH2] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_in2] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_make] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2389), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_source] = ACTIONS(2389), - [anon_sym_source_DASHenv] = ACTIONS(2389), - [anon_sym_register] = ACTIONS(2389), - [anon_sym_hide] = ACTIONS(2389), - [anon_sym_hide_DASHenv] = ACTIONS(2389), - [anon_sym_overlay] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_PLUS2] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), - [aux_sym__val_number_decimal_token1] = ACTIONS(2389), - [aux_sym__val_number_decimal_token2] = ACTIONS(2389), - [aux_sym__val_number_decimal_token3] = ACTIONS(2389), - [aux_sym__val_number_decimal_token4] = ACTIONS(2389), - [aux_sym__val_number_token1] = ACTIONS(2389), - [aux_sym__val_number_token2] = ACTIONS(2389), - [aux_sym__val_number_token3] = ACTIONS(2389), - [aux_sym__val_number_token4] = ACTIONS(2389), - [aux_sym__val_number_token5] = ACTIONS(2389), - [aux_sym__val_number_token6] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2389), - [sym__str_single_quotes] = ACTIONS(2389), - [sym__str_back_ticks] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), - [sym__entry_separator] = ACTIONS(2391), + [583] = { + [sym_comment] = STATE(583), + [anon_sym_export] = ACTIONS(988), + [anon_sym_alias] = ACTIONS(988), + [anon_sym_let] = ACTIONS(988), + [anon_sym_let_DASHenv] = ACTIONS(988), + [anon_sym_mut] = ACTIONS(988), + [anon_sym_const] = ACTIONS(988), + [aux_sym_cmd_identifier_token1] = ACTIONS(988), + [aux_sym_cmd_identifier_token2] = ACTIONS(990), + [aux_sym_cmd_identifier_token3] = ACTIONS(990), + [aux_sym_cmd_identifier_token4] = ACTIONS(990), + [aux_sym_cmd_identifier_token5] = ACTIONS(990), + [aux_sym_cmd_identifier_token6] = ACTIONS(990), + [aux_sym_cmd_identifier_token7] = ACTIONS(990), + [aux_sym_cmd_identifier_token8] = ACTIONS(988), + [aux_sym_cmd_identifier_token9] = ACTIONS(988), + [aux_sym_cmd_identifier_token10] = ACTIONS(990), + [aux_sym_cmd_identifier_token11] = ACTIONS(990), + [aux_sym_cmd_identifier_token12] = ACTIONS(988), + [aux_sym_cmd_identifier_token13] = ACTIONS(988), + [aux_sym_cmd_identifier_token14] = ACTIONS(988), + [aux_sym_cmd_identifier_token15] = ACTIONS(988), + [aux_sym_cmd_identifier_token16] = ACTIONS(990), + [aux_sym_cmd_identifier_token17] = ACTIONS(990), + [aux_sym_cmd_identifier_token18] = ACTIONS(990), + [aux_sym_cmd_identifier_token19] = ACTIONS(990), + [aux_sym_cmd_identifier_token20] = ACTIONS(990), + [aux_sym_cmd_identifier_token21] = ACTIONS(990), + [aux_sym_cmd_identifier_token22] = ACTIONS(990), + [aux_sym_cmd_identifier_token23] = ACTIONS(990), + [aux_sym_cmd_identifier_token24] = ACTIONS(990), + [aux_sym_cmd_identifier_token25] = ACTIONS(990), + [aux_sym_cmd_identifier_token26] = ACTIONS(990), + [aux_sym_cmd_identifier_token27] = ACTIONS(990), + [aux_sym_cmd_identifier_token28] = ACTIONS(990), + [aux_sym_cmd_identifier_token29] = ACTIONS(990), + [aux_sym_cmd_identifier_token30] = ACTIONS(990), + [aux_sym_cmd_identifier_token31] = ACTIONS(990), + [aux_sym_cmd_identifier_token32] = ACTIONS(990), + [aux_sym_cmd_identifier_token33] = ACTIONS(990), + [aux_sym_cmd_identifier_token34] = ACTIONS(988), + [aux_sym_cmd_identifier_token35] = ACTIONS(990), + [aux_sym_cmd_identifier_token36] = ACTIONS(990), + [aux_sym_cmd_identifier_token37] = ACTIONS(990), + [aux_sym_cmd_identifier_token38] = ACTIONS(988), + [aux_sym_cmd_identifier_token39] = ACTIONS(990), + [aux_sym_cmd_identifier_token40] = ACTIONS(990), + [anon_sym_def] = ACTIONS(988), + [anon_sym_export_DASHenv] = ACTIONS(988), + [anon_sym_extern] = ACTIONS(988), + [anon_sym_module] = ACTIONS(988), + [anon_sym_use] = ACTIONS(988), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_COMMA] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(990), + [anon_sym_error] = ACTIONS(988), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_break] = ACTIONS(988), + [anon_sym_continue] = ACTIONS(988), + [anon_sym_for] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(988), + [anon_sym_loop] = ACTIONS(988), + [anon_sym_make] = ACTIONS(988), + [anon_sym_while] = ACTIONS(988), + [anon_sym_do] = ACTIONS(988), + [anon_sym_if] = ACTIONS(988), + [anon_sym_else] = ACTIONS(988), + [anon_sym_match] = ACTIONS(988), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_try] = ACTIONS(988), + [anon_sym_catch] = ACTIONS(988), + [anon_sym_return] = ACTIONS(988), + [anon_sym_source] = ACTIONS(988), + [anon_sym_source_DASHenv] = ACTIONS(988), + [anon_sym_register] = ACTIONS(988), + [anon_sym_hide] = ACTIONS(988), + [anon_sym_hide_DASHenv] = ACTIONS(988), + [anon_sym_overlay] = ACTIONS(988), + [anon_sym_as] = ACTIONS(988), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(988), + [aux_sym__val_number_token5] = ACTIONS(988), + [aux_sym__val_number_token6] = ACTIONS(988), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), + [anon_sym_COLON2] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), + }, + [584] = { + [sym_comment] = STATE(584), + [anon_sym_export] = ACTIONS(2012), + [anon_sym_alias] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_let_DASHenv] = ACTIONS(2012), + [anon_sym_mut] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [aux_sym_cmd_identifier_token1] = ACTIONS(2012), + [aux_sym_cmd_identifier_token2] = ACTIONS(2012), + [aux_sym_cmd_identifier_token3] = ACTIONS(2012), + [aux_sym_cmd_identifier_token4] = ACTIONS(2012), + [aux_sym_cmd_identifier_token5] = ACTIONS(2012), + [aux_sym_cmd_identifier_token6] = ACTIONS(2012), + [aux_sym_cmd_identifier_token7] = ACTIONS(2012), + [aux_sym_cmd_identifier_token8] = ACTIONS(2012), + [aux_sym_cmd_identifier_token9] = ACTIONS(2012), + [aux_sym_cmd_identifier_token10] = ACTIONS(2012), + [aux_sym_cmd_identifier_token11] = ACTIONS(2012), + [aux_sym_cmd_identifier_token12] = ACTIONS(2012), + [aux_sym_cmd_identifier_token13] = ACTIONS(2012), + [aux_sym_cmd_identifier_token14] = ACTIONS(2012), + [aux_sym_cmd_identifier_token15] = ACTIONS(2012), + [aux_sym_cmd_identifier_token16] = ACTIONS(2012), + [aux_sym_cmd_identifier_token17] = ACTIONS(2012), + [aux_sym_cmd_identifier_token18] = ACTIONS(2012), + [aux_sym_cmd_identifier_token19] = ACTIONS(2012), + [aux_sym_cmd_identifier_token20] = ACTIONS(2012), + [aux_sym_cmd_identifier_token21] = ACTIONS(2012), + [aux_sym_cmd_identifier_token22] = ACTIONS(2012), + [aux_sym_cmd_identifier_token23] = ACTIONS(2012), + [aux_sym_cmd_identifier_token24] = ACTIONS(2012), + [aux_sym_cmd_identifier_token25] = ACTIONS(2012), + [aux_sym_cmd_identifier_token26] = ACTIONS(2012), + [aux_sym_cmd_identifier_token27] = ACTIONS(2012), + [aux_sym_cmd_identifier_token28] = ACTIONS(2012), + [aux_sym_cmd_identifier_token29] = ACTIONS(2012), + [aux_sym_cmd_identifier_token30] = ACTIONS(2012), + [aux_sym_cmd_identifier_token31] = ACTIONS(2012), + [aux_sym_cmd_identifier_token32] = ACTIONS(2012), + [aux_sym_cmd_identifier_token33] = ACTIONS(2012), + [aux_sym_cmd_identifier_token34] = ACTIONS(2012), + [aux_sym_cmd_identifier_token35] = ACTIONS(2012), + [aux_sym_cmd_identifier_token36] = ACTIONS(2012), + [aux_sym_cmd_identifier_token37] = ACTIONS(2012), + [aux_sym_cmd_identifier_token38] = ACTIONS(2012), + [aux_sym_cmd_identifier_token39] = ACTIONS(2012), + [aux_sym_cmd_identifier_token40] = ACTIONS(2012), + [anon_sym_def] = ACTIONS(2012), + [anon_sym_export_DASHenv] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_module] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2012), + [anon_sym_COMMA] = ACTIONS(2012), + [anon_sym_DOLLAR] = ACTIONS(2012), + [anon_sym_error] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_in2] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_make] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2012), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_catch] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_source] = ACTIONS(2012), + [anon_sym_source_DASHenv] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_hide] = ACTIONS(2012), + [anon_sym_hide_DASHenv] = ACTIONS(2012), + [anon_sym_overlay] = ACTIONS(2012), + [anon_sym_as] = ACTIONS(2012), + [anon_sym_PLUS2] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2012), + [aux_sym__val_number_decimal_token1] = ACTIONS(2012), + [aux_sym__val_number_decimal_token2] = ACTIONS(2012), + [aux_sym__val_number_decimal_token3] = ACTIONS(2012), + [aux_sym__val_number_decimal_token4] = ACTIONS(2012), + [aux_sym__val_number_token1] = ACTIONS(2012), + [aux_sym__val_number_token2] = ACTIONS(2012), + [aux_sym__val_number_token3] = ACTIONS(2012), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2012), + [sym__str_single_quotes] = ACTIONS(2012), + [sym__str_back_ticks] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2012), + [sym__entry_separator] = ACTIONS(2014), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2391), + [sym_raw_string_begin] = ACTIONS(2014), }, - [622] = { - [sym_comment] = STATE(622), - [anon_sym_export] = ACTIONS(2393), - [anon_sym_alias] = ACTIONS(2393), - [anon_sym_let] = ACTIONS(2393), - [anon_sym_let_DASHenv] = ACTIONS(2393), - [anon_sym_mut] = ACTIONS(2393), - [anon_sym_const] = ACTIONS(2393), - [aux_sym_cmd_identifier_token1] = ACTIONS(2393), - [aux_sym_cmd_identifier_token2] = ACTIONS(2393), - [aux_sym_cmd_identifier_token3] = ACTIONS(2393), - [aux_sym_cmd_identifier_token4] = ACTIONS(2393), - [aux_sym_cmd_identifier_token5] = ACTIONS(2393), - [aux_sym_cmd_identifier_token6] = ACTIONS(2393), - [aux_sym_cmd_identifier_token7] = ACTIONS(2393), - [aux_sym_cmd_identifier_token8] = ACTIONS(2393), - [aux_sym_cmd_identifier_token9] = ACTIONS(2393), - [aux_sym_cmd_identifier_token10] = ACTIONS(2393), - [aux_sym_cmd_identifier_token11] = ACTIONS(2393), - [aux_sym_cmd_identifier_token12] = ACTIONS(2393), - [aux_sym_cmd_identifier_token13] = ACTIONS(2393), - [aux_sym_cmd_identifier_token14] = ACTIONS(2393), - [aux_sym_cmd_identifier_token15] = ACTIONS(2393), - [aux_sym_cmd_identifier_token16] = ACTIONS(2393), - [aux_sym_cmd_identifier_token17] = ACTIONS(2393), - [aux_sym_cmd_identifier_token18] = ACTIONS(2393), - [aux_sym_cmd_identifier_token19] = ACTIONS(2393), - [aux_sym_cmd_identifier_token20] = ACTIONS(2393), - [aux_sym_cmd_identifier_token21] = ACTIONS(2393), - [aux_sym_cmd_identifier_token22] = ACTIONS(2393), - [aux_sym_cmd_identifier_token23] = ACTIONS(2393), - [aux_sym_cmd_identifier_token24] = ACTIONS(2393), - [aux_sym_cmd_identifier_token25] = ACTIONS(2393), - [aux_sym_cmd_identifier_token26] = ACTIONS(2393), - [aux_sym_cmd_identifier_token27] = ACTIONS(2393), - [aux_sym_cmd_identifier_token28] = ACTIONS(2393), - [aux_sym_cmd_identifier_token29] = ACTIONS(2393), - [aux_sym_cmd_identifier_token30] = ACTIONS(2393), - [aux_sym_cmd_identifier_token31] = ACTIONS(2393), - [aux_sym_cmd_identifier_token32] = ACTIONS(2393), - [aux_sym_cmd_identifier_token33] = ACTIONS(2393), - [aux_sym_cmd_identifier_token34] = ACTIONS(2393), - [aux_sym_cmd_identifier_token35] = ACTIONS(2393), - [aux_sym_cmd_identifier_token36] = ACTIONS(2393), - [aux_sym_cmd_identifier_token37] = ACTIONS(2393), - [aux_sym_cmd_identifier_token38] = ACTIONS(2393), - [aux_sym_cmd_identifier_token39] = ACTIONS(2393), - [aux_sym_cmd_identifier_token40] = ACTIONS(2393), - [anon_sym_def] = ACTIONS(2393), - [anon_sym_export_DASHenv] = ACTIONS(2393), - [anon_sym_extern] = ACTIONS(2393), - [anon_sym_module] = ACTIONS(2393), - [anon_sym_use] = ACTIONS(2393), - [anon_sym_LPAREN] = ACTIONS(2393), - [anon_sym_DOLLAR] = ACTIONS(2393), - [anon_sym_error] = ACTIONS(2393), - [anon_sym_DASH2] = ACTIONS(2393), - [anon_sym_break] = ACTIONS(2393), - [anon_sym_continue] = ACTIONS(2393), - [anon_sym_for] = ACTIONS(2393), - [anon_sym_in2] = ACTIONS(2393), - [anon_sym_loop] = ACTIONS(2393), - [anon_sym_make] = ACTIONS(2393), - [anon_sym_while] = ACTIONS(2393), - [anon_sym_do] = ACTIONS(2393), - [anon_sym_if] = ACTIONS(2393), - [anon_sym_else] = ACTIONS(2393), - [anon_sym_match] = ACTIONS(2393), - [anon_sym_RBRACE] = ACTIONS(2393), - [anon_sym_try] = ACTIONS(2393), - [anon_sym_catch] = ACTIONS(2393), - [anon_sym_return] = ACTIONS(2393), - [anon_sym_source] = ACTIONS(2393), - [anon_sym_source_DASHenv] = ACTIONS(2393), - [anon_sym_register] = ACTIONS(2393), - [anon_sym_hide] = ACTIONS(2393), - [anon_sym_hide_DASHenv] = ACTIONS(2393), - [anon_sym_overlay] = ACTIONS(2393), - [anon_sym_as] = ACTIONS(2393), - [anon_sym_PLUS2] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), - [aux_sym__val_number_decimal_token1] = ACTIONS(2393), - [aux_sym__val_number_decimal_token2] = ACTIONS(2393), - [aux_sym__val_number_decimal_token3] = ACTIONS(2393), - [aux_sym__val_number_decimal_token4] = ACTIONS(2393), - [aux_sym__val_number_token1] = ACTIONS(2393), - [aux_sym__val_number_token2] = ACTIONS(2393), - [aux_sym__val_number_token3] = ACTIONS(2393), - [aux_sym__val_number_token4] = ACTIONS(2393), - [aux_sym__val_number_token5] = ACTIONS(2393), - [aux_sym__val_number_token6] = ACTIONS(2393), - [anon_sym_DQUOTE] = ACTIONS(2393), - [sym__str_single_quotes] = ACTIONS(2393), - [sym__str_back_ticks] = ACTIONS(2393), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), - [sym__entry_separator] = ACTIONS(2395), + [585] = { + [sym_comment] = STATE(585), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_alias] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_let_DASHenv] = ACTIONS(2300), + [anon_sym_mut] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [aux_sym_cmd_identifier_token1] = ACTIONS(2300), + [aux_sym_cmd_identifier_token2] = ACTIONS(2300), + [aux_sym_cmd_identifier_token3] = ACTIONS(2300), + [aux_sym_cmd_identifier_token4] = ACTIONS(2300), + [aux_sym_cmd_identifier_token5] = ACTIONS(2300), + [aux_sym_cmd_identifier_token6] = ACTIONS(2300), + [aux_sym_cmd_identifier_token7] = ACTIONS(2300), + [aux_sym_cmd_identifier_token8] = ACTIONS(2300), + [aux_sym_cmd_identifier_token9] = ACTIONS(2300), + [aux_sym_cmd_identifier_token10] = ACTIONS(2300), + [aux_sym_cmd_identifier_token11] = ACTIONS(2300), + [aux_sym_cmd_identifier_token12] = ACTIONS(2300), + [aux_sym_cmd_identifier_token13] = ACTIONS(2300), + [aux_sym_cmd_identifier_token14] = ACTIONS(2300), + [aux_sym_cmd_identifier_token15] = ACTIONS(2300), + [aux_sym_cmd_identifier_token16] = ACTIONS(2300), + [aux_sym_cmd_identifier_token17] = ACTIONS(2300), + [aux_sym_cmd_identifier_token18] = ACTIONS(2300), + [aux_sym_cmd_identifier_token19] = ACTIONS(2300), + [aux_sym_cmd_identifier_token20] = ACTIONS(2300), + [aux_sym_cmd_identifier_token21] = ACTIONS(2300), + [aux_sym_cmd_identifier_token22] = ACTIONS(2300), + [aux_sym_cmd_identifier_token23] = ACTIONS(2300), + [aux_sym_cmd_identifier_token24] = ACTIONS(2300), + [aux_sym_cmd_identifier_token25] = ACTIONS(2300), + [aux_sym_cmd_identifier_token26] = ACTIONS(2300), + [aux_sym_cmd_identifier_token27] = ACTIONS(2300), + [aux_sym_cmd_identifier_token28] = ACTIONS(2300), + [aux_sym_cmd_identifier_token29] = ACTIONS(2300), + [aux_sym_cmd_identifier_token30] = ACTIONS(2300), + [aux_sym_cmd_identifier_token31] = ACTIONS(2300), + [aux_sym_cmd_identifier_token32] = ACTIONS(2300), + [aux_sym_cmd_identifier_token33] = ACTIONS(2300), + [aux_sym_cmd_identifier_token34] = ACTIONS(2300), + [aux_sym_cmd_identifier_token35] = ACTIONS(2300), + [aux_sym_cmd_identifier_token36] = ACTIONS(2300), + [aux_sym_cmd_identifier_token37] = ACTIONS(2300), + [aux_sym_cmd_identifier_token38] = ACTIONS(2300), + [aux_sym_cmd_identifier_token39] = ACTIONS(2300), + [aux_sym_cmd_identifier_token40] = ACTIONS(2300), + [anon_sym_def] = ACTIONS(2300), + [anon_sym_export_DASHenv] = ACTIONS(2300), + [anon_sym_extern] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_use] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2300), + [anon_sym_COMMA] = ACTIONS(2300), + [anon_sym_DOLLAR] = ACTIONS(2300), + [anon_sym_error] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_in2] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_make] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2300), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_catch] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_source] = ACTIONS(2300), + [anon_sym_source_DASHenv] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2300), + [anon_sym_hide] = ACTIONS(2300), + [anon_sym_hide_DASHenv] = ACTIONS(2300), + [anon_sym_overlay] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2300), + [aux_sym__val_number_decimal_token1] = ACTIONS(2300), + [aux_sym__val_number_decimal_token2] = ACTIONS(2300), + [aux_sym__val_number_decimal_token3] = ACTIONS(2300), + [aux_sym__val_number_decimal_token4] = ACTIONS(2300), + [aux_sym__val_number_token1] = ACTIONS(2300), + [aux_sym__val_number_token2] = ACTIONS(2300), + [aux_sym__val_number_token3] = ACTIONS(2300), + [aux_sym__val_number_token4] = ACTIONS(2300), + [aux_sym__val_number_token5] = ACTIONS(2300), + [aux_sym__val_number_token6] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2300), + [sym__str_single_quotes] = ACTIONS(2300), + [sym__str_back_ticks] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2300), + [sym__entry_separator] = ACTIONS(2302), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2395), + [sym_raw_string_begin] = ACTIONS(2302), }, - [623] = { - [sym_comment] = STATE(623), - [anon_sym_export] = ACTIONS(2397), - [anon_sym_alias] = ACTIONS(2397), - [anon_sym_let] = ACTIONS(2397), - [anon_sym_let_DASHenv] = ACTIONS(2397), - [anon_sym_mut] = ACTIONS(2397), - [anon_sym_const] = ACTIONS(2397), - [aux_sym_cmd_identifier_token1] = ACTIONS(2397), - [aux_sym_cmd_identifier_token2] = ACTIONS(2397), - [aux_sym_cmd_identifier_token3] = ACTIONS(2397), - [aux_sym_cmd_identifier_token4] = ACTIONS(2397), - [aux_sym_cmd_identifier_token5] = ACTIONS(2397), - [aux_sym_cmd_identifier_token6] = ACTIONS(2397), - [aux_sym_cmd_identifier_token7] = ACTIONS(2397), - [aux_sym_cmd_identifier_token8] = ACTIONS(2397), - [aux_sym_cmd_identifier_token9] = ACTIONS(2397), - [aux_sym_cmd_identifier_token10] = ACTIONS(2397), - [aux_sym_cmd_identifier_token11] = ACTIONS(2397), - [aux_sym_cmd_identifier_token12] = ACTIONS(2397), - [aux_sym_cmd_identifier_token13] = ACTIONS(2397), - [aux_sym_cmd_identifier_token14] = ACTIONS(2397), - [aux_sym_cmd_identifier_token15] = ACTIONS(2397), - [aux_sym_cmd_identifier_token16] = ACTIONS(2397), - [aux_sym_cmd_identifier_token17] = ACTIONS(2397), - [aux_sym_cmd_identifier_token18] = ACTIONS(2397), - [aux_sym_cmd_identifier_token19] = ACTIONS(2397), - [aux_sym_cmd_identifier_token20] = ACTIONS(2397), - [aux_sym_cmd_identifier_token21] = ACTIONS(2397), - [aux_sym_cmd_identifier_token22] = ACTIONS(2397), - [aux_sym_cmd_identifier_token23] = ACTIONS(2397), - [aux_sym_cmd_identifier_token24] = ACTIONS(2397), - [aux_sym_cmd_identifier_token25] = ACTIONS(2397), - [aux_sym_cmd_identifier_token26] = ACTIONS(2397), - [aux_sym_cmd_identifier_token27] = ACTIONS(2397), - [aux_sym_cmd_identifier_token28] = ACTIONS(2397), - [aux_sym_cmd_identifier_token29] = ACTIONS(2397), - [aux_sym_cmd_identifier_token30] = ACTIONS(2397), - [aux_sym_cmd_identifier_token31] = ACTIONS(2397), - [aux_sym_cmd_identifier_token32] = ACTIONS(2397), - [aux_sym_cmd_identifier_token33] = ACTIONS(2397), - [aux_sym_cmd_identifier_token34] = ACTIONS(2397), - [aux_sym_cmd_identifier_token35] = ACTIONS(2397), - [aux_sym_cmd_identifier_token36] = ACTIONS(2397), - [aux_sym_cmd_identifier_token37] = ACTIONS(2397), - [aux_sym_cmd_identifier_token38] = ACTIONS(2397), - [aux_sym_cmd_identifier_token39] = ACTIONS(2397), - [aux_sym_cmd_identifier_token40] = ACTIONS(2397), - [anon_sym_def] = ACTIONS(2397), - [anon_sym_export_DASHenv] = ACTIONS(2397), - [anon_sym_extern] = ACTIONS(2397), - [anon_sym_module] = ACTIONS(2397), - [anon_sym_use] = ACTIONS(2397), - [anon_sym_LPAREN] = ACTIONS(2397), - [anon_sym_DOLLAR] = ACTIONS(2397), - [anon_sym_error] = ACTIONS(2397), - [anon_sym_DASH2] = ACTIONS(2397), - [anon_sym_break] = ACTIONS(2397), - [anon_sym_continue] = ACTIONS(2397), - [anon_sym_for] = ACTIONS(2397), - [anon_sym_in2] = ACTIONS(2397), - [anon_sym_loop] = ACTIONS(2397), - [anon_sym_make] = ACTIONS(2397), - [anon_sym_while] = ACTIONS(2397), - [anon_sym_do] = ACTIONS(2397), - [anon_sym_if] = ACTIONS(2397), - [anon_sym_else] = ACTIONS(2397), - [anon_sym_match] = ACTIONS(2397), - [anon_sym_RBRACE] = ACTIONS(2397), - [anon_sym_try] = ACTIONS(2397), - [anon_sym_catch] = ACTIONS(2397), - [anon_sym_return] = ACTIONS(2397), - [anon_sym_source] = ACTIONS(2397), - [anon_sym_source_DASHenv] = ACTIONS(2397), - [anon_sym_register] = ACTIONS(2397), - [anon_sym_hide] = ACTIONS(2397), - [anon_sym_hide_DASHenv] = ACTIONS(2397), - [anon_sym_overlay] = ACTIONS(2397), - [anon_sym_as] = ACTIONS(2397), - [anon_sym_PLUS2] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), - [aux_sym__val_number_decimal_token1] = ACTIONS(2397), - [aux_sym__val_number_decimal_token2] = ACTIONS(2397), - [aux_sym__val_number_decimal_token3] = ACTIONS(2397), - [aux_sym__val_number_decimal_token4] = ACTIONS(2397), - [aux_sym__val_number_token1] = ACTIONS(2397), - [aux_sym__val_number_token2] = ACTIONS(2397), - [aux_sym__val_number_token3] = ACTIONS(2397), - [aux_sym__val_number_token4] = ACTIONS(2397), - [aux_sym__val_number_token5] = ACTIONS(2397), - [aux_sym__val_number_token6] = ACTIONS(2397), - [anon_sym_DQUOTE] = ACTIONS(2397), - [sym__str_single_quotes] = ACTIONS(2397), - [sym__str_back_ticks] = ACTIONS(2397), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), - [sym__entry_separator] = ACTIONS(2399), + [586] = { + [sym_comment] = STATE(586), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2304), + [aux_sym_cmd_identifier_token3] = ACTIONS(2304), + [aux_sym_cmd_identifier_token4] = ACTIONS(2304), + [aux_sym_cmd_identifier_token5] = ACTIONS(2304), + [aux_sym_cmd_identifier_token6] = ACTIONS(2304), + [aux_sym_cmd_identifier_token7] = ACTIONS(2304), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2304), + [aux_sym_cmd_identifier_token11] = ACTIONS(2304), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2304), + [aux_sym_cmd_identifier_token17] = ACTIONS(2304), + [aux_sym_cmd_identifier_token18] = ACTIONS(2304), + [aux_sym_cmd_identifier_token19] = ACTIONS(2304), + [aux_sym_cmd_identifier_token20] = ACTIONS(2304), + [aux_sym_cmd_identifier_token21] = ACTIONS(2304), + [aux_sym_cmd_identifier_token22] = ACTIONS(2304), + [aux_sym_cmd_identifier_token23] = ACTIONS(2304), + [aux_sym_cmd_identifier_token24] = ACTIONS(2304), + [aux_sym_cmd_identifier_token25] = ACTIONS(2304), + [aux_sym_cmd_identifier_token26] = ACTIONS(2304), + [aux_sym_cmd_identifier_token27] = ACTIONS(2304), + [aux_sym_cmd_identifier_token28] = ACTIONS(2304), + [aux_sym_cmd_identifier_token29] = ACTIONS(2304), + [aux_sym_cmd_identifier_token30] = ACTIONS(2304), + [aux_sym_cmd_identifier_token31] = ACTIONS(2304), + [aux_sym_cmd_identifier_token32] = ACTIONS(2304), + [aux_sym_cmd_identifier_token33] = ACTIONS(2304), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2304), + [aux_sym_cmd_identifier_token36] = ACTIONS(2304), + [aux_sym_cmd_identifier_token37] = ACTIONS(2304), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2304), + [aux_sym_cmd_identifier_token40] = ACTIONS(2304), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2304), + [anon_sym_COMMA] = ACTIONS(2304), + [anon_sym_DOLLAR] = ACTIONS(2304), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2304), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2304), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2304), + [aux_sym__val_number_decimal_token3] = ACTIONS(2304), + [aux_sym__val_number_decimal_token4] = ACTIONS(2304), + [aux_sym__val_number_token1] = ACTIONS(2304), + [aux_sym__val_number_token2] = ACTIONS(2304), + [aux_sym__val_number_token3] = ACTIONS(2304), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2304), + [sym__str_single_quotes] = ACTIONS(2304), + [sym__str_back_ticks] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2304), + [sym__entry_separator] = ACTIONS(2306), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2399), + [sym_raw_string_begin] = ACTIONS(2306), }, - [624] = { - [sym_comment] = STATE(624), - [anon_sym_export] = ACTIONS(2318), - [anon_sym_alias] = ACTIONS(2318), - [anon_sym_let] = ACTIONS(2318), - [anon_sym_let_DASHenv] = ACTIONS(2318), - [anon_sym_mut] = ACTIONS(2318), - [anon_sym_const] = ACTIONS(2318), - [aux_sym_cmd_identifier_token1] = ACTIONS(2318), + [587] = { + [sym_comment] = STATE(587), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2308), + [aux_sym_cmd_identifier_token3] = ACTIONS(2308), + [aux_sym_cmd_identifier_token4] = ACTIONS(2308), + [aux_sym_cmd_identifier_token5] = ACTIONS(2308), + [aux_sym_cmd_identifier_token6] = ACTIONS(2308), + [aux_sym_cmd_identifier_token7] = ACTIONS(2308), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2308), + [aux_sym_cmd_identifier_token11] = ACTIONS(2308), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2308), + [aux_sym_cmd_identifier_token17] = ACTIONS(2308), + [aux_sym_cmd_identifier_token18] = ACTIONS(2308), + [aux_sym_cmd_identifier_token19] = ACTIONS(2308), + [aux_sym_cmd_identifier_token20] = ACTIONS(2308), + [aux_sym_cmd_identifier_token21] = ACTIONS(2308), + [aux_sym_cmd_identifier_token22] = ACTIONS(2308), + [aux_sym_cmd_identifier_token23] = ACTIONS(2308), + [aux_sym_cmd_identifier_token24] = ACTIONS(2308), + [aux_sym_cmd_identifier_token25] = ACTIONS(2308), + [aux_sym_cmd_identifier_token26] = ACTIONS(2308), + [aux_sym_cmd_identifier_token27] = ACTIONS(2308), + [aux_sym_cmd_identifier_token28] = ACTIONS(2308), + [aux_sym_cmd_identifier_token29] = ACTIONS(2308), + [aux_sym_cmd_identifier_token30] = ACTIONS(2308), + [aux_sym_cmd_identifier_token31] = ACTIONS(2308), + [aux_sym_cmd_identifier_token32] = ACTIONS(2308), + [aux_sym_cmd_identifier_token33] = ACTIONS(2308), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2308), + [aux_sym_cmd_identifier_token36] = ACTIONS(2308), + [aux_sym_cmd_identifier_token37] = ACTIONS(2308), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2308), + [aux_sym_cmd_identifier_token40] = ACTIONS(2308), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2308), + [anon_sym_COMMA] = ACTIONS(2308), + [anon_sym_DOLLAR] = ACTIONS(2308), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2308), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2308), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2308), + [aux_sym__val_number_decimal_token3] = ACTIONS(2308), + [aux_sym__val_number_decimal_token4] = ACTIONS(2308), + [aux_sym__val_number_token1] = ACTIONS(2308), + [aux_sym__val_number_token2] = ACTIONS(2308), + [aux_sym__val_number_token3] = ACTIONS(2308), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2308), + [sym__str_single_quotes] = ACTIONS(2308), + [sym__str_back_ticks] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2308), + [sym__entry_separator] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2310), + }, + [588] = { + [sym_comment] = STATE(588), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_alias] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_let_DASHenv] = ACTIONS(2312), + [anon_sym_mut] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [aux_sym_cmd_identifier_token1] = ACTIONS(2312), + [aux_sym_cmd_identifier_token2] = ACTIONS(2312), + [aux_sym_cmd_identifier_token3] = ACTIONS(2312), + [aux_sym_cmd_identifier_token4] = ACTIONS(2312), + [aux_sym_cmd_identifier_token5] = ACTIONS(2312), + [aux_sym_cmd_identifier_token6] = ACTIONS(2312), + [aux_sym_cmd_identifier_token7] = ACTIONS(2312), + [aux_sym_cmd_identifier_token8] = ACTIONS(2312), + [aux_sym_cmd_identifier_token9] = ACTIONS(2312), + [aux_sym_cmd_identifier_token10] = ACTIONS(2312), + [aux_sym_cmd_identifier_token11] = ACTIONS(2312), + [aux_sym_cmd_identifier_token12] = ACTIONS(2312), + [aux_sym_cmd_identifier_token13] = ACTIONS(2312), + [aux_sym_cmd_identifier_token14] = ACTIONS(2312), + [aux_sym_cmd_identifier_token15] = ACTIONS(2312), + [aux_sym_cmd_identifier_token16] = ACTIONS(2312), + [aux_sym_cmd_identifier_token17] = ACTIONS(2312), + [aux_sym_cmd_identifier_token18] = ACTIONS(2312), + [aux_sym_cmd_identifier_token19] = ACTIONS(2312), + [aux_sym_cmd_identifier_token20] = ACTIONS(2312), + [aux_sym_cmd_identifier_token21] = ACTIONS(2312), + [aux_sym_cmd_identifier_token22] = ACTIONS(2312), + [aux_sym_cmd_identifier_token23] = ACTIONS(2312), + [aux_sym_cmd_identifier_token24] = ACTIONS(2312), + [aux_sym_cmd_identifier_token25] = ACTIONS(2312), + [aux_sym_cmd_identifier_token26] = ACTIONS(2312), + [aux_sym_cmd_identifier_token27] = ACTIONS(2312), + [aux_sym_cmd_identifier_token28] = ACTIONS(2312), + [aux_sym_cmd_identifier_token29] = ACTIONS(2312), + [aux_sym_cmd_identifier_token30] = ACTIONS(2312), + [aux_sym_cmd_identifier_token31] = ACTIONS(2312), + [aux_sym_cmd_identifier_token32] = ACTIONS(2312), + [aux_sym_cmd_identifier_token33] = ACTIONS(2312), + [aux_sym_cmd_identifier_token34] = ACTIONS(2312), + [aux_sym_cmd_identifier_token35] = ACTIONS(2312), + [aux_sym_cmd_identifier_token36] = ACTIONS(2312), + [aux_sym_cmd_identifier_token37] = ACTIONS(2312), + [aux_sym_cmd_identifier_token38] = ACTIONS(2312), + [aux_sym_cmd_identifier_token39] = ACTIONS(2312), + [aux_sym_cmd_identifier_token40] = ACTIONS(2312), + [anon_sym_def] = ACTIONS(2312), + [anon_sym_export_DASHenv] = ACTIONS(2312), + [anon_sym_extern] = ACTIONS(2312), + [anon_sym_module] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2312), + [anon_sym_COMMA] = ACTIONS(2312), + [anon_sym_DOLLAR] = ACTIONS(2312), + [anon_sym_error] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_in2] = ACTIONS(2312), + [anon_sym_loop] = ACTIONS(2312), + [anon_sym_make] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2312), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_catch] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_source] = ACTIONS(2312), + [anon_sym_source_DASHenv] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2312), + [anon_sym_hide] = ACTIONS(2312), + [anon_sym_hide_DASHenv] = ACTIONS(2312), + [anon_sym_overlay] = ACTIONS(2312), + [anon_sym_as] = ACTIONS(2312), + [anon_sym_PLUS2] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2312), + [aux_sym__val_number_decimal_token1] = ACTIONS(2312), + [aux_sym__val_number_decimal_token2] = ACTIONS(2312), + [aux_sym__val_number_decimal_token3] = ACTIONS(2312), + [aux_sym__val_number_decimal_token4] = ACTIONS(2312), + [aux_sym__val_number_token1] = ACTIONS(2312), + [aux_sym__val_number_token2] = ACTIONS(2312), + [aux_sym__val_number_token3] = ACTIONS(2312), + [aux_sym__val_number_token4] = ACTIONS(2312), + [aux_sym__val_number_token5] = ACTIONS(2312), + [aux_sym__val_number_token6] = ACTIONS(2312), + [anon_sym_DQUOTE] = ACTIONS(2312), + [sym__str_single_quotes] = ACTIONS(2312), + [sym__str_back_ticks] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2312), + [sym__entry_separator] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2314), + }, + [589] = { + [sym_comment] = STATE(589), + [aux_sym__multiple_types_repeat1] = STATE(607), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_alias] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_let_DASHenv] = ACTIONS(2316), + [anon_sym_mut] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [aux_sym_cmd_identifier_token1] = ACTIONS(2316), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2316), + [aux_sym_cmd_identifier_token9] = ACTIONS(2316), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2316), + [aux_sym_cmd_identifier_token13] = ACTIONS(2316), + [aux_sym_cmd_identifier_token14] = ACTIONS(2316), + [aux_sym_cmd_identifier_token15] = ACTIONS(2316), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2316), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2316), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2316), + [anon_sym_export_DASHenv] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_error] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_in2] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_make] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_source] = ACTIONS(2316), + [anon_sym_source_DASHenv] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2316), + [anon_sym_hide] = ACTIONS(2316), + [anon_sym_hide_DASHenv] = ACTIONS(2316), + [anon_sym_overlay] = ACTIONS(2316), + [anon_sym_as] = ACTIONS(2316), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2316), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2316), + [aux_sym__val_number_token5] = ACTIONS(2316), + [aux_sym__val_number_token6] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [sym__entry_separator] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), + }, + [590] = { + [sym_comment] = STATE(590), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_let_DASHenv] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2322), [aux_sym_cmd_identifier_token2] = ACTIONS(2322), [aux_sym_cmd_identifier_token3] = ACTIONS(2322), [aux_sym_cmd_identifier_token4] = ACTIONS(2322), [aux_sym_cmd_identifier_token5] = ACTIONS(2322), [aux_sym_cmd_identifier_token6] = ACTIONS(2322), [aux_sym_cmd_identifier_token7] = ACTIONS(2322), - [aux_sym_cmd_identifier_token8] = ACTIONS(2318), - [aux_sym_cmd_identifier_token9] = ACTIONS(2318), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), [aux_sym_cmd_identifier_token10] = ACTIONS(2322), [aux_sym_cmd_identifier_token11] = ACTIONS(2322), - [aux_sym_cmd_identifier_token12] = ACTIONS(2318), - [aux_sym_cmd_identifier_token13] = ACTIONS(2318), - [aux_sym_cmd_identifier_token14] = ACTIONS(2318), - [aux_sym_cmd_identifier_token15] = ACTIONS(2318), + [aux_sym_cmd_identifier_token12] = ACTIONS(2322), + [aux_sym_cmd_identifier_token13] = ACTIONS(2322), + [aux_sym_cmd_identifier_token14] = ACTIONS(2322), + [aux_sym_cmd_identifier_token15] = ACTIONS(2322), [aux_sym_cmd_identifier_token16] = ACTIONS(2322), [aux_sym_cmd_identifier_token17] = ACTIONS(2322), [aux_sym_cmd_identifier_token18] = ACTIONS(2322), @@ -147174,3867 +144023,4714 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2322), [aux_sym_cmd_identifier_token32] = ACTIONS(2322), [aux_sym_cmd_identifier_token33] = ACTIONS(2322), - [aux_sym_cmd_identifier_token34] = ACTIONS(2318), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), [aux_sym_cmd_identifier_token35] = ACTIONS(2322), [aux_sym_cmd_identifier_token36] = ACTIONS(2322), [aux_sym_cmd_identifier_token37] = ACTIONS(2322), - [aux_sym_cmd_identifier_token38] = ACTIONS(2318), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), [aux_sym_cmd_identifier_token39] = ACTIONS(2322), [aux_sym_cmd_identifier_token40] = ACTIONS(2322), - [anon_sym_def] = ACTIONS(2318), - [anon_sym_export_DASHenv] = ACTIONS(2318), - [anon_sym_extern] = ACTIONS(2318), - [anon_sym_module] = ACTIONS(2318), - [anon_sym_use] = ACTIONS(2318), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), [anon_sym_LPAREN] = ACTIONS(2322), + [anon_sym_COMMA] = ACTIONS(2322), [anon_sym_DOLLAR] = ACTIONS(2322), - [anon_sym_error] = ACTIONS(2318), - [anon_sym_DASH2] = ACTIONS(2318), - [anon_sym_break] = ACTIONS(2318), - [anon_sym_continue] = ACTIONS(2318), - [anon_sym_for] = ACTIONS(2318), - [anon_sym_in2] = ACTIONS(2318), - [anon_sym_loop] = ACTIONS(2318), - [anon_sym_make] = ACTIONS(2318), - [anon_sym_while] = ACTIONS(2318), - [anon_sym_do] = ACTIONS(2318), - [anon_sym_if] = ACTIONS(2318), - [anon_sym_else] = ACTIONS(2318), - [anon_sym_match] = ACTIONS(2318), + [anon_sym_error] = ACTIONS(2322), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_in2] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_make] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_try] = ACTIONS(2318), - [anon_sym_catch] = ACTIONS(2318), - [anon_sym_return] = ACTIONS(2318), - [anon_sym_source] = ACTIONS(2318), - [anon_sym_source_DASHenv] = ACTIONS(2318), - [anon_sym_register] = ACTIONS(2318), - [anon_sym_hide] = ACTIONS(2318), - [anon_sym_hide_DASHenv] = ACTIONS(2318), - [anon_sym_overlay] = ACTIONS(2318), - [anon_sym_as] = ACTIONS(2318), - [anon_sym_PLUS2] = ACTIONS(2318), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_source] = ACTIONS(2322), + [anon_sym_source_DASHenv] = ACTIONS(2322), + [anon_sym_register] = ACTIONS(2322), + [anon_sym_hide] = ACTIONS(2322), + [anon_sym_hide_DASHenv] = ACTIONS(2322), + [anon_sym_overlay] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_PLUS2] = ACTIONS(2322), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2322), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2322), - [aux_sym__val_number_decimal_token1] = ACTIONS(2318), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), [aux_sym__val_number_decimal_token2] = ACTIONS(2322), [aux_sym__val_number_decimal_token3] = ACTIONS(2322), [aux_sym__val_number_decimal_token4] = ACTIONS(2322), [aux_sym__val_number_token1] = ACTIONS(2322), [aux_sym__val_number_token2] = ACTIONS(2322), [aux_sym__val_number_token3] = ACTIONS(2322), - [aux_sym__val_number_token4] = ACTIONS(2318), - [aux_sym__val_number_token5] = ACTIONS(2318), - [aux_sym__val_number_token6] = ACTIONS(2318), - [anon_sym_LBRACK2] = ACTIONS(2401), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), [anon_sym_DQUOTE] = ACTIONS(2322), [sym__str_single_quotes] = ACTIONS(2322), [sym__str_back_ticks] = ACTIONS(2322), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2322), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2322), + [sym__entry_separator] = ACTIONS(2324), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2324), }, - [625] = { - [sym_comment] = STATE(625), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1937), - [aux_sym_cmd_identifier_token3] = ACTIONS(1937), - [aux_sym_cmd_identifier_token4] = ACTIONS(1937), - [aux_sym_cmd_identifier_token5] = ACTIONS(1937), - [aux_sym_cmd_identifier_token6] = ACTIONS(1937), - [aux_sym_cmd_identifier_token7] = ACTIONS(1937), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1937), - [aux_sym_cmd_identifier_token11] = ACTIONS(1937), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1937), - [aux_sym_cmd_identifier_token17] = ACTIONS(1937), - [aux_sym_cmd_identifier_token18] = ACTIONS(1937), - [aux_sym_cmd_identifier_token19] = ACTIONS(1937), - [aux_sym_cmd_identifier_token20] = ACTIONS(1937), - [aux_sym_cmd_identifier_token21] = ACTIONS(1937), - [aux_sym_cmd_identifier_token22] = ACTIONS(1937), - [aux_sym_cmd_identifier_token23] = ACTIONS(1937), - [aux_sym_cmd_identifier_token24] = ACTIONS(1937), - [aux_sym_cmd_identifier_token25] = ACTIONS(1937), - [aux_sym_cmd_identifier_token26] = ACTIONS(1937), - [aux_sym_cmd_identifier_token27] = ACTIONS(1937), - [aux_sym_cmd_identifier_token28] = ACTIONS(1937), - [aux_sym_cmd_identifier_token29] = ACTIONS(1937), - [aux_sym_cmd_identifier_token30] = ACTIONS(1937), - [aux_sym_cmd_identifier_token31] = ACTIONS(1937), - [aux_sym_cmd_identifier_token32] = ACTIONS(1937), - [aux_sym_cmd_identifier_token33] = ACTIONS(1937), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1937), - [aux_sym_cmd_identifier_token36] = ACTIONS(1937), - [aux_sym_cmd_identifier_token37] = ACTIONS(1937), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1937), - [aux_sym_cmd_identifier_token40] = ACTIONS(1937), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1937), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1937), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1937), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1937), - [aux_sym__val_number_decimal_token3] = ACTIONS(1937), - [aux_sym__val_number_decimal_token4] = ACTIONS(1937), - [aux_sym__val_number_token1] = ACTIONS(1937), - [aux_sym__val_number_token2] = ACTIONS(1937), - [aux_sym__val_number_token3] = ACTIONS(1937), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1937), - [sym__str_single_quotes] = ACTIONS(1937), - [sym__str_back_ticks] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1937), - [sym__entry_separator] = ACTIONS(1939), + [591] = { + [sym_comment] = STATE(591), + [anon_sym_export] = ACTIONS(2326), + [anon_sym_alias] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_let_DASHenv] = ACTIONS(2326), + [anon_sym_mut] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [aux_sym_cmd_identifier_token1] = ACTIONS(2326), + [aux_sym_cmd_identifier_token2] = ACTIONS(2326), + [aux_sym_cmd_identifier_token3] = ACTIONS(2326), + [aux_sym_cmd_identifier_token4] = ACTIONS(2326), + [aux_sym_cmd_identifier_token5] = ACTIONS(2326), + [aux_sym_cmd_identifier_token6] = ACTIONS(2326), + [aux_sym_cmd_identifier_token7] = ACTIONS(2326), + [aux_sym_cmd_identifier_token8] = ACTIONS(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2326), + [aux_sym_cmd_identifier_token11] = ACTIONS(2326), + [aux_sym_cmd_identifier_token12] = ACTIONS(2326), + [aux_sym_cmd_identifier_token13] = ACTIONS(2326), + [aux_sym_cmd_identifier_token14] = ACTIONS(2326), + [aux_sym_cmd_identifier_token15] = ACTIONS(2326), + [aux_sym_cmd_identifier_token16] = ACTIONS(2326), + [aux_sym_cmd_identifier_token17] = ACTIONS(2326), + [aux_sym_cmd_identifier_token18] = ACTIONS(2326), + [aux_sym_cmd_identifier_token19] = ACTIONS(2326), + [aux_sym_cmd_identifier_token20] = ACTIONS(2326), + [aux_sym_cmd_identifier_token21] = ACTIONS(2326), + [aux_sym_cmd_identifier_token22] = ACTIONS(2326), + [aux_sym_cmd_identifier_token23] = ACTIONS(2326), + [aux_sym_cmd_identifier_token24] = ACTIONS(2326), + [aux_sym_cmd_identifier_token25] = ACTIONS(2326), + [aux_sym_cmd_identifier_token26] = ACTIONS(2326), + [aux_sym_cmd_identifier_token27] = ACTIONS(2326), + [aux_sym_cmd_identifier_token28] = ACTIONS(2326), + [aux_sym_cmd_identifier_token29] = ACTIONS(2326), + [aux_sym_cmd_identifier_token30] = ACTIONS(2326), + [aux_sym_cmd_identifier_token31] = ACTIONS(2326), + [aux_sym_cmd_identifier_token32] = ACTIONS(2326), + [aux_sym_cmd_identifier_token33] = ACTIONS(2326), + [aux_sym_cmd_identifier_token34] = ACTIONS(2326), + [aux_sym_cmd_identifier_token35] = ACTIONS(2326), + [aux_sym_cmd_identifier_token36] = ACTIONS(2326), + [aux_sym_cmd_identifier_token37] = ACTIONS(2326), + [aux_sym_cmd_identifier_token38] = ACTIONS(2326), + [aux_sym_cmd_identifier_token39] = ACTIONS(2326), + [aux_sym_cmd_identifier_token40] = ACTIONS(2326), + [anon_sym_def] = ACTIONS(2326), + [anon_sym_export_DASHenv] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_module] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2326), + [anon_sym_COMMA] = ACTIONS(2326), + [anon_sym_DOLLAR] = ACTIONS(2326), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in2] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_make] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_do] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2326), + [anon_sym_try] = ACTIONS(2326), + [anon_sym_catch] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_source] = ACTIONS(2326), + [anon_sym_source_DASHenv] = ACTIONS(2326), + [anon_sym_register] = ACTIONS(2326), + [anon_sym_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_PLUS2] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2326), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [aux_sym__val_number_decimal_token2] = ACTIONS(2326), + [aux_sym__val_number_decimal_token3] = ACTIONS(2326), + [aux_sym__val_number_decimal_token4] = ACTIONS(2326), + [aux_sym__val_number_token1] = ACTIONS(2326), + [aux_sym__val_number_token2] = ACTIONS(2326), + [aux_sym__val_number_token3] = ACTIONS(2326), + [aux_sym__val_number_token4] = ACTIONS(2326), + [aux_sym__val_number_token5] = ACTIONS(2326), + [aux_sym__val_number_token6] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2326), + [sym__str_single_quotes] = ACTIONS(2326), + [sym__str_back_ticks] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2326), + [sym__entry_separator] = ACTIONS(2328), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1939), + [sym_raw_string_begin] = ACTIONS(2328), }, - [626] = { - [sym_comment] = STATE(626), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_alias] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_let_DASHenv] = ACTIONS(2403), - [anon_sym_mut] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [aux_sym_cmd_identifier_token1] = ACTIONS(2403), - [aux_sym_cmd_identifier_token2] = ACTIONS(2403), - [aux_sym_cmd_identifier_token3] = ACTIONS(2403), - [aux_sym_cmd_identifier_token4] = ACTIONS(2403), - [aux_sym_cmd_identifier_token5] = ACTIONS(2403), - [aux_sym_cmd_identifier_token6] = ACTIONS(2403), - [aux_sym_cmd_identifier_token7] = ACTIONS(2403), - [aux_sym_cmd_identifier_token8] = ACTIONS(2403), - [aux_sym_cmd_identifier_token9] = ACTIONS(2403), - [aux_sym_cmd_identifier_token10] = ACTIONS(2403), - [aux_sym_cmd_identifier_token11] = ACTIONS(2403), - [aux_sym_cmd_identifier_token12] = ACTIONS(2403), - [aux_sym_cmd_identifier_token13] = ACTIONS(2403), - [aux_sym_cmd_identifier_token14] = ACTIONS(2403), - [aux_sym_cmd_identifier_token15] = ACTIONS(2403), - [aux_sym_cmd_identifier_token16] = ACTIONS(2403), - [aux_sym_cmd_identifier_token17] = ACTIONS(2403), - [aux_sym_cmd_identifier_token18] = ACTIONS(2403), - [aux_sym_cmd_identifier_token19] = ACTIONS(2403), - [aux_sym_cmd_identifier_token20] = ACTIONS(2403), - [aux_sym_cmd_identifier_token21] = ACTIONS(2403), - [aux_sym_cmd_identifier_token22] = ACTIONS(2403), - [aux_sym_cmd_identifier_token23] = ACTIONS(2403), - [aux_sym_cmd_identifier_token24] = ACTIONS(2403), - [aux_sym_cmd_identifier_token25] = ACTIONS(2403), - [aux_sym_cmd_identifier_token26] = ACTIONS(2403), - [aux_sym_cmd_identifier_token27] = ACTIONS(2403), - [aux_sym_cmd_identifier_token28] = ACTIONS(2403), - [aux_sym_cmd_identifier_token29] = ACTIONS(2403), - [aux_sym_cmd_identifier_token30] = ACTIONS(2403), - [aux_sym_cmd_identifier_token31] = ACTIONS(2403), - [aux_sym_cmd_identifier_token32] = ACTIONS(2403), - [aux_sym_cmd_identifier_token33] = ACTIONS(2403), - [aux_sym_cmd_identifier_token34] = ACTIONS(2403), - [aux_sym_cmd_identifier_token35] = ACTIONS(2403), - [aux_sym_cmd_identifier_token36] = ACTIONS(2403), - [aux_sym_cmd_identifier_token37] = ACTIONS(2403), - [aux_sym_cmd_identifier_token38] = ACTIONS(2403), - [aux_sym_cmd_identifier_token39] = ACTIONS(2403), - [aux_sym_cmd_identifier_token40] = ACTIONS(2403), - [anon_sym_def] = ACTIONS(2403), - [anon_sym_export_DASHenv] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2403), - [anon_sym_DOLLAR] = ACTIONS(2403), - [anon_sym_error] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_in2] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_make] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2403), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_source] = ACTIONS(2403), - [anon_sym_source_DASHenv] = ACTIONS(2403), - [anon_sym_register] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_hide_DASHenv] = ACTIONS(2403), - [anon_sym_overlay] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2403), - [aux_sym__val_number_decimal_token3] = ACTIONS(2403), - [aux_sym__val_number_decimal_token4] = ACTIONS(2403), - [aux_sym__val_number_token1] = ACTIONS(2403), - [aux_sym__val_number_token2] = ACTIONS(2403), - [aux_sym__val_number_token3] = ACTIONS(2403), - [aux_sym__val_number_token4] = ACTIONS(2403), - [aux_sym__val_number_token5] = ACTIONS(2403), - [aux_sym__val_number_token6] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2403), - [sym__str_single_quotes] = ACTIONS(2403), - [sym__str_back_ticks] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), - [sym__entry_separator] = ACTIONS(2405), + [592] = { + [sym_comment] = STATE(592), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_let_DASHenv] = ACTIONS(2330), + [anon_sym_mut] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [aux_sym_cmd_identifier_token2] = ACTIONS(2330), + [aux_sym_cmd_identifier_token3] = ACTIONS(2330), + [aux_sym_cmd_identifier_token4] = ACTIONS(2330), + [aux_sym_cmd_identifier_token5] = ACTIONS(2330), + [aux_sym_cmd_identifier_token6] = ACTIONS(2330), + [aux_sym_cmd_identifier_token7] = ACTIONS(2330), + [aux_sym_cmd_identifier_token8] = ACTIONS(2330), + [aux_sym_cmd_identifier_token9] = ACTIONS(2330), + [aux_sym_cmd_identifier_token10] = ACTIONS(2330), + [aux_sym_cmd_identifier_token11] = ACTIONS(2330), + [aux_sym_cmd_identifier_token12] = ACTIONS(2330), + [aux_sym_cmd_identifier_token13] = ACTIONS(2330), + [aux_sym_cmd_identifier_token14] = ACTIONS(2330), + [aux_sym_cmd_identifier_token15] = ACTIONS(2330), + [aux_sym_cmd_identifier_token16] = ACTIONS(2330), + [aux_sym_cmd_identifier_token17] = ACTIONS(2330), + [aux_sym_cmd_identifier_token18] = ACTIONS(2330), + [aux_sym_cmd_identifier_token19] = ACTIONS(2330), + [aux_sym_cmd_identifier_token20] = ACTIONS(2330), + [aux_sym_cmd_identifier_token21] = ACTIONS(2330), + [aux_sym_cmd_identifier_token22] = ACTIONS(2330), + [aux_sym_cmd_identifier_token23] = ACTIONS(2330), + [aux_sym_cmd_identifier_token24] = ACTIONS(2330), + [aux_sym_cmd_identifier_token25] = ACTIONS(2330), + [aux_sym_cmd_identifier_token26] = ACTIONS(2330), + [aux_sym_cmd_identifier_token27] = ACTIONS(2330), + [aux_sym_cmd_identifier_token28] = ACTIONS(2330), + [aux_sym_cmd_identifier_token29] = ACTIONS(2330), + [aux_sym_cmd_identifier_token30] = ACTIONS(2330), + [aux_sym_cmd_identifier_token31] = ACTIONS(2330), + [aux_sym_cmd_identifier_token32] = ACTIONS(2330), + [aux_sym_cmd_identifier_token33] = ACTIONS(2330), + [aux_sym_cmd_identifier_token34] = ACTIONS(2330), + [aux_sym_cmd_identifier_token35] = ACTIONS(2330), + [aux_sym_cmd_identifier_token36] = ACTIONS(2330), + [aux_sym_cmd_identifier_token37] = ACTIONS(2330), + [aux_sym_cmd_identifier_token38] = ACTIONS(2330), + [aux_sym_cmd_identifier_token39] = ACTIONS(2330), + [aux_sym_cmd_identifier_token40] = ACTIONS(2330), + [anon_sym_def] = ACTIONS(2330), + [anon_sym_export_DASHenv] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_module] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2330), + [anon_sym_COMMA] = ACTIONS(2330), + [anon_sym_DOLLAR] = ACTIONS(2330), + [anon_sym_error] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_in2] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_make] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2330), + [anon_sym_try] = ACTIONS(2330), + [anon_sym_catch] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_source] = ACTIONS(2330), + [anon_sym_source_DASHenv] = ACTIONS(2330), + [anon_sym_register] = ACTIONS(2330), + [anon_sym_hide] = ACTIONS(2330), + [anon_sym_hide_DASHenv] = ACTIONS(2330), + [anon_sym_overlay] = ACTIONS(2330), + [anon_sym_as] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2330), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2330), + [aux_sym__val_number_decimal_token3] = ACTIONS(2330), + [aux_sym__val_number_decimal_token4] = ACTIONS(2330), + [aux_sym__val_number_token1] = ACTIONS(2330), + [aux_sym__val_number_token2] = ACTIONS(2330), + [aux_sym__val_number_token3] = ACTIONS(2330), + [aux_sym__val_number_token4] = ACTIONS(2330), + [aux_sym__val_number_token5] = ACTIONS(2330), + [aux_sym__val_number_token6] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2330), + [sym__str_single_quotes] = ACTIONS(2330), + [sym__str_back_ticks] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2330), + [sym__entry_separator] = ACTIONS(2332), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2405), + [sym_raw_string_begin] = ACTIONS(2332), }, - [627] = { - [sym_comment] = STATE(627), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1681), - [aux_sym_cmd_identifier_token3] = ACTIONS(1681), - [aux_sym_cmd_identifier_token4] = ACTIONS(1681), - [aux_sym_cmd_identifier_token5] = ACTIONS(1681), - [aux_sym_cmd_identifier_token6] = ACTIONS(1681), - [aux_sym_cmd_identifier_token7] = ACTIONS(1681), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1681), - [aux_sym_cmd_identifier_token11] = ACTIONS(1681), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1681), - [aux_sym_cmd_identifier_token17] = ACTIONS(1681), - [aux_sym_cmd_identifier_token18] = ACTIONS(1681), - [aux_sym_cmd_identifier_token19] = ACTIONS(1681), - [aux_sym_cmd_identifier_token20] = ACTIONS(1681), - [aux_sym_cmd_identifier_token21] = ACTIONS(1681), - [aux_sym_cmd_identifier_token22] = ACTIONS(1681), - [aux_sym_cmd_identifier_token23] = ACTIONS(1681), - [aux_sym_cmd_identifier_token24] = ACTIONS(1681), - [aux_sym_cmd_identifier_token25] = ACTIONS(1681), - [aux_sym_cmd_identifier_token26] = ACTIONS(1681), - [aux_sym_cmd_identifier_token27] = ACTIONS(1681), - [aux_sym_cmd_identifier_token28] = ACTIONS(1681), - [aux_sym_cmd_identifier_token29] = ACTIONS(1681), - [aux_sym_cmd_identifier_token30] = ACTIONS(1681), - [aux_sym_cmd_identifier_token31] = ACTIONS(1681), - [aux_sym_cmd_identifier_token32] = ACTIONS(1681), - [aux_sym_cmd_identifier_token33] = ACTIONS(1681), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1681), - [aux_sym_cmd_identifier_token36] = ACTIONS(1681), - [aux_sym_cmd_identifier_token37] = ACTIONS(1681), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1681), - [aux_sym_cmd_identifier_token40] = ACTIONS(1681), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1681), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1681), - [aux_sym__val_number_decimal_token3] = ACTIONS(1681), - [aux_sym__val_number_decimal_token4] = ACTIONS(1681), - [aux_sym__val_number_token1] = ACTIONS(1681), - [aux_sym__val_number_token2] = ACTIONS(1681), - [aux_sym__val_number_token3] = ACTIONS(1681), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1681), - [sym__str_single_quotes] = ACTIONS(1681), - [sym__str_back_ticks] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1681), - [sym__entry_separator] = ACTIONS(1693), + [593] = { + [sym_comment] = STATE(593), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2334), + [aux_sym_cmd_identifier_token3] = ACTIONS(2334), + [aux_sym_cmd_identifier_token4] = ACTIONS(2334), + [aux_sym_cmd_identifier_token5] = ACTIONS(2334), + [aux_sym_cmd_identifier_token6] = ACTIONS(2334), + [aux_sym_cmd_identifier_token7] = ACTIONS(2334), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2334), + [aux_sym_cmd_identifier_token11] = ACTIONS(2334), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2334), + [aux_sym_cmd_identifier_token17] = ACTIONS(2334), + [aux_sym_cmd_identifier_token18] = ACTIONS(2334), + [aux_sym_cmd_identifier_token19] = ACTIONS(2334), + [aux_sym_cmd_identifier_token20] = ACTIONS(2334), + [aux_sym_cmd_identifier_token21] = ACTIONS(2334), + [aux_sym_cmd_identifier_token22] = ACTIONS(2334), + [aux_sym_cmd_identifier_token23] = ACTIONS(2334), + [aux_sym_cmd_identifier_token24] = ACTIONS(2334), + [aux_sym_cmd_identifier_token25] = ACTIONS(2334), + [aux_sym_cmd_identifier_token26] = ACTIONS(2334), + [aux_sym_cmd_identifier_token27] = ACTIONS(2334), + [aux_sym_cmd_identifier_token28] = ACTIONS(2334), + [aux_sym_cmd_identifier_token29] = ACTIONS(2334), + [aux_sym_cmd_identifier_token30] = ACTIONS(2334), + [aux_sym_cmd_identifier_token31] = ACTIONS(2334), + [aux_sym_cmd_identifier_token32] = ACTIONS(2334), + [aux_sym_cmd_identifier_token33] = ACTIONS(2334), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2334), + [aux_sym_cmd_identifier_token36] = ACTIONS(2334), + [aux_sym_cmd_identifier_token37] = ACTIONS(2334), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2334), + [aux_sym_cmd_identifier_token40] = ACTIONS(2334), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2334), + [anon_sym_COMMA] = ACTIONS(2334), + [anon_sym_DOLLAR] = ACTIONS(2334), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2334), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2334), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2334), + [aux_sym__val_number_decimal_token3] = ACTIONS(2334), + [aux_sym__val_number_decimal_token4] = ACTIONS(2334), + [aux_sym__val_number_token1] = ACTIONS(2334), + [aux_sym__val_number_token2] = ACTIONS(2334), + [aux_sym__val_number_token3] = ACTIONS(2334), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2334), + [sym__str_single_quotes] = ACTIONS(2334), + [sym__str_back_ticks] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2334), + [sym__entry_separator] = ACTIONS(2336), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1693), + [sym_raw_string_begin] = ACTIONS(2336), }, - [628] = { - [sym_comment] = STATE(628), - [anon_sym_export] = ACTIONS(2407), - [anon_sym_alias] = ACTIONS(2407), - [anon_sym_let] = ACTIONS(2407), - [anon_sym_let_DASHenv] = ACTIONS(2407), - [anon_sym_mut] = ACTIONS(2407), - [anon_sym_const] = ACTIONS(2407), - [aux_sym_cmd_identifier_token1] = ACTIONS(2407), - [aux_sym_cmd_identifier_token2] = ACTIONS(2407), - [aux_sym_cmd_identifier_token3] = ACTIONS(2407), - [aux_sym_cmd_identifier_token4] = ACTIONS(2407), - [aux_sym_cmd_identifier_token5] = ACTIONS(2407), - [aux_sym_cmd_identifier_token6] = ACTIONS(2407), - [aux_sym_cmd_identifier_token7] = ACTIONS(2407), - [aux_sym_cmd_identifier_token8] = ACTIONS(2407), - [aux_sym_cmd_identifier_token9] = ACTIONS(2407), - [aux_sym_cmd_identifier_token10] = ACTIONS(2407), - [aux_sym_cmd_identifier_token11] = ACTIONS(2407), - [aux_sym_cmd_identifier_token12] = ACTIONS(2407), - [aux_sym_cmd_identifier_token13] = ACTIONS(2407), - [aux_sym_cmd_identifier_token14] = ACTIONS(2407), - [aux_sym_cmd_identifier_token15] = ACTIONS(2407), - [aux_sym_cmd_identifier_token16] = ACTIONS(2407), - [aux_sym_cmd_identifier_token17] = ACTIONS(2407), - [aux_sym_cmd_identifier_token18] = ACTIONS(2407), - [aux_sym_cmd_identifier_token19] = ACTIONS(2407), - [aux_sym_cmd_identifier_token20] = ACTIONS(2407), - [aux_sym_cmd_identifier_token21] = ACTIONS(2407), - [aux_sym_cmd_identifier_token22] = ACTIONS(2407), - [aux_sym_cmd_identifier_token23] = ACTIONS(2407), - [aux_sym_cmd_identifier_token24] = ACTIONS(2407), - [aux_sym_cmd_identifier_token25] = ACTIONS(2407), - [aux_sym_cmd_identifier_token26] = ACTIONS(2407), - [aux_sym_cmd_identifier_token27] = ACTIONS(2407), - [aux_sym_cmd_identifier_token28] = ACTIONS(2407), - [aux_sym_cmd_identifier_token29] = ACTIONS(2407), - [aux_sym_cmd_identifier_token30] = ACTIONS(2407), - [aux_sym_cmd_identifier_token31] = ACTIONS(2407), - [aux_sym_cmd_identifier_token32] = ACTIONS(2407), - [aux_sym_cmd_identifier_token33] = ACTIONS(2407), - [aux_sym_cmd_identifier_token34] = ACTIONS(2407), - [aux_sym_cmd_identifier_token35] = ACTIONS(2407), - [aux_sym_cmd_identifier_token36] = ACTIONS(2407), - [aux_sym_cmd_identifier_token37] = ACTIONS(2407), - [aux_sym_cmd_identifier_token38] = ACTIONS(2407), - [aux_sym_cmd_identifier_token39] = ACTIONS(2407), - [aux_sym_cmd_identifier_token40] = ACTIONS(2407), - [anon_sym_def] = ACTIONS(2407), - [anon_sym_export_DASHenv] = ACTIONS(2407), - [anon_sym_extern] = ACTIONS(2407), - [anon_sym_module] = ACTIONS(2407), - [anon_sym_use] = ACTIONS(2407), - [anon_sym_LPAREN] = ACTIONS(2407), - [anon_sym_DOLLAR] = ACTIONS(2407), - [anon_sym_error] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2407), - [anon_sym_break] = ACTIONS(2407), - [anon_sym_continue] = ACTIONS(2407), - [anon_sym_for] = ACTIONS(2407), - [anon_sym_in2] = ACTIONS(2407), - [anon_sym_loop] = ACTIONS(2407), - [anon_sym_make] = ACTIONS(2407), - [anon_sym_while] = ACTIONS(2407), - [anon_sym_do] = ACTIONS(2407), - [anon_sym_if] = ACTIONS(2407), - [anon_sym_else] = ACTIONS(2407), - [anon_sym_match] = ACTIONS(2407), - [anon_sym_RBRACE] = ACTIONS(2407), - [anon_sym_try] = ACTIONS(2407), - [anon_sym_catch] = ACTIONS(2407), - [anon_sym_return] = ACTIONS(2407), - [anon_sym_source] = ACTIONS(2407), - [anon_sym_source_DASHenv] = ACTIONS(2407), - [anon_sym_register] = ACTIONS(2407), - [anon_sym_hide] = ACTIONS(2407), - [anon_sym_hide_DASHenv] = ACTIONS(2407), - [anon_sym_overlay] = ACTIONS(2407), - [anon_sym_as] = ACTIONS(2407), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), - [aux_sym__val_number_decimal_token1] = ACTIONS(2407), - [aux_sym__val_number_decimal_token2] = ACTIONS(2407), - [aux_sym__val_number_decimal_token3] = ACTIONS(2407), - [aux_sym__val_number_decimal_token4] = ACTIONS(2407), - [aux_sym__val_number_token1] = ACTIONS(2407), - [aux_sym__val_number_token2] = ACTIONS(2407), - [aux_sym__val_number_token3] = ACTIONS(2407), - [aux_sym__val_number_token4] = ACTIONS(2407), - [aux_sym__val_number_token5] = ACTIONS(2407), - [aux_sym__val_number_token6] = ACTIONS(2407), - [anon_sym_DQUOTE] = ACTIONS(2407), - [sym__str_single_quotes] = ACTIONS(2407), - [sym__str_back_ticks] = ACTIONS(2407), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), - [sym__entry_separator] = ACTIONS(2409), + [594] = { + [sym_comment] = STATE(594), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2338), + [aux_sym_cmd_identifier_token3] = ACTIONS(2338), + [aux_sym_cmd_identifier_token4] = ACTIONS(2338), + [aux_sym_cmd_identifier_token5] = ACTIONS(2338), + [aux_sym_cmd_identifier_token6] = ACTIONS(2338), + [aux_sym_cmd_identifier_token7] = ACTIONS(2338), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2338), + [aux_sym_cmd_identifier_token11] = ACTIONS(2338), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2338), + [aux_sym_cmd_identifier_token17] = ACTIONS(2338), + [aux_sym_cmd_identifier_token18] = ACTIONS(2338), + [aux_sym_cmd_identifier_token19] = ACTIONS(2338), + [aux_sym_cmd_identifier_token20] = ACTIONS(2338), + [aux_sym_cmd_identifier_token21] = ACTIONS(2338), + [aux_sym_cmd_identifier_token22] = ACTIONS(2338), + [aux_sym_cmd_identifier_token23] = ACTIONS(2338), + [aux_sym_cmd_identifier_token24] = ACTIONS(2338), + [aux_sym_cmd_identifier_token25] = ACTIONS(2338), + [aux_sym_cmd_identifier_token26] = ACTIONS(2338), + [aux_sym_cmd_identifier_token27] = ACTIONS(2338), + [aux_sym_cmd_identifier_token28] = ACTIONS(2338), + [aux_sym_cmd_identifier_token29] = ACTIONS(2338), + [aux_sym_cmd_identifier_token30] = ACTIONS(2338), + [aux_sym_cmd_identifier_token31] = ACTIONS(2338), + [aux_sym_cmd_identifier_token32] = ACTIONS(2338), + [aux_sym_cmd_identifier_token33] = ACTIONS(2338), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2338), + [aux_sym_cmd_identifier_token36] = ACTIONS(2338), + [aux_sym_cmd_identifier_token37] = ACTIONS(2338), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2338), + [aux_sym_cmd_identifier_token40] = ACTIONS(2338), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2338), + [anon_sym_COMMA] = ACTIONS(2338), + [anon_sym_DOLLAR] = ACTIONS(2338), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2338), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2338), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2338), + [aux_sym__val_number_decimal_token3] = ACTIONS(2338), + [aux_sym__val_number_decimal_token4] = ACTIONS(2338), + [aux_sym__val_number_token1] = ACTIONS(2338), + [aux_sym__val_number_token2] = ACTIONS(2338), + [aux_sym__val_number_token3] = ACTIONS(2338), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2338), + [sym__str_single_quotes] = ACTIONS(2338), + [sym__str_back_ticks] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2338), + [sym__entry_separator] = ACTIONS(2340), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2409), + [sym_raw_string_begin] = ACTIONS(2340), }, - [629] = { - [sym_comment] = STATE(629), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_alias] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_let_DASHenv] = ACTIONS(2411), - [anon_sym_mut] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [aux_sym_cmd_identifier_token1] = ACTIONS(2411), - [aux_sym_cmd_identifier_token2] = ACTIONS(2411), - [aux_sym_cmd_identifier_token3] = ACTIONS(2411), - [aux_sym_cmd_identifier_token4] = ACTIONS(2411), - [aux_sym_cmd_identifier_token5] = ACTIONS(2411), - [aux_sym_cmd_identifier_token6] = ACTIONS(2411), - [aux_sym_cmd_identifier_token7] = ACTIONS(2411), - [aux_sym_cmd_identifier_token8] = ACTIONS(2411), - [aux_sym_cmd_identifier_token9] = ACTIONS(2411), - [aux_sym_cmd_identifier_token10] = ACTIONS(2411), - [aux_sym_cmd_identifier_token11] = ACTIONS(2411), - [aux_sym_cmd_identifier_token12] = ACTIONS(2411), - [aux_sym_cmd_identifier_token13] = ACTIONS(2411), - [aux_sym_cmd_identifier_token14] = ACTIONS(2411), - [aux_sym_cmd_identifier_token15] = ACTIONS(2411), - [aux_sym_cmd_identifier_token16] = ACTIONS(2411), - [aux_sym_cmd_identifier_token17] = ACTIONS(2411), - [aux_sym_cmd_identifier_token18] = ACTIONS(2411), - [aux_sym_cmd_identifier_token19] = ACTIONS(2411), - [aux_sym_cmd_identifier_token20] = ACTIONS(2411), - [aux_sym_cmd_identifier_token21] = ACTIONS(2411), - [aux_sym_cmd_identifier_token22] = ACTIONS(2411), - [aux_sym_cmd_identifier_token23] = ACTIONS(2411), - [aux_sym_cmd_identifier_token24] = ACTIONS(2411), - [aux_sym_cmd_identifier_token25] = ACTIONS(2411), - [aux_sym_cmd_identifier_token26] = ACTIONS(2411), - [aux_sym_cmd_identifier_token27] = ACTIONS(2411), - [aux_sym_cmd_identifier_token28] = ACTIONS(2411), - [aux_sym_cmd_identifier_token29] = ACTIONS(2411), - [aux_sym_cmd_identifier_token30] = ACTIONS(2411), - [aux_sym_cmd_identifier_token31] = ACTIONS(2411), - [aux_sym_cmd_identifier_token32] = ACTIONS(2411), - [aux_sym_cmd_identifier_token33] = ACTIONS(2411), - [aux_sym_cmd_identifier_token34] = ACTIONS(2411), - [aux_sym_cmd_identifier_token35] = ACTIONS(2411), - [aux_sym_cmd_identifier_token36] = ACTIONS(2411), - [aux_sym_cmd_identifier_token37] = ACTIONS(2411), - [aux_sym_cmd_identifier_token38] = ACTIONS(2411), - [aux_sym_cmd_identifier_token39] = ACTIONS(2411), - [aux_sym_cmd_identifier_token40] = ACTIONS(2411), - [anon_sym_def] = ACTIONS(2411), - [anon_sym_export_DASHenv] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_error] = ACTIONS(2411), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_in2] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_make] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_do] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_else] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_catch] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_source] = ACTIONS(2411), - [anon_sym_source_DASHenv] = ACTIONS(2411), - [anon_sym_register] = ACTIONS(2411), - [anon_sym_hide] = ACTIONS(2411), - [anon_sym_hide_DASHenv] = ACTIONS(2411), - [anon_sym_overlay] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), - [aux_sym__val_number_decimal_token1] = ACTIONS(2411), - [aux_sym__val_number_decimal_token2] = ACTIONS(2411), - [aux_sym__val_number_decimal_token3] = ACTIONS(2411), - [aux_sym__val_number_decimal_token4] = ACTIONS(2411), - [aux_sym__val_number_token1] = ACTIONS(2411), - [aux_sym__val_number_token2] = ACTIONS(2411), - [aux_sym__val_number_token3] = ACTIONS(2411), - [aux_sym__val_number_token4] = ACTIONS(2411), - [aux_sym__val_number_token5] = ACTIONS(2411), - [aux_sym__val_number_token6] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2411), - [sym__str_back_ticks] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), - [sym__entry_separator] = ACTIONS(2413), + [595] = { + [sym_comment] = STATE(595), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1968), + [aux_sym_cmd_identifier_token3] = ACTIONS(1968), + [aux_sym_cmd_identifier_token4] = ACTIONS(1968), + [aux_sym_cmd_identifier_token5] = ACTIONS(1968), + [aux_sym_cmd_identifier_token6] = ACTIONS(1968), + [aux_sym_cmd_identifier_token7] = ACTIONS(1968), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1968), + [aux_sym_cmd_identifier_token11] = ACTIONS(1968), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1968), + [aux_sym_cmd_identifier_token17] = ACTIONS(1968), + [aux_sym_cmd_identifier_token18] = ACTIONS(1968), + [aux_sym_cmd_identifier_token19] = ACTIONS(1968), + [aux_sym_cmd_identifier_token20] = ACTIONS(1968), + [aux_sym_cmd_identifier_token21] = ACTIONS(1968), + [aux_sym_cmd_identifier_token22] = ACTIONS(1968), + [aux_sym_cmd_identifier_token23] = ACTIONS(1968), + [aux_sym_cmd_identifier_token24] = ACTIONS(1968), + [aux_sym_cmd_identifier_token25] = ACTIONS(1968), + [aux_sym_cmd_identifier_token26] = ACTIONS(1968), + [aux_sym_cmd_identifier_token27] = ACTIONS(1968), + [aux_sym_cmd_identifier_token28] = ACTIONS(1968), + [aux_sym_cmd_identifier_token29] = ACTIONS(1968), + [aux_sym_cmd_identifier_token30] = ACTIONS(1968), + [aux_sym_cmd_identifier_token31] = ACTIONS(1968), + [aux_sym_cmd_identifier_token32] = ACTIONS(1968), + [aux_sym_cmd_identifier_token33] = ACTIONS(1968), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1968), + [aux_sym_cmd_identifier_token36] = ACTIONS(1968), + [aux_sym_cmd_identifier_token37] = ACTIONS(1968), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1968), + [aux_sym_cmd_identifier_token40] = ACTIONS(1968), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1968), + [anon_sym_COMMA] = ACTIONS(1968), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1968), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1968), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1968), + [aux_sym__val_number_decimal_token3] = ACTIONS(1968), + [aux_sym__val_number_decimal_token4] = ACTIONS(1968), + [aux_sym__val_number_token1] = ACTIONS(1968), + [aux_sym__val_number_token2] = ACTIONS(1968), + [aux_sym__val_number_token3] = ACTIONS(1968), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1968), + [sym__str_single_quotes] = ACTIONS(1968), + [sym__str_back_ticks] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1968), + [sym__entry_separator] = ACTIONS(1970), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2413), + [sym_raw_string_begin] = ACTIONS(1970), }, - [630] = { - [sym_comment] = STATE(630), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_alias] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_let_DASHenv] = ACTIONS(2411), - [anon_sym_mut] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [aux_sym_cmd_identifier_token1] = ACTIONS(2411), - [aux_sym_cmd_identifier_token2] = ACTIONS(2411), - [aux_sym_cmd_identifier_token3] = ACTIONS(2411), - [aux_sym_cmd_identifier_token4] = ACTIONS(2411), - [aux_sym_cmd_identifier_token5] = ACTIONS(2411), - [aux_sym_cmd_identifier_token6] = ACTIONS(2411), - [aux_sym_cmd_identifier_token7] = ACTIONS(2411), - [aux_sym_cmd_identifier_token8] = ACTIONS(2411), - [aux_sym_cmd_identifier_token9] = ACTIONS(2411), - [aux_sym_cmd_identifier_token10] = ACTIONS(2411), - [aux_sym_cmd_identifier_token11] = ACTIONS(2411), - [aux_sym_cmd_identifier_token12] = ACTIONS(2411), - [aux_sym_cmd_identifier_token13] = ACTIONS(2411), - [aux_sym_cmd_identifier_token14] = ACTIONS(2411), - [aux_sym_cmd_identifier_token15] = ACTIONS(2411), - [aux_sym_cmd_identifier_token16] = ACTIONS(2411), - [aux_sym_cmd_identifier_token17] = ACTIONS(2411), - [aux_sym_cmd_identifier_token18] = ACTIONS(2411), - [aux_sym_cmd_identifier_token19] = ACTIONS(2411), - [aux_sym_cmd_identifier_token20] = ACTIONS(2411), - [aux_sym_cmd_identifier_token21] = ACTIONS(2411), - [aux_sym_cmd_identifier_token22] = ACTIONS(2411), - [aux_sym_cmd_identifier_token23] = ACTIONS(2411), - [aux_sym_cmd_identifier_token24] = ACTIONS(2411), - [aux_sym_cmd_identifier_token25] = ACTIONS(2411), - [aux_sym_cmd_identifier_token26] = ACTIONS(2411), - [aux_sym_cmd_identifier_token27] = ACTIONS(2411), - [aux_sym_cmd_identifier_token28] = ACTIONS(2411), - [aux_sym_cmd_identifier_token29] = ACTIONS(2411), - [aux_sym_cmd_identifier_token30] = ACTIONS(2411), - [aux_sym_cmd_identifier_token31] = ACTIONS(2411), - [aux_sym_cmd_identifier_token32] = ACTIONS(2411), - [aux_sym_cmd_identifier_token33] = ACTIONS(2411), - [aux_sym_cmd_identifier_token34] = ACTIONS(2411), - [aux_sym_cmd_identifier_token35] = ACTIONS(2411), - [aux_sym_cmd_identifier_token36] = ACTIONS(2411), - [aux_sym_cmd_identifier_token37] = ACTIONS(2411), - [aux_sym_cmd_identifier_token38] = ACTIONS(2411), - [aux_sym_cmd_identifier_token39] = ACTIONS(2411), - [aux_sym_cmd_identifier_token40] = ACTIONS(2411), - [anon_sym_def] = ACTIONS(2411), - [anon_sym_export_DASHenv] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2411), - [anon_sym_DOLLAR] = ACTIONS(2411), - [anon_sym_error] = ACTIONS(2411), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_in2] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_make] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_do] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_else] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2411), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_catch] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_source] = ACTIONS(2411), - [anon_sym_source_DASHenv] = ACTIONS(2411), - [anon_sym_register] = ACTIONS(2411), - [anon_sym_hide] = ACTIONS(2411), - [anon_sym_hide_DASHenv] = ACTIONS(2411), - [anon_sym_overlay] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), - [aux_sym__val_number_decimal_token1] = ACTIONS(2411), - [aux_sym__val_number_decimal_token2] = ACTIONS(2411), - [aux_sym__val_number_decimal_token3] = ACTIONS(2411), - [aux_sym__val_number_decimal_token4] = ACTIONS(2411), - [aux_sym__val_number_token1] = ACTIONS(2411), - [aux_sym__val_number_token2] = ACTIONS(2411), - [aux_sym__val_number_token3] = ACTIONS(2411), - [aux_sym__val_number_token4] = ACTIONS(2411), - [aux_sym__val_number_token5] = ACTIONS(2411), - [aux_sym__val_number_token6] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2411), - [sym__str_single_quotes] = ACTIONS(2411), - [sym__str_back_ticks] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), - [sym__entry_separator] = ACTIONS(2413), + [596] = { + [sym_comment] = STATE(596), + [anon_sym_export] = ACTIONS(2342), + [anon_sym_alias] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_let_DASHenv] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [aux_sym_cmd_identifier_token1] = ACTIONS(2342), + [aux_sym_cmd_identifier_token2] = ACTIONS(2342), + [aux_sym_cmd_identifier_token3] = ACTIONS(2342), + [aux_sym_cmd_identifier_token4] = ACTIONS(2342), + [aux_sym_cmd_identifier_token5] = ACTIONS(2342), + [aux_sym_cmd_identifier_token6] = ACTIONS(2342), + [aux_sym_cmd_identifier_token7] = ACTIONS(2342), + [aux_sym_cmd_identifier_token8] = ACTIONS(2342), + [aux_sym_cmd_identifier_token9] = ACTIONS(2342), + [aux_sym_cmd_identifier_token10] = ACTIONS(2342), + [aux_sym_cmd_identifier_token11] = ACTIONS(2342), + [aux_sym_cmd_identifier_token12] = ACTIONS(2342), + [aux_sym_cmd_identifier_token13] = ACTIONS(2342), + [aux_sym_cmd_identifier_token14] = ACTIONS(2342), + [aux_sym_cmd_identifier_token15] = ACTIONS(2342), + [aux_sym_cmd_identifier_token16] = ACTIONS(2342), + [aux_sym_cmd_identifier_token17] = ACTIONS(2342), + [aux_sym_cmd_identifier_token18] = ACTIONS(2342), + [aux_sym_cmd_identifier_token19] = ACTIONS(2342), + [aux_sym_cmd_identifier_token20] = ACTIONS(2342), + [aux_sym_cmd_identifier_token21] = ACTIONS(2342), + [aux_sym_cmd_identifier_token22] = ACTIONS(2342), + [aux_sym_cmd_identifier_token23] = ACTIONS(2342), + [aux_sym_cmd_identifier_token24] = ACTIONS(2342), + [aux_sym_cmd_identifier_token25] = ACTIONS(2342), + [aux_sym_cmd_identifier_token26] = ACTIONS(2342), + [aux_sym_cmd_identifier_token27] = ACTIONS(2342), + [aux_sym_cmd_identifier_token28] = ACTIONS(2342), + [aux_sym_cmd_identifier_token29] = ACTIONS(2342), + [aux_sym_cmd_identifier_token30] = ACTIONS(2342), + [aux_sym_cmd_identifier_token31] = ACTIONS(2342), + [aux_sym_cmd_identifier_token32] = ACTIONS(2342), + [aux_sym_cmd_identifier_token33] = ACTIONS(2342), + [aux_sym_cmd_identifier_token34] = ACTIONS(2342), + [aux_sym_cmd_identifier_token35] = ACTIONS(2342), + [aux_sym_cmd_identifier_token36] = ACTIONS(2342), + [aux_sym_cmd_identifier_token37] = ACTIONS(2342), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2342), + [aux_sym_cmd_identifier_token40] = ACTIONS(2342), + [anon_sym_def] = ACTIONS(2342), + [anon_sym_export_DASHenv] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_module] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2342), + [anon_sym_COMMA] = ACTIONS(2342), + [anon_sym_DOLLAR] = ACTIONS(2342), + [anon_sym_error] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_in2] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_make] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_do] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2342), + [anon_sym_try] = ACTIONS(2342), + [anon_sym_catch] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_source] = ACTIONS(2342), + [anon_sym_source_DASHenv] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_hide] = ACTIONS(2342), + [anon_sym_hide_DASHenv] = ACTIONS(2342), + [anon_sym_overlay] = ACTIONS(2342), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2342), + [aux_sym__val_number_decimal_token1] = ACTIONS(2342), + [aux_sym__val_number_decimal_token2] = ACTIONS(2342), + [aux_sym__val_number_decimal_token3] = ACTIONS(2342), + [aux_sym__val_number_decimal_token4] = ACTIONS(2342), + [aux_sym__val_number_token1] = ACTIONS(2342), + [aux_sym__val_number_token2] = ACTIONS(2342), + [aux_sym__val_number_token3] = ACTIONS(2342), + [aux_sym__val_number_token4] = ACTIONS(2342), + [aux_sym__val_number_token5] = ACTIONS(2342), + [aux_sym__val_number_token6] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2342), + [sym__str_single_quotes] = ACTIONS(2342), + [sym__str_back_ticks] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2342), + [sym__entry_separator] = ACTIONS(2344), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2413), + [sym_raw_string_begin] = ACTIONS(2344), }, - [631] = { - [sym_comment] = STATE(631), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_alias] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_let_DASHenv] = ACTIONS(2415), - [anon_sym_mut] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [aux_sym_cmd_identifier_token1] = ACTIONS(2415), - [aux_sym_cmd_identifier_token2] = ACTIONS(2415), - [aux_sym_cmd_identifier_token3] = ACTIONS(2415), - [aux_sym_cmd_identifier_token4] = ACTIONS(2415), - [aux_sym_cmd_identifier_token5] = ACTIONS(2415), - [aux_sym_cmd_identifier_token6] = ACTIONS(2415), - [aux_sym_cmd_identifier_token7] = ACTIONS(2415), - [aux_sym_cmd_identifier_token8] = ACTIONS(2415), - [aux_sym_cmd_identifier_token9] = ACTIONS(2415), - [aux_sym_cmd_identifier_token10] = ACTIONS(2415), - [aux_sym_cmd_identifier_token11] = ACTIONS(2415), - [aux_sym_cmd_identifier_token12] = ACTIONS(2415), - [aux_sym_cmd_identifier_token13] = ACTIONS(2415), - [aux_sym_cmd_identifier_token14] = ACTIONS(2415), - [aux_sym_cmd_identifier_token15] = ACTIONS(2415), - [aux_sym_cmd_identifier_token16] = ACTIONS(2415), - [aux_sym_cmd_identifier_token17] = ACTIONS(2415), - [aux_sym_cmd_identifier_token18] = ACTIONS(2415), - [aux_sym_cmd_identifier_token19] = ACTIONS(2415), - [aux_sym_cmd_identifier_token20] = ACTIONS(2415), - [aux_sym_cmd_identifier_token21] = ACTIONS(2415), - [aux_sym_cmd_identifier_token22] = ACTIONS(2415), - [aux_sym_cmd_identifier_token23] = ACTIONS(2415), - [aux_sym_cmd_identifier_token24] = ACTIONS(2415), - [aux_sym_cmd_identifier_token25] = ACTIONS(2415), - [aux_sym_cmd_identifier_token26] = ACTIONS(2415), - [aux_sym_cmd_identifier_token27] = ACTIONS(2415), - [aux_sym_cmd_identifier_token28] = ACTIONS(2415), - [aux_sym_cmd_identifier_token29] = ACTIONS(2415), - [aux_sym_cmd_identifier_token30] = ACTIONS(2415), - [aux_sym_cmd_identifier_token31] = ACTIONS(2415), - [aux_sym_cmd_identifier_token32] = ACTIONS(2415), - [aux_sym_cmd_identifier_token33] = ACTIONS(2415), - [aux_sym_cmd_identifier_token34] = ACTIONS(2415), - [aux_sym_cmd_identifier_token35] = ACTIONS(2415), - [aux_sym_cmd_identifier_token36] = ACTIONS(2415), - [aux_sym_cmd_identifier_token37] = ACTIONS(2415), - [aux_sym_cmd_identifier_token38] = ACTIONS(2415), - [aux_sym_cmd_identifier_token39] = ACTIONS(2415), - [aux_sym_cmd_identifier_token40] = ACTIONS(2415), - [anon_sym_def] = ACTIONS(2415), - [anon_sym_export_DASHenv] = ACTIONS(2415), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2415), - [anon_sym_DOLLAR] = ACTIONS(2415), - [anon_sym_error] = ACTIONS(2415), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_in2] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_make] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2415), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_catch] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_source] = ACTIONS(2415), - [anon_sym_source_DASHenv] = ACTIONS(2415), - [anon_sym_register] = ACTIONS(2415), - [anon_sym_hide] = ACTIONS(2415), - [anon_sym_hide_DASHenv] = ACTIONS(2415), - [anon_sym_overlay] = ACTIONS(2415), - [anon_sym_as] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2415), - [aux_sym__val_number_decimal_token1] = ACTIONS(2415), - [aux_sym__val_number_decimal_token2] = ACTIONS(2415), - [aux_sym__val_number_decimal_token3] = ACTIONS(2415), - [aux_sym__val_number_decimal_token4] = ACTIONS(2415), - [aux_sym__val_number_token1] = ACTIONS(2415), - [aux_sym__val_number_token2] = ACTIONS(2415), - [aux_sym__val_number_token3] = ACTIONS(2415), - [aux_sym__val_number_token4] = ACTIONS(2415), - [aux_sym__val_number_token5] = ACTIONS(2415), - [aux_sym__val_number_token6] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2415), - [sym__str_single_quotes] = ACTIONS(2415), - [sym__str_back_ticks] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2415), - [sym__entry_separator] = ACTIONS(2417), + [597] = { + [sym_comment] = STATE(597), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2346), + [aux_sym_cmd_identifier_token3] = ACTIONS(2346), + [aux_sym_cmd_identifier_token4] = ACTIONS(2346), + [aux_sym_cmd_identifier_token5] = ACTIONS(2346), + [aux_sym_cmd_identifier_token6] = ACTIONS(2346), + [aux_sym_cmd_identifier_token7] = ACTIONS(2346), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2346), + [aux_sym_cmd_identifier_token11] = ACTIONS(2346), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2346), + [aux_sym_cmd_identifier_token17] = ACTIONS(2346), + [aux_sym_cmd_identifier_token18] = ACTIONS(2346), + [aux_sym_cmd_identifier_token19] = ACTIONS(2346), + [aux_sym_cmd_identifier_token20] = ACTIONS(2346), + [aux_sym_cmd_identifier_token21] = ACTIONS(2346), + [aux_sym_cmd_identifier_token22] = ACTIONS(2346), + [aux_sym_cmd_identifier_token23] = ACTIONS(2346), + [aux_sym_cmd_identifier_token24] = ACTIONS(2346), + [aux_sym_cmd_identifier_token25] = ACTIONS(2346), + [aux_sym_cmd_identifier_token26] = ACTIONS(2346), + [aux_sym_cmd_identifier_token27] = ACTIONS(2346), + [aux_sym_cmd_identifier_token28] = ACTIONS(2346), + [aux_sym_cmd_identifier_token29] = ACTIONS(2346), + [aux_sym_cmd_identifier_token30] = ACTIONS(2346), + [aux_sym_cmd_identifier_token31] = ACTIONS(2346), + [aux_sym_cmd_identifier_token32] = ACTIONS(2346), + [aux_sym_cmd_identifier_token33] = ACTIONS(2346), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2346), + [aux_sym_cmd_identifier_token36] = ACTIONS(2346), + [aux_sym_cmd_identifier_token37] = ACTIONS(2346), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2346), + [aux_sym_cmd_identifier_token40] = ACTIONS(2346), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2346), + [anon_sym_COMMA] = ACTIONS(2346), + [anon_sym_DOLLAR] = ACTIONS(2346), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2346), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2346), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2346), + [aux_sym__val_number_decimal_token3] = ACTIONS(2346), + [aux_sym__val_number_decimal_token4] = ACTIONS(2346), + [aux_sym__val_number_token1] = ACTIONS(2346), + [aux_sym__val_number_token2] = ACTIONS(2346), + [aux_sym__val_number_token3] = ACTIONS(2346), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2346), + [sym__str_single_quotes] = ACTIONS(2346), + [sym__str_back_ticks] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2346), + [sym__entry_separator] = ACTIONS(2348), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2417), + [sym_raw_string_begin] = ACTIONS(2348), }, - [632] = { - [sym_comment] = STATE(632), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_alias] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_let_DASHenv] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [aux_sym_cmd_identifier_token1] = ACTIONS(2419), - [aux_sym_cmd_identifier_token2] = ACTIONS(2419), - [aux_sym_cmd_identifier_token3] = ACTIONS(2419), - [aux_sym_cmd_identifier_token4] = ACTIONS(2419), - [aux_sym_cmd_identifier_token5] = ACTIONS(2419), - [aux_sym_cmd_identifier_token6] = ACTIONS(2419), - [aux_sym_cmd_identifier_token7] = ACTIONS(2419), - [aux_sym_cmd_identifier_token8] = ACTIONS(2419), - [aux_sym_cmd_identifier_token9] = ACTIONS(2419), - [aux_sym_cmd_identifier_token10] = ACTIONS(2419), - [aux_sym_cmd_identifier_token11] = ACTIONS(2419), - [aux_sym_cmd_identifier_token12] = ACTIONS(2419), - [aux_sym_cmd_identifier_token13] = ACTIONS(2419), - [aux_sym_cmd_identifier_token14] = ACTIONS(2419), - [aux_sym_cmd_identifier_token15] = ACTIONS(2419), - [aux_sym_cmd_identifier_token16] = ACTIONS(2419), - [aux_sym_cmd_identifier_token17] = ACTIONS(2419), - [aux_sym_cmd_identifier_token18] = ACTIONS(2419), - [aux_sym_cmd_identifier_token19] = ACTIONS(2419), - [aux_sym_cmd_identifier_token20] = ACTIONS(2419), - [aux_sym_cmd_identifier_token21] = ACTIONS(2419), - [aux_sym_cmd_identifier_token22] = ACTIONS(2419), - [aux_sym_cmd_identifier_token23] = ACTIONS(2419), - [aux_sym_cmd_identifier_token24] = ACTIONS(2419), - [aux_sym_cmd_identifier_token25] = ACTIONS(2419), - [aux_sym_cmd_identifier_token26] = ACTIONS(2419), - [aux_sym_cmd_identifier_token27] = ACTIONS(2419), - [aux_sym_cmd_identifier_token28] = ACTIONS(2419), - [aux_sym_cmd_identifier_token29] = ACTIONS(2419), - [aux_sym_cmd_identifier_token30] = ACTIONS(2419), - [aux_sym_cmd_identifier_token31] = ACTIONS(2419), - [aux_sym_cmd_identifier_token32] = ACTIONS(2419), - [aux_sym_cmd_identifier_token33] = ACTIONS(2419), - [aux_sym_cmd_identifier_token34] = ACTIONS(2419), - [aux_sym_cmd_identifier_token35] = ACTIONS(2419), - [aux_sym_cmd_identifier_token36] = ACTIONS(2419), - [aux_sym_cmd_identifier_token37] = ACTIONS(2419), - [aux_sym_cmd_identifier_token38] = ACTIONS(2419), - [aux_sym_cmd_identifier_token39] = ACTIONS(2419), - [aux_sym_cmd_identifier_token40] = ACTIONS(2419), - [anon_sym_def] = ACTIONS(2419), - [anon_sym_export_DASHenv] = ACTIONS(2419), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2419), - [anon_sym_DOLLAR] = ACTIONS(2419), - [anon_sym_error] = ACTIONS(2419), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_in2] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_make] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_do] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_else] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2419), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_catch] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_source] = ACTIONS(2419), - [anon_sym_source_DASHenv] = ACTIONS(2419), - [anon_sym_register] = ACTIONS(2419), - [anon_sym_hide] = ACTIONS(2419), - [anon_sym_hide_DASHenv] = ACTIONS(2419), - [anon_sym_overlay] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), - [aux_sym__val_number_decimal_token1] = ACTIONS(2419), - [aux_sym__val_number_decimal_token2] = ACTIONS(2419), - [aux_sym__val_number_decimal_token3] = ACTIONS(2419), - [aux_sym__val_number_decimal_token4] = ACTIONS(2419), - [aux_sym__val_number_token1] = ACTIONS(2419), - [aux_sym__val_number_token2] = ACTIONS(2419), - [aux_sym__val_number_token3] = ACTIONS(2419), - [aux_sym__val_number_token4] = ACTIONS(2419), - [aux_sym__val_number_token5] = ACTIONS(2419), - [aux_sym__val_number_token6] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2419), - [sym__str_single_quotes] = ACTIONS(2419), - [sym__str_back_ticks] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), - [sym__entry_separator] = ACTIONS(2421), + [598] = { + [sym_comment] = STATE(598), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1835), + [aux_sym_cmd_identifier_token3] = ACTIONS(1835), + [aux_sym_cmd_identifier_token4] = ACTIONS(1835), + [aux_sym_cmd_identifier_token5] = ACTIONS(1835), + [aux_sym_cmd_identifier_token6] = ACTIONS(1835), + [aux_sym_cmd_identifier_token7] = ACTIONS(1835), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1835), + [aux_sym_cmd_identifier_token11] = ACTIONS(1835), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1835), + [aux_sym_cmd_identifier_token17] = ACTIONS(1835), + [aux_sym_cmd_identifier_token18] = ACTIONS(1835), + [aux_sym_cmd_identifier_token19] = ACTIONS(1835), + [aux_sym_cmd_identifier_token20] = ACTIONS(1835), + [aux_sym_cmd_identifier_token21] = ACTIONS(1835), + [aux_sym_cmd_identifier_token22] = ACTIONS(1835), + [aux_sym_cmd_identifier_token23] = ACTIONS(1835), + [aux_sym_cmd_identifier_token24] = ACTIONS(1835), + [aux_sym_cmd_identifier_token25] = ACTIONS(1835), + [aux_sym_cmd_identifier_token26] = ACTIONS(1835), + [aux_sym_cmd_identifier_token27] = ACTIONS(1835), + [aux_sym_cmd_identifier_token28] = ACTIONS(1835), + [aux_sym_cmd_identifier_token29] = ACTIONS(1835), + [aux_sym_cmd_identifier_token30] = ACTIONS(1835), + [aux_sym_cmd_identifier_token31] = ACTIONS(1835), + [aux_sym_cmd_identifier_token32] = ACTIONS(1835), + [aux_sym_cmd_identifier_token33] = ACTIONS(1835), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1835), + [aux_sym_cmd_identifier_token36] = ACTIONS(1835), + [aux_sym_cmd_identifier_token37] = ACTIONS(1835), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1835), + [aux_sym_cmd_identifier_token40] = ACTIONS(1835), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1835), + [anon_sym_COMMA] = ACTIONS(1835), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in2] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1835), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1835), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1835), + [aux_sym__val_number_decimal_token3] = ACTIONS(1835), + [aux_sym__val_number_decimal_token4] = ACTIONS(1835), + [aux_sym__val_number_token1] = ACTIONS(1835), + [aux_sym__val_number_token2] = ACTIONS(1835), + [aux_sym__val_number_token3] = ACTIONS(1835), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1835), + [sym__str_single_quotes] = ACTIONS(1835), + [sym__str_back_ticks] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1835), + [sym__entry_separator] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2421), + [sym_raw_string_begin] = ACTIONS(1837), }, - [633] = { - [sym_comment] = STATE(633), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_alias] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_let_DASHenv] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [aux_sym_cmd_identifier_token1] = ACTIONS(2423), - [aux_sym_cmd_identifier_token2] = ACTIONS(2423), - [aux_sym_cmd_identifier_token3] = ACTIONS(2423), - [aux_sym_cmd_identifier_token4] = ACTIONS(2423), - [aux_sym_cmd_identifier_token5] = ACTIONS(2423), - [aux_sym_cmd_identifier_token6] = ACTIONS(2423), - [aux_sym_cmd_identifier_token7] = ACTIONS(2423), - [aux_sym_cmd_identifier_token8] = ACTIONS(2423), - [aux_sym_cmd_identifier_token9] = ACTIONS(2423), - [aux_sym_cmd_identifier_token10] = ACTIONS(2423), - [aux_sym_cmd_identifier_token11] = ACTIONS(2423), - [aux_sym_cmd_identifier_token12] = ACTIONS(2423), - [aux_sym_cmd_identifier_token13] = ACTIONS(2423), - [aux_sym_cmd_identifier_token14] = ACTIONS(2423), - [aux_sym_cmd_identifier_token15] = ACTIONS(2423), - [aux_sym_cmd_identifier_token16] = ACTIONS(2423), - [aux_sym_cmd_identifier_token17] = ACTIONS(2423), - [aux_sym_cmd_identifier_token18] = ACTIONS(2423), - [aux_sym_cmd_identifier_token19] = ACTIONS(2423), - [aux_sym_cmd_identifier_token20] = ACTIONS(2423), - [aux_sym_cmd_identifier_token21] = ACTIONS(2423), - [aux_sym_cmd_identifier_token22] = ACTIONS(2423), - [aux_sym_cmd_identifier_token23] = ACTIONS(2423), - [aux_sym_cmd_identifier_token24] = ACTIONS(2423), - [aux_sym_cmd_identifier_token25] = ACTIONS(2423), - [aux_sym_cmd_identifier_token26] = ACTIONS(2423), - [aux_sym_cmd_identifier_token27] = ACTIONS(2423), - [aux_sym_cmd_identifier_token28] = ACTIONS(2423), - [aux_sym_cmd_identifier_token29] = ACTIONS(2423), - [aux_sym_cmd_identifier_token30] = ACTIONS(2423), - [aux_sym_cmd_identifier_token31] = ACTIONS(2423), - [aux_sym_cmd_identifier_token32] = ACTIONS(2423), - [aux_sym_cmd_identifier_token33] = ACTIONS(2423), - [aux_sym_cmd_identifier_token34] = ACTIONS(2423), - [aux_sym_cmd_identifier_token35] = ACTIONS(2423), - [aux_sym_cmd_identifier_token36] = ACTIONS(2423), - [aux_sym_cmd_identifier_token37] = ACTIONS(2423), - [aux_sym_cmd_identifier_token38] = ACTIONS(2423), - [aux_sym_cmd_identifier_token39] = ACTIONS(2423), - [aux_sym_cmd_identifier_token40] = ACTIONS(2423), - [anon_sym_def] = ACTIONS(2423), - [anon_sym_export_DASHenv] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2423), - [anon_sym_DOLLAR] = ACTIONS(2423), - [anon_sym_error] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_in2] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_make] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_else] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2423), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_catch] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_source] = ACTIONS(2423), - [anon_sym_source_DASHenv] = ACTIONS(2423), - [anon_sym_register] = ACTIONS(2423), - [anon_sym_hide] = ACTIONS(2423), - [anon_sym_hide_DASHenv] = ACTIONS(2423), - [anon_sym_overlay] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_PLUS2] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), - [aux_sym__val_number_decimal_token1] = ACTIONS(2423), - [aux_sym__val_number_decimal_token2] = ACTIONS(2423), - [aux_sym__val_number_decimal_token3] = ACTIONS(2423), - [aux_sym__val_number_decimal_token4] = ACTIONS(2423), - [aux_sym__val_number_token1] = ACTIONS(2423), - [aux_sym__val_number_token2] = ACTIONS(2423), - [aux_sym__val_number_token3] = ACTIONS(2423), - [aux_sym__val_number_token4] = ACTIONS(2423), - [aux_sym__val_number_token5] = ACTIONS(2423), - [aux_sym__val_number_token6] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2423), - [sym__str_single_quotes] = ACTIONS(2423), - [sym__str_back_ticks] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), - [sym__entry_separator] = ACTIONS(2425), + [599] = { + [sym_comment] = STATE(599), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1843), + [aux_sym_cmd_identifier_token3] = ACTIONS(1843), + [aux_sym_cmd_identifier_token4] = ACTIONS(1843), + [aux_sym_cmd_identifier_token5] = ACTIONS(1843), + [aux_sym_cmd_identifier_token6] = ACTIONS(1843), + [aux_sym_cmd_identifier_token7] = ACTIONS(1843), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1843), + [aux_sym_cmd_identifier_token11] = ACTIONS(1843), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1843), + [aux_sym_cmd_identifier_token17] = ACTIONS(1843), + [aux_sym_cmd_identifier_token18] = ACTIONS(1843), + [aux_sym_cmd_identifier_token19] = ACTIONS(1843), + [aux_sym_cmd_identifier_token20] = ACTIONS(1843), + [aux_sym_cmd_identifier_token21] = ACTIONS(1843), + [aux_sym_cmd_identifier_token22] = ACTIONS(1843), + [aux_sym_cmd_identifier_token23] = ACTIONS(1843), + [aux_sym_cmd_identifier_token24] = ACTIONS(1843), + [aux_sym_cmd_identifier_token25] = ACTIONS(1843), + [aux_sym_cmd_identifier_token26] = ACTIONS(1843), + [aux_sym_cmd_identifier_token27] = ACTIONS(1843), + [aux_sym_cmd_identifier_token28] = ACTIONS(1843), + [aux_sym_cmd_identifier_token29] = ACTIONS(1843), + [aux_sym_cmd_identifier_token30] = ACTIONS(1843), + [aux_sym_cmd_identifier_token31] = ACTIONS(1843), + [aux_sym_cmd_identifier_token32] = ACTIONS(1843), + [aux_sym_cmd_identifier_token33] = ACTIONS(1843), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1843), + [aux_sym_cmd_identifier_token36] = ACTIONS(1843), + [aux_sym_cmd_identifier_token37] = ACTIONS(1843), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1843), + [aux_sym_cmd_identifier_token40] = ACTIONS(1843), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1843), + [anon_sym_COMMA] = ACTIONS(1843), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in2] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1843), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1843), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1843), + [aux_sym__val_number_decimal_token3] = ACTIONS(1843), + [aux_sym__val_number_decimal_token4] = ACTIONS(1843), + [aux_sym__val_number_token1] = ACTIONS(1843), + [aux_sym__val_number_token2] = ACTIONS(1843), + [aux_sym__val_number_token3] = ACTIONS(1843), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1843), + [sym__str_single_quotes] = ACTIONS(1843), + [sym__str_back_ticks] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1843), + [sym__entry_separator] = ACTIONS(1845), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2425), + [sym_raw_string_begin] = ACTIONS(1845), }, - [634] = { - [sym_comment] = STATE(634), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_alias] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_let_DASHenv] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [aux_sym_cmd_identifier_token1] = ACTIONS(2427), - [aux_sym_cmd_identifier_token2] = ACTIONS(2427), - [aux_sym_cmd_identifier_token3] = ACTIONS(2427), - [aux_sym_cmd_identifier_token4] = ACTIONS(2427), - [aux_sym_cmd_identifier_token5] = ACTIONS(2427), - [aux_sym_cmd_identifier_token6] = ACTIONS(2427), - [aux_sym_cmd_identifier_token7] = ACTIONS(2427), - [aux_sym_cmd_identifier_token8] = ACTIONS(2427), - [aux_sym_cmd_identifier_token9] = ACTIONS(2427), - [aux_sym_cmd_identifier_token10] = ACTIONS(2427), - [aux_sym_cmd_identifier_token11] = ACTIONS(2427), - [aux_sym_cmd_identifier_token12] = ACTIONS(2427), - [aux_sym_cmd_identifier_token13] = ACTIONS(2427), - [aux_sym_cmd_identifier_token14] = ACTIONS(2427), - [aux_sym_cmd_identifier_token15] = ACTIONS(2427), - [aux_sym_cmd_identifier_token16] = ACTIONS(2427), - [aux_sym_cmd_identifier_token17] = ACTIONS(2427), - [aux_sym_cmd_identifier_token18] = ACTIONS(2427), - [aux_sym_cmd_identifier_token19] = ACTIONS(2427), - [aux_sym_cmd_identifier_token20] = ACTIONS(2427), - [aux_sym_cmd_identifier_token21] = ACTIONS(2427), - [aux_sym_cmd_identifier_token22] = ACTIONS(2427), - [aux_sym_cmd_identifier_token23] = ACTIONS(2427), - [aux_sym_cmd_identifier_token24] = ACTIONS(2427), - [aux_sym_cmd_identifier_token25] = ACTIONS(2427), - [aux_sym_cmd_identifier_token26] = ACTIONS(2427), - [aux_sym_cmd_identifier_token27] = ACTIONS(2427), - [aux_sym_cmd_identifier_token28] = ACTIONS(2427), - [aux_sym_cmd_identifier_token29] = ACTIONS(2427), - [aux_sym_cmd_identifier_token30] = ACTIONS(2427), - [aux_sym_cmd_identifier_token31] = ACTIONS(2427), - [aux_sym_cmd_identifier_token32] = ACTIONS(2427), - [aux_sym_cmd_identifier_token33] = ACTIONS(2427), - [aux_sym_cmd_identifier_token34] = ACTIONS(2427), - [aux_sym_cmd_identifier_token35] = ACTIONS(2427), - [aux_sym_cmd_identifier_token36] = ACTIONS(2427), - [aux_sym_cmd_identifier_token37] = ACTIONS(2427), - [aux_sym_cmd_identifier_token38] = ACTIONS(2427), - [aux_sym_cmd_identifier_token39] = ACTIONS(2427), - [aux_sym_cmd_identifier_token40] = ACTIONS(2427), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_export_DASHenv] = ACTIONS(2427), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), - [anon_sym_LPAREN] = ACTIONS(2427), - [anon_sym_DOLLAR] = ACTIONS(2427), - [anon_sym_error] = ACTIONS(2427), - [anon_sym_DASH2] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_in2] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_make] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_do] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_else] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), - [anon_sym_RBRACE] = ACTIONS(2427), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_catch] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_source] = ACTIONS(2427), - [anon_sym_source_DASHenv] = ACTIONS(2427), - [anon_sym_register] = ACTIONS(2427), - [anon_sym_hide] = ACTIONS(2427), - [anon_sym_hide_DASHenv] = ACTIONS(2427), - [anon_sym_overlay] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_PLUS2] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), - [aux_sym__val_number_decimal_token1] = ACTIONS(2427), - [aux_sym__val_number_decimal_token2] = ACTIONS(2427), - [aux_sym__val_number_decimal_token3] = ACTIONS(2427), - [aux_sym__val_number_decimal_token4] = ACTIONS(2427), - [aux_sym__val_number_token1] = ACTIONS(2427), - [aux_sym__val_number_token2] = ACTIONS(2427), - [aux_sym__val_number_token3] = ACTIONS(2427), - [aux_sym__val_number_token4] = ACTIONS(2427), - [aux_sym__val_number_token5] = ACTIONS(2427), - [aux_sym__val_number_token6] = ACTIONS(2427), - [anon_sym_DQUOTE] = ACTIONS(2427), - [sym__str_single_quotes] = ACTIONS(2427), - [sym__str_back_ticks] = ACTIONS(2427), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), - [sym__entry_separator] = ACTIONS(2429), + [600] = { + [sym_comment] = STATE(600), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1847), + [aux_sym_cmd_identifier_token3] = ACTIONS(1847), + [aux_sym_cmd_identifier_token4] = ACTIONS(1847), + [aux_sym_cmd_identifier_token5] = ACTIONS(1847), + [aux_sym_cmd_identifier_token6] = ACTIONS(1847), + [aux_sym_cmd_identifier_token7] = ACTIONS(1847), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1847), + [aux_sym_cmd_identifier_token11] = ACTIONS(1847), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1847), + [aux_sym_cmd_identifier_token17] = ACTIONS(1847), + [aux_sym_cmd_identifier_token18] = ACTIONS(1847), + [aux_sym_cmd_identifier_token19] = ACTIONS(1847), + [aux_sym_cmd_identifier_token20] = ACTIONS(1847), + [aux_sym_cmd_identifier_token21] = ACTIONS(1847), + [aux_sym_cmd_identifier_token22] = ACTIONS(1847), + [aux_sym_cmd_identifier_token23] = ACTIONS(1847), + [aux_sym_cmd_identifier_token24] = ACTIONS(1847), + [aux_sym_cmd_identifier_token25] = ACTIONS(1847), + [aux_sym_cmd_identifier_token26] = ACTIONS(1847), + [aux_sym_cmd_identifier_token27] = ACTIONS(1847), + [aux_sym_cmd_identifier_token28] = ACTIONS(1847), + [aux_sym_cmd_identifier_token29] = ACTIONS(1847), + [aux_sym_cmd_identifier_token30] = ACTIONS(1847), + [aux_sym_cmd_identifier_token31] = ACTIONS(1847), + [aux_sym_cmd_identifier_token32] = ACTIONS(1847), + [aux_sym_cmd_identifier_token33] = ACTIONS(1847), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1847), + [aux_sym_cmd_identifier_token36] = ACTIONS(1847), + [aux_sym_cmd_identifier_token37] = ACTIONS(1847), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1847), + [aux_sym_cmd_identifier_token40] = ACTIONS(1847), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1847), + [anon_sym_COMMA] = ACTIONS(1847), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1847), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1847), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1847), + [aux_sym__val_number_decimal_token3] = ACTIONS(1847), + [aux_sym__val_number_decimal_token4] = ACTIONS(1847), + [aux_sym__val_number_token1] = ACTIONS(1847), + [aux_sym__val_number_token2] = ACTIONS(1847), + [aux_sym__val_number_token3] = ACTIONS(1847), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1847), + [sym__str_single_quotes] = ACTIONS(1847), + [sym__str_back_ticks] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1847), + [sym__entry_separator] = ACTIONS(1849), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2429), + [sym_raw_string_begin] = ACTIONS(1849), }, - [635] = { - [sym_comment] = STATE(635), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_alias] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_let_DASHenv] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [aux_sym_cmd_identifier_token1] = ACTIONS(2431), - [aux_sym_cmd_identifier_token2] = ACTIONS(2431), - [aux_sym_cmd_identifier_token3] = ACTIONS(2431), - [aux_sym_cmd_identifier_token4] = ACTIONS(2431), - [aux_sym_cmd_identifier_token5] = ACTIONS(2431), - [aux_sym_cmd_identifier_token6] = ACTIONS(2431), - [aux_sym_cmd_identifier_token7] = ACTIONS(2431), - [aux_sym_cmd_identifier_token8] = ACTIONS(2431), - [aux_sym_cmd_identifier_token9] = ACTIONS(2431), - [aux_sym_cmd_identifier_token10] = ACTIONS(2431), - [aux_sym_cmd_identifier_token11] = ACTIONS(2431), - [aux_sym_cmd_identifier_token12] = ACTIONS(2431), - [aux_sym_cmd_identifier_token13] = ACTIONS(2431), - [aux_sym_cmd_identifier_token14] = ACTIONS(2431), - [aux_sym_cmd_identifier_token15] = ACTIONS(2431), - [aux_sym_cmd_identifier_token16] = ACTIONS(2431), - [aux_sym_cmd_identifier_token17] = ACTIONS(2431), - [aux_sym_cmd_identifier_token18] = ACTIONS(2431), - [aux_sym_cmd_identifier_token19] = ACTIONS(2431), - [aux_sym_cmd_identifier_token20] = ACTIONS(2431), - [aux_sym_cmd_identifier_token21] = ACTIONS(2431), - [aux_sym_cmd_identifier_token22] = ACTIONS(2431), - [aux_sym_cmd_identifier_token23] = ACTIONS(2431), - [aux_sym_cmd_identifier_token24] = ACTIONS(2431), - [aux_sym_cmd_identifier_token25] = ACTIONS(2431), - [aux_sym_cmd_identifier_token26] = ACTIONS(2431), - [aux_sym_cmd_identifier_token27] = ACTIONS(2431), - [aux_sym_cmd_identifier_token28] = ACTIONS(2431), - [aux_sym_cmd_identifier_token29] = ACTIONS(2431), - [aux_sym_cmd_identifier_token30] = ACTIONS(2431), - [aux_sym_cmd_identifier_token31] = ACTIONS(2431), - [aux_sym_cmd_identifier_token32] = ACTIONS(2431), - [aux_sym_cmd_identifier_token33] = ACTIONS(2431), - [aux_sym_cmd_identifier_token34] = ACTIONS(2431), - [aux_sym_cmd_identifier_token35] = ACTIONS(2431), - [aux_sym_cmd_identifier_token36] = ACTIONS(2431), - [aux_sym_cmd_identifier_token37] = ACTIONS(2431), - [aux_sym_cmd_identifier_token38] = ACTIONS(2431), - [aux_sym_cmd_identifier_token39] = ACTIONS(2431), - [aux_sym_cmd_identifier_token40] = ACTIONS(2431), - [anon_sym_def] = ACTIONS(2431), - [anon_sym_export_DASHenv] = ACTIONS(2431), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), - [anon_sym_LPAREN] = ACTIONS(2431), - [anon_sym_DOLLAR] = ACTIONS(2431), - [anon_sym_error] = ACTIONS(2431), - [anon_sym_DASH2] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_in2] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_make] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_else] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), - [anon_sym_RBRACE] = ACTIONS(2431), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_catch] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_source] = ACTIONS(2431), - [anon_sym_source_DASHenv] = ACTIONS(2431), - [anon_sym_register] = ACTIONS(2431), - [anon_sym_hide] = ACTIONS(2431), - [anon_sym_hide_DASHenv] = ACTIONS(2431), - [anon_sym_overlay] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_PLUS2] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), - [aux_sym__val_number_decimal_token1] = ACTIONS(2431), - [aux_sym__val_number_decimal_token2] = ACTIONS(2431), - [aux_sym__val_number_decimal_token3] = ACTIONS(2431), - [aux_sym__val_number_decimal_token4] = ACTIONS(2431), - [aux_sym__val_number_token1] = ACTIONS(2431), - [aux_sym__val_number_token2] = ACTIONS(2431), - [aux_sym__val_number_token3] = ACTIONS(2431), - [aux_sym__val_number_token4] = ACTIONS(2431), - [aux_sym__val_number_token5] = ACTIONS(2431), - [aux_sym__val_number_token6] = ACTIONS(2431), - [anon_sym_DQUOTE] = ACTIONS(2431), - [sym__str_single_quotes] = ACTIONS(2431), - [sym__str_back_ticks] = ACTIONS(2431), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), - [sym__entry_separator] = ACTIONS(2433), + [601] = { + [sym_comment] = STATE(601), + [anon_sym_export] = ACTIONS(2350), + [anon_sym_alias] = ACTIONS(2350), + [anon_sym_let] = ACTIONS(2350), + [anon_sym_let_DASHenv] = ACTIONS(2350), + [anon_sym_mut] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [aux_sym_cmd_identifier_token1] = ACTIONS(2350), + [aux_sym_cmd_identifier_token2] = ACTIONS(2350), + [aux_sym_cmd_identifier_token3] = ACTIONS(2350), + [aux_sym_cmd_identifier_token4] = ACTIONS(2350), + [aux_sym_cmd_identifier_token5] = ACTIONS(2350), + [aux_sym_cmd_identifier_token6] = ACTIONS(2350), + [aux_sym_cmd_identifier_token7] = ACTIONS(2350), + [aux_sym_cmd_identifier_token8] = ACTIONS(2350), + [aux_sym_cmd_identifier_token9] = ACTIONS(2350), + [aux_sym_cmd_identifier_token10] = ACTIONS(2350), + [aux_sym_cmd_identifier_token11] = ACTIONS(2350), + [aux_sym_cmd_identifier_token12] = ACTIONS(2350), + [aux_sym_cmd_identifier_token13] = ACTIONS(2350), + [aux_sym_cmd_identifier_token14] = ACTIONS(2350), + [aux_sym_cmd_identifier_token15] = ACTIONS(2350), + [aux_sym_cmd_identifier_token16] = ACTIONS(2350), + [aux_sym_cmd_identifier_token17] = ACTIONS(2350), + [aux_sym_cmd_identifier_token18] = ACTIONS(2350), + [aux_sym_cmd_identifier_token19] = ACTIONS(2350), + [aux_sym_cmd_identifier_token20] = ACTIONS(2350), + [aux_sym_cmd_identifier_token21] = ACTIONS(2350), + [aux_sym_cmd_identifier_token22] = ACTIONS(2350), + [aux_sym_cmd_identifier_token23] = ACTIONS(2350), + [aux_sym_cmd_identifier_token24] = ACTIONS(2350), + [aux_sym_cmd_identifier_token25] = ACTIONS(2350), + [aux_sym_cmd_identifier_token26] = ACTIONS(2350), + [aux_sym_cmd_identifier_token27] = ACTIONS(2350), + [aux_sym_cmd_identifier_token28] = ACTIONS(2350), + [aux_sym_cmd_identifier_token29] = ACTIONS(2350), + [aux_sym_cmd_identifier_token30] = ACTIONS(2350), + [aux_sym_cmd_identifier_token31] = ACTIONS(2350), + [aux_sym_cmd_identifier_token32] = ACTIONS(2350), + [aux_sym_cmd_identifier_token33] = ACTIONS(2350), + [aux_sym_cmd_identifier_token34] = ACTIONS(2350), + [aux_sym_cmd_identifier_token35] = ACTIONS(2350), + [aux_sym_cmd_identifier_token36] = ACTIONS(2350), + [aux_sym_cmd_identifier_token37] = ACTIONS(2350), + [aux_sym_cmd_identifier_token38] = ACTIONS(2350), + [aux_sym_cmd_identifier_token39] = ACTIONS(2350), + [aux_sym_cmd_identifier_token40] = ACTIONS(2350), + [anon_sym_def] = ACTIONS(2350), + [anon_sym_export_DASHenv] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym_module] = ACTIONS(2350), + [anon_sym_use] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2350), + [anon_sym_COMMA] = ACTIONS(2350), + [anon_sym_DOLLAR] = ACTIONS(2350), + [anon_sym_error] = ACTIONS(2350), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in2] = ACTIONS(2350), + [anon_sym_loop] = ACTIONS(2350), + [anon_sym_make] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_match] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2350), + [anon_sym_try] = ACTIONS(2350), + [anon_sym_catch] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_source] = ACTIONS(2350), + [anon_sym_source_DASHenv] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_hide] = ACTIONS(2350), + [anon_sym_hide_DASHenv] = ACTIONS(2350), + [anon_sym_overlay] = ACTIONS(2350), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2350), + [aux_sym__val_number_decimal_token1] = ACTIONS(2350), + [aux_sym__val_number_decimal_token2] = ACTIONS(2350), + [aux_sym__val_number_decimal_token3] = ACTIONS(2350), + [aux_sym__val_number_decimal_token4] = ACTIONS(2350), + [aux_sym__val_number_token1] = ACTIONS(2350), + [aux_sym__val_number_token2] = ACTIONS(2350), + [aux_sym__val_number_token3] = ACTIONS(2350), + [aux_sym__val_number_token4] = ACTIONS(2350), + [aux_sym__val_number_token5] = ACTIONS(2350), + [aux_sym__val_number_token6] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2350), + [sym__str_single_quotes] = ACTIONS(2350), + [sym__str_back_ticks] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2350), + [sym__entry_separator] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2352), + }, + [602] = { + [sym_comment] = STATE(602), + [aux_sym__multiple_types_repeat1] = STATE(607), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_alias] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_let_DASHenv] = ACTIONS(2316), + [anon_sym_mut] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [aux_sym_cmd_identifier_token1] = ACTIONS(2316), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2316), + [aux_sym_cmd_identifier_token9] = ACTIONS(2316), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2316), + [aux_sym_cmd_identifier_token13] = ACTIONS(2316), + [aux_sym_cmd_identifier_token14] = ACTIONS(2316), + [aux_sym_cmd_identifier_token15] = ACTIONS(2316), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2316), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2316), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2316), + [anon_sym_export_DASHenv] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_error] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_in2] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_make] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2354), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_source] = ACTIONS(2316), + [anon_sym_source_DASHenv] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2316), + [anon_sym_hide] = ACTIONS(2316), + [anon_sym_hide_DASHenv] = ACTIONS(2316), + [anon_sym_overlay] = ACTIONS(2316), + [anon_sym_as] = ACTIONS(2316), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2316), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2316), + [aux_sym__val_number_token5] = ACTIONS(2316), + [aux_sym__val_number_token6] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [sym__entry_separator] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), + }, + [603] = { + [sym_comment] = STATE(603), + [aux_sym__multiple_types_repeat1] = STATE(607), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_alias] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_let_DASHenv] = ACTIONS(2316), + [anon_sym_mut] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [aux_sym_cmd_identifier_token1] = ACTIONS(2316), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2316), + [aux_sym_cmd_identifier_token9] = ACTIONS(2316), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2316), + [aux_sym_cmd_identifier_token13] = ACTIONS(2316), + [aux_sym_cmd_identifier_token14] = ACTIONS(2316), + [aux_sym_cmd_identifier_token15] = ACTIONS(2316), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2316), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2316), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2316), + [anon_sym_export_DASHenv] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_error] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_in2] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_make] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), + [anon_sym_RBRACE] = ACTIONS(2356), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_source] = ACTIONS(2316), + [anon_sym_source_DASHenv] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2316), + [anon_sym_hide] = ACTIONS(2316), + [anon_sym_hide_DASHenv] = ACTIONS(2316), + [anon_sym_overlay] = ACTIONS(2316), + [anon_sym_as] = ACTIONS(2316), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2316), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2316), + [aux_sym__val_number_token5] = ACTIONS(2316), + [aux_sym__val_number_token6] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [sym__entry_separator] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), + }, + [604] = { + [sym_comment] = STATE(604), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1859), + [aux_sym_cmd_identifier_token3] = ACTIONS(1859), + [aux_sym_cmd_identifier_token4] = ACTIONS(1859), + [aux_sym_cmd_identifier_token5] = ACTIONS(1859), + [aux_sym_cmd_identifier_token6] = ACTIONS(1859), + [aux_sym_cmd_identifier_token7] = ACTIONS(1859), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1859), + [aux_sym_cmd_identifier_token11] = ACTIONS(1859), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1859), + [aux_sym_cmd_identifier_token17] = ACTIONS(1859), + [aux_sym_cmd_identifier_token18] = ACTIONS(1859), + [aux_sym_cmd_identifier_token19] = ACTIONS(1859), + [aux_sym_cmd_identifier_token20] = ACTIONS(1859), + [aux_sym_cmd_identifier_token21] = ACTIONS(1859), + [aux_sym_cmd_identifier_token22] = ACTIONS(1859), + [aux_sym_cmd_identifier_token23] = ACTIONS(1859), + [aux_sym_cmd_identifier_token24] = ACTIONS(1859), + [aux_sym_cmd_identifier_token25] = ACTIONS(1859), + [aux_sym_cmd_identifier_token26] = ACTIONS(1859), + [aux_sym_cmd_identifier_token27] = ACTIONS(1859), + [aux_sym_cmd_identifier_token28] = ACTIONS(1859), + [aux_sym_cmd_identifier_token29] = ACTIONS(1859), + [aux_sym_cmd_identifier_token30] = ACTIONS(1859), + [aux_sym_cmd_identifier_token31] = ACTIONS(1859), + [aux_sym_cmd_identifier_token32] = ACTIONS(1859), + [aux_sym_cmd_identifier_token33] = ACTIONS(1859), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1859), + [aux_sym_cmd_identifier_token36] = ACTIONS(1859), + [aux_sym_cmd_identifier_token37] = ACTIONS(1859), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1859), + [aux_sym_cmd_identifier_token40] = ACTIONS(1859), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1859), + [anon_sym_COMMA] = ACTIONS(1859), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in2] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1859), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1859), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1859), + [aux_sym__val_number_decimal_token3] = ACTIONS(1859), + [aux_sym__val_number_decimal_token4] = ACTIONS(1859), + [aux_sym__val_number_token1] = ACTIONS(1859), + [aux_sym__val_number_token2] = ACTIONS(1859), + [aux_sym__val_number_token3] = ACTIONS(1859), + [aux_sym__val_number_token4] = ACTIONS(1859), + [aux_sym__val_number_token5] = ACTIONS(1859), + [aux_sym__val_number_token6] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1859), + [sym__str_single_quotes] = ACTIONS(1859), + [sym__str_back_ticks] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1859), + [sym__entry_separator] = ACTIONS(1861), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1861), + }, + [605] = { + [sym_comment] = STATE(605), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2358), + [aux_sym_cmd_identifier_token3] = ACTIONS(2358), + [aux_sym_cmd_identifier_token4] = ACTIONS(2358), + [aux_sym_cmd_identifier_token5] = ACTIONS(2358), + [aux_sym_cmd_identifier_token6] = ACTIONS(2358), + [aux_sym_cmd_identifier_token7] = ACTIONS(2358), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2358), + [aux_sym_cmd_identifier_token11] = ACTIONS(2358), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2358), + [aux_sym_cmd_identifier_token17] = ACTIONS(2358), + [aux_sym_cmd_identifier_token18] = ACTIONS(2358), + [aux_sym_cmd_identifier_token19] = ACTIONS(2358), + [aux_sym_cmd_identifier_token20] = ACTIONS(2358), + [aux_sym_cmd_identifier_token21] = ACTIONS(2358), + [aux_sym_cmd_identifier_token22] = ACTIONS(2358), + [aux_sym_cmd_identifier_token23] = ACTIONS(2358), + [aux_sym_cmd_identifier_token24] = ACTIONS(2358), + [aux_sym_cmd_identifier_token25] = ACTIONS(2358), + [aux_sym_cmd_identifier_token26] = ACTIONS(2358), + [aux_sym_cmd_identifier_token27] = ACTIONS(2358), + [aux_sym_cmd_identifier_token28] = ACTIONS(2358), + [aux_sym_cmd_identifier_token29] = ACTIONS(2358), + [aux_sym_cmd_identifier_token30] = ACTIONS(2358), + [aux_sym_cmd_identifier_token31] = ACTIONS(2358), + [aux_sym_cmd_identifier_token32] = ACTIONS(2358), + [aux_sym_cmd_identifier_token33] = ACTIONS(2358), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2358), + [aux_sym_cmd_identifier_token36] = ACTIONS(2358), + [aux_sym_cmd_identifier_token37] = ACTIONS(2358), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2358), + [aux_sym_cmd_identifier_token40] = ACTIONS(2358), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2358), + [anon_sym_COMMA] = ACTIONS(2358), + [anon_sym_DOLLAR] = ACTIONS(2358), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in2] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2358), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2358), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2358), + [aux_sym__val_number_decimal_token3] = ACTIONS(2358), + [aux_sym__val_number_decimal_token4] = ACTIONS(2358), + [aux_sym__val_number_token1] = ACTIONS(2358), + [aux_sym__val_number_token2] = ACTIONS(2358), + [aux_sym__val_number_token3] = ACTIONS(2358), + [aux_sym__val_number_token4] = ACTIONS(2358), + [aux_sym__val_number_token5] = ACTIONS(2358), + [aux_sym__val_number_token6] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2358), + [sym__str_single_quotes] = ACTIONS(2358), + [sym__str_back_ticks] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2358), + [sym__entry_separator] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2360), + }, + [606] = { + [sym_comment] = STATE(606), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2362), + [aux_sym_cmd_identifier_token3] = ACTIONS(2362), + [aux_sym_cmd_identifier_token4] = ACTIONS(2362), + [aux_sym_cmd_identifier_token5] = ACTIONS(2362), + [aux_sym_cmd_identifier_token6] = ACTIONS(2362), + [aux_sym_cmd_identifier_token7] = ACTIONS(2362), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2362), + [aux_sym_cmd_identifier_token11] = ACTIONS(2362), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2362), + [aux_sym_cmd_identifier_token17] = ACTIONS(2362), + [aux_sym_cmd_identifier_token18] = ACTIONS(2362), + [aux_sym_cmd_identifier_token19] = ACTIONS(2362), + [aux_sym_cmd_identifier_token20] = ACTIONS(2362), + [aux_sym_cmd_identifier_token21] = ACTIONS(2362), + [aux_sym_cmd_identifier_token22] = ACTIONS(2362), + [aux_sym_cmd_identifier_token23] = ACTIONS(2362), + [aux_sym_cmd_identifier_token24] = ACTIONS(2362), + [aux_sym_cmd_identifier_token25] = ACTIONS(2362), + [aux_sym_cmd_identifier_token26] = ACTIONS(2362), + [aux_sym_cmd_identifier_token27] = ACTIONS(2362), + [aux_sym_cmd_identifier_token28] = ACTIONS(2362), + [aux_sym_cmd_identifier_token29] = ACTIONS(2362), + [aux_sym_cmd_identifier_token30] = ACTIONS(2362), + [aux_sym_cmd_identifier_token31] = ACTIONS(2362), + [aux_sym_cmd_identifier_token32] = ACTIONS(2362), + [aux_sym_cmd_identifier_token33] = ACTIONS(2362), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2362), + [aux_sym_cmd_identifier_token36] = ACTIONS(2362), + [aux_sym_cmd_identifier_token37] = ACTIONS(2362), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2362), + [aux_sym_cmd_identifier_token40] = ACTIONS(2362), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2362), + [anon_sym_COMMA] = ACTIONS(2362), + [anon_sym_DOLLAR] = ACTIONS(2362), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in2] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2362), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2362), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2362), + [aux_sym__val_number_decimal_token3] = ACTIONS(2362), + [aux_sym__val_number_decimal_token4] = ACTIONS(2362), + [aux_sym__val_number_token1] = ACTIONS(2362), + [aux_sym__val_number_token2] = ACTIONS(2362), + [aux_sym__val_number_token3] = ACTIONS(2362), + [aux_sym__val_number_token4] = ACTIONS(2362), + [aux_sym__val_number_token5] = ACTIONS(2362), + [aux_sym__val_number_token6] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2362), + [sym__str_single_quotes] = ACTIONS(2362), + [sym__str_back_ticks] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2362), + [sym__entry_separator] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2364), + }, + [607] = { + [sym_comment] = STATE(607), + [aux_sym__multiple_types_repeat1] = STATE(607), + [anon_sym_export] = ACTIONS(2366), + [anon_sym_alias] = ACTIONS(2366), + [anon_sym_let] = ACTIONS(2366), + [anon_sym_let_DASHenv] = ACTIONS(2366), + [anon_sym_mut] = ACTIONS(2366), + [anon_sym_const] = ACTIONS(2366), + [aux_sym_cmd_identifier_token1] = ACTIONS(2366), + [aux_sym_cmd_identifier_token2] = ACTIONS(2366), + [aux_sym_cmd_identifier_token3] = ACTIONS(2366), + [aux_sym_cmd_identifier_token4] = ACTIONS(2366), + [aux_sym_cmd_identifier_token5] = ACTIONS(2366), + [aux_sym_cmd_identifier_token6] = ACTIONS(2366), + [aux_sym_cmd_identifier_token7] = ACTIONS(2366), + [aux_sym_cmd_identifier_token8] = ACTIONS(2366), + [aux_sym_cmd_identifier_token9] = ACTIONS(2366), + [aux_sym_cmd_identifier_token10] = ACTIONS(2366), + [aux_sym_cmd_identifier_token11] = ACTIONS(2366), + [aux_sym_cmd_identifier_token12] = ACTIONS(2366), + [aux_sym_cmd_identifier_token13] = ACTIONS(2366), + [aux_sym_cmd_identifier_token14] = ACTIONS(2366), + [aux_sym_cmd_identifier_token15] = ACTIONS(2366), + [aux_sym_cmd_identifier_token16] = ACTIONS(2366), + [aux_sym_cmd_identifier_token17] = ACTIONS(2366), + [aux_sym_cmd_identifier_token18] = ACTIONS(2366), + [aux_sym_cmd_identifier_token19] = ACTIONS(2366), + [aux_sym_cmd_identifier_token20] = ACTIONS(2366), + [aux_sym_cmd_identifier_token21] = ACTIONS(2366), + [aux_sym_cmd_identifier_token22] = ACTIONS(2366), + [aux_sym_cmd_identifier_token23] = ACTIONS(2366), + [aux_sym_cmd_identifier_token24] = ACTIONS(2366), + [aux_sym_cmd_identifier_token25] = ACTIONS(2366), + [aux_sym_cmd_identifier_token26] = ACTIONS(2366), + [aux_sym_cmd_identifier_token27] = ACTIONS(2366), + [aux_sym_cmd_identifier_token28] = ACTIONS(2366), + [aux_sym_cmd_identifier_token29] = ACTIONS(2366), + [aux_sym_cmd_identifier_token30] = ACTIONS(2366), + [aux_sym_cmd_identifier_token31] = ACTIONS(2366), + [aux_sym_cmd_identifier_token32] = ACTIONS(2366), + [aux_sym_cmd_identifier_token33] = ACTIONS(2366), + [aux_sym_cmd_identifier_token34] = ACTIONS(2366), + [aux_sym_cmd_identifier_token35] = ACTIONS(2366), + [aux_sym_cmd_identifier_token36] = ACTIONS(2366), + [aux_sym_cmd_identifier_token37] = ACTIONS(2366), + [aux_sym_cmd_identifier_token38] = ACTIONS(2366), + [aux_sym_cmd_identifier_token39] = ACTIONS(2366), + [aux_sym_cmd_identifier_token40] = ACTIONS(2366), + [anon_sym_def] = ACTIONS(2366), + [anon_sym_export_DASHenv] = ACTIONS(2366), + [anon_sym_extern] = ACTIONS(2366), + [anon_sym_module] = ACTIONS(2366), + [anon_sym_use] = ACTIONS(2366), + [anon_sym_LPAREN] = ACTIONS(2366), + [anon_sym_DOLLAR] = ACTIONS(2366), + [anon_sym_error] = ACTIONS(2366), + [anon_sym_DASH2] = ACTIONS(2366), + [anon_sym_break] = ACTIONS(2366), + [anon_sym_continue] = ACTIONS(2366), + [anon_sym_for] = ACTIONS(2366), + [anon_sym_in2] = ACTIONS(2366), + [anon_sym_loop] = ACTIONS(2366), + [anon_sym_make] = ACTIONS(2366), + [anon_sym_while] = ACTIONS(2366), + [anon_sym_do] = ACTIONS(2366), + [anon_sym_if] = ACTIONS(2366), + [anon_sym_else] = ACTIONS(2366), + [anon_sym_match] = ACTIONS(2366), + [anon_sym_RBRACE] = ACTIONS(2366), + [anon_sym_try] = ACTIONS(2366), + [anon_sym_catch] = ACTIONS(2366), + [anon_sym_return] = ACTIONS(2366), + [anon_sym_source] = ACTIONS(2366), + [anon_sym_source_DASHenv] = ACTIONS(2366), + [anon_sym_register] = ACTIONS(2366), + [anon_sym_hide] = ACTIONS(2366), + [anon_sym_hide_DASHenv] = ACTIONS(2366), + [anon_sym_overlay] = ACTIONS(2366), + [anon_sym_as] = ACTIONS(2366), + [anon_sym_PLUS2] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2366), + [aux_sym__val_number_decimal_token1] = ACTIONS(2366), + [aux_sym__val_number_decimal_token2] = ACTIONS(2366), + [aux_sym__val_number_decimal_token3] = ACTIONS(2366), + [aux_sym__val_number_decimal_token4] = ACTIONS(2366), + [aux_sym__val_number_token1] = ACTIONS(2366), + [aux_sym__val_number_token2] = ACTIONS(2366), + [aux_sym__val_number_token3] = ACTIONS(2366), + [aux_sym__val_number_token4] = ACTIONS(2366), + [aux_sym__val_number_token5] = ACTIONS(2366), + [aux_sym__val_number_token6] = ACTIONS(2366), + [anon_sym_DQUOTE] = ACTIONS(2366), + [sym__str_single_quotes] = ACTIONS(2366), + [sym__str_back_ticks] = ACTIONS(2366), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2366), + [sym__entry_separator] = ACTIONS(2368), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2371), + }, + [608] = { + [sym_comment] = STATE(608), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1018), + [aux_sym_cmd_identifier_token3] = ACTIONS(1018), + [aux_sym_cmd_identifier_token4] = ACTIONS(1018), + [aux_sym_cmd_identifier_token5] = ACTIONS(1018), + [aux_sym_cmd_identifier_token6] = ACTIONS(1018), + [aux_sym_cmd_identifier_token7] = ACTIONS(1018), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1018), + [aux_sym_cmd_identifier_token11] = ACTIONS(1018), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1018), + [aux_sym_cmd_identifier_token17] = ACTIONS(1018), + [aux_sym_cmd_identifier_token18] = ACTIONS(1018), + [aux_sym_cmd_identifier_token19] = ACTIONS(1018), + [aux_sym_cmd_identifier_token20] = ACTIONS(1018), + [aux_sym_cmd_identifier_token21] = ACTIONS(1018), + [aux_sym_cmd_identifier_token22] = ACTIONS(1018), + [aux_sym_cmd_identifier_token23] = ACTIONS(1018), + [aux_sym_cmd_identifier_token24] = ACTIONS(1018), + [aux_sym_cmd_identifier_token25] = ACTIONS(1018), + [aux_sym_cmd_identifier_token26] = ACTIONS(1018), + [aux_sym_cmd_identifier_token27] = ACTIONS(1018), + [aux_sym_cmd_identifier_token28] = ACTIONS(1018), + [aux_sym_cmd_identifier_token29] = ACTIONS(1018), + [aux_sym_cmd_identifier_token30] = ACTIONS(1018), + [aux_sym_cmd_identifier_token31] = ACTIONS(1018), + [aux_sym_cmd_identifier_token32] = ACTIONS(1018), + [aux_sym_cmd_identifier_token33] = ACTIONS(1018), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1018), + [aux_sym_cmd_identifier_token36] = ACTIONS(1018), + [aux_sym_cmd_identifier_token37] = ACTIONS(1018), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1018), + [aux_sym_cmd_identifier_token40] = ACTIONS(1018), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1018), + [anon_sym_COMMA] = ACTIONS(1018), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1018), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1018), + [aux_sym__val_number_decimal_token3] = ACTIONS(1018), + [aux_sym__val_number_decimal_token4] = ACTIONS(1018), + [aux_sym__val_number_token1] = ACTIONS(1018), + [aux_sym__val_number_token2] = ACTIONS(1018), + [aux_sym__val_number_token3] = ACTIONS(1018), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1018), + [sym__str_single_quotes] = ACTIONS(1018), + [sym__str_back_ticks] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), + [sym__entry_separator] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2433), + [sym_raw_string_begin] = ACTIONS(1020), }, - [636] = { - [sym_comment] = STATE(636), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_alias] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_let_DASHenv] = ACTIONS(2435), - [anon_sym_mut] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [aux_sym_cmd_identifier_token1] = ACTIONS(2435), - [aux_sym_cmd_identifier_token2] = ACTIONS(2435), - [aux_sym_cmd_identifier_token3] = ACTIONS(2435), - [aux_sym_cmd_identifier_token4] = ACTIONS(2435), - [aux_sym_cmd_identifier_token5] = ACTIONS(2435), - [aux_sym_cmd_identifier_token6] = ACTIONS(2435), - [aux_sym_cmd_identifier_token7] = ACTIONS(2435), - [aux_sym_cmd_identifier_token8] = ACTIONS(2435), - [aux_sym_cmd_identifier_token9] = ACTIONS(2435), - [aux_sym_cmd_identifier_token10] = ACTIONS(2435), - [aux_sym_cmd_identifier_token11] = ACTIONS(2435), - [aux_sym_cmd_identifier_token12] = ACTIONS(2435), - [aux_sym_cmd_identifier_token13] = ACTIONS(2435), - [aux_sym_cmd_identifier_token14] = ACTIONS(2435), - [aux_sym_cmd_identifier_token15] = ACTIONS(2435), - [aux_sym_cmd_identifier_token16] = ACTIONS(2435), - [aux_sym_cmd_identifier_token17] = ACTIONS(2435), - [aux_sym_cmd_identifier_token18] = ACTIONS(2435), - [aux_sym_cmd_identifier_token19] = ACTIONS(2435), - [aux_sym_cmd_identifier_token20] = ACTIONS(2435), - [aux_sym_cmd_identifier_token21] = ACTIONS(2435), - [aux_sym_cmd_identifier_token22] = ACTIONS(2435), - [aux_sym_cmd_identifier_token23] = ACTIONS(2435), - [aux_sym_cmd_identifier_token24] = ACTIONS(2435), - [aux_sym_cmd_identifier_token25] = ACTIONS(2435), - [aux_sym_cmd_identifier_token26] = ACTIONS(2435), - [aux_sym_cmd_identifier_token27] = ACTIONS(2435), - [aux_sym_cmd_identifier_token28] = ACTIONS(2435), - [aux_sym_cmd_identifier_token29] = ACTIONS(2435), - [aux_sym_cmd_identifier_token30] = ACTIONS(2435), - [aux_sym_cmd_identifier_token31] = ACTIONS(2435), - [aux_sym_cmd_identifier_token32] = ACTIONS(2435), - [aux_sym_cmd_identifier_token33] = ACTIONS(2435), - [aux_sym_cmd_identifier_token34] = ACTIONS(2435), - [aux_sym_cmd_identifier_token35] = ACTIONS(2435), - [aux_sym_cmd_identifier_token36] = ACTIONS(2435), - [aux_sym_cmd_identifier_token37] = ACTIONS(2435), - [aux_sym_cmd_identifier_token38] = ACTIONS(2435), - [aux_sym_cmd_identifier_token39] = ACTIONS(2435), - [aux_sym_cmd_identifier_token40] = ACTIONS(2435), - [anon_sym_def] = ACTIONS(2435), - [anon_sym_export_DASHenv] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), - [anon_sym_LPAREN] = ACTIONS(2435), - [anon_sym_DOLLAR] = ACTIONS(2435), - [anon_sym_error] = ACTIONS(2435), - [anon_sym_DASH2] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_in2] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_make] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), - [anon_sym_RBRACE] = ACTIONS(2435), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_catch] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_source] = ACTIONS(2435), - [anon_sym_source_DASHenv] = ACTIONS(2435), - [anon_sym_register] = ACTIONS(2435), - [anon_sym_hide] = ACTIONS(2435), - [anon_sym_hide_DASHenv] = ACTIONS(2435), - [anon_sym_overlay] = ACTIONS(2435), - [anon_sym_as] = ACTIONS(2435), - [anon_sym_PLUS2] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), - [aux_sym__val_number_decimal_token1] = ACTIONS(2435), - [aux_sym__val_number_decimal_token2] = ACTIONS(2435), - [aux_sym__val_number_decimal_token3] = ACTIONS(2435), - [aux_sym__val_number_decimal_token4] = ACTIONS(2435), - [aux_sym__val_number_token1] = ACTIONS(2435), - [aux_sym__val_number_token2] = ACTIONS(2435), - [aux_sym__val_number_token3] = ACTIONS(2435), - [aux_sym__val_number_token4] = ACTIONS(2435), - [aux_sym__val_number_token5] = ACTIONS(2435), - [aux_sym__val_number_token6] = ACTIONS(2435), - [anon_sym_DQUOTE] = ACTIONS(2435), - [sym__str_single_quotes] = ACTIONS(2435), - [sym__str_back_ticks] = ACTIONS(2435), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), - [sym__entry_separator] = ACTIONS(2437), + [609] = { + [sym_comment] = STATE(609), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1863), + [aux_sym_cmd_identifier_token3] = ACTIONS(1863), + [aux_sym_cmd_identifier_token4] = ACTIONS(1863), + [aux_sym_cmd_identifier_token5] = ACTIONS(1863), + [aux_sym_cmd_identifier_token6] = ACTIONS(1863), + [aux_sym_cmd_identifier_token7] = ACTIONS(1863), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1863), + [aux_sym_cmd_identifier_token11] = ACTIONS(1863), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1863), + [aux_sym_cmd_identifier_token17] = ACTIONS(1863), + [aux_sym_cmd_identifier_token18] = ACTIONS(1863), + [aux_sym_cmd_identifier_token19] = ACTIONS(1863), + [aux_sym_cmd_identifier_token20] = ACTIONS(1863), + [aux_sym_cmd_identifier_token21] = ACTIONS(1863), + [aux_sym_cmd_identifier_token22] = ACTIONS(1863), + [aux_sym_cmd_identifier_token23] = ACTIONS(1863), + [aux_sym_cmd_identifier_token24] = ACTIONS(1863), + [aux_sym_cmd_identifier_token25] = ACTIONS(1863), + [aux_sym_cmd_identifier_token26] = ACTIONS(1863), + [aux_sym_cmd_identifier_token27] = ACTIONS(1863), + [aux_sym_cmd_identifier_token28] = ACTIONS(1863), + [aux_sym_cmd_identifier_token29] = ACTIONS(1863), + [aux_sym_cmd_identifier_token30] = ACTIONS(1863), + [aux_sym_cmd_identifier_token31] = ACTIONS(1863), + [aux_sym_cmd_identifier_token32] = ACTIONS(1863), + [aux_sym_cmd_identifier_token33] = ACTIONS(1863), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1863), + [aux_sym_cmd_identifier_token36] = ACTIONS(1863), + [aux_sym_cmd_identifier_token37] = ACTIONS(1863), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1863), + [aux_sym_cmd_identifier_token40] = ACTIONS(1863), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1863), + [anon_sym_COMMA] = ACTIONS(1863), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1863), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1863), + [aux_sym__val_number_decimal_token3] = ACTIONS(1863), + [aux_sym__val_number_decimal_token4] = ACTIONS(1863), + [aux_sym__val_number_token1] = ACTIONS(1863), + [aux_sym__val_number_token2] = ACTIONS(1863), + [aux_sym__val_number_token3] = ACTIONS(1863), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1863), + [sym__str_single_quotes] = ACTIONS(1863), + [sym__str_back_ticks] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [sym__entry_separator] = ACTIONS(1865), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2437), + [sym_raw_string_begin] = ACTIONS(1865), }, - [637] = { - [sym_comment] = STATE(637), - [anon_sym_export] = ACTIONS(2439), - [anon_sym_alias] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_let_DASHenv] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [aux_sym_cmd_identifier_token1] = ACTIONS(2439), - [aux_sym_cmd_identifier_token2] = ACTIONS(2439), - [aux_sym_cmd_identifier_token3] = ACTIONS(2439), - [aux_sym_cmd_identifier_token4] = ACTIONS(2439), - [aux_sym_cmd_identifier_token5] = ACTIONS(2439), - [aux_sym_cmd_identifier_token6] = ACTIONS(2439), - [aux_sym_cmd_identifier_token7] = ACTIONS(2439), - [aux_sym_cmd_identifier_token8] = ACTIONS(2439), - [aux_sym_cmd_identifier_token9] = ACTIONS(2439), - [aux_sym_cmd_identifier_token10] = ACTIONS(2439), - [aux_sym_cmd_identifier_token11] = ACTIONS(2439), - [aux_sym_cmd_identifier_token12] = ACTIONS(2439), - [aux_sym_cmd_identifier_token13] = ACTIONS(2439), - [aux_sym_cmd_identifier_token14] = ACTIONS(2439), - [aux_sym_cmd_identifier_token15] = ACTIONS(2439), - [aux_sym_cmd_identifier_token16] = ACTIONS(2439), - [aux_sym_cmd_identifier_token17] = ACTIONS(2439), - [aux_sym_cmd_identifier_token18] = ACTIONS(2439), - [aux_sym_cmd_identifier_token19] = ACTIONS(2439), - [aux_sym_cmd_identifier_token20] = ACTIONS(2439), - [aux_sym_cmd_identifier_token21] = ACTIONS(2439), - [aux_sym_cmd_identifier_token22] = ACTIONS(2439), - [aux_sym_cmd_identifier_token23] = ACTIONS(2439), - [aux_sym_cmd_identifier_token24] = ACTIONS(2439), - [aux_sym_cmd_identifier_token25] = ACTIONS(2439), - [aux_sym_cmd_identifier_token26] = ACTIONS(2439), - [aux_sym_cmd_identifier_token27] = ACTIONS(2439), - [aux_sym_cmd_identifier_token28] = ACTIONS(2439), - [aux_sym_cmd_identifier_token29] = ACTIONS(2439), - [aux_sym_cmd_identifier_token30] = ACTIONS(2439), - [aux_sym_cmd_identifier_token31] = ACTIONS(2439), - [aux_sym_cmd_identifier_token32] = ACTIONS(2439), - [aux_sym_cmd_identifier_token33] = ACTIONS(2439), - [aux_sym_cmd_identifier_token34] = ACTIONS(2439), - [aux_sym_cmd_identifier_token35] = ACTIONS(2439), - [aux_sym_cmd_identifier_token36] = ACTIONS(2439), - [aux_sym_cmd_identifier_token37] = ACTIONS(2439), - [aux_sym_cmd_identifier_token38] = ACTIONS(2439), - [aux_sym_cmd_identifier_token39] = ACTIONS(2439), - [aux_sym_cmd_identifier_token40] = ACTIONS(2439), - [anon_sym_def] = ACTIONS(2439), - [anon_sym_export_DASHenv] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_module] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), - [anon_sym_LPAREN] = ACTIONS(2439), - [anon_sym_DOLLAR] = ACTIONS(2439), - [anon_sym_error] = ACTIONS(2439), - [anon_sym_DASH2] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_in2] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_make] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_do] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_else] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), - [anon_sym_RBRACE] = ACTIONS(2439), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_catch] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_source] = ACTIONS(2439), - [anon_sym_source_DASHenv] = ACTIONS(2439), - [anon_sym_register] = ACTIONS(2439), - [anon_sym_hide] = ACTIONS(2439), - [anon_sym_hide_DASHenv] = ACTIONS(2439), - [anon_sym_overlay] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_PLUS2] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), - [aux_sym__val_number_decimal_token2] = ACTIONS(2439), - [aux_sym__val_number_decimal_token3] = ACTIONS(2439), - [aux_sym__val_number_decimal_token4] = ACTIONS(2439), - [aux_sym__val_number_token1] = ACTIONS(2439), - [aux_sym__val_number_token2] = ACTIONS(2439), - [aux_sym__val_number_token3] = ACTIONS(2439), - [aux_sym__val_number_token4] = ACTIONS(2439), - [aux_sym__val_number_token5] = ACTIONS(2439), - [aux_sym__val_number_token6] = ACTIONS(2439), - [anon_sym_DQUOTE] = ACTIONS(2439), - [sym__str_single_quotes] = ACTIONS(2439), - [sym__str_back_ticks] = ACTIONS(2439), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), - [sym__entry_separator] = ACTIONS(2441), + [610] = { + [sym_comment] = STATE(610), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1875), + [aux_sym_cmd_identifier_token3] = ACTIONS(1875), + [aux_sym_cmd_identifier_token4] = ACTIONS(1875), + [aux_sym_cmd_identifier_token5] = ACTIONS(1875), + [aux_sym_cmd_identifier_token6] = ACTIONS(1875), + [aux_sym_cmd_identifier_token7] = ACTIONS(1875), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1875), + [aux_sym_cmd_identifier_token11] = ACTIONS(1875), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1875), + [aux_sym_cmd_identifier_token17] = ACTIONS(1875), + [aux_sym_cmd_identifier_token18] = ACTIONS(1875), + [aux_sym_cmd_identifier_token19] = ACTIONS(1875), + [aux_sym_cmd_identifier_token20] = ACTIONS(1875), + [aux_sym_cmd_identifier_token21] = ACTIONS(1875), + [aux_sym_cmd_identifier_token22] = ACTIONS(1875), + [aux_sym_cmd_identifier_token23] = ACTIONS(1875), + [aux_sym_cmd_identifier_token24] = ACTIONS(1875), + [aux_sym_cmd_identifier_token25] = ACTIONS(1875), + [aux_sym_cmd_identifier_token26] = ACTIONS(1875), + [aux_sym_cmd_identifier_token27] = ACTIONS(1875), + [aux_sym_cmd_identifier_token28] = ACTIONS(1875), + [aux_sym_cmd_identifier_token29] = ACTIONS(1875), + [aux_sym_cmd_identifier_token30] = ACTIONS(1875), + [aux_sym_cmd_identifier_token31] = ACTIONS(1875), + [aux_sym_cmd_identifier_token32] = ACTIONS(1875), + [aux_sym_cmd_identifier_token33] = ACTIONS(1875), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1875), + [aux_sym_cmd_identifier_token36] = ACTIONS(1875), + [aux_sym_cmd_identifier_token37] = ACTIONS(1875), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1875), + [aux_sym_cmd_identifier_token40] = ACTIONS(1875), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1875), + [anon_sym_COMMA] = ACTIONS(1875), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1875), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1875), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1875), + [aux_sym__val_number_decimal_token3] = ACTIONS(1875), + [aux_sym__val_number_decimal_token4] = ACTIONS(1875), + [aux_sym__val_number_token1] = ACTIONS(1875), + [aux_sym__val_number_token2] = ACTIONS(1875), + [aux_sym__val_number_token3] = ACTIONS(1875), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1875), + [sym__str_single_quotes] = ACTIONS(1875), + [sym__str_back_ticks] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1875), + [sym__entry_separator] = ACTIONS(1877), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2441), + [sym_raw_string_begin] = ACTIONS(1877), }, - [638] = { - [sym_comment] = STATE(638), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [aux_sym_cmd_identifier_token1] = ACTIONS(2443), - [aux_sym_cmd_identifier_token2] = ACTIONS(2443), - [aux_sym_cmd_identifier_token3] = ACTIONS(2443), - [aux_sym_cmd_identifier_token4] = ACTIONS(2443), - [aux_sym_cmd_identifier_token5] = ACTIONS(2443), - [aux_sym_cmd_identifier_token6] = ACTIONS(2443), - [aux_sym_cmd_identifier_token7] = ACTIONS(2443), - [aux_sym_cmd_identifier_token8] = ACTIONS(2443), - [aux_sym_cmd_identifier_token9] = ACTIONS(2443), - [aux_sym_cmd_identifier_token10] = ACTIONS(2443), - [aux_sym_cmd_identifier_token11] = ACTIONS(2443), - [aux_sym_cmd_identifier_token12] = ACTIONS(2443), - [aux_sym_cmd_identifier_token13] = ACTIONS(2443), - [aux_sym_cmd_identifier_token14] = ACTIONS(2443), - [aux_sym_cmd_identifier_token15] = ACTIONS(2443), - [aux_sym_cmd_identifier_token16] = ACTIONS(2443), - [aux_sym_cmd_identifier_token17] = ACTIONS(2443), - [aux_sym_cmd_identifier_token18] = ACTIONS(2443), - [aux_sym_cmd_identifier_token19] = ACTIONS(2443), - [aux_sym_cmd_identifier_token20] = ACTIONS(2443), - [aux_sym_cmd_identifier_token21] = ACTIONS(2443), - [aux_sym_cmd_identifier_token22] = ACTIONS(2443), - [aux_sym_cmd_identifier_token23] = ACTIONS(2443), - [aux_sym_cmd_identifier_token24] = ACTIONS(2443), - [aux_sym_cmd_identifier_token25] = ACTIONS(2443), - [aux_sym_cmd_identifier_token26] = ACTIONS(2443), - [aux_sym_cmd_identifier_token27] = ACTIONS(2443), - [aux_sym_cmd_identifier_token28] = ACTIONS(2443), - [aux_sym_cmd_identifier_token29] = ACTIONS(2443), - [aux_sym_cmd_identifier_token30] = ACTIONS(2443), - [aux_sym_cmd_identifier_token31] = ACTIONS(2443), - [aux_sym_cmd_identifier_token32] = ACTIONS(2443), - [aux_sym_cmd_identifier_token33] = ACTIONS(2443), - [aux_sym_cmd_identifier_token34] = ACTIONS(2443), - [aux_sym_cmd_identifier_token35] = ACTIONS(2443), - [aux_sym_cmd_identifier_token36] = ACTIONS(2443), - [aux_sym_cmd_identifier_token37] = ACTIONS(2443), - [aux_sym_cmd_identifier_token38] = ACTIONS(2443), - [aux_sym_cmd_identifier_token39] = ACTIONS(2443), - [aux_sym_cmd_identifier_token40] = ACTIONS(2443), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), - [anon_sym_LPAREN] = ACTIONS(2443), - [anon_sym_DOLLAR] = ACTIONS(2443), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_in2] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_make] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), - [anon_sym_RBRACE] = ACTIONS(2443), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_catch] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), - [aux_sym__val_number_decimal_token1] = ACTIONS(2443), - [aux_sym__val_number_decimal_token2] = ACTIONS(2443), - [aux_sym__val_number_decimal_token3] = ACTIONS(2443), - [aux_sym__val_number_decimal_token4] = ACTIONS(2443), - [aux_sym__val_number_token1] = ACTIONS(2443), - [aux_sym__val_number_token2] = ACTIONS(2443), - [aux_sym__val_number_token3] = ACTIONS(2443), - [aux_sym__val_number_token4] = ACTIONS(2443), - [aux_sym__val_number_token5] = ACTIONS(2443), - [aux_sym__val_number_token6] = ACTIONS(2443), - [anon_sym_DQUOTE] = ACTIONS(2443), - [sym__str_single_quotes] = ACTIONS(2443), - [sym__str_back_ticks] = ACTIONS(2443), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), - [sym__entry_separator] = ACTIONS(2445), + [611] = { + [sym_comment] = STATE(611), + [anon_sym_export] = ACTIONS(2373), + [anon_sym_alias] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_DASHenv] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [aux_sym_cmd_identifier_token1] = ACTIONS(2373), + [aux_sym_cmd_identifier_token2] = ACTIONS(2373), + [aux_sym_cmd_identifier_token3] = ACTIONS(2373), + [aux_sym_cmd_identifier_token4] = ACTIONS(2373), + [aux_sym_cmd_identifier_token5] = ACTIONS(2373), + [aux_sym_cmd_identifier_token6] = ACTIONS(2373), + [aux_sym_cmd_identifier_token7] = ACTIONS(2373), + [aux_sym_cmd_identifier_token8] = ACTIONS(2373), + [aux_sym_cmd_identifier_token9] = ACTIONS(2373), + [aux_sym_cmd_identifier_token10] = ACTIONS(2373), + [aux_sym_cmd_identifier_token11] = ACTIONS(2373), + [aux_sym_cmd_identifier_token12] = ACTIONS(2373), + [aux_sym_cmd_identifier_token13] = ACTIONS(2373), + [aux_sym_cmd_identifier_token14] = ACTIONS(2373), + [aux_sym_cmd_identifier_token15] = ACTIONS(2373), + [aux_sym_cmd_identifier_token16] = ACTIONS(2373), + [aux_sym_cmd_identifier_token17] = ACTIONS(2373), + [aux_sym_cmd_identifier_token18] = ACTIONS(2373), + [aux_sym_cmd_identifier_token19] = ACTIONS(2373), + [aux_sym_cmd_identifier_token20] = ACTIONS(2373), + [aux_sym_cmd_identifier_token21] = ACTIONS(2373), + [aux_sym_cmd_identifier_token22] = ACTIONS(2373), + [aux_sym_cmd_identifier_token23] = ACTIONS(2373), + [aux_sym_cmd_identifier_token24] = ACTIONS(2373), + [aux_sym_cmd_identifier_token25] = ACTIONS(2373), + [aux_sym_cmd_identifier_token26] = ACTIONS(2373), + [aux_sym_cmd_identifier_token27] = ACTIONS(2373), + [aux_sym_cmd_identifier_token28] = ACTIONS(2373), + [aux_sym_cmd_identifier_token29] = ACTIONS(2373), + [aux_sym_cmd_identifier_token30] = ACTIONS(2373), + [aux_sym_cmd_identifier_token31] = ACTIONS(2373), + [aux_sym_cmd_identifier_token32] = ACTIONS(2373), + [aux_sym_cmd_identifier_token33] = ACTIONS(2373), + [aux_sym_cmd_identifier_token34] = ACTIONS(2373), + [aux_sym_cmd_identifier_token35] = ACTIONS(2373), + [aux_sym_cmd_identifier_token36] = ACTIONS(2373), + [aux_sym_cmd_identifier_token37] = ACTIONS(2373), + [aux_sym_cmd_identifier_token38] = ACTIONS(2373), + [aux_sym_cmd_identifier_token39] = ACTIONS(2373), + [aux_sym_cmd_identifier_token40] = ACTIONS(2373), + [anon_sym_def] = ACTIONS(2373), + [anon_sym_export_DASHenv] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2373), + [anon_sym_COMMA] = ACTIONS(2373), + [anon_sym_DOLLAR] = ACTIONS(2373), + [anon_sym_error] = ACTIONS(2373), + [anon_sym_DASH2] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_in2] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_make] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2373), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_catch] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_source] = ACTIONS(2373), + [anon_sym_source_DASHenv] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_hide] = ACTIONS(2373), + [anon_sym_hide_DASHenv] = ACTIONS(2373), + [anon_sym_overlay] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_PLUS2] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2373), + [aux_sym__val_number_decimal_token1] = ACTIONS(2373), + [aux_sym__val_number_decimal_token2] = ACTIONS(2373), + [aux_sym__val_number_decimal_token3] = ACTIONS(2373), + [aux_sym__val_number_decimal_token4] = ACTIONS(2373), + [aux_sym__val_number_token1] = ACTIONS(2373), + [aux_sym__val_number_token2] = ACTIONS(2373), + [aux_sym__val_number_token3] = ACTIONS(2373), + [aux_sym__val_number_token4] = ACTIONS(2373), + [aux_sym__val_number_token5] = ACTIONS(2373), + [aux_sym__val_number_token6] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2373), + [sym__str_single_quotes] = ACTIONS(2373), + [sym__str_back_ticks] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2373), + [sym__entry_separator] = ACTIONS(2375), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2445), + [sym_raw_string_begin] = ACTIONS(2375), }, - [639] = { - [sym_comment] = STATE(639), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1957), - [aux_sym_cmd_identifier_token3] = ACTIONS(1957), - [aux_sym_cmd_identifier_token4] = ACTIONS(1957), - [aux_sym_cmd_identifier_token5] = ACTIONS(1957), - [aux_sym_cmd_identifier_token6] = ACTIONS(1957), - [aux_sym_cmd_identifier_token7] = ACTIONS(1957), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1957), - [aux_sym_cmd_identifier_token11] = ACTIONS(1957), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1957), - [aux_sym_cmd_identifier_token17] = ACTIONS(1957), - [aux_sym_cmd_identifier_token18] = ACTIONS(1957), - [aux_sym_cmd_identifier_token19] = ACTIONS(1957), - [aux_sym_cmd_identifier_token20] = ACTIONS(1957), - [aux_sym_cmd_identifier_token21] = ACTIONS(1957), - [aux_sym_cmd_identifier_token22] = ACTIONS(1957), - [aux_sym_cmd_identifier_token23] = ACTIONS(1957), - [aux_sym_cmd_identifier_token24] = ACTIONS(1957), - [aux_sym_cmd_identifier_token25] = ACTIONS(1957), - [aux_sym_cmd_identifier_token26] = ACTIONS(1957), - [aux_sym_cmd_identifier_token27] = ACTIONS(1957), - [aux_sym_cmd_identifier_token28] = ACTIONS(1957), - [aux_sym_cmd_identifier_token29] = ACTIONS(1957), - [aux_sym_cmd_identifier_token30] = ACTIONS(1957), - [aux_sym_cmd_identifier_token31] = ACTIONS(1957), - [aux_sym_cmd_identifier_token32] = ACTIONS(1957), - [aux_sym_cmd_identifier_token33] = ACTIONS(1957), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1957), - [aux_sym_cmd_identifier_token36] = ACTIONS(1957), - [aux_sym_cmd_identifier_token37] = ACTIONS(1957), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1957), - [aux_sym_cmd_identifier_token40] = ACTIONS(1957), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1957), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1957), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1957), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1957), - [aux_sym__val_number_decimal_token3] = ACTIONS(1957), - [aux_sym__val_number_decimal_token4] = ACTIONS(1957), - [aux_sym__val_number_token1] = ACTIONS(1957), - [aux_sym__val_number_token2] = ACTIONS(1957), - [aux_sym__val_number_token3] = ACTIONS(1957), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1957), - [sym__str_single_quotes] = ACTIONS(1957), - [sym__str_back_ticks] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1957), - [sym__entry_separator] = ACTIONS(1959), + [612] = { + [sym_comment] = STATE(612), + [anon_sym_export] = ACTIONS(2377), + [anon_sym_alias] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_let_DASHenv] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [aux_sym_cmd_identifier_token1] = ACTIONS(2377), + [aux_sym_cmd_identifier_token2] = ACTIONS(2377), + [aux_sym_cmd_identifier_token3] = ACTIONS(2377), + [aux_sym_cmd_identifier_token4] = ACTIONS(2377), + [aux_sym_cmd_identifier_token5] = ACTIONS(2377), + [aux_sym_cmd_identifier_token6] = ACTIONS(2377), + [aux_sym_cmd_identifier_token7] = ACTIONS(2377), + [aux_sym_cmd_identifier_token8] = ACTIONS(2377), + [aux_sym_cmd_identifier_token9] = ACTIONS(2377), + [aux_sym_cmd_identifier_token10] = ACTIONS(2377), + [aux_sym_cmd_identifier_token11] = ACTIONS(2377), + [aux_sym_cmd_identifier_token12] = ACTIONS(2377), + [aux_sym_cmd_identifier_token13] = ACTIONS(2377), + [aux_sym_cmd_identifier_token14] = ACTIONS(2377), + [aux_sym_cmd_identifier_token15] = ACTIONS(2377), + [aux_sym_cmd_identifier_token16] = ACTIONS(2377), + [aux_sym_cmd_identifier_token17] = ACTIONS(2377), + [aux_sym_cmd_identifier_token18] = ACTIONS(2377), + [aux_sym_cmd_identifier_token19] = ACTIONS(2377), + [aux_sym_cmd_identifier_token20] = ACTIONS(2377), + [aux_sym_cmd_identifier_token21] = ACTIONS(2377), + [aux_sym_cmd_identifier_token22] = ACTIONS(2377), + [aux_sym_cmd_identifier_token23] = ACTIONS(2377), + [aux_sym_cmd_identifier_token24] = ACTIONS(2377), + [aux_sym_cmd_identifier_token25] = ACTIONS(2377), + [aux_sym_cmd_identifier_token26] = ACTIONS(2377), + [aux_sym_cmd_identifier_token27] = ACTIONS(2377), + [aux_sym_cmd_identifier_token28] = ACTIONS(2377), + [aux_sym_cmd_identifier_token29] = ACTIONS(2377), + [aux_sym_cmd_identifier_token30] = ACTIONS(2377), + [aux_sym_cmd_identifier_token31] = ACTIONS(2377), + [aux_sym_cmd_identifier_token32] = ACTIONS(2377), + [aux_sym_cmd_identifier_token33] = ACTIONS(2377), + [aux_sym_cmd_identifier_token34] = ACTIONS(2377), + [aux_sym_cmd_identifier_token35] = ACTIONS(2377), + [aux_sym_cmd_identifier_token36] = ACTIONS(2377), + [aux_sym_cmd_identifier_token37] = ACTIONS(2377), + [aux_sym_cmd_identifier_token38] = ACTIONS(2377), + [aux_sym_cmd_identifier_token39] = ACTIONS(2377), + [aux_sym_cmd_identifier_token40] = ACTIONS(2377), + [anon_sym_def] = ACTIONS(2377), + [anon_sym_export_DASHenv] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym_module] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2377), + [anon_sym_COMMA] = ACTIONS(2377), + [anon_sym_DOLLAR] = ACTIONS(2377), + [anon_sym_error] = ACTIONS(2377), + [anon_sym_DASH2] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_in2] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_make] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2377), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_catch] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_source] = ACTIONS(2377), + [anon_sym_source_DASHenv] = ACTIONS(2377), + [anon_sym_register] = ACTIONS(2377), + [anon_sym_hide] = ACTIONS(2377), + [anon_sym_hide_DASHenv] = ACTIONS(2377), + [anon_sym_overlay] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_PLUS2] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2377), + [aux_sym__val_number_decimal_token1] = ACTIONS(2377), + [aux_sym__val_number_decimal_token2] = ACTIONS(2377), + [aux_sym__val_number_decimal_token3] = ACTIONS(2377), + [aux_sym__val_number_decimal_token4] = ACTIONS(2377), + [aux_sym__val_number_token1] = ACTIONS(2377), + [aux_sym__val_number_token2] = ACTIONS(2377), + [aux_sym__val_number_token3] = ACTIONS(2377), + [aux_sym__val_number_token4] = ACTIONS(2377), + [aux_sym__val_number_token5] = ACTIONS(2377), + [aux_sym__val_number_token6] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2377), + [sym__str_single_quotes] = ACTIONS(2377), + [sym__str_back_ticks] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2377), + [sym__entry_separator] = ACTIONS(2379), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1959), + [sym_raw_string_begin] = ACTIONS(2379), }, - [640] = { - [sym_comment] = STATE(640), - [anon_sym_export] = ACTIONS(2447), - [anon_sym_alias] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_let_DASHenv] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [aux_sym_cmd_identifier_token1] = ACTIONS(2447), - [aux_sym_cmd_identifier_token2] = ACTIONS(2447), - [aux_sym_cmd_identifier_token3] = ACTIONS(2447), - [aux_sym_cmd_identifier_token4] = ACTIONS(2447), - [aux_sym_cmd_identifier_token5] = ACTIONS(2447), - [aux_sym_cmd_identifier_token6] = ACTIONS(2447), - [aux_sym_cmd_identifier_token7] = ACTIONS(2447), - [aux_sym_cmd_identifier_token8] = ACTIONS(2447), - [aux_sym_cmd_identifier_token9] = ACTIONS(2447), - [aux_sym_cmd_identifier_token10] = ACTIONS(2447), - [aux_sym_cmd_identifier_token11] = ACTIONS(2447), - [aux_sym_cmd_identifier_token12] = ACTIONS(2447), - [aux_sym_cmd_identifier_token13] = ACTIONS(2447), - [aux_sym_cmd_identifier_token14] = ACTIONS(2447), - [aux_sym_cmd_identifier_token15] = ACTIONS(2447), - [aux_sym_cmd_identifier_token16] = ACTIONS(2447), - [aux_sym_cmd_identifier_token17] = ACTIONS(2447), - [aux_sym_cmd_identifier_token18] = ACTIONS(2447), - [aux_sym_cmd_identifier_token19] = ACTIONS(2447), - [aux_sym_cmd_identifier_token20] = ACTIONS(2447), - [aux_sym_cmd_identifier_token21] = ACTIONS(2447), - [aux_sym_cmd_identifier_token22] = ACTIONS(2447), - [aux_sym_cmd_identifier_token23] = ACTIONS(2447), - [aux_sym_cmd_identifier_token24] = ACTIONS(2447), - [aux_sym_cmd_identifier_token25] = ACTIONS(2447), - [aux_sym_cmd_identifier_token26] = ACTIONS(2447), - [aux_sym_cmd_identifier_token27] = ACTIONS(2447), - [aux_sym_cmd_identifier_token28] = ACTIONS(2447), - [aux_sym_cmd_identifier_token29] = ACTIONS(2447), - [aux_sym_cmd_identifier_token30] = ACTIONS(2447), - [aux_sym_cmd_identifier_token31] = ACTIONS(2447), - [aux_sym_cmd_identifier_token32] = ACTIONS(2447), - [aux_sym_cmd_identifier_token33] = ACTIONS(2447), - [aux_sym_cmd_identifier_token34] = ACTIONS(2447), - [aux_sym_cmd_identifier_token35] = ACTIONS(2447), - [aux_sym_cmd_identifier_token36] = ACTIONS(2447), - [aux_sym_cmd_identifier_token37] = ACTIONS(2447), - [aux_sym_cmd_identifier_token38] = ACTIONS(2447), - [aux_sym_cmd_identifier_token39] = ACTIONS(2447), - [aux_sym_cmd_identifier_token40] = ACTIONS(2447), - [anon_sym_def] = ACTIONS(2447), - [anon_sym_export_DASHenv] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_module] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), - [anon_sym_LPAREN] = ACTIONS(2447), - [anon_sym_DOLLAR] = ACTIONS(2447), - [anon_sym_error] = ACTIONS(2447), - [anon_sym_DASH2] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_in2] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_make] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), - [anon_sym_RBRACE] = ACTIONS(2447), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_catch] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_source] = ACTIONS(2447), - [anon_sym_source_DASHenv] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_hide] = ACTIONS(2447), - [anon_sym_hide_DASHenv] = ACTIONS(2447), - [anon_sym_overlay] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_PLUS2] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), - [aux_sym__val_number_decimal_token1] = ACTIONS(2447), - [aux_sym__val_number_decimal_token2] = ACTIONS(2447), - [aux_sym__val_number_decimal_token3] = ACTIONS(2447), - [aux_sym__val_number_decimal_token4] = ACTIONS(2447), - [aux_sym__val_number_token1] = ACTIONS(2447), - [aux_sym__val_number_token2] = ACTIONS(2447), - [aux_sym__val_number_token3] = ACTIONS(2447), - [aux_sym__val_number_token4] = ACTIONS(2447), - [aux_sym__val_number_token5] = ACTIONS(2447), - [aux_sym__val_number_token6] = ACTIONS(2447), - [anon_sym_DQUOTE] = ACTIONS(2447), - [sym__str_single_quotes] = ACTIONS(2447), - [sym__str_back_ticks] = ACTIONS(2447), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), - [sym__entry_separator] = ACTIONS(2449), + [613] = { + [sym_comment] = STATE(613), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1879), + [aux_sym_cmd_identifier_token3] = ACTIONS(1879), + [aux_sym_cmd_identifier_token4] = ACTIONS(1879), + [aux_sym_cmd_identifier_token5] = ACTIONS(1879), + [aux_sym_cmd_identifier_token6] = ACTIONS(1879), + [aux_sym_cmd_identifier_token7] = ACTIONS(1879), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1879), + [aux_sym_cmd_identifier_token11] = ACTIONS(1879), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1879), + [aux_sym_cmd_identifier_token17] = ACTIONS(1879), + [aux_sym_cmd_identifier_token18] = ACTIONS(1879), + [aux_sym_cmd_identifier_token19] = ACTIONS(1879), + [aux_sym_cmd_identifier_token20] = ACTIONS(1879), + [aux_sym_cmd_identifier_token21] = ACTIONS(1879), + [aux_sym_cmd_identifier_token22] = ACTIONS(1879), + [aux_sym_cmd_identifier_token23] = ACTIONS(1879), + [aux_sym_cmd_identifier_token24] = ACTIONS(1879), + [aux_sym_cmd_identifier_token25] = ACTIONS(1879), + [aux_sym_cmd_identifier_token26] = ACTIONS(1879), + [aux_sym_cmd_identifier_token27] = ACTIONS(1879), + [aux_sym_cmd_identifier_token28] = ACTIONS(1879), + [aux_sym_cmd_identifier_token29] = ACTIONS(1879), + [aux_sym_cmd_identifier_token30] = ACTIONS(1879), + [aux_sym_cmd_identifier_token31] = ACTIONS(1879), + [aux_sym_cmd_identifier_token32] = ACTIONS(1879), + [aux_sym_cmd_identifier_token33] = ACTIONS(1879), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1879), + [aux_sym_cmd_identifier_token36] = ACTIONS(1879), + [aux_sym_cmd_identifier_token37] = ACTIONS(1879), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1879), + [aux_sym_cmd_identifier_token40] = ACTIONS(1879), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1879), + [anon_sym_COMMA] = ACTIONS(1879), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1879), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1879), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1879), + [aux_sym__val_number_decimal_token3] = ACTIONS(1879), + [aux_sym__val_number_decimal_token4] = ACTIONS(1879), + [aux_sym__val_number_token1] = ACTIONS(1879), + [aux_sym__val_number_token2] = ACTIONS(1879), + [aux_sym__val_number_token3] = ACTIONS(1879), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1879), + [sym__str_single_quotes] = ACTIONS(1879), + [sym__str_back_ticks] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1879), + [sym__entry_separator] = ACTIONS(1881), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2449), + [sym_raw_string_begin] = ACTIONS(1881), }, - [641] = { - [sym_comment] = STATE(641), - [anon_sym_export] = ACTIONS(2451), - [anon_sym_alias] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_let_DASHenv] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [aux_sym_cmd_identifier_token1] = ACTIONS(2451), - [aux_sym_cmd_identifier_token2] = ACTIONS(2451), - [aux_sym_cmd_identifier_token3] = ACTIONS(2451), - [aux_sym_cmd_identifier_token4] = ACTIONS(2451), - [aux_sym_cmd_identifier_token5] = ACTIONS(2451), - [aux_sym_cmd_identifier_token6] = ACTIONS(2451), - [aux_sym_cmd_identifier_token7] = ACTIONS(2451), - [aux_sym_cmd_identifier_token8] = ACTIONS(2451), - [aux_sym_cmd_identifier_token9] = ACTIONS(2451), - [aux_sym_cmd_identifier_token10] = ACTIONS(2451), - [aux_sym_cmd_identifier_token11] = ACTIONS(2451), - [aux_sym_cmd_identifier_token12] = ACTIONS(2451), - [aux_sym_cmd_identifier_token13] = ACTIONS(2451), - [aux_sym_cmd_identifier_token14] = ACTIONS(2451), - [aux_sym_cmd_identifier_token15] = ACTIONS(2451), - [aux_sym_cmd_identifier_token16] = ACTIONS(2451), - [aux_sym_cmd_identifier_token17] = ACTIONS(2451), - [aux_sym_cmd_identifier_token18] = ACTIONS(2451), - [aux_sym_cmd_identifier_token19] = ACTIONS(2451), - [aux_sym_cmd_identifier_token20] = ACTIONS(2451), - [aux_sym_cmd_identifier_token21] = ACTIONS(2451), - [aux_sym_cmd_identifier_token22] = ACTIONS(2451), - [aux_sym_cmd_identifier_token23] = ACTIONS(2451), - [aux_sym_cmd_identifier_token24] = ACTIONS(2451), - [aux_sym_cmd_identifier_token25] = ACTIONS(2451), - [aux_sym_cmd_identifier_token26] = ACTIONS(2451), - [aux_sym_cmd_identifier_token27] = ACTIONS(2451), - [aux_sym_cmd_identifier_token28] = ACTIONS(2451), - [aux_sym_cmd_identifier_token29] = ACTIONS(2451), - [aux_sym_cmd_identifier_token30] = ACTIONS(2451), - [aux_sym_cmd_identifier_token31] = ACTIONS(2451), - [aux_sym_cmd_identifier_token32] = ACTIONS(2451), - [aux_sym_cmd_identifier_token33] = ACTIONS(2451), - [aux_sym_cmd_identifier_token34] = ACTIONS(2451), - [aux_sym_cmd_identifier_token35] = ACTIONS(2451), - [aux_sym_cmd_identifier_token36] = ACTIONS(2451), - [aux_sym_cmd_identifier_token37] = ACTIONS(2451), - [aux_sym_cmd_identifier_token38] = ACTIONS(2451), - [aux_sym_cmd_identifier_token39] = ACTIONS(2451), - [aux_sym_cmd_identifier_token40] = ACTIONS(2451), - [anon_sym_def] = ACTIONS(2451), - [anon_sym_export_DASHenv] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_module] = ACTIONS(2451), - [anon_sym_use] = ACTIONS(2451), - [anon_sym_LPAREN] = ACTIONS(2451), - [anon_sym_DOLLAR] = ACTIONS(2451), - [anon_sym_error] = ACTIONS(2451), - [anon_sym_DASH2] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_in2] = ACTIONS(2451), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_make] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), - [anon_sym_RBRACE] = ACTIONS(2451), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_catch] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_source] = ACTIONS(2451), - [anon_sym_source_DASHenv] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_hide] = ACTIONS(2451), - [anon_sym_hide_DASHenv] = ACTIONS(2451), - [anon_sym_overlay] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_PLUS2] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), - [aux_sym__val_number_decimal_token1] = ACTIONS(2451), - [aux_sym__val_number_decimal_token2] = ACTIONS(2451), - [aux_sym__val_number_decimal_token3] = ACTIONS(2451), - [aux_sym__val_number_decimal_token4] = ACTIONS(2451), - [aux_sym__val_number_token1] = ACTIONS(2451), - [aux_sym__val_number_token2] = ACTIONS(2451), - [aux_sym__val_number_token3] = ACTIONS(2451), - [aux_sym__val_number_token4] = ACTIONS(2451), - [aux_sym__val_number_token5] = ACTIONS(2451), - [aux_sym__val_number_token6] = ACTIONS(2451), - [anon_sym_DQUOTE] = ACTIONS(2451), - [sym__str_single_quotes] = ACTIONS(2451), - [sym__str_back_ticks] = ACTIONS(2451), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), - [sym__entry_separator] = ACTIONS(2453), + [614] = { + [sym_comment] = STATE(614), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_alias] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_let_DASHenv] = ACTIONS(2381), + [anon_sym_mut] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [aux_sym_cmd_identifier_token1] = ACTIONS(2381), + [aux_sym_cmd_identifier_token2] = ACTIONS(2381), + [aux_sym_cmd_identifier_token3] = ACTIONS(2381), + [aux_sym_cmd_identifier_token4] = ACTIONS(2381), + [aux_sym_cmd_identifier_token5] = ACTIONS(2381), + [aux_sym_cmd_identifier_token6] = ACTIONS(2381), + [aux_sym_cmd_identifier_token7] = ACTIONS(2381), + [aux_sym_cmd_identifier_token8] = ACTIONS(2381), + [aux_sym_cmd_identifier_token9] = ACTIONS(2381), + [aux_sym_cmd_identifier_token10] = ACTIONS(2381), + [aux_sym_cmd_identifier_token11] = ACTIONS(2381), + [aux_sym_cmd_identifier_token12] = ACTIONS(2381), + [aux_sym_cmd_identifier_token13] = ACTIONS(2381), + [aux_sym_cmd_identifier_token14] = ACTIONS(2381), + [aux_sym_cmd_identifier_token15] = ACTIONS(2381), + [aux_sym_cmd_identifier_token16] = ACTIONS(2381), + [aux_sym_cmd_identifier_token17] = ACTIONS(2381), + [aux_sym_cmd_identifier_token18] = ACTIONS(2381), + [aux_sym_cmd_identifier_token19] = ACTIONS(2381), + [aux_sym_cmd_identifier_token20] = ACTIONS(2381), + [aux_sym_cmd_identifier_token21] = ACTIONS(2381), + [aux_sym_cmd_identifier_token22] = ACTIONS(2381), + [aux_sym_cmd_identifier_token23] = ACTIONS(2381), + [aux_sym_cmd_identifier_token24] = ACTIONS(2381), + [aux_sym_cmd_identifier_token25] = ACTIONS(2381), + [aux_sym_cmd_identifier_token26] = ACTIONS(2381), + [aux_sym_cmd_identifier_token27] = ACTIONS(2381), + [aux_sym_cmd_identifier_token28] = ACTIONS(2381), + [aux_sym_cmd_identifier_token29] = ACTIONS(2381), + [aux_sym_cmd_identifier_token30] = ACTIONS(2381), + [aux_sym_cmd_identifier_token31] = ACTIONS(2381), + [aux_sym_cmd_identifier_token32] = ACTIONS(2381), + [aux_sym_cmd_identifier_token33] = ACTIONS(2381), + [aux_sym_cmd_identifier_token34] = ACTIONS(2381), + [aux_sym_cmd_identifier_token35] = ACTIONS(2381), + [aux_sym_cmd_identifier_token36] = ACTIONS(2381), + [aux_sym_cmd_identifier_token37] = ACTIONS(2381), + [aux_sym_cmd_identifier_token38] = ACTIONS(2381), + [aux_sym_cmd_identifier_token39] = ACTIONS(2381), + [aux_sym_cmd_identifier_token40] = ACTIONS(2381), + [anon_sym_def] = ACTIONS(2381), + [anon_sym_export_DASHenv] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2381), + [anon_sym_COMMA] = ACTIONS(2381), + [anon_sym_DOLLAR] = ACTIONS(2381), + [anon_sym_error] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_in2] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_make] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2381), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_catch] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_source] = ACTIONS(2381), + [anon_sym_source_DASHenv] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_hide] = ACTIONS(2381), + [anon_sym_hide_DASHenv] = ACTIONS(2381), + [anon_sym_overlay] = ACTIONS(2381), + [anon_sym_as] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2381), + [aux_sym__val_number_decimal_token1] = ACTIONS(2381), + [aux_sym__val_number_decimal_token2] = ACTIONS(2381), + [aux_sym__val_number_decimal_token3] = ACTIONS(2381), + [aux_sym__val_number_decimal_token4] = ACTIONS(2381), + [aux_sym__val_number_token1] = ACTIONS(2381), + [aux_sym__val_number_token2] = ACTIONS(2381), + [aux_sym__val_number_token3] = ACTIONS(2381), + [aux_sym__val_number_token4] = ACTIONS(2381), + [aux_sym__val_number_token5] = ACTIONS(2381), + [aux_sym__val_number_token6] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2381), + [sym__str_single_quotes] = ACTIONS(2381), + [sym__str_back_ticks] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2381), + [sym__entry_separator] = ACTIONS(2383), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2453), + [sym_raw_string_begin] = ACTIONS(2383), }, - [642] = { - [sym_comment] = STATE(642), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_alias] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_let_DASHenv] = ACTIONS(1973), - [anon_sym_mut] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [aux_sym_cmd_identifier_token1] = ACTIONS(1973), - [aux_sym_cmd_identifier_token2] = ACTIONS(1973), - [aux_sym_cmd_identifier_token3] = ACTIONS(1973), - [aux_sym_cmd_identifier_token4] = ACTIONS(1973), - [aux_sym_cmd_identifier_token5] = ACTIONS(1973), - [aux_sym_cmd_identifier_token6] = ACTIONS(1973), - [aux_sym_cmd_identifier_token7] = ACTIONS(1973), - [aux_sym_cmd_identifier_token8] = ACTIONS(1973), - [aux_sym_cmd_identifier_token9] = ACTIONS(1973), - [aux_sym_cmd_identifier_token10] = ACTIONS(1973), - [aux_sym_cmd_identifier_token11] = ACTIONS(1973), - [aux_sym_cmd_identifier_token12] = ACTIONS(1973), - [aux_sym_cmd_identifier_token13] = ACTIONS(1973), - [aux_sym_cmd_identifier_token14] = ACTIONS(1973), - [aux_sym_cmd_identifier_token15] = ACTIONS(1973), - [aux_sym_cmd_identifier_token16] = ACTIONS(1973), - [aux_sym_cmd_identifier_token17] = ACTIONS(1973), - [aux_sym_cmd_identifier_token18] = ACTIONS(1973), - [aux_sym_cmd_identifier_token19] = ACTIONS(1973), - [aux_sym_cmd_identifier_token20] = ACTIONS(1973), - [aux_sym_cmd_identifier_token21] = ACTIONS(1973), - [aux_sym_cmd_identifier_token22] = ACTIONS(1973), - [aux_sym_cmd_identifier_token23] = ACTIONS(1973), - [aux_sym_cmd_identifier_token24] = ACTIONS(1973), - [aux_sym_cmd_identifier_token25] = ACTIONS(1973), - [aux_sym_cmd_identifier_token26] = ACTIONS(1973), - [aux_sym_cmd_identifier_token27] = ACTIONS(1973), - [aux_sym_cmd_identifier_token28] = ACTIONS(1973), - [aux_sym_cmd_identifier_token29] = ACTIONS(1973), - [aux_sym_cmd_identifier_token30] = ACTIONS(1973), - [aux_sym_cmd_identifier_token31] = ACTIONS(1973), - [aux_sym_cmd_identifier_token32] = ACTIONS(1973), - [aux_sym_cmd_identifier_token33] = ACTIONS(1973), - [aux_sym_cmd_identifier_token34] = ACTIONS(1973), - [aux_sym_cmd_identifier_token35] = ACTIONS(1973), - [aux_sym_cmd_identifier_token36] = ACTIONS(1973), - [aux_sym_cmd_identifier_token37] = ACTIONS(1973), - [aux_sym_cmd_identifier_token38] = ACTIONS(1973), - [aux_sym_cmd_identifier_token39] = ACTIONS(1973), - [aux_sym_cmd_identifier_token40] = ACTIONS(1973), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_export_DASHenv] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_use] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1973), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_in2] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_make] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_else] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1973), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_catch] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_as] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1973), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1973), - [aux_sym__val_number_decimal_token3] = ACTIONS(1973), - [aux_sym__val_number_decimal_token4] = ACTIONS(1973), - [aux_sym__val_number_token1] = ACTIONS(1973), - [aux_sym__val_number_token2] = ACTIONS(1973), - [aux_sym__val_number_token3] = ACTIONS(1973), - [aux_sym__val_number_token4] = ACTIONS(1973), - [aux_sym__val_number_token5] = ACTIONS(1973), - [aux_sym__val_number_token6] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1973), - [sym__str_single_quotes] = ACTIONS(1973), - [sym__str_back_ticks] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1973), - [sym__entry_separator] = ACTIONS(1975), + [615] = { + [sym_comment] = STATE(615), + [anon_sym_export] = ACTIONS(2385), + [anon_sym_alias] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_let_DASHenv] = ACTIONS(2385), + [anon_sym_mut] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [aux_sym_cmd_identifier_token1] = ACTIONS(2385), + [aux_sym_cmd_identifier_token2] = ACTIONS(2385), + [aux_sym_cmd_identifier_token3] = ACTIONS(2385), + [aux_sym_cmd_identifier_token4] = ACTIONS(2385), + [aux_sym_cmd_identifier_token5] = ACTIONS(2385), + [aux_sym_cmd_identifier_token6] = ACTIONS(2385), + [aux_sym_cmd_identifier_token7] = ACTIONS(2385), + [aux_sym_cmd_identifier_token8] = ACTIONS(2385), + [aux_sym_cmd_identifier_token9] = ACTIONS(2385), + [aux_sym_cmd_identifier_token10] = ACTIONS(2385), + [aux_sym_cmd_identifier_token11] = ACTIONS(2385), + [aux_sym_cmd_identifier_token12] = ACTIONS(2385), + [aux_sym_cmd_identifier_token13] = ACTIONS(2385), + [aux_sym_cmd_identifier_token14] = ACTIONS(2385), + [aux_sym_cmd_identifier_token15] = ACTIONS(2385), + [aux_sym_cmd_identifier_token16] = ACTIONS(2385), + [aux_sym_cmd_identifier_token17] = ACTIONS(2385), + [aux_sym_cmd_identifier_token18] = ACTIONS(2385), + [aux_sym_cmd_identifier_token19] = ACTIONS(2385), + [aux_sym_cmd_identifier_token20] = ACTIONS(2385), + [aux_sym_cmd_identifier_token21] = ACTIONS(2385), + [aux_sym_cmd_identifier_token22] = ACTIONS(2385), + [aux_sym_cmd_identifier_token23] = ACTIONS(2385), + [aux_sym_cmd_identifier_token24] = ACTIONS(2385), + [aux_sym_cmd_identifier_token25] = ACTIONS(2385), + [aux_sym_cmd_identifier_token26] = ACTIONS(2385), + [aux_sym_cmd_identifier_token27] = ACTIONS(2385), + [aux_sym_cmd_identifier_token28] = ACTIONS(2385), + [aux_sym_cmd_identifier_token29] = ACTIONS(2385), + [aux_sym_cmd_identifier_token30] = ACTIONS(2385), + [aux_sym_cmd_identifier_token31] = ACTIONS(2385), + [aux_sym_cmd_identifier_token32] = ACTIONS(2385), + [aux_sym_cmd_identifier_token33] = ACTIONS(2385), + [aux_sym_cmd_identifier_token34] = ACTIONS(2385), + [aux_sym_cmd_identifier_token35] = ACTIONS(2385), + [aux_sym_cmd_identifier_token36] = ACTIONS(2385), + [aux_sym_cmd_identifier_token37] = ACTIONS(2385), + [aux_sym_cmd_identifier_token38] = ACTIONS(2385), + [aux_sym_cmd_identifier_token39] = ACTIONS(2385), + [aux_sym_cmd_identifier_token40] = ACTIONS(2385), + [anon_sym_def] = ACTIONS(2385), + [anon_sym_export_DASHenv] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_module] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2385), + [anon_sym_COMMA] = ACTIONS(2385), + [anon_sym_DOLLAR] = ACTIONS(2385), + [anon_sym_error] = ACTIONS(2385), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_in2] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_make] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_else] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2385), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_catch] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_source] = ACTIONS(2385), + [anon_sym_source_DASHenv] = ACTIONS(2385), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_hide] = ACTIONS(2385), + [anon_sym_hide_DASHenv] = ACTIONS(2385), + [anon_sym_overlay] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2385), + [aux_sym__val_number_decimal_token1] = ACTIONS(2385), + [aux_sym__val_number_decimal_token2] = ACTIONS(2385), + [aux_sym__val_number_decimal_token3] = ACTIONS(2385), + [aux_sym__val_number_decimal_token4] = ACTIONS(2385), + [aux_sym__val_number_token1] = ACTIONS(2385), + [aux_sym__val_number_token2] = ACTIONS(2385), + [aux_sym__val_number_token3] = ACTIONS(2385), + [aux_sym__val_number_token4] = ACTIONS(2385), + [aux_sym__val_number_token5] = ACTIONS(2385), + [aux_sym__val_number_token6] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2385), + [sym__str_single_quotes] = ACTIONS(2385), + [sym__str_back_ticks] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2385), + [sym__entry_separator] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1975), + [sym_raw_string_begin] = ACTIONS(2387), }, - [643] = { - [sym_comment] = STATE(643), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1981), - [aux_sym_cmd_identifier_token3] = ACTIONS(1981), - [aux_sym_cmd_identifier_token4] = ACTIONS(1981), - [aux_sym_cmd_identifier_token5] = ACTIONS(1981), - [aux_sym_cmd_identifier_token6] = ACTIONS(1981), - [aux_sym_cmd_identifier_token7] = ACTIONS(1981), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1981), - [aux_sym_cmd_identifier_token11] = ACTIONS(1981), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1981), - [aux_sym_cmd_identifier_token17] = ACTIONS(1981), - [aux_sym_cmd_identifier_token18] = ACTIONS(1981), - [aux_sym_cmd_identifier_token19] = ACTIONS(1981), - [aux_sym_cmd_identifier_token20] = ACTIONS(1981), - [aux_sym_cmd_identifier_token21] = ACTIONS(1981), - [aux_sym_cmd_identifier_token22] = ACTIONS(1981), - [aux_sym_cmd_identifier_token23] = ACTIONS(1981), - [aux_sym_cmd_identifier_token24] = ACTIONS(1981), - [aux_sym_cmd_identifier_token25] = ACTIONS(1981), - [aux_sym_cmd_identifier_token26] = ACTIONS(1981), - [aux_sym_cmd_identifier_token27] = ACTIONS(1981), - [aux_sym_cmd_identifier_token28] = ACTIONS(1981), - [aux_sym_cmd_identifier_token29] = ACTIONS(1981), - [aux_sym_cmd_identifier_token30] = ACTIONS(1981), - [aux_sym_cmd_identifier_token31] = ACTIONS(1981), - [aux_sym_cmd_identifier_token32] = ACTIONS(1981), - [aux_sym_cmd_identifier_token33] = ACTIONS(1981), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1981), - [aux_sym_cmd_identifier_token36] = ACTIONS(1981), - [aux_sym_cmd_identifier_token37] = ACTIONS(1981), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1981), - [aux_sym_cmd_identifier_token40] = ACTIONS(1981), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1981), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in2] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1981), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_PLUS2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1981), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1981), - [aux_sym__val_number_decimal_token3] = ACTIONS(1981), - [aux_sym__val_number_decimal_token4] = ACTIONS(1981), - [aux_sym__val_number_token1] = ACTIONS(1981), - [aux_sym__val_number_token2] = ACTIONS(1981), - [aux_sym__val_number_token3] = ACTIONS(1981), - [aux_sym__val_number_token4] = ACTIONS(1981), - [aux_sym__val_number_token5] = ACTIONS(1981), - [aux_sym__val_number_token6] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1981), - [sym__str_single_quotes] = ACTIONS(1981), - [sym__str_back_ticks] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1981), - [sym__entry_separator] = ACTIONS(1983), + [616] = { + [sym_comment] = STATE(616), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_alias] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_let_DASHenv] = ACTIONS(2389), + [anon_sym_mut] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [aux_sym_cmd_identifier_token1] = ACTIONS(2389), + [aux_sym_cmd_identifier_token2] = ACTIONS(2389), + [aux_sym_cmd_identifier_token3] = ACTIONS(2389), + [aux_sym_cmd_identifier_token4] = ACTIONS(2389), + [aux_sym_cmd_identifier_token5] = ACTIONS(2389), + [aux_sym_cmd_identifier_token6] = ACTIONS(2389), + [aux_sym_cmd_identifier_token7] = ACTIONS(2389), + [aux_sym_cmd_identifier_token8] = ACTIONS(2389), + [aux_sym_cmd_identifier_token9] = ACTIONS(2389), + [aux_sym_cmd_identifier_token10] = ACTIONS(2389), + [aux_sym_cmd_identifier_token11] = ACTIONS(2389), + [aux_sym_cmd_identifier_token12] = ACTIONS(2389), + [aux_sym_cmd_identifier_token13] = ACTIONS(2389), + [aux_sym_cmd_identifier_token14] = ACTIONS(2389), + [aux_sym_cmd_identifier_token15] = ACTIONS(2389), + [aux_sym_cmd_identifier_token16] = ACTIONS(2389), + [aux_sym_cmd_identifier_token17] = ACTIONS(2389), + [aux_sym_cmd_identifier_token18] = ACTIONS(2389), + [aux_sym_cmd_identifier_token19] = ACTIONS(2389), + [aux_sym_cmd_identifier_token20] = ACTIONS(2389), + [aux_sym_cmd_identifier_token21] = ACTIONS(2389), + [aux_sym_cmd_identifier_token22] = ACTIONS(2389), + [aux_sym_cmd_identifier_token23] = ACTIONS(2389), + [aux_sym_cmd_identifier_token24] = ACTIONS(2389), + [aux_sym_cmd_identifier_token25] = ACTIONS(2389), + [aux_sym_cmd_identifier_token26] = ACTIONS(2389), + [aux_sym_cmd_identifier_token27] = ACTIONS(2389), + [aux_sym_cmd_identifier_token28] = ACTIONS(2389), + [aux_sym_cmd_identifier_token29] = ACTIONS(2389), + [aux_sym_cmd_identifier_token30] = ACTIONS(2389), + [aux_sym_cmd_identifier_token31] = ACTIONS(2389), + [aux_sym_cmd_identifier_token32] = ACTIONS(2389), + [aux_sym_cmd_identifier_token33] = ACTIONS(2389), + [aux_sym_cmd_identifier_token34] = ACTIONS(2389), + [aux_sym_cmd_identifier_token35] = ACTIONS(2389), + [aux_sym_cmd_identifier_token36] = ACTIONS(2389), + [aux_sym_cmd_identifier_token37] = ACTIONS(2389), + [aux_sym_cmd_identifier_token38] = ACTIONS(2389), + [aux_sym_cmd_identifier_token39] = ACTIONS(2389), + [aux_sym_cmd_identifier_token40] = ACTIONS(2389), + [anon_sym_def] = ACTIONS(2389), + [anon_sym_export_DASHenv] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_module] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2389), + [anon_sym_COMMA] = ACTIONS(2389), + [anon_sym_DOLLAR] = ACTIONS(2389), + [anon_sym_error] = ACTIONS(2389), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_in2] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_make] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2389), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_catch] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_source] = ACTIONS(2389), + [anon_sym_source_DASHenv] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_hide] = ACTIONS(2389), + [anon_sym_hide_DASHenv] = ACTIONS(2389), + [anon_sym_overlay] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2389), + [aux_sym__val_number_decimal_token1] = ACTIONS(2389), + [aux_sym__val_number_decimal_token2] = ACTIONS(2389), + [aux_sym__val_number_decimal_token3] = ACTIONS(2389), + [aux_sym__val_number_decimal_token4] = ACTIONS(2389), + [aux_sym__val_number_token1] = ACTIONS(2389), + [aux_sym__val_number_token2] = ACTIONS(2389), + [aux_sym__val_number_token3] = ACTIONS(2389), + [aux_sym__val_number_token4] = ACTIONS(2389), + [aux_sym__val_number_token5] = ACTIONS(2389), + [aux_sym__val_number_token6] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2389), + [sym__str_single_quotes] = ACTIONS(2389), + [sym__str_back_ticks] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2389), + [sym__entry_separator] = ACTIONS(2391), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1983), + [sym_raw_string_begin] = ACTIONS(2391), }, - [644] = { - [sym_comment] = STATE(644), - [anon_sym_export] = ACTIONS(2455), - [anon_sym_alias] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_let_DASHenv] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [aux_sym_cmd_identifier_token1] = ACTIONS(2455), - [aux_sym_cmd_identifier_token2] = ACTIONS(2455), - [aux_sym_cmd_identifier_token3] = ACTIONS(2455), - [aux_sym_cmd_identifier_token4] = ACTIONS(2455), - [aux_sym_cmd_identifier_token5] = ACTIONS(2455), - [aux_sym_cmd_identifier_token6] = ACTIONS(2455), - [aux_sym_cmd_identifier_token7] = ACTIONS(2455), - [aux_sym_cmd_identifier_token8] = ACTIONS(2455), - [aux_sym_cmd_identifier_token9] = ACTIONS(2455), - [aux_sym_cmd_identifier_token10] = ACTIONS(2455), - [aux_sym_cmd_identifier_token11] = ACTIONS(2455), - [aux_sym_cmd_identifier_token12] = ACTIONS(2455), - [aux_sym_cmd_identifier_token13] = ACTIONS(2455), - [aux_sym_cmd_identifier_token14] = ACTIONS(2455), - [aux_sym_cmd_identifier_token15] = ACTIONS(2455), - [aux_sym_cmd_identifier_token16] = ACTIONS(2455), - [aux_sym_cmd_identifier_token17] = ACTIONS(2455), - [aux_sym_cmd_identifier_token18] = ACTIONS(2455), - [aux_sym_cmd_identifier_token19] = ACTIONS(2455), - [aux_sym_cmd_identifier_token20] = ACTIONS(2455), - [aux_sym_cmd_identifier_token21] = ACTIONS(2455), - [aux_sym_cmd_identifier_token22] = ACTIONS(2455), - [aux_sym_cmd_identifier_token23] = ACTIONS(2455), - [aux_sym_cmd_identifier_token24] = ACTIONS(2455), - [aux_sym_cmd_identifier_token25] = ACTIONS(2455), - [aux_sym_cmd_identifier_token26] = ACTIONS(2455), - [aux_sym_cmd_identifier_token27] = ACTIONS(2455), - [aux_sym_cmd_identifier_token28] = ACTIONS(2455), - [aux_sym_cmd_identifier_token29] = ACTIONS(2455), - [aux_sym_cmd_identifier_token30] = ACTIONS(2455), - [aux_sym_cmd_identifier_token31] = ACTIONS(2455), - [aux_sym_cmd_identifier_token32] = ACTIONS(2455), - [aux_sym_cmd_identifier_token33] = ACTIONS(2455), - [aux_sym_cmd_identifier_token34] = ACTIONS(2455), - [aux_sym_cmd_identifier_token35] = ACTIONS(2455), - [aux_sym_cmd_identifier_token36] = ACTIONS(2455), - [aux_sym_cmd_identifier_token37] = ACTIONS(2455), - [aux_sym_cmd_identifier_token38] = ACTIONS(2455), - [aux_sym_cmd_identifier_token39] = ACTIONS(2455), - [aux_sym_cmd_identifier_token40] = ACTIONS(2455), - [anon_sym_def] = ACTIONS(2455), - [anon_sym_export_DASHenv] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym_module] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2455), - [anon_sym_DOLLAR] = ACTIONS(2455), - [anon_sym_error] = ACTIONS(2455), - [anon_sym_DASH2] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_in2] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_make] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2455), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_catch] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_source] = ACTIONS(2455), - [anon_sym_source_DASHenv] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_hide] = ACTIONS(2455), - [anon_sym_hide_DASHenv] = ACTIONS(2455), - [anon_sym_overlay] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_PLUS2] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), - [aux_sym__val_number_decimal_token1] = ACTIONS(2455), - [aux_sym__val_number_decimal_token2] = ACTIONS(2455), - [aux_sym__val_number_decimal_token3] = ACTIONS(2455), - [aux_sym__val_number_decimal_token4] = ACTIONS(2455), - [aux_sym__val_number_token1] = ACTIONS(2455), - [aux_sym__val_number_token2] = ACTIONS(2455), - [aux_sym__val_number_token3] = ACTIONS(2455), - [aux_sym__val_number_token4] = ACTIONS(2455), - [aux_sym__val_number_token5] = ACTIONS(2455), - [aux_sym__val_number_token6] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2455), - [sym__str_single_quotes] = ACTIONS(2455), - [sym__str_back_ticks] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), - [sym__entry_separator] = ACTIONS(2457), + [617] = { + [sym_comment] = STATE(617), + [anon_sym_export] = ACTIONS(1018), + [anon_sym_alias] = ACTIONS(1018), + [anon_sym_let] = ACTIONS(1018), + [anon_sym_let_DASHenv] = ACTIONS(1018), + [anon_sym_mut] = ACTIONS(1018), + [anon_sym_const] = ACTIONS(1018), + [aux_sym_cmd_identifier_token1] = ACTIONS(1018), + [aux_sym_cmd_identifier_token2] = ACTIONS(1020), + [aux_sym_cmd_identifier_token3] = ACTIONS(1020), + [aux_sym_cmd_identifier_token4] = ACTIONS(1020), + [aux_sym_cmd_identifier_token5] = ACTIONS(1020), + [aux_sym_cmd_identifier_token6] = ACTIONS(1020), + [aux_sym_cmd_identifier_token7] = ACTIONS(1020), + [aux_sym_cmd_identifier_token8] = ACTIONS(1018), + [aux_sym_cmd_identifier_token9] = ACTIONS(1018), + [aux_sym_cmd_identifier_token10] = ACTIONS(1020), + [aux_sym_cmd_identifier_token11] = ACTIONS(1020), + [aux_sym_cmd_identifier_token12] = ACTIONS(1018), + [aux_sym_cmd_identifier_token13] = ACTIONS(1018), + [aux_sym_cmd_identifier_token14] = ACTIONS(1018), + [aux_sym_cmd_identifier_token15] = ACTIONS(1018), + [aux_sym_cmd_identifier_token16] = ACTIONS(1020), + [aux_sym_cmd_identifier_token17] = ACTIONS(1020), + [aux_sym_cmd_identifier_token18] = ACTIONS(1020), + [aux_sym_cmd_identifier_token19] = ACTIONS(1020), + [aux_sym_cmd_identifier_token20] = ACTIONS(1020), + [aux_sym_cmd_identifier_token21] = ACTIONS(1020), + [aux_sym_cmd_identifier_token22] = ACTIONS(1020), + [aux_sym_cmd_identifier_token23] = ACTIONS(1020), + [aux_sym_cmd_identifier_token24] = ACTIONS(1020), + [aux_sym_cmd_identifier_token25] = ACTIONS(1020), + [aux_sym_cmd_identifier_token26] = ACTIONS(1020), + [aux_sym_cmd_identifier_token27] = ACTIONS(1020), + [aux_sym_cmd_identifier_token28] = ACTIONS(1020), + [aux_sym_cmd_identifier_token29] = ACTIONS(1020), + [aux_sym_cmd_identifier_token30] = ACTIONS(1020), + [aux_sym_cmd_identifier_token31] = ACTIONS(1020), + [aux_sym_cmd_identifier_token32] = ACTIONS(1020), + [aux_sym_cmd_identifier_token33] = ACTIONS(1020), + [aux_sym_cmd_identifier_token34] = ACTIONS(1018), + [aux_sym_cmd_identifier_token35] = ACTIONS(1020), + [aux_sym_cmd_identifier_token36] = ACTIONS(1020), + [aux_sym_cmd_identifier_token37] = ACTIONS(1020), + [aux_sym_cmd_identifier_token38] = ACTIONS(1018), + [aux_sym_cmd_identifier_token39] = ACTIONS(1020), + [aux_sym_cmd_identifier_token40] = ACTIONS(1020), + [anon_sym_def] = ACTIONS(1018), + [anon_sym_export_DASHenv] = ACTIONS(1018), + [anon_sym_extern] = ACTIONS(1018), + [anon_sym_module] = ACTIONS(1018), + [anon_sym_use] = ACTIONS(1018), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_COMMA] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1020), + [anon_sym_error] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_break] = ACTIONS(1018), + [anon_sym_continue] = ACTIONS(1018), + [anon_sym_for] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1018), + [anon_sym_loop] = ACTIONS(1018), + [anon_sym_make] = ACTIONS(1018), + [anon_sym_while] = ACTIONS(1018), + [anon_sym_do] = ACTIONS(1018), + [anon_sym_if] = ACTIONS(1018), + [anon_sym_else] = ACTIONS(1018), + [anon_sym_match] = ACTIONS(1018), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_try] = ACTIONS(1018), + [anon_sym_catch] = ACTIONS(1018), + [anon_sym_return] = ACTIONS(1018), + [anon_sym_source] = ACTIONS(1018), + [anon_sym_source_DASHenv] = ACTIONS(1018), + [anon_sym_register] = ACTIONS(1018), + [anon_sym_hide] = ACTIONS(1018), + [anon_sym_hide_DASHenv] = ACTIONS(1018), + [anon_sym_overlay] = ACTIONS(1018), + [anon_sym_as] = ACTIONS(1018), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1018), + [aux_sym__val_number_token5] = ACTIONS(1018), + [aux_sym__val_number_token6] = ACTIONS(1018), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [anon_sym_COLON2] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1020), + }, + [618] = { + [sym_comment] = STATE(618), + [anon_sym_export] = ACTIONS(2393), + [anon_sym_alias] = ACTIONS(2393), + [anon_sym_let] = ACTIONS(2393), + [anon_sym_let_DASHenv] = ACTIONS(2393), + [anon_sym_mut] = ACTIONS(2393), + [anon_sym_const] = ACTIONS(2393), + [aux_sym_cmd_identifier_token1] = ACTIONS(2393), + [aux_sym_cmd_identifier_token2] = ACTIONS(2393), + [aux_sym_cmd_identifier_token3] = ACTIONS(2393), + [aux_sym_cmd_identifier_token4] = ACTIONS(2393), + [aux_sym_cmd_identifier_token5] = ACTIONS(2393), + [aux_sym_cmd_identifier_token6] = ACTIONS(2393), + [aux_sym_cmd_identifier_token7] = ACTIONS(2393), + [aux_sym_cmd_identifier_token8] = ACTIONS(2393), + [aux_sym_cmd_identifier_token9] = ACTIONS(2393), + [aux_sym_cmd_identifier_token10] = ACTIONS(2393), + [aux_sym_cmd_identifier_token11] = ACTIONS(2393), + [aux_sym_cmd_identifier_token12] = ACTIONS(2393), + [aux_sym_cmd_identifier_token13] = ACTIONS(2393), + [aux_sym_cmd_identifier_token14] = ACTIONS(2393), + [aux_sym_cmd_identifier_token15] = ACTIONS(2393), + [aux_sym_cmd_identifier_token16] = ACTIONS(2393), + [aux_sym_cmd_identifier_token17] = ACTIONS(2393), + [aux_sym_cmd_identifier_token18] = ACTIONS(2393), + [aux_sym_cmd_identifier_token19] = ACTIONS(2393), + [aux_sym_cmd_identifier_token20] = ACTIONS(2393), + [aux_sym_cmd_identifier_token21] = ACTIONS(2393), + [aux_sym_cmd_identifier_token22] = ACTIONS(2393), + [aux_sym_cmd_identifier_token23] = ACTIONS(2393), + [aux_sym_cmd_identifier_token24] = ACTIONS(2393), + [aux_sym_cmd_identifier_token25] = ACTIONS(2393), + [aux_sym_cmd_identifier_token26] = ACTIONS(2393), + [aux_sym_cmd_identifier_token27] = ACTIONS(2393), + [aux_sym_cmd_identifier_token28] = ACTIONS(2393), + [aux_sym_cmd_identifier_token29] = ACTIONS(2393), + [aux_sym_cmd_identifier_token30] = ACTIONS(2393), + [aux_sym_cmd_identifier_token31] = ACTIONS(2393), + [aux_sym_cmd_identifier_token32] = ACTIONS(2393), + [aux_sym_cmd_identifier_token33] = ACTIONS(2393), + [aux_sym_cmd_identifier_token34] = ACTIONS(2393), + [aux_sym_cmd_identifier_token35] = ACTIONS(2393), + [aux_sym_cmd_identifier_token36] = ACTIONS(2393), + [aux_sym_cmd_identifier_token37] = ACTIONS(2393), + [aux_sym_cmd_identifier_token38] = ACTIONS(2393), + [aux_sym_cmd_identifier_token39] = ACTIONS(2393), + [aux_sym_cmd_identifier_token40] = ACTIONS(2393), + [anon_sym_def] = ACTIONS(2393), + [anon_sym_export_DASHenv] = ACTIONS(2393), + [anon_sym_extern] = ACTIONS(2393), + [anon_sym_module] = ACTIONS(2393), + [anon_sym_use] = ACTIONS(2393), + [anon_sym_LPAREN] = ACTIONS(2393), + [anon_sym_COMMA] = ACTIONS(2393), + [anon_sym_DOLLAR] = ACTIONS(2393), + [anon_sym_error] = ACTIONS(2393), + [anon_sym_DASH2] = ACTIONS(2393), + [anon_sym_break] = ACTIONS(2393), + [anon_sym_continue] = ACTIONS(2393), + [anon_sym_for] = ACTIONS(2393), + [anon_sym_in2] = ACTIONS(2393), + [anon_sym_loop] = ACTIONS(2393), + [anon_sym_make] = ACTIONS(2393), + [anon_sym_while] = ACTIONS(2393), + [anon_sym_do] = ACTIONS(2393), + [anon_sym_if] = ACTIONS(2393), + [anon_sym_else] = ACTIONS(2393), + [anon_sym_match] = ACTIONS(2393), + [anon_sym_RBRACE] = ACTIONS(2393), + [anon_sym_try] = ACTIONS(2393), + [anon_sym_catch] = ACTIONS(2393), + [anon_sym_return] = ACTIONS(2393), + [anon_sym_source] = ACTIONS(2393), + [anon_sym_source_DASHenv] = ACTIONS(2393), + [anon_sym_register] = ACTIONS(2393), + [anon_sym_hide] = ACTIONS(2393), + [anon_sym_hide_DASHenv] = ACTIONS(2393), + [anon_sym_overlay] = ACTIONS(2393), + [anon_sym_as] = ACTIONS(2393), + [anon_sym_PLUS2] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2393), + [aux_sym__val_number_decimal_token1] = ACTIONS(2393), + [aux_sym__val_number_decimal_token2] = ACTIONS(2393), + [aux_sym__val_number_decimal_token3] = ACTIONS(2393), + [aux_sym__val_number_decimal_token4] = ACTIONS(2393), + [aux_sym__val_number_token1] = ACTIONS(2393), + [aux_sym__val_number_token2] = ACTIONS(2393), + [aux_sym__val_number_token3] = ACTIONS(2393), + [aux_sym__val_number_token4] = ACTIONS(2393), + [aux_sym__val_number_token5] = ACTIONS(2393), + [aux_sym__val_number_token6] = ACTIONS(2393), + [anon_sym_DQUOTE] = ACTIONS(2393), + [sym__str_single_quotes] = ACTIONS(2393), + [sym__str_back_ticks] = ACTIONS(2393), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2393), + [sym__entry_separator] = ACTIONS(2395), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2457), + [sym_raw_string_begin] = ACTIONS(2395), }, - [645] = { - [sym_comment] = STATE(645), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1997), - [aux_sym_cmd_identifier_token3] = ACTIONS(1997), - [aux_sym_cmd_identifier_token4] = ACTIONS(1997), - [aux_sym_cmd_identifier_token5] = ACTIONS(1997), - [aux_sym_cmd_identifier_token6] = ACTIONS(1997), - [aux_sym_cmd_identifier_token7] = ACTIONS(1997), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1997), - [aux_sym_cmd_identifier_token11] = ACTIONS(1997), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1997), - [aux_sym_cmd_identifier_token17] = ACTIONS(1997), - [aux_sym_cmd_identifier_token18] = ACTIONS(1997), - [aux_sym_cmd_identifier_token19] = ACTIONS(1997), - [aux_sym_cmd_identifier_token20] = ACTIONS(1997), - [aux_sym_cmd_identifier_token21] = ACTIONS(1997), - [aux_sym_cmd_identifier_token22] = ACTIONS(1997), - [aux_sym_cmd_identifier_token23] = ACTIONS(1997), - [aux_sym_cmd_identifier_token24] = ACTIONS(1997), - [aux_sym_cmd_identifier_token25] = ACTIONS(1997), - [aux_sym_cmd_identifier_token26] = ACTIONS(1997), - [aux_sym_cmd_identifier_token27] = ACTIONS(1997), - [aux_sym_cmd_identifier_token28] = ACTIONS(1997), - [aux_sym_cmd_identifier_token29] = ACTIONS(1997), - [aux_sym_cmd_identifier_token30] = ACTIONS(1997), - [aux_sym_cmd_identifier_token31] = ACTIONS(1997), - [aux_sym_cmd_identifier_token32] = ACTIONS(1997), - [aux_sym_cmd_identifier_token33] = ACTIONS(1997), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1997), - [aux_sym_cmd_identifier_token36] = ACTIONS(1997), - [aux_sym_cmd_identifier_token37] = ACTIONS(1997), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1997), - [aux_sym_cmd_identifier_token40] = ACTIONS(1997), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1997), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1997), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1997), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1997), - [aux_sym__val_number_decimal_token3] = ACTIONS(1997), - [aux_sym__val_number_decimal_token4] = ACTIONS(1997), - [aux_sym__val_number_token1] = ACTIONS(1997), - [aux_sym__val_number_token2] = ACTIONS(1997), - [aux_sym__val_number_token3] = ACTIONS(1997), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1997), - [sym__str_single_quotes] = ACTIONS(1997), - [sym__str_back_ticks] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1997), - [sym__entry_separator] = ACTIONS(1999), + [619] = { + [sym_comment] = STATE(619), + [anon_sym_export] = ACTIONS(2397), + [anon_sym_alias] = ACTIONS(2397), + [anon_sym_let] = ACTIONS(2397), + [anon_sym_let_DASHenv] = ACTIONS(2397), + [anon_sym_mut] = ACTIONS(2397), + [anon_sym_const] = ACTIONS(2397), + [aux_sym_cmd_identifier_token1] = ACTIONS(2397), + [aux_sym_cmd_identifier_token2] = ACTIONS(2397), + [aux_sym_cmd_identifier_token3] = ACTIONS(2397), + [aux_sym_cmd_identifier_token4] = ACTIONS(2397), + [aux_sym_cmd_identifier_token5] = ACTIONS(2397), + [aux_sym_cmd_identifier_token6] = ACTIONS(2397), + [aux_sym_cmd_identifier_token7] = ACTIONS(2397), + [aux_sym_cmd_identifier_token8] = ACTIONS(2397), + [aux_sym_cmd_identifier_token9] = ACTIONS(2397), + [aux_sym_cmd_identifier_token10] = ACTIONS(2397), + [aux_sym_cmd_identifier_token11] = ACTIONS(2397), + [aux_sym_cmd_identifier_token12] = ACTIONS(2397), + [aux_sym_cmd_identifier_token13] = ACTIONS(2397), + [aux_sym_cmd_identifier_token14] = ACTIONS(2397), + [aux_sym_cmd_identifier_token15] = ACTIONS(2397), + [aux_sym_cmd_identifier_token16] = ACTIONS(2397), + [aux_sym_cmd_identifier_token17] = ACTIONS(2397), + [aux_sym_cmd_identifier_token18] = ACTIONS(2397), + [aux_sym_cmd_identifier_token19] = ACTIONS(2397), + [aux_sym_cmd_identifier_token20] = ACTIONS(2397), + [aux_sym_cmd_identifier_token21] = ACTIONS(2397), + [aux_sym_cmd_identifier_token22] = ACTIONS(2397), + [aux_sym_cmd_identifier_token23] = ACTIONS(2397), + [aux_sym_cmd_identifier_token24] = ACTIONS(2397), + [aux_sym_cmd_identifier_token25] = ACTIONS(2397), + [aux_sym_cmd_identifier_token26] = ACTIONS(2397), + [aux_sym_cmd_identifier_token27] = ACTIONS(2397), + [aux_sym_cmd_identifier_token28] = ACTIONS(2397), + [aux_sym_cmd_identifier_token29] = ACTIONS(2397), + [aux_sym_cmd_identifier_token30] = ACTIONS(2397), + [aux_sym_cmd_identifier_token31] = ACTIONS(2397), + [aux_sym_cmd_identifier_token32] = ACTIONS(2397), + [aux_sym_cmd_identifier_token33] = ACTIONS(2397), + [aux_sym_cmd_identifier_token34] = ACTIONS(2397), + [aux_sym_cmd_identifier_token35] = ACTIONS(2397), + [aux_sym_cmd_identifier_token36] = ACTIONS(2397), + [aux_sym_cmd_identifier_token37] = ACTIONS(2397), + [aux_sym_cmd_identifier_token38] = ACTIONS(2397), + [aux_sym_cmd_identifier_token39] = ACTIONS(2397), + [aux_sym_cmd_identifier_token40] = ACTIONS(2397), + [anon_sym_def] = ACTIONS(2397), + [anon_sym_export_DASHenv] = ACTIONS(2397), + [anon_sym_extern] = ACTIONS(2397), + [anon_sym_module] = ACTIONS(2397), + [anon_sym_use] = ACTIONS(2397), + [anon_sym_LPAREN] = ACTIONS(2397), + [anon_sym_COMMA] = ACTIONS(2397), + [anon_sym_DOLLAR] = ACTIONS(2397), + [anon_sym_error] = ACTIONS(2397), + [anon_sym_DASH2] = ACTIONS(2397), + [anon_sym_break] = ACTIONS(2397), + [anon_sym_continue] = ACTIONS(2397), + [anon_sym_for] = ACTIONS(2397), + [anon_sym_in2] = ACTIONS(2397), + [anon_sym_loop] = ACTIONS(2397), + [anon_sym_make] = ACTIONS(2397), + [anon_sym_while] = ACTIONS(2397), + [anon_sym_do] = ACTIONS(2397), + [anon_sym_if] = ACTIONS(2397), + [anon_sym_else] = ACTIONS(2397), + [anon_sym_match] = ACTIONS(2397), + [anon_sym_RBRACE] = ACTIONS(2397), + [anon_sym_try] = ACTIONS(2397), + [anon_sym_catch] = ACTIONS(2397), + [anon_sym_return] = ACTIONS(2397), + [anon_sym_source] = ACTIONS(2397), + [anon_sym_source_DASHenv] = ACTIONS(2397), + [anon_sym_register] = ACTIONS(2397), + [anon_sym_hide] = ACTIONS(2397), + [anon_sym_hide_DASHenv] = ACTIONS(2397), + [anon_sym_overlay] = ACTIONS(2397), + [anon_sym_as] = ACTIONS(2397), + [anon_sym_PLUS2] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2397), + [aux_sym__val_number_decimal_token1] = ACTIONS(2397), + [aux_sym__val_number_decimal_token2] = ACTIONS(2397), + [aux_sym__val_number_decimal_token3] = ACTIONS(2397), + [aux_sym__val_number_decimal_token4] = ACTIONS(2397), + [aux_sym__val_number_token1] = ACTIONS(2397), + [aux_sym__val_number_token2] = ACTIONS(2397), + [aux_sym__val_number_token3] = ACTIONS(2397), + [aux_sym__val_number_token4] = ACTIONS(2397), + [aux_sym__val_number_token5] = ACTIONS(2397), + [aux_sym__val_number_token6] = ACTIONS(2397), + [anon_sym_DQUOTE] = ACTIONS(2397), + [sym__str_single_quotes] = ACTIONS(2397), + [sym__str_back_ticks] = ACTIONS(2397), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2397), + [sym__entry_separator] = ACTIONS(2399), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1999), + [sym_raw_string_begin] = ACTIONS(2399), }, - [646] = { - [sym_comment] = STATE(646), - [anon_sym_export] = ACTIONS(2459), - [anon_sym_alias] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_let_DASHenv] = ACTIONS(2459), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [aux_sym_cmd_identifier_token1] = ACTIONS(2459), - [aux_sym_cmd_identifier_token2] = ACTIONS(2459), - [aux_sym_cmd_identifier_token3] = ACTIONS(2459), - [aux_sym_cmd_identifier_token4] = ACTIONS(2459), - [aux_sym_cmd_identifier_token5] = ACTIONS(2459), - [aux_sym_cmd_identifier_token6] = ACTIONS(2459), - [aux_sym_cmd_identifier_token7] = ACTIONS(2459), - [aux_sym_cmd_identifier_token8] = ACTIONS(2459), - [aux_sym_cmd_identifier_token9] = ACTIONS(2459), - [aux_sym_cmd_identifier_token10] = ACTIONS(2459), - [aux_sym_cmd_identifier_token11] = ACTIONS(2459), - [aux_sym_cmd_identifier_token12] = ACTIONS(2459), - [aux_sym_cmd_identifier_token13] = ACTIONS(2459), - [aux_sym_cmd_identifier_token14] = ACTIONS(2459), - [aux_sym_cmd_identifier_token15] = ACTIONS(2459), - [aux_sym_cmd_identifier_token16] = ACTIONS(2459), - [aux_sym_cmd_identifier_token17] = ACTIONS(2459), - [aux_sym_cmd_identifier_token18] = ACTIONS(2459), - [aux_sym_cmd_identifier_token19] = ACTIONS(2459), - [aux_sym_cmd_identifier_token20] = ACTIONS(2459), - [aux_sym_cmd_identifier_token21] = ACTIONS(2459), - [aux_sym_cmd_identifier_token22] = ACTIONS(2459), - [aux_sym_cmd_identifier_token23] = ACTIONS(2459), - [aux_sym_cmd_identifier_token24] = ACTIONS(2459), - [aux_sym_cmd_identifier_token25] = ACTIONS(2459), - [aux_sym_cmd_identifier_token26] = ACTIONS(2459), - [aux_sym_cmd_identifier_token27] = ACTIONS(2459), - [aux_sym_cmd_identifier_token28] = ACTIONS(2459), - [aux_sym_cmd_identifier_token29] = ACTIONS(2459), - [aux_sym_cmd_identifier_token30] = ACTIONS(2459), - [aux_sym_cmd_identifier_token31] = ACTIONS(2459), - [aux_sym_cmd_identifier_token32] = ACTIONS(2459), - [aux_sym_cmd_identifier_token33] = ACTIONS(2459), - [aux_sym_cmd_identifier_token34] = ACTIONS(2459), - [aux_sym_cmd_identifier_token35] = ACTIONS(2459), - [aux_sym_cmd_identifier_token36] = ACTIONS(2459), - [aux_sym_cmd_identifier_token37] = ACTIONS(2459), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), - [aux_sym_cmd_identifier_token39] = ACTIONS(2459), - [aux_sym_cmd_identifier_token40] = ACTIONS(2459), - [anon_sym_def] = ACTIONS(2459), - [anon_sym_export_DASHenv] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym_module] = ACTIONS(2459), - [anon_sym_use] = ACTIONS(2459), - [anon_sym_LPAREN] = ACTIONS(2459), - [anon_sym_DOLLAR] = ACTIONS(2459), - [anon_sym_error] = ACTIONS(2459), - [anon_sym_DASH2] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_in2] = ACTIONS(2459), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_make] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), - [anon_sym_RBRACE] = ACTIONS(2459), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_catch] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_source] = ACTIONS(2459), - [anon_sym_source_DASHenv] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_hide] = ACTIONS(2459), - [anon_sym_hide_DASHenv] = ACTIONS(2459), - [anon_sym_overlay] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_PLUS2] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), - [aux_sym__val_number_decimal_token1] = ACTIONS(2459), - [aux_sym__val_number_decimal_token2] = ACTIONS(2459), - [aux_sym__val_number_decimal_token3] = ACTIONS(2459), - [aux_sym__val_number_decimal_token4] = ACTIONS(2459), - [aux_sym__val_number_token1] = ACTIONS(2459), - [aux_sym__val_number_token2] = ACTIONS(2459), - [aux_sym__val_number_token3] = ACTIONS(2459), - [aux_sym__val_number_token4] = ACTIONS(2459), - [aux_sym__val_number_token5] = ACTIONS(2459), - [aux_sym__val_number_token6] = ACTIONS(2459), - [anon_sym_DQUOTE] = ACTIONS(2459), - [sym__str_single_quotes] = ACTIONS(2459), - [sym__str_back_ticks] = ACTIONS(2459), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), - [sym__entry_separator] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2461), + [620] = { + [sym_comment] = STATE(620), + [anon_sym_export] = ACTIONS(2280), + [anon_sym_alias] = ACTIONS(2280), + [anon_sym_let] = ACTIONS(2280), + [anon_sym_let_DASHenv] = ACTIONS(2280), + [anon_sym_mut] = ACTIONS(2280), + [anon_sym_const] = ACTIONS(2280), + [aux_sym_cmd_identifier_token1] = ACTIONS(2280), + [aux_sym_cmd_identifier_token2] = ACTIONS(2284), + [aux_sym_cmd_identifier_token3] = ACTIONS(2284), + [aux_sym_cmd_identifier_token4] = ACTIONS(2284), + [aux_sym_cmd_identifier_token5] = ACTIONS(2284), + [aux_sym_cmd_identifier_token6] = ACTIONS(2284), + [aux_sym_cmd_identifier_token7] = ACTIONS(2284), + [aux_sym_cmd_identifier_token8] = ACTIONS(2280), + [aux_sym_cmd_identifier_token9] = ACTIONS(2280), + [aux_sym_cmd_identifier_token10] = ACTIONS(2284), + [aux_sym_cmd_identifier_token11] = ACTIONS(2284), + [aux_sym_cmd_identifier_token12] = ACTIONS(2280), + [aux_sym_cmd_identifier_token13] = ACTIONS(2280), + [aux_sym_cmd_identifier_token14] = ACTIONS(2280), + [aux_sym_cmd_identifier_token15] = ACTIONS(2280), + [aux_sym_cmd_identifier_token16] = ACTIONS(2284), + [aux_sym_cmd_identifier_token17] = ACTIONS(2284), + [aux_sym_cmd_identifier_token18] = ACTIONS(2284), + [aux_sym_cmd_identifier_token19] = ACTIONS(2284), + [aux_sym_cmd_identifier_token20] = ACTIONS(2284), + [aux_sym_cmd_identifier_token21] = ACTIONS(2284), + [aux_sym_cmd_identifier_token22] = ACTIONS(2284), + [aux_sym_cmd_identifier_token23] = ACTIONS(2284), + [aux_sym_cmd_identifier_token24] = ACTIONS(2284), + [aux_sym_cmd_identifier_token25] = ACTIONS(2284), + [aux_sym_cmd_identifier_token26] = ACTIONS(2284), + [aux_sym_cmd_identifier_token27] = ACTIONS(2284), + [aux_sym_cmd_identifier_token28] = ACTIONS(2284), + [aux_sym_cmd_identifier_token29] = ACTIONS(2284), + [aux_sym_cmd_identifier_token30] = ACTIONS(2284), + [aux_sym_cmd_identifier_token31] = ACTIONS(2284), + [aux_sym_cmd_identifier_token32] = ACTIONS(2284), + [aux_sym_cmd_identifier_token33] = ACTIONS(2284), + [aux_sym_cmd_identifier_token34] = ACTIONS(2280), + [aux_sym_cmd_identifier_token35] = ACTIONS(2284), + [aux_sym_cmd_identifier_token36] = ACTIONS(2284), + [aux_sym_cmd_identifier_token37] = ACTIONS(2284), + [aux_sym_cmd_identifier_token38] = ACTIONS(2280), + [aux_sym_cmd_identifier_token39] = ACTIONS(2284), + [aux_sym_cmd_identifier_token40] = ACTIONS(2284), + [anon_sym_def] = ACTIONS(2280), + [anon_sym_export_DASHenv] = ACTIONS(2280), + [anon_sym_extern] = ACTIONS(2280), + [anon_sym_module] = ACTIONS(2280), + [anon_sym_use] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_COMMA] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2284), + [anon_sym_error] = ACTIONS(2280), + [anon_sym_DASH2] = ACTIONS(2280), + [anon_sym_break] = ACTIONS(2280), + [anon_sym_continue] = ACTIONS(2280), + [anon_sym_for] = ACTIONS(2280), + [anon_sym_in2] = ACTIONS(2280), + [anon_sym_loop] = ACTIONS(2280), + [anon_sym_make] = ACTIONS(2280), + [anon_sym_while] = ACTIONS(2280), + [anon_sym_do] = ACTIONS(2280), + [anon_sym_if] = ACTIONS(2280), + [anon_sym_else] = ACTIONS(2280), + [anon_sym_match] = ACTIONS(2280), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_try] = ACTIONS(2280), + [anon_sym_catch] = ACTIONS(2280), + [anon_sym_return] = ACTIONS(2280), + [anon_sym_source] = ACTIONS(2280), + [anon_sym_source_DASHenv] = ACTIONS(2280), + [anon_sym_register] = ACTIONS(2280), + [anon_sym_hide] = ACTIONS(2280), + [anon_sym_hide_DASHenv] = ACTIONS(2280), + [anon_sym_overlay] = ACTIONS(2280), + [anon_sym_as] = ACTIONS(2280), + [anon_sym_PLUS2] = ACTIONS(2280), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2284), + [aux_sym__val_number_decimal_token1] = ACTIONS(2280), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2284), + [aux_sym__val_number_decimal_token4] = ACTIONS(2284), + [aux_sym__val_number_token1] = ACTIONS(2284), + [aux_sym__val_number_token2] = ACTIONS(2284), + [aux_sym__val_number_token3] = ACTIONS(2284), + [aux_sym__val_number_token4] = ACTIONS(2280), + [aux_sym__val_number_token5] = ACTIONS(2280), + [aux_sym__val_number_token6] = ACTIONS(2280), + [anon_sym_LBRACK2] = ACTIONS(2401), + [anon_sym_DQUOTE] = ACTIONS(2284), + [sym__str_single_quotes] = ACTIONS(2284), + [sym__str_back_ticks] = ACTIONS(2284), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2284), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2284), }, - [647] = { - [sym_comment] = STATE(647), - [anon_sym_export] = ACTIONS(2463), - [anon_sym_alias] = ACTIONS(2463), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_let_DASHenv] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [aux_sym_cmd_identifier_token1] = ACTIONS(2463), - [aux_sym_cmd_identifier_token2] = ACTIONS(2463), - [aux_sym_cmd_identifier_token3] = ACTIONS(2463), - [aux_sym_cmd_identifier_token4] = ACTIONS(2463), - [aux_sym_cmd_identifier_token5] = ACTIONS(2463), - [aux_sym_cmd_identifier_token6] = ACTIONS(2463), - [aux_sym_cmd_identifier_token7] = ACTIONS(2463), - [aux_sym_cmd_identifier_token8] = ACTIONS(2463), - [aux_sym_cmd_identifier_token9] = ACTIONS(2463), - [aux_sym_cmd_identifier_token10] = ACTIONS(2463), - [aux_sym_cmd_identifier_token11] = ACTIONS(2463), - [aux_sym_cmd_identifier_token12] = ACTIONS(2463), - [aux_sym_cmd_identifier_token13] = ACTIONS(2463), - [aux_sym_cmd_identifier_token14] = ACTIONS(2463), - [aux_sym_cmd_identifier_token15] = ACTIONS(2463), - [aux_sym_cmd_identifier_token16] = ACTIONS(2463), - [aux_sym_cmd_identifier_token17] = ACTIONS(2463), - [aux_sym_cmd_identifier_token18] = ACTIONS(2463), - [aux_sym_cmd_identifier_token19] = ACTIONS(2463), - [aux_sym_cmd_identifier_token20] = ACTIONS(2463), - [aux_sym_cmd_identifier_token21] = ACTIONS(2463), - [aux_sym_cmd_identifier_token22] = ACTIONS(2463), - [aux_sym_cmd_identifier_token23] = ACTIONS(2463), - [aux_sym_cmd_identifier_token24] = ACTIONS(2463), - [aux_sym_cmd_identifier_token25] = ACTIONS(2463), - [aux_sym_cmd_identifier_token26] = ACTIONS(2463), - [aux_sym_cmd_identifier_token27] = ACTIONS(2463), - [aux_sym_cmd_identifier_token28] = ACTIONS(2463), - [aux_sym_cmd_identifier_token29] = ACTIONS(2463), - [aux_sym_cmd_identifier_token30] = ACTIONS(2463), - [aux_sym_cmd_identifier_token31] = ACTIONS(2463), - [aux_sym_cmd_identifier_token32] = ACTIONS(2463), - [aux_sym_cmd_identifier_token33] = ACTIONS(2463), - [aux_sym_cmd_identifier_token34] = ACTIONS(2463), - [aux_sym_cmd_identifier_token35] = ACTIONS(2463), - [aux_sym_cmd_identifier_token36] = ACTIONS(2463), - [aux_sym_cmd_identifier_token37] = ACTIONS(2463), - [aux_sym_cmd_identifier_token38] = ACTIONS(2463), - [aux_sym_cmd_identifier_token39] = ACTIONS(2463), - [aux_sym_cmd_identifier_token40] = ACTIONS(2463), - [anon_sym_def] = ACTIONS(2463), - [anon_sym_export_DASHenv] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym_module] = ACTIONS(2463), - [anon_sym_use] = ACTIONS(2463), - [anon_sym_LPAREN] = ACTIONS(2463), - [anon_sym_DOLLAR] = ACTIONS(2463), - [anon_sym_error] = ACTIONS(2463), - [anon_sym_DASH2] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_in2] = ACTIONS(2463), - [anon_sym_loop] = ACTIONS(2463), - [anon_sym_make] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), - [anon_sym_RBRACE] = ACTIONS(2463), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_catch] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_source] = ACTIONS(2463), - [anon_sym_source_DASHenv] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_hide] = ACTIONS(2463), - [anon_sym_hide_DASHenv] = ACTIONS(2463), - [anon_sym_overlay] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_PLUS2] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), - [aux_sym__val_number_decimal_token1] = ACTIONS(2463), - [aux_sym__val_number_decimal_token2] = ACTIONS(2463), - [aux_sym__val_number_decimal_token3] = ACTIONS(2463), - [aux_sym__val_number_decimal_token4] = ACTIONS(2463), - [aux_sym__val_number_token1] = ACTIONS(2463), - [aux_sym__val_number_token2] = ACTIONS(2463), - [aux_sym__val_number_token3] = ACTIONS(2463), - [aux_sym__val_number_token4] = ACTIONS(2463), - [aux_sym__val_number_token5] = ACTIONS(2463), - [aux_sym__val_number_token6] = ACTIONS(2463), - [anon_sym_DQUOTE] = ACTIONS(2463), - [sym__str_single_quotes] = ACTIONS(2463), - [sym__str_back_ticks] = ACTIONS(2463), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), - [sym__entry_separator] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2465), + [621] = { + [sym_comment] = STATE(621), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [aux_sym_cmd_identifier_token37] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), + [aux_sym__unquoted_in_record_token2] = ACTIONS(1747), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), }, - [648] = { - [sym_comment] = STATE(648), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2001), - [aux_sym_cmd_identifier_token3] = ACTIONS(2001), - [aux_sym_cmd_identifier_token4] = ACTIONS(2001), - [aux_sym_cmd_identifier_token5] = ACTIONS(2001), - [aux_sym_cmd_identifier_token6] = ACTIONS(2001), - [aux_sym_cmd_identifier_token7] = ACTIONS(2001), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2001), - [aux_sym_cmd_identifier_token11] = ACTIONS(2001), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2001), - [aux_sym_cmd_identifier_token17] = ACTIONS(2001), - [aux_sym_cmd_identifier_token18] = ACTIONS(2001), - [aux_sym_cmd_identifier_token19] = ACTIONS(2001), - [aux_sym_cmd_identifier_token20] = ACTIONS(2001), - [aux_sym_cmd_identifier_token21] = ACTIONS(2001), - [aux_sym_cmd_identifier_token22] = ACTIONS(2001), - [aux_sym_cmd_identifier_token23] = ACTIONS(2001), - [aux_sym_cmd_identifier_token24] = ACTIONS(2001), - [aux_sym_cmd_identifier_token25] = ACTIONS(2001), - [aux_sym_cmd_identifier_token26] = ACTIONS(2001), - [aux_sym_cmd_identifier_token27] = ACTIONS(2001), - [aux_sym_cmd_identifier_token28] = ACTIONS(2001), - [aux_sym_cmd_identifier_token29] = ACTIONS(2001), - [aux_sym_cmd_identifier_token30] = ACTIONS(2001), - [aux_sym_cmd_identifier_token31] = ACTIONS(2001), - [aux_sym_cmd_identifier_token32] = ACTIONS(2001), - [aux_sym_cmd_identifier_token33] = ACTIONS(2001), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2001), - [aux_sym_cmd_identifier_token36] = ACTIONS(2001), - [aux_sym_cmd_identifier_token37] = ACTIONS(2001), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2001), - [aux_sym_cmd_identifier_token40] = ACTIONS(2001), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2001), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in2] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2001), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2001), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2001), - [aux_sym__val_number_decimal_token3] = ACTIONS(2001), - [aux_sym__val_number_decimal_token4] = ACTIONS(2001), - [aux_sym__val_number_token1] = ACTIONS(2001), - [aux_sym__val_number_token2] = ACTIONS(2001), - [aux_sym__val_number_token3] = ACTIONS(2001), - [aux_sym__val_number_token4] = ACTIONS(2001), - [aux_sym__val_number_token5] = ACTIONS(2001), - [aux_sym__val_number_token6] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2001), - [sym__str_single_quotes] = ACTIONS(2001), - [sym__str_back_ticks] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2001), - [sym__entry_separator] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2003), + [622] = { + [sym_comment] = STATE(622), + [anon_sym_export] = ACTIONS(2286), + [anon_sym_alias] = ACTIONS(2286), + [anon_sym_let] = ACTIONS(2286), + [anon_sym_let_DASHenv] = ACTIONS(2286), + [anon_sym_mut] = ACTIONS(2286), + [anon_sym_const] = ACTIONS(2286), + [aux_sym_cmd_identifier_token1] = ACTIONS(2286), + [aux_sym_cmd_identifier_token2] = ACTIONS(2288), + [aux_sym_cmd_identifier_token3] = ACTIONS(2288), + [aux_sym_cmd_identifier_token4] = ACTIONS(2288), + [aux_sym_cmd_identifier_token5] = ACTIONS(2288), + [aux_sym_cmd_identifier_token6] = ACTIONS(2288), + [aux_sym_cmd_identifier_token7] = ACTIONS(2288), + [aux_sym_cmd_identifier_token8] = ACTIONS(2286), + [aux_sym_cmd_identifier_token9] = ACTIONS(2286), + [aux_sym_cmd_identifier_token10] = ACTIONS(2288), + [aux_sym_cmd_identifier_token11] = ACTIONS(2288), + [aux_sym_cmd_identifier_token12] = ACTIONS(2286), + [aux_sym_cmd_identifier_token13] = ACTIONS(2286), + [aux_sym_cmd_identifier_token14] = ACTIONS(2286), + [aux_sym_cmd_identifier_token15] = ACTIONS(2286), + [aux_sym_cmd_identifier_token16] = ACTIONS(2288), + [aux_sym_cmd_identifier_token17] = ACTIONS(2288), + [aux_sym_cmd_identifier_token18] = ACTIONS(2288), + [aux_sym_cmd_identifier_token19] = ACTIONS(2288), + [aux_sym_cmd_identifier_token20] = ACTIONS(2288), + [aux_sym_cmd_identifier_token21] = ACTIONS(2288), + [aux_sym_cmd_identifier_token22] = ACTIONS(2288), + [aux_sym_cmd_identifier_token23] = ACTIONS(2288), + [aux_sym_cmd_identifier_token24] = ACTIONS(2288), + [aux_sym_cmd_identifier_token25] = ACTIONS(2288), + [aux_sym_cmd_identifier_token26] = ACTIONS(2288), + [aux_sym_cmd_identifier_token27] = ACTIONS(2288), + [aux_sym_cmd_identifier_token28] = ACTIONS(2288), + [aux_sym_cmd_identifier_token29] = ACTIONS(2288), + [aux_sym_cmd_identifier_token30] = ACTIONS(2288), + [aux_sym_cmd_identifier_token31] = ACTIONS(2288), + [aux_sym_cmd_identifier_token32] = ACTIONS(2288), + [aux_sym_cmd_identifier_token33] = ACTIONS(2288), + [aux_sym_cmd_identifier_token34] = ACTIONS(2286), + [aux_sym_cmd_identifier_token35] = ACTIONS(2288), + [aux_sym_cmd_identifier_token36] = ACTIONS(2288), + [aux_sym_cmd_identifier_token37] = ACTIONS(2288), + [aux_sym_cmd_identifier_token38] = ACTIONS(2286), + [aux_sym_cmd_identifier_token39] = ACTIONS(2288), + [aux_sym_cmd_identifier_token40] = ACTIONS(2288), + [anon_sym_def] = ACTIONS(2286), + [anon_sym_export_DASHenv] = ACTIONS(2286), + [anon_sym_extern] = ACTIONS(2286), + [anon_sym_module] = ACTIONS(2286), + [anon_sym_use] = ACTIONS(2286), + [anon_sym_LPAREN] = ACTIONS(2286), + [anon_sym_COMMA] = ACTIONS(2288), + [anon_sym_DOLLAR] = ACTIONS(2288), + [anon_sym_error] = ACTIONS(2286), + [anon_sym_DASH2] = ACTIONS(2286), + [anon_sym_break] = ACTIONS(2286), + [anon_sym_continue] = ACTIONS(2286), + [anon_sym_for] = ACTIONS(2286), + [anon_sym_in2] = ACTIONS(2286), + [anon_sym_loop] = ACTIONS(2286), + [anon_sym_make] = ACTIONS(2286), + [anon_sym_while] = ACTIONS(2286), + [anon_sym_do] = ACTIONS(2286), + [anon_sym_if] = ACTIONS(2286), + [anon_sym_else] = ACTIONS(2286), + [anon_sym_match] = ACTIONS(2286), + [anon_sym_RBRACE] = ACTIONS(2288), + [anon_sym_try] = ACTIONS(2286), + [anon_sym_catch] = ACTIONS(2286), + [anon_sym_return] = ACTIONS(2286), + [anon_sym_source] = ACTIONS(2286), + [anon_sym_source_DASHenv] = ACTIONS(2286), + [anon_sym_register] = ACTIONS(2286), + [anon_sym_hide] = ACTIONS(2286), + [anon_sym_hide_DASHenv] = ACTIONS(2286), + [anon_sym_overlay] = ACTIONS(2286), + [anon_sym_as] = ACTIONS(2286), + [anon_sym_LPAREN2] = ACTIONS(2288), + [anon_sym_PLUS2] = ACTIONS(2286), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2288), + [aux_sym__val_number_decimal_token1] = ACTIONS(2286), + [aux_sym__val_number_decimal_token2] = ACTIONS(2288), + [aux_sym__val_number_decimal_token3] = ACTIONS(2288), + [aux_sym__val_number_decimal_token4] = ACTIONS(2288), + [aux_sym__val_number_token1] = ACTIONS(2288), + [aux_sym__val_number_token2] = ACTIONS(2288), + [aux_sym__val_number_token3] = ACTIONS(2288), + [aux_sym__val_number_token4] = ACTIONS(2286), + [aux_sym__val_number_token5] = ACTIONS(2286), + [aux_sym__val_number_token6] = ACTIONS(2286), + [anon_sym_DQUOTE] = ACTIONS(2288), + [sym__str_single_quotes] = ACTIONS(2288), + [sym__str_back_ticks] = ACTIONS(2288), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2288), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2288), }, - [649] = { - [sym_comment] = STATE(649), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2009), - [aux_sym_cmd_identifier_token3] = ACTIONS(2009), - [aux_sym_cmd_identifier_token4] = ACTIONS(2009), - [aux_sym_cmd_identifier_token5] = ACTIONS(2009), - [aux_sym_cmd_identifier_token6] = ACTIONS(2009), - [aux_sym_cmd_identifier_token7] = ACTIONS(2009), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2009), - [aux_sym_cmd_identifier_token11] = ACTIONS(2009), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2009), - [aux_sym_cmd_identifier_token17] = ACTIONS(2009), - [aux_sym_cmd_identifier_token18] = ACTIONS(2009), - [aux_sym_cmd_identifier_token19] = ACTIONS(2009), - [aux_sym_cmd_identifier_token20] = ACTIONS(2009), - [aux_sym_cmd_identifier_token21] = ACTIONS(2009), - [aux_sym_cmd_identifier_token22] = ACTIONS(2009), - [aux_sym_cmd_identifier_token23] = ACTIONS(2009), - [aux_sym_cmd_identifier_token24] = ACTIONS(2009), - [aux_sym_cmd_identifier_token25] = ACTIONS(2009), - [aux_sym_cmd_identifier_token26] = ACTIONS(2009), - [aux_sym_cmd_identifier_token27] = ACTIONS(2009), - [aux_sym_cmd_identifier_token28] = ACTIONS(2009), - [aux_sym_cmd_identifier_token29] = ACTIONS(2009), - [aux_sym_cmd_identifier_token30] = ACTIONS(2009), - [aux_sym_cmd_identifier_token31] = ACTIONS(2009), - [aux_sym_cmd_identifier_token32] = ACTIONS(2009), - [aux_sym_cmd_identifier_token33] = ACTIONS(2009), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2009), - [aux_sym_cmd_identifier_token36] = ACTIONS(2009), - [aux_sym_cmd_identifier_token37] = ACTIONS(2009), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2009), - [aux_sym_cmd_identifier_token40] = ACTIONS(2009), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2009), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2009), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2009), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2009), - [aux_sym__val_number_decimal_token3] = ACTIONS(2009), - [aux_sym__val_number_decimal_token4] = ACTIONS(2009), - [aux_sym__val_number_token1] = ACTIONS(2009), - [aux_sym__val_number_token2] = ACTIONS(2009), - [aux_sym__val_number_token3] = ACTIONS(2009), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2009), - [sym__str_single_quotes] = ACTIONS(2009), - [sym__str_back_ticks] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2009), - [sym__entry_separator] = ACTIONS(2011), + [623] = { + [sym_comment] = STATE(623), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_alias] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_let_DASHenv] = ACTIONS(2403), + [anon_sym_mut] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [aux_sym_cmd_identifier_token1] = ACTIONS(2403), + [aux_sym_cmd_identifier_token2] = ACTIONS(2403), + [aux_sym_cmd_identifier_token3] = ACTIONS(2403), + [aux_sym_cmd_identifier_token4] = ACTIONS(2403), + [aux_sym_cmd_identifier_token5] = ACTIONS(2403), + [aux_sym_cmd_identifier_token6] = ACTIONS(2403), + [aux_sym_cmd_identifier_token7] = ACTIONS(2403), + [aux_sym_cmd_identifier_token8] = ACTIONS(2403), + [aux_sym_cmd_identifier_token9] = ACTIONS(2403), + [aux_sym_cmd_identifier_token10] = ACTIONS(2403), + [aux_sym_cmd_identifier_token11] = ACTIONS(2403), + [aux_sym_cmd_identifier_token12] = ACTIONS(2403), + [aux_sym_cmd_identifier_token13] = ACTIONS(2403), + [aux_sym_cmd_identifier_token14] = ACTIONS(2403), + [aux_sym_cmd_identifier_token15] = ACTIONS(2403), + [aux_sym_cmd_identifier_token16] = ACTIONS(2403), + [aux_sym_cmd_identifier_token17] = ACTIONS(2403), + [aux_sym_cmd_identifier_token18] = ACTIONS(2403), + [aux_sym_cmd_identifier_token19] = ACTIONS(2403), + [aux_sym_cmd_identifier_token20] = ACTIONS(2403), + [aux_sym_cmd_identifier_token21] = ACTIONS(2403), + [aux_sym_cmd_identifier_token22] = ACTIONS(2403), + [aux_sym_cmd_identifier_token23] = ACTIONS(2403), + [aux_sym_cmd_identifier_token24] = ACTIONS(2403), + [aux_sym_cmd_identifier_token25] = ACTIONS(2403), + [aux_sym_cmd_identifier_token26] = ACTIONS(2403), + [aux_sym_cmd_identifier_token27] = ACTIONS(2403), + [aux_sym_cmd_identifier_token28] = ACTIONS(2403), + [aux_sym_cmd_identifier_token29] = ACTIONS(2403), + [aux_sym_cmd_identifier_token30] = ACTIONS(2403), + [aux_sym_cmd_identifier_token31] = ACTIONS(2403), + [aux_sym_cmd_identifier_token32] = ACTIONS(2403), + [aux_sym_cmd_identifier_token33] = ACTIONS(2403), + [aux_sym_cmd_identifier_token34] = ACTIONS(2403), + [aux_sym_cmd_identifier_token35] = ACTIONS(2403), + [aux_sym_cmd_identifier_token36] = ACTIONS(2403), + [aux_sym_cmd_identifier_token37] = ACTIONS(2403), + [aux_sym_cmd_identifier_token38] = ACTIONS(2403), + [aux_sym_cmd_identifier_token39] = ACTIONS(2403), + [aux_sym_cmd_identifier_token40] = ACTIONS(2403), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_export_DASHenv] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2403), + [anon_sym_COMMA] = ACTIONS(2403), + [anon_sym_DOLLAR] = ACTIONS(2403), + [anon_sym_error] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_in2] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_make] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2403), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_source] = ACTIONS(2403), + [anon_sym_source_DASHenv] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), + [anon_sym_hide_DASHenv] = ACTIONS(2403), + [anon_sym_overlay] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2403), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2403), + [aux_sym__val_number_decimal_token3] = ACTIONS(2403), + [aux_sym__val_number_decimal_token4] = ACTIONS(2403), + [aux_sym__val_number_token1] = ACTIONS(2403), + [aux_sym__val_number_token2] = ACTIONS(2403), + [aux_sym__val_number_token3] = ACTIONS(2403), + [aux_sym__val_number_token4] = ACTIONS(2403), + [aux_sym__val_number_token5] = ACTIONS(2403), + [aux_sym__val_number_token6] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2403), + [sym__str_single_quotes] = ACTIONS(2403), + [sym__str_back_ticks] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2403), + [sym__entry_separator] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2011), + [sym_raw_string_begin] = ACTIONS(2405), }, - [650] = { - [sym_comment] = STATE(650), - [anon_sym_export] = ACTIONS(2467), - [anon_sym_alias] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_let_DASHenv] = ACTIONS(2467), - [anon_sym_mut] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [aux_sym_cmd_identifier_token1] = ACTIONS(2467), - [aux_sym_cmd_identifier_token2] = ACTIONS(2467), - [aux_sym_cmd_identifier_token3] = ACTIONS(2467), - [aux_sym_cmd_identifier_token4] = ACTIONS(2467), - [aux_sym_cmd_identifier_token5] = ACTIONS(2467), - [aux_sym_cmd_identifier_token6] = ACTIONS(2467), - [aux_sym_cmd_identifier_token7] = ACTIONS(2467), - [aux_sym_cmd_identifier_token8] = ACTIONS(2467), - [aux_sym_cmd_identifier_token9] = ACTIONS(2467), - [aux_sym_cmd_identifier_token10] = ACTIONS(2467), - [aux_sym_cmd_identifier_token11] = ACTIONS(2467), - [aux_sym_cmd_identifier_token12] = ACTIONS(2467), - [aux_sym_cmd_identifier_token13] = ACTIONS(2467), - [aux_sym_cmd_identifier_token14] = ACTIONS(2467), - [aux_sym_cmd_identifier_token15] = ACTIONS(2467), - [aux_sym_cmd_identifier_token16] = ACTIONS(2467), - [aux_sym_cmd_identifier_token17] = ACTIONS(2467), - [aux_sym_cmd_identifier_token18] = ACTIONS(2467), - [aux_sym_cmd_identifier_token19] = ACTIONS(2467), - [aux_sym_cmd_identifier_token20] = ACTIONS(2467), - [aux_sym_cmd_identifier_token21] = ACTIONS(2467), - [aux_sym_cmd_identifier_token22] = ACTIONS(2467), - [aux_sym_cmd_identifier_token23] = ACTIONS(2467), - [aux_sym_cmd_identifier_token24] = ACTIONS(2467), - [aux_sym_cmd_identifier_token25] = ACTIONS(2467), - [aux_sym_cmd_identifier_token26] = ACTIONS(2467), - [aux_sym_cmd_identifier_token27] = ACTIONS(2467), - [aux_sym_cmd_identifier_token28] = ACTIONS(2467), - [aux_sym_cmd_identifier_token29] = ACTIONS(2467), - [aux_sym_cmd_identifier_token30] = ACTIONS(2467), - [aux_sym_cmd_identifier_token31] = ACTIONS(2467), - [aux_sym_cmd_identifier_token32] = ACTIONS(2467), - [aux_sym_cmd_identifier_token33] = ACTIONS(2467), - [aux_sym_cmd_identifier_token34] = ACTIONS(2467), - [aux_sym_cmd_identifier_token35] = ACTIONS(2467), - [aux_sym_cmd_identifier_token36] = ACTIONS(2467), - [aux_sym_cmd_identifier_token37] = ACTIONS(2467), - [aux_sym_cmd_identifier_token38] = ACTIONS(2467), - [aux_sym_cmd_identifier_token39] = ACTIONS(2467), - [aux_sym_cmd_identifier_token40] = ACTIONS(2467), - [anon_sym_def] = ACTIONS(2467), - [anon_sym_export_DASHenv] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym_module] = ACTIONS(2467), - [anon_sym_use] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2467), - [anon_sym_DOLLAR] = ACTIONS(2467), - [anon_sym_error] = ACTIONS(2467), - [anon_sym_DASH2] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_in2] = ACTIONS(2467), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_make] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), - [anon_sym_RBRACE] = ACTIONS(2467), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_catch] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_source] = ACTIONS(2467), - [anon_sym_source_DASHenv] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_hide] = ACTIONS(2467), - [anon_sym_hide_DASHenv] = ACTIONS(2467), - [anon_sym_overlay] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_PLUS2] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_decimal_token2] = ACTIONS(2467), - [aux_sym__val_number_decimal_token3] = ACTIONS(2467), - [aux_sym__val_number_decimal_token4] = ACTIONS(2467), - [aux_sym__val_number_token1] = ACTIONS(2467), - [aux_sym__val_number_token2] = ACTIONS(2467), - [aux_sym__val_number_token3] = ACTIONS(2467), - [aux_sym__val_number_token4] = ACTIONS(2467), - [aux_sym__val_number_token5] = ACTIONS(2467), - [aux_sym__val_number_token6] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2467), - [sym__str_single_quotes] = ACTIONS(2467), - [sym__str_back_ticks] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), - [sym__entry_separator] = ACTIONS(2469), + [624] = { + [sym_comment] = STATE(624), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2156), + [aux_sym_cmd_identifier_token3] = ACTIONS(2156), + [aux_sym_cmd_identifier_token4] = ACTIONS(2156), + [aux_sym_cmd_identifier_token5] = ACTIONS(2156), + [aux_sym_cmd_identifier_token6] = ACTIONS(2156), + [aux_sym_cmd_identifier_token7] = ACTIONS(2156), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2156), + [aux_sym_cmd_identifier_token11] = ACTIONS(2156), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2156), + [aux_sym_cmd_identifier_token17] = ACTIONS(2156), + [aux_sym_cmd_identifier_token18] = ACTIONS(2156), + [aux_sym_cmd_identifier_token19] = ACTIONS(2156), + [aux_sym_cmd_identifier_token20] = ACTIONS(2156), + [aux_sym_cmd_identifier_token21] = ACTIONS(2156), + [aux_sym_cmd_identifier_token22] = ACTIONS(2156), + [aux_sym_cmd_identifier_token23] = ACTIONS(2156), + [aux_sym_cmd_identifier_token24] = ACTIONS(2156), + [aux_sym_cmd_identifier_token25] = ACTIONS(2156), + [aux_sym_cmd_identifier_token26] = ACTIONS(2156), + [aux_sym_cmd_identifier_token27] = ACTIONS(2156), + [aux_sym_cmd_identifier_token28] = ACTIONS(2156), + [aux_sym_cmd_identifier_token29] = ACTIONS(2156), + [aux_sym_cmd_identifier_token30] = ACTIONS(2156), + [aux_sym_cmd_identifier_token31] = ACTIONS(2156), + [aux_sym_cmd_identifier_token32] = ACTIONS(2156), + [aux_sym_cmd_identifier_token33] = ACTIONS(2156), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2156), + [aux_sym_cmd_identifier_token36] = ACTIONS(2156), + [aux_sym_cmd_identifier_token37] = ACTIONS(2156), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2156), + [aux_sym_cmd_identifier_token40] = ACTIONS(2156), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2156), + [anon_sym_COMMA] = ACTIONS(2156), + [anon_sym_DOLLAR] = ACTIONS(2156), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in2] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2156), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2156), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2156), + [aux_sym__val_number_decimal_token3] = ACTIONS(2156), + [aux_sym__val_number_decimal_token4] = ACTIONS(2156), + [aux_sym__val_number_token1] = ACTIONS(2156), + [aux_sym__val_number_token2] = ACTIONS(2156), + [aux_sym__val_number_token3] = ACTIONS(2156), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2156), + [sym__str_single_quotes] = ACTIONS(2156), + [sym__str_back_ticks] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2156), + [sym__entry_separator] = ACTIONS(2158), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2469), + [sym_raw_string_begin] = ACTIONS(2158), }, - [651] = { - [sym_comment] = STATE(651), - [anon_sym_export] = ACTIONS(2471), - [anon_sym_alias] = ACTIONS(2471), - [anon_sym_let] = ACTIONS(2471), - [anon_sym_let_DASHenv] = ACTIONS(2471), - [anon_sym_mut] = ACTIONS(2471), - [anon_sym_const] = ACTIONS(2471), - [aux_sym_cmd_identifier_token1] = ACTIONS(2471), - [aux_sym_cmd_identifier_token2] = ACTIONS(2471), - [aux_sym_cmd_identifier_token3] = ACTIONS(2471), - [aux_sym_cmd_identifier_token4] = ACTIONS(2471), - [aux_sym_cmd_identifier_token5] = ACTIONS(2471), - [aux_sym_cmd_identifier_token6] = ACTIONS(2471), - [aux_sym_cmd_identifier_token7] = ACTIONS(2471), - [aux_sym_cmd_identifier_token8] = ACTIONS(2471), - [aux_sym_cmd_identifier_token9] = ACTIONS(2471), - [aux_sym_cmd_identifier_token10] = ACTIONS(2471), - [aux_sym_cmd_identifier_token11] = ACTIONS(2471), - [aux_sym_cmd_identifier_token12] = ACTIONS(2471), - [aux_sym_cmd_identifier_token13] = ACTIONS(2471), - [aux_sym_cmd_identifier_token14] = ACTIONS(2471), - [aux_sym_cmd_identifier_token15] = ACTIONS(2471), - [aux_sym_cmd_identifier_token16] = ACTIONS(2471), - [aux_sym_cmd_identifier_token17] = ACTIONS(2471), - [aux_sym_cmd_identifier_token18] = ACTIONS(2471), - [aux_sym_cmd_identifier_token19] = ACTIONS(2471), - [aux_sym_cmd_identifier_token20] = ACTIONS(2471), - [aux_sym_cmd_identifier_token21] = ACTIONS(2471), - [aux_sym_cmd_identifier_token22] = ACTIONS(2471), - [aux_sym_cmd_identifier_token23] = ACTIONS(2471), - [aux_sym_cmd_identifier_token24] = ACTIONS(2471), - [aux_sym_cmd_identifier_token25] = ACTIONS(2471), - [aux_sym_cmd_identifier_token26] = ACTIONS(2471), - [aux_sym_cmd_identifier_token27] = ACTIONS(2471), - [aux_sym_cmd_identifier_token28] = ACTIONS(2471), - [aux_sym_cmd_identifier_token29] = ACTIONS(2471), - [aux_sym_cmd_identifier_token30] = ACTIONS(2471), - [aux_sym_cmd_identifier_token31] = ACTIONS(2471), - [aux_sym_cmd_identifier_token32] = ACTIONS(2471), - [aux_sym_cmd_identifier_token33] = ACTIONS(2471), - [aux_sym_cmd_identifier_token34] = ACTIONS(2471), - [aux_sym_cmd_identifier_token35] = ACTIONS(2471), - [aux_sym_cmd_identifier_token36] = ACTIONS(2471), - [aux_sym_cmd_identifier_token37] = ACTIONS(2471), - [aux_sym_cmd_identifier_token38] = ACTIONS(2471), - [aux_sym_cmd_identifier_token39] = ACTIONS(2471), - [aux_sym_cmd_identifier_token40] = ACTIONS(2471), - [anon_sym_def] = ACTIONS(2471), - [anon_sym_export_DASHenv] = ACTIONS(2471), - [anon_sym_extern] = ACTIONS(2471), - [anon_sym_module] = ACTIONS(2471), - [anon_sym_use] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2471), - [anon_sym_DOLLAR] = ACTIONS(2471), - [anon_sym_error] = ACTIONS(2471), - [anon_sym_DASH2] = ACTIONS(2471), - [anon_sym_break] = ACTIONS(2471), - [anon_sym_continue] = ACTIONS(2471), - [anon_sym_for] = ACTIONS(2471), - [anon_sym_in2] = ACTIONS(2471), - [anon_sym_loop] = ACTIONS(2471), - [anon_sym_make] = ACTIONS(2471), - [anon_sym_while] = ACTIONS(2471), - [anon_sym_do] = ACTIONS(2471), - [anon_sym_if] = ACTIONS(2471), - [anon_sym_else] = ACTIONS(2471), - [anon_sym_match] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2471), - [anon_sym_try] = ACTIONS(2471), - [anon_sym_catch] = ACTIONS(2471), - [anon_sym_return] = ACTIONS(2471), - [anon_sym_source] = ACTIONS(2471), - [anon_sym_source_DASHenv] = ACTIONS(2471), - [anon_sym_register] = ACTIONS(2471), - [anon_sym_hide] = ACTIONS(2471), - [anon_sym_hide_DASHenv] = ACTIONS(2471), - [anon_sym_overlay] = ACTIONS(2471), - [anon_sym_as] = ACTIONS(2471), - [anon_sym_PLUS2] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), - [aux_sym__val_number_decimal_token1] = ACTIONS(2471), - [aux_sym__val_number_decimal_token2] = ACTIONS(2471), - [aux_sym__val_number_decimal_token3] = ACTIONS(2471), - [aux_sym__val_number_decimal_token4] = ACTIONS(2471), - [aux_sym__val_number_token1] = ACTIONS(2471), - [aux_sym__val_number_token2] = ACTIONS(2471), - [aux_sym__val_number_token3] = ACTIONS(2471), - [aux_sym__val_number_token4] = ACTIONS(2471), - [aux_sym__val_number_token5] = ACTIONS(2471), - [aux_sym__val_number_token6] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2471), - [sym__str_single_quotes] = ACTIONS(2471), - [sym__str_back_ticks] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), - [sym__entry_separator] = ACTIONS(2473), + [625] = { + [sym_comment] = STATE(625), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_alias] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_let_DASHenv] = ACTIONS(2072), + [anon_sym_mut] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [aux_sym_cmd_identifier_token1] = ACTIONS(2072), + [aux_sym_cmd_identifier_token2] = ACTIONS(2072), + [aux_sym_cmd_identifier_token3] = ACTIONS(2072), + [aux_sym_cmd_identifier_token4] = ACTIONS(2072), + [aux_sym_cmd_identifier_token5] = ACTIONS(2072), + [aux_sym_cmd_identifier_token6] = ACTIONS(2072), + [aux_sym_cmd_identifier_token7] = ACTIONS(2072), + [aux_sym_cmd_identifier_token8] = ACTIONS(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2072), + [aux_sym_cmd_identifier_token11] = ACTIONS(2072), + [aux_sym_cmd_identifier_token12] = ACTIONS(2072), + [aux_sym_cmd_identifier_token13] = ACTIONS(2072), + [aux_sym_cmd_identifier_token14] = ACTIONS(2072), + [aux_sym_cmd_identifier_token15] = ACTIONS(2072), + [aux_sym_cmd_identifier_token16] = ACTIONS(2072), + [aux_sym_cmd_identifier_token17] = ACTIONS(2072), + [aux_sym_cmd_identifier_token18] = ACTIONS(2072), + [aux_sym_cmd_identifier_token19] = ACTIONS(2072), + [aux_sym_cmd_identifier_token20] = ACTIONS(2072), + [aux_sym_cmd_identifier_token21] = ACTIONS(2072), + [aux_sym_cmd_identifier_token22] = ACTIONS(2072), + [aux_sym_cmd_identifier_token23] = ACTIONS(2072), + [aux_sym_cmd_identifier_token24] = ACTIONS(2072), + [aux_sym_cmd_identifier_token25] = ACTIONS(2072), + [aux_sym_cmd_identifier_token26] = ACTIONS(2072), + [aux_sym_cmd_identifier_token27] = ACTIONS(2072), + [aux_sym_cmd_identifier_token28] = ACTIONS(2072), + [aux_sym_cmd_identifier_token29] = ACTIONS(2072), + [aux_sym_cmd_identifier_token30] = ACTIONS(2072), + [aux_sym_cmd_identifier_token31] = ACTIONS(2072), + [aux_sym_cmd_identifier_token32] = ACTIONS(2072), + [aux_sym_cmd_identifier_token33] = ACTIONS(2072), + [aux_sym_cmd_identifier_token34] = ACTIONS(2072), + [aux_sym_cmd_identifier_token35] = ACTIONS(2072), + [aux_sym_cmd_identifier_token36] = ACTIONS(2072), + [aux_sym_cmd_identifier_token37] = ACTIONS(2072), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2072), + [aux_sym_cmd_identifier_token40] = ACTIONS(2072), + [anon_sym_def] = ACTIONS(2072), + [anon_sym_export_DASHenv] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2072), + [anon_sym_COMMA] = ACTIONS(2072), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_error] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_make] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2072), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_catch] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_source] = ACTIONS(2072), + [anon_sym_source_DASHenv] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_hide] = ACTIONS(2072), + [anon_sym_hide_DASHenv] = ACTIONS(2072), + [anon_sym_overlay] = ACTIONS(2072), + [anon_sym_as] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2072), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2072), + [aux_sym__val_number_decimal_token3] = ACTIONS(2072), + [aux_sym__val_number_decimal_token4] = ACTIONS(2072), + [aux_sym__val_number_token1] = ACTIONS(2072), + [aux_sym__val_number_token2] = ACTIONS(2072), + [aux_sym__val_number_token3] = ACTIONS(2072), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2072), + [sym__str_single_quotes] = ACTIONS(2072), + [sym__str_back_ticks] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2072), + [sym__entry_separator] = ACTIONS(2078), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2473), + [sym_raw_string_begin] = ACTIONS(2078), }, - [652] = { - [sym_comment] = STATE(652), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2089), - [aux_sym_cmd_identifier_token3] = ACTIONS(2089), - [aux_sym_cmd_identifier_token4] = ACTIONS(2089), - [aux_sym_cmd_identifier_token5] = ACTIONS(2089), - [aux_sym_cmd_identifier_token6] = ACTIONS(2089), - [aux_sym_cmd_identifier_token7] = ACTIONS(2089), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2089), - [aux_sym_cmd_identifier_token11] = ACTIONS(2089), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2089), - [aux_sym_cmd_identifier_token17] = ACTIONS(2089), - [aux_sym_cmd_identifier_token18] = ACTIONS(2089), - [aux_sym_cmd_identifier_token19] = ACTIONS(2089), - [aux_sym_cmd_identifier_token20] = ACTIONS(2089), - [aux_sym_cmd_identifier_token21] = ACTIONS(2089), - [aux_sym_cmd_identifier_token22] = ACTIONS(2089), - [aux_sym_cmd_identifier_token23] = ACTIONS(2089), - [aux_sym_cmd_identifier_token24] = ACTIONS(2089), - [aux_sym_cmd_identifier_token25] = ACTIONS(2089), - [aux_sym_cmd_identifier_token26] = ACTIONS(2089), - [aux_sym_cmd_identifier_token27] = ACTIONS(2089), - [aux_sym_cmd_identifier_token28] = ACTIONS(2089), - [aux_sym_cmd_identifier_token29] = ACTIONS(2089), - [aux_sym_cmd_identifier_token30] = ACTIONS(2089), - [aux_sym_cmd_identifier_token31] = ACTIONS(2089), - [aux_sym_cmd_identifier_token32] = ACTIONS(2089), - [aux_sym_cmd_identifier_token33] = ACTIONS(2089), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2089), - [aux_sym_cmd_identifier_token36] = ACTIONS(2089), - [aux_sym_cmd_identifier_token37] = ACTIONS(2089), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2089), - [aux_sym_cmd_identifier_token40] = ACTIONS(2089), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2089), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2089), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2089), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2089), - [aux_sym__val_number_decimal_token3] = ACTIONS(2089), - [aux_sym__val_number_decimal_token4] = ACTIONS(2089), - [aux_sym__val_number_token1] = ACTIONS(2089), - [aux_sym__val_number_token2] = ACTIONS(2089), - [aux_sym__val_number_token3] = ACTIONS(2089), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2089), - [sym__str_single_quotes] = ACTIONS(2089), - [sym__str_back_ticks] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2089), - [sym__entry_separator] = ACTIONS(2091), + [626] = { + [sym_comment] = STATE(626), + [anon_sym_export] = ACTIONS(2407), + [anon_sym_alias] = ACTIONS(2407), + [anon_sym_let] = ACTIONS(2407), + [anon_sym_let_DASHenv] = ACTIONS(2407), + [anon_sym_mut] = ACTIONS(2407), + [anon_sym_const] = ACTIONS(2407), + [aux_sym_cmd_identifier_token1] = ACTIONS(2407), + [aux_sym_cmd_identifier_token2] = ACTIONS(2407), + [aux_sym_cmd_identifier_token3] = ACTIONS(2407), + [aux_sym_cmd_identifier_token4] = ACTIONS(2407), + [aux_sym_cmd_identifier_token5] = ACTIONS(2407), + [aux_sym_cmd_identifier_token6] = ACTIONS(2407), + [aux_sym_cmd_identifier_token7] = ACTIONS(2407), + [aux_sym_cmd_identifier_token8] = ACTIONS(2407), + [aux_sym_cmd_identifier_token9] = ACTIONS(2407), + [aux_sym_cmd_identifier_token10] = ACTIONS(2407), + [aux_sym_cmd_identifier_token11] = ACTIONS(2407), + [aux_sym_cmd_identifier_token12] = ACTIONS(2407), + [aux_sym_cmd_identifier_token13] = ACTIONS(2407), + [aux_sym_cmd_identifier_token14] = ACTIONS(2407), + [aux_sym_cmd_identifier_token15] = ACTIONS(2407), + [aux_sym_cmd_identifier_token16] = ACTIONS(2407), + [aux_sym_cmd_identifier_token17] = ACTIONS(2407), + [aux_sym_cmd_identifier_token18] = ACTIONS(2407), + [aux_sym_cmd_identifier_token19] = ACTIONS(2407), + [aux_sym_cmd_identifier_token20] = ACTIONS(2407), + [aux_sym_cmd_identifier_token21] = ACTIONS(2407), + [aux_sym_cmd_identifier_token22] = ACTIONS(2407), + [aux_sym_cmd_identifier_token23] = ACTIONS(2407), + [aux_sym_cmd_identifier_token24] = ACTIONS(2407), + [aux_sym_cmd_identifier_token25] = ACTIONS(2407), + [aux_sym_cmd_identifier_token26] = ACTIONS(2407), + [aux_sym_cmd_identifier_token27] = ACTIONS(2407), + [aux_sym_cmd_identifier_token28] = ACTIONS(2407), + [aux_sym_cmd_identifier_token29] = ACTIONS(2407), + [aux_sym_cmd_identifier_token30] = ACTIONS(2407), + [aux_sym_cmd_identifier_token31] = ACTIONS(2407), + [aux_sym_cmd_identifier_token32] = ACTIONS(2407), + [aux_sym_cmd_identifier_token33] = ACTIONS(2407), + [aux_sym_cmd_identifier_token34] = ACTIONS(2407), + [aux_sym_cmd_identifier_token35] = ACTIONS(2407), + [aux_sym_cmd_identifier_token36] = ACTIONS(2407), + [aux_sym_cmd_identifier_token37] = ACTIONS(2407), + [aux_sym_cmd_identifier_token38] = ACTIONS(2407), + [aux_sym_cmd_identifier_token39] = ACTIONS(2407), + [aux_sym_cmd_identifier_token40] = ACTIONS(2407), + [anon_sym_def] = ACTIONS(2407), + [anon_sym_export_DASHenv] = ACTIONS(2407), + [anon_sym_extern] = ACTIONS(2407), + [anon_sym_module] = ACTIONS(2407), + [anon_sym_use] = ACTIONS(2407), + [anon_sym_LPAREN] = ACTIONS(2407), + [anon_sym_COMMA] = ACTIONS(2407), + [anon_sym_DOLLAR] = ACTIONS(2407), + [anon_sym_error] = ACTIONS(2407), + [anon_sym_DASH2] = ACTIONS(2407), + [anon_sym_break] = ACTIONS(2407), + [anon_sym_continue] = ACTIONS(2407), + [anon_sym_for] = ACTIONS(2407), + [anon_sym_in2] = ACTIONS(2407), + [anon_sym_loop] = ACTIONS(2407), + [anon_sym_make] = ACTIONS(2407), + [anon_sym_while] = ACTIONS(2407), + [anon_sym_do] = ACTIONS(2407), + [anon_sym_if] = ACTIONS(2407), + [anon_sym_else] = ACTIONS(2407), + [anon_sym_match] = ACTIONS(2407), + [anon_sym_RBRACE] = ACTIONS(2407), + [anon_sym_try] = ACTIONS(2407), + [anon_sym_catch] = ACTIONS(2407), + [anon_sym_return] = ACTIONS(2407), + [anon_sym_source] = ACTIONS(2407), + [anon_sym_source_DASHenv] = ACTIONS(2407), + [anon_sym_register] = ACTIONS(2407), + [anon_sym_hide] = ACTIONS(2407), + [anon_sym_hide_DASHenv] = ACTIONS(2407), + [anon_sym_overlay] = ACTIONS(2407), + [anon_sym_as] = ACTIONS(2407), + [anon_sym_PLUS2] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2407), + [aux_sym__val_number_decimal_token1] = ACTIONS(2407), + [aux_sym__val_number_decimal_token2] = ACTIONS(2407), + [aux_sym__val_number_decimal_token3] = ACTIONS(2407), + [aux_sym__val_number_decimal_token4] = ACTIONS(2407), + [aux_sym__val_number_token1] = ACTIONS(2407), + [aux_sym__val_number_token2] = ACTIONS(2407), + [aux_sym__val_number_token3] = ACTIONS(2407), + [aux_sym__val_number_token4] = ACTIONS(2407), + [aux_sym__val_number_token5] = ACTIONS(2407), + [aux_sym__val_number_token6] = ACTIONS(2407), + [anon_sym_DQUOTE] = ACTIONS(2407), + [sym__str_single_quotes] = ACTIONS(2407), + [sym__str_back_ticks] = ACTIONS(2407), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2407), + [sym__entry_separator] = ACTIONS(2409), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2091), + [sym_raw_string_begin] = ACTIONS(2409), }, - [653] = { - [sym_comment] = STATE(653), - [anon_sym_export] = ACTIONS(2475), - [anon_sym_alias] = ACTIONS(2475), - [anon_sym_let] = ACTIONS(2475), - [anon_sym_let_DASHenv] = ACTIONS(2475), - [anon_sym_mut] = ACTIONS(2475), - [anon_sym_const] = ACTIONS(2475), - [aux_sym_cmd_identifier_token1] = ACTIONS(2475), - [aux_sym_cmd_identifier_token2] = ACTIONS(2475), - [aux_sym_cmd_identifier_token3] = ACTIONS(2475), - [aux_sym_cmd_identifier_token4] = ACTIONS(2475), - [aux_sym_cmd_identifier_token5] = ACTIONS(2475), - [aux_sym_cmd_identifier_token6] = ACTIONS(2475), - [aux_sym_cmd_identifier_token7] = ACTIONS(2475), - [aux_sym_cmd_identifier_token8] = ACTIONS(2475), - [aux_sym_cmd_identifier_token9] = ACTIONS(2475), - [aux_sym_cmd_identifier_token10] = ACTIONS(2475), - [aux_sym_cmd_identifier_token11] = ACTIONS(2475), - [aux_sym_cmd_identifier_token12] = ACTIONS(2475), - [aux_sym_cmd_identifier_token13] = ACTIONS(2475), - [aux_sym_cmd_identifier_token14] = ACTIONS(2475), - [aux_sym_cmd_identifier_token15] = ACTIONS(2475), - [aux_sym_cmd_identifier_token16] = ACTIONS(2475), - [aux_sym_cmd_identifier_token17] = ACTIONS(2475), - [aux_sym_cmd_identifier_token18] = ACTIONS(2475), - [aux_sym_cmd_identifier_token19] = ACTIONS(2475), - [aux_sym_cmd_identifier_token20] = ACTIONS(2475), - [aux_sym_cmd_identifier_token21] = ACTIONS(2475), - [aux_sym_cmd_identifier_token22] = ACTIONS(2475), - [aux_sym_cmd_identifier_token23] = ACTIONS(2475), - [aux_sym_cmd_identifier_token24] = ACTIONS(2475), - [aux_sym_cmd_identifier_token25] = ACTIONS(2475), - [aux_sym_cmd_identifier_token26] = ACTIONS(2475), - [aux_sym_cmd_identifier_token27] = ACTIONS(2475), - [aux_sym_cmd_identifier_token28] = ACTIONS(2475), - [aux_sym_cmd_identifier_token29] = ACTIONS(2475), - [aux_sym_cmd_identifier_token30] = ACTIONS(2475), - [aux_sym_cmd_identifier_token31] = ACTIONS(2475), - [aux_sym_cmd_identifier_token32] = ACTIONS(2475), - [aux_sym_cmd_identifier_token33] = ACTIONS(2475), - [aux_sym_cmd_identifier_token34] = ACTIONS(2475), - [aux_sym_cmd_identifier_token35] = ACTIONS(2475), - [aux_sym_cmd_identifier_token36] = ACTIONS(2475), - [aux_sym_cmd_identifier_token37] = ACTIONS(2475), - [aux_sym_cmd_identifier_token38] = ACTIONS(2475), - [aux_sym_cmd_identifier_token39] = ACTIONS(2475), - [aux_sym_cmd_identifier_token40] = ACTIONS(2475), - [anon_sym_def] = ACTIONS(2475), - [anon_sym_export_DASHenv] = ACTIONS(2475), - [anon_sym_extern] = ACTIONS(2475), - [anon_sym_module] = ACTIONS(2475), - [anon_sym_use] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2475), - [anon_sym_DOLLAR] = ACTIONS(2475), - [anon_sym_error] = ACTIONS(2475), - [anon_sym_DASH2] = ACTIONS(2475), - [anon_sym_break] = ACTIONS(2475), - [anon_sym_continue] = ACTIONS(2475), - [anon_sym_for] = ACTIONS(2475), - [anon_sym_in2] = ACTIONS(2475), - [anon_sym_loop] = ACTIONS(2475), - [anon_sym_make] = ACTIONS(2475), - [anon_sym_while] = ACTIONS(2475), - [anon_sym_do] = ACTIONS(2475), - [anon_sym_if] = ACTIONS(2475), - [anon_sym_else] = ACTIONS(2475), - [anon_sym_match] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2475), - [anon_sym_try] = ACTIONS(2475), - [anon_sym_catch] = ACTIONS(2475), - [anon_sym_return] = ACTIONS(2475), - [anon_sym_source] = ACTIONS(2475), - [anon_sym_source_DASHenv] = ACTIONS(2475), - [anon_sym_register] = ACTIONS(2475), - [anon_sym_hide] = ACTIONS(2475), - [anon_sym_hide_DASHenv] = ACTIONS(2475), - [anon_sym_overlay] = ACTIONS(2475), - [anon_sym_as] = ACTIONS(2475), - [anon_sym_PLUS2] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), - [aux_sym__val_number_decimal_token1] = ACTIONS(2475), - [aux_sym__val_number_decimal_token2] = ACTIONS(2475), - [aux_sym__val_number_decimal_token3] = ACTIONS(2475), - [aux_sym__val_number_decimal_token4] = ACTIONS(2475), - [aux_sym__val_number_token1] = ACTIONS(2475), - [aux_sym__val_number_token2] = ACTIONS(2475), - [aux_sym__val_number_token3] = ACTIONS(2475), - [aux_sym__val_number_token4] = ACTIONS(2475), - [aux_sym__val_number_token5] = ACTIONS(2475), - [aux_sym__val_number_token6] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2475), - [sym__str_single_quotes] = ACTIONS(2475), - [sym__str_back_ticks] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), - [sym__entry_separator] = ACTIONS(2477), + [627] = { + [sym_comment] = STATE(627), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_alias] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_let_DASHenv] = ACTIONS(1825), + [anon_sym_mut] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [aux_sym_cmd_identifier_token1] = ACTIONS(1825), + [aux_sym_cmd_identifier_token2] = ACTIONS(1825), + [aux_sym_cmd_identifier_token3] = ACTIONS(1825), + [aux_sym_cmd_identifier_token4] = ACTIONS(1825), + [aux_sym_cmd_identifier_token5] = ACTIONS(1825), + [aux_sym_cmd_identifier_token6] = ACTIONS(1825), + [aux_sym_cmd_identifier_token7] = ACTIONS(1825), + [aux_sym_cmd_identifier_token8] = ACTIONS(1825), + [aux_sym_cmd_identifier_token9] = ACTIONS(1825), + [aux_sym_cmd_identifier_token10] = ACTIONS(1825), + [aux_sym_cmd_identifier_token11] = ACTIONS(1825), + [aux_sym_cmd_identifier_token12] = ACTIONS(1825), + [aux_sym_cmd_identifier_token13] = ACTIONS(1825), + [aux_sym_cmd_identifier_token14] = ACTIONS(1825), + [aux_sym_cmd_identifier_token15] = ACTIONS(1825), + [aux_sym_cmd_identifier_token16] = ACTIONS(1825), + [aux_sym_cmd_identifier_token17] = ACTIONS(1825), + [aux_sym_cmd_identifier_token18] = ACTIONS(1825), + [aux_sym_cmd_identifier_token19] = ACTIONS(1825), + [aux_sym_cmd_identifier_token20] = ACTIONS(1825), + [aux_sym_cmd_identifier_token21] = ACTIONS(1825), + [aux_sym_cmd_identifier_token22] = ACTIONS(1825), + [aux_sym_cmd_identifier_token23] = ACTIONS(1825), + [aux_sym_cmd_identifier_token24] = ACTIONS(1825), + [aux_sym_cmd_identifier_token25] = ACTIONS(1825), + [aux_sym_cmd_identifier_token26] = ACTIONS(1825), + [aux_sym_cmd_identifier_token27] = ACTIONS(1825), + [aux_sym_cmd_identifier_token28] = ACTIONS(1825), + [aux_sym_cmd_identifier_token29] = ACTIONS(1825), + [aux_sym_cmd_identifier_token30] = ACTIONS(1825), + [aux_sym_cmd_identifier_token31] = ACTIONS(1825), + [aux_sym_cmd_identifier_token32] = ACTIONS(1825), + [aux_sym_cmd_identifier_token33] = ACTIONS(1825), + [aux_sym_cmd_identifier_token34] = ACTIONS(1825), + [aux_sym_cmd_identifier_token35] = ACTIONS(1825), + [aux_sym_cmd_identifier_token36] = ACTIONS(1825), + [aux_sym_cmd_identifier_token37] = ACTIONS(1825), + [aux_sym_cmd_identifier_token38] = ACTIONS(1825), + [aux_sym_cmd_identifier_token39] = ACTIONS(1825), + [aux_sym_cmd_identifier_token40] = ACTIONS(1825), + [anon_sym_def] = ACTIONS(1825), + [anon_sym_export_DASHenv] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1825), + [anon_sym_COMMA] = ACTIONS(1825), + [anon_sym_DOLLAR] = ACTIONS(1825), + [anon_sym_error] = ACTIONS(1825), + [anon_sym_DASH2] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_in2] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_make] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1825), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_catch] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_source] = ACTIONS(1825), + [anon_sym_source_DASHenv] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_hide] = ACTIONS(1825), + [anon_sym_hide_DASHenv] = ACTIONS(1825), + [anon_sym_overlay] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_PLUS2] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1825), + [aux_sym__val_number_decimal_token1] = ACTIONS(1825), + [aux_sym__val_number_decimal_token2] = ACTIONS(1825), + [aux_sym__val_number_decimal_token3] = ACTIONS(1825), + [aux_sym__val_number_decimal_token4] = ACTIONS(1825), + [aux_sym__val_number_token1] = ACTIONS(1825), + [aux_sym__val_number_token2] = ACTIONS(1825), + [aux_sym__val_number_token3] = ACTIONS(1825), + [aux_sym__val_number_token4] = ACTIONS(1825), + [aux_sym__val_number_token5] = ACTIONS(1825), + [aux_sym__val_number_token6] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1825), + [sym__str_single_quotes] = ACTIONS(1825), + [sym__str_back_ticks] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1825), + [sym__entry_separator] = ACTIONS(1827), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2477), + [sym_raw_string_begin] = ACTIONS(1827), }, - [654] = { - [sym_comment] = STATE(654), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_alias] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_DASHenv] = ACTIONS(2479), - [anon_sym_mut] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [aux_sym_cmd_identifier_token1] = ACTIONS(2479), - [aux_sym_cmd_identifier_token2] = ACTIONS(2479), - [aux_sym_cmd_identifier_token3] = ACTIONS(2479), - [aux_sym_cmd_identifier_token4] = ACTIONS(2479), - [aux_sym_cmd_identifier_token5] = ACTIONS(2479), - [aux_sym_cmd_identifier_token6] = ACTIONS(2479), - [aux_sym_cmd_identifier_token7] = ACTIONS(2479), - [aux_sym_cmd_identifier_token8] = ACTIONS(2479), - [aux_sym_cmd_identifier_token9] = ACTIONS(2479), - [aux_sym_cmd_identifier_token10] = ACTIONS(2479), - [aux_sym_cmd_identifier_token11] = ACTIONS(2479), - [aux_sym_cmd_identifier_token12] = ACTIONS(2479), - [aux_sym_cmd_identifier_token13] = ACTIONS(2479), - [aux_sym_cmd_identifier_token14] = ACTIONS(2479), - [aux_sym_cmd_identifier_token15] = ACTIONS(2479), - [aux_sym_cmd_identifier_token16] = ACTIONS(2479), - [aux_sym_cmd_identifier_token17] = ACTIONS(2479), - [aux_sym_cmd_identifier_token18] = ACTIONS(2479), - [aux_sym_cmd_identifier_token19] = ACTIONS(2479), - [aux_sym_cmd_identifier_token20] = ACTIONS(2479), - [aux_sym_cmd_identifier_token21] = ACTIONS(2479), - [aux_sym_cmd_identifier_token22] = ACTIONS(2479), - [aux_sym_cmd_identifier_token23] = ACTIONS(2479), - [aux_sym_cmd_identifier_token24] = ACTIONS(2479), - [aux_sym_cmd_identifier_token25] = ACTIONS(2479), - [aux_sym_cmd_identifier_token26] = ACTIONS(2479), - [aux_sym_cmd_identifier_token27] = ACTIONS(2479), - [aux_sym_cmd_identifier_token28] = ACTIONS(2479), - [aux_sym_cmd_identifier_token29] = ACTIONS(2479), - [aux_sym_cmd_identifier_token30] = ACTIONS(2479), - [aux_sym_cmd_identifier_token31] = ACTIONS(2479), - [aux_sym_cmd_identifier_token32] = ACTIONS(2479), - [aux_sym_cmd_identifier_token33] = ACTIONS(2479), - [aux_sym_cmd_identifier_token34] = ACTIONS(2479), - [aux_sym_cmd_identifier_token35] = ACTIONS(2479), - [aux_sym_cmd_identifier_token36] = ACTIONS(2479), - [aux_sym_cmd_identifier_token37] = ACTIONS(2479), - [aux_sym_cmd_identifier_token38] = ACTIONS(2479), - [aux_sym_cmd_identifier_token39] = ACTIONS(2479), - [aux_sym_cmd_identifier_token40] = ACTIONS(2479), - [anon_sym_def] = ACTIONS(2479), - [anon_sym_export_DASHenv] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), - [anon_sym_LPAREN] = ACTIONS(2479), - [anon_sym_DOLLAR] = ACTIONS(2479), - [anon_sym_error] = ACTIONS(2479), - [anon_sym_DASH2] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_in2] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_make] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), - [anon_sym_RBRACE] = ACTIONS(2479), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_catch] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_source] = ACTIONS(2479), - [anon_sym_source_DASHenv] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_hide] = ACTIONS(2479), - [anon_sym_hide_DASHenv] = ACTIONS(2479), - [anon_sym_overlay] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_PLUS2] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2479), - [aux_sym__val_number_decimal_token1] = ACTIONS(2479), - [aux_sym__val_number_decimal_token2] = ACTIONS(2479), - [aux_sym__val_number_decimal_token3] = ACTIONS(2479), - [aux_sym__val_number_decimal_token4] = ACTIONS(2479), - [aux_sym__val_number_token1] = ACTIONS(2479), - [aux_sym__val_number_token2] = ACTIONS(2479), - [aux_sym__val_number_token3] = ACTIONS(2479), - [aux_sym__val_number_token4] = ACTIONS(2479), - [aux_sym__val_number_token5] = ACTIONS(2479), - [aux_sym__val_number_token6] = ACTIONS(2479), - [anon_sym_DQUOTE] = ACTIONS(2479), - [sym__str_single_quotes] = ACTIONS(2479), - [sym__str_back_ticks] = ACTIONS(2479), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2479), - [sym__entry_separator] = ACTIONS(2481), + [628] = { + [sym_comment] = STATE(628), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1871), + [aux_sym_cmd_identifier_token3] = ACTIONS(1871), + [aux_sym_cmd_identifier_token4] = ACTIONS(1871), + [aux_sym_cmd_identifier_token5] = ACTIONS(1871), + [aux_sym_cmd_identifier_token6] = ACTIONS(1871), + [aux_sym_cmd_identifier_token7] = ACTIONS(1871), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1871), + [aux_sym_cmd_identifier_token11] = ACTIONS(1871), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1871), + [aux_sym_cmd_identifier_token17] = ACTIONS(1871), + [aux_sym_cmd_identifier_token18] = ACTIONS(1871), + [aux_sym_cmd_identifier_token19] = ACTIONS(1871), + [aux_sym_cmd_identifier_token20] = ACTIONS(1871), + [aux_sym_cmd_identifier_token21] = ACTIONS(1871), + [aux_sym_cmd_identifier_token22] = ACTIONS(1871), + [aux_sym_cmd_identifier_token23] = ACTIONS(1871), + [aux_sym_cmd_identifier_token24] = ACTIONS(1871), + [aux_sym_cmd_identifier_token25] = ACTIONS(1871), + [aux_sym_cmd_identifier_token26] = ACTIONS(1871), + [aux_sym_cmd_identifier_token27] = ACTIONS(1871), + [aux_sym_cmd_identifier_token28] = ACTIONS(1871), + [aux_sym_cmd_identifier_token29] = ACTIONS(1871), + [aux_sym_cmd_identifier_token30] = ACTIONS(1871), + [aux_sym_cmd_identifier_token31] = ACTIONS(1871), + [aux_sym_cmd_identifier_token32] = ACTIONS(1871), + [aux_sym_cmd_identifier_token33] = ACTIONS(1871), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1871), + [aux_sym_cmd_identifier_token36] = ACTIONS(1871), + [aux_sym_cmd_identifier_token37] = ACTIONS(1871), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1871), + [aux_sym_cmd_identifier_token40] = ACTIONS(1871), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1871), + [anon_sym_COMMA] = ACTIONS(1871), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1871), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1871), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1871), + [aux_sym__val_number_decimal_token3] = ACTIONS(1871), + [aux_sym__val_number_decimal_token4] = ACTIONS(1871), + [aux_sym__val_number_token1] = ACTIONS(1871), + [aux_sym__val_number_token2] = ACTIONS(1871), + [aux_sym__val_number_token3] = ACTIONS(1871), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1871), + [sym__str_single_quotes] = ACTIONS(1871), + [sym__str_back_ticks] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1871), + [sym__entry_separator] = ACTIONS(1873), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2481), + [sym_raw_string_begin] = ACTIONS(1873), }, - [655] = { - [sym_comment] = STATE(655), - [aux_sym__multiple_types_repeat1] = STATE(560), - [anon_sym_export] = ACTIONS(2294), - [anon_sym_alias] = ACTIONS(2294), - [anon_sym_let] = ACTIONS(2294), - [anon_sym_let_DASHenv] = ACTIONS(2294), - [anon_sym_mut] = ACTIONS(2294), - [anon_sym_const] = ACTIONS(2294), - [aux_sym_cmd_identifier_token1] = ACTIONS(2294), - [aux_sym_cmd_identifier_token2] = ACTIONS(2294), - [aux_sym_cmd_identifier_token3] = ACTIONS(2294), - [aux_sym_cmd_identifier_token4] = ACTIONS(2294), - [aux_sym_cmd_identifier_token5] = ACTIONS(2294), - [aux_sym_cmd_identifier_token6] = ACTIONS(2294), - [aux_sym_cmd_identifier_token7] = ACTIONS(2294), - [aux_sym_cmd_identifier_token8] = ACTIONS(2294), - [aux_sym_cmd_identifier_token9] = ACTIONS(2294), - [aux_sym_cmd_identifier_token10] = ACTIONS(2294), - [aux_sym_cmd_identifier_token11] = ACTIONS(2294), - [aux_sym_cmd_identifier_token12] = ACTIONS(2294), - [aux_sym_cmd_identifier_token13] = ACTIONS(2294), - [aux_sym_cmd_identifier_token14] = ACTIONS(2294), - [aux_sym_cmd_identifier_token15] = ACTIONS(2294), - [aux_sym_cmd_identifier_token16] = ACTIONS(2294), - [aux_sym_cmd_identifier_token17] = ACTIONS(2294), - [aux_sym_cmd_identifier_token18] = ACTIONS(2294), - [aux_sym_cmd_identifier_token19] = ACTIONS(2294), - [aux_sym_cmd_identifier_token20] = ACTIONS(2294), - [aux_sym_cmd_identifier_token21] = ACTIONS(2294), - [aux_sym_cmd_identifier_token22] = ACTIONS(2294), - [aux_sym_cmd_identifier_token23] = ACTIONS(2294), - [aux_sym_cmd_identifier_token24] = ACTIONS(2294), - [aux_sym_cmd_identifier_token25] = ACTIONS(2294), - [aux_sym_cmd_identifier_token26] = ACTIONS(2294), - [aux_sym_cmd_identifier_token27] = ACTIONS(2294), - [aux_sym_cmd_identifier_token28] = ACTIONS(2294), - [aux_sym_cmd_identifier_token29] = ACTIONS(2294), - [aux_sym_cmd_identifier_token30] = ACTIONS(2294), - [aux_sym_cmd_identifier_token31] = ACTIONS(2294), - [aux_sym_cmd_identifier_token32] = ACTIONS(2294), - [aux_sym_cmd_identifier_token33] = ACTIONS(2294), - [aux_sym_cmd_identifier_token34] = ACTIONS(2294), - [aux_sym_cmd_identifier_token35] = ACTIONS(2294), - [aux_sym_cmd_identifier_token36] = ACTIONS(2294), - [aux_sym_cmd_identifier_token37] = ACTIONS(2294), - [aux_sym_cmd_identifier_token38] = ACTIONS(2294), - [aux_sym_cmd_identifier_token39] = ACTIONS(2294), - [aux_sym_cmd_identifier_token40] = ACTIONS(2294), - [anon_sym_def] = ACTIONS(2294), - [anon_sym_export_DASHenv] = ACTIONS(2294), - [anon_sym_extern] = ACTIONS(2294), - [anon_sym_module] = ACTIONS(2294), - [anon_sym_use] = ACTIONS(2294), - [anon_sym_LPAREN] = ACTIONS(2294), - [anon_sym_DOLLAR] = ACTIONS(2294), - [anon_sym_error] = ACTIONS(2294), - [anon_sym_DASH2] = ACTIONS(2294), - [anon_sym_break] = ACTIONS(2294), - [anon_sym_continue] = ACTIONS(2294), - [anon_sym_for] = ACTIONS(2294), - [anon_sym_in2] = ACTIONS(2294), - [anon_sym_loop] = ACTIONS(2294), - [anon_sym_make] = ACTIONS(2294), - [anon_sym_while] = ACTIONS(2294), - [anon_sym_do] = ACTIONS(2294), - [anon_sym_if] = ACTIONS(2294), - [anon_sym_else] = ACTIONS(2294), - [anon_sym_match] = ACTIONS(2294), - [anon_sym_try] = ACTIONS(2294), - [anon_sym_catch] = ACTIONS(2294), - [anon_sym_return] = ACTIONS(2294), - [anon_sym_source] = ACTIONS(2294), - [anon_sym_source_DASHenv] = ACTIONS(2294), - [anon_sym_register] = ACTIONS(2294), - [anon_sym_hide] = ACTIONS(2294), - [anon_sym_hide_DASHenv] = ACTIONS(2294), - [anon_sym_overlay] = ACTIONS(2294), - [anon_sym_as] = ACTIONS(2294), - [anon_sym_PLUS2] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2294), - [aux_sym__val_number_decimal_token1] = ACTIONS(2294), - [aux_sym__val_number_decimal_token2] = ACTIONS(2294), - [aux_sym__val_number_decimal_token3] = ACTIONS(2294), - [aux_sym__val_number_decimal_token4] = ACTIONS(2294), - [aux_sym__val_number_token1] = ACTIONS(2294), - [aux_sym__val_number_token2] = ACTIONS(2294), - [aux_sym__val_number_token3] = ACTIONS(2294), - [aux_sym__val_number_token4] = ACTIONS(2294), - [aux_sym__val_number_token5] = ACTIONS(2294), - [aux_sym__val_number_token6] = ACTIONS(2294), - [anon_sym_DQUOTE] = ACTIONS(2294), - [sym__str_single_quotes] = ACTIONS(2294), - [sym__str_back_ticks] = ACTIONS(2294), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2294), - [sym__entry_separator] = ACTIONS(2298), + [629] = { + [sym_comment] = STATE(629), + [anon_sym_export] = ACTIONS(2411), + [anon_sym_alias] = ACTIONS(2411), + [anon_sym_let] = ACTIONS(2411), + [anon_sym_let_DASHenv] = ACTIONS(2411), + [anon_sym_mut] = ACTIONS(2411), + [anon_sym_const] = ACTIONS(2411), + [aux_sym_cmd_identifier_token1] = ACTIONS(2411), + [aux_sym_cmd_identifier_token2] = ACTIONS(2411), + [aux_sym_cmd_identifier_token3] = ACTIONS(2411), + [aux_sym_cmd_identifier_token4] = ACTIONS(2411), + [aux_sym_cmd_identifier_token5] = ACTIONS(2411), + [aux_sym_cmd_identifier_token6] = ACTIONS(2411), + [aux_sym_cmd_identifier_token7] = ACTIONS(2411), + [aux_sym_cmd_identifier_token8] = ACTIONS(2411), + [aux_sym_cmd_identifier_token9] = ACTIONS(2411), + [aux_sym_cmd_identifier_token10] = ACTIONS(2411), + [aux_sym_cmd_identifier_token11] = ACTIONS(2411), + [aux_sym_cmd_identifier_token12] = ACTIONS(2411), + [aux_sym_cmd_identifier_token13] = ACTIONS(2411), + [aux_sym_cmd_identifier_token14] = ACTIONS(2411), + [aux_sym_cmd_identifier_token15] = ACTIONS(2411), + [aux_sym_cmd_identifier_token16] = ACTIONS(2411), + [aux_sym_cmd_identifier_token17] = ACTIONS(2411), + [aux_sym_cmd_identifier_token18] = ACTIONS(2411), + [aux_sym_cmd_identifier_token19] = ACTIONS(2411), + [aux_sym_cmd_identifier_token20] = ACTIONS(2411), + [aux_sym_cmd_identifier_token21] = ACTIONS(2411), + [aux_sym_cmd_identifier_token22] = ACTIONS(2411), + [aux_sym_cmd_identifier_token23] = ACTIONS(2411), + [aux_sym_cmd_identifier_token24] = ACTIONS(2411), + [aux_sym_cmd_identifier_token25] = ACTIONS(2411), + [aux_sym_cmd_identifier_token26] = ACTIONS(2411), + [aux_sym_cmd_identifier_token27] = ACTIONS(2411), + [aux_sym_cmd_identifier_token28] = ACTIONS(2411), + [aux_sym_cmd_identifier_token29] = ACTIONS(2411), + [aux_sym_cmd_identifier_token30] = ACTIONS(2411), + [aux_sym_cmd_identifier_token31] = ACTIONS(2411), + [aux_sym_cmd_identifier_token32] = ACTIONS(2411), + [aux_sym_cmd_identifier_token33] = ACTIONS(2411), + [aux_sym_cmd_identifier_token34] = ACTIONS(2411), + [aux_sym_cmd_identifier_token35] = ACTIONS(2411), + [aux_sym_cmd_identifier_token36] = ACTIONS(2411), + [aux_sym_cmd_identifier_token37] = ACTIONS(2411), + [aux_sym_cmd_identifier_token38] = ACTIONS(2411), + [aux_sym_cmd_identifier_token39] = ACTIONS(2411), + [aux_sym_cmd_identifier_token40] = ACTIONS(2411), + [anon_sym_def] = ACTIONS(2411), + [anon_sym_export_DASHenv] = ACTIONS(2411), + [anon_sym_extern] = ACTIONS(2411), + [anon_sym_module] = ACTIONS(2411), + [anon_sym_use] = ACTIONS(2411), + [anon_sym_LPAREN] = ACTIONS(2411), + [anon_sym_COMMA] = ACTIONS(2411), + [anon_sym_DOLLAR] = ACTIONS(2411), + [anon_sym_error] = ACTIONS(2411), + [anon_sym_DASH2] = ACTIONS(2411), + [anon_sym_break] = ACTIONS(2411), + [anon_sym_continue] = ACTIONS(2411), + [anon_sym_for] = ACTIONS(2411), + [anon_sym_in2] = ACTIONS(2411), + [anon_sym_loop] = ACTIONS(2411), + [anon_sym_make] = ACTIONS(2411), + [anon_sym_while] = ACTIONS(2411), + [anon_sym_do] = ACTIONS(2411), + [anon_sym_if] = ACTIONS(2411), + [anon_sym_else] = ACTIONS(2411), + [anon_sym_match] = ACTIONS(2411), + [anon_sym_RBRACE] = ACTIONS(2411), + [anon_sym_try] = ACTIONS(2411), + [anon_sym_catch] = ACTIONS(2411), + [anon_sym_return] = ACTIONS(2411), + [anon_sym_source] = ACTIONS(2411), + [anon_sym_source_DASHenv] = ACTIONS(2411), + [anon_sym_register] = ACTIONS(2411), + [anon_sym_hide] = ACTIONS(2411), + [anon_sym_hide_DASHenv] = ACTIONS(2411), + [anon_sym_overlay] = ACTIONS(2411), + [anon_sym_as] = ACTIONS(2411), + [anon_sym_PLUS2] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2411), + [aux_sym__val_number_decimal_token1] = ACTIONS(2411), + [aux_sym__val_number_decimal_token2] = ACTIONS(2411), + [aux_sym__val_number_decimal_token3] = ACTIONS(2411), + [aux_sym__val_number_decimal_token4] = ACTIONS(2411), + [aux_sym__val_number_token1] = ACTIONS(2411), + [aux_sym__val_number_token2] = ACTIONS(2411), + [aux_sym__val_number_token3] = ACTIONS(2411), + [aux_sym__val_number_token4] = ACTIONS(2411), + [aux_sym__val_number_token5] = ACTIONS(2411), + [aux_sym__val_number_token6] = ACTIONS(2411), + [anon_sym_DQUOTE] = ACTIONS(2411), + [sym__str_single_quotes] = ACTIONS(2411), + [sym__str_back_ticks] = ACTIONS(2411), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2411), + [sym__entry_separator] = ACTIONS(2413), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2300), - }, - [656] = { - [sym_comment] = STATE(656), - [anon_sym_export] = ACTIONS(988), - [anon_sym_alias] = ACTIONS(988), - [anon_sym_let] = ACTIONS(988), - [anon_sym_let_DASHenv] = ACTIONS(988), - [anon_sym_mut] = ACTIONS(988), - [anon_sym_const] = ACTIONS(988), - [aux_sym_cmd_identifier_token1] = ACTIONS(988), - [aux_sym_cmd_identifier_token2] = ACTIONS(990), - [aux_sym_cmd_identifier_token3] = ACTIONS(990), - [aux_sym_cmd_identifier_token4] = ACTIONS(990), - [aux_sym_cmd_identifier_token5] = ACTIONS(990), - [aux_sym_cmd_identifier_token6] = ACTIONS(990), - [aux_sym_cmd_identifier_token7] = ACTIONS(990), - [aux_sym_cmd_identifier_token8] = ACTIONS(988), - [aux_sym_cmd_identifier_token9] = ACTIONS(988), - [aux_sym_cmd_identifier_token10] = ACTIONS(990), - [aux_sym_cmd_identifier_token11] = ACTIONS(990), - [aux_sym_cmd_identifier_token12] = ACTIONS(988), - [aux_sym_cmd_identifier_token13] = ACTIONS(988), - [aux_sym_cmd_identifier_token14] = ACTIONS(988), - [aux_sym_cmd_identifier_token15] = ACTIONS(988), - [aux_sym_cmd_identifier_token16] = ACTIONS(990), - [aux_sym_cmd_identifier_token17] = ACTIONS(990), - [aux_sym_cmd_identifier_token18] = ACTIONS(990), - [aux_sym_cmd_identifier_token19] = ACTIONS(990), - [aux_sym_cmd_identifier_token20] = ACTIONS(990), - [aux_sym_cmd_identifier_token21] = ACTIONS(990), - [aux_sym_cmd_identifier_token22] = ACTIONS(990), - [aux_sym_cmd_identifier_token23] = ACTIONS(990), - [aux_sym_cmd_identifier_token24] = ACTIONS(990), - [aux_sym_cmd_identifier_token25] = ACTIONS(990), - [aux_sym_cmd_identifier_token26] = ACTIONS(990), - [aux_sym_cmd_identifier_token27] = ACTIONS(990), - [aux_sym_cmd_identifier_token28] = ACTIONS(990), - [aux_sym_cmd_identifier_token29] = ACTIONS(990), - [aux_sym_cmd_identifier_token30] = ACTIONS(990), - [aux_sym_cmd_identifier_token31] = ACTIONS(990), - [aux_sym_cmd_identifier_token32] = ACTIONS(990), - [aux_sym_cmd_identifier_token33] = ACTIONS(990), - [aux_sym_cmd_identifier_token34] = ACTIONS(988), - [aux_sym_cmd_identifier_token35] = ACTIONS(990), - [aux_sym_cmd_identifier_token36] = ACTIONS(990), - [aux_sym_cmd_identifier_token37] = ACTIONS(990), - [aux_sym_cmd_identifier_token38] = ACTIONS(988), - [aux_sym_cmd_identifier_token39] = ACTIONS(990), - [aux_sym_cmd_identifier_token40] = ACTIONS(990), - [anon_sym_def] = ACTIONS(988), - [anon_sym_export_DASHenv] = ACTIONS(988), - [anon_sym_extern] = ACTIONS(988), - [anon_sym_module] = ACTIONS(988), - [anon_sym_use] = ACTIONS(988), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(990), - [anon_sym_error] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_break] = ACTIONS(988), - [anon_sym_continue] = ACTIONS(988), - [anon_sym_for] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(988), - [anon_sym_loop] = ACTIONS(988), - [anon_sym_make] = ACTIONS(988), - [anon_sym_while] = ACTIONS(988), - [anon_sym_do] = ACTIONS(988), - [anon_sym_if] = ACTIONS(988), - [anon_sym_else] = ACTIONS(988), - [anon_sym_match] = ACTIONS(988), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_try] = ACTIONS(988), - [anon_sym_catch] = ACTIONS(988), - [anon_sym_return] = ACTIONS(988), - [anon_sym_source] = ACTIONS(988), - [anon_sym_source_DASHenv] = ACTIONS(988), - [anon_sym_register] = ACTIONS(988), - [anon_sym_hide] = ACTIONS(988), - [anon_sym_hide_DASHenv] = ACTIONS(988), - [anon_sym_overlay] = ACTIONS(988), - [anon_sym_as] = ACTIONS(988), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(988), - [aux_sym__val_number_token5] = ACTIONS(988), - [aux_sym__val_number_token6] = ACTIONS(988), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), + [sym_raw_string_begin] = ACTIONS(2413), }, - [657] = { - [sym_comment] = STATE(657), - [anon_sym_export] = ACTIONS(984), - [anon_sym_alias] = ACTIONS(984), - [anon_sym_let] = ACTIONS(984), - [anon_sym_let_DASHenv] = ACTIONS(984), - [anon_sym_mut] = ACTIONS(984), - [anon_sym_const] = ACTIONS(984), - [aux_sym_cmd_identifier_token1] = ACTIONS(984), - [aux_sym_cmd_identifier_token2] = ACTIONS(986), - [aux_sym_cmd_identifier_token3] = ACTIONS(986), - [aux_sym_cmd_identifier_token4] = ACTIONS(986), - [aux_sym_cmd_identifier_token5] = ACTIONS(986), - [aux_sym_cmd_identifier_token6] = ACTIONS(986), - [aux_sym_cmd_identifier_token7] = ACTIONS(986), - [aux_sym_cmd_identifier_token8] = ACTIONS(984), - [aux_sym_cmd_identifier_token9] = ACTIONS(984), - [aux_sym_cmd_identifier_token10] = ACTIONS(986), - [aux_sym_cmd_identifier_token11] = ACTIONS(986), - [aux_sym_cmd_identifier_token12] = ACTIONS(984), - [aux_sym_cmd_identifier_token13] = ACTIONS(984), - [aux_sym_cmd_identifier_token14] = ACTIONS(984), - [aux_sym_cmd_identifier_token15] = ACTIONS(984), - [aux_sym_cmd_identifier_token16] = ACTIONS(986), - [aux_sym_cmd_identifier_token17] = ACTIONS(986), - [aux_sym_cmd_identifier_token18] = ACTIONS(986), - [aux_sym_cmd_identifier_token19] = ACTIONS(986), - [aux_sym_cmd_identifier_token20] = ACTIONS(986), - [aux_sym_cmd_identifier_token21] = ACTIONS(986), - [aux_sym_cmd_identifier_token22] = ACTIONS(986), - [aux_sym_cmd_identifier_token23] = ACTIONS(986), - [aux_sym_cmd_identifier_token24] = ACTIONS(986), - [aux_sym_cmd_identifier_token25] = ACTIONS(986), - [aux_sym_cmd_identifier_token26] = ACTIONS(986), - [aux_sym_cmd_identifier_token27] = ACTIONS(986), - [aux_sym_cmd_identifier_token28] = ACTIONS(986), - [aux_sym_cmd_identifier_token29] = ACTIONS(986), - [aux_sym_cmd_identifier_token30] = ACTIONS(986), - [aux_sym_cmd_identifier_token31] = ACTIONS(986), - [aux_sym_cmd_identifier_token32] = ACTIONS(986), - [aux_sym_cmd_identifier_token33] = ACTIONS(986), - [aux_sym_cmd_identifier_token34] = ACTIONS(984), - [aux_sym_cmd_identifier_token35] = ACTIONS(986), - [aux_sym_cmd_identifier_token36] = ACTIONS(986), - [aux_sym_cmd_identifier_token37] = ACTIONS(986), - [aux_sym_cmd_identifier_token38] = ACTIONS(984), - [aux_sym_cmd_identifier_token39] = ACTIONS(986), - [aux_sym_cmd_identifier_token40] = ACTIONS(986), - [anon_sym_def] = ACTIONS(984), - [anon_sym_export_DASHenv] = ACTIONS(984), - [anon_sym_extern] = ACTIONS(984), - [anon_sym_module] = ACTIONS(984), - [anon_sym_use] = ACTIONS(984), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(986), - [anon_sym_error] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_break] = ACTIONS(984), - [anon_sym_continue] = ACTIONS(984), - [anon_sym_for] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(984), - [anon_sym_loop] = ACTIONS(984), - [anon_sym_make] = ACTIONS(984), - [anon_sym_while] = ACTIONS(984), - [anon_sym_do] = ACTIONS(984), - [anon_sym_if] = ACTIONS(984), - [anon_sym_else] = ACTIONS(984), - [anon_sym_match] = ACTIONS(984), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_try] = ACTIONS(984), - [anon_sym_catch] = ACTIONS(984), - [anon_sym_return] = ACTIONS(984), - [anon_sym_source] = ACTIONS(984), - [anon_sym_source_DASHenv] = ACTIONS(984), - [anon_sym_register] = ACTIONS(984), - [anon_sym_hide] = ACTIONS(984), - [anon_sym_hide_DASHenv] = ACTIONS(984), - [anon_sym_overlay] = ACTIONS(984), - [anon_sym_as] = ACTIONS(984), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(984), - [aux_sym__val_number_token5] = ACTIONS(984), - [aux_sym__val_number_token6] = ACTIONS(984), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), + [630] = { + [sym_comment] = STATE(630), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_alias] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_let_DASHenv] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2160), + [aux_sym_cmd_identifier_token3] = ACTIONS(2160), + [aux_sym_cmd_identifier_token4] = ACTIONS(2160), + [aux_sym_cmd_identifier_token5] = ACTIONS(2160), + [aux_sym_cmd_identifier_token6] = ACTIONS(2160), + [aux_sym_cmd_identifier_token7] = ACTIONS(2160), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2160), + [aux_sym_cmd_identifier_token11] = ACTIONS(2160), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2160), + [aux_sym_cmd_identifier_token17] = ACTIONS(2160), + [aux_sym_cmd_identifier_token18] = ACTIONS(2160), + [aux_sym_cmd_identifier_token19] = ACTIONS(2160), + [aux_sym_cmd_identifier_token20] = ACTIONS(2160), + [aux_sym_cmd_identifier_token21] = ACTIONS(2160), + [aux_sym_cmd_identifier_token22] = ACTIONS(2160), + [aux_sym_cmd_identifier_token23] = ACTIONS(2160), + [aux_sym_cmd_identifier_token24] = ACTIONS(2160), + [aux_sym_cmd_identifier_token25] = ACTIONS(2160), + [aux_sym_cmd_identifier_token26] = ACTIONS(2160), + [aux_sym_cmd_identifier_token27] = ACTIONS(2160), + [aux_sym_cmd_identifier_token28] = ACTIONS(2160), + [aux_sym_cmd_identifier_token29] = ACTIONS(2160), + [aux_sym_cmd_identifier_token30] = ACTIONS(2160), + [aux_sym_cmd_identifier_token31] = ACTIONS(2160), + [aux_sym_cmd_identifier_token32] = ACTIONS(2160), + [aux_sym_cmd_identifier_token33] = ACTIONS(2160), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2160), + [aux_sym_cmd_identifier_token36] = ACTIONS(2160), + [aux_sym_cmd_identifier_token37] = ACTIONS(2160), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2160), + [aux_sym_cmd_identifier_token40] = ACTIONS(2160), + [anon_sym_def] = ACTIONS(2160), + [anon_sym_export_DASHenv] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2160), + [anon_sym_COMMA] = ACTIONS(2160), + [anon_sym_DOLLAR] = ACTIONS(2160), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_in2] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_make] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2160), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_source] = ACTIONS(2160), + [anon_sym_source_DASHenv] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_hide] = ACTIONS(2160), + [anon_sym_hide_DASHenv] = ACTIONS(2160), + [anon_sym_overlay] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2160), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2160), + [aux_sym__val_number_decimal_token3] = ACTIONS(2160), + [aux_sym__val_number_decimal_token4] = ACTIONS(2160), + [aux_sym__val_number_token1] = ACTIONS(2160), + [aux_sym__val_number_token2] = ACTIONS(2160), + [aux_sym__val_number_token3] = ACTIONS(2160), + [aux_sym__val_number_token4] = ACTIONS(2160), + [aux_sym__val_number_token5] = ACTIONS(2160), + [aux_sym__val_number_token6] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2160), + [sym__str_single_quotes] = ACTIONS(2160), + [sym__str_back_ticks] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2160), + [sym__entry_separator] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2162), }, - [658] = { - [sym_comment] = STATE(658), - [anon_sym_export] = ACTIONS(980), - [anon_sym_alias] = ACTIONS(980), - [anon_sym_let] = ACTIONS(980), - [anon_sym_let_DASHenv] = ACTIONS(980), - [anon_sym_mut] = ACTIONS(980), - [anon_sym_const] = ACTIONS(980), - [aux_sym_cmd_identifier_token1] = ACTIONS(980), - [aux_sym_cmd_identifier_token2] = ACTIONS(982), - [aux_sym_cmd_identifier_token3] = ACTIONS(982), - [aux_sym_cmd_identifier_token4] = ACTIONS(982), - [aux_sym_cmd_identifier_token5] = ACTIONS(982), - [aux_sym_cmd_identifier_token6] = ACTIONS(982), - [aux_sym_cmd_identifier_token7] = ACTIONS(982), - [aux_sym_cmd_identifier_token8] = ACTIONS(980), - [aux_sym_cmd_identifier_token9] = ACTIONS(980), - [aux_sym_cmd_identifier_token10] = ACTIONS(982), - [aux_sym_cmd_identifier_token11] = ACTIONS(982), - [aux_sym_cmd_identifier_token12] = ACTIONS(980), - [aux_sym_cmd_identifier_token13] = ACTIONS(980), - [aux_sym_cmd_identifier_token14] = ACTIONS(980), - [aux_sym_cmd_identifier_token15] = ACTIONS(980), - [aux_sym_cmd_identifier_token16] = ACTIONS(982), - [aux_sym_cmd_identifier_token17] = ACTIONS(982), - [aux_sym_cmd_identifier_token18] = ACTIONS(982), - [aux_sym_cmd_identifier_token19] = ACTIONS(982), - [aux_sym_cmd_identifier_token20] = ACTIONS(982), - [aux_sym_cmd_identifier_token21] = ACTIONS(982), - [aux_sym_cmd_identifier_token22] = ACTIONS(982), - [aux_sym_cmd_identifier_token23] = ACTIONS(982), - [aux_sym_cmd_identifier_token24] = ACTIONS(982), - [aux_sym_cmd_identifier_token25] = ACTIONS(982), - [aux_sym_cmd_identifier_token26] = ACTIONS(982), - [aux_sym_cmd_identifier_token27] = ACTIONS(982), - [aux_sym_cmd_identifier_token28] = ACTIONS(982), - [aux_sym_cmd_identifier_token29] = ACTIONS(982), - [aux_sym_cmd_identifier_token30] = ACTIONS(982), - [aux_sym_cmd_identifier_token31] = ACTIONS(982), - [aux_sym_cmd_identifier_token32] = ACTIONS(982), - [aux_sym_cmd_identifier_token33] = ACTIONS(982), - [aux_sym_cmd_identifier_token34] = ACTIONS(980), - [aux_sym_cmd_identifier_token35] = ACTIONS(982), - [aux_sym_cmd_identifier_token36] = ACTIONS(982), - [aux_sym_cmd_identifier_token37] = ACTIONS(982), - [aux_sym_cmd_identifier_token38] = ACTIONS(980), - [aux_sym_cmd_identifier_token39] = ACTIONS(982), - [aux_sym_cmd_identifier_token40] = ACTIONS(982), - [anon_sym_def] = ACTIONS(980), - [anon_sym_export_DASHenv] = ACTIONS(980), - [anon_sym_extern] = ACTIONS(980), - [anon_sym_module] = ACTIONS(980), - [anon_sym_use] = ACTIONS(980), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(982), - [anon_sym_error] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_break] = ACTIONS(980), - [anon_sym_continue] = ACTIONS(980), - [anon_sym_for] = ACTIONS(980), - [anon_sym_in2] = ACTIONS(980), - [anon_sym_loop] = ACTIONS(980), - [anon_sym_make] = ACTIONS(980), - [anon_sym_while] = ACTIONS(980), - [anon_sym_do] = ACTIONS(980), - [anon_sym_if] = ACTIONS(980), - [anon_sym_else] = ACTIONS(980), - [anon_sym_match] = ACTIONS(980), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_try] = ACTIONS(980), - [anon_sym_catch] = ACTIONS(980), - [anon_sym_return] = ACTIONS(980), - [anon_sym_source] = ACTIONS(980), - [anon_sym_source_DASHenv] = ACTIONS(980), - [anon_sym_register] = ACTIONS(980), - [anon_sym_hide] = ACTIONS(980), - [anon_sym_hide_DASHenv] = ACTIONS(980), - [anon_sym_overlay] = ACTIONS(980), - [anon_sym_as] = ACTIONS(980), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(980), - [aux_sym__val_number_token5] = ACTIONS(980), - [aux_sym__val_number_token6] = ACTIONS(980), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), + [631] = { + [sym_comment] = STATE(631), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(2415), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [632] = { + [sym_comment] = STATE(632), + [anon_sym_export] = ACTIONS(2290), + [anon_sym_alias] = ACTIONS(2290), + [anon_sym_let] = ACTIONS(2290), + [anon_sym_let_DASHenv] = ACTIONS(2290), + [anon_sym_mut] = ACTIONS(2290), + [anon_sym_const] = ACTIONS(2290), + [aux_sym_cmd_identifier_token1] = ACTIONS(2290), + [aux_sym_cmd_identifier_token2] = ACTIONS(2292), + [aux_sym_cmd_identifier_token3] = ACTIONS(2292), + [aux_sym_cmd_identifier_token4] = ACTIONS(2292), + [aux_sym_cmd_identifier_token5] = ACTIONS(2292), + [aux_sym_cmd_identifier_token6] = ACTIONS(2292), + [aux_sym_cmd_identifier_token7] = ACTIONS(2292), + [aux_sym_cmd_identifier_token8] = ACTIONS(2290), + [aux_sym_cmd_identifier_token9] = ACTIONS(2290), + [aux_sym_cmd_identifier_token10] = ACTIONS(2292), + [aux_sym_cmd_identifier_token11] = ACTIONS(2292), + [aux_sym_cmd_identifier_token12] = ACTIONS(2290), + [aux_sym_cmd_identifier_token13] = ACTIONS(2290), + [aux_sym_cmd_identifier_token14] = ACTIONS(2290), + [aux_sym_cmd_identifier_token15] = ACTIONS(2290), + [aux_sym_cmd_identifier_token16] = ACTIONS(2292), + [aux_sym_cmd_identifier_token17] = ACTIONS(2292), + [aux_sym_cmd_identifier_token18] = ACTIONS(2292), + [aux_sym_cmd_identifier_token19] = ACTIONS(2292), + [aux_sym_cmd_identifier_token20] = ACTIONS(2292), + [aux_sym_cmd_identifier_token21] = ACTIONS(2292), + [aux_sym_cmd_identifier_token22] = ACTIONS(2292), + [aux_sym_cmd_identifier_token23] = ACTIONS(2292), + [aux_sym_cmd_identifier_token24] = ACTIONS(2292), + [aux_sym_cmd_identifier_token25] = ACTIONS(2292), + [aux_sym_cmd_identifier_token26] = ACTIONS(2292), + [aux_sym_cmd_identifier_token27] = ACTIONS(2292), + [aux_sym_cmd_identifier_token28] = ACTIONS(2292), + [aux_sym_cmd_identifier_token29] = ACTIONS(2292), + [aux_sym_cmd_identifier_token30] = ACTIONS(2292), + [aux_sym_cmd_identifier_token31] = ACTIONS(2292), + [aux_sym_cmd_identifier_token32] = ACTIONS(2292), + [aux_sym_cmd_identifier_token33] = ACTIONS(2292), + [aux_sym_cmd_identifier_token34] = ACTIONS(2290), + [aux_sym_cmd_identifier_token35] = ACTIONS(2292), + [aux_sym_cmd_identifier_token36] = ACTIONS(2292), + [aux_sym_cmd_identifier_token37] = ACTIONS(2292), + [aux_sym_cmd_identifier_token38] = ACTIONS(2290), + [aux_sym_cmd_identifier_token39] = ACTIONS(2292), + [aux_sym_cmd_identifier_token40] = ACTIONS(2292), + [anon_sym_def] = ACTIONS(2290), + [anon_sym_export_DASHenv] = ACTIONS(2290), + [anon_sym_extern] = ACTIONS(2290), + [anon_sym_module] = ACTIONS(2290), + [anon_sym_use] = ACTIONS(2290), + [anon_sym_LPAREN] = ACTIONS(2290), + [anon_sym_COMMA] = ACTIONS(2292), + [anon_sym_DOLLAR] = ACTIONS(2292), + [anon_sym_error] = ACTIONS(2290), + [anon_sym_DASH2] = ACTIONS(2290), + [anon_sym_break] = ACTIONS(2290), + [anon_sym_continue] = ACTIONS(2290), + [anon_sym_for] = ACTIONS(2290), + [anon_sym_in2] = ACTIONS(2290), + [anon_sym_loop] = ACTIONS(2290), + [anon_sym_make] = ACTIONS(2290), + [anon_sym_while] = ACTIONS(2290), + [anon_sym_do] = ACTIONS(2290), + [anon_sym_if] = ACTIONS(2290), + [anon_sym_else] = ACTIONS(2290), + [anon_sym_match] = ACTIONS(2290), + [anon_sym_RBRACE] = ACTIONS(2292), + [anon_sym_try] = ACTIONS(2290), + [anon_sym_catch] = ACTIONS(2290), + [anon_sym_return] = ACTIONS(2290), + [anon_sym_source] = ACTIONS(2290), + [anon_sym_source_DASHenv] = ACTIONS(2290), + [anon_sym_register] = ACTIONS(2290), + [anon_sym_hide] = ACTIONS(2290), + [anon_sym_hide_DASHenv] = ACTIONS(2290), + [anon_sym_overlay] = ACTIONS(2290), + [anon_sym_as] = ACTIONS(2290), + [anon_sym_LPAREN2] = ACTIONS(2292), + [anon_sym_PLUS2] = ACTIONS(2290), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2292), + [aux_sym__val_number_decimal_token1] = ACTIONS(2290), + [aux_sym__val_number_decimal_token2] = ACTIONS(2292), + [aux_sym__val_number_decimal_token3] = ACTIONS(2292), + [aux_sym__val_number_decimal_token4] = ACTIONS(2292), + [aux_sym__val_number_token1] = ACTIONS(2292), + [aux_sym__val_number_token2] = ACTIONS(2292), + [aux_sym__val_number_token3] = ACTIONS(2292), + [aux_sym__val_number_token4] = ACTIONS(2290), + [aux_sym__val_number_token5] = ACTIONS(2290), + [aux_sym__val_number_token6] = ACTIONS(2290), + [anon_sym_DQUOTE] = ACTIONS(2292), + [sym__str_single_quotes] = ACTIONS(2292), + [sym__str_back_ticks] = ACTIONS(2292), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2292), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), + [sym_raw_string_begin] = ACTIONS(2292), }, - [659] = { - [sym_comment] = STATE(659), - [anon_sym_export] = ACTIONS(2116), - [anon_sym_alias] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_let_DASHenv] = ACTIONS(2116), - [anon_sym_mut] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [aux_sym_cmd_identifier_token1] = ACTIONS(2116), - [aux_sym_cmd_identifier_token2] = ACTIONS(2116), - [aux_sym_cmd_identifier_token3] = ACTIONS(2116), - [aux_sym_cmd_identifier_token4] = ACTIONS(2116), - [aux_sym_cmd_identifier_token5] = ACTIONS(2116), - [aux_sym_cmd_identifier_token6] = ACTIONS(2116), - [aux_sym_cmd_identifier_token7] = ACTIONS(2116), - [aux_sym_cmd_identifier_token8] = ACTIONS(2116), - [aux_sym_cmd_identifier_token9] = ACTIONS(2116), - [aux_sym_cmd_identifier_token10] = ACTIONS(2116), - [aux_sym_cmd_identifier_token11] = ACTIONS(2116), - [aux_sym_cmd_identifier_token12] = ACTIONS(2116), - [aux_sym_cmd_identifier_token13] = ACTIONS(2116), - [aux_sym_cmd_identifier_token14] = ACTIONS(2116), - [aux_sym_cmd_identifier_token15] = ACTIONS(2116), - [aux_sym_cmd_identifier_token16] = ACTIONS(2116), - [aux_sym_cmd_identifier_token17] = ACTIONS(2116), - [aux_sym_cmd_identifier_token18] = ACTIONS(2116), - [aux_sym_cmd_identifier_token19] = ACTIONS(2116), - [aux_sym_cmd_identifier_token20] = ACTIONS(2116), - [aux_sym_cmd_identifier_token21] = ACTIONS(2116), - [aux_sym_cmd_identifier_token22] = ACTIONS(2116), - [aux_sym_cmd_identifier_token23] = ACTIONS(2116), - [aux_sym_cmd_identifier_token24] = ACTIONS(2116), - [aux_sym_cmd_identifier_token25] = ACTIONS(2116), - [aux_sym_cmd_identifier_token26] = ACTIONS(2116), - [aux_sym_cmd_identifier_token27] = ACTIONS(2116), - [aux_sym_cmd_identifier_token28] = ACTIONS(2116), - [aux_sym_cmd_identifier_token29] = ACTIONS(2116), - [aux_sym_cmd_identifier_token30] = ACTIONS(2116), - [aux_sym_cmd_identifier_token31] = ACTIONS(2116), - [aux_sym_cmd_identifier_token32] = ACTIONS(2116), - [aux_sym_cmd_identifier_token33] = ACTIONS(2116), - [aux_sym_cmd_identifier_token34] = ACTIONS(2116), - [aux_sym_cmd_identifier_token35] = ACTIONS(2116), - [aux_sym_cmd_identifier_token36] = ACTIONS(2116), - [aux_sym_cmd_identifier_token37] = ACTIONS(2116), - [aux_sym_cmd_identifier_token38] = ACTIONS(2116), - [aux_sym_cmd_identifier_token39] = ACTIONS(2116), - [aux_sym_cmd_identifier_token40] = ACTIONS(2116), - [anon_sym_def] = ACTIONS(2116), - [anon_sym_export_DASHenv] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_module] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2116), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_error] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_in2] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_make] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2116), - [anon_sym_try] = ACTIONS(2116), - [anon_sym_catch] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_source] = ACTIONS(2116), - [anon_sym_source_DASHenv] = ACTIONS(2116), - [anon_sym_register] = ACTIONS(2116), - [anon_sym_hide] = ACTIONS(2116), - [anon_sym_hide_DASHenv] = ACTIONS(2116), - [anon_sym_overlay] = ACTIONS(2116), - [anon_sym_as] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2116), - [aux_sym__val_number_decimal_token1] = ACTIONS(2116), - [aux_sym__val_number_decimal_token2] = ACTIONS(2116), - [aux_sym__val_number_decimal_token3] = ACTIONS(2116), - [aux_sym__val_number_decimal_token4] = ACTIONS(2116), - [aux_sym__val_number_token1] = ACTIONS(2116), - [aux_sym__val_number_token2] = ACTIONS(2116), - [aux_sym__val_number_token3] = ACTIONS(2116), - [aux_sym__val_number_token4] = ACTIONS(2116), - [aux_sym__val_number_token5] = ACTIONS(2116), - [aux_sym__val_number_token6] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2116), - [sym__str_single_quotes] = ACTIONS(2116), - [sym__str_back_ticks] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2116), - [sym__entry_separator] = ACTIONS(2118), + [633] = { + [sym_comment] = STATE(633), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2417), + [aux_sym_cmd_identifier_token3] = ACTIONS(2417), + [aux_sym_cmd_identifier_token4] = ACTIONS(2417), + [aux_sym_cmd_identifier_token5] = ACTIONS(2417), + [aux_sym_cmd_identifier_token6] = ACTIONS(2417), + [aux_sym_cmd_identifier_token7] = ACTIONS(2417), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2417), + [aux_sym_cmd_identifier_token11] = ACTIONS(2417), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2417), + [aux_sym_cmd_identifier_token17] = ACTIONS(2417), + [aux_sym_cmd_identifier_token18] = ACTIONS(2417), + [aux_sym_cmd_identifier_token19] = ACTIONS(2417), + [aux_sym_cmd_identifier_token20] = ACTIONS(2417), + [aux_sym_cmd_identifier_token21] = ACTIONS(2417), + [aux_sym_cmd_identifier_token22] = ACTIONS(2417), + [aux_sym_cmd_identifier_token23] = ACTIONS(2417), + [aux_sym_cmd_identifier_token24] = ACTIONS(2417), + [aux_sym_cmd_identifier_token25] = ACTIONS(2417), + [aux_sym_cmd_identifier_token26] = ACTIONS(2417), + [aux_sym_cmd_identifier_token27] = ACTIONS(2417), + [aux_sym_cmd_identifier_token28] = ACTIONS(2417), + [aux_sym_cmd_identifier_token29] = ACTIONS(2417), + [aux_sym_cmd_identifier_token30] = ACTIONS(2417), + [aux_sym_cmd_identifier_token31] = ACTIONS(2417), + [aux_sym_cmd_identifier_token32] = ACTIONS(2417), + [aux_sym_cmd_identifier_token33] = ACTIONS(2417), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2417), + [aux_sym_cmd_identifier_token36] = ACTIONS(2417), + [aux_sym_cmd_identifier_token37] = ACTIONS(2417), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2417), + [aux_sym_cmd_identifier_token40] = ACTIONS(2417), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2417), + [anon_sym_COMMA] = ACTIONS(2417), + [anon_sym_DOLLAR] = ACTIONS(2417), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2417), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2417), + [aux_sym__val_number_decimal_token3] = ACTIONS(2417), + [aux_sym__val_number_decimal_token4] = ACTIONS(2417), + [aux_sym__val_number_token1] = ACTIONS(2417), + [aux_sym__val_number_token2] = ACTIONS(2417), + [aux_sym__val_number_token3] = ACTIONS(2417), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2417), + [sym__str_single_quotes] = ACTIONS(2417), + [sym__str_back_ticks] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [sym__entry_separator] = ACTIONS(2419), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2118), + [sym_raw_string_begin] = ACTIONS(2419), }, - [660] = { - [sym_comment] = STATE(660), - [anon_sym_export] = ACTIONS(2120), - [anon_sym_alias] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_let_DASHenv] = ACTIONS(2120), - [anon_sym_mut] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [aux_sym_cmd_identifier_token1] = ACTIONS(2120), - [aux_sym_cmd_identifier_token2] = ACTIONS(2120), - [aux_sym_cmd_identifier_token3] = ACTIONS(2120), - [aux_sym_cmd_identifier_token4] = ACTIONS(2120), - [aux_sym_cmd_identifier_token5] = ACTIONS(2120), - [aux_sym_cmd_identifier_token6] = ACTIONS(2120), - [aux_sym_cmd_identifier_token7] = ACTIONS(2120), - [aux_sym_cmd_identifier_token8] = ACTIONS(2120), - [aux_sym_cmd_identifier_token9] = ACTIONS(2120), - [aux_sym_cmd_identifier_token10] = ACTIONS(2120), - [aux_sym_cmd_identifier_token11] = ACTIONS(2120), - [aux_sym_cmd_identifier_token12] = ACTIONS(2120), - [aux_sym_cmd_identifier_token13] = ACTIONS(2120), - [aux_sym_cmd_identifier_token14] = ACTIONS(2120), - [aux_sym_cmd_identifier_token15] = ACTIONS(2120), - [aux_sym_cmd_identifier_token16] = ACTIONS(2120), - [aux_sym_cmd_identifier_token17] = ACTIONS(2120), - [aux_sym_cmd_identifier_token18] = ACTIONS(2120), - [aux_sym_cmd_identifier_token19] = ACTIONS(2120), - [aux_sym_cmd_identifier_token20] = ACTIONS(2120), - [aux_sym_cmd_identifier_token21] = ACTIONS(2120), - [aux_sym_cmd_identifier_token22] = ACTIONS(2120), - [aux_sym_cmd_identifier_token23] = ACTIONS(2120), - [aux_sym_cmd_identifier_token24] = ACTIONS(2120), - [aux_sym_cmd_identifier_token25] = ACTIONS(2120), - [aux_sym_cmd_identifier_token26] = ACTIONS(2120), - [aux_sym_cmd_identifier_token27] = ACTIONS(2120), - [aux_sym_cmd_identifier_token28] = ACTIONS(2120), - [aux_sym_cmd_identifier_token29] = ACTIONS(2120), - [aux_sym_cmd_identifier_token30] = ACTIONS(2120), - [aux_sym_cmd_identifier_token31] = ACTIONS(2120), - [aux_sym_cmd_identifier_token32] = ACTIONS(2120), - [aux_sym_cmd_identifier_token33] = ACTIONS(2120), - [aux_sym_cmd_identifier_token34] = ACTIONS(2120), - [aux_sym_cmd_identifier_token35] = ACTIONS(2120), - [aux_sym_cmd_identifier_token36] = ACTIONS(2120), - [aux_sym_cmd_identifier_token37] = ACTIONS(2120), - [aux_sym_cmd_identifier_token38] = ACTIONS(2120), - [aux_sym_cmd_identifier_token39] = ACTIONS(2120), - [aux_sym_cmd_identifier_token40] = ACTIONS(2120), - [anon_sym_def] = ACTIONS(2120), - [anon_sym_export_DASHenv] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_module] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2120), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_error] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_in2] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_make] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_do] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_else] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2120), - [anon_sym_try] = ACTIONS(2120), - [anon_sym_catch] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_source] = ACTIONS(2120), - [anon_sym_source_DASHenv] = ACTIONS(2120), - [anon_sym_register] = ACTIONS(2120), - [anon_sym_hide] = ACTIONS(2120), - [anon_sym_hide_DASHenv] = ACTIONS(2120), - [anon_sym_overlay] = ACTIONS(2120), - [anon_sym_as] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2120), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2120), - [aux_sym__val_number_decimal_token3] = ACTIONS(2120), - [aux_sym__val_number_decimal_token4] = ACTIONS(2120), - [aux_sym__val_number_token1] = ACTIONS(2120), - [aux_sym__val_number_token2] = ACTIONS(2120), - [aux_sym__val_number_token3] = ACTIONS(2120), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2120), - [sym__str_single_quotes] = ACTIONS(2120), - [sym__str_back_ticks] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2120), - [sym__entry_separator] = ACTIONS(2122), + [634] = { + [sym_comment] = STATE(634), + [anon_sym_export] = ACTIONS(2028), + [anon_sym_alias] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_let_DASHenv] = ACTIONS(2028), + [anon_sym_mut] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [aux_sym_cmd_identifier_token1] = ACTIONS(2028), + [aux_sym_cmd_identifier_token2] = ACTIONS(2028), + [aux_sym_cmd_identifier_token3] = ACTIONS(2028), + [aux_sym_cmd_identifier_token4] = ACTIONS(2028), + [aux_sym_cmd_identifier_token5] = ACTIONS(2028), + [aux_sym_cmd_identifier_token6] = ACTIONS(2028), + [aux_sym_cmd_identifier_token7] = ACTIONS(2028), + [aux_sym_cmd_identifier_token8] = ACTIONS(2028), + [aux_sym_cmd_identifier_token9] = ACTIONS(2028), + [aux_sym_cmd_identifier_token10] = ACTIONS(2028), + [aux_sym_cmd_identifier_token11] = ACTIONS(2028), + [aux_sym_cmd_identifier_token12] = ACTIONS(2028), + [aux_sym_cmd_identifier_token13] = ACTIONS(2028), + [aux_sym_cmd_identifier_token14] = ACTIONS(2028), + [aux_sym_cmd_identifier_token15] = ACTIONS(2028), + [aux_sym_cmd_identifier_token16] = ACTIONS(2028), + [aux_sym_cmd_identifier_token17] = ACTIONS(2028), + [aux_sym_cmd_identifier_token18] = ACTIONS(2028), + [aux_sym_cmd_identifier_token19] = ACTIONS(2028), + [aux_sym_cmd_identifier_token20] = ACTIONS(2028), + [aux_sym_cmd_identifier_token21] = ACTIONS(2028), + [aux_sym_cmd_identifier_token22] = ACTIONS(2028), + [aux_sym_cmd_identifier_token23] = ACTIONS(2028), + [aux_sym_cmd_identifier_token24] = ACTIONS(2028), + [aux_sym_cmd_identifier_token25] = ACTIONS(2028), + [aux_sym_cmd_identifier_token26] = ACTIONS(2028), + [aux_sym_cmd_identifier_token27] = ACTIONS(2028), + [aux_sym_cmd_identifier_token28] = ACTIONS(2028), + [aux_sym_cmd_identifier_token29] = ACTIONS(2028), + [aux_sym_cmd_identifier_token30] = ACTIONS(2028), + [aux_sym_cmd_identifier_token31] = ACTIONS(2028), + [aux_sym_cmd_identifier_token32] = ACTIONS(2028), + [aux_sym_cmd_identifier_token33] = ACTIONS(2028), + [aux_sym_cmd_identifier_token34] = ACTIONS(2028), + [aux_sym_cmd_identifier_token35] = ACTIONS(2028), + [aux_sym_cmd_identifier_token36] = ACTIONS(2028), + [aux_sym_cmd_identifier_token37] = ACTIONS(2028), + [aux_sym_cmd_identifier_token38] = ACTIONS(2028), + [aux_sym_cmd_identifier_token39] = ACTIONS(2028), + [aux_sym_cmd_identifier_token40] = ACTIONS(2028), + [anon_sym_def] = ACTIONS(2028), + [anon_sym_export_DASHenv] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_module] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2028), + [anon_sym_COMMA] = ACTIONS(2028), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_error] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_make] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2028), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_catch] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_source] = ACTIONS(2028), + [anon_sym_source_DASHenv] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_hide] = ACTIONS(2028), + [anon_sym_hide_DASHenv] = ACTIONS(2028), + [anon_sym_overlay] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2028), + [aux_sym__val_number_decimal_token1] = ACTIONS(2028), + [aux_sym__val_number_decimal_token2] = ACTIONS(2028), + [aux_sym__val_number_decimal_token3] = ACTIONS(2028), + [aux_sym__val_number_decimal_token4] = ACTIONS(2028), + [aux_sym__val_number_token1] = ACTIONS(2028), + [aux_sym__val_number_token2] = ACTIONS(2028), + [aux_sym__val_number_token3] = ACTIONS(2028), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2028), + [sym__str_single_quotes] = ACTIONS(2028), + [sym__str_back_ticks] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2028), + [sym__entry_separator] = ACTIONS(2030), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2122), + [sym_raw_string_begin] = ACTIONS(2030), }, - [661] = { - [sym_comment] = STATE(661), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1018), - [aux_sym_cmd_identifier_token3] = ACTIONS(1018), - [aux_sym_cmd_identifier_token4] = ACTIONS(1018), - [aux_sym_cmd_identifier_token5] = ACTIONS(1018), - [aux_sym_cmd_identifier_token6] = ACTIONS(1018), - [aux_sym_cmd_identifier_token7] = ACTIONS(1018), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1018), - [aux_sym_cmd_identifier_token11] = ACTIONS(1018), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1018), - [aux_sym_cmd_identifier_token17] = ACTIONS(1018), - [aux_sym_cmd_identifier_token18] = ACTIONS(1018), - [aux_sym_cmd_identifier_token19] = ACTIONS(1018), - [aux_sym_cmd_identifier_token20] = ACTIONS(1018), - [aux_sym_cmd_identifier_token21] = ACTIONS(1018), - [aux_sym_cmd_identifier_token22] = ACTIONS(1018), - [aux_sym_cmd_identifier_token23] = ACTIONS(1018), - [aux_sym_cmd_identifier_token24] = ACTIONS(1018), - [aux_sym_cmd_identifier_token25] = ACTIONS(1018), - [aux_sym_cmd_identifier_token26] = ACTIONS(1018), - [aux_sym_cmd_identifier_token27] = ACTIONS(1018), - [aux_sym_cmd_identifier_token28] = ACTIONS(1018), - [aux_sym_cmd_identifier_token29] = ACTIONS(1018), - [aux_sym_cmd_identifier_token30] = ACTIONS(1018), - [aux_sym_cmd_identifier_token31] = ACTIONS(1018), - [aux_sym_cmd_identifier_token32] = ACTIONS(1018), - [aux_sym_cmd_identifier_token33] = ACTIONS(1018), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1018), - [aux_sym_cmd_identifier_token36] = ACTIONS(1018), - [aux_sym_cmd_identifier_token37] = ACTIONS(1018), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1018), - [aux_sym_cmd_identifier_token40] = ACTIONS(1018), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1018), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1018), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1018), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1018), - [aux_sym__val_number_decimal_token3] = ACTIONS(1018), - [aux_sym__val_number_decimal_token4] = ACTIONS(1018), - [aux_sym__val_number_token1] = ACTIONS(1018), - [aux_sym__val_number_token2] = ACTIONS(1018), - [aux_sym__val_number_token3] = ACTIONS(1018), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1018), - [sym__str_single_quotes] = ACTIONS(1018), - [sym__str_back_ticks] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1018), - [sym__entry_separator] = ACTIONS(1020), + [635] = { + [sym_comment] = STATE(635), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2421), + [aux_sym_cmd_identifier_token3] = ACTIONS(2421), + [aux_sym_cmd_identifier_token4] = ACTIONS(2421), + [aux_sym_cmd_identifier_token5] = ACTIONS(2421), + [aux_sym_cmd_identifier_token6] = ACTIONS(2421), + [aux_sym_cmd_identifier_token7] = ACTIONS(2421), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2421), + [aux_sym_cmd_identifier_token11] = ACTIONS(2421), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2421), + [aux_sym_cmd_identifier_token17] = ACTIONS(2421), + [aux_sym_cmd_identifier_token18] = ACTIONS(2421), + [aux_sym_cmd_identifier_token19] = ACTIONS(2421), + [aux_sym_cmd_identifier_token20] = ACTIONS(2421), + [aux_sym_cmd_identifier_token21] = ACTIONS(2421), + [aux_sym_cmd_identifier_token22] = ACTIONS(2421), + [aux_sym_cmd_identifier_token23] = ACTIONS(2421), + [aux_sym_cmd_identifier_token24] = ACTIONS(2421), + [aux_sym_cmd_identifier_token25] = ACTIONS(2421), + [aux_sym_cmd_identifier_token26] = ACTIONS(2421), + [aux_sym_cmd_identifier_token27] = ACTIONS(2421), + [aux_sym_cmd_identifier_token28] = ACTIONS(2421), + [aux_sym_cmd_identifier_token29] = ACTIONS(2421), + [aux_sym_cmd_identifier_token30] = ACTIONS(2421), + [aux_sym_cmd_identifier_token31] = ACTIONS(2421), + [aux_sym_cmd_identifier_token32] = ACTIONS(2421), + [aux_sym_cmd_identifier_token33] = ACTIONS(2421), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2421), + [aux_sym_cmd_identifier_token36] = ACTIONS(2421), + [aux_sym_cmd_identifier_token37] = ACTIONS(2421), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2421), + [aux_sym_cmd_identifier_token40] = ACTIONS(2421), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2421), + [anon_sym_COMMA] = ACTIONS(2421), + [anon_sym_DOLLAR] = ACTIONS(2421), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2421), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2421), + [aux_sym__val_number_decimal_token3] = ACTIONS(2421), + [aux_sym__val_number_decimal_token4] = ACTIONS(2421), + [aux_sym__val_number_token1] = ACTIONS(2421), + [aux_sym__val_number_token2] = ACTIONS(2421), + [aux_sym__val_number_token3] = ACTIONS(2421), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2421), + [sym__str_single_quotes] = ACTIONS(2421), + [sym__str_back_ticks] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [sym__entry_separator] = ACTIONS(2423), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1020), + [sym_raw_string_begin] = ACTIONS(2423), }, - [662] = { - [sym_comment] = STATE(662), - [anon_sym_export] = ACTIONS(2483), - [anon_sym_alias] = ACTIONS(2483), - [anon_sym_let] = ACTIONS(2483), - [anon_sym_let_DASHenv] = ACTIONS(2483), - [anon_sym_mut] = ACTIONS(2483), - [anon_sym_const] = ACTIONS(2483), - [aux_sym_cmd_identifier_token1] = ACTIONS(2483), - [aux_sym_cmd_identifier_token2] = ACTIONS(2483), - [aux_sym_cmd_identifier_token3] = ACTIONS(2483), - [aux_sym_cmd_identifier_token4] = ACTIONS(2483), - [aux_sym_cmd_identifier_token5] = ACTIONS(2483), - [aux_sym_cmd_identifier_token6] = ACTIONS(2483), - [aux_sym_cmd_identifier_token7] = ACTIONS(2483), - [aux_sym_cmd_identifier_token8] = ACTIONS(2483), - [aux_sym_cmd_identifier_token9] = ACTIONS(2483), - [aux_sym_cmd_identifier_token10] = ACTIONS(2483), - [aux_sym_cmd_identifier_token11] = ACTIONS(2483), - [aux_sym_cmd_identifier_token12] = ACTIONS(2483), - [aux_sym_cmd_identifier_token13] = ACTIONS(2483), - [aux_sym_cmd_identifier_token14] = ACTIONS(2483), - [aux_sym_cmd_identifier_token15] = ACTIONS(2483), - [aux_sym_cmd_identifier_token16] = ACTIONS(2483), - [aux_sym_cmd_identifier_token17] = ACTIONS(2483), - [aux_sym_cmd_identifier_token18] = ACTIONS(2483), - [aux_sym_cmd_identifier_token19] = ACTIONS(2483), - [aux_sym_cmd_identifier_token20] = ACTIONS(2483), - [aux_sym_cmd_identifier_token21] = ACTIONS(2483), - [aux_sym_cmd_identifier_token22] = ACTIONS(2483), - [aux_sym_cmd_identifier_token23] = ACTIONS(2483), - [aux_sym_cmd_identifier_token24] = ACTIONS(2483), - [aux_sym_cmd_identifier_token25] = ACTIONS(2483), - [aux_sym_cmd_identifier_token26] = ACTIONS(2483), - [aux_sym_cmd_identifier_token27] = ACTIONS(2483), - [aux_sym_cmd_identifier_token28] = ACTIONS(2483), - [aux_sym_cmd_identifier_token29] = ACTIONS(2483), - [aux_sym_cmd_identifier_token30] = ACTIONS(2483), - [aux_sym_cmd_identifier_token31] = ACTIONS(2483), - [aux_sym_cmd_identifier_token32] = ACTIONS(2483), - [aux_sym_cmd_identifier_token33] = ACTIONS(2483), - [aux_sym_cmd_identifier_token34] = ACTIONS(2483), - [aux_sym_cmd_identifier_token35] = ACTIONS(2483), - [aux_sym_cmd_identifier_token36] = ACTIONS(2483), - [aux_sym_cmd_identifier_token37] = ACTIONS(2483), - [aux_sym_cmd_identifier_token38] = ACTIONS(2483), - [aux_sym_cmd_identifier_token39] = ACTIONS(2483), - [aux_sym_cmd_identifier_token40] = ACTIONS(2483), - [anon_sym_def] = ACTIONS(2483), - [anon_sym_export_DASHenv] = ACTIONS(2483), - [anon_sym_extern] = ACTIONS(2483), - [anon_sym_module] = ACTIONS(2483), - [anon_sym_use] = ACTIONS(2483), - [anon_sym_LPAREN] = ACTIONS(2483), - [anon_sym_DOLLAR] = ACTIONS(2483), - [anon_sym_error] = ACTIONS(2483), - [anon_sym_DASH2] = ACTIONS(2483), - [anon_sym_break] = ACTIONS(2483), - [anon_sym_continue] = ACTIONS(2483), - [anon_sym_for] = ACTIONS(2483), - [anon_sym_in2] = ACTIONS(2483), - [anon_sym_loop] = ACTIONS(2483), - [anon_sym_make] = ACTIONS(2483), - [anon_sym_while] = ACTIONS(2483), - [anon_sym_do] = ACTIONS(2483), - [anon_sym_if] = ACTIONS(2483), - [anon_sym_else] = ACTIONS(2483), - [anon_sym_match] = ACTIONS(2483), - [anon_sym_RBRACE] = ACTIONS(2483), - [anon_sym_try] = ACTIONS(2483), - [anon_sym_catch] = ACTIONS(2483), - [anon_sym_return] = ACTIONS(2483), - [anon_sym_source] = ACTIONS(2483), - [anon_sym_source_DASHenv] = ACTIONS(2483), - [anon_sym_register] = ACTIONS(2483), - [anon_sym_hide] = ACTIONS(2483), - [anon_sym_hide_DASHenv] = ACTIONS(2483), - [anon_sym_overlay] = ACTIONS(2483), - [anon_sym_as] = ACTIONS(2483), - [anon_sym_PLUS2] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), - [aux_sym__val_number_decimal_token1] = ACTIONS(2483), - [aux_sym__val_number_decimal_token2] = ACTIONS(2483), - [aux_sym__val_number_decimal_token3] = ACTIONS(2483), - [aux_sym__val_number_decimal_token4] = ACTIONS(2483), - [aux_sym__val_number_token1] = ACTIONS(2483), - [aux_sym__val_number_token2] = ACTIONS(2483), - [aux_sym__val_number_token3] = ACTIONS(2483), - [aux_sym__val_number_token4] = ACTIONS(2483), - [aux_sym__val_number_token5] = ACTIONS(2483), - [aux_sym__val_number_token6] = ACTIONS(2483), - [anon_sym_DQUOTE] = ACTIONS(2483), - [sym__str_single_quotes] = ACTIONS(2483), - [sym__str_back_ticks] = ACTIONS(2483), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), - [sym__entry_separator] = ACTIONS(2485), + [636] = { + [sym_comment] = STATE(636), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2164), + [aux_sym_cmd_identifier_token3] = ACTIONS(2164), + [aux_sym_cmd_identifier_token4] = ACTIONS(2164), + [aux_sym_cmd_identifier_token5] = ACTIONS(2164), + [aux_sym_cmd_identifier_token6] = ACTIONS(2164), + [aux_sym_cmd_identifier_token7] = ACTIONS(2164), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2164), + [aux_sym_cmd_identifier_token11] = ACTIONS(2164), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2164), + [aux_sym_cmd_identifier_token17] = ACTIONS(2164), + [aux_sym_cmd_identifier_token18] = ACTIONS(2164), + [aux_sym_cmd_identifier_token19] = ACTIONS(2164), + [aux_sym_cmd_identifier_token20] = ACTIONS(2164), + [aux_sym_cmd_identifier_token21] = ACTIONS(2164), + [aux_sym_cmd_identifier_token22] = ACTIONS(2164), + [aux_sym_cmd_identifier_token23] = ACTIONS(2164), + [aux_sym_cmd_identifier_token24] = ACTIONS(2164), + [aux_sym_cmd_identifier_token25] = ACTIONS(2164), + [aux_sym_cmd_identifier_token26] = ACTIONS(2164), + [aux_sym_cmd_identifier_token27] = ACTIONS(2164), + [aux_sym_cmd_identifier_token28] = ACTIONS(2164), + [aux_sym_cmd_identifier_token29] = ACTIONS(2164), + [aux_sym_cmd_identifier_token30] = ACTIONS(2164), + [aux_sym_cmd_identifier_token31] = ACTIONS(2164), + [aux_sym_cmd_identifier_token32] = ACTIONS(2164), + [aux_sym_cmd_identifier_token33] = ACTIONS(2164), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2164), + [aux_sym_cmd_identifier_token36] = ACTIONS(2164), + [aux_sym_cmd_identifier_token37] = ACTIONS(2164), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2164), + [aux_sym_cmd_identifier_token40] = ACTIONS(2164), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2164), + [anon_sym_COMMA] = ACTIONS(2164), + [anon_sym_DOLLAR] = ACTIONS(2164), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2164), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2164), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2164), + [aux_sym__val_number_decimal_token3] = ACTIONS(2164), + [aux_sym__val_number_decimal_token4] = ACTIONS(2164), + [aux_sym__val_number_token1] = ACTIONS(2164), + [aux_sym__val_number_token2] = ACTIONS(2164), + [aux_sym__val_number_token3] = ACTIONS(2164), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2164), + [sym__str_single_quotes] = ACTIONS(2164), + [sym__str_back_ticks] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2164), + [sym__entry_separator] = ACTIONS(2166), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2485), + [sym_raw_string_begin] = ACTIONS(2166), }, - [663] = { - [sym_comment] = STATE(663), + [637] = { + [sym_comment] = STATE(637), [anon_sym_export] = ACTIONS(964), [anon_sym_alias] = ACTIONS(964), [anon_sym_let] = ACTIONS(964), @@ -151087,6 +148783,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(964), [anon_sym_use] = ACTIONS(964), [anon_sym_LPAREN] = ACTIONS(964), + [anon_sym_COMMA] = ACTIONS(964), [anon_sym_DOLLAR] = ACTIONS(964), [anon_sym_error] = ACTIONS(964), [anon_sym_DASH2] = ACTIONS(964), @@ -151133,8 +148830,109 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(966), }, - [664] = { - [sym_comment] = STATE(664), + [638] = { + [sym_comment] = STATE(638), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2425), + [aux_sym_cmd_identifier_token3] = ACTIONS(2425), + [aux_sym_cmd_identifier_token4] = ACTIONS(2425), + [aux_sym_cmd_identifier_token5] = ACTIONS(2425), + [aux_sym_cmd_identifier_token6] = ACTIONS(2425), + [aux_sym_cmd_identifier_token7] = ACTIONS(2425), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2425), + [aux_sym_cmd_identifier_token11] = ACTIONS(2425), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2425), + [aux_sym_cmd_identifier_token17] = ACTIONS(2425), + [aux_sym_cmd_identifier_token18] = ACTIONS(2425), + [aux_sym_cmd_identifier_token19] = ACTIONS(2425), + [aux_sym_cmd_identifier_token20] = ACTIONS(2425), + [aux_sym_cmd_identifier_token21] = ACTIONS(2425), + [aux_sym_cmd_identifier_token22] = ACTIONS(2425), + [aux_sym_cmd_identifier_token23] = ACTIONS(2425), + [aux_sym_cmd_identifier_token24] = ACTIONS(2425), + [aux_sym_cmd_identifier_token25] = ACTIONS(2425), + [aux_sym_cmd_identifier_token26] = ACTIONS(2425), + [aux_sym_cmd_identifier_token27] = ACTIONS(2425), + [aux_sym_cmd_identifier_token28] = ACTIONS(2425), + [aux_sym_cmd_identifier_token29] = ACTIONS(2425), + [aux_sym_cmd_identifier_token30] = ACTIONS(2425), + [aux_sym_cmd_identifier_token31] = ACTIONS(2425), + [aux_sym_cmd_identifier_token32] = ACTIONS(2425), + [aux_sym_cmd_identifier_token33] = ACTIONS(2425), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2425), + [aux_sym_cmd_identifier_token36] = ACTIONS(2425), + [aux_sym_cmd_identifier_token37] = ACTIONS(2425), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2425), + [aux_sym_cmd_identifier_token40] = ACTIONS(2425), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2425), + [anon_sym_COMMA] = ACTIONS(2425), + [anon_sym_DOLLAR] = ACTIONS(2425), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2425), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2425), + [aux_sym__val_number_decimal_token3] = ACTIONS(2425), + [aux_sym__val_number_decimal_token4] = ACTIONS(2425), + [aux_sym__val_number_token1] = ACTIONS(2425), + [aux_sym__val_number_token2] = ACTIONS(2425), + [aux_sym__val_number_token3] = ACTIONS(2425), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2425), + [sym__str_single_quotes] = ACTIONS(2425), + [sym__str_back_ticks] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), + [sym__entry_separator] = ACTIONS(2427), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2427), + }, + [639] = { + [sym_comment] = STATE(639), [anon_sym_export] = ACTIONS(968), [anon_sym_alias] = ACTIONS(968), [anon_sym_let] = ACTIONS(968), @@ -151187,6 +148985,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(968), [anon_sym_use] = ACTIONS(968), [anon_sym_LPAREN] = ACTIONS(968), + [anon_sym_COMMA] = ACTIONS(968), [anon_sym_DOLLAR] = ACTIONS(968), [anon_sym_error] = ACTIONS(968), [anon_sym_DASH2] = ACTIONS(968), @@ -151233,8 +149032,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(970), }, - [665] = { - [sym_comment] = STATE(665), + [640] = { + [sym_comment] = STATE(640), [anon_sym_export] = ACTIONS(972), [anon_sym_alias] = ACTIONS(972), [anon_sym_let] = ACTIONS(972), @@ -151287,6 +149086,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(972), [anon_sym_use] = ACTIONS(972), [anon_sym_LPAREN] = ACTIONS(972), + [anon_sym_COMMA] = ACTIONS(972), [anon_sym_DOLLAR] = ACTIONS(972), [anon_sym_error] = ACTIONS(972), [anon_sym_DASH2] = ACTIONS(972), @@ -151328,2232 +149128,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(972), [sym__str_single_quotes] = ACTIONS(972), [sym__str_back_ticks] = ACTIONS(972), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), - [sym__entry_separator] = ACTIONS(974), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(974), - }, - [666] = { - [sym_comment] = STATE(666), - [anon_sym_export] = ACTIONS(976), - [anon_sym_alias] = ACTIONS(976), - [anon_sym_let] = ACTIONS(976), - [anon_sym_let_DASHenv] = ACTIONS(976), - [anon_sym_mut] = ACTIONS(976), - [anon_sym_const] = ACTIONS(976), - [aux_sym_cmd_identifier_token1] = ACTIONS(976), - [aux_sym_cmd_identifier_token2] = ACTIONS(976), - [aux_sym_cmd_identifier_token3] = ACTIONS(976), - [aux_sym_cmd_identifier_token4] = ACTIONS(976), - [aux_sym_cmd_identifier_token5] = ACTIONS(976), - [aux_sym_cmd_identifier_token6] = ACTIONS(976), - [aux_sym_cmd_identifier_token7] = ACTIONS(976), - [aux_sym_cmd_identifier_token8] = ACTIONS(976), - [aux_sym_cmd_identifier_token9] = ACTIONS(976), - [aux_sym_cmd_identifier_token10] = ACTIONS(976), - [aux_sym_cmd_identifier_token11] = ACTIONS(976), - [aux_sym_cmd_identifier_token12] = ACTIONS(976), - [aux_sym_cmd_identifier_token13] = ACTIONS(976), - [aux_sym_cmd_identifier_token14] = ACTIONS(976), - [aux_sym_cmd_identifier_token15] = ACTIONS(976), - [aux_sym_cmd_identifier_token16] = ACTIONS(976), - [aux_sym_cmd_identifier_token17] = ACTIONS(976), - [aux_sym_cmd_identifier_token18] = ACTIONS(976), - [aux_sym_cmd_identifier_token19] = ACTIONS(976), - [aux_sym_cmd_identifier_token20] = ACTIONS(976), - [aux_sym_cmd_identifier_token21] = ACTIONS(976), - [aux_sym_cmd_identifier_token22] = ACTIONS(976), - [aux_sym_cmd_identifier_token23] = ACTIONS(976), - [aux_sym_cmd_identifier_token24] = ACTIONS(976), - [aux_sym_cmd_identifier_token25] = ACTIONS(976), - [aux_sym_cmd_identifier_token26] = ACTIONS(976), - [aux_sym_cmd_identifier_token27] = ACTIONS(976), - [aux_sym_cmd_identifier_token28] = ACTIONS(976), - [aux_sym_cmd_identifier_token29] = ACTIONS(976), - [aux_sym_cmd_identifier_token30] = ACTIONS(976), - [aux_sym_cmd_identifier_token31] = ACTIONS(976), - [aux_sym_cmd_identifier_token32] = ACTIONS(976), - [aux_sym_cmd_identifier_token33] = ACTIONS(976), - [aux_sym_cmd_identifier_token34] = ACTIONS(976), - [aux_sym_cmd_identifier_token35] = ACTIONS(976), - [aux_sym_cmd_identifier_token36] = ACTIONS(976), - [aux_sym_cmd_identifier_token37] = ACTIONS(976), - [aux_sym_cmd_identifier_token38] = ACTIONS(976), - [aux_sym_cmd_identifier_token39] = ACTIONS(976), - [aux_sym_cmd_identifier_token40] = ACTIONS(976), - [anon_sym_def] = ACTIONS(976), - [anon_sym_export_DASHenv] = ACTIONS(976), - [anon_sym_extern] = ACTIONS(976), - [anon_sym_module] = ACTIONS(976), - [anon_sym_use] = ACTIONS(976), - [anon_sym_LPAREN] = ACTIONS(976), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_error] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_break] = ACTIONS(976), - [anon_sym_continue] = ACTIONS(976), - [anon_sym_for] = ACTIONS(976), - [anon_sym_in2] = ACTIONS(976), - [anon_sym_loop] = ACTIONS(976), - [anon_sym_make] = ACTIONS(976), - [anon_sym_while] = ACTIONS(976), - [anon_sym_do] = ACTIONS(976), - [anon_sym_if] = ACTIONS(976), - [anon_sym_else] = ACTIONS(976), - [anon_sym_match] = ACTIONS(976), - [anon_sym_RBRACE] = ACTIONS(976), - [anon_sym_try] = ACTIONS(976), - [anon_sym_catch] = ACTIONS(976), - [anon_sym_return] = ACTIONS(976), - [anon_sym_source] = ACTIONS(976), - [anon_sym_source_DASHenv] = ACTIONS(976), - [anon_sym_register] = ACTIONS(976), - [anon_sym_hide] = ACTIONS(976), - [anon_sym_hide_DASHenv] = ACTIONS(976), - [anon_sym_overlay] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(976), - [aux_sym__val_number_decimal_token3] = ACTIONS(976), - [aux_sym__val_number_decimal_token4] = ACTIONS(976), - [aux_sym__val_number_token1] = ACTIONS(976), - [aux_sym__val_number_token2] = ACTIONS(976), - [aux_sym__val_number_token3] = ACTIONS(976), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(976), - [sym__str_single_quotes] = ACTIONS(976), - [sym__str_back_ticks] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), - [sym__entry_separator] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(978), - }, - [667] = { - [sym_comment] = STATE(667), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_let_DASHenv] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2487), - [aux_sym_cmd_identifier_token2] = ACTIONS(2487), - [aux_sym_cmd_identifier_token3] = ACTIONS(2487), - [aux_sym_cmd_identifier_token4] = ACTIONS(2487), - [aux_sym_cmd_identifier_token5] = ACTIONS(2487), - [aux_sym_cmd_identifier_token6] = ACTIONS(2487), - [aux_sym_cmd_identifier_token7] = ACTIONS(2487), - [aux_sym_cmd_identifier_token8] = ACTIONS(2487), - [aux_sym_cmd_identifier_token9] = ACTIONS(2487), - [aux_sym_cmd_identifier_token10] = ACTIONS(2487), - [aux_sym_cmd_identifier_token11] = ACTIONS(2487), - [aux_sym_cmd_identifier_token12] = ACTIONS(2487), - [aux_sym_cmd_identifier_token13] = ACTIONS(2487), - [aux_sym_cmd_identifier_token14] = ACTIONS(2487), - [aux_sym_cmd_identifier_token15] = ACTIONS(2487), - [aux_sym_cmd_identifier_token16] = ACTIONS(2487), - [aux_sym_cmd_identifier_token17] = ACTIONS(2487), - [aux_sym_cmd_identifier_token18] = ACTIONS(2487), - [aux_sym_cmd_identifier_token19] = ACTIONS(2487), - [aux_sym_cmd_identifier_token20] = ACTIONS(2487), - [aux_sym_cmd_identifier_token21] = ACTIONS(2487), - [aux_sym_cmd_identifier_token22] = ACTIONS(2487), - [aux_sym_cmd_identifier_token23] = ACTIONS(2487), - [aux_sym_cmd_identifier_token24] = ACTIONS(2487), - [aux_sym_cmd_identifier_token25] = ACTIONS(2487), - [aux_sym_cmd_identifier_token26] = ACTIONS(2487), - [aux_sym_cmd_identifier_token27] = ACTIONS(2487), - [aux_sym_cmd_identifier_token28] = ACTIONS(2487), - [aux_sym_cmd_identifier_token29] = ACTIONS(2487), - [aux_sym_cmd_identifier_token30] = ACTIONS(2487), - [aux_sym_cmd_identifier_token31] = ACTIONS(2487), - [aux_sym_cmd_identifier_token32] = ACTIONS(2487), - [aux_sym_cmd_identifier_token33] = ACTIONS(2487), - [aux_sym_cmd_identifier_token34] = ACTIONS(2487), - [aux_sym_cmd_identifier_token35] = ACTIONS(2487), - [aux_sym_cmd_identifier_token36] = ACTIONS(2487), - [aux_sym_cmd_identifier_token37] = ACTIONS(2487), - [aux_sym_cmd_identifier_token38] = ACTIONS(2487), - [aux_sym_cmd_identifier_token39] = ACTIONS(2487), - [aux_sym_cmd_identifier_token40] = ACTIONS(2487), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2487), - [anon_sym_DOLLAR] = ACTIONS(2487), - [anon_sym_error] = ACTIONS(2487), - [anon_sym_DASH2] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_in2] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_make] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2487), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_source] = ACTIONS(2487), - [anon_sym_source_DASHenv] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_hide] = ACTIONS(2487), - [anon_sym_hide_DASHenv] = ACTIONS(2487), - [anon_sym_overlay] = ACTIONS(2487), - [anon_sym_as] = ACTIONS(2487), - [anon_sym_PLUS2] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), - [aux_sym__val_number_decimal_token1] = ACTIONS(2487), - [aux_sym__val_number_decimal_token2] = ACTIONS(2487), - [aux_sym__val_number_decimal_token3] = ACTIONS(2487), - [aux_sym__val_number_decimal_token4] = ACTIONS(2487), - [aux_sym__val_number_token1] = ACTIONS(2487), - [aux_sym__val_number_token2] = ACTIONS(2487), - [aux_sym__val_number_token3] = ACTIONS(2487), - [aux_sym__val_number_token4] = ACTIONS(2487), - [aux_sym__val_number_token5] = ACTIONS(2487), - [aux_sym__val_number_token6] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2487), - [sym__str_single_quotes] = ACTIONS(2487), - [sym__str_back_ticks] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), - [sym__entry_separator] = ACTIONS(2489), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2489), - }, - [668] = { - [sym_comment] = STATE(668), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_let_DASHenv] = ACTIONS(2491), - [anon_sym_mut] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [aux_sym_cmd_identifier_token2] = ACTIONS(2491), - [aux_sym_cmd_identifier_token3] = ACTIONS(2491), - [aux_sym_cmd_identifier_token4] = ACTIONS(2491), - [aux_sym_cmd_identifier_token5] = ACTIONS(2491), - [aux_sym_cmd_identifier_token6] = ACTIONS(2491), - [aux_sym_cmd_identifier_token7] = ACTIONS(2491), - [aux_sym_cmd_identifier_token8] = ACTIONS(2491), - [aux_sym_cmd_identifier_token9] = ACTIONS(2491), - [aux_sym_cmd_identifier_token10] = ACTIONS(2491), - [aux_sym_cmd_identifier_token11] = ACTIONS(2491), - [aux_sym_cmd_identifier_token12] = ACTIONS(2491), - [aux_sym_cmd_identifier_token13] = ACTIONS(2491), - [aux_sym_cmd_identifier_token14] = ACTIONS(2491), - [aux_sym_cmd_identifier_token15] = ACTIONS(2491), - [aux_sym_cmd_identifier_token16] = ACTIONS(2491), - [aux_sym_cmd_identifier_token17] = ACTIONS(2491), - [aux_sym_cmd_identifier_token18] = ACTIONS(2491), - [aux_sym_cmd_identifier_token19] = ACTIONS(2491), - [aux_sym_cmd_identifier_token20] = ACTIONS(2491), - [aux_sym_cmd_identifier_token21] = ACTIONS(2491), - [aux_sym_cmd_identifier_token22] = ACTIONS(2491), - [aux_sym_cmd_identifier_token23] = ACTIONS(2491), - [aux_sym_cmd_identifier_token24] = ACTIONS(2491), - [aux_sym_cmd_identifier_token25] = ACTIONS(2491), - [aux_sym_cmd_identifier_token26] = ACTIONS(2491), - [aux_sym_cmd_identifier_token27] = ACTIONS(2491), - [aux_sym_cmd_identifier_token28] = ACTIONS(2491), - [aux_sym_cmd_identifier_token29] = ACTIONS(2491), - [aux_sym_cmd_identifier_token30] = ACTIONS(2491), - [aux_sym_cmd_identifier_token31] = ACTIONS(2491), - [aux_sym_cmd_identifier_token32] = ACTIONS(2491), - [aux_sym_cmd_identifier_token33] = ACTIONS(2491), - [aux_sym_cmd_identifier_token34] = ACTIONS(2491), - [aux_sym_cmd_identifier_token35] = ACTIONS(2491), - [aux_sym_cmd_identifier_token36] = ACTIONS(2491), - [aux_sym_cmd_identifier_token37] = ACTIONS(2491), - [aux_sym_cmd_identifier_token38] = ACTIONS(2491), - [aux_sym_cmd_identifier_token39] = ACTIONS(2491), - [aux_sym_cmd_identifier_token40] = ACTIONS(2491), - [anon_sym_def] = ACTIONS(2491), - [anon_sym_export_DASHenv] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym_module] = ACTIONS(2491), - [anon_sym_use] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2491), - [anon_sym_DOLLAR] = ACTIONS(2491), - [anon_sym_error] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_in2] = ACTIONS(2491), - [anon_sym_loop] = ACTIONS(2491), - [anon_sym_make] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_match] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2491), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_catch] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_source] = ACTIONS(2491), - [anon_sym_source_DASHenv] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_hide] = ACTIONS(2491), - [anon_sym_hide_DASHenv] = ACTIONS(2491), - [anon_sym_overlay] = ACTIONS(2491), - [anon_sym_as] = ACTIONS(2491), - [anon_sym_PLUS2] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2491), - [aux_sym__val_number_decimal_token1] = ACTIONS(2491), - [aux_sym__val_number_decimal_token2] = ACTIONS(2491), - [aux_sym__val_number_decimal_token3] = ACTIONS(2491), - [aux_sym__val_number_decimal_token4] = ACTIONS(2491), - [aux_sym__val_number_token1] = ACTIONS(2491), - [aux_sym__val_number_token2] = ACTIONS(2491), - [aux_sym__val_number_token3] = ACTIONS(2491), - [aux_sym__val_number_token4] = ACTIONS(2491), - [aux_sym__val_number_token5] = ACTIONS(2491), - [aux_sym__val_number_token6] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(2491), - [sym__str_single_quotes] = ACTIONS(2491), - [sym__str_back_ticks] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2491), - [sym__entry_separator] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2493), - }, - [669] = { - [sym_comment] = STATE(669), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(2332), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [670] = { - [sym_comment] = STATE(670), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(2495), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [671] = { - [sym_comment] = STATE(671), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1693), - [aux_sym_cmd_identifier_token3] = ACTIONS(1693), - [aux_sym_cmd_identifier_token4] = ACTIONS(1693), - [aux_sym_cmd_identifier_token5] = ACTIONS(1693), - [aux_sym_cmd_identifier_token6] = ACTIONS(1693), - [aux_sym_cmd_identifier_token7] = ACTIONS(1693), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1693), - [aux_sym_cmd_identifier_token11] = ACTIONS(1693), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1693), - [aux_sym_cmd_identifier_token17] = ACTIONS(1693), - [aux_sym_cmd_identifier_token18] = ACTIONS(1693), - [aux_sym_cmd_identifier_token19] = ACTIONS(1693), - [aux_sym_cmd_identifier_token20] = ACTIONS(1693), - [aux_sym_cmd_identifier_token21] = ACTIONS(1693), - [aux_sym_cmd_identifier_token22] = ACTIONS(1693), - [aux_sym_cmd_identifier_token23] = ACTIONS(1693), - [aux_sym_cmd_identifier_token24] = ACTIONS(1693), - [aux_sym_cmd_identifier_token25] = ACTIONS(1693), - [aux_sym_cmd_identifier_token26] = ACTIONS(1693), - [aux_sym_cmd_identifier_token27] = ACTIONS(1693), - [aux_sym_cmd_identifier_token28] = ACTIONS(1693), - [aux_sym_cmd_identifier_token29] = ACTIONS(1693), - [aux_sym_cmd_identifier_token30] = ACTIONS(1693), - [aux_sym_cmd_identifier_token31] = ACTIONS(1693), - [aux_sym_cmd_identifier_token32] = ACTIONS(1693), - [aux_sym_cmd_identifier_token33] = ACTIONS(1693), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1693), - [aux_sym_cmd_identifier_token36] = ACTIONS(1693), - [aux_sym_cmd_identifier_token37] = ACTIONS(1693), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1693), - [aux_sym_cmd_identifier_token40] = ACTIONS(1693), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), - [aux_sym__unquoted_in_record_token2] = ACTIONS(1745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [672] = { - [sym_comment] = STATE(672), - [anon_sym_export] = ACTIONS(2277), - [anon_sym_alias] = ACTIONS(2277), - [anon_sym_let] = ACTIONS(2277), - [anon_sym_let_DASHenv] = ACTIONS(2277), - [anon_sym_mut] = ACTIONS(2277), - [anon_sym_const] = ACTIONS(2277), - [aux_sym_cmd_identifier_token1] = ACTIONS(2277), - [aux_sym_cmd_identifier_token2] = ACTIONS(2279), - [aux_sym_cmd_identifier_token3] = ACTIONS(2279), - [aux_sym_cmd_identifier_token4] = ACTIONS(2279), - [aux_sym_cmd_identifier_token5] = ACTIONS(2279), - [aux_sym_cmd_identifier_token6] = ACTIONS(2279), - [aux_sym_cmd_identifier_token7] = ACTIONS(2279), - [aux_sym_cmd_identifier_token8] = ACTIONS(2277), - [aux_sym_cmd_identifier_token9] = ACTIONS(2277), - [aux_sym_cmd_identifier_token10] = ACTIONS(2279), - [aux_sym_cmd_identifier_token11] = ACTIONS(2279), - [aux_sym_cmd_identifier_token12] = ACTIONS(2277), - [aux_sym_cmd_identifier_token13] = ACTIONS(2277), - [aux_sym_cmd_identifier_token14] = ACTIONS(2277), - [aux_sym_cmd_identifier_token15] = ACTIONS(2277), - [aux_sym_cmd_identifier_token16] = ACTIONS(2279), - [aux_sym_cmd_identifier_token17] = ACTIONS(2279), - [aux_sym_cmd_identifier_token18] = ACTIONS(2279), - [aux_sym_cmd_identifier_token19] = ACTIONS(2279), - [aux_sym_cmd_identifier_token20] = ACTIONS(2279), - [aux_sym_cmd_identifier_token21] = ACTIONS(2279), - [aux_sym_cmd_identifier_token22] = ACTIONS(2279), - [aux_sym_cmd_identifier_token23] = ACTIONS(2279), - [aux_sym_cmd_identifier_token24] = ACTIONS(2279), - [aux_sym_cmd_identifier_token25] = ACTIONS(2279), - [aux_sym_cmd_identifier_token26] = ACTIONS(2279), - [aux_sym_cmd_identifier_token27] = ACTIONS(2279), - [aux_sym_cmd_identifier_token28] = ACTIONS(2279), - [aux_sym_cmd_identifier_token29] = ACTIONS(2279), - [aux_sym_cmd_identifier_token30] = ACTIONS(2279), - [aux_sym_cmd_identifier_token31] = ACTIONS(2279), - [aux_sym_cmd_identifier_token32] = ACTIONS(2279), - [aux_sym_cmd_identifier_token33] = ACTIONS(2279), - [aux_sym_cmd_identifier_token34] = ACTIONS(2277), - [aux_sym_cmd_identifier_token35] = ACTIONS(2279), - [aux_sym_cmd_identifier_token36] = ACTIONS(2279), - [aux_sym_cmd_identifier_token37] = ACTIONS(2279), - [aux_sym_cmd_identifier_token38] = ACTIONS(2277), - [aux_sym_cmd_identifier_token39] = ACTIONS(2279), - [aux_sym_cmd_identifier_token40] = ACTIONS(2279), - [anon_sym_def] = ACTIONS(2277), - [anon_sym_export_DASHenv] = ACTIONS(2277), - [anon_sym_extern] = ACTIONS(2277), - [anon_sym_module] = ACTIONS(2277), - [anon_sym_use] = ACTIONS(2277), - [anon_sym_LPAREN] = ACTIONS(2277), - [anon_sym_DOLLAR] = ACTIONS(2279), - [anon_sym_error] = ACTIONS(2277), - [anon_sym_DASH2] = ACTIONS(2277), - [anon_sym_break] = ACTIONS(2277), - [anon_sym_continue] = ACTIONS(2277), - [anon_sym_for] = ACTIONS(2277), - [anon_sym_in2] = ACTIONS(2277), - [anon_sym_loop] = ACTIONS(2277), - [anon_sym_make] = ACTIONS(2277), - [anon_sym_while] = ACTIONS(2277), - [anon_sym_do] = ACTIONS(2277), - [anon_sym_if] = ACTIONS(2277), - [anon_sym_else] = ACTIONS(2277), - [anon_sym_match] = ACTIONS(2277), - [anon_sym_RBRACE] = ACTIONS(2279), - [anon_sym_try] = ACTIONS(2277), - [anon_sym_catch] = ACTIONS(2277), - [anon_sym_return] = ACTIONS(2277), - [anon_sym_source] = ACTIONS(2277), - [anon_sym_source_DASHenv] = ACTIONS(2277), - [anon_sym_register] = ACTIONS(2277), - [anon_sym_hide] = ACTIONS(2277), - [anon_sym_hide_DASHenv] = ACTIONS(2277), - [anon_sym_overlay] = ACTIONS(2277), - [anon_sym_as] = ACTIONS(2277), - [anon_sym_LPAREN2] = ACTIONS(2279), - [anon_sym_PLUS2] = ACTIONS(2277), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2279), - [aux_sym__val_number_decimal_token1] = ACTIONS(2277), - [aux_sym__val_number_decimal_token2] = ACTIONS(2279), - [aux_sym__val_number_decimal_token3] = ACTIONS(2279), - [aux_sym__val_number_decimal_token4] = ACTIONS(2279), - [aux_sym__val_number_token1] = ACTIONS(2279), - [aux_sym__val_number_token2] = ACTIONS(2279), - [aux_sym__val_number_token3] = ACTIONS(2279), - [aux_sym__val_number_token4] = ACTIONS(2277), - [aux_sym__val_number_token5] = ACTIONS(2277), - [aux_sym__val_number_token6] = ACTIONS(2277), - [anon_sym_DQUOTE] = ACTIONS(2279), - [sym__str_single_quotes] = ACTIONS(2279), - [sym__str_back_ticks] = ACTIONS(2279), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2279), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2279), - }, - [673] = { - [sym_comment] = STATE(673), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_alias] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_let_DASHenv] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [aux_sym_cmd_identifier_token1] = ACTIONS(2124), - [aux_sym_cmd_identifier_token2] = ACTIONS(2124), - [aux_sym_cmd_identifier_token3] = ACTIONS(2124), - [aux_sym_cmd_identifier_token4] = ACTIONS(2124), - [aux_sym_cmd_identifier_token5] = ACTIONS(2124), - [aux_sym_cmd_identifier_token6] = ACTIONS(2124), - [aux_sym_cmd_identifier_token7] = ACTIONS(2124), - [aux_sym_cmd_identifier_token8] = ACTIONS(2124), - [aux_sym_cmd_identifier_token9] = ACTIONS(2124), - [aux_sym_cmd_identifier_token10] = ACTIONS(2124), - [aux_sym_cmd_identifier_token11] = ACTIONS(2124), - [aux_sym_cmd_identifier_token12] = ACTIONS(2124), - [aux_sym_cmd_identifier_token13] = ACTIONS(2124), - [aux_sym_cmd_identifier_token14] = ACTIONS(2124), - [aux_sym_cmd_identifier_token15] = ACTIONS(2124), - [aux_sym_cmd_identifier_token16] = ACTIONS(2124), - [aux_sym_cmd_identifier_token17] = ACTIONS(2124), - [aux_sym_cmd_identifier_token18] = ACTIONS(2124), - [aux_sym_cmd_identifier_token19] = ACTIONS(2124), - [aux_sym_cmd_identifier_token20] = ACTIONS(2124), - [aux_sym_cmd_identifier_token21] = ACTIONS(2124), - [aux_sym_cmd_identifier_token22] = ACTIONS(2124), - [aux_sym_cmd_identifier_token23] = ACTIONS(2124), - [aux_sym_cmd_identifier_token24] = ACTIONS(2124), - [aux_sym_cmd_identifier_token25] = ACTIONS(2124), - [aux_sym_cmd_identifier_token26] = ACTIONS(2124), - [aux_sym_cmd_identifier_token27] = ACTIONS(2124), - [aux_sym_cmd_identifier_token28] = ACTIONS(2124), - [aux_sym_cmd_identifier_token29] = ACTIONS(2124), - [aux_sym_cmd_identifier_token30] = ACTIONS(2124), - [aux_sym_cmd_identifier_token31] = ACTIONS(2124), - [aux_sym_cmd_identifier_token32] = ACTIONS(2124), - [aux_sym_cmd_identifier_token33] = ACTIONS(2124), - [aux_sym_cmd_identifier_token34] = ACTIONS(2124), - [aux_sym_cmd_identifier_token35] = ACTIONS(2124), - [aux_sym_cmd_identifier_token36] = ACTIONS(2124), - [aux_sym_cmd_identifier_token37] = ACTIONS(2124), - [aux_sym_cmd_identifier_token38] = ACTIONS(2124), - [aux_sym_cmd_identifier_token39] = ACTIONS(2124), - [aux_sym_cmd_identifier_token40] = ACTIONS(2124), - [anon_sym_def] = ACTIONS(2124), - [anon_sym_export_DASHenv] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2124), - [anon_sym_DOLLAR] = ACTIONS(2124), - [anon_sym_error] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_in2] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_make] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_do] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_else] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2124), - [anon_sym_try] = ACTIONS(2124), - [anon_sym_catch] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_source] = ACTIONS(2124), - [anon_sym_source_DASHenv] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_hide] = ACTIONS(2124), - [anon_sym_hide_DASHenv] = ACTIONS(2124), - [anon_sym_overlay] = ACTIONS(2124), - [anon_sym_as] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2124), - [aux_sym__val_number_decimal_token1] = ACTIONS(2124), - [aux_sym__val_number_decimal_token2] = ACTIONS(2124), - [aux_sym__val_number_decimal_token3] = ACTIONS(2124), - [aux_sym__val_number_decimal_token4] = ACTIONS(2124), - [aux_sym__val_number_token1] = ACTIONS(2124), - [aux_sym__val_number_token2] = ACTIONS(2124), - [aux_sym__val_number_token3] = ACTIONS(2124), - [aux_sym__val_number_token4] = ACTIONS(2124), - [aux_sym__val_number_token5] = ACTIONS(2124), - [aux_sym__val_number_token6] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2124), - [sym__str_single_quotes] = ACTIONS(2124), - [sym__str_back_ticks] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2124), - [sym__entry_separator] = ACTIONS(2130), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2130), - }, - [674] = { - [sym_comment] = STATE(674), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1894), - [aux_sym_cmd_identifier_token3] = ACTIONS(1894), - [aux_sym_cmd_identifier_token4] = ACTIONS(1894), - [aux_sym_cmd_identifier_token5] = ACTIONS(1894), - [aux_sym_cmd_identifier_token6] = ACTIONS(1894), - [aux_sym_cmd_identifier_token7] = ACTIONS(1894), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1894), - [aux_sym_cmd_identifier_token11] = ACTIONS(1894), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1894), - [aux_sym_cmd_identifier_token17] = ACTIONS(1894), - [aux_sym_cmd_identifier_token18] = ACTIONS(1894), - [aux_sym_cmd_identifier_token19] = ACTIONS(1894), - [aux_sym_cmd_identifier_token20] = ACTIONS(1894), - [aux_sym_cmd_identifier_token21] = ACTIONS(1894), - [aux_sym_cmd_identifier_token22] = ACTIONS(1894), - [aux_sym_cmd_identifier_token23] = ACTIONS(1894), - [aux_sym_cmd_identifier_token24] = ACTIONS(1894), - [aux_sym_cmd_identifier_token25] = ACTIONS(1894), - [aux_sym_cmd_identifier_token26] = ACTIONS(1894), - [aux_sym_cmd_identifier_token27] = ACTIONS(1894), - [aux_sym_cmd_identifier_token28] = ACTIONS(1894), - [aux_sym_cmd_identifier_token29] = ACTIONS(1894), - [aux_sym_cmd_identifier_token30] = ACTIONS(1894), - [aux_sym_cmd_identifier_token31] = ACTIONS(1894), - [aux_sym_cmd_identifier_token32] = ACTIONS(1894), - [aux_sym_cmd_identifier_token33] = ACTIONS(1894), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1894), - [aux_sym_cmd_identifier_token36] = ACTIONS(1894), - [aux_sym_cmd_identifier_token37] = ACTIONS(1894), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1894), - [aux_sym_cmd_identifier_token40] = ACTIONS(1894), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1894), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_DASH2] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in2] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1894), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_PLUS2] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1894), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1894), - [aux_sym__val_number_decimal_token3] = ACTIONS(1894), - [aux_sym__val_number_decimal_token4] = ACTIONS(1894), - [aux_sym__val_number_token1] = ACTIONS(1894), - [aux_sym__val_number_token2] = ACTIONS(1894), - [aux_sym__val_number_token3] = ACTIONS(1894), - [aux_sym__val_number_token4] = ACTIONS(1894), - [aux_sym__val_number_token5] = ACTIONS(1894), - [aux_sym__val_number_token6] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1894), - [sym__str_single_quotes] = ACTIONS(1894), - [sym__str_back_ticks] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1894), - [sym__entry_separator] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1896), - }, - [675] = { - [sym_comment] = STATE(675), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1725), - [aux_sym_cmd_identifier_token3] = ACTIONS(1725), - [aux_sym_cmd_identifier_token4] = ACTIONS(1725), - [aux_sym_cmd_identifier_token5] = ACTIONS(1725), - [aux_sym_cmd_identifier_token6] = ACTIONS(1725), - [aux_sym_cmd_identifier_token7] = ACTIONS(1725), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1725), - [aux_sym_cmd_identifier_token11] = ACTIONS(1725), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1725), - [aux_sym_cmd_identifier_token17] = ACTIONS(1725), - [aux_sym_cmd_identifier_token18] = ACTIONS(1725), - [aux_sym_cmd_identifier_token19] = ACTIONS(1725), - [aux_sym_cmd_identifier_token20] = ACTIONS(1725), - [aux_sym_cmd_identifier_token21] = ACTIONS(1725), - [aux_sym_cmd_identifier_token22] = ACTIONS(1725), - [aux_sym_cmd_identifier_token23] = ACTIONS(1725), - [aux_sym_cmd_identifier_token24] = ACTIONS(1725), - [aux_sym_cmd_identifier_token25] = ACTIONS(1725), - [aux_sym_cmd_identifier_token26] = ACTIONS(1725), - [aux_sym_cmd_identifier_token27] = ACTIONS(1725), - [aux_sym_cmd_identifier_token28] = ACTIONS(1725), - [aux_sym_cmd_identifier_token29] = ACTIONS(1725), - [aux_sym_cmd_identifier_token30] = ACTIONS(1725), - [aux_sym_cmd_identifier_token31] = ACTIONS(1725), - [aux_sym_cmd_identifier_token32] = ACTIONS(1725), - [aux_sym_cmd_identifier_token33] = ACTIONS(1725), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1725), - [aux_sym_cmd_identifier_token36] = ACTIONS(1725), - [aux_sym_cmd_identifier_token37] = ACTIONS(1725), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1725), - [aux_sym_cmd_identifier_token40] = ACTIONS(1725), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1725), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1725), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1725), - [aux_sym__val_number_decimal_token3] = ACTIONS(1725), - [aux_sym__val_number_decimal_token4] = ACTIONS(1725), - [aux_sym__val_number_token1] = ACTIONS(1725), - [aux_sym__val_number_token2] = ACTIONS(1725), - [aux_sym__val_number_token3] = ACTIONS(1725), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1725), - [sym__str_single_quotes] = ACTIONS(1725), - [sym__str_back_ticks] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1725), - [sym__entry_separator] = ACTIONS(1727), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [676] = { - [sym_comment] = STATE(676), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1757), - [aux_sym_cmd_identifier_token3] = ACTIONS(1757), - [aux_sym_cmd_identifier_token4] = ACTIONS(1757), - [aux_sym_cmd_identifier_token5] = ACTIONS(1757), - [aux_sym_cmd_identifier_token6] = ACTIONS(1757), - [aux_sym_cmd_identifier_token7] = ACTIONS(1757), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1757), - [aux_sym_cmd_identifier_token11] = ACTIONS(1757), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1757), - [aux_sym_cmd_identifier_token17] = ACTIONS(1757), - [aux_sym_cmd_identifier_token18] = ACTIONS(1757), - [aux_sym_cmd_identifier_token19] = ACTIONS(1757), - [aux_sym_cmd_identifier_token20] = ACTIONS(1757), - [aux_sym_cmd_identifier_token21] = ACTIONS(1757), - [aux_sym_cmd_identifier_token22] = ACTIONS(1757), - [aux_sym_cmd_identifier_token23] = ACTIONS(1757), - [aux_sym_cmd_identifier_token24] = ACTIONS(1757), - [aux_sym_cmd_identifier_token25] = ACTIONS(1757), - [aux_sym_cmd_identifier_token26] = ACTIONS(1757), - [aux_sym_cmd_identifier_token27] = ACTIONS(1757), - [aux_sym_cmd_identifier_token28] = ACTIONS(1757), - [aux_sym_cmd_identifier_token29] = ACTIONS(1757), - [aux_sym_cmd_identifier_token30] = ACTIONS(1757), - [aux_sym_cmd_identifier_token31] = ACTIONS(1757), - [aux_sym_cmd_identifier_token32] = ACTIONS(1757), - [aux_sym_cmd_identifier_token33] = ACTIONS(1757), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1757), - [aux_sym_cmd_identifier_token36] = ACTIONS(1757), - [aux_sym_cmd_identifier_token37] = ACTIONS(1757), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1757), - [aux_sym_cmd_identifier_token40] = ACTIONS(1757), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1757), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1757), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1757), - [aux_sym__val_number_decimal_token3] = ACTIONS(1757), - [aux_sym__val_number_decimal_token4] = ACTIONS(1757), - [aux_sym__val_number_token1] = ACTIONS(1757), - [aux_sym__val_number_token2] = ACTIONS(1757), - [aux_sym__val_number_token3] = ACTIONS(1757), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1757), - [sym__str_single_quotes] = ACTIONS(1757), - [sym__str_back_ticks] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1757), - [sym__entry_separator] = ACTIONS(1759), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [677] = { - [sym_comment] = STATE(677), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2136), - [aux_sym_cmd_identifier_token3] = ACTIONS(2136), - [aux_sym_cmd_identifier_token4] = ACTIONS(2136), - [aux_sym_cmd_identifier_token5] = ACTIONS(2136), - [aux_sym_cmd_identifier_token6] = ACTIONS(2136), - [aux_sym_cmd_identifier_token7] = ACTIONS(2136), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2136), - [aux_sym_cmd_identifier_token11] = ACTIONS(2136), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2136), - [aux_sym_cmd_identifier_token17] = ACTIONS(2136), - [aux_sym_cmd_identifier_token18] = ACTIONS(2136), - [aux_sym_cmd_identifier_token19] = ACTIONS(2136), - [aux_sym_cmd_identifier_token20] = ACTIONS(2136), - [aux_sym_cmd_identifier_token21] = ACTIONS(2136), - [aux_sym_cmd_identifier_token22] = ACTIONS(2136), - [aux_sym_cmd_identifier_token23] = ACTIONS(2136), - [aux_sym_cmd_identifier_token24] = ACTIONS(2136), - [aux_sym_cmd_identifier_token25] = ACTIONS(2136), - [aux_sym_cmd_identifier_token26] = ACTIONS(2136), - [aux_sym_cmd_identifier_token27] = ACTIONS(2136), - [aux_sym_cmd_identifier_token28] = ACTIONS(2136), - [aux_sym_cmd_identifier_token29] = ACTIONS(2136), - [aux_sym_cmd_identifier_token30] = ACTIONS(2136), - [aux_sym_cmd_identifier_token31] = ACTIONS(2136), - [aux_sym_cmd_identifier_token32] = ACTIONS(2136), - [aux_sym_cmd_identifier_token33] = ACTIONS(2136), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2136), - [aux_sym_cmd_identifier_token36] = ACTIONS(2136), - [aux_sym_cmd_identifier_token37] = ACTIONS(2136), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2136), - [aux_sym_cmd_identifier_token40] = ACTIONS(2136), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2136), - [anon_sym_DOLLAR] = ACTIONS(2136), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2136), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2136), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2136), - [aux_sym__val_number_decimal_token3] = ACTIONS(2136), - [aux_sym__val_number_decimal_token4] = ACTIONS(2136), - [aux_sym__val_number_token1] = ACTIONS(2136), - [aux_sym__val_number_token2] = ACTIONS(2136), - [aux_sym__val_number_token3] = ACTIONS(2136), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2136), - [sym__str_single_quotes] = ACTIONS(2136), - [sym__str_back_ticks] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2136), - [sym__entry_separator] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2138), - }, - [678] = { - [sym_comment] = STATE(678), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1765), - [aux_sym_cmd_identifier_token3] = ACTIONS(1765), - [aux_sym_cmd_identifier_token4] = ACTIONS(1765), - [aux_sym_cmd_identifier_token5] = ACTIONS(1765), - [aux_sym_cmd_identifier_token6] = ACTIONS(1765), - [aux_sym_cmd_identifier_token7] = ACTIONS(1765), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1765), - [aux_sym_cmd_identifier_token11] = ACTIONS(1765), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1765), - [aux_sym_cmd_identifier_token17] = ACTIONS(1765), - [aux_sym_cmd_identifier_token18] = ACTIONS(1765), - [aux_sym_cmd_identifier_token19] = ACTIONS(1765), - [aux_sym_cmd_identifier_token20] = ACTIONS(1765), - [aux_sym_cmd_identifier_token21] = ACTIONS(1765), - [aux_sym_cmd_identifier_token22] = ACTIONS(1765), - [aux_sym_cmd_identifier_token23] = ACTIONS(1765), - [aux_sym_cmd_identifier_token24] = ACTIONS(1765), - [aux_sym_cmd_identifier_token25] = ACTIONS(1765), - [aux_sym_cmd_identifier_token26] = ACTIONS(1765), - [aux_sym_cmd_identifier_token27] = ACTIONS(1765), - [aux_sym_cmd_identifier_token28] = ACTIONS(1765), - [aux_sym_cmd_identifier_token29] = ACTIONS(1765), - [aux_sym_cmd_identifier_token30] = ACTIONS(1765), - [aux_sym_cmd_identifier_token31] = ACTIONS(1765), - [aux_sym_cmd_identifier_token32] = ACTIONS(1765), - [aux_sym_cmd_identifier_token33] = ACTIONS(1765), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1765), - [aux_sym_cmd_identifier_token36] = ACTIONS(1765), - [aux_sym_cmd_identifier_token37] = ACTIONS(1765), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1765), - [aux_sym_cmd_identifier_token40] = ACTIONS(1765), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1765), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1765), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1765), - [aux_sym__val_number_decimal_token3] = ACTIONS(1765), - [aux_sym__val_number_decimal_token4] = ACTIONS(1765), - [aux_sym__val_number_token1] = ACTIONS(1765), - [aux_sym__val_number_token2] = ACTIONS(1765), - [aux_sym__val_number_token3] = ACTIONS(1765), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1765), - [sym__str_single_quotes] = ACTIONS(1765), - [sym__str_back_ticks] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1765), - [sym__entry_separator] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [679] = { - [sym_comment] = STATE(679), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1861), - [aux_sym_cmd_identifier_token3] = ACTIONS(1861), - [aux_sym_cmd_identifier_token4] = ACTIONS(1861), - [aux_sym_cmd_identifier_token5] = ACTIONS(1861), - [aux_sym_cmd_identifier_token6] = ACTIONS(1861), - [aux_sym_cmd_identifier_token7] = ACTIONS(1861), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1861), - [aux_sym_cmd_identifier_token11] = ACTIONS(1861), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1861), - [aux_sym_cmd_identifier_token17] = ACTIONS(1861), - [aux_sym_cmd_identifier_token18] = ACTIONS(1861), - [aux_sym_cmd_identifier_token19] = ACTIONS(1861), - [aux_sym_cmd_identifier_token20] = ACTIONS(1861), - [aux_sym_cmd_identifier_token21] = ACTIONS(1861), - [aux_sym_cmd_identifier_token22] = ACTIONS(1861), - [aux_sym_cmd_identifier_token23] = ACTIONS(1861), - [aux_sym_cmd_identifier_token24] = ACTIONS(1861), - [aux_sym_cmd_identifier_token25] = ACTIONS(1861), - [aux_sym_cmd_identifier_token26] = ACTIONS(1861), - [aux_sym_cmd_identifier_token27] = ACTIONS(1861), - [aux_sym_cmd_identifier_token28] = ACTIONS(1861), - [aux_sym_cmd_identifier_token29] = ACTIONS(1861), - [aux_sym_cmd_identifier_token30] = ACTIONS(1861), - [aux_sym_cmd_identifier_token31] = ACTIONS(1861), - [aux_sym_cmd_identifier_token32] = ACTIONS(1861), - [aux_sym_cmd_identifier_token33] = ACTIONS(1861), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1861), - [aux_sym_cmd_identifier_token36] = ACTIONS(1861), - [aux_sym_cmd_identifier_token37] = ACTIONS(1861), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1861), - [aux_sym_cmd_identifier_token40] = ACTIONS(1861), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1861), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1861), - [aux_sym__val_number_decimal_token3] = ACTIONS(1861), - [aux_sym__val_number_decimal_token4] = ACTIONS(1861), - [aux_sym__val_number_token1] = ACTIONS(1861), - [aux_sym__val_number_token2] = ACTIONS(1861), - [aux_sym__val_number_token3] = ACTIONS(1861), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1861), - [sym__str_single_quotes] = ACTIONS(1861), - [sym__str_back_ticks] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), - [sym__entry_separator] = ACTIONS(1863), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [680] = { - [sym_comment] = STATE(680), - [anon_sym_export] = ACTIONS(2281), - [anon_sym_alias] = ACTIONS(2281), - [anon_sym_let] = ACTIONS(2281), - [anon_sym_let_DASHenv] = ACTIONS(2281), - [anon_sym_mut] = ACTIONS(2281), - [anon_sym_const] = ACTIONS(2281), - [aux_sym_cmd_identifier_token1] = ACTIONS(2281), - [aux_sym_cmd_identifier_token2] = ACTIONS(2283), - [aux_sym_cmd_identifier_token3] = ACTIONS(2283), - [aux_sym_cmd_identifier_token4] = ACTIONS(2283), - [aux_sym_cmd_identifier_token5] = ACTIONS(2283), - [aux_sym_cmd_identifier_token6] = ACTIONS(2283), - [aux_sym_cmd_identifier_token7] = ACTIONS(2283), - [aux_sym_cmd_identifier_token8] = ACTIONS(2281), - [aux_sym_cmd_identifier_token9] = ACTIONS(2281), - [aux_sym_cmd_identifier_token10] = ACTIONS(2283), - [aux_sym_cmd_identifier_token11] = ACTIONS(2283), - [aux_sym_cmd_identifier_token12] = ACTIONS(2281), - [aux_sym_cmd_identifier_token13] = ACTIONS(2281), - [aux_sym_cmd_identifier_token14] = ACTIONS(2281), - [aux_sym_cmd_identifier_token15] = ACTIONS(2281), - [aux_sym_cmd_identifier_token16] = ACTIONS(2283), - [aux_sym_cmd_identifier_token17] = ACTIONS(2283), - [aux_sym_cmd_identifier_token18] = ACTIONS(2283), - [aux_sym_cmd_identifier_token19] = ACTIONS(2283), - [aux_sym_cmd_identifier_token20] = ACTIONS(2283), - [aux_sym_cmd_identifier_token21] = ACTIONS(2283), - [aux_sym_cmd_identifier_token22] = ACTIONS(2283), - [aux_sym_cmd_identifier_token23] = ACTIONS(2283), - [aux_sym_cmd_identifier_token24] = ACTIONS(2283), - [aux_sym_cmd_identifier_token25] = ACTIONS(2283), - [aux_sym_cmd_identifier_token26] = ACTIONS(2283), - [aux_sym_cmd_identifier_token27] = ACTIONS(2283), - [aux_sym_cmd_identifier_token28] = ACTIONS(2283), - [aux_sym_cmd_identifier_token29] = ACTIONS(2283), - [aux_sym_cmd_identifier_token30] = ACTIONS(2283), - [aux_sym_cmd_identifier_token31] = ACTIONS(2283), - [aux_sym_cmd_identifier_token32] = ACTIONS(2283), - [aux_sym_cmd_identifier_token33] = ACTIONS(2283), - [aux_sym_cmd_identifier_token34] = ACTIONS(2281), - [aux_sym_cmd_identifier_token35] = ACTIONS(2283), - [aux_sym_cmd_identifier_token36] = ACTIONS(2283), - [aux_sym_cmd_identifier_token37] = ACTIONS(2283), - [aux_sym_cmd_identifier_token38] = ACTIONS(2281), - [aux_sym_cmd_identifier_token39] = ACTIONS(2283), - [aux_sym_cmd_identifier_token40] = ACTIONS(2283), - [anon_sym_def] = ACTIONS(2281), - [anon_sym_export_DASHenv] = ACTIONS(2281), - [anon_sym_extern] = ACTIONS(2281), - [anon_sym_module] = ACTIONS(2281), - [anon_sym_use] = ACTIONS(2281), - [anon_sym_LPAREN] = ACTIONS(2281), - [anon_sym_DOLLAR] = ACTIONS(2283), - [anon_sym_error] = ACTIONS(2281), - [anon_sym_DASH2] = ACTIONS(2281), - [anon_sym_break] = ACTIONS(2281), - [anon_sym_continue] = ACTIONS(2281), - [anon_sym_for] = ACTIONS(2281), - [anon_sym_in2] = ACTIONS(2281), - [anon_sym_loop] = ACTIONS(2281), - [anon_sym_make] = ACTIONS(2281), - [anon_sym_while] = ACTIONS(2281), - [anon_sym_do] = ACTIONS(2281), - [anon_sym_if] = ACTIONS(2281), - [anon_sym_else] = ACTIONS(2281), - [anon_sym_match] = ACTIONS(2281), - [anon_sym_RBRACE] = ACTIONS(2283), - [anon_sym_try] = ACTIONS(2281), - [anon_sym_catch] = ACTIONS(2281), - [anon_sym_return] = ACTIONS(2281), - [anon_sym_source] = ACTIONS(2281), - [anon_sym_source_DASHenv] = ACTIONS(2281), - [anon_sym_register] = ACTIONS(2281), - [anon_sym_hide] = ACTIONS(2281), - [anon_sym_hide_DASHenv] = ACTIONS(2281), - [anon_sym_overlay] = ACTIONS(2281), - [anon_sym_as] = ACTIONS(2281), - [anon_sym_LPAREN2] = ACTIONS(2283), - [anon_sym_PLUS2] = ACTIONS(2281), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2283), - [aux_sym__val_number_decimal_token1] = ACTIONS(2281), - [aux_sym__val_number_decimal_token2] = ACTIONS(2283), - [aux_sym__val_number_decimal_token3] = ACTIONS(2283), - [aux_sym__val_number_decimal_token4] = ACTIONS(2283), - [aux_sym__val_number_token1] = ACTIONS(2283), - [aux_sym__val_number_token2] = ACTIONS(2283), - [aux_sym__val_number_token3] = ACTIONS(2283), - [aux_sym__val_number_token4] = ACTIONS(2281), - [aux_sym__val_number_token5] = ACTIONS(2281), - [aux_sym__val_number_token6] = ACTIONS(2281), - [anon_sym_DQUOTE] = ACTIONS(2283), - [sym__str_single_quotes] = ACTIONS(2283), - [sym__str_back_ticks] = ACTIONS(2283), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2283), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2283), - }, - [681] = { - [sym_comment] = STATE(681), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2497), - [aux_sym_cmd_identifier_token3] = ACTIONS(2497), - [aux_sym_cmd_identifier_token4] = ACTIONS(2497), - [aux_sym_cmd_identifier_token5] = ACTIONS(2497), - [aux_sym_cmd_identifier_token6] = ACTIONS(2497), - [aux_sym_cmd_identifier_token7] = ACTIONS(2497), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2497), - [aux_sym_cmd_identifier_token11] = ACTIONS(2497), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2497), - [aux_sym_cmd_identifier_token17] = ACTIONS(2497), - [aux_sym_cmd_identifier_token18] = ACTIONS(2497), - [aux_sym_cmd_identifier_token19] = ACTIONS(2497), - [aux_sym_cmd_identifier_token20] = ACTIONS(2497), - [aux_sym_cmd_identifier_token21] = ACTIONS(2497), - [aux_sym_cmd_identifier_token22] = ACTIONS(2497), - [aux_sym_cmd_identifier_token23] = ACTIONS(2497), - [aux_sym_cmd_identifier_token24] = ACTIONS(2497), - [aux_sym_cmd_identifier_token25] = ACTIONS(2497), - [aux_sym_cmd_identifier_token26] = ACTIONS(2497), - [aux_sym_cmd_identifier_token27] = ACTIONS(2497), - [aux_sym_cmd_identifier_token28] = ACTIONS(2497), - [aux_sym_cmd_identifier_token29] = ACTIONS(2497), - [aux_sym_cmd_identifier_token30] = ACTIONS(2497), - [aux_sym_cmd_identifier_token31] = ACTIONS(2497), - [aux_sym_cmd_identifier_token32] = ACTIONS(2497), - [aux_sym_cmd_identifier_token33] = ACTIONS(2497), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2497), - [aux_sym_cmd_identifier_token36] = ACTIONS(2497), - [aux_sym_cmd_identifier_token37] = ACTIONS(2497), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2497), - [aux_sym_cmd_identifier_token40] = ACTIONS(2497), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2497), - [anon_sym_DOLLAR] = ACTIONS(2497), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in2] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2497), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2497), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2497), - [aux_sym__val_number_decimal_token3] = ACTIONS(2497), - [aux_sym__val_number_decimal_token4] = ACTIONS(2497), - [aux_sym__val_number_token1] = ACTIONS(2497), - [aux_sym__val_number_token2] = ACTIONS(2497), - [aux_sym__val_number_token3] = ACTIONS(2497), - [aux_sym__val_number_token4] = ACTIONS(2497), - [aux_sym__val_number_token5] = ACTIONS(2497), - [aux_sym__val_number_token6] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2497), - [sym__str_single_quotes] = ACTIONS(2497), - [sym__str_back_ticks] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2497), - [sym__entry_separator] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2499), - }, - [682] = { - [sym_comment] = STATE(682), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_alias] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_let_DASHenv] = ACTIONS(2140), - [anon_sym_mut] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [aux_sym_cmd_identifier_token1] = ACTIONS(2140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2140), - [aux_sym_cmd_identifier_token3] = ACTIONS(2140), - [aux_sym_cmd_identifier_token4] = ACTIONS(2140), - [aux_sym_cmd_identifier_token5] = ACTIONS(2140), - [aux_sym_cmd_identifier_token6] = ACTIONS(2140), - [aux_sym_cmd_identifier_token7] = ACTIONS(2140), - [aux_sym_cmd_identifier_token8] = ACTIONS(2140), - [aux_sym_cmd_identifier_token9] = ACTIONS(2140), - [aux_sym_cmd_identifier_token10] = ACTIONS(2140), - [aux_sym_cmd_identifier_token11] = ACTIONS(2140), - [aux_sym_cmd_identifier_token12] = ACTIONS(2140), - [aux_sym_cmd_identifier_token13] = ACTIONS(2140), - [aux_sym_cmd_identifier_token14] = ACTIONS(2140), - [aux_sym_cmd_identifier_token15] = ACTIONS(2140), - [aux_sym_cmd_identifier_token16] = ACTIONS(2140), - [aux_sym_cmd_identifier_token17] = ACTIONS(2140), - [aux_sym_cmd_identifier_token18] = ACTIONS(2140), - [aux_sym_cmd_identifier_token19] = ACTIONS(2140), - [aux_sym_cmd_identifier_token20] = ACTIONS(2140), - [aux_sym_cmd_identifier_token21] = ACTIONS(2140), - [aux_sym_cmd_identifier_token22] = ACTIONS(2140), - [aux_sym_cmd_identifier_token23] = ACTIONS(2140), - [aux_sym_cmd_identifier_token24] = ACTIONS(2140), - [aux_sym_cmd_identifier_token25] = ACTIONS(2140), - [aux_sym_cmd_identifier_token26] = ACTIONS(2140), - [aux_sym_cmd_identifier_token27] = ACTIONS(2140), - [aux_sym_cmd_identifier_token28] = ACTIONS(2140), - [aux_sym_cmd_identifier_token29] = ACTIONS(2140), - [aux_sym_cmd_identifier_token30] = ACTIONS(2140), - [aux_sym_cmd_identifier_token31] = ACTIONS(2140), - [aux_sym_cmd_identifier_token32] = ACTIONS(2140), - [aux_sym_cmd_identifier_token33] = ACTIONS(2140), - [aux_sym_cmd_identifier_token34] = ACTIONS(2140), - [aux_sym_cmd_identifier_token35] = ACTIONS(2140), - [aux_sym_cmd_identifier_token36] = ACTIONS(2140), - [aux_sym_cmd_identifier_token37] = ACTIONS(2140), - [aux_sym_cmd_identifier_token38] = ACTIONS(2140), - [aux_sym_cmd_identifier_token39] = ACTIONS(2140), - [aux_sym_cmd_identifier_token40] = ACTIONS(2140), - [anon_sym_def] = ACTIONS(2140), - [anon_sym_export_DASHenv] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2140), - [anon_sym_DOLLAR] = ACTIONS(2140), - [anon_sym_error] = ACTIONS(2140), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_in2] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_make] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2140), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_source] = ACTIONS(2140), - [anon_sym_source_DASHenv] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_hide] = ACTIONS(2140), - [anon_sym_hide_DASHenv] = ACTIONS(2140), - [anon_sym_overlay] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2140), - [aux_sym__val_number_decimal_token1] = ACTIONS(2140), - [aux_sym__val_number_decimal_token2] = ACTIONS(2140), - [aux_sym__val_number_decimal_token3] = ACTIONS(2140), - [aux_sym__val_number_decimal_token4] = ACTIONS(2140), - [aux_sym__val_number_token1] = ACTIONS(2140), - [aux_sym__val_number_token2] = ACTIONS(2140), - [aux_sym__val_number_token3] = ACTIONS(2140), - [aux_sym__val_number_token4] = ACTIONS(2140), - [aux_sym__val_number_token5] = ACTIONS(2140), - [aux_sym__val_number_token6] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2140), - [sym__str_single_quotes] = ACTIONS(2140), - [sym__str_back_ticks] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2140), - [sym__entry_separator] = ACTIONS(2142), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2142), - }, - [683] = { - [sym_comment] = STATE(683), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2025), - [aux_sym_cmd_identifier_token3] = ACTIONS(2025), - [aux_sym_cmd_identifier_token4] = ACTIONS(2025), - [aux_sym_cmd_identifier_token5] = ACTIONS(2025), - [aux_sym_cmd_identifier_token6] = ACTIONS(2025), - [aux_sym_cmd_identifier_token7] = ACTIONS(2025), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2025), - [aux_sym_cmd_identifier_token11] = ACTIONS(2025), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2025), - [aux_sym_cmd_identifier_token17] = ACTIONS(2025), - [aux_sym_cmd_identifier_token18] = ACTIONS(2025), - [aux_sym_cmd_identifier_token19] = ACTIONS(2025), - [aux_sym_cmd_identifier_token20] = ACTIONS(2025), - [aux_sym_cmd_identifier_token21] = ACTIONS(2025), - [aux_sym_cmd_identifier_token22] = ACTIONS(2025), - [aux_sym_cmd_identifier_token23] = ACTIONS(2025), - [aux_sym_cmd_identifier_token24] = ACTIONS(2025), - [aux_sym_cmd_identifier_token25] = ACTIONS(2025), - [aux_sym_cmd_identifier_token26] = ACTIONS(2025), - [aux_sym_cmd_identifier_token27] = ACTIONS(2025), - [aux_sym_cmd_identifier_token28] = ACTIONS(2025), - [aux_sym_cmd_identifier_token29] = ACTIONS(2025), - [aux_sym_cmd_identifier_token30] = ACTIONS(2025), - [aux_sym_cmd_identifier_token31] = ACTIONS(2025), - [aux_sym_cmd_identifier_token32] = ACTIONS(2025), - [aux_sym_cmd_identifier_token33] = ACTIONS(2025), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2025), - [aux_sym_cmd_identifier_token36] = ACTIONS(2025), - [aux_sym_cmd_identifier_token37] = ACTIONS(2025), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2025), - [aux_sym_cmd_identifier_token40] = ACTIONS(2025), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2025), - [anon_sym_DOLLAR] = ACTIONS(2025), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2025), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2025), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2025), - [aux_sym__val_number_decimal_token3] = ACTIONS(2025), - [aux_sym__val_number_decimal_token4] = ACTIONS(2025), - [aux_sym__val_number_token1] = ACTIONS(2025), - [aux_sym__val_number_token2] = ACTIONS(2025), - [aux_sym__val_number_token3] = ACTIONS(2025), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2025), - [sym__str_single_quotes] = ACTIONS(2025), - [sym__str_back_ticks] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2025), - [sym__entry_separator] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2027), - }, - [684] = { - [sym_comment] = STATE(684), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2501), - [aux_sym_cmd_identifier_token3] = ACTIONS(2501), - [aux_sym_cmd_identifier_token4] = ACTIONS(2501), - [aux_sym_cmd_identifier_token5] = ACTIONS(2501), - [aux_sym_cmd_identifier_token6] = ACTIONS(2501), - [aux_sym_cmd_identifier_token7] = ACTIONS(2501), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2501), - [aux_sym_cmd_identifier_token11] = ACTIONS(2501), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2501), - [aux_sym_cmd_identifier_token17] = ACTIONS(2501), - [aux_sym_cmd_identifier_token18] = ACTIONS(2501), - [aux_sym_cmd_identifier_token19] = ACTIONS(2501), - [aux_sym_cmd_identifier_token20] = ACTIONS(2501), - [aux_sym_cmd_identifier_token21] = ACTIONS(2501), - [aux_sym_cmd_identifier_token22] = ACTIONS(2501), - [aux_sym_cmd_identifier_token23] = ACTIONS(2501), - [aux_sym_cmd_identifier_token24] = ACTIONS(2501), - [aux_sym_cmd_identifier_token25] = ACTIONS(2501), - [aux_sym_cmd_identifier_token26] = ACTIONS(2501), - [aux_sym_cmd_identifier_token27] = ACTIONS(2501), - [aux_sym_cmd_identifier_token28] = ACTIONS(2501), - [aux_sym_cmd_identifier_token29] = ACTIONS(2501), - [aux_sym_cmd_identifier_token30] = ACTIONS(2501), - [aux_sym_cmd_identifier_token31] = ACTIONS(2501), - [aux_sym_cmd_identifier_token32] = ACTIONS(2501), - [aux_sym_cmd_identifier_token33] = ACTIONS(2501), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2501), - [aux_sym_cmd_identifier_token36] = ACTIONS(2501), - [aux_sym_cmd_identifier_token37] = ACTIONS(2501), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2501), - [aux_sym_cmd_identifier_token40] = ACTIONS(2501), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2501), - [anon_sym_DOLLAR] = ACTIONS(2501), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in2] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2501), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2501), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2501), - [aux_sym__val_number_decimal_token3] = ACTIONS(2501), - [aux_sym__val_number_decimal_token4] = ACTIONS(2501), - [aux_sym__val_number_token1] = ACTIONS(2501), - [aux_sym__val_number_token2] = ACTIONS(2501), - [aux_sym__val_number_token3] = ACTIONS(2501), - [aux_sym__val_number_token4] = ACTIONS(2501), - [aux_sym__val_number_token5] = ACTIONS(2501), - [aux_sym__val_number_token6] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2501), - [sym__str_single_quotes] = ACTIONS(2501), - [sym__str_back_ticks] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2501), - [sym__entry_separator] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2503), - }, - [685] = { - [sym_comment] = STATE(685), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2505), - [aux_sym_cmd_identifier_token3] = ACTIONS(2505), - [aux_sym_cmd_identifier_token4] = ACTIONS(2505), - [aux_sym_cmd_identifier_token5] = ACTIONS(2505), - [aux_sym_cmd_identifier_token6] = ACTIONS(2505), - [aux_sym_cmd_identifier_token7] = ACTIONS(2505), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2505), - [aux_sym_cmd_identifier_token11] = ACTIONS(2505), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2505), - [aux_sym_cmd_identifier_token17] = ACTIONS(2505), - [aux_sym_cmd_identifier_token18] = ACTIONS(2505), - [aux_sym_cmd_identifier_token19] = ACTIONS(2505), - [aux_sym_cmd_identifier_token20] = ACTIONS(2505), - [aux_sym_cmd_identifier_token21] = ACTIONS(2505), - [aux_sym_cmd_identifier_token22] = ACTIONS(2505), - [aux_sym_cmd_identifier_token23] = ACTIONS(2505), - [aux_sym_cmd_identifier_token24] = ACTIONS(2505), - [aux_sym_cmd_identifier_token25] = ACTIONS(2505), - [aux_sym_cmd_identifier_token26] = ACTIONS(2505), - [aux_sym_cmd_identifier_token27] = ACTIONS(2505), - [aux_sym_cmd_identifier_token28] = ACTIONS(2505), - [aux_sym_cmd_identifier_token29] = ACTIONS(2505), - [aux_sym_cmd_identifier_token30] = ACTIONS(2505), - [aux_sym_cmd_identifier_token31] = ACTIONS(2505), - [aux_sym_cmd_identifier_token32] = ACTIONS(2505), - [aux_sym_cmd_identifier_token33] = ACTIONS(2505), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2505), - [aux_sym_cmd_identifier_token36] = ACTIONS(2505), - [aux_sym_cmd_identifier_token37] = ACTIONS(2505), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2505), - [aux_sym_cmd_identifier_token40] = ACTIONS(2505), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2505), - [anon_sym_DOLLAR] = ACTIONS(2505), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in2] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2505), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2505), - [aux_sym__val_number_decimal_token3] = ACTIONS(2505), - [aux_sym__val_number_decimal_token4] = ACTIONS(2505), - [aux_sym__val_number_token1] = ACTIONS(2505), - [aux_sym__val_number_token2] = ACTIONS(2505), - [aux_sym__val_number_token3] = ACTIONS(2505), - [aux_sym__val_number_token4] = ACTIONS(2505), - [aux_sym__val_number_token5] = ACTIONS(2505), - [aux_sym__val_number_token6] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2505), - [sym__str_single_quotes] = ACTIONS(2505), - [sym__str_back_ticks] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2505), - [sym__entry_separator] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2507), - }, - [686] = { - [sym_comment] = STATE(686), - [anon_sym_export] = ACTIONS(2385), - [anon_sym_alias] = ACTIONS(2385), - [anon_sym_let] = ACTIONS(2385), - [anon_sym_let_DASHenv] = ACTIONS(2385), - [anon_sym_mut] = ACTIONS(2385), - [anon_sym_const] = ACTIONS(2385), - [aux_sym_cmd_identifier_token1] = ACTIONS(2385), - [aux_sym_cmd_identifier_token2] = ACTIONS(2387), - [aux_sym_cmd_identifier_token3] = ACTIONS(2387), - [aux_sym_cmd_identifier_token4] = ACTIONS(2387), - [aux_sym_cmd_identifier_token5] = ACTIONS(2387), - [aux_sym_cmd_identifier_token6] = ACTIONS(2387), - [aux_sym_cmd_identifier_token7] = ACTIONS(2387), - [aux_sym_cmd_identifier_token8] = ACTIONS(2385), - [aux_sym_cmd_identifier_token9] = ACTIONS(2385), - [aux_sym_cmd_identifier_token10] = ACTIONS(2387), - [aux_sym_cmd_identifier_token11] = ACTIONS(2387), - [aux_sym_cmd_identifier_token12] = ACTIONS(2385), - [aux_sym_cmd_identifier_token13] = ACTIONS(2385), - [aux_sym_cmd_identifier_token14] = ACTIONS(2385), - [aux_sym_cmd_identifier_token15] = ACTIONS(2385), - [aux_sym_cmd_identifier_token16] = ACTIONS(2387), - [aux_sym_cmd_identifier_token17] = ACTIONS(2387), - [aux_sym_cmd_identifier_token18] = ACTIONS(2387), - [aux_sym_cmd_identifier_token19] = ACTIONS(2387), - [aux_sym_cmd_identifier_token20] = ACTIONS(2387), - [aux_sym_cmd_identifier_token21] = ACTIONS(2387), - [aux_sym_cmd_identifier_token22] = ACTIONS(2387), - [aux_sym_cmd_identifier_token23] = ACTIONS(2387), - [aux_sym_cmd_identifier_token24] = ACTIONS(2387), - [aux_sym_cmd_identifier_token25] = ACTIONS(2387), - [aux_sym_cmd_identifier_token26] = ACTIONS(2387), - [aux_sym_cmd_identifier_token27] = ACTIONS(2387), - [aux_sym_cmd_identifier_token28] = ACTIONS(2387), - [aux_sym_cmd_identifier_token29] = ACTIONS(2387), - [aux_sym_cmd_identifier_token30] = ACTIONS(2387), - [aux_sym_cmd_identifier_token31] = ACTIONS(2387), - [aux_sym_cmd_identifier_token32] = ACTIONS(2387), - [aux_sym_cmd_identifier_token33] = ACTIONS(2387), - [aux_sym_cmd_identifier_token34] = ACTIONS(2385), - [aux_sym_cmd_identifier_token35] = ACTIONS(2387), - [aux_sym_cmd_identifier_token36] = ACTIONS(2387), - [aux_sym_cmd_identifier_token37] = ACTIONS(2387), - [aux_sym_cmd_identifier_token38] = ACTIONS(2385), - [aux_sym_cmd_identifier_token39] = ACTIONS(2387), - [aux_sym_cmd_identifier_token40] = ACTIONS(2387), - [anon_sym_def] = ACTIONS(2385), - [anon_sym_export_DASHenv] = ACTIONS(2385), - [anon_sym_extern] = ACTIONS(2385), - [anon_sym_module] = ACTIONS(2385), - [anon_sym_use] = ACTIONS(2385), - [anon_sym_LPAREN] = ACTIONS(2387), - [anon_sym_DOLLAR] = ACTIONS(2387), - [anon_sym_error] = ACTIONS(2385), - [anon_sym_DASH2] = ACTIONS(2385), - [anon_sym_break] = ACTIONS(2385), - [anon_sym_continue] = ACTIONS(2385), - [anon_sym_for] = ACTIONS(2385), - [anon_sym_in2] = ACTIONS(2385), - [anon_sym_loop] = ACTIONS(2385), - [anon_sym_make] = ACTIONS(2385), - [anon_sym_while] = ACTIONS(2385), - [anon_sym_do] = ACTIONS(2385), - [anon_sym_if] = ACTIONS(2385), - [anon_sym_else] = ACTIONS(2385), - [anon_sym_match] = ACTIONS(2385), - [anon_sym_RBRACE] = ACTIONS(2387), - [anon_sym_try] = ACTIONS(2385), - [anon_sym_catch] = ACTIONS(2385), - [anon_sym_return] = ACTIONS(2385), - [anon_sym_source] = ACTIONS(2385), - [anon_sym_source_DASHenv] = ACTIONS(2385), - [anon_sym_register] = ACTIONS(2385), - [anon_sym_hide] = ACTIONS(2385), - [anon_sym_hide_DASHenv] = ACTIONS(2385), - [anon_sym_overlay] = ACTIONS(2385), - [anon_sym_as] = ACTIONS(2385), - [anon_sym_PLUS2] = ACTIONS(2385), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2387), - [aux_sym__val_number_decimal_token1] = ACTIONS(2385), - [aux_sym__val_number_decimal_token2] = ACTIONS(2387), - [aux_sym__val_number_decimal_token3] = ACTIONS(2387), - [aux_sym__val_number_decimal_token4] = ACTIONS(2387), - [aux_sym__val_number_token1] = ACTIONS(2387), - [aux_sym__val_number_token2] = ACTIONS(2387), - [aux_sym__val_number_token3] = ACTIONS(2387), - [aux_sym__val_number_token4] = ACTIONS(2385), - [aux_sym__val_number_token5] = ACTIONS(2385), - [aux_sym__val_number_token6] = ACTIONS(2385), - [anon_sym_DQUOTE] = ACTIONS(2387), - [sym__str_single_quotes] = ACTIONS(2387), - [sym__str_back_ticks] = ACTIONS(2387), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2387), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2387), - }, - [687] = { - [sym_comment] = STATE(687), - [anon_sym_export] = ACTIONS(2345), - [anon_sym_alias] = ACTIONS(2345), - [anon_sym_let] = ACTIONS(2345), - [anon_sym_let_DASHenv] = ACTIONS(2345), - [anon_sym_mut] = ACTIONS(2345), - [anon_sym_const] = ACTIONS(2345), - [aux_sym_cmd_identifier_token1] = ACTIONS(2345), - [aux_sym_cmd_identifier_token2] = ACTIONS(2347), - [aux_sym_cmd_identifier_token3] = ACTIONS(2347), - [aux_sym_cmd_identifier_token4] = ACTIONS(2347), - [aux_sym_cmd_identifier_token5] = ACTIONS(2347), - [aux_sym_cmd_identifier_token6] = ACTIONS(2347), - [aux_sym_cmd_identifier_token7] = ACTIONS(2347), - [aux_sym_cmd_identifier_token8] = ACTIONS(2345), - [aux_sym_cmd_identifier_token9] = ACTIONS(2345), - [aux_sym_cmd_identifier_token10] = ACTIONS(2347), - [aux_sym_cmd_identifier_token11] = ACTIONS(2347), - [aux_sym_cmd_identifier_token12] = ACTIONS(2345), - [aux_sym_cmd_identifier_token13] = ACTIONS(2345), - [aux_sym_cmd_identifier_token14] = ACTIONS(2345), - [aux_sym_cmd_identifier_token15] = ACTIONS(2345), - [aux_sym_cmd_identifier_token16] = ACTIONS(2347), - [aux_sym_cmd_identifier_token17] = ACTIONS(2347), - [aux_sym_cmd_identifier_token18] = ACTIONS(2347), - [aux_sym_cmd_identifier_token19] = ACTIONS(2347), - [aux_sym_cmd_identifier_token20] = ACTIONS(2347), - [aux_sym_cmd_identifier_token21] = ACTIONS(2347), - [aux_sym_cmd_identifier_token22] = ACTIONS(2347), - [aux_sym_cmd_identifier_token23] = ACTIONS(2347), - [aux_sym_cmd_identifier_token24] = ACTIONS(2347), - [aux_sym_cmd_identifier_token25] = ACTIONS(2347), - [aux_sym_cmd_identifier_token26] = ACTIONS(2347), - [aux_sym_cmd_identifier_token27] = ACTIONS(2347), - [aux_sym_cmd_identifier_token28] = ACTIONS(2347), - [aux_sym_cmd_identifier_token29] = ACTIONS(2347), - [aux_sym_cmd_identifier_token30] = ACTIONS(2347), - [aux_sym_cmd_identifier_token31] = ACTIONS(2347), - [aux_sym_cmd_identifier_token32] = ACTIONS(2347), - [aux_sym_cmd_identifier_token33] = ACTIONS(2347), - [aux_sym_cmd_identifier_token34] = ACTIONS(2345), - [aux_sym_cmd_identifier_token35] = ACTIONS(2347), - [aux_sym_cmd_identifier_token36] = ACTIONS(2347), - [aux_sym_cmd_identifier_token37] = ACTIONS(2347), - [aux_sym_cmd_identifier_token38] = ACTIONS(2345), - [aux_sym_cmd_identifier_token39] = ACTIONS(2347), - [aux_sym_cmd_identifier_token40] = ACTIONS(2347), - [anon_sym_def] = ACTIONS(2345), - [anon_sym_export_DASHenv] = ACTIONS(2345), - [anon_sym_extern] = ACTIONS(2345), - [anon_sym_module] = ACTIONS(2345), - [anon_sym_use] = ACTIONS(2345), - [anon_sym_LPAREN] = ACTIONS(2347), - [anon_sym_DOLLAR] = ACTIONS(2347), - [anon_sym_error] = ACTIONS(2345), - [anon_sym_DASH2] = ACTIONS(2345), - [anon_sym_break] = ACTIONS(2345), - [anon_sym_continue] = ACTIONS(2345), - [anon_sym_for] = ACTIONS(2345), - [anon_sym_in2] = ACTIONS(2345), - [anon_sym_loop] = ACTIONS(2345), - [anon_sym_make] = ACTIONS(2345), - [anon_sym_while] = ACTIONS(2345), - [anon_sym_do] = ACTIONS(2345), - [anon_sym_if] = ACTIONS(2345), - [anon_sym_else] = ACTIONS(2345), - [anon_sym_match] = ACTIONS(2345), - [anon_sym_RBRACE] = ACTIONS(2347), - [anon_sym_try] = ACTIONS(2345), - [anon_sym_catch] = ACTIONS(2345), - [anon_sym_return] = ACTIONS(2345), - [anon_sym_source] = ACTIONS(2345), - [anon_sym_source_DASHenv] = ACTIONS(2345), - [anon_sym_register] = ACTIONS(2345), - [anon_sym_hide] = ACTIONS(2345), - [anon_sym_hide_DASHenv] = ACTIONS(2345), - [anon_sym_overlay] = ACTIONS(2345), - [anon_sym_as] = ACTIONS(2345), - [anon_sym_PLUS2] = ACTIONS(2345), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2347), - [aux_sym__val_number_decimal_token1] = ACTIONS(2345), - [aux_sym__val_number_decimal_token2] = ACTIONS(2347), - [aux_sym__val_number_decimal_token3] = ACTIONS(2347), - [aux_sym__val_number_decimal_token4] = ACTIONS(2347), - [aux_sym__val_number_token1] = ACTIONS(2347), - [aux_sym__val_number_token2] = ACTIONS(2347), - [aux_sym__val_number_token3] = ACTIONS(2347), - [aux_sym__val_number_token4] = ACTIONS(2345), - [aux_sym__val_number_token5] = ACTIONS(2345), - [aux_sym__val_number_token6] = ACTIONS(2345), - [anon_sym_DQUOTE] = ACTIONS(2347), - [sym__str_single_quotes] = ACTIONS(2347), - [sym__str_back_ticks] = ACTIONS(2347), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2347), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2347), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(972), + [sym__entry_separator] = ACTIONS(974), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(974), }, - [688] = { - [sym_comment] = STATE(688), - [anon_sym_export] = ACTIONS(2427), - [anon_sym_alias] = ACTIONS(2427), - [anon_sym_let] = ACTIONS(2427), - [anon_sym_let_DASHenv] = ACTIONS(2427), - [anon_sym_mut] = ACTIONS(2427), - [anon_sym_const] = ACTIONS(2427), - [aux_sym_cmd_identifier_token1] = ACTIONS(2427), + [641] = { + [sym_comment] = STATE(641), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), [aux_sym_cmd_identifier_token2] = ACTIONS(2429), [aux_sym_cmd_identifier_token3] = ACTIONS(2429), [aux_sym_cmd_identifier_token4] = ACTIONS(2429), [aux_sym_cmd_identifier_token5] = ACTIONS(2429), [aux_sym_cmd_identifier_token6] = ACTIONS(2429), [aux_sym_cmd_identifier_token7] = ACTIONS(2429), - [aux_sym_cmd_identifier_token8] = ACTIONS(2427), - [aux_sym_cmd_identifier_token9] = ACTIONS(2427), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), [aux_sym_cmd_identifier_token10] = ACTIONS(2429), [aux_sym_cmd_identifier_token11] = ACTIONS(2429), - [aux_sym_cmd_identifier_token12] = ACTIONS(2427), - [aux_sym_cmd_identifier_token13] = ACTIONS(2427), - [aux_sym_cmd_identifier_token14] = ACTIONS(2427), - [aux_sym_cmd_identifier_token15] = ACTIONS(2427), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), [aux_sym_cmd_identifier_token16] = ACTIONS(2429), [aux_sym_cmd_identifier_token17] = ACTIONS(2429), [aux_sym_cmd_identifier_token18] = ACTIONS(2429), @@ -153572,87 +149174,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2429), [aux_sym_cmd_identifier_token32] = ACTIONS(2429), [aux_sym_cmd_identifier_token33] = ACTIONS(2429), - [aux_sym_cmd_identifier_token34] = ACTIONS(2427), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), [aux_sym_cmd_identifier_token35] = ACTIONS(2429), [aux_sym_cmd_identifier_token36] = ACTIONS(2429), [aux_sym_cmd_identifier_token37] = ACTIONS(2429), - [aux_sym_cmd_identifier_token38] = ACTIONS(2427), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), [aux_sym_cmd_identifier_token39] = ACTIONS(2429), [aux_sym_cmd_identifier_token40] = ACTIONS(2429), - [anon_sym_def] = ACTIONS(2427), - [anon_sym_export_DASHenv] = ACTIONS(2427), - [anon_sym_extern] = ACTIONS(2427), - [anon_sym_module] = ACTIONS(2427), - [anon_sym_use] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), [anon_sym_LPAREN] = ACTIONS(2429), + [anon_sym_COMMA] = ACTIONS(2429), [anon_sym_DOLLAR] = ACTIONS(2429), - [anon_sym_error] = ACTIONS(2427), - [anon_sym_DASH2] = ACTIONS(2427), - [anon_sym_break] = ACTIONS(2427), - [anon_sym_continue] = ACTIONS(2427), - [anon_sym_for] = ACTIONS(2427), - [anon_sym_in2] = ACTIONS(2427), - [anon_sym_loop] = ACTIONS(2427), - [anon_sym_make] = ACTIONS(2427), - [anon_sym_while] = ACTIONS(2427), - [anon_sym_do] = ACTIONS(2427), - [anon_sym_if] = ACTIONS(2427), - [anon_sym_else] = ACTIONS(2427), - [anon_sym_match] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), [anon_sym_RBRACE] = ACTIONS(2429), - [anon_sym_try] = ACTIONS(2427), - [anon_sym_catch] = ACTIONS(2427), - [anon_sym_return] = ACTIONS(2427), - [anon_sym_source] = ACTIONS(2427), - [anon_sym_source_DASHenv] = ACTIONS(2427), - [anon_sym_register] = ACTIONS(2427), - [anon_sym_hide] = ACTIONS(2427), - [anon_sym_hide_DASHenv] = ACTIONS(2427), - [anon_sym_overlay] = ACTIONS(2427), - [anon_sym_as] = ACTIONS(2427), - [anon_sym_PLUS2] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2429), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2429), - [aux_sym__val_number_decimal_token1] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), [aux_sym__val_number_decimal_token2] = ACTIONS(2429), [aux_sym__val_number_decimal_token3] = ACTIONS(2429), [aux_sym__val_number_decimal_token4] = ACTIONS(2429), [aux_sym__val_number_token1] = ACTIONS(2429), [aux_sym__val_number_token2] = ACTIONS(2429), [aux_sym__val_number_token3] = ACTIONS(2429), - [aux_sym__val_number_token4] = ACTIONS(2427), - [aux_sym__val_number_token5] = ACTIONS(2427), - [aux_sym__val_number_token6] = ACTIONS(2427), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), [anon_sym_DQUOTE] = ACTIONS(2429), [sym__str_single_quotes] = ACTIONS(2429), [sym__str_back_ticks] = ACTIONS(2429), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2429), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2429), + [sym__entry_separator] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2431), }, - [689] = { - [sym_comment] = STATE(689), - [anon_sym_export] = ACTIONS(2431), - [anon_sym_alias] = ACTIONS(2431), - [anon_sym_let] = ACTIONS(2431), - [anon_sym_let_DASHenv] = ACTIONS(2431), - [anon_sym_mut] = ACTIONS(2431), - [anon_sym_const] = ACTIONS(2431), - [aux_sym_cmd_identifier_token1] = ACTIONS(2431), + [642] = { + [sym_comment] = STATE(642), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), [aux_sym_cmd_identifier_token2] = ACTIONS(2433), [aux_sym_cmd_identifier_token3] = ACTIONS(2433), [aux_sym_cmd_identifier_token4] = ACTIONS(2433), [aux_sym_cmd_identifier_token5] = ACTIONS(2433), [aux_sym_cmd_identifier_token6] = ACTIONS(2433), [aux_sym_cmd_identifier_token7] = ACTIONS(2433), - [aux_sym_cmd_identifier_token8] = ACTIONS(2431), - [aux_sym_cmd_identifier_token9] = ACTIONS(2431), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), [aux_sym_cmd_identifier_token10] = ACTIONS(2433), [aux_sym_cmd_identifier_token11] = ACTIONS(2433), - [aux_sym_cmd_identifier_token12] = ACTIONS(2431), - [aux_sym_cmd_identifier_token13] = ACTIONS(2431), - [aux_sym_cmd_identifier_token14] = ACTIONS(2431), - [aux_sym_cmd_identifier_token15] = ACTIONS(2431), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), [aux_sym_cmd_identifier_token16] = ACTIONS(2433), [aux_sym_cmd_identifier_token17] = ACTIONS(2433), [aux_sym_cmd_identifier_token18] = ACTIONS(2433), @@ -153671,87 +149275,190 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2433), [aux_sym_cmd_identifier_token32] = ACTIONS(2433), [aux_sym_cmd_identifier_token33] = ACTIONS(2433), - [aux_sym_cmd_identifier_token34] = ACTIONS(2431), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), [aux_sym_cmd_identifier_token35] = ACTIONS(2433), [aux_sym_cmd_identifier_token36] = ACTIONS(2433), [aux_sym_cmd_identifier_token37] = ACTIONS(2433), - [aux_sym_cmd_identifier_token38] = ACTIONS(2431), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), [aux_sym_cmd_identifier_token39] = ACTIONS(2433), [aux_sym_cmd_identifier_token40] = ACTIONS(2433), - [anon_sym_def] = ACTIONS(2431), - [anon_sym_export_DASHenv] = ACTIONS(2431), - [anon_sym_extern] = ACTIONS(2431), - [anon_sym_module] = ACTIONS(2431), - [anon_sym_use] = ACTIONS(2431), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), [anon_sym_LPAREN] = ACTIONS(2433), + [anon_sym_COMMA] = ACTIONS(2433), [anon_sym_DOLLAR] = ACTIONS(2433), - [anon_sym_error] = ACTIONS(2431), - [anon_sym_DASH2] = ACTIONS(2431), - [anon_sym_break] = ACTIONS(2431), - [anon_sym_continue] = ACTIONS(2431), - [anon_sym_for] = ACTIONS(2431), - [anon_sym_in2] = ACTIONS(2431), - [anon_sym_loop] = ACTIONS(2431), - [anon_sym_make] = ACTIONS(2431), - [anon_sym_while] = ACTIONS(2431), - [anon_sym_do] = ACTIONS(2431), - [anon_sym_if] = ACTIONS(2431), - [anon_sym_else] = ACTIONS(2431), - [anon_sym_match] = ACTIONS(2431), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), [anon_sym_RBRACE] = ACTIONS(2433), - [anon_sym_try] = ACTIONS(2431), - [anon_sym_catch] = ACTIONS(2431), - [anon_sym_return] = ACTIONS(2431), - [anon_sym_source] = ACTIONS(2431), - [anon_sym_source_DASHenv] = ACTIONS(2431), - [anon_sym_register] = ACTIONS(2431), - [anon_sym_hide] = ACTIONS(2431), - [anon_sym_hide_DASHenv] = ACTIONS(2431), - [anon_sym_overlay] = ACTIONS(2431), - [anon_sym_as] = ACTIONS(2431), - [anon_sym_PLUS2] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2433), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2433), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2433), - [aux_sym__val_number_decimal_token1] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), [aux_sym__val_number_decimal_token2] = ACTIONS(2433), [aux_sym__val_number_decimal_token3] = ACTIONS(2433), [aux_sym__val_number_decimal_token4] = ACTIONS(2433), [aux_sym__val_number_token1] = ACTIONS(2433), [aux_sym__val_number_token2] = ACTIONS(2433), [aux_sym__val_number_token3] = ACTIONS(2433), - [aux_sym__val_number_token4] = ACTIONS(2431), - [aux_sym__val_number_token5] = ACTIONS(2431), - [aux_sym__val_number_token6] = ACTIONS(2431), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), [anon_sym_DQUOTE] = ACTIONS(2433), [sym__str_single_quotes] = ACTIONS(2433), [sym__str_back_ticks] = ACTIONS(2433), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2433), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2433), + [sym__entry_separator] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2435), }, - [690] = { - [sym_comment] = STATE(690), - [anon_sym_export] = ACTIONS(2435), - [anon_sym_alias] = ACTIONS(2435), - [anon_sym_let] = ACTIONS(2435), - [anon_sym_let_DASHenv] = ACTIONS(2435), - [anon_sym_mut] = ACTIONS(2435), - [anon_sym_const] = ACTIONS(2435), - [aux_sym_cmd_identifier_token1] = ACTIONS(2435), + [643] = { + [sym_comment] = STATE(643), + [anon_sym_export] = ACTIONS(976), + [anon_sym_alias] = ACTIONS(976), + [anon_sym_let] = ACTIONS(976), + [anon_sym_let_DASHenv] = ACTIONS(976), + [anon_sym_mut] = ACTIONS(976), + [anon_sym_const] = ACTIONS(976), + [aux_sym_cmd_identifier_token1] = ACTIONS(976), + [aux_sym_cmd_identifier_token2] = ACTIONS(976), + [aux_sym_cmd_identifier_token3] = ACTIONS(976), + [aux_sym_cmd_identifier_token4] = ACTIONS(976), + [aux_sym_cmd_identifier_token5] = ACTIONS(976), + [aux_sym_cmd_identifier_token6] = ACTIONS(976), + [aux_sym_cmd_identifier_token7] = ACTIONS(976), + [aux_sym_cmd_identifier_token8] = ACTIONS(976), + [aux_sym_cmd_identifier_token9] = ACTIONS(976), + [aux_sym_cmd_identifier_token10] = ACTIONS(976), + [aux_sym_cmd_identifier_token11] = ACTIONS(976), + [aux_sym_cmd_identifier_token12] = ACTIONS(976), + [aux_sym_cmd_identifier_token13] = ACTIONS(976), + [aux_sym_cmd_identifier_token14] = ACTIONS(976), + [aux_sym_cmd_identifier_token15] = ACTIONS(976), + [aux_sym_cmd_identifier_token16] = ACTIONS(976), + [aux_sym_cmd_identifier_token17] = ACTIONS(976), + [aux_sym_cmd_identifier_token18] = ACTIONS(976), + [aux_sym_cmd_identifier_token19] = ACTIONS(976), + [aux_sym_cmd_identifier_token20] = ACTIONS(976), + [aux_sym_cmd_identifier_token21] = ACTIONS(976), + [aux_sym_cmd_identifier_token22] = ACTIONS(976), + [aux_sym_cmd_identifier_token23] = ACTIONS(976), + [aux_sym_cmd_identifier_token24] = ACTIONS(976), + [aux_sym_cmd_identifier_token25] = ACTIONS(976), + [aux_sym_cmd_identifier_token26] = ACTIONS(976), + [aux_sym_cmd_identifier_token27] = ACTIONS(976), + [aux_sym_cmd_identifier_token28] = ACTIONS(976), + [aux_sym_cmd_identifier_token29] = ACTIONS(976), + [aux_sym_cmd_identifier_token30] = ACTIONS(976), + [aux_sym_cmd_identifier_token31] = ACTIONS(976), + [aux_sym_cmd_identifier_token32] = ACTIONS(976), + [aux_sym_cmd_identifier_token33] = ACTIONS(976), + [aux_sym_cmd_identifier_token34] = ACTIONS(976), + [aux_sym_cmd_identifier_token35] = ACTIONS(976), + [aux_sym_cmd_identifier_token36] = ACTIONS(976), + [aux_sym_cmd_identifier_token37] = ACTIONS(976), + [aux_sym_cmd_identifier_token38] = ACTIONS(976), + [aux_sym_cmd_identifier_token39] = ACTIONS(976), + [aux_sym_cmd_identifier_token40] = ACTIONS(976), + [anon_sym_def] = ACTIONS(976), + [anon_sym_export_DASHenv] = ACTIONS(976), + [anon_sym_extern] = ACTIONS(976), + [anon_sym_module] = ACTIONS(976), + [anon_sym_use] = ACTIONS(976), + [anon_sym_LPAREN] = ACTIONS(976), + [anon_sym_COMMA] = ACTIONS(976), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_error] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_break] = ACTIONS(976), + [anon_sym_continue] = ACTIONS(976), + [anon_sym_for] = ACTIONS(976), + [anon_sym_in2] = ACTIONS(976), + [anon_sym_loop] = ACTIONS(976), + [anon_sym_make] = ACTIONS(976), + [anon_sym_while] = ACTIONS(976), + [anon_sym_do] = ACTIONS(976), + [anon_sym_if] = ACTIONS(976), + [anon_sym_else] = ACTIONS(976), + [anon_sym_match] = ACTIONS(976), + [anon_sym_RBRACE] = ACTIONS(976), + [anon_sym_try] = ACTIONS(976), + [anon_sym_catch] = ACTIONS(976), + [anon_sym_return] = ACTIONS(976), + [anon_sym_source] = ACTIONS(976), + [anon_sym_source_DASHenv] = ACTIONS(976), + [anon_sym_register] = ACTIONS(976), + [anon_sym_hide] = ACTIONS(976), + [anon_sym_hide_DASHenv] = ACTIONS(976), + [anon_sym_overlay] = ACTIONS(976), + [anon_sym_as] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(976), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(976), + [aux_sym__val_number_decimal_token3] = ACTIONS(976), + [aux_sym__val_number_decimal_token4] = ACTIONS(976), + [aux_sym__val_number_token1] = ACTIONS(976), + [aux_sym__val_number_token2] = ACTIONS(976), + [aux_sym__val_number_token3] = ACTIONS(976), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(976), + [sym__str_single_quotes] = ACTIONS(976), + [sym__str_back_ticks] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(976), + [sym__entry_separator] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(978), + }, + [644] = { + [sym_comment] = STATE(644), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), [aux_sym_cmd_identifier_token2] = ACTIONS(2437), [aux_sym_cmd_identifier_token3] = ACTIONS(2437), [aux_sym_cmd_identifier_token4] = ACTIONS(2437), [aux_sym_cmd_identifier_token5] = ACTIONS(2437), [aux_sym_cmd_identifier_token6] = ACTIONS(2437), [aux_sym_cmd_identifier_token7] = ACTIONS(2437), - [aux_sym_cmd_identifier_token8] = ACTIONS(2435), - [aux_sym_cmd_identifier_token9] = ACTIONS(2435), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), [aux_sym_cmd_identifier_token10] = ACTIONS(2437), [aux_sym_cmd_identifier_token11] = ACTIONS(2437), - [aux_sym_cmd_identifier_token12] = ACTIONS(2435), - [aux_sym_cmd_identifier_token13] = ACTIONS(2435), - [aux_sym_cmd_identifier_token14] = ACTIONS(2435), - [aux_sym_cmd_identifier_token15] = ACTIONS(2435), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), [aux_sym_cmd_identifier_token16] = ACTIONS(2437), [aux_sym_cmd_identifier_token17] = ACTIONS(2437), [aux_sym_cmd_identifier_token18] = ACTIONS(2437), @@ -153770,186 +149477,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2437), [aux_sym_cmd_identifier_token32] = ACTIONS(2437), [aux_sym_cmd_identifier_token33] = ACTIONS(2437), - [aux_sym_cmd_identifier_token34] = ACTIONS(2435), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), [aux_sym_cmd_identifier_token35] = ACTIONS(2437), [aux_sym_cmd_identifier_token36] = ACTIONS(2437), [aux_sym_cmd_identifier_token37] = ACTIONS(2437), - [aux_sym_cmd_identifier_token38] = ACTIONS(2435), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), [aux_sym_cmd_identifier_token39] = ACTIONS(2437), [aux_sym_cmd_identifier_token40] = ACTIONS(2437), - [anon_sym_def] = ACTIONS(2435), - [anon_sym_export_DASHenv] = ACTIONS(2435), - [anon_sym_extern] = ACTIONS(2435), - [anon_sym_module] = ACTIONS(2435), - [anon_sym_use] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), [anon_sym_LPAREN] = ACTIONS(2437), + [anon_sym_COMMA] = ACTIONS(2437), [anon_sym_DOLLAR] = ACTIONS(2437), - [anon_sym_error] = ACTIONS(2435), - [anon_sym_DASH2] = ACTIONS(2435), - [anon_sym_break] = ACTIONS(2435), - [anon_sym_continue] = ACTIONS(2435), - [anon_sym_for] = ACTIONS(2435), - [anon_sym_in2] = ACTIONS(2435), - [anon_sym_loop] = ACTIONS(2435), - [anon_sym_make] = ACTIONS(2435), - [anon_sym_while] = ACTIONS(2435), - [anon_sym_do] = ACTIONS(2435), - [anon_sym_if] = ACTIONS(2435), - [anon_sym_else] = ACTIONS(2435), - [anon_sym_match] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), [anon_sym_RBRACE] = ACTIONS(2437), - [anon_sym_try] = ACTIONS(2435), - [anon_sym_catch] = ACTIONS(2435), - [anon_sym_return] = ACTIONS(2435), - [anon_sym_source] = ACTIONS(2435), - [anon_sym_source_DASHenv] = ACTIONS(2435), - [anon_sym_register] = ACTIONS(2435), - [anon_sym_hide] = ACTIONS(2435), - [anon_sym_hide_DASHenv] = ACTIONS(2435), - [anon_sym_overlay] = ACTIONS(2435), - [anon_sym_as] = ACTIONS(2435), - [anon_sym_PLUS2] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2437), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2437), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2437), - [aux_sym__val_number_decimal_token1] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), [aux_sym__val_number_decimal_token2] = ACTIONS(2437), [aux_sym__val_number_decimal_token3] = ACTIONS(2437), [aux_sym__val_number_decimal_token4] = ACTIONS(2437), [aux_sym__val_number_token1] = ACTIONS(2437), [aux_sym__val_number_token2] = ACTIONS(2437), [aux_sym__val_number_token3] = ACTIONS(2437), - [aux_sym__val_number_token4] = ACTIONS(2435), - [aux_sym__val_number_token5] = ACTIONS(2435), - [aux_sym__val_number_token6] = ACTIONS(2435), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), [anon_sym_DQUOTE] = ACTIONS(2437), [sym__str_single_quotes] = ACTIONS(2437), [sym__str_back_ticks] = ACTIONS(2437), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2437), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2437), - }, - [691] = { - [sym_comment] = STATE(691), - [anon_sym_export] = ACTIONS(2349), - [anon_sym_alias] = ACTIONS(2349), - [anon_sym_let] = ACTIONS(2349), - [anon_sym_let_DASHenv] = ACTIONS(2349), - [anon_sym_mut] = ACTIONS(2349), - [anon_sym_const] = ACTIONS(2349), - [aux_sym_cmd_identifier_token1] = ACTIONS(2349), - [aux_sym_cmd_identifier_token2] = ACTIONS(2351), - [aux_sym_cmd_identifier_token3] = ACTIONS(2351), - [aux_sym_cmd_identifier_token4] = ACTIONS(2351), - [aux_sym_cmd_identifier_token5] = ACTIONS(2351), - [aux_sym_cmd_identifier_token6] = ACTIONS(2351), - [aux_sym_cmd_identifier_token7] = ACTIONS(2351), - [aux_sym_cmd_identifier_token8] = ACTIONS(2349), - [aux_sym_cmd_identifier_token9] = ACTIONS(2349), - [aux_sym_cmd_identifier_token10] = ACTIONS(2351), - [aux_sym_cmd_identifier_token11] = ACTIONS(2351), - [aux_sym_cmd_identifier_token12] = ACTIONS(2349), - [aux_sym_cmd_identifier_token13] = ACTIONS(2349), - [aux_sym_cmd_identifier_token14] = ACTIONS(2349), - [aux_sym_cmd_identifier_token15] = ACTIONS(2349), - [aux_sym_cmd_identifier_token16] = ACTIONS(2351), - [aux_sym_cmd_identifier_token17] = ACTIONS(2351), - [aux_sym_cmd_identifier_token18] = ACTIONS(2351), - [aux_sym_cmd_identifier_token19] = ACTIONS(2351), - [aux_sym_cmd_identifier_token20] = ACTIONS(2351), - [aux_sym_cmd_identifier_token21] = ACTIONS(2351), - [aux_sym_cmd_identifier_token22] = ACTIONS(2351), - [aux_sym_cmd_identifier_token23] = ACTIONS(2351), - [aux_sym_cmd_identifier_token24] = ACTIONS(2351), - [aux_sym_cmd_identifier_token25] = ACTIONS(2351), - [aux_sym_cmd_identifier_token26] = ACTIONS(2351), - [aux_sym_cmd_identifier_token27] = ACTIONS(2351), - [aux_sym_cmd_identifier_token28] = ACTIONS(2351), - [aux_sym_cmd_identifier_token29] = ACTIONS(2351), - [aux_sym_cmd_identifier_token30] = ACTIONS(2351), - [aux_sym_cmd_identifier_token31] = ACTIONS(2351), - [aux_sym_cmd_identifier_token32] = ACTIONS(2351), - [aux_sym_cmd_identifier_token33] = ACTIONS(2351), - [aux_sym_cmd_identifier_token34] = ACTIONS(2349), - [aux_sym_cmd_identifier_token35] = ACTIONS(2351), - [aux_sym_cmd_identifier_token36] = ACTIONS(2351), - [aux_sym_cmd_identifier_token37] = ACTIONS(2351), - [aux_sym_cmd_identifier_token38] = ACTIONS(2349), - [aux_sym_cmd_identifier_token39] = ACTIONS(2351), - [aux_sym_cmd_identifier_token40] = ACTIONS(2351), - [anon_sym_def] = ACTIONS(2349), - [anon_sym_export_DASHenv] = ACTIONS(2349), - [anon_sym_extern] = ACTIONS(2349), - [anon_sym_module] = ACTIONS(2349), - [anon_sym_use] = ACTIONS(2349), - [anon_sym_LPAREN] = ACTIONS(2351), - [anon_sym_DOLLAR] = ACTIONS(2351), - [anon_sym_error] = ACTIONS(2349), - [anon_sym_DASH2] = ACTIONS(2349), - [anon_sym_break] = ACTIONS(2349), - [anon_sym_continue] = ACTIONS(2349), - [anon_sym_for] = ACTIONS(2349), - [anon_sym_in2] = ACTIONS(2349), - [anon_sym_loop] = ACTIONS(2349), - [anon_sym_make] = ACTIONS(2349), - [anon_sym_while] = ACTIONS(2349), - [anon_sym_do] = ACTIONS(2349), - [anon_sym_if] = ACTIONS(2349), - [anon_sym_else] = ACTIONS(2349), - [anon_sym_match] = ACTIONS(2349), - [anon_sym_RBRACE] = ACTIONS(2351), - [anon_sym_try] = ACTIONS(2349), - [anon_sym_catch] = ACTIONS(2349), - [anon_sym_return] = ACTIONS(2349), - [anon_sym_source] = ACTIONS(2349), - [anon_sym_source_DASHenv] = ACTIONS(2349), - [anon_sym_register] = ACTIONS(2349), - [anon_sym_hide] = ACTIONS(2349), - [anon_sym_hide_DASHenv] = ACTIONS(2349), - [anon_sym_overlay] = ACTIONS(2349), - [anon_sym_as] = ACTIONS(2349), - [anon_sym_PLUS2] = ACTIONS(2349), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2351), - [aux_sym__val_number_decimal_token1] = ACTIONS(2349), - [aux_sym__val_number_decimal_token2] = ACTIONS(2351), - [aux_sym__val_number_decimal_token3] = ACTIONS(2351), - [aux_sym__val_number_decimal_token4] = ACTIONS(2351), - [aux_sym__val_number_token1] = ACTIONS(2351), - [aux_sym__val_number_token2] = ACTIONS(2351), - [aux_sym__val_number_token3] = ACTIONS(2351), - [aux_sym__val_number_token4] = ACTIONS(2349), - [aux_sym__val_number_token5] = ACTIONS(2349), - [aux_sym__val_number_token6] = ACTIONS(2349), - [anon_sym_DQUOTE] = ACTIONS(2351), - [sym__str_single_quotes] = ACTIONS(2351), - [sym__str_back_ticks] = ACTIONS(2351), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2351), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2351), + [sym__entry_separator] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2439), }, - [692] = { - [sym_comment] = STATE(692), - [anon_sym_export] = ACTIONS(2439), - [anon_sym_alias] = ACTIONS(2439), - [anon_sym_let] = ACTIONS(2439), - [anon_sym_let_DASHenv] = ACTIONS(2439), - [anon_sym_mut] = ACTIONS(2439), - [anon_sym_const] = ACTIONS(2439), - [aux_sym_cmd_identifier_token1] = ACTIONS(2439), + [645] = { + [sym_comment] = STATE(645), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), [aux_sym_cmd_identifier_token2] = ACTIONS(2441), [aux_sym_cmd_identifier_token3] = ACTIONS(2441), [aux_sym_cmd_identifier_token4] = ACTIONS(2441), [aux_sym_cmd_identifier_token5] = ACTIONS(2441), [aux_sym_cmd_identifier_token6] = ACTIONS(2441), [aux_sym_cmd_identifier_token7] = ACTIONS(2441), - [aux_sym_cmd_identifier_token8] = ACTIONS(2439), - [aux_sym_cmd_identifier_token9] = ACTIONS(2439), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), [aux_sym_cmd_identifier_token10] = ACTIONS(2441), [aux_sym_cmd_identifier_token11] = ACTIONS(2441), - [aux_sym_cmd_identifier_token12] = ACTIONS(2439), - [aux_sym_cmd_identifier_token13] = ACTIONS(2439), - [aux_sym_cmd_identifier_token14] = ACTIONS(2439), - [aux_sym_cmd_identifier_token15] = ACTIONS(2439), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), [aux_sym_cmd_identifier_token16] = ACTIONS(2441), [aux_sym_cmd_identifier_token17] = ACTIONS(2441), [aux_sym_cmd_identifier_token18] = ACTIONS(2441), @@ -153968,87 +149578,392 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2441), [aux_sym_cmd_identifier_token32] = ACTIONS(2441), [aux_sym_cmd_identifier_token33] = ACTIONS(2441), - [aux_sym_cmd_identifier_token34] = ACTIONS(2439), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), [aux_sym_cmd_identifier_token35] = ACTIONS(2441), [aux_sym_cmd_identifier_token36] = ACTIONS(2441), [aux_sym_cmd_identifier_token37] = ACTIONS(2441), - [aux_sym_cmd_identifier_token38] = ACTIONS(2439), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), [aux_sym_cmd_identifier_token39] = ACTIONS(2441), [aux_sym_cmd_identifier_token40] = ACTIONS(2441), - [anon_sym_def] = ACTIONS(2439), - [anon_sym_export_DASHenv] = ACTIONS(2439), - [anon_sym_extern] = ACTIONS(2439), - [anon_sym_module] = ACTIONS(2439), - [anon_sym_use] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), [anon_sym_LPAREN] = ACTIONS(2441), + [anon_sym_COMMA] = ACTIONS(2441), [anon_sym_DOLLAR] = ACTIONS(2441), - [anon_sym_error] = ACTIONS(2439), - [anon_sym_DASH2] = ACTIONS(2439), - [anon_sym_break] = ACTIONS(2439), - [anon_sym_continue] = ACTIONS(2439), - [anon_sym_for] = ACTIONS(2439), - [anon_sym_in2] = ACTIONS(2439), - [anon_sym_loop] = ACTIONS(2439), - [anon_sym_make] = ACTIONS(2439), - [anon_sym_while] = ACTIONS(2439), - [anon_sym_do] = ACTIONS(2439), - [anon_sym_if] = ACTIONS(2439), - [anon_sym_else] = ACTIONS(2439), - [anon_sym_match] = ACTIONS(2439), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), [anon_sym_RBRACE] = ACTIONS(2441), - [anon_sym_try] = ACTIONS(2439), - [anon_sym_catch] = ACTIONS(2439), - [anon_sym_return] = ACTIONS(2439), - [anon_sym_source] = ACTIONS(2439), - [anon_sym_source_DASHenv] = ACTIONS(2439), - [anon_sym_register] = ACTIONS(2439), - [anon_sym_hide] = ACTIONS(2439), - [anon_sym_hide_DASHenv] = ACTIONS(2439), - [anon_sym_overlay] = ACTIONS(2439), - [anon_sym_as] = ACTIONS(2439), - [anon_sym_PLUS2] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2441), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2441), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2441), - [aux_sym__val_number_decimal_token1] = ACTIONS(2439), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), [aux_sym__val_number_decimal_token2] = ACTIONS(2441), [aux_sym__val_number_decimal_token3] = ACTIONS(2441), [aux_sym__val_number_decimal_token4] = ACTIONS(2441), [aux_sym__val_number_token1] = ACTIONS(2441), [aux_sym__val_number_token2] = ACTIONS(2441), [aux_sym__val_number_token3] = ACTIONS(2441), - [aux_sym__val_number_token4] = ACTIONS(2439), - [aux_sym__val_number_token5] = ACTIONS(2439), - [aux_sym__val_number_token6] = ACTIONS(2439), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), [anon_sym_DQUOTE] = ACTIONS(2441), [sym__str_single_quotes] = ACTIONS(2441), [sym__str_back_ticks] = ACTIONS(2441), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2441), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2441), + [sym__entry_separator] = ACTIONS(2443), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2443), }, - [693] = { - [sym_comment] = STATE(693), - [anon_sym_export] = ACTIONS(2443), - [anon_sym_alias] = ACTIONS(2443), - [anon_sym_let] = ACTIONS(2443), - [anon_sym_let_DASHenv] = ACTIONS(2443), - [anon_sym_mut] = ACTIONS(2443), - [anon_sym_const] = ACTIONS(2443), - [aux_sym_cmd_identifier_token1] = ACTIONS(2443), + [646] = { + [sym_comment] = STATE(646), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2047), + [aux_sym_cmd_identifier_token3] = ACTIONS(2047), + [aux_sym_cmd_identifier_token4] = ACTIONS(2047), + [aux_sym_cmd_identifier_token5] = ACTIONS(2047), + [aux_sym_cmd_identifier_token6] = ACTIONS(2047), + [aux_sym_cmd_identifier_token7] = ACTIONS(2047), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2047), + [aux_sym_cmd_identifier_token11] = ACTIONS(2047), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2047), + [aux_sym_cmd_identifier_token17] = ACTIONS(2047), + [aux_sym_cmd_identifier_token18] = ACTIONS(2047), + [aux_sym_cmd_identifier_token19] = ACTIONS(2047), + [aux_sym_cmd_identifier_token20] = ACTIONS(2047), + [aux_sym_cmd_identifier_token21] = ACTIONS(2047), + [aux_sym_cmd_identifier_token22] = ACTIONS(2047), + [aux_sym_cmd_identifier_token23] = ACTIONS(2047), + [aux_sym_cmd_identifier_token24] = ACTIONS(2047), + [aux_sym_cmd_identifier_token25] = ACTIONS(2047), + [aux_sym_cmd_identifier_token26] = ACTIONS(2047), + [aux_sym_cmd_identifier_token27] = ACTIONS(2047), + [aux_sym_cmd_identifier_token28] = ACTIONS(2047), + [aux_sym_cmd_identifier_token29] = ACTIONS(2047), + [aux_sym_cmd_identifier_token30] = ACTIONS(2047), + [aux_sym_cmd_identifier_token31] = ACTIONS(2047), + [aux_sym_cmd_identifier_token32] = ACTIONS(2047), + [aux_sym_cmd_identifier_token33] = ACTIONS(2047), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2047), + [aux_sym_cmd_identifier_token36] = ACTIONS(2047), + [aux_sym_cmd_identifier_token37] = ACTIONS(2047), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2047), + [aux_sym_cmd_identifier_token40] = ACTIONS(2047), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2047), + [anon_sym_COMMA] = ACTIONS(2047), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH2] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in2] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_PLUS2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2047), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2047), + [aux_sym__val_number_decimal_token3] = ACTIONS(2047), + [aux_sym__val_number_decimal_token4] = ACTIONS(2047), + [aux_sym__val_number_token1] = ACTIONS(2047), + [aux_sym__val_number_token2] = ACTIONS(2047), + [aux_sym__val_number_token3] = ACTIONS(2047), + [aux_sym__val_number_token4] = ACTIONS(2047), + [aux_sym__val_number_token5] = ACTIONS(2047), + [aux_sym__val_number_token6] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2047), + [sym__str_single_quotes] = ACTIONS(2047), + [sym__str_back_ticks] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2047), + [sym__entry_separator] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [647] = { + [sym_comment] = STATE(647), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_alias] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_let_DASHenv] = ACTIONS(2080), + [anon_sym_mut] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [aux_sym_cmd_identifier_token1] = ACTIONS(2080), + [aux_sym_cmd_identifier_token2] = ACTIONS(2080), + [aux_sym_cmd_identifier_token3] = ACTIONS(2080), + [aux_sym_cmd_identifier_token4] = ACTIONS(2080), + [aux_sym_cmd_identifier_token5] = ACTIONS(2080), + [aux_sym_cmd_identifier_token6] = ACTIONS(2080), + [aux_sym_cmd_identifier_token7] = ACTIONS(2080), + [aux_sym_cmd_identifier_token8] = ACTIONS(2080), + [aux_sym_cmd_identifier_token9] = ACTIONS(2080), + [aux_sym_cmd_identifier_token10] = ACTIONS(2080), + [aux_sym_cmd_identifier_token11] = ACTIONS(2080), + [aux_sym_cmd_identifier_token12] = ACTIONS(2080), + [aux_sym_cmd_identifier_token13] = ACTIONS(2080), + [aux_sym_cmd_identifier_token14] = ACTIONS(2080), + [aux_sym_cmd_identifier_token15] = ACTIONS(2080), + [aux_sym_cmd_identifier_token16] = ACTIONS(2080), + [aux_sym_cmd_identifier_token17] = ACTIONS(2080), + [aux_sym_cmd_identifier_token18] = ACTIONS(2080), + [aux_sym_cmd_identifier_token19] = ACTIONS(2080), + [aux_sym_cmd_identifier_token20] = ACTIONS(2080), + [aux_sym_cmd_identifier_token21] = ACTIONS(2080), + [aux_sym_cmd_identifier_token22] = ACTIONS(2080), + [aux_sym_cmd_identifier_token23] = ACTIONS(2080), + [aux_sym_cmd_identifier_token24] = ACTIONS(2080), + [aux_sym_cmd_identifier_token25] = ACTIONS(2080), + [aux_sym_cmd_identifier_token26] = ACTIONS(2080), + [aux_sym_cmd_identifier_token27] = ACTIONS(2080), + [aux_sym_cmd_identifier_token28] = ACTIONS(2080), + [aux_sym_cmd_identifier_token29] = ACTIONS(2080), + [aux_sym_cmd_identifier_token30] = ACTIONS(2080), + [aux_sym_cmd_identifier_token31] = ACTIONS(2080), + [aux_sym_cmd_identifier_token32] = ACTIONS(2080), + [aux_sym_cmd_identifier_token33] = ACTIONS(2080), + [aux_sym_cmd_identifier_token34] = ACTIONS(2080), + [aux_sym_cmd_identifier_token35] = ACTIONS(2080), + [aux_sym_cmd_identifier_token36] = ACTIONS(2080), + [aux_sym_cmd_identifier_token37] = ACTIONS(2080), + [aux_sym_cmd_identifier_token38] = ACTIONS(2080), + [aux_sym_cmd_identifier_token39] = ACTIONS(2080), + [aux_sym_cmd_identifier_token40] = ACTIONS(2080), + [anon_sym_def] = ACTIONS(2080), + [anon_sym_export_DASHenv] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2080), + [anon_sym_COMMA] = ACTIONS(2080), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_error] = ACTIONS(2080), + [anon_sym_DASH2] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_in2] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_make] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2080), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_catch] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_source] = ACTIONS(2080), + [anon_sym_source_DASHenv] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_hide] = ACTIONS(2080), + [anon_sym_hide_DASHenv] = ACTIONS(2080), + [anon_sym_overlay] = ACTIONS(2080), + [anon_sym_as] = ACTIONS(2080), + [anon_sym_PLUS2] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2080), + [aux_sym__val_number_decimal_token1] = ACTIONS(2080), + [aux_sym__val_number_decimal_token2] = ACTIONS(2080), + [aux_sym__val_number_decimal_token3] = ACTIONS(2080), + [aux_sym__val_number_decimal_token4] = ACTIONS(2080), + [aux_sym__val_number_token1] = ACTIONS(2080), + [aux_sym__val_number_token2] = ACTIONS(2080), + [aux_sym__val_number_token3] = ACTIONS(2080), + [aux_sym__val_number_token4] = ACTIONS(2080), + [aux_sym__val_number_token5] = ACTIONS(2080), + [aux_sym__val_number_token6] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(2080), + [sym__str_single_quotes] = ACTIONS(2080), + [sym__str_back_ticks] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2080), + [sym__entry_separator] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2086), + }, + [648] = { + [sym_comment] = STATE(648), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1663), + [aux_sym_cmd_identifier_token3] = ACTIONS(1663), + [aux_sym_cmd_identifier_token4] = ACTIONS(1663), + [aux_sym_cmd_identifier_token5] = ACTIONS(1663), + [aux_sym_cmd_identifier_token6] = ACTIONS(1663), + [aux_sym_cmd_identifier_token7] = ACTIONS(1663), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1663), + [aux_sym_cmd_identifier_token11] = ACTIONS(1663), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1663), + [aux_sym_cmd_identifier_token17] = ACTIONS(1663), + [aux_sym_cmd_identifier_token18] = ACTIONS(1663), + [aux_sym_cmd_identifier_token19] = ACTIONS(1663), + [aux_sym_cmd_identifier_token20] = ACTIONS(1663), + [aux_sym_cmd_identifier_token21] = ACTIONS(1663), + [aux_sym_cmd_identifier_token22] = ACTIONS(1663), + [aux_sym_cmd_identifier_token23] = ACTIONS(1663), + [aux_sym_cmd_identifier_token24] = ACTIONS(1663), + [aux_sym_cmd_identifier_token25] = ACTIONS(1663), + [aux_sym_cmd_identifier_token26] = ACTIONS(1663), + [aux_sym_cmd_identifier_token27] = ACTIONS(1663), + [aux_sym_cmd_identifier_token28] = ACTIONS(1663), + [aux_sym_cmd_identifier_token29] = ACTIONS(1663), + [aux_sym_cmd_identifier_token30] = ACTIONS(1663), + [aux_sym_cmd_identifier_token31] = ACTIONS(1663), + [aux_sym_cmd_identifier_token32] = ACTIONS(1663), + [aux_sym_cmd_identifier_token33] = ACTIONS(1663), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1663), + [aux_sym_cmd_identifier_token36] = ACTIONS(1663), + [aux_sym_cmd_identifier_token37] = ACTIONS(1663), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1663), + [aux_sym_cmd_identifier_token40] = ACTIONS(1663), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_COMMA] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1663), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1663), + [aux_sym__val_number_decimal_token3] = ACTIONS(1663), + [aux_sym__val_number_decimal_token4] = ACTIONS(1663), + [aux_sym__val_number_token1] = ACTIONS(1663), + [aux_sym__val_number_token2] = ACTIONS(1663), + [aux_sym__val_number_token3] = ACTIONS(1663), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1663), + [sym__str_single_quotes] = ACTIONS(1663), + [sym__str_back_ticks] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1663), + [sym__entry_separator] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [649] = { + [sym_comment] = STATE(649), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), [aux_sym_cmd_identifier_token2] = ACTIONS(2445), [aux_sym_cmd_identifier_token3] = ACTIONS(2445), [aux_sym_cmd_identifier_token4] = ACTIONS(2445), [aux_sym_cmd_identifier_token5] = ACTIONS(2445), [aux_sym_cmd_identifier_token6] = ACTIONS(2445), [aux_sym_cmd_identifier_token7] = ACTIONS(2445), - [aux_sym_cmd_identifier_token8] = ACTIONS(2443), - [aux_sym_cmd_identifier_token9] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), [aux_sym_cmd_identifier_token10] = ACTIONS(2445), [aux_sym_cmd_identifier_token11] = ACTIONS(2445), - [aux_sym_cmd_identifier_token12] = ACTIONS(2443), - [aux_sym_cmd_identifier_token13] = ACTIONS(2443), - [aux_sym_cmd_identifier_token14] = ACTIONS(2443), - [aux_sym_cmd_identifier_token15] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), [aux_sym_cmd_identifier_token16] = ACTIONS(2445), [aux_sym_cmd_identifier_token17] = ACTIONS(2445), [aux_sym_cmd_identifier_token18] = ACTIONS(2445), @@ -154067,186 +149982,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2445), [aux_sym_cmd_identifier_token32] = ACTIONS(2445), [aux_sym_cmd_identifier_token33] = ACTIONS(2445), - [aux_sym_cmd_identifier_token34] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), [aux_sym_cmd_identifier_token35] = ACTIONS(2445), [aux_sym_cmd_identifier_token36] = ACTIONS(2445), [aux_sym_cmd_identifier_token37] = ACTIONS(2445), - [aux_sym_cmd_identifier_token38] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), [aux_sym_cmd_identifier_token39] = ACTIONS(2445), [aux_sym_cmd_identifier_token40] = ACTIONS(2445), - [anon_sym_def] = ACTIONS(2443), - [anon_sym_export_DASHenv] = ACTIONS(2443), - [anon_sym_extern] = ACTIONS(2443), - [anon_sym_module] = ACTIONS(2443), - [anon_sym_use] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), [anon_sym_LPAREN] = ACTIONS(2445), + [anon_sym_COMMA] = ACTIONS(2445), [anon_sym_DOLLAR] = ACTIONS(2445), - [anon_sym_error] = ACTIONS(2443), - [anon_sym_DASH2] = ACTIONS(2443), - [anon_sym_break] = ACTIONS(2443), - [anon_sym_continue] = ACTIONS(2443), - [anon_sym_for] = ACTIONS(2443), - [anon_sym_in2] = ACTIONS(2443), - [anon_sym_loop] = ACTIONS(2443), - [anon_sym_make] = ACTIONS(2443), - [anon_sym_while] = ACTIONS(2443), - [anon_sym_do] = ACTIONS(2443), - [anon_sym_if] = ACTIONS(2443), - [anon_sym_else] = ACTIONS(2443), - [anon_sym_match] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), [anon_sym_RBRACE] = ACTIONS(2445), - [anon_sym_try] = ACTIONS(2443), - [anon_sym_catch] = ACTIONS(2443), - [anon_sym_return] = ACTIONS(2443), - [anon_sym_source] = ACTIONS(2443), - [anon_sym_source_DASHenv] = ACTIONS(2443), - [anon_sym_register] = ACTIONS(2443), - [anon_sym_hide] = ACTIONS(2443), - [anon_sym_hide_DASHenv] = ACTIONS(2443), - [anon_sym_overlay] = ACTIONS(2443), - [anon_sym_as] = ACTIONS(2443), - [anon_sym_PLUS2] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2445), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2445), - [aux_sym__val_number_decimal_token1] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), [aux_sym__val_number_decimal_token2] = ACTIONS(2445), [aux_sym__val_number_decimal_token3] = ACTIONS(2445), [aux_sym__val_number_decimal_token4] = ACTIONS(2445), [aux_sym__val_number_token1] = ACTIONS(2445), [aux_sym__val_number_token2] = ACTIONS(2445), [aux_sym__val_number_token3] = ACTIONS(2445), - [aux_sym__val_number_token4] = ACTIONS(2443), - [aux_sym__val_number_token5] = ACTIONS(2443), - [aux_sym__val_number_token6] = ACTIONS(2443), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), [anon_sym_DQUOTE] = ACTIONS(2445), [sym__str_single_quotes] = ACTIONS(2445), [sym__str_back_ticks] = ACTIONS(2445), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2445), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2445), - }, - [694] = { - [sym_comment] = STATE(694), - [anon_sym_export] = ACTIONS(1957), - [anon_sym_alias] = ACTIONS(1957), - [anon_sym_let] = ACTIONS(1957), - [anon_sym_let_DASHenv] = ACTIONS(1957), - [anon_sym_mut] = ACTIONS(1957), - [anon_sym_const] = ACTIONS(1957), - [aux_sym_cmd_identifier_token1] = ACTIONS(1957), - [aux_sym_cmd_identifier_token2] = ACTIONS(1959), - [aux_sym_cmd_identifier_token3] = ACTIONS(1959), - [aux_sym_cmd_identifier_token4] = ACTIONS(1959), - [aux_sym_cmd_identifier_token5] = ACTIONS(1959), - [aux_sym_cmd_identifier_token6] = ACTIONS(1959), - [aux_sym_cmd_identifier_token7] = ACTIONS(1959), - [aux_sym_cmd_identifier_token8] = ACTIONS(1957), - [aux_sym_cmd_identifier_token9] = ACTIONS(1957), - [aux_sym_cmd_identifier_token10] = ACTIONS(1959), - [aux_sym_cmd_identifier_token11] = ACTIONS(1959), - [aux_sym_cmd_identifier_token12] = ACTIONS(1957), - [aux_sym_cmd_identifier_token13] = ACTIONS(1957), - [aux_sym_cmd_identifier_token14] = ACTIONS(1957), - [aux_sym_cmd_identifier_token15] = ACTIONS(1957), - [aux_sym_cmd_identifier_token16] = ACTIONS(1959), - [aux_sym_cmd_identifier_token17] = ACTIONS(1959), - [aux_sym_cmd_identifier_token18] = ACTIONS(1959), - [aux_sym_cmd_identifier_token19] = ACTIONS(1959), - [aux_sym_cmd_identifier_token20] = ACTIONS(1959), - [aux_sym_cmd_identifier_token21] = ACTIONS(1959), - [aux_sym_cmd_identifier_token22] = ACTIONS(1959), - [aux_sym_cmd_identifier_token23] = ACTIONS(1959), - [aux_sym_cmd_identifier_token24] = ACTIONS(1959), - [aux_sym_cmd_identifier_token25] = ACTIONS(1959), - [aux_sym_cmd_identifier_token26] = ACTIONS(1959), - [aux_sym_cmd_identifier_token27] = ACTIONS(1959), - [aux_sym_cmd_identifier_token28] = ACTIONS(1959), - [aux_sym_cmd_identifier_token29] = ACTIONS(1959), - [aux_sym_cmd_identifier_token30] = ACTIONS(1959), - [aux_sym_cmd_identifier_token31] = ACTIONS(1959), - [aux_sym_cmd_identifier_token32] = ACTIONS(1959), - [aux_sym_cmd_identifier_token33] = ACTIONS(1959), - [aux_sym_cmd_identifier_token34] = ACTIONS(1957), - [aux_sym_cmd_identifier_token35] = ACTIONS(1959), - [aux_sym_cmd_identifier_token36] = ACTIONS(1959), - [aux_sym_cmd_identifier_token37] = ACTIONS(1959), - [aux_sym_cmd_identifier_token38] = ACTIONS(1957), - [aux_sym_cmd_identifier_token39] = ACTIONS(1959), - [aux_sym_cmd_identifier_token40] = ACTIONS(1959), - [anon_sym_def] = ACTIONS(1957), - [anon_sym_export_DASHenv] = ACTIONS(1957), - [anon_sym_extern] = ACTIONS(1957), - [anon_sym_module] = ACTIONS(1957), - [anon_sym_use] = ACTIONS(1957), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1959), - [anon_sym_error] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_break] = ACTIONS(1957), - [anon_sym_continue] = ACTIONS(1957), - [anon_sym_for] = ACTIONS(1957), - [anon_sym_in2] = ACTIONS(1957), - [anon_sym_loop] = ACTIONS(1957), - [anon_sym_make] = ACTIONS(1957), - [anon_sym_while] = ACTIONS(1957), - [anon_sym_do] = ACTIONS(1957), - [anon_sym_if] = ACTIONS(1957), - [anon_sym_else] = ACTIONS(1957), - [anon_sym_match] = ACTIONS(1957), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_try] = ACTIONS(1957), - [anon_sym_catch] = ACTIONS(1957), - [anon_sym_return] = ACTIONS(1957), - [anon_sym_source] = ACTIONS(1957), - [anon_sym_source_DASHenv] = ACTIONS(1957), - [anon_sym_register] = ACTIONS(1957), - [anon_sym_hide] = ACTIONS(1957), - [anon_sym_hide_DASHenv] = ACTIONS(1957), - [anon_sym_overlay] = ACTIONS(1957), - [anon_sym_as] = ACTIONS(1957), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1957), - [aux_sym__val_number_token5] = ACTIONS(1957), - [aux_sym__val_number_token6] = ACTIONS(1957), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1959), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), + [sym__entry_separator] = ACTIONS(2447), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2447), }, - [695] = { - [sym_comment] = STATE(695), - [anon_sym_export] = ACTIONS(2447), - [anon_sym_alias] = ACTIONS(2447), - [anon_sym_let] = ACTIONS(2447), - [anon_sym_let_DASHenv] = ACTIONS(2447), - [anon_sym_mut] = ACTIONS(2447), - [anon_sym_const] = ACTIONS(2447), - [aux_sym_cmd_identifier_token1] = ACTIONS(2447), + [650] = { + [sym_comment] = STATE(650), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), [aux_sym_cmd_identifier_token2] = ACTIONS(2449), [aux_sym_cmd_identifier_token3] = ACTIONS(2449), [aux_sym_cmd_identifier_token4] = ACTIONS(2449), [aux_sym_cmd_identifier_token5] = ACTIONS(2449), [aux_sym_cmd_identifier_token6] = ACTIONS(2449), [aux_sym_cmd_identifier_token7] = ACTIONS(2449), - [aux_sym_cmd_identifier_token8] = ACTIONS(2447), - [aux_sym_cmd_identifier_token9] = ACTIONS(2447), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), [aux_sym_cmd_identifier_token10] = ACTIONS(2449), [aux_sym_cmd_identifier_token11] = ACTIONS(2449), - [aux_sym_cmd_identifier_token12] = ACTIONS(2447), - [aux_sym_cmd_identifier_token13] = ACTIONS(2447), - [aux_sym_cmd_identifier_token14] = ACTIONS(2447), - [aux_sym_cmd_identifier_token15] = ACTIONS(2447), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), [aux_sym_cmd_identifier_token16] = ACTIONS(2449), [aux_sym_cmd_identifier_token17] = ACTIONS(2449), [aux_sym_cmd_identifier_token18] = ACTIONS(2449), @@ -154265,87 +150083,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2449), [aux_sym_cmd_identifier_token32] = ACTIONS(2449), [aux_sym_cmd_identifier_token33] = ACTIONS(2449), - [aux_sym_cmd_identifier_token34] = ACTIONS(2447), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), [aux_sym_cmd_identifier_token35] = ACTIONS(2449), [aux_sym_cmd_identifier_token36] = ACTIONS(2449), [aux_sym_cmd_identifier_token37] = ACTIONS(2449), - [aux_sym_cmd_identifier_token38] = ACTIONS(2447), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), [aux_sym_cmd_identifier_token39] = ACTIONS(2449), [aux_sym_cmd_identifier_token40] = ACTIONS(2449), - [anon_sym_def] = ACTIONS(2447), - [anon_sym_export_DASHenv] = ACTIONS(2447), - [anon_sym_extern] = ACTIONS(2447), - [anon_sym_module] = ACTIONS(2447), - [anon_sym_use] = ACTIONS(2447), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), [anon_sym_LPAREN] = ACTIONS(2449), + [anon_sym_COMMA] = ACTIONS(2449), [anon_sym_DOLLAR] = ACTIONS(2449), - [anon_sym_error] = ACTIONS(2447), - [anon_sym_DASH2] = ACTIONS(2447), - [anon_sym_break] = ACTIONS(2447), - [anon_sym_continue] = ACTIONS(2447), - [anon_sym_for] = ACTIONS(2447), - [anon_sym_in2] = ACTIONS(2447), - [anon_sym_loop] = ACTIONS(2447), - [anon_sym_make] = ACTIONS(2447), - [anon_sym_while] = ACTIONS(2447), - [anon_sym_do] = ACTIONS(2447), - [anon_sym_if] = ACTIONS(2447), - [anon_sym_else] = ACTIONS(2447), - [anon_sym_match] = ACTIONS(2447), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), [anon_sym_RBRACE] = ACTIONS(2449), - [anon_sym_try] = ACTIONS(2447), - [anon_sym_catch] = ACTIONS(2447), - [anon_sym_return] = ACTIONS(2447), - [anon_sym_source] = ACTIONS(2447), - [anon_sym_source_DASHenv] = ACTIONS(2447), - [anon_sym_register] = ACTIONS(2447), - [anon_sym_hide] = ACTIONS(2447), - [anon_sym_hide_DASHenv] = ACTIONS(2447), - [anon_sym_overlay] = ACTIONS(2447), - [anon_sym_as] = ACTIONS(2447), - [anon_sym_PLUS2] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2449), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2449), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2449), - [aux_sym__val_number_decimal_token1] = ACTIONS(2447), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), [aux_sym__val_number_decimal_token2] = ACTIONS(2449), [aux_sym__val_number_decimal_token3] = ACTIONS(2449), [aux_sym__val_number_decimal_token4] = ACTIONS(2449), [aux_sym__val_number_token1] = ACTIONS(2449), [aux_sym__val_number_token2] = ACTIONS(2449), [aux_sym__val_number_token3] = ACTIONS(2449), - [aux_sym__val_number_token4] = ACTIONS(2447), - [aux_sym__val_number_token5] = ACTIONS(2447), - [aux_sym__val_number_token6] = ACTIONS(2447), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), [anon_sym_DQUOTE] = ACTIONS(2449), [sym__str_single_quotes] = ACTIONS(2449), [sym__str_back_ticks] = ACTIONS(2449), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2449), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2449), + [sym__entry_separator] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2451), }, - [696] = { - [sym_comment] = STATE(696), - [anon_sym_export] = ACTIONS(2451), - [anon_sym_alias] = ACTIONS(2451), - [anon_sym_let] = ACTIONS(2451), - [anon_sym_let_DASHenv] = ACTIONS(2451), - [anon_sym_mut] = ACTIONS(2451), - [anon_sym_const] = ACTIONS(2451), - [aux_sym_cmd_identifier_token1] = ACTIONS(2451), + [651] = { + [sym_comment] = STATE(651), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), [aux_sym_cmd_identifier_token2] = ACTIONS(2453), [aux_sym_cmd_identifier_token3] = ACTIONS(2453), [aux_sym_cmd_identifier_token4] = ACTIONS(2453), [aux_sym_cmd_identifier_token5] = ACTIONS(2453), [aux_sym_cmd_identifier_token6] = ACTIONS(2453), [aux_sym_cmd_identifier_token7] = ACTIONS(2453), - [aux_sym_cmd_identifier_token8] = ACTIONS(2451), - [aux_sym_cmd_identifier_token9] = ACTIONS(2451), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), [aux_sym_cmd_identifier_token10] = ACTIONS(2453), [aux_sym_cmd_identifier_token11] = ACTIONS(2453), - [aux_sym_cmd_identifier_token12] = ACTIONS(2451), - [aux_sym_cmd_identifier_token13] = ACTIONS(2451), - [aux_sym_cmd_identifier_token14] = ACTIONS(2451), - [aux_sym_cmd_identifier_token15] = ACTIONS(2451), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), [aux_sym_cmd_identifier_token16] = ACTIONS(2453), [aux_sym_cmd_identifier_token17] = ACTIONS(2453), [aux_sym_cmd_identifier_token18] = ACTIONS(2453), @@ -154364,582 +150184,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2453), [aux_sym_cmd_identifier_token32] = ACTIONS(2453), [aux_sym_cmd_identifier_token33] = ACTIONS(2453), - [aux_sym_cmd_identifier_token34] = ACTIONS(2451), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), [aux_sym_cmd_identifier_token35] = ACTIONS(2453), [aux_sym_cmd_identifier_token36] = ACTIONS(2453), [aux_sym_cmd_identifier_token37] = ACTIONS(2453), - [aux_sym_cmd_identifier_token38] = ACTIONS(2451), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), [aux_sym_cmd_identifier_token39] = ACTIONS(2453), [aux_sym_cmd_identifier_token40] = ACTIONS(2453), - [anon_sym_def] = ACTIONS(2451), - [anon_sym_export_DASHenv] = ACTIONS(2451), - [anon_sym_extern] = ACTIONS(2451), - [anon_sym_module] = ACTIONS(2451), - [anon_sym_use] = ACTIONS(2451), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), [anon_sym_DOLLAR] = ACTIONS(2453), - [anon_sym_error] = ACTIONS(2451), - [anon_sym_DASH2] = ACTIONS(2451), - [anon_sym_break] = ACTIONS(2451), - [anon_sym_continue] = ACTIONS(2451), - [anon_sym_for] = ACTIONS(2451), - [anon_sym_in2] = ACTIONS(2451), - [anon_sym_loop] = ACTIONS(2451), - [anon_sym_make] = ACTIONS(2451), - [anon_sym_while] = ACTIONS(2451), - [anon_sym_do] = ACTIONS(2451), - [anon_sym_if] = ACTIONS(2451), - [anon_sym_else] = ACTIONS(2451), - [anon_sym_match] = ACTIONS(2451), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), [anon_sym_RBRACE] = ACTIONS(2453), - [anon_sym_try] = ACTIONS(2451), - [anon_sym_catch] = ACTIONS(2451), - [anon_sym_return] = ACTIONS(2451), - [anon_sym_source] = ACTIONS(2451), - [anon_sym_source_DASHenv] = ACTIONS(2451), - [anon_sym_register] = ACTIONS(2451), - [anon_sym_hide] = ACTIONS(2451), - [anon_sym_hide_DASHenv] = ACTIONS(2451), - [anon_sym_overlay] = ACTIONS(2451), - [anon_sym_as] = ACTIONS(2451), - [anon_sym_PLUS2] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), - [aux_sym__val_number_decimal_token1] = ACTIONS(2451), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), [aux_sym__val_number_decimal_token2] = ACTIONS(2453), [aux_sym__val_number_decimal_token3] = ACTIONS(2453), [aux_sym__val_number_decimal_token4] = ACTIONS(2453), [aux_sym__val_number_token1] = ACTIONS(2453), [aux_sym__val_number_token2] = ACTIONS(2453), [aux_sym__val_number_token3] = ACTIONS(2453), - [aux_sym__val_number_token4] = ACTIONS(2451), - [aux_sym__val_number_token5] = ACTIONS(2451), - [aux_sym__val_number_token6] = ACTIONS(2451), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), [anon_sym_DQUOTE] = ACTIONS(2453), [sym__str_single_quotes] = ACTIONS(2453), [sym__str_back_ticks] = ACTIONS(2453), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2453), - }, - [697] = { - [sym_comment] = STATE(697), - [anon_sym_export] = ACTIONS(1973), - [anon_sym_alias] = ACTIONS(1973), - [anon_sym_let] = ACTIONS(1973), - [anon_sym_let_DASHenv] = ACTIONS(1973), - [anon_sym_mut] = ACTIONS(1973), - [anon_sym_const] = ACTIONS(1973), - [aux_sym_cmd_identifier_token1] = ACTIONS(1973), - [aux_sym_cmd_identifier_token2] = ACTIONS(1975), - [aux_sym_cmd_identifier_token3] = ACTIONS(1975), - [aux_sym_cmd_identifier_token4] = ACTIONS(1975), - [aux_sym_cmd_identifier_token5] = ACTIONS(1975), - [aux_sym_cmd_identifier_token6] = ACTIONS(1975), - [aux_sym_cmd_identifier_token7] = ACTIONS(1975), - [aux_sym_cmd_identifier_token8] = ACTIONS(1973), - [aux_sym_cmd_identifier_token9] = ACTIONS(1973), - [aux_sym_cmd_identifier_token10] = ACTIONS(1975), - [aux_sym_cmd_identifier_token11] = ACTIONS(1975), - [aux_sym_cmd_identifier_token12] = ACTIONS(1973), - [aux_sym_cmd_identifier_token13] = ACTIONS(1973), - [aux_sym_cmd_identifier_token14] = ACTIONS(1973), - [aux_sym_cmd_identifier_token15] = ACTIONS(1973), - [aux_sym_cmd_identifier_token16] = ACTIONS(1975), - [aux_sym_cmd_identifier_token17] = ACTIONS(1975), - [aux_sym_cmd_identifier_token18] = ACTIONS(1975), - [aux_sym_cmd_identifier_token19] = ACTIONS(1975), - [aux_sym_cmd_identifier_token20] = ACTIONS(1975), - [aux_sym_cmd_identifier_token21] = ACTIONS(1975), - [aux_sym_cmd_identifier_token22] = ACTIONS(1975), - [aux_sym_cmd_identifier_token23] = ACTIONS(1975), - [aux_sym_cmd_identifier_token24] = ACTIONS(1975), - [aux_sym_cmd_identifier_token25] = ACTIONS(1975), - [aux_sym_cmd_identifier_token26] = ACTIONS(1975), - [aux_sym_cmd_identifier_token27] = ACTIONS(1975), - [aux_sym_cmd_identifier_token28] = ACTIONS(1975), - [aux_sym_cmd_identifier_token29] = ACTIONS(1975), - [aux_sym_cmd_identifier_token30] = ACTIONS(1975), - [aux_sym_cmd_identifier_token31] = ACTIONS(1975), - [aux_sym_cmd_identifier_token32] = ACTIONS(1975), - [aux_sym_cmd_identifier_token33] = ACTIONS(1975), - [aux_sym_cmd_identifier_token34] = ACTIONS(1973), - [aux_sym_cmd_identifier_token35] = ACTIONS(1975), - [aux_sym_cmd_identifier_token36] = ACTIONS(1975), - [aux_sym_cmd_identifier_token37] = ACTIONS(1975), - [aux_sym_cmd_identifier_token38] = ACTIONS(1973), - [aux_sym_cmd_identifier_token39] = ACTIONS(1975), - [aux_sym_cmd_identifier_token40] = ACTIONS(1975), - [anon_sym_def] = ACTIONS(1973), - [anon_sym_export_DASHenv] = ACTIONS(1973), - [anon_sym_extern] = ACTIONS(1973), - [anon_sym_module] = ACTIONS(1973), - [anon_sym_use] = ACTIONS(1973), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1975), - [anon_sym_error] = ACTIONS(1973), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_break] = ACTIONS(1973), - [anon_sym_continue] = ACTIONS(1973), - [anon_sym_for] = ACTIONS(1973), - [anon_sym_in2] = ACTIONS(1973), - [anon_sym_loop] = ACTIONS(1973), - [anon_sym_make] = ACTIONS(1973), - [anon_sym_while] = ACTIONS(1973), - [anon_sym_do] = ACTIONS(1973), - [anon_sym_if] = ACTIONS(1973), - [anon_sym_else] = ACTIONS(1973), - [anon_sym_match] = ACTIONS(1973), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_try] = ACTIONS(1973), - [anon_sym_catch] = ACTIONS(1973), - [anon_sym_return] = ACTIONS(1973), - [anon_sym_source] = ACTIONS(1973), - [anon_sym_source_DASHenv] = ACTIONS(1973), - [anon_sym_register] = ACTIONS(1973), - [anon_sym_hide] = ACTIONS(1973), - [anon_sym_hide_DASHenv] = ACTIONS(1973), - [anon_sym_overlay] = ACTIONS(1973), - [anon_sym_as] = ACTIONS(1973), - [anon_sym_PLUS2] = ACTIONS(1973), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1975), - [aux_sym__val_number_decimal_token3] = ACTIONS(1975), - [aux_sym__val_number_decimal_token4] = ACTIONS(1975), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [aux_sym__val_number_token4] = ACTIONS(1973), - [aux_sym__val_number_token5] = ACTIONS(1973), - [aux_sym__val_number_token6] = ACTIONS(1973), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1975), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1975), - }, - [698] = { - [sym_comment] = STATE(698), - [anon_sym_export] = ACTIONS(1981), - [anon_sym_alias] = ACTIONS(1981), - [anon_sym_let] = ACTIONS(1981), - [anon_sym_let_DASHenv] = ACTIONS(1981), - [anon_sym_mut] = ACTIONS(1981), - [anon_sym_const] = ACTIONS(1981), - [aux_sym_cmd_identifier_token1] = ACTIONS(1981), - [aux_sym_cmd_identifier_token2] = ACTIONS(1983), - [aux_sym_cmd_identifier_token3] = ACTIONS(1983), - [aux_sym_cmd_identifier_token4] = ACTIONS(1983), - [aux_sym_cmd_identifier_token5] = ACTIONS(1983), - [aux_sym_cmd_identifier_token6] = ACTIONS(1983), - [aux_sym_cmd_identifier_token7] = ACTIONS(1983), - [aux_sym_cmd_identifier_token8] = ACTIONS(1981), - [aux_sym_cmd_identifier_token9] = ACTIONS(1981), - [aux_sym_cmd_identifier_token10] = ACTIONS(1983), - [aux_sym_cmd_identifier_token11] = ACTIONS(1983), - [aux_sym_cmd_identifier_token12] = ACTIONS(1981), - [aux_sym_cmd_identifier_token13] = ACTIONS(1981), - [aux_sym_cmd_identifier_token14] = ACTIONS(1981), - [aux_sym_cmd_identifier_token15] = ACTIONS(1981), - [aux_sym_cmd_identifier_token16] = ACTIONS(1983), - [aux_sym_cmd_identifier_token17] = ACTIONS(1983), - [aux_sym_cmd_identifier_token18] = ACTIONS(1983), - [aux_sym_cmd_identifier_token19] = ACTIONS(1983), - [aux_sym_cmd_identifier_token20] = ACTIONS(1983), - [aux_sym_cmd_identifier_token21] = ACTIONS(1983), - [aux_sym_cmd_identifier_token22] = ACTIONS(1983), - [aux_sym_cmd_identifier_token23] = ACTIONS(1983), - [aux_sym_cmd_identifier_token24] = ACTIONS(1983), - [aux_sym_cmd_identifier_token25] = ACTIONS(1983), - [aux_sym_cmd_identifier_token26] = ACTIONS(1983), - [aux_sym_cmd_identifier_token27] = ACTIONS(1983), - [aux_sym_cmd_identifier_token28] = ACTIONS(1983), - [aux_sym_cmd_identifier_token29] = ACTIONS(1983), - [aux_sym_cmd_identifier_token30] = ACTIONS(1983), - [aux_sym_cmd_identifier_token31] = ACTIONS(1983), - [aux_sym_cmd_identifier_token32] = ACTIONS(1983), - [aux_sym_cmd_identifier_token33] = ACTIONS(1983), - [aux_sym_cmd_identifier_token34] = ACTIONS(1981), - [aux_sym_cmd_identifier_token35] = ACTIONS(1983), - [aux_sym_cmd_identifier_token36] = ACTIONS(1983), - [aux_sym_cmd_identifier_token37] = ACTIONS(1983), - [aux_sym_cmd_identifier_token38] = ACTIONS(1981), - [aux_sym_cmd_identifier_token39] = ACTIONS(1983), - [aux_sym_cmd_identifier_token40] = ACTIONS(1983), - [anon_sym_def] = ACTIONS(1981), - [anon_sym_export_DASHenv] = ACTIONS(1981), - [anon_sym_extern] = ACTIONS(1981), - [anon_sym_module] = ACTIONS(1981), - [anon_sym_use] = ACTIONS(1981), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1983), - [anon_sym_error] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_break] = ACTIONS(1981), - [anon_sym_continue] = ACTIONS(1981), - [anon_sym_for] = ACTIONS(1981), - [anon_sym_in2] = ACTIONS(1981), - [anon_sym_loop] = ACTIONS(1981), - [anon_sym_make] = ACTIONS(1981), - [anon_sym_while] = ACTIONS(1981), - [anon_sym_do] = ACTIONS(1981), - [anon_sym_if] = ACTIONS(1981), - [anon_sym_else] = ACTIONS(1981), - [anon_sym_match] = ACTIONS(1981), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_try] = ACTIONS(1981), - [anon_sym_catch] = ACTIONS(1981), - [anon_sym_return] = ACTIONS(1981), - [anon_sym_source] = ACTIONS(1981), - [anon_sym_source_DASHenv] = ACTIONS(1981), - [anon_sym_register] = ACTIONS(1981), - [anon_sym_hide] = ACTIONS(1981), - [anon_sym_hide_DASHenv] = ACTIONS(1981), - [anon_sym_overlay] = ACTIONS(1981), - [anon_sym_as] = ACTIONS(1981), - [anon_sym_PLUS2] = ACTIONS(1981), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1981), - [aux_sym__val_number_token5] = ACTIONS(1981), - [aux_sym__val_number_token6] = ACTIONS(1981), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1983), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [699] = { - [sym_comment] = STATE(699), - [anon_sym_export] = ACTIONS(1985), - [anon_sym_alias] = ACTIONS(1985), - [anon_sym_let] = ACTIONS(1985), - [anon_sym_let_DASHenv] = ACTIONS(1985), - [anon_sym_mut] = ACTIONS(1985), - [anon_sym_const] = ACTIONS(1985), - [aux_sym_cmd_identifier_token1] = ACTIONS(1985), - [aux_sym_cmd_identifier_token2] = ACTIONS(1987), - [aux_sym_cmd_identifier_token3] = ACTIONS(1987), - [aux_sym_cmd_identifier_token4] = ACTIONS(1987), - [aux_sym_cmd_identifier_token5] = ACTIONS(1987), - [aux_sym_cmd_identifier_token6] = ACTIONS(1987), - [aux_sym_cmd_identifier_token7] = ACTIONS(1987), - [aux_sym_cmd_identifier_token8] = ACTIONS(1985), - [aux_sym_cmd_identifier_token9] = ACTIONS(1985), - [aux_sym_cmd_identifier_token10] = ACTIONS(1987), - [aux_sym_cmd_identifier_token11] = ACTIONS(1987), - [aux_sym_cmd_identifier_token12] = ACTIONS(1985), - [aux_sym_cmd_identifier_token13] = ACTIONS(1985), - [aux_sym_cmd_identifier_token14] = ACTIONS(1985), - [aux_sym_cmd_identifier_token15] = ACTIONS(1985), - [aux_sym_cmd_identifier_token16] = ACTIONS(1987), - [aux_sym_cmd_identifier_token17] = ACTIONS(1987), - [aux_sym_cmd_identifier_token18] = ACTIONS(1987), - [aux_sym_cmd_identifier_token19] = ACTIONS(1987), - [aux_sym_cmd_identifier_token20] = ACTIONS(1987), - [aux_sym_cmd_identifier_token21] = ACTIONS(1987), - [aux_sym_cmd_identifier_token22] = ACTIONS(1987), - [aux_sym_cmd_identifier_token23] = ACTIONS(1987), - [aux_sym_cmd_identifier_token24] = ACTIONS(1987), - [aux_sym_cmd_identifier_token25] = ACTIONS(1987), - [aux_sym_cmd_identifier_token26] = ACTIONS(1987), - [aux_sym_cmd_identifier_token27] = ACTIONS(1987), - [aux_sym_cmd_identifier_token28] = ACTIONS(1987), - [aux_sym_cmd_identifier_token29] = ACTIONS(1987), - [aux_sym_cmd_identifier_token30] = ACTIONS(1987), - [aux_sym_cmd_identifier_token31] = ACTIONS(1987), - [aux_sym_cmd_identifier_token32] = ACTIONS(1987), - [aux_sym_cmd_identifier_token33] = ACTIONS(1987), - [aux_sym_cmd_identifier_token34] = ACTIONS(1985), - [aux_sym_cmd_identifier_token35] = ACTIONS(1987), - [aux_sym_cmd_identifier_token36] = ACTIONS(1987), - [aux_sym_cmd_identifier_token37] = ACTIONS(1987), - [aux_sym_cmd_identifier_token38] = ACTIONS(1985), - [aux_sym_cmd_identifier_token39] = ACTIONS(1987), - [aux_sym_cmd_identifier_token40] = ACTIONS(1987), - [anon_sym_def] = ACTIONS(1985), - [anon_sym_export_DASHenv] = ACTIONS(1985), - [anon_sym_extern] = ACTIONS(1985), - [anon_sym_module] = ACTIONS(1985), - [anon_sym_use] = ACTIONS(1985), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1987), - [anon_sym_error] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_break] = ACTIONS(1985), - [anon_sym_continue] = ACTIONS(1985), - [anon_sym_for] = ACTIONS(1985), - [anon_sym_in2] = ACTIONS(1985), - [anon_sym_loop] = ACTIONS(1985), - [anon_sym_make] = ACTIONS(1985), - [anon_sym_while] = ACTIONS(1985), - [anon_sym_do] = ACTIONS(1985), - [anon_sym_if] = ACTIONS(1985), - [anon_sym_else] = ACTIONS(1985), - [anon_sym_match] = ACTIONS(1985), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_try] = ACTIONS(1985), - [anon_sym_catch] = ACTIONS(1985), - [anon_sym_return] = ACTIONS(1985), - [anon_sym_source] = ACTIONS(1985), - [anon_sym_source_DASHenv] = ACTIONS(1985), - [anon_sym_register] = ACTIONS(1985), - [anon_sym_hide] = ACTIONS(1985), - [anon_sym_hide_DASHenv] = ACTIONS(1985), - [anon_sym_overlay] = ACTIONS(1985), - [anon_sym_as] = ACTIONS(1985), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1985), - [aux_sym__val_number_token5] = ACTIONS(1985), - [aux_sym__val_number_token6] = ACTIONS(1985), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1987), + [sym__entry_separator] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2455), }, - [700] = { - [sym_comment] = STATE(700), - [anon_sym_export] = ACTIONS(2505), - [anon_sym_alias] = ACTIONS(2505), - [anon_sym_let] = ACTIONS(2505), - [anon_sym_let_DASHenv] = ACTIONS(2505), - [anon_sym_mut] = ACTIONS(2505), - [anon_sym_const] = ACTIONS(2505), - [aux_sym_cmd_identifier_token1] = ACTIONS(2505), - [aux_sym_cmd_identifier_token2] = ACTIONS(2507), - [aux_sym_cmd_identifier_token3] = ACTIONS(2507), - [aux_sym_cmd_identifier_token4] = ACTIONS(2507), - [aux_sym_cmd_identifier_token5] = ACTIONS(2507), - [aux_sym_cmd_identifier_token6] = ACTIONS(2507), - [aux_sym_cmd_identifier_token7] = ACTIONS(2507), - [aux_sym_cmd_identifier_token8] = ACTIONS(2505), - [aux_sym_cmd_identifier_token9] = ACTIONS(2505), - [aux_sym_cmd_identifier_token10] = ACTIONS(2507), - [aux_sym_cmd_identifier_token11] = ACTIONS(2507), - [aux_sym_cmd_identifier_token12] = ACTIONS(2505), - [aux_sym_cmd_identifier_token13] = ACTIONS(2505), - [aux_sym_cmd_identifier_token14] = ACTIONS(2505), - [aux_sym_cmd_identifier_token15] = ACTIONS(2505), - [aux_sym_cmd_identifier_token16] = ACTIONS(2507), - [aux_sym_cmd_identifier_token17] = ACTIONS(2507), - [aux_sym_cmd_identifier_token18] = ACTIONS(2507), - [aux_sym_cmd_identifier_token19] = ACTIONS(2507), - [aux_sym_cmd_identifier_token20] = ACTIONS(2507), - [aux_sym_cmd_identifier_token21] = ACTIONS(2507), - [aux_sym_cmd_identifier_token22] = ACTIONS(2507), - [aux_sym_cmd_identifier_token23] = ACTIONS(2507), - [aux_sym_cmd_identifier_token24] = ACTIONS(2507), - [aux_sym_cmd_identifier_token25] = ACTIONS(2507), - [aux_sym_cmd_identifier_token26] = ACTIONS(2507), - [aux_sym_cmd_identifier_token27] = ACTIONS(2507), - [aux_sym_cmd_identifier_token28] = ACTIONS(2507), - [aux_sym_cmd_identifier_token29] = ACTIONS(2507), - [aux_sym_cmd_identifier_token30] = ACTIONS(2507), - [aux_sym_cmd_identifier_token31] = ACTIONS(2507), - [aux_sym_cmd_identifier_token32] = ACTIONS(2507), - [aux_sym_cmd_identifier_token33] = ACTIONS(2507), - [aux_sym_cmd_identifier_token34] = ACTIONS(2505), - [aux_sym_cmd_identifier_token35] = ACTIONS(2507), - [aux_sym_cmd_identifier_token36] = ACTIONS(2507), - [aux_sym_cmd_identifier_token37] = ACTIONS(2507), - [aux_sym_cmd_identifier_token38] = ACTIONS(2505), - [aux_sym_cmd_identifier_token39] = ACTIONS(2507), - [aux_sym_cmd_identifier_token40] = ACTIONS(2507), - [anon_sym_def] = ACTIONS(2505), - [anon_sym_export_DASHenv] = ACTIONS(2505), - [anon_sym_extern] = ACTIONS(2505), - [anon_sym_module] = ACTIONS(2505), - [anon_sym_use] = ACTIONS(2505), - [anon_sym_LPAREN] = ACTIONS(2507), - [anon_sym_DOLLAR] = ACTIONS(2507), - [anon_sym_error] = ACTIONS(2505), - [anon_sym_DASH2] = ACTIONS(2505), - [anon_sym_break] = ACTIONS(2505), - [anon_sym_continue] = ACTIONS(2505), - [anon_sym_for] = ACTIONS(2505), - [anon_sym_in2] = ACTIONS(2505), - [anon_sym_loop] = ACTIONS(2505), - [anon_sym_make] = ACTIONS(2505), - [anon_sym_while] = ACTIONS(2505), - [anon_sym_do] = ACTIONS(2505), - [anon_sym_if] = ACTIONS(2505), - [anon_sym_else] = ACTIONS(2505), - [anon_sym_match] = ACTIONS(2505), - [anon_sym_RBRACE] = ACTIONS(2507), - [anon_sym_try] = ACTIONS(2505), - [anon_sym_catch] = ACTIONS(2505), - [anon_sym_return] = ACTIONS(2505), - [anon_sym_source] = ACTIONS(2505), - [anon_sym_source_DASHenv] = ACTIONS(2505), - [anon_sym_register] = ACTIONS(2505), - [anon_sym_hide] = ACTIONS(2505), - [anon_sym_hide_DASHenv] = ACTIONS(2505), - [anon_sym_overlay] = ACTIONS(2505), - [anon_sym_as] = ACTIONS(2505), - [anon_sym_PLUS2] = ACTIONS(2505), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2507), - [aux_sym__val_number_decimal_token1] = ACTIONS(2505), - [aux_sym__val_number_decimal_token2] = ACTIONS(2507), - [aux_sym__val_number_decimal_token3] = ACTIONS(2507), - [aux_sym__val_number_decimal_token4] = ACTIONS(2507), - [aux_sym__val_number_token1] = ACTIONS(2507), - [aux_sym__val_number_token2] = ACTIONS(2507), - [aux_sym__val_number_token3] = ACTIONS(2507), - [aux_sym__val_number_token4] = ACTIONS(2505), - [aux_sym__val_number_token5] = ACTIONS(2505), - [aux_sym__val_number_token6] = ACTIONS(2505), - [anon_sym_DQUOTE] = ACTIONS(2507), - [sym__str_single_quotes] = ACTIONS(2507), - [sym__str_back_ticks] = ACTIONS(2507), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2507), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2507), + [652] = { + [sym_comment] = STATE(652), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2453), + [aux_sym_cmd_identifier_token3] = ACTIONS(2453), + [aux_sym_cmd_identifier_token4] = ACTIONS(2453), + [aux_sym_cmd_identifier_token5] = ACTIONS(2453), + [aux_sym_cmd_identifier_token6] = ACTIONS(2453), + [aux_sym_cmd_identifier_token7] = ACTIONS(2453), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2453), + [aux_sym_cmd_identifier_token11] = ACTIONS(2453), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2453), + [aux_sym_cmd_identifier_token17] = ACTIONS(2453), + [aux_sym_cmd_identifier_token18] = ACTIONS(2453), + [aux_sym_cmd_identifier_token19] = ACTIONS(2453), + [aux_sym_cmd_identifier_token20] = ACTIONS(2453), + [aux_sym_cmd_identifier_token21] = ACTIONS(2453), + [aux_sym_cmd_identifier_token22] = ACTIONS(2453), + [aux_sym_cmd_identifier_token23] = ACTIONS(2453), + [aux_sym_cmd_identifier_token24] = ACTIONS(2453), + [aux_sym_cmd_identifier_token25] = ACTIONS(2453), + [aux_sym_cmd_identifier_token26] = ACTIONS(2453), + [aux_sym_cmd_identifier_token27] = ACTIONS(2453), + [aux_sym_cmd_identifier_token28] = ACTIONS(2453), + [aux_sym_cmd_identifier_token29] = ACTIONS(2453), + [aux_sym_cmd_identifier_token30] = ACTIONS(2453), + [aux_sym_cmd_identifier_token31] = ACTIONS(2453), + [aux_sym_cmd_identifier_token32] = ACTIONS(2453), + [aux_sym_cmd_identifier_token33] = ACTIONS(2453), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2453), + [aux_sym_cmd_identifier_token36] = ACTIONS(2453), + [aux_sym_cmd_identifier_token37] = ACTIONS(2453), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2453), + [aux_sym_cmd_identifier_token40] = ACTIONS(2453), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2453), + [anon_sym_COMMA] = ACTIONS(2453), + [anon_sym_DOLLAR] = ACTIONS(2453), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2453), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2453), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2453), + [aux_sym__val_number_decimal_token3] = ACTIONS(2453), + [aux_sym__val_number_decimal_token4] = ACTIONS(2453), + [aux_sym__val_number_token1] = ACTIONS(2453), + [aux_sym__val_number_token2] = ACTIONS(2453), + [aux_sym__val_number_token3] = ACTIONS(2453), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2453), + [sym__str_single_quotes] = ACTIONS(2453), + [sym__str_back_ticks] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2453), + [sym__entry_separator] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2455), }, - [701] = { - [sym_comment] = STATE(701), - [anon_sym_export] = ACTIONS(1997), - [anon_sym_alias] = ACTIONS(1997), - [anon_sym_let] = ACTIONS(1997), - [anon_sym_let_DASHenv] = ACTIONS(1997), - [anon_sym_mut] = ACTIONS(1997), - [anon_sym_const] = ACTIONS(1997), - [aux_sym_cmd_identifier_token1] = ACTIONS(1997), - [aux_sym_cmd_identifier_token2] = ACTIONS(1999), - [aux_sym_cmd_identifier_token3] = ACTIONS(1999), - [aux_sym_cmd_identifier_token4] = ACTIONS(1999), - [aux_sym_cmd_identifier_token5] = ACTIONS(1999), - [aux_sym_cmd_identifier_token6] = ACTIONS(1999), - [aux_sym_cmd_identifier_token7] = ACTIONS(1999), - [aux_sym_cmd_identifier_token8] = ACTIONS(1997), - [aux_sym_cmd_identifier_token9] = ACTIONS(1997), - [aux_sym_cmd_identifier_token10] = ACTIONS(1999), - [aux_sym_cmd_identifier_token11] = ACTIONS(1999), - [aux_sym_cmd_identifier_token12] = ACTIONS(1997), - [aux_sym_cmd_identifier_token13] = ACTIONS(1997), - [aux_sym_cmd_identifier_token14] = ACTIONS(1997), - [aux_sym_cmd_identifier_token15] = ACTIONS(1997), - [aux_sym_cmd_identifier_token16] = ACTIONS(1999), - [aux_sym_cmd_identifier_token17] = ACTIONS(1999), - [aux_sym_cmd_identifier_token18] = ACTIONS(1999), - [aux_sym_cmd_identifier_token19] = ACTIONS(1999), - [aux_sym_cmd_identifier_token20] = ACTIONS(1999), - [aux_sym_cmd_identifier_token21] = ACTIONS(1999), - [aux_sym_cmd_identifier_token22] = ACTIONS(1999), - [aux_sym_cmd_identifier_token23] = ACTIONS(1999), - [aux_sym_cmd_identifier_token24] = ACTIONS(1999), - [aux_sym_cmd_identifier_token25] = ACTIONS(1999), - [aux_sym_cmd_identifier_token26] = ACTIONS(1999), - [aux_sym_cmd_identifier_token27] = ACTIONS(1999), - [aux_sym_cmd_identifier_token28] = ACTIONS(1999), - [aux_sym_cmd_identifier_token29] = ACTIONS(1999), - [aux_sym_cmd_identifier_token30] = ACTIONS(1999), - [aux_sym_cmd_identifier_token31] = ACTIONS(1999), - [aux_sym_cmd_identifier_token32] = ACTIONS(1999), - [aux_sym_cmd_identifier_token33] = ACTIONS(1999), - [aux_sym_cmd_identifier_token34] = ACTIONS(1997), - [aux_sym_cmd_identifier_token35] = ACTIONS(1999), - [aux_sym_cmd_identifier_token36] = ACTIONS(1999), - [aux_sym_cmd_identifier_token37] = ACTIONS(1999), - [aux_sym_cmd_identifier_token38] = ACTIONS(1997), - [aux_sym_cmd_identifier_token39] = ACTIONS(1999), - [aux_sym_cmd_identifier_token40] = ACTIONS(1999), - [anon_sym_def] = ACTIONS(1997), - [anon_sym_export_DASHenv] = ACTIONS(1997), - [anon_sym_extern] = ACTIONS(1997), - [anon_sym_module] = ACTIONS(1997), - [anon_sym_use] = ACTIONS(1997), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1999), - [anon_sym_error] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_break] = ACTIONS(1997), - [anon_sym_continue] = ACTIONS(1997), - [anon_sym_for] = ACTIONS(1997), - [anon_sym_in2] = ACTIONS(1997), - [anon_sym_loop] = ACTIONS(1997), - [anon_sym_make] = ACTIONS(1997), - [anon_sym_while] = ACTIONS(1997), - [anon_sym_do] = ACTIONS(1997), - [anon_sym_if] = ACTIONS(1997), - [anon_sym_else] = ACTIONS(1997), - [anon_sym_match] = ACTIONS(1997), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_try] = ACTIONS(1997), - [anon_sym_catch] = ACTIONS(1997), - [anon_sym_return] = ACTIONS(1997), - [anon_sym_source] = ACTIONS(1997), - [anon_sym_source_DASHenv] = ACTIONS(1997), - [anon_sym_register] = ACTIONS(1997), - [anon_sym_hide] = ACTIONS(1997), - [anon_sym_hide_DASHenv] = ACTIONS(1997), - [anon_sym_overlay] = ACTIONS(1997), - [anon_sym_as] = ACTIONS(1997), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1997), - [aux_sym__val_number_token5] = ACTIONS(1997), - [aux_sym__val_number_token6] = ACTIONS(1997), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), + [653] = { + [sym_comment] = STATE(653), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2457), + [aux_sym_cmd_identifier_token3] = ACTIONS(2457), + [aux_sym_cmd_identifier_token4] = ACTIONS(2457), + [aux_sym_cmd_identifier_token5] = ACTIONS(2457), + [aux_sym_cmd_identifier_token6] = ACTIONS(2457), + [aux_sym_cmd_identifier_token7] = ACTIONS(2457), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2457), + [aux_sym_cmd_identifier_token11] = ACTIONS(2457), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2457), + [aux_sym_cmd_identifier_token17] = ACTIONS(2457), + [aux_sym_cmd_identifier_token18] = ACTIONS(2457), + [aux_sym_cmd_identifier_token19] = ACTIONS(2457), + [aux_sym_cmd_identifier_token20] = ACTIONS(2457), + [aux_sym_cmd_identifier_token21] = ACTIONS(2457), + [aux_sym_cmd_identifier_token22] = ACTIONS(2457), + [aux_sym_cmd_identifier_token23] = ACTIONS(2457), + [aux_sym_cmd_identifier_token24] = ACTIONS(2457), + [aux_sym_cmd_identifier_token25] = ACTIONS(2457), + [aux_sym_cmd_identifier_token26] = ACTIONS(2457), + [aux_sym_cmd_identifier_token27] = ACTIONS(2457), + [aux_sym_cmd_identifier_token28] = ACTIONS(2457), + [aux_sym_cmd_identifier_token29] = ACTIONS(2457), + [aux_sym_cmd_identifier_token30] = ACTIONS(2457), + [aux_sym_cmd_identifier_token31] = ACTIONS(2457), + [aux_sym_cmd_identifier_token32] = ACTIONS(2457), + [aux_sym_cmd_identifier_token33] = ACTIONS(2457), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2457), + [aux_sym_cmd_identifier_token36] = ACTIONS(2457), + [aux_sym_cmd_identifier_token37] = ACTIONS(2457), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2457), + [aux_sym_cmd_identifier_token40] = ACTIONS(2457), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2457), + [anon_sym_COMMA] = ACTIONS(2457), + [anon_sym_DOLLAR] = ACTIONS(2457), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in2] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2457), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2457), + [aux_sym__val_number_decimal_token3] = ACTIONS(2457), + [aux_sym__val_number_decimal_token4] = ACTIONS(2457), + [aux_sym__val_number_token1] = ACTIONS(2457), + [aux_sym__val_number_token2] = ACTIONS(2457), + [aux_sym__val_number_token3] = ACTIONS(2457), + [aux_sym__val_number_token4] = ACTIONS(2457), + [aux_sym__val_number_token5] = ACTIONS(2457), + [aux_sym__val_number_token6] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2457), + [sym__str_single_quotes] = ACTIONS(2457), + [sym__str_back_ticks] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), + [sym__entry_separator] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2459), }, - [702] = { - [sym_comment] = STATE(702), - [anon_sym_export] = ACTIONS(2459), - [anon_sym_alias] = ACTIONS(2459), - [anon_sym_let] = ACTIONS(2459), - [anon_sym_let_DASHenv] = ACTIONS(2459), - [anon_sym_mut] = ACTIONS(2459), - [anon_sym_const] = ACTIONS(2459), - [aux_sym_cmd_identifier_token1] = ACTIONS(2459), + [654] = { + [sym_comment] = STATE(654), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), [aux_sym_cmd_identifier_token2] = ACTIONS(2461), [aux_sym_cmd_identifier_token3] = ACTIONS(2461), [aux_sym_cmd_identifier_token4] = ACTIONS(2461), [aux_sym_cmd_identifier_token5] = ACTIONS(2461), [aux_sym_cmd_identifier_token6] = ACTIONS(2461), [aux_sym_cmd_identifier_token7] = ACTIONS(2461), - [aux_sym_cmd_identifier_token8] = ACTIONS(2459), - [aux_sym_cmd_identifier_token9] = ACTIONS(2459), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), [aux_sym_cmd_identifier_token10] = ACTIONS(2461), [aux_sym_cmd_identifier_token11] = ACTIONS(2461), - [aux_sym_cmd_identifier_token12] = ACTIONS(2459), - [aux_sym_cmd_identifier_token13] = ACTIONS(2459), - [aux_sym_cmd_identifier_token14] = ACTIONS(2459), - [aux_sym_cmd_identifier_token15] = ACTIONS(2459), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), [aux_sym_cmd_identifier_token16] = ACTIONS(2461), [aux_sym_cmd_identifier_token17] = ACTIONS(2461), [aux_sym_cmd_identifier_token18] = ACTIONS(2461), @@ -154958,87 +150487,89 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2461), [aux_sym_cmd_identifier_token32] = ACTIONS(2461), [aux_sym_cmd_identifier_token33] = ACTIONS(2461), - [aux_sym_cmd_identifier_token34] = ACTIONS(2459), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), [aux_sym_cmd_identifier_token35] = ACTIONS(2461), [aux_sym_cmd_identifier_token36] = ACTIONS(2461), [aux_sym_cmd_identifier_token37] = ACTIONS(2461), - [aux_sym_cmd_identifier_token38] = ACTIONS(2459), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), [aux_sym_cmd_identifier_token39] = ACTIONS(2461), [aux_sym_cmd_identifier_token40] = ACTIONS(2461), - [anon_sym_def] = ACTIONS(2459), - [anon_sym_export_DASHenv] = ACTIONS(2459), - [anon_sym_extern] = ACTIONS(2459), - [anon_sym_module] = ACTIONS(2459), - [anon_sym_use] = ACTIONS(2459), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), [anon_sym_LPAREN] = ACTIONS(2461), + [anon_sym_COMMA] = ACTIONS(2461), [anon_sym_DOLLAR] = ACTIONS(2461), - [anon_sym_error] = ACTIONS(2459), - [anon_sym_DASH2] = ACTIONS(2459), - [anon_sym_break] = ACTIONS(2459), - [anon_sym_continue] = ACTIONS(2459), - [anon_sym_for] = ACTIONS(2459), - [anon_sym_in2] = ACTIONS(2459), - [anon_sym_loop] = ACTIONS(2459), - [anon_sym_make] = ACTIONS(2459), - [anon_sym_while] = ACTIONS(2459), - [anon_sym_do] = ACTIONS(2459), - [anon_sym_if] = ACTIONS(2459), - [anon_sym_else] = ACTIONS(2459), - [anon_sym_match] = ACTIONS(2459), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in2] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), [anon_sym_RBRACE] = ACTIONS(2461), - [anon_sym_try] = ACTIONS(2459), - [anon_sym_catch] = ACTIONS(2459), - [anon_sym_return] = ACTIONS(2459), - [anon_sym_source] = ACTIONS(2459), - [anon_sym_source_DASHenv] = ACTIONS(2459), - [anon_sym_register] = ACTIONS(2459), - [anon_sym_hide] = ACTIONS(2459), - [anon_sym_hide_DASHenv] = ACTIONS(2459), - [anon_sym_overlay] = ACTIONS(2459), - [anon_sym_as] = ACTIONS(2459), - [anon_sym_PLUS2] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2461), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2461), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2461), - [aux_sym__val_number_decimal_token1] = ACTIONS(2459), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), [aux_sym__val_number_decimal_token2] = ACTIONS(2461), [aux_sym__val_number_decimal_token3] = ACTIONS(2461), [aux_sym__val_number_decimal_token4] = ACTIONS(2461), [aux_sym__val_number_token1] = ACTIONS(2461), [aux_sym__val_number_token2] = ACTIONS(2461), [aux_sym__val_number_token3] = ACTIONS(2461), - [aux_sym__val_number_token4] = ACTIONS(2459), - [aux_sym__val_number_token5] = ACTIONS(2459), - [aux_sym__val_number_token6] = ACTIONS(2459), + [aux_sym__val_number_token4] = ACTIONS(2461), + [aux_sym__val_number_token5] = ACTIONS(2461), + [aux_sym__val_number_token6] = ACTIONS(2461), [anon_sym_DQUOTE] = ACTIONS(2461), [sym__str_single_quotes] = ACTIONS(2461), [sym__str_back_ticks] = ACTIONS(2461), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2461), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2461), + [sym__entry_separator] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2463), }, - [703] = { - [sym_comment] = STATE(703), - [anon_sym_export] = ACTIONS(2463), - [anon_sym_alias] = ACTIONS(2463), - [anon_sym_let] = ACTIONS(2463), - [anon_sym_let_DASHenv] = ACTIONS(2463), - [anon_sym_mut] = ACTIONS(2463), - [anon_sym_const] = ACTIONS(2463), - [aux_sym_cmd_identifier_token1] = ACTIONS(2463), + [655] = { + [sym_comment] = STATE(655), + [anon_sym_export] = ACTIONS(2465), + [anon_sym_alias] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_let_DASHenv] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [aux_sym_cmd_identifier_token1] = ACTIONS(2465), [aux_sym_cmd_identifier_token2] = ACTIONS(2465), [aux_sym_cmd_identifier_token3] = ACTIONS(2465), [aux_sym_cmd_identifier_token4] = ACTIONS(2465), [aux_sym_cmd_identifier_token5] = ACTIONS(2465), [aux_sym_cmd_identifier_token6] = ACTIONS(2465), [aux_sym_cmd_identifier_token7] = ACTIONS(2465), - [aux_sym_cmd_identifier_token8] = ACTIONS(2463), - [aux_sym_cmd_identifier_token9] = ACTIONS(2463), + [aux_sym_cmd_identifier_token8] = ACTIONS(2465), + [aux_sym_cmd_identifier_token9] = ACTIONS(2465), [aux_sym_cmd_identifier_token10] = ACTIONS(2465), [aux_sym_cmd_identifier_token11] = ACTIONS(2465), - [aux_sym_cmd_identifier_token12] = ACTIONS(2463), - [aux_sym_cmd_identifier_token13] = ACTIONS(2463), - [aux_sym_cmd_identifier_token14] = ACTIONS(2463), - [aux_sym_cmd_identifier_token15] = ACTIONS(2463), + [aux_sym_cmd_identifier_token12] = ACTIONS(2465), + [aux_sym_cmd_identifier_token13] = ACTIONS(2465), + [aux_sym_cmd_identifier_token14] = ACTIONS(2465), + [aux_sym_cmd_identifier_token15] = ACTIONS(2465), [aux_sym_cmd_identifier_token16] = ACTIONS(2465), [aux_sym_cmd_identifier_token17] = ACTIONS(2465), [aux_sym_cmd_identifier_token18] = ACTIONS(2465), @@ -155057,363 +150588,371 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2465), [aux_sym_cmd_identifier_token32] = ACTIONS(2465), [aux_sym_cmd_identifier_token33] = ACTIONS(2465), - [aux_sym_cmd_identifier_token34] = ACTIONS(2463), + [aux_sym_cmd_identifier_token34] = ACTIONS(2465), [aux_sym_cmd_identifier_token35] = ACTIONS(2465), [aux_sym_cmd_identifier_token36] = ACTIONS(2465), [aux_sym_cmd_identifier_token37] = ACTIONS(2465), - [aux_sym_cmd_identifier_token38] = ACTIONS(2463), + [aux_sym_cmd_identifier_token38] = ACTIONS(2465), [aux_sym_cmd_identifier_token39] = ACTIONS(2465), [aux_sym_cmd_identifier_token40] = ACTIONS(2465), - [anon_sym_def] = ACTIONS(2463), - [anon_sym_export_DASHenv] = ACTIONS(2463), - [anon_sym_extern] = ACTIONS(2463), - [anon_sym_module] = ACTIONS(2463), - [anon_sym_use] = ACTIONS(2463), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_export_DASHenv] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_module] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), [anon_sym_LPAREN] = ACTIONS(2465), + [anon_sym_COMMA] = ACTIONS(2465), [anon_sym_DOLLAR] = ACTIONS(2465), - [anon_sym_error] = ACTIONS(2463), - [anon_sym_DASH2] = ACTIONS(2463), - [anon_sym_break] = ACTIONS(2463), - [anon_sym_continue] = ACTIONS(2463), - [anon_sym_for] = ACTIONS(2463), - [anon_sym_in2] = ACTIONS(2463), - [anon_sym_loop] = ACTIONS(2463), - [anon_sym_make] = ACTIONS(2463), - [anon_sym_while] = ACTIONS(2463), - [anon_sym_do] = ACTIONS(2463), - [anon_sym_if] = ACTIONS(2463), - [anon_sym_else] = ACTIONS(2463), - [anon_sym_match] = ACTIONS(2463), + [anon_sym_error] = ACTIONS(2465), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_in2] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_make] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), [anon_sym_RBRACE] = ACTIONS(2465), - [anon_sym_try] = ACTIONS(2463), - [anon_sym_catch] = ACTIONS(2463), - [anon_sym_return] = ACTIONS(2463), - [anon_sym_source] = ACTIONS(2463), - [anon_sym_source_DASHenv] = ACTIONS(2463), - [anon_sym_register] = ACTIONS(2463), - [anon_sym_hide] = ACTIONS(2463), - [anon_sym_hide_DASHenv] = ACTIONS(2463), - [anon_sym_overlay] = ACTIONS(2463), - [anon_sym_as] = ACTIONS(2463), - [anon_sym_PLUS2] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_catch] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_source] = ACTIONS(2465), + [anon_sym_source_DASHenv] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_hide] = ACTIONS(2465), + [anon_sym_hide_DASHenv] = ACTIONS(2465), + [anon_sym_overlay] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2465), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2465), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2465), - [aux_sym__val_number_decimal_token1] = ACTIONS(2463), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), [aux_sym__val_number_decimal_token2] = ACTIONS(2465), [aux_sym__val_number_decimal_token3] = ACTIONS(2465), [aux_sym__val_number_decimal_token4] = ACTIONS(2465), [aux_sym__val_number_token1] = ACTIONS(2465), [aux_sym__val_number_token2] = ACTIONS(2465), [aux_sym__val_number_token3] = ACTIONS(2465), - [aux_sym__val_number_token4] = ACTIONS(2463), - [aux_sym__val_number_token5] = ACTIONS(2463), - [aux_sym__val_number_token6] = ACTIONS(2463), + [aux_sym__val_number_token4] = ACTIONS(2465), + [aux_sym__val_number_token5] = ACTIONS(2465), + [aux_sym__val_number_token6] = ACTIONS(2465), [anon_sym_DQUOTE] = ACTIONS(2465), [sym__str_single_quotes] = ACTIONS(2465), [sym__str_back_ticks] = ACTIONS(2465), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2465), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2465), - }, - [704] = { - [sym_comment] = STATE(704), - [anon_sym_export] = ACTIONS(2001), - [anon_sym_alias] = ACTIONS(2001), - [anon_sym_let] = ACTIONS(2001), - [anon_sym_let_DASHenv] = ACTIONS(2001), - [anon_sym_mut] = ACTIONS(2001), - [anon_sym_const] = ACTIONS(2001), - [aux_sym_cmd_identifier_token1] = ACTIONS(2001), - [aux_sym_cmd_identifier_token2] = ACTIONS(2003), - [aux_sym_cmd_identifier_token3] = ACTIONS(2003), - [aux_sym_cmd_identifier_token4] = ACTIONS(2003), - [aux_sym_cmd_identifier_token5] = ACTIONS(2003), - [aux_sym_cmd_identifier_token6] = ACTIONS(2003), - [aux_sym_cmd_identifier_token7] = ACTIONS(2003), - [aux_sym_cmd_identifier_token8] = ACTIONS(2001), - [aux_sym_cmd_identifier_token9] = ACTIONS(2001), - [aux_sym_cmd_identifier_token10] = ACTIONS(2003), - [aux_sym_cmd_identifier_token11] = ACTIONS(2003), - [aux_sym_cmd_identifier_token12] = ACTIONS(2001), - [aux_sym_cmd_identifier_token13] = ACTIONS(2001), - [aux_sym_cmd_identifier_token14] = ACTIONS(2001), - [aux_sym_cmd_identifier_token15] = ACTIONS(2001), - [aux_sym_cmd_identifier_token16] = ACTIONS(2003), - [aux_sym_cmd_identifier_token17] = ACTIONS(2003), - [aux_sym_cmd_identifier_token18] = ACTIONS(2003), - [aux_sym_cmd_identifier_token19] = ACTIONS(2003), - [aux_sym_cmd_identifier_token20] = ACTIONS(2003), - [aux_sym_cmd_identifier_token21] = ACTIONS(2003), - [aux_sym_cmd_identifier_token22] = ACTIONS(2003), - [aux_sym_cmd_identifier_token23] = ACTIONS(2003), - [aux_sym_cmd_identifier_token24] = ACTIONS(2003), - [aux_sym_cmd_identifier_token25] = ACTIONS(2003), - [aux_sym_cmd_identifier_token26] = ACTIONS(2003), - [aux_sym_cmd_identifier_token27] = ACTIONS(2003), - [aux_sym_cmd_identifier_token28] = ACTIONS(2003), - [aux_sym_cmd_identifier_token29] = ACTIONS(2003), - [aux_sym_cmd_identifier_token30] = ACTIONS(2003), - [aux_sym_cmd_identifier_token31] = ACTIONS(2003), - [aux_sym_cmd_identifier_token32] = ACTIONS(2003), - [aux_sym_cmd_identifier_token33] = ACTIONS(2003), - [aux_sym_cmd_identifier_token34] = ACTIONS(2001), - [aux_sym_cmd_identifier_token35] = ACTIONS(2003), - [aux_sym_cmd_identifier_token36] = ACTIONS(2003), - [aux_sym_cmd_identifier_token37] = ACTIONS(2003), - [aux_sym_cmd_identifier_token38] = ACTIONS(2001), - [aux_sym_cmd_identifier_token39] = ACTIONS(2003), - [aux_sym_cmd_identifier_token40] = ACTIONS(2003), - [anon_sym_def] = ACTIONS(2001), - [anon_sym_export_DASHenv] = ACTIONS(2001), - [anon_sym_extern] = ACTIONS(2001), - [anon_sym_module] = ACTIONS(2001), - [anon_sym_use] = ACTIONS(2001), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2003), - [anon_sym_error] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_break] = ACTIONS(2001), - [anon_sym_continue] = ACTIONS(2001), - [anon_sym_for] = ACTIONS(2001), - [anon_sym_in2] = ACTIONS(2001), - [anon_sym_loop] = ACTIONS(2001), - [anon_sym_make] = ACTIONS(2001), - [anon_sym_while] = ACTIONS(2001), - [anon_sym_do] = ACTIONS(2001), - [anon_sym_if] = ACTIONS(2001), - [anon_sym_else] = ACTIONS(2001), - [anon_sym_match] = ACTIONS(2001), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_try] = ACTIONS(2001), - [anon_sym_catch] = ACTIONS(2001), - [anon_sym_return] = ACTIONS(2001), - [anon_sym_source] = ACTIONS(2001), - [anon_sym_source_DASHenv] = ACTIONS(2001), - [anon_sym_register] = ACTIONS(2001), - [anon_sym_hide] = ACTIONS(2001), - [anon_sym_hide_DASHenv] = ACTIONS(2001), - [anon_sym_overlay] = ACTIONS(2001), - [anon_sym_as] = ACTIONS(2001), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2001), - [aux_sym__val_number_token5] = ACTIONS(2001), - [aux_sym__val_number_token6] = ACTIONS(2001), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2003), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2003), + [sym__entry_separator] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2467), }, - [705] = { - [sym_comment] = STATE(705), - [anon_sym_export] = ACTIONS(2009), - [anon_sym_alias] = ACTIONS(2009), - [anon_sym_let] = ACTIONS(2009), - [anon_sym_let_DASHenv] = ACTIONS(2009), - [anon_sym_mut] = ACTIONS(2009), - [anon_sym_const] = ACTIONS(2009), - [aux_sym_cmd_identifier_token1] = ACTIONS(2009), - [aux_sym_cmd_identifier_token2] = ACTIONS(2011), - [aux_sym_cmd_identifier_token3] = ACTIONS(2011), - [aux_sym_cmd_identifier_token4] = ACTIONS(2011), - [aux_sym_cmd_identifier_token5] = ACTIONS(2011), - [aux_sym_cmd_identifier_token6] = ACTIONS(2011), - [aux_sym_cmd_identifier_token7] = ACTIONS(2011), - [aux_sym_cmd_identifier_token8] = ACTIONS(2009), - [aux_sym_cmd_identifier_token9] = ACTIONS(2009), - [aux_sym_cmd_identifier_token10] = ACTIONS(2011), - [aux_sym_cmd_identifier_token11] = ACTIONS(2011), - [aux_sym_cmd_identifier_token12] = ACTIONS(2009), - [aux_sym_cmd_identifier_token13] = ACTIONS(2009), - [aux_sym_cmd_identifier_token14] = ACTIONS(2009), - [aux_sym_cmd_identifier_token15] = ACTIONS(2009), - [aux_sym_cmd_identifier_token16] = ACTIONS(2011), - [aux_sym_cmd_identifier_token17] = ACTIONS(2011), - [aux_sym_cmd_identifier_token18] = ACTIONS(2011), - [aux_sym_cmd_identifier_token19] = ACTIONS(2011), - [aux_sym_cmd_identifier_token20] = ACTIONS(2011), - [aux_sym_cmd_identifier_token21] = ACTIONS(2011), - [aux_sym_cmd_identifier_token22] = ACTIONS(2011), - [aux_sym_cmd_identifier_token23] = ACTIONS(2011), - [aux_sym_cmd_identifier_token24] = ACTIONS(2011), - [aux_sym_cmd_identifier_token25] = ACTIONS(2011), - [aux_sym_cmd_identifier_token26] = ACTIONS(2011), - [aux_sym_cmd_identifier_token27] = ACTIONS(2011), - [aux_sym_cmd_identifier_token28] = ACTIONS(2011), - [aux_sym_cmd_identifier_token29] = ACTIONS(2011), - [aux_sym_cmd_identifier_token30] = ACTIONS(2011), - [aux_sym_cmd_identifier_token31] = ACTIONS(2011), - [aux_sym_cmd_identifier_token32] = ACTIONS(2011), - [aux_sym_cmd_identifier_token33] = ACTIONS(2011), - [aux_sym_cmd_identifier_token34] = ACTIONS(2009), - [aux_sym_cmd_identifier_token35] = ACTIONS(2011), - [aux_sym_cmd_identifier_token36] = ACTIONS(2011), - [aux_sym_cmd_identifier_token37] = ACTIONS(2011), - [aux_sym_cmd_identifier_token38] = ACTIONS(2009), - [aux_sym_cmd_identifier_token39] = ACTIONS(2011), - [aux_sym_cmd_identifier_token40] = ACTIONS(2011), - [anon_sym_def] = ACTIONS(2009), - [anon_sym_export_DASHenv] = ACTIONS(2009), - [anon_sym_extern] = ACTIONS(2009), - [anon_sym_module] = ACTIONS(2009), - [anon_sym_use] = ACTIONS(2009), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2011), - [anon_sym_error] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_break] = ACTIONS(2009), - [anon_sym_continue] = ACTIONS(2009), - [anon_sym_for] = ACTIONS(2009), - [anon_sym_in2] = ACTIONS(2009), - [anon_sym_loop] = ACTIONS(2009), - [anon_sym_make] = ACTIONS(2009), - [anon_sym_while] = ACTIONS(2009), - [anon_sym_do] = ACTIONS(2009), - [anon_sym_if] = ACTIONS(2009), - [anon_sym_else] = ACTIONS(2009), - [anon_sym_match] = ACTIONS(2009), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_try] = ACTIONS(2009), - [anon_sym_catch] = ACTIONS(2009), - [anon_sym_return] = ACTIONS(2009), - [anon_sym_source] = ACTIONS(2009), - [anon_sym_source_DASHenv] = ACTIONS(2009), - [anon_sym_register] = ACTIONS(2009), - [anon_sym_hide] = ACTIONS(2009), - [anon_sym_hide_DASHenv] = ACTIONS(2009), - [anon_sym_overlay] = ACTIONS(2009), - [anon_sym_as] = ACTIONS(2009), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [aux_sym__val_number_token4] = ACTIONS(2009), - [aux_sym__val_number_token5] = ACTIONS(2009), - [aux_sym__val_number_token6] = ACTIONS(2009), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2011), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2011), + [656] = { + [sym_comment] = STATE(656), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1749), + [aux_sym_cmd_identifier_token3] = ACTIONS(1749), + [aux_sym_cmd_identifier_token4] = ACTIONS(1749), + [aux_sym_cmd_identifier_token5] = ACTIONS(1749), + [aux_sym_cmd_identifier_token6] = ACTIONS(1749), + [aux_sym_cmd_identifier_token7] = ACTIONS(1749), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1749), + [aux_sym_cmd_identifier_token11] = ACTIONS(1749), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1749), + [aux_sym_cmd_identifier_token17] = ACTIONS(1749), + [aux_sym_cmd_identifier_token18] = ACTIONS(1749), + [aux_sym_cmd_identifier_token19] = ACTIONS(1749), + [aux_sym_cmd_identifier_token20] = ACTIONS(1749), + [aux_sym_cmd_identifier_token21] = ACTIONS(1749), + [aux_sym_cmd_identifier_token22] = ACTIONS(1749), + [aux_sym_cmd_identifier_token23] = ACTIONS(1749), + [aux_sym_cmd_identifier_token24] = ACTIONS(1749), + [aux_sym_cmd_identifier_token25] = ACTIONS(1749), + [aux_sym_cmd_identifier_token26] = ACTIONS(1749), + [aux_sym_cmd_identifier_token27] = ACTIONS(1749), + [aux_sym_cmd_identifier_token28] = ACTIONS(1749), + [aux_sym_cmd_identifier_token29] = ACTIONS(1749), + [aux_sym_cmd_identifier_token30] = ACTIONS(1749), + [aux_sym_cmd_identifier_token31] = ACTIONS(1749), + [aux_sym_cmd_identifier_token32] = ACTIONS(1749), + [aux_sym_cmd_identifier_token33] = ACTIONS(1749), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1749), + [aux_sym_cmd_identifier_token36] = ACTIONS(1749), + [aux_sym_cmd_identifier_token37] = ACTIONS(1749), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1749), + [aux_sym_cmd_identifier_token40] = ACTIONS(1749), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_COMMA] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1749), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1749), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1749), + [aux_sym__val_number_decimal_token3] = ACTIONS(1749), + [aux_sym__val_number_decimal_token4] = ACTIONS(1749), + [aux_sym__val_number_token1] = ACTIONS(1749), + [aux_sym__val_number_token2] = ACTIONS(1749), + [aux_sym__val_number_token3] = ACTIONS(1749), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1749), + [sym__str_single_quotes] = ACTIONS(1749), + [sym__str_back_ticks] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1749), + [sym__entry_separator] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1751), }, - [706] = { - [sym_comment] = STATE(706), - [anon_sym_export] = ACTIONS(2467), - [anon_sym_alias] = ACTIONS(2467), - [anon_sym_let] = ACTIONS(2467), - [anon_sym_let_DASHenv] = ACTIONS(2467), - [anon_sym_mut] = ACTIONS(2467), - [anon_sym_const] = ACTIONS(2467), - [aux_sym_cmd_identifier_token1] = ACTIONS(2467), - [aux_sym_cmd_identifier_token2] = ACTIONS(2469), - [aux_sym_cmd_identifier_token3] = ACTIONS(2469), - [aux_sym_cmd_identifier_token4] = ACTIONS(2469), - [aux_sym_cmd_identifier_token5] = ACTIONS(2469), - [aux_sym_cmd_identifier_token6] = ACTIONS(2469), - [aux_sym_cmd_identifier_token7] = ACTIONS(2469), - [aux_sym_cmd_identifier_token8] = ACTIONS(2467), - [aux_sym_cmd_identifier_token9] = ACTIONS(2467), - [aux_sym_cmd_identifier_token10] = ACTIONS(2469), - [aux_sym_cmd_identifier_token11] = ACTIONS(2469), - [aux_sym_cmd_identifier_token12] = ACTIONS(2467), - [aux_sym_cmd_identifier_token13] = ACTIONS(2467), - [aux_sym_cmd_identifier_token14] = ACTIONS(2467), - [aux_sym_cmd_identifier_token15] = ACTIONS(2467), - [aux_sym_cmd_identifier_token16] = ACTIONS(2469), - [aux_sym_cmd_identifier_token17] = ACTIONS(2469), - [aux_sym_cmd_identifier_token18] = ACTIONS(2469), - [aux_sym_cmd_identifier_token19] = ACTIONS(2469), - [aux_sym_cmd_identifier_token20] = ACTIONS(2469), - [aux_sym_cmd_identifier_token21] = ACTIONS(2469), - [aux_sym_cmd_identifier_token22] = ACTIONS(2469), - [aux_sym_cmd_identifier_token23] = ACTIONS(2469), - [aux_sym_cmd_identifier_token24] = ACTIONS(2469), - [aux_sym_cmd_identifier_token25] = ACTIONS(2469), - [aux_sym_cmd_identifier_token26] = ACTIONS(2469), - [aux_sym_cmd_identifier_token27] = ACTIONS(2469), - [aux_sym_cmd_identifier_token28] = ACTIONS(2469), - [aux_sym_cmd_identifier_token29] = ACTIONS(2469), - [aux_sym_cmd_identifier_token30] = ACTIONS(2469), - [aux_sym_cmd_identifier_token31] = ACTIONS(2469), - [aux_sym_cmd_identifier_token32] = ACTIONS(2469), - [aux_sym_cmd_identifier_token33] = ACTIONS(2469), - [aux_sym_cmd_identifier_token34] = ACTIONS(2467), - [aux_sym_cmd_identifier_token35] = ACTIONS(2469), - [aux_sym_cmd_identifier_token36] = ACTIONS(2469), - [aux_sym_cmd_identifier_token37] = ACTIONS(2469), - [aux_sym_cmd_identifier_token38] = ACTIONS(2467), - [aux_sym_cmd_identifier_token39] = ACTIONS(2469), - [aux_sym_cmd_identifier_token40] = ACTIONS(2469), - [anon_sym_def] = ACTIONS(2467), - [anon_sym_export_DASHenv] = ACTIONS(2467), - [anon_sym_extern] = ACTIONS(2467), - [anon_sym_module] = ACTIONS(2467), - [anon_sym_use] = ACTIONS(2467), - [anon_sym_LPAREN] = ACTIONS(2469), - [anon_sym_DOLLAR] = ACTIONS(2469), - [anon_sym_error] = ACTIONS(2467), - [anon_sym_DASH2] = ACTIONS(2467), - [anon_sym_break] = ACTIONS(2467), - [anon_sym_continue] = ACTIONS(2467), - [anon_sym_for] = ACTIONS(2467), - [anon_sym_in2] = ACTIONS(2467), - [anon_sym_loop] = ACTIONS(2467), - [anon_sym_make] = ACTIONS(2467), - [anon_sym_while] = ACTIONS(2467), - [anon_sym_do] = ACTIONS(2467), - [anon_sym_if] = ACTIONS(2467), - [anon_sym_else] = ACTIONS(2467), - [anon_sym_match] = ACTIONS(2467), + [657] = { + [sym_comment] = STATE(657), + [aux_sym__multiple_types_repeat1] = STATE(607), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_alias] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_let_DASHenv] = ACTIONS(2316), + [anon_sym_mut] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [aux_sym_cmd_identifier_token1] = ACTIONS(2316), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2316), + [aux_sym_cmd_identifier_token9] = ACTIONS(2316), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2316), + [aux_sym_cmd_identifier_token13] = ACTIONS(2316), + [aux_sym_cmd_identifier_token14] = ACTIONS(2316), + [aux_sym_cmd_identifier_token15] = ACTIONS(2316), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2316), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2316), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2316), + [anon_sym_export_DASHenv] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_error] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_in2] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_make] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), [anon_sym_RBRACE] = ACTIONS(2469), - [anon_sym_try] = ACTIONS(2467), - [anon_sym_catch] = ACTIONS(2467), - [anon_sym_return] = ACTIONS(2467), - [anon_sym_source] = ACTIONS(2467), - [anon_sym_source_DASHenv] = ACTIONS(2467), - [anon_sym_register] = ACTIONS(2467), - [anon_sym_hide] = ACTIONS(2467), - [anon_sym_hide_DASHenv] = ACTIONS(2467), - [anon_sym_overlay] = ACTIONS(2467), - [anon_sym_as] = ACTIONS(2467), - [anon_sym_PLUS2] = ACTIONS(2467), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2469), - [aux_sym__val_number_decimal_token1] = ACTIONS(2467), - [aux_sym__val_number_decimal_token2] = ACTIONS(2469), - [aux_sym__val_number_decimal_token3] = ACTIONS(2469), - [aux_sym__val_number_decimal_token4] = ACTIONS(2469), - [aux_sym__val_number_token1] = ACTIONS(2469), - [aux_sym__val_number_token2] = ACTIONS(2469), - [aux_sym__val_number_token3] = ACTIONS(2469), - [aux_sym__val_number_token4] = ACTIONS(2467), - [aux_sym__val_number_token5] = ACTIONS(2467), - [aux_sym__val_number_token6] = ACTIONS(2467), - [anon_sym_DQUOTE] = ACTIONS(2469), - [sym__str_single_quotes] = ACTIONS(2469), - [sym__str_back_ticks] = ACTIONS(2469), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2469), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2469), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_source] = ACTIONS(2316), + [anon_sym_source_DASHenv] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2316), + [anon_sym_hide] = ACTIONS(2316), + [anon_sym_hide_DASHenv] = ACTIONS(2316), + [anon_sym_overlay] = ACTIONS(2316), + [anon_sym_as] = ACTIONS(2316), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2316), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2316), + [aux_sym__val_number_token5] = ACTIONS(2316), + [aux_sym__val_number_token6] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [sym__entry_separator] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), }, - [707] = { - [sym_comment] = STATE(707), + [658] = { + [sym_comment] = STATE(658), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2035), + [aux_sym_cmd_identifier_token3] = ACTIONS(2035), + [aux_sym_cmd_identifier_token4] = ACTIONS(2035), + [aux_sym_cmd_identifier_token5] = ACTIONS(2035), + [aux_sym_cmd_identifier_token6] = ACTIONS(2035), + [aux_sym_cmd_identifier_token7] = ACTIONS(2035), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2035), + [aux_sym_cmd_identifier_token11] = ACTIONS(2035), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2035), + [aux_sym_cmd_identifier_token17] = ACTIONS(2035), + [aux_sym_cmd_identifier_token18] = ACTIONS(2035), + [aux_sym_cmd_identifier_token19] = ACTIONS(2035), + [aux_sym_cmd_identifier_token20] = ACTIONS(2035), + [aux_sym_cmd_identifier_token21] = ACTIONS(2035), + [aux_sym_cmd_identifier_token22] = ACTIONS(2035), + [aux_sym_cmd_identifier_token23] = ACTIONS(2035), + [aux_sym_cmd_identifier_token24] = ACTIONS(2035), + [aux_sym_cmd_identifier_token25] = ACTIONS(2035), + [aux_sym_cmd_identifier_token26] = ACTIONS(2035), + [aux_sym_cmd_identifier_token27] = ACTIONS(2035), + [aux_sym_cmd_identifier_token28] = ACTIONS(2035), + [aux_sym_cmd_identifier_token29] = ACTIONS(2035), + [aux_sym_cmd_identifier_token30] = ACTIONS(2035), + [aux_sym_cmd_identifier_token31] = ACTIONS(2035), + [aux_sym_cmd_identifier_token32] = ACTIONS(2035), + [aux_sym_cmd_identifier_token33] = ACTIONS(2035), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2035), + [aux_sym_cmd_identifier_token36] = ACTIONS(2035), + [aux_sym_cmd_identifier_token37] = ACTIONS(2035), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2035), + [aux_sym_cmd_identifier_token40] = ACTIONS(2035), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2035), + [anon_sym_COMMA] = ACTIONS(2035), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in2] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2035), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2035), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2035), + [aux_sym__val_number_decimal_token3] = ACTIONS(2035), + [aux_sym__val_number_decimal_token4] = ACTIONS(2035), + [aux_sym__val_number_token1] = ACTIONS(2035), + [aux_sym__val_number_token2] = ACTIONS(2035), + [aux_sym__val_number_token3] = ACTIONS(2035), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2035), + [sym__str_single_quotes] = ACTIONS(2035), + [sym__str_back_ticks] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2035), + [sym__entry_separator] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2037), + }, + [659] = { + [sym_comment] = STATE(659), [anon_sym_export] = ACTIONS(2471), [anon_sym_alias] = ACTIONS(2471), [anon_sym_let] = ACTIONS(2471), @@ -155421,52 +150960,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2471), [anon_sym_const] = ACTIONS(2471), [aux_sym_cmd_identifier_token1] = ACTIONS(2471), - [aux_sym_cmd_identifier_token2] = ACTIONS(2473), - [aux_sym_cmd_identifier_token3] = ACTIONS(2473), - [aux_sym_cmd_identifier_token4] = ACTIONS(2473), - [aux_sym_cmd_identifier_token5] = ACTIONS(2473), - [aux_sym_cmd_identifier_token6] = ACTIONS(2473), - [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token2] = ACTIONS(2471), + [aux_sym_cmd_identifier_token3] = ACTIONS(2471), + [aux_sym_cmd_identifier_token4] = ACTIONS(2471), + [aux_sym_cmd_identifier_token5] = ACTIONS(2471), + [aux_sym_cmd_identifier_token6] = ACTIONS(2471), + [aux_sym_cmd_identifier_token7] = ACTIONS(2471), [aux_sym_cmd_identifier_token8] = ACTIONS(2471), [aux_sym_cmd_identifier_token9] = ACTIONS(2471), - [aux_sym_cmd_identifier_token10] = ACTIONS(2473), - [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token10] = ACTIONS(2471), + [aux_sym_cmd_identifier_token11] = ACTIONS(2471), [aux_sym_cmd_identifier_token12] = ACTIONS(2471), [aux_sym_cmd_identifier_token13] = ACTIONS(2471), [aux_sym_cmd_identifier_token14] = ACTIONS(2471), [aux_sym_cmd_identifier_token15] = ACTIONS(2471), - [aux_sym_cmd_identifier_token16] = ACTIONS(2473), - [aux_sym_cmd_identifier_token17] = ACTIONS(2473), - [aux_sym_cmd_identifier_token18] = ACTIONS(2473), - [aux_sym_cmd_identifier_token19] = ACTIONS(2473), - [aux_sym_cmd_identifier_token20] = ACTIONS(2473), - [aux_sym_cmd_identifier_token21] = ACTIONS(2473), - [aux_sym_cmd_identifier_token22] = ACTIONS(2473), - [aux_sym_cmd_identifier_token23] = ACTIONS(2473), - [aux_sym_cmd_identifier_token24] = ACTIONS(2473), - [aux_sym_cmd_identifier_token25] = ACTIONS(2473), - [aux_sym_cmd_identifier_token26] = ACTIONS(2473), - [aux_sym_cmd_identifier_token27] = ACTIONS(2473), - [aux_sym_cmd_identifier_token28] = ACTIONS(2473), - [aux_sym_cmd_identifier_token29] = ACTIONS(2473), - [aux_sym_cmd_identifier_token30] = ACTIONS(2473), - [aux_sym_cmd_identifier_token31] = ACTIONS(2473), - [aux_sym_cmd_identifier_token32] = ACTIONS(2473), - [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token16] = ACTIONS(2471), + [aux_sym_cmd_identifier_token17] = ACTIONS(2471), + [aux_sym_cmd_identifier_token18] = ACTIONS(2471), + [aux_sym_cmd_identifier_token19] = ACTIONS(2471), + [aux_sym_cmd_identifier_token20] = ACTIONS(2471), + [aux_sym_cmd_identifier_token21] = ACTIONS(2471), + [aux_sym_cmd_identifier_token22] = ACTIONS(2471), + [aux_sym_cmd_identifier_token23] = ACTIONS(2471), + [aux_sym_cmd_identifier_token24] = ACTIONS(2471), + [aux_sym_cmd_identifier_token25] = ACTIONS(2471), + [aux_sym_cmd_identifier_token26] = ACTIONS(2471), + [aux_sym_cmd_identifier_token27] = ACTIONS(2471), + [aux_sym_cmd_identifier_token28] = ACTIONS(2471), + [aux_sym_cmd_identifier_token29] = ACTIONS(2471), + [aux_sym_cmd_identifier_token30] = ACTIONS(2471), + [aux_sym_cmd_identifier_token31] = ACTIONS(2471), + [aux_sym_cmd_identifier_token32] = ACTIONS(2471), + [aux_sym_cmd_identifier_token33] = ACTIONS(2471), [aux_sym_cmd_identifier_token34] = ACTIONS(2471), - [aux_sym_cmd_identifier_token35] = ACTIONS(2473), - [aux_sym_cmd_identifier_token36] = ACTIONS(2473), - [aux_sym_cmd_identifier_token37] = ACTIONS(2473), + [aux_sym_cmd_identifier_token35] = ACTIONS(2471), + [aux_sym_cmd_identifier_token36] = ACTIONS(2471), + [aux_sym_cmd_identifier_token37] = ACTIONS(2471), [aux_sym_cmd_identifier_token38] = ACTIONS(2471), - [aux_sym_cmd_identifier_token39] = ACTIONS(2473), - [aux_sym_cmd_identifier_token40] = ACTIONS(2473), + [aux_sym_cmd_identifier_token39] = ACTIONS(2471), + [aux_sym_cmd_identifier_token40] = ACTIONS(2471), [anon_sym_def] = ACTIONS(2471), [anon_sym_export_DASHenv] = ACTIONS(2471), [anon_sym_extern] = ACTIONS(2471), [anon_sym_module] = ACTIONS(2471), [anon_sym_use] = ACTIONS(2471), - [anon_sym_LPAREN] = ACTIONS(2473), - [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_LPAREN] = ACTIONS(2471), + [anon_sym_COMMA] = ACTIONS(2471), + [anon_sym_DOLLAR] = ACTIONS(2471), [anon_sym_error] = ACTIONS(2471), [anon_sym_DASH2] = ACTIONS(2471), [anon_sym_break] = ACTIONS(2471), @@ -155480,7 +151020,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2471), [anon_sym_else] = ACTIONS(2471), [anon_sym_match] = ACTIONS(2471), - [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_RBRACE] = ACTIONS(2471), [anon_sym_try] = ACTIONS(2471), [anon_sym_catch] = ACTIONS(2471), [anon_sym_return] = ACTIONS(2471), @@ -155492,126 +151032,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2471), [anon_sym_as] = ACTIONS(2471), [anon_sym_PLUS2] = ACTIONS(2471), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2471), [aux_sym__val_number_decimal_token1] = ACTIONS(2471), - [aux_sym__val_number_decimal_token2] = ACTIONS(2473), - [aux_sym__val_number_decimal_token3] = ACTIONS(2473), - [aux_sym__val_number_decimal_token4] = ACTIONS(2473), - [aux_sym__val_number_token1] = ACTIONS(2473), - [aux_sym__val_number_token2] = ACTIONS(2473), - [aux_sym__val_number_token3] = ACTIONS(2473), + [aux_sym__val_number_decimal_token2] = ACTIONS(2471), + [aux_sym__val_number_decimal_token3] = ACTIONS(2471), + [aux_sym__val_number_decimal_token4] = ACTIONS(2471), + [aux_sym__val_number_token1] = ACTIONS(2471), + [aux_sym__val_number_token2] = ACTIONS(2471), + [aux_sym__val_number_token3] = ACTIONS(2471), [aux_sym__val_number_token4] = ACTIONS(2471), [aux_sym__val_number_token5] = ACTIONS(2471), [aux_sym__val_number_token6] = ACTIONS(2471), - [anon_sym_DQUOTE] = ACTIONS(2473), - [sym__str_single_quotes] = ACTIONS(2473), - [sym__str_back_ticks] = ACTIONS(2473), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(2471), + [sym__str_single_quotes] = ACTIONS(2471), + [sym__str_back_ticks] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2471), + [sym__entry_separator] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2473), }, - [708] = { - [sym_comment] = STATE(708), - [anon_sym_export] = ACTIONS(2089), - [anon_sym_alias] = ACTIONS(2089), - [anon_sym_let] = ACTIONS(2089), - [anon_sym_let_DASHenv] = ACTIONS(2089), - [anon_sym_mut] = ACTIONS(2089), - [anon_sym_const] = ACTIONS(2089), - [aux_sym_cmd_identifier_token1] = ACTIONS(2089), - [aux_sym_cmd_identifier_token2] = ACTIONS(2091), - [aux_sym_cmd_identifier_token3] = ACTIONS(2091), - [aux_sym_cmd_identifier_token4] = ACTIONS(2091), - [aux_sym_cmd_identifier_token5] = ACTIONS(2091), - [aux_sym_cmd_identifier_token6] = ACTIONS(2091), - [aux_sym_cmd_identifier_token7] = ACTIONS(2091), - [aux_sym_cmd_identifier_token8] = ACTIONS(2089), - [aux_sym_cmd_identifier_token9] = ACTIONS(2089), - [aux_sym_cmd_identifier_token10] = ACTIONS(2091), - [aux_sym_cmd_identifier_token11] = ACTIONS(2091), - [aux_sym_cmd_identifier_token12] = ACTIONS(2089), - [aux_sym_cmd_identifier_token13] = ACTIONS(2089), - [aux_sym_cmd_identifier_token14] = ACTIONS(2089), - [aux_sym_cmd_identifier_token15] = ACTIONS(2089), - [aux_sym_cmd_identifier_token16] = ACTIONS(2091), - [aux_sym_cmd_identifier_token17] = ACTIONS(2091), - [aux_sym_cmd_identifier_token18] = ACTIONS(2091), - [aux_sym_cmd_identifier_token19] = ACTIONS(2091), - [aux_sym_cmd_identifier_token20] = ACTIONS(2091), - [aux_sym_cmd_identifier_token21] = ACTIONS(2091), - [aux_sym_cmd_identifier_token22] = ACTIONS(2091), - [aux_sym_cmd_identifier_token23] = ACTIONS(2091), - [aux_sym_cmd_identifier_token24] = ACTIONS(2091), - [aux_sym_cmd_identifier_token25] = ACTIONS(2091), - [aux_sym_cmd_identifier_token26] = ACTIONS(2091), - [aux_sym_cmd_identifier_token27] = ACTIONS(2091), - [aux_sym_cmd_identifier_token28] = ACTIONS(2091), - [aux_sym_cmd_identifier_token29] = ACTIONS(2091), - [aux_sym_cmd_identifier_token30] = ACTIONS(2091), - [aux_sym_cmd_identifier_token31] = ACTIONS(2091), - [aux_sym_cmd_identifier_token32] = ACTIONS(2091), - [aux_sym_cmd_identifier_token33] = ACTIONS(2091), - [aux_sym_cmd_identifier_token34] = ACTIONS(2089), - [aux_sym_cmd_identifier_token35] = ACTIONS(2091), - [aux_sym_cmd_identifier_token36] = ACTIONS(2091), - [aux_sym_cmd_identifier_token37] = ACTIONS(2091), - [aux_sym_cmd_identifier_token38] = ACTIONS(2089), - [aux_sym_cmd_identifier_token39] = ACTIONS(2091), - [aux_sym_cmd_identifier_token40] = ACTIONS(2091), - [anon_sym_def] = ACTIONS(2089), - [anon_sym_export_DASHenv] = ACTIONS(2089), - [anon_sym_extern] = ACTIONS(2089), - [anon_sym_module] = ACTIONS(2089), - [anon_sym_use] = ACTIONS(2089), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(2091), - [anon_sym_error] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_break] = ACTIONS(2089), - [anon_sym_continue] = ACTIONS(2089), - [anon_sym_for] = ACTIONS(2089), - [anon_sym_in2] = ACTIONS(2089), - [anon_sym_loop] = ACTIONS(2089), - [anon_sym_make] = ACTIONS(2089), - [anon_sym_while] = ACTIONS(2089), - [anon_sym_do] = ACTIONS(2089), - [anon_sym_if] = ACTIONS(2089), - [anon_sym_else] = ACTIONS(2089), - [anon_sym_match] = ACTIONS(2089), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_try] = ACTIONS(2089), - [anon_sym_catch] = ACTIONS(2089), - [anon_sym_return] = ACTIONS(2089), - [anon_sym_source] = ACTIONS(2089), - [anon_sym_source_DASHenv] = ACTIONS(2089), - [anon_sym_register] = ACTIONS(2089), - [anon_sym_hide] = ACTIONS(2089), - [anon_sym_hide_DASHenv] = ACTIONS(2089), - [anon_sym_overlay] = ACTIONS(2089), - [anon_sym_as] = ACTIONS(2089), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2091), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2089), - [aux_sym__val_number_token5] = ACTIONS(2089), - [aux_sym__val_number_token6] = ACTIONS(2089), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2091), - }, - [709] = { - [sym_comment] = STATE(709), + [660] = { + [sym_comment] = STATE(660), [anon_sym_export] = ACTIONS(2475), [anon_sym_alias] = ACTIONS(2475), [anon_sym_let] = ACTIONS(2475), @@ -155619,52 +151061,53 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_mut] = ACTIONS(2475), [anon_sym_const] = ACTIONS(2475), [aux_sym_cmd_identifier_token1] = ACTIONS(2475), - [aux_sym_cmd_identifier_token2] = ACTIONS(2477), - [aux_sym_cmd_identifier_token3] = ACTIONS(2477), - [aux_sym_cmd_identifier_token4] = ACTIONS(2477), - [aux_sym_cmd_identifier_token5] = ACTIONS(2477), - [aux_sym_cmd_identifier_token6] = ACTIONS(2477), - [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token2] = ACTIONS(2475), + [aux_sym_cmd_identifier_token3] = ACTIONS(2475), + [aux_sym_cmd_identifier_token4] = ACTIONS(2475), + [aux_sym_cmd_identifier_token5] = ACTIONS(2475), + [aux_sym_cmd_identifier_token6] = ACTIONS(2475), + [aux_sym_cmd_identifier_token7] = ACTIONS(2475), [aux_sym_cmd_identifier_token8] = ACTIONS(2475), [aux_sym_cmd_identifier_token9] = ACTIONS(2475), - [aux_sym_cmd_identifier_token10] = ACTIONS(2477), - [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token10] = ACTIONS(2475), + [aux_sym_cmd_identifier_token11] = ACTIONS(2475), [aux_sym_cmd_identifier_token12] = ACTIONS(2475), [aux_sym_cmd_identifier_token13] = ACTIONS(2475), [aux_sym_cmd_identifier_token14] = ACTIONS(2475), [aux_sym_cmd_identifier_token15] = ACTIONS(2475), - [aux_sym_cmd_identifier_token16] = ACTIONS(2477), - [aux_sym_cmd_identifier_token17] = ACTIONS(2477), - [aux_sym_cmd_identifier_token18] = ACTIONS(2477), - [aux_sym_cmd_identifier_token19] = ACTIONS(2477), - [aux_sym_cmd_identifier_token20] = ACTIONS(2477), - [aux_sym_cmd_identifier_token21] = ACTIONS(2477), - [aux_sym_cmd_identifier_token22] = ACTIONS(2477), - [aux_sym_cmd_identifier_token23] = ACTIONS(2477), - [aux_sym_cmd_identifier_token24] = ACTIONS(2477), - [aux_sym_cmd_identifier_token25] = ACTIONS(2477), - [aux_sym_cmd_identifier_token26] = ACTIONS(2477), - [aux_sym_cmd_identifier_token27] = ACTIONS(2477), - [aux_sym_cmd_identifier_token28] = ACTIONS(2477), - [aux_sym_cmd_identifier_token29] = ACTIONS(2477), - [aux_sym_cmd_identifier_token30] = ACTIONS(2477), - [aux_sym_cmd_identifier_token31] = ACTIONS(2477), - [aux_sym_cmd_identifier_token32] = ACTIONS(2477), - [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token16] = ACTIONS(2475), + [aux_sym_cmd_identifier_token17] = ACTIONS(2475), + [aux_sym_cmd_identifier_token18] = ACTIONS(2475), + [aux_sym_cmd_identifier_token19] = ACTIONS(2475), + [aux_sym_cmd_identifier_token20] = ACTIONS(2475), + [aux_sym_cmd_identifier_token21] = ACTIONS(2475), + [aux_sym_cmd_identifier_token22] = ACTIONS(2475), + [aux_sym_cmd_identifier_token23] = ACTIONS(2475), + [aux_sym_cmd_identifier_token24] = ACTIONS(2475), + [aux_sym_cmd_identifier_token25] = ACTIONS(2475), + [aux_sym_cmd_identifier_token26] = ACTIONS(2475), + [aux_sym_cmd_identifier_token27] = ACTIONS(2475), + [aux_sym_cmd_identifier_token28] = ACTIONS(2475), + [aux_sym_cmd_identifier_token29] = ACTIONS(2475), + [aux_sym_cmd_identifier_token30] = ACTIONS(2475), + [aux_sym_cmd_identifier_token31] = ACTIONS(2475), + [aux_sym_cmd_identifier_token32] = ACTIONS(2475), + [aux_sym_cmd_identifier_token33] = ACTIONS(2475), [aux_sym_cmd_identifier_token34] = ACTIONS(2475), - [aux_sym_cmd_identifier_token35] = ACTIONS(2477), - [aux_sym_cmd_identifier_token36] = ACTIONS(2477), - [aux_sym_cmd_identifier_token37] = ACTIONS(2477), + [aux_sym_cmd_identifier_token35] = ACTIONS(2475), + [aux_sym_cmd_identifier_token36] = ACTIONS(2475), + [aux_sym_cmd_identifier_token37] = ACTIONS(2475), [aux_sym_cmd_identifier_token38] = ACTIONS(2475), - [aux_sym_cmd_identifier_token39] = ACTIONS(2477), - [aux_sym_cmd_identifier_token40] = ACTIONS(2477), + [aux_sym_cmd_identifier_token39] = ACTIONS(2475), + [aux_sym_cmd_identifier_token40] = ACTIONS(2475), [anon_sym_def] = ACTIONS(2475), [anon_sym_export_DASHenv] = ACTIONS(2475), [anon_sym_extern] = ACTIONS(2475), [anon_sym_module] = ACTIONS(2475), [anon_sym_use] = ACTIONS(2475), - [anon_sym_LPAREN] = ACTIONS(2477), - [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_LPAREN] = ACTIONS(2475), + [anon_sym_COMMA] = ACTIONS(2475), + [anon_sym_DOLLAR] = ACTIONS(2475), [anon_sym_error] = ACTIONS(2475), [anon_sym_DASH2] = ACTIONS(2475), [anon_sym_break] = ACTIONS(2475), @@ -155678,7 +151121,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(2475), [anon_sym_else] = ACTIONS(2475), [anon_sym_match] = ACTIONS(2475), - [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_RBRACE] = ACTIONS(2475), [anon_sym_try] = ACTIONS(2475), [anon_sym_catch] = ACTIONS(2475), [anon_sym_return] = ACTIONS(2475), @@ -155690,48 +151133,554 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_overlay] = ACTIONS(2475), [anon_sym_as] = ACTIONS(2475), [anon_sym_PLUS2] = ACTIONS(2475), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2475), [aux_sym__val_number_decimal_token1] = ACTIONS(2475), - [aux_sym__val_number_decimal_token2] = ACTIONS(2477), - [aux_sym__val_number_decimal_token3] = ACTIONS(2477), - [aux_sym__val_number_decimal_token4] = ACTIONS(2477), - [aux_sym__val_number_token1] = ACTIONS(2477), - [aux_sym__val_number_token2] = ACTIONS(2477), - [aux_sym__val_number_token3] = ACTIONS(2477), + [aux_sym__val_number_decimal_token2] = ACTIONS(2475), + [aux_sym__val_number_decimal_token3] = ACTIONS(2475), + [aux_sym__val_number_decimal_token4] = ACTIONS(2475), + [aux_sym__val_number_token1] = ACTIONS(2475), + [aux_sym__val_number_token2] = ACTIONS(2475), + [aux_sym__val_number_token3] = ACTIONS(2475), [aux_sym__val_number_token4] = ACTIONS(2475), [aux_sym__val_number_token5] = ACTIONS(2475), [aux_sym__val_number_token6] = ACTIONS(2475), - [anon_sym_DQUOTE] = ACTIONS(2477), - [sym__str_single_quotes] = ACTIONS(2477), - [sym__str_back_ticks] = ACTIONS(2477), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), - [anon_sym_POUND] = ACTIONS(251), + [anon_sym_DQUOTE] = ACTIONS(2475), + [sym__str_single_quotes] = ACTIONS(2475), + [sym__str_back_ticks] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2475), + [sym__entry_separator] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(2477), }, - [710] = { - [sym_comment] = STATE(710), - [anon_sym_export] = ACTIONS(2479), - [anon_sym_alias] = ACTIONS(2479), - [anon_sym_let] = ACTIONS(2479), - [anon_sym_let_DASHenv] = ACTIONS(2479), - [anon_sym_mut] = ACTIONS(2479), - [anon_sym_const] = ACTIONS(2479), - [aux_sym_cmd_identifier_token1] = ACTIONS(2479), + [661] = { + [sym_comment] = STATE(661), + [anon_sym_export] = ACTIONS(992), + [anon_sym_alias] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_let_DASHenv] = ACTIONS(992), + [anon_sym_mut] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [aux_sym_cmd_identifier_token1] = ACTIONS(992), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(992), + [aux_sym_cmd_identifier_token9] = ACTIONS(992), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(992), + [aux_sym_cmd_identifier_token13] = ACTIONS(992), + [aux_sym_cmd_identifier_token14] = ACTIONS(992), + [aux_sym_cmd_identifier_token15] = ACTIONS(992), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(992), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(992), + [anon_sym_export_DASHenv] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_make] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_source] = ACTIONS(992), + [anon_sym_source_DASHenv] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_hide_DASHenv] = ACTIONS(992), + [anon_sym_overlay] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), + [anon_sym_COLON2] = ACTIONS(2479), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(998), + }, + [662] = { + [sym_comment] = STATE(662), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1731), + [aux_sym_cmd_identifier_token3] = ACTIONS(1731), + [aux_sym_cmd_identifier_token4] = ACTIONS(1731), + [aux_sym_cmd_identifier_token5] = ACTIONS(1731), + [aux_sym_cmd_identifier_token6] = ACTIONS(1731), + [aux_sym_cmd_identifier_token7] = ACTIONS(1731), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1731), + [aux_sym_cmd_identifier_token11] = ACTIONS(1731), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1731), + [aux_sym_cmd_identifier_token17] = ACTIONS(1731), + [aux_sym_cmd_identifier_token18] = ACTIONS(1731), + [aux_sym_cmd_identifier_token19] = ACTIONS(1731), + [aux_sym_cmd_identifier_token20] = ACTIONS(1731), + [aux_sym_cmd_identifier_token21] = ACTIONS(1731), + [aux_sym_cmd_identifier_token22] = ACTIONS(1731), + [aux_sym_cmd_identifier_token23] = ACTIONS(1731), + [aux_sym_cmd_identifier_token24] = ACTIONS(1731), + [aux_sym_cmd_identifier_token25] = ACTIONS(1731), + [aux_sym_cmd_identifier_token26] = ACTIONS(1731), + [aux_sym_cmd_identifier_token27] = ACTIONS(1731), + [aux_sym_cmd_identifier_token28] = ACTIONS(1731), + [aux_sym_cmd_identifier_token29] = ACTIONS(1731), + [aux_sym_cmd_identifier_token30] = ACTIONS(1731), + [aux_sym_cmd_identifier_token31] = ACTIONS(1731), + [aux_sym_cmd_identifier_token32] = ACTIONS(1731), + [aux_sym_cmd_identifier_token33] = ACTIONS(1731), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1731), + [aux_sym_cmd_identifier_token36] = ACTIONS(1731), + [aux_sym_cmd_identifier_token37] = ACTIONS(1731), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1731), + [aux_sym_cmd_identifier_token40] = ACTIONS(1731), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_COMMA] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1731), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1731), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1731), + [aux_sym__val_number_decimal_token3] = ACTIONS(1731), + [aux_sym__val_number_decimal_token4] = ACTIONS(1731), + [aux_sym__val_number_token1] = ACTIONS(1731), + [aux_sym__val_number_token2] = ACTIONS(1731), + [aux_sym__val_number_token3] = ACTIONS(1731), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1731), + [sym__str_single_quotes] = ACTIONS(1731), + [sym__str_back_ticks] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1731), + [sym__entry_separator] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [663] = { + [sym_comment] = STATE(663), + [anon_sym_export] = ACTIONS(2039), + [anon_sym_alias] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_let_DASHenv] = ACTIONS(2039), + [anon_sym_mut] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [aux_sym_cmd_identifier_token1] = ACTIONS(2039), + [aux_sym_cmd_identifier_token2] = ACTIONS(2039), + [aux_sym_cmd_identifier_token3] = ACTIONS(2039), + [aux_sym_cmd_identifier_token4] = ACTIONS(2039), + [aux_sym_cmd_identifier_token5] = ACTIONS(2039), + [aux_sym_cmd_identifier_token6] = ACTIONS(2039), + [aux_sym_cmd_identifier_token7] = ACTIONS(2039), + [aux_sym_cmd_identifier_token8] = ACTIONS(2039), + [aux_sym_cmd_identifier_token9] = ACTIONS(2039), + [aux_sym_cmd_identifier_token10] = ACTIONS(2039), + [aux_sym_cmd_identifier_token11] = ACTIONS(2039), + [aux_sym_cmd_identifier_token12] = ACTIONS(2039), + [aux_sym_cmd_identifier_token13] = ACTIONS(2039), + [aux_sym_cmd_identifier_token14] = ACTIONS(2039), + [aux_sym_cmd_identifier_token15] = ACTIONS(2039), + [aux_sym_cmd_identifier_token16] = ACTIONS(2039), + [aux_sym_cmd_identifier_token17] = ACTIONS(2039), + [aux_sym_cmd_identifier_token18] = ACTIONS(2039), + [aux_sym_cmd_identifier_token19] = ACTIONS(2039), + [aux_sym_cmd_identifier_token20] = ACTIONS(2039), + [aux_sym_cmd_identifier_token21] = ACTIONS(2039), + [aux_sym_cmd_identifier_token22] = ACTIONS(2039), + [aux_sym_cmd_identifier_token23] = ACTIONS(2039), + [aux_sym_cmd_identifier_token24] = ACTIONS(2039), + [aux_sym_cmd_identifier_token25] = ACTIONS(2039), + [aux_sym_cmd_identifier_token26] = ACTIONS(2039), + [aux_sym_cmd_identifier_token27] = ACTIONS(2039), + [aux_sym_cmd_identifier_token28] = ACTIONS(2039), + [aux_sym_cmd_identifier_token29] = ACTIONS(2039), + [aux_sym_cmd_identifier_token30] = ACTIONS(2039), + [aux_sym_cmd_identifier_token31] = ACTIONS(2039), + [aux_sym_cmd_identifier_token32] = ACTIONS(2039), + [aux_sym_cmd_identifier_token33] = ACTIONS(2039), + [aux_sym_cmd_identifier_token34] = ACTIONS(2039), + [aux_sym_cmd_identifier_token35] = ACTIONS(2039), + [aux_sym_cmd_identifier_token36] = ACTIONS(2039), + [aux_sym_cmd_identifier_token37] = ACTIONS(2039), + [aux_sym_cmd_identifier_token38] = ACTIONS(2039), + [aux_sym_cmd_identifier_token39] = ACTIONS(2039), + [aux_sym_cmd_identifier_token40] = ACTIONS(2039), + [anon_sym_def] = ACTIONS(2039), + [anon_sym_export_DASHenv] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_module] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2039), + [anon_sym_COMMA] = ACTIONS(2039), + [anon_sym_DOLLAR] = ACTIONS(2039), + [anon_sym_error] = ACTIONS(2039), + [anon_sym_DASH2] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_in2] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_make] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2039), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_source] = ACTIONS(2039), + [anon_sym_source_DASHenv] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_hide] = ACTIONS(2039), + [anon_sym_hide_DASHenv] = ACTIONS(2039), + [anon_sym_overlay] = ACTIONS(2039), + [anon_sym_as] = ACTIONS(2039), + [anon_sym_PLUS2] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2039), + [aux_sym__val_number_decimal_token1] = ACTIONS(2039), + [aux_sym__val_number_decimal_token2] = ACTIONS(2039), + [aux_sym__val_number_decimal_token3] = ACTIONS(2039), + [aux_sym__val_number_decimal_token4] = ACTIONS(2039), + [aux_sym__val_number_token1] = ACTIONS(2039), + [aux_sym__val_number_token2] = ACTIONS(2039), + [aux_sym__val_number_token3] = ACTIONS(2039), + [aux_sym__val_number_token4] = ACTIONS(2039), + [aux_sym__val_number_token5] = ACTIONS(2039), + [aux_sym__val_number_token6] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2039), + [sym__str_single_quotes] = ACTIONS(2039), + [sym__str_back_ticks] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2039), + [sym__entry_separator] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2041), + }, + [664] = { + [sym_comment] = STATE(664), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1772), + [aux_sym_cmd_identifier_token3] = ACTIONS(1772), + [aux_sym_cmd_identifier_token4] = ACTIONS(1772), + [aux_sym_cmd_identifier_token5] = ACTIONS(1772), + [aux_sym_cmd_identifier_token6] = ACTIONS(1772), + [aux_sym_cmd_identifier_token7] = ACTIONS(1772), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1772), + [aux_sym_cmd_identifier_token11] = ACTIONS(1772), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1772), + [aux_sym_cmd_identifier_token17] = ACTIONS(1772), + [aux_sym_cmd_identifier_token18] = ACTIONS(1772), + [aux_sym_cmd_identifier_token19] = ACTIONS(1772), + [aux_sym_cmd_identifier_token20] = ACTIONS(1772), + [aux_sym_cmd_identifier_token21] = ACTIONS(1772), + [aux_sym_cmd_identifier_token22] = ACTIONS(1772), + [aux_sym_cmd_identifier_token23] = ACTIONS(1772), + [aux_sym_cmd_identifier_token24] = ACTIONS(1772), + [aux_sym_cmd_identifier_token25] = ACTIONS(1772), + [aux_sym_cmd_identifier_token26] = ACTIONS(1772), + [aux_sym_cmd_identifier_token27] = ACTIONS(1772), + [aux_sym_cmd_identifier_token28] = ACTIONS(1772), + [aux_sym_cmd_identifier_token29] = ACTIONS(1772), + [aux_sym_cmd_identifier_token30] = ACTIONS(1772), + [aux_sym_cmd_identifier_token31] = ACTIONS(1772), + [aux_sym_cmd_identifier_token32] = ACTIONS(1772), + [aux_sym_cmd_identifier_token33] = ACTIONS(1772), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1772), + [aux_sym_cmd_identifier_token36] = ACTIONS(1772), + [aux_sym_cmd_identifier_token37] = ACTIONS(1772), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1772), + [aux_sym_cmd_identifier_token40] = ACTIONS(1772), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_COMMA] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1772), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1772), + [aux_sym__val_number_decimal_token3] = ACTIONS(1772), + [aux_sym__val_number_decimal_token4] = ACTIONS(1772), + [aux_sym__val_number_token1] = ACTIONS(1772), + [aux_sym__val_number_token2] = ACTIONS(1772), + [aux_sym__val_number_token3] = ACTIONS(1772), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [sym__str_single_quotes] = ACTIONS(1772), + [sym__str_back_ticks] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1772), + [sym__entry_separator] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [665] = { + [sym_comment] = STATE(665), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1817), + [aux_sym_cmd_identifier_token3] = ACTIONS(1817), + [aux_sym_cmd_identifier_token4] = ACTIONS(1817), + [aux_sym_cmd_identifier_token5] = ACTIONS(1817), + [aux_sym_cmd_identifier_token6] = ACTIONS(1817), + [aux_sym_cmd_identifier_token7] = ACTIONS(1817), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1817), + [aux_sym_cmd_identifier_token11] = ACTIONS(1817), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1817), + [aux_sym_cmd_identifier_token17] = ACTIONS(1817), + [aux_sym_cmd_identifier_token18] = ACTIONS(1817), + [aux_sym_cmd_identifier_token19] = ACTIONS(1817), + [aux_sym_cmd_identifier_token20] = ACTIONS(1817), + [aux_sym_cmd_identifier_token21] = ACTIONS(1817), + [aux_sym_cmd_identifier_token22] = ACTIONS(1817), + [aux_sym_cmd_identifier_token23] = ACTIONS(1817), + [aux_sym_cmd_identifier_token24] = ACTIONS(1817), + [aux_sym_cmd_identifier_token25] = ACTIONS(1817), + [aux_sym_cmd_identifier_token26] = ACTIONS(1817), + [aux_sym_cmd_identifier_token27] = ACTIONS(1817), + [aux_sym_cmd_identifier_token28] = ACTIONS(1817), + [aux_sym_cmd_identifier_token29] = ACTIONS(1817), + [aux_sym_cmd_identifier_token30] = ACTIONS(1817), + [aux_sym_cmd_identifier_token31] = ACTIONS(1817), + [aux_sym_cmd_identifier_token32] = ACTIONS(1817), + [aux_sym_cmd_identifier_token33] = ACTIONS(1817), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1817), + [aux_sym_cmd_identifier_token36] = ACTIONS(1817), + [aux_sym_cmd_identifier_token37] = ACTIONS(1817), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1817), + [aux_sym_cmd_identifier_token40] = ACTIONS(1817), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_COMMA] = ACTIONS(1817), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1817), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1817), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1817), + [aux_sym__val_number_decimal_token3] = ACTIONS(1817), + [aux_sym__val_number_decimal_token4] = ACTIONS(1817), + [aux_sym__val_number_token1] = ACTIONS(1817), + [aux_sym__val_number_token2] = ACTIONS(1817), + [aux_sym__val_number_token3] = ACTIONS(1817), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1817), + [sym__str_single_quotes] = ACTIONS(1817), + [sym__str_back_ticks] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1817), + [sym__entry_separator] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [666] = { + [sym_comment] = STATE(666), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), [aux_sym_cmd_identifier_token2] = ACTIONS(2481), [aux_sym_cmd_identifier_token3] = ACTIONS(2481), [aux_sym_cmd_identifier_token4] = ACTIONS(2481), [aux_sym_cmd_identifier_token5] = ACTIONS(2481), [aux_sym_cmd_identifier_token6] = ACTIONS(2481), [aux_sym_cmd_identifier_token7] = ACTIONS(2481), - [aux_sym_cmd_identifier_token8] = ACTIONS(2479), - [aux_sym_cmd_identifier_token9] = ACTIONS(2479), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), [aux_sym_cmd_identifier_token10] = ACTIONS(2481), [aux_sym_cmd_identifier_token11] = ACTIONS(2481), - [aux_sym_cmd_identifier_token12] = ACTIONS(2479), - [aux_sym_cmd_identifier_token13] = ACTIONS(2479), - [aux_sym_cmd_identifier_token14] = ACTIONS(2479), - [aux_sym_cmd_identifier_token15] = ACTIONS(2479), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), [aux_sym_cmd_identifier_token16] = ACTIONS(2481), [aux_sym_cmd_identifier_token17] = ACTIONS(2481), [aux_sym_cmd_identifier_token18] = ACTIONS(2481), @@ -155750,957 +151699,872 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token31] = ACTIONS(2481), [aux_sym_cmd_identifier_token32] = ACTIONS(2481), [aux_sym_cmd_identifier_token33] = ACTIONS(2481), - [aux_sym_cmd_identifier_token34] = ACTIONS(2479), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), [aux_sym_cmd_identifier_token35] = ACTIONS(2481), [aux_sym_cmd_identifier_token36] = ACTIONS(2481), [aux_sym_cmd_identifier_token37] = ACTIONS(2481), - [aux_sym_cmd_identifier_token38] = ACTIONS(2479), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), [aux_sym_cmd_identifier_token39] = ACTIONS(2481), [aux_sym_cmd_identifier_token40] = ACTIONS(2481), - [anon_sym_def] = ACTIONS(2479), - [anon_sym_export_DASHenv] = ACTIONS(2479), - [anon_sym_extern] = ACTIONS(2479), - [anon_sym_module] = ACTIONS(2479), - [anon_sym_use] = ACTIONS(2479), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), [anon_sym_LPAREN] = ACTIONS(2481), + [anon_sym_COMMA] = ACTIONS(2481), [anon_sym_DOLLAR] = ACTIONS(2481), - [anon_sym_error] = ACTIONS(2479), - [anon_sym_DASH2] = ACTIONS(2479), - [anon_sym_break] = ACTIONS(2479), - [anon_sym_continue] = ACTIONS(2479), - [anon_sym_for] = ACTIONS(2479), - [anon_sym_in2] = ACTIONS(2479), - [anon_sym_loop] = ACTIONS(2479), - [anon_sym_make] = ACTIONS(2479), - [anon_sym_while] = ACTIONS(2479), - [anon_sym_do] = ACTIONS(2479), - [anon_sym_if] = ACTIONS(2479), - [anon_sym_else] = ACTIONS(2479), - [anon_sym_match] = ACTIONS(2479), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in2] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), [anon_sym_RBRACE] = ACTIONS(2481), - [anon_sym_try] = ACTIONS(2479), - [anon_sym_catch] = ACTIONS(2479), - [anon_sym_return] = ACTIONS(2479), - [anon_sym_source] = ACTIONS(2479), - [anon_sym_source_DASHenv] = ACTIONS(2479), - [anon_sym_register] = ACTIONS(2479), - [anon_sym_hide] = ACTIONS(2479), - [anon_sym_hide_DASHenv] = ACTIONS(2479), - [anon_sym_overlay] = ACTIONS(2479), - [anon_sym_as] = ACTIONS(2479), - [anon_sym_PLUS2] = ACTIONS(2479), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2481), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2481), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2481), - [aux_sym__val_number_decimal_token1] = ACTIONS(2479), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), [aux_sym__val_number_decimal_token2] = ACTIONS(2481), [aux_sym__val_number_decimal_token3] = ACTIONS(2481), [aux_sym__val_number_decimal_token4] = ACTIONS(2481), [aux_sym__val_number_token1] = ACTIONS(2481), [aux_sym__val_number_token2] = ACTIONS(2481), [aux_sym__val_number_token3] = ACTIONS(2481), - [aux_sym__val_number_token4] = ACTIONS(2479), - [aux_sym__val_number_token5] = ACTIONS(2479), - [aux_sym__val_number_token6] = ACTIONS(2479), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), [anon_sym_DQUOTE] = ACTIONS(2481), [sym__str_single_quotes] = ACTIONS(2481), [sym__str_back_ticks] = ACTIONS(2481), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2481), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2481), - }, - [711] = { - [sym_comment] = STATE(711), - [anon_sym_export] = ACTIONS(2353), - [anon_sym_alias] = ACTIONS(2353), - [anon_sym_let] = ACTIONS(2353), - [anon_sym_let_DASHenv] = ACTIONS(2353), - [anon_sym_mut] = ACTIONS(2353), - [anon_sym_const] = ACTIONS(2353), - [aux_sym_cmd_identifier_token1] = ACTIONS(2353), - [aux_sym_cmd_identifier_token2] = ACTIONS(2355), - [aux_sym_cmd_identifier_token3] = ACTIONS(2355), - [aux_sym_cmd_identifier_token4] = ACTIONS(2355), - [aux_sym_cmd_identifier_token5] = ACTIONS(2355), - [aux_sym_cmd_identifier_token6] = ACTIONS(2355), - [aux_sym_cmd_identifier_token7] = ACTIONS(2355), - [aux_sym_cmd_identifier_token8] = ACTIONS(2353), - [aux_sym_cmd_identifier_token9] = ACTIONS(2353), - [aux_sym_cmd_identifier_token10] = ACTIONS(2355), - [aux_sym_cmd_identifier_token11] = ACTIONS(2355), - [aux_sym_cmd_identifier_token12] = ACTIONS(2353), - [aux_sym_cmd_identifier_token13] = ACTIONS(2353), - [aux_sym_cmd_identifier_token14] = ACTIONS(2353), - [aux_sym_cmd_identifier_token15] = ACTIONS(2353), - [aux_sym_cmd_identifier_token16] = ACTIONS(2355), - [aux_sym_cmd_identifier_token17] = ACTIONS(2355), - [aux_sym_cmd_identifier_token18] = ACTIONS(2355), - [aux_sym_cmd_identifier_token19] = ACTIONS(2355), - [aux_sym_cmd_identifier_token20] = ACTIONS(2355), - [aux_sym_cmd_identifier_token21] = ACTIONS(2355), - [aux_sym_cmd_identifier_token22] = ACTIONS(2355), - [aux_sym_cmd_identifier_token23] = ACTIONS(2355), - [aux_sym_cmd_identifier_token24] = ACTIONS(2355), - [aux_sym_cmd_identifier_token25] = ACTIONS(2355), - [aux_sym_cmd_identifier_token26] = ACTIONS(2355), - [aux_sym_cmd_identifier_token27] = ACTIONS(2355), - [aux_sym_cmd_identifier_token28] = ACTIONS(2355), - [aux_sym_cmd_identifier_token29] = ACTIONS(2355), - [aux_sym_cmd_identifier_token30] = ACTIONS(2355), - [aux_sym_cmd_identifier_token31] = ACTIONS(2355), - [aux_sym_cmd_identifier_token32] = ACTIONS(2355), - [aux_sym_cmd_identifier_token33] = ACTIONS(2355), - [aux_sym_cmd_identifier_token34] = ACTIONS(2353), - [aux_sym_cmd_identifier_token35] = ACTIONS(2355), - [aux_sym_cmd_identifier_token36] = ACTIONS(2355), - [aux_sym_cmd_identifier_token37] = ACTIONS(2355), - [aux_sym_cmd_identifier_token38] = ACTIONS(2353), - [aux_sym_cmd_identifier_token39] = ACTIONS(2355), - [aux_sym_cmd_identifier_token40] = ACTIONS(2355), - [anon_sym_def] = ACTIONS(2353), - [anon_sym_export_DASHenv] = ACTIONS(2353), - [anon_sym_extern] = ACTIONS(2353), - [anon_sym_module] = ACTIONS(2353), - [anon_sym_use] = ACTIONS(2353), - [anon_sym_LPAREN] = ACTIONS(2355), - [anon_sym_DOLLAR] = ACTIONS(2355), - [anon_sym_error] = ACTIONS(2353), - [anon_sym_DASH2] = ACTIONS(2353), - [anon_sym_break] = ACTIONS(2353), - [anon_sym_continue] = ACTIONS(2353), - [anon_sym_for] = ACTIONS(2353), - [anon_sym_in2] = ACTIONS(2353), - [anon_sym_loop] = ACTIONS(2353), - [anon_sym_make] = ACTIONS(2353), - [anon_sym_while] = ACTIONS(2353), - [anon_sym_do] = ACTIONS(2353), - [anon_sym_if] = ACTIONS(2353), - [anon_sym_else] = ACTIONS(2353), - [anon_sym_match] = ACTIONS(2353), - [anon_sym_RBRACE] = ACTIONS(2355), - [anon_sym_try] = ACTIONS(2353), - [anon_sym_catch] = ACTIONS(2353), - [anon_sym_return] = ACTIONS(2353), - [anon_sym_source] = ACTIONS(2353), - [anon_sym_source_DASHenv] = ACTIONS(2353), - [anon_sym_register] = ACTIONS(2353), - [anon_sym_hide] = ACTIONS(2353), - [anon_sym_hide_DASHenv] = ACTIONS(2353), - [anon_sym_overlay] = ACTIONS(2353), - [anon_sym_as] = ACTIONS(2353), - [anon_sym_PLUS2] = ACTIONS(2353), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2355), - [aux_sym__val_number_decimal_token1] = ACTIONS(2353), - [aux_sym__val_number_decimal_token2] = ACTIONS(2355), - [aux_sym__val_number_decimal_token3] = ACTIONS(2355), - [aux_sym__val_number_decimal_token4] = ACTIONS(2355), - [aux_sym__val_number_token1] = ACTIONS(2355), - [aux_sym__val_number_token2] = ACTIONS(2355), - [aux_sym__val_number_token3] = ACTIONS(2355), - [aux_sym__val_number_token4] = ACTIONS(2353), - [aux_sym__val_number_token5] = ACTIONS(2353), - [aux_sym__val_number_token6] = ACTIONS(2353), - [anon_sym_DQUOTE] = ACTIONS(2355), - [sym__str_single_quotes] = ACTIONS(2355), - [sym__str_back_ticks] = ACTIONS(2355), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2355), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2355), - }, - [712] = { - [sym_comment] = STATE(712), - [anon_sym_export] = ACTIONS(2357), - [anon_sym_alias] = ACTIONS(2357), - [anon_sym_let] = ACTIONS(2357), - [anon_sym_let_DASHenv] = ACTIONS(2357), - [anon_sym_mut] = ACTIONS(2357), - [anon_sym_const] = ACTIONS(2357), - [aux_sym_cmd_identifier_token1] = ACTIONS(2357), - [aux_sym_cmd_identifier_token2] = ACTIONS(2359), - [aux_sym_cmd_identifier_token3] = ACTIONS(2359), - [aux_sym_cmd_identifier_token4] = ACTIONS(2359), - [aux_sym_cmd_identifier_token5] = ACTIONS(2359), - [aux_sym_cmd_identifier_token6] = ACTIONS(2359), - [aux_sym_cmd_identifier_token7] = ACTIONS(2359), - [aux_sym_cmd_identifier_token8] = ACTIONS(2357), - [aux_sym_cmd_identifier_token9] = ACTIONS(2357), - [aux_sym_cmd_identifier_token10] = ACTIONS(2359), - [aux_sym_cmd_identifier_token11] = ACTIONS(2359), - [aux_sym_cmd_identifier_token12] = ACTIONS(2357), - [aux_sym_cmd_identifier_token13] = ACTIONS(2357), - [aux_sym_cmd_identifier_token14] = ACTIONS(2357), - [aux_sym_cmd_identifier_token15] = ACTIONS(2357), - [aux_sym_cmd_identifier_token16] = ACTIONS(2359), - [aux_sym_cmd_identifier_token17] = ACTIONS(2359), - [aux_sym_cmd_identifier_token18] = ACTIONS(2359), - [aux_sym_cmd_identifier_token19] = ACTIONS(2359), - [aux_sym_cmd_identifier_token20] = ACTIONS(2359), - [aux_sym_cmd_identifier_token21] = ACTIONS(2359), - [aux_sym_cmd_identifier_token22] = ACTIONS(2359), - [aux_sym_cmd_identifier_token23] = ACTIONS(2359), - [aux_sym_cmd_identifier_token24] = ACTIONS(2359), - [aux_sym_cmd_identifier_token25] = ACTIONS(2359), - [aux_sym_cmd_identifier_token26] = ACTIONS(2359), - [aux_sym_cmd_identifier_token27] = ACTIONS(2359), - [aux_sym_cmd_identifier_token28] = ACTIONS(2359), - [aux_sym_cmd_identifier_token29] = ACTIONS(2359), - [aux_sym_cmd_identifier_token30] = ACTIONS(2359), - [aux_sym_cmd_identifier_token31] = ACTIONS(2359), - [aux_sym_cmd_identifier_token32] = ACTIONS(2359), - [aux_sym_cmd_identifier_token33] = ACTIONS(2359), - [aux_sym_cmd_identifier_token34] = ACTIONS(2357), - [aux_sym_cmd_identifier_token35] = ACTIONS(2359), - [aux_sym_cmd_identifier_token36] = ACTIONS(2359), - [aux_sym_cmd_identifier_token37] = ACTIONS(2359), - [aux_sym_cmd_identifier_token38] = ACTIONS(2357), - [aux_sym_cmd_identifier_token39] = ACTIONS(2359), - [aux_sym_cmd_identifier_token40] = ACTIONS(2359), - [anon_sym_def] = ACTIONS(2357), - [anon_sym_export_DASHenv] = ACTIONS(2357), - [anon_sym_extern] = ACTIONS(2357), - [anon_sym_module] = ACTIONS(2357), - [anon_sym_use] = ACTIONS(2357), - [anon_sym_LPAREN] = ACTIONS(2359), - [anon_sym_DOLLAR] = ACTIONS(2359), - [anon_sym_error] = ACTIONS(2357), - [anon_sym_DASH2] = ACTIONS(2357), - [anon_sym_break] = ACTIONS(2357), - [anon_sym_continue] = ACTIONS(2357), - [anon_sym_for] = ACTIONS(2357), - [anon_sym_in2] = ACTIONS(2357), - [anon_sym_loop] = ACTIONS(2357), - [anon_sym_make] = ACTIONS(2357), - [anon_sym_while] = ACTIONS(2357), - [anon_sym_do] = ACTIONS(2357), - [anon_sym_if] = ACTIONS(2357), - [anon_sym_else] = ACTIONS(2357), - [anon_sym_match] = ACTIONS(2357), - [anon_sym_RBRACE] = ACTIONS(2359), - [anon_sym_try] = ACTIONS(2357), - [anon_sym_catch] = ACTIONS(2357), - [anon_sym_return] = ACTIONS(2357), - [anon_sym_source] = ACTIONS(2357), - [anon_sym_source_DASHenv] = ACTIONS(2357), - [anon_sym_register] = ACTIONS(2357), - [anon_sym_hide] = ACTIONS(2357), - [anon_sym_hide_DASHenv] = ACTIONS(2357), - [anon_sym_overlay] = ACTIONS(2357), - [anon_sym_as] = ACTIONS(2357), - [anon_sym_PLUS2] = ACTIONS(2357), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2359), - [aux_sym__val_number_decimal_token1] = ACTIONS(2357), - [aux_sym__val_number_decimal_token2] = ACTIONS(2359), - [aux_sym__val_number_decimal_token3] = ACTIONS(2359), - [aux_sym__val_number_decimal_token4] = ACTIONS(2359), - [aux_sym__val_number_token1] = ACTIONS(2359), - [aux_sym__val_number_token2] = ACTIONS(2359), - [aux_sym__val_number_token3] = ACTIONS(2359), - [aux_sym__val_number_token4] = ACTIONS(2357), - [aux_sym__val_number_token5] = ACTIONS(2357), - [aux_sym__val_number_token6] = ACTIONS(2357), - [anon_sym_DQUOTE] = ACTIONS(2359), - [sym__str_single_quotes] = ACTIONS(2359), - [sym__str_back_ticks] = ACTIONS(2359), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2359), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2359), - }, - [713] = { - [sym_comment] = STATE(713), - [anon_sym_export] = ACTIONS(2361), - [anon_sym_alias] = ACTIONS(2361), - [anon_sym_let] = ACTIONS(2361), - [anon_sym_let_DASHenv] = ACTIONS(2361), - [anon_sym_mut] = ACTIONS(2361), - [anon_sym_const] = ACTIONS(2361), - [aux_sym_cmd_identifier_token1] = ACTIONS(2361), - [aux_sym_cmd_identifier_token2] = ACTIONS(2363), - [aux_sym_cmd_identifier_token3] = ACTIONS(2363), - [aux_sym_cmd_identifier_token4] = ACTIONS(2363), - [aux_sym_cmd_identifier_token5] = ACTIONS(2363), - [aux_sym_cmd_identifier_token6] = ACTIONS(2363), - [aux_sym_cmd_identifier_token7] = ACTIONS(2363), - [aux_sym_cmd_identifier_token8] = ACTIONS(2361), - [aux_sym_cmd_identifier_token9] = ACTIONS(2361), - [aux_sym_cmd_identifier_token10] = ACTIONS(2363), - [aux_sym_cmd_identifier_token11] = ACTIONS(2363), - [aux_sym_cmd_identifier_token12] = ACTIONS(2361), - [aux_sym_cmd_identifier_token13] = ACTIONS(2361), - [aux_sym_cmd_identifier_token14] = ACTIONS(2361), - [aux_sym_cmd_identifier_token15] = ACTIONS(2361), - [aux_sym_cmd_identifier_token16] = ACTIONS(2363), - [aux_sym_cmd_identifier_token17] = ACTIONS(2363), - [aux_sym_cmd_identifier_token18] = ACTIONS(2363), - [aux_sym_cmd_identifier_token19] = ACTIONS(2363), - [aux_sym_cmd_identifier_token20] = ACTIONS(2363), - [aux_sym_cmd_identifier_token21] = ACTIONS(2363), - [aux_sym_cmd_identifier_token22] = ACTIONS(2363), - [aux_sym_cmd_identifier_token23] = ACTIONS(2363), - [aux_sym_cmd_identifier_token24] = ACTIONS(2363), - [aux_sym_cmd_identifier_token25] = ACTIONS(2363), - [aux_sym_cmd_identifier_token26] = ACTIONS(2363), - [aux_sym_cmd_identifier_token27] = ACTIONS(2363), - [aux_sym_cmd_identifier_token28] = ACTIONS(2363), - [aux_sym_cmd_identifier_token29] = ACTIONS(2363), - [aux_sym_cmd_identifier_token30] = ACTIONS(2363), - [aux_sym_cmd_identifier_token31] = ACTIONS(2363), - [aux_sym_cmd_identifier_token32] = ACTIONS(2363), - [aux_sym_cmd_identifier_token33] = ACTIONS(2363), - [aux_sym_cmd_identifier_token34] = ACTIONS(2361), - [aux_sym_cmd_identifier_token35] = ACTIONS(2363), - [aux_sym_cmd_identifier_token36] = ACTIONS(2363), - [aux_sym_cmd_identifier_token37] = ACTIONS(2363), - [aux_sym_cmd_identifier_token38] = ACTIONS(2361), - [aux_sym_cmd_identifier_token39] = ACTIONS(2363), - [aux_sym_cmd_identifier_token40] = ACTIONS(2363), - [anon_sym_def] = ACTIONS(2361), - [anon_sym_export_DASHenv] = ACTIONS(2361), - [anon_sym_extern] = ACTIONS(2361), - [anon_sym_module] = ACTIONS(2361), - [anon_sym_use] = ACTIONS(2361), - [anon_sym_LPAREN] = ACTIONS(2363), - [anon_sym_DOLLAR] = ACTIONS(2363), - [anon_sym_error] = ACTIONS(2361), - [anon_sym_DASH2] = ACTIONS(2361), - [anon_sym_break] = ACTIONS(2361), - [anon_sym_continue] = ACTIONS(2361), - [anon_sym_for] = ACTIONS(2361), - [anon_sym_in2] = ACTIONS(2361), - [anon_sym_loop] = ACTIONS(2361), - [anon_sym_make] = ACTIONS(2361), - [anon_sym_while] = ACTIONS(2361), - [anon_sym_do] = ACTIONS(2361), - [anon_sym_if] = ACTIONS(2361), - [anon_sym_else] = ACTIONS(2361), - [anon_sym_match] = ACTIONS(2361), - [anon_sym_RBRACE] = ACTIONS(2363), - [anon_sym_try] = ACTIONS(2361), - [anon_sym_catch] = ACTIONS(2361), - [anon_sym_return] = ACTIONS(2361), - [anon_sym_source] = ACTIONS(2361), - [anon_sym_source_DASHenv] = ACTIONS(2361), - [anon_sym_register] = ACTIONS(2361), - [anon_sym_hide] = ACTIONS(2361), - [anon_sym_hide_DASHenv] = ACTIONS(2361), - [anon_sym_overlay] = ACTIONS(2361), - [anon_sym_as] = ACTIONS(2361), - [anon_sym_PLUS2] = ACTIONS(2361), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2363), - [aux_sym__val_number_decimal_token1] = ACTIONS(2361), - [aux_sym__val_number_decimal_token2] = ACTIONS(2363), - [aux_sym__val_number_decimal_token3] = ACTIONS(2363), - [aux_sym__val_number_decimal_token4] = ACTIONS(2363), - [aux_sym__val_number_token1] = ACTIONS(2363), - [aux_sym__val_number_token2] = ACTIONS(2363), - [aux_sym__val_number_token3] = ACTIONS(2363), - [aux_sym__val_number_token4] = ACTIONS(2361), - [aux_sym__val_number_token5] = ACTIONS(2361), - [aux_sym__val_number_token6] = ACTIONS(2361), - [anon_sym_DQUOTE] = ACTIONS(2363), - [sym__str_single_quotes] = ACTIONS(2363), - [sym__str_back_ticks] = ACTIONS(2363), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2363), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2363), - }, - [714] = { - [sym_comment] = STATE(714), - [anon_sym_export] = ACTIONS(2365), - [anon_sym_alias] = ACTIONS(2365), - [anon_sym_let] = ACTIONS(2365), - [anon_sym_let_DASHenv] = ACTIONS(2365), - [anon_sym_mut] = ACTIONS(2365), - [anon_sym_const] = ACTIONS(2365), - [aux_sym_cmd_identifier_token1] = ACTIONS(2365), - [aux_sym_cmd_identifier_token2] = ACTIONS(2367), - [aux_sym_cmd_identifier_token3] = ACTIONS(2367), - [aux_sym_cmd_identifier_token4] = ACTIONS(2367), - [aux_sym_cmd_identifier_token5] = ACTIONS(2367), - [aux_sym_cmd_identifier_token6] = ACTIONS(2367), - [aux_sym_cmd_identifier_token7] = ACTIONS(2367), - [aux_sym_cmd_identifier_token8] = ACTIONS(2365), - [aux_sym_cmd_identifier_token9] = ACTIONS(2365), - [aux_sym_cmd_identifier_token10] = ACTIONS(2367), - [aux_sym_cmd_identifier_token11] = ACTIONS(2367), - [aux_sym_cmd_identifier_token12] = ACTIONS(2365), - [aux_sym_cmd_identifier_token13] = ACTIONS(2365), - [aux_sym_cmd_identifier_token14] = ACTIONS(2365), - [aux_sym_cmd_identifier_token15] = ACTIONS(2365), - [aux_sym_cmd_identifier_token16] = ACTIONS(2367), - [aux_sym_cmd_identifier_token17] = ACTIONS(2367), - [aux_sym_cmd_identifier_token18] = ACTIONS(2367), - [aux_sym_cmd_identifier_token19] = ACTIONS(2367), - [aux_sym_cmd_identifier_token20] = ACTIONS(2367), - [aux_sym_cmd_identifier_token21] = ACTIONS(2367), - [aux_sym_cmd_identifier_token22] = ACTIONS(2367), - [aux_sym_cmd_identifier_token23] = ACTIONS(2367), - [aux_sym_cmd_identifier_token24] = ACTIONS(2367), - [aux_sym_cmd_identifier_token25] = ACTIONS(2367), - [aux_sym_cmd_identifier_token26] = ACTIONS(2367), - [aux_sym_cmd_identifier_token27] = ACTIONS(2367), - [aux_sym_cmd_identifier_token28] = ACTIONS(2367), - [aux_sym_cmd_identifier_token29] = ACTIONS(2367), - [aux_sym_cmd_identifier_token30] = ACTIONS(2367), - [aux_sym_cmd_identifier_token31] = ACTIONS(2367), - [aux_sym_cmd_identifier_token32] = ACTIONS(2367), - [aux_sym_cmd_identifier_token33] = ACTIONS(2367), - [aux_sym_cmd_identifier_token34] = ACTIONS(2365), - [aux_sym_cmd_identifier_token35] = ACTIONS(2367), - [aux_sym_cmd_identifier_token36] = ACTIONS(2367), - [aux_sym_cmd_identifier_token37] = ACTIONS(2367), - [aux_sym_cmd_identifier_token38] = ACTIONS(2365), - [aux_sym_cmd_identifier_token39] = ACTIONS(2367), - [aux_sym_cmd_identifier_token40] = ACTIONS(2367), - [anon_sym_def] = ACTIONS(2365), - [anon_sym_export_DASHenv] = ACTIONS(2365), - [anon_sym_extern] = ACTIONS(2365), - [anon_sym_module] = ACTIONS(2365), - [anon_sym_use] = ACTIONS(2365), - [anon_sym_LPAREN] = ACTIONS(2367), - [anon_sym_DOLLAR] = ACTIONS(2367), - [anon_sym_error] = ACTIONS(2365), - [anon_sym_DASH2] = ACTIONS(2365), - [anon_sym_break] = ACTIONS(2365), - [anon_sym_continue] = ACTIONS(2365), - [anon_sym_for] = ACTIONS(2365), - [anon_sym_in2] = ACTIONS(2365), - [anon_sym_loop] = ACTIONS(2365), - [anon_sym_make] = ACTIONS(2365), - [anon_sym_while] = ACTIONS(2365), - [anon_sym_do] = ACTIONS(2365), - [anon_sym_if] = ACTIONS(2365), - [anon_sym_else] = ACTIONS(2365), - [anon_sym_match] = ACTIONS(2365), - [anon_sym_RBRACE] = ACTIONS(2367), - [anon_sym_try] = ACTIONS(2365), - [anon_sym_catch] = ACTIONS(2365), - [anon_sym_return] = ACTIONS(2365), - [anon_sym_source] = ACTIONS(2365), - [anon_sym_source_DASHenv] = ACTIONS(2365), - [anon_sym_register] = ACTIONS(2365), - [anon_sym_hide] = ACTIONS(2365), - [anon_sym_hide_DASHenv] = ACTIONS(2365), - [anon_sym_overlay] = ACTIONS(2365), - [anon_sym_as] = ACTIONS(2365), - [anon_sym_PLUS2] = ACTIONS(2365), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2367), - [aux_sym__val_number_decimal_token1] = ACTIONS(2365), - [aux_sym__val_number_decimal_token2] = ACTIONS(2367), - [aux_sym__val_number_decimal_token3] = ACTIONS(2367), - [aux_sym__val_number_decimal_token4] = ACTIONS(2367), - [aux_sym__val_number_token1] = ACTIONS(2367), - [aux_sym__val_number_token2] = ACTIONS(2367), - [aux_sym__val_number_token3] = ACTIONS(2367), - [aux_sym__val_number_token4] = ACTIONS(2365), - [aux_sym__val_number_token5] = ACTIONS(2365), - [aux_sym__val_number_token6] = ACTIONS(2365), - [anon_sym_DQUOTE] = ACTIONS(2367), - [sym__str_single_quotes] = ACTIONS(2367), - [sym__str_back_ticks] = ACTIONS(2367), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2367), - }, - [715] = { - [sym_comment] = STATE(715), - [anon_sym_export] = ACTIONS(2369), - [anon_sym_alias] = ACTIONS(2369), - [anon_sym_let] = ACTIONS(2369), - [anon_sym_let_DASHenv] = ACTIONS(2369), - [anon_sym_mut] = ACTIONS(2369), - [anon_sym_const] = ACTIONS(2369), - [aux_sym_cmd_identifier_token1] = ACTIONS(2369), - [aux_sym_cmd_identifier_token2] = ACTIONS(2371), - [aux_sym_cmd_identifier_token3] = ACTIONS(2371), - [aux_sym_cmd_identifier_token4] = ACTIONS(2371), - [aux_sym_cmd_identifier_token5] = ACTIONS(2371), - [aux_sym_cmd_identifier_token6] = ACTIONS(2371), - [aux_sym_cmd_identifier_token7] = ACTIONS(2371), - [aux_sym_cmd_identifier_token8] = ACTIONS(2369), - [aux_sym_cmd_identifier_token9] = ACTIONS(2369), - [aux_sym_cmd_identifier_token10] = ACTIONS(2371), - [aux_sym_cmd_identifier_token11] = ACTIONS(2371), - [aux_sym_cmd_identifier_token12] = ACTIONS(2369), - [aux_sym_cmd_identifier_token13] = ACTIONS(2369), - [aux_sym_cmd_identifier_token14] = ACTIONS(2369), - [aux_sym_cmd_identifier_token15] = ACTIONS(2369), - [aux_sym_cmd_identifier_token16] = ACTIONS(2371), - [aux_sym_cmd_identifier_token17] = ACTIONS(2371), - [aux_sym_cmd_identifier_token18] = ACTIONS(2371), - [aux_sym_cmd_identifier_token19] = ACTIONS(2371), - [aux_sym_cmd_identifier_token20] = ACTIONS(2371), - [aux_sym_cmd_identifier_token21] = ACTIONS(2371), - [aux_sym_cmd_identifier_token22] = ACTIONS(2371), - [aux_sym_cmd_identifier_token23] = ACTIONS(2371), - [aux_sym_cmd_identifier_token24] = ACTIONS(2371), - [aux_sym_cmd_identifier_token25] = ACTIONS(2371), - [aux_sym_cmd_identifier_token26] = ACTIONS(2371), - [aux_sym_cmd_identifier_token27] = ACTIONS(2371), - [aux_sym_cmd_identifier_token28] = ACTIONS(2371), - [aux_sym_cmd_identifier_token29] = ACTIONS(2371), - [aux_sym_cmd_identifier_token30] = ACTIONS(2371), - [aux_sym_cmd_identifier_token31] = ACTIONS(2371), - [aux_sym_cmd_identifier_token32] = ACTIONS(2371), - [aux_sym_cmd_identifier_token33] = ACTIONS(2371), - [aux_sym_cmd_identifier_token34] = ACTIONS(2369), - [aux_sym_cmd_identifier_token35] = ACTIONS(2371), - [aux_sym_cmd_identifier_token36] = ACTIONS(2371), - [aux_sym_cmd_identifier_token37] = ACTIONS(2371), - [aux_sym_cmd_identifier_token38] = ACTIONS(2369), - [aux_sym_cmd_identifier_token39] = ACTIONS(2371), - [aux_sym_cmd_identifier_token40] = ACTIONS(2371), - [anon_sym_def] = ACTIONS(2369), - [anon_sym_export_DASHenv] = ACTIONS(2369), - [anon_sym_extern] = ACTIONS(2369), - [anon_sym_module] = ACTIONS(2369), - [anon_sym_use] = ACTIONS(2369), - [anon_sym_LPAREN] = ACTIONS(2371), - [anon_sym_DOLLAR] = ACTIONS(2371), - [anon_sym_error] = ACTIONS(2369), - [anon_sym_DASH2] = ACTIONS(2369), - [anon_sym_break] = ACTIONS(2369), - [anon_sym_continue] = ACTIONS(2369), - [anon_sym_for] = ACTIONS(2369), - [anon_sym_in2] = ACTIONS(2369), - [anon_sym_loop] = ACTIONS(2369), - [anon_sym_make] = ACTIONS(2369), - [anon_sym_while] = ACTIONS(2369), - [anon_sym_do] = ACTIONS(2369), - [anon_sym_if] = ACTIONS(2369), - [anon_sym_else] = ACTIONS(2369), - [anon_sym_match] = ACTIONS(2369), - [anon_sym_RBRACE] = ACTIONS(2371), - [anon_sym_try] = ACTIONS(2369), - [anon_sym_catch] = ACTIONS(2369), - [anon_sym_return] = ACTIONS(2369), - [anon_sym_source] = ACTIONS(2369), - [anon_sym_source_DASHenv] = ACTIONS(2369), - [anon_sym_register] = ACTIONS(2369), - [anon_sym_hide] = ACTIONS(2369), - [anon_sym_hide_DASHenv] = ACTIONS(2369), - [anon_sym_overlay] = ACTIONS(2369), - [anon_sym_as] = ACTIONS(2369), - [anon_sym_PLUS2] = ACTIONS(2369), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2371), - [aux_sym__val_number_decimal_token1] = ACTIONS(2369), - [aux_sym__val_number_decimal_token2] = ACTIONS(2371), - [aux_sym__val_number_decimal_token3] = ACTIONS(2371), - [aux_sym__val_number_decimal_token4] = ACTIONS(2371), - [aux_sym__val_number_token1] = ACTIONS(2371), - [aux_sym__val_number_token2] = ACTIONS(2371), - [aux_sym__val_number_token3] = ACTIONS(2371), - [aux_sym__val_number_token4] = ACTIONS(2369), - [aux_sym__val_number_token5] = ACTIONS(2369), - [aux_sym__val_number_token6] = ACTIONS(2369), - [anon_sym_DQUOTE] = ACTIONS(2371), - [sym__str_single_quotes] = ACTIONS(2371), - [sym__str_back_ticks] = ACTIONS(2371), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2371), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2371), - }, - [716] = { - [sym_comment] = STATE(716), - [anon_sym_export] = ACTIONS(2373), - [anon_sym_alias] = ACTIONS(2373), - [anon_sym_let] = ACTIONS(2373), - [anon_sym_let_DASHenv] = ACTIONS(2373), - [anon_sym_mut] = ACTIONS(2373), - [anon_sym_const] = ACTIONS(2373), - [aux_sym_cmd_identifier_token1] = ACTIONS(2373), - [aux_sym_cmd_identifier_token2] = ACTIONS(2375), - [aux_sym_cmd_identifier_token3] = ACTIONS(2375), - [aux_sym_cmd_identifier_token4] = ACTIONS(2375), - [aux_sym_cmd_identifier_token5] = ACTIONS(2375), - [aux_sym_cmd_identifier_token6] = ACTIONS(2375), - [aux_sym_cmd_identifier_token7] = ACTIONS(2375), - [aux_sym_cmd_identifier_token8] = ACTIONS(2373), - [aux_sym_cmd_identifier_token9] = ACTIONS(2373), - [aux_sym_cmd_identifier_token10] = ACTIONS(2375), - [aux_sym_cmd_identifier_token11] = ACTIONS(2375), - [aux_sym_cmd_identifier_token12] = ACTIONS(2373), - [aux_sym_cmd_identifier_token13] = ACTIONS(2373), - [aux_sym_cmd_identifier_token14] = ACTIONS(2373), - [aux_sym_cmd_identifier_token15] = ACTIONS(2373), - [aux_sym_cmd_identifier_token16] = ACTIONS(2375), - [aux_sym_cmd_identifier_token17] = ACTIONS(2375), - [aux_sym_cmd_identifier_token18] = ACTIONS(2375), - [aux_sym_cmd_identifier_token19] = ACTIONS(2375), - [aux_sym_cmd_identifier_token20] = ACTIONS(2375), - [aux_sym_cmd_identifier_token21] = ACTIONS(2375), - [aux_sym_cmd_identifier_token22] = ACTIONS(2375), - [aux_sym_cmd_identifier_token23] = ACTIONS(2375), - [aux_sym_cmd_identifier_token24] = ACTIONS(2375), - [aux_sym_cmd_identifier_token25] = ACTIONS(2375), - [aux_sym_cmd_identifier_token26] = ACTIONS(2375), - [aux_sym_cmd_identifier_token27] = ACTIONS(2375), - [aux_sym_cmd_identifier_token28] = ACTIONS(2375), - [aux_sym_cmd_identifier_token29] = ACTIONS(2375), - [aux_sym_cmd_identifier_token30] = ACTIONS(2375), - [aux_sym_cmd_identifier_token31] = ACTIONS(2375), - [aux_sym_cmd_identifier_token32] = ACTIONS(2375), - [aux_sym_cmd_identifier_token33] = ACTIONS(2375), - [aux_sym_cmd_identifier_token34] = ACTIONS(2373), - [aux_sym_cmd_identifier_token35] = ACTIONS(2375), - [aux_sym_cmd_identifier_token36] = ACTIONS(2375), - [aux_sym_cmd_identifier_token37] = ACTIONS(2375), - [aux_sym_cmd_identifier_token38] = ACTIONS(2373), - [aux_sym_cmd_identifier_token39] = ACTIONS(2375), - [aux_sym_cmd_identifier_token40] = ACTIONS(2375), - [anon_sym_def] = ACTIONS(2373), - [anon_sym_export_DASHenv] = ACTIONS(2373), - [anon_sym_extern] = ACTIONS(2373), - [anon_sym_module] = ACTIONS(2373), - [anon_sym_use] = ACTIONS(2373), - [anon_sym_LPAREN] = ACTIONS(2375), - [anon_sym_DOLLAR] = ACTIONS(2375), - [anon_sym_error] = ACTIONS(2373), - [anon_sym_DASH2] = ACTIONS(2373), - [anon_sym_break] = ACTIONS(2373), - [anon_sym_continue] = ACTIONS(2373), - [anon_sym_for] = ACTIONS(2373), - [anon_sym_in2] = ACTIONS(2373), - [anon_sym_loop] = ACTIONS(2373), - [anon_sym_make] = ACTIONS(2373), - [anon_sym_while] = ACTIONS(2373), - [anon_sym_do] = ACTIONS(2373), - [anon_sym_if] = ACTIONS(2373), - [anon_sym_else] = ACTIONS(2373), - [anon_sym_match] = ACTIONS(2373), - [anon_sym_RBRACE] = ACTIONS(2375), - [anon_sym_try] = ACTIONS(2373), - [anon_sym_catch] = ACTIONS(2373), - [anon_sym_return] = ACTIONS(2373), - [anon_sym_source] = ACTIONS(2373), - [anon_sym_source_DASHenv] = ACTIONS(2373), - [anon_sym_register] = ACTIONS(2373), - [anon_sym_hide] = ACTIONS(2373), - [anon_sym_hide_DASHenv] = ACTIONS(2373), - [anon_sym_overlay] = ACTIONS(2373), - [anon_sym_as] = ACTIONS(2373), - [anon_sym_PLUS2] = ACTIONS(2373), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), - [aux_sym__val_number_decimal_token1] = ACTIONS(2373), - [aux_sym__val_number_decimal_token2] = ACTIONS(2375), - [aux_sym__val_number_decimal_token3] = ACTIONS(2375), - [aux_sym__val_number_decimal_token4] = ACTIONS(2375), - [aux_sym__val_number_token1] = ACTIONS(2375), - [aux_sym__val_number_token2] = ACTIONS(2375), - [aux_sym__val_number_token3] = ACTIONS(2375), - [aux_sym__val_number_token4] = ACTIONS(2373), - [aux_sym__val_number_token5] = ACTIONS(2373), - [aux_sym__val_number_token6] = ACTIONS(2373), - [anon_sym_DQUOTE] = ACTIONS(2375), - [sym__str_single_quotes] = ACTIONS(2375), - [sym__str_back_ticks] = ACTIONS(2375), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2375), - }, - [717] = { - [sym_comment] = STATE(717), - [anon_sym_export] = ACTIONS(2377), - [anon_sym_alias] = ACTIONS(2377), - [anon_sym_let] = ACTIONS(2377), - [anon_sym_let_DASHenv] = ACTIONS(2377), - [anon_sym_mut] = ACTIONS(2377), - [anon_sym_const] = ACTIONS(2377), - [aux_sym_cmd_identifier_token1] = ACTIONS(2377), - [aux_sym_cmd_identifier_token2] = ACTIONS(2379), - [aux_sym_cmd_identifier_token3] = ACTIONS(2379), - [aux_sym_cmd_identifier_token4] = ACTIONS(2379), - [aux_sym_cmd_identifier_token5] = ACTIONS(2379), - [aux_sym_cmd_identifier_token6] = ACTIONS(2379), - [aux_sym_cmd_identifier_token7] = ACTIONS(2379), - [aux_sym_cmd_identifier_token8] = ACTIONS(2377), - [aux_sym_cmd_identifier_token9] = ACTIONS(2377), - [aux_sym_cmd_identifier_token10] = ACTIONS(2379), - [aux_sym_cmd_identifier_token11] = ACTIONS(2379), - [aux_sym_cmd_identifier_token12] = ACTIONS(2377), - [aux_sym_cmd_identifier_token13] = ACTIONS(2377), - [aux_sym_cmd_identifier_token14] = ACTIONS(2377), - [aux_sym_cmd_identifier_token15] = ACTIONS(2377), - [aux_sym_cmd_identifier_token16] = ACTIONS(2379), - [aux_sym_cmd_identifier_token17] = ACTIONS(2379), - [aux_sym_cmd_identifier_token18] = ACTIONS(2379), - [aux_sym_cmd_identifier_token19] = ACTIONS(2379), - [aux_sym_cmd_identifier_token20] = ACTIONS(2379), - [aux_sym_cmd_identifier_token21] = ACTIONS(2379), - [aux_sym_cmd_identifier_token22] = ACTIONS(2379), - [aux_sym_cmd_identifier_token23] = ACTIONS(2379), - [aux_sym_cmd_identifier_token24] = ACTIONS(2379), - [aux_sym_cmd_identifier_token25] = ACTIONS(2379), - [aux_sym_cmd_identifier_token26] = ACTIONS(2379), - [aux_sym_cmd_identifier_token27] = ACTIONS(2379), - [aux_sym_cmd_identifier_token28] = ACTIONS(2379), - [aux_sym_cmd_identifier_token29] = ACTIONS(2379), - [aux_sym_cmd_identifier_token30] = ACTIONS(2379), - [aux_sym_cmd_identifier_token31] = ACTIONS(2379), - [aux_sym_cmd_identifier_token32] = ACTIONS(2379), - [aux_sym_cmd_identifier_token33] = ACTIONS(2379), - [aux_sym_cmd_identifier_token34] = ACTIONS(2377), - [aux_sym_cmd_identifier_token35] = ACTIONS(2379), - [aux_sym_cmd_identifier_token36] = ACTIONS(2379), - [aux_sym_cmd_identifier_token37] = ACTIONS(2379), - [aux_sym_cmd_identifier_token38] = ACTIONS(2377), - [aux_sym_cmd_identifier_token39] = ACTIONS(2379), - [aux_sym_cmd_identifier_token40] = ACTIONS(2379), - [anon_sym_def] = ACTIONS(2377), - [anon_sym_export_DASHenv] = ACTIONS(2377), - [anon_sym_extern] = ACTIONS(2377), - [anon_sym_module] = ACTIONS(2377), - [anon_sym_use] = ACTIONS(2377), - [anon_sym_LPAREN] = ACTIONS(2379), - [anon_sym_DOLLAR] = ACTIONS(2379), - [anon_sym_error] = ACTIONS(2377), - [anon_sym_DASH2] = ACTIONS(2377), - [anon_sym_break] = ACTIONS(2377), - [anon_sym_continue] = ACTIONS(2377), - [anon_sym_for] = ACTIONS(2377), - [anon_sym_in2] = ACTIONS(2377), - [anon_sym_loop] = ACTIONS(2377), - [anon_sym_make] = ACTIONS(2377), - [anon_sym_while] = ACTIONS(2377), - [anon_sym_do] = ACTIONS(2377), - [anon_sym_if] = ACTIONS(2377), - [anon_sym_else] = ACTIONS(2377), - [anon_sym_match] = ACTIONS(2377), - [anon_sym_RBRACE] = ACTIONS(2379), - [anon_sym_try] = ACTIONS(2377), - [anon_sym_catch] = ACTIONS(2377), - [anon_sym_return] = ACTIONS(2377), - [anon_sym_source] = ACTIONS(2377), - [anon_sym_source_DASHenv] = ACTIONS(2377), - [anon_sym_register] = ACTIONS(2377), - [anon_sym_hide] = ACTIONS(2377), - [anon_sym_hide_DASHenv] = ACTIONS(2377), - [anon_sym_overlay] = ACTIONS(2377), - [anon_sym_as] = ACTIONS(2377), - [anon_sym_PLUS2] = ACTIONS(2377), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), - [aux_sym__val_number_decimal_token1] = ACTIONS(2377), - [aux_sym__val_number_decimal_token2] = ACTIONS(2379), - [aux_sym__val_number_decimal_token3] = ACTIONS(2379), - [aux_sym__val_number_decimal_token4] = ACTIONS(2379), - [aux_sym__val_number_token1] = ACTIONS(2379), - [aux_sym__val_number_token2] = ACTIONS(2379), - [aux_sym__val_number_token3] = ACTIONS(2379), - [aux_sym__val_number_token4] = ACTIONS(2377), - [aux_sym__val_number_token5] = ACTIONS(2377), - [aux_sym__val_number_token6] = ACTIONS(2377), - [anon_sym_DQUOTE] = ACTIONS(2379), - [sym__str_single_quotes] = ACTIONS(2379), - [sym__str_back_ticks] = ACTIONS(2379), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2379), + [sym__entry_separator] = ACTIONS(2483), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2483), }, - [718] = { - [sym_comment] = STATE(718), - [anon_sym_export] = ACTIONS(2381), - [anon_sym_alias] = ACTIONS(2381), - [anon_sym_let] = ACTIONS(2381), - [anon_sym_let_DASHenv] = ACTIONS(2381), - [anon_sym_mut] = ACTIONS(2381), - [anon_sym_const] = ACTIONS(2381), - [aux_sym_cmd_identifier_token1] = ACTIONS(2381), - [aux_sym_cmd_identifier_token2] = ACTIONS(2383), - [aux_sym_cmd_identifier_token3] = ACTIONS(2383), - [aux_sym_cmd_identifier_token4] = ACTIONS(2383), - [aux_sym_cmd_identifier_token5] = ACTIONS(2383), - [aux_sym_cmd_identifier_token6] = ACTIONS(2383), - [aux_sym_cmd_identifier_token7] = ACTIONS(2383), - [aux_sym_cmd_identifier_token8] = ACTIONS(2381), - [aux_sym_cmd_identifier_token9] = ACTIONS(2381), - [aux_sym_cmd_identifier_token10] = ACTIONS(2383), - [aux_sym_cmd_identifier_token11] = ACTIONS(2383), - [aux_sym_cmd_identifier_token12] = ACTIONS(2381), - [aux_sym_cmd_identifier_token13] = ACTIONS(2381), - [aux_sym_cmd_identifier_token14] = ACTIONS(2381), - [aux_sym_cmd_identifier_token15] = ACTIONS(2381), - [aux_sym_cmd_identifier_token16] = ACTIONS(2383), - [aux_sym_cmd_identifier_token17] = ACTIONS(2383), - [aux_sym_cmd_identifier_token18] = ACTIONS(2383), - [aux_sym_cmd_identifier_token19] = ACTIONS(2383), - [aux_sym_cmd_identifier_token20] = ACTIONS(2383), - [aux_sym_cmd_identifier_token21] = ACTIONS(2383), - [aux_sym_cmd_identifier_token22] = ACTIONS(2383), - [aux_sym_cmd_identifier_token23] = ACTIONS(2383), - [aux_sym_cmd_identifier_token24] = ACTIONS(2383), - [aux_sym_cmd_identifier_token25] = ACTIONS(2383), - [aux_sym_cmd_identifier_token26] = ACTIONS(2383), - [aux_sym_cmd_identifier_token27] = ACTIONS(2383), - [aux_sym_cmd_identifier_token28] = ACTIONS(2383), - [aux_sym_cmd_identifier_token29] = ACTIONS(2383), - [aux_sym_cmd_identifier_token30] = ACTIONS(2383), - [aux_sym_cmd_identifier_token31] = ACTIONS(2383), - [aux_sym_cmd_identifier_token32] = ACTIONS(2383), - [aux_sym_cmd_identifier_token33] = ACTIONS(2383), - [aux_sym_cmd_identifier_token34] = ACTIONS(2381), - [aux_sym_cmd_identifier_token35] = ACTIONS(2383), - [aux_sym_cmd_identifier_token36] = ACTIONS(2383), - [aux_sym_cmd_identifier_token37] = ACTIONS(2383), - [aux_sym_cmd_identifier_token38] = ACTIONS(2381), - [aux_sym_cmd_identifier_token39] = ACTIONS(2383), - [aux_sym_cmd_identifier_token40] = ACTIONS(2383), - [anon_sym_def] = ACTIONS(2381), - [anon_sym_export_DASHenv] = ACTIONS(2381), - [anon_sym_extern] = ACTIONS(2381), - [anon_sym_module] = ACTIONS(2381), - [anon_sym_use] = ACTIONS(2381), - [anon_sym_LPAREN] = ACTIONS(2383), - [anon_sym_DOLLAR] = ACTIONS(2383), - [anon_sym_error] = ACTIONS(2381), - [anon_sym_DASH2] = ACTIONS(2381), - [anon_sym_break] = ACTIONS(2381), - [anon_sym_continue] = ACTIONS(2381), - [anon_sym_for] = ACTIONS(2381), - [anon_sym_in2] = ACTIONS(2381), - [anon_sym_loop] = ACTIONS(2381), - [anon_sym_make] = ACTIONS(2381), - [anon_sym_while] = ACTIONS(2381), - [anon_sym_do] = ACTIONS(2381), - [anon_sym_if] = ACTIONS(2381), - [anon_sym_else] = ACTIONS(2381), - [anon_sym_match] = ACTIONS(2381), - [anon_sym_RBRACE] = ACTIONS(2383), - [anon_sym_try] = ACTIONS(2381), - [anon_sym_catch] = ACTIONS(2381), - [anon_sym_return] = ACTIONS(2381), - [anon_sym_source] = ACTIONS(2381), - [anon_sym_source_DASHenv] = ACTIONS(2381), - [anon_sym_register] = ACTIONS(2381), - [anon_sym_hide] = ACTIONS(2381), - [anon_sym_hide_DASHenv] = ACTIONS(2381), - [anon_sym_overlay] = ACTIONS(2381), - [anon_sym_as] = ACTIONS(2381), - [anon_sym_PLUS2] = ACTIONS(2381), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), - [aux_sym__val_number_decimal_token1] = ACTIONS(2381), - [aux_sym__val_number_decimal_token2] = ACTIONS(2383), - [aux_sym__val_number_decimal_token3] = ACTIONS(2383), - [aux_sym__val_number_decimal_token4] = ACTIONS(2383), - [aux_sym__val_number_token1] = ACTIONS(2383), - [aux_sym__val_number_token2] = ACTIONS(2383), - [aux_sym__val_number_token3] = ACTIONS(2383), - [aux_sym__val_number_token4] = ACTIONS(2381), - [aux_sym__val_number_token5] = ACTIONS(2381), - [aux_sym__val_number_token6] = ACTIONS(2381), - [anon_sym_DQUOTE] = ACTIONS(2383), - [sym__str_single_quotes] = ACTIONS(2383), - [sym__str_back_ticks] = ACTIONS(2383), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), + [667] = { + [sym_comment] = STATE(667), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1004), + [aux_sym_cmd_identifier_token3] = ACTIONS(1004), + [aux_sym_cmd_identifier_token4] = ACTIONS(1004), + [aux_sym_cmd_identifier_token5] = ACTIONS(1004), + [aux_sym_cmd_identifier_token6] = ACTIONS(1004), + [aux_sym_cmd_identifier_token7] = ACTIONS(1004), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1004), + [aux_sym_cmd_identifier_token11] = ACTIONS(1004), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1004), + [aux_sym_cmd_identifier_token17] = ACTIONS(1004), + [aux_sym_cmd_identifier_token18] = ACTIONS(1004), + [aux_sym_cmd_identifier_token19] = ACTIONS(1004), + [aux_sym_cmd_identifier_token20] = ACTIONS(1004), + [aux_sym_cmd_identifier_token21] = ACTIONS(1004), + [aux_sym_cmd_identifier_token22] = ACTIONS(1004), + [aux_sym_cmd_identifier_token23] = ACTIONS(1004), + [aux_sym_cmd_identifier_token24] = ACTIONS(1004), + [aux_sym_cmd_identifier_token25] = ACTIONS(1004), + [aux_sym_cmd_identifier_token26] = ACTIONS(1004), + [aux_sym_cmd_identifier_token27] = ACTIONS(1004), + [aux_sym_cmd_identifier_token28] = ACTIONS(1004), + [aux_sym_cmd_identifier_token29] = ACTIONS(1004), + [aux_sym_cmd_identifier_token30] = ACTIONS(1004), + [aux_sym_cmd_identifier_token31] = ACTIONS(1004), + [aux_sym_cmd_identifier_token32] = ACTIONS(1004), + [aux_sym_cmd_identifier_token33] = ACTIONS(1004), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1004), + [aux_sym_cmd_identifier_token36] = ACTIONS(1004), + [aux_sym_cmd_identifier_token37] = ACTIONS(1004), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1004), + [aux_sym_cmd_identifier_token40] = ACTIONS(1004), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1004), + [anon_sym_COMMA] = ACTIONS(1004), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1004), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1004), + [sym__str_single_quotes] = ACTIONS(1004), + [sym__str_back_ticks] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1004), + [sym__entry_separator] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [668] = { + [sym_comment] = STATE(668), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2485), + [aux_sym_cmd_identifier_token3] = ACTIONS(2485), + [aux_sym_cmd_identifier_token4] = ACTIONS(2485), + [aux_sym_cmd_identifier_token5] = ACTIONS(2485), + [aux_sym_cmd_identifier_token6] = ACTIONS(2485), + [aux_sym_cmd_identifier_token7] = ACTIONS(2485), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2485), + [aux_sym_cmd_identifier_token11] = ACTIONS(2485), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2485), + [aux_sym_cmd_identifier_token17] = ACTIONS(2485), + [aux_sym_cmd_identifier_token18] = ACTIONS(2485), + [aux_sym_cmd_identifier_token19] = ACTIONS(2485), + [aux_sym_cmd_identifier_token20] = ACTIONS(2485), + [aux_sym_cmd_identifier_token21] = ACTIONS(2485), + [aux_sym_cmd_identifier_token22] = ACTIONS(2485), + [aux_sym_cmd_identifier_token23] = ACTIONS(2485), + [aux_sym_cmd_identifier_token24] = ACTIONS(2485), + [aux_sym_cmd_identifier_token25] = ACTIONS(2485), + [aux_sym_cmd_identifier_token26] = ACTIONS(2485), + [aux_sym_cmd_identifier_token27] = ACTIONS(2485), + [aux_sym_cmd_identifier_token28] = ACTIONS(2485), + [aux_sym_cmd_identifier_token29] = ACTIONS(2485), + [aux_sym_cmd_identifier_token30] = ACTIONS(2485), + [aux_sym_cmd_identifier_token31] = ACTIONS(2485), + [aux_sym_cmd_identifier_token32] = ACTIONS(2485), + [aux_sym_cmd_identifier_token33] = ACTIONS(2485), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2485), + [aux_sym_cmd_identifier_token36] = ACTIONS(2485), + [aux_sym_cmd_identifier_token37] = ACTIONS(2485), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2485), + [aux_sym_cmd_identifier_token40] = ACTIONS(2485), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2485), + [anon_sym_COMMA] = ACTIONS(2485), + [anon_sym_DOLLAR] = ACTIONS(2485), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in2] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2485), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2485), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2485), + [aux_sym__val_number_decimal_token3] = ACTIONS(2485), + [aux_sym__val_number_decimal_token4] = ACTIONS(2485), + [aux_sym__val_number_token1] = ACTIONS(2485), + [aux_sym__val_number_token2] = ACTIONS(2485), + [aux_sym__val_number_token3] = ACTIONS(2485), + [aux_sym__val_number_token4] = ACTIONS(2485), + [aux_sym__val_number_token5] = ACTIONS(2485), + [aux_sym__val_number_token6] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2485), + [sym__str_single_quotes] = ACTIONS(2485), + [sym__str_back_ticks] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2485), + [sym__entry_separator] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2487), + }, + [669] = { + [sym_comment] = STATE(669), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2059), + [aux_sym_cmd_identifier_token3] = ACTIONS(2059), + [aux_sym_cmd_identifier_token4] = ACTIONS(2059), + [aux_sym_cmd_identifier_token5] = ACTIONS(2059), + [aux_sym_cmd_identifier_token6] = ACTIONS(2059), + [aux_sym_cmd_identifier_token7] = ACTIONS(2059), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2059), + [aux_sym_cmd_identifier_token11] = ACTIONS(2059), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2059), + [aux_sym_cmd_identifier_token17] = ACTIONS(2059), + [aux_sym_cmd_identifier_token18] = ACTIONS(2059), + [aux_sym_cmd_identifier_token19] = ACTIONS(2059), + [aux_sym_cmd_identifier_token20] = ACTIONS(2059), + [aux_sym_cmd_identifier_token21] = ACTIONS(2059), + [aux_sym_cmd_identifier_token22] = ACTIONS(2059), + [aux_sym_cmd_identifier_token23] = ACTIONS(2059), + [aux_sym_cmd_identifier_token24] = ACTIONS(2059), + [aux_sym_cmd_identifier_token25] = ACTIONS(2059), + [aux_sym_cmd_identifier_token26] = ACTIONS(2059), + [aux_sym_cmd_identifier_token27] = ACTIONS(2059), + [aux_sym_cmd_identifier_token28] = ACTIONS(2059), + [aux_sym_cmd_identifier_token29] = ACTIONS(2059), + [aux_sym_cmd_identifier_token30] = ACTIONS(2059), + [aux_sym_cmd_identifier_token31] = ACTIONS(2059), + [aux_sym_cmd_identifier_token32] = ACTIONS(2059), + [aux_sym_cmd_identifier_token33] = ACTIONS(2059), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2059), + [aux_sym_cmd_identifier_token36] = ACTIONS(2059), + [aux_sym_cmd_identifier_token37] = ACTIONS(2059), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2059), + [aux_sym_cmd_identifier_token40] = ACTIONS(2059), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2059), + [anon_sym_COMMA] = ACTIONS(2059), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_DASH2] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in2] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2059), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_PLUS2] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2059), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2059), + [aux_sym__val_number_decimal_token3] = ACTIONS(2059), + [aux_sym__val_number_decimal_token4] = ACTIONS(2059), + [aux_sym__val_number_token1] = ACTIONS(2059), + [aux_sym__val_number_token2] = ACTIONS(2059), + [aux_sym__val_number_token3] = ACTIONS(2059), + [aux_sym__val_number_token4] = ACTIONS(2059), + [aux_sym__val_number_token5] = ACTIONS(2059), + [aux_sym__val_number_token6] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2059), + [sym__str_single_quotes] = ACTIONS(2059), + [sym__str_back_ticks] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2059), + [sym__entry_separator] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2065), + }, + [670] = { + [sym_comment] = STATE(670), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(2296), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [671] = { + [sym_comment] = STATE(671), + [anon_sym_export] = ACTIONS(1843), + [anon_sym_alias] = ACTIONS(1843), + [anon_sym_let] = ACTIONS(1843), + [anon_sym_let_DASHenv] = ACTIONS(1843), + [anon_sym_mut] = ACTIONS(1843), + [anon_sym_const] = ACTIONS(1843), + [aux_sym_cmd_identifier_token1] = ACTIONS(1843), + [aux_sym_cmd_identifier_token2] = ACTIONS(1845), + [aux_sym_cmd_identifier_token3] = ACTIONS(1845), + [aux_sym_cmd_identifier_token4] = ACTIONS(1845), + [aux_sym_cmd_identifier_token5] = ACTIONS(1845), + [aux_sym_cmd_identifier_token6] = ACTIONS(1845), + [aux_sym_cmd_identifier_token7] = ACTIONS(1845), + [aux_sym_cmd_identifier_token8] = ACTIONS(1843), + [aux_sym_cmd_identifier_token9] = ACTIONS(1843), + [aux_sym_cmd_identifier_token10] = ACTIONS(1845), + [aux_sym_cmd_identifier_token11] = ACTIONS(1845), + [aux_sym_cmd_identifier_token12] = ACTIONS(1843), + [aux_sym_cmd_identifier_token13] = ACTIONS(1843), + [aux_sym_cmd_identifier_token14] = ACTIONS(1843), + [aux_sym_cmd_identifier_token15] = ACTIONS(1843), + [aux_sym_cmd_identifier_token16] = ACTIONS(1845), + [aux_sym_cmd_identifier_token17] = ACTIONS(1845), + [aux_sym_cmd_identifier_token18] = ACTIONS(1845), + [aux_sym_cmd_identifier_token19] = ACTIONS(1845), + [aux_sym_cmd_identifier_token20] = ACTIONS(1845), + [aux_sym_cmd_identifier_token21] = ACTIONS(1845), + [aux_sym_cmd_identifier_token22] = ACTIONS(1845), + [aux_sym_cmd_identifier_token23] = ACTIONS(1845), + [aux_sym_cmd_identifier_token24] = ACTIONS(1845), + [aux_sym_cmd_identifier_token25] = ACTIONS(1845), + [aux_sym_cmd_identifier_token26] = ACTIONS(1845), + [aux_sym_cmd_identifier_token27] = ACTIONS(1845), + [aux_sym_cmd_identifier_token28] = ACTIONS(1845), + [aux_sym_cmd_identifier_token29] = ACTIONS(1845), + [aux_sym_cmd_identifier_token30] = ACTIONS(1845), + [aux_sym_cmd_identifier_token31] = ACTIONS(1845), + [aux_sym_cmd_identifier_token32] = ACTIONS(1845), + [aux_sym_cmd_identifier_token33] = ACTIONS(1845), + [aux_sym_cmd_identifier_token34] = ACTIONS(1843), + [aux_sym_cmd_identifier_token35] = ACTIONS(1845), + [aux_sym_cmd_identifier_token36] = ACTIONS(1845), + [aux_sym_cmd_identifier_token37] = ACTIONS(1845), + [aux_sym_cmd_identifier_token38] = ACTIONS(1843), + [aux_sym_cmd_identifier_token39] = ACTIONS(1845), + [aux_sym_cmd_identifier_token40] = ACTIONS(1845), + [anon_sym_def] = ACTIONS(1843), + [anon_sym_export_DASHenv] = ACTIONS(1843), + [anon_sym_extern] = ACTIONS(1843), + [anon_sym_module] = ACTIONS(1843), + [anon_sym_use] = ACTIONS(1843), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_COMMA] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1845), + [anon_sym_error] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1843), + [anon_sym_break] = ACTIONS(1843), + [anon_sym_continue] = ACTIONS(1843), + [anon_sym_for] = ACTIONS(1843), + [anon_sym_in2] = ACTIONS(1843), + [anon_sym_loop] = ACTIONS(1843), + [anon_sym_make] = ACTIONS(1843), + [anon_sym_while] = ACTIONS(1843), + [anon_sym_do] = ACTIONS(1843), + [anon_sym_if] = ACTIONS(1843), + [anon_sym_else] = ACTIONS(1843), + [anon_sym_match] = ACTIONS(1843), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_try] = ACTIONS(1843), + [anon_sym_catch] = ACTIONS(1843), + [anon_sym_return] = ACTIONS(1843), + [anon_sym_source] = ACTIONS(1843), + [anon_sym_source_DASHenv] = ACTIONS(1843), + [anon_sym_register] = ACTIONS(1843), + [anon_sym_hide] = ACTIONS(1843), + [anon_sym_hide_DASHenv] = ACTIONS(1843), + [anon_sym_overlay] = ACTIONS(1843), + [anon_sym_as] = ACTIONS(1843), + [anon_sym_PLUS2] = ACTIONS(1843), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [aux_sym__val_number_token4] = ACTIONS(1843), + [aux_sym__val_number_token5] = ACTIONS(1843), + [aux_sym__val_number_token6] = ACTIONS(1843), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1845), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2383), + [sym_raw_string_begin] = ACTIONS(1845), }, - [719] = { - [sym_comment] = STATE(719), - [anon_sym_export] = ACTIONS(2389), - [anon_sym_alias] = ACTIONS(2389), - [anon_sym_let] = ACTIONS(2389), - [anon_sym_let_DASHenv] = ACTIONS(2389), - [anon_sym_mut] = ACTIONS(2389), - [anon_sym_const] = ACTIONS(2389), - [aux_sym_cmd_identifier_token1] = ACTIONS(2389), - [aux_sym_cmd_identifier_token2] = ACTIONS(2391), - [aux_sym_cmd_identifier_token3] = ACTIONS(2391), - [aux_sym_cmd_identifier_token4] = ACTIONS(2391), - [aux_sym_cmd_identifier_token5] = ACTIONS(2391), - [aux_sym_cmd_identifier_token6] = ACTIONS(2391), - [aux_sym_cmd_identifier_token7] = ACTIONS(2391), - [aux_sym_cmd_identifier_token8] = ACTIONS(2389), - [aux_sym_cmd_identifier_token9] = ACTIONS(2389), - [aux_sym_cmd_identifier_token10] = ACTIONS(2391), - [aux_sym_cmd_identifier_token11] = ACTIONS(2391), - [aux_sym_cmd_identifier_token12] = ACTIONS(2389), - [aux_sym_cmd_identifier_token13] = ACTIONS(2389), - [aux_sym_cmd_identifier_token14] = ACTIONS(2389), - [aux_sym_cmd_identifier_token15] = ACTIONS(2389), - [aux_sym_cmd_identifier_token16] = ACTIONS(2391), - [aux_sym_cmd_identifier_token17] = ACTIONS(2391), - [aux_sym_cmd_identifier_token18] = ACTIONS(2391), - [aux_sym_cmd_identifier_token19] = ACTIONS(2391), - [aux_sym_cmd_identifier_token20] = ACTIONS(2391), - [aux_sym_cmd_identifier_token21] = ACTIONS(2391), - [aux_sym_cmd_identifier_token22] = ACTIONS(2391), - [aux_sym_cmd_identifier_token23] = ACTIONS(2391), - [aux_sym_cmd_identifier_token24] = ACTIONS(2391), - [aux_sym_cmd_identifier_token25] = ACTIONS(2391), - [aux_sym_cmd_identifier_token26] = ACTIONS(2391), - [aux_sym_cmd_identifier_token27] = ACTIONS(2391), - [aux_sym_cmd_identifier_token28] = ACTIONS(2391), - [aux_sym_cmd_identifier_token29] = ACTIONS(2391), - [aux_sym_cmd_identifier_token30] = ACTIONS(2391), - [aux_sym_cmd_identifier_token31] = ACTIONS(2391), - [aux_sym_cmd_identifier_token32] = ACTIONS(2391), - [aux_sym_cmd_identifier_token33] = ACTIONS(2391), - [aux_sym_cmd_identifier_token34] = ACTIONS(2389), - [aux_sym_cmd_identifier_token35] = ACTIONS(2391), - [aux_sym_cmd_identifier_token36] = ACTIONS(2391), - [aux_sym_cmd_identifier_token37] = ACTIONS(2391), - [aux_sym_cmd_identifier_token38] = ACTIONS(2389), - [aux_sym_cmd_identifier_token39] = ACTIONS(2391), - [aux_sym_cmd_identifier_token40] = ACTIONS(2391), - [anon_sym_def] = ACTIONS(2389), - [anon_sym_export_DASHenv] = ACTIONS(2389), - [anon_sym_extern] = ACTIONS(2389), - [anon_sym_module] = ACTIONS(2389), - [anon_sym_use] = ACTIONS(2389), - [anon_sym_LPAREN] = ACTIONS(2391), - [anon_sym_DOLLAR] = ACTIONS(2391), - [anon_sym_error] = ACTIONS(2389), - [anon_sym_DASH2] = ACTIONS(2389), - [anon_sym_break] = ACTIONS(2389), - [anon_sym_continue] = ACTIONS(2389), - [anon_sym_for] = ACTIONS(2389), - [anon_sym_in2] = ACTIONS(2389), - [anon_sym_loop] = ACTIONS(2389), - [anon_sym_make] = ACTIONS(2389), - [anon_sym_while] = ACTIONS(2389), - [anon_sym_do] = ACTIONS(2389), - [anon_sym_if] = ACTIONS(2389), - [anon_sym_else] = ACTIONS(2389), - [anon_sym_match] = ACTIONS(2389), - [anon_sym_RBRACE] = ACTIONS(2391), - [anon_sym_try] = ACTIONS(2389), - [anon_sym_catch] = ACTIONS(2389), - [anon_sym_return] = ACTIONS(2389), - [anon_sym_source] = ACTIONS(2389), - [anon_sym_source_DASHenv] = ACTIONS(2389), - [anon_sym_register] = ACTIONS(2389), - [anon_sym_hide] = ACTIONS(2389), - [anon_sym_hide_DASHenv] = ACTIONS(2389), - [anon_sym_overlay] = ACTIONS(2389), - [anon_sym_as] = ACTIONS(2389), - [anon_sym_PLUS2] = ACTIONS(2389), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), - [aux_sym__val_number_decimal_token1] = ACTIONS(2389), - [aux_sym__val_number_decimal_token2] = ACTIONS(2391), - [aux_sym__val_number_decimal_token3] = ACTIONS(2391), - [aux_sym__val_number_decimal_token4] = ACTIONS(2391), - [aux_sym__val_number_token1] = ACTIONS(2391), - [aux_sym__val_number_token2] = ACTIONS(2391), - [aux_sym__val_number_token3] = ACTIONS(2391), - [aux_sym__val_number_token4] = ACTIONS(2389), - [aux_sym__val_number_token5] = ACTIONS(2389), - [aux_sym__val_number_token6] = ACTIONS(2389), - [anon_sym_DQUOTE] = ACTIONS(2391), - [sym__str_single_quotes] = ACTIONS(2391), - [sym__str_back_ticks] = ACTIONS(2391), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), + [672] = { + [sym_comment] = STATE(672), + [anon_sym_export] = ACTIONS(2330), + [anon_sym_alias] = ACTIONS(2330), + [anon_sym_let] = ACTIONS(2330), + [anon_sym_let_DASHenv] = ACTIONS(2330), + [anon_sym_mut] = ACTIONS(2330), + [anon_sym_const] = ACTIONS(2330), + [aux_sym_cmd_identifier_token1] = ACTIONS(2330), + [aux_sym_cmd_identifier_token2] = ACTIONS(2332), + [aux_sym_cmd_identifier_token3] = ACTIONS(2332), + [aux_sym_cmd_identifier_token4] = ACTIONS(2332), + [aux_sym_cmd_identifier_token5] = ACTIONS(2332), + [aux_sym_cmd_identifier_token6] = ACTIONS(2332), + [aux_sym_cmd_identifier_token7] = ACTIONS(2332), + [aux_sym_cmd_identifier_token8] = ACTIONS(2330), + [aux_sym_cmd_identifier_token9] = ACTIONS(2330), + [aux_sym_cmd_identifier_token10] = ACTIONS(2332), + [aux_sym_cmd_identifier_token11] = ACTIONS(2332), + [aux_sym_cmd_identifier_token12] = ACTIONS(2330), + [aux_sym_cmd_identifier_token13] = ACTIONS(2330), + [aux_sym_cmd_identifier_token14] = ACTIONS(2330), + [aux_sym_cmd_identifier_token15] = ACTIONS(2330), + [aux_sym_cmd_identifier_token16] = ACTIONS(2332), + [aux_sym_cmd_identifier_token17] = ACTIONS(2332), + [aux_sym_cmd_identifier_token18] = ACTIONS(2332), + [aux_sym_cmd_identifier_token19] = ACTIONS(2332), + [aux_sym_cmd_identifier_token20] = ACTIONS(2332), + [aux_sym_cmd_identifier_token21] = ACTIONS(2332), + [aux_sym_cmd_identifier_token22] = ACTIONS(2332), + [aux_sym_cmd_identifier_token23] = ACTIONS(2332), + [aux_sym_cmd_identifier_token24] = ACTIONS(2332), + [aux_sym_cmd_identifier_token25] = ACTIONS(2332), + [aux_sym_cmd_identifier_token26] = ACTIONS(2332), + [aux_sym_cmd_identifier_token27] = ACTIONS(2332), + [aux_sym_cmd_identifier_token28] = ACTIONS(2332), + [aux_sym_cmd_identifier_token29] = ACTIONS(2332), + [aux_sym_cmd_identifier_token30] = ACTIONS(2332), + [aux_sym_cmd_identifier_token31] = ACTIONS(2332), + [aux_sym_cmd_identifier_token32] = ACTIONS(2332), + [aux_sym_cmd_identifier_token33] = ACTIONS(2332), + [aux_sym_cmd_identifier_token34] = ACTIONS(2330), + [aux_sym_cmd_identifier_token35] = ACTIONS(2332), + [aux_sym_cmd_identifier_token36] = ACTIONS(2332), + [aux_sym_cmd_identifier_token37] = ACTIONS(2332), + [aux_sym_cmd_identifier_token38] = ACTIONS(2330), + [aux_sym_cmd_identifier_token39] = ACTIONS(2332), + [aux_sym_cmd_identifier_token40] = ACTIONS(2332), + [anon_sym_def] = ACTIONS(2330), + [anon_sym_export_DASHenv] = ACTIONS(2330), + [anon_sym_extern] = ACTIONS(2330), + [anon_sym_module] = ACTIONS(2330), + [anon_sym_use] = ACTIONS(2330), + [anon_sym_LPAREN] = ACTIONS(2332), + [anon_sym_COMMA] = ACTIONS(2332), + [anon_sym_DOLLAR] = ACTIONS(2332), + [anon_sym_error] = ACTIONS(2330), + [anon_sym_DASH2] = ACTIONS(2330), + [anon_sym_break] = ACTIONS(2330), + [anon_sym_continue] = ACTIONS(2330), + [anon_sym_for] = ACTIONS(2330), + [anon_sym_in2] = ACTIONS(2330), + [anon_sym_loop] = ACTIONS(2330), + [anon_sym_make] = ACTIONS(2330), + [anon_sym_while] = ACTIONS(2330), + [anon_sym_do] = ACTIONS(2330), + [anon_sym_if] = ACTIONS(2330), + [anon_sym_else] = ACTIONS(2330), + [anon_sym_match] = ACTIONS(2330), + [anon_sym_RBRACE] = ACTIONS(2332), + [anon_sym_try] = ACTIONS(2330), + [anon_sym_catch] = ACTIONS(2330), + [anon_sym_return] = ACTIONS(2330), + [anon_sym_source] = ACTIONS(2330), + [anon_sym_source_DASHenv] = ACTIONS(2330), + [anon_sym_register] = ACTIONS(2330), + [anon_sym_hide] = ACTIONS(2330), + [anon_sym_hide_DASHenv] = ACTIONS(2330), + [anon_sym_overlay] = ACTIONS(2330), + [anon_sym_as] = ACTIONS(2330), + [anon_sym_PLUS2] = ACTIONS(2330), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2332), + [aux_sym__val_number_decimal_token1] = ACTIONS(2330), + [aux_sym__val_number_decimal_token2] = ACTIONS(2332), + [aux_sym__val_number_decimal_token3] = ACTIONS(2332), + [aux_sym__val_number_decimal_token4] = ACTIONS(2332), + [aux_sym__val_number_token1] = ACTIONS(2332), + [aux_sym__val_number_token2] = ACTIONS(2332), + [aux_sym__val_number_token3] = ACTIONS(2332), + [aux_sym__val_number_token4] = ACTIONS(2330), + [aux_sym__val_number_token5] = ACTIONS(2330), + [aux_sym__val_number_token6] = ACTIONS(2330), + [anon_sym_DQUOTE] = ACTIONS(2332), + [sym__str_single_quotes] = ACTIONS(2332), + [sym__str_back_ticks] = ACTIONS(2332), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2332), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2332), + }, + [673] = { + [sym_comment] = STATE(673), + [anon_sym_export] = ACTIONS(2481), + [anon_sym_alias] = ACTIONS(2481), + [anon_sym_let] = ACTIONS(2481), + [anon_sym_let_DASHenv] = ACTIONS(2481), + [anon_sym_mut] = ACTIONS(2481), + [anon_sym_const] = ACTIONS(2481), + [aux_sym_cmd_identifier_token1] = ACTIONS(2481), + [aux_sym_cmd_identifier_token2] = ACTIONS(2483), + [aux_sym_cmd_identifier_token3] = ACTIONS(2483), + [aux_sym_cmd_identifier_token4] = ACTIONS(2483), + [aux_sym_cmd_identifier_token5] = ACTIONS(2483), + [aux_sym_cmd_identifier_token6] = ACTIONS(2483), + [aux_sym_cmd_identifier_token7] = ACTIONS(2483), + [aux_sym_cmd_identifier_token8] = ACTIONS(2481), + [aux_sym_cmd_identifier_token9] = ACTIONS(2481), + [aux_sym_cmd_identifier_token10] = ACTIONS(2483), + [aux_sym_cmd_identifier_token11] = ACTIONS(2483), + [aux_sym_cmd_identifier_token12] = ACTIONS(2481), + [aux_sym_cmd_identifier_token13] = ACTIONS(2481), + [aux_sym_cmd_identifier_token14] = ACTIONS(2481), + [aux_sym_cmd_identifier_token15] = ACTIONS(2481), + [aux_sym_cmd_identifier_token16] = ACTIONS(2483), + [aux_sym_cmd_identifier_token17] = ACTIONS(2483), + [aux_sym_cmd_identifier_token18] = ACTIONS(2483), + [aux_sym_cmd_identifier_token19] = ACTIONS(2483), + [aux_sym_cmd_identifier_token20] = ACTIONS(2483), + [aux_sym_cmd_identifier_token21] = ACTIONS(2483), + [aux_sym_cmd_identifier_token22] = ACTIONS(2483), + [aux_sym_cmd_identifier_token23] = ACTIONS(2483), + [aux_sym_cmd_identifier_token24] = ACTIONS(2483), + [aux_sym_cmd_identifier_token25] = ACTIONS(2483), + [aux_sym_cmd_identifier_token26] = ACTIONS(2483), + [aux_sym_cmd_identifier_token27] = ACTIONS(2483), + [aux_sym_cmd_identifier_token28] = ACTIONS(2483), + [aux_sym_cmd_identifier_token29] = ACTIONS(2483), + [aux_sym_cmd_identifier_token30] = ACTIONS(2483), + [aux_sym_cmd_identifier_token31] = ACTIONS(2483), + [aux_sym_cmd_identifier_token32] = ACTIONS(2483), + [aux_sym_cmd_identifier_token33] = ACTIONS(2483), + [aux_sym_cmd_identifier_token34] = ACTIONS(2481), + [aux_sym_cmd_identifier_token35] = ACTIONS(2483), + [aux_sym_cmd_identifier_token36] = ACTIONS(2483), + [aux_sym_cmd_identifier_token37] = ACTIONS(2483), + [aux_sym_cmd_identifier_token38] = ACTIONS(2481), + [aux_sym_cmd_identifier_token39] = ACTIONS(2483), + [aux_sym_cmd_identifier_token40] = ACTIONS(2483), + [anon_sym_def] = ACTIONS(2481), + [anon_sym_export_DASHenv] = ACTIONS(2481), + [anon_sym_extern] = ACTIONS(2481), + [anon_sym_module] = ACTIONS(2481), + [anon_sym_use] = ACTIONS(2481), + [anon_sym_LPAREN] = ACTIONS(2483), + [anon_sym_COMMA] = ACTIONS(2483), + [anon_sym_DOLLAR] = ACTIONS(2483), + [anon_sym_error] = ACTIONS(2481), + [anon_sym_DASH2] = ACTIONS(2481), + [anon_sym_break] = ACTIONS(2481), + [anon_sym_continue] = ACTIONS(2481), + [anon_sym_for] = ACTIONS(2481), + [anon_sym_in2] = ACTIONS(2481), + [anon_sym_loop] = ACTIONS(2481), + [anon_sym_make] = ACTIONS(2481), + [anon_sym_while] = ACTIONS(2481), + [anon_sym_do] = ACTIONS(2481), + [anon_sym_if] = ACTIONS(2481), + [anon_sym_else] = ACTIONS(2481), + [anon_sym_match] = ACTIONS(2481), + [anon_sym_RBRACE] = ACTIONS(2483), + [anon_sym_try] = ACTIONS(2481), + [anon_sym_catch] = ACTIONS(2481), + [anon_sym_return] = ACTIONS(2481), + [anon_sym_source] = ACTIONS(2481), + [anon_sym_source_DASHenv] = ACTIONS(2481), + [anon_sym_register] = ACTIONS(2481), + [anon_sym_hide] = ACTIONS(2481), + [anon_sym_hide_DASHenv] = ACTIONS(2481), + [anon_sym_overlay] = ACTIONS(2481), + [anon_sym_as] = ACTIONS(2481), + [anon_sym_PLUS2] = ACTIONS(2481), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2483), + [aux_sym__val_number_decimal_token1] = ACTIONS(2481), + [aux_sym__val_number_decimal_token2] = ACTIONS(2483), + [aux_sym__val_number_decimal_token3] = ACTIONS(2483), + [aux_sym__val_number_decimal_token4] = ACTIONS(2483), + [aux_sym__val_number_token1] = ACTIONS(2483), + [aux_sym__val_number_token2] = ACTIONS(2483), + [aux_sym__val_number_token3] = ACTIONS(2483), + [aux_sym__val_number_token4] = ACTIONS(2481), + [aux_sym__val_number_token5] = ACTIONS(2481), + [aux_sym__val_number_token6] = ACTIONS(2481), + [anon_sym_DQUOTE] = ACTIONS(2483), + [sym__str_single_quotes] = ACTIONS(2483), + [sym__str_back_ticks] = ACTIONS(2483), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2483), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2391), + [sym_raw_string_begin] = ACTIONS(2483), }, - [720] = { - [sym_comment] = STATE(720), + [674] = { + [sym_comment] = STATE(674), + [anon_sym_export] = ACTIONS(2485), + [anon_sym_alias] = ACTIONS(2485), + [anon_sym_let] = ACTIONS(2485), + [anon_sym_let_DASHenv] = ACTIONS(2485), + [anon_sym_mut] = ACTIONS(2485), + [anon_sym_const] = ACTIONS(2485), + [aux_sym_cmd_identifier_token1] = ACTIONS(2485), + [aux_sym_cmd_identifier_token2] = ACTIONS(2487), + [aux_sym_cmd_identifier_token3] = ACTIONS(2487), + [aux_sym_cmd_identifier_token4] = ACTIONS(2487), + [aux_sym_cmd_identifier_token5] = ACTIONS(2487), + [aux_sym_cmd_identifier_token6] = ACTIONS(2487), + [aux_sym_cmd_identifier_token7] = ACTIONS(2487), + [aux_sym_cmd_identifier_token8] = ACTIONS(2485), + [aux_sym_cmd_identifier_token9] = ACTIONS(2485), + [aux_sym_cmd_identifier_token10] = ACTIONS(2487), + [aux_sym_cmd_identifier_token11] = ACTIONS(2487), + [aux_sym_cmd_identifier_token12] = ACTIONS(2485), + [aux_sym_cmd_identifier_token13] = ACTIONS(2485), + [aux_sym_cmd_identifier_token14] = ACTIONS(2485), + [aux_sym_cmd_identifier_token15] = ACTIONS(2485), + [aux_sym_cmd_identifier_token16] = ACTIONS(2487), + [aux_sym_cmd_identifier_token17] = ACTIONS(2487), + [aux_sym_cmd_identifier_token18] = ACTIONS(2487), + [aux_sym_cmd_identifier_token19] = ACTIONS(2487), + [aux_sym_cmd_identifier_token20] = ACTIONS(2487), + [aux_sym_cmd_identifier_token21] = ACTIONS(2487), + [aux_sym_cmd_identifier_token22] = ACTIONS(2487), + [aux_sym_cmd_identifier_token23] = ACTIONS(2487), + [aux_sym_cmd_identifier_token24] = ACTIONS(2487), + [aux_sym_cmd_identifier_token25] = ACTIONS(2487), + [aux_sym_cmd_identifier_token26] = ACTIONS(2487), + [aux_sym_cmd_identifier_token27] = ACTIONS(2487), + [aux_sym_cmd_identifier_token28] = ACTIONS(2487), + [aux_sym_cmd_identifier_token29] = ACTIONS(2487), + [aux_sym_cmd_identifier_token30] = ACTIONS(2487), + [aux_sym_cmd_identifier_token31] = ACTIONS(2487), + [aux_sym_cmd_identifier_token32] = ACTIONS(2487), + [aux_sym_cmd_identifier_token33] = ACTIONS(2487), + [aux_sym_cmd_identifier_token34] = ACTIONS(2485), + [aux_sym_cmd_identifier_token35] = ACTIONS(2487), + [aux_sym_cmd_identifier_token36] = ACTIONS(2487), + [aux_sym_cmd_identifier_token37] = ACTIONS(2487), + [aux_sym_cmd_identifier_token38] = ACTIONS(2485), + [aux_sym_cmd_identifier_token39] = ACTIONS(2487), + [aux_sym_cmd_identifier_token40] = ACTIONS(2487), + [anon_sym_def] = ACTIONS(2485), + [anon_sym_export_DASHenv] = ACTIONS(2485), + [anon_sym_extern] = ACTIONS(2485), + [anon_sym_module] = ACTIONS(2485), + [anon_sym_use] = ACTIONS(2485), + [anon_sym_LPAREN] = ACTIONS(2487), + [anon_sym_COMMA] = ACTIONS(2487), + [anon_sym_DOLLAR] = ACTIONS(2487), + [anon_sym_error] = ACTIONS(2485), + [anon_sym_DASH2] = ACTIONS(2485), + [anon_sym_break] = ACTIONS(2485), + [anon_sym_continue] = ACTIONS(2485), + [anon_sym_for] = ACTIONS(2485), + [anon_sym_in2] = ACTIONS(2485), + [anon_sym_loop] = ACTIONS(2485), + [anon_sym_make] = ACTIONS(2485), + [anon_sym_while] = ACTIONS(2485), + [anon_sym_do] = ACTIONS(2485), + [anon_sym_if] = ACTIONS(2485), + [anon_sym_else] = ACTIONS(2485), + [anon_sym_match] = ACTIONS(2485), + [anon_sym_RBRACE] = ACTIONS(2487), + [anon_sym_try] = ACTIONS(2485), + [anon_sym_catch] = ACTIONS(2485), + [anon_sym_return] = ACTIONS(2485), + [anon_sym_source] = ACTIONS(2485), + [anon_sym_source_DASHenv] = ACTIONS(2485), + [anon_sym_register] = ACTIONS(2485), + [anon_sym_hide] = ACTIONS(2485), + [anon_sym_hide_DASHenv] = ACTIONS(2485), + [anon_sym_overlay] = ACTIONS(2485), + [anon_sym_as] = ACTIONS(2485), + [anon_sym_PLUS2] = ACTIONS(2485), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2487), + [aux_sym__val_number_decimal_token1] = ACTIONS(2485), + [aux_sym__val_number_decimal_token2] = ACTIONS(2487), + [aux_sym__val_number_decimal_token3] = ACTIONS(2487), + [aux_sym__val_number_decimal_token4] = ACTIONS(2487), + [aux_sym__val_number_token1] = ACTIONS(2487), + [aux_sym__val_number_token2] = ACTIONS(2487), + [aux_sym__val_number_token3] = ACTIONS(2487), + [aux_sym__val_number_token4] = ACTIONS(2485), + [aux_sym__val_number_token5] = ACTIONS(2485), + [aux_sym__val_number_token6] = ACTIONS(2485), + [anon_sym_DQUOTE] = ACTIONS(2487), + [sym__str_single_quotes] = ACTIONS(2487), + [sym__str_back_ticks] = ACTIONS(2487), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2487), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2487), + }, + [675] = { + [sym_comment] = STATE(675), [anon_sym_export] = ACTIONS(2393), [anon_sym_alias] = ACTIONS(2393), [anon_sym_let] = ACTIONS(2393), @@ -156753,6 +152617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2393), [anon_sym_use] = ACTIONS(2393), [anon_sym_LPAREN] = ACTIONS(2395), + [anon_sym_COMMA] = ACTIONS(2395), [anon_sym_DOLLAR] = ACTIONS(2395), [anon_sym_error] = ACTIONS(2393), [anon_sym_DASH2] = ACTIONS(2393), @@ -156798,8 +152663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2395), }, - [721] = { - [sym_comment] = STATE(721), + [676] = { + [sym_comment] = STATE(676), [anon_sym_export] = ACTIONS(2397), [anon_sym_alias] = ACTIONS(2397), [anon_sym_let] = ACTIONS(2397), @@ -156852,6 +152717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2397), [anon_sym_use] = ACTIONS(2397), [anon_sym_LPAREN] = ACTIONS(2399), + [anon_sym_COMMA] = ACTIONS(2399), [anon_sym_DOLLAR] = ACTIONS(2399), [anon_sym_error] = ACTIONS(2397), [anon_sym_DASH2] = ACTIONS(2397), @@ -156895,802 +152761,3410 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(2399), [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2399), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2399), + [sym_raw_string_begin] = ACTIONS(2399), + }, + [677] = { + [sym_comment] = STATE(677), + [anon_sym_export] = ACTIONS(1663), + [anon_sym_alias] = ACTIONS(1663), + [anon_sym_let] = ACTIONS(1663), + [anon_sym_let_DASHenv] = ACTIONS(1663), + [anon_sym_mut] = ACTIONS(1663), + [anon_sym_const] = ACTIONS(1663), + [aux_sym_cmd_identifier_token1] = ACTIONS(1663), + [aux_sym_cmd_identifier_token2] = ACTIONS(1675), + [aux_sym_cmd_identifier_token3] = ACTIONS(1675), + [aux_sym_cmd_identifier_token4] = ACTIONS(1675), + [aux_sym_cmd_identifier_token5] = ACTIONS(1675), + [aux_sym_cmd_identifier_token6] = ACTIONS(1675), + [aux_sym_cmd_identifier_token7] = ACTIONS(1675), + [aux_sym_cmd_identifier_token8] = ACTIONS(1663), + [aux_sym_cmd_identifier_token9] = ACTIONS(1663), + [aux_sym_cmd_identifier_token10] = ACTIONS(1675), + [aux_sym_cmd_identifier_token11] = ACTIONS(1675), + [aux_sym_cmd_identifier_token12] = ACTIONS(1663), + [aux_sym_cmd_identifier_token13] = ACTIONS(1663), + [aux_sym_cmd_identifier_token14] = ACTIONS(1663), + [aux_sym_cmd_identifier_token15] = ACTIONS(1663), + [aux_sym_cmd_identifier_token16] = ACTIONS(1675), + [aux_sym_cmd_identifier_token17] = ACTIONS(1675), + [aux_sym_cmd_identifier_token18] = ACTIONS(1675), + [aux_sym_cmd_identifier_token19] = ACTIONS(1675), + [aux_sym_cmd_identifier_token20] = ACTIONS(1675), + [aux_sym_cmd_identifier_token21] = ACTIONS(1675), + [aux_sym_cmd_identifier_token22] = ACTIONS(1675), + [aux_sym_cmd_identifier_token23] = ACTIONS(1675), + [aux_sym_cmd_identifier_token24] = ACTIONS(1675), + [aux_sym_cmd_identifier_token25] = ACTIONS(1675), + [aux_sym_cmd_identifier_token26] = ACTIONS(1675), + [aux_sym_cmd_identifier_token27] = ACTIONS(1675), + [aux_sym_cmd_identifier_token28] = ACTIONS(1675), + [aux_sym_cmd_identifier_token29] = ACTIONS(1675), + [aux_sym_cmd_identifier_token30] = ACTIONS(1675), + [aux_sym_cmd_identifier_token31] = ACTIONS(1675), + [aux_sym_cmd_identifier_token32] = ACTIONS(1675), + [aux_sym_cmd_identifier_token33] = ACTIONS(1675), + [aux_sym_cmd_identifier_token34] = ACTIONS(1663), + [aux_sym_cmd_identifier_token35] = ACTIONS(1675), + [aux_sym_cmd_identifier_token36] = ACTIONS(1675), + [aux_sym_cmd_identifier_token37] = ACTIONS(1675), + [aux_sym_cmd_identifier_token38] = ACTIONS(1663), + [aux_sym_cmd_identifier_token39] = ACTIONS(1675), + [aux_sym_cmd_identifier_token40] = ACTIONS(1675), + [anon_sym_def] = ACTIONS(1663), + [anon_sym_export_DASHenv] = ACTIONS(1663), + [anon_sym_extern] = ACTIONS(1663), + [anon_sym_module] = ACTIONS(1663), + [anon_sym_use] = ACTIONS(1663), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_COMMA] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1675), + [anon_sym_error] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_break] = ACTIONS(1663), + [anon_sym_continue] = ACTIONS(1663), + [anon_sym_for] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_loop] = ACTIONS(1663), + [anon_sym_make] = ACTIONS(1663), + [anon_sym_while] = ACTIONS(1663), + [anon_sym_do] = ACTIONS(1663), + [anon_sym_if] = ACTIONS(1663), + [anon_sym_else] = ACTIONS(1663), + [anon_sym_match] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_try] = ACTIONS(1663), + [anon_sym_catch] = ACTIONS(1663), + [anon_sym_return] = ACTIONS(1663), + [anon_sym_source] = ACTIONS(1663), + [anon_sym_source_DASHenv] = ACTIONS(1663), + [anon_sym_register] = ACTIONS(1663), + [anon_sym_hide] = ACTIONS(1663), + [anon_sym_hide_DASHenv] = ACTIONS(1663), + [anon_sym_overlay] = ACTIONS(1663), + [anon_sym_as] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1663), + [aux_sym__val_number_token5] = ACTIONS(1663), + [aux_sym__val_number_token6] = ACTIONS(1663), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1675), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [678] = { + [sym_comment] = STATE(678), + [anon_sym_export] = ACTIONS(2429), + [anon_sym_alias] = ACTIONS(2429), + [anon_sym_let] = ACTIONS(2429), + [anon_sym_let_DASHenv] = ACTIONS(2429), + [anon_sym_mut] = ACTIONS(2429), + [anon_sym_const] = ACTIONS(2429), + [aux_sym_cmd_identifier_token1] = ACTIONS(2429), + [aux_sym_cmd_identifier_token2] = ACTIONS(2431), + [aux_sym_cmd_identifier_token3] = ACTIONS(2431), + [aux_sym_cmd_identifier_token4] = ACTIONS(2431), + [aux_sym_cmd_identifier_token5] = ACTIONS(2431), + [aux_sym_cmd_identifier_token6] = ACTIONS(2431), + [aux_sym_cmd_identifier_token7] = ACTIONS(2431), + [aux_sym_cmd_identifier_token8] = ACTIONS(2429), + [aux_sym_cmd_identifier_token9] = ACTIONS(2429), + [aux_sym_cmd_identifier_token10] = ACTIONS(2431), + [aux_sym_cmd_identifier_token11] = ACTIONS(2431), + [aux_sym_cmd_identifier_token12] = ACTIONS(2429), + [aux_sym_cmd_identifier_token13] = ACTIONS(2429), + [aux_sym_cmd_identifier_token14] = ACTIONS(2429), + [aux_sym_cmd_identifier_token15] = ACTIONS(2429), + [aux_sym_cmd_identifier_token16] = ACTIONS(2431), + [aux_sym_cmd_identifier_token17] = ACTIONS(2431), + [aux_sym_cmd_identifier_token18] = ACTIONS(2431), + [aux_sym_cmd_identifier_token19] = ACTIONS(2431), + [aux_sym_cmd_identifier_token20] = ACTIONS(2431), + [aux_sym_cmd_identifier_token21] = ACTIONS(2431), + [aux_sym_cmd_identifier_token22] = ACTIONS(2431), + [aux_sym_cmd_identifier_token23] = ACTIONS(2431), + [aux_sym_cmd_identifier_token24] = ACTIONS(2431), + [aux_sym_cmd_identifier_token25] = ACTIONS(2431), + [aux_sym_cmd_identifier_token26] = ACTIONS(2431), + [aux_sym_cmd_identifier_token27] = ACTIONS(2431), + [aux_sym_cmd_identifier_token28] = ACTIONS(2431), + [aux_sym_cmd_identifier_token29] = ACTIONS(2431), + [aux_sym_cmd_identifier_token30] = ACTIONS(2431), + [aux_sym_cmd_identifier_token31] = ACTIONS(2431), + [aux_sym_cmd_identifier_token32] = ACTIONS(2431), + [aux_sym_cmd_identifier_token33] = ACTIONS(2431), + [aux_sym_cmd_identifier_token34] = ACTIONS(2429), + [aux_sym_cmd_identifier_token35] = ACTIONS(2431), + [aux_sym_cmd_identifier_token36] = ACTIONS(2431), + [aux_sym_cmd_identifier_token37] = ACTIONS(2431), + [aux_sym_cmd_identifier_token38] = ACTIONS(2429), + [aux_sym_cmd_identifier_token39] = ACTIONS(2431), + [aux_sym_cmd_identifier_token40] = ACTIONS(2431), + [anon_sym_def] = ACTIONS(2429), + [anon_sym_export_DASHenv] = ACTIONS(2429), + [anon_sym_extern] = ACTIONS(2429), + [anon_sym_module] = ACTIONS(2429), + [anon_sym_use] = ACTIONS(2429), + [anon_sym_LPAREN] = ACTIONS(2431), + [anon_sym_COMMA] = ACTIONS(2431), + [anon_sym_DOLLAR] = ACTIONS(2431), + [anon_sym_error] = ACTIONS(2429), + [anon_sym_DASH2] = ACTIONS(2429), + [anon_sym_break] = ACTIONS(2429), + [anon_sym_continue] = ACTIONS(2429), + [anon_sym_for] = ACTIONS(2429), + [anon_sym_in2] = ACTIONS(2429), + [anon_sym_loop] = ACTIONS(2429), + [anon_sym_make] = ACTIONS(2429), + [anon_sym_while] = ACTIONS(2429), + [anon_sym_do] = ACTIONS(2429), + [anon_sym_if] = ACTIONS(2429), + [anon_sym_else] = ACTIONS(2429), + [anon_sym_match] = ACTIONS(2429), + [anon_sym_RBRACE] = ACTIONS(2431), + [anon_sym_try] = ACTIONS(2429), + [anon_sym_catch] = ACTIONS(2429), + [anon_sym_return] = ACTIONS(2429), + [anon_sym_source] = ACTIONS(2429), + [anon_sym_source_DASHenv] = ACTIONS(2429), + [anon_sym_register] = ACTIONS(2429), + [anon_sym_hide] = ACTIONS(2429), + [anon_sym_hide_DASHenv] = ACTIONS(2429), + [anon_sym_overlay] = ACTIONS(2429), + [anon_sym_as] = ACTIONS(2429), + [anon_sym_PLUS2] = ACTIONS(2429), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2431), + [aux_sym__val_number_decimal_token1] = ACTIONS(2429), + [aux_sym__val_number_decimal_token2] = ACTIONS(2431), + [aux_sym__val_number_decimal_token3] = ACTIONS(2431), + [aux_sym__val_number_decimal_token4] = ACTIONS(2431), + [aux_sym__val_number_token1] = ACTIONS(2431), + [aux_sym__val_number_token2] = ACTIONS(2431), + [aux_sym__val_number_token3] = ACTIONS(2431), + [aux_sym__val_number_token4] = ACTIONS(2429), + [aux_sym__val_number_token5] = ACTIONS(2429), + [aux_sym__val_number_token6] = ACTIONS(2429), + [anon_sym_DQUOTE] = ACTIONS(2431), + [sym__str_single_quotes] = ACTIONS(2431), + [sym__str_back_ticks] = ACTIONS(2431), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2431), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2431), + }, + [679] = { + [sym_comment] = STATE(679), + [anon_sym_export] = ACTIONS(2449), + [anon_sym_alias] = ACTIONS(2449), + [anon_sym_let] = ACTIONS(2449), + [anon_sym_let_DASHenv] = ACTIONS(2449), + [anon_sym_mut] = ACTIONS(2449), + [anon_sym_const] = ACTIONS(2449), + [aux_sym_cmd_identifier_token1] = ACTIONS(2449), + [aux_sym_cmd_identifier_token2] = ACTIONS(2451), + [aux_sym_cmd_identifier_token3] = ACTIONS(2451), + [aux_sym_cmd_identifier_token4] = ACTIONS(2451), + [aux_sym_cmd_identifier_token5] = ACTIONS(2451), + [aux_sym_cmd_identifier_token6] = ACTIONS(2451), + [aux_sym_cmd_identifier_token7] = ACTIONS(2451), + [aux_sym_cmd_identifier_token8] = ACTIONS(2449), + [aux_sym_cmd_identifier_token9] = ACTIONS(2449), + [aux_sym_cmd_identifier_token10] = ACTIONS(2451), + [aux_sym_cmd_identifier_token11] = ACTIONS(2451), + [aux_sym_cmd_identifier_token12] = ACTIONS(2449), + [aux_sym_cmd_identifier_token13] = ACTIONS(2449), + [aux_sym_cmd_identifier_token14] = ACTIONS(2449), + [aux_sym_cmd_identifier_token15] = ACTIONS(2449), + [aux_sym_cmd_identifier_token16] = ACTIONS(2451), + [aux_sym_cmd_identifier_token17] = ACTIONS(2451), + [aux_sym_cmd_identifier_token18] = ACTIONS(2451), + [aux_sym_cmd_identifier_token19] = ACTIONS(2451), + [aux_sym_cmd_identifier_token20] = ACTIONS(2451), + [aux_sym_cmd_identifier_token21] = ACTIONS(2451), + [aux_sym_cmd_identifier_token22] = ACTIONS(2451), + [aux_sym_cmd_identifier_token23] = ACTIONS(2451), + [aux_sym_cmd_identifier_token24] = ACTIONS(2451), + [aux_sym_cmd_identifier_token25] = ACTIONS(2451), + [aux_sym_cmd_identifier_token26] = ACTIONS(2451), + [aux_sym_cmd_identifier_token27] = ACTIONS(2451), + [aux_sym_cmd_identifier_token28] = ACTIONS(2451), + [aux_sym_cmd_identifier_token29] = ACTIONS(2451), + [aux_sym_cmd_identifier_token30] = ACTIONS(2451), + [aux_sym_cmd_identifier_token31] = ACTIONS(2451), + [aux_sym_cmd_identifier_token32] = ACTIONS(2451), + [aux_sym_cmd_identifier_token33] = ACTIONS(2451), + [aux_sym_cmd_identifier_token34] = ACTIONS(2449), + [aux_sym_cmd_identifier_token35] = ACTIONS(2451), + [aux_sym_cmd_identifier_token36] = ACTIONS(2451), + [aux_sym_cmd_identifier_token37] = ACTIONS(2451), + [aux_sym_cmd_identifier_token38] = ACTIONS(2449), + [aux_sym_cmd_identifier_token39] = ACTIONS(2451), + [aux_sym_cmd_identifier_token40] = ACTIONS(2451), + [anon_sym_def] = ACTIONS(2449), + [anon_sym_export_DASHenv] = ACTIONS(2449), + [anon_sym_extern] = ACTIONS(2449), + [anon_sym_module] = ACTIONS(2449), + [anon_sym_use] = ACTIONS(2449), + [anon_sym_LPAREN] = ACTIONS(2451), + [anon_sym_COMMA] = ACTIONS(2451), + [anon_sym_DOLLAR] = ACTIONS(2451), + [anon_sym_error] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2449), + [anon_sym_break] = ACTIONS(2449), + [anon_sym_continue] = ACTIONS(2449), + [anon_sym_for] = ACTIONS(2449), + [anon_sym_in2] = ACTIONS(2449), + [anon_sym_loop] = ACTIONS(2449), + [anon_sym_make] = ACTIONS(2449), + [anon_sym_while] = ACTIONS(2449), + [anon_sym_do] = ACTIONS(2449), + [anon_sym_if] = ACTIONS(2449), + [anon_sym_else] = ACTIONS(2449), + [anon_sym_match] = ACTIONS(2449), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_try] = ACTIONS(2449), + [anon_sym_catch] = ACTIONS(2449), + [anon_sym_return] = ACTIONS(2449), + [anon_sym_source] = ACTIONS(2449), + [anon_sym_source_DASHenv] = ACTIONS(2449), + [anon_sym_register] = ACTIONS(2449), + [anon_sym_hide] = ACTIONS(2449), + [anon_sym_hide_DASHenv] = ACTIONS(2449), + [anon_sym_overlay] = ACTIONS(2449), + [anon_sym_as] = ACTIONS(2449), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2451), + [aux_sym__val_number_decimal_token1] = ACTIONS(2449), + [aux_sym__val_number_decimal_token2] = ACTIONS(2451), + [aux_sym__val_number_decimal_token3] = ACTIONS(2451), + [aux_sym__val_number_decimal_token4] = ACTIONS(2451), + [aux_sym__val_number_token1] = ACTIONS(2451), + [aux_sym__val_number_token2] = ACTIONS(2451), + [aux_sym__val_number_token3] = ACTIONS(2451), + [aux_sym__val_number_token4] = ACTIONS(2449), + [aux_sym__val_number_token5] = ACTIONS(2449), + [aux_sym__val_number_token6] = ACTIONS(2449), + [anon_sym_DQUOTE] = ACTIONS(2451), + [sym__str_single_quotes] = ACTIONS(2451), + [sym__str_back_ticks] = ACTIONS(2451), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2451), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2451), + }, + [680] = { + [sym_comment] = STATE(680), + [anon_sym_export] = ACTIONS(2489), + [anon_sym_alias] = ACTIONS(2489), + [anon_sym_let] = ACTIONS(2489), + [anon_sym_let_DASHenv] = ACTIONS(2489), + [anon_sym_mut] = ACTIONS(2489), + [anon_sym_const] = ACTIONS(2489), + [aux_sym_cmd_identifier_token1] = ACTIONS(2489), + [aux_sym_cmd_identifier_token2] = ACTIONS(2489), + [aux_sym_cmd_identifier_token3] = ACTIONS(2489), + [aux_sym_cmd_identifier_token4] = ACTIONS(2489), + [aux_sym_cmd_identifier_token5] = ACTIONS(2489), + [aux_sym_cmd_identifier_token6] = ACTIONS(2489), + [aux_sym_cmd_identifier_token7] = ACTIONS(2489), + [aux_sym_cmd_identifier_token8] = ACTIONS(2489), + [aux_sym_cmd_identifier_token9] = ACTIONS(2489), + [aux_sym_cmd_identifier_token10] = ACTIONS(2489), + [aux_sym_cmd_identifier_token11] = ACTIONS(2489), + [aux_sym_cmd_identifier_token12] = ACTIONS(2489), + [aux_sym_cmd_identifier_token13] = ACTIONS(2489), + [aux_sym_cmd_identifier_token14] = ACTIONS(2489), + [aux_sym_cmd_identifier_token15] = ACTIONS(2489), + [aux_sym_cmd_identifier_token16] = ACTIONS(2489), + [aux_sym_cmd_identifier_token17] = ACTIONS(2489), + [aux_sym_cmd_identifier_token18] = ACTIONS(2489), + [aux_sym_cmd_identifier_token19] = ACTIONS(2489), + [aux_sym_cmd_identifier_token20] = ACTIONS(2489), + [aux_sym_cmd_identifier_token21] = ACTIONS(2489), + [aux_sym_cmd_identifier_token22] = ACTIONS(2489), + [aux_sym_cmd_identifier_token23] = ACTIONS(2489), + [aux_sym_cmd_identifier_token24] = ACTIONS(2489), + [aux_sym_cmd_identifier_token25] = ACTIONS(2489), + [aux_sym_cmd_identifier_token26] = ACTIONS(2489), + [aux_sym_cmd_identifier_token27] = ACTIONS(2489), + [aux_sym_cmd_identifier_token28] = ACTIONS(2489), + [aux_sym_cmd_identifier_token29] = ACTIONS(2489), + [aux_sym_cmd_identifier_token30] = ACTIONS(2489), + [aux_sym_cmd_identifier_token31] = ACTIONS(2489), + [aux_sym_cmd_identifier_token32] = ACTIONS(2489), + [aux_sym_cmd_identifier_token33] = ACTIONS(2489), + [aux_sym_cmd_identifier_token34] = ACTIONS(2489), + [aux_sym_cmd_identifier_token35] = ACTIONS(2489), + [aux_sym_cmd_identifier_token36] = ACTIONS(2489), + [aux_sym_cmd_identifier_token37] = ACTIONS(2489), + [aux_sym_cmd_identifier_token38] = ACTIONS(2489), + [aux_sym_cmd_identifier_token39] = ACTIONS(2489), + [aux_sym_cmd_identifier_token40] = ACTIONS(2489), + [anon_sym_def] = ACTIONS(2489), + [anon_sym_export_DASHenv] = ACTIONS(2489), + [anon_sym_extern] = ACTIONS(2489), + [anon_sym_module] = ACTIONS(2489), + [anon_sym_use] = ACTIONS(2489), + [anon_sym_LPAREN] = ACTIONS(2489), + [anon_sym_DOLLAR] = ACTIONS(2489), + [anon_sym_error] = ACTIONS(2489), + [anon_sym_DASH2] = ACTIONS(2489), + [anon_sym_break] = ACTIONS(2489), + [anon_sym_continue] = ACTIONS(2489), + [anon_sym_for] = ACTIONS(2489), + [anon_sym_in2] = ACTIONS(2489), + [anon_sym_loop] = ACTIONS(2489), + [anon_sym_make] = ACTIONS(2489), + [anon_sym_while] = ACTIONS(2489), + [anon_sym_do] = ACTIONS(2489), + [anon_sym_if] = ACTIONS(2489), + [anon_sym_else] = ACTIONS(2489), + [anon_sym_match] = ACTIONS(2489), + [anon_sym_RBRACE] = ACTIONS(2489), + [anon_sym_try] = ACTIONS(2489), + [anon_sym_catch] = ACTIONS(2489), + [anon_sym_return] = ACTIONS(2489), + [anon_sym_source] = ACTIONS(2489), + [anon_sym_source_DASHenv] = ACTIONS(2489), + [anon_sym_register] = ACTIONS(2489), + [anon_sym_hide] = ACTIONS(2489), + [anon_sym_hide_DASHenv] = ACTIONS(2489), + [anon_sym_overlay] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(2489), + [anon_sym_PLUS2] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), + [aux_sym__val_number_decimal_token1] = ACTIONS(2489), + [aux_sym__val_number_decimal_token2] = ACTIONS(2489), + [aux_sym__val_number_decimal_token3] = ACTIONS(2489), + [aux_sym__val_number_decimal_token4] = ACTIONS(2489), + [aux_sym__val_number_token1] = ACTIONS(2489), + [aux_sym__val_number_token2] = ACTIONS(2489), + [aux_sym__val_number_token3] = ACTIONS(2489), + [aux_sym__val_number_token4] = ACTIONS(2489), + [aux_sym__val_number_token5] = ACTIONS(2489), + [aux_sym__val_number_token6] = ACTIONS(2489), + [anon_sym_DQUOTE] = ACTIONS(2489), + [sym__str_single_quotes] = ACTIONS(2489), + [sym__str_back_ticks] = ACTIONS(2489), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), + [sym__entry_separator] = ACTIONS(2491), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2491), + }, + [681] = { + [sym_comment] = STATE(681), + [anon_sym_export] = ACTIONS(2312), + [anon_sym_alias] = ACTIONS(2312), + [anon_sym_let] = ACTIONS(2312), + [anon_sym_let_DASHenv] = ACTIONS(2312), + [anon_sym_mut] = ACTIONS(2312), + [anon_sym_const] = ACTIONS(2312), + [aux_sym_cmd_identifier_token1] = ACTIONS(2312), + [aux_sym_cmd_identifier_token2] = ACTIONS(2314), + [aux_sym_cmd_identifier_token3] = ACTIONS(2314), + [aux_sym_cmd_identifier_token4] = ACTIONS(2314), + [aux_sym_cmd_identifier_token5] = ACTIONS(2314), + [aux_sym_cmd_identifier_token6] = ACTIONS(2314), + [aux_sym_cmd_identifier_token7] = ACTIONS(2314), + [aux_sym_cmd_identifier_token8] = ACTIONS(2312), + [aux_sym_cmd_identifier_token9] = ACTIONS(2312), + [aux_sym_cmd_identifier_token10] = ACTIONS(2314), + [aux_sym_cmd_identifier_token11] = ACTIONS(2314), + [aux_sym_cmd_identifier_token12] = ACTIONS(2312), + [aux_sym_cmd_identifier_token13] = ACTIONS(2312), + [aux_sym_cmd_identifier_token14] = ACTIONS(2312), + [aux_sym_cmd_identifier_token15] = ACTIONS(2312), + [aux_sym_cmd_identifier_token16] = ACTIONS(2314), + [aux_sym_cmd_identifier_token17] = ACTIONS(2314), + [aux_sym_cmd_identifier_token18] = ACTIONS(2314), + [aux_sym_cmd_identifier_token19] = ACTIONS(2314), + [aux_sym_cmd_identifier_token20] = ACTIONS(2314), + [aux_sym_cmd_identifier_token21] = ACTIONS(2314), + [aux_sym_cmd_identifier_token22] = ACTIONS(2314), + [aux_sym_cmd_identifier_token23] = ACTIONS(2314), + [aux_sym_cmd_identifier_token24] = ACTIONS(2314), + [aux_sym_cmd_identifier_token25] = ACTIONS(2314), + [aux_sym_cmd_identifier_token26] = ACTIONS(2314), + [aux_sym_cmd_identifier_token27] = ACTIONS(2314), + [aux_sym_cmd_identifier_token28] = ACTIONS(2314), + [aux_sym_cmd_identifier_token29] = ACTIONS(2314), + [aux_sym_cmd_identifier_token30] = ACTIONS(2314), + [aux_sym_cmd_identifier_token31] = ACTIONS(2314), + [aux_sym_cmd_identifier_token32] = ACTIONS(2314), + [aux_sym_cmd_identifier_token33] = ACTIONS(2314), + [aux_sym_cmd_identifier_token34] = ACTIONS(2312), + [aux_sym_cmd_identifier_token35] = ACTIONS(2314), + [aux_sym_cmd_identifier_token36] = ACTIONS(2314), + [aux_sym_cmd_identifier_token37] = ACTIONS(2314), + [aux_sym_cmd_identifier_token38] = ACTIONS(2312), + [aux_sym_cmd_identifier_token39] = ACTIONS(2314), + [aux_sym_cmd_identifier_token40] = ACTIONS(2314), + [anon_sym_def] = ACTIONS(2312), + [anon_sym_export_DASHenv] = ACTIONS(2312), + [anon_sym_extern] = ACTIONS(2312), + [anon_sym_module] = ACTIONS(2312), + [anon_sym_use] = ACTIONS(2312), + [anon_sym_LPAREN] = ACTIONS(2314), + [anon_sym_COMMA] = ACTIONS(2314), + [anon_sym_DOLLAR] = ACTIONS(2314), + [anon_sym_error] = ACTIONS(2312), + [anon_sym_DASH2] = ACTIONS(2312), + [anon_sym_break] = ACTIONS(2312), + [anon_sym_continue] = ACTIONS(2312), + [anon_sym_for] = ACTIONS(2312), + [anon_sym_in2] = ACTIONS(2312), + [anon_sym_loop] = ACTIONS(2312), + [anon_sym_make] = ACTIONS(2312), + [anon_sym_while] = ACTIONS(2312), + [anon_sym_do] = ACTIONS(2312), + [anon_sym_if] = ACTIONS(2312), + [anon_sym_else] = ACTIONS(2312), + [anon_sym_match] = ACTIONS(2312), + [anon_sym_RBRACE] = ACTIONS(2314), + [anon_sym_try] = ACTIONS(2312), + [anon_sym_catch] = ACTIONS(2312), + [anon_sym_return] = ACTIONS(2312), + [anon_sym_source] = ACTIONS(2312), + [anon_sym_source_DASHenv] = ACTIONS(2312), + [anon_sym_register] = ACTIONS(2312), + [anon_sym_hide] = ACTIONS(2312), + [anon_sym_hide_DASHenv] = ACTIONS(2312), + [anon_sym_overlay] = ACTIONS(2312), + [anon_sym_as] = ACTIONS(2312), + [anon_sym_PLUS2] = ACTIONS(2312), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2314), + [aux_sym__val_number_decimal_token1] = ACTIONS(2312), + [aux_sym__val_number_decimal_token2] = ACTIONS(2314), + [aux_sym__val_number_decimal_token3] = ACTIONS(2314), + [aux_sym__val_number_decimal_token4] = ACTIONS(2314), + [aux_sym__val_number_token1] = ACTIONS(2314), + [aux_sym__val_number_token2] = ACTIONS(2314), + [aux_sym__val_number_token3] = ACTIONS(2314), + [aux_sym__val_number_token4] = ACTIONS(2312), + [aux_sym__val_number_token5] = ACTIONS(2312), + [aux_sym__val_number_token6] = ACTIONS(2312), + [anon_sym_DQUOTE] = ACTIONS(2314), + [sym__str_single_quotes] = ACTIONS(2314), + [sym__str_back_ticks] = ACTIONS(2314), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2314), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2314), + }, + [682] = { + [sym_comment] = STATE(682), + [anon_sym_export] = ACTIONS(2322), + [anon_sym_alias] = ACTIONS(2322), + [anon_sym_let] = ACTIONS(2322), + [anon_sym_let_DASHenv] = ACTIONS(2322), + [anon_sym_mut] = ACTIONS(2322), + [anon_sym_const] = ACTIONS(2322), + [aux_sym_cmd_identifier_token1] = ACTIONS(2322), + [aux_sym_cmd_identifier_token2] = ACTIONS(2324), + [aux_sym_cmd_identifier_token3] = ACTIONS(2324), + [aux_sym_cmd_identifier_token4] = ACTIONS(2324), + [aux_sym_cmd_identifier_token5] = ACTIONS(2324), + [aux_sym_cmd_identifier_token6] = ACTIONS(2324), + [aux_sym_cmd_identifier_token7] = ACTIONS(2324), + [aux_sym_cmd_identifier_token8] = ACTIONS(2322), + [aux_sym_cmd_identifier_token9] = ACTIONS(2322), + [aux_sym_cmd_identifier_token10] = ACTIONS(2324), + [aux_sym_cmd_identifier_token11] = ACTIONS(2324), + [aux_sym_cmd_identifier_token12] = ACTIONS(2322), + [aux_sym_cmd_identifier_token13] = ACTIONS(2322), + [aux_sym_cmd_identifier_token14] = ACTIONS(2322), + [aux_sym_cmd_identifier_token15] = ACTIONS(2322), + [aux_sym_cmd_identifier_token16] = ACTIONS(2324), + [aux_sym_cmd_identifier_token17] = ACTIONS(2324), + [aux_sym_cmd_identifier_token18] = ACTIONS(2324), + [aux_sym_cmd_identifier_token19] = ACTIONS(2324), + [aux_sym_cmd_identifier_token20] = ACTIONS(2324), + [aux_sym_cmd_identifier_token21] = ACTIONS(2324), + [aux_sym_cmd_identifier_token22] = ACTIONS(2324), + [aux_sym_cmd_identifier_token23] = ACTIONS(2324), + [aux_sym_cmd_identifier_token24] = ACTIONS(2324), + [aux_sym_cmd_identifier_token25] = ACTIONS(2324), + [aux_sym_cmd_identifier_token26] = ACTIONS(2324), + [aux_sym_cmd_identifier_token27] = ACTIONS(2324), + [aux_sym_cmd_identifier_token28] = ACTIONS(2324), + [aux_sym_cmd_identifier_token29] = ACTIONS(2324), + [aux_sym_cmd_identifier_token30] = ACTIONS(2324), + [aux_sym_cmd_identifier_token31] = ACTIONS(2324), + [aux_sym_cmd_identifier_token32] = ACTIONS(2324), + [aux_sym_cmd_identifier_token33] = ACTIONS(2324), + [aux_sym_cmd_identifier_token34] = ACTIONS(2322), + [aux_sym_cmd_identifier_token35] = ACTIONS(2324), + [aux_sym_cmd_identifier_token36] = ACTIONS(2324), + [aux_sym_cmd_identifier_token37] = ACTIONS(2324), + [aux_sym_cmd_identifier_token38] = ACTIONS(2322), + [aux_sym_cmd_identifier_token39] = ACTIONS(2324), + [aux_sym_cmd_identifier_token40] = ACTIONS(2324), + [anon_sym_def] = ACTIONS(2322), + [anon_sym_export_DASHenv] = ACTIONS(2322), + [anon_sym_extern] = ACTIONS(2322), + [anon_sym_module] = ACTIONS(2322), + [anon_sym_use] = ACTIONS(2322), + [anon_sym_LPAREN] = ACTIONS(2324), + [anon_sym_COMMA] = ACTIONS(2324), + [anon_sym_DOLLAR] = ACTIONS(2324), + [anon_sym_error] = ACTIONS(2322), + [anon_sym_DASH2] = ACTIONS(2322), + [anon_sym_break] = ACTIONS(2322), + [anon_sym_continue] = ACTIONS(2322), + [anon_sym_for] = ACTIONS(2322), + [anon_sym_in2] = ACTIONS(2322), + [anon_sym_loop] = ACTIONS(2322), + [anon_sym_make] = ACTIONS(2322), + [anon_sym_while] = ACTIONS(2322), + [anon_sym_do] = ACTIONS(2322), + [anon_sym_if] = ACTIONS(2322), + [anon_sym_else] = ACTIONS(2322), + [anon_sym_match] = ACTIONS(2322), + [anon_sym_RBRACE] = ACTIONS(2324), + [anon_sym_try] = ACTIONS(2322), + [anon_sym_catch] = ACTIONS(2322), + [anon_sym_return] = ACTIONS(2322), + [anon_sym_source] = ACTIONS(2322), + [anon_sym_source_DASHenv] = ACTIONS(2322), + [anon_sym_register] = ACTIONS(2322), + [anon_sym_hide] = ACTIONS(2322), + [anon_sym_hide_DASHenv] = ACTIONS(2322), + [anon_sym_overlay] = ACTIONS(2322), + [anon_sym_as] = ACTIONS(2322), + [anon_sym_PLUS2] = ACTIONS(2322), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2324), + [aux_sym__val_number_decimal_token1] = ACTIONS(2322), + [aux_sym__val_number_decimal_token2] = ACTIONS(2324), + [aux_sym__val_number_decimal_token3] = ACTIONS(2324), + [aux_sym__val_number_decimal_token4] = ACTIONS(2324), + [aux_sym__val_number_token1] = ACTIONS(2324), + [aux_sym__val_number_token2] = ACTIONS(2324), + [aux_sym__val_number_token3] = ACTIONS(2324), + [aux_sym__val_number_token4] = ACTIONS(2322), + [aux_sym__val_number_token5] = ACTIONS(2322), + [aux_sym__val_number_token6] = ACTIONS(2322), + [anon_sym_DQUOTE] = ACTIONS(2324), + [sym__str_single_quotes] = ACTIONS(2324), + [sym__str_back_ticks] = ACTIONS(2324), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2324), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2324), + }, + [683] = { + [sym_comment] = STATE(683), + [anon_sym_export] = ACTIONS(2326), + [anon_sym_alias] = ACTIONS(2326), + [anon_sym_let] = ACTIONS(2326), + [anon_sym_let_DASHenv] = ACTIONS(2326), + [anon_sym_mut] = ACTIONS(2326), + [anon_sym_const] = ACTIONS(2326), + [aux_sym_cmd_identifier_token1] = ACTIONS(2326), + [aux_sym_cmd_identifier_token2] = ACTIONS(2328), + [aux_sym_cmd_identifier_token3] = ACTIONS(2328), + [aux_sym_cmd_identifier_token4] = ACTIONS(2328), + [aux_sym_cmd_identifier_token5] = ACTIONS(2328), + [aux_sym_cmd_identifier_token6] = ACTIONS(2328), + [aux_sym_cmd_identifier_token7] = ACTIONS(2328), + [aux_sym_cmd_identifier_token8] = ACTIONS(2326), + [aux_sym_cmd_identifier_token9] = ACTIONS(2326), + [aux_sym_cmd_identifier_token10] = ACTIONS(2328), + [aux_sym_cmd_identifier_token11] = ACTIONS(2328), + [aux_sym_cmd_identifier_token12] = ACTIONS(2326), + [aux_sym_cmd_identifier_token13] = ACTIONS(2326), + [aux_sym_cmd_identifier_token14] = ACTIONS(2326), + [aux_sym_cmd_identifier_token15] = ACTIONS(2326), + [aux_sym_cmd_identifier_token16] = ACTIONS(2328), + [aux_sym_cmd_identifier_token17] = ACTIONS(2328), + [aux_sym_cmd_identifier_token18] = ACTIONS(2328), + [aux_sym_cmd_identifier_token19] = ACTIONS(2328), + [aux_sym_cmd_identifier_token20] = ACTIONS(2328), + [aux_sym_cmd_identifier_token21] = ACTIONS(2328), + [aux_sym_cmd_identifier_token22] = ACTIONS(2328), + [aux_sym_cmd_identifier_token23] = ACTIONS(2328), + [aux_sym_cmd_identifier_token24] = ACTIONS(2328), + [aux_sym_cmd_identifier_token25] = ACTIONS(2328), + [aux_sym_cmd_identifier_token26] = ACTIONS(2328), + [aux_sym_cmd_identifier_token27] = ACTIONS(2328), + [aux_sym_cmd_identifier_token28] = ACTIONS(2328), + [aux_sym_cmd_identifier_token29] = ACTIONS(2328), + [aux_sym_cmd_identifier_token30] = ACTIONS(2328), + [aux_sym_cmd_identifier_token31] = ACTIONS(2328), + [aux_sym_cmd_identifier_token32] = ACTIONS(2328), + [aux_sym_cmd_identifier_token33] = ACTIONS(2328), + [aux_sym_cmd_identifier_token34] = ACTIONS(2326), + [aux_sym_cmd_identifier_token35] = ACTIONS(2328), + [aux_sym_cmd_identifier_token36] = ACTIONS(2328), + [aux_sym_cmd_identifier_token37] = ACTIONS(2328), + [aux_sym_cmd_identifier_token38] = ACTIONS(2326), + [aux_sym_cmd_identifier_token39] = ACTIONS(2328), + [aux_sym_cmd_identifier_token40] = ACTIONS(2328), + [anon_sym_def] = ACTIONS(2326), + [anon_sym_export_DASHenv] = ACTIONS(2326), + [anon_sym_extern] = ACTIONS(2326), + [anon_sym_module] = ACTIONS(2326), + [anon_sym_use] = ACTIONS(2326), + [anon_sym_LPAREN] = ACTIONS(2328), + [anon_sym_COMMA] = ACTIONS(2328), + [anon_sym_DOLLAR] = ACTIONS(2328), + [anon_sym_error] = ACTIONS(2326), + [anon_sym_DASH2] = ACTIONS(2326), + [anon_sym_break] = ACTIONS(2326), + [anon_sym_continue] = ACTIONS(2326), + [anon_sym_for] = ACTIONS(2326), + [anon_sym_in2] = ACTIONS(2326), + [anon_sym_loop] = ACTIONS(2326), + [anon_sym_make] = ACTIONS(2326), + [anon_sym_while] = ACTIONS(2326), + [anon_sym_do] = ACTIONS(2326), + [anon_sym_if] = ACTIONS(2326), + [anon_sym_else] = ACTIONS(2326), + [anon_sym_match] = ACTIONS(2326), + [anon_sym_RBRACE] = ACTIONS(2328), + [anon_sym_try] = ACTIONS(2326), + [anon_sym_catch] = ACTIONS(2326), + [anon_sym_return] = ACTIONS(2326), + [anon_sym_source] = ACTIONS(2326), + [anon_sym_source_DASHenv] = ACTIONS(2326), + [anon_sym_register] = ACTIONS(2326), + [anon_sym_hide] = ACTIONS(2326), + [anon_sym_hide_DASHenv] = ACTIONS(2326), + [anon_sym_overlay] = ACTIONS(2326), + [anon_sym_as] = ACTIONS(2326), + [anon_sym_PLUS2] = ACTIONS(2326), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), + [aux_sym__val_number_decimal_token1] = ACTIONS(2326), + [aux_sym__val_number_decimal_token2] = ACTIONS(2328), + [aux_sym__val_number_decimal_token3] = ACTIONS(2328), + [aux_sym__val_number_decimal_token4] = ACTIONS(2328), + [aux_sym__val_number_token1] = ACTIONS(2328), + [aux_sym__val_number_token2] = ACTIONS(2328), + [aux_sym__val_number_token3] = ACTIONS(2328), + [aux_sym__val_number_token4] = ACTIONS(2326), + [aux_sym__val_number_token5] = ACTIONS(2326), + [aux_sym__val_number_token6] = ACTIONS(2326), + [anon_sym_DQUOTE] = ACTIONS(2328), + [sym__str_single_quotes] = ACTIONS(2328), + [sym__str_back_ticks] = ACTIONS(2328), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2328), + }, + [684] = { + [sym_comment] = STATE(684), + [anon_sym_export] = ACTIONS(2156), + [anon_sym_alias] = ACTIONS(2156), + [anon_sym_let] = ACTIONS(2156), + [anon_sym_let_DASHenv] = ACTIONS(2156), + [anon_sym_mut] = ACTIONS(2156), + [anon_sym_const] = ACTIONS(2156), + [aux_sym_cmd_identifier_token1] = ACTIONS(2156), + [aux_sym_cmd_identifier_token2] = ACTIONS(2158), + [aux_sym_cmd_identifier_token3] = ACTIONS(2158), + [aux_sym_cmd_identifier_token4] = ACTIONS(2158), + [aux_sym_cmd_identifier_token5] = ACTIONS(2158), + [aux_sym_cmd_identifier_token6] = ACTIONS(2158), + [aux_sym_cmd_identifier_token7] = ACTIONS(2158), + [aux_sym_cmd_identifier_token8] = ACTIONS(2156), + [aux_sym_cmd_identifier_token9] = ACTIONS(2156), + [aux_sym_cmd_identifier_token10] = ACTIONS(2158), + [aux_sym_cmd_identifier_token11] = ACTIONS(2158), + [aux_sym_cmd_identifier_token12] = ACTIONS(2156), + [aux_sym_cmd_identifier_token13] = ACTIONS(2156), + [aux_sym_cmd_identifier_token14] = ACTIONS(2156), + [aux_sym_cmd_identifier_token15] = ACTIONS(2156), + [aux_sym_cmd_identifier_token16] = ACTIONS(2158), + [aux_sym_cmd_identifier_token17] = ACTIONS(2158), + [aux_sym_cmd_identifier_token18] = ACTIONS(2158), + [aux_sym_cmd_identifier_token19] = ACTIONS(2158), + [aux_sym_cmd_identifier_token20] = ACTIONS(2158), + [aux_sym_cmd_identifier_token21] = ACTIONS(2158), + [aux_sym_cmd_identifier_token22] = ACTIONS(2158), + [aux_sym_cmd_identifier_token23] = ACTIONS(2158), + [aux_sym_cmd_identifier_token24] = ACTIONS(2158), + [aux_sym_cmd_identifier_token25] = ACTIONS(2158), + [aux_sym_cmd_identifier_token26] = ACTIONS(2158), + [aux_sym_cmd_identifier_token27] = ACTIONS(2158), + [aux_sym_cmd_identifier_token28] = ACTIONS(2158), + [aux_sym_cmd_identifier_token29] = ACTIONS(2158), + [aux_sym_cmd_identifier_token30] = ACTIONS(2158), + [aux_sym_cmd_identifier_token31] = ACTIONS(2158), + [aux_sym_cmd_identifier_token32] = ACTIONS(2158), + [aux_sym_cmd_identifier_token33] = ACTIONS(2158), + [aux_sym_cmd_identifier_token34] = ACTIONS(2156), + [aux_sym_cmd_identifier_token35] = ACTIONS(2158), + [aux_sym_cmd_identifier_token36] = ACTIONS(2158), + [aux_sym_cmd_identifier_token37] = ACTIONS(2158), + [aux_sym_cmd_identifier_token38] = ACTIONS(2156), + [aux_sym_cmd_identifier_token39] = ACTIONS(2158), + [aux_sym_cmd_identifier_token40] = ACTIONS(2158), + [anon_sym_def] = ACTIONS(2156), + [anon_sym_export_DASHenv] = ACTIONS(2156), + [anon_sym_extern] = ACTIONS(2156), + [anon_sym_module] = ACTIONS(2156), + [anon_sym_use] = ACTIONS(2156), + [anon_sym_LPAREN] = ACTIONS(2158), + [anon_sym_COMMA] = ACTIONS(2158), + [anon_sym_DOLLAR] = ACTIONS(2158), + [anon_sym_error] = ACTIONS(2156), + [anon_sym_DASH2] = ACTIONS(2156), + [anon_sym_break] = ACTIONS(2156), + [anon_sym_continue] = ACTIONS(2156), + [anon_sym_for] = ACTIONS(2156), + [anon_sym_in2] = ACTIONS(2156), + [anon_sym_loop] = ACTIONS(2156), + [anon_sym_make] = ACTIONS(2156), + [anon_sym_while] = ACTIONS(2156), + [anon_sym_do] = ACTIONS(2156), + [anon_sym_if] = ACTIONS(2156), + [anon_sym_else] = ACTIONS(2156), + [anon_sym_match] = ACTIONS(2156), + [anon_sym_RBRACE] = ACTIONS(2158), + [anon_sym_try] = ACTIONS(2156), + [anon_sym_catch] = ACTIONS(2156), + [anon_sym_return] = ACTIONS(2156), + [anon_sym_source] = ACTIONS(2156), + [anon_sym_source_DASHenv] = ACTIONS(2156), + [anon_sym_register] = ACTIONS(2156), + [anon_sym_hide] = ACTIONS(2156), + [anon_sym_hide_DASHenv] = ACTIONS(2156), + [anon_sym_overlay] = ACTIONS(2156), + [anon_sym_as] = ACTIONS(2156), + [anon_sym_PLUS2] = ACTIONS(2156), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), + [aux_sym__val_number_decimal_token1] = ACTIONS(2156), + [aux_sym__val_number_decimal_token2] = ACTIONS(2158), + [aux_sym__val_number_decimal_token3] = ACTIONS(2158), + [aux_sym__val_number_decimal_token4] = ACTIONS(2158), + [aux_sym__val_number_token1] = ACTIONS(2158), + [aux_sym__val_number_token2] = ACTIONS(2158), + [aux_sym__val_number_token3] = ACTIONS(2158), + [aux_sym__val_number_token4] = ACTIONS(2156), + [aux_sym__val_number_token5] = ACTIONS(2156), + [aux_sym__val_number_token6] = ACTIONS(2156), + [anon_sym_DQUOTE] = ACTIONS(2158), + [sym__str_single_quotes] = ACTIONS(2158), + [sym__str_back_ticks] = ACTIONS(2158), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2158), + }, + [685] = { + [sym_comment] = STATE(685), + [anon_sym_export] = ACTIONS(1825), + [anon_sym_alias] = ACTIONS(1825), + [anon_sym_let] = ACTIONS(1825), + [anon_sym_let_DASHenv] = ACTIONS(1825), + [anon_sym_mut] = ACTIONS(1825), + [anon_sym_const] = ACTIONS(1825), + [aux_sym_cmd_identifier_token1] = ACTIONS(1825), + [aux_sym_cmd_identifier_token2] = ACTIONS(1827), + [aux_sym_cmd_identifier_token3] = ACTIONS(1827), + [aux_sym_cmd_identifier_token4] = ACTIONS(1827), + [aux_sym_cmd_identifier_token5] = ACTIONS(1827), + [aux_sym_cmd_identifier_token6] = ACTIONS(1827), + [aux_sym_cmd_identifier_token7] = ACTIONS(1827), + [aux_sym_cmd_identifier_token8] = ACTIONS(1825), + [aux_sym_cmd_identifier_token9] = ACTIONS(1825), + [aux_sym_cmd_identifier_token10] = ACTIONS(1827), + [aux_sym_cmd_identifier_token11] = ACTIONS(1827), + [aux_sym_cmd_identifier_token12] = ACTIONS(1825), + [aux_sym_cmd_identifier_token13] = ACTIONS(1825), + [aux_sym_cmd_identifier_token14] = ACTIONS(1825), + [aux_sym_cmd_identifier_token15] = ACTIONS(1825), + [aux_sym_cmd_identifier_token16] = ACTIONS(1827), + [aux_sym_cmd_identifier_token17] = ACTIONS(1827), + [aux_sym_cmd_identifier_token18] = ACTIONS(1827), + [aux_sym_cmd_identifier_token19] = ACTIONS(1827), + [aux_sym_cmd_identifier_token20] = ACTIONS(1827), + [aux_sym_cmd_identifier_token21] = ACTIONS(1827), + [aux_sym_cmd_identifier_token22] = ACTIONS(1827), + [aux_sym_cmd_identifier_token23] = ACTIONS(1827), + [aux_sym_cmd_identifier_token24] = ACTIONS(1827), + [aux_sym_cmd_identifier_token25] = ACTIONS(1827), + [aux_sym_cmd_identifier_token26] = ACTIONS(1827), + [aux_sym_cmd_identifier_token27] = ACTIONS(1827), + [aux_sym_cmd_identifier_token28] = ACTIONS(1827), + [aux_sym_cmd_identifier_token29] = ACTIONS(1827), + [aux_sym_cmd_identifier_token30] = ACTIONS(1827), + [aux_sym_cmd_identifier_token31] = ACTIONS(1827), + [aux_sym_cmd_identifier_token32] = ACTIONS(1827), + [aux_sym_cmd_identifier_token33] = ACTIONS(1827), + [aux_sym_cmd_identifier_token34] = ACTIONS(1825), + [aux_sym_cmd_identifier_token35] = ACTIONS(1827), + [aux_sym_cmd_identifier_token36] = ACTIONS(1827), + [aux_sym_cmd_identifier_token37] = ACTIONS(1827), + [aux_sym_cmd_identifier_token38] = ACTIONS(1825), + [aux_sym_cmd_identifier_token39] = ACTIONS(1827), + [aux_sym_cmd_identifier_token40] = ACTIONS(1827), + [anon_sym_def] = ACTIONS(1825), + [anon_sym_export_DASHenv] = ACTIONS(1825), + [anon_sym_extern] = ACTIONS(1825), + [anon_sym_module] = ACTIONS(1825), + [anon_sym_use] = ACTIONS(1825), + [anon_sym_LPAREN] = ACTIONS(1827), + [anon_sym_COMMA] = ACTIONS(1827), + [anon_sym_DOLLAR] = ACTIONS(1827), + [anon_sym_error] = ACTIONS(1825), + [anon_sym_DASH2] = ACTIONS(1825), + [anon_sym_break] = ACTIONS(1825), + [anon_sym_continue] = ACTIONS(1825), + [anon_sym_for] = ACTIONS(1825), + [anon_sym_in2] = ACTIONS(1825), + [anon_sym_loop] = ACTIONS(1825), + [anon_sym_make] = ACTIONS(1825), + [anon_sym_while] = ACTIONS(1825), + [anon_sym_do] = ACTIONS(1825), + [anon_sym_if] = ACTIONS(1825), + [anon_sym_else] = ACTIONS(1825), + [anon_sym_match] = ACTIONS(1825), + [anon_sym_RBRACE] = ACTIONS(1827), + [anon_sym_try] = ACTIONS(1825), + [anon_sym_catch] = ACTIONS(1825), + [anon_sym_return] = ACTIONS(1825), + [anon_sym_source] = ACTIONS(1825), + [anon_sym_source_DASHenv] = ACTIONS(1825), + [anon_sym_register] = ACTIONS(1825), + [anon_sym_hide] = ACTIONS(1825), + [anon_sym_hide_DASHenv] = ACTIONS(1825), + [anon_sym_overlay] = ACTIONS(1825), + [anon_sym_as] = ACTIONS(1825), + [anon_sym_PLUS2] = ACTIONS(1825), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1827), + [aux_sym__val_number_decimal_token1] = ACTIONS(1825), + [aux_sym__val_number_decimal_token2] = ACTIONS(1827), + [aux_sym__val_number_decimal_token3] = ACTIONS(1827), + [aux_sym__val_number_decimal_token4] = ACTIONS(1827), + [aux_sym__val_number_token1] = ACTIONS(1827), + [aux_sym__val_number_token2] = ACTIONS(1827), + [aux_sym__val_number_token3] = ACTIONS(1827), + [aux_sym__val_number_token4] = ACTIONS(1825), + [aux_sym__val_number_token5] = ACTIONS(1825), + [aux_sym__val_number_token6] = ACTIONS(1825), + [anon_sym_DQUOTE] = ACTIONS(1827), + [sym__str_single_quotes] = ACTIONS(1827), + [sym__str_back_ticks] = ACTIONS(1827), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1827), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1827), + }, + [686] = { + [sym_comment] = STATE(686), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2455), + [aux_sym_cmd_identifier_token3] = ACTIONS(2455), + [aux_sym_cmd_identifier_token4] = ACTIONS(2455), + [aux_sym_cmd_identifier_token5] = ACTIONS(2455), + [aux_sym_cmd_identifier_token6] = ACTIONS(2455), + [aux_sym_cmd_identifier_token7] = ACTIONS(2455), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2455), + [aux_sym_cmd_identifier_token11] = ACTIONS(2455), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2455), + [aux_sym_cmd_identifier_token17] = ACTIONS(2455), + [aux_sym_cmd_identifier_token18] = ACTIONS(2455), + [aux_sym_cmd_identifier_token19] = ACTIONS(2455), + [aux_sym_cmd_identifier_token20] = ACTIONS(2455), + [aux_sym_cmd_identifier_token21] = ACTIONS(2455), + [aux_sym_cmd_identifier_token22] = ACTIONS(2455), + [aux_sym_cmd_identifier_token23] = ACTIONS(2455), + [aux_sym_cmd_identifier_token24] = ACTIONS(2455), + [aux_sym_cmd_identifier_token25] = ACTIONS(2455), + [aux_sym_cmd_identifier_token26] = ACTIONS(2455), + [aux_sym_cmd_identifier_token27] = ACTIONS(2455), + [aux_sym_cmd_identifier_token28] = ACTIONS(2455), + [aux_sym_cmd_identifier_token29] = ACTIONS(2455), + [aux_sym_cmd_identifier_token30] = ACTIONS(2455), + [aux_sym_cmd_identifier_token31] = ACTIONS(2455), + [aux_sym_cmd_identifier_token32] = ACTIONS(2455), + [aux_sym_cmd_identifier_token33] = ACTIONS(2455), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2455), + [aux_sym_cmd_identifier_token36] = ACTIONS(2455), + [aux_sym_cmd_identifier_token37] = ACTIONS(2455), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2455), + [aux_sym_cmd_identifier_token40] = ACTIONS(2455), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(2455), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2455), + [aux_sym__val_number_decimal_token3] = ACTIONS(2455), + [aux_sym__val_number_decimal_token4] = ACTIONS(2455), + [aux_sym__val_number_token1] = ACTIONS(2455), + [aux_sym__val_number_token2] = ACTIONS(2455), + [aux_sym__val_number_token3] = ACTIONS(2455), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym__str_single_quotes] = ACTIONS(2455), + [sym__str_back_ticks] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2455), + }, + [687] = { + [sym_comment] = STATE(687), + [anon_sym_export] = ACTIONS(1749), + [anon_sym_alias] = ACTIONS(1749), + [anon_sym_let] = ACTIONS(1749), + [anon_sym_let_DASHenv] = ACTIONS(1749), + [anon_sym_mut] = ACTIONS(1749), + [anon_sym_const] = ACTIONS(1749), + [aux_sym_cmd_identifier_token1] = ACTIONS(1749), + [aux_sym_cmd_identifier_token2] = ACTIONS(1751), + [aux_sym_cmd_identifier_token3] = ACTIONS(1751), + [aux_sym_cmd_identifier_token4] = ACTIONS(1751), + [aux_sym_cmd_identifier_token5] = ACTIONS(1751), + [aux_sym_cmd_identifier_token6] = ACTIONS(1751), + [aux_sym_cmd_identifier_token7] = ACTIONS(1751), + [aux_sym_cmd_identifier_token8] = ACTIONS(1749), + [aux_sym_cmd_identifier_token9] = ACTIONS(1749), + [aux_sym_cmd_identifier_token10] = ACTIONS(1751), + [aux_sym_cmd_identifier_token11] = ACTIONS(1751), + [aux_sym_cmd_identifier_token12] = ACTIONS(1749), + [aux_sym_cmd_identifier_token13] = ACTIONS(1749), + [aux_sym_cmd_identifier_token14] = ACTIONS(1749), + [aux_sym_cmd_identifier_token15] = ACTIONS(1749), + [aux_sym_cmd_identifier_token16] = ACTIONS(1751), + [aux_sym_cmd_identifier_token17] = ACTIONS(1751), + [aux_sym_cmd_identifier_token18] = ACTIONS(1751), + [aux_sym_cmd_identifier_token19] = ACTIONS(1751), + [aux_sym_cmd_identifier_token20] = ACTIONS(1751), + [aux_sym_cmd_identifier_token21] = ACTIONS(1751), + [aux_sym_cmd_identifier_token22] = ACTIONS(1751), + [aux_sym_cmd_identifier_token23] = ACTIONS(1751), + [aux_sym_cmd_identifier_token24] = ACTIONS(1751), + [aux_sym_cmd_identifier_token25] = ACTIONS(1751), + [aux_sym_cmd_identifier_token26] = ACTIONS(1751), + [aux_sym_cmd_identifier_token27] = ACTIONS(1751), + [aux_sym_cmd_identifier_token28] = ACTIONS(1751), + [aux_sym_cmd_identifier_token29] = ACTIONS(1751), + [aux_sym_cmd_identifier_token30] = ACTIONS(1751), + [aux_sym_cmd_identifier_token31] = ACTIONS(1751), + [aux_sym_cmd_identifier_token32] = ACTIONS(1751), + [aux_sym_cmd_identifier_token33] = ACTIONS(1751), + [aux_sym_cmd_identifier_token34] = ACTIONS(1749), + [aux_sym_cmd_identifier_token35] = ACTIONS(1751), + [aux_sym_cmd_identifier_token36] = ACTIONS(1751), + [aux_sym_cmd_identifier_token37] = ACTIONS(1751), + [aux_sym_cmd_identifier_token38] = ACTIONS(1749), + [aux_sym_cmd_identifier_token39] = ACTIONS(1751), + [aux_sym_cmd_identifier_token40] = ACTIONS(1751), + [anon_sym_def] = ACTIONS(1749), + [anon_sym_export_DASHenv] = ACTIONS(1749), + [anon_sym_extern] = ACTIONS(1749), + [anon_sym_module] = ACTIONS(1749), + [anon_sym_use] = ACTIONS(1749), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_COMMA] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1751), + [anon_sym_error] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_break] = ACTIONS(1749), + [anon_sym_continue] = ACTIONS(1749), + [anon_sym_for] = ACTIONS(1749), + [anon_sym_in2] = ACTIONS(1749), + [anon_sym_loop] = ACTIONS(1749), + [anon_sym_make] = ACTIONS(1749), + [anon_sym_while] = ACTIONS(1749), + [anon_sym_do] = ACTIONS(1749), + [anon_sym_if] = ACTIONS(1749), + [anon_sym_else] = ACTIONS(1749), + [anon_sym_match] = ACTIONS(1749), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_try] = ACTIONS(1749), + [anon_sym_catch] = ACTIONS(1749), + [anon_sym_return] = ACTIONS(1749), + [anon_sym_source] = ACTIONS(1749), + [anon_sym_source_DASHenv] = ACTIONS(1749), + [anon_sym_register] = ACTIONS(1749), + [anon_sym_hide] = ACTIONS(1749), + [anon_sym_hide_DASHenv] = ACTIONS(1749), + [anon_sym_overlay] = ACTIONS(1749), + [anon_sym_as] = ACTIONS(1749), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1749), + [aux_sym__val_number_token5] = ACTIONS(1749), + [aux_sym__val_number_token6] = ACTIONS(1749), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1751), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [688] = { + [sym_comment] = STATE(688), + [anon_sym_export] = ACTIONS(2160), + [anon_sym_alias] = ACTIONS(2160), + [anon_sym_let] = ACTIONS(2160), + [anon_sym_let_DASHenv] = ACTIONS(2160), + [anon_sym_mut] = ACTIONS(2160), + [anon_sym_const] = ACTIONS(2160), + [aux_sym_cmd_identifier_token1] = ACTIONS(2160), + [aux_sym_cmd_identifier_token2] = ACTIONS(2162), + [aux_sym_cmd_identifier_token3] = ACTIONS(2162), + [aux_sym_cmd_identifier_token4] = ACTIONS(2162), + [aux_sym_cmd_identifier_token5] = ACTIONS(2162), + [aux_sym_cmd_identifier_token6] = ACTIONS(2162), + [aux_sym_cmd_identifier_token7] = ACTIONS(2162), + [aux_sym_cmd_identifier_token8] = ACTIONS(2160), + [aux_sym_cmd_identifier_token9] = ACTIONS(2160), + [aux_sym_cmd_identifier_token10] = ACTIONS(2162), + [aux_sym_cmd_identifier_token11] = ACTIONS(2162), + [aux_sym_cmd_identifier_token12] = ACTIONS(2160), + [aux_sym_cmd_identifier_token13] = ACTIONS(2160), + [aux_sym_cmd_identifier_token14] = ACTIONS(2160), + [aux_sym_cmd_identifier_token15] = ACTIONS(2160), + [aux_sym_cmd_identifier_token16] = ACTIONS(2162), + [aux_sym_cmd_identifier_token17] = ACTIONS(2162), + [aux_sym_cmd_identifier_token18] = ACTIONS(2162), + [aux_sym_cmd_identifier_token19] = ACTIONS(2162), + [aux_sym_cmd_identifier_token20] = ACTIONS(2162), + [aux_sym_cmd_identifier_token21] = ACTIONS(2162), + [aux_sym_cmd_identifier_token22] = ACTIONS(2162), + [aux_sym_cmd_identifier_token23] = ACTIONS(2162), + [aux_sym_cmd_identifier_token24] = ACTIONS(2162), + [aux_sym_cmd_identifier_token25] = ACTIONS(2162), + [aux_sym_cmd_identifier_token26] = ACTIONS(2162), + [aux_sym_cmd_identifier_token27] = ACTIONS(2162), + [aux_sym_cmd_identifier_token28] = ACTIONS(2162), + [aux_sym_cmd_identifier_token29] = ACTIONS(2162), + [aux_sym_cmd_identifier_token30] = ACTIONS(2162), + [aux_sym_cmd_identifier_token31] = ACTIONS(2162), + [aux_sym_cmd_identifier_token32] = ACTIONS(2162), + [aux_sym_cmd_identifier_token33] = ACTIONS(2162), + [aux_sym_cmd_identifier_token34] = ACTIONS(2160), + [aux_sym_cmd_identifier_token35] = ACTIONS(2162), + [aux_sym_cmd_identifier_token36] = ACTIONS(2162), + [aux_sym_cmd_identifier_token37] = ACTIONS(2162), + [aux_sym_cmd_identifier_token38] = ACTIONS(2160), + [aux_sym_cmd_identifier_token39] = ACTIONS(2162), + [aux_sym_cmd_identifier_token40] = ACTIONS(2162), + [anon_sym_def] = ACTIONS(2160), + [anon_sym_export_DASHenv] = ACTIONS(2160), + [anon_sym_extern] = ACTIONS(2160), + [anon_sym_module] = ACTIONS(2160), + [anon_sym_use] = ACTIONS(2160), + [anon_sym_LPAREN] = ACTIONS(2162), + [anon_sym_COMMA] = ACTIONS(2162), + [anon_sym_DOLLAR] = ACTIONS(2162), + [anon_sym_error] = ACTIONS(2160), + [anon_sym_DASH2] = ACTIONS(2160), + [anon_sym_break] = ACTIONS(2160), + [anon_sym_continue] = ACTIONS(2160), + [anon_sym_for] = ACTIONS(2160), + [anon_sym_in2] = ACTIONS(2160), + [anon_sym_loop] = ACTIONS(2160), + [anon_sym_make] = ACTIONS(2160), + [anon_sym_while] = ACTIONS(2160), + [anon_sym_do] = ACTIONS(2160), + [anon_sym_if] = ACTIONS(2160), + [anon_sym_else] = ACTIONS(2160), + [anon_sym_match] = ACTIONS(2160), + [anon_sym_RBRACE] = ACTIONS(2162), + [anon_sym_try] = ACTIONS(2160), + [anon_sym_catch] = ACTIONS(2160), + [anon_sym_return] = ACTIONS(2160), + [anon_sym_source] = ACTIONS(2160), + [anon_sym_source_DASHenv] = ACTIONS(2160), + [anon_sym_register] = ACTIONS(2160), + [anon_sym_hide] = ACTIONS(2160), + [anon_sym_hide_DASHenv] = ACTIONS(2160), + [anon_sym_overlay] = ACTIONS(2160), + [anon_sym_as] = ACTIONS(2160), + [anon_sym_PLUS2] = ACTIONS(2160), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2162), + [aux_sym__val_number_decimal_token1] = ACTIONS(2160), + [aux_sym__val_number_decimal_token2] = ACTIONS(2162), + [aux_sym__val_number_decimal_token3] = ACTIONS(2162), + [aux_sym__val_number_decimal_token4] = ACTIONS(2162), + [aux_sym__val_number_token1] = ACTIONS(2162), + [aux_sym__val_number_token2] = ACTIONS(2162), + [aux_sym__val_number_token3] = ACTIONS(2162), + [aux_sym__val_number_token4] = ACTIONS(2160), + [aux_sym__val_number_token5] = ACTIONS(2160), + [aux_sym__val_number_token6] = ACTIONS(2160), + [anon_sym_DQUOTE] = ACTIONS(2162), + [sym__str_single_quotes] = ACTIONS(2162), + [sym__str_back_ticks] = ACTIONS(2162), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2162), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2162), + }, + [689] = { + [sym_comment] = STATE(689), + [anon_sym_export] = ACTIONS(2453), + [anon_sym_alias] = ACTIONS(2453), + [anon_sym_let] = ACTIONS(2453), + [anon_sym_let_DASHenv] = ACTIONS(2453), + [anon_sym_mut] = ACTIONS(2453), + [anon_sym_const] = ACTIONS(2453), + [aux_sym_cmd_identifier_token1] = ACTIONS(2453), + [aux_sym_cmd_identifier_token2] = ACTIONS(2455), + [aux_sym_cmd_identifier_token3] = ACTIONS(2455), + [aux_sym_cmd_identifier_token4] = ACTIONS(2455), + [aux_sym_cmd_identifier_token5] = ACTIONS(2455), + [aux_sym_cmd_identifier_token6] = ACTIONS(2455), + [aux_sym_cmd_identifier_token7] = ACTIONS(2455), + [aux_sym_cmd_identifier_token8] = ACTIONS(2453), + [aux_sym_cmd_identifier_token9] = ACTIONS(2453), + [aux_sym_cmd_identifier_token10] = ACTIONS(2455), + [aux_sym_cmd_identifier_token11] = ACTIONS(2455), + [aux_sym_cmd_identifier_token12] = ACTIONS(2453), + [aux_sym_cmd_identifier_token13] = ACTIONS(2453), + [aux_sym_cmd_identifier_token14] = ACTIONS(2453), + [aux_sym_cmd_identifier_token15] = ACTIONS(2453), + [aux_sym_cmd_identifier_token16] = ACTIONS(2455), + [aux_sym_cmd_identifier_token17] = ACTIONS(2455), + [aux_sym_cmd_identifier_token18] = ACTIONS(2455), + [aux_sym_cmd_identifier_token19] = ACTIONS(2455), + [aux_sym_cmd_identifier_token20] = ACTIONS(2455), + [aux_sym_cmd_identifier_token21] = ACTIONS(2455), + [aux_sym_cmd_identifier_token22] = ACTIONS(2455), + [aux_sym_cmd_identifier_token23] = ACTIONS(2455), + [aux_sym_cmd_identifier_token24] = ACTIONS(2455), + [aux_sym_cmd_identifier_token25] = ACTIONS(2455), + [aux_sym_cmd_identifier_token26] = ACTIONS(2455), + [aux_sym_cmd_identifier_token27] = ACTIONS(2455), + [aux_sym_cmd_identifier_token28] = ACTIONS(2455), + [aux_sym_cmd_identifier_token29] = ACTIONS(2455), + [aux_sym_cmd_identifier_token30] = ACTIONS(2455), + [aux_sym_cmd_identifier_token31] = ACTIONS(2455), + [aux_sym_cmd_identifier_token32] = ACTIONS(2455), + [aux_sym_cmd_identifier_token33] = ACTIONS(2455), + [aux_sym_cmd_identifier_token34] = ACTIONS(2453), + [aux_sym_cmd_identifier_token35] = ACTIONS(2455), + [aux_sym_cmd_identifier_token36] = ACTIONS(2455), + [aux_sym_cmd_identifier_token37] = ACTIONS(2455), + [aux_sym_cmd_identifier_token38] = ACTIONS(2453), + [aux_sym_cmd_identifier_token39] = ACTIONS(2455), + [aux_sym_cmd_identifier_token40] = ACTIONS(2455), + [anon_sym_def] = ACTIONS(2453), + [anon_sym_export_DASHenv] = ACTIONS(2453), + [anon_sym_extern] = ACTIONS(2453), + [anon_sym_module] = ACTIONS(2453), + [anon_sym_use] = ACTIONS(2453), + [anon_sym_LPAREN] = ACTIONS(2455), + [anon_sym_COMMA] = ACTIONS(2455), + [anon_sym_DOLLAR] = ACTIONS(2455), + [anon_sym_error] = ACTIONS(2453), + [anon_sym_DASH2] = ACTIONS(2453), + [anon_sym_break] = ACTIONS(2453), + [anon_sym_continue] = ACTIONS(2453), + [anon_sym_for] = ACTIONS(2453), + [anon_sym_in2] = ACTIONS(2453), + [anon_sym_loop] = ACTIONS(2453), + [anon_sym_make] = ACTIONS(2453), + [anon_sym_while] = ACTIONS(2453), + [anon_sym_do] = ACTIONS(2453), + [anon_sym_if] = ACTIONS(2453), + [anon_sym_else] = ACTIONS(2453), + [anon_sym_match] = ACTIONS(2453), + [anon_sym_RBRACE] = ACTIONS(2455), + [anon_sym_try] = ACTIONS(2453), + [anon_sym_catch] = ACTIONS(2453), + [anon_sym_return] = ACTIONS(2453), + [anon_sym_source] = ACTIONS(2453), + [anon_sym_source_DASHenv] = ACTIONS(2453), + [anon_sym_register] = ACTIONS(2453), + [anon_sym_hide] = ACTIONS(2453), + [anon_sym_hide_DASHenv] = ACTIONS(2453), + [anon_sym_overlay] = ACTIONS(2453), + [anon_sym_as] = ACTIONS(2453), + [anon_sym_PLUS2] = ACTIONS(2453), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2455), + [aux_sym__val_number_decimal_token1] = ACTIONS(2453), + [aux_sym__val_number_decimal_token2] = ACTIONS(2455), + [aux_sym__val_number_decimal_token3] = ACTIONS(2455), + [aux_sym__val_number_decimal_token4] = ACTIONS(2455), + [aux_sym__val_number_token1] = ACTIONS(2455), + [aux_sym__val_number_token2] = ACTIONS(2455), + [aux_sym__val_number_token3] = ACTIONS(2455), + [aux_sym__val_number_token4] = ACTIONS(2453), + [aux_sym__val_number_token5] = ACTIONS(2453), + [aux_sym__val_number_token6] = ACTIONS(2453), + [anon_sym_DQUOTE] = ACTIONS(2455), + [sym__str_single_quotes] = ACTIONS(2455), + [sym__str_back_ticks] = ACTIONS(2455), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2455), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2455), + }, + [690] = { + [sym_comment] = STATE(690), + [anon_sym_export] = ACTIONS(2417), + [anon_sym_alias] = ACTIONS(2417), + [anon_sym_let] = ACTIONS(2417), + [anon_sym_let_DASHenv] = ACTIONS(2417), + [anon_sym_mut] = ACTIONS(2417), + [anon_sym_const] = ACTIONS(2417), + [aux_sym_cmd_identifier_token1] = ACTIONS(2417), + [aux_sym_cmd_identifier_token2] = ACTIONS(2419), + [aux_sym_cmd_identifier_token3] = ACTIONS(2419), + [aux_sym_cmd_identifier_token4] = ACTIONS(2419), + [aux_sym_cmd_identifier_token5] = ACTIONS(2419), + [aux_sym_cmd_identifier_token6] = ACTIONS(2419), + [aux_sym_cmd_identifier_token7] = ACTIONS(2419), + [aux_sym_cmd_identifier_token8] = ACTIONS(2417), + [aux_sym_cmd_identifier_token9] = ACTIONS(2417), + [aux_sym_cmd_identifier_token10] = ACTIONS(2419), + [aux_sym_cmd_identifier_token11] = ACTIONS(2419), + [aux_sym_cmd_identifier_token12] = ACTIONS(2417), + [aux_sym_cmd_identifier_token13] = ACTIONS(2417), + [aux_sym_cmd_identifier_token14] = ACTIONS(2417), + [aux_sym_cmd_identifier_token15] = ACTIONS(2417), + [aux_sym_cmd_identifier_token16] = ACTIONS(2419), + [aux_sym_cmd_identifier_token17] = ACTIONS(2419), + [aux_sym_cmd_identifier_token18] = ACTIONS(2419), + [aux_sym_cmd_identifier_token19] = ACTIONS(2419), + [aux_sym_cmd_identifier_token20] = ACTIONS(2419), + [aux_sym_cmd_identifier_token21] = ACTIONS(2419), + [aux_sym_cmd_identifier_token22] = ACTIONS(2419), + [aux_sym_cmd_identifier_token23] = ACTIONS(2419), + [aux_sym_cmd_identifier_token24] = ACTIONS(2419), + [aux_sym_cmd_identifier_token25] = ACTIONS(2419), + [aux_sym_cmd_identifier_token26] = ACTIONS(2419), + [aux_sym_cmd_identifier_token27] = ACTIONS(2419), + [aux_sym_cmd_identifier_token28] = ACTIONS(2419), + [aux_sym_cmd_identifier_token29] = ACTIONS(2419), + [aux_sym_cmd_identifier_token30] = ACTIONS(2419), + [aux_sym_cmd_identifier_token31] = ACTIONS(2419), + [aux_sym_cmd_identifier_token32] = ACTIONS(2419), + [aux_sym_cmd_identifier_token33] = ACTIONS(2419), + [aux_sym_cmd_identifier_token34] = ACTIONS(2417), + [aux_sym_cmd_identifier_token35] = ACTIONS(2419), + [aux_sym_cmd_identifier_token36] = ACTIONS(2419), + [aux_sym_cmd_identifier_token37] = ACTIONS(2419), + [aux_sym_cmd_identifier_token38] = ACTIONS(2417), + [aux_sym_cmd_identifier_token39] = ACTIONS(2419), + [aux_sym_cmd_identifier_token40] = ACTIONS(2419), + [anon_sym_def] = ACTIONS(2417), + [anon_sym_export_DASHenv] = ACTIONS(2417), + [anon_sym_extern] = ACTIONS(2417), + [anon_sym_module] = ACTIONS(2417), + [anon_sym_use] = ACTIONS(2417), + [anon_sym_LPAREN] = ACTIONS(2419), + [anon_sym_COMMA] = ACTIONS(2419), + [anon_sym_DOLLAR] = ACTIONS(2419), + [anon_sym_error] = ACTIONS(2417), + [anon_sym_DASH2] = ACTIONS(2417), + [anon_sym_break] = ACTIONS(2417), + [anon_sym_continue] = ACTIONS(2417), + [anon_sym_for] = ACTIONS(2417), + [anon_sym_in2] = ACTIONS(2417), + [anon_sym_loop] = ACTIONS(2417), + [anon_sym_make] = ACTIONS(2417), + [anon_sym_while] = ACTIONS(2417), + [anon_sym_do] = ACTIONS(2417), + [anon_sym_if] = ACTIONS(2417), + [anon_sym_else] = ACTIONS(2417), + [anon_sym_match] = ACTIONS(2417), + [anon_sym_RBRACE] = ACTIONS(2419), + [anon_sym_try] = ACTIONS(2417), + [anon_sym_catch] = ACTIONS(2417), + [anon_sym_return] = ACTIONS(2417), + [anon_sym_source] = ACTIONS(2417), + [anon_sym_source_DASHenv] = ACTIONS(2417), + [anon_sym_register] = ACTIONS(2417), + [anon_sym_hide] = ACTIONS(2417), + [anon_sym_hide_DASHenv] = ACTIONS(2417), + [anon_sym_overlay] = ACTIONS(2417), + [anon_sym_as] = ACTIONS(2417), + [anon_sym_PLUS2] = ACTIONS(2417), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2419), + [aux_sym__val_number_decimal_token1] = ACTIONS(2417), + [aux_sym__val_number_decimal_token2] = ACTIONS(2419), + [aux_sym__val_number_decimal_token3] = ACTIONS(2419), + [aux_sym__val_number_decimal_token4] = ACTIONS(2419), + [aux_sym__val_number_token1] = ACTIONS(2419), + [aux_sym__val_number_token2] = ACTIONS(2419), + [aux_sym__val_number_token3] = ACTIONS(2419), + [aux_sym__val_number_token4] = ACTIONS(2417), + [aux_sym__val_number_token5] = ACTIONS(2417), + [aux_sym__val_number_token6] = ACTIONS(2417), + [anon_sym_DQUOTE] = ACTIONS(2419), + [sym__str_single_quotes] = ACTIONS(2419), + [sym__str_back_ticks] = ACTIONS(2419), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2419), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2419), + }, + [691] = { + [sym_comment] = STATE(691), + [anon_sym_export] = ACTIONS(2164), + [anon_sym_alias] = ACTIONS(2164), + [anon_sym_let] = ACTIONS(2164), + [anon_sym_let_DASHenv] = ACTIONS(2164), + [anon_sym_mut] = ACTIONS(2164), + [anon_sym_const] = ACTIONS(2164), + [aux_sym_cmd_identifier_token1] = ACTIONS(2164), + [aux_sym_cmd_identifier_token2] = ACTIONS(2166), + [aux_sym_cmd_identifier_token3] = ACTIONS(2166), + [aux_sym_cmd_identifier_token4] = ACTIONS(2166), + [aux_sym_cmd_identifier_token5] = ACTIONS(2166), + [aux_sym_cmd_identifier_token6] = ACTIONS(2166), + [aux_sym_cmd_identifier_token7] = ACTIONS(2166), + [aux_sym_cmd_identifier_token8] = ACTIONS(2164), + [aux_sym_cmd_identifier_token9] = ACTIONS(2164), + [aux_sym_cmd_identifier_token10] = ACTIONS(2166), + [aux_sym_cmd_identifier_token11] = ACTIONS(2166), + [aux_sym_cmd_identifier_token12] = ACTIONS(2164), + [aux_sym_cmd_identifier_token13] = ACTIONS(2164), + [aux_sym_cmd_identifier_token14] = ACTIONS(2164), + [aux_sym_cmd_identifier_token15] = ACTIONS(2164), + [aux_sym_cmd_identifier_token16] = ACTIONS(2166), + [aux_sym_cmd_identifier_token17] = ACTIONS(2166), + [aux_sym_cmd_identifier_token18] = ACTIONS(2166), + [aux_sym_cmd_identifier_token19] = ACTIONS(2166), + [aux_sym_cmd_identifier_token20] = ACTIONS(2166), + [aux_sym_cmd_identifier_token21] = ACTIONS(2166), + [aux_sym_cmd_identifier_token22] = ACTIONS(2166), + [aux_sym_cmd_identifier_token23] = ACTIONS(2166), + [aux_sym_cmd_identifier_token24] = ACTIONS(2166), + [aux_sym_cmd_identifier_token25] = ACTIONS(2166), + [aux_sym_cmd_identifier_token26] = ACTIONS(2166), + [aux_sym_cmd_identifier_token27] = ACTIONS(2166), + [aux_sym_cmd_identifier_token28] = ACTIONS(2166), + [aux_sym_cmd_identifier_token29] = ACTIONS(2166), + [aux_sym_cmd_identifier_token30] = ACTIONS(2166), + [aux_sym_cmd_identifier_token31] = ACTIONS(2166), + [aux_sym_cmd_identifier_token32] = ACTIONS(2166), + [aux_sym_cmd_identifier_token33] = ACTIONS(2166), + [aux_sym_cmd_identifier_token34] = ACTIONS(2164), + [aux_sym_cmd_identifier_token35] = ACTIONS(2166), + [aux_sym_cmd_identifier_token36] = ACTIONS(2166), + [aux_sym_cmd_identifier_token37] = ACTIONS(2166), + [aux_sym_cmd_identifier_token38] = ACTIONS(2164), + [aux_sym_cmd_identifier_token39] = ACTIONS(2166), + [aux_sym_cmd_identifier_token40] = ACTIONS(2166), + [anon_sym_def] = ACTIONS(2164), + [anon_sym_export_DASHenv] = ACTIONS(2164), + [anon_sym_extern] = ACTIONS(2164), + [anon_sym_module] = ACTIONS(2164), + [anon_sym_use] = ACTIONS(2164), + [anon_sym_LPAREN] = ACTIONS(2166), + [anon_sym_COMMA] = ACTIONS(2166), + [anon_sym_DOLLAR] = ACTIONS(2166), + [anon_sym_error] = ACTIONS(2164), + [anon_sym_DASH2] = ACTIONS(2164), + [anon_sym_break] = ACTIONS(2164), + [anon_sym_continue] = ACTIONS(2164), + [anon_sym_for] = ACTIONS(2164), + [anon_sym_in2] = ACTIONS(2164), + [anon_sym_loop] = ACTIONS(2164), + [anon_sym_make] = ACTIONS(2164), + [anon_sym_while] = ACTIONS(2164), + [anon_sym_do] = ACTIONS(2164), + [anon_sym_if] = ACTIONS(2164), + [anon_sym_else] = ACTIONS(2164), + [anon_sym_match] = ACTIONS(2164), + [anon_sym_RBRACE] = ACTIONS(2166), + [anon_sym_try] = ACTIONS(2164), + [anon_sym_catch] = ACTIONS(2164), + [anon_sym_return] = ACTIONS(2164), + [anon_sym_source] = ACTIONS(2164), + [anon_sym_source_DASHenv] = ACTIONS(2164), + [anon_sym_register] = ACTIONS(2164), + [anon_sym_hide] = ACTIONS(2164), + [anon_sym_hide_DASHenv] = ACTIONS(2164), + [anon_sym_overlay] = ACTIONS(2164), + [anon_sym_as] = ACTIONS(2164), + [anon_sym_PLUS2] = ACTIONS(2164), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2166), + [aux_sym__val_number_decimal_token1] = ACTIONS(2164), + [aux_sym__val_number_decimal_token2] = ACTIONS(2166), + [aux_sym__val_number_decimal_token3] = ACTIONS(2166), + [aux_sym__val_number_decimal_token4] = ACTIONS(2166), + [aux_sym__val_number_token1] = ACTIONS(2166), + [aux_sym__val_number_token2] = ACTIONS(2166), + [aux_sym__val_number_token3] = ACTIONS(2166), + [aux_sym__val_number_token4] = ACTIONS(2164), + [aux_sym__val_number_token5] = ACTIONS(2164), + [aux_sym__val_number_token6] = ACTIONS(2164), + [anon_sym_DQUOTE] = ACTIONS(2166), + [sym__str_single_quotes] = ACTIONS(2166), + [sym__str_back_ticks] = ACTIONS(2166), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2166), + }, + [692] = { + [sym_comment] = STATE(692), + [anon_sym_export] = ACTIONS(1731), + [anon_sym_alias] = ACTIONS(1731), + [anon_sym_let] = ACTIONS(1731), + [anon_sym_let_DASHenv] = ACTIONS(1731), + [anon_sym_mut] = ACTIONS(1731), + [anon_sym_const] = ACTIONS(1731), + [aux_sym_cmd_identifier_token1] = ACTIONS(1731), + [aux_sym_cmd_identifier_token2] = ACTIONS(1733), + [aux_sym_cmd_identifier_token3] = ACTIONS(1733), + [aux_sym_cmd_identifier_token4] = ACTIONS(1733), + [aux_sym_cmd_identifier_token5] = ACTIONS(1733), + [aux_sym_cmd_identifier_token6] = ACTIONS(1733), + [aux_sym_cmd_identifier_token7] = ACTIONS(1733), + [aux_sym_cmd_identifier_token8] = ACTIONS(1731), + [aux_sym_cmd_identifier_token9] = ACTIONS(1731), + [aux_sym_cmd_identifier_token10] = ACTIONS(1733), + [aux_sym_cmd_identifier_token11] = ACTIONS(1733), + [aux_sym_cmd_identifier_token12] = ACTIONS(1731), + [aux_sym_cmd_identifier_token13] = ACTIONS(1731), + [aux_sym_cmd_identifier_token14] = ACTIONS(1731), + [aux_sym_cmd_identifier_token15] = ACTIONS(1731), + [aux_sym_cmd_identifier_token16] = ACTIONS(1733), + [aux_sym_cmd_identifier_token17] = ACTIONS(1733), + [aux_sym_cmd_identifier_token18] = ACTIONS(1733), + [aux_sym_cmd_identifier_token19] = ACTIONS(1733), + [aux_sym_cmd_identifier_token20] = ACTIONS(1733), + [aux_sym_cmd_identifier_token21] = ACTIONS(1733), + [aux_sym_cmd_identifier_token22] = ACTIONS(1733), + [aux_sym_cmd_identifier_token23] = ACTIONS(1733), + [aux_sym_cmd_identifier_token24] = ACTIONS(1733), + [aux_sym_cmd_identifier_token25] = ACTIONS(1733), + [aux_sym_cmd_identifier_token26] = ACTIONS(1733), + [aux_sym_cmd_identifier_token27] = ACTIONS(1733), + [aux_sym_cmd_identifier_token28] = ACTIONS(1733), + [aux_sym_cmd_identifier_token29] = ACTIONS(1733), + [aux_sym_cmd_identifier_token30] = ACTIONS(1733), + [aux_sym_cmd_identifier_token31] = ACTIONS(1733), + [aux_sym_cmd_identifier_token32] = ACTIONS(1733), + [aux_sym_cmd_identifier_token33] = ACTIONS(1733), + [aux_sym_cmd_identifier_token34] = ACTIONS(1731), + [aux_sym_cmd_identifier_token35] = ACTIONS(1733), + [aux_sym_cmd_identifier_token36] = ACTIONS(1733), + [aux_sym_cmd_identifier_token37] = ACTIONS(1733), + [aux_sym_cmd_identifier_token38] = ACTIONS(1731), + [aux_sym_cmd_identifier_token39] = ACTIONS(1733), + [aux_sym_cmd_identifier_token40] = ACTIONS(1733), + [anon_sym_def] = ACTIONS(1731), + [anon_sym_export_DASHenv] = ACTIONS(1731), + [anon_sym_extern] = ACTIONS(1731), + [anon_sym_module] = ACTIONS(1731), + [anon_sym_use] = ACTIONS(1731), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_COMMA] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1733), + [anon_sym_error] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_break] = ACTIONS(1731), + [anon_sym_continue] = ACTIONS(1731), + [anon_sym_for] = ACTIONS(1731), + [anon_sym_in2] = ACTIONS(1731), + [anon_sym_loop] = ACTIONS(1731), + [anon_sym_make] = ACTIONS(1731), + [anon_sym_while] = ACTIONS(1731), + [anon_sym_do] = ACTIONS(1731), + [anon_sym_if] = ACTIONS(1731), + [anon_sym_else] = ACTIONS(1731), + [anon_sym_match] = ACTIONS(1731), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_try] = ACTIONS(1731), + [anon_sym_catch] = ACTIONS(1731), + [anon_sym_return] = ACTIONS(1731), + [anon_sym_source] = ACTIONS(1731), + [anon_sym_source_DASHenv] = ACTIONS(1731), + [anon_sym_register] = ACTIONS(1731), + [anon_sym_hide] = ACTIONS(1731), + [anon_sym_hide_DASHenv] = ACTIONS(1731), + [anon_sym_overlay] = ACTIONS(1731), + [anon_sym_as] = ACTIONS(1731), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1731), + [aux_sym__val_number_token5] = ACTIONS(1731), + [aux_sym__val_number_token6] = ACTIONS(1731), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1733), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [693] = { + [sym_comment] = STATE(693), + [anon_sym_export] = ACTIONS(2035), + [anon_sym_alias] = ACTIONS(2035), + [anon_sym_let] = ACTIONS(2035), + [anon_sym_let_DASHenv] = ACTIONS(2035), + [anon_sym_mut] = ACTIONS(2035), + [anon_sym_const] = ACTIONS(2035), + [aux_sym_cmd_identifier_token1] = ACTIONS(2035), + [aux_sym_cmd_identifier_token2] = ACTIONS(2037), + [aux_sym_cmd_identifier_token3] = ACTIONS(2037), + [aux_sym_cmd_identifier_token4] = ACTIONS(2037), + [aux_sym_cmd_identifier_token5] = ACTIONS(2037), + [aux_sym_cmd_identifier_token6] = ACTIONS(2037), + [aux_sym_cmd_identifier_token7] = ACTIONS(2037), + [aux_sym_cmd_identifier_token8] = ACTIONS(2035), + [aux_sym_cmd_identifier_token9] = ACTIONS(2035), + [aux_sym_cmd_identifier_token10] = ACTIONS(2037), + [aux_sym_cmd_identifier_token11] = ACTIONS(2037), + [aux_sym_cmd_identifier_token12] = ACTIONS(2035), + [aux_sym_cmd_identifier_token13] = ACTIONS(2035), + [aux_sym_cmd_identifier_token14] = ACTIONS(2035), + [aux_sym_cmd_identifier_token15] = ACTIONS(2035), + [aux_sym_cmd_identifier_token16] = ACTIONS(2037), + [aux_sym_cmd_identifier_token17] = ACTIONS(2037), + [aux_sym_cmd_identifier_token18] = ACTIONS(2037), + [aux_sym_cmd_identifier_token19] = ACTIONS(2037), + [aux_sym_cmd_identifier_token20] = ACTIONS(2037), + [aux_sym_cmd_identifier_token21] = ACTIONS(2037), + [aux_sym_cmd_identifier_token22] = ACTIONS(2037), + [aux_sym_cmd_identifier_token23] = ACTIONS(2037), + [aux_sym_cmd_identifier_token24] = ACTIONS(2037), + [aux_sym_cmd_identifier_token25] = ACTIONS(2037), + [aux_sym_cmd_identifier_token26] = ACTIONS(2037), + [aux_sym_cmd_identifier_token27] = ACTIONS(2037), + [aux_sym_cmd_identifier_token28] = ACTIONS(2037), + [aux_sym_cmd_identifier_token29] = ACTIONS(2037), + [aux_sym_cmd_identifier_token30] = ACTIONS(2037), + [aux_sym_cmd_identifier_token31] = ACTIONS(2037), + [aux_sym_cmd_identifier_token32] = ACTIONS(2037), + [aux_sym_cmd_identifier_token33] = ACTIONS(2037), + [aux_sym_cmd_identifier_token34] = ACTIONS(2035), + [aux_sym_cmd_identifier_token35] = ACTIONS(2037), + [aux_sym_cmd_identifier_token36] = ACTIONS(2037), + [aux_sym_cmd_identifier_token37] = ACTIONS(2037), + [aux_sym_cmd_identifier_token38] = ACTIONS(2035), + [aux_sym_cmd_identifier_token39] = ACTIONS(2037), + [aux_sym_cmd_identifier_token40] = ACTIONS(2037), + [anon_sym_def] = ACTIONS(2035), + [anon_sym_export_DASHenv] = ACTIONS(2035), + [anon_sym_extern] = ACTIONS(2035), + [anon_sym_module] = ACTIONS(2035), + [anon_sym_use] = ACTIONS(2035), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_COMMA] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2037), + [anon_sym_error] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_break] = ACTIONS(2035), + [anon_sym_continue] = ACTIONS(2035), + [anon_sym_for] = ACTIONS(2035), + [anon_sym_in2] = ACTIONS(2035), + [anon_sym_loop] = ACTIONS(2035), + [anon_sym_make] = ACTIONS(2035), + [anon_sym_while] = ACTIONS(2035), + [anon_sym_do] = ACTIONS(2035), + [anon_sym_if] = ACTIONS(2035), + [anon_sym_else] = ACTIONS(2035), + [anon_sym_match] = ACTIONS(2035), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_try] = ACTIONS(2035), + [anon_sym_catch] = ACTIONS(2035), + [anon_sym_return] = ACTIONS(2035), + [anon_sym_source] = ACTIONS(2035), + [anon_sym_source_DASHenv] = ACTIONS(2035), + [anon_sym_register] = ACTIONS(2035), + [anon_sym_hide] = ACTIONS(2035), + [anon_sym_hide_DASHenv] = ACTIONS(2035), + [anon_sym_overlay] = ACTIONS(2035), + [anon_sym_as] = ACTIONS(2035), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2037), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2037), + [aux_sym__val_number_decimal_token3] = ACTIONS(2037), + [aux_sym__val_number_decimal_token4] = ACTIONS(2037), + [aux_sym__val_number_token1] = ACTIONS(2037), + [aux_sym__val_number_token2] = ACTIONS(2037), + [aux_sym__val_number_token3] = ACTIONS(2037), + [aux_sym__val_number_token4] = ACTIONS(2035), + [aux_sym__val_number_token5] = ACTIONS(2035), + [aux_sym__val_number_token6] = ACTIONS(2035), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2037), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2037), + }, + [694] = { + [sym_comment] = STATE(694), + [anon_sym_export] = ACTIONS(1772), + [anon_sym_alias] = ACTIONS(1772), + [anon_sym_let] = ACTIONS(1772), + [anon_sym_let_DASHenv] = ACTIONS(1772), + [anon_sym_mut] = ACTIONS(1772), + [anon_sym_const] = ACTIONS(1772), + [aux_sym_cmd_identifier_token1] = ACTIONS(1772), + [aux_sym_cmd_identifier_token2] = ACTIONS(1774), + [aux_sym_cmd_identifier_token3] = ACTIONS(1774), + [aux_sym_cmd_identifier_token4] = ACTIONS(1774), + [aux_sym_cmd_identifier_token5] = ACTIONS(1774), + [aux_sym_cmd_identifier_token6] = ACTIONS(1774), + [aux_sym_cmd_identifier_token7] = ACTIONS(1774), + [aux_sym_cmd_identifier_token8] = ACTIONS(1772), + [aux_sym_cmd_identifier_token9] = ACTIONS(1772), + [aux_sym_cmd_identifier_token10] = ACTIONS(1774), + [aux_sym_cmd_identifier_token11] = ACTIONS(1774), + [aux_sym_cmd_identifier_token12] = ACTIONS(1772), + [aux_sym_cmd_identifier_token13] = ACTIONS(1772), + [aux_sym_cmd_identifier_token14] = ACTIONS(1772), + [aux_sym_cmd_identifier_token15] = ACTIONS(1772), + [aux_sym_cmd_identifier_token16] = ACTIONS(1774), + [aux_sym_cmd_identifier_token17] = ACTIONS(1774), + [aux_sym_cmd_identifier_token18] = ACTIONS(1774), + [aux_sym_cmd_identifier_token19] = ACTIONS(1774), + [aux_sym_cmd_identifier_token20] = ACTIONS(1774), + [aux_sym_cmd_identifier_token21] = ACTIONS(1774), + [aux_sym_cmd_identifier_token22] = ACTIONS(1774), + [aux_sym_cmd_identifier_token23] = ACTIONS(1774), + [aux_sym_cmd_identifier_token24] = ACTIONS(1774), + [aux_sym_cmd_identifier_token25] = ACTIONS(1774), + [aux_sym_cmd_identifier_token26] = ACTIONS(1774), + [aux_sym_cmd_identifier_token27] = ACTIONS(1774), + [aux_sym_cmd_identifier_token28] = ACTIONS(1774), + [aux_sym_cmd_identifier_token29] = ACTIONS(1774), + [aux_sym_cmd_identifier_token30] = ACTIONS(1774), + [aux_sym_cmd_identifier_token31] = ACTIONS(1774), + [aux_sym_cmd_identifier_token32] = ACTIONS(1774), + [aux_sym_cmd_identifier_token33] = ACTIONS(1774), + [aux_sym_cmd_identifier_token34] = ACTIONS(1772), + [aux_sym_cmd_identifier_token35] = ACTIONS(1774), + [aux_sym_cmd_identifier_token36] = ACTIONS(1774), + [aux_sym_cmd_identifier_token37] = ACTIONS(1774), + [aux_sym_cmd_identifier_token38] = ACTIONS(1772), + [aux_sym_cmd_identifier_token39] = ACTIONS(1774), + [aux_sym_cmd_identifier_token40] = ACTIONS(1774), + [anon_sym_def] = ACTIONS(1772), + [anon_sym_export_DASHenv] = ACTIONS(1772), + [anon_sym_extern] = ACTIONS(1772), + [anon_sym_module] = ACTIONS(1772), + [anon_sym_use] = ACTIONS(1772), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_COMMA] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_error] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_break] = ACTIONS(1772), + [anon_sym_continue] = ACTIONS(1772), + [anon_sym_for] = ACTIONS(1772), + [anon_sym_in2] = ACTIONS(1772), + [anon_sym_loop] = ACTIONS(1772), + [anon_sym_make] = ACTIONS(1772), + [anon_sym_while] = ACTIONS(1772), + [anon_sym_do] = ACTIONS(1772), + [anon_sym_if] = ACTIONS(1772), + [anon_sym_else] = ACTIONS(1772), + [anon_sym_match] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_try] = ACTIONS(1772), + [anon_sym_catch] = ACTIONS(1772), + [anon_sym_return] = ACTIONS(1772), + [anon_sym_source] = ACTIONS(1772), + [anon_sym_source_DASHenv] = ACTIONS(1772), + [anon_sym_register] = ACTIONS(1772), + [anon_sym_hide] = ACTIONS(1772), + [anon_sym_hide_DASHenv] = ACTIONS(1772), + [anon_sym_overlay] = ACTIONS(1772), + [anon_sym_as] = ACTIONS(1772), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1772), + [aux_sym__val_number_token5] = ACTIONS(1772), + [aux_sym__val_number_token6] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1774), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [695] = { + [sym_comment] = STATE(695), + [anon_sym_export] = ACTIONS(1817), + [anon_sym_alias] = ACTIONS(1817), + [anon_sym_let] = ACTIONS(1817), + [anon_sym_let_DASHenv] = ACTIONS(1817), + [anon_sym_mut] = ACTIONS(1817), + [anon_sym_const] = ACTIONS(1817), + [aux_sym_cmd_identifier_token1] = ACTIONS(1817), + [aux_sym_cmd_identifier_token2] = ACTIONS(1819), + [aux_sym_cmd_identifier_token3] = ACTIONS(1819), + [aux_sym_cmd_identifier_token4] = ACTIONS(1819), + [aux_sym_cmd_identifier_token5] = ACTIONS(1819), + [aux_sym_cmd_identifier_token6] = ACTIONS(1819), + [aux_sym_cmd_identifier_token7] = ACTIONS(1819), + [aux_sym_cmd_identifier_token8] = ACTIONS(1817), + [aux_sym_cmd_identifier_token9] = ACTIONS(1817), + [aux_sym_cmd_identifier_token10] = ACTIONS(1819), + [aux_sym_cmd_identifier_token11] = ACTIONS(1819), + [aux_sym_cmd_identifier_token12] = ACTIONS(1817), + [aux_sym_cmd_identifier_token13] = ACTIONS(1817), + [aux_sym_cmd_identifier_token14] = ACTIONS(1817), + [aux_sym_cmd_identifier_token15] = ACTIONS(1817), + [aux_sym_cmd_identifier_token16] = ACTIONS(1819), + [aux_sym_cmd_identifier_token17] = ACTIONS(1819), + [aux_sym_cmd_identifier_token18] = ACTIONS(1819), + [aux_sym_cmd_identifier_token19] = ACTIONS(1819), + [aux_sym_cmd_identifier_token20] = ACTIONS(1819), + [aux_sym_cmd_identifier_token21] = ACTIONS(1819), + [aux_sym_cmd_identifier_token22] = ACTIONS(1819), + [aux_sym_cmd_identifier_token23] = ACTIONS(1819), + [aux_sym_cmd_identifier_token24] = ACTIONS(1819), + [aux_sym_cmd_identifier_token25] = ACTIONS(1819), + [aux_sym_cmd_identifier_token26] = ACTIONS(1819), + [aux_sym_cmd_identifier_token27] = ACTIONS(1819), + [aux_sym_cmd_identifier_token28] = ACTIONS(1819), + [aux_sym_cmd_identifier_token29] = ACTIONS(1819), + [aux_sym_cmd_identifier_token30] = ACTIONS(1819), + [aux_sym_cmd_identifier_token31] = ACTIONS(1819), + [aux_sym_cmd_identifier_token32] = ACTIONS(1819), + [aux_sym_cmd_identifier_token33] = ACTIONS(1819), + [aux_sym_cmd_identifier_token34] = ACTIONS(1817), + [aux_sym_cmd_identifier_token35] = ACTIONS(1819), + [aux_sym_cmd_identifier_token36] = ACTIONS(1819), + [aux_sym_cmd_identifier_token37] = ACTIONS(1819), + [aux_sym_cmd_identifier_token38] = ACTIONS(1817), + [aux_sym_cmd_identifier_token39] = ACTIONS(1819), + [aux_sym_cmd_identifier_token40] = ACTIONS(1819), + [anon_sym_def] = ACTIONS(1817), + [anon_sym_export_DASHenv] = ACTIONS(1817), + [anon_sym_extern] = ACTIONS(1817), + [anon_sym_module] = ACTIONS(1817), + [anon_sym_use] = ACTIONS(1817), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_COMMA] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1819), + [anon_sym_error] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_break] = ACTIONS(1817), + [anon_sym_continue] = ACTIONS(1817), + [anon_sym_for] = ACTIONS(1817), + [anon_sym_in2] = ACTIONS(1817), + [anon_sym_loop] = ACTIONS(1817), + [anon_sym_make] = ACTIONS(1817), + [anon_sym_while] = ACTIONS(1817), + [anon_sym_do] = ACTIONS(1817), + [anon_sym_if] = ACTIONS(1817), + [anon_sym_else] = ACTIONS(1817), + [anon_sym_match] = ACTIONS(1817), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_try] = ACTIONS(1817), + [anon_sym_catch] = ACTIONS(1817), + [anon_sym_return] = ACTIONS(1817), + [anon_sym_source] = ACTIONS(1817), + [anon_sym_source_DASHenv] = ACTIONS(1817), + [anon_sym_register] = ACTIONS(1817), + [anon_sym_hide] = ACTIONS(1817), + [anon_sym_hide_DASHenv] = ACTIONS(1817), + [anon_sym_overlay] = ACTIONS(1817), + [anon_sym_as] = ACTIONS(1817), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1817), + [aux_sym__val_number_token5] = ACTIONS(1817), + [aux_sym__val_number_token6] = ACTIONS(1817), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1819), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [696] = { + [sym_comment] = STATE(696), + [anon_sym_export] = ACTIONS(2334), + [anon_sym_alias] = ACTIONS(2334), + [anon_sym_let] = ACTIONS(2334), + [anon_sym_let_DASHenv] = ACTIONS(2334), + [anon_sym_mut] = ACTIONS(2334), + [anon_sym_const] = ACTIONS(2334), + [aux_sym_cmd_identifier_token1] = ACTIONS(2334), + [aux_sym_cmd_identifier_token2] = ACTIONS(2336), + [aux_sym_cmd_identifier_token3] = ACTIONS(2336), + [aux_sym_cmd_identifier_token4] = ACTIONS(2336), + [aux_sym_cmd_identifier_token5] = ACTIONS(2336), + [aux_sym_cmd_identifier_token6] = ACTIONS(2336), + [aux_sym_cmd_identifier_token7] = ACTIONS(2336), + [aux_sym_cmd_identifier_token8] = ACTIONS(2334), + [aux_sym_cmd_identifier_token9] = ACTIONS(2334), + [aux_sym_cmd_identifier_token10] = ACTIONS(2336), + [aux_sym_cmd_identifier_token11] = ACTIONS(2336), + [aux_sym_cmd_identifier_token12] = ACTIONS(2334), + [aux_sym_cmd_identifier_token13] = ACTIONS(2334), + [aux_sym_cmd_identifier_token14] = ACTIONS(2334), + [aux_sym_cmd_identifier_token15] = ACTIONS(2334), + [aux_sym_cmd_identifier_token16] = ACTIONS(2336), + [aux_sym_cmd_identifier_token17] = ACTIONS(2336), + [aux_sym_cmd_identifier_token18] = ACTIONS(2336), + [aux_sym_cmd_identifier_token19] = ACTIONS(2336), + [aux_sym_cmd_identifier_token20] = ACTIONS(2336), + [aux_sym_cmd_identifier_token21] = ACTIONS(2336), + [aux_sym_cmd_identifier_token22] = ACTIONS(2336), + [aux_sym_cmd_identifier_token23] = ACTIONS(2336), + [aux_sym_cmd_identifier_token24] = ACTIONS(2336), + [aux_sym_cmd_identifier_token25] = ACTIONS(2336), + [aux_sym_cmd_identifier_token26] = ACTIONS(2336), + [aux_sym_cmd_identifier_token27] = ACTIONS(2336), + [aux_sym_cmd_identifier_token28] = ACTIONS(2336), + [aux_sym_cmd_identifier_token29] = ACTIONS(2336), + [aux_sym_cmd_identifier_token30] = ACTIONS(2336), + [aux_sym_cmd_identifier_token31] = ACTIONS(2336), + [aux_sym_cmd_identifier_token32] = ACTIONS(2336), + [aux_sym_cmd_identifier_token33] = ACTIONS(2336), + [aux_sym_cmd_identifier_token34] = ACTIONS(2334), + [aux_sym_cmd_identifier_token35] = ACTIONS(2336), + [aux_sym_cmd_identifier_token36] = ACTIONS(2336), + [aux_sym_cmd_identifier_token37] = ACTIONS(2336), + [aux_sym_cmd_identifier_token38] = ACTIONS(2334), + [aux_sym_cmd_identifier_token39] = ACTIONS(2336), + [aux_sym_cmd_identifier_token40] = ACTIONS(2336), + [anon_sym_def] = ACTIONS(2334), + [anon_sym_export_DASHenv] = ACTIONS(2334), + [anon_sym_extern] = ACTIONS(2334), + [anon_sym_module] = ACTIONS(2334), + [anon_sym_use] = ACTIONS(2334), + [anon_sym_LPAREN] = ACTIONS(2336), + [anon_sym_COMMA] = ACTIONS(2336), + [anon_sym_DOLLAR] = ACTIONS(2336), + [anon_sym_error] = ACTIONS(2334), + [anon_sym_DASH2] = ACTIONS(2334), + [anon_sym_break] = ACTIONS(2334), + [anon_sym_continue] = ACTIONS(2334), + [anon_sym_for] = ACTIONS(2334), + [anon_sym_in2] = ACTIONS(2334), + [anon_sym_loop] = ACTIONS(2334), + [anon_sym_make] = ACTIONS(2334), + [anon_sym_while] = ACTIONS(2334), + [anon_sym_do] = ACTIONS(2334), + [anon_sym_if] = ACTIONS(2334), + [anon_sym_else] = ACTIONS(2334), + [anon_sym_match] = ACTIONS(2334), + [anon_sym_RBRACE] = ACTIONS(2336), + [anon_sym_try] = ACTIONS(2334), + [anon_sym_catch] = ACTIONS(2334), + [anon_sym_return] = ACTIONS(2334), + [anon_sym_source] = ACTIONS(2334), + [anon_sym_source_DASHenv] = ACTIONS(2334), + [anon_sym_register] = ACTIONS(2334), + [anon_sym_hide] = ACTIONS(2334), + [anon_sym_hide_DASHenv] = ACTIONS(2334), + [anon_sym_overlay] = ACTIONS(2334), + [anon_sym_as] = ACTIONS(2334), + [anon_sym_PLUS2] = ACTIONS(2334), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2336), + [aux_sym__val_number_decimal_token1] = ACTIONS(2334), + [aux_sym__val_number_decimal_token2] = ACTIONS(2336), + [aux_sym__val_number_decimal_token3] = ACTIONS(2336), + [aux_sym__val_number_decimal_token4] = ACTIONS(2336), + [aux_sym__val_number_token1] = ACTIONS(2336), + [aux_sym__val_number_token2] = ACTIONS(2336), + [aux_sym__val_number_token3] = ACTIONS(2336), + [aux_sym__val_number_token4] = ACTIONS(2334), + [aux_sym__val_number_token5] = ACTIONS(2334), + [aux_sym__val_number_token6] = ACTIONS(2334), + [anon_sym_DQUOTE] = ACTIONS(2336), + [sym__str_single_quotes] = ACTIONS(2336), + [sym__str_back_ticks] = ACTIONS(2336), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2336), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2336), + }, + [697] = { + [sym_comment] = STATE(697), + [anon_sym_export] = ACTIONS(2039), + [anon_sym_alias] = ACTIONS(2039), + [anon_sym_let] = ACTIONS(2039), + [anon_sym_let_DASHenv] = ACTIONS(2039), + [anon_sym_mut] = ACTIONS(2039), + [anon_sym_const] = ACTIONS(2039), + [aux_sym_cmd_identifier_token1] = ACTIONS(2039), + [aux_sym_cmd_identifier_token2] = ACTIONS(2041), + [aux_sym_cmd_identifier_token3] = ACTIONS(2041), + [aux_sym_cmd_identifier_token4] = ACTIONS(2041), + [aux_sym_cmd_identifier_token5] = ACTIONS(2041), + [aux_sym_cmd_identifier_token6] = ACTIONS(2041), + [aux_sym_cmd_identifier_token7] = ACTIONS(2041), + [aux_sym_cmd_identifier_token8] = ACTIONS(2039), + [aux_sym_cmd_identifier_token9] = ACTIONS(2039), + [aux_sym_cmd_identifier_token10] = ACTIONS(2041), + [aux_sym_cmd_identifier_token11] = ACTIONS(2041), + [aux_sym_cmd_identifier_token12] = ACTIONS(2039), + [aux_sym_cmd_identifier_token13] = ACTIONS(2039), + [aux_sym_cmd_identifier_token14] = ACTIONS(2039), + [aux_sym_cmd_identifier_token15] = ACTIONS(2039), + [aux_sym_cmd_identifier_token16] = ACTIONS(2041), + [aux_sym_cmd_identifier_token17] = ACTIONS(2041), + [aux_sym_cmd_identifier_token18] = ACTIONS(2041), + [aux_sym_cmd_identifier_token19] = ACTIONS(2041), + [aux_sym_cmd_identifier_token20] = ACTIONS(2041), + [aux_sym_cmd_identifier_token21] = ACTIONS(2041), + [aux_sym_cmd_identifier_token22] = ACTIONS(2041), + [aux_sym_cmd_identifier_token23] = ACTIONS(2041), + [aux_sym_cmd_identifier_token24] = ACTIONS(2041), + [aux_sym_cmd_identifier_token25] = ACTIONS(2041), + [aux_sym_cmd_identifier_token26] = ACTIONS(2041), + [aux_sym_cmd_identifier_token27] = ACTIONS(2041), + [aux_sym_cmd_identifier_token28] = ACTIONS(2041), + [aux_sym_cmd_identifier_token29] = ACTIONS(2041), + [aux_sym_cmd_identifier_token30] = ACTIONS(2041), + [aux_sym_cmd_identifier_token31] = ACTIONS(2041), + [aux_sym_cmd_identifier_token32] = ACTIONS(2041), + [aux_sym_cmd_identifier_token33] = ACTIONS(2041), + [aux_sym_cmd_identifier_token34] = ACTIONS(2039), + [aux_sym_cmd_identifier_token35] = ACTIONS(2041), + [aux_sym_cmd_identifier_token36] = ACTIONS(2041), + [aux_sym_cmd_identifier_token37] = ACTIONS(2041), + [aux_sym_cmd_identifier_token38] = ACTIONS(2039), + [aux_sym_cmd_identifier_token39] = ACTIONS(2041), + [aux_sym_cmd_identifier_token40] = ACTIONS(2041), + [anon_sym_def] = ACTIONS(2039), + [anon_sym_export_DASHenv] = ACTIONS(2039), + [anon_sym_extern] = ACTIONS(2039), + [anon_sym_module] = ACTIONS(2039), + [anon_sym_use] = ACTIONS(2039), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_COMMA] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2041), + [anon_sym_error] = ACTIONS(2039), + [anon_sym_DASH2] = ACTIONS(2039), + [anon_sym_break] = ACTIONS(2039), + [anon_sym_continue] = ACTIONS(2039), + [anon_sym_for] = ACTIONS(2039), + [anon_sym_in2] = ACTIONS(2039), + [anon_sym_loop] = ACTIONS(2039), + [anon_sym_make] = ACTIONS(2039), + [anon_sym_while] = ACTIONS(2039), + [anon_sym_do] = ACTIONS(2039), + [anon_sym_if] = ACTIONS(2039), + [anon_sym_else] = ACTIONS(2039), + [anon_sym_match] = ACTIONS(2039), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_try] = ACTIONS(2039), + [anon_sym_catch] = ACTIONS(2039), + [anon_sym_return] = ACTIONS(2039), + [anon_sym_source] = ACTIONS(2039), + [anon_sym_source_DASHenv] = ACTIONS(2039), + [anon_sym_register] = ACTIONS(2039), + [anon_sym_hide] = ACTIONS(2039), + [anon_sym_hide_DASHenv] = ACTIONS(2039), + [anon_sym_overlay] = ACTIONS(2039), + [anon_sym_as] = ACTIONS(2039), + [anon_sym_PLUS2] = ACTIONS(2039), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2039), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [aux_sym__val_number_token4] = ACTIONS(2039), + [aux_sym__val_number_token5] = ACTIONS(2039), + [aux_sym__val_number_token6] = ACTIONS(2039), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2041), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2041), + }, + [698] = { + [sym_comment] = STATE(698), + [anon_sym_export] = ACTIONS(2461), + [anon_sym_alias] = ACTIONS(2461), + [anon_sym_let] = ACTIONS(2461), + [anon_sym_let_DASHenv] = ACTIONS(2461), + [anon_sym_mut] = ACTIONS(2461), + [anon_sym_const] = ACTIONS(2461), + [aux_sym_cmd_identifier_token1] = ACTIONS(2461), + [aux_sym_cmd_identifier_token2] = ACTIONS(2463), + [aux_sym_cmd_identifier_token3] = ACTIONS(2463), + [aux_sym_cmd_identifier_token4] = ACTIONS(2463), + [aux_sym_cmd_identifier_token5] = ACTIONS(2463), + [aux_sym_cmd_identifier_token6] = ACTIONS(2463), + [aux_sym_cmd_identifier_token7] = ACTIONS(2463), + [aux_sym_cmd_identifier_token8] = ACTIONS(2461), + [aux_sym_cmd_identifier_token9] = ACTIONS(2461), + [aux_sym_cmd_identifier_token10] = ACTIONS(2463), + [aux_sym_cmd_identifier_token11] = ACTIONS(2463), + [aux_sym_cmd_identifier_token12] = ACTIONS(2461), + [aux_sym_cmd_identifier_token13] = ACTIONS(2461), + [aux_sym_cmd_identifier_token14] = ACTIONS(2461), + [aux_sym_cmd_identifier_token15] = ACTIONS(2461), + [aux_sym_cmd_identifier_token16] = ACTIONS(2463), + [aux_sym_cmd_identifier_token17] = ACTIONS(2463), + [aux_sym_cmd_identifier_token18] = ACTIONS(2463), + [aux_sym_cmd_identifier_token19] = ACTIONS(2463), + [aux_sym_cmd_identifier_token20] = ACTIONS(2463), + [aux_sym_cmd_identifier_token21] = ACTIONS(2463), + [aux_sym_cmd_identifier_token22] = ACTIONS(2463), + [aux_sym_cmd_identifier_token23] = ACTIONS(2463), + [aux_sym_cmd_identifier_token24] = ACTIONS(2463), + [aux_sym_cmd_identifier_token25] = ACTIONS(2463), + [aux_sym_cmd_identifier_token26] = ACTIONS(2463), + [aux_sym_cmd_identifier_token27] = ACTIONS(2463), + [aux_sym_cmd_identifier_token28] = ACTIONS(2463), + [aux_sym_cmd_identifier_token29] = ACTIONS(2463), + [aux_sym_cmd_identifier_token30] = ACTIONS(2463), + [aux_sym_cmd_identifier_token31] = ACTIONS(2463), + [aux_sym_cmd_identifier_token32] = ACTIONS(2463), + [aux_sym_cmd_identifier_token33] = ACTIONS(2463), + [aux_sym_cmd_identifier_token34] = ACTIONS(2461), + [aux_sym_cmd_identifier_token35] = ACTIONS(2463), + [aux_sym_cmd_identifier_token36] = ACTIONS(2463), + [aux_sym_cmd_identifier_token37] = ACTIONS(2463), + [aux_sym_cmd_identifier_token38] = ACTIONS(2461), + [aux_sym_cmd_identifier_token39] = ACTIONS(2463), + [aux_sym_cmd_identifier_token40] = ACTIONS(2463), + [anon_sym_def] = ACTIONS(2461), + [anon_sym_export_DASHenv] = ACTIONS(2461), + [anon_sym_extern] = ACTIONS(2461), + [anon_sym_module] = ACTIONS(2461), + [anon_sym_use] = ACTIONS(2461), + [anon_sym_LPAREN] = ACTIONS(2463), + [anon_sym_COMMA] = ACTIONS(2463), + [anon_sym_DOLLAR] = ACTIONS(2463), + [anon_sym_error] = ACTIONS(2461), + [anon_sym_DASH2] = ACTIONS(2461), + [anon_sym_break] = ACTIONS(2461), + [anon_sym_continue] = ACTIONS(2461), + [anon_sym_for] = ACTIONS(2461), + [anon_sym_in2] = ACTIONS(2461), + [anon_sym_loop] = ACTIONS(2461), + [anon_sym_make] = ACTIONS(2461), + [anon_sym_while] = ACTIONS(2461), + [anon_sym_do] = ACTIONS(2461), + [anon_sym_if] = ACTIONS(2461), + [anon_sym_else] = ACTIONS(2461), + [anon_sym_match] = ACTIONS(2461), + [anon_sym_RBRACE] = ACTIONS(2463), + [anon_sym_try] = ACTIONS(2461), + [anon_sym_catch] = ACTIONS(2461), + [anon_sym_return] = ACTIONS(2461), + [anon_sym_source] = ACTIONS(2461), + [anon_sym_source_DASHenv] = ACTIONS(2461), + [anon_sym_register] = ACTIONS(2461), + [anon_sym_hide] = ACTIONS(2461), + [anon_sym_hide_DASHenv] = ACTIONS(2461), + [anon_sym_overlay] = ACTIONS(2461), + [anon_sym_as] = ACTIONS(2461), + [anon_sym_PLUS2] = ACTIONS(2461), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2463), + [aux_sym__val_number_decimal_token1] = ACTIONS(2461), + [aux_sym__val_number_decimal_token2] = ACTIONS(2463), + [aux_sym__val_number_decimal_token3] = ACTIONS(2463), + [aux_sym__val_number_decimal_token4] = ACTIONS(2463), + [aux_sym__val_number_token1] = ACTIONS(2463), + [aux_sym__val_number_token2] = ACTIONS(2463), + [aux_sym__val_number_token3] = ACTIONS(2463), + [aux_sym__val_number_token4] = ACTIONS(2461), + [aux_sym__val_number_token5] = ACTIONS(2461), + [aux_sym__val_number_token6] = ACTIONS(2461), + [anon_sym_DQUOTE] = ACTIONS(2463), + [sym__str_single_quotes] = ACTIONS(2463), + [sym__str_back_ticks] = ACTIONS(2463), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2463), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2463), + }, + [699] = { + [sym_comment] = STATE(699), + [anon_sym_export] = ACTIONS(2028), + [anon_sym_alias] = ACTIONS(2028), + [anon_sym_let] = ACTIONS(2028), + [anon_sym_let_DASHenv] = ACTIONS(2028), + [anon_sym_mut] = ACTIONS(2028), + [anon_sym_const] = ACTIONS(2028), + [aux_sym_cmd_identifier_token1] = ACTIONS(2028), + [aux_sym_cmd_identifier_token2] = ACTIONS(2030), + [aux_sym_cmd_identifier_token3] = ACTIONS(2030), + [aux_sym_cmd_identifier_token4] = ACTIONS(2030), + [aux_sym_cmd_identifier_token5] = ACTIONS(2030), + [aux_sym_cmd_identifier_token6] = ACTIONS(2030), + [aux_sym_cmd_identifier_token7] = ACTIONS(2030), + [aux_sym_cmd_identifier_token8] = ACTIONS(2028), + [aux_sym_cmd_identifier_token9] = ACTIONS(2028), + [aux_sym_cmd_identifier_token10] = ACTIONS(2030), + [aux_sym_cmd_identifier_token11] = ACTIONS(2030), + [aux_sym_cmd_identifier_token12] = ACTIONS(2028), + [aux_sym_cmd_identifier_token13] = ACTIONS(2028), + [aux_sym_cmd_identifier_token14] = ACTIONS(2028), + [aux_sym_cmd_identifier_token15] = ACTIONS(2028), + [aux_sym_cmd_identifier_token16] = ACTIONS(2030), + [aux_sym_cmd_identifier_token17] = ACTIONS(2030), + [aux_sym_cmd_identifier_token18] = ACTIONS(2030), + [aux_sym_cmd_identifier_token19] = ACTIONS(2030), + [aux_sym_cmd_identifier_token20] = ACTIONS(2030), + [aux_sym_cmd_identifier_token21] = ACTIONS(2030), + [aux_sym_cmd_identifier_token22] = ACTIONS(2030), + [aux_sym_cmd_identifier_token23] = ACTIONS(2030), + [aux_sym_cmd_identifier_token24] = ACTIONS(2030), + [aux_sym_cmd_identifier_token25] = ACTIONS(2030), + [aux_sym_cmd_identifier_token26] = ACTIONS(2030), + [aux_sym_cmd_identifier_token27] = ACTIONS(2030), + [aux_sym_cmd_identifier_token28] = ACTIONS(2030), + [aux_sym_cmd_identifier_token29] = ACTIONS(2030), + [aux_sym_cmd_identifier_token30] = ACTIONS(2030), + [aux_sym_cmd_identifier_token31] = ACTIONS(2030), + [aux_sym_cmd_identifier_token32] = ACTIONS(2030), + [aux_sym_cmd_identifier_token33] = ACTIONS(2030), + [aux_sym_cmd_identifier_token34] = ACTIONS(2028), + [aux_sym_cmd_identifier_token35] = ACTIONS(2030), + [aux_sym_cmd_identifier_token36] = ACTIONS(2030), + [aux_sym_cmd_identifier_token37] = ACTIONS(2030), + [aux_sym_cmd_identifier_token38] = ACTIONS(2028), + [aux_sym_cmd_identifier_token39] = ACTIONS(2030), + [aux_sym_cmd_identifier_token40] = ACTIONS(2030), + [anon_sym_def] = ACTIONS(2028), + [anon_sym_export_DASHenv] = ACTIONS(2028), + [anon_sym_extern] = ACTIONS(2028), + [anon_sym_module] = ACTIONS(2028), + [anon_sym_use] = ACTIONS(2028), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_COMMA] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2030), + [anon_sym_error] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_break] = ACTIONS(2028), + [anon_sym_continue] = ACTIONS(2028), + [anon_sym_for] = ACTIONS(2028), + [anon_sym_in2] = ACTIONS(2028), + [anon_sym_loop] = ACTIONS(2028), + [anon_sym_make] = ACTIONS(2028), + [anon_sym_while] = ACTIONS(2028), + [anon_sym_do] = ACTIONS(2028), + [anon_sym_if] = ACTIONS(2028), + [anon_sym_else] = ACTIONS(2028), + [anon_sym_match] = ACTIONS(2028), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_try] = ACTIONS(2028), + [anon_sym_catch] = ACTIONS(2028), + [anon_sym_return] = ACTIONS(2028), + [anon_sym_source] = ACTIONS(2028), + [anon_sym_source_DASHenv] = ACTIONS(2028), + [anon_sym_register] = ACTIONS(2028), + [anon_sym_hide] = ACTIONS(2028), + [anon_sym_hide_DASHenv] = ACTIONS(2028), + [anon_sym_overlay] = ACTIONS(2028), + [anon_sym_as] = ACTIONS(2028), + [anon_sym_PLUS2] = ACTIONS(2028), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2028), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2028), + [aux_sym__val_number_token5] = ACTIONS(2028), + [aux_sym__val_number_token6] = ACTIONS(2028), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2030), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2030), + }, + [700] = { + [sym_comment] = STATE(700), + [anon_sym_export] = ACTIONS(2338), + [anon_sym_alias] = ACTIONS(2338), + [anon_sym_let] = ACTIONS(2338), + [anon_sym_let_DASHenv] = ACTIONS(2338), + [anon_sym_mut] = ACTIONS(2338), + [anon_sym_const] = ACTIONS(2338), + [aux_sym_cmd_identifier_token1] = ACTIONS(2338), + [aux_sym_cmd_identifier_token2] = ACTIONS(2340), + [aux_sym_cmd_identifier_token3] = ACTIONS(2340), + [aux_sym_cmd_identifier_token4] = ACTIONS(2340), + [aux_sym_cmd_identifier_token5] = ACTIONS(2340), + [aux_sym_cmd_identifier_token6] = ACTIONS(2340), + [aux_sym_cmd_identifier_token7] = ACTIONS(2340), + [aux_sym_cmd_identifier_token8] = ACTIONS(2338), + [aux_sym_cmd_identifier_token9] = ACTIONS(2338), + [aux_sym_cmd_identifier_token10] = ACTIONS(2340), + [aux_sym_cmd_identifier_token11] = ACTIONS(2340), + [aux_sym_cmd_identifier_token12] = ACTIONS(2338), + [aux_sym_cmd_identifier_token13] = ACTIONS(2338), + [aux_sym_cmd_identifier_token14] = ACTIONS(2338), + [aux_sym_cmd_identifier_token15] = ACTIONS(2338), + [aux_sym_cmd_identifier_token16] = ACTIONS(2340), + [aux_sym_cmd_identifier_token17] = ACTIONS(2340), + [aux_sym_cmd_identifier_token18] = ACTIONS(2340), + [aux_sym_cmd_identifier_token19] = ACTIONS(2340), + [aux_sym_cmd_identifier_token20] = ACTIONS(2340), + [aux_sym_cmd_identifier_token21] = ACTIONS(2340), + [aux_sym_cmd_identifier_token22] = ACTIONS(2340), + [aux_sym_cmd_identifier_token23] = ACTIONS(2340), + [aux_sym_cmd_identifier_token24] = ACTIONS(2340), + [aux_sym_cmd_identifier_token25] = ACTIONS(2340), + [aux_sym_cmd_identifier_token26] = ACTIONS(2340), + [aux_sym_cmd_identifier_token27] = ACTIONS(2340), + [aux_sym_cmd_identifier_token28] = ACTIONS(2340), + [aux_sym_cmd_identifier_token29] = ACTIONS(2340), + [aux_sym_cmd_identifier_token30] = ACTIONS(2340), + [aux_sym_cmd_identifier_token31] = ACTIONS(2340), + [aux_sym_cmd_identifier_token32] = ACTIONS(2340), + [aux_sym_cmd_identifier_token33] = ACTIONS(2340), + [aux_sym_cmd_identifier_token34] = ACTIONS(2338), + [aux_sym_cmd_identifier_token35] = ACTIONS(2340), + [aux_sym_cmd_identifier_token36] = ACTIONS(2340), + [aux_sym_cmd_identifier_token37] = ACTIONS(2340), + [aux_sym_cmd_identifier_token38] = ACTIONS(2338), + [aux_sym_cmd_identifier_token39] = ACTIONS(2340), + [aux_sym_cmd_identifier_token40] = ACTIONS(2340), + [anon_sym_def] = ACTIONS(2338), + [anon_sym_export_DASHenv] = ACTIONS(2338), + [anon_sym_extern] = ACTIONS(2338), + [anon_sym_module] = ACTIONS(2338), + [anon_sym_use] = ACTIONS(2338), + [anon_sym_LPAREN] = ACTIONS(2340), + [anon_sym_COMMA] = ACTIONS(2340), + [anon_sym_DOLLAR] = ACTIONS(2340), + [anon_sym_error] = ACTIONS(2338), + [anon_sym_DASH2] = ACTIONS(2338), + [anon_sym_break] = ACTIONS(2338), + [anon_sym_continue] = ACTIONS(2338), + [anon_sym_for] = ACTIONS(2338), + [anon_sym_in2] = ACTIONS(2338), + [anon_sym_loop] = ACTIONS(2338), + [anon_sym_make] = ACTIONS(2338), + [anon_sym_while] = ACTIONS(2338), + [anon_sym_do] = ACTIONS(2338), + [anon_sym_if] = ACTIONS(2338), + [anon_sym_else] = ACTIONS(2338), + [anon_sym_match] = ACTIONS(2338), + [anon_sym_RBRACE] = ACTIONS(2340), + [anon_sym_try] = ACTIONS(2338), + [anon_sym_catch] = ACTIONS(2338), + [anon_sym_return] = ACTIONS(2338), + [anon_sym_source] = ACTIONS(2338), + [anon_sym_source_DASHenv] = ACTIONS(2338), + [anon_sym_register] = ACTIONS(2338), + [anon_sym_hide] = ACTIONS(2338), + [anon_sym_hide_DASHenv] = ACTIONS(2338), + [anon_sym_overlay] = ACTIONS(2338), + [anon_sym_as] = ACTIONS(2338), + [anon_sym_PLUS2] = ACTIONS(2338), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2340), + [aux_sym__val_number_decimal_token1] = ACTIONS(2338), + [aux_sym__val_number_decimal_token2] = ACTIONS(2340), + [aux_sym__val_number_decimal_token3] = ACTIONS(2340), + [aux_sym__val_number_decimal_token4] = ACTIONS(2340), + [aux_sym__val_number_token1] = ACTIONS(2340), + [aux_sym__val_number_token2] = ACTIONS(2340), + [aux_sym__val_number_token3] = ACTIONS(2340), + [aux_sym__val_number_token4] = ACTIONS(2338), + [aux_sym__val_number_token5] = ACTIONS(2338), + [aux_sym__val_number_token6] = ACTIONS(2338), + [anon_sym_DQUOTE] = ACTIONS(2340), + [sym__str_single_quotes] = ACTIONS(2340), + [sym__str_back_ticks] = ACTIONS(2340), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2340), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2340), + }, + [701] = { + [sym_comment] = STATE(701), + [aux_sym__multiple_types_repeat1] = STATE(607), + [anon_sym_export] = ACTIONS(2316), + [anon_sym_alias] = ACTIONS(2316), + [anon_sym_let] = ACTIONS(2316), + [anon_sym_let_DASHenv] = ACTIONS(2316), + [anon_sym_mut] = ACTIONS(2316), + [anon_sym_const] = ACTIONS(2316), + [aux_sym_cmd_identifier_token1] = ACTIONS(2316), + [aux_sym_cmd_identifier_token2] = ACTIONS(2316), + [aux_sym_cmd_identifier_token3] = ACTIONS(2316), + [aux_sym_cmd_identifier_token4] = ACTIONS(2316), + [aux_sym_cmd_identifier_token5] = ACTIONS(2316), + [aux_sym_cmd_identifier_token6] = ACTIONS(2316), + [aux_sym_cmd_identifier_token7] = ACTIONS(2316), + [aux_sym_cmd_identifier_token8] = ACTIONS(2316), + [aux_sym_cmd_identifier_token9] = ACTIONS(2316), + [aux_sym_cmd_identifier_token10] = ACTIONS(2316), + [aux_sym_cmd_identifier_token11] = ACTIONS(2316), + [aux_sym_cmd_identifier_token12] = ACTIONS(2316), + [aux_sym_cmd_identifier_token13] = ACTIONS(2316), + [aux_sym_cmd_identifier_token14] = ACTIONS(2316), + [aux_sym_cmd_identifier_token15] = ACTIONS(2316), + [aux_sym_cmd_identifier_token16] = ACTIONS(2316), + [aux_sym_cmd_identifier_token17] = ACTIONS(2316), + [aux_sym_cmd_identifier_token18] = ACTIONS(2316), + [aux_sym_cmd_identifier_token19] = ACTIONS(2316), + [aux_sym_cmd_identifier_token20] = ACTIONS(2316), + [aux_sym_cmd_identifier_token21] = ACTIONS(2316), + [aux_sym_cmd_identifier_token22] = ACTIONS(2316), + [aux_sym_cmd_identifier_token23] = ACTIONS(2316), + [aux_sym_cmd_identifier_token24] = ACTIONS(2316), + [aux_sym_cmd_identifier_token25] = ACTIONS(2316), + [aux_sym_cmd_identifier_token26] = ACTIONS(2316), + [aux_sym_cmd_identifier_token27] = ACTIONS(2316), + [aux_sym_cmd_identifier_token28] = ACTIONS(2316), + [aux_sym_cmd_identifier_token29] = ACTIONS(2316), + [aux_sym_cmd_identifier_token30] = ACTIONS(2316), + [aux_sym_cmd_identifier_token31] = ACTIONS(2316), + [aux_sym_cmd_identifier_token32] = ACTIONS(2316), + [aux_sym_cmd_identifier_token33] = ACTIONS(2316), + [aux_sym_cmd_identifier_token34] = ACTIONS(2316), + [aux_sym_cmd_identifier_token35] = ACTIONS(2316), + [aux_sym_cmd_identifier_token36] = ACTIONS(2316), + [aux_sym_cmd_identifier_token37] = ACTIONS(2316), + [aux_sym_cmd_identifier_token38] = ACTIONS(2316), + [aux_sym_cmd_identifier_token39] = ACTIONS(2316), + [aux_sym_cmd_identifier_token40] = ACTIONS(2316), + [anon_sym_def] = ACTIONS(2316), + [anon_sym_export_DASHenv] = ACTIONS(2316), + [anon_sym_extern] = ACTIONS(2316), + [anon_sym_module] = ACTIONS(2316), + [anon_sym_use] = ACTIONS(2316), + [anon_sym_LPAREN] = ACTIONS(2316), + [anon_sym_DOLLAR] = ACTIONS(2316), + [anon_sym_error] = ACTIONS(2316), + [anon_sym_DASH2] = ACTIONS(2316), + [anon_sym_break] = ACTIONS(2316), + [anon_sym_continue] = ACTIONS(2316), + [anon_sym_for] = ACTIONS(2316), + [anon_sym_in2] = ACTIONS(2316), + [anon_sym_loop] = ACTIONS(2316), + [anon_sym_make] = ACTIONS(2316), + [anon_sym_while] = ACTIONS(2316), + [anon_sym_do] = ACTIONS(2316), + [anon_sym_if] = ACTIONS(2316), + [anon_sym_else] = ACTIONS(2316), + [anon_sym_match] = ACTIONS(2316), + [anon_sym_try] = ACTIONS(2316), + [anon_sym_catch] = ACTIONS(2316), + [anon_sym_return] = ACTIONS(2316), + [anon_sym_source] = ACTIONS(2316), + [anon_sym_source_DASHenv] = ACTIONS(2316), + [anon_sym_register] = ACTIONS(2316), + [anon_sym_hide] = ACTIONS(2316), + [anon_sym_hide_DASHenv] = ACTIONS(2316), + [anon_sym_overlay] = ACTIONS(2316), + [anon_sym_as] = ACTIONS(2316), + [anon_sym_PLUS2] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2316), + [aux_sym__val_number_decimal_token1] = ACTIONS(2316), + [aux_sym__val_number_decimal_token2] = ACTIONS(2316), + [aux_sym__val_number_decimal_token3] = ACTIONS(2316), + [aux_sym__val_number_decimal_token4] = ACTIONS(2316), + [aux_sym__val_number_token1] = ACTIONS(2316), + [aux_sym__val_number_token2] = ACTIONS(2316), + [aux_sym__val_number_token3] = ACTIONS(2316), + [aux_sym__val_number_token4] = ACTIONS(2316), + [aux_sym__val_number_token5] = ACTIONS(2316), + [aux_sym__val_number_token6] = ACTIONS(2316), + [anon_sym_DQUOTE] = ACTIONS(2316), + [sym__str_single_quotes] = ACTIONS(2316), + [sym__str_back_ticks] = ACTIONS(2316), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2316), + [sym__entry_separator] = ACTIONS(2278), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2320), + }, + [702] = { + [sym_comment] = STATE(702), + [anon_sym_export] = ACTIONS(1968), + [anon_sym_alias] = ACTIONS(1968), + [anon_sym_let] = ACTIONS(1968), + [anon_sym_let_DASHenv] = ACTIONS(1968), + [anon_sym_mut] = ACTIONS(1968), + [anon_sym_const] = ACTIONS(1968), + [aux_sym_cmd_identifier_token1] = ACTIONS(1968), + [aux_sym_cmd_identifier_token2] = ACTIONS(1970), + [aux_sym_cmd_identifier_token3] = ACTIONS(1970), + [aux_sym_cmd_identifier_token4] = ACTIONS(1970), + [aux_sym_cmd_identifier_token5] = ACTIONS(1970), + [aux_sym_cmd_identifier_token6] = ACTIONS(1970), + [aux_sym_cmd_identifier_token7] = ACTIONS(1970), + [aux_sym_cmd_identifier_token8] = ACTIONS(1968), + [aux_sym_cmd_identifier_token9] = ACTIONS(1968), + [aux_sym_cmd_identifier_token10] = ACTIONS(1970), + [aux_sym_cmd_identifier_token11] = ACTIONS(1970), + [aux_sym_cmd_identifier_token12] = ACTIONS(1968), + [aux_sym_cmd_identifier_token13] = ACTIONS(1968), + [aux_sym_cmd_identifier_token14] = ACTIONS(1968), + [aux_sym_cmd_identifier_token15] = ACTIONS(1968), + [aux_sym_cmd_identifier_token16] = ACTIONS(1970), + [aux_sym_cmd_identifier_token17] = ACTIONS(1970), + [aux_sym_cmd_identifier_token18] = ACTIONS(1970), + [aux_sym_cmd_identifier_token19] = ACTIONS(1970), + [aux_sym_cmd_identifier_token20] = ACTIONS(1970), + [aux_sym_cmd_identifier_token21] = ACTIONS(1970), + [aux_sym_cmd_identifier_token22] = ACTIONS(1970), + [aux_sym_cmd_identifier_token23] = ACTIONS(1970), + [aux_sym_cmd_identifier_token24] = ACTIONS(1970), + [aux_sym_cmd_identifier_token25] = ACTIONS(1970), + [aux_sym_cmd_identifier_token26] = ACTIONS(1970), + [aux_sym_cmd_identifier_token27] = ACTIONS(1970), + [aux_sym_cmd_identifier_token28] = ACTIONS(1970), + [aux_sym_cmd_identifier_token29] = ACTIONS(1970), + [aux_sym_cmd_identifier_token30] = ACTIONS(1970), + [aux_sym_cmd_identifier_token31] = ACTIONS(1970), + [aux_sym_cmd_identifier_token32] = ACTIONS(1970), + [aux_sym_cmd_identifier_token33] = ACTIONS(1970), + [aux_sym_cmd_identifier_token34] = ACTIONS(1968), + [aux_sym_cmd_identifier_token35] = ACTIONS(1970), + [aux_sym_cmd_identifier_token36] = ACTIONS(1970), + [aux_sym_cmd_identifier_token37] = ACTIONS(1970), + [aux_sym_cmd_identifier_token38] = ACTIONS(1968), + [aux_sym_cmd_identifier_token39] = ACTIONS(1970), + [aux_sym_cmd_identifier_token40] = ACTIONS(1970), + [anon_sym_def] = ACTIONS(1968), + [anon_sym_export_DASHenv] = ACTIONS(1968), + [anon_sym_extern] = ACTIONS(1968), + [anon_sym_module] = ACTIONS(1968), + [anon_sym_use] = ACTIONS(1968), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_COMMA] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1970), + [anon_sym_error] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_break] = ACTIONS(1968), + [anon_sym_continue] = ACTIONS(1968), + [anon_sym_for] = ACTIONS(1968), + [anon_sym_in2] = ACTIONS(1968), + [anon_sym_loop] = ACTIONS(1968), + [anon_sym_make] = ACTIONS(1968), + [anon_sym_while] = ACTIONS(1968), + [anon_sym_do] = ACTIONS(1968), + [anon_sym_if] = ACTIONS(1968), + [anon_sym_else] = ACTIONS(1968), + [anon_sym_match] = ACTIONS(1968), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_try] = ACTIONS(1968), + [anon_sym_catch] = ACTIONS(1968), + [anon_sym_return] = ACTIONS(1968), + [anon_sym_source] = ACTIONS(1968), + [anon_sym_source_DASHenv] = ACTIONS(1968), + [anon_sym_register] = ACTIONS(1968), + [anon_sym_hide] = ACTIONS(1968), + [anon_sym_hide_DASHenv] = ACTIONS(1968), + [anon_sym_overlay] = ACTIONS(1968), + [anon_sym_as] = ACTIONS(1968), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1968), + [aux_sym__val_number_token5] = ACTIONS(1968), + [aux_sym__val_number_token6] = ACTIONS(1968), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1970), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [703] = { + [sym_comment] = STATE(703), + [anon_sym_export] = ACTIONS(2389), + [anon_sym_alias] = ACTIONS(2389), + [anon_sym_let] = ACTIONS(2389), + [anon_sym_let_DASHenv] = ACTIONS(2389), + [anon_sym_mut] = ACTIONS(2389), + [anon_sym_const] = ACTIONS(2389), + [aux_sym_cmd_identifier_token1] = ACTIONS(2389), + [aux_sym_cmd_identifier_token2] = ACTIONS(2391), + [aux_sym_cmd_identifier_token3] = ACTIONS(2391), + [aux_sym_cmd_identifier_token4] = ACTIONS(2391), + [aux_sym_cmd_identifier_token5] = ACTIONS(2391), + [aux_sym_cmd_identifier_token6] = ACTIONS(2391), + [aux_sym_cmd_identifier_token7] = ACTIONS(2391), + [aux_sym_cmd_identifier_token8] = ACTIONS(2389), + [aux_sym_cmd_identifier_token9] = ACTIONS(2389), + [aux_sym_cmd_identifier_token10] = ACTIONS(2391), + [aux_sym_cmd_identifier_token11] = ACTIONS(2391), + [aux_sym_cmd_identifier_token12] = ACTIONS(2389), + [aux_sym_cmd_identifier_token13] = ACTIONS(2389), + [aux_sym_cmd_identifier_token14] = ACTIONS(2389), + [aux_sym_cmd_identifier_token15] = ACTIONS(2389), + [aux_sym_cmd_identifier_token16] = ACTIONS(2391), + [aux_sym_cmd_identifier_token17] = ACTIONS(2391), + [aux_sym_cmd_identifier_token18] = ACTIONS(2391), + [aux_sym_cmd_identifier_token19] = ACTIONS(2391), + [aux_sym_cmd_identifier_token20] = ACTIONS(2391), + [aux_sym_cmd_identifier_token21] = ACTIONS(2391), + [aux_sym_cmd_identifier_token22] = ACTIONS(2391), + [aux_sym_cmd_identifier_token23] = ACTIONS(2391), + [aux_sym_cmd_identifier_token24] = ACTIONS(2391), + [aux_sym_cmd_identifier_token25] = ACTIONS(2391), + [aux_sym_cmd_identifier_token26] = ACTIONS(2391), + [aux_sym_cmd_identifier_token27] = ACTIONS(2391), + [aux_sym_cmd_identifier_token28] = ACTIONS(2391), + [aux_sym_cmd_identifier_token29] = ACTIONS(2391), + [aux_sym_cmd_identifier_token30] = ACTIONS(2391), + [aux_sym_cmd_identifier_token31] = ACTIONS(2391), + [aux_sym_cmd_identifier_token32] = ACTIONS(2391), + [aux_sym_cmd_identifier_token33] = ACTIONS(2391), + [aux_sym_cmd_identifier_token34] = ACTIONS(2389), + [aux_sym_cmd_identifier_token35] = ACTIONS(2391), + [aux_sym_cmd_identifier_token36] = ACTIONS(2391), + [aux_sym_cmd_identifier_token37] = ACTIONS(2391), + [aux_sym_cmd_identifier_token38] = ACTIONS(2389), + [aux_sym_cmd_identifier_token39] = ACTIONS(2391), + [aux_sym_cmd_identifier_token40] = ACTIONS(2391), + [anon_sym_def] = ACTIONS(2389), + [anon_sym_export_DASHenv] = ACTIONS(2389), + [anon_sym_extern] = ACTIONS(2389), + [anon_sym_module] = ACTIONS(2389), + [anon_sym_use] = ACTIONS(2389), + [anon_sym_LPAREN] = ACTIONS(2391), + [anon_sym_COMMA] = ACTIONS(2391), + [anon_sym_DOLLAR] = ACTIONS(2391), + [anon_sym_error] = ACTIONS(2389), + [anon_sym_DASH2] = ACTIONS(2389), + [anon_sym_break] = ACTIONS(2389), + [anon_sym_continue] = ACTIONS(2389), + [anon_sym_for] = ACTIONS(2389), + [anon_sym_in2] = ACTIONS(2389), + [anon_sym_loop] = ACTIONS(2389), + [anon_sym_make] = ACTIONS(2389), + [anon_sym_while] = ACTIONS(2389), + [anon_sym_do] = ACTIONS(2389), + [anon_sym_if] = ACTIONS(2389), + [anon_sym_else] = ACTIONS(2389), + [anon_sym_match] = ACTIONS(2389), + [anon_sym_RBRACE] = ACTIONS(2391), + [anon_sym_try] = ACTIONS(2389), + [anon_sym_catch] = ACTIONS(2389), + [anon_sym_return] = ACTIONS(2389), + [anon_sym_source] = ACTIONS(2389), + [anon_sym_source_DASHenv] = ACTIONS(2389), + [anon_sym_register] = ACTIONS(2389), + [anon_sym_hide] = ACTIONS(2389), + [anon_sym_hide_DASHenv] = ACTIONS(2389), + [anon_sym_overlay] = ACTIONS(2389), + [anon_sym_as] = ACTIONS(2389), + [anon_sym_PLUS2] = ACTIONS(2389), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2391), + [aux_sym__val_number_decimal_token1] = ACTIONS(2389), + [aux_sym__val_number_decimal_token2] = ACTIONS(2391), + [aux_sym__val_number_decimal_token3] = ACTIONS(2391), + [aux_sym__val_number_decimal_token4] = ACTIONS(2391), + [aux_sym__val_number_token1] = ACTIONS(2391), + [aux_sym__val_number_token2] = ACTIONS(2391), + [aux_sym__val_number_token3] = ACTIONS(2391), + [aux_sym__val_number_token4] = ACTIONS(2389), + [aux_sym__val_number_token5] = ACTIONS(2389), + [aux_sym__val_number_token6] = ACTIONS(2389), + [anon_sym_DQUOTE] = ACTIONS(2391), + [sym__str_single_quotes] = ACTIONS(2391), + [sym__str_back_ticks] = ACTIONS(2391), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2391), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2391), }, - [722] = { - [sym_comment] = STATE(722), - [anon_sym_export] = ACTIONS(1937), - [anon_sym_alias] = ACTIONS(1937), - [anon_sym_let] = ACTIONS(1937), - [anon_sym_let_DASHenv] = ACTIONS(1937), - [anon_sym_mut] = ACTIONS(1937), - [anon_sym_const] = ACTIONS(1937), - [aux_sym_cmd_identifier_token1] = ACTIONS(1937), - [aux_sym_cmd_identifier_token2] = ACTIONS(1939), - [aux_sym_cmd_identifier_token3] = ACTIONS(1939), - [aux_sym_cmd_identifier_token4] = ACTIONS(1939), - [aux_sym_cmd_identifier_token5] = ACTIONS(1939), - [aux_sym_cmd_identifier_token6] = ACTIONS(1939), - [aux_sym_cmd_identifier_token7] = ACTIONS(1939), - [aux_sym_cmd_identifier_token8] = ACTIONS(1937), - [aux_sym_cmd_identifier_token9] = ACTIONS(1937), - [aux_sym_cmd_identifier_token10] = ACTIONS(1939), - [aux_sym_cmd_identifier_token11] = ACTIONS(1939), - [aux_sym_cmd_identifier_token12] = ACTIONS(1937), - [aux_sym_cmd_identifier_token13] = ACTIONS(1937), - [aux_sym_cmd_identifier_token14] = ACTIONS(1937), - [aux_sym_cmd_identifier_token15] = ACTIONS(1937), - [aux_sym_cmd_identifier_token16] = ACTIONS(1939), - [aux_sym_cmd_identifier_token17] = ACTIONS(1939), - [aux_sym_cmd_identifier_token18] = ACTIONS(1939), - [aux_sym_cmd_identifier_token19] = ACTIONS(1939), - [aux_sym_cmd_identifier_token20] = ACTIONS(1939), - [aux_sym_cmd_identifier_token21] = ACTIONS(1939), - [aux_sym_cmd_identifier_token22] = ACTIONS(1939), - [aux_sym_cmd_identifier_token23] = ACTIONS(1939), - [aux_sym_cmd_identifier_token24] = ACTIONS(1939), - [aux_sym_cmd_identifier_token25] = ACTIONS(1939), - [aux_sym_cmd_identifier_token26] = ACTIONS(1939), - [aux_sym_cmd_identifier_token27] = ACTIONS(1939), - [aux_sym_cmd_identifier_token28] = ACTIONS(1939), - [aux_sym_cmd_identifier_token29] = ACTIONS(1939), - [aux_sym_cmd_identifier_token30] = ACTIONS(1939), - [aux_sym_cmd_identifier_token31] = ACTIONS(1939), - [aux_sym_cmd_identifier_token32] = ACTIONS(1939), - [aux_sym_cmd_identifier_token33] = ACTIONS(1939), - [aux_sym_cmd_identifier_token34] = ACTIONS(1937), - [aux_sym_cmd_identifier_token35] = ACTIONS(1939), - [aux_sym_cmd_identifier_token36] = ACTIONS(1939), - [aux_sym_cmd_identifier_token37] = ACTIONS(1939), - [aux_sym_cmd_identifier_token38] = ACTIONS(1937), - [aux_sym_cmd_identifier_token39] = ACTIONS(1939), - [aux_sym_cmd_identifier_token40] = ACTIONS(1939), - [anon_sym_def] = ACTIONS(1937), - [anon_sym_export_DASHenv] = ACTIONS(1937), - [anon_sym_extern] = ACTIONS(1937), - [anon_sym_module] = ACTIONS(1937), - [anon_sym_use] = ACTIONS(1937), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1939), - [anon_sym_error] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_break] = ACTIONS(1937), - [anon_sym_continue] = ACTIONS(1937), - [anon_sym_for] = ACTIONS(1937), - [anon_sym_in2] = ACTIONS(1937), - [anon_sym_loop] = ACTIONS(1937), - [anon_sym_make] = ACTIONS(1937), - [anon_sym_while] = ACTIONS(1937), - [anon_sym_do] = ACTIONS(1937), - [anon_sym_if] = ACTIONS(1937), - [anon_sym_else] = ACTIONS(1937), - [anon_sym_match] = ACTIONS(1937), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_try] = ACTIONS(1937), - [anon_sym_catch] = ACTIONS(1937), - [anon_sym_return] = ACTIONS(1937), - [anon_sym_source] = ACTIONS(1937), - [anon_sym_source_DASHenv] = ACTIONS(1937), - [anon_sym_register] = ACTIONS(1937), - [anon_sym_hide] = ACTIONS(1937), - [anon_sym_hide_DASHenv] = ACTIONS(1937), - [anon_sym_overlay] = ACTIONS(1937), - [anon_sym_as] = ACTIONS(1937), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1937), - [aux_sym__val_number_token5] = ACTIONS(1937), - [aux_sym__val_number_token6] = ACTIONS(1937), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), + [704] = { + [sym_comment] = STATE(704), + [anon_sym_export] = ACTIONS(2346), + [anon_sym_alias] = ACTIONS(2346), + [anon_sym_let] = ACTIONS(2346), + [anon_sym_let_DASHenv] = ACTIONS(2346), + [anon_sym_mut] = ACTIONS(2346), + [anon_sym_const] = ACTIONS(2346), + [aux_sym_cmd_identifier_token1] = ACTIONS(2346), + [aux_sym_cmd_identifier_token2] = ACTIONS(2348), + [aux_sym_cmd_identifier_token3] = ACTIONS(2348), + [aux_sym_cmd_identifier_token4] = ACTIONS(2348), + [aux_sym_cmd_identifier_token5] = ACTIONS(2348), + [aux_sym_cmd_identifier_token6] = ACTIONS(2348), + [aux_sym_cmd_identifier_token7] = ACTIONS(2348), + [aux_sym_cmd_identifier_token8] = ACTIONS(2346), + [aux_sym_cmd_identifier_token9] = ACTIONS(2346), + [aux_sym_cmd_identifier_token10] = ACTIONS(2348), + [aux_sym_cmd_identifier_token11] = ACTIONS(2348), + [aux_sym_cmd_identifier_token12] = ACTIONS(2346), + [aux_sym_cmd_identifier_token13] = ACTIONS(2346), + [aux_sym_cmd_identifier_token14] = ACTIONS(2346), + [aux_sym_cmd_identifier_token15] = ACTIONS(2346), + [aux_sym_cmd_identifier_token16] = ACTIONS(2348), + [aux_sym_cmd_identifier_token17] = ACTIONS(2348), + [aux_sym_cmd_identifier_token18] = ACTIONS(2348), + [aux_sym_cmd_identifier_token19] = ACTIONS(2348), + [aux_sym_cmd_identifier_token20] = ACTIONS(2348), + [aux_sym_cmd_identifier_token21] = ACTIONS(2348), + [aux_sym_cmd_identifier_token22] = ACTIONS(2348), + [aux_sym_cmd_identifier_token23] = ACTIONS(2348), + [aux_sym_cmd_identifier_token24] = ACTIONS(2348), + [aux_sym_cmd_identifier_token25] = ACTIONS(2348), + [aux_sym_cmd_identifier_token26] = ACTIONS(2348), + [aux_sym_cmd_identifier_token27] = ACTIONS(2348), + [aux_sym_cmd_identifier_token28] = ACTIONS(2348), + [aux_sym_cmd_identifier_token29] = ACTIONS(2348), + [aux_sym_cmd_identifier_token30] = ACTIONS(2348), + [aux_sym_cmd_identifier_token31] = ACTIONS(2348), + [aux_sym_cmd_identifier_token32] = ACTIONS(2348), + [aux_sym_cmd_identifier_token33] = ACTIONS(2348), + [aux_sym_cmd_identifier_token34] = ACTIONS(2346), + [aux_sym_cmd_identifier_token35] = ACTIONS(2348), + [aux_sym_cmd_identifier_token36] = ACTIONS(2348), + [aux_sym_cmd_identifier_token37] = ACTIONS(2348), + [aux_sym_cmd_identifier_token38] = ACTIONS(2346), + [aux_sym_cmd_identifier_token39] = ACTIONS(2348), + [aux_sym_cmd_identifier_token40] = ACTIONS(2348), + [anon_sym_def] = ACTIONS(2346), + [anon_sym_export_DASHenv] = ACTIONS(2346), + [anon_sym_extern] = ACTIONS(2346), + [anon_sym_module] = ACTIONS(2346), + [anon_sym_use] = ACTIONS(2346), + [anon_sym_LPAREN] = ACTIONS(2348), + [anon_sym_COMMA] = ACTIONS(2348), + [anon_sym_DOLLAR] = ACTIONS(2348), + [anon_sym_error] = ACTIONS(2346), + [anon_sym_DASH2] = ACTIONS(2346), + [anon_sym_break] = ACTIONS(2346), + [anon_sym_continue] = ACTIONS(2346), + [anon_sym_for] = ACTIONS(2346), + [anon_sym_in2] = ACTIONS(2346), + [anon_sym_loop] = ACTIONS(2346), + [anon_sym_make] = ACTIONS(2346), + [anon_sym_while] = ACTIONS(2346), + [anon_sym_do] = ACTIONS(2346), + [anon_sym_if] = ACTIONS(2346), + [anon_sym_else] = ACTIONS(2346), + [anon_sym_match] = ACTIONS(2346), + [anon_sym_RBRACE] = ACTIONS(2348), + [anon_sym_try] = ACTIONS(2346), + [anon_sym_catch] = ACTIONS(2346), + [anon_sym_return] = ACTIONS(2346), + [anon_sym_source] = ACTIONS(2346), + [anon_sym_source_DASHenv] = ACTIONS(2346), + [anon_sym_register] = ACTIONS(2346), + [anon_sym_hide] = ACTIONS(2346), + [anon_sym_hide_DASHenv] = ACTIONS(2346), + [anon_sym_overlay] = ACTIONS(2346), + [anon_sym_as] = ACTIONS(2346), + [anon_sym_PLUS2] = ACTIONS(2346), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2348), + [aux_sym__val_number_decimal_token1] = ACTIONS(2346), + [aux_sym__val_number_decimal_token2] = ACTIONS(2348), + [aux_sym__val_number_decimal_token3] = ACTIONS(2348), + [aux_sym__val_number_decimal_token4] = ACTIONS(2348), + [aux_sym__val_number_token1] = ACTIONS(2348), + [aux_sym__val_number_token2] = ACTIONS(2348), + [aux_sym__val_number_token3] = ACTIONS(2348), + [aux_sym__val_number_token4] = ACTIONS(2346), + [aux_sym__val_number_token5] = ACTIONS(2346), + [aux_sym__val_number_token6] = ACTIONS(2346), + [anon_sym_DQUOTE] = ACTIONS(2348), + [sym__str_single_quotes] = ACTIONS(2348), + [sym__str_back_ticks] = ACTIONS(2348), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2348), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2348), }, - [723] = { - [sym_comment] = STATE(723), - [anon_sym_export] = ACTIONS(2324), - [anon_sym_alias] = ACTIONS(2324), - [anon_sym_let] = ACTIONS(2324), - [anon_sym_let_DASHenv] = ACTIONS(2324), - [anon_sym_mut] = ACTIONS(2324), - [anon_sym_const] = ACTIONS(2324), - [aux_sym_cmd_identifier_token1] = ACTIONS(2324), - [aux_sym_cmd_identifier_token2] = ACTIONS(2328), - [aux_sym_cmd_identifier_token3] = ACTIONS(2328), - [aux_sym_cmd_identifier_token4] = ACTIONS(2328), - [aux_sym_cmd_identifier_token5] = ACTIONS(2328), - [aux_sym_cmd_identifier_token6] = ACTIONS(2328), - [aux_sym_cmd_identifier_token7] = ACTIONS(2328), - [aux_sym_cmd_identifier_token8] = ACTIONS(2324), - [aux_sym_cmd_identifier_token9] = ACTIONS(2324), - [aux_sym_cmd_identifier_token10] = ACTIONS(2328), - [aux_sym_cmd_identifier_token11] = ACTIONS(2328), - [aux_sym_cmd_identifier_token12] = ACTIONS(2324), - [aux_sym_cmd_identifier_token13] = ACTIONS(2324), - [aux_sym_cmd_identifier_token14] = ACTIONS(2324), - [aux_sym_cmd_identifier_token15] = ACTIONS(2324), - [aux_sym_cmd_identifier_token16] = ACTIONS(2328), - [aux_sym_cmd_identifier_token17] = ACTIONS(2328), - [aux_sym_cmd_identifier_token18] = ACTIONS(2328), - [aux_sym_cmd_identifier_token19] = ACTIONS(2328), - [aux_sym_cmd_identifier_token20] = ACTIONS(2328), - [aux_sym_cmd_identifier_token21] = ACTIONS(2328), - [aux_sym_cmd_identifier_token22] = ACTIONS(2328), - [aux_sym_cmd_identifier_token23] = ACTIONS(2328), - [aux_sym_cmd_identifier_token24] = ACTIONS(2328), - [aux_sym_cmd_identifier_token25] = ACTIONS(2328), - [aux_sym_cmd_identifier_token26] = ACTIONS(2328), - [aux_sym_cmd_identifier_token27] = ACTIONS(2328), - [aux_sym_cmd_identifier_token28] = ACTIONS(2328), - [aux_sym_cmd_identifier_token29] = ACTIONS(2328), - [aux_sym_cmd_identifier_token30] = ACTIONS(2328), - [aux_sym_cmd_identifier_token31] = ACTIONS(2328), - [aux_sym_cmd_identifier_token32] = ACTIONS(2328), - [aux_sym_cmd_identifier_token33] = ACTIONS(2328), - [aux_sym_cmd_identifier_token34] = ACTIONS(2324), - [aux_sym_cmd_identifier_token35] = ACTIONS(2328), - [aux_sym_cmd_identifier_token36] = ACTIONS(2328), - [aux_sym_cmd_identifier_token37] = ACTIONS(2328), - [aux_sym_cmd_identifier_token38] = ACTIONS(2324), - [aux_sym_cmd_identifier_token39] = ACTIONS(2328), - [aux_sym_cmd_identifier_token40] = ACTIONS(2328), - [anon_sym_def] = ACTIONS(2324), - [anon_sym_export_DASHenv] = ACTIONS(2324), - [anon_sym_extern] = ACTIONS(2324), - [anon_sym_module] = ACTIONS(2324), - [anon_sym_use] = ACTIONS(2324), - [anon_sym_LPAREN] = ACTIONS(2328), - [anon_sym_DOLLAR] = ACTIONS(2328), - [anon_sym_error] = ACTIONS(2324), - [anon_sym_DASH2] = ACTIONS(2324), - [anon_sym_break] = ACTIONS(2324), - [anon_sym_continue] = ACTIONS(2324), - [anon_sym_for] = ACTIONS(2324), - [anon_sym_in2] = ACTIONS(2324), - [anon_sym_loop] = ACTIONS(2324), - [anon_sym_make] = ACTIONS(2324), - [anon_sym_while] = ACTIONS(2324), - [anon_sym_do] = ACTIONS(2324), - [anon_sym_if] = ACTIONS(2324), - [anon_sym_else] = ACTIONS(2324), - [anon_sym_match] = ACTIONS(2324), - [anon_sym_RBRACE] = ACTIONS(2328), - [anon_sym_try] = ACTIONS(2324), - [anon_sym_catch] = ACTIONS(2324), - [anon_sym_return] = ACTIONS(2324), - [anon_sym_source] = ACTIONS(2324), - [anon_sym_source_DASHenv] = ACTIONS(2324), - [anon_sym_register] = ACTIONS(2324), - [anon_sym_hide] = ACTIONS(2324), - [anon_sym_hide_DASHenv] = ACTIONS(2324), - [anon_sym_overlay] = ACTIONS(2324), - [anon_sym_as] = ACTIONS(2324), - [anon_sym_PLUS2] = ACTIONS(2324), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2328), - [aux_sym__val_number_decimal_token1] = ACTIONS(2324), - [aux_sym__val_number_decimal_token2] = ACTIONS(2328), - [aux_sym__val_number_decimal_token3] = ACTIONS(2328), - [aux_sym__val_number_decimal_token4] = ACTIONS(2328), - [aux_sym__val_number_token1] = ACTIONS(2328), - [aux_sym__val_number_token2] = ACTIONS(2328), - [aux_sym__val_number_token3] = ACTIONS(2328), - [aux_sym__val_number_token4] = ACTIONS(2324), - [aux_sym__val_number_token5] = ACTIONS(2324), - [aux_sym__val_number_token6] = ACTIONS(2324), - [anon_sym_DQUOTE] = ACTIONS(2328), - [sym__str_single_quotes] = ACTIONS(2328), - [sym__str_back_ticks] = ACTIONS(2328), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2328), + [705] = { + [sym_comment] = STATE(705), + [anon_sym_export] = ACTIONS(1835), + [anon_sym_alias] = ACTIONS(1835), + [anon_sym_let] = ACTIONS(1835), + [anon_sym_let_DASHenv] = ACTIONS(1835), + [anon_sym_mut] = ACTIONS(1835), + [anon_sym_const] = ACTIONS(1835), + [aux_sym_cmd_identifier_token1] = ACTIONS(1835), + [aux_sym_cmd_identifier_token2] = ACTIONS(1837), + [aux_sym_cmd_identifier_token3] = ACTIONS(1837), + [aux_sym_cmd_identifier_token4] = ACTIONS(1837), + [aux_sym_cmd_identifier_token5] = ACTIONS(1837), + [aux_sym_cmd_identifier_token6] = ACTIONS(1837), + [aux_sym_cmd_identifier_token7] = ACTIONS(1837), + [aux_sym_cmd_identifier_token8] = ACTIONS(1835), + [aux_sym_cmd_identifier_token9] = ACTIONS(1835), + [aux_sym_cmd_identifier_token10] = ACTIONS(1837), + [aux_sym_cmd_identifier_token11] = ACTIONS(1837), + [aux_sym_cmd_identifier_token12] = ACTIONS(1835), + [aux_sym_cmd_identifier_token13] = ACTIONS(1835), + [aux_sym_cmd_identifier_token14] = ACTIONS(1835), + [aux_sym_cmd_identifier_token15] = ACTIONS(1835), + [aux_sym_cmd_identifier_token16] = ACTIONS(1837), + [aux_sym_cmd_identifier_token17] = ACTIONS(1837), + [aux_sym_cmd_identifier_token18] = ACTIONS(1837), + [aux_sym_cmd_identifier_token19] = ACTIONS(1837), + [aux_sym_cmd_identifier_token20] = ACTIONS(1837), + [aux_sym_cmd_identifier_token21] = ACTIONS(1837), + [aux_sym_cmd_identifier_token22] = ACTIONS(1837), + [aux_sym_cmd_identifier_token23] = ACTIONS(1837), + [aux_sym_cmd_identifier_token24] = ACTIONS(1837), + [aux_sym_cmd_identifier_token25] = ACTIONS(1837), + [aux_sym_cmd_identifier_token26] = ACTIONS(1837), + [aux_sym_cmd_identifier_token27] = ACTIONS(1837), + [aux_sym_cmd_identifier_token28] = ACTIONS(1837), + [aux_sym_cmd_identifier_token29] = ACTIONS(1837), + [aux_sym_cmd_identifier_token30] = ACTIONS(1837), + [aux_sym_cmd_identifier_token31] = ACTIONS(1837), + [aux_sym_cmd_identifier_token32] = ACTIONS(1837), + [aux_sym_cmd_identifier_token33] = ACTIONS(1837), + [aux_sym_cmd_identifier_token34] = ACTIONS(1835), + [aux_sym_cmd_identifier_token35] = ACTIONS(1837), + [aux_sym_cmd_identifier_token36] = ACTIONS(1837), + [aux_sym_cmd_identifier_token37] = ACTIONS(1837), + [aux_sym_cmd_identifier_token38] = ACTIONS(1835), + [aux_sym_cmd_identifier_token39] = ACTIONS(1837), + [aux_sym_cmd_identifier_token40] = ACTIONS(1837), + [anon_sym_def] = ACTIONS(1835), + [anon_sym_export_DASHenv] = ACTIONS(1835), + [anon_sym_extern] = ACTIONS(1835), + [anon_sym_module] = ACTIONS(1835), + [anon_sym_use] = ACTIONS(1835), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_COMMA] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1837), + [anon_sym_error] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_break] = ACTIONS(1835), + [anon_sym_continue] = ACTIONS(1835), + [anon_sym_for] = ACTIONS(1835), + [anon_sym_in2] = ACTIONS(1835), + [anon_sym_loop] = ACTIONS(1835), + [anon_sym_make] = ACTIONS(1835), + [anon_sym_while] = ACTIONS(1835), + [anon_sym_do] = ACTIONS(1835), + [anon_sym_if] = ACTIONS(1835), + [anon_sym_else] = ACTIONS(1835), + [anon_sym_match] = ACTIONS(1835), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_try] = ACTIONS(1835), + [anon_sym_catch] = ACTIONS(1835), + [anon_sym_return] = ACTIONS(1835), + [anon_sym_source] = ACTIONS(1835), + [anon_sym_source_DASHenv] = ACTIONS(1835), + [anon_sym_register] = ACTIONS(1835), + [anon_sym_hide] = ACTIONS(1835), + [anon_sym_hide_DASHenv] = ACTIONS(1835), + [anon_sym_overlay] = ACTIONS(1835), + [anon_sym_as] = ACTIONS(1835), + [anon_sym_PLUS2] = ACTIONS(1835), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [aux_sym__val_number_token4] = ACTIONS(1835), + [aux_sym__val_number_token5] = ACTIONS(1835), + [aux_sym__val_number_token6] = ACTIONS(1835), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2328), + [sym_raw_string_begin] = ACTIONS(1837), }, - [724] = { - [sym_comment] = STATE(724), - [anon_sym_export] = ACTIONS(2509), - [anon_sym_alias] = ACTIONS(2509), - [anon_sym_let] = ACTIONS(2509), - [anon_sym_let_DASHenv] = ACTIONS(2509), - [anon_sym_mut] = ACTIONS(2509), - [anon_sym_const] = ACTIONS(2509), - [aux_sym_cmd_identifier_token1] = ACTIONS(2509), - [aux_sym_cmd_identifier_token2] = ACTIONS(2511), - [aux_sym_cmd_identifier_token3] = ACTIONS(2511), - [aux_sym_cmd_identifier_token4] = ACTIONS(2511), - [aux_sym_cmd_identifier_token5] = ACTIONS(2511), - [aux_sym_cmd_identifier_token6] = ACTIONS(2511), - [aux_sym_cmd_identifier_token7] = ACTIONS(2511), - [aux_sym_cmd_identifier_token8] = ACTIONS(2509), - [aux_sym_cmd_identifier_token9] = ACTIONS(2509), - [aux_sym_cmd_identifier_token10] = ACTIONS(2511), - [aux_sym_cmd_identifier_token11] = ACTIONS(2511), - [aux_sym_cmd_identifier_token12] = ACTIONS(2509), - [aux_sym_cmd_identifier_token13] = ACTIONS(2509), - [aux_sym_cmd_identifier_token14] = ACTIONS(2509), - [aux_sym_cmd_identifier_token15] = ACTIONS(2509), - [aux_sym_cmd_identifier_token16] = ACTIONS(2511), - [aux_sym_cmd_identifier_token17] = ACTIONS(2511), - [aux_sym_cmd_identifier_token18] = ACTIONS(2511), - [aux_sym_cmd_identifier_token19] = ACTIONS(2511), - [aux_sym_cmd_identifier_token20] = ACTIONS(2511), - [aux_sym_cmd_identifier_token21] = ACTIONS(2511), - [aux_sym_cmd_identifier_token22] = ACTIONS(2511), - [aux_sym_cmd_identifier_token23] = ACTIONS(2511), - [aux_sym_cmd_identifier_token24] = ACTIONS(2511), - [aux_sym_cmd_identifier_token25] = ACTIONS(2511), - [aux_sym_cmd_identifier_token26] = ACTIONS(2511), - [aux_sym_cmd_identifier_token27] = ACTIONS(2511), - [aux_sym_cmd_identifier_token28] = ACTIONS(2511), - [aux_sym_cmd_identifier_token29] = ACTIONS(2511), - [aux_sym_cmd_identifier_token30] = ACTIONS(2511), - [aux_sym_cmd_identifier_token31] = ACTIONS(2511), - [aux_sym_cmd_identifier_token32] = ACTIONS(2511), - [aux_sym_cmd_identifier_token33] = ACTIONS(2511), - [aux_sym_cmd_identifier_token34] = ACTIONS(2509), - [aux_sym_cmd_identifier_token35] = ACTIONS(2511), - [aux_sym_cmd_identifier_token36] = ACTIONS(2511), - [aux_sym_cmd_identifier_token37] = ACTIONS(2511), - [aux_sym_cmd_identifier_token38] = ACTIONS(2509), - [aux_sym_cmd_identifier_token39] = ACTIONS(2511), - [aux_sym_cmd_identifier_token40] = ACTIONS(2511), - [anon_sym_def] = ACTIONS(2509), - [anon_sym_export_DASHenv] = ACTIONS(2509), - [anon_sym_extern] = ACTIONS(2509), - [anon_sym_module] = ACTIONS(2509), - [anon_sym_use] = ACTIONS(2509), - [anon_sym_LPAREN] = ACTIONS(2511), - [anon_sym_DOLLAR] = ACTIONS(2511), - [anon_sym_error] = ACTIONS(2509), - [anon_sym_DASH2] = ACTIONS(2509), - [anon_sym_break] = ACTIONS(2509), - [anon_sym_continue] = ACTIONS(2509), - [anon_sym_for] = ACTIONS(2509), - [anon_sym_in2] = ACTIONS(2509), - [anon_sym_loop] = ACTIONS(2509), - [anon_sym_make] = ACTIONS(2509), - [anon_sym_while] = ACTIONS(2509), - [anon_sym_do] = ACTIONS(2509), - [anon_sym_if] = ACTIONS(2509), - [anon_sym_else] = ACTIONS(2509), - [anon_sym_match] = ACTIONS(2509), - [anon_sym_RBRACE] = ACTIONS(2511), - [anon_sym_try] = ACTIONS(2509), - [anon_sym_catch] = ACTIONS(2509), - [anon_sym_return] = ACTIONS(2509), - [anon_sym_source] = ACTIONS(2509), - [anon_sym_source_DASHenv] = ACTIONS(2509), - [anon_sym_register] = ACTIONS(2509), - [anon_sym_hide] = ACTIONS(2509), - [anon_sym_hide_DASHenv] = ACTIONS(2509), - [anon_sym_overlay] = ACTIONS(2509), - [anon_sym_as] = ACTIONS(2509), - [anon_sym_PLUS2] = ACTIONS(2509), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_DOLLAR] = 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), - [aux_sym__val_number_token4] = ACTIONS(2509), - [aux_sym__val_number_token5] = ACTIONS(2509), - [aux_sym__val_number_token6] = ACTIONS(2509), - [anon_sym_DQUOTE] = ACTIONS(2511), - [sym__str_single_quotes] = ACTIONS(2511), - [sym__str_back_ticks] = ACTIONS(2511), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2511), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2511), + [706] = { + [sym_comment] = STATE(706), + [anon_sym_export] = ACTIONS(1847), + [anon_sym_alias] = ACTIONS(1847), + [anon_sym_let] = ACTIONS(1847), + [anon_sym_let_DASHenv] = ACTIONS(1847), + [anon_sym_mut] = ACTIONS(1847), + [anon_sym_const] = ACTIONS(1847), + [aux_sym_cmd_identifier_token1] = ACTIONS(1847), + [aux_sym_cmd_identifier_token2] = ACTIONS(1849), + [aux_sym_cmd_identifier_token3] = ACTIONS(1849), + [aux_sym_cmd_identifier_token4] = ACTIONS(1849), + [aux_sym_cmd_identifier_token5] = ACTIONS(1849), + [aux_sym_cmd_identifier_token6] = ACTIONS(1849), + [aux_sym_cmd_identifier_token7] = ACTIONS(1849), + [aux_sym_cmd_identifier_token8] = ACTIONS(1847), + [aux_sym_cmd_identifier_token9] = ACTIONS(1847), + [aux_sym_cmd_identifier_token10] = ACTIONS(1849), + [aux_sym_cmd_identifier_token11] = ACTIONS(1849), + [aux_sym_cmd_identifier_token12] = ACTIONS(1847), + [aux_sym_cmd_identifier_token13] = ACTIONS(1847), + [aux_sym_cmd_identifier_token14] = ACTIONS(1847), + [aux_sym_cmd_identifier_token15] = ACTIONS(1847), + [aux_sym_cmd_identifier_token16] = ACTIONS(1849), + [aux_sym_cmd_identifier_token17] = ACTIONS(1849), + [aux_sym_cmd_identifier_token18] = ACTIONS(1849), + [aux_sym_cmd_identifier_token19] = ACTIONS(1849), + [aux_sym_cmd_identifier_token20] = ACTIONS(1849), + [aux_sym_cmd_identifier_token21] = ACTIONS(1849), + [aux_sym_cmd_identifier_token22] = ACTIONS(1849), + [aux_sym_cmd_identifier_token23] = ACTIONS(1849), + [aux_sym_cmd_identifier_token24] = ACTIONS(1849), + [aux_sym_cmd_identifier_token25] = ACTIONS(1849), + [aux_sym_cmd_identifier_token26] = ACTIONS(1849), + [aux_sym_cmd_identifier_token27] = ACTIONS(1849), + [aux_sym_cmd_identifier_token28] = ACTIONS(1849), + [aux_sym_cmd_identifier_token29] = ACTIONS(1849), + [aux_sym_cmd_identifier_token30] = ACTIONS(1849), + [aux_sym_cmd_identifier_token31] = ACTIONS(1849), + [aux_sym_cmd_identifier_token32] = ACTIONS(1849), + [aux_sym_cmd_identifier_token33] = ACTIONS(1849), + [aux_sym_cmd_identifier_token34] = ACTIONS(1847), + [aux_sym_cmd_identifier_token35] = ACTIONS(1849), + [aux_sym_cmd_identifier_token36] = ACTIONS(1849), + [aux_sym_cmd_identifier_token37] = ACTIONS(1849), + [aux_sym_cmd_identifier_token38] = ACTIONS(1847), + [aux_sym_cmd_identifier_token39] = ACTIONS(1849), + [aux_sym_cmd_identifier_token40] = ACTIONS(1849), + [anon_sym_def] = ACTIONS(1847), + [anon_sym_export_DASHenv] = ACTIONS(1847), + [anon_sym_extern] = ACTIONS(1847), + [anon_sym_module] = ACTIONS(1847), + [anon_sym_use] = ACTIONS(1847), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_COMMA] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1849), + [anon_sym_error] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_break] = ACTIONS(1847), + [anon_sym_continue] = ACTIONS(1847), + [anon_sym_for] = ACTIONS(1847), + [anon_sym_in2] = ACTIONS(1847), + [anon_sym_loop] = ACTIONS(1847), + [anon_sym_make] = ACTIONS(1847), + [anon_sym_while] = ACTIONS(1847), + [anon_sym_do] = ACTIONS(1847), + [anon_sym_if] = ACTIONS(1847), + [anon_sym_else] = ACTIONS(1847), + [anon_sym_match] = ACTIONS(1847), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_try] = ACTIONS(1847), + [anon_sym_catch] = ACTIONS(1847), + [anon_sym_return] = ACTIONS(1847), + [anon_sym_source] = ACTIONS(1847), + [anon_sym_source_DASHenv] = ACTIONS(1847), + [anon_sym_register] = ACTIONS(1847), + [anon_sym_hide] = ACTIONS(1847), + [anon_sym_hide_DASHenv] = ACTIONS(1847), + [anon_sym_overlay] = ACTIONS(1847), + [anon_sym_as] = ACTIONS(1847), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [aux_sym__val_number_token4] = ACTIONS(1847), + [aux_sym__val_number_token5] = ACTIONS(1847), + [aux_sym__val_number_token6] = ACTIONS(1847), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1849), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1849), }, - [725] = { - [aux_sym__pipe_separator] = STATE(754), - [sym_comment] = STATE(725), - [aux_sym_shebang_repeat1] = STATE(768), - [aux_sym_cmd_identifier_token1] = ACTIONS(2513), - [aux_sym_cmd_identifier_token2] = ACTIONS(2515), - [aux_sym_cmd_identifier_token3] = ACTIONS(2515), - [aux_sym_cmd_identifier_token4] = ACTIONS(2515), - [aux_sym_cmd_identifier_token5] = ACTIONS(2515), - [aux_sym_cmd_identifier_token6] = ACTIONS(2515), - [aux_sym_cmd_identifier_token7] = ACTIONS(2515), - [aux_sym_cmd_identifier_token8] = ACTIONS(2515), - [aux_sym_cmd_identifier_token9] = ACTIONS(2513), - [aux_sym_cmd_identifier_token10] = ACTIONS(2515), - [aux_sym_cmd_identifier_token11] = ACTIONS(2515), - [aux_sym_cmd_identifier_token12] = ACTIONS(2515), - [aux_sym_cmd_identifier_token13] = ACTIONS(2513), - [aux_sym_cmd_identifier_token14] = ACTIONS(2515), - [aux_sym_cmd_identifier_token15] = ACTIONS(2513), - [aux_sym_cmd_identifier_token16] = ACTIONS(2515), - [aux_sym_cmd_identifier_token17] = ACTIONS(2515), - [aux_sym_cmd_identifier_token18] = ACTIONS(2513), - [aux_sym_cmd_identifier_token19] = ACTIONS(2515), - [aux_sym_cmd_identifier_token20] = ACTIONS(2515), - [aux_sym_cmd_identifier_token21] = ACTIONS(2515), - [aux_sym_cmd_identifier_token22] = ACTIONS(2515), - [aux_sym_cmd_identifier_token23] = ACTIONS(2515), - [aux_sym_cmd_identifier_token24] = ACTIONS(2515), - [aux_sym_cmd_identifier_token25] = ACTIONS(2515), - [aux_sym_cmd_identifier_token26] = ACTIONS(2515), - [aux_sym_cmd_identifier_token27] = ACTIONS(2515), - [aux_sym_cmd_identifier_token28] = ACTIONS(2515), - [aux_sym_cmd_identifier_token29] = ACTIONS(2515), - [aux_sym_cmd_identifier_token30] = ACTIONS(2515), - [aux_sym_cmd_identifier_token31] = ACTIONS(2515), - [aux_sym_cmd_identifier_token32] = ACTIONS(2513), - [aux_sym_cmd_identifier_token33] = ACTIONS(2515), - [aux_sym_cmd_identifier_token34] = ACTIONS(2513), - [aux_sym_cmd_identifier_token35] = ACTIONS(2515), - [aux_sym_cmd_identifier_token36] = ACTIONS(2515), - [aux_sym_cmd_identifier_token37] = ACTIONS(2515), - [aux_sym_cmd_identifier_token38] = ACTIONS(2513), - [aux_sym_cmd_identifier_token39] = ACTIONS(2515), - [aux_sym_cmd_identifier_token40] = ACTIONS(2515), - [sym__newline] = ACTIONS(2517), - [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_LBRACK] = ACTIONS(2515), - [anon_sym_LPAREN] = ACTIONS(2515), - [anon_sym_DOLLAR] = ACTIONS(2513), - [anon_sym_DASH2] = ACTIONS(2513), - [anon_sym_break] = ACTIONS(2513), - [anon_sym_continue] = ACTIONS(2513), - [anon_sym_do] = ACTIONS(2513), - [anon_sym_if] = ACTIONS(2513), - [anon_sym_match] = ACTIONS(2513), - [anon_sym_LBRACE] = ACTIONS(2515), - [anon_sym_DOT_DOT] = ACTIONS(2513), - [anon_sym_try] = ACTIONS(2513), - [anon_sym_return] = ACTIONS(2513), - [anon_sym_where] = ACTIONS(2515), - [aux_sym_expr_unary_token1] = ACTIONS(2515), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2515), - [anon_sym_DOT_DOT_LT] = ACTIONS(2515), - [anon_sym_null] = ACTIONS(2513), - [anon_sym_true] = ACTIONS(2513), - [anon_sym_false] = ACTIONS(2513), - [aux_sym__val_number_decimal_token1] = ACTIONS(2513), - [aux_sym__val_number_decimal_token2] = ACTIONS(2515), - [aux_sym__val_number_decimal_token3] = ACTIONS(2515), - [aux_sym__val_number_decimal_token4] = ACTIONS(2515), - [aux_sym__val_number_token1] = ACTIONS(2515), - [aux_sym__val_number_token2] = ACTIONS(2515), - [aux_sym__val_number_token3] = ACTIONS(2515), - [aux_sym__val_number_token4] = ACTIONS(2513), - [aux_sym__val_number_token5] = ACTIONS(2513), - [aux_sym__val_number_token6] = ACTIONS(2513), - [anon_sym_0b] = ACTIONS(2513), - [anon_sym_0o] = ACTIONS(2513), - [anon_sym_0x] = ACTIONS(2513), - [sym_val_date] = ACTIONS(2515), - [anon_sym_DQUOTE] = ACTIONS(2515), - [sym__str_single_quotes] = ACTIONS(2515), - [sym__str_back_ticks] = ACTIONS(2515), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2515), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2515), - [aux_sym_env_var_token1] = ACTIONS(2513), - [anon_sym_CARET] = ACTIONS(2515), - [aux_sym_command_token1] = ACTIONS(2515), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2515), + [707] = { + [sym_comment] = STATE(707), + [anon_sym_export] = ACTIONS(2350), + [anon_sym_alias] = ACTIONS(2350), + [anon_sym_let] = ACTIONS(2350), + [anon_sym_let_DASHenv] = ACTIONS(2350), + [anon_sym_mut] = ACTIONS(2350), + [anon_sym_const] = ACTIONS(2350), + [aux_sym_cmd_identifier_token1] = ACTIONS(2350), + [aux_sym_cmd_identifier_token2] = ACTIONS(2352), + [aux_sym_cmd_identifier_token3] = ACTIONS(2352), + [aux_sym_cmd_identifier_token4] = ACTIONS(2352), + [aux_sym_cmd_identifier_token5] = ACTIONS(2352), + [aux_sym_cmd_identifier_token6] = ACTIONS(2352), + [aux_sym_cmd_identifier_token7] = ACTIONS(2352), + [aux_sym_cmd_identifier_token8] = ACTIONS(2350), + [aux_sym_cmd_identifier_token9] = ACTIONS(2350), + [aux_sym_cmd_identifier_token10] = ACTIONS(2352), + [aux_sym_cmd_identifier_token11] = ACTIONS(2352), + [aux_sym_cmd_identifier_token12] = ACTIONS(2350), + [aux_sym_cmd_identifier_token13] = ACTIONS(2350), + [aux_sym_cmd_identifier_token14] = ACTIONS(2350), + [aux_sym_cmd_identifier_token15] = ACTIONS(2350), + [aux_sym_cmd_identifier_token16] = ACTIONS(2352), + [aux_sym_cmd_identifier_token17] = ACTIONS(2352), + [aux_sym_cmd_identifier_token18] = ACTIONS(2352), + [aux_sym_cmd_identifier_token19] = ACTIONS(2352), + [aux_sym_cmd_identifier_token20] = ACTIONS(2352), + [aux_sym_cmd_identifier_token21] = ACTIONS(2352), + [aux_sym_cmd_identifier_token22] = ACTIONS(2352), + [aux_sym_cmd_identifier_token23] = ACTIONS(2352), + [aux_sym_cmd_identifier_token24] = ACTIONS(2352), + [aux_sym_cmd_identifier_token25] = ACTIONS(2352), + [aux_sym_cmd_identifier_token26] = ACTIONS(2352), + [aux_sym_cmd_identifier_token27] = ACTIONS(2352), + [aux_sym_cmd_identifier_token28] = ACTIONS(2352), + [aux_sym_cmd_identifier_token29] = ACTIONS(2352), + [aux_sym_cmd_identifier_token30] = ACTIONS(2352), + [aux_sym_cmd_identifier_token31] = ACTIONS(2352), + [aux_sym_cmd_identifier_token32] = ACTIONS(2352), + [aux_sym_cmd_identifier_token33] = ACTIONS(2352), + [aux_sym_cmd_identifier_token34] = ACTIONS(2350), + [aux_sym_cmd_identifier_token35] = ACTIONS(2352), + [aux_sym_cmd_identifier_token36] = ACTIONS(2352), + [aux_sym_cmd_identifier_token37] = ACTIONS(2352), + [aux_sym_cmd_identifier_token38] = ACTIONS(2350), + [aux_sym_cmd_identifier_token39] = ACTIONS(2352), + [aux_sym_cmd_identifier_token40] = ACTIONS(2352), + [anon_sym_def] = ACTIONS(2350), + [anon_sym_export_DASHenv] = ACTIONS(2350), + [anon_sym_extern] = ACTIONS(2350), + [anon_sym_module] = ACTIONS(2350), + [anon_sym_use] = ACTIONS(2350), + [anon_sym_LPAREN] = ACTIONS(2352), + [anon_sym_COMMA] = ACTIONS(2352), + [anon_sym_DOLLAR] = ACTIONS(2352), + [anon_sym_error] = ACTIONS(2350), + [anon_sym_DASH2] = ACTIONS(2350), + [anon_sym_break] = ACTIONS(2350), + [anon_sym_continue] = ACTIONS(2350), + [anon_sym_for] = ACTIONS(2350), + [anon_sym_in2] = ACTIONS(2350), + [anon_sym_loop] = ACTIONS(2350), + [anon_sym_make] = ACTIONS(2350), + [anon_sym_while] = ACTIONS(2350), + [anon_sym_do] = ACTIONS(2350), + [anon_sym_if] = ACTIONS(2350), + [anon_sym_else] = ACTIONS(2350), + [anon_sym_match] = ACTIONS(2350), + [anon_sym_RBRACE] = ACTIONS(2352), + [anon_sym_try] = ACTIONS(2350), + [anon_sym_catch] = ACTIONS(2350), + [anon_sym_return] = ACTIONS(2350), + [anon_sym_source] = ACTIONS(2350), + [anon_sym_source_DASHenv] = ACTIONS(2350), + [anon_sym_register] = ACTIONS(2350), + [anon_sym_hide] = ACTIONS(2350), + [anon_sym_hide_DASHenv] = ACTIONS(2350), + [anon_sym_overlay] = ACTIONS(2350), + [anon_sym_as] = ACTIONS(2350), + [anon_sym_PLUS2] = ACTIONS(2350), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2352), + [aux_sym__val_number_decimal_token1] = ACTIONS(2350), + [aux_sym__val_number_decimal_token2] = ACTIONS(2352), + [aux_sym__val_number_decimal_token3] = ACTIONS(2352), + [aux_sym__val_number_decimal_token4] = ACTIONS(2352), + [aux_sym__val_number_token1] = ACTIONS(2352), + [aux_sym__val_number_token2] = ACTIONS(2352), + [aux_sym__val_number_token3] = ACTIONS(2352), + [aux_sym__val_number_token4] = ACTIONS(2350), + [aux_sym__val_number_token5] = ACTIONS(2350), + [aux_sym__val_number_token6] = ACTIONS(2350), + [anon_sym_DQUOTE] = ACTIONS(2352), + [sym__str_single_quotes] = ACTIONS(2352), + [sym__str_back_ticks] = ACTIONS(2352), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2352), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2352), }, - [726] = { - [sym_comment] = STATE(726), - [anon_sym_export] = ACTIONS(2403), - [anon_sym_alias] = ACTIONS(2403), - [anon_sym_let] = ACTIONS(2403), - [anon_sym_let_DASHenv] = ACTIONS(2403), - [anon_sym_mut] = ACTIONS(2403), - [anon_sym_const] = ACTIONS(2403), - [aux_sym_cmd_identifier_token1] = ACTIONS(2403), - [aux_sym_cmd_identifier_token2] = ACTIONS(2405), - [aux_sym_cmd_identifier_token3] = ACTIONS(2405), - [aux_sym_cmd_identifier_token4] = ACTIONS(2405), - [aux_sym_cmd_identifier_token5] = ACTIONS(2405), - [aux_sym_cmd_identifier_token6] = ACTIONS(2405), - [aux_sym_cmd_identifier_token7] = ACTIONS(2405), - [aux_sym_cmd_identifier_token8] = ACTIONS(2403), - [aux_sym_cmd_identifier_token9] = ACTIONS(2403), - [aux_sym_cmd_identifier_token10] = ACTIONS(2405), - [aux_sym_cmd_identifier_token11] = ACTIONS(2405), - [aux_sym_cmd_identifier_token12] = ACTIONS(2403), - [aux_sym_cmd_identifier_token13] = ACTIONS(2403), - [aux_sym_cmd_identifier_token14] = ACTIONS(2403), - [aux_sym_cmd_identifier_token15] = ACTIONS(2403), - [aux_sym_cmd_identifier_token16] = ACTIONS(2405), - [aux_sym_cmd_identifier_token17] = ACTIONS(2405), - [aux_sym_cmd_identifier_token18] = ACTIONS(2405), - [aux_sym_cmd_identifier_token19] = ACTIONS(2405), - [aux_sym_cmd_identifier_token20] = ACTIONS(2405), - [aux_sym_cmd_identifier_token21] = ACTIONS(2405), - [aux_sym_cmd_identifier_token22] = ACTIONS(2405), - [aux_sym_cmd_identifier_token23] = ACTIONS(2405), - [aux_sym_cmd_identifier_token24] = ACTIONS(2405), - [aux_sym_cmd_identifier_token25] = ACTIONS(2405), - [aux_sym_cmd_identifier_token26] = ACTIONS(2405), - [aux_sym_cmd_identifier_token27] = ACTIONS(2405), - [aux_sym_cmd_identifier_token28] = ACTIONS(2405), - [aux_sym_cmd_identifier_token29] = ACTIONS(2405), - [aux_sym_cmd_identifier_token30] = ACTIONS(2405), - [aux_sym_cmd_identifier_token31] = ACTIONS(2405), - [aux_sym_cmd_identifier_token32] = ACTIONS(2405), - [aux_sym_cmd_identifier_token33] = ACTIONS(2405), - [aux_sym_cmd_identifier_token34] = ACTIONS(2403), - [aux_sym_cmd_identifier_token35] = ACTIONS(2405), - [aux_sym_cmd_identifier_token36] = ACTIONS(2405), - [aux_sym_cmd_identifier_token37] = ACTIONS(2405), - [aux_sym_cmd_identifier_token38] = ACTIONS(2403), - [aux_sym_cmd_identifier_token39] = ACTIONS(2405), - [aux_sym_cmd_identifier_token40] = ACTIONS(2405), - [anon_sym_def] = ACTIONS(2403), - [anon_sym_export_DASHenv] = ACTIONS(2403), - [anon_sym_extern] = ACTIONS(2403), - [anon_sym_module] = ACTIONS(2403), - [anon_sym_use] = ACTIONS(2403), - [anon_sym_LPAREN] = ACTIONS(2405), - [anon_sym_DOLLAR] = ACTIONS(2405), - [anon_sym_error] = ACTIONS(2403), - [anon_sym_DASH2] = ACTIONS(2403), - [anon_sym_break] = ACTIONS(2403), - [anon_sym_continue] = ACTIONS(2403), - [anon_sym_for] = ACTIONS(2403), - [anon_sym_in2] = ACTIONS(2403), - [anon_sym_loop] = ACTIONS(2403), - [anon_sym_make] = ACTIONS(2403), - [anon_sym_while] = ACTIONS(2403), - [anon_sym_do] = ACTIONS(2403), - [anon_sym_if] = ACTIONS(2403), - [anon_sym_else] = ACTIONS(2403), - [anon_sym_match] = ACTIONS(2403), - [anon_sym_RBRACE] = ACTIONS(2405), - [anon_sym_try] = ACTIONS(2403), - [anon_sym_catch] = ACTIONS(2403), - [anon_sym_return] = ACTIONS(2403), - [anon_sym_source] = ACTIONS(2403), - [anon_sym_source_DASHenv] = ACTIONS(2403), - [anon_sym_register] = ACTIONS(2403), - [anon_sym_hide] = ACTIONS(2403), - [anon_sym_hide_DASHenv] = ACTIONS(2403), - [anon_sym_overlay] = ACTIONS(2403), - [anon_sym_as] = ACTIONS(2403), - [anon_sym_PLUS2] = ACTIONS(2403), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), - [aux_sym__val_number_decimal_token1] = ACTIONS(2403), - [aux_sym__val_number_decimal_token2] = ACTIONS(2405), - [aux_sym__val_number_decimal_token3] = ACTIONS(2405), - [aux_sym__val_number_decimal_token4] = ACTIONS(2405), - [aux_sym__val_number_token1] = ACTIONS(2405), - [aux_sym__val_number_token2] = ACTIONS(2405), - [aux_sym__val_number_token3] = ACTIONS(2405), - [aux_sym__val_number_token4] = ACTIONS(2403), - [aux_sym__val_number_token5] = ACTIONS(2403), - [aux_sym__val_number_token6] = ACTIONS(2403), - [anon_sym_DQUOTE] = ACTIONS(2405), - [sym__str_single_quotes] = ACTIONS(2405), - [sym__str_back_ticks] = ACTIONS(2405), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), + [708] = { + [sym_comment] = STATE(708), + [anon_sym_export] = ACTIONS(1859), + [anon_sym_alias] = ACTIONS(1859), + [anon_sym_let] = ACTIONS(1859), + [anon_sym_let_DASHenv] = ACTIONS(1859), + [anon_sym_mut] = ACTIONS(1859), + [anon_sym_const] = ACTIONS(1859), + [aux_sym_cmd_identifier_token1] = ACTIONS(1859), + [aux_sym_cmd_identifier_token2] = ACTIONS(1861), + [aux_sym_cmd_identifier_token3] = ACTIONS(1861), + [aux_sym_cmd_identifier_token4] = ACTIONS(1861), + [aux_sym_cmd_identifier_token5] = ACTIONS(1861), + [aux_sym_cmd_identifier_token6] = ACTIONS(1861), + [aux_sym_cmd_identifier_token7] = ACTIONS(1861), + [aux_sym_cmd_identifier_token8] = ACTIONS(1859), + [aux_sym_cmd_identifier_token9] = ACTIONS(1859), + [aux_sym_cmd_identifier_token10] = ACTIONS(1861), + [aux_sym_cmd_identifier_token11] = ACTIONS(1861), + [aux_sym_cmd_identifier_token12] = ACTIONS(1859), + [aux_sym_cmd_identifier_token13] = ACTIONS(1859), + [aux_sym_cmd_identifier_token14] = ACTIONS(1859), + [aux_sym_cmd_identifier_token15] = ACTIONS(1859), + [aux_sym_cmd_identifier_token16] = ACTIONS(1861), + [aux_sym_cmd_identifier_token17] = ACTIONS(1861), + [aux_sym_cmd_identifier_token18] = ACTIONS(1861), + [aux_sym_cmd_identifier_token19] = ACTIONS(1861), + [aux_sym_cmd_identifier_token20] = ACTIONS(1861), + [aux_sym_cmd_identifier_token21] = ACTIONS(1861), + [aux_sym_cmd_identifier_token22] = ACTIONS(1861), + [aux_sym_cmd_identifier_token23] = ACTIONS(1861), + [aux_sym_cmd_identifier_token24] = ACTIONS(1861), + [aux_sym_cmd_identifier_token25] = ACTIONS(1861), + [aux_sym_cmd_identifier_token26] = ACTIONS(1861), + [aux_sym_cmd_identifier_token27] = ACTIONS(1861), + [aux_sym_cmd_identifier_token28] = ACTIONS(1861), + [aux_sym_cmd_identifier_token29] = ACTIONS(1861), + [aux_sym_cmd_identifier_token30] = ACTIONS(1861), + [aux_sym_cmd_identifier_token31] = ACTIONS(1861), + [aux_sym_cmd_identifier_token32] = ACTIONS(1861), + [aux_sym_cmd_identifier_token33] = ACTIONS(1861), + [aux_sym_cmd_identifier_token34] = ACTIONS(1859), + [aux_sym_cmd_identifier_token35] = ACTIONS(1861), + [aux_sym_cmd_identifier_token36] = ACTIONS(1861), + [aux_sym_cmd_identifier_token37] = ACTIONS(1861), + [aux_sym_cmd_identifier_token38] = ACTIONS(1859), + [aux_sym_cmd_identifier_token39] = ACTIONS(1861), + [aux_sym_cmd_identifier_token40] = ACTIONS(1861), + [anon_sym_def] = ACTIONS(1859), + [anon_sym_export_DASHenv] = ACTIONS(1859), + [anon_sym_extern] = ACTIONS(1859), + [anon_sym_module] = ACTIONS(1859), + [anon_sym_use] = ACTIONS(1859), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_COMMA] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1861), + [anon_sym_error] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_break] = ACTIONS(1859), + [anon_sym_continue] = ACTIONS(1859), + [anon_sym_for] = ACTIONS(1859), + [anon_sym_in2] = ACTIONS(1859), + [anon_sym_loop] = ACTIONS(1859), + [anon_sym_make] = ACTIONS(1859), + [anon_sym_while] = ACTIONS(1859), + [anon_sym_do] = ACTIONS(1859), + [anon_sym_if] = ACTIONS(1859), + [anon_sym_else] = ACTIONS(1859), + [anon_sym_match] = ACTIONS(1859), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_try] = ACTIONS(1859), + [anon_sym_catch] = ACTIONS(1859), + [anon_sym_return] = ACTIONS(1859), + [anon_sym_source] = ACTIONS(1859), + [anon_sym_source_DASHenv] = ACTIONS(1859), + [anon_sym_register] = ACTIONS(1859), + [anon_sym_hide] = ACTIONS(1859), + [anon_sym_hide_DASHenv] = ACTIONS(1859), + [anon_sym_overlay] = ACTIONS(1859), + [anon_sym_as] = ACTIONS(1859), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1859), + [aux_sym__val_number_token5] = ACTIONS(1859), + [aux_sym__val_number_token6] = ACTIONS(1859), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1861), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2405), - }, - [727] = { - [sym_comment] = STATE(727), - [anon_sym_export] = ACTIONS(2116), - [anon_sym_alias] = ACTIONS(2116), - [anon_sym_let] = ACTIONS(2116), - [anon_sym_let_DASHenv] = ACTIONS(2116), - [anon_sym_mut] = ACTIONS(2116), - [anon_sym_const] = ACTIONS(2116), - [aux_sym_cmd_identifier_token1] = ACTIONS(2116), - [aux_sym_cmd_identifier_token2] = ACTIONS(2118), - [aux_sym_cmd_identifier_token3] = ACTIONS(2118), - [aux_sym_cmd_identifier_token4] = ACTIONS(2118), - [aux_sym_cmd_identifier_token5] = ACTIONS(2118), - [aux_sym_cmd_identifier_token6] = ACTIONS(2118), - [aux_sym_cmd_identifier_token7] = ACTIONS(2118), - [aux_sym_cmd_identifier_token8] = ACTIONS(2116), - [aux_sym_cmd_identifier_token9] = ACTIONS(2116), - [aux_sym_cmd_identifier_token10] = ACTIONS(2118), - [aux_sym_cmd_identifier_token11] = ACTIONS(2118), - [aux_sym_cmd_identifier_token12] = ACTIONS(2116), - [aux_sym_cmd_identifier_token13] = ACTIONS(2116), - [aux_sym_cmd_identifier_token14] = ACTIONS(2116), - [aux_sym_cmd_identifier_token15] = ACTIONS(2116), - [aux_sym_cmd_identifier_token16] = ACTIONS(2118), - [aux_sym_cmd_identifier_token17] = ACTIONS(2118), - [aux_sym_cmd_identifier_token18] = ACTIONS(2118), - [aux_sym_cmd_identifier_token19] = ACTIONS(2118), - [aux_sym_cmd_identifier_token20] = ACTIONS(2118), - [aux_sym_cmd_identifier_token21] = ACTIONS(2118), - [aux_sym_cmd_identifier_token22] = ACTIONS(2118), - [aux_sym_cmd_identifier_token23] = ACTIONS(2118), - [aux_sym_cmd_identifier_token24] = ACTIONS(2118), - [aux_sym_cmd_identifier_token25] = ACTIONS(2118), - [aux_sym_cmd_identifier_token26] = ACTIONS(2118), - [aux_sym_cmd_identifier_token27] = ACTIONS(2118), - [aux_sym_cmd_identifier_token28] = ACTIONS(2118), - [aux_sym_cmd_identifier_token29] = ACTIONS(2118), - [aux_sym_cmd_identifier_token30] = ACTIONS(2118), - [aux_sym_cmd_identifier_token31] = ACTIONS(2118), - [aux_sym_cmd_identifier_token32] = ACTIONS(2118), - [aux_sym_cmd_identifier_token33] = ACTIONS(2118), - [aux_sym_cmd_identifier_token34] = ACTIONS(2116), - [aux_sym_cmd_identifier_token35] = ACTIONS(2118), - [aux_sym_cmd_identifier_token36] = ACTIONS(2118), - [aux_sym_cmd_identifier_token37] = ACTIONS(2118), - [aux_sym_cmd_identifier_token38] = ACTIONS(2116), - [aux_sym_cmd_identifier_token39] = ACTIONS(2118), - [aux_sym_cmd_identifier_token40] = ACTIONS(2118), - [anon_sym_def] = ACTIONS(2116), - [anon_sym_export_DASHenv] = ACTIONS(2116), - [anon_sym_extern] = ACTIONS(2116), - [anon_sym_module] = ACTIONS(2116), - [anon_sym_use] = ACTIONS(2116), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2118), - [anon_sym_error] = ACTIONS(2116), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_break] = ACTIONS(2116), - [anon_sym_continue] = ACTIONS(2116), - [anon_sym_for] = ACTIONS(2116), - [anon_sym_in2] = ACTIONS(2116), - [anon_sym_loop] = ACTIONS(2116), - [anon_sym_make] = ACTIONS(2116), - [anon_sym_while] = ACTIONS(2116), - [anon_sym_do] = ACTIONS(2116), - [anon_sym_if] = ACTIONS(2116), - [anon_sym_else] = ACTIONS(2116), - [anon_sym_match] = ACTIONS(2116), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_try] = ACTIONS(2116), - [anon_sym_catch] = ACTIONS(2116), - [anon_sym_return] = ACTIONS(2116), - [anon_sym_source] = ACTIONS(2116), - [anon_sym_source_DASHenv] = ACTIONS(2116), - [anon_sym_register] = ACTIONS(2116), - [anon_sym_hide] = ACTIONS(2116), - [anon_sym_hide_DASHenv] = ACTIONS(2116), - [anon_sym_overlay] = ACTIONS(2116), - [anon_sym_as] = ACTIONS(2116), - [anon_sym_PLUS2] = ACTIONS(2116), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2116), - [aux_sym__val_number_decimal_token2] = ACTIONS(2118), - [aux_sym__val_number_decimal_token3] = ACTIONS(2118), - [aux_sym__val_number_decimal_token4] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2116), - [aux_sym__val_number_token5] = ACTIONS(2116), - [aux_sym__val_number_token6] = ACTIONS(2116), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2118), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2118), + [sym_raw_string_begin] = ACTIONS(1861), }, - [728] = { - [sym_comment] = STATE(728), - [anon_sym_export] = ACTIONS(2423), - [anon_sym_alias] = ACTIONS(2423), - [anon_sym_let] = ACTIONS(2423), - [anon_sym_let_DASHenv] = ACTIONS(2423), - [anon_sym_mut] = ACTIONS(2423), - [anon_sym_const] = ACTIONS(2423), - [aux_sym_cmd_identifier_token1] = ACTIONS(2423), - [aux_sym_cmd_identifier_token2] = ACTIONS(2425), - [aux_sym_cmd_identifier_token3] = ACTIONS(2425), - [aux_sym_cmd_identifier_token4] = ACTIONS(2425), - [aux_sym_cmd_identifier_token5] = ACTIONS(2425), - [aux_sym_cmd_identifier_token6] = ACTIONS(2425), - [aux_sym_cmd_identifier_token7] = ACTIONS(2425), - [aux_sym_cmd_identifier_token8] = ACTIONS(2423), - [aux_sym_cmd_identifier_token9] = ACTIONS(2423), - [aux_sym_cmd_identifier_token10] = ACTIONS(2425), - [aux_sym_cmd_identifier_token11] = ACTIONS(2425), - [aux_sym_cmd_identifier_token12] = ACTIONS(2423), - [aux_sym_cmd_identifier_token13] = ACTIONS(2423), - [aux_sym_cmd_identifier_token14] = ACTIONS(2423), - [aux_sym_cmd_identifier_token15] = ACTIONS(2423), - [aux_sym_cmd_identifier_token16] = ACTIONS(2425), - [aux_sym_cmd_identifier_token17] = ACTIONS(2425), - [aux_sym_cmd_identifier_token18] = ACTIONS(2425), - [aux_sym_cmd_identifier_token19] = ACTIONS(2425), - [aux_sym_cmd_identifier_token20] = ACTIONS(2425), - [aux_sym_cmd_identifier_token21] = ACTIONS(2425), - [aux_sym_cmd_identifier_token22] = ACTIONS(2425), - [aux_sym_cmd_identifier_token23] = ACTIONS(2425), - [aux_sym_cmd_identifier_token24] = ACTIONS(2425), - [aux_sym_cmd_identifier_token25] = ACTIONS(2425), - [aux_sym_cmd_identifier_token26] = ACTIONS(2425), - [aux_sym_cmd_identifier_token27] = ACTIONS(2425), - [aux_sym_cmd_identifier_token28] = ACTIONS(2425), - [aux_sym_cmd_identifier_token29] = ACTIONS(2425), - [aux_sym_cmd_identifier_token30] = ACTIONS(2425), - [aux_sym_cmd_identifier_token31] = ACTIONS(2425), - [aux_sym_cmd_identifier_token32] = ACTIONS(2425), - [aux_sym_cmd_identifier_token33] = ACTIONS(2425), - [aux_sym_cmd_identifier_token34] = ACTIONS(2423), - [aux_sym_cmd_identifier_token35] = ACTIONS(2425), - [aux_sym_cmd_identifier_token36] = ACTIONS(2425), - [aux_sym_cmd_identifier_token37] = ACTIONS(2425), - [aux_sym_cmd_identifier_token38] = ACTIONS(2423), - [aux_sym_cmd_identifier_token39] = ACTIONS(2425), - [aux_sym_cmd_identifier_token40] = ACTIONS(2425), - [anon_sym_def] = ACTIONS(2423), - [anon_sym_export_DASHenv] = ACTIONS(2423), - [anon_sym_extern] = ACTIONS(2423), - [anon_sym_module] = ACTIONS(2423), - [anon_sym_use] = ACTIONS(2423), - [anon_sym_LPAREN] = ACTIONS(2425), - [anon_sym_DOLLAR] = ACTIONS(2425), - [anon_sym_error] = ACTIONS(2423), - [anon_sym_DASH2] = ACTIONS(2423), - [anon_sym_break] = ACTIONS(2423), - [anon_sym_continue] = ACTIONS(2423), - [anon_sym_for] = ACTIONS(2423), - [anon_sym_in2] = ACTIONS(2423), - [anon_sym_loop] = ACTIONS(2423), - [anon_sym_make] = ACTIONS(2423), - [anon_sym_while] = ACTIONS(2423), - [anon_sym_do] = ACTIONS(2423), - [anon_sym_if] = ACTIONS(2423), - [anon_sym_else] = ACTIONS(2423), - [anon_sym_match] = ACTIONS(2423), - [anon_sym_RBRACE] = ACTIONS(2425), - [anon_sym_try] = ACTIONS(2423), - [anon_sym_catch] = ACTIONS(2423), - [anon_sym_return] = ACTIONS(2423), - [anon_sym_source] = ACTIONS(2423), - [anon_sym_source_DASHenv] = ACTIONS(2423), - [anon_sym_register] = ACTIONS(2423), - [anon_sym_hide] = ACTIONS(2423), - [anon_sym_hide_DASHenv] = ACTIONS(2423), - [anon_sym_overlay] = ACTIONS(2423), - [anon_sym_as] = ACTIONS(2423), - [anon_sym_PLUS2] = ACTIONS(2423), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2425), - [aux_sym__val_number_decimal_token1] = ACTIONS(2423), - [aux_sym__val_number_decimal_token2] = ACTIONS(2425), - [aux_sym__val_number_decimal_token3] = ACTIONS(2425), - [aux_sym__val_number_decimal_token4] = ACTIONS(2425), - [aux_sym__val_number_token1] = ACTIONS(2425), - [aux_sym__val_number_token2] = ACTIONS(2425), - [aux_sym__val_number_token3] = ACTIONS(2425), - [aux_sym__val_number_token4] = ACTIONS(2423), - [aux_sym__val_number_token5] = ACTIONS(2423), - [aux_sym__val_number_token6] = ACTIONS(2423), - [anon_sym_DQUOTE] = ACTIONS(2425), - [sym__str_single_quotes] = ACTIONS(2425), - [sym__str_back_ticks] = ACTIONS(2425), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2425), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2425), + [709] = { + [sym_comment] = STATE(709), + [anon_sym_export] = ACTIONS(2358), + [anon_sym_alias] = ACTIONS(2358), + [anon_sym_let] = ACTIONS(2358), + [anon_sym_let_DASHenv] = ACTIONS(2358), + [anon_sym_mut] = ACTIONS(2358), + [anon_sym_const] = ACTIONS(2358), + [aux_sym_cmd_identifier_token1] = ACTIONS(2358), + [aux_sym_cmd_identifier_token2] = ACTIONS(2360), + [aux_sym_cmd_identifier_token3] = ACTIONS(2360), + [aux_sym_cmd_identifier_token4] = ACTIONS(2360), + [aux_sym_cmd_identifier_token5] = ACTIONS(2360), + [aux_sym_cmd_identifier_token6] = ACTIONS(2360), + [aux_sym_cmd_identifier_token7] = ACTIONS(2360), + [aux_sym_cmd_identifier_token8] = ACTIONS(2358), + [aux_sym_cmd_identifier_token9] = ACTIONS(2358), + [aux_sym_cmd_identifier_token10] = ACTIONS(2360), + [aux_sym_cmd_identifier_token11] = ACTIONS(2360), + [aux_sym_cmd_identifier_token12] = ACTIONS(2358), + [aux_sym_cmd_identifier_token13] = ACTIONS(2358), + [aux_sym_cmd_identifier_token14] = ACTIONS(2358), + [aux_sym_cmd_identifier_token15] = ACTIONS(2358), + [aux_sym_cmd_identifier_token16] = ACTIONS(2360), + [aux_sym_cmd_identifier_token17] = ACTIONS(2360), + [aux_sym_cmd_identifier_token18] = ACTIONS(2360), + [aux_sym_cmd_identifier_token19] = ACTIONS(2360), + [aux_sym_cmd_identifier_token20] = ACTIONS(2360), + [aux_sym_cmd_identifier_token21] = ACTIONS(2360), + [aux_sym_cmd_identifier_token22] = ACTIONS(2360), + [aux_sym_cmd_identifier_token23] = ACTIONS(2360), + [aux_sym_cmd_identifier_token24] = ACTIONS(2360), + [aux_sym_cmd_identifier_token25] = ACTIONS(2360), + [aux_sym_cmd_identifier_token26] = ACTIONS(2360), + [aux_sym_cmd_identifier_token27] = ACTIONS(2360), + [aux_sym_cmd_identifier_token28] = ACTIONS(2360), + [aux_sym_cmd_identifier_token29] = ACTIONS(2360), + [aux_sym_cmd_identifier_token30] = ACTIONS(2360), + [aux_sym_cmd_identifier_token31] = ACTIONS(2360), + [aux_sym_cmd_identifier_token32] = ACTIONS(2360), + [aux_sym_cmd_identifier_token33] = ACTIONS(2360), + [aux_sym_cmd_identifier_token34] = ACTIONS(2358), + [aux_sym_cmd_identifier_token35] = ACTIONS(2360), + [aux_sym_cmd_identifier_token36] = ACTIONS(2360), + [aux_sym_cmd_identifier_token37] = ACTIONS(2360), + [aux_sym_cmd_identifier_token38] = ACTIONS(2358), + [aux_sym_cmd_identifier_token39] = ACTIONS(2360), + [aux_sym_cmd_identifier_token40] = ACTIONS(2360), + [anon_sym_def] = ACTIONS(2358), + [anon_sym_export_DASHenv] = ACTIONS(2358), + [anon_sym_extern] = ACTIONS(2358), + [anon_sym_module] = ACTIONS(2358), + [anon_sym_use] = ACTIONS(2358), + [anon_sym_LPAREN] = ACTIONS(2360), + [anon_sym_COMMA] = ACTIONS(2360), + [anon_sym_DOLLAR] = ACTIONS(2360), + [anon_sym_error] = ACTIONS(2358), + [anon_sym_DASH2] = ACTIONS(2358), + [anon_sym_break] = ACTIONS(2358), + [anon_sym_continue] = ACTIONS(2358), + [anon_sym_for] = ACTIONS(2358), + [anon_sym_in2] = ACTIONS(2358), + [anon_sym_loop] = ACTIONS(2358), + [anon_sym_make] = ACTIONS(2358), + [anon_sym_while] = ACTIONS(2358), + [anon_sym_do] = ACTIONS(2358), + [anon_sym_if] = ACTIONS(2358), + [anon_sym_else] = ACTIONS(2358), + [anon_sym_match] = ACTIONS(2358), + [anon_sym_RBRACE] = ACTIONS(2360), + [anon_sym_try] = ACTIONS(2358), + [anon_sym_catch] = ACTIONS(2358), + [anon_sym_return] = ACTIONS(2358), + [anon_sym_source] = ACTIONS(2358), + [anon_sym_source_DASHenv] = ACTIONS(2358), + [anon_sym_register] = ACTIONS(2358), + [anon_sym_hide] = ACTIONS(2358), + [anon_sym_hide_DASHenv] = ACTIONS(2358), + [anon_sym_overlay] = ACTIONS(2358), + [anon_sym_as] = ACTIONS(2358), + [anon_sym_PLUS2] = ACTIONS(2358), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2360), + [aux_sym__val_number_decimal_token1] = ACTIONS(2358), + [aux_sym__val_number_decimal_token2] = ACTIONS(2360), + [aux_sym__val_number_decimal_token3] = ACTIONS(2360), + [aux_sym__val_number_decimal_token4] = ACTIONS(2360), + [aux_sym__val_number_token1] = ACTIONS(2360), + [aux_sym__val_number_token2] = ACTIONS(2360), + [aux_sym__val_number_token3] = ACTIONS(2360), + [aux_sym__val_number_token4] = ACTIONS(2358), + [aux_sym__val_number_token5] = ACTIONS(2358), + [aux_sym__val_number_token6] = ACTIONS(2358), + [anon_sym_DQUOTE] = ACTIONS(2360), + [sym__str_single_quotes] = ACTIONS(2360), + [sym__str_back_ticks] = ACTIONS(2360), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2360), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2360), }, - [729] = { - [sym_comment] = STATE(729), - [anon_sym_export] = ACTIONS(1004), - [anon_sym_alias] = ACTIONS(1004), - [anon_sym_let] = ACTIONS(1004), - [anon_sym_let_DASHenv] = ACTIONS(1004), - [anon_sym_mut] = ACTIONS(1004), - [anon_sym_const] = ACTIONS(1004), - [aux_sym_cmd_identifier_token1] = ACTIONS(1004), - [aux_sym_cmd_identifier_token2] = ACTIONS(1000), - [aux_sym_cmd_identifier_token3] = ACTIONS(1000), - [aux_sym_cmd_identifier_token4] = ACTIONS(1000), - [aux_sym_cmd_identifier_token5] = ACTIONS(1000), - [aux_sym_cmd_identifier_token6] = ACTIONS(1000), - [aux_sym_cmd_identifier_token7] = ACTIONS(1000), - [aux_sym_cmd_identifier_token8] = ACTIONS(1004), - [aux_sym_cmd_identifier_token9] = ACTIONS(1004), - [aux_sym_cmd_identifier_token10] = ACTIONS(1000), - [aux_sym_cmd_identifier_token11] = ACTIONS(1000), - [aux_sym_cmd_identifier_token12] = ACTIONS(1004), - [aux_sym_cmd_identifier_token13] = ACTIONS(1004), - [aux_sym_cmd_identifier_token14] = ACTIONS(1004), - [aux_sym_cmd_identifier_token15] = ACTIONS(1004), - [aux_sym_cmd_identifier_token16] = ACTIONS(1000), - [aux_sym_cmd_identifier_token17] = ACTIONS(1000), - [aux_sym_cmd_identifier_token18] = ACTIONS(1000), - [aux_sym_cmd_identifier_token19] = ACTIONS(1000), - [aux_sym_cmd_identifier_token20] = ACTIONS(1000), - [aux_sym_cmd_identifier_token21] = ACTIONS(1000), - [aux_sym_cmd_identifier_token22] = ACTIONS(1000), - [aux_sym_cmd_identifier_token23] = ACTIONS(1000), - [aux_sym_cmd_identifier_token24] = ACTIONS(1000), - [aux_sym_cmd_identifier_token25] = ACTIONS(1000), - [aux_sym_cmd_identifier_token26] = ACTIONS(1000), - [aux_sym_cmd_identifier_token27] = ACTIONS(1000), - [aux_sym_cmd_identifier_token28] = ACTIONS(1000), - [aux_sym_cmd_identifier_token29] = ACTIONS(1000), - [aux_sym_cmd_identifier_token30] = ACTIONS(1000), - [aux_sym_cmd_identifier_token31] = ACTIONS(1000), - [aux_sym_cmd_identifier_token32] = ACTIONS(1000), - [aux_sym_cmd_identifier_token33] = ACTIONS(1000), - [aux_sym_cmd_identifier_token34] = ACTIONS(1004), - [aux_sym_cmd_identifier_token35] = ACTIONS(1000), - [aux_sym_cmd_identifier_token36] = ACTIONS(1000), - [aux_sym_cmd_identifier_token37] = ACTIONS(1000), - [aux_sym_cmd_identifier_token38] = ACTIONS(1004), - [aux_sym_cmd_identifier_token39] = ACTIONS(1000), - [aux_sym_cmd_identifier_token40] = ACTIONS(1000), - [anon_sym_def] = ACTIONS(1004), - [anon_sym_export_DASHenv] = ACTIONS(1004), - [anon_sym_extern] = ACTIONS(1004), - [anon_sym_module] = ACTIONS(1004), - [anon_sym_use] = ACTIONS(1004), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1000), - [anon_sym_error] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_break] = ACTIONS(1004), - [anon_sym_continue] = ACTIONS(1004), - [anon_sym_for] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1004), - [anon_sym_loop] = ACTIONS(1004), - [anon_sym_make] = ACTIONS(1004), - [anon_sym_while] = ACTIONS(1004), - [anon_sym_do] = ACTIONS(1004), - [anon_sym_if] = ACTIONS(1004), - [anon_sym_else] = ACTIONS(1004), - [anon_sym_match] = ACTIONS(1004), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_try] = ACTIONS(1004), - [anon_sym_catch] = ACTIONS(1004), - [anon_sym_return] = ACTIONS(1004), - [anon_sym_source] = ACTIONS(1004), - [anon_sym_source_DASHenv] = ACTIONS(1004), - [anon_sym_register] = ACTIONS(1004), - [anon_sym_hide] = ACTIONS(1004), - [anon_sym_hide_DASHenv] = ACTIONS(1004), - [anon_sym_overlay] = ACTIONS(1004), - [anon_sym_as] = ACTIONS(1004), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1000), + [710] = { + [sym_comment] = STATE(710), + [anon_sym_export] = ACTIONS(2012), + [anon_sym_alias] = ACTIONS(2012), + [anon_sym_let] = ACTIONS(2012), + [anon_sym_let_DASHenv] = ACTIONS(2012), + [anon_sym_mut] = ACTIONS(2012), + [anon_sym_const] = ACTIONS(2012), + [aux_sym_cmd_identifier_token1] = ACTIONS(2012), + [aux_sym_cmd_identifier_token2] = ACTIONS(2014), + [aux_sym_cmd_identifier_token3] = ACTIONS(2014), + [aux_sym_cmd_identifier_token4] = ACTIONS(2014), + [aux_sym_cmd_identifier_token5] = ACTIONS(2014), + [aux_sym_cmd_identifier_token6] = ACTIONS(2014), + [aux_sym_cmd_identifier_token7] = ACTIONS(2014), + [aux_sym_cmd_identifier_token8] = ACTIONS(2012), + [aux_sym_cmd_identifier_token9] = ACTIONS(2012), + [aux_sym_cmd_identifier_token10] = ACTIONS(2014), + [aux_sym_cmd_identifier_token11] = ACTIONS(2014), + [aux_sym_cmd_identifier_token12] = ACTIONS(2012), + [aux_sym_cmd_identifier_token13] = ACTIONS(2012), + [aux_sym_cmd_identifier_token14] = ACTIONS(2012), + [aux_sym_cmd_identifier_token15] = ACTIONS(2012), + [aux_sym_cmd_identifier_token16] = ACTIONS(2014), + [aux_sym_cmd_identifier_token17] = ACTIONS(2014), + [aux_sym_cmd_identifier_token18] = ACTIONS(2014), + [aux_sym_cmd_identifier_token19] = ACTIONS(2014), + [aux_sym_cmd_identifier_token20] = ACTIONS(2014), + [aux_sym_cmd_identifier_token21] = ACTIONS(2014), + [aux_sym_cmd_identifier_token22] = ACTIONS(2014), + [aux_sym_cmd_identifier_token23] = ACTIONS(2014), + [aux_sym_cmd_identifier_token24] = ACTIONS(2014), + [aux_sym_cmd_identifier_token25] = ACTIONS(2014), + [aux_sym_cmd_identifier_token26] = ACTIONS(2014), + [aux_sym_cmd_identifier_token27] = ACTIONS(2014), + [aux_sym_cmd_identifier_token28] = ACTIONS(2014), + [aux_sym_cmd_identifier_token29] = ACTIONS(2014), + [aux_sym_cmd_identifier_token30] = ACTIONS(2014), + [aux_sym_cmd_identifier_token31] = ACTIONS(2014), + [aux_sym_cmd_identifier_token32] = ACTIONS(2014), + [aux_sym_cmd_identifier_token33] = ACTIONS(2014), + [aux_sym_cmd_identifier_token34] = ACTIONS(2012), + [aux_sym_cmd_identifier_token35] = ACTIONS(2014), + [aux_sym_cmd_identifier_token36] = ACTIONS(2014), + [aux_sym_cmd_identifier_token37] = ACTIONS(2014), + [aux_sym_cmd_identifier_token38] = ACTIONS(2012), + [aux_sym_cmd_identifier_token39] = ACTIONS(2014), + [aux_sym_cmd_identifier_token40] = ACTIONS(2014), + [anon_sym_def] = ACTIONS(2012), + [anon_sym_export_DASHenv] = ACTIONS(2012), + [anon_sym_extern] = ACTIONS(2012), + [anon_sym_module] = ACTIONS(2012), + [anon_sym_use] = ACTIONS(2012), + [anon_sym_LPAREN] = ACTIONS(2014), + [anon_sym_COMMA] = ACTIONS(2014), + [anon_sym_DOLLAR] = ACTIONS(2014), + [anon_sym_error] = ACTIONS(2012), + [anon_sym_DASH2] = ACTIONS(2012), + [anon_sym_break] = ACTIONS(2012), + [anon_sym_continue] = ACTIONS(2012), + [anon_sym_for] = ACTIONS(2012), + [anon_sym_in2] = ACTIONS(2012), + [anon_sym_loop] = ACTIONS(2012), + [anon_sym_make] = ACTIONS(2012), + [anon_sym_while] = ACTIONS(2012), + [anon_sym_do] = ACTIONS(2012), + [anon_sym_if] = ACTIONS(2012), + [anon_sym_else] = ACTIONS(2012), + [anon_sym_match] = ACTIONS(2012), + [anon_sym_RBRACE] = ACTIONS(2014), + [anon_sym_try] = ACTIONS(2012), + [anon_sym_catch] = ACTIONS(2012), + [anon_sym_return] = ACTIONS(2012), + [anon_sym_source] = ACTIONS(2012), + [anon_sym_source_DASHenv] = ACTIONS(2012), + [anon_sym_register] = ACTIONS(2012), + [anon_sym_hide] = ACTIONS(2012), + [anon_sym_hide_DASHenv] = ACTIONS(2012), + [anon_sym_overlay] = ACTIONS(2012), + [anon_sym_as] = ACTIONS(2012), + [anon_sym_PLUS2] = ACTIONS(2012), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2014), + [aux_sym__val_number_decimal_token1] = ACTIONS(2012), + [aux_sym__val_number_decimal_token2] = ACTIONS(2014), + [aux_sym__val_number_decimal_token3] = ACTIONS(2014), + [aux_sym__val_number_decimal_token4] = ACTIONS(2014), + [aux_sym__val_number_token1] = ACTIONS(2014), + [aux_sym__val_number_token2] = ACTIONS(2014), + [aux_sym__val_number_token3] = ACTIONS(2014), + [aux_sym__val_number_token4] = ACTIONS(2012), + [aux_sym__val_number_token5] = ACTIONS(2012), + [aux_sym__val_number_token6] = ACTIONS(2012), + [anon_sym_DQUOTE] = ACTIONS(2014), + [sym__str_single_quotes] = ACTIONS(2014), + [sym__str_back_ticks] = ACTIONS(2014), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2014), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2014), }, - [730] = { - [sym_comment] = STATE(730), + [711] = { + [sym_comment] = STATE(711), [anon_sym_export] = ACTIONS(964), [anon_sym_alias] = ACTIONS(964), [anon_sym_let] = ACTIONS(964), @@ -157743,6 +156217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(964), [anon_sym_use] = ACTIONS(964), [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_COMMA] = ACTIONS(966), [anon_sym_DOLLAR] = ACTIONS(966), [anon_sym_error] = ACTIONS(964), [anon_sym_DASH2] = ACTIONS(964), @@ -157788,8 +156263,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(966), }, - [731] = { - [sym_comment] = STATE(731), + [712] = { + [sym_comment] = STATE(712), + [anon_sym_export] = ACTIONS(2471), + [anon_sym_alias] = ACTIONS(2471), + [anon_sym_let] = ACTIONS(2471), + [anon_sym_let_DASHenv] = ACTIONS(2471), + [anon_sym_mut] = ACTIONS(2471), + [anon_sym_const] = ACTIONS(2471), + [aux_sym_cmd_identifier_token1] = ACTIONS(2471), + [aux_sym_cmd_identifier_token2] = ACTIONS(2473), + [aux_sym_cmd_identifier_token3] = ACTIONS(2473), + [aux_sym_cmd_identifier_token4] = ACTIONS(2473), + [aux_sym_cmd_identifier_token5] = ACTIONS(2473), + [aux_sym_cmd_identifier_token6] = ACTIONS(2473), + [aux_sym_cmd_identifier_token7] = ACTIONS(2473), + [aux_sym_cmd_identifier_token8] = ACTIONS(2471), + [aux_sym_cmd_identifier_token9] = ACTIONS(2471), + [aux_sym_cmd_identifier_token10] = ACTIONS(2473), + [aux_sym_cmd_identifier_token11] = ACTIONS(2473), + [aux_sym_cmd_identifier_token12] = ACTIONS(2471), + [aux_sym_cmd_identifier_token13] = ACTIONS(2471), + [aux_sym_cmd_identifier_token14] = ACTIONS(2471), + [aux_sym_cmd_identifier_token15] = ACTIONS(2471), + [aux_sym_cmd_identifier_token16] = ACTIONS(2473), + [aux_sym_cmd_identifier_token17] = ACTIONS(2473), + [aux_sym_cmd_identifier_token18] = ACTIONS(2473), + [aux_sym_cmd_identifier_token19] = ACTIONS(2473), + [aux_sym_cmd_identifier_token20] = ACTIONS(2473), + [aux_sym_cmd_identifier_token21] = ACTIONS(2473), + [aux_sym_cmd_identifier_token22] = ACTIONS(2473), + [aux_sym_cmd_identifier_token23] = ACTIONS(2473), + [aux_sym_cmd_identifier_token24] = ACTIONS(2473), + [aux_sym_cmd_identifier_token25] = ACTIONS(2473), + [aux_sym_cmd_identifier_token26] = ACTIONS(2473), + [aux_sym_cmd_identifier_token27] = ACTIONS(2473), + [aux_sym_cmd_identifier_token28] = ACTIONS(2473), + [aux_sym_cmd_identifier_token29] = ACTIONS(2473), + [aux_sym_cmd_identifier_token30] = ACTIONS(2473), + [aux_sym_cmd_identifier_token31] = ACTIONS(2473), + [aux_sym_cmd_identifier_token32] = ACTIONS(2473), + [aux_sym_cmd_identifier_token33] = ACTIONS(2473), + [aux_sym_cmd_identifier_token34] = ACTIONS(2471), + [aux_sym_cmd_identifier_token35] = ACTIONS(2473), + [aux_sym_cmd_identifier_token36] = ACTIONS(2473), + [aux_sym_cmd_identifier_token37] = ACTIONS(2473), + [aux_sym_cmd_identifier_token38] = ACTIONS(2471), + [aux_sym_cmd_identifier_token39] = ACTIONS(2473), + [aux_sym_cmd_identifier_token40] = ACTIONS(2473), + [anon_sym_def] = ACTIONS(2471), + [anon_sym_export_DASHenv] = ACTIONS(2471), + [anon_sym_extern] = ACTIONS(2471), + [anon_sym_module] = ACTIONS(2471), + [anon_sym_use] = ACTIONS(2471), + [anon_sym_LPAREN] = ACTIONS(2473), + [anon_sym_COMMA] = ACTIONS(2473), + [anon_sym_DOLLAR] = ACTIONS(2473), + [anon_sym_error] = ACTIONS(2471), + [anon_sym_DASH2] = ACTIONS(2471), + [anon_sym_break] = ACTIONS(2471), + [anon_sym_continue] = ACTIONS(2471), + [anon_sym_for] = ACTIONS(2471), + [anon_sym_in2] = ACTIONS(2471), + [anon_sym_loop] = ACTIONS(2471), + [anon_sym_make] = ACTIONS(2471), + [anon_sym_while] = ACTIONS(2471), + [anon_sym_do] = ACTIONS(2471), + [anon_sym_if] = ACTIONS(2471), + [anon_sym_else] = ACTIONS(2471), + [anon_sym_match] = ACTIONS(2471), + [anon_sym_RBRACE] = ACTIONS(2473), + [anon_sym_try] = ACTIONS(2471), + [anon_sym_catch] = ACTIONS(2471), + [anon_sym_return] = ACTIONS(2471), + [anon_sym_source] = ACTIONS(2471), + [anon_sym_source_DASHenv] = ACTIONS(2471), + [anon_sym_register] = ACTIONS(2471), + [anon_sym_hide] = ACTIONS(2471), + [anon_sym_hide_DASHenv] = ACTIONS(2471), + [anon_sym_overlay] = ACTIONS(2471), + [anon_sym_as] = ACTIONS(2471), + [anon_sym_PLUS2] = ACTIONS(2471), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2473), + [aux_sym__val_number_decimal_token1] = ACTIONS(2471), + [aux_sym__val_number_decimal_token2] = ACTIONS(2473), + [aux_sym__val_number_decimal_token3] = ACTIONS(2473), + [aux_sym__val_number_decimal_token4] = ACTIONS(2473), + [aux_sym__val_number_token1] = ACTIONS(2473), + [aux_sym__val_number_token2] = ACTIONS(2473), + [aux_sym__val_number_token3] = ACTIONS(2473), + [aux_sym__val_number_token4] = ACTIONS(2471), + [aux_sym__val_number_token5] = ACTIONS(2471), + [aux_sym__val_number_token6] = ACTIONS(2471), + [anon_sym_DQUOTE] = ACTIONS(2473), + [sym__str_single_quotes] = ACTIONS(2473), + [sym__str_back_ticks] = ACTIONS(2473), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2473), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2473), + }, + [713] = { + [sym_comment] = STATE(713), + [anon_sym_export] = ACTIONS(2362), + [anon_sym_alias] = ACTIONS(2362), + [anon_sym_let] = ACTIONS(2362), + [anon_sym_let_DASHenv] = ACTIONS(2362), + [anon_sym_mut] = ACTIONS(2362), + [anon_sym_const] = ACTIONS(2362), + [aux_sym_cmd_identifier_token1] = ACTIONS(2362), + [aux_sym_cmd_identifier_token2] = ACTIONS(2364), + [aux_sym_cmd_identifier_token3] = ACTIONS(2364), + [aux_sym_cmd_identifier_token4] = ACTIONS(2364), + [aux_sym_cmd_identifier_token5] = ACTIONS(2364), + [aux_sym_cmd_identifier_token6] = ACTIONS(2364), + [aux_sym_cmd_identifier_token7] = ACTIONS(2364), + [aux_sym_cmd_identifier_token8] = ACTIONS(2362), + [aux_sym_cmd_identifier_token9] = ACTIONS(2362), + [aux_sym_cmd_identifier_token10] = ACTIONS(2364), + [aux_sym_cmd_identifier_token11] = ACTIONS(2364), + [aux_sym_cmd_identifier_token12] = ACTIONS(2362), + [aux_sym_cmd_identifier_token13] = ACTIONS(2362), + [aux_sym_cmd_identifier_token14] = ACTIONS(2362), + [aux_sym_cmd_identifier_token15] = ACTIONS(2362), + [aux_sym_cmd_identifier_token16] = ACTIONS(2364), + [aux_sym_cmd_identifier_token17] = ACTIONS(2364), + [aux_sym_cmd_identifier_token18] = ACTIONS(2364), + [aux_sym_cmd_identifier_token19] = ACTIONS(2364), + [aux_sym_cmd_identifier_token20] = ACTIONS(2364), + [aux_sym_cmd_identifier_token21] = ACTIONS(2364), + [aux_sym_cmd_identifier_token22] = ACTIONS(2364), + [aux_sym_cmd_identifier_token23] = ACTIONS(2364), + [aux_sym_cmd_identifier_token24] = ACTIONS(2364), + [aux_sym_cmd_identifier_token25] = ACTIONS(2364), + [aux_sym_cmd_identifier_token26] = ACTIONS(2364), + [aux_sym_cmd_identifier_token27] = ACTIONS(2364), + [aux_sym_cmd_identifier_token28] = ACTIONS(2364), + [aux_sym_cmd_identifier_token29] = ACTIONS(2364), + [aux_sym_cmd_identifier_token30] = ACTIONS(2364), + [aux_sym_cmd_identifier_token31] = ACTIONS(2364), + [aux_sym_cmd_identifier_token32] = ACTIONS(2364), + [aux_sym_cmd_identifier_token33] = ACTIONS(2364), + [aux_sym_cmd_identifier_token34] = ACTIONS(2362), + [aux_sym_cmd_identifier_token35] = ACTIONS(2364), + [aux_sym_cmd_identifier_token36] = ACTIONS(2364), + [aux_sym_cmd_identifier_token37] = ACTIONS(2364), + [aux_sym_cmd_identifier_token38] = ACTIONS(2362), + [aux_sym_cmd_identifier_token39] = ACTIONS(2364), + [aux_sym_cmd_identifier_token40] = ACTIONS(2364), + [anon_sym_def] = ACTIONS(2362), + [anon_sym_export_DASHenv] = ACTIONS(2362), + [anon_sym_extern] = ACTIONS(2362), + [anon_sym_module] = ACTIONS(2362), + [anon_sym_use] = ACTIONS(2362), + [anon_sym_LPAREN] = ACTIONS(2364), + [anon_sym_COMMA] = ACTIONS(2364), + [anon_sym_DOLLAR] = ACTIONS(2364), + [anon_sym_error] = ACTIONS(2362), + [anon_sym_DASH2] = ACTIONS(2362), + [anon_sym_break] = ACTIONS(2362), + [anon_sym_continue] = ACTIONS(2362), + [anon_sym_for] = ACTIONS(2362), + [anon_sym_in2] = ACTIONS(2362), + [anon_sym_loop] = ACTIONS(2362), + [anon_sym_make] = ACTIONS(2362), + [anon_sym_while] = ACTIONS(2362), + [anon_sym_do] = ACTIONS(2362), + [anon_sym_if] = ACTIONS(2362), + [anon_sym_else] = ACTIONS(2362), + [anon_sym_match] = ACTIONS(2362), + [anon_sym_RBRACE] = ACTIONS(2364), + [anon_sym_try] = ACTIONS(2362), + [anon_sym_catch] = ACTIONS(2362), + [anon_sym_return] = ACTIONS(2362), + [anon_sym_source] = ACTIONS(2362), + [anon_sym_source_DASHenv] = ACTIONS(2362), + [anon_sym_register] = ACTIONS(2362), + [anon_sym_hide] = ACTIONS(2362), + [anon_sym_hide_DASHenv] = ACTIONS(2362), + [anon_sym_overlay] = ACTIONS(2362), + [anon_sym_as] = ACTIONS(2362), + [anon_sym_PLUS2] = ACTIONS(2362), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2364), + [aux_sym__val_number_decimal_token1] = ACTIONS(2362), + [aux_sym__val_number_decimal_token2] = ACTIONS(2364), + [aux_sym__val_number_decimal_token3] = ACTIONS(2364), + [aux_sym__val_number_decimal_token4] = ACTIONS(2364), + [aux_sym__val_number_token1] = ACTIONS(2364), + [aux_sym__val_number_token2] = ACTIONS(2364), + [aux_sym__val_number_token3] = ACTIONS(2364), + [aux_sym__val_number_token4] = ACTIONS(2362), + [aux_sym__val_number_token5] = ACTIONS(2362), + [aux_sym__val_number_token6] = ACTIONS(2362), + [anon_sym_DQUOTE] = ACTIONS(2364), + [sym__str_single_quotes] = ACTIONS(2364), + [sym__str_back_ticks] = ACTIONS(2364), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2364), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2364), + }, + [714] = { + [sym_comment] = STATE(714), + [anon_sym_export] = ACTIONS(1863), + [anon_sym_alias] = ACTIONS(1863), + [anon_sym_let] = ACTIONS(1863), + [anon_sym_let_DASHenv] = ACTIONS(1863), + [anon_sym_mut] = ACTIONS(1863), + [anon_sym_const] = ACTIONS(1863), + [aux_sym_cmd_identifier_token1] = ACTIONS(1863), + [aux_sym_cmd_identifier_token2] = ACTIONS(1865), + [aux_sym_cmd_identifier_token3] = ACTIONS(1865), + [aux_sym_cmd_identifier_token4] = ACTIONS(1865), + [aux_sym_cmd_identifier_token5] = ACTIONS(1865), + [aux_sym_cmd_identifier_token6] = ACTIONS(1865), + [aux_sym_cmd_identifier_token7] = ACTIONS(1865), + [aux_sym_cmd_identifier_token8] = ACTIONS(1863), + [aux_sym_cmd_identifier_token9] = ACTIONS(1863), + [aux_sym_cmd_identifier_token10] = ACTIONS(1865), + [aux_sym_cmd_identifier_token11] = ACTIONS(1865), + [aux_sym_cmd_identifier_token12] = ACTIONS(1863), + [aux_sym_cmd_identifier_token13] = ACTIONS(1863), + [aux_sym_cmd_identifier_token14] = ACTIONS(1863), + [aux_sym_cmd_identifier_token15] = ACTIONS(1863), + [aux_sym_cmd_identifier_token16] = ACTIONS(1865), + [aux_sym_cmd_identifier_token17] = ACTIONS(1865), + [aux_sym_cmd_identifier_token18] = ACTIONS(1865), + [aux_sym_cmd_identifier_token19] = ACTIONS(1865), + [aux_sym_cmd_identifier_token20] = ACTIONS(1865), + [aux_sym_cmd_identifier_token21] = ACTIONS(1865), + [aux_sym_cmd_identifier_token22] = ACTIONS(1865), + [aux_sym_cmd_identifier_token23] = ACTIONS(1865), + [aux_sym_cmd_identifier_token24] = ACTIONS(1865), + [aux_sym_cmd_identifier_token25] = ACTIONS(1865), + [aux_sym_cmd_identifier_token26] = ACTIONS(1865), + [aux_sym_cmd_identifier_token27] = ACTIONS(1865), + [aux_sym_cmd_identifier_token28] = ACTIONS(1865), + [aux_sym_cmd_identifier_token29] = ACTIONS(1865), + [aux_sym_cmd_identifier_token30] = ACTIONS(1865), + [aux_sym_cmd_identifier_token31] = ACTIONS(1865), + [aux_sym_cmd_identifier_token32] = ACTIONS(1865), + [aux_sym_cmd_identifier_token33] = ACTIONS(1865), + [aux_sym_cmd_identifier_token34] = ACTIONS(1863), + [aux_sym_cmd_identifier_token35] = ACTIONS(1865), + [aux_sym_cmd_identifier_token36] = ACTIONS(1865), + [aux_sym_cmd_identifier_token37] = ACTIONS(1865), + [aux_sym_cmd_identifier_token38] = ACTIONS(1863), + [aux_sym_cmd_identifier_token39] = ACTIONS(1865), + [aux_sym_cmd_identifier_token40] = ACTIONS(1865), + [anon_sym_def] = ACTIONS(1863), + [anon_sym_export_DASHenv] = ACTIONS(1863), + [anon_sym_extern] = ACTIONS(1863), + [anon_sym_module] = ACTIONS(1863), + [anon_sym_use] = ACTIONS(1863), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_COMMA] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_error] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_break] = ACTIONS(1863), + [anon_sym_continue] = ACTIONS(1863), + [anon_sym_for] = ACTIONS(1863), + [anon_sym_in2] = ACTIONS(1863), + [anon_sym_loop] = ACTIONS(1863), + [anon_sym_make] = ACTIONS(1863), + [anon_sym_while] = ACTIONS(1863), + [anon_sym_do] = ACTIONS(1863), + [anon_sym_if] = ACTIONS(1863), + [anon_sym_else] = ACTIONS(1863), + [anon_sym_match] = ACTIONS(1863), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_try] = ACTIONS(1863), + [anon_sym_catch] = ACTIONS(1863), + [anon_sym_return] = ACTIONS(1863), + [anon_sym_source] = ACTIONS(1863), + [anon_sym_source_DASHenv] = ACTIONS(1863), + [anon_sym_register] = ACTIONS(1863), + [anon_sym_hide] = ACTIONS(1863), + [anon_sym_hide_DASHenv] = ACTIONS(1863), + [anon_sym_overlay] = ACTIONS(1863), + [anon_sym_as] = ACTIONS(1863), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1863), + [aux_sym__val_number_token5] = ACTIONS(1863), + [aux_sym__val_number_token6] = ACTIONS(1863), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1865), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [715] = { + [sym_comment] = STATE(715), [anon_sym_export] = ACTIONS(968), [anon_sym_alias] = ACTIONS(968), [anon_sym_let] = ACTIONS(968), @@ -157842,6 +156617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(968), [anon_sym_use] = ACTIONS(968), [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_COMMA] = ACTIONS(970), [anon_sym_DOLLAR] = ACTIONS(970), [anon_sym_error] = ACTIONS(968), [anon_sym_DASH2] = ACTIONS(968), @@ -157887,8 +156663,108 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(970), }, - [732] = { - [sym_comment] = STATE(732), + [716] = { + [sym_comment] = STATE(716), + [anon_sym_export] = ACTIONS(2475), + [anon_sym_alias] = ACTIONS(2475), + [anon_sym_let] = ACTIONS(2475), + [anon_sym_let_DASHenv] = ACTIONS(2475), + [anon_sym_mut] = ACTIONS(2475), + [anon_sym_const] = ACTIONS(2475), + [aux_sym_cmd_identifier_token1] = ACTIONS(2475), + [aux_sym_cmd_identifier_token2] = ACTIONS(2477), + [aux_sym_cmd_identifier_token3] = ACTIONS(2477), + [aux_sym_cmd_identifier_token4] = ACTIONS(2477), + [aux_sym_cmd_identifier_token5] = ACTIONS(2477), + [aux_sym_cmd_identifier_token6] = ACTIONS(2477), + [aux_sym_cmd_identifier_token7] = ACTIONS(2477), + [aux_sym_cmd_identifier_token8] = ACTIONS(2475), + [aux_sym_cmd_identifier_token9] = ACTIONS(2475), + [aux_sym_cmd_identifier_token10] = ACTIONS(2477), + [aux_sym_cmd_identifier_token11] = ACTIONS(2477), + [aux_sym_cmd_identifier_token12] = ACTIONS(2475), + [aux_sym_cmd_identifier_token13] = ACTIONS(2475), + [aux_sym_cmd_identifier_token14] = ACTIONS(2475), + [aux_sym_cmd_identifier_token15] = ACTIONS(2475), + [aux_sym_cmd_identifier_token16] = ACTIONS(2477), + [aux_sym_cmd_identifier_token17] = ACTIONS(2477), + [aux_sym_cmd_identifier_token18] = ACTIONS(2477), + [aux_sym_cmd_identifier_token19] = ACTIONS(2477), + [aux_sym_cmd_identifier_token20] = ACTIONS(2477), + [aux_sym_cmd_identifier_token21] = ACTIONS(2477), + [aux_sym_cmd_identifier_token22] = ACTIONS(2477), + [aux_sym_cmd_identifier_token23] = ACTIONS(2477), + [aux_sym_cmd_identifier_token24] = ACTIONS(2477), + [aux_sym_cmd_identifier_token25] = ACTIONS(2477), + [aux_sym_cmd_identifier_token26] = ACTIONS(2477), + [aux_sym_cmd_identifier_token27] = ACTIONS(2477), + [aux_sym_cmd_identifier_token28] = ACTIONS(2477), + [aux_sym_cmd_identifier_token29] = ACTIONS(2477), + [aux_sym_cmd_identifier_token30] = ACTIONS(2477), + [aux_sym_cmd_identifier_token31] = ACTIONS(2477), + [aux_sym_cmd_identifier_token32] = ACTIONS(2477), + [aux_sym_cmd_identifier_token33] = ACTIONS(2477), + [aux_sym_cmd_identifier_token34] = ACTIONS(2475), + [aux_sym_cmd_identifier_token35] = ACTIONS(2477), + [aux_sym_cmd_identifier_token36] = ACTIONS(2477), + [aux_sym_cmd_identifier_token37] = ACTIONS(2477), + [aux_sym_cmd_identifier_token38] = ACTIONS(2475), + [aux_sym_cmd_identifier_token39] = ACTIONS(2477), + [aux_sym_cmd_identifier_token40] = ACTIONS(2477), + [anon_sym_def] = ACTIONS(2475), + [anon_sym_export_DASHenv] = ACTIONS(2475), + [anon_sym_extern] = ACTIONS(2475), + [anon_sym_module] = ACTIONS(2475), + [anon_sym_use] = ACTIONS(2475), + [anon_sym_LPAREN] = ACTIONS(2477), + [anon_sym_COMMA] = ACTIONS(2477), + [anon_sym_DOLLAR] = ACTIONS(2477), + [anon_sym_error] = ACTIONS(2475), + [anon_sym_DASH2] = ACTIONS(2475), + [anon_sym_break] = ACTIONS(2475), + [anon_sym_continue] = ACTIONS(2475), + [anon_sym_for] = ACTIONS(2475), + [anon_sym_in2] = ACTIONS(2475), + [anon_sym_loop] = ACTIONS(2475), + [anon_sym_make] = ACTIONS(2475), + [anon_sym_while] = ACTIONS(2475), + [anon_sym_do] = ACTIONS(2475), + [anon_sym_if] = ACTIONS(2475), + [anon_sym_else] = ACTIONS(2475), + [anon_sym_match] = ACTIONS(2475), + [anon_sym_RBRACE] = ACTIONS(2477), + [anon_sym_try] = ACTIONS(2475), + [anon_sym_catch] = ACTIONS(2475), + [anon_sym_return] = ACTIONS(2475), + [anon_sym_source] = ACTIONS(2475), + [anon_sym_source_DASHenv] = ACTIONS(2475), + [anon_sym_register] = ACTIONS(2475), + [anon_sym_hide] = ACTIONS(2475), + [anon_sym_hide_DASHenv] = ACTIONS(2475), + [anon_sym_overlay] = ACTIONS(2475), + [anon_sym_as] = ACTIONS(2475), + [anon_sym_PLUS2] = ACTIONS(2475), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2477), + [aux_sym__val_number_decimal_token1] = ACTIONS(2475), + [aux_sym__val_number_decimal_token2] = ACTIONS(2477), + [aux_sym__val_number_decimal_token3] = ACTIONS(2477), + [aux_sym__val_number_decimal_token4] = ACTIONS(2477), + [aux_sym__val_number_token1] = ACTIONS(2477), + [aux_sym__val_number_token2] = ACTIONS(2477), + [aux_sym__val_number_token3] = ACTIONS(2477), + [aux_sym__val_number_token4] = ACTIONS(2475), + [aux_sym__val_number_token5] = ACTIONS(2475), + [aux_sym__val_number_token6] = ACTIONS(2475), + [anon_sym_DQUOTE] = ACTIONS(2477), + [sym__str_single_quotes] = ACTIONS(2477), + [sym__str_back_ticks] = ACTIONS(2477), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2477), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2477), + }, + [717] = { + [sym_comment] = STATE(717), [anon_sym_export] = ACTIONS(972), [anon_sym_alias] = ACTIONS(972), [anon_sym_let] = ACTIONS(972), @@ -157941,6 +156817,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(972), [anon_sym_use] = ACTIONS(972), [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_COMMA] = ACTIONS(974), [anon_sym_DOLLAR] = ACTIONS(974), [anon_sym_error] = ACTIONS(972), [anon_sym_DASH2] = ACTIONS(972), @@ -157986,107 +156863,308 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(974), }, - [733] = { - [sym_comment] = STATE(733), - [anon_sym_export] = ACTIONS(1018), - [anon_sym_alias] = ACTIONS(1018), - [anon_sym_let] = ACTIONS(1018), - [anon_sym_let_DASHenv] = ACTIONS(1018), - [anon_sym_mut] = ACTIONS(1018), - [anon_sym_const] = ACTIONS(1018), - [aux_sym_cmd_identifier_token1] = ACTIONS(1018), - [aux_sym_cmd_identifier_token2] = ACTIONS(1020), - [aux_sym_cmd_identifier_token3] = ACTIONS(1020), - [aux_sym_cmd_identifier_token4] = ACTIONS(1020), - [aux_sym_cmd_identifier_token5] = ACTIONS(1020), - [aux_sym_cmd_identifier_token6] = ACTIONS(1020), - [aux_sym_cmd_identifier_token7] = ACTIONS(1020), - [aux_sym_cmd_identifier_token8] = ACTIONS(1018), - [aux_sym_cmd_identifier_token9] = ACTIONS(1018), - [aux_sym_cmd_identifier_token10] = ACTIONS(1020), - [aux_sym_cmd_identifier_token11] = ACTIONS(1020), - [aux_sym_cmd_identifier_token12] = ACTIONS(1018), - [aux_sym_cmd_identifier_token13] = ACTIONS(1018), - [aux_sym_cmd_identifier_token14] = ACTIONS(1018), - [aux_sym_cmd_identifier_token15] = ACTIONS(1018), - [aux_sym_cmd_identifier_token16] = ACTIONS(1020), - [aux_sym_cmd_identifier_token17] = ACTIONS(1020), - [aux_sym_cmd_identifier_token18] = ACTIONS(1020), - [aux_sym_cmd_identifier_token19] = ACTIONS(1020), - [aux_sym_cmd_identifier_token20] = ACTIONS(1020), - [aux_sym_cmd_identifier_token21] = ACTIONS(1020), - [aux_sym_cmd_identifier_token22] = ACTIONS(1020), - [aux_sym_cmd_identifier_token23] = ACTIONS(1020), - [aux_sym_cmd_identifier_token24] = ACTIONS(1020), - [aux_sym_cmd_identifier_token25] = ACTIONS(1020), - [aux_sym_cmd_identifier_token26] = ACTIONS(1020), - [aux_sym_cmd_identifier_token27] = ACTIONS(1020), - [aux_sym_cmd_identifier_token28] = ACTIONS(1020), - [aux_sym_cmd_identifier_token29] = ACTIONS(1020), - [aux_sym_cmd_identifier_token30] = ACTIONS(1020), - [aux_sym_cmd_identifier_token31] = ACTIONS(1020), - [aux_sym_cmd_identifier_token32] = ACTIONS(1020), - [aux_sym_cmd_identifier_token33] = ACTIONS(1020), - [aux_sym_cmd_identifier_token34] = ACTIONS(1018), - [aux_sym_cmd_identifier_token35] = ACTIONS(1020), - [aux_sym_cmd_identifier_token36] = ACTIONS(1020), - [aux_sym_cmd_identifier_token37] = ACTIONS(1020), - [aux_sym_cmd_identifier_token38] = ACTIONS(1018), - [aux_sym_cmd_identifier_token39] = ACTIONS(1020), - [aux_sym_cmd_identifier_token40] = ACTIONS(1020), - [anon_sym_def] = ACTIONS(1018), - [anon_sym_export_DASHenv] = ACTIONS(1018), - [anon_sym_extern] = ACTIONS(1018), - [anon_sym_module] = ACTIONS(1018), - [anon_sym_use] = ACTIONS(1018), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1020), - [anon_sym_error] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_break] = ACTIONS(1018), - [anon_sym_continue] = ACTIONS(1018), - [anon_sym_for] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1018), - [anon_sym_loop] = ACTIONS(1018), - [anon_sym_make] = ACTIONS(1018), - [anon_sym_while] = ACTIONS(1018), - [anon_sym_do] = ACTIONS(1018), - [anon_sym_if] = ACTIONS(1018), - [anon_sym_else] = ACTIONS(1018), - [anon_sym_match] = ACTIONS(1018), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_try] = ACTIONS(1018), - [anon_sym_catch] = ACTIONS(1018), - [anon_sym_return] = ACTIONS(1018), - [anon_sym_source] = ACTIONS(1018), - [anon_sym_source_DASHenv] = ACTIONS(1018), - [anon_sym_register] = ACTIONS(1018), - [anon_sym_hide] = ACTIONS(1018), - [anon_sym_hide_DASHenv] = ACTIONS(1018), - [anon_sym_overlay] = ACTIONS(1018), - [anon_sym_as] = ACTIONS(1018), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1018), - [aux_sym__val_number_token5] = ACTIONS(1018), - [aux_sym__val_number_token6] = ACTIONS(1018), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1020), + [718] = { + [sym_comment] = STATE(718), + [anon_sym_export] = ACTIONS(1875), + [anon_sym_alias] = ACTIONS(1875), + [anon_sym_let] = ACTIONS(1875), + [anon_sym_let_DASHenv] = ACTIONS(1875), + [anon_sym_mut] = ACTIONS(1875), + [anon_sym_const] = ACTIONS(1875), + [aux_sym_cmd_identifier_token1] = ACTIONS(1875), + [aux_sym_cmd_identifier_token2] = ACTIONS(1877), + [aux_sym_cmd_identifier_token3] = ACTIONS(1877), + [aux_sym_cmd_identifier_token4] = ACTIONS(1877), + [aux_sym_cmd_identifier_token5] = ACTIONS(1877), + [aux_sym_cmd_identifier_token6] = ACTIONS(1877), + [aux_sym_cmd_identifier_token7] = ACTIONS(1877), + [aux_sym_cmd_identifier_token8] = ACTIONS(1875), + [aux_sym_cmd_identifier_token9] = ACTIONS(1875), + [aux_sym_cmd_identifier_token10] = ACTIONS(1877), + [aux_sym_cmd_identifier_token11] = ACTIONS(1877), + [aux_sym_cmd_identifier_token12] = ACTIONS(1875), + [aux_sym_cmd_identifier_token13] = ACTIONS(1875), + [aux_sym_cmd_identifier_token14] = ACTIONS(1875), + [aux_sym_cmd_identifier_token15] = ACTIONS(1875), + [aux_sym_cmd_identifier_token16] = ACTIONS(1877), + [aux_sym_cmd_identifier_token17] = ACTIONS(1877), + [aux_sym_cmd_identifier_token18] = ACTIONS(1877), + [aux_sym_cmd_identifier_token19] = ACTIONS(1877), + [aux_sym_cmd_identifier_token20] = ACTIONS(1877), + [aux_sym_cmd_identifier_token21] = ACTIONS(1877), + [aux_sym_cmd_identifier_token22] = ACTIONS(1877), + [aux_sym_cmd_identifier_token23] = ACTIONS(1877), + [aux_sym_cmd_identifier_token24] = ACTIONS(1877), + [aux_sym_cmd_identifier_token25] = ACTIONS(1877), + [aux_sym_cmd_identifier_token26] = ACTIONS(1877), + [aux_sym_cmd_identifier_token27] = ACTIONS(1877), + [aux_sym_cmd_identifier_token28] = ACTIONS(1877), + [aux_sym_cmd_identifier_token29] = ACTIONS(1877), + [aux_sym_cmd_identifier_token30] = ACTIONS(1877), + [aux_sym_cmd_identifier_token31] = ACTIONS(1877), + [aux_sym_cmd_identifier_token32] = ACTIONS(1877), + [aux_sym_cmd_identifier_token33] = ACTIONS(1877), + [aux_sym_cmd_identifier_token34] = ACTIONS(1875), + [aux_sym_cmd_identifier_token35] = ACTIONS(1877), + [aux_sym_cmd_identifier_token36] = ACTIONS(1877), + [aux_sym_cmd_identifier_token37] = ACTIONS(1877), + [aux_sym_cmd_identifier_token38] = ACTIONS(1875), + [aux_sym_cmd_identifier_token39] = ACTIONS(1877), + [aux_sym_cmd_identifier_token40] = ACTIONS(1877), + [anon_sym_def] = ACTIONS(1875), + [anon_sym_export_DASHenv] = ACTIONS(1875), + [anon_sym_extern] = ACTIONS(1875), + [anon_sym_module] = ACTIONS(1875), + [anon_sym_use] = ACTIONS(1875), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_COMMA] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1877), + [anon_sym_error] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_break] = ACTIONS(1875), + [anon_sym_continue] = ACTIONS(1875), + [anon_sym_for] = ACTIONS(1875), + [anon_sym_in2] = ACTIONS(1875), + [anon_sym_loop] = ACTIONS(1875), + [anon_sym_make] = ACTIONS(1875), + [anon_sym_while] = ACTIONS(1875), + [anon_sym_do] = ACTIONS(1875), + [anon_sym_if] = ACTIONS(1875), + [anon_sym_else] = ACTIONS(1875), + [anon_sym_match] = ACTIONS(1875), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_try] = ACTIONS(1875), + [anon_sym_catch] = ACTIONS(1875), + [anon_sym_return] = ACTIONS(1875), + [anon_sym_source] = ACTIONS(1875), + [anon_sym_source_DASHenv] = ACTIONS(1875), + [anon_sym_register] = ACTIONS(1875), + [anon_sym_hide] = ACTIONS(1875), + [anon_sym_hide_DASHenv] = ACTIONS(1875), + [anon_sym_overlay] = ACTIONS(1875), + [anon_sym_as] = ACTIONS(1875), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1875), + [aux_sym__val_number_token5] = ACTIONS(1875), + [aux_sym__val_number_token6] = ACTIONS(1875), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), + }, + [719] = { + [sym_comment] = STATE(719), + [anon_sym_export] = ACTIONS(2373), + [anon_sym_alias] = ACTIONS(2373), + [anon_sym_let] = ACTIONS(2373), + [anon_sym_let_DASHenv] = ACTIONS(2373), + [anon_sym_mut] = ACTIONS(2373), + [anon_sym_const] = ACTIONS(2373), + [aux_sym_cmd_identifier_token1] = ACTIONS(2373), + [aux_sym_cmd_identifier_token2] = ACTIONS(2375), + [aux_sym_cmd_identifier_token3] = ACTIONS(2375), + [aux_sym_cmd_identifier_token4] = ACTIONS(2375), + [aux_sym_cmd_identifier_token5] = ACTIONS(2375), + [aux_sym_cmd_identifier_token6] = ACTIONS(2375), + [aux_sym_cmd_identifier_token7] = ACTIONS(2375), + [aux_sym_cmd_identifier_token8] = ACTIONS(2373), + [aux_sym_cmd_identifier_token9] = ACTIONS(2373), + [aux_sym_cmd_identifier_token10] = ACTIONS(2375), + [aux_sym_cmd_identifier_token11] = ACTIONS(2375), + [aux_sym_cmd_identifier_token12] = ACTIONS(2373), + [aux_sym_cmd_identifier_token13] = ACTIONS(2373), + [aux_sym_cmd_identifier_token14] = ACTIONS(2373), + [aux_sym_cmd_identifier_token15] = ACTIONS(2373), + [aux_sym_cmd_identifier_token16] = ACTIONS(2375), + [aux_sym_cmd_identifier_token17] = ACTIONS(2375), + [aux_sym_cmd_identifier_token18] = ACTIONS(2375), + [aux_sym_cmd_identifier_token19] = ACTIONS(2375), + [aux_sym_cmd_identifier_token20] = ACTIONS(2375), + [aux_sym_cmd_identifier_token21] = ACTIONS(2375), + [aux_sym_cmd_identifier_token22] = ACTIONS(2375), + [aux_sym_cmd_identifier_token23] = ACTIONS(2375), + [aux_sym_cmd_identifier_token24] = ACTIONS(2375), + [aux_sym_cmd_identifier_token25] = ACTIONS(2375), + [aux_sym_cmd_identifier_token26] = ACTIONS(2375), + [aux_sym_cmd_identifier_token27] = ACTIONS(2375), + [aux_sym_cmd_identifier_token28] = ACTIONS(2375), + [aux_sym_cmd_identifier_token29] = ACTIONS(2375), + [aux_sym_cmd_identifier_token30] = ACTIONS(2375), + [aux_sym_cmd_identifier_token31] = ACTIONS(2375), + [aux_sym_cmd_identifier_token32] = ACTIONS(2375), + [aux_sym_cmd_identifier_token33] = ACTIONS(2375), + [aux_sym_cmd_identifier_token34] = ACTIONS(2373), + [aux_sym_cmd_identifier_token35] = ACTIONS(2375), + [aux_sym_cmd_identifier_token36] = ACTIONS(2375), + [aux_sym_cmd_identifier_token37] = ACTIONS(2375), + [aux_sym_cmd_identifier_token38] = ACTIONS(2373), + [aux_sym_cmd_identifier_token39] = ACTIONS(2375), + [aux_sym_cmd_identifier_token40] = ACTIONS(2375), + [anon_sym_def] = ACTIONS(2373), + [anon_sym_export_DASHenv] = ACTIONS(2373), + [anon_sym_extern] = ACTIONS(2373), + [anon_sym_module] = ACTIONS(2373), + [anon_sym_use] = ACTIONS(2373), + [anon_sym_LPAREN] = ACTIONS(2375), + [anon_sym_COMMA] = ACTIONS(2375), + [anon_sym_DOLLAR] = ACTIONS(2375), + [anon_sym_error] = ACTIONS(2373), + [anon_sym_DASH2] = ACTIONS(2373), + [anon_sym_break] = ACTIONS(2373), + [anon_sym_continue] = ACTIONS(2373), + [anon_sym_for] = ACTIONS(2373), + [anon_sym_in2] = ACTIONS(2373), + [anon_sym_loop] = ACTIONS(2373), + [anon_sym_make] = ACTIONS(2373), + [anon_sym_while] = ACTIONS(2373), + [anon_sym_do] = ACTIONS(2373), + [anon_sym_if] = ACTIONS(2373), + [anon_sym_else] = ACTIONS(2373), + [anon_sym_match] = ACTIONS(2373), + [anon_sym_RBRACE] = ACTIONS(2375), + [anon_sym_try] = ACTIONS(2373), + [anon_sym_catch] = ACTIONS(2373), + [anon_sym_return] = ACTIONS(2373), + [anon_sym_source] = ACTIONS(2373), + [anon_sym_source_DASHenv] = ACTIONS(2373), + [anon_sym_register] = ACTIONS(2373), + [anon_sym_hide] = ACTIONS(2373), + [anon_sym_hide_DASHenv] = ACTIONS(2373), + [anon_sym_overlay] = ACTIONS(2373), + [anon_sym_as] = ACTIONS(2373), + [anon_sym_PLUS2] = ACTIONS(2373), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2375), + [aux_sym__val_number_decimal_token1] = ACTIONS(2373), + [aux_sym__val_number_decimal_token2] = ACTIONS(2375), + [aux_sym__val_number_decimal_token3] = ACTIONS(2375), + [aux_sym__val_number_decimal_token4] = ACTIONS(2375), + [aux_sym__val_number_token1] = ACTIONS(2375), + [aux_sym__val_number_token2] = ACTIONS(2375), + [aux_sym__val_number_token3] = ACTIONS(2375), + [aux_sym__val_number_token4] = ACTIONS(2373), + [aux_sym__val_number_token5] = ACTIONS(2373), + [aux_sym__val_number_token6] = ACTIONS(2373), + [anon_sym_DQUOTE] = ACTIONS(2375), + [sym__str_single_quotes] = ACTIONS(2375), + [sym__str_back_ticks] = ACTIONS(2375), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2375), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), + [sym_raw_string_begin] = ACTIONS(2375), }, - [734] = { - [sym_comment] = STATE(734), + [720] = { + [sym_comment] = STATE(720), + [anon_sym_export] = ACTIONS(2377), + [anon_sym_alias] = ACTIONS(2377), + [anon_sym_let] = ACTIONS(2377), + [anon_sym_let_DASHenv] = ACTIONS(2377), + [anon_sym_mut] = ACTIONS(2377), + [anon_sym_const] = ACTIONS(2377), + [aux_sym_cmd_identifier_token1] = ACTIONS(2377), + [aux_sym_cmd_identifier_token2] = ACTIONS(2379), + [aux_sym_cmd_identifier_token3] = ACTIONS(2379), + [aux_sym_cmd_identifier_token4] = ACTIONS(2379), + [aux_sym_cmd_identifier_token5] = ACTIONS(2379), + [aux_sym_cmd_identifier_token6] = ACTIONS(2379), + [aux_sym_cmd_identifier_token7] = ACTIONS(2379), + [aux_sym_cmd_identifier_token8] = ACTIONS(2377), + [aux_sym_cmd_identifier_token9] = ACTIONS(2377), + [aux_sym_cmd_identifier_token10] = ACTIONS(2379), + [aux_sym_cmd_identifier_token11] = ACTIONS(2379), + [aux_sym_cmd_identifier_token12] = ACTIONS(2377), + [aux_sym_cmd_identifier_token13] = ACTIONS(2377), + [aux_sym_cmd_identifier_token14] = ACTIONS(2377), + [aux_sym_cmd_identifier_token15] = ACTIONS(2377), + [aux_sym_cmd_identifier_token16] = ACTIONS(2379), + [aux_sym_cmd_identifier_token17] = ACTIONS(2379), + [aux_sym_cmd_identifier_token18] = ACTIONS(2379), + [aux_sym_cmd_identifier_token19] = ACTIONS(2379), + [aux_sym_cmd_identifier_token20] = ACTIONS(2379), + [aux_sym_cmd_identifier_token21] = ACTIONS(2379), + [aux_sym_cmd_identifier_token22] = ACTIONS(2379), + [aux_sym_cmd_identifier_token23] = ACTIONS(2379), + [aux_sym_cmd_identifier_token24] = ACTIONS(2379), + [aux_sym_cmd_identifier_token25] = ACTIONS(2379), + [aux_sym_cmd_identifier_token26] = ACTIONS(2379), + [aux_sym_cmd_identifier_token27] = ACTIONS(2379), + [aux_sym_cmd_identifier_token28] = ACTIONS(2379), + [aux_sym_cmd_identifier_token29] = ACTIONS(2379), + [aux_sym_cmd_identifier_token30] = ACTIONS(2379), + [aux_sym_cmd_identifier_token31] = ACTIONS(2379), + [aux_sym_cmd_identifier_token32] = ACTIONS(2379), + [aux_sym_cmd_identifier_token33] = ACTIONS(2379), + [aux_sym_cmd_identifier_token34] = ACTIONS(2377), + [aux_sym_cmd_identifier_token35] = ACTIONS(2379), + [aux_sym_cmd_identifier_token36] = ACTIONS(2379), + [aux_sym_cmd_identifier_token37] = ACTIONS(2379), + [aux_sym_cmd_identifier_token38] = ACTIONS(2377), + [aux_sym_cmd_identifier_token39] = ACTIONS(2379), + [aux_sym_cmd_identifier_token40] = ACTIONS(2379), + [anon_sym_def] = ACTIONS(2377), + [anon_sym_export_DASHenv] = ACTIONS(2377), + [anon_sym_extern] = ACTIONS(2377), + [anon_sym_module] = ACTIONS(2377), + [anon_sym_use] = ACTIONS(2377), + [anon_sym_LPAREN] = ACTIONS(2379), + [anon_sym_COMMA] = ACTIONS(2379), + [anon_sym_DOLLAR] = ACTIONS(2379), + [anon_sym_error] = ACTIONS(2377), + [anon_sym_DASH2] = ACTIONS(2377), + [anon_sym_break] = ACTIONS(2377), + [anon_sym_continue] = ACTIONS(2377), + [anon_sym_for] = ACTIONS(2377), + [anon_sym_in2] = ACTIONS(2377), + [anon_sym_loop] = ACTIONS(2377), + [anon_sym_make] = ACTIONS(2377), + [anon_sym_while] = ACTIONS(2377), + [anon_sym_do] = ACTIONS(2377), + [anon_sym_if] = ACTIONS(2377), + [anon_sym_else] = ACTIONS(2377), + [anon_sym_match] = ACTIONS(2377), + [anon_sym_RBRACE] = ACTIONS(2379), + [anon_sym_try] = ACTIONS(2377), + [anon_sym_catch] = ACTIONS(2377), + [anon_sym_return] = ACTIONS(2377), + [anon_sym_source] = ACTIONS(2377), + [anon_sym_source_DASHenv] = ACTIONS(2377), + [anon_sym_register] = ACTIONS(2377), + [anon_sym_hide] = ACTIONS(2377), + [anon_sym_hide_DASHenv] = ACTIONS(2377), + [anon_sym_overlay] = ACTIONS(2377), + [anon_sym_as] = ACTIONS(2377), + [anon_sym_PLUS2] = ACTIONS(2377), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2379), + [aux_sym__val_number_decimal_token1] = ACTIONS(2377), + [aux_sym__val_number_decimal_token2] = ACTIONS(2379), + [aux_sym__val_number_decimal_token3] = ACTIONS(2379), + [aux_sym__val_number_decimal_token4] = ACTIONS(2379), + [aux_sym__val_number_token1] = ACTIONS(2379), + [aux_sym__val_number_token2] = ACTIONS(2379), + [aux_sym__val_number_token3] = ACTIONS(2379), + [aux_sym__val_number_token4] = ACTIONS(2377), + [aux_sym__val_number_token5] = ACTIONS(2377), + [aux_sym__val_number_token6] = ACTIONS(2377), + [anon_sym_DQUOTE] = ACTIONS(2379), + [sym__str_single_quotes] = ACTIONS(2379), + [sym__str_back_ticks] = ACTIONS(2379), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2379), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2379), + }, + [721] = { + [sym_comment] = STATE(721), [anon_sym_export] = ACTIONS(976), [anon_sym_alias] = ACTIONS(976), [anon_sym_let] = ACTIONS(976), @@ -158139,6 +157217,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(976), [anon_sym_use] = ACTIONS(976), [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_COMMA] = ACTIONS(978), [anon_sym_DOLLAR] = ACTIONS(978), [anon_sym_error] = ACTIONS(976), [anon_sym_DASH2] = ACTIONS(976), @@ -158163,2207 +157242,1329 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_hide] = ACTIONS(976), [anon_sym_hide_DASHenv] = ACTIONS(976), [anon_sym_overlay] = ACTIONS(976), - [anon_sym_as] = ACTIONS(976), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(976), - [aux_sym__val_number_token5] = ACTIONS(976), - [aux_sym__val_number_token6] = ACTIONS(976), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), - }, - [735] = { - [sym_comment] = STATE(735), - [anon_sym_export] = ACTIONS(2487), - [anon_sym_alias] = ACTIONS(2487), - [anon_sym_let] = ACTIONS(2487), - [anon_sym_let_DASHenv] = ACTIONS(2487), - [anon_sym_mut] = ACTIONS(2487), - [anon_sym_const] = ACTIONS(2487), - [aux_sym_cmd_identifier_token1] = ACTIONS(2487), - [aux_sym_cmd_identifier_token2] = ACTIONS(2489), - [aux_sym_cmd_identifier_token3] = ACTIONS(2489), - [aux_sym_cmd_identifier_token4] = ACTIONS(2489), - [aux_sym_cmd_identifier_token5] = ACTIONS(2489), - [aux_sym_cmd_identifier_token6] = ACTIONS(2489), - [aux_sym_cmd_identifier_token7] = ACTIONS(2489), - [aux_sym_cmd_identifier_token8] = ACTIONS(2487), - [aux_sym_cmd_identifier_token9] = ACTIONS(2487), - [aux_sym_cmd_identifier_token10] = ACTIONS(2489), - [aux_sym_cmd_identifier_token11] = ACTIONS(2489), - [aux_sym_cmd_identifier_token12] = ACTIONS(2487), - [aux_sym_cmd_identifier_token13] = ACTIONS(2487), - [aux_sym_cmd_identifier_token14] = ACTIONS(2487), - [aux_sym_cmd_identifier_token15] = ACTIONS(2487), - [aux_sym_cmd_identifier_token16] = ACTIONS(2489), - [aux_sym_cmd_identifier_token17] = ACTIONS(2489), - [aux_sym_cmd_identifier_token18] = ACTIONS(2489), - [aux_sym_cmd_identifier_token19] = ACTIONS(2489), - [aux_sym_cmd_identifier_token20] = ACTIONS(2489), - [aux_sym_cmd_identifier_token21] = ACTIONS(2489), - [aux_sym_cmd_identifier_token22] = ACTIONS(2489), - [aux_sym_cmd_identifier_token23] = ACTIONS(2489), - [aux_sym_cmd_identifier_token24] = ACTIONS(2489), - [aux_sym_cmd_identifier_token25] = ACTIONS(2489), - [aux_sym_cmd_identifier_token26] = ACTIONS(2489), - [aux_sym_cmd_identifier_token27] = ACTIONS(2489), - [aux_sym_cmd_identifier_token28] = ACTIONS(2489), - [aux_sym_cmd_identifier_token29] = ACTIONS(2489), - [aux_sym_cmd_identifier_token30] = ACTIONS(2489), - [aux_sym_cmd_identifier_token31] = ACTIONS(2489), - [aux_sym_cmd_identifier_token32] = ACTIONS(2489), - [aux_sym_cmd_identifier_token33] = ACTIONS(2489), - [aux_sym_cmd_identifier_token34] = ACTIONS(2487), - [aux_sym_cmd_identifier_token35] = ACTIONS(2489), - [aux_sym_cmd_identifier_token36] = ACTIONS(2489), - [aux_sym_cmd_identifier_token37] = ACTIONS(2489), - [aux_sym_cmd_identifier_token38] = ACTIONS(2487), - [aux_sym_cmd_identifier_token39] = ACTIONS(2489), - [aux_sym_cmd_identifier_token40] = ACTIONS(2489), - [anon_sym_def] = ACTIONS(2487), - [anon_sym_export_DASHenv] = ACTIONS(2487), - [anon_sym_extern] = ACTIONS(2487), - [anon_sym_module] = ACTIONS(2487), - [anon_sym_use] = ACTIONS(2487), - [anon_sym_LPAREN] = ACTIONS(2489), - [anon_sym_DOLLAR] = ACTIONS(2489), - [anon_sym_error] = ACTIONS(2487), - [anon_sym_DASH2] = ACTIONS(2487), - [anon_sym_break] = ACTIONS(2487), - [anon_sym_continue] = ACTIONS(2487), - [anon_sym_for] = ACTIONS(2487), - [anon_sym_in2] = ACTIONS(2487), - [anon_sym_loop] = ACTIONS(2487), - [anon_sym_make] = ACTIONS(2487), - [anon_sym_while] = ACTIONS(2487), - [anon_sym_do] = ACTIONS(2487), - [anon_sym_if] = ACTIONS(2487), - [anon_sym_else] = ACTIONS(2487), - [anon_sym_match] = ACTIONS(2487), - [anon_sym_RBRACE] = ACTIONS(2489), - [anon_sym_try] = ACTIONS(2487), - [anon_sym_catch] = ACTIONS(2487), - [anon_sym_return] = ACTIONS(2487), - [anon_sym_source] = ACTIONS(2487), - [anon_sym_source_DASHenv] = ACTIONS(2487), - [anon_sym_register] = ACTIONS(2487), - [anon_sym_hide] = ACTIONS(2487), - [anon_sym_hide_DASHenv] = ACTIONS(2487), - [anon_sym_overlay] = ACTIONS(2487), - [anon_sym_as] = ACTIONS(2487), - [anon_sym_PLUS2] = ACTIONS(2487), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2489), - [aux_sym__val_number_decimal_token1] = ACTIONS(2487), - [aux_sym__val_number_decimal_token2] = ACTIONS(2489), - [aux_sym__val_number_decimal_token3] = ACTIONS(2489), - [aux_sym__val_number_decimal_token4] = ACTIONS(2489), - [aux_sym__val_number_token1] = ACTIONS(2489), - [aux_sym__val_number_token2] = ACTIONS(2489), - [aux_sym__val_number_token3] = ACTIONS(2489), - [aux_sym__val_number_token4] = ACTIONS(2487), - [aux_sym__val_number_token5] = ACTIONS(2487), - [aux_sym__val_number_token6] = ACTIONS(2487), - [anon_sym_DQUOTE] = ACTIONS(2489), - [sym__str_single_quotes] = ACTIONS(2489), - [sym__str_back_ticks] = ACTIONS(2489), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2489), + [anon_sym_as] = ACTIONS(976), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(976), + [aux_sym__val_number_token5] = ACTIONS(976), + [aux_sym__val_number_token6] = ACTIONS(976), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2489), + [sym_raw_string_begin] = ACTIONS(978), }, - [736] = { - [sym_comment] = STATE(736), - [anon_sym_export] = ACTIONS(2491), - [anon_sym_alias] = ACTIONS(2491), - [anon_sym_let] = ACTIONS(2491), - [anon_sym_let_DASHenv] = ACTIONS(2491), - [anon_sym_mut] = ACTIONS(2491), - [anon_sym_const] = ACTIONS(2491), - [aux_sym_cmd_identifier_token1] = ACTIONS(2491), - [aux_sym_cmd_identifier_token2] = ACTIONS(2493), - [aux_sym_cmd_identifier_token3] = ACTIONS(2493), - [aux_sym_cmd_identifier_token4] = ACTIONS(2493), - [aux_sym_cmd_identifier_token5] = ACTIONS(2493), - [aux_sym_cmd_identifier_token6] = ACTIONS(2493), - [aux_sym_cmd_identifier_token7] = ACTIONS(2493), - [aux_sym_cmd_identifier_token8] = ACTIONS(2491), - [aux_sym_cmd_identifier_token9] = ACTIONS(2491), - [aux_sym_cmd_identifier_token10] = ACTIONS(2493), - [aux_sym_cmd_identifier_token11] = ACTIONS(2493), - [aux_sym_cmd_identifier_token12] = ACTIONS(2491), - [aux_sym_cmd_identifier_token13] = ACTIONS(2491), - [aux_sym_cmd_identifier_token14] = ACTIONS(2491), - [aux_sym_cmd_identifier_token15] = ACTIONS(2491), - [aux_sym_cmd_identifier_token16] = ACTIONS(2493), - [aux_sym_cmd_identifier_token17] = ACTIONS(2493), - [aux_sym_cmd_identifier_token18] = ACTIONS(2493), - [aux_sym_cmd_identifier_token19] = ACTIONS(2493), - [aux_sym_cmd_identifier_token20] = ACTIONS(2493), - [aux_sym_cmd_identifier_token21] = ACTIONS(2493), - [aux_sym_cmd_identifier_token22] = ACTIONS(2493), - [aux_sym_cmd_identifier_token23] = ACTIONS(2493), - [aux_sym_cmd_identifier_token24] = ACTIONS(2493), - [aux_sym_cmd_identifier_token25] = ACTIONS(2493), - [aux_sym_cmd_identifier_token26] = ACTIONS(2493), - [aux_sym_cmd_identifier_token27] = ACTIONS(2493), - [aux_sym_cmd_identifier_token28] = ACTIONS(2493), - [aux_sym_cmd_identifier_token29] = ACTIONS(2493), - [aux_sym_cmd_identifier_token30] = ACTIONS(2493), - [aux_sym_cmd_identifier_token31] = ACTIONS(2493), - [aux_sym_cmd_identifier_token32] = ACTIONS(2493), - [aux_sym_cmd_identifier_token33] = ACTIONS(2493), - [aux_sym_cmd_identifier_token34] = ACTIONS(2491), - [aux_sym_cmd_identifier_token35] = ACTIONS(2493), - [aux_sym_cmd_identifier_token36] = ACTIONS(2493), - [aux_sym_cmd_identifier_token37] = ACTIONS(2493), - [aux_sym_cmd_identifier_token38] = ACTIONS(2491), - [aux_sym_cmd_identifier_token39] = ACTIONS(2493), - [aux_sym_cmd_identifier_token40] = ACTIONS(2493), - [anon_sym_def] = ACTIONS(2491), - [anon_sym_export_DASHenv] = ACTIONS(2491), - [anon_sym_extern] = ACTIONS(2491), - [anon_sym_module] = ACTIONS(2491), - [anon_sym_use] = ACTIONS(2491), - [anon_sym_LPAREN] = ACTIONS(2493), - [anon_sym_DOLLAR] = ACTIONS(2493), - [anon_sym_error] = ACTIONS(2491), - [anon_sym_DASH2] = ACTIONS(2491), - [anon_sym_break] = ACTIONS(2491), - [anon_sym_continue] = ACTIONS(2491), - [anon_sym_for] = ACTIONS(2491), - [anon_sym_in2] = ACTIONS(2491), - [anon_sym_loop] = ACTIONS(2491), - [anon_sym_make] = ACTIONS(2491), - [anon_sym_while] = ACTIONS(2491), - [anon_sym_do] = ACTIONS(2491), - [anon_sym_if] = ACTIONS(2491), - [anon_sym_else] = ACTIONS(2491), - [anon_sym_match] = ACTIONS(2491), - [anon_sym_RBRACE] = ACTIONS(2493), - [anon_sym_try] = ACTIONS(2491), - [anon_sym_catch] = ACTIONS(2491), - [anon_sym_return] = ACTIONS(2491), - [anon_sym_source] = ACTIONS(2491), - [anon_sym_source_DASHenv] = ACTIONS(2491), - [anon_sym_register] = ACTIONS(2491), - [anon_sym_hide] = ACTIONS(2491), - [anon_sym_hide_DASHenv] = ACTIONS(2491), - [anon_sym_overlay] = ACTIONS(2491), - [anon_sym_as] = ACTIONS(2491), - [anon_sym_PLUS2] = ACTIONS(2491), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_DOLLAR] = 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), - [aux_sym__val_number_token4] = ACTIONS(2491), - [aux_sym__val_number_token5] = ACTIONS(2491), - [aux_sym__val_number_token6] = ACTIONS(2491), - [anon_sym_DQUOTE] = ACTIONS(2493), - [sym__str_single_quotes] = ACTIONS(2493), - [sym__str_back_ticks] = ACTIONS(2493), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2493), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2493), + [722] = { + [sym_comment] = STATE(722), + [anon_sym_export] = ACTIONS(1879), + [anon_sym_alias] = ACTIONS(1879), + [anon_sym_let] = ACTIONS(1879), + [anon_sym_let_DASHenv] = ACTIONS(1879), + [anon_sym_mut] = ACTIONS(1879), + [anon_sym_const] = ACTIONS(1879), + [aux_sym_cmd_identifier_token1] = ACTIONS(1879), + [aux_sym_cmd_identifier_token2] = ACTIONS(1881), + [aux_sym_cmd_identifier_token3] = ACTIONS(1881), + [aux_sym_cmd_identifier_token4] = ACTIONS(1881), + [aux_sym_cmd_identifier_token5] = ACTIONS(1881), + [aux_sym_cmd_identifier_token6] = ACTIONS(1881), + [aux_sym_cmd_identifier_token7] = ACTIONS(1881), + [aux_sym_cmd_identifier_token8] = ACTIONS(1879), + [aux_sym_cmd_identifier_token9] = ACTIONS(1879), + [aux_sym_cmd_identifier_token10] = ACTIONS(1881), + [aux_sym_cmd_identifier_token11] = ACTIONS(1881), + [aux_sym_cmd_identifier_token12] = ACTIONS(1879), + [aux_sym_cmd_identifier_token13] = ACTIONS(1879), + [aux_sym_cmd_identifier_token14] = ACTIONS(1879), + [aux_sym_cmd_identifier_token15] = ACTIONS(1879), + [aux_sym_cmd_identifier_token16] = ACTIONS(1881), + [aux_sym_cmd_identifier_token17] = ACTIONS(1881), + [aux_sym_cmd_identifier_token18] = ACTIONS(1881), + [aux_sym_cmd_identifier_token19] = ACTIONS(1881), + [aux_sym_cmd_identifier_token20] = ACTIONS(1881), + [aux_sym_cmd_identifier_token21] = ACTIONS(1881), + [aux_sym_cmd_identifier_token22] = ACTIONS(1881), + [aux_sym_cmd_identifier_token23] = ACTIONS(1881), + [aux_sym_cmd_identifier_token24] = ACTIONS(1881), + [aux_sym_cmd_identifier_token25] = ACTIONS(1881), + [aux_sym_cmd_identifier_token26] = ACTIONS(1881), + [aux_sym_cmd_identifier_token27] = ACTIONS(1881), + [aux_sym_cmd_identifier_token28] = ACTIONS(1881), + [aux_sym_cmd_identifier_token29] = ACTIONS(1881), + [aux_sym_cmd_identifier_token30] = ACTIONS(1881), + [aux_sym_cmd_identifier_token31] = ACTIONS(1881), + [aux_sym_cmd_identifier_token32] = ACTIONS(1881), + [aux_sym_cmd_identifier_token33] = ACTIONS(1881), + [aux_sym_cmd_identifier_token34] = ACTIONS(1879), + [aux_sym_cmd_identifier_token35] = ACTIONS(1881), + [aux_sym_cmd_identifier_token36] = ACTIONS(1881), + [aux_sym_cmd_identifier_token37] = ACTIONS(1881), + [aux_sym_cmd_identifier_token38] = ACTIONS(1879), + [aux_sym_cmd_identifier_token39] = ACTIONS(1881), + [aux_sym_cmd_identifier_token40] = ACTIONS(1881), + [anon_sym_def] = ACTIONS(1879), + [anon_sym_export_DASHenv] = ACTIONS(1879), + [anon_sym_extern] = ACTIONS(1879), + [anon_sym_module] = ACTIONS(1879), + [anon_sym_use] = ACTIONS(1879), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_COMMA] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1881), + [anon_sym_error] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_break] = ACTIONS(1879), + [anon_sym_continue] = ACTIONS(1879), + [anon_sym_for] = ACTIONS(1879), + [anon_sym_in2] = ACTIONS(1879), + [anon_sym_loop] = ACTIONS(1879), + [anon_sym_make] = ACTIONS(1879), + [anon_sym_while] = ACTIONS(1879), + [anon_sym_do] = ACTIONS(1879), + [anon_sym_if] = ACTIONS(1879), + [anon_sym_else] = ACTIONS(1879), + [anon_sym_match] = ACTIONS(1879), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_try] = ACTIONS(1879), + [anon_sym_catch] = ACTIONS(1879), + [anon_sym_return] = ACTIONS(1879), + [anon_sym_source] = ACTIONS(1879), + [anon_sym_source_DASHenv] = ACTIONS(1879), + [anon_sym_register] = ACTIONS(1879), + [anon_sym_hide] = ACTIONS(1879), + [anon_sym_hide_DASHenv] = ACTIONS(1879), + [anon_sym_overlay] = ACTIONS(1879), + [anon_sym_as] = ACTIONS(1879), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1879), + [aux_sym__val_number_token5] = ACTIONS(1879), + [aux_sym__val_number_token6] = ACTIONS(1879), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), }, - [737] = { - [sym_comment] = STATE(737), - [anon_sym_export] = ACTIONS(2170), - [anon_sym_alias] = ACTIONS(2170), - [anon_sym_let] = ACTIONS(2170), - [anon_sym_let_DASHenv] = ACTIONS(2170), - [anon_sym_mut] = ACTIONS(2170), - [anon_sym_const] = ACTIONS(2170), - [aux_sym_cmd_identifier_token1] = ACTIONS(2170), - [aux_sym_cmd_identifier_token2] = ACTIONS(2176), - [aux_sym_cmd_identifier_token3] = ACTIONS(2176), - [aux_sym_cmd_identifier_token4] = ACTIONS(2176), - [aux_sym_cmd_identifier_token5] = ACTIONS(2176), - [aux_sym_cmd_identifier_token6] = ACTIONS(2176), - [aux_sym_cmd_identifier_token7] = ACTIONS(2176), - [aux_sym_cmd_identifier_token8] = ACTIONS(2170), - [aux_sym_cmd_identifier_token9] = ACTIONS(2170), - [aux_sym_cmd_identifier_token10] = ACTIONS(2176), - [aux_sym_cmd_identifier_token11] = ACTIONS(2176), - [aux_sym_cmd_identifier_token12] = ACTIONS(2170), - [aux_sym_cmd_identifier_token13] = ACTIONS(2170), - [aux_sym_cmd_identifier_token14] = ACTIONS(2170), - [aux_sym_cmd_identifier_token15] = ACTIONS(2170), - [aux_sym_cmd_identifier_token16] = ACTIONS(2176), - [aux_sym_cmd_identifier_token17] = ACTIONS(2176), - [aux_sym_cmd_identifier_token18] = ACTIONS(2176), - [aux_sym_cmd_identifier_token19] = ACTIONS(2176), - [aux_sym_cmd_identifier_token20] = ACTIONS(2176), - [aux_sym_cmd_identifier_token21] = ACTIONS(2176), - [aux_sym_cmd_identifier_token22] = ACTIONS(2176), - [aux_sym_cmd_identifier_token23] = ACTIONS(2176), - [aux_sym_cmd_identifier_token24] = ACTIONS(2176), - [aux_sym_cmd_identifier_token25] = ACTIONS(2176), - [aux_sym_cmd_identifier_token26] = ACTIONS(2176), - [aux_sym_cmd_identifier_token27] = ACTIONS(2176), - [aux_sym_cmd_identifier_token28] = ACTIONS(2176), - [aux_sym_cmd_identifier_token29] = ACTIONS(2176), - [aux_sym_cmd_identifier_token30] = ACTIONS(2176), - [aux_sym_cmd_identifier_token31] = ACTIONS(2176), - [aux_sym_cmd_identifier_token32] = ACTIONS(2176), - [aux_sym_cmd_identifier_token33] = ACTIONS(2176), - [aux_sym_cmd_identifier_token34] = ACTIONS(2170), - [aux_sym_cmd_identifier_token35] = ACTIONS(2176), - [aux_sym_cmd_identifier_token36] = ACTIONS(2176), - [aux_sym_cmd_identifier_token37] = ACTIONS(2176), - [aux_sym_cmd_identifier_token38] = ACTIONS(2170), - [aux_sym_cmd_identifier_token39] = ACTIONS(2176), - [aux_sym_cmd_identifier_token40] = ACTIONS(2176), - [anon_sym_def] = ACTIONS(2170), - [anon_sym_export_DASHenv] = ACTIONS(2170), - [anon_sym_extern] = ACTIONS(2170), - [anon_sym_module] = ACTIONS(2170), - [anon_sym_use] = ACTIONS(2170), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2176), - [anon_sym_error] = ACTIONS(2170), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_break] = ACTIONS(2170), - [anon_sym_continue] = ACTIONS(2170), - [anon_sym_for] = ACTIONS(2170), - [anon_sym_in2] = ACTIONS(2170), - [anon_sym_loop] = ACTIONS(2170), - [anon_sym_make] = ACTIONS(2170), - [anon_sym_while] = ACTIONS(2170), - [anon_sym_do] = ACTIONS(2170), - [anon_sym_if] = ACTIONS(2170), - [anon_sym_else] = ACTIONS(2170), - [anon_sym_match] = ACTIONS(2170), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_try] = ACTIONS(2170), - [anon_sym_catch] = ACTIONS(2170), - [anon_sym_return] = ACTIONS(2170), - [anon_sym_source] = ACTIONS(2170), - [anon_sym_source_DASHenv] = ACTIONS(2170), - [anon_sym_register] = ACTIONS(2170), - [anon_sym_hide] = ACTIONS(2170), - [anon_sym_hide_DASHenv] = ACTIONS(2170), - [anon_sym_overlay] = ACTIONS(2170), - [anon_sym_as] = ACTIONS(2170), - [anon_sym_PLUS2] = ACTIONS(2170), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2170), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2170), - [aux_sym__val_number_token5] = ACTIONS(2170), - [aux_sym__val_number_token6] = ACTIONS(2170), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2176), + [723] = { + [sym_comment] = STATE(723), + [anon_sym_export] = ACTIONS(992), + [anon_sym_alias] = ACTIONS(992), + [anon_sym_let] = ACTIONS(992), + [anon_sym_let_DASHenv] = ACTIONS(992), + [anon_sym_mut] = ACTIONS(992), + [anon_sym_const] = ACTIONS(992), + [aux_sym_cmd_identifier_token1] = ACTIONS(992), + [aux_sym_cmd_identifier_token2] = ACTIONS(998), + [aux_sym_cmd_identifier_token3] = ACTIONS(998), + [aux_sym_cmd_identifier_token4] = ACTIONS(998), + [aux_sym_cmd_identifier_token5] = ACTIONS(998), + [aux_sym_cmd_identifier_token6] = ACTIONS(998), + [aux_sym_cmd_identifier_token7] = ACTIONS(998), + [aux_sym_cmd_identifier_token8] = ACTIONS(992), + [aux_sym_cmd_identifier_token9] = ACTIONS(992), + [aux_sym_cmd_identifier_token10] = ACTIONS(998), + [aux_sym_cmd_identifier_token11] = ACTIONS(998), + [aux_sym_cmd_identifier_token12] = ACTIONS(992), + [aux_sym_cmd_identifier_token13] = ACTIONS(992), + [aux_sym_cmd_identifier_token14] = ACTIONS(992), + [aux_sym_cmd_identifier_token15] = ACTIONS(992), + [aux_sym_cmd_identifier_token16] = ACTIONS(998), + [aux_sym_cmd_identifier_token17] = ACTIONS(998), + [aux_sym_cmd_identifier_token18] = ACTIONS(998), + [aux_sym_cmd_identifier_token19] = ACTIONS(998), + [aux_sym_cmd_identifier_token20] = ACTIONS(998), + [aux_sym_cmd_identifier_token21] = ACTIONS(998), + [aux_sym_cmd_identifier_token22] = ACTIONS(998), + [aux_sym_cmd_identifier_token23] = ACTIONS(998), + [aux_sym_cmd_identifier_token24] = ACTIONS(998), + [aux_sym_cmd_identifier_token25] = ACTIONS(998), + [aux_sym_cmd_identifier_token26] = ACTIONS(998), + [aux_sym_cmd_identifier_token27] = ACTIONS(998), + [aux_sym_cmd_identifier_token28] = ACTIONS(998), + [aux_sym_cmd_identifier_token29] = ACTIONS(998), + [aux_sym_cmd_identifier_token30] = ACTIONS(998), + [aux_sym_cmd_identifier_token31] = ACTIONS(998), + [aux_sym_cmd_identifier_token32] = ACTIONS(998), + [aux_sym_cmd_identifier_token33] = ACTIONS(998), + [aux_sym_cmd_identifier_token34] = ACTIONS(992), + [aux_sym_cmd_identifier_token35] = ACTIONS(998), + [aux_sym_cmd_identifier_token36] = ACTIONS(998), + [aux_sym_cmd_identifier_token37] = ACTIONS(998), + [aux_sym_cmd_identifier_token38] = ACTIONS(992), + [aux_sym_cmd_identifier_token39] = ACTIONS(998), + [aux_sym_cmd_identifier_token40] = ACTIONS(998), + [anon_sym_def] = ACTIONS(992), + [anon_sym_export_DASHenv] = ACTIONS(992), + [anon_sym_extern] = ACTIONS(992), + [anon_sym_module] = ACTIONS(992), + [anon_sym_use] = ACTIONS(992), + [anon_sym_LPAREN] = ACTIONS(998), + [anon_sym_COMMA] = ACTIONS(1002), + [anon_sym_DOLLAR] = ACTIONS(998), + [anon_sym_error] = ACTIONS(992), + [anon_sym_DASH2] = ACTIONS(992), + [anon_sym_break] = ACTIONS(992), + [anon_sym_continue] = ACTIONS(992), + [anon_sym_for] = ACTIONS(992), + [anon_sym_in2] = ACTIONS(992), + [anon_sym_loop] = ACTIONS(992), + [anon_sym_make] = ACTIONS(992), + [anon_sym_while] = ACTIONS(992), + [anon_sym_do] = ACTIONS(992), + [anon_sym_if] = ACTIONS(992), + [anon_sym_else] = ACTIONS(992), + [anon_sym_match] = ACTIONS(992), + [anon_sym_RBRACE] = ACTIONS(998), + [anon_sym_try] = ACTIONS(992), + [anon_sym_catch] = ACTIONS(992), + [anon_sym_return] = ACTIONS(992), + [anon_sym_source] = ACTIONS(992), + [anon_sym_source_DASHenv] = ACTIONS(992), + [anon_sym_register] = ACTIONS(992), + [anon_sym_hide] = ACTIONS(992), + [anon_sym_hide_DASHenv] = ACTIONS(992), + [anon_sym_overlay] = ACTIONS(992), + [anon_sym_as] = ACTIONS(992), + [anon_sym_PLUS2] = ACTIONS(992), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(998), + [aux_sym__val_number_decimal_token1] = ACTIONS(992), + [aux_sym__val_number_decimal_token2] = ACTIONS(998), + [aux_sym__val_number_decimal_token3] = ACTIONS(998), + [aux_sym__val_number_decimal_token4] = ACTIONS(998), + [aux_sym__val_number_token1] = ACTIONS(998), + [aux_sym__val_number_token2] = ACTIONS(998), + [aux_sym__val_number_token3] = ACTIONS(998), + [aux_sym__val_number_token4] = ACTIONS(992), + [aux_sym__val_number_token5] = ACTIONS(992), + [aux_sym__val_number_token6] = ACTIONS(992), + [anon_sym_DQUOTE] = ACTIONS(998), + [sym__str_single_quotes] = ACTIONS(998), + [sym__str_back_ticks] = ACTIONS(998), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(998), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2176), - }, - [738] = { - [sym_comment] = STATE(738), - [anon_sym_export] = ACTIONS(1933), - [anon_sym_alias] = ACTIONS(1933), - [anon_sym_let] = ACTIONS(1933), - [anon_sym_let_DASHenv] = ACTIONS(1933), - [anon_sym_mut] = ACTIONS(1933), - [anon_sym_const] = ACTIONS(1933), - [aux_sym_cmd_identifier_token1] = ACTIONS(1933), - [aux_sym_cmd_identifier_token2] = ACTIONS(1935), - [aux_sym_cmd_identifier_token3] = ACTIONS(1935), - [aux_sym_cmd_identifier_token4] = ACTIONS(1935), - [aux_sym_cmd_identifier_token5] = ACTIONS(1935), - [aux_sym_cmd_identifier_token6] = ACTIONS(1935), - [aux_sym_cmd_identifier_token7] = ACTIONS(1935), - [aux_sym_cmd_identifier_token8] = ACTIONS(1933), - [aux_sym_cmd_identifier_token9] = ACTIONS(1933), - [aux_sym_cmd_identifier_token10] = ACTIONS(1935), - [aux_sym_cmd_identifier_token11] = ACTIONS(1935), - [aux_sym_cmd_identifier_token12] = ACTIONS(1933), - [aux_sym_cmd_identifier_token13] = ACTIONS(1933), - [aux_sym_cmd_identifier_token14] = ACTIONS(1933), - [aux_sym_cmd_identifier_token15] = ACTIONS(1933), - [aux_sym_cmd_identifier_token16] = ACTIONS(1935), - [aux_sym_cmd_identifier_token17] = ACTIONS(1935), - [aux_sym_cmd_identifier_token18] = ACTIONS(1935), - [aux_sym_cmd_identifier_token19] = ACTIONS(1935), - [aux_sym_cmd_identifier_token20] = ACTIONS(1935), - [aux_sym_cmd_identifier_token21] = ACTIONS(1935), - [aux_sym_cmd_identifier_token22] = ACTIONS(1935), - [aux_sym_cmd_identifier_token23] = ACTIONS(1935), - [aux_sym_cmd_identifier_token24] = ACTIONS(1935), - [aux_sym_cmd_identifier_token25] = ACTIONS(1935), - [aux_sym_cmd_identifier_token26] = ACTIONS(1935), - [aux_sym_cmd_identifier_token27] = ACTIONS(1935), - [aux_sym_cmd_identifier_token28] = ACTIONS(1935), - [aux_sym_cmd_identifier_token29] = ACTIONS(1935), - [aux_sym_cmd_identifier_token30] = ACTIONS(1935), - [aux_sym_cmd_identifier_token31] = ACTIONS(1935), - [aux_sym_cmd_identifier_token32] = ACTIONS(1935), - [aux_sym_cmd_identifier_token33] = ACTIONS(1935), - [aux_sym_cmd_identifier_token34] = ACTIONS(1933), - [aux_sym_cmd_identifier_token35] = ACTIONS(1935), - [aux_sym_cmd_identifier_token36] = ACTIONS(1935), - [aux_sym_cmd_identifier_token37] = ACTIONS(1935), - [aux_sym_cmd_identifier_token38] = ACTIONS(1933), - [aux_sym_cmd_identifier_token39] = ACTIONS(1935), - [aux_sym_cmd_identifier_token40] = ACTIONS(1935), - [anon_sym_def] = ACTIONS(1933), - [anon_sym_export_DASHenv] = ACTIONS(1933), - [anon_sym_extern] = ACTIONS(1933), - [anon_sym_module] = ACTIONS(1933), - [anon_sym_use] = ACTIONS(1933), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1935), - [anon_sym_error] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_break] = ACTIONS(1933), - [anon_sym_continue] = ACTIONS(1933), - [anon_sym_for] = ACTIONS(1933), - [anon_sym_in2] = ACTIONS(1933), - [anon_sym_loop] = ACTIONS(1933), - [anon_sym_make] = ACTIONS(1933), - [anon_sym_while] = ACTIONS(1933), - [anon_sym_do] = ACTIONS(1933), - [anon_sym_if] = ACTIONS(1933), - [anon_sym_else] = ACTIONS(1933), - [anon_sym_match] = ACTIONS(1933), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_try] = ACTIONS(1933), - [anon_sym_catch] = ACTIONS(1933), - [anon_sym_return] = ACTIONS(1933), - [anon_sym_source] = ACTIONS(1933), - [anon_sym_source_DASHenv] = ACTIONS(1933), - [anon_sym_register] = ACTIONS(1933), - [anon_sym_hide] = ACTIONS(1933), - [anon_sym_hide_DASHenv] = ACTIONS(1933), - [anon_sym_overlay] = ACTIONS(1933), - [anon_sym_as] = ACTIONS(1933), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1933), - [aux_sym__val_number_token5] = ACTIONS(1933), - [aux_sym__val_number_token6] = ACTIONS(1933), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1935), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), + [sym_raw_string_begin] = ACTIONS(998), }, - [739] = { - [sym_comment] = STATE(739), - [anon_sym_export] = ACTIONS(2419), - [anon_sym_alias] = ACTIONS(2419), - [anon_sym_let] = ACTIONS(2419), - [anon_sym_let_DASHenv] = ACTIONS(2419), - [anon_sym_mut] = ACTIONS(2419), - [anon_sym_const] = ACTIONS(2419), - [aux_sym_cmd_identifier_token1] = ACTIONS(2419), - [aux_sym_cmd_identifier_token2] = ACTIONS(2421), - [aux_sym_cmd_identifier_token3] = ACTIONS(2421), - [aux_sym_cmd_identifier_token4] = ACTIONS(2421), - [aux_sym_cmd_identifier_token5] = ACTIONS(2421), - [aux_sym_cmd_identifier_token6] = ACTIONS(2421), - [aux_sym_cmd_identifier_token7] = ACTIONS(2421), - [aux_sym_cmd_identifier_token8] = ACTIONS(2419), - [aux_sym_cmd_identifier_token9] = ACTIONS(2419), - [aux_sym_cmd_identifier_token10] = ACTIONS(2421), - [aux_sym_cmd_identifier_token11] = ACTIONS(2421), - [aux_sym_cmd_identifier_token12] = ACTIONS(2419), - [aux_sym_cmd_identifier_token13] = ACTIONS(2419), - [aux_sym_cmd_identifier_token14] = ACTIONS(2419), - [aux_sym_cmd_identifier_token15] = ACTIONS(2419), - [aux_sym_cmd_identifier_token16] = ACTIONS(2421), - [aux_sym_cmd_identifier_token17] = ACTIONS(2421), - [aux_sym_cmd_identifier_token18] = ACTIONS(2421), - [aux_sym_cmd_identifier_token19] = ACTIONS(2421), - [aux_sym_cmd_identifier_token20] = ACTIONS(2421), - [aux_sym_cmd_identifier_token21] = ACTIONS(2421), - [aux_sym_cmd_identifier_token22] = ACTIONS(2421), - [aux_sym_cmd_identifier_token23] = ACTIONS(2421), - [aux_sym_cmd_identifier_token24] = ACTIONS(2421), - [aux_sym_cmd_identifier_token25] = ACTIONS(2421), - [aux_sym_cmd_identifier_token26] = ACTIONS(2421), - [aux_sym_cmd_identifier_token27] = ACTIONS(2421), - [aux_sym_cmd_identifier_token28] = ACTIONS(2421), - [aux_sym_cmd_identifier_token29] = ACTIONS(2421), - [aux_sym_cmd_identifier_token30] = ACTIONS(2421), - [aux_sym_cmd_identifier_token31] = ACTIONS(2421), - [aux_sym_cmd_identifier_token32] = ACTIONS(2421), - [aux_sym_cmd_identifier_token33] = ACTIONS(2421), - [aux_sym_cmd_identifier_token34] = ACTIONS(2419), - [aux_sym_cmd_identifier_token35] = ACTIONS(2421), - [aux_sym_cmd_identifier_token36] = ACTIONS(2421), - [aux_sym_cmd_identifier_token37] = ACTIONS(2421), - [aux_sym_cmd_identifier_token38] = ACTIONS(2419), - [aux_sym_cmd_identifier_token39] = ACTIONS(2421), - [aux_sym_cmd_identifier_token40] = ACTIONS(2421), - [anon_sym_def] = ACTIONS(2419), - [anon_sym_export_DASHenv] = ACTIONS(2419), - [anon_sym_extern] = ACTIONS(2419), - [anon_sym_module] = ACTIONS(2419), - [anon_sym_use] = ACTIONS(2419), - [anon_sym_LPAREN] = ACTIONS(2421), - [anon_sym_DOLLAR] = ACTIONS(2421), - [anon_sym_error] = ACTIONS(2419), - [anon_sym_DASH2] = ACTIONS(2419), - [anon_sym_break] = ACTIONS(2419), - [anon_sym_continue] = ACTIONS(2419), - [anon_sym_for] = ACTIONS(2419), - [anon_sym_in2] = ACTIONS(2419), - [anon_sym_loop] = ACTIONS(2419), - [anon_sym_make] = ACTIONS(2419), - [anon_sym_while] = ACTIONS(2419), - [anon_sym_do] = ACTIONS(2419), - [anon_sym_if] = ACTIONS(2419), - [anon_sym_else] = ACTIONS(2419), - [anon_sym_match] = ACTIONS(2419), - [anon_sym_RBRACE] = ACTIONS(2421), - [anon_sym_try] = ACTIONS(2419), - [anon_sym_catch] = ACTIONS(2419), - [anon_sym_return] = ACTIONS(2419), - [anon_sym_source] = ACTIONS(2419), - [anon_sym_source_DASHenv] = ACTIONS(2419), - [anon_sym_register] = ACTIONS(2419), - [anon_sym_hide] = ACTIONS(2419), - [anon_sym_hide_DASHenv] = ACTIONS(2419), - [anon_sym_overlay] = ACTIONS(2419), - [anon_sym_as] = ACTIONS(2419), - [anon_sym_PLUS2] = ACTIONS(2419), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2421), - [aux_sym__val_number_decimal_token1] = ACTIONS(2419), - [aux_sym__val_number_decimal_token2] = ACTIONS(2421), - [aux_sym__val_number_decimal_token3] = ACTIONS(2421), - [aux_sym__val_number_decimal_token4] = ACTIONS(2421), - [aux_sym__val_number_token1] = ACTIONS(2421), - [aux_sym__val_number_token2] = ACTIONS(2421), - [aux_sym__val_number_token3] = ACTIONS(2421), - [aux_sym__val_number_token4] = ACTIONS(2419), - [aux_sym__val_number_token5] = ACTIONS(2419), - [aux_sym__val_number_token6] = ACTIONS(2419), - [anon_sym_DQUOTE] = ACTIONS(2421), - [sym__str_single_quotes] = ACTIONS(2421), - [sym__str_back_ticks] = ACTIONS(2421), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2421), + [724] = { + [sym_comment] = STATE(724), + [aux_sym_shebang_repeat1] = STATE(724), + [anon_sym_export] = ACTIONS(1274), + [anon_sym_alias] = ACTIONS(1274), + [anon_sym_let] = ACTIONS(1274), + [anon_sym_let_DASHenv] = ACTIONS(1274), + [anon_sym_mut] = ACTIONS(1274), + [anon_sym_const] = ACTIONS(1274), + [aux_sym_cmd_identifier_token1] = ACTIONS(1274), + [aux_sym_cmd_identifier_token2] = ACTIONS(1276), + [aux_sym_cmd_identifier_token3] = ACTIONS(1276), + [aux_sym_cmd_identifier_token4] = ACTIONS(1276), + [aux_sym_cmd_identifier_token5] = ACTIONS(1276), + [aux_sym_cmd_identifier_token6] = ACTIONS(1276), + [aux_sym_cmd_identifier_token7] = ACTIONS(1276), + [aux_sym_cmd_identifier_token8] = ACTIONS(1274), + [aux_sym_cmd_identifier_token9] = ACTIONS(1274), + [aux_sym_cmd_identifier_token10] = ACTIONS(1276), + [aux_sym_cmd_identifier_token11] = ACTIONS(1276), + [aux_sym_cmd_identifier_token12] = ACTIONS(1274), + [aux_sym_cmd_identifier_token13] = ACTIONS(1274), + [aux_sym_cmd_identifier_token14] = ACTIONS(1274), + [aux_sym_cmd_identifier_token15] = ACTIONS(1274), + [aux_sym_cmd_identifier_token16] = ACTIONS(1276), + [aux_sym_cmd_identifier_token17] = ACTIONS(1276), + [aux_sym_cmd_identifier_token18] = ACTIONS(1276), + [aux_sym_cmd_identifier_token19] = ACTIONS(1276), + [aux_sym_cmd_identifier_token20] = ACTIONS(1276), + [aux_sym_cmd_identifier_token21] = ACTIONS(1276), + [aux_sym_cmd_identifier_token22] = ACTIONS(1276), + [aux_sym_cmd_identifier_token23] = ACTIONS(1276), + [aux_sym_cmd_identifier_token24] = ACTIONS(1276), + [aux_sym_cmd_identifier_token25] = ACTIONS(1276), + [aux_sym_cmd_identifier_token26] = ACTIONS(1276), + [aux_sym_cmd_identifier_token27] = ACTIONS(1276), + [aux_sym_cmd_identifier_token28] = ACTIONS(1276), + [aux_sym_cmd_identifier_token29] = ACTIONS(1276), + [aux_sym_cmd_identifier_token30] = ACTIONS(1276), + [aux_sym_cmd_identifier_token31] = ACTIONS(1276), + [aux_sym_cmd_identifier_token32] = ACTIONS(1276), + [aux_sym_cmd_identifier_token33] = ACTIONS(1276), + [aux_sym_cmd_identifier_token34] = ACTIONS(1274), + [aux_sym_cmd_identifier_token35] = ACTIONS(1276), + [aux_sym_cmd_identifier_token36] = ACTIONS(1276), + [aux_sym_cmd_identifier_token37] = ACTIONS(1276), + [aux_sym_cmd_identifier_token38] = ACTIONS(1274), + [aux_sym_cmd_identifier_token39] = ACTIONS(1276), + [aux_sym_cmd_identifier_token40] = ACTIONS(1276), + [sym__newline] = ACTIONS(2493), + [anon_sym_def] = ACTIONS(1274), + [anon_sym_export_DASHenv] = ACTIONS(1274), + [anon_sym_extern] = ACTIONS(1274), + [anon_sym_module] = ACTIONS(1274), + [anon_sym_use] = ACTIONS(1274), + [anon_sym_LPAREN] = ACTIONS(1276), + [anon_sym_DOLLAR] = ACTIONS(1276), + [anon_sym_error] = ACTIONS(1274), + [anon_sym_DASH2] = ACTIONS(1274), + [anon_sym_break] = ACTIONS(1274), + [anon_sym_continue] = ACTIONS(1274), + [anon_sym_for] = ACTIONS(1274), + [anon_sym_in2] = ACTIONS(1274), + [anon_sym_loop] = ACTIONS(1274), + [anon_sym_make] = ACTIONS(1274), + [anon_sym_while] = ACTIONS(1274), + [anon_sym_do] = ACTIONS(1274), + [anon_sym_if] = ACTIONS(1274), + [anon_sym_else] = ACTIONS(1274), + [anon_sym_match] = ACTIONS(1274), + [anon_sym_try] = ACTIONS(1274), + [anon_sym_catch] = ACTIONS(1274), + [anon_sym_return] = ACTIONS(1274), + [anon_sym_source] = ACTIONS(1274), + [anon_sym_source_DASHenv] = ACTIONS(1274), + [anon_sym_register] = ACTIONS(1274), + [anon_sym_hide] = ACTIONS(1274), + [anon_sym_hide_DASHenv] = ACTIONS(1274), + [anon_sym_overlay] = ACTIONS(1274), + [anon_sym_as] = ACTIONS(1274), + [anon_sym_PLUS2] = ACTIONS(1274), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1276), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1276), + [aux_sym__val_number_decimal_token1] = ACTIONS(1274), + [aux_sym__val_number_decimal_token2] = ACTIONS(1276), + [aux_sym__val_number_decimal_token3] = ACTIONS(1276), + [aux_sym__val_number_decimal_token4] = ACTIONS(1276), + [aux_sym__val_number_token1] = ACTIONS(1276), + [aux_sym__val_number_token2] = ACTIONS(1276), + [aux_sym__val_number_token3] = ACTIONS(1276), + [aux_sym__val_number_token4] = ACTIONS(1274), + [aux_sym__val_number_token5] = ACTIONS(1274), + [aux_sym__val_number_token6] = ACTIONS(1274), + [anon_sym_DQUOTE] = ACTIONS(1276), + [sym__str_single_quotes] = ACTIONS(1276), + [sym__str_back_ticks] = ACTIONS(1276), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1276), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2421), + [sym_raw_string_begin] = ACTIONS(1276), }, - [740] = { - [sym_comment] = STATE(740), - [anon_sym_export] = ACTIONS(2124), - [anon_sym_alias] = ACTIONS(2124), - [anon_sym_let] = ACTIONS(2124), - [anon_sym_let_DASHenv] = ACTIONS(2124), - [anon_sym_mut] = ACTIONS(2124), - [anon_sym_const] = ACTIONS(2124), - [aux_sym_cmd_identifier_token1] = ACTIONS(2124), - [aux_sym_cmd_identifier_token2] = ACTIONS(2130), - [aux_sym_cmd_identifier_token3] = ACTIONS(2130), - [aux_sym_cmd_identifier_token4] = ACTIONS(2130), - [aux_sym_cmd_identifier_token5] = ACTIONS(2130), - [aux_sym_cmd_identifier_token6] = ACTIONS(2130), - [aux_sym_cmd_identifier_token7] = ACTIONS(2130), - [aux_sym_cmd_identifier_token8] = ACTIONS(2124), - [aux_sym_cmd_identifier_token9] = ACTIONS(2124), - [aux_sym_cmd_identifier_token10] = ACTIONS(2130), - [aux_sym_cmd_identifier_token11] = ACTIONS(2130), - [aux_sym_cmd_identifier_token12] = ACTIONS(2124), - [aux_sym_cmd_identifier_token13] = ACTIONS(2124), - [aux_sym_cmd_identifier_token14] = ACTIONS(2124), - [aux_sym_cmd_identifier_token15] = ACTIONS(2124), - [aux_sym_cmd_identifier_token16] = ACTIONS(2130), - [aux_sym_cmd_identifier_token17] = ACTIONS(2130), - [aux_sym_cmd_identifier_token18] = ACTIONS(2130), - [aux_sym_cmd_identifier_token19] = ACTIONS(2130), - [aux_sym_cmd_identifier_token20] = ACTIONS(2130), - [aux_sym_cmd_identifier_token21] = ACTIONS(2130), - [aux_sym_cmd_identifier_token22] = ACTIONS(2130), - [aux_sym_cmd_identifier_token23] = ACTIONS(2130), - [aux_sym_cmd_identifier_token24] = ACTIONS(2130), - [aux_sym_cmd_identifier_token25] = ACTIONS(2130), - [aux_sym_cmd_identifier_token26] = ACTIONS(2130), - [aux_sym_cmd_identifier_token27] = ACTIONS(2130), - [aux_sym_cmd_identifier_token28] = ACTIONS(2130), - [aux_sym_cmd_identifier_token29] = ACTIONS(2130), - [aux_sym_cmd_identifier_token30] = ACTIONS(2130), - [aux_sym_cmd_identifier_token31] = ACTIONS(2130), - [aux_sym_cmd_identifier_token32] = ACTIONS(2130), - [aux_sym_cmd_identifier_token33] = ACTIONS(2130), - [aux_sym_cmd_identifier_token34] = ACTIONS(2124), - [aux_sym_cmd_identifier_token35] = ACTIONS(2130), - [aux_sym_cmd_identifier_token36] = ACTIONS(2130), - [aux_sym_cmd_identifier_token37] = ACTIONS(2130), - [aux_sym_cmd_identifier_token38] = ACTIONS(2124), - [aux_sym_cmd_identifier_token39] = ACTIONS(2130), - [aux_sym_cmd_identifier_token40] = ACTIONS(2130), - [anon_sym_def] = ACTIONS(2124), - [anon_sym_export_DASHenv] = ACTIONS(2124), - [anon_sym_extern] = ACTIONS(2124), - [anon_sym_module] = ACTIONS(2124), - [anon_sym_use] = ACTIONS(2124), - [anon_sym_LPAREN] = ACTIONS(2130), - [anon_sym_DOLLAR] = ACTIONS(2130), - [anon_sym_error] = ACTIONS(2124), - [anon_sym_DASH2] = ACTIONS(2124), - [anon_sym_break] = ACTIONS(2124), - [anon_sym_continue] = ACTIONS(2124), - [anon_sym_for] = ACTIONS(2124), - [anon_sym_in2] = ACTIONS(2124), - [anon_sym_loop] = ACTIONS(2124), - [anon_sym_make] = ACTIONS(2124), - [anon_sym_while] = ACTIONS(2124), - [anon_sym_do] = ACTIONS(2124), - [anon_sym_if] = ACTIONS(2124), - [anon_sym_else] = ACTIONS(2124), - [anon_sym_match] = ACTIONS(2124), - [anon_sym_RBRACE] = ACTIONS(2130), - [anon_sym_try] = ACTIONS(2124), - [anon_sym_catch] = ACTIONS(2124), - [anon_sym_return] = ACTIONS(2124), - [anon_sym_source] = ACTIONS(2124), - [anon_sym_source_DASHenv] = ACTIONS(2124), - [anon_sym_register] = ACTIONS(2124), - [anon_sym_hide] = ACTIONS(2124), - [anon_sym_hide_DASHenv] = ACTIONS(2124), - [anon_sym_overlay] = ACTIONS(2124), - [anon_sym_as] = ACTIONS(2124), - [anon_sym_PLUS2] = ACTIONS(2124), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2130), - [aux_sym__val_number_decimal_token1] = ACTIONS(2124), - [aux_sym__val_number_decimal_token2] = ACTIONS(2130), - [aux_sym__val_number_decimal_token3] = ACTIONS(2130), - [aux_sym__val_number_decimal_token4] = ACTIONS(2130), - [aux_sym__val_number_token1] = ACTIONS(2130), - [aux_sym__val_number_token2] = ACTIONS(2130), - [aux_sym__val_number_token3] = ACTIONS(2130), - [aux_sym__val_number_token4] = ACTIONS(2124), - [aux_sym__val_number_token5] = ACTIONS(2124), - [aux_sym__val_number_token6] = ACTIONS(2124), - [anon_sym_DQUOTE] = ACTIONS(2130), - [sym__str_single_quotes] = ACTIONS(2130), - [sym__str_back_ticks] = ACTIONS(2130), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2130), + [725] = { + [sym_comment] = STATE(725), + [anon_sym_export] = ACTIONS(1004), + [anon_sym_alias] = ACTIONS(1004), + [anon_sym_let] = ACTIONS(1004), + [anon_sym_let_DASHenv] = ACTIONS(1004), + [anon_sym_mut] = ACTIONS(1004), + [anon_sym_const] = ACTIONS(1004), + [aux_sym_cmd_identifier_token1] = ACTIONS(1004), + [aux_sym_cmd_identifier_token2] = ACTIONS(1000), + [aux_sym_cmd_identifier_token3] = ACTIONS(1000), + [aux_sym_cmd_identifier_token4] = ACTIONS(1000), + [aux_sym_cmd_identifier_token5] = ACTIONS(1000), + [aux_sym_cmd_identifier_token6] = ACTIONS(1000), + [aux_sym_cmd_identifier_token7] = ACTIONS(1000), + [aux_sym_cmd_identifier_token8] = ACTIONS(1004), + [aux_sym_cmd_identifier_token9] = ACTIONS(1004), + [aux_sym_cmd_identifier_token10] = ACTIONS(1000), + [aux_sym_cmd_identifier_token11] = ACTIONS(1000), + [aux_sym_cmd_identifier_token12] = ACTIONS(1004), + [aux_sym_cmd_identifier_token13] = ACTIONS(1004), + [aux_sym_cmd_identifier_token14] = ACTIONS(1004), + [aux_sym_cmd_identifier_token15] = ACTIONS(1004), + [aux_sym_cmd_identifier_token16] = ACTIONS(1000), + [aux_sym_cmd_identifier_token17] = ACTIONS(1000), + [aux_sym_cmd_identifier_token18] = ACTIONS(1000), + [aux_sym_cmd_identifier_token19] = ACTIONS(1000), + [aux_sym_cmd_identifier_token20] = ACTIONS(1000), + [aux_sym_cmd_identifier_token21] = ACTIONS(1000), + [aux_sym_cmd_identifier_token22] = ACTIONS(1000), + [aux_sym_cmd_identifier_token23] = ACTIONS(1000), + [aux_sym_cmd_identifier_token24] = ACTIONS(1000), + [aux_sym_cmd_identifier_token25] = ACTIONS(1000), + [aux_sym_cmd_identifier_token26] = ACTIONS(1000), + [aux_sym_cmd_identifier_token27] = ACTIONS(1000), + [aux_sym_cmd_identifier_token28] = ACTIONS(1000), + [aux_sym_cmd_identifier_token29] = ACTIONS(1000), + [aux_sym_cmd_identifier_token30] = ACTIONS(1000), + [aux_sym_cmd_identifier_token31] = ACTIONS(1000), + [aux_sym_cmd_identifier_token32] = ACTIONS(1000), + [aux_sym_cmd_identifier_token33] = ACTIONS(1000), + [aux_sym_cmd_identifier_token34] = ACTIONS(1004), + [aux_sym_cmd_identifier_token35] = ACTIONS(1000), + [aux_sym_cmd_identifier_token36] = ACTIONS(1000), + [aux_sym_cmd_identifier_token37] = ACTIONS(1000), + [aux_sym_cmd_identifier_token38] = ACTIONS(1004), + [aux_sym_cmd_identifier_token39] = ACTIONS(1000), + [aux_sym_cmd_identifier_token40] = ACTIONS(1000), + [anon_sym_def] = ACTIONS(1004), + [anon_sym_export_DASHenv] = ACTIONS(1004), + [anon_sym_extern] = ACTIONS(1004), + [anon_sym_module] = ACTIONS(1004), + [anon_sym_use] = ACTIONS(1004), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_COMMA] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1000), + [anon_sym_error] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_break] = ACTIONS(1004), + [anon_sym_continue] = ACTIONS(1004), + [anon_sym_for] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1004), + [anon_sym_loop] = ACTIONS(1004), + [anon_sym_make] = ACTIONS(1004), + [anon_sym_while] = ACTIONS(1004), + [anon_sym_do] = ACTIONS(1004), + [anon_sym_if] = ACTIONS(1004), + [anon_sym_else] = ACTIONS(1004), + [anon_sym_match] = ACTIONS(1004), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_try] = ACTIONS(1004), + [anon_sym_catch] = ACTIONS(1004), + [anon_sym_return] = ACTIONS(1004), + [anon_sym_source] = ACTIONS(1004), + [anon_sym_source_DASHenv] = ACTIONS(1004), + [anon_sym_register] = ACTIONS(1004), + [anon_sym_hide] = ACTIONS(1004), + [anon_sym_hide_DASHenv] = ACTIONS(1004), + [anon_sym_overlay] = ACTIONS(1004), + [anon_sym_as] = ACTIONS(1004), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2130), - }, - [741] = { - [sym_comment] = STATE(741), - [anon_sym_export] = ACTIONS(1894), - [anon_sym_alias] = ACTIONS(1894), - [anon_sym_let] = ACTIONS(1894), - [anon_sym_let_DASHenv] = ACTIONS(1894), - [anon_sym_mut] = ACTIONS(1894), - [anon_sym_const] = ACTIONS(1894), - [aux_sym_cmd_identifier_token1] = ACTIONS(1894), - [aux_sym_cmd_identifier_token2] = ACTIONS(1896), - [aux_sym_cmd_identifier_token3] = ACTIONS(1896), - [aux_sym_cmd_identifier_token4] = ACTIONS(1896), - [aux_sym_cmd_identifier_token5] = ACTIONS(1896), - [aux_sym_cmd_identifier_token6] = ACTIONS(1896), - [aux_sym_cmd_identifier_token7] = ACTIONS(1896), - [aux_sym_cmd_identifier_token8] = ACTIONS(1894), - [aux_sym_cmd_identifier_token9] = ACTIONS(1894), - [aux_sym_cmd_identifier_token10] = ACTIONS(1896), - [aux_sym_cmd_identifier_token11] = ACTIONS(1896), - [aux_sym_cmd_identifier_token12] = ACTIONS(1894), - [aux_sym_cmd_identifier_token13] = ACTIONS(1894), - [aux_sym_cmd_identifier_token14] = ACTIONS(1894), - [aux_sym_cmd_identifier_token15] = ACTIONS(1894), - [aux_sym_cmd_identifier_token16] = ACTIONS(1896), - [aux_sym_cmd_identifier_token17] = ACTIONS(1896), - [aux_sym_cmd_identifier_token18] = ACTIONS(1896), - [aux_sym_cmd_identifier_token19] = ACTIONS(1896), - [aux_sym_cmd_identifier_token20] = ACTIONS(1896), - [aux_sym_cmd_identifier_token21] = ACTIONS(1896), - [aux_sym_cmd_identifier_token22] = ACTIONS(1896), - [aux_sym_cmd_identifier_token23] = ACTIONS(1896), - [aux_sym_cmd_identifier_token24] = ACTIONS(1896), - [aux_sym_cmd_identifier_token25] = ACTIONS(1896), - [aux_sym_cmd_identifier_token26] = ACTIONS(1896), - [aux_sym_cmd_identifier_token27] = ACTIONS(1896), - [aux_sym_cmd_identifier_token28] = ACTIONS(1896), - [aux_sym_cmd_identifier_token29] = ACTIONS(1896), - [aux_sym_cmd_identifier_token30] = ACTIONS(1896), - [aux_sym_cmd_identifier_token31] = ACTIONS(1896), - [aux_sym_cmd_identifier_token32] = ACTIONS(1896), - [aux_sym_cmd_identifier_token33] = ACTIONS(1896), - [aux_sym_cmd_identifier_token34] = ACTIONS(1894), - [aux_sym_cmd_identifier_token35] = ACTIONS(1896), - [aux_sym_cmd_identifier_token36] = ACTIONS(1896), - [aux_sym_cmd_identifier_token37] = ACTIONS(1896), - [aux_sym_cmd_identifier_token38] = ACTIONS(1894), - [aux_sym_cmd_identifier_token39] = ACTIONS(1896), - [aux_sym_cmd_identifier_token40] = ACTIONS(1896), - [anon_sym_def] = ACTIONS(1894), - [anon_sym_export_DASHenv] = ACTIONS(1894), - [anon_sym_extern] = ACTIONS(1894), - [anon_sym_module] = ACTIONS(1894), - [anon_sym_use] = ACTIONS(1894), - [anon_sym_LPAREN] = ACTIONS(1896), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_error] = ACTIONS(1894), - [anon_sym_DASH2] = ACTIONS(1894), - [anon_sym_break] = ACTIONS(1894), - [anon_sym_continue] = ACTIONS(1894), - [anon_sym_for] = ACTIONS(1894), - [anon_sym_in2] = ACTIONS(1894), - [anon_sym_loop] = ACTIONS(1894), - [anon_sym_make] = ACTIONS(1894), - [anon_sym_while] = ACTIONS(1894), - [anon_sym_do] = ACTIONS(1894), - [anon_sym_if] = ACTIONS(1894), - [anon_sym_else] = ACTIONS(1894), - [anon_sym_match] = ACTIONS(1894), - [anon_sym_RBRACE] = ACTIONS(1896), - [anon_sym_try] = ACTIONS(1894), - [anon_sym_catch] = ACTIONS(1894), - [anon_sym_return] = ACTIONS(1894), - [anon_sym_source] = ACTIONS(1894), - [anon_sym_source_DASHenv] = ACTIONS(1894), - [anon_sym_register] = ACTIONS(1894), - [anon_sym_hide] = ACTIONS(1894), - [anon_sym_hide_DASHenv] = ACTIONS(1894), - [anon_sym_overlay] = ACTIONS(1894), - [anon_sym_as] = ACTIONS(1894), - [anon_sym_PLUS2] = ACTIONS(1894), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1896), - [aux_sym__val_number_decimal_token1] = ACTIONS(1894), - [aux_sym__val_number_decimal_token2] = ACTIONS(1896), - [aux_sym__val_number_decimal_token3] = ACTIONS(1896), - [aux_sym__val_number_decimal_token4] = ACTIONS(1896), - [aux_sym__val_number_token1] = ACTIONS(1896), - [aux_sym__val_number_token2] = ACTIONS(1896), - [aux_sym__val_number_token3] = ACTIONS(1896), - [aux_sym__val_number_token4] = ACTIONS(1894), - [aux_sym__val_number_token5] = ACTIONS(1894), - [aux_sym__val_number_token6] = ACTIONS(1894), - [anon_sym_DQUOTE] = ACTIONS(1896), - [sym__str_single_quotes] = ACTIONS(1896), - [sym__str_back_ticks] = ACTIONS(1896), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1896), - }, - [742] = { - [sym_comment] = STATE(742), - [anon_sym_export] = ACTIONS(2136), - [anon_sym_alias] = ACTIONS(2136), - [anon_sym_let] = ACTIONS(2136), - [anon_sym_let_DASHenv] = ACTIONS(2136), - [anon_sym_mut] = ACTIONS(2136), - [anon_sym_const] = ACTIONS(2136), - [aux_sym_cmd_identifier_token1] = ACTIONS(2136), - [aux_sym_cmd_identifier_token2] = ACTIONS(2138), - [aux_sym_cmd_identifier_token3] = ACTIONS(2138), - [aux_sym_cmd_identifier_token4] = ACTIONS(2138), - [aux_sym_cmd_identifier_token5] = ACTIONS(2138), - [aux_sym_cmd_identifier_token6] = ACTIONS(2138), - [aux_sym_cmd_identifier_token7] = ACTIONS(2138), - [aux_sym_cmd_identifier_token8] = ACTIONS(2136), - [aux_sym_cmd_identifier_token9] = ACTIONS(2136), - [aux_sym_cmd_identifier_token10] = ACTIONS(2138), - [aux_sym_cmd_identifier_token11] = ACTIONS(2138), - [aux_sym_cmd_identifier_token12] = ACTIONS(2136), - [aux_sym_cmd_identifier_token13] = ACTIONS(2136), - [aux_sym_cmd_identifier_token14] = ACTIONS(2136), - [aux_sym_cmd_identifier_token15] = ACTIONS(2136), - [aux_sym_cmd_identifier_token16] = ACTIONS(2138), - [aux_sym_cmd_identifier_token17] = ACTIONS(2138), - [aux_sym_cmd_identifier_token18] = ACTIONS(2138), - [aux_sym_cmd_identifier_token19] = ACTIONS(2138), - [aux_sym_cmd_identifier_token20] = ACTIONS(2138), - [aux_sym_cmd_identifier_token21] = ACTIONS(2138), - [aux_sym_cmd_identifier_token22] = ACTIONS(2138), - [aux_sym_cmd_identifier_token23] = ACTIONS(2138), - [aux_sym_cmd_identifier_token24] = ACTIONS(2138), - [aux_sym_cmd_identifier_token25] = ACTIONS(2138), - [aux_sym_cmd_identifier_token26] = ACTIONS(2138), - [aux_sym_cmd_identifier_token27] = ACTIONS(2138), - [aux_sym_cmd_identifier_token28] = ACTIONS(2138), - [aux_sym_cmd_identifier_token29] = ACTIONS(2138), - [aux_sym_cmd_identifier_token30] = ACTIONS(2138), - [aux_sym_cmd_identifier_token31] = ACTIONS(2138), - [aux_sym_cmd_identifier_token32] = ACTIONS(2138), - [aux_sym_cmd_identifier_token33] = ACTIONS(2138), - [aux_sym_cmd_identifier_token34] = ACTIONS(2136), - [aux_sym_cmd_identifier_token35] = ACTIONS(2138), - [aux_sym_cmd_identifier_token36] = ACTIONS(2138), - [aux_sym_cmd_identifier_token37] = ACTIONS(2138), - [aux_sym_cmd_identifier_token38] = ACTIONS(2136), - [aux_sym_cmd_identifier_token39] = ACTIONS(2138), - [aux_sym_cmd_identifier_token40] = ACTIONS(2138), - [anon_sym_def] = ACTIONS(2136), - [anon_sym_export_DASHenv] = ACTIONS(2136), - [anon_sym_extern] = ACTIONS(2136), - [anon_sym_module] = ACTIONS(2136), - [anon_sym_use] = ACTIONS(2136), - [anon_sym_LPAREN] = ACTIONS(2138), - [anon_sym_DOLLAR] = ACTIONS(2138), - [anon_sym_error] = ACTIONS(2136), - [anon_sym_DASH2] = ACTIONS(2136), - [anon_sym_break] = ACTIONS(2136), - [anon_sym_continue] = ACTIONS(2136), - [anon_sym_for] = ACTIONS(2136), - [anon_sym_in2] = ACTIONS(2136), - [anon_sym_loop] = ACTIONS(2136), - [anon_sym_make] = ACTIONS(2136), - [anon_sym_while] = ACTIONS(2136), - [anon_sym_do] = ACTIONS(2136), - [anon_sym_if] = ACTIONS(2136), - [anon_sym_else] = ACTIONS(2136), - [anon_sym_match] = ACTIONS(2136), - [anon_sym_RBRACE] = ACTIONS(2138), - [anon_sym_try] = ACTIONS(2136), - [anon_sym_catch] = ACTIONS(2136), - [anon_sym_return] = ACTIONS(2136), - [anon_sym_source] = ACTIONS(2136), - [anon_sym_source_DASHenv] = ACTIONS(2136), - [anon_sym_register] = ACTIONS(2136), - [anon_sym_hide] = ACTIONS(2136), - [anon_sym_hide_DASHenv] = ACTIONS(2136), - [anon_sym_overlay] = ACTIONS(2136), - [anon_sym_as] = ACTIONS(2136), - [anon_sym_PLUS2] = ACTIONS(2136), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2138), - [aux_sym__val_number_decimal_token1] = ACTIONS(2136), - [aux_sym__val_number_decimal_token2] = ACTIONS(2138), - [aux_sym__val_number_decimal_token3] = ACTIONS(2138), - [aux_sym__val_number_decimal_token4] = ACTIONS(2138), - [aux_sym__val_number_token1] = ACTIONS(2138), - [aux_sym__val_number_token2] = ACTIONS(2138), - [aux_sym__val_number_token3] = ACTIONS(2138), - [aux_sym__val_number_token4] = ACTIONS(2136), - [aux_sym__val_number_token5] = ACTIONS(2136), - [aux_sym__val_number_token6] = ACTIONS(2136), - [anon_sym_DQUOTE] = ACTIONS(2138), - [sym__str_single_quotes] = ACTIONS(2138), - [sym__str_back_ticks] = ACTIONS(2138), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2138), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2138), - }, - [743] = { - [aux_sym__pipe_separator] = STATE(754), - [sym_comment] = STATE(743), - [aux_sym_shebang_repeat1] = STATE(5022), - [aux_sym_cmd_identifier_token1] = ACTIONS(2521), - [aux_sym_cmd_identifier_token2] = ACTIONS(2523), - [aux_sym_cmd_identifier_token3] = ACTIONS(2523), - [aux_sym_cmd_identifier_token4] = ACTIONS(2523), - [aux_sym_cmd_identifier_token5] = ACTIONS(2523), - [aux_sym_cmd_identifier_token6] = ACTIONS(2523), - [aux_sym_cmd_identifier_token7] = ACTIONS(2523), - [aux_sym_cmd_identifier_token8] = ACTIONS(2523), - [aux_sym_cmd_identifier_token9] = ACTIONS(2521), - [aux_sym_cmd_identifier_token10] = ACTIONS(2523), - [aux_sym_cmd_identifier_token11] = ACTIONS(2523), - [aux_sym_cmd_identifier_token12] = ACTIONS(2523), - [aux_sym_cmd_identifier_token13] = ACTIONS(2521), - [aux_sym_cmd_identifier_token14] = ACTIONS(2523), - [aux_sym_cmd_identifier_token15] = ACTIONS(2521), - [aux_sym_cmd_identifier_token16] = ACTIONS(2523), - [aux_sym_cmd_identifier_token17] = ACTIONS(2523), - [aux_sym_cmd_identifier_token18] = ACTIONS(2521), - [aux_sym_cmd_identifier_token19] = ACTIONS(2523), - [aux_sym_cmd_identifier_token20] = ACTIONS(2523), - [aux_sym_cmd_identifier_token21] = ACTIONS(2523), - [aux_sym_cmd_identifier_token22] = ACTIONS(2523), - [aux_sym_cmd_identifier_token23] = ACTIONS(2523), - [aux_sym_cmd_identifier_token24] = ACTIONS(2523), - [aux_sym_cmd_identifier_token25] = ACTIONS(2523), - [aux_sym_cmd_identifier_token26] = ACTIONS(2523), - [aux_sym_cmd_identifier_token27] = ACTIONS(2523), - [aux_sym_cmd_identifier_token28] = ACTIONS(2523), - [aux_sym_cmd_identifier_token29] = ACTIONS(2523), - [aux_sym_cmd_identifier_token30] = ACTIONS(2523), - [aux_sym_cmd_identifier_token31] = ACTIONS(2523), - [aux_sym_cmd_identifier_token32] = ACTIONS(2521), - [aux_sym_cmd_identifier_token33] = ACTIONS(2523), - [aux_sym_cmd_identifier_token34] = ACTIONS(2521), - [aux_sym_cmd_identifier_token35] = ACTIONS(2523), - [aux_sym_cmd_identifier_token36] = ACTIONS(2523), - [aux_sym_cmd_identifier_token37] = ACTIONS(2523), - [aux_sym_cmd_identifier_token38] = ACTIONS(2521), - [aux_sym_cmd_identifier_token39] = ACTIONS(2523), - [aux_sym_cmd_identifier_token40] = ACTIONS(2523), - [sym__newline] = ACTIONS(2525), - [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_LBRACK] = ACTIONS(2523), - [anon_sym_LPAREN] = ACTIONS(2523), - [anon_sym_DOLLAR] = ACTIONS(2521), - [anon_sym_DASH2] = ACTIONS(2521), - [anon_sym_break] = ACTIONS(2521), - [anon_sym_continue] = ACTIONS(2521), - [anon_sym_do] = ACTIONS(2521), - [anon_sym_if] = ACTIONS(2521), - [anon_sym_match] = ACTIONS(2521), - [anon_sym_LBRACE] = ACTIONS(2523), - [anon_sym_DOT_DOT] = ACTIONS(2521), - [anon_sym_try] = ACTIONS(2521), - [anon_sym_return] = ACTIONS(2521), - [anon_sym_where] = ACTIONS(2523), - [aux_sym_expr_unary_token1] = ACTIONS(2523), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2523), - [anon_sym_DOT_DOT_LT] = ACTIONS(2523), - [anon_sym_null] = ACTIONS(2521), - [anon_sym_true] = ACTIONS(2521), - [anon_sym_false] = ACTIONS(2521), - [aux_sym__val_number_decimal_token1] = ACTIONS(2521), - [aux_sym__val_number_decimal_token2] = ACTIONS(2523), - [aux_sym__val_number_decimal_token3] = ACTIONS(2523), - [aux_sym__val_number_decimal_token4] = ACTIONS(2523), - [aux_sym__val_number_token1] = ACTIONS(2523), - [aux_sym__val_number_token2] = ACTIONS(2523), - [aux_sym__val_number_token3] = ACTIONS(2523), - [aux_sym__val_number_token4] = ACTIONS(2521), - [aux_sym__val_number_token5] = ACTIONS(2521), - [aux_sym__val_number_token6] = ACTIONS(2521), - [anon_sym_0b] = ACTIONS(2521), - [anon_sym_0o] = ACTIONS(2521), - [anon_sym_0x] = ACTIONS(2521), - [sym_val_date] = ACTIONS(2523), - [anon_sym_DQUOTE] = ACTIONS(2523), - [sym__str_single_quotes] = ACTIONS(2523), - [sym__str_back_ticks] = ACTIONS(2523), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2523), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2523), - [aux_sym_env_var_token1] = ACTIONS(2521), - [anon_sym_CARET] = ACTIONS(2523), - [aux_sym_command_token1] = ACTIONS(2523), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2523), + [sym_raw_string_begin] = ACTIONS(1000), }, - [744] = { - [sym_comment] = STATE(744), - [anon_sym_export] = ACTIONS(2497), - [anon_sym_alias] = ACTIONS(2497), - [anon_sym_let] = ACTIONS(2497), - [anon_sym_let_DASHenv] = ACTIONS(2497), - [anon_sym_mut] = ACTIONS(2497), - [anon_sym_const] = ACTIONS(2497), - [aux_sym_cmd_identifier_token1] = ACTIONS(2497), - [aux_sym_cmd_identifier_token2] = ACTIONS(2499), - [aux_sym_cmd_identifier_token3] = ACTIONS(2499), - [aux_sym_cmd_identifier_token4] = ACTIONS(2499), - [aux_sym_cmd_identifier_token5] = ACTIONS(2499), - [aux_sym_cmd_identifier_token6] = ACTIONS(2499), - [aux_sym_cmd_identifier_token7] = ACTIONS(2499), - [aux_sym_cmd_identifier_token8] = ACTIONS(2497), - [aux_sym_cmd_identifier_token9] = ACTIONS(2497), - [aux_sym_cmd_identifier_token10] = ACTIONS(2499), - [aux_sym_cmd_identifier_token11] = ACTIONS(2499), - [aux_sym_cmd_identifier_token12] = ACTIONS(2497), - [aux_sym_cmd_identifier_token13] = ACTIONS(2497), - [aux_sym_cmd_identifier_token14] = ACTIONS(2497), - [aux_sym_cmd_identifier_token15] = ACTIONS(2497), - [aux_sym_cmd_identifier_token16] = ACTIONS(2499), - [aux_sym_cmd_identifier_token17] = ACTIONS(2499), - [aux_sym_cmd_identifier_token18] = ACTIONS(2499), - [aux_sym_cmd_identifier_token19] = ACTIONS(2499), - [aux_sym_cmd_identifier_token20] = ACTIONS(2499), - [aux_sym_cmd_identifier_token21] = ACTIONS(2499), - [aux_sym_cmd_identifier_token22] = ACTIONS(2499), - [aux_sym_cmd_identifier_token23] = ACTIONS(2499), - [aux_sym_cmd_identifier_token24] = ACTIONS(2499), - [aux_sym_cmd_identifier_token25] = ACTIONS(2499), - [aux_sym_cmd_identifier_token26] = ACTIONS(2499), - [aux_sym_cmd_identifier_token27] = ACTIONS(2499), - [aux_sym_cmd_identifier_token28] = ACTIONS(2499), - [aux_sym_cmd_identifier_token29] = ACTIONS(2499), - [aux_sym_cmd_identifier_token30] = ACTIONS(2499), - [aux_sym_cmd_identifier_token31] = ACTIONS(2499), - [aux_sym_cmd_identifier_token32] = ACTIONS(2499), - [aux_sym_cmd_identifier_token33] = ACTIONS(2499), - [aux_sym_cmd_identifier_token34] = ACTIONS(2497), - [aux_sym_cmd_identifier_token35] = ACTIONS(2499), - [aux_sym_cmd_identifier_token36] = ACTIONS(2499), - [aux_sym_cmd_identifier_token37] = ACTIONS(2499), - [aux_sym_cmd_identifier_token38] = ACTIONS(2497), - [aux_sym_cmd_identifier_token39] = ACTIONS(2499), - [aux_sym_cmd_identifier_token40] = ACTIONS(2499), - [anon_sym_def] = ACTIONS(2497), - [anon_sym_export_DASHenv] = ACTIONS(2497), - [anon_sym_extern] = ACTIONS(2497), - [anon_sym_module] = ACTIONS(2497), - [anon_sym_use] = ACTIONS(2497), - [anon_sym_LPAREN] = ACTIONS(2499), - [anon_sym_DOLLAR] = ACTIONS(2499), - [anon_sym_error] = ACTIONS(2497), - [anon_sym_DASH2] = ACTIONS(2497), - [anon_sym_break] = ACTIONS(2497), - [anon_sym_continue] = ACTIONS(2497), - [anon_sym_for] = ACTIONS(2497), - [anon_sym_in2] = ACTIONS(2497), - [anon_sym_loop] = ACTIONS(2497), - [anon_sym_make] = ACTIONS(2497), - [anon_sym_while] = ACTIONS(2497), - [anon_sym_do] = ACTIONS(2497), - [anon_sym_if] = ACTIONS(2497), - [anon_sym_else] = ACTIONS(2497), - [anon_sym_match] = ACTIONS(2497), - [anon_sym_RBRACE] = ACTIONS(2499), - [anon_sym_try] = ACTIONS(2497), - [anon_sym_catch] = ACTIONS(2497), - [anon_sym_return] = ACTIONS(2497), - [anon_sym_source] = ACTIONS(2497), - [anon_sym_source_DASHenv] = ACTIONS(2497), - [anon_sym_register] = ACTIONS(2497), - [anon_sym_hide] = ACTIONS(2497), - [anon_sym_hide_DASHenv] = ACTIONS(2497), - [anon_sym_overlay] = ACTIONS(2497), - [anon_sym_as] = ACTIONS(2497), - [anon_sym_PLUS2] = ACTIONS(2497), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2499), - [aux_sym__val_number_decimal_token1] = ACTIONS(2497), - [aux_sym__val_number_decimal_token2] = ACTIONS(2499), - [aux_sym__val_number_decimal_token3] = ACTIONS(2499), - [aux_sym__val_number_decimal_token4] = ACTIONS(2499), - [aux_sym__val_number_token1] = ACTIONS(2499), - [aux_sym__val_number_token2] = ACTIONS(2499), - [aux_sym__val_number_token3] = ACTIONS(2499), - [aux_sym__val_number_token4] = ACTIONS(2497), - [aux_sym__val_number_token5] = ACTIONS(2497), - [aux_sym__val_number_token6] = ACTIONS(2497), - [anon_sym_DQUOTE] = ACTIONS(2499), - [sym__str_single_quotes] = ACTIONS(2499), - [sym__str_back_ticks] = ACTIONS(2499), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2499), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2499), + [726] = { + [sym_comment] = STATE(726), + [anon_sym_export] = ACTIONS(2059), + [anon_sym_alias] = ACTIONS(2059), + [anon_sym_let] = ACTIONS(2059), + [anon_sym_let_DASHenv] = ACTIONS(2059), + [anon_sym_mut] = ACTIONS(2059), + [anon_sym_const] = ACTIONS(2059), + [aux_sym_cmd_identifier_token1] = ACTIONS(2059), + [aux_sym_cmd_identifier_token2] = ACTIONS(2065), + [aux_sym_cmd_identifier_token3] = ACTIONS(2065), + [aux_sym_cmd_identifier_token4] = ACTIONS(2065), + [aux_sym_cmd_identifier_token5] = ACTIONS(2065), + [aux_sym_cmd_identifier_token6] = ACTIONS(2065), + [aux_sym_cmd_identifier_token7] = ACTIONS(2065), + [aux_sym_cmd_identifier_token8] = ACTIONS(2059), + [aux_sym_cmd_identifier_token9] = ACTIONS(2059), + [aux_sym_cmd_identifier_token10] = ACTIONS(2065), + [aux_sym_cmd_identifier_token11] = ACTIONS(2065), + [aux_sym_cmd_identifier_token12] = ACTIONS(2059), + [aux_sym_cmd_identifier_token13] = ACTIONS(2059), + [aux_sym_cmd_identifier_token14] = ACTIONS(2059), + [aux_sym_cmd_identifier_token15] = ACTIONS(2059), + [aux_sym_cmd_identifier_token16] = ACTIONS(2065), + [aux_sym_cmd_identifier_token17] = ACTIONS(2065), + [aux_sym_cmd_identifier_token18] = ACTIONS(2065), + [aux_sym_cmd_identifier_token19] = ACTIONS(2065), + [aux_sym_cmd_identifier_token20] = ACTIONS(2065), + [aux_sym_cmd_identifier_token21] = ACTIONS(2065), + [aux_sym_cmd_identifier_token22] = ACTIONS(2065), + [aux_sym_cmd_identifier_token23] = ACTIONS(2065), + [aux_sym_cmd_identifier_token24] = ACTIONS(2065), + [aux_sym_cmd_identifier_token25] = ACTIONS(2065), + [aux_sym_cmd_identifier_token26] = ACTIONS(2065), + [aux_sym_cmd_identifier_token27] = ACTIONS(2065), + [aux_sym_cmd_identifier_token28] = ACTIONS(2065), + [aux_sym_cmd_identifier_token29] = ACTIONS(2065), + [aux_sym_cmd_identifier_token30] = ACTIONS(2065), + [aux_sym_cmd_identifier_token31] = ACTIONS(2065), + [aux_sym_cmd_identifier_token32] = ACTIONS(2065), + [aux_sym_cmd_identifier_token33] = ACTIONS(2065), + [aux_sym_cmd_identifier_token34] = ACTIONS(2059), + [aux_sym_cmd_identifier_token35] = ACTIONS(2065), + [aux_sym_cmd_identifier_token36] = ACTIONS(2065), + [aux_sym_cmd_identifier_token37] = ACTIONS(2065), + [aux_sym_cmd_identifier_token38] = ACTIONS(2059), + [aux_sym_cmd_identifier_token39] = ACTIONS(2065), + [aux_sym_cmd_identifier_token40] = ACTIONS(2065), + [anon_sym_def] = ACTIONS(2059), + [anon_sym_export_DASHenv] = ACTIONS(2059), + [anon_sym_extern] = ACTIONS(2059), + [anon_sym_module] = ACTIONS(2059), + [anon_sym_use] = ACTIONS(2059), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_COMMA] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2065), + [anon_sym_error] = ACTIONS(2059), + [anon_sym_DASH2] = ACTIONS(2059), + [anon_sym_break] = ACTIONS(2059), + [anon_sym_continue] = ACTIONS(2059), + [anon_sym_for] = ACTIONS(2059), + [anon_sym_in2] = ACTIONS(2059), + [anon_sym_loop] = ACTIONS(2059), + [anon_sym_make] = ACTIONS(2059), + [anon_sym_while] = ACTIONS(2059), + [anon_sym_do] = ACTIONS(2059), + [anon_sym_if] = ACTIONS(2059), + [anon_sym_else] = ACTIONS(2059), + [anon_sym_match] = ACTIONS(2059), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_try] = ACTIONS(2059), + [anon_sym_catch] = ACTIONS(2059), + [anon_sym_return] = ACTIONS(2059), + [anon_sym_source] = ACTIONS(2059), + [anon_sym_source_DASHenv] = ACTIONS(2059), + [anon_sym_register] = ACTIONS(2059), + [anon_sym_hide] = ACTIONS(2059), + [anon_sym_hide_DASHenv] = ACTIONS(2059), + [anon_sym_overlay] = ACTIONS(2059), + [anon_sym_as] = ACTIONS(2059), + [anon_sym_PLUS2] = ACTIONS(2059), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2059), + [aux_sym__val_number_token5] = ACTIONS(2059), + [aux_sym__val_number_token6] = ACTIONS(2059), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2065), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2065), }, - [745] = { - [sym_comment] = STATE(745), - [anon_sym_export] = ACTIONS(2140), - [anon_sym_alias] = ACTIONS(2140), - [anon_sym_let] = ACTIONS(2140), - [anon_sym_let_DASHenv] = ACTIONS(2140), - [anon_sym_mut] = ACTIONS(2140), - [anon_sym_const] = ACTIONS(2140), - [aux_sym_cmd_identifier_token1] = ACTIONS(2140), - [aux_sym_cmd_identifier_token2] = ACTIONS(2142), - [aux_sym_cmd_identifier_token3] = ACTIONS(2142), - [aux_sym_cmd_identifier_token4] = ACTIONS(2142), - [aux_sym_cmd_identifier_token5] = ACTIONS(2142), - [aux_sym_cmd_identifier_token6] = ACTIONS(2142), - [aux_sym_cmd_identifier_token7] = ACTIONS(2142), - [aux_sym_cmd_identifier_token8] = ACTIONS(2140), - [aux_sym_cmd_identifier_token9] = ACTIONS(2140), - [aux_sym_cmd_identifier_token10] = ACTIONS(2142), - [aux_sym_cmd_identifier_token11] = ACTIONS(2142), - [aux_sym_cmd_identifier_token12] = ACTIONS(2140), - [aux_sym_cmd_identifier_token13] = ACTIONS(2140), - [aux_sym_cmd_identifier_token14] = ACTIONS(2140), - [aux_sym_cmd_identifier_token15] = ACTIONS(2140), - [aux_sym_cmd_identifier_token16] = ACTIONS(2142), - [aux_sym_cmd_identifier_token17] = ACTIONS(2142), - [aux_sym_cmd_identifier_token18] = ACTIONS(2142), - [aux_sym_cmd_identifier_token19] = ACTIONS(2142), - [aux_sym_cmd_identifier_token20] = ACTIONS(2142), - [aux_sym_cmd_identifier_token21] = ACTIONS(2142), - [aux_sym_cmd_identifier_token22] = ACTIONS(2142), - [aux_sym_cmd_identifier_token23] = ACTIONS(2142), - [aux_sym_cmd_identifier_token24] = ACTIONS(2142), - [aux_sym_cmd_identifier_token25] = ACTIONS(2142), - [aux_sym_cmd_identifier_token26] = ACTIONS(2142), - [aux_sym_cmd_identifier_token27] = ACTIONS(2142), - [aux_sym_cmd_identifier_token28] = ACTIONS(2142), - [aux_sym_cmd_identifier_token29] = ACTIONS(2142), - [aux_sym_cmd_identifier_token30] = ACTIONS(2142), - [aux_sym_cmd_identifier_token31] = ACTIONS(2142), - [aux_sym_cmd_identifier_token32] = ACTIONS(2142), - [aux_sym_cmd_identifier_token33] = ACTIONS(2142), - [aux_sym_cmd_identifier_token34] = ACTIONS(2140), - [aux_sym_cmd_identifier_token35] = ACTIONS(2142), - [aux_sym_cmd_identifier_token36] = ACTIONS(2142), - [aux_sym_cmd_identifier_token37] = ACTIONS(2142), - [aux_sym_cmd_identifier_token38] = ACTIONS(2140), - [aux_sym_cmd_identifier_token39] = ACTIONS(2142), - [aux_sym_cmd_identifier_token40] = ACTIONS(2142), - [anon_sym_def] = ACTIONS(2140), - [anon_sym_export_DASHenv] = ACTIONS(2140), - [anon_sym_extern] = ACTIONS(2140), - [anon_sym_module] = ACTIONS(2140), - [anon_sym_use] = ACTIONS(2140), - [anon_sym_LPAREN] = ACTIONS(2142), - [anon_sym_DOLLAR] = ACTIONS(2142), - [anon_sym_error] = ACTIONS(2140), - [anon_sym_DASH2] = ACTIONS(2140), - [anon_sym_break] = ACTIONS(2140), - [anon_sym_continue] = ACTIONS(2140), - [anon_sym_for] = ACTIONS(2140), - [anon_sym_in2] = ACTIONS(2140), - [anon_sym_loop] = ACTIONS(2140), - [anon_sym_make] = ACTIONS(2140), - [anon_sym_while] = ACTIONS(2140), - [anon_sym_do] = ACTIONS(2140), - [anon_sym_if] = ACTIONS(2140), - [anon_sym_else] = ACTIONS(2140), - [anon_sym_match] = ACTIONS(2140), - [anon_sym_RBRACE] = ACTIONS(2142), - [anon_sym_try] = ACTIONS(2140), - [anon_sym_catch] = ACTIONS(2140), - [anon_sym_return] = ACTIONS(2140), - [anon_sym_source] = ACTIONS(2140), - [anon_sym_source_DASHenv] = ACTIONS(2140), - [anon_sym_register] = ACTIONS(2140), - [anon_sym_hide] = ACTIONS(2140), - [anon_sym_hide_DASHenv] = ACTIONS(2140), - [anon_sym_overlay] = ACTIONS(2140), - [anon_sym_as] = ACTIONS(2140), - [anon_sym_PLUS2] = ACTIONS(2140), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2142), - [aux_sym__val_number_decimal_token1] = ACTIONS(2140), - [aux_sym__val_number_decimal_token2] = ACTIONS(2142), - [aux_sym__val_number_decimal_token3] = ACTIONS(2142), - [aux_sym__val_number_decimal_token4] = ACTIONS(2142), - [aux_sym__val_number_token1] = ACTIONS(2142), - [aux_sym__val_number_token2] = ACTIONS(2142), - [aux_sym__val_number_token3] = ACTIONS(2142), - [aux_sym__val_number_token4] = ACTIONS(2140), - [aux_sym__val_number_token5] = ACTIONS(2140), - [aux_sym__val_number_token6] = ACTIONS(2140), - [anon_sym_DQUOTE] = ACTIONS(2142), - [sym__str_single_quotes] = ACTIONS(2142), - [sym__str_back_ticks] = ACTIONS(2142), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2142), + [727] = { + [sym_comment] = STATE(727), + [anon_sym_export] = ACTIONS(1871), + [anon_sym_alias] = ACTIONS(1871), + [anon_sym_let] = ACTIONS(1871), + [anon_sym_let_DASHenv] = ACTIONS(1871), + [anon_sym_mut] = ACTIONS(1871), + [anon_sym_const] = ACTIONS(1871), + [aux_sym_cmd_identifier_token1] = ACTIONS(1871), + [aux_sym_cmd_identifier_token2] = ACTIONS(1873), + [aux_sym_cmd_identifier_token3] = ACTIONS(1873), + [aux_sym_cmd_identifier_token4] = ACTIONS(1873), + [aux_sym_cmd_identifier_token5] = ACTIONS(1873), + [aux_sym_cmd_identifier_token6] = ACTIONS(1873), + [aux_sym_cmd_identifier_token7] = ACTIONS(1873), + [aux_sym_cmd_identifier_token8] = ACTIONS(1871), + [aux_sym_cmd_identifier_token9] = ACTIONS(1871), + [aux_sym_cmd_identifier_token10] = ACTIONS(1873), + [aux_sym_cmd_identifier_token11] = ACTIONS(1873), + [aux_sym_cmd_identifier_token12] = ACTIONS(1871), + [aux_sym_cmd_identifier_token13] = ACTIONS(1871), + [aux_sym_cmd_identifier_token14] = ACTIONS(1871), + [aux_sym_cmd_identifier_token15] = ACTIONS(1871), + [aux_sym_cmd_identifier_token16] = ACTIONS(1873), + [aux_sym_cmd_identifier_token17] = ACTIONS(1873), + [aux_sym_cmd_identifier_token18] = ACTIONS(1873), + [aux_sym_cmd_identifier_token19] = ACTIONS(1873), + [aux_sym_cmd_identifier_token20] = ACTIONS(1873), + [aux_sym_cmd_identifier_token21] = ACTIONS(1873), + [aux_sym_cmd_identifier_token22] = ACTIONS(1873), + [aux_sym_cmd_identifier_token23] = ACTIONS(1873), + [aux_sym_cmd_identifier_token24] = ACTIONS(1873), + [aux_sym_cmd_identifier_token25] = ACTIONS(1873), + [aux_sym_cmd_identifier_token26] = ACTIONS(1873), + [aux_sym_cmd_identifier_token27] = ACTIONS(1873), + [aux_sym_cmd_identifier_token28] = ACTIONS(1873), + [aux_sym_cmd_identifier_token29] = ACTIONS(1873), + [aux_sym_cmd_identifier_token30] = ACTIONS(1873), + [aux_sym_cmd_identifier_token31] = ACTIONS(1873), + [aux_sym_cmd_identifier_token32] = ACTIONS(1873), + [aux_sym_cmd_identifier_token33] = ACTIONS(1873), + [aux_sym_cmd_identifier_token34] = ACTIONS(1871), + [aux_sym_cmd_identifier_token35] = ACTIONS(1873), + [aux_sym_cmd_identifier_token36] = ACTIONS(1873), + [aux_sym_cmd_identifier_token37] = ACTIONS(1873), + [aux_sym_cmd_identifier_token38] = ACTIONS(1871), + [aux_sym_cmd_identifier_token39] = ACTIONS(1873), + [aux_sym_cmd_identifier_token40] = ACTIONS(1873), + [anon_sym_def] = ACTIONS(1871), + [anon_sym_export_DASHenv] = ACTIONS(1871), + [anon_sym_extern] = ACTIONS(1871), + [anon_sym_module] = ACTIONS(1871), + [anon_sym_use] = ACTIONS(1871), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_COMMA] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1873), + [anon_sym_error] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_break] = ACTIONS(1871), + [anon_sym_continue] = ACTIONS(1871), + [anon_sym_for] = ACTIONS(1871), + [anon_sym_in2] = ACTIONS(1871), + [anon_sym_loop] = ACTIONS(1871), + [anon_sym_make] = ACTIONS(1871), + [anon_sym_while] = ACTIONS(1871), + [anon_sym_do] = ACTIONS(1871), + [anon_sym_if] = ACTIONS(1871), + [anon_sym_else] = ACTIONS(1871), + [anon_sym_match] = ACTIONS(1871), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_try] = ACTIONS(1871), + [anon_sym_catch] = ACTIONS(1871), + [anon_sym_return] = ACTIONS(1871), + [anon_sym_source] = ACTIONS(1871), + [anon_sym_source_DASHenv] = ACTIONS(1871), + [anon_sym_register] = ACTIONS(1871), + [anon_sym_hide] = ACTIONS(1871), + [anon_sym_hide_DASHenv] = ACTIONS(1871), + [anon_sym_overlay] = ACTIONS(1871), + [anon_sym_as] = ACTIONS(1871), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1871), + [aux_sym__val_number_token5] = ACTIONS(1871), + [aux_sym__val_number_token6] = ACTIONS(1871), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1873), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2142), - }, - [746] = { - [sym_comment] = STATE(746), - [anon_sym_export] = ACTIONS(2337), - [anon_sym_alias] = ACTIONS(2337), - [anon_sym_let] = ACTIONS(2337), - [anon_sym_let_DASHenv] = ACTIONS(2337), - [anon_sym_mut] = ACTIONS(2337), - [anon_sym_const] = ACTIONS(2337), - [aux_sym_cmd_identifier_token1] = ACTIONS(2337), - [aux_sym_cmd_identifier_token2] = ACTIONS(2339), - [aux_sym_cmd_identifier_token3] = ACTIONS(2339), - [aux_sym_cmd_identifier_token4] = ACTIONS(2339), - [aux_sym_cmd_identifier_token5] = ACTIONS(2339), - [aux_sym_cmd_identifier_token6] = ACTIONS(2339), - [aux_sym_cmd_identifier_token7] = ACTIONS(2339), - [aux_sym_cmd_identifier_token8] = ACTIONS(2337), - [aux_sym_cmd_identifier_token9] = ACTIONS(2337), - [aux_sym_cmd_identifier_token10] = ACTIONS(2339), - [aux_sym_cmd_identifier_token11] = ACTIONS(2339), - [aux_sym_cmd_identifier_token12] = ACTIONS(2337), - [aux_sym_cmd_identifier_token13] = ACTIONS(2337), - [aux_sym_cmd_identifier_token14] = ACTIONS(2337), - [aux_sym_cmd_identifier_token15] = ACTIONS(2337), - [aux_sym_cmd_identifier_token16] = ACTIONS(2339), - [aux_sym_cmd_identifier_token17] = ACTIONS(2339), - [aux_sym_cmd_identifier_token18] = ACTIONS(2339), - [aux_sym_cmd_identifier_token19] = ACTIONS(2339), - [aux_sym_cmd_identifier_token20] = ACTIONS(2339), - [aux_sym_cmd_identifier_token21] = ACTIONS(2339), - [aux_sym_cmd_identifier_token22] = ACTIONS(2339), - [aux_sym_cmd_identifier_token23] = ACTIONS(2339), - [aux_sym_cmd_identifier_token24] = ACTIONS(2339), - [aux_sym_cmd_identifier_token25] = ACTIONS(2339), - [aux_sym_cmd_identifier_token26] = ACTIONS(2339), - [aux_sym_cmd_identifier_token27] = ACTIONS(2339), - [aux_sym_cmd_identifier_token28] = ACTIONS(2339), - [aux_sym_cmd_identifier_token29] = ACTIONS(2339), - [aux_sym_cmd_identifier_token30] = ACTIONS(2339), - [aux_sym_cmd_identifier_token31] = ACTIONS(2339), - [aux_sym_cmd_identifier_token32] = ACTIONS(2339), - [aux_sym_cmd_identifier_token33] = ACTIONS(2339), - [aux_sym_cmd_identifier_token34] = ACTIONS(2337), - [aux_sym_cmd_identifier_token35] = ACTIONS(2339), - [aux_sym_cmd_identifier_token36] = ACTIONS(2339), - [aux_sym_cmd_identifier_token37] = ACTIONS(2339), - [aux_sym_cmd_identifier_token38] = ACTIONS(2337), - [aux_sym_cmd_identifier_token39] = ACTIONS(2339), - [aux_sym_cmd_identifier_token40] = ACTIONS(2339), - [anon_sym_def] = ACTIONS(2337), - [anon_sym_export_DASHenv] = ACTIONS(2337), - [anon_sym_extern] = ACTIONS(2337), - [anon_sym_module] = ACTIONS(2337), - [anon_sym_use] = ACTIONS(2337), - [anon_sym_LPAREN] = ACTIONS(2339), - [anon_sym_DOLLAR] = ACTIONS(2339), - [anon_sym_error] = ACTIONS(2337), - [anon_sym_DASH2] = ACTIONS(2337), - [anon_sym_break] = ACTIONS(2337), - [anon_sym_continue] = ACTIONS(2337), - [anon_sym_for] = ACTIONS(2337), - [anon_sym_in2] = ACTIONS(2337), - [anon_sym_loop] = ACTIONS(2337), - [anon_sym_make] = ACTIONS(2337), - [anon_sym_while] = ACTIONS(2337), - [anon_sym_do] = ACTIONS(2337), - [anon_sym_if] = ACTIONS(2337), - [anon_sym_else] = ACTIONS(2337), - [anon_sym_match] = ACTIONS(2337), - [anon_sym_RBRACE] = ACTIONS(2339), - [anon_sym_try] = ACTIONS(2337), - [anon_sym_catch] = ACTIONS(2337), - [anon_sym_return] = ACTIONS(2337), - [anon_sym_source] = ACTIONS(2337), - [anon_sym_source_DASHenv] = ACTIONS(2337), - [anon_sym_register] = ACTIONS(2337), - [anon_sym_hide] = ACTIONS(2337), - [anon_sym_hide_DASHenv] = ACTIONS(2337), - [anon_sym_overlay] = ACTIONS(2337), - [anon_sym_as] = ACTIONS(2337), - [anon_sym_PLUS2] = ACTIONS(2337), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2339), - [aux_sym__val_number_decimal_token1] = ACTIONS(2337), - [aux_sym__val_number_decimal_token2] = ACTIONS(2339), - [aux_sym__val_number_decimal_token3] = ACTIONS(2339), - [aux_sym__val_number_decimal_token4] = ACTIONS(2339), - [aux_sym__val_number_token1] = ACTIONS(2339), - [aux_sym__val_number_token2] = ACTIONS(2339), - [aux_sym__val_number_token3] = ACTIONS(2339), - [aux_sym__val_number_token4] = ACTIONS(2337), - [aux_sym__val_number_token5] = ACTIONS(2337), - [aux_sym__val_number_token6] = ACTIONS(2337), - [anon_sym_DQUOTE] = ACTIONS(2339), - [sym__str_single_quotes] = ACTIONS(2339), - [sym__str_back_ticks] = ACTIONS(2339), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2339), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2339), - }, - [747] = { - [sym_comment] = STATE(747), - [anon_sym_export] = ACTIONS(2341), - [anon_sym_alias] = ACTIONS(2341), - [anon_sym_let] = ACTIONS(2341), - [anon_sym_let_DASHenv] = ACTIONS(2341), - [anon_sym_mut] = ACTIONS(2341), - [anon_sym_const] = ACTIONS(2341), - [aux_sym_cmd_identifier_token1] = ACTIONS(2341), - [aux_sym_cmd_identifier_token2] = ACTIONS(2343), - [aux_sym_cmd_identifier_token3] = ACTIONS(2343), - [aux_sym_cmd_identifier_token4] = ACTIONS(2343), - [aux_sym_cmd_identifier_token5] = ACTIONS(2343), - [aux_sym_cmd_identifier_token6] = ACTIONS(2343), - [aux_sym_cmd_identifier_token7] = ACTIONS(2343), - [aux_sym_cmd_identifier_token8] = ACTIONS(2341), - [aux_sym_cmd_identifier_token9] = ACTIONS(2341), - [aux_sym_cmd_identifier_token10] = ACTIONS(2343), - [aux_sym_cmd_identifier_token11] = ACTIONS(2343), - [aux_sym_cmd_identifier_token12] = ACTIONS(2341), - [aux_sym_cmd_identifier_token13] = ACTIONS(2341), - [aux_sym_cmd_identifier_token14] = ACTIONS(2341), - [aux_sym_cmd_identifier_token15] = ACTIONS(2341), - [aux_sym_cmd_identifier_token16] = ACTIONS(2343), - [aux_sym_cmd_identifier_token17] = ACTIONS(2343), - [aux_sym_cmd_identifier_token18] = ACTIONS(2343), - [aux_sym_cmd_identifier_token19] = ACTIONS(2343), - [aux_sym_cmd_identifier_token20] = ACTIONS(2343), - [aux_sym_cmd_identifier_token21] = ACTIONS(2343), - [aux_sym_cmd_identifier_token22] = ACTIONS(2343), - [aux_sym_cmd_identifier_token23] = ACTIONS(2343), - [aux_sym_cmd_identifier_token24] = ACTIONS(2343), - [aux_sym_cmd_identifier_token25] = ACTIONS(2343), - [aux_sym_cmd_identifier_token26] = ACTIONS(2343), - [aux_sym_cmd_identifier_token27] = ACTIONS(2343), - [aux_sym_cmd_identifier_token28] = ACTIONS(2343), - [aux_sym_cmd_identifier_token29] = ACTIONS(2343), - [aux_sym_cmd_identifier_token30] = ACTIONS(2343), - [aux_sym_cmd_identifier_token31] = ACTIONS(2343), - [aux_sym_cmd_identifier_token32] = ACTIONS(2343), - [aux_sym_cmd_identifier_token33] = ACTIONS(2343), - [aux_sym_cmd_identifier_token34] = ACTIONS(2341), - [aux_sym_cmd_identifier_token35] = ACTIONS(2343), - [aux_sym_cmd_identifier_token36] = ACTIONS(2343), - [aux_sym_cmd_identifier_token37] = ACTIONS(2343), - [aux_sym_cmd_identifier_token38] = ACTIONS(2341), - [aux_sym_cmd_identifier_token39] = ACTIONS(2343), - [aux_sym_cmd_identifier_token40] = ACTIONS(2343), - [anon_sym_def] = ACTIONS(2341), - [anon_sym_export_DASHenv] = ACTIONS(2341), - [anon_sym_extern] = ACTIONS(2341), - [anon_sym_module] = ACTIONS(2341), - [anon_sym_use] = ACTIONS(2341), - [anon_sym_LPAREN] = ACTIONS(2343), - [anon_sym_DOLLAR] = ACTIONS(2343), - [anon_sym_error] = ACTIONS(2341), - [anon_sym_DASH2] = ACTIONS(2341), - [anon_sym_break] = ACTIONS(2341), - [anon_sym_continue] = ACTIONS(2341), - [anon_sym_for] = ACTIONS(2341), - [anon_sym_in2] = ACTIONS(2341), - [anon_sym_loop] = ACTIONS(2341), - [anon_sym_make] = ACTIONS(2341), - [anon_sym_while] = ACTIONS(2341), - [anon_sym_do] = ACTIONS(2341), - [anon_sym_if] = ACTIONS(2341), - [anon_sym_else] = ACTIONS(2341), - [anon_sym_match] = ACTIONS(2341), - [anon_sym_RBRACE] = ACTIONS(2343), - [anon_sym_try] = ACTIONS(2341), - [anon_sym_catch] = ACTIONS(2341), - [anon_sym_return] = ACTIONS(2341), - [anon_sym_source] = ACTIONS(2341), - [anon_sym_source_DASHenv] = ACTIONS(2341), - [anon_sym_register] = ACTIONS(2341), - [anon_sym_hide] = ACTIONS(2341), - [anon_sym_hide_DASHenv] = ACTIONS(2341), - [anon_sym_overlay] = ACTIONS(2341), - [anon_sym_as] = ACTIONS(2341), - [anon_sym_PLUS2] = ACTIONS(2341), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2343), - [aux_sym__val_number_decimal_token1] = ACTIONS(2341), - [aux_sym__val_number_decimal_token2] = ACTIONS(2343), - [aux_sym__val_number_decimal_token3] = ACTIONS(2343), - [aux_sym__val_number_decimal_token4] = ACTIONS(2343), - [aux_sym__val_number_token1] = ACTIONS(2343), - [aux_sym__val_number_token2] = ACTIONS(2343), - [aux_sym__val_number_token3] = ACTIONS(2343), - [aux_sym__val_number_token4] = ACTIONS(2341), - [aux_sym__val_number_token5] = ACTIONS(2341), - [aux_sym__val_number_token6] = ACTIONS(2341), - [anon_sym_DQUOTE] = ACTIONS(2343), - [sym__str_single_quotes] = ACTIONS(2343), - [sym__str_back_ticks] = ACTIONS(2343), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2343), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2343), + [sym_raw_string_begin] = ACTIONS(1873), }, - [748] = { - [sym_comment] = STATE(748), - [anon_sym_export] = ACTIONS(1725), - [anon_sym_alias] = ACTIONS(1725), - [anon_sym_let] = ACTIONS(1725), - [anon_sym_let_DASHenv] = ACTIONS(1725), - [anon_sym_mut] = ACTIONS(1725), - [anon_sym_const] = ACTIONS(1725), - [aux_sym_cmd_identifier_token1] = ACTIONS(1725), - [aux_sym_cmd_identifier_token2] = ACTIONS(1727), - [aux_sym_cmd_identifier_token3] = ACTIONS(1727), - [aux_sym_cmd_identifier_token4] = ACTIONS(1727), - [aux_sym_cmd_identifier_token5] = ACTIONS(1727), - [aux_sym_cmd_identifier_token6] = ACTIONS(1727), - [aux_sym_cmd_identifier_token7] = ACTIONS(1727), - [aux_sym_cmd_identifier_token8] = ACTIONS(1725), - [aux_sym_cmd_identifier_token9] = ACTIONS(1725), - [aux_sym_cmd_identifier_token10] = ACTIONS(1727), - [aux_sym_cmd_identifier_token11] = ACTIONS(1727), - [aux_sym_cmd_identifier_token12] = ACTIONS(1725), - [aux_sym_cmd_identifier_token13] = ACTIONS(1725), - [aux_sym_cmd_identifier_token14] = ACTIONS(1725), - [aux_sym_cmd_identifier_token15] = ACTIONS(1725), - [aux_sym_cmd_identifier_token16] = ACTIONS(1727), - [aux_sym_cmd_identifier_token17] = ACTIONS(1727), - [aux_sym_cmd_identifier_token18] = ACTIONS(1727), - [aux_sym_cmd_identifier_token19] = ACTIONS(1727), - [aux_sym_cmd_identifier_token20] = ACTIONS(1727), - [aux_sym_cmd_identifier_token21] = ACTIONS(1727), - [aux_sym_cmd_identifier_token22] = ACTIONS(1727), - [aux_sym_cmd_identifier_token23] = ACTIONS(1727), - [aux_sym_cmd_identifier_token24] = ACTIONS(1727), - [aux_sym_cmd_identifier_token25] = ACTIONS(1727), - [aux_sym_cmd_identifier_token26] = ACTIONS(1727), - [aux_sym_cmd_identifier_token27] = ACTIONS(1727), - [aux_sym_cmd_identifier_token28] = ACTIONS(1727), - [aux_sym_cmd_identifier_token29] = ACTIONS(1727), - [aux_sym_cmd_identifier_token30] = ACTIONS(1727), - [aux_sym_cmd_identifier_token31] = ACTIONS(1727), - [aux_sym_cmd_identifier_token32] = ACTIONS(1727), - [aux_sym_cmd_identifier_token33] = ACTIONS(1727), - [aux_sym_cmd_identifier_token34] = ACTIONS(1725), - [aux_sym_cmd_identifier_token35] = ACTIONS(1727), - [aux_sym_cmd_identifier_token36] = ACTIONS(1727), - [aux_sym_cmd_identifier_token37] = ACTIONS(1727), - [aux_sym_cmd_identifier_token38] = ACTIONS(1725), - [aux_sym_cmd_identifier_token39] = ACTIONS(1727), - [aux_sym_cmd_identifier_token40] = ACTIONS(1727), - [anon_sym_def] = ACTIONS(1725), - [anon_sym_export_DASHenv] = ACTIONS(1725), - [anon_sym_extern] = ACTIONS(1725), - [anon_sym_module] = ACTIONS(1725), - [anon_sym_use] = ACTIONS(1725), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1727), - [anon_sym_error] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_break] = ACTIONS(1725), - [anon_sym_continue] = ACTIONS(1725), - [anon_sym_for] = ACTIONS(1725), - [anon_sym_in2] = ACTIONS(1725), - [anon_sym_loop] = ACTIONS(1725), - [anon_sym_make] = ACTIONS(1725), - [anon_sym_while] = ACTIONS(1725), - [anon_sym_do] = ACTIONS(1725), - [anon_sym_if] = ACTIONS(1725), - [anon_sym_else] = ACTIONS(1725), - [anon_sym_match] = ACTIONS(1725), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_try] = ACTIONS(1725), - [anon_sym_catch] = ACTIONS(1725), - [anon_sym_return] = ACTIONS(1725), - [anon_sym_source] = ACTIONS(1725), - [anon_sym_source_DASHenv] = ACTIONS(1725), - [anon_sym_register] = ACTIONS(1725), - [anon_sym_hide] = ACTIONS(1725), - [anon_sym_hide_DASHenv] = ACTIONS(1725), - [anon_sym_overlay] = ACTIONS(1725), - [anon_sym_as] = ACTIONS(1725), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1725), - [aux_sym__val_number_token5] = ACTIONS(1725), - [aux_sym__val_number_token6] = ACTIONS(1725), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1727), + [728] = { + [sym_comment] = STATE(728), + [anon_sym_export] = ACTIONS(2403), + [anon_sym_alias] = ACTIONS(2403), + [anon_sym_let] = ACTIONS(2403), + [anon_sym_let_DASHenv] = ACTIONS(2403), + [anon_sym_mut] = ACTIONS(2403), + [anon_sym_const] = ACTIONS(2403), + [aux_sym_cmd_identifier_token1] = ACTIONS(2403), + [aux_sym_cmd_identifier_token2] = ACTIONS(2405), + [aux_sym_cmd_identifier_token3] = ACTIONS(2405), + [aux_sym_cmd_identifier_token4] = ACTIONS(2405), + [aux_sym_cmd_identifier_token5] = ACTIONS(2405), + [aux_sym_cmd_identifier_token6] = ACTIONS(2405), + [aux_sym_cmd_identifier_token7] = ACTIONS(2405), + [aux_sym_cmd_identifier_token8] = ACTIONS(2403), + [aux_sym_cmd_identifier_token9] = ACTIONS(2403), + [aux_sym_cmd_identifier_token10] = ACTIONS(2405), + [aux_sym_cmd_identifier_token11] = ACTIONS(2405), + [aux_sym_cmd_identifier_token12] = ACTIONS(2403), + [aux_sym_cmd_identifier_token13] = ACTIONS(2403), + [aux_sym_cmd_identifier_token14] = ACTIONS(2403), + [aux_sym_cmd_identifier_token15] = ACTIONS(2403), + [aux_sym_cmd_identifier_token16] = ACTIONS(2405), + [aux_sym_cmd_identifier_token17] = ACTIONS(2405), + [aux_sym_cmd_identifier_token18] = ACTIONS(2405), + [aux_sym_cmd_identifier_token19] = ACTIONS(2405), + [aux_sym_cmd_identifier_token20] = ACTIONS(2405), + [aux_sym_cmd_identifier_token21] = ACTIONS(2405), + [aux_sym_cmd_identifier_token22] = ACTIONS(2405), + [aux_sym_cmd_identifier_token23] = ACTIONS(2405), + [aux_sym_cmd_identifier_token24] = ACTIONS(2405), + [aux_sym_cmd_identifier_token25] = ACTIONS(2405), + [aux_sym_cmd_identifier_token26] = ACTIONS(2405), + [aux_sym_cmd_identifier_token27] = ACTIONS(2405), + [aux_sym_cmd_identifier_token28] = ACTIONS(2405), + [aux_sym_cmd_identifier_token29] = ACTIONS(2405), + [aux_sym_cmd_identifier_token30] = ACTIONS(2405), + [aux_sym_cmd_identifier_token31] = ACTIONS(2405), + [aux_sym_cmd_identifier_token32] = ACTIONS(2405), + [aux_sym_cmd_identifier_token33] = ACTIONS(2405), + [aux_sym_cmd_identifier_token34] = ACTIONS(2403), + [aux_sym_cmd_identifier_token35] = ACTIONS(2405), + [aux_sym_cmd_identifier_token36] = ACTIONS(2405), + [aux_sym_cmd_identifier_token37] = ACTIONS(2405), + [aux_sym_cmd_identifier_token38] = ACTIONS(2403), + [aux_sym_cmd_identifier_token39] = ACTIONS(2405), + [aux_sym_cmd_identifier_token40] = ACTIONS(2405), + [anon_sym_def] = ACTIONS(2403), + [anon_sym_export_DASHenv] = ACTIONS(2403), + [anon_sym_extern] = ACTIONS(2403), + [anon_sym_module] = ACTIONS(2403), + [anon_sym_use] = ACTIONS(2403), + [anon_sym_LPAREN] = ACTIONS(2405), + [anon_sym_COMMA] = ACTIONS(2405), + [anon_sym_DOLLAR] = ACTIONS(2405), + [anon_sym_error] = ACTIONS(2403), + [anon_sym_DASH2] = ACTIONS(2403), + [anon_sym_break] = ACTIONS(2403), + [anon_sym_continue] = ACTIONS(2403), + [anon_sym_for] = ACTIONS(2403), + [anon_sym_in2] = ACTIONS(2403), + [anon_sym_loop] = ACTIONS(2403), + [anon_sym_make] = ACTIONS(2403), + [anon_sym_while] = ACTIONS(2403), + [anon_sym_do] = ACTIONS(2403), + [anon_sym_if] = ACTIONS(2403), + [anon_sym_else] = ACTIONS(2403), + [anon_sym_match] = ACTIONS(2403), + [anon_sym_RBRACE] = ACTIONS(2405), + [anon_sym_try] = ACTIONS(2403), + [anon_sym_catch] = ACTIONS(2403), + [anon_sym_return] = ACTIONS(2403), + [anon_sym_source] = ACTIONS(2403), + [anon_sym_source_DASHenv] = ACTIONS(2403), + [anon_sym_register] = ACTIONS(2403), + [anon_sym_hide] = ACTIONS(2403), + [anon_sym_hide_DASHenv] = ACTIONS(2403), + [anon_sym_overlay] = ACTIONS(2403), + [anon_sym_as] = ACTIONS(2403), + [anon_sym_PLUS2] = ACTIONS(2403), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2405), + [aux_sym__val_number_decimal_token1] = ACTIONS(2403), + [aux_sym__val_number_decimal_token2] = ACTIONS(2405), + [aux_sym__val_number_decimal_token3] = ACTIONS(2405), + [aux_sym__val_number_decimal_token4] = ACTIONS(2405), + [aux_sym__val_number_token1] = ACTIONS(2405), + [aux_sym__val_number_token2] = ACTIONS(2405), + [aux_sym__val_number_token3] = ACTIONS(2405), + [aux_sym__val_number_token4] = ACTIONS(2403), + [aux_sym__val_number_token5] = ACTIONS(2403), + [aux_sym__val_number_token6] = ACTIONS(2403), + [anon_sym_DQUOTE] = ACTIONS(2405), + [sym__str_single_quotes] = ACTIONS(2405), + [sym__str_back_ticks] = ACTIONS(2405), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2405), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(2405), }, - [749] = { - [sym_comment] = STATE(749), - [anon_sym_export] = ACTIONS(1757), - [anon_sym_alias] = ACTIONS(1757), - [anon_sym_let] = ACTIONS(1757), - [anon_sym_let_DASHenv] = ACTIONS(1757), - [anon_sym_mut] = ACTIONS(1757), - [anon_sym_const] = ACTIONS(1757), - [aux_sym_cmd_identifier_token1] = ACTIONS(1757), - [aux_sym_cmd_identifier_token2] = ACTIONS(1759), - [aux_sym_cmd_identifier_token3] = ACTIONS(1759), - [aux_sym_cmd_identifier_token4] = ACTIONS(1759), - [aux_sym_cmd_identifier_token5] = ACTIONS(1759), - [aux_sym_cmd_identifier_token6] = ACTIONS(1759), - [aux_sym_cmd_identifier_token7] = ACTIONS(1759), - [aux_sym_cmd_identifier_token8] = ACTIONS(1757), - [aux_sym_cmd_identifier_token9] = ACTIONS(1757), - [aux_sym_cmd_identifier_token10] = ACTIONS(1759), - [aux_sym_cmd_identifier_token11] = ACTIONS(1759), - [aux_sym_cmd_identifier_token12] = ACTIONS(1757), - [aux_sym_cmd_identifier_token13] = ACTIONS(1757), - [aux_sym_cmd_identifier_token14] = ACTIONS(1757), - [aux_sym_cmd_identifier_token15] = ACTIONS(1757), - [aux_sym_cmd_identifier_token16] = ACTIONS(1759), - [aux_sym_cmd_identifier_token17] = ACTIONS(1759), - [aux_sym_cmd_identifier_token18] = ACTIONS(1759), - [aux_sym_cmd_identifier_token19] = ACTIONS(1759), - [aux_sym_cmd_identifier_token20] = ACTIONS(1759), - [aux_sym_cmd_identifier_token21] = ACTIONS(1759), - [aux_sym_cmd_identifier_token22] = ACTIONS(1759), - [aux_sym_cmd_identifier_token23] = ACTIONS(1759), - [aux_sym_cmd_identifier_token24] = ACTIONS(1759), - [aux_sym_cmd_identifier_token25] = ACTIONS(1759), - [aux_sym_cmd_identifier_token26] = ACTIONS(1759), - [aux_sym_cmd_identifier_token27] = ACTIONS(1759), - [aux_sym_cmd_identifier_token28] = ACTIONS(1759), - [aux_sym_cmd_identifier_token29] = ACTIONS(1759), - [aux_sym_cmd_identifier_token30] = ACTIONS(1759), - [aux_sym_cmd_identifier_token31] = ACTIONS(1759), - [aux_sym_cmd_identifier_token32] = ACTIONS(1759), - [aux_sym_cmd_identifier_token33] = ACTIONS(1759), - [aux_sym_cmd_identifier_token34] = ACTIONS(1757), - [aux_sym_cmd_identifier_token35] = ACTIONS(1759), - [aux_sym_cmd_identifier_token36] = ACTIONS(1759), - [aux_sym_cmd_identifier_token37] = ACTIONS(1759), - [aux_sym_cmd_identifier_token38] = ACTIONS(1757), - [aux_sym_cmd_identifier_token39] = ACTIONS(1759), - [aux_sym_cmd_identifier_token40] = ACTIONS(1759), - [anon_sym_def] = ACTIONS(1757), - [anon_sym_export_DASHenv] = ACTIONS(1757), - [anon_sym_extern] = ACTIONS(1757), - [anon_sym_module] = ACTIONS(1757), - [anon_sym_use] = ACTIONS(1757), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1759), - [anon_sym_error] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_break] = ACTIONS(1757), - [anon_sym_continue] = ACTIONS(1757), - [anon_sym_for] = ACTIONS(1757), - [anon_sym_in2] = ACTIONS(1757), - [anon_sym_loop] = ACTIONS(1757), - [anon_sym_make] = ACTIONS(1757), - [anon_sym_while] = ACTIONS(1757), - [anon_sym_do] = ACTIONS(1757), - [anon_sym_if] = ACTIONS(1757), - [anon_sym_else] = ACTIONS(1757), - [anon_sym_match] = ACTIONS(1757), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_try] = ACTIONS(1757), - [anon_sym_catch] = ACTIONS(1757), - [anon_sym_return] = ACTIONS(1757), - [anon_sym_source] = ACTIONS(1757), - [anon_sym_source_DASHenv] = ACTIONS(1757), - [anon_sym_register] = ACTIONS(1757), - [anon_sym_hide] = ACTIONS(1757), - [anon_sym_hide_DASHenv] = ACTIONS(1757), - [anon_sym_overlay] = ACTIONS(1757), - [anon_sym_as] = ACTIONS(1757), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1757), - [aux_sym__val_number_token5] = ACTIONS(1757), - [aux_sym__val_number_token6] = ACTIONS(1757), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1759), + [729] = { + [sym_comment] = STATE(729), + [anon_sym_export] = ACTIONS(2441), + [anon_sym_alias] = ACTIONS(2441), + [anon_sym_let] = ACTIONS(2441), + [anon_sym_let_DASHenv] = ACTIONS(2441), + [anon_sym_mut] = ACTIONS(2441), + [anon_sym_const] = ACTIONS(2441), + [aux_sym_cmd_identifier_token1] = ACTIONS(2441), + [aux_sym_cmd_identifier_token2] = ACTIONS(2443), + [aux_sym_cmd_identifier_token3] = ACTIONS(2443), + [aux_sym_cmd_identifier_token4] = ACTIONS(2443), + [aux_sym_cmd_identifier_token5] = ACTIONS(2443), + [aux_sym_cmd_identifier_token6] = ACTIONS(2443), + [aux_sym_cmd_identifier_token7] = ACTIONS(2443), + [aux_sym_cmd_identifier_token8] = ACTIONS(2441), + [aux_sym_cmd_identifier_token9] = ACTIONS(2441), + [aux_sym_cmd_identifier_token10] = ACTIONS(2443), + [aux_sym_cmd_identifier_token11] = ACTIONS(2443), + [aux_sym_cmd_identifier_token12] = ACTIONS(2441), + [aux_sym_cmd_identifier_token13] = ACTIONS(2441), + [aux_sym_cmd_identifier_token14] = ACTIONS(2441), + [aux_sym_cmd_identifier_token15] = ACTIONS(2441), + [aux_sym_cmd_identifier_token16] = ACTIONS(2443), + [aux_sym_cmd_identifier_token17] = ACTIONS(2443), + [aux_sym_cmd_identifier_token18] = ACTIONS(2443), + [aux_sym_cmd_identifier_token19] = ACTIONS(2443), + [aux_sym_cmd_identifier_token20] = ACTIONS(2443), + [aux_sym_cmd_identifier_token21] = ACTIONS(2443), + [aux_sym_cmd_identifier_token22] = ACTIONS(2443), + [aux_sym_cmd_identifier_token23] = ACTIONS(2443), + [aux_sym_cmd_identifier_token24] = ACTIONS(2443), + [aux_sym_cmd_identifier_token25] = ACTIONS(2443), + [aux_sym_cmd_identifier_token26] = ACTIONS(2443), + [aux_sym_cmd_identifier_token27] = ACTIONS(2443), + [aux_sym_cmd_identifier_token28] = ACTIONS(2443), + [aux_sym_cmd_identifier_token29] = ACTIONS(2443), + [aux_sym_cmd_identifier_token30] = ACTIONS(2443), + [aux_sym_cmd_identifier_token31] = ACTIONS(2443), + [aux_sym_cmd_identifier_token32] = ACTIONS(2443), + [aux_sym_cmd_identifier_token33] = ACTIONS(2443), + [aux_sym_cmd_identifier_token34] = ACTIONS(2441), + [aux_sym_cmd_identifier_token35] = ACTIONS(2443), + [aux_sym_cmd_identifier_token36] = ACTIONS(2443), + [aux_sym_cmd_identifier_token37] = ACTIONS(2443), + [aux_sym_cmd_identifier_token38] = ACTIONS(2441), + [aux_sym_cmd_identifier_token39] = ACTIONS(2443), + [aux_sym_cmd_identifier_token40] = ACTIONS(2443), + [anon_sym_def] = ACTIONS(2441), + [anon_sym_export_DASHenv] = ACTIONS(2441), + [anon_sym_extern] = ACTIONS(2441), + [anon_sym_module] = ACTIONS(2441), + [anon_sym_use] = ACTIONS(2441), + [anon_sym_LPAREN] = ACTIONS(2443), + [anon_sym_COMMA] = ACTIONS(2443), + [anon_sym_DOLLAR] = ACTIONS(2443), + [anon_sym_error] = ACTIONS(2441), + [anon_sym_DASH2] = ACTIONS(2441), + [anon_sym_break] = ACTIONS(2441), + [anon_sym_continue] = ACTIONS(2441), + [anon_sym_for] = ACTIONS(2441), + [anon_sym_in2] = ACTIONS(2441), + [anon_sym_loop] = ACTIONS(2441), + [anon_sym_make] = ACTIONS(2441), + [anon_sym_while] = ACTIONS(2441), + [anon_sym_do] = ACTIONS(2441), + [anon_sym_if] = ACTIONS(2441), + [anon_sym_else] = ACTIONS(2441), + [anon_sym_match] = ACTIONS(2441), + [anon_sym_RBRACE] = ACTIONS(2443), + [anon_sym_try] = ACTIONS(2441), + [anon_sym_catch] = ACTIONS(2441), + [anon_sym_return] = ACTIONS(2441), + [anon_sym_source] = ACTIONS(2441), + [anon_sym_source_DASHenv] = ACTIONS(2441), + [anon_sym_register] = ACTIONS(2441), + [anon_sym_hide] = ACTIONS(2441), + [anon_sym_hide_DASHenv] = ACTIONS(2441), + [anon_sym_overlay] = ACTIONS(2441), + [anon_sym_as] = ACTIONS(2441), + [anon_sym_PLUS2] = ACTIONS(2441), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2443), + [aux_sym__val_number_decimal_token1] = ACTIONS(2441), + [aux_sym__val_number_decimal_token2] = ACTIONS(2443), + [aux_sym__val_number_decimal_token3] = ACTIONS(2443), + [aux_sym__val_number_decimal_token4] = ACTIONS(2443), + [aux_sym__val_number_token1] = ACTIONS(2443), + [aux_sym__val_number_token2] = ACTIONS(2443), + [aux_sym__val_number_token3] = ACTIONS(2443), + [aux_sym__val_number_token4] = ACTIONS(2441), + [aux_sym__val_number_token5] = ACTIONS(2441), + [aux_sym__val_number_token6] = ACTIONS(2441), + [anon_sym_DQUOTE] = ACTIONS(2443), + [sym__str_single_quotes] = ACTIONS(2443), + [sym__str_back_ticks] = ACTIONS(2443), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2443), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [750] = { - [sym_comment] = STATE(750), - [anon_sym_export] = ACTIONS(1765), - [anon_sym_alias] = ACTIONS(1765), - [anon_sym_let] = ACTIONS(1765), - [anon_sym_let_DASHenv] = ACTIONS(1765), - [anon_sym_mut] = ACTIONS(1765), - [anon_sym_const] = ACTIONS(1765), - [aux_sym_cmd_identifier_token1] = ACTIONS(1765), - [aux_sym_cmd_identifier_token2] = ACTIONS(1767), - [aux_sym_cmd_identifier_token3] = ACTIONS(1767), - [aux_sym_cmd_identifier_token4] = ACTIONS(1767), - [aux_sym_cmd_identifier_token5] = ACTIONS(1767), - [aux_sym_cmd_identifier_token6] = ACTIONS(1767), - [aux_sym_cmd_identifier_token7] = ACTIONS(1767), - [aux_sym_cmd_identifier_token8] = ACTIONS(1765), - [aux_sym_cmd_identifier_token9] = ACTIONS(1765), - [aux_sym_cmd_identifier_token10] = ACTIONS(1767), - [aux_sym_cmd_identifier_token11] = ACTIONS(1767), - [aux_sym_cmd_identifier_token12] = ACTIONS(1765), - [aux_sym_cmd_identifier_token13] = ACTIONS(1765), - [aux_sym_cmd_identifier_token14] = ACTIONS(1765), - [aux_sym_cmd_identifier_token15] = ACTIONS(1765), - [aux_sym_cmd_identifier_token16] = ACTIONS(1767), - [aux_sym_cmd_identifier_token17] = ACTIONS(1767), - [aux_sym_cmd_identifier_token18] = ACTIONS(1767), - [aux_sym_cmd_identifier_token19] = ACTIONS(1767), - [aux_sym_cmd_identifier_token20] = ACTIONS(1767), - [aux_sym_cmd_identifier_token21] = ACTIONS(1767), - [aux_sym_cmd_identifier_token22] = ACTIONS(1767), - [aux_sym_cmd_identifier_token23] = ACTIONS(1767), - [aux_sym_cmd_identifier_token24] = ACTIONS(1767), - [aux_sym_cmd_identifier_token25] = ACTIONS(1767), - [aux_sym_cmd_identifier_token26] = ACTIONS(1767), - [aux_sym_cmd_identifier_token27] = ACTIONS(1767), - [aux_sym_cmd_identifier_token28] = ACTIONS(1767), - [aux_sym_cmd_identifier_token29] = ACTIONS(1767), - [aux_sym_cmd_identifier_token30] = ACTIONS(1767), - [aux_sym_cmd_identifier_token31] = ACTIONS(1767), - [aux_sym_cmd_identifier_token32] = ACTIONS(1767), - [aux_sym_cmd_identifier_token33] = ACTIONS(1767), - [aux_sym_cmd_identifier_token34] = ACTIONS(1765), - [aux_sym_cmd_identifier_token35] = ACTIONS(1767), - [aux_sym_cmd_identifier_token36] = ACTIONS(1767), - [aux_sym_cmd_identifier_token37] = ACTIONS(1767), - [aux_sym_cmd_identifier_token38] = ACTIONS(1765), - [aux_sym_cmd_identifier_token39] = ACTIONS(1767), - [aux_sym_cmd_identifier_token40] = ACTIONS(1767), - [anon_sym_def] = ACTIONS(1765), - [anon_sym_export_DASHenv] = ACTIONS(1765), - [anon_sym_extern] = ACTIONS(1765), - [anon_sym_module] = ACTIONS(1765), - [anon_sym_use] = ACTIONS(1765), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1767), - [anon_sym_error] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_break] = ACTIONS(1765), - [anon_sym_continue] = ACTIONS(1765), - [anon_sym_for] = ACTIONS(1765), - [anon_sym_in2] = ACTIONS(1765), - [anon_sym_loop] = ACTIONS(1765), - [anon_sym_make] = ACTIONS(1765), - [anon_sym_while] = ACTIONS(1765), - [anon_sym_do] = ACTIONS(1765), - [anon_sym_if] = ACTIONS(1765), - [anon_sym_else] = ACTIONS(1765), - [anon_sym_match] = ACTIONS(1765), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_try] = ACTIONS(1765), - [anon_sym_catch] = ACTIONS(1765), - [anon_sym_return] = ACTIONS(1765), - [anon_sym_source] = ACTIONS(1765), - [anon_sym_source_DASHenv] = ACTIONS(1765), - [anon_sym_register] = ACTIONS(1765), - [anon_sym_hide] = ACTIONS(1765), - [anon_sym_hide_DASHenv] = ACTIONS(1765), - [anon_sym_overlay] = ACTIONS(1765), - [anon_sym_as] = ACTIONS(1765), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1765), - [aux_sym__val_number_token5] = ACTIONS(1765), - [aux_sym__val_number_token6] = ACTIONS(1765), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1767), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [sym_raw_string_begin] = ACTIONS(2443), }, - [751] = { - [sym_comment] = STATE(751), - [anon_sym_export] = ACTIONS(1861), - [anon_sym_alias] = ACTIONS(1861), - [anon_sym_let] = ACTIONS(1861), - [anon_sym_let_DASHenv] = ACTIONS(1861), - [anon_sym_mut] = ACTIONS(1861), - [anon_sym_const] = ACTIONS(1861), - [aux_sym_cmd_identifier_token1] = ACTIONS(1861), - [aux_sym_cmd_identifier_token2] = ACTIONS(1863), - [aux_sym_cmd_identifier_token3] = ACTIONS(1863), - [aux_sym_cmd_identifier_token4] = ACTIONS(1863), - [aux_sym_cmd_identifier_token5] = ACTIONS(1863), - [aux_sym_cmd_identifier_token6] = ACTIONS(1863), - [aux_sym_cmd_identifier_token7] = ACTIONS(1863), - [aux_sym_cmd_identifier_token8] = ACTIONS(1861), - [aux_sym_cmd_identifier_token9] = ACTIONS(1861), - [aux_sym_cmd_identifier_token10] = ACTIONS(1863), - [aux_sym_cmd_identifier_token11] = ACTIONS(1863), - [aux_sym_cmd_identifier_token12] = ACTIONS(1861), - [aux_sym_cmd_identifier_token13] = ACTIONS(1861), - [aux_sym_cmd_identifier_token14] = ACTIONS(1861), - [aux_sym_cmd_identifier_token15] = ACTIONS(1861), - [aux_sym_cmd_identifier_token16] = ACTIONS(1863), - [aux_sym_cmd_identifier_token17] = ACTIONS(1863), - [aux_sym_cmd_identifier_token18] = ACTIONS(1863), - [aux_sym_cmd_identifier_token19] = ACTIONS(1863), - [aux_sym_cmd_identifier_token20] = ACTIONS(1863), - [aux_sym_cmd_identifier_token21] = ACTIONS(1863), - [aux_sym_cmd_identifier_token22] = ACTIONS(1863), - [aux_sym_cmd_identifier_token23] = ACTIONS(1863), - [aux_sym_cmd_identifier_token24] = ACTIONS(1863), - [aux_sym_cmd_identifier_token25] = ACTIONS(1863), - [aux_sym_cmd_identifier_token26] = ACTIONS(1863), - [aux_sym_cmd_identifier_token27] = ACTIONS(1863), - [aux_sym_cmd_identifier_token28] = ACTIONS(1863), - [aux_sym_cmd_identifier_token29] = ACTIONS(1863), - [aux_sym_cmd_identifier_token30] = ACTIONS(1863), - [aux_sym_cmd_identifier_token31] = ACTIONS(1863), - [aux_sym_cmd_identifier_token32] = ACTIONS(1863), - [aux_sym_cmd_identifier_token33] = ACTIONS(1863), - [aux_sym_cmd_identifier_token34] = ACTIONS(1861), - [aux_sym_cmd_identifier_token35] = ACTIONS(1863), - [aux_sym_cmd_identifier_token36] = ACTIONS(1863), - [aux_sym_cmd_identifier_token37] = ACTIONS(1863), - [aux_sym_cmd_identifier_token38] = ACTIONS(1861), - [aux_sym_cmd_identifier_token39] = ACTIONS(1863), - [aux_sym_cmd_identifier_token40] = ACTIONS(1863), - [anon_sym_def] = ACTIONS(1861), - [anon_sym_export_DASHenv] = ACTIONS(1861), - [anon_sym_extern] = ACTIONS(1861), - [anon_sym_module] = ACTIONS(1861), - [anon_sym_use] = ACTIONS(1861), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1863), - [anon_sym_error] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_break] = ACTIONS(1861), - [anon_sym_continue] = ACTIONS(1861), - [anon_sym_for] = ACTIONS(1861), - [anon_sym_in2] = ACTIONS(1861), - [anon_sym_loop] = ACTIONS(1861), - [anon_sym_make] = ACTIONS(1861), - [anon_sym_while] = ACTIONS(1861), - [anon_sym_do] = ACTIONS(1861), - [anon_sym_if] = ACTIONS(1861), - [anon_sym_else] = ACTIONS(1861), - [anon_sym_match] = ACTIONS(1861), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_try] = ACTIONS(1861), - [anon_sym_catch] = ACTIONS(1861), - [anon_sym_return] = ACTIONS(1861), - [anon_sym_source] = ACTIONS(1861), - [anon_sym_source_DASHenv] = ACTIONS(1861), - [anon_sym_register] = ACTIONS(1861), - [anon_sym_hide] = ACTIONS(1861), - [anon_sym_hide_DASHenv] = ACTIONS(1861), - [anon_sym_overlay] = ACTIONS(1861), - [anon_sym_as] = ACTIONS(1861), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1861), - [aux_sym__val_number_token5] = ACTIONS(1861), - [aux_sym__val_number_token6] = ACTIONS(1861), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1863), + [730] = { + [sym_comment] = STATE(730), + [anon_sym_export] = ACTIONS(2381), + [anon_sym_alias] = ACTIONS(2381), + [anon_sym_let] = ACTIONS(2381), + [anon_sym_let_DASHenv] = ACTIONS(2381), + [anon_sym_mut] = ACTIONS(2381), + [anon_sym_const] = ACTIONS(2381), + [aux_sym_cmd_identifier_token1] = ACTIONS(2381), + [aux_sym_cmd_identifier_token2] = ACTIONS(2383), + [aux_sym_cmd_identifier_token3] = ACTIONS(2383), + [aux_sym_cmd_identifier_token4] = ACTIONS(2383), + [aux_sym_cmd_identifier_token5] = ACTIONS(2383), + [aux_sym_cmd_identifier_token6] = ACTIONS(2383), + [aux_sym_cmd_identifier_token7] = ACTIONS(2383), + [aux_sym_cmd_identifier_token8] = ACTIONS(2381), + [aux_sym_cmd_identifier_token9] = ACTIONS(2381), + [aux_sym_cmd_identifier_token10] = ACTIONS(2383), + [aux_sym_cmd_identifier_token11] = ACTIONS(2383), + [aux_sym_cmd_identifier_token12] = ACTIONS(2381), + [aux_sym_cmd_identifier_token13] = ACTIONS(2381), + [aux_sym_cmd_identifier_token14] = ACTIONS(2381), + [aux_sym_cmd_identifier_token15] = ACTIONS(2381), + [aux_sym_cmd_identifier_token16] = ACTIONS(2383), + [aux_sym_cmd_identifier_token17] = ACTIONS(2383), + [aux_sym_cmd_identifier_token18] = ACTIONS(2383), + [aux_sym_cmd_identifier_token19] = ACTIONS(2383), + [aux_sym_cmd_identifier_token20] = ACTIONS(2383), + [aux_sym_cmd_identifier_token21] = ACTIONS(2383), + [aux_sym_cmd_identifier_token22] = ACTIONS(2383), + [aux_sym_cmd_identifier_token23] = ACTIONS(2383), + [aux_sym_cmd_identifier_token24] = ACTIONS(2383), + [aux_sym_cmd_identifier_token25] = ACTIONS(2383), + [aux_sym_cmd_identifier_token26] = ACTIONS(2383), + [aux_sym_cmd_identifier_token27] = ACTIONS(2383), + [aux_sym_cmd_identifier_token28] = ACTIONS(2383), + [aux_sym_cmd_identifier_token29] = ACTIONS(2383), + [aux_sym_cmd_identifier_token30] = ACTIONS(2383), + [aux_sym_cmd_identifier_token31] = ACTIONS(2383), + [aux_sym_cmd_identifier_token32] = ACTIONS(2383), + [aux_sym_cmd_identifier_token33] = ACTIONS(2383), + [aux_sym_cmd_identifier_token34] = ACTIONS(2381), + [aux_sym_cmd_identifier_token35] = ACTIONS(2383), + [aux_sym_cmd_identifier_token36] = ACTIONS(2383), + [aux_sym_cmd_identifier_token37] = ACTIONS(2383), + [aux_sym_cmd_identifier_token38] = ACTIONS(2381), + [aux_sym_cmd_identifier_token39] = ACTIONS(2383), + [aux_sym_cmd_identifier_token40] = ACTIONS(2383), + [anon_sym_def] = ACTIONS(2381), + [anon_sym_export_DASHenv] = ACTIONS(2381), + [anon_sym_extern] = ACTIONS(2381), + [anon_sym_module] = ACTIONS(2381), + [anon_sym_use] = ACTIONS(2381), + [anon_sym_LPAREN] = ACTIONS(2383), + [anon_sym_COMMA] = ACTIONS(2383), + [anon_sym_DOLLAR] = ACTIONS(2383), + [anon_sym_error] = ACTIONS(2381), + [anon_sym_DASH2] = ACTIONS(2381), + [anon_sym_break] = ACTIONS(2381), + [anon_sym_continue] = ACTIONS(2381), + [anon_sym_for] = ACTIONS(2381), + [anon_sym_in2] = ACTIONS(2381), + [anon_sym_loop] = ACTIONS(2381), + [anon_sym_make] = ACTIONS(2381), + [anon_sym_while] = ACTIONS(2381), + [anon_sym_do] = ACTIONS(2381), + [anon_sym_if] = ACTIONS(2381), + [anon_sym_else] = ACTIONS(2381), + [anon_sym_match] = ACTIONS(2381), + [anon_sym_RBRACE] = ACTIONS(2383), + [anon_sym_try] = ACTIONS(2381), + [anon_sym_catch] = ACTIONS(2381), + [anon_sym_return] = ACTIONS(2381), + [anon_sym_source] = ACTIONS(2381), + [anon_sym_source_DASHenv] = ACTIONS(2381), + [anon_sym_register] = ACTIONS(2381), + [anon_sym_hide] = ACTIONS(2381), + [anon_sym_hide_DASHenv] = ACTIONS(2381), + [anon_sym_overlay] = ACTIONS(2381), + [anon_sym_as] = ACTIONS(2381), + [anon_sym_PLUS2] = ACTIONS(2381), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2383), + [aux_sym__val_number_decimal_token1] = ACTIONS(2381), + [aux_sym__val_number_decimal_token2] = ACTIONS(2383), + [aux_sym__val_number_decimal_token3] = ACTIONS(2383), + [aux_sym__val_number_decimal_token4] = ACTIONS(2383), + [aux_sym__val_number_token1] = ACTIONS(2383), + [aux_sym__val_number_token2] = ACTIONS(2383), + [aux_sym__val_number_token3] = ACTIONS(2383), + [aux_sym__val_number_token4] = ACTIONS(2381), + [aux_sym__val_number_token5] = ACTIONS(2381), + [aux_sym__val_number_token6] = ACTIONS(2381), + [anon_sym_DQUOTE] = ACTIONS(2383), + [sym__str_single_quotes] = ACTIONS(2383), + [sym__str_back_ticks] = ACTIONS(2383), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2383), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), + [sym_raw_string_begin] = ACTIONS(2383), }, - [752] = { - [sym_comment] = STATE(752), - [anon_sym_export] = ACTIONS(2144), - [anon_sym_alias] = ACTIONS(2144), - [anon_sym_let] = ACTIONS(2144), - [anon_sym_let_DASHenv] = ACTIONS(2144), - [anon_sym_mut] = ACTIONS(2144), - [anon_sym_const] = ACTIONS(2144), - [aux_sym_cmd_identifier_token1] = ACTIONS(2144), - [aux_sym_cmd_identifier_token2] = ACTIONS(2150), - [aux_sym_cmd_identifier_token3] = ACTIONS(2150), - [aux_sym_cmd_identifier_token4] = ACTIONS(2150), - [aux_sym_cmd_identifier_token5] = ACTIONS(2150), - [aux_sym_cmd_identifier_token6] = ACTIONS(2150), - [aux_sym_cmd_identifier_token7] = ACTIONS(2150), - [aux_sym_cmd_identifier_token8] = ACTIONS(2144), - [aux_sym_cmd_identifier_token9] = ACTIONS(2144), - [aux_sym_cmd_identifier_token10] = ACTIONS(2150), - [aux_sym_cmd_identifier_token11] = ACTIONS(2150), - [aux_sym_cmd_identifier_token12] = ACTIONS(2144), - [aux_sym_cmd_identifier_token13] = ACTIONS(2144), - [aux_sym_cmd_identifier_token14] = ACTIONS(2144), - [aux_sym_cmd_identifier_token15] = ACTIONS(2144), - [aux_sym_cmd_identifier_token16] = ACTIONS(2150), - [aux_sym_cmd_identifier_token17] = ACTIONS(2150), - [aux_sym_cmd_identifier_token18] = ACTIONS(2150), - [aux_sym_cmd_identifier_token19] = ACTIONS(2150), - [aux_sym_cmd_identifier_token20] = ACTIONS(2150), - [aux_sym_cmd_identifier_token21] = ACTIONS(2150), - [aux_sym_cmd_identifier_token22] = ACTIONS(2150), - [aux_sym_cmd_identifier_token23] = ACTIONS(2150), - [aux_sym_cmd_identifier_token24] = ACTIONS(2150), - [aux_sym_cmd_identifier_token25] = ACTIONS(2150), - [aux_sym_cmd_identifier_token26] = ACTIONS(2150), - [aux_sym_cmd_identifier_token27] = ACTIONS(2150), - [aux_sym_cmd_identifier_token28] = ACTIONS(2150), - [aux_sym_cmd_identifier_token29] = ACTIONS(2150), - [aux_sym_cmd_identifier_token30] = ACTIONS(2150), - [aux_sym_cmd_identifier_token31] = ACTIONS(2150), - [aux_sym_cmd_identifier_token32] = ACTIONS(2150), - [aux_sym_cmd_identifier_token33] = ACTIONS(2150), - [aux_sym_cmd_identifier_token34] = ACTIONS(2144), - [aux_sym_cmd_identifier_token35] = ACTIONS(2150), - [aux_sym_cmd_identifier_token36] = ACTIONS(2150), - [aux_sym_cmd_identifier_token37] = ACTIONS(2150), - [aux_sym_cmd_identifier_token38] = ACTIONS(2144), - [aux_sym_cmd_identifier_token39] = ACTIONS(2150), - [aux_sym_cmd_identifier_token40] = ACTIONS(2150), - [anon_sym_def] = ACTIONS(2144), - [anon_sym_export_DASHenv] = ACTIONS(2144), - [anon_sym_extern] = ACTIONS(2144), - [anon_sym_module] = ACTIONS(2144), - [anon_sym_use] = ACTIONS(2144), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2150), - [anon_sym_error] = ACTIONS(2144), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_break] = ACTIONS(2144), - [anon_sym_continue] = ACTIONS(2144), - [anon_sym_for] = ACTIONS(2144), - [anon_sym_in2] = ACTIONS(2144), - [anon_sym_loop] = ACTIONS(2144), - [anon_sym_make] = ACTIONS(2144), - [anon_sym_while] = ACTIONS(2144), - [anon_sym_do] = ACTIONS(2144), - [anon_sym_if] = ACTIONS(2144), - [anon_sym_else] = ACTIONS(2144), - [anon_sym_match] = ACTIONS(2144), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_try] = ACTIONS(2144), - [anon_sym_catch] = ACTIONS(2144), - [anon_sym_return] = ACTIONS(2144), - [anon_sym_source] = ACTIONS(2144), - [anon_sym_source_DASHenv] = ACTIONS(2144), - [anon_sym_register] = ACTIONS(2144), - [anon_sym_hide] = ACTIONS(2144), - [anon_sym_hide_DASHenv] = ACTIONS(2144), - [anon_sym_overlay] = ACTIONS(2144), - [anon_sym_as] = ACTIONS(2144), - [anon_sym_PLUS2] = ACTIONS(2144), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2150), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2150), - [aux_sym__val_number_decimal_token3] = ACTIONS(2150), - [aux_sym__val_number_decimal_token4] = ACTIONS(2150), - [aux_sym__val_number_token1] = ACTIONS(2150), - [aux_sym__val_number_token2] = ACTIONS(2150), - [aux_sym__val_number_token3] = ACTIONS(2150), - [aux_sym__val_number_token4] = ACTIONS(2144), - [aux_sym__val_number_token5] = ACTIONS(2144), - [aux_sym__val_number_token6] = ACTIONS(2144), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2150), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2150), + [731] = { + [sym_comment] = STATE(731), + [anon_sym_export] = ACTIONS(2047), + [anon_sym_alias] = ACTIONS(2047), + [anon_sym_let] = ACTIONS(2047), + [anon_sym_let_DASHenv] = ACTIONS(2047), + [anon_sym_mut] = ACTIONS(2047), + [anon_sym_const] = ACTIONS(2047), + [aux_sym_cmd_identifier_token1] = ACTIONS(2047), + [aux_sym_cmd_identifier_token2] = ACTIONS(2053), + [aux_sym_cmd_identifier_token3] = ACTIONS(2053), + [aux_sym_cmd_identifier_token4] = ACTIONS(2053), + [aux_sym_cmd_identifier_token5] = ACTIONS(2053), + [aux_sym_cmd_identifier_token6] = ACTIONS(2053), + [aux_sym_cmd_identifier_token7] = ACTIONS(2053), + [aux_sym_cmd_identifier_token8] = ACTIONS(2047), + [aux_sym_cmd_identifier_token9] = ACTIONS(2047), + [aux_sym_cmd_identifier_token10] = ACTIONS(2053), + [aux_sym_cmd_identifier_token11] = ACTIONS(2053), + [aux_sym_cmd_identifier_token12] = ACTIONS(2047), + [aux_sym_cmd_identifier_token13] = ACTIONS(2047), + [aux_sym_cmd_identifier_token14] = ACTIONS(2047), + [aux_sym_cmd_identifier_token15] = ACTIONS(2047), + [aux_sym_cmd_identifier_token16] = ACTIONS(2053), + [aux_sym_cmd_identifier_token17] = ACTIONS(2053), + [aux_sym_cmd_identifier_token18] = ACTIONS(2053), + [aux_sym_cmd_identifier_token19] = ACTIONS(2053), + [aux_sym_cmd_identifier_token20] = ACTIONS(2053), + [aux_sym_cmd_identifier_token21] = ACTIONS(2053), + [aux_sym_cmd_identifier_token22] = ACTIONS(2053), + [aux_sym_cmd_identifier_token23] = ACTIONS(2053), + [aux_sym_cmd_identifier_token24] = ACTIONS(2053), + [aux_sym_cmd_identifier_token25] = ACTIONS(2053), + [aux_sym_cmd_identifier_token26] = ACTIONS(2053), + [aux_sym_cmd_identifier_token27] = ACTIONS(2053), + [aux_sym_cmd_identifier_token28] = ACTIONS(2053), + [aux_sym_cmd_identifier_token29] = ACTIONS(2053), + [aux_sym_cmd_identifier_token30] = ACTIONS(2053), + [aux_sym_cmd_identifier_token31] = ACTIONS(2053), + [aux_sym_cmd_identifier_token32] = ACTIONS(2053), + [aux_sym_cmd_identifier_token33] = ACTIONS(2053), + [aux_sym_cmd_identifier_token34] = ACTIONS(2047), + [aux_sym_cmd_identifier_token35] = ACTIONS(2053), + [aux_sym_cmd_identifier_token36] = ACTIONS(2053), + [aux_sym_cmd_identifier_token37] = ACTIONS(2053), + [aux_sym_cmd_identifier_token38] = ACTIONS(2047), + [aux_sym_cmd_identifier_token39] = ACTIONS(2053), + [aux_sym_cmd_identifier_token40] = ACTIONS(2053), + [anon_sym_def] = ACTIONS(2047), + [anon_sym_export_DASHenv] = ACTIONS(2047), + [anon_sym_extern] = ACTIONS(2047), + [anon_sym_module] = ACTIONS(2047), + [anon_sym_use] = ACTIONS(2047), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_COMMA] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2053), + [anon_sym_error] = ACTIONS(2047), + [anon_sym_DASH2] = ACTIONS(2047), + [anon_sym_break] = ACTIONS(2047), + [anon_sym_continue] = ACTIONS(2047), + [anon_sym_for] = ACTIONS(2047), + [anon_sym_in2] = ACTIONS(2047), + [anon_sym_loop] = ACTIONS(2047), + [anon_sym_make] = ACTIONS(2047), + [anon_sym_while] = ACTIONS(2047), + [anon_sym_do] = ACTIONS(2047), + [anon_sym_if] = ACTIONS(2047), + [anon_sym_else] = ACTIONS(2047), + [anon_sym_match] = ACTIONS(2047), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_try] = ACTIONS(2047), + [anon_sym_catch] = ACTIONS(2047), + [anon_sym_return] = ACTIONS(2047), + [anon_sym_source] = ACTIONS(2047), + [anon_sym_source_DASHenv] = ACTIONS(2047), + [anon_sym_register] = ACTIONS(2047), + [anon_sym_hide] = ACTIONS(2047), + [anon_sym_hide_DASHenv] = ACTIONS(2047), + [anon_sym_overlay] = ACTIONS(2047), + [anon_sym_as] = ACTIONS(2047), + [anon_sym_PLUS2] = ACTIONS(2047), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2047), + [aux_sym__val_number_token5] = ACTIONS(2047), + [aux_sym__val_number_token6] = ACTIONS(2047), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2053), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), }, - [753] = { - [sym_comment] = STATE(753), - [anon_sym_export] = ACTIONS(2152), - [anon_sym_alias] = ACTIONS(2152), - [anon_sym_let] = ACTIONS(2152), - [anon_sym_let_DASHenv] = ACTIONS(2152), - [anon_sym_mut] = ACTIONS(2152), - [anon_sym_const] = ACTIONS(2152), - [aux_sym_cmd_identifier_token1] = ACTIONS(2152), - [aux_sym_cmd_identifier_token2] = ACTIONS(2158), - [aux_sym_cmd_identifier_token3] = ACTIONS(2158), - [aux_sym_cmd_identifier_token4] = ACTIONS(2158), - [aux_sym_cmd_identifier_token5] = ACTIONS(2158), - [aux_sym_cmd_identifier_token6] = ACTIONS(2158), - [aux_sym_cmd_identifier_token7] = ACTIONS(2158), - [aux_sym_cmd_identifier_token8] = ACTIONS(2152), - [aux_sym_cmd_identifier_token9] = ACTIONS(2152), - [aux_sym_cmd_identifier_token10] = ACTIONS(2158), - [aux_sym_cmd_identifier_token11] = ACTIONS(2158), - [aux_sym_cmd_identifier_token12] = ACTIONS(2152), - [aux_sym_cmd_identifier_token13] = ACTIONS(2152), - [aux_sym_cmd_identifier_token14] = ACTIONS(2152), - [aux_sym_cmd_identifier_token15] = ACTIONS(2152), - [aux_sym_cmd_identifier_token16] = ACTIONS(2158), - [aux_sym_cmd_identifier_token17] = ACTIONS(2158), - [aux_sym_cmd_identifier_token18] = ACTIONS(2158), - [aux_sym_cmd_identifier_token19] = ACTIONS(2158), - [aux_sym_cmd_identifier_token20] = ACTIONS(2158), - [aux_sym_cmd_identifier_token21] = ACTIONS(2158), - [aux_sym_cmd_identifier_token22] = ACTIONS(2158), - [aux_sym_cmd_identifier_token23] = ACTIONS(2158), - [aux_sym_cmd_identifier_token24] = ACTIONS(2158), - [aux_sym_cmd_identifier_token25] = ACTIONS(2158), - [aux_sym_cmd_identifier_token26] = ACTIONS(2158), - [aux_sym_cmd_identifier_token27] = ACTIONS(2158), - [aux_sym_cmd_identifier_token28] = ACTIONS(2158), - [aux_sym_cmd_identifier_token29] = ACTIONS(2158), - [aux_sym_cmd_identifier_token30] = ACTIONS(2158), - [aux_sym_cmd_identifier_token31] = ACTIONS(2158), - [aux_sym_cmd_identifier_token32] = ACTIONS(2158), - [aux_sym_cmd_identifier_token33] = ACTIONS(2158), - [aux_sym_cmd_identifier_token34] = ACTIONS(2152), - [aux_sym_cmd_identifier_token35] = ACTIONS(2158), - [aux_sym_cmd_identifier_token36] = ACTIONS(2158), - [aux_sym_cmd_identifier_token37] = ACTIONS(2158), - [aux_sym_cmd_identifier_token38] = ACTIONS(2152), - [aux_sym_cmd_identifier_token39] = ACTIONS(2158), - [aux_sym_cmd_identifier_token40] = ACTIONS(2158), - [anon_sym_def] = ACTIONS(2152), - [anon_sym_export_DASHenv] = ACTIONS(2152), - [anon_sym_extern] = ACTIONS(2152), - [anon_sym_module] = ACTIONS(2152), - [anon_sym_use] = ACTIONS(2152), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_DOLLAR] = ACTIONS(2158), - [anon_sym_error] = ACTIONS(2152), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_break] = ACTIONS(2152), - [anon_sym_continue] = ACTIONS(2152), - [anon_sym_for] = ACTIONS(2152), - [anon_sym_in2] = ACTIONS(2152), - [anon_sym_loop] = ACTIONS(2152), - [anon_sym_make] = ACTIONS(2152), - [anon_sym_while] = ACTIONS(2152), - [anon_sym_do] = ACTIONS(2152), - [anon_sym_if] = ACTIONS(2152), - [anon_sym_else] = ACTIONS(2152), - [anon_sym_match] = ACTIONS(2152), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_try] = ACTIONS(2152), - [anon_sym_catch] = ACTIONS(2152), - [anon_sym_return] = ACTIONS(2152), - [anon_sym_source] = ACTIONS(2152), - [anon_sym_source_DASHenv] = ACTIONS(2152), - [anon_sym_register] = ACTIONS(2152), - [anon_sym_hide] = ACTIONS(2152), - [anon_sym_hide_DASHenv] = ACTIONS(2152), - [anon_sym_overlay] = ACTIONS(2152), - [anon_sym_as] = ACTIONS(2152), - [anon_sym_PLUS2] = ACTIONS(2152), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2158), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2158), - [aux_sym__val_number_decimal_token3] = ACTIONS(2158), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2158), - [aux_sym__val_number_token2] = ACTIONS(2158), - [aux_sym__val_number_token3] = ACTIONS(2158), - [aux_sym__val_number_token4] = ACTIONS(2152), - [aux_sym__val_number_token5] = ACTIONS(2152), - [aux_sym__val_number_token6] = ACTIONS(2152), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym__str_single_quotes] = ACTIONS(2158), - [sym__str_back_ticks] = ACTIONS(2158), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2158), + [732] = { + [sym_comment] = STATE(732), + [anon_sym_export] = ACTIONS(2080), + [anon_sym_alias] = ACTIONS(2080), + [anon_sym_let] = ACTIONS(2080), + [anon_sym_let_DASHenv] = ACTIONS(2080), + [anon_sym_mut] = ACTIONS(2080), + [anon_sym_const] = ACTIONS(2080), + [aux_sym_cmd_identifier_token1] = ACTIONS(2080), + [aux_sym_cmd_identifier_token2] = ACTIONS(2086), + [aux_sym_cmd_identifier_token3] = ACTIONS(2086), + [aux_sym_cmd_identifier_token4] = ACTIONS(2086), + [aux_sym_cmd_identifier_token5] = ACTIONS(2086), + [aux_sym_cmd_identifier_token6] = ACTIONS(2086), + [aux_sym_cmd_identifier_token7] = ACTIONS(2086), + [aux_sym_cmd_identifier_token8] = ACTIONS(2080), + [aux_sym_cmd_identifier_token9] = ACTIONS(2080), + [aux_sym_cmd_identifier_token10] = ACTIONS(2086), + [aux_sym_cmd_identifier_token11] = ACTIONS(2086), + [aux_sym_cmd_identifier_token12] = ACTIONS(2080), + [aux_sym_cmd_identifier_token13] = ACTIONS(2080), + [aux_sym_cmd_identifier_token14] = ACTIONS(2080), + [aux_sym_cmd_identifier_token15] = ACTIONS(2080), + [aux_sym_cmd_identifier_token16] = ACTIONS(2086), + [aux_sym_cmd_identifier_token17] = ACTIONS(2086), + [aux_sym_cmd_identifier_token18] = ACTIONS(2086), + [aux_sym_cmd_identifier_token19] = ACTIONS(2086), + [aux_sym_cmd_identifier_token20] = ACTIONS(2086), + [aux_sym_cmd_identifier_token21] = ACTIONS(2086), + [aux_sym_cmd_identifier_token22] = ACTIONS(2086), + [aux_sym_cmd_identifier_token23] = ACTIONS(2086), + [aux_sym_cmd_identifier_token24] = ACTIONS(2086), + [aux_sym_cmd_identifier_token25] = ACTIONS(2086), + [aux_sym_cmd_identifier_token26] = ACTIONS(2086), + [aux_sym_cmd_identifier_token27] = ACTIONS(2086), + [aux_sym_cmd_identifier_token28] = ACTIONS(2086), + [aux_sym_cmd_identifier_token29] = ACTIONS(2086), + [aux_sym_cmd_identifier_token30] = ACTIONS(2086), + [aux_sym_cmd_identifier_token31] = ACTIONS(2086), + [aux_sym_cmd_identifier_token32] = ACTIONS(2086), + [aux_sym_cmd_identifier_token33] = ACTIONS(2086), + [aux_sym_cmd_identifier_token34] = ACTIONS(2080), + [aux_sym_cmd_identifier_token35] = ACTIONS(2086), + [aux_sym_cmd_identifier_token36] = ACTIONS(2086), + [aux_sym_cmd_identifier_token37] = ACTIONS(2086), + [aux_sym_cmd_identifier_token38] = ACTIONS(2080), + [aux_sym_cmd_identifier_token39] = ACTIONS(2086), + [aux_sym_cmd_identifier_token40] = ACTIONS(2086), + [anon_sym_def] = ACTIONS(2080), + [anon_sym_export_DASHenv] = ACTIONS(2080), + [anon_sym_extern] = ACTIONS(2080), + [anon_sym_module] = ACTIONS(2080), + [anon_sym_use] = ACTIONS(2080), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_COMMA] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2086), + [anon_sym_error] = ACTIONS(2080), + [anon_sym_DASH2] = ACTIONS(2080), + [anon_sym_break] = ACTIONS(2080), + [anon_sym_continue] = ACTIONS(2080), + [anon_sym_for] = ACTIONS(2080), + [anon_sym_in2] = ACTIONS(2080), + [anon_sym_loop] = ACTIONS(2080), + [anon_sym_make] = ACTIONS(2080), + [anon_sym_while] = ACTIONS(2080), + [anon_sym_do] = ACTIONS(2080), + [anon_sym_if] = ACTIONS(2080), + [anon_sym_else] = ACTIONS(2080), + [anon_sym_match] = ACTIONS(2080), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_try] = ACTIONS(2080), + [anon_sym_catch] = ACTIONS(2080), + [anon_sym_return] = ACTIONS(2080), + [anon_sym_source] = ACTIONS(2080), + [anon_sym_source_DASHenv] = ACTIONS(2080), + [anon_sym_register] = ACTIONS(2080), + [anon_sym_hide] = ACTIONS(2080), + [anon_sym_hide_DASHenv] = ACTIONS(2080), + [anon_sym_overlay] = ACTIONS(2080), + [anon_sym_as] = ACTIONS(2080), + [anon_sym_PLUS2] = ACTIONS(2080), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2086), + [aux_sym__val_number_decimal_token1] = ACTIONS(2080), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2086), + [aux_sym__val_number_decimal_token4] = ACTIONS(2086), + [aux_sym__val_number_token1] = ACTIONS(2086), + [aux_sym__val_number_token2] = ACTIONS(2086), + [aux_sym__val_number_token3] = ACTIONS(2086), + [aux_sym__val_number_token4] = ACTIONS(2080), + [aux_sym__val_number_token5] = ACTIONS(2080), + [aux_sym__val_number_token6] = ACTIONS(2080), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym__str_single_quotes] = ACTIONS(2086), + [sym__str_back_ticks] = ACTIONS(2086), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2086), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2086), + }, + [733] = { + [sym_comment] = STATE(733), + [anon_sym_export] = ACTIONS(2385), + [anon_sym_alias] = ACTIONS(2385), + [anon_sym_let] = ACTIONS(2385), + [anon_sym_let_DASHenv] = ACTIONS(2385), + [anon_sym_mut] = ACTIONS(2385), + [anon_sym_const] = ACTIONS(2385), + [aux_sym_cmd_identifier_token1] = ACTIONS(2385), + [aux_sym_cmd_identifier_token2] = ACTIONS(2387), + [aux_sym_cmd_identifier_token3] = ACTIONS(2387), + [aux_sym_cmd_identifier_token4] = ACTIONS(2387), + [aux_sym_cmd_identifier_token5] = ACTIONS(2387), + [aux_sym_cmd_identifier_token6] = ACTIONS(2387), + [aux_sym_cmd_identifier_token7] = ACTIONS(2387), + [aux_sym_cmd_identifier_token8] = ACTIONS(2385), + [aux_sym_cmd_identifier_token9] = ACTIONS(2385), + [aux_sym_cmd_identifier_token10] = ACTIONS(2387), + [aux_sym_cmd_identifier_token11] = ACTIONS(2387), + [aux_sym_cmd_identifier_token12] = ACTIONS(2385), + [aux_sym_cmd_identifier_token13] = ACTIONS(2385), + [aux_sym_cmd_identifier_token14] = ACTIONS(2385), + [aux_sym_cmd_identifier_token15] = ACTIONS(2385), + [aux_sym_cmd_identifier_token16] = ACTIONS(2387), + [aux_sym_cmd_identifier_token17] = ACTIONS(2387), + [aux_sym_cmd_identifier_token18] = ACTIONS(2387), + [aux_sym_cmd_identifier_token19] = ACTIONS(2387), + [aux_sym_cmd_identifier_token20] = ACTIONS(2387), + [aux_sym_cmd_identifier_token21] = ACTIONS(2387), + [aux_sym_cmd_identifier_token22] = ACTIONS(2387), + [aux_sym_cmd_identifier_token23] = ACTIONS(2387), + [aux_sym_cmd_identifier_token24] = ACTIONS(2387), + [aux_sym_cmd_identifier_token25] = ACTIONS(2387), + [aux_sym_cmd_identifier_token26] = ACTIONS(2387), + [aux_sym_cmd_identifier_token27] = ACTIONS(2387), + [aux_sym_cmd_identifier_token28] = ACTIONS(2387), + [aux_sym_cmd_identifier_token29] = ACTIONS(2387), + [aux_sym_cmd_identifier_token30] = ACTIONS(2387), + [aux_sym_cmd_identifier_token31] = ACTIONS(2387), + [aux_sym_cmd_identifier_token32] = ACTIONS(2387), + [aux_sym_cmd_identifier_token33] = ACTIONS(2387), + [aux_sym_cmd_identifier_token34] = ACTIONS(2385), + [aux_sym_cmd_identifier_token35] = ACTIONS(2387), + [aux_sym_cmd_identifier_token36] = ACTIONS(2387), + [aux_sym_cmd_identifier_token37] = ACTIONS(2387), + [aux_sym_cmd_identifier_token38] = ACTIONS(2385), + [aux_sym_cmd_identifier_token39] = ACTIONS(2387), + [aux_sym_cmd_identifier_token40] = ACTIONS(2387), + [anon_sym_def] = ACTIONS(2385), + [anon_sym_export_DASHenv] = ACTIONS(2385), + [anon_sym_extern] = ACTIONS(2385), + [anon_sym_module] = ACTIONS(2385), + [anon_sym_use] = ACTIONS(2385), + [anon_sym_LPAREN] = ACTIONS(2387), + [anon_sym_COMMA] = ACTIONS(2387), + [anon_sym_DOLLAR] = ACTIONS(2387), + [anon_sym_error] = ACTIONS(2385), + [anon_sym_DASH2] = ACTIONS(2385), + [anon_sym_break] = ACTIONS(2385), + [anon_sym_continue] = ACTIONS(2385), + [anon_sym_for] = ACTIONS(2385), + [anon_sym_in2] = ACTIONS(2385), + [anon_sym_loop] = ACTIONS(2385), + [anon_sym_make] = ACTIONS(2385), + [anon_sym_while] = ACTIONS(2385), + [anon_sym_do] = ACTIONS(2385), + [anon_sym_if] = ACTIONS(2385), + [anon_sym_else] = ACTIONS(2385), + [anon_sym_match] = ACTIONS(2385), + [anon_sym_RBRACE] = ACTIONS(2387), + [anon_sym_try] = ACTIONS(2385), + [anon_sym_catch] = ACTIONS(2385), + [anon_sym_return] = ACTIONS(2385), + [anon_sym_source] = ACTIONS(2385), + [anon_sym_source_DASHenv] = ACTIONS(2385), + [anon_sym_register] = ACTIONS(2385), + [anon_sym_hide] = ACTIONS(2385), + [anon_sym_hide_DASHenv] = ACTIONS(2385), + [anon_sym_overlay] = ACTIONS(2385), + [anon_sym_as] = ACTIONS(2385), + [anon_sym_PLUS2] = ACTIONS(2385), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2387), + [aux_sym__val_number_decimal_token1] = ACTIONS(2385), + [aux_sym__val_number_decimal_token2] = ACTIONS(2387), + [aux_sym__val_number_decimal_token3] = ACTIONS(2387), + [aux_sym__val_number_decimal_token4] = ACTIONS(2387), + [aux_sym__val_number_token1] = ACTIONS(2387), + [aux_sym__val_number_token2] = ACTIONS(2387), + [aux_sym__val_number_token3] = ACTIONS(2387), + [aux_sym__val_number_token4] = ACTIONS(2385), + [aux_sym__val_number_token5] = ACTIONS(2385), + [aux_sym__val_number_token6] = ACTIONS(2385), + [anon_sym_DQUOTE] = ACTIONS(2387), + [sym__str_single_quotes] = ACTIONS(2387), + [sym__str_back_ticks] = ACTIONS(2387), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2387), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2158), - }, - [754] = { - [aux_sym__pipe_separator] = STATE(754), - [sym_comment] = STATE(754), - [aux_sym_shebang_repeat1] = STATE(5022), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [aux_sym_cmd_identifier_token2] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [aux_sym_cmd_identifier_token6] = ACTIONS(2529), - [aux_sym_cmd_identifier_token7] = ACTIONS(2529), - [aux_sym_cmd_identifier_token8] = ACTIONS(2529), - [aux_sym_cmd_identifier_token9] = ACTIONS(2527), - [aux_sym_cmd_identifier_token10] = ACTIONS(2529), - [aux_sym_cmd_identifier_token11] = ACTIONS(2529), - [aux_sym_cmd_identifier_token12] = ACTIONS(2529), - [aux_sym_cmd_identifier_token13] = ACTIONS(2527), - [aux_sym_cmd_identifier_token14] = ACTIONS(2529), - [aux_sym_cmd_identifier_token15] = ACTIONS(2527), - [aux_sym_cmd_identifier_token16] = ACTIONS(2529), - [aux_sym_cmd_identifier_token17] = ACTIONS(2529), - [aux_sym_cmd_identifier_token18] = ACTIONS(2527), - [aux_sym_cmd_identifier_token19] = ACTIONS(2529), - [aux_sym_cmd_identifier_token20] = ACTIONS(2529), - [aux_sym_cmd_identifier_token21] = ACTIONS(2529), - [aux_sym_cmd_identifier_token22] = ACTIONS(2529), - [aux_sym_cmd_identifier_token23] = ACTIONS(2529), - [aux_sym_cmd_identifier_token24] = ACTIONS(2529), - [aux_sym_cmd_identifier_token25] = ACTIONS(2529), - [aux_sym_cmd_identifier_token26] = ACTIONS(2529), - [aux_sym_cmd_identifier_token27] = ACTIONS(2529), - [aux_sym_cmd_identifier_token28] = ACTIONS(2529), - [aux_sym_cmd_identifier_token29] = ACTIONS(2529), - [aux_sym_cmd_identifier_token30] = ACTIONS(2529), - [aux_sym_cmd_identifier_token31] = ACTIONS(2529), - [aux_sym_cmd_identifier_token32] = ACTIONS(2527), - [aux_sym_cmd_identifier_token33] = ACTIONS(2529), - [aux_sym_cmd_identifier_token34] = ACTIONS(2527), - [aux_sym_cmd_identifier_token35] = ACTIONS(2529), - [aux_sym_cmd_identifier_token36] = ACTIONS(2529), - [aux_sym_cmd_identifier_token37] = ACTIONS(2529), - [aux_sym_cmd_identifier_token38] = ACTIONS(2527), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = ACTIONS(2531), - [anon_sym_PIPE] = ACTIONS(2534), - [anon_sym_err_GT_PIPE] = ACTIONS(2534), - [anon_sym_out_GT_PIPE] = ACTIONS(2534), - [anon_sym_e_GT_PIPE] = ACTIONS(2534), - [anon_sym_o_GT_PIPE] = ACTIONS(2534), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2534), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2534), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2534), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2534), - [anon_sym_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_do] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2527), - [anon_sym_return] = 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), - [anon_sym_null] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [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), - [aux_sym__val_number_token4] = ACTIONS(2527), - [aux_sym__val_number_token5] = ACTIONS(2527), - [aux_sym__val_number_token6] = ACTIONS(2527), - [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), - [sym__str_single_quotes] = ACTIONS(2529), - [sym__str_back_ticks] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [aux_sym_env_var_token1] = ACTIONS(2527), - [anon_sym_CARET] = ACTIONS(2529), - [aux_sym_command_token1] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2529), - }, - [755] = { - [sym_comment] = STATE(755), - [anon_sym_export] = ACTIONS(1681), - [anon_sym_alias] = ACTIONS(1681), - [anon_sym_let] = ACTIONS(1681), - [anon_sym_let_DASHenv] = ACTIONS(1681), - [anon_sym_mut] = ACTIONS(1681), - [anon_sym_const] = ACTIONS(1681), - [aux_sym_cmd_identifier_token1] = ACTIONS(1681), - [aux_sym_cmd_identifier_token2] = ACTIONS(1693), - [aux_sym_cmd_identifier_token3] = ACTIONS(1693), - [aux_sym_cmd_identifier_token4] = ACTIONS(1693), - [aux_sym_cmd_identifier_token5] = ACTIONS(1693), - [aux_sym_cmd_identifier_token6] = ACTIONS(1693), - [aux_sym_cmd_identifier_token7] = ACTIONS(1693), - [aux_sym_cmd_identifier_token8] = ACTIONS(1681), - [aux_sym_cmd_identifier_token9] = ACTIONS(1681), - [aux_sym_cmd_identifier_token10] = ACTIONS(1693), - [aux_sym_cmd_identifier_token11] = ACTIONS(1693), - [aux_sym_cmd_identifier_token12] = ACTIONS(1681), - [aux_sym_cmd_identifier_token13] = ACTIONS(1681), - [aux_sym_cmd_identifier_token14] = ACTIONS(1681), - [aux_sym_cmd_identifier_token15] = ACTIONS(1681), - [aux_sym_cmd_identifier_token16] = ACTIONS(1693), - [aux_sym_cmd_identifier_token17] = ACTIONS(1693), - [aux_sym_cmd_identifier_token18] = ACTIONS(1693), - [aux_sym_cmd_identifier_token19] = ACTIONS(1693), - [aux_sym_cmd_identifier_token20] = ACTIONS(1693), - [aux_sym_cmd_identifier_token21] = ACTIONS(1693), - [aux_sym_cmd_identifier_token22] = ACTIONS(1693), - [aux_sym_cmd_identifier_token23] = ACTIONS(1693), - [aux_sym_cmd_identifier_token24] = ACTIONS(1693), - [aux_sym_cmd_identifier_token25] = ACTIONS(1693), - [aux_sym_cmd_identifier_token26] = ACTIONS(1693), - [aux_sym_cmd_identifier_token27] = ACTIONS(1693), - [aux_sym_cmd_identifier_token28] = ACTIONS(1693), - [aux_sym_cmd_identifier_token29] = ACTIONS(1693), - [aux_sym_cmd_identifier_token30] = ACTIONS(1693), - [aux_sym_cmd_identifier_token31] = ACTIONS(1693), - [aux_sym_cmd_identifier_token32] = ACTIONS(1693), - [aux_sym_cmd_identifier_token33] = ACTIONS(1693), - [aux_sym_cmd_identifier_token34] = ACTIONS(1681), - [aux_sym_cmd_identifier_token35] = ACTIONS(1693), - [aux_sym_cmd_identifier_token36] = ACTIONS(1693), - [aux_sym_cmd_identifier_token37] = ACTIONS(1693), - [aux_sym_cmd_identifier_token38] = ACTIONS(1681), - [aux_sym_cmd_identifier_token39] = ACTIONS(1693), - [aux_sym_cmd_identifier_token40] = ACTIONS(1693), - [anon_sym_def] = ACTIONS(1681), - [anon_sym_export_DASHenv] = ACTIONS(1681), - [anon_sym_extern] = ACTIONS(1681), - [anon_sym_module] = ACTIONS(1681), - [anon_sym_use] = ACTIONS(1681), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1693), - [anon_sym_error] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_break] = ACTIONS(1681), - [anon_sym_continue] = ACTIONS(1681), - [anon_sym_for] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_loop] = ACTIONS(1681), - [anon_sym_make] = ACTIONS(1681), - [anon_sym_while] = ACTIONS(1681), - [anon_sym_do] = ACTIONS(1681), - [anon_sym_if] = ACTIONS(1681), - [anon_sym_else] = ACTIONS(1681), - [anon_sym_match] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_try] = ACTIONS(1681), - [anon_sym_catch] = ACTIONS(1681), - [anon_sym_return] = ACTIONS(1681), - [anon_sym_source] = ACTIONS(1681), - [anon_sym_source_DASHenv] = ACTIONS(1681), - [anon_sym_register] = ACTIONS(1681), - [anon_sym_hide] = ACTIONS(1681), - [anon_sym_hide_DASHenv] = ACTIONS(1681), - [anon_sym_overlay] = ACTIONS(1681), - [anon_sym_as] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1681), - [aux_sym__val_number_token5] = ACTIONS(1681), - [aux_sym__val_number_token6] = ACTIONS(1681), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), + [sym_raw_string_begin] = ACTIONS(2387), }, - [756] = { - [sym_comment] = STATE(756), - [anon_sym_export] = ACTIONS(2160), - [anon_sym_alias] = ACTIONS(2160), - [anon_sym_let] = ACTIONS(2160), - [anon_sym_let_DASHenv] = ACTIONS(2160), - [anon_sym_mut] = ACTIONS(2160), - [anon_sym_const] = ACTIONS(2160), - [aux_sym_cmd_identifier_token1] = ACTIONS(2160), - [aux_sym_cmd_identifier_token2] = ACTIONS(2166), - [aux_sym_cmd_identifier_token3] = ACTIONS(2166), - [aux_sym_cmd_identifier_token4] = ACTIONS(2166), - [aux_sym_cmd_identifier_token5] = ACTIONS(2166), - [aux_sym_cmd_identifier_token6] = ACTIONS(2166), - [aux_sym_cmd_identifier_token7] = ACTIONS(2166), - [aux_sym_cmd_identifier_token8] = ACTIONS(2160), - [aux_sym_cmd_identifier_token9] = ACTIONS(2160), - [aux_sym_cmd_identifier_token10] = ACTIONS(2166), - [aux_sym_cmd_identifier_token11] = ACTIONS(2166), - [aux_sym_cmd_identifier_token12] = ACTIONS(2160), - [aux_sym_cmd_identifier_token13] = ACTIONS(2160), - [aux_sym_cmd_identifier_token14] = ACTIONS(2160), - [aux_sym_cmd_identifier_token15] = ACTIONS(2160), - [aux_sym_cmd_identifier_token16] = ACTIONS(2166), - [aux_sym_cmd_identifier_token17] = ACTIONS(2166), - [aux_sym_cmd_identifier_token18] = ACTIONS(2166), - [aux_sym_cmd_identifier_token19] = ACTIONS(2166), - [aux_sym_cmd_identifier_token20] = ACTIONS(2166), - [aux_sym_cmd_identifier_token21] = ACTIONS(2166), - [aux_sym_cmd_identifier_token22] = ACTIONS(2166), - [aux_sym_cmd_identifier_token23] = ACTIONS(2166), - [aux_sym_cmd_identifier_token24] = ACTIONS(2166), - [aux_sym_cmd_identifier_token25] = ACTIONS(2166), - [aux_sym_cmd_identifier_token26] = ACTIONS(2166), - [aux_sym_cmd_identifier_token27] = ACTIONS(2166), - [aux_sym_cmd_identifier_token28] = ACTIONS(2166), - [aux_sym_cmd_identifier_token29] = ACTIONS(2166), - [aux_sym_cmd_identifier_token30] = ACTIONS(2166), - [aux_sym_cmd_identifier_token31] = ACTIONS(2166), - [aux_sym_cmd_identifier_token32] = ACTIONS(2166), - [aux_sym_cmd_identifier_token33] = ACTIONS(2166), - [aux_sym_cmd_identifier_token34] = ACTIONS(2160), - [aux_sym_cmd_identifier_token35] = ACTIONS(2166), - [aux_sym_cmd_identifier_token36] = ACTIONS(2166), - [aux_sym_cmd_identifier_token37] = ACTIONS(2166), - [aux_sym_cmd_identifier_token38] = ACTIONS(2160), - [aux_sym_cmd_identifier_token39] = ACTIONS(2166), - [aux_sym_cmd_identifier_token40] = ACTIONS(2166), - [anon_sym_def] = ACTIONS(2160), - [anon_sym_export_DASHenv] = ACTIONS(2160), - [anon_sym_extern] = ACTIONS(2160), - [anon_sym_module] = ACTIONS(2160), - [anon_sym_use] = ACTIONS(2160), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(2166), - [anon_sym_error] = ACTIONS(2160), - [anon_sym_DASH2] = ACTIONS(2160), - [anon_sym_break] = ACTIONS(2160), - [anon_sym_continue] = ACTIONS(2160), - [anon_sym_for] = ACTIONS(2160), - [anon_sym_in2] = ACTIONS(2160), - [anon_sym_loop] = ACTIONS(2160), - [anon_sym_make] = ACTIONS(2160), - [anon_sym_while] = ACTIONS(2160), - [anon_sym_do] = ACTIONS(2160), - [anon_sym_if] = ACTIONS(2160), - [anon_sym_else] = ACTIONS(2160), - [anon_sym_match] = ACTIONS(2160), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_try] = ACTIONS(2160), - [anon_sym_catch] = ACTIONS(2160), - [anon_sym_return] = ACTIONS(2160), - [anon_sym_source] = ACTIONS(2160), - [anon_sym_source_DASHenv] = ACTIONS(2160), - [anon_sym_register] = ACTIONS(2160), - [anon_sym_hide] = ACTIONS(2160), - [anon_sym_hide_DASHenv] = ACTIONS(2160), - [anon_sym_overlay] = ACTIONS(2160), - [anon_sym_as] = ACTIONS(2160), - [anon_sym_PLUS2] = ACTIONS(2160), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2166), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2166), - [aux_sym__val_number_decimal_token3] = ACTIONS(2166), - [aux_sym__val_number_decimal_token4] = ACTIONS(2166), - [aux_sym__val_number_token1] = ACTIONS(2166), - [aux_sym__val_number_token2] = ACTIONS(2166), - [aux_sym__val_number_token3] = ACTIONS(2166), - [aux_sym__val_number_token4] = ACTIONS(2160), - [aux_sym__val_number_token5] = ACTIONS(2160), - [aux_sym__val_number_token6] = ACTIONS(2160), - [anon_sym_DQUOTE] = ACTIONS(2166), - [sym__str_single_quotes] = ACTIONS(2166), - [sym__str_back_ticks] = ACTIONS(2166), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2166), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2166), + [734] = { + [sym_comment] = STATE(734), + [anon_sym_export] = ACTIONS(2072), + [anon_sym_alias] = ACTIONS(2072), + [anon_sym_let] = ACTIONS(2072), + [anon_sym_let_DASHenv] = ACTIONS(2072), + [anon_sym_mut] = ACTIONS(2072), + [anon_sym_const] = ACTIONS(2072), + [aux_sym_cmd_identifier_token1] = ACTIONS(2072), + [aux_sym_cmd_identifier_token2] = ACTIONS(2078), + [aux_sym_cmd_identifier_token3] = ACTIONS(2078), + [aux_sym_cmd_identifier_token4] = ACTIONS(2078), + [aux_sym_cmd_identifier_token5] = ACTIONS(2078), + [aux_sym_cmd_identifier_token6] = ACTIONS(2078), + [aux_sym_cmd_identifier_token7] = ACTIONS(2078), + [aux_sym_cmd_identifier_token8] = ACTIONS(2072), + [aux_sym_cmd_identifier_token9] = ACTIONS(2072), + [aux_sym_cmd_identifier_token10] = ACTIONS(2078), + [aux_sym_cmd_identifier_token11] = ACTIONS(2078), + [aux_sym_cmd_identifier_token12] = ACTIONS(2072), + [aux_sym_cmd_identifier_token13] = ACTIONS(2072), + [aux_sym_cmd_identifier_token14] = ACTIONS(2072), + [aux_sym_cmd_identifier_token15] = ACTIONS(2072), + [aux_sym_cmd_identifier_token16] = ACTIONS(2078), + [aux_sym_cmd_identifier_token17] = ACTIONS(2078), + [aux_sym_cmd_identifier_token18] = ACTIONS(2078), + [aux_sym_cmd_identifier_token19] = ACTIONS(2078), + [aux_sym_cmd_identifier_token20] = ACTIONS(2078), + [aux_sym_cmd_identifier_token21] = ACTIONS(2078), + [aux_sym_cmd_identifier_token22] = ACTIONS(2078), + [aux_sym_cmd_identifier_token23] = ACTIONS(2078), + [aux_sym_cmd_identifier_token24] = ACTIONS(2078), + [aux_sym_cmd_identifier_token25] = ACTIONS(2078), + [aux_sym_cmd_identifier_token26] = ACTIONS(2078), + [aux_sym_cmd_identifier_token27] = ACTIONS(2078), + [aux_sym_cmd_identifier_token28] = ACTIONS(2078), + [aux_sym_cmd_identifier_token29] = ACTIONS(2078), + [aux_sym_cmd_identifier_token30] = ACTIONS(2078), + [aux_sym_cmd_identifier_token31] = ACTIONS(2078), + [aux_sym_cmd_identifier_token32] = ACTIONS(2078), + [aux_sym_cmd_identifier_token33] = ACTIONS(2078), + [aux_sym_cmd_identifier_token34] = ACTIONS(2072), + [aux_sym_cmd_identifier_token35] = ACTIONS(2078), + [aux_sym_cmd_identifier_token36] = ACTIONS(2078), + [aux_sym_cmd_identifier_token37] = ACTIONS(2078), + [aux_sym_cmd_identifier_token38] = ACTIONS(2072), + [aux_sym_cmd_identifier_token39] = ACTIONS(2078), + [aux_sym_cmd_identifier_token40] = ACTIONS(2078), + [anon_sym_def] = ACTIONS(2072), + [anon_sym_export_DASHenv] = ACTIONS(2072), + [anon_sym_extern] = ACTIONS(2072), + [anon_sym_module] = ACTIONS(2072), + [anon_sym_use] = ACTIONS(2072), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_COMMA] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2078), + [anon_sym_error] = ACTIONS(2072), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_break] = ACTIONS(2072), + [anon_sym_continue] = ACTIONS(2072), + [anon_sym_for] = ACTIONS(2072), + [anon_sym_in2] = ACTIONS(2072), + [anon_sym_loop] = ACTIONS(2072), + [anon_sym_make] = ACTIONS(2072), + [anon_sym_while] = ACTIONS(2072), + [anon_sym_do] = ACTIONS(2072), + [anon_sym_if] = ACTIONS(2072), + [anon_sym_else] = ACTIONS(2072), + [anon_sym_match] = ACTIONS(2072), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_try] = ACTIONS(2072), + [anon_sym_catch] = ACTIONS(2072), + [anon_sym_return] = ACTIONS(2072), + [anon_sym_source] = ACTIONS(2072), + [anon_sym_source_DASHenv] = ACTIONS(2072), + [anon_sym_register] = ACTIONS(2072), + [anon_sym_hide] = ACTIONS(2072), + [anon_sym_hide_DASHenv] = ACTIONS(2072), + [anon_sym_overlay] = ACTIONS(2072), + [anon_sym_as] = ACTIONS(2072), + [anon_sym_PLUS2] = ACTIONS(2072), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2078), + [aux_sym__val_number_decimal_token3] = ACTIONS(2078), + [aux_sym__val_number_decimal_token4] = ACTIONS(2078), + [aux_sym__val_number_token1] = ACTIONS(2078), + [aux_sym__val_number_token2] = ACTIONS(2078), + [aux_sym__val_number_token3] = ACTIONS(2078), + [aux_sym__val_number_token4] = ACTIONS(2072), + [aux_sym__val_number_token5] = ACTIONS(2072), + [aux_sym__val_number_token6] = ACTIONS(2072), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2078), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), }, - [757] = { - [sym_comment] = STATE(757), + [735] = { + [sym_comment] = STATE(735), [anon_sym_export] = ACTIONS(2407), [anon_sym_alias] = ACTIONS(2407), [anon_sym_let] = ACTIONS(2407), @@ -160416,6 +158617,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2407), [anon_sym_use] = ACTIONS(2407), [anon_sym_LPAREN] = ACTIONS(2409), + [anon_sym_COMMA] = ACTIONS(2409), [anon_sym_DOLLAR] = ACTIONS(2409), [anon_sym_error] = ACTIONS(2407), [anon_sym_DASH2] = ACTIONS(2407), @@ -160461,8 +158663,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2409), }, - [758] = { - [sym_comment] = STATE(758), + [736] = { + [sym_comment] = STATE(736), [anon_sym_export] = ACTIONS(2411), [anon_sym_alias] = ACTIONS(2411), [anon_sym_let] = ACTIONS(2411), @@ -160515,6 +158717,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_module] = ACTIONS(2411), [anon_sym_use] = ACTIONS(2411), [anon_sym_LPAREN] = ACTIONS(2413), + [anon_sym_COMMA] = ACTIONS(2413), [anon_sym_DOLLAR] = ACTIONS(2413), [anon_sym_error] = ACTIONS(2411), [anon_sym_DASH2] = ACTIONS(2411), @@ -160560,503 +158763,1306 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(2413), }, - [759] = { - [sym_comment] = STATE(759), - [anon_sym_export] = ACTIONS(2411), - [anon_sym_alias] = ACTIONS(2411), - [anon_sym_let] = ACTIONS(2411), - [anon_sym_let_DASHenv] = ACTIONS(2411), - [anon_sym_mut] = ACTIONS(2411), - [anon_sym_const] = ACTIONS(2411), - [aux_sym_cmd_identifier_token1] = ACTIONS(2411), - [aux_sym_cmd_identifier_token2] = ACTIONS(2413), - [aux_sym_cmd_identifier_token3] = ACTIONS(2413), - [aux_sym_cmd_identifier_token4] = ACTIONS(2413), - [aux_sym_cmd_identifier_token5] = ACTIONS(2413), - [aux_sym_cmd_identifier_token6] = ACTIONS(2413), - [aux_sym_cmd_identifier_token7] = ACTIONS(2413), - [aux_sym_cmd_identifier_token8] = ACTIONS(2411), - [aux_sym_cmd_identifier_token9] = ACTIONS(2411), - [aux_sym_cmd_identifier_token10] = ACTIONS(2413), - [aux_sym_cmd_identifier_token11] = ACTIONS(2413), - [aux_sym_cmd_identifier_token12] = ACTIONS(2411), - [aux_sym_cmd_identifier_token13] = ACTIONS(2411), - [aux_sym_cmd_identifier_token14] = ACTIONS(2411), - [aux_sym_cmd_identifier_token15] = ACTIONS(2411), - [aux_sym_cmd_identifier_token16] = ACTIONS(2413), - [aux_sym_cmd_identifier_token17] = ACTIONS(2413), - [aux_sym_cmd_identifier_token18] = ACTIONS(2413), - [aux_sym_cmd_identifier_token19] = ACTIONS(2413), - [aux_sym_cmd_identifier_token20] = ACTIONS(2413), - [aux_sym_cmd_identifier_token21] = ACTIONS(2413), - [aux_sym_cmd_identifier_token22] = ACTIONS(2413), - [aux_sym_cmd_identifier_token23] = ACTIONS(2413), - [aux_sym_cmd_identifier_token24] = ACTIONS(2413), - [aux_sym_cmd_identifier_token25] = ACTIONS(2413), - [aux_sym_cmd_identifier_token26] = ACTIONS(2413), - [aux_sym_cmd_identifier_token27] = ACTIONS(2413), - [aux_sym_cmd_identifier_token28] = ACTIONS(2413), - [aux_sym_cmd_identifier_token29] = ACTIONS(2413), - [aux_sym_cmd_identifier_token30] = ACTIONS(2413), - [aux_sym_cmd_identifier_token31] = ACTIONS(2413), - [aux_sym_cmd_identifier_token32] = ACTIONS(2413), - [aux_sym_cmd_identifier_token33] = ACTIONS(2413), - [aux_sym_cmd_identifier_token34] = ACTIONS(2411), - [aux_sym_cmd_identifier_token35] = ACTIONS(2413), - [aux_sym_cmd_identifier_token36] = ACTIONS(2413), - [aux_sym_cmd_identifier_token37] = ACTIONS(2413), - [aux_sym_cmd_identifier_token38] = ACTIONS(2411), - [aux_sym_cmd_identifier_token39] = ACTIONS(2413), - [aux_sym_cmd_identifier_token40] = ACTIONS(2413), - [anon_sym_def] = ACTIONS(2411), - [anon_sym_export_DASHenv] = ACTIONS(2411), - [anon_sym_extern] = ACTIONS(2411), - [anon_sym_module] = ACTIONS(2411), - [anon_sym_use] = ACTIONS(2411), - [anon_sym_LPAREN] = ACTIONS(2413), - [anon_sym_DOLLAR] = ACTIONS(2413), - [anon_sym_error] = ACTIONS(2411), - [anon_sym_DASH2] = ACTIONS(2411), - [anon_sym_break] = ACTIONS(2411), - [anon_sym_continue] = ACTIONS(2411), - [anon_sym_for] = ACTIONS(2411), - [anon_sym_in2] = ACTIONS(2411), - [anon_sym_loop] = ACTIONS(2411), - [anon_sym_make] = ACTIONS(2411), - [anon_sym_while] = ACTIONS(2411), - [anon_sym_do] = ACTIONS(2411), - [anon_sym_if] = ACTIONS(2411), - [anon_sym_else] = ACTIONS(2411), - [anon_sym_match] = ACTIONS(2411), - [anon_sym_RBRACE] = ACTIONS(2413), - [anon_sym_try] = ACTIONS(2411), - [anon_sym_catch] = ACTIONS(2411), - [anon_sym_return] = ACTIONS(2411), - [anon_sym_source] = ACTIONS(2411), - [anon_sym_source_DASHenv] = ACTIONS(2411), - [anon_sym_register] = ACTIONS(2411), - [anon_sym_hide] = ACTIONS(2411), - [anon_sym_hide_DASHenv] = ACTIONS(2411), - [anon_sym_overlay] = ACTIONS(2411), - [anon_sym_as] = ACTIONS(2411), - [anon_sym_PLUS2] = ACTIONS(2411), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2413), - [aux_sym__val_number_decimal_token1] = ACTIONS(2411), - [aux_sym__val_number_decimal_token2] = ACTIONS(2413), - [aux_sym__val_number_decimal_token3] = ACTIONS(2413), - [aux_sym__val_number_decimal_token4] = ACTIONS(2413), - [aux_sym__val_number_token1] = ACTIONS(2413), - [aux_sym__val_number_token2] = ACTIONS(2413), - [aux_sym__val_number_token3] = ACTIONS(2413), - [aux_sym__val_number_token4] = ACTIONS(2411), - [aux_sym__val_number_token5] = ACTIONS(2411), - [aux_sym__val_number_token6] = ACTIONS(2411), - [anon_sym_DQUOTE] = ACTIONS(2413), - [sym__str_single_quotes] = ACTIONS(2413), - [sym__str_back_ticks] = ACTIONS(2413), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2413), + [737] = { + [sym_comment] = STATE(737), + [anon_sym_export] = ACTIONS(2421), + [anon_sym_alias] = ACTIONS(2421), + [anon_sym_let] = ACTIONS(2421), + [anon_sym_let_DASHenv] = ACTIONS(2421), + [anon_sym_mut] = ACTIONS(2421), + [anon_sym_const] = ACTIONS(2421), + [aux_sym_cmd_identifier_token1] = ACTIONS(2421), + [aux_sym_cmd_identifier_token2] = ACTIONS(2423), + [aux_sym_cmd_identifier_token3] = ACTIONS(2423), + [aux_sym_cmd_identifier_token4] = ACTIONS(2423), + [aux_sym_cmd_identifier_token5] = ACTIONS(2423), + [aux_sym_cmd_identifier_token6] = ACTIONS(2423), + [aux_sym_cmd_identifier_token7] = ACTIONS(2423), + [aux_sym_cmd_identifier_token8] = ACTIONS(2421), + [aux_sym_cmd_identifier_token9] = ACTIONS(2421), + [aux_sym_cmd_identifier_token10] = ACTIONS(2423), + [aux_sym_cmd_identifier_token11] = ACTIONS(2423), + [aux_sym_cmd_identifier_token12] = ACTIONS(2421), + [aux_sym_cmd_identifier_token13] = ACTIONS(2421), + [aux_sym_cmd_identifier_token14] = ACTIONS(2421), + [aux_sym_cmd_identifier_token15] = ACTIONS(2421), + [aux_sym_cmd_identifier_token16] = ACTIONS(2423), + [aux_sym_cmd_identifier_token17] = ACTIONS(2423), + [aux_sym_cmd_identifier_token18] = ACTIONS(2423), + [aux_sym_cmd_identifier_token19] = ACTIONS(2423), + [aux_sym_cmd_identifier_token20] = ACTIONS(2423), + [aux_sym_cmd_identifier_token21] = ACTIONS(2423), + [aux_sym_cmd_identifier_token22] = ACTIONS(2423), + [aux_sym_cmd_identifier_token23] = ACTIONS(2423), + [aux_sym_cmd_identifier_token24] = ACTIONS(2423), + [aux_sym_cmd_identifier_token25] = ACTIONS(2423), + [aux_sym_cmd_identifier_token26] = ACTIONS(2423), + [aux_sym_cmd_identifier_token27] = ACTIONS(2423), + [aux_sym_cmd_identifier_token28] = ACTIONS(2423), + [aux_sym_cmd_identifier_token29] = ACTIONS(2423), + [aux_sym_cmd_identifier_token30] = ACTIONS(2423), + [aux_sym_cmd_identifier_token31] = ACTIONS(2423), + [aux_sym_cmd_identifier_token32] = ACTIONS(2423), + [aux_sym_cmd_identifier_token33] = ACTIONS(2423), + [aux_sym_cmd_identifier_token34] = ACTIONS(2421), + [aux_sym_cmd_identifier_token35] = ACTIONS(2423), + [aux_sym_cmd_identifier_token36] = ACTIONS(2423), + [aux_sym_cmd_identifier_token37] = ACTIONS(2423), + [aux_sym_cmd_identifier_token38] = ACTIONS(2421), + [aux_sym_cmd_identifier_token39] = ACTIONS(2423), + [aux_sym_cmd_identifier_token40] = ACTIONS(2423), + [anon_sym_def] = ACTIONS(2421), + [anon_sym_export_DASHenv] = ACTIONS(2421), + [anon_sym_extern] = ACTIONS(2421), + [anon_sym_module] = ACTIONS(2421), + [anon_sym_use] = ACTIONS(2421), + [anon_sym_LPAREN] = ACTIONS(2423), + [anon_sym_COMMA] = ACTIONS(2423), + [anon_sym_DOLLAR] = ACTIONS(2423), + [anon_sym_error] = ACTIONS(2421), + [anon_sym_DASH2] = ACTIONS(2421), + [anon_sym_break] = ACTIONS(2421), + [anon_sym_continue] = ACTIONS(2421), + [anon_sym_for] = ACTIONS(2421), + [anon_sym_in2] = ACTIONS(2421), + [anon_sym_loop] = ACTIONS(2421), + [anon_sym_make] = ACTIONS(2421), + [anon_sym_while] = ACTIONS(2421), + [anon_sym_do] = ACTIONS(2421), + [anon_sym_if] = ACTIONS(2421), + [anon_sym_else] = ACTIONS(2421), + [anon_sym_match] = ACTIONS(2421), + [anon_sym_RBRACE] = ACTIONS(2423), + [anon_sym_try] = ACTIONS(2421), + [anon_sym_catch] = ACTIONS(2421), + [anon_sym_return] = ACTIONS(2421), + [anon_sym_source] = ACTIONS(2421), + [anon_sym_source_DASHenv] = ACTIONS(2421), + [anon_sym_register] = ACTIONS(2421), + [anon_sym_hide] = ACTIONS(2421), + [anon_sym_hide_DASHenv] = ACTIONS(2421), + [anon_sym_overlay] = ACTIONS(2421), + [anon_sym_as] = ACTIONS(2421), + [anon_sym_PLUS2] = ACTIONS(2421), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2423), + [aux_sym__val_number_decimal_token1] = ACTIONS(2421), + [aux_sym__val_number_decimal_token2] = ACTIONS(2423), + [aux_sym__val_number_decimal_token3] = ACTIONS(2423), + [aux_sym__val_number_decimal_token4] = ACTIONS(2423), + [aux_sym__val_number_token1] = ACTIONS(2423), + [aux_sym__val_number_token2] = ACTIONS(2423), + [aux_sym__val_number_token3] = ACTIONS(2423), + [aux_sym__val_number_token4] = ACTIONS(2421), + [aux_sym__val_number_token5] = ACTIONS(2421), + [aux_sym__val_number_token6] = ACTIONS(2421), + [anon_sym_DQUOTE] = ACTIONS(2423), + [sym__str_single_quotes] = ACTIONS(2423), + [sym__str_back_ticks] = ACTIONS(2423), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2423), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2413), + [sym_raw_string_begin] = ACTIONS(2423), }, - [760] = { - [sym_comment] = STATE(760), - [anon_sym_export] = ACTIONS(2415), - [anon_sym_alias] = ACTIONS(2415), - [anon_sym_let] = ACTIONS(2415), - [anon_sym_let_DASHenv] = ACTIONS(2415), - [anon_sym_mut] = ACTIONS(2415), - [anon_sym_const] = ACTIONS(2415), - [aux_sym_cmd_identifier_token1] = ACTIONS(2415), - [aux_sym_cmd_identifier_token2] = ACTIONS(2417), - [aux_sym_cmd_identifier_token3] = ACTIONS(2417), - [aux_sym_cmd_identifier_token4] = ACTIONS(2417), - [aux_sym_cmd_identifier_token5] = ACTIONS(2417), - [aux_sym_cmd_identifier_token6] = ACTIONS(2417), - [aux_sym_cmd_identifier_token7] = ACTIONS(2417), - [aux_sym_cmd_identifier_token8] = ACTIONS(2415), - [aux_sym_cmd_identifier_token9] = ACTIONS(2415), - [aux_sym_cmd_identifier_token10] = ACTIONS(2417), - [aux_sym_cmd_identifier_token11] = ACTIONS(2417), - [aux_sym_cmd_identifier_token12] = ACTIONS(2415), - [aux_sym_cmd_identifier_token13] = ACTIONS(2415), - [aux_sym_cmd_identifier_token14] = ACTIONS(2415), - [aux_sym_cmd_identifier_token15] = ACTIONS(2415), - [aux_sym_cmd_identifier_token16] = ACTIONS(2417), - [aux_sym_cmd_identifier_token17] = ACTIONS(2417), - [aux_sym_cmd_identifier_token18] = ACTIONS(2417), - [aux_sym_cmd_identifier_token19] = ACTIONS(2417), - [aux_sym_cmd_identifier_token20] = ACTIONS(2417), - [aux_sym_cmd_identifier_token21] = ACTIONS(2417), - [aux_sym_cmd_identifier_token22] = ACTIONS(2417), - [aux_sym_cmd_identifier_token23] = ACTIONS(2417), - [aux_sym_cmd_identifier_token24] = ACTIONS(2417), - [aux_sym_cmd_identifier_token25] = ACTIONS(2417), - [aux_sym_cmd_identifier_token26] = ACTIONS(2417), - [aux_sym_cmd_identifier_token27] = ACTIONS(2417), - [aux_sym_cmd_identifier_token28] = ACTIONS(2417), - [aux_sym_cmd_identifier_token29] = ACTIONS(2417), - [aux_sym_cmd_identifier_token30] = ACTIONS(2417), - [aux_sym_cmd_identifier_token31] = ACTIONS(2417), - [aux_sym_cmd_identifier_token32] = ACTIONS(2417), - [aux_sym_cmd_identifier_token33] = ACTIONS(2417), - [aux_sym_cmd_identifier_token34] = ACTIONS(2415), - [aux_sym_cmd_identifier_token35] = ACTIONS(2417), - [aux_sym_cmd_identifier_token36] = ACTIONS(2417), - [aux_sym_cmd_identifier_token37] = ACTIONS(2417), - [aux_sym_cmd_identifier_token38] = ACTIONS(2415), - [aux_sym_cmd_identifier_token39] = ACTIONS(2417), - [aux_sym_cmd_identifier_token40] = ACTIONS(2417), - [anon_sym_def] = ACTIONS(2415), - [anon_sym_export_DASHenv] = ACTIONS(2415), - [anon_sym_extern] = ACTIONS(2415), - [anon_sym_module] = ACTIONS(2415), - [anon_sym_use] = ACTIONS(2415), - [anon_sym_LPAREN] = ACTIONS(2417), - [anon_sym_DOLLAR] = ACTIONS(2417), - [anon_sym_error] = ACTIONS(2415), - [anon_sym_DASH2] = ACTIONS(2415), - [anon_sym_break] = ACTIONS(2415), - [anon_sym_continue] = ACTIONS(2415), - [anon_sym_for] = ACTIONS(2415), - [anon_sym_in2] = ACTIONS(2415), - [anon_sym_loop] = ACTIONS(2415), - [anon_sym_make] = ACTIONS(2415), - [anon_sym_while] = ACTIONS(2415), - [anon_sym_do] = ACTIONS(2415), - [anon_sym_if] = ACTIONS(2415), - [anon_sym_else] = ACTIONS(2415), - [anon_sym_match] = ACTIONS(2415), - [anon_sym_RBRACE] = ACTIONS(2417), - [anon_sym_try] = ACTIONS(2415), - [anon_sym_catch] = ACTIONS(2415), - [anon_sym_return] = ACTIONS(2415), - [anon_sym_source] = ACTIONS(2415), - [anon_sym_source_DASHenv] = ACTIONS(2415), - [anon_sym_register] = ACTIONS(2415), - [anon_sym_hide] = ACTIONS(2415), - [anon_sym_hide_DASHenv] = ACTIONS(2415), - [anon_sym_overlay] = ACTIONS(2415), - [anon_sym_as] = ACTIONS(2415), - [anon_sym_PLUS2] = ACTIONS(2415), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2417), - [aux_sym__val_number_decimal_token1] = ACTIONS(2415), - [aux_sym__val_number_decimal_token2] = ACTIONS(2417), - [aux_sym__val_number_decimal_token3] = ACTIONS(2417), - [aux_sym__val_number_decimal_token4] = ACTIONS(2417), - [aux_sym__val_number_token1] = ACTIONS(2417), - [aux_sym__val_number_token2] = ACTIONS(2417), - [aux_sym__val_number_token3] = ACTIONS(2417), - [aux_sym__val_number_token4] = ACTIONS(2415), - [aux_sym__val_number_token5] = ACTIONS(2415), - [aux_sym__val_number_token6] = ACTIONS(2415), - [anon_sym_DQUOTE] = ACTIONS(2417), - [sym__str_single_quotes] = ACTIONS(2417), - [sym__str_back_ticks] = ACTIONS(2417), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2417), + [738] = { + [sym_comment] = STATE(738), + [anon_sym_export] = ACTIONS(2425), + [anon_sym_alias] = ACTIONS(2425), + [anon_sym_let] = ACTIONS(2425), + [anon_sym_let_DASHenv] = ACTIONS(2425), + [anon_sym_mut] = ACTIONS(2425), + [anon_sym_const] = ACTIONS(2425), + [aux_sym_cmd_identifier_token1] = ACTIONS(2425), + [aux_sym_cmd_identifier_token2] = ACTIONS(2427), + [aux_sym_cmd_identifier_token3] = ACTIONS(2427), + [aux_sym_cmd_identifier_token4] = ACTIONS(2427), + [aux_sym_cmd_identifier_token5] = ACTIONS(2427), + [aux_sym_cmd_identifier_token6] = ACTIONS(2427), + [aux_sym_cmd_identifier_token7] = ACTIONS(2427), + [aux_sym_cmd_identifier_token8] = ACTIONS(2425), + [aux_sym_cmd_identifier_token9] = ACTIONS(2425), + [aux_sym_cmd_identifier_token10] = ACTIONS(2427), + [aux_sym_cmd_identifier_token11] = ACTIONS(2427), + [aux_sym_cmd_identifier_token12] = ACTIONS(2425), + [aux_sym_cmd_identifier_token13] = ACTIONS(2425), + [aux_sym_cmd_identifier_token14] = ACTIONS(2425), + [aux_sym_cmd_identifier_token15] = ACTIONS(2425), + [aux_sym_cmd_identifier_token16] = ACTIONS(2427), + [aux_sym_cmd_identifier_token17] = ACTIONS(2427), + [aux_sym_cmd_identifier_token18] = ACTIONS(2427), + [aux_sym_cmd_identifier_token19] = ACTIONS(2427), + [aux_sym_cmd_identifier_token20] = ACTIONS(2427), + [aux_sym_cmd_identifier_token21] = ACTIONS(2427), + [aux_sym_cmd_identifier_token22] = ACTIONS(2427), + [aux_sym_cmd_identifier_token23] = ACTIONS(2427), + [aux_sym_cmd_identifier_token24] = ACTIONS(2427), + [aux_sym_cmd_identifier_token25] = ACTIONS(2427), + [aux_sym_cmd_identifier_token26] = ACTIONS(2427), + [aux_sym_cmd_identifier_token27] = ACTIONS(2427), + [aux_sym_cmd_identifier_token28] = ACTIONS(2427), + [aux_sym_cmd_identifier_token29] = ACTIONS(2427), + [aux_sym_cmd_identifier_token30] = ACTIONS(2427), + [aux_sym_cmd_identifier_token31] = ACTIONS(2427), + [aux_sym_cmd_identifier_token32] = ACTIONS(2427), + [aux_sym_cmd_identifier_token33] = ACTIONS(2427), + [aux_sym_cmd_identifier_token34] = ACTIONS(2425), + [aux_sym_cmd_identifier_token35] = ACTIONS(2427), + [aux_sym_cmd_identifier_token36] = ACTIONS(2427), + [aux_sym_cmd_identifier_token37] = ACTIONS(2427), + [aux_sym_cmd_identifier_token38] = ACTIONS(2425), + [aux_sym_cmd_identifier_token39] = ACTIONS(2427), + [aux_sym_cmd_identifier_token40] = ACTIONS(2427), + [anon_sym_def] = ACTIONS(2425), + [anon_sym_export_DASHenv] = ACTIONS(2425), + [anon_sym_extern] = ACTIONS(2425), + [anon_sym_module] = ACTIONS(2425), + [anon_sym_use] = ACTIONS(2425), + [anon_sym_LPAREN] = ACTIONS(2427), + [anon_sym_COMMA] = ACTIONS(2427), + [anon_sym_DOLLAR] = ACTIONS(2427), + [anon_sym_error] = ACTIONS(2425), + [anon_sym_DASH2] = ACTIONS(2425), + [anon_sym_break] = ACTIONS(2425), + [anon_sym_continue] = ACTIONS(2425), + [anon_sym_for] = ACTIONS(2425), + [anon_sym_in2] = ACTIONS(2425), + [anon_sym_loop] = ACTIONS(2425), + [anon_sym_make] = ACTIONS(2425), + [anon_sym_while] = ACTIONS(2425), + [anon_sym_do] = ACTIONS(2425), + [anon_sym_if] = ACTIONS(2425), + [anon_sym_else] = ACTIONS(2425), + [anon_sym_match] = ACTIONS(2425), + [anon_sym_RBRACE] = ACTIONS(2427), + [anon_sym_try] = ACTIONS(2425), + [anon_sym_catch] = ACTIONS(2425), + [anon_sym_return] = ACTIONS(2425), + [anon_sym_source] = ACTIONS(2425), + [anon_sym_source_DASHenv] = ACTIONS(2425), + [anon_sym_register] = ACTIONS(2425), + [anon_sym_hide] = ACTIONS(2425), + [anon_sym_hide_DASHenv] = ACTIONS(2425), + [anon_sym_overlay] = ACTIONS(2425), + [anon_sym_as] = ACTIONS(2425), + [anon_sym_PLUS2] = ACTIONS(2425), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2427), + [aux_sym__val_number_decimal_token1] = ACTIONS(2425), + [aux_sym__val_number_decimal_token2] = ACTIONS(2427), + [aux_sym__val_number_decimal_token3] = ACTIONS(2427), + [aux_sym__val_number_decimal_token4] = ACTIONS(2427), + [aux_sym__val_number_token1] = ACTIONS(2427), + [aux_sym__val_number_token2] = ACTIONS(2427), + [aux_sym__val_number_token3] = ACTIONS(2427), + [aux_sym__val_number_token4] = ACTIONS(2425), + [aux_sym__val_number_token5] = ACTIONS(2425), + [aux_sym__val_number_token6] = ACTIONS(2425), + [anon_sym_DQUOTE] = ACTIONS(2427), + [sym__str_single_quotes] = ACTIONS(2427), + [sym__str_back_ticks] = ACTIONS(2427), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2427), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2417), + [sym_raw_string_begin] = ACTIONS(2427), }, - [761] = { - [sym_comment] = STATE(761), - [anon_sym_export] = ACTIONS(2025), - [anon_sym_alias] = ACTIONS(2025), - [anon_sym_let] = ACTIONS(2025), - [anon_sym_let_DASHenv] = ACTIONS(2025), - [anon_sym_mut] = ACTIONS(2025), - [anon_sym_const] = ACTIONS(2025), - [aux_sym_cmd_identifier_token1] = ACTIONS(2025), - [aux_sym_cmd_identifier_token2] = ACTIONS(2027), - [aux_sym_cmd_identifier_token3] = ACTIONS(2027), - [aux_sym_cmd_identifier_token4] = ACTIONS(2027), - [aux_sym_cmd_identifier_token5] = ACTIONS(2027), - [aux_sym_cmd_identifier_token6] = ACTIONS(2027), - [aux_sym_cmd_identifier_token7] = ACTIONS(2027), - [aux_sym_cmd_identifier_token8] = ACTIONS(2025), - [aux_sym_cmd_identifier_token9] = ACTIONS(2025), - [aux_sym_cmd_identifier_token10] = ACTIONS(2027), - [aux_sym_cmd_identifier_token11] = ACTIONS(2027), - [aux_sym_cmd_identifier_token12] = ACTIONS(2025), - [aux_sym_cmd_identifier_token13] = ACTIONS(2025), - [aux_sym_cmd_identifier_token14] = ACTIONS(2025), - [aux_sym_cmd_identifier_token15] = ACTIONS(2025), - [aux_sym_cmd_identifier_token16] = ACTIONS(2027), - [aux_sym_cmd_identifier_token17] = ACTIONS(2027), - [aux_sym_cmd_identifier_token18] = ACTIONS(2027), - [aux_sym_cmd_identifier_token19] = ACTIONS(2027), - [aux_sym_cmd_identifier_token20] = ACTIONS(2027), - [aux_sym_cmd_identifier_token21] = ACTIONS(2027), - [aux_sym_cmd_identifier_token22] = ACTIONS(2027), - [aux_sym_cmd_identifier_token23] = ACTIONS(2027), - [aux_sym_cmd_identifier_token24] = ACTIONS(2027), - [aux_sym_cmd_identifier_token25] = ACTIONS(2027), - [aux_sym_cmd_identifier_token26] = ACTIONS(2027), - [aux_sym_cmd_identifier_token27] = ACTIONS(2027), - [aux_sym_cmd_identifier_token28] = ACTIONS(2027), - [aux_sym_cmd_identifier_token29] = ACTIONS(2027), - [aux_sym_cmd_identifier_token30] = ACTIONS(2027), - [aux_sym_cmd_identifier_token31] = ACTIONS(2027), - [aux_sym_cmd_identifier_token32] = ACTIONS(2027), - [aux_sym_cmd_identifier_token33] = ACTIONS(2027), - [aux_sym_cmd_identifier_token34] = ACTIONS(2025), - [aux_sym_cmd_identifier_token35] = ACTIONS(2027), - [aux_sym_cmd_identifier_token36] = ACTIONS(2027), - [aux_sym_cmd_identifier_token37] = ACTIONS(2027), - [aux_sym_cmd_identifier_token38] = ACTIONS(2025), - [aux_sym_cmd_identifier_token39] = ACTIONS(2027), - [aux_sym_cmd_identifier_token40] = ACTIONS(2027), - [anon_sym_def] = ACTIONS(2025), - [anon_sym_export_DASHenv] = ACTIONS(2025), - [anon_sym_extern] = ACTIONS(2025), - [anon_sym_module] = ACTIONS(2025), - [anon_sym_use] = ACTIONS(2025), - [anon_sym_LPAREN] = ACTIONS(2027), - [anon_sym_DOLLAR] = ACTIONS(2027), - [anon_sym_error] = ACTIONS(2025), - [anon_sym_DASH2] = ACTIONS(2025), - [anon_sym_break] = ACTIONS(2025), - [anon_sym_continue] = ACTIONS(2025), - [anon_sym_for] = ACTIONS(2025), - [anon_sym_in2] = ACTIONS(2025), - [anon_sym_loop] = ACTIONS(2025), - [anon_sym_make] = ACTIONS(2025), - [anon_sym_while] = ACTIONS(2025), - [anon_sym_do] = ACTIONS(2025), - [anon_sym_if] = ACTIONS(2025), - [anon_sym_else] = ACTIONS(2025), - [anon_sym_match] = ACTIONS(2025), - [anon_sym_RBRACE] = ACTIONS(2027), - [anon_sym_try] = ACTIONS(2025), - [anon_sym_catch] = ACTIONS(2025), - [anon_sym_return] = ACTIONS(2025), - [anon_sym_source] = ACTIONS(2025), - [anon_sym_source_DASHenv] = ACTIONS(2025), - [anon_sym_register] = ACTIONS(2025), - [anon_sym_hide] = ACTIONS(2025), - [anon_sym_hide_DASHenv] = ACTIONS(2025), - [anon_sym_overlay] = ACTIONS(2025), - [anon_sym_as] = ACTIONS(2025), - [anon_sym_PLUS2] = ACTIONS(2025), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2027), - [aux_sym__val_number_decimal_token1] = ACTIONS(2025), - [aux_sym__val_number_decimal_token2] = ACTIONS(2027), - [aux_sym__val_number_decimal_token3] = ACTIONS(2027), - [aux_sym__val_number_decimal_token4] = ACTIONS(2027), - [aux_sym__val_number_token1] = ACTIONS(2027), - [aux_sym__val_number_token2] = ACTIONS(2027), - [aux_sym__val_number_token3] = ACTIONS(2027), - [aux_sym__val_number_token4] = ACTIONS(2025), - [aux_sym__val_number_token5] = ACTIONS(2025), - [aux_sym__val_number_token6] = ACTIONS(2025), - [anon_sym_DQUOTE] = ACTIONS(2027), - [sym__str_single_quotes] = ACTIONS(2027), - [sym__str_back_ticks] = ACTIONS(2027), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2027), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2027), + [739] = { + [sym_comment] = STATE(739), + [anon_sym_export] = ACTIONS(2433), + [anon_sym_alias] = ACTIONS(2433), + [anon_sym_let] = ACTIONS(2433), + [anon_sym_let_DASHenv] = ACTIONS(2433), + [anon_sym_mut] = ACTIONS(2433), + [anon_sym_const] = ACTIONS(2433), + [aux_sym_cmd_identifier_token1] = ACTIONS(2433), + [aux_sym_cmd_identifier_token2] = ACTIONS(2435), + [aux_sym_cmd_identifier_token3] = ACTIONS(2435), + [aux_sym_cmd_identifier_token4] = ACTIONS(2435), + [aux_sym_cmd_identifier_token5] = ACTIONS(2435), + [aux_sym_cmd_identifier_token6] = ACTIONS(2435), + [aux_sym_cmd_identifier_token7] = ACTIONS(2435), + [aux_sym_cmd_identifier_token8] = ACTIONS(2433), + [aux_sym_cmd_identifier_token9] = ACTIONS(2433), + [aux_sym_cmd_identifier_token10] = ACTIONS(2435), + [aux_sym_cmd_identifier_token11] = ACTIONS(2435), + [aux_sym_cmd_identifier_token12] = ACTIONS(2433), + [aux_sym_cmd_identifier_token13] = ACTIONS(2433), + [aux_sym_cmd_identifier_token14] = ACTIONS(2433), + [aux_sym_cmd_identifier_token15] = ACTIONS(2433), + [aux_sym_cmd_identifier_token16] = ACTIONS(2435), + [aux_sym_cmd_identifier_token17] = ACTIONS(2435), + [aux_sym_cmd_identifier_token18] = ACTIONS(2435), + [aux_sym_cmd_identifier_token19] = ACTIONS(2435), + [aux_sym_cmd_identifier_token20] = ACTIONS(2435), + [aux_sym_cmd_identifier_token21] = ACTIONS(2435), + [aux_sym_cmd_identifier_token22] = ACTIONS(2435), + [aux_sym_cmd_identifier_token23] = ACTIONS(2435), + [aux_sym_cmd_identifier_token24] = ACTIONS(2435), + [aux_sym_cmd_identifier_token25] = ACTIONS(2435), + [aux_sym_cmd_identifier_token26] = ACTIONS(2435), + [aux_sym_cmd_identifier_token27] = ACTIONS(2435), + [aux_sym_cmd_identifier_token28] = ACTIONS(2435), + [aux_sym_cmd_identifier_token29] = ACTIONS(2435), + [aux_sym_cmd_identifier_token30] = ACTIONS(2435), + [aux_sym_cmd_identifier_token31] = ACTIONS(2435), + [aux_sym_cmd_identifier_token32] = ACTIONS(2435), + [aux_sym_cmd_identifier_token33] = ACTIONS(2435), + [aux_sym_cmd_identifier_token34] = ACTIONS(2433), + [aux_sym_cmd_identifier_token35] = ACTIONS(2435), + [aux_sym_cmd_identifier_token36] = ACTIONS(2435), + [aux_sym_cmd_identifier_token37] = ACTIONS(2435), + [aux_sym_cmd_identifier_token38] = ACTIONS(2433), + [aux_sym_cmd_identifier_token39] = ACTIONS(2435), + [aux_sym_cmd_identifier_token40] = ACTIONS(2435), + [anon_sym_def] = ACTIONS(2433), + [anon_sym_export_DASHenv] = ACTIONS(2433), + [anon_sym_extern] = ACTIONS(2433), + [anon_sym_module] = ACTIONS(2433), + [anon_sym_use] = ACTIONS(2433), + [anon_sym_LPAREN] = ACTIONS(2435), + [anon_sym_COMMA] = ACTIONS(2435), + [anon_sym_DOLLAR] = ACTIONS(2435), + [anon_sym_error] = ACTIONS(2433), + [anon_sym_DASH2] = ACTIONS(2433), + [anon_sym_break] = ACTIONS(2433), + [anon_sym_continue] = ACTIONS(2433), + [anon_sym_for] = ACTIONS(2433), + [anon_sym_in2] = ACTIONS(2433), + [anon_sym_loop] = ACTIONS(2433), + [anon_sym_make] = ACTIONS(2433), + [anon_sym_while] = ACTIONS(2433), + [anon_sym_do] = ACTIONS(2433), + [anon_sym_if] = ACTIONS(2433), + [anon_sym_else] = ACTIONS(2433), + [anon_sym_match] = ACTIONS(2433), + [anon_sym_RBRACE] = ACTIONS(2435), + [anon_sym_try] = ACTIONS(2433), + [anon_sym_catch] = ACTIONS(2433), + [anon_sym_return] = ACTIONS(2433), + [anon_sym_source] = ACTIONS(2433), + [anon_sym_source_DASHenv] = ACTIONS(2433), + [anon_sym_register] = ACTIONS(2433), + [anon_sym_hide] = ACTIONS(2433), + [anon_sym_hide_DASHenv] = ACTIONS(2433), + [anon_sym_overlay] = ACTIONS(2433), + [anon_sym_as] = ACTIONS(2433), + [anon_sym_PLUS2] = ACTIONS(2433), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2435), + [aux_sym__val_number_decimal_token1] = ACTIONS(2433), + [aux_sym__val_number_decimal_token2] = ACTIONS(2435), + [aux_sym__val_number_decimal_token3] = ACTIONS(2435), + [aux_sym__val_number_decimal_token4] = ACTIONS(2435), + [aux_sym__val_number_token1] = ACTIONS(2435), + [aux_sym__val_number_token2] = ACTIONS(2435), + [aux_sym__val_number_token3] = ACTIONS(2435), + [aux_sym__val_number_token4] = ACTIONS(2433), + [aux_sym__val_number_token5] = ACTIONS(2433), + [aux_sym__val_number_token6] = ACTIONS(2433), + [anon_sym_DQUOTE] = ACTIONS(2435), + [sym__str_single_quotes] = ACTIONS(2435), + [sym__str_back_ticks] = ACTIONS(2435), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2435), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2435), }, - [762] = { - [sym_comment] = STATE(762), - [anon_sym_export] = ACTIONS(2501), - [anon_sym_alias] = ACTIONS(2501), - [anon_sym_let] = ACTIONS(2501), - [anon_sym_let_DASHenv] = ACTIONS(2501), - [anon_sym_mut] = ACTIONS(2501), - [anon_sym_const] = ACTIONS(2501), - [aux_sym_cmd_identifier_token1] = ACTIONS(2501), - [aux_sym_cmd_identifier_token2] = ACTIONS(2503), - [aux_sym_cmd_identifier_token3] = ACTIONS(2503), - [aux_sym_cmd_identifier_token4] = ACTIONS(2503), - [aux_sym_cmd_identifier_token5] = ACTIONS(2503), - [aux_sym_cmd_identifier_token6] = ACTIONS(2503), - [aux_sym_cmd_identifier_token7] = ACTIONS(2503), - [aux_sym_cmd_identifier_token8] = ACTIONS(2501), - [aux_sym_cmd_identifier_token9] = ACTIONS(2501), - [aux_sym_cmd_identifier_token10] = ACTIONS(2503), - [aux_sym_cmd_identifier_token11] = ACTIONS(2503), - [aux_sym_cmd_identifier_token12] = ACTIONS(2501), - [aux_sym_cmd_identifier_token13] = ACTIONS(2501), - [aux_sym_cmd_identifier_token14] = ACTIONS(2501), - [aux_sym_cmd_identifier_token15] = ACTIONS(2501), - [aux_sym_cmd_identifier_token16] = ACTIONS(2503), - [aux_sym_cmd_identifier_token17] = ACTIONS(2503), - [aux_sym_cmd_identifier_token18] = ACTIONS(2503), - [aux_sym_cmd_identifier_token19] = ACTIONS(2503), - [aux_sym_cmd_identifier_token20] = ACTIONS(2503), - [aux_sym_cmd_identifier_token21] = ACTIONS(2503), - [aux_sym_cmd_identifier_token22] = ACTIONS(2503), - [aux_sym_cmd_identifier_token23] = ACTIONS(2503), - [aux_sym_cmd_identifier_token24] = ACTIONS(2503), - [aux_sym_cmd_identifier_token25] = ACTIONS(2503), - [aux_sym_cmd_identifier_token26] = ACTIONS(2503), - [aux_sym_cmd_identifier_token27] = ACTIONS(2503), - [aux_sym_cmd_identifier_token28] = ACTIONS(2503), - [aux_sym_cmd_identifier_token29] = ACTIONS(2503), - [aux_sym_cmd_identifier_token30] = ACTIONS(2503), - [aux_sym_cmd_identifier_token31] = ACTIONS(2503), - [aux_sym_cmd_identifier_token32] = ACTIONS(2503), - [aux_sym_cmd_identifier_token33] = ACTIONS(2503), - [aux_sym_cmd_identifier_token34] = ACTIONS(2501), - [aux_sym_cmd_identifier_token35] = ACTIONS(2503), - [aux_sym_cmd_identifier_token36] = ACTIONS(2503), - [aux_sym_cmd_identifier_token37] = ACTIONS(2503), - [aux_sym_cmd_identifier_token38] = ACTIONS(2501), - [aux_sym_cmd_identifier_token39] = ACTIONS(2503), - [aux_sym_cmd_identifier_token40] = ACTIONS(2503), - [anon_sym_def] = ACTIONS(2501), - [anon_sym_export_DASHenv] = ACTIONS(2501), - [anon_sym_extern] = ACTIONS(2501), - [anon_sym_module] = ACTIONS(2501), - [anon_sym_use] = ACTIONS(2501), - [anon_sym_LPAREN] = ACTIONS(2503), - [anon_sym_DOLLAR] = ACTIONS(2503), - [anon_sym_error] = ACTIONS(2501), - [anon_sym_DASH2] = ACTIONS(2501), - [anon_sym_break] = ACTIONS(2501), - [anon_sym_continue] = ACTIONS(2501), - [anon_sym_for] = ACTIONS(2501), - [anon_sym_in2] = ACTIONS(2501), - [anon_sym_loop] = ACTIONS(2501), - [anon_sym_make] = ACTIONS(2501), - [anon_sym_while] = ACTIONS(2501), - [anon_sym_do] = ACTIONS(2501), - [anon_sym_if] = ACTIONS(2501), - [anon_sym_else] = ACTIONS(2501), - [anon_sym_match] = ACTIONS(2501), - [anon_sym_RBRACE] = ACTIONS(2503), - [anon_sym_try] = ACTIONS(2501), - [anon_sym_catch] = ACTIONS(2501), - [anon_sym_return] = ACTIONS(2501), - [anon_sym_source] = ACTIONS(2501), - [anon_sym_source_DASHenv] = ACTIONS(2501), - [anon_sym_register] = ACTIONS(2501), - [anon_sym_hide] = ACTIONS(2501), - [anon_sym_hide_DASHenv] = ACTIONS(2501), - [anon_sym_overlay] = ACTIONS(2501), - [anon_sym_as] = ACTIONS(2501), - [anon_sym_PLUS2] = ACTIONS(2501), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2503), - [aux_sym__val_number_decimal_token1] = ACTIONS(2501), - [aux_sym__val_number_decimal_token2] = ACTIONS(2503), - [aux_sym__val_number_decimal_token3] = ACTIONS(2503), - [aux_sym__val_number_decimal_token4] = ACTIONS(2503), - [aux_sym__val_number_token1] = ACTIONS(2503), - [aux_sym__val_number_token2] = ACTIONS(2503), - [aux_sym__val_number_token3] = ACTIONS(2503), - [aux_sym__val_number_token4] = ACTIONS(2501), - [aux_sym__val_number_token5] = ACTIONS(2501), - [aux_sym__val_number_token6] = ACTIONS(2501), - [anon_sym_DQUOTE] = ACTIONS(2503), - [sym__str_single_quotes] = ACTIONS(2503), - [sym__str_back_ticks] = ACTIONS(2503), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2503), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2503), + [740] = { + [sym_comment] = STATE(740), + [anon_sym_export] = ACTIONS(2437), + [anon_sym_alias] = ACTIONS(2437), + [anon_sym_let] = ACTIONS(2437), + [anon_sym_let_DASHenv] = ACTIONS(2437), + [anon_sym_mut] = ACTIONS(2437), + [anon_sym_const] = ACTIONS(2437), + [aux_sym_cmd_identifier_token1] = ACTIONS(2437), + [aux_sym_cmd_identifier_token2] = ACTIONS(2439), + [aux_sym_cmd_identifier_token3] = ACTIONS(2439), + [aux_sym_cmd_identifier_token4] = ACTIONS(2439), + [aux_sym_cmd_identifier_token5] = ACTIONS(2439), + [aux_sym_cmd_identifier_token6] = ACTIONS(2439), + [aux_sym_cmd_identifier_token7] = ACTIONS(2439), + [aux_sym_cmd_identifier_token8] = ACTIONS(2437), + [aux_sym_cmd_identifier_token9] = ACTIONS(2437), + [aux_sym_cmd_identifier_token10] = ACTIONS(2439), + [aux_sym_cmd_identifier_token11] = ACTIONS(2439), + [aux_sym_cmd_identifier_token12] = ACTIONS(2437), + [aux_sym_cmd_identifier_token13] = ACTIONS(2437), + [aux_sym_cmd_identifier_token14] = ACTIONS(2437), + [aux_sym_cmd_identifier_token15] = ACTIONS(2437), + [aux_sym_cmd_identifier_token16] = ACTIONS(2439), + [aux_sym_cmd_identifier_token17] = ACTIONS(2439), + [aux_sym_cmd_identifier_token18] = ACTIONS(2439), + [aux_sym_cmd_identifier_token19] = ACTIONS(2439), + [aux_sym_cmd_identifier_token20] = ACTIONS(2439), + [aux_sym_cmd_identifier_token21] = ACTIONS(2439), + [aux_sym_cmd_identifier_token22] = ACTIONS(2439), + [aux_sym_cmd_identifier_token23] = ACTIONS(2439), + [aux_sym_cmd_identifier_token24] = ACTIONS(2439), + [aux_sym_cmd_identifier_token25] = ACTIONS(2439), + [aux_sym_cmd_identifier_token26] = ACTIONS(2439), + [aux_sym_cmd_identifier_token27] = ACTIONS(2439), + [aux_sym_cmd_identifier_token28] = ACTIONS(2439), + [aux_sym_cmd_identifier_token29] = ACTIONS(2439), + [aux_sym_cmd_identifier_token30] = ACTIONS(2439), + [aux_sym_cmd_identifier_token31] = ACTIONS(2439), + [aux_sym_cmd_identifier_token32] = ACTIONS(2439), + [aux_sym_cmd_identifier_token33] = ACTIONS(2439), + [aux_sym_cmd_identifier_token34] = ACTIONS(2437), + [aux_sym_cmd_identifier_token35] = ACTIONS(2439), + [aux_sym_cmd_identifier_token36] = ACTIONS(2439), + [aux_sym_cmd_identifier_token37] = ACTIONS(2439), + [aux_sym_cmd_identifier_token38] = ACTIONS(2437), + [aux_sym_cmd_identifier_token39] = ACTIONS(2439), + [aux_sym_cmd_identifier_token40] = ACTIONS(2439), + [anon_sym_def] = ACTIONS(2437), + [anon_sym_export_DASHenv] = ACTIONS(2437), + [anon_sym_extern] = ACTIONS(2437), + [anon_sym_module] = ACTIONS(2437), + [anon_sym_use] = ACTIONS(2437), + [anon_sym_LPAREN] = ACTIONS(2439), + [anon_sym_COMMA] = ACTIONS(2439), + [anon_sym_DOLLAR] = ACTIONS(2439), + [anon_sym_error] = ACTIONS(2437), + [anon_sym_DASH2] = ACTIONS(2437), + [anon_sym_break] = ACTIONS(2437), + [anon_sym_continue] = ACTIONS(2437), + [anon_sym_for] = ACTIONS(2437), + [anon_sym_in2] = ACTIONS(2437), + [anon_sym_loop] = ACTIONS(2437), + [anon_sym_make] = ACTIONS(2437), + [anon_sym_while] = ACTIONS(2437), + [anon_sym_do] = ACTIONS(2437), + [anon_sym_if] = ACTIONS(2437), + [anon_sym_else] = ACTIONS(2437), + [anon_sym_match] = ACTIONS(2437), + [anon_sym_RBRACE] = ACTIONS(2439), + [anon_sym_try] = ACTIONS(2437), + [anon_sym_catch] = ACTIONS(2437), + [anon_sym_return] = ACTIONS(2437), + [anon_sym_source] = ACTIONS(2437), + [anon_sym_source_DASHenv] = ACTIONS(2437), + [anon_sym_register] = ACTIONS(2437), + [anon_sym_hide] = ACTIONS(2437), + [anon_sym_hide_DASHenv] = ACTIONS(2437), + [anon_sym_overlay] = ACTIONS(2437), + [anon_sym_as] = ACTIONS(2437), + [anon_sym_PLUS2] = ACTIONS(2437), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2439), + [aux_sym__val_number_decimal_token1] = ACTIONS(2437), + [aux_sym__val_number_decimal_token2] = ACTIONS(2439), + [aux_sym__val_number_decimal_token3] = ACTIONS(2439), + [aux_sym__val_number_decimal_token4] = ACTIONS(2439), + [aux_sym__val_number_token1] = ACTIONS(2439), + [aux_sym__val_number_token2] = ACTIONS(2439), + [aux_sym__val_number_token3] = ACTIONS(2439), + [aux_sym__val_number_token4] = ACTIONS(2437), + [aux_sym__val_number_token5] = ACTIONS(2437), + [aux_sym__val_number_token6] = ACTIONS(2437), + [anon_sym_DQUOTE] = ACTIONS(2439), + [sym__str_single_quotes] = ACTIONS(2439), + [sym__str_back_ticks] = ACTIONS(2439), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2439), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2439), }, - [763] = { - [sym_comment] = STATE(763), - [anon_sym_export] = ACTIONS(2455), - [anon_sym_alias] = ACTIONS(2455), - [anon_sym_let] = ACTIONS(2455), - [anon_sym_let_DASHenv] = ACTIONS(2455), - [anon_sym_mut] = ACTIONS(2455), - [anon_sym_const] = ACTIONS(2455), - [aux_sym_cmd_identifier_token1] = ACTIONS(2455), - [aux_sym_cmd_identifier_token2] = ACTIONS(2457), - [aux_sym_cmd_identifier_token3] = ACTIONS(2457), - [aux_sym_cmd_identifier_token4] = ACTIONS(2457), - [aux_sym_cmd_identifier_token5] = ACTIONS(2457), - [aux_sym_cmd_identifier_token6] = ACTIONS(2457), - [aux_sym_cmd_identifier_token7] = ACTIONS(2457), - [aux_sym_cmd_identifier_token8] = ACTIONS(2455), - [aux_sym_cmd_identifier_token9] = ACTIONS(2455), - [aux_sym_cmd_identifier_token10] = ACTIONS(2457), - [aux_sym_cmd_identifier_token11] = ACTIONS(2457), - [aux_sym_cmd_identifier_token12] = ACTIONS(2455), - [aux_sym_cmd_identifier_token13] = ACTIONS(2455), - [aux_sym_cmd_identifier_token14] = ACTIONS(2455), - [aux_sym_cmd_identifier_token15] = ACTIONS(2455), - [aux_sym_cmd_identifier_token16] = ACTIONS(2457), - [aux_sym_cmd_identifier_token17] = ACTIONS(2457), - [aux_sym_cmd_identifier_token18] = ACTIONS(2457), - [aux_sym_cmd_identifier_token19] = ACTIONS(2457), - [aux_sym_cmd_identifier_token20] = ACTIONS(2457), - [aux_sym_cmd_identifier_token21] = ACTIONS(2457), - [aux_sym_cmd_identifier_token22] = ACTIONS(2457), - [aux_sym_cmd_identifier_token23] = ACTIONS(2457), - [aux_sym_cmd_identifier_token24] = ACTIONS(2457), - [aux_sym_cmd_identifier_token25] = ACTIONS(2457), - [aux_sym_cmd_identifier_token26] = ACTIONS(2457), - [aux_sym_cmd_identifier_token27] = ACTIONS(2457), - [aux_sym_cmd_identifier_token28] = ACTIONS(2457), - [aux_sym_cmd_identifier_token29] = ACTIONS(2457), - [aux_sym_cmd_identifier_token30] = ACTIONS(2457), - [aux_sym_cmd_identifier_token31] = ACTIONS(2457), - [aux_sym_cmd_identifier_token32] = ACTIONS(2457), - [aux_sym_cmd_identifier_token33] = ACTIONS(2457), - [aux_sym_cmd_identifier_token34] = ACTIONS(2455), - [aux_sym_cmd_identifier_token35] = ACTIONS(2457), - [aux_sym_cmd_identifier_token36] = ACTIONS(2457), - [aux_sym_cmd_identifier_token37] = ACTIONS(2457), - [aux_sym_cmd_identifier_token38] = ACTIONS(2455), - [aux_sym_cmd_identifier_token39] = ACTIONS(2457), - [aux_sym_cmd_identifier_token40] = ACTIONS(2457), - [anon_sym_def] = ACTIONS(2455), - [anon_sym_export_DASHenv] = ACTIONS(2455), - [anon_sym_extern] = ACTIONS(2455), - [anon_sym_module] = ACTIONS(2455), - [anon_sym_use] = ACTIONS(2455), - [anon_sym_LPAREN] = ACTIONS(2457), - [anon_sym_DOLLAR] = ACTIONS(2457), - [anon_sym_error] = ACTIONS(2455), - [anon_sym_DASH2] = ACTIONS(2455), - [anon_sym_break] = ACTIONS(2455), - [anon_sym_continue] = ACTIONS(2455), - [anon_sym_for] = ACTIONS(2455), - [anon_sym_in2] = ACTIONS(2455), - [anon_sym_loop] = ACTIONS(2455), - [anon_sym_make] = ACTIONS(2455), - [anon_sym_while] = ACTIONS(2455), - [anon_sym_do] = ACTIONS(2455), - [anon_sym_if] = ACTIONS(2455), - [anon_sym_else] = ACTIONS(2455), - [anon_sym_match] = ACTIONS(2455), - [anon_sym_RBRACE] = ACTIONS(2457), - [anon_sym_try] = ACTIONS(2455), - [anon_sym_catch] = ACTIONS(2455), - [anon_sym_return] = ACTIONS(2455), - [anon_sym_source] = ACTIONS(2455), - [anon_sym_source_DASHenv] = ACTIONS(2455), - [anon_sym_register] = ACTIONS(2455), - [anon_sym_hide] = ACTIONS(2455), - [anon_sym_hide_DASHenv] = ACTIONS(2455), - [anon_sym_overlay] = ACTIONS(2455), - [anon_sym_as] = ACTIONS(2455), - [anon_sym_PLUS2] = ACTIONS(2455), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2457), - [aux_sym__val_number_decimal_token1] = ACTIONS(2455), - [aux_sym__val_number_decimal_token2] = ACTIONS(2457), - [aux_sym__val_number_decimal_token3] = ACTIONS(2457), - [aux_sym__val_number_decimal_token4] = ACTIONS(2457), - [aux_sym__val_number_token1] = ACTIONS(2457), - [aux_sym__val_number_token2] = ACTIONS(2457), - [aux_sym__val_number_token3] = ACTIONS(2457), - [aux_sym__val_number_token4] = ACTIONS(2455), - [aux_sym__val_number_token5] = ACTIONS(2455), - [aux_sym__val_number_token6] = ACTIONS(2455), - [anon_sym_DQUOTE] = ACTIONS(2457), - [sym__str_single_quotes] = ACTIONS(2457), - [sym__str_back_ticks] = ACTIONS(2457), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2457), + [741] = { + [sym_comment] = STATE(741), + [anon_sym_export] = ACTIONS(2445), + [anon_sym_alias] = ACTIONS(2445), + [anon_sym_let] = ACTIONS(2445), + [anon_sym_let_DASHenv] = ACTIONS(2445), + [anon_sym_mut] = ACTIONS(2445), + [anon_sym_const] = ACTIONS(2445), + [aux_sym_cmd_identifier_token1] = ACTIONS(2445), + [aux_sym_cmd_identifier_token2] = ACTIONS(2447), + [aux_sym_cmd_identifier_token3] = ACTIONS(2447), + [aux_sym_cmd_identifier_token4] = ACTIONS(2447), + [aux_sym_cmd_identifier_token5] = ACTIONS(2447), + [aux_sym_cmd_identifier_token6] = ACTIONS(2447), + [aux_sym_cmd_identifier_token7] = ACTIONS(2447), + [aux_sym_cmd_identifier_token8] = ACTIONS(2445), + [aux_sym_cmd_identifier_token9] = ACTIONS(2445), + [aux_sym_cmd_identifier_token10] = ACTIONS(2447), + [aux_sym_cmd_identifier_token11] = ACTIONS(2447), + [aux_sym_cmd_identifier_token12] = ACTIONS(2445), + [aux_sym_cmd_identifier_token13] = ACTIONS(2445), + [aux_sym_cmd_identifier_token14] = ACTIONS(2445), + [aux_sym_cmd_identifier_token15] = ACTIONS(2445), + [aux_sym_cmd_identifier_token16] = ACTIONS(2447), + [aux_sym_cmd_identifier_token17] = ACTIONS(2447), + [aux_sym_cmd_identifier_token18] = ACTIONS(2447), + [aux_sym_cmd_identifier_token19] = ACTIONS(2447), + [aux_sym_cmd_identifier_token20] = ACTIONS(2447), + [aux_sym_cmd_identifier_token21] = ACTIONS(2447), + [aux_sym_cmd_identifier_token22] = ACTIONS(2447), + [aux_sym_cmd_identifier_token23] = ACTIONS(2447), + [aux_sym_cmd_identifier_token24] = ACTIONS(2447), + [aux_sym_cmd_identifier_token25] = ACTIONS(2447), + [aux_sym_cmd_identifier_token26] = ACTIONS(2447), + [aux_sym_cmd_identifier_token27] = ACTIONS(2447), + [aux_sym_cmd_identifier_token28] = ACTIONS(2447), + [aux_sym_cmd_identifier_token29] = ACTIONS(2447), + [aux_sym_cmd_identifier_token30] = ACTIONS(2447), + [aux_sym_cmd_identifier_token31] = ACTIONS(2447), + [aux_sym_cmd_identifier_token32] = ACTIONS(2447), + [aux_sym_cmd_identifier_token33] = ACTIONS(2447), + [aux_sym_cmd_identifier_token34] = ACTIONS(2445), + [aux_sym_cmd_identifier_token35] = ACTIONS(2447), + [aux_sym_cmd_identifier_token36] = ACTIONS(2447), + [aux_sym_cmd_identifier_token37] = ACTIONS(2447), + [aux_sym_cmd_identifier_token38] = ACTIONS(2445), + [aux_sym_cmd_identifier_token39] = ACTIONS(2447), + [aux_sym_cmd_identifier_token40] = ACTIONS(2447), + [anon_sym_def] = ACTIONS(2445), + [anon_sym_export_DASHenv] = ACTIONS(2445), + [anon_sym_extern] = ACTIONS(2445), + [anon_sym_module] = ACTIONS(2445), + [anon_sym_use] = ACTIONS(2445), + [anon_sym_LPAREN] = ACTIONS(2447), + [anon_sym_COMMA] = ACTIONS(2447), + [anon_sym_DOLLAR] = ACTIONS(2447), + [anon_sym_error] = ACTIONS(2445), + [anon_sym_DASH2] = ACTIONS(2445), + [anon_sym_break] = ACTIONS(2445), + [anon_sym_continue] = ACTIONS(2445), + [anon_sym_for] = ACTIONS(2445), + [anon_sym_in2] = ACTIONS(2445), + [anon_sym_loop] = ACTIONS(2445), + [anon_sym_make] = ACTIONS(2445), + [anon_sym_while] = ACTIONS(2445), + [anon_sym_do] = ACTIONS(2445), + [anon_sym_if] = ACTIONS(2445), + [anon_sym_else] = ACTIONS(2445), + [anon_sym_match] = ACTIONS(2445), + [anon_sym_RBRACE] = ACTIONS(2447), + [anon_sym_try] = ACTIONS(2445), + [anon_sym_catch] = ACTIONS(2445), + [anon_sym_return] = ACTIONS(2445), + [anon_sym_source] = ACTIONS(2445), + [anon_sym_source_DASHenv] = ACTIONS(2445), + [anon_sym_register] = ACTIONS(2445), + [anon_sym_hide] = ACTIONS(2445), + [anon_sym_hide_DASHenv] = ACTIONS(2445), + [anon_sym_overlay] = ACTIONS(2445), + [anon_sym_as] = ACTIONS(2445), + [anon_sym_PLUS2] = ACTIONS(2445), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2447), + [aux_sym__val_number_decimal_token1] = ACTIONS(2445), + [aux_sym__val_number_decimal_token2] = ACTIONS(2447), + [aux_sym__val_number_decimal_token3] = ACTIONS(2447), + [aux_sym__val_number_decimal_token4] = ACTIONS(2447), + [aux_sym__val_number_token1] = ACTIONS(2447), + [aux_sym__val_number_token2] = ACTIONS(2447), + [aux_sym__val_number_token3] = ACTIONS(2447), + [aux_sym__val_number_token4] = ACTIONS(2445), + [aux_sym__val_number_token5] = ACTIONS(2445), + [aux_sym__val_number_token6] = ACTIONS(2445), + [anon_sym_DQUOTE] = ACTIONS(2447), + [sym__str_single_quotes] = ACTIONS(2447), + [sym__str_back_ticks] = ACTIONS(2447), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2447), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2457), + [sym_raw_string_begin] = ACTIONS(2447), }, - [764] = { - [sym_comment] = STATE(764), + [742] = { + [sym_comment] = STATE(742), + [anon_sym_export] = ACTIONS(2457), + [anon_sym_alias] = ACTIONS(2457), + [anon_sym_let] = ACTIONS(2457), + [anon_sym_let_DASHenv] = ACTIONS(2457), + [anon_sym_mut] = ACTIONS(2457), + [anon_sym_const] = ACTIONS(2457), + [aux_sym_cmd_identifier_token1] = ACTIONS(2457), + [aux_sym_cmd_identifier_token2] = ACTIONS(2459), + [aux_sym_cmd_identifier_token3] = ACTIONS(2459), + [aux_sym_cmd_identifier_token4] = ACTIONS(2459), + [aux_sym_cmd_identifier_token5] = ACTIONS(2459), + [aux_sym_cmd_identifier_token6] = ACTIONS(2459), + [aux_sym_cmd_identifier_token7] = ACTIONS(2459), + [aux_sym_cmd_identifier_token8] = ACTIONS(2457), + [aux_sym_cmd_identifier_token9] = ACTIONS(2457), + [aux_sym_cmd_identifier_token10] = ACTIONS(2459), + [aux_sym_cmd_identifier_token11] = ACTIONS(2459), + [aux_sym_cmd_identifier_token12] = ACTIONS(2457), + [aux_sym_cmd_identifier_token13] = ACTIONS(2457), + [aux_sym_cmd_identifier_token14] = ACTIONS(2457), + [aux_sym_cmd_identifier_token15] = ACTIONS(2457), + [aux_sym_cmd_identifier_token16] = ACTIONS(2459), + [aux_sym_cmd_identifier_token17] = ACTIONS(2459), + [aux_sym_cmd_identifier_token18] = ACTIONS(2459), + [aux_sym_cmd_identifier_token19] = ACTIONS(2459), + [aux_sym_cmd_identifier_token20] = ACTIONS(2459), + [aux_sym_cmd_identifier_token21] = ACTIONS(2459), + [aux_sym_cmd_identifier_token22] = ACTIONS(2459), + [aux_sym_cmd_identifier_token23] = ACTIONS(2459), + [aux_sym_cmd_identifier_token24] = ACTIONS(2459), + [aux_sym_cmd_identifier_token25] = ACTIONS(2459), + [aux_sym_cmd_identifier_token26] = ACTIONS(2459), + [aux_sym_cmd_identifier_token27] = ACTIONS(2459), + [aux_sym_cmd_identifier_token28] = ACTIONS(2459), + [aux_sym_cmd_identifier_token29] = ACTIONS(2459), + [aux_sym_cmd_identifier_token30] = ACTIONS(2459), + [aux_sym_cmd_identifier_token31] = ACTIONS(2459), + [aux_sym_cmd_identifier_token32] = ACTIONS(2459), + [aux_sym_cmd_identifier_token33] = ACTIONS(2459), + [aux_sym_cmd_identifier_token34] = ACTIONS(2457), + [aux_sym_cmd_identifier_token35] = ACTIONS(2459), + [aux_sym_cmd_identifier_token36] = ACTIONS(2459), + [aux_sym_cmd_identifier_token37] = ACTIONS(2459), + [aux_sym_cmd_identifier_token38] = ACTIONS(2457), + [aux_sym_cmd_identifier_token39] = ACTIONS(2459), + [aux_sym_cmd_identifier_token40] = ACTIONS(2459), + [anon_sym_def] = ACTIONS(2457), + [anon_sym_export_DASHenv] = ACTIONS(2457), + [anon_sym_extern] = ACTIONS(2457), + [anon_sym_module] = ACTIONS(2457), + [anon_sym_use] = ACTIONS(2457), + [anon_sym_LPAREN] = ACTIONS(2459), + [anon_sym_COMMA] = ACTIONS(2459), + [anon_sym_DOLLAR] = ACTIONS(2459), + [anon_sym_error] = ACTIONS(2457), + [anon_sym_DASH2] = ACTIONS(2457), + [anon_sym_break] = ACTIONS(2457), + [anon_sym_continue] = ACTIONS(2457), + [anon_sym_for] = ACTIONS(2457), + [anon_sym_in2] = ACTIONS(2457), + [anon_sym_loop] = ACTIONS(2457), + [anon_sym_make] = ACTIONS(2457), + [anon_sym_while] = ACTIONS(2457), + [anon_sym_do] = ACTIONS(2457), + [anon_sym_if] = ACTIONS(2457), + [anon_sym_else] = ACTIONS(2457), + [anon_sym_match] = ACTIONS(2457), + [anon_sym_RBRACE] = ACTIONS(2459), + [anon_sym_try] = ACTIONS(2457), + [anon_sym_catch] = ACTIONS(2457), + [anon_sym_return] = ACTIONS(2457), + [anon_sym_source] = ACTIONS(2457), + [anon_sym_source_DASHenv] = ACTIONS(2457), + [anon_sym_register] = ACTIONS(2457), + [anon_sym_hide] = ACTIONS(2457), + [anon_sym_hide_DASHenv] = ACTIONS(2457), + [anon_sym_overlay] = ACTIONS(2457), + [anon_sym_as] = ACTIONS(2457), + [anon_sym_PLUS2] = ACTIONS(2457), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2459), + [aux_sym__val_number_decimal_token1] = ACTIONS(2457), + [aux_sym__val_number_decimal_token2] = ACTIONS(2459), + [aux_sym__val_number_decimal_token3] = ACTIONS(2459), + [aux_sym__val_number_decimal_token4] = ACTIONS(2459), + [aux_sym__val_number_token1] = ACTIONS(2459), + [aux_sym__val_number_token2] = ACTIONS(2459), + [aux_sym__val_number_token3] = ACTIONS(2459), + [aux_sym__val_number_token4] = ACTIONS(2457), + [aux_sym__val_number_token5] = ACTIONS(2457), + [aux_sym__val_number_token6] = ACTIONS(2457), + [anon_sym_DQUOTE] = ACTIONS(2459), + [sym__str_single_quotes] = ACTIONS(2459), + [sym__str_back_ticks] = ACTIONS(2459), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2459), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2459), + }, + [743] = { + [sym_comment] = STATE(743), + [anon_sym_export] = ACTIONS(2465), + [anon_sym_alias] = ACTIONS(2465), + [anon_sym_let] = ACTIONS(2465), + [anon_sym_let_DASHenv] = ACTIONS(2465), + [anon_sym_mut] = ACTIONS(2465), + [anon_sym_const] = ACTIONS(2465), + [aux_sym_cmd_identifier_token1] = ACTIONS(2465), + [aux_sym_cmd_identifier_token2] = ACTIONS(2467), + [aux_sym_cmd_identifier_token3] = ACTIONS(2467), + [aux_sym_cmd_identifier_token4] = ACTIONS(2467), + [aux_sym_cmd_identifier_token5] = ACTIONS(2467), + [aux_sym_cmd_identifier_token6] = ACTIONS(2467), + [aux_sym_cmd_identifier_token7] = ACTIONS(2467), + [aux_sym_cmd_identifier_token8] = ACTIONS(2465), + [aux_sym_cmd_identifier_token9] = ACTIONS(2465), + [aux_sym_cmd_identifier_token10] = ACTIONS(2467), + [aux_sym_cmd_identifier_token11] = ACTIONS(2467), + [aux_sym_cmd_identifier_token12] = ACTIONS(2465), + [aux_sym_cmd_identifier_token13] = ACTIONS(2465), + [aux_sym_cmd_identifier_token14] = ACTIONS(2465), + [aux_sym_cmd_identifier_token15] = ACTIONS(2465), + [aux_sym_cmd_identifier_token16] = ACTIONS(2467), + [aux_sym_cmd_identifier_token17] = ACTIONS(2467), + [aux_sym_cmd_identifier_token18] = ACTIONS(2467), + [aux_sym_cmd_identifier_token19] = ACTIONS(2467), + [aux_sym_cmd_identifier_token20] = ACTIONS(2467), + [aux_sym_cmd_identifier_token21] = ACTIONS(2467), + [aux_sym_cmd_identifier_token22] = ACTIONS(2467), + [aux_sym_cmd_identifier_token23] = ACTIONS(2467), + [aux_sym_cmd_identifier_token24] = ACTIONS(2467), + [aux_sym_cmd_identifier_token25] = ACTIONS(2467), + [aux_sym_cmd_identifier_token26] = ACTIONS(2467), + [aux_sym_cmd_identifier_token27] = ACTIONS(2467), + [aux_sym_cmd_identifier_token28] = ACTIONS(2467), + [aux_sym_cmd_identifier_token29] = ACTIONS(2467), + [aux_sym_cmd_identifier_token30] = ACTIONS(2467), + [aux_sym_cmd_identifier_token31] = ACTIONS(2467), + [aux_sym_cmd_identifier_token32] = ACTIONS(2467), + [aux_sym_cmd_identifier_token33] = ACTIONS(2467), + [aux_sym_cmd_identifier_token34] = ACTIONS(2465), + [aux_sym_cmd_identifier_token35] = ACTIONS(2467), + [aux_sym_cmd_identifier_token36] = ACTIONS(2467), + [aux_sym_cmd_identifier_token37] = ACTIONS(2467), + [aux_sym_cmd_identifier_token38] = ACTIONS(2465), + [aux_sym_cmd_identifier_token39] = ACTIONS(2467), + [aux_sym_cmd_identifier_token40] = ACTIONS(2467), + [anon_sym_def] = ACTIONS(2465), + [anon_sym_export_DASHenv] = ACTIONS(2465), + [anon_sym_extern] = ACTIONS(2465), + [anon_sym_module] = ACTIONS(2465), + [anon_sym_use] = ACTIONS(2465), + [anon_sym_LPAREN] = ACTIONS(2467), + [anon_sym_COMMA] = ACTIONS(2467), + [anon_sym_DOLLAR] = ACTIONS(2467), + [anon_sym_error] = ACTIONS(2465), + [anon_sym_DASH2] = ACTIONS(2465), + [anon_sym_break] = ACTIONS(2465), + [anon_sym_continue] = ACTIONS(2465), + [anon_sym_for] = ACTIONS(2465), + [anon_sym_in2] = ACTIONS(2465), + [anon_sym_loop] = ACTIONS(2465), + [anon_sym_make] = ACTIONS(2465), + [anon_sym_while] = ACTIONS(2465), + [anon_sym_do] = ACTIONS(2465), + [anon_sym_if] = ACTIONS(2465), + [anon_sym_else] = ACTIONS(2465), + [anon_sym_match] = ACTIONS(2465), + [anon_sym_RBRACE] = ACTIONS(2467), + [anon_sym_try] = ACTIONS(2465), + [anon_sym_catch] = ACTIONS(2465), + [anon_sym_return] = ACTIONS(2465), + [anon_sym_source] = ACTIONS(2465), + [anon_sym_source_DASHenv] = ACTIONS(2465), + [anon_sym_register] = ACTIONS(2465), + [anon_sym_hide] = ACTIONS(2465), + [anon_sym_hide_DASHenv] = ACTIONS(2465), + [anon_sym_overlay] = ACTIONS(2465), + [anon_sym_as] = ACTIONS(2465), + [anon_sym_PLUS2] = ACTIONS(2465), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2467), + [aux_sym__val_number_decimal_token1] = ACTIONS(2465), + [aux_sym__val_number_decimal_token2] = ACTIONS(2467), + [aux_sym__val_number_decimal_token3] = ACTIONS(2467), + [aux_sym__val_number_decimal_token4] = ACTIONS(2467), + [aux_sym__val_number_token1] = ACTIONS(2467), + [aux_sym__val_number_token2] = ACTIONS(2467), + [aux_sym__val_number_token3] = ACTIONS(2467), + [aux_sym__val_number_token4] = ACTIONS(2465), + [aux_sym__val_number_token5] = ACTIONS(2465), + [aux_sym__val_number_token6] = ACTIONS(2465), + [anon_sym_DQUOTE] = ACTIONS(2467), + [sym__str_single_quotes] = ACTIONS(2467), + [sym__str_back_ticks] = ACTIONS(2467), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2467), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2467), + }, + [744] = { + [sym_comment] = STATE(744), + [anon_sym_export] = ACTIONS(2300), + [anon_sym_alias] = ACTIONS(2300), + [anon_sym_let] = ACTIONS(2300), + [anon_sym_let_DASHenv] = ACTIONS(2300), + [anon_sym_mut] = ACTIONS(2300), + [anon_sym_const] = ACTIONS(2300), + [aux_sym_cmd_identifier_token1] = ACTIONS(2300), + [aux_sym_cmd_identifier_token2] = ACTIONS(2302), + [aux_sym_cmd_identifier_token3] = ACTIONS(2302), + [aux_sym_cmd_identifier_token4] = ACTIONS(2302), + [aux_sym_cmd_identifier_token5] = ACTIONS(2302), + [aux_sym_cmd_identifier_token6] = ACTIONS(2302), + [aux_sym_cmd_identifier_token7] = ACTIONS(2302), + [aux_sym_cmd_identifier_token8] = ACTIONS(2300), + [aux_sym_cmd_identifier_token9] = ACTIONS(2300), + [aux_sym_cmd_identifier_token10] = ACTIONS(2302), + [aux_sym_cmd_identifier_token11] = ACTIONS(2302), + [aux_sym_cmd_identifier_token12] = ACTIONS(2300), + [aux_sym_cmd_identifier_token13] = ACTIONS(2300), + [aux_sym_cmd_identifier_token14] = ACTIONS(2300), + [aux_sym_cmd_identifier_token15] = ACTIONS(2300), + [aux_sym_cmd_identifier_token16] = ACTIONS(2302), + [aux_sym_cmd_identifier_token17] = ACTIONS(2302), + [aux_sym_cmd_identifier_token18] = ACTIONS(2302), + [aux_sym_cmd_identifier_token19] = ACTIONS(2302), + [aux_sym_cmd_identifier_token20] = ACTIONS(2302), + [aux_sym_cmd_identifier_token21] = ACTIONS(2302), + [aux_sym_cmd_identifier_token22] = ACTIONS(2302), + [aux_sym_cmd_identifier_token23] = ACTIONS(2302), + [aux_sym_cmd_identifier_token24] = ACTIONS(2302), + [aux_sym_cmd_identifier_token25] = ACTIONS(2302), + [aux_sym_cmd_identifier_token26] = ACTIONS(2302), + [aux_sym_cmd_identifier_token27] = ACTIONS(2302), + [aux_sym_cmd_identifier_token28] = ACTIONS(2302), + [aux_sym_cmd_identifier_token29] = ACTIONS(2302), + [aux_sym_cmd_identifier_token30] = ACTIONS(2302), + [aux_sym_cmd_identifier_token31] = ACTIONS(2302), + [aux_sym_cmd_identifier_token32] = ACTIONS(2302), + [aux_sym_cmd_identifier_token33] = ACTIONS(2302), + [aux_sym_cmd_identifier_token34] = ACTIONS(2300), + [aux_sym_cmd_identifier_token35] = ACTIONS(2302), + [aux_sym_cmd_identifier_token36] = ACTIONS(2302), + [aux_sym_cmd_identifier_token37] = ACTIONS(2302), + [aux_sym_cmd_identifier_token38] = ACTIONS(2300), + [aux_sym_cmd_identifier_token39] = ACTIONS(2302), + [aux_sym_cmd_identifier_token40] = ACTIONS(2302), + [anon_sym_def] = ACTIONS(2300), + [anon_sym_export_DASHenv] = ACTIONS(2300), + [anon_sym_extern] = ACTIONS(2300), + [anon_sym_module] = ACTIONS(2300), + [anon_sym_use] = ACTIONS(2300), + [anon_sym_LPAREN] = ACTIONS(2302), + [anon_sym_COMMA] = ACTIONS(2302), + [anon_sym_DOLLAR] = ACTIONS(2302), + [anon_sym_error] = ACTIONS(2300), + [anon_sym_DASH2] = ACTIONS(2300), + [anon_sym_break] = ACTIONS(2300), + [anon_sym_continue] = ACTIONS(2300), + [anon_sym_for] = ACTIONS(2300), + [anon_sym_in2] = ACTIONS(2300), + [anon_sym_loop] = ACTIONS(2300), + [anon_sym_make] = ACTIONS(2300), + [anon_sym_while] = ACTIONS(2300), + [anon_sym_do] = ACTIONS(2300), + [anon_sym_if] = ACTIONS(2300), + [anon_sym_else] = ACTIONS(2300), + [anon_sym_match] = ACTIONS(2300), + [anon_sym_RBRACE] = ACTIONS(2302), + [anon_sym_try] = ACTIONS(2300), + [anon_sym_catch] = ACTIONS(2300), + [anon_sym_return] = ACTIONS(2300), + [anon_sym_source] = ACTIONS(2300), + [anon_sym_source_DASHenv] = ACTIONS(2300), + [anon_sym_register] = ACTIONS(2300), + [anon_sym_hide] = ACTIONS(2300), + [anon_sym_hide_DASHenv] = ACTIONS(2300), + [anon_sym_overlay] = ACTIONS(2300), + [anon_sym_as] = ACTIONS(2300), + [anon_sym_PLUS2] = ACTIONS(2300), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2302), + [aux_sym__val_number_decimal_token1] = ACTIONS(2300), + [aux_sym__val_number_decimal_token2] = ACTIONS(2302), + [aux_sym__val_number_decimal_token3] = ACTIONS(2302), + [aux_sym__val_number_decimal_token4] = ACTIONS(2302), + [aux_sym__val_number_token1] = ACTIONS(2302), + [aux_sym__val_number_token2] = ACTIONS(2302), + [aux_sym__val_number_token3] = ACTIONS(2302), + [aux_sym__val_number_token4] = ACTIONS(2300), + [aux_sym__val_number_token5] = ACTIONS(2300), + [aux_sym__val_number_token6] = ACTIONS(2300), + [anon_sym_DQUOTE] = ACTIONS(2302), + [sym__str_single_quotes] = ACTIONS(2302), + [sym__str_back_ticks] = ACTIONS(2302), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2302), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2302), + }, + [745] = { + [sym_comment] = STATE(745), + [anon_sym_export] = ACTIONS(2304), + [anon_sym_alias] = ACTIONS(2304), + [anon_sym_let] = ACTIONS(2304), + [anon_sym_let_DASHenv] = ACTIONS(2304), + [anon_sym_mut] = ACTIONS(2304), + [anon_sym_const] = ACTIONS(2304), + [aux_sym_cmd_identifier_token1] = ACTIONS(2304), + [aux_sym_cmd_identifier_token2] = ACTIONS(2306), + [aux_sym_cmd_identifier_token3] = ACTIONS(2306), + [aux_sym_cmd_identifier_token4] = ACTIONS(2306), + [aux_sym_cmd_identifier_token5] = ACTIONS(2306), + [aux_sym_cmd_identifier_token6] = ACTIONS(2306), + [aux_sym_cmd_identifier_token7] = ACTIONS(2306), + [aux_sym_cmd_identifier_token8] = ACTIONS(2304), + [aux_sym_cmd_identifier_token9] = ACTIONS(2304), + [aux_sym_cmd_identifier_token10] = ACTIONS(2306), + [aux_sym_cmd_identifier_token11] = ACTIONS(2306), + [aux_sym_cmd_identifier_token12] = ACTIONS(2304), + [aux_sym_cmd_identifier_token13] = ACTIONS(2304), + [aux_sym_cmd_identifier_token14] = ACTIONS(2304), + [aux_sym_cmd_identifier_token15] = ACTIONS(2304), + [aux_sym_cmd_identifier_token16] = ACTIONS(2306), + [aux_sym_cmd_identifier_token17] = ACTIONS(2306), + [aux_sym_cmd_identifier_token18] = ACTIONS(2306), + [aux_sym_cmd_identifier_token19] = ACTIONS(2306), + [aux_sym_cmd_identifier_token20] = ACTIONS(2306), + [aux_sym_cmd_identifier_token21] = ACTIONS(2306), + [aux_sym_cmd_identifier_token22] = ACTIONS(2306), + [aux_sym_cmd_identifier_token23] = ACTIONS(2306), + [aux_sym_cmd_identifier_token24] = ACTIONS(2306), + [aux_sym_cmd_identifier_token25] = ACTIONS(2306), + [aux_sym_cmd_identifier_token26] = ACTIONS(2306), + [aux_sym_cmd_identifier_token27] = ACTIONS(2306), + [aux_sym_cmd_identifier_token28] = ACTIONS(2306), + [aux_sym_cmd_identifier_token29] = ACTIONS(2306), + [aux_sym_cmd_identifier_token30] = ACTIONS(2306), + [aux_sym_cmd_identifier_token31] = ACTIONS(2306), + [aux_sym_cmd_identifier_token32] = ACTIONS(2306), + [aux_sym_cmd_identifier_token33] = ACTIONS(2306), + [aux_sym_cmd_identifier_token34] = ACTIONS(2304), + [aux_sym_cmd_identifier_token35] = ACTIONS(2306), + [aux_sym_cmd_identifier_token36] = ACTIONS(2306), + [aux_sym_cmd_identifier_token37] = ACTIONS(2306), + [aux_sym_cmd_identifier_token38] = ACTIONS(2304), + [aux_sym_cmd_identifier_token39] = ACTIONS(2306), + [aux_sym_cmd_identifier_token40] = ACTIONS(2306), + [anon_sym_def] = ACTIONS(2304), + [anon_sym_export_DASHenv] = ACTIONS(2304), + [anon_sym_extern] = ACTIONS(2304), + [anon_sym_module] = ACTIONS(2304), + [anon_sym_use] = ACTIONS(2304), + [anon_sym_LPAREN] = ACTIONS(2306), + [anon_sym_COMMA] = ACTIONS(2306), + [anon_sym_DOLLAR] = ACTIONS(2306), + [anon_sym_error] = ACTIONS(2304), + [anon_sym_DASH2] = ACTIONS(2304), + [anon_sym_break] = ACTIONS(2304), + [anon_sym_continue] = ACTIONS(2304), + [anon_sym_for] = ACTIONS(2304), + [anon_sym_in2] = ACTIONS(2304), + [anon_sym_loop] = ACTIONS(2304), + [anon_sym_make] = ACTIONS(2304), + [anon_sym_while] = ACTIONS(2304), + [anon_sym_do] = ACTIONS(2304), + [anon_sym_if] = ACTIONS(2304), + [anon_sym_else] = ACTIONS(2304), + [anon_sym_match] = ACTIONS(2304), + [anon_sym_RBRACE] = ACTIONS(2306), + [anon_sym_try] = ACTIONS(2304), + [anon_sym_catch] = ACTIONS(2304), + [anon_sym_return] = ACTIONS(2304), + [anon_sym_source] = ACTIONS(2304), + [anon_sym_source_DASHenv] = ACTIONS(2304), + [anon_sym_register] = ACTIONS(2304), + [anon_sym_hide] = ACTIONS(2304), + [anon_sym_hide_DASHenv] = ACTIONS(2304), + [anon_sym_overlay] = ACTIONS(2304), + [anon_sym_as] = ACTIONS(2304), + [anon_sym_PLUS2] = ACTIONS(2304), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2306), + [aux_sym__val_number_decimal_token1] = ACTIONS(2304), + [aux_sym__val_number_decimal_token2] = ACTIONS(2306), + [aux_sym__val_number_decimal_token3] = ACTIONS(2306), + [aux_sym__val_number_decimal_token4] = ACTIONS(2306), + [aux_sym__val_number_token1] = ACTIONS(2306), + [aux_sym__val_number_token2] = ACTIONS(2306), + [aux_sym__val_number_token3] = ACTIONS(2306), + [aux_sym__val_number_token4] = ACTIONS(2304), + [aux_sym__val_number_token5] = ACTIONS(2304), + [aux_sym__val_number_token6] = ACTIONS(2304), + [anon_sym_DQUOTE] = ACTIONS(2306), + [sym__str_single_quotes] = ACTIONS(2306), + [sym__str_back_ticks] = ACTIONS(2306), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2306), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2306), + }, + [746] = { + [sym_comment] = STATE(746), + [anon_sym_export] = ACTIONS(2308), + [anon_sym_alias] = ACTIONS(2308), + [anon_sym_let] = ACTIONS(2308), + [anon_sym_let_DASHenv] = ACTIONS(2308), + [anon_sym_mut] = ACTIONS(2308), + [anon_sym_const] = ACTIONS(2308), + [aux_sym_cmd_identifier_token1] = ACTIONS(2308), + [aux_sym_cmd_identifier_token2] = ACTIONS(2310), + [aux_sym_cmd_identifier_token3] = ACTIONS(2310), + [aux_sym_cmd_identifier_token4] = ACTIONS(2310), + [aux_sym_cmd_identifier_token5] = ACTIONS(2310), + [aux_sym_cmd_identifier_token6] = ACTIONS(2310), + [aux_sym_cmd_identifier_token7] = ACTIONS(2310), + [aux_sym_cmd_identifier_token8] = ACTIONS(2308), + [aux_sym_cmd_identifier_token9] = ACTIONS(2308), + [aux_sym_cmd_identifier_token10] = ACTIONS(2310), + [aux_sym_cmd_identifier_token11] = ACTIONS(2310), + [aux_sym_cmd_identifier_token12] = ACTIONS(2308), + [aux_sym_cmd_identifier_token13] = ACTIONS(2308), + [aux_sym_cmd_identifier_token14] = ACTIONS(2308), + [aux_sym_cmd_identifier_token15] = ACTIONS(2308), + [aux_sym_cmd_identifier_token16] = ACTIONS(2310), + [aux_sym_cmd_identifier_token17] = ACTIONS(2310), + [aux_sym_cmd_identifier_token18] = ACTIONS(2310), + [aux_sym_cmd_identifier_token19] = ACTIONS(2310), + [aux_sym_cmd_identifier_token20] = ACTIONS(2310), + [aux_sym_cmd_identifier_token21] = ACTIONS(2310), + [aux_sym_cmd_identifier_token22] = ACTIONS(2310), + [aux_sym_cmd_identifier_token23] = ACTIONS(2310), + [aux_sym_cmd_identifier_token24] = ACTIONS(2310), + [aux_sym_cmd_identifier_token25] = ACTIONS(2310), + [aux_sym_cmd_identifier_token26] = ACTIONS(2310), + [aux_sym_cmd_identifier_token27] = ACTIONS(2310), + [aux_sym_cmd_identifier_token28] = ACTIONS(2310), + [aux_sym_cmd_identifier_token29] = ACTIONS(2310), + [aux_sym_cmd_identifier_token30] = ACTIONS(2310), + [aux_sym_cmd_identifier_token31] = ACTIONS(2310), + [aux_sym_cmd_identifier_token32] = ACTIONS(2310), + [aux_sym_cmd_identifier_token33] = ACTIONS(2310), + [aux_sym_cmd_identifier_token34] = ACTIONS(2308), + [aux_sym_cmd_identifier_token35] = ACTIONS(2310), + [aux_sym_cmd_identifier_token36] = ACTIONS(2310), + [aux_sym_cmd_identifier_token37] = ACTIONS(2310), + [aux_sym_cmd_identifier_token38] = ACTIONS(2308), + [aux_sym_cmd_identifier_token39] = ACTIONS(2310), + [aux_sym_cmd_identifier_token40] = ACTIONS(2310), + [anon_sym_def] = ACTIONS(2308), + [anon_sym_export_DASHenv] = ACTIONS(2308), + [anon_sym_extern] = ACTIONS(2308), + [anon_sym_module] = ACTIONS(2308), + [anon_sym_use] = ACTIONS(2308), + [anon_sym_LPAREN] = ACTIONS(2310), + [anon_sym_COMMA] = ACTIONS(2310), + [anon_sym_DOLLAR] = ACTIONS(2310), + [anon_sym_error] = ACTIONS(2308), + [anon_sym_DASH2] = ACTIONS(2308), + [anon_sym_break] = ACTIONS(2308), + [anon_sym_continue] = ACTIONS(2308), + [anon_sym_for] = ACTIONS(2308), + [anon_sym_in2] = ACTIONS(2308), + [anon_sym_loop] = ACTIONS(2308), + [anon_sym_make] = ACTIONS(2308), + [anon_sym_while] = ACTIONS(2308), + [anon_sym_do] = ACTIONS(2308), + [anon_sym_if] = ACTIONS(2308), + [anon_sym_else] = ACTIONS(2308), + [anon_sym_match] = ACTIONS(2308), + [anon_sym_RBRACE] = ACTIONS(2310), + [anon_sym_try] = ACTIONS(2308), + [anon_sym_catch] = ACTIONS(2308), + [anon_sym_return] = ACTIONS(2308), + [anon_sym_source] = ACTIONS(2308), + [anon_sym_source_DASHenv] = ACTIONS(2308), + [anon_sym_register] = ACTIONS(2308), + [anon_sym_hide] = ACTIONS(2308), + [anon_sym_hide_DASHenv] = ACTIONS(2308), + [anon_sym_overlay] = ACTIONS(2308), + [anon_sym_as] = ACTIONS(2308), + [anon_sym_PLUS2] = ACTIONS(2308), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2310), + [aux_sym__val_number_decimal_token1] = ACTIONS(2308), + [aux_sym__val_number_decimal_token2] = ACTIONS(2310), + [aux_sym__val_number_decimal_token3] = ACTIONS(2310), + [aux_sym__val_number_decimal_token4] = ACTIONS(2310), + [aux_sym__val_number_token1] = ACTIONS(2310), + [aux_sym__val_number_token2] = ACTIONS(2310), + [aux_sym__val_number_token3] = ACTIONS(2310), + [aux_sym__val_number_token4] = ACTIONS(2308), + [aux_sym__val_number_token5] = ACTIONS(2308), + [aux_sym__val_number_token6] = ACTIONS(2308), + [anon_sym_DQUOTE] = ACTIONS(2310), + [sym__str_single_quotes] = ACTIONS(2310), + [sym__str_back_ticks] = ACTIONS(2310), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2310), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2310), + }, + [747] = { + [sym_comment] = STATE(747), + [anon_sym_export] = ACTIONS(2342), + [anon_sym_alias] = ACTIONS(2342), + [anon_sym_let] = ACTIONS(2342), + [anon_sym_let_DASHenv] = ACTIONS(2342), + [anon_sym_mut] = ACTIONS(2342), + [anon_sym_const] = ACTIONS(2342), + [aux_sym_cmd_identifier_token1] = ACTIONS(2342), + [aux_sym_cmd_identifier_token2] = ACTIONS(2344), + [aux_sym_cmd_identifier_token3] = ACTIONS(2344), + [aux_sym_cmd_identifier_token4] = ACTIONS(2344), + [aux_sym_cmd_identifier_token5] = ACTIONS(2344), + [aux_sym_cmd_identifier_token6] = ACTIONS(2344), + [aux_sym_cmd_identifier_token7] = ACTIONS(2344), + [aux_sym_cmd_identifier_token8] = ACTIONS(2342), + [aux_sym_cmd_identifier_token9] = ACTIONS(2342), + [aux_sym_cmd_identifier_token10] = ACTIONS(2344), + [aux_sym_cmd_identifier_token11] = ACTIONS(2344), + [aux_sym_cmd_identifier_token12] = ACTIONS(2342), + [aux_sym_cmd_identifier_token13] = ACTIONS(2342), + [aux_sym_cmd_identifier_token14] = ACTIONS(2342), + [aux_sym_cmd_identifier_token15] = ACTIONS(2342), + [aux_sym_cmd_identifier_token16] = ACTIONS(2344), + [aux_sym_cmd_identifier_token17] = ACTIONS(2344), + [aux_sym_cmd_identifier_token18] = ACTIONS(2344), + [aux_sym_cmd_identifier_token19] = ACTIONS(2344), + [aux_sym_cmd_identifier_token20] = ACTIONS(2344), + [aux_sym_cmd_identifier_token21] = ACTIONS(2344), + [aux_sym_cmd_identifier_token22] = ACTIONS(2344), + [aux_sym_cmd_identifier_token23] = ACTIONS(2344), + [aux_sym_cmd_identifier_token24] = ACTIONS(2344), + [aux_sym_cmd_identifier_token25] = ACTIONS(2344), + [aux_sym_cmd_identifier_token26] = ACTIONS(2344), + [aux_sym_cmd_identifier_token27] = ACTIONS(2344), + [aux_sym_cmd_identifier_token28] = ACTIONS(2344), + [aux_sym_cmd_identifier_token29] = ACTIONS(2344), + [aux_sym_cmd_identifier_token30] = ACTIONS(2344), + [aux_sym_cmd_identifier_token31] = ACTIONS(2344), + [aux_sym_cmd_identifier_token32] = ACTIONS(2344), + [aux_sym_cmd_identifier_token33] = ACTIONS(2344), + [aux_sym_cmd_identifier_token34] = ACTIONS(2342), + [aux_sym_cmd_identifier_token35] = ACTIONS(2344), + [aux_sym_cmd_identifier_token36] = ACTIONS(2344), + [aux_sym_cmd_identifier_token37] = ACTIONS(2344), + [aux_sym_cmd_identifier_token38] = ACTIONS(2342), + [aux_sym_cmd_identifier_token39] = ACTIONS(2344), + [aux_sym_cmd_identifier_token40] = ACTIONS(2344), + [anon_sym_def] = ACTIONS(2342), + [anon_sym_export_DASHenv] = ACTIONS(2342), + [anon_sym_extern] = ACTIONS(2342), + [anon_sym_module] = ACTIONS(2342), + [anon_sym_use] = ACTIONS(2342), + [anon_sym_LPAREN] = ACTIONS(2344), + [anon_sym_COMMA] = ACTIONS(2344), + [anon_sym_DOLLAR] = ACTIONS(2344), + [anon_sym_error] = ACTIONS(2342), + [anon_sym_DASH2] = ACTIONS(2342), + [anon_sym_break] = ACTIONS(2342), + [anon_sym_continue] = ACTIONS(2342), + [anon_sym_for] = ACTIONS(2342), + [anon_sym_in2] = ACTIONS(2342), + [anon_sym_loop] = ACTIONS(2342), + [anon_sym_make] = ACTIONS(2342), + [anon_sym_while] = ACTIONS(2342), + [anon_sym_do] = ACTIONS(2342), + [anon_sym_if] = ACTIONS(2342), + [anon_sym_else] = ACTIONS(2342), + [anon_sym_match] = ACTIONS(2342), + [anon_sym_RBRACE] = ACTIONS(2344), + [anon_sym_try] = ACTIONS(2342), + [anon_sym_catch] = ACTIONS(2342), + [anon_sym_return] = ACTIONS(2342), + [anon_sym_source] = ACTIONS(2342), + [anon_sym_source_DASHenv] = ACTIONS(2342), + [anon_sym_register] = ACTIONS(2342), + [anon_sym_hide] = ACTIONS(2342), + [anon_sym_hide_DASHenv] = ACTIONS(2342), + [anon_sym_overlay] = ACTIONS(2342), + [anon_sym_as] = ACTIONS(2342), + [anon_sym_PLUS2] = ACTIONS(2342), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2344), + [aux_sym__val_number_decimal_token1] = ACTIONS(2342), + [aux_sym__val_number_decimal_token2] = ACTIONS(2344), + [aux_sym__val_number_decimal_token3] = ACTIONS(2344), + [aux_sym__val_number_decimal_token4] = ACTIONS(2344), + [aux_sym__val_number_token1] = ACTIONS(2344), + [aux_sym__val_number_token2] = ACTIONS(2344), + [aux_sym__val_number_token3] = ACTIONS(2344), + [aux_sym__val_number_token4] = ACTIONS(2342), + [aux_sym__val_number_token5] = ACTIONS(2342), + [aux_sym__val_number_token6] = ACTIONS(2342), + [anon_sym_DQUOTE] = ACTIONS(2344), + [sym__str_single_quotes] = ACTIONS(2344), + [sym__str_back_ticks] = ACTIONS(2344), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2344), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2344), + }, + [748] = { + [sym_comment] = STATE(748), + [anon_sym_export] = ACTIONS(2496), + [anon_sym_alias] = ACTIONS(2496), + [anon_sym_let] = ACTIONS(2496), + [anon_sym_let_DASHenv] = ACTIONS(2496), + [anon_sym_mut] = ACTIONS(2496), + [anon_sym_const] = ACTIONS(2496), + [aux_sym_cmd_identifier_token1] = ACTIONS(2496), + [aux_sym_cmd_identifier_token2] = ACTIONS(2498), + [aux_sym_cmd_identifier_token3] = ACTIONS(2498), + [aux_sym_cmd_identifier_token4] = ACTIONS(2498), + [aux_sym_cmd_identifier_token5] = ACTIONS(2498), + [aux_sym_cmd_identifier_token6] = ACTIONS(2498), + [aux_sym_cmd_identifier_token7] = ACTIONS(2498), + [aux_sym_cmd_identifier_token8] = ACTIONS(2496), + [aux_sym_cmd_identifier_token9] = ACTIONS(2496), + [aux_sym_cmd_identifier_token10] = ACTIONS(2498), + [aux_sym_cmd_identifier_token11] = ACTIONS(2498), + [aux_sym_cmd_identifier_token12] = ACTIONS(2496), + [aux_sym_cmd_identifier_token13] = ACTIONS(2496), + [aux_sym_cmd_identifier_token14] = ACTIONS(2496), + [aux_sym_cmd_identifier_token15] = ACTIONS(2496), + [aux_sym_cmd_identifier_token16] = ACTIONS(2498), + [aux_sym_cmd_identifier_token17] = ACTIONS(2498), + [aux_sym_cmd_identifier_token18] = ACTIONS(2498), + [aux_sym_cmd_identifier_token19] = ACTIONS(2498), + [aux_sym_cmd_identifier_token20] = ACTIONS(2498), + [aux_sym_cmd_identifier_token21] = ACTIONS(2498), + [aux_sym_cmd_identifier_token22] = ACTIONS(2498), + [aux_sym_cmd_identifier_token23] = ACTIONS(2498), + [aux_sym_cmd_identifier_token24] = ACTIONS(2498), + [aux_sym_cmd_identifier_token25] = ACTIONS(2498), + [aux_sym_cmd_identifier_token26] = ACTIONS(2498), + [aux_sym_cmd_identifier_token27] = ACTIONS(2498), + [aux_sym_cmd_identifier_token28] = ACTIONS(2498), + [aux_sym_cmd_identifier_token29] = ACTIONS(2498), + [aux_sym_cmd_identifier_token30] = ACTIONS(2498), + [aux_sym_cmd_identifier_token31] = ACTIONS(2498), + [aux_sym_cmd_identifier_token32] = ACTIONS(2498), + [aux_sym_cmd_identifier_token33] = ACTIONS(2498), + [aux_sym_cmd_identifier_token34] = ACTIONS(2496), + [aux_sym_cmd_identifier_token35] = ACTIONS(2498), + [aux_sym_cmd_identifier_token36] = ACTIONS(2498), + [aux_sym_cmd_identifier_token37] = ACTIONS(2498), + [aux_sym_cmd_identifier_token38] = ACTIONS(2496), + [aux_sym_cmd_identifier_token39] = ACTIONS(2498), + [aux_sym_cmd_identifier_token40] = ACTIONS(2498), + [anon_sym_def] = ACTIONS(2496), + [anon_sym_export_DASHenv] = ACTIONS(2496), + [anon_sym_extern] = ACTIONS(2496), + [anon_sym_module] = ACTIONS(2496), + [anon_sym_use] = ACTIONS(2496), + [anon_sym_LPAREN] = ACTIONS(2498), + [anon_sym_DOLLAR] = ACTIONS(2498), + [anon_sym_error] = ACTIONS(2496), + [anon_sym_DASH2] = ACTIONS(2496), + [anon_sym_break] = ACTIONS(2496), + [anon_sym_continue] = ACTIONS(2496), + [anon_sym_for] = ACTIONS(2496), + [anon_sym_in2] = ACTIONS(2496), + [anon_sym_loop] = ACTIONS(2496), + [anon_sym_make] = ACTIONS(2496), + [anon_sym_while] = ACTIONS(2496), + [anon_sym_do] = ACTIONS(2496), + [anon_sym_if] = ACTIONS(2496), + [anon_sym_else] = ACTIONS(2496), + [anon_sym_match] = ACTIONS(2496), + [anon_sym_RBRACE] = ACTIONS(2498), + [anon_sym_try] = ACTIONS(2496), + [anon_sym_catch] = ACTIONS(2496), + [anon_sym_return] = ACTIONS(2496), + [anon_sym_source] = ACTIONS(2496), + [anon_sym_source_DASHenv] = ACTIONS(2496), + [anon_sym_register] = ACTIONS(2496), + [anon_sym_hide] = ACTIONS(2496), + [anon_sym_hide_DASHenv] = ACTIONS(2496), + [anon_sym_overlay] = ACTIONS(2496), + [anon_sym_as] = ACTIONS(2496), + [anon_sym_PLUS2] = ACTIONS(2496), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2498), + [aux_sym__val_number_decimal_token1] = ACTIONS(2496), + [aux_sym__val_number_decimal_token2] = ACTIONS(2498), + [aux_sym__val_number_decimal_token3] = ACTIONS(2498), + [aux_sym__val_number_decimal_token4] = ACTIONS(2498), + [aux_sym__val_number_token1] = ACTIONS(2498), + [aux_sym__val_number_token2] = ACTIONS(2498), + [aux_sym__val_number_token3] = ACTIONS(2498), + [aux_sym__val_number_token4] = ACTIONS(2496), + [aux_sym__val_number_token5] = ACTIONS(2496), + [aux_sym__val_number_token6] = ACTIONS(2496), + [anon_sym_DQUOTE] = ACTIONS(2498), + [sym__str_single_quotes] = ACTIONS(2498), + [sym__str_back_ticks] = ACTIONS(2498), + [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2498), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2498), + }, + [749] = { + [aux_sym__pipe_separator] = STATE(752), + [sym_comment] = STATE(749), + [aux_sym_shebang_repeat1] = STATE(5010), + [aux_sym_cmd_identifier_token1] = ACTIONS(2500), + [aux_sym_cmd_identifier_token2] = ACTIONS(2502), + [aux_sym_cmd_identifier_token3] = ACTIONS(2502), + [aux_sym_cmd_identifier_token4] = ACTIONS(2502), + [aux_sym_cmd_identifier_token5] = ACTIONS(2502), + [aux_sym_cmd_identifier_token6] = ACTIONS(2502), + [aux_sym_cmd_identifier_token7] = ACTIONS(2502), + [aux_sym_cmd_identifier_token8] = ACTIONS(2502), + [aux_sym_cmd_identifier_token9] = ACTIONS(2500), + [aux_sym_cmd_identifier_token10] = ACTIONS(2502), + [aux_sym_cmd_identifier_token11] = ACTIONS(2502), + [aux_sym_cmd_identifier_token12] = ACTIONS(2502), + [aux_sym_cmd_identifier_token13] = ACTIONS(2500), + [aux_sym_cmd_identifier_token14] = ACTIONS(2502), + [aux_sym_cmd_identifier_token15] = ACTIONS(2500), + [aux_sym_cmd_identifier_token16] = ACTIONS(2502), + [aux_sym_cmd_identifier_token17] = ACTIONS(2502), + [aux_sym_cmd_identifier_token18] = ACTIONS(2500), + [aux_sym_cmd_identifier_token19] = ACTIONS(2502), + [aux_sym_cmd_identifier_token20] = ACTIONS(2502), + [aux_sym_cmd_identifier_token21] = ACTIONS(2502), + [aux_sym_cmd_identifier_token22] = ACTIONS(2502), + [aux_sym_cmd_identifier_token23] = ACTIONS(2502), + [aux_sym_cmd_identifier_token24] = ACTIONS(2502), + [aux_sym_cmd_identifier_token25] = ACTIONS(2502), + [aux_sym_cmd_identifier_token26] = ACTIONS(2502), + [aux_sym_cmd_identifier_token27] = ACTIONS(2502), + [aux_sym_cmd_identifier_token28] = ACTIONS(2502), + [aux_sym_cmd_identifier_token29] = ACTIONS(2502), + [aux_sym_cmd_identifier_token30] = ACTIONS(2502), + [aux_sym_cmd_identifier_token31] = ACTIONS(2502), + [aux_sym_cmd_identifier_token32] = ACTIONS(2500), + [aux_sym_cmd_identifier_token33] = ACTIONS(2502), + [aux_sym_cmd_identifier_token34] = ACTIONS(2500), + [aux_sym_cmd_identifier_token35] = ACTIONS(2502), + [aux_sym_cmd_identifier_token36] = ACTIONS(2502), + [aux_sym_cmd_identifier_token37] = ACTIONS(2502), + [aux_sym_cmd_identifier_token38] = ACTIONS(2500), + [aux_sym_cmd_identifier_token39] = ACTIONS(2502), + [aux_sym_cmd_identifier_token40] = ACTIONS(2502), + [sym__newline] = ACTIONS(2504), + [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_LBRACK] = ACTIONS(2502), + [anon_sym_LPAREN] = ACTIONS(2502), + [anon_sym_DOLLAR] = ACTIONS(2500), + [anon_sym_DASH2] = ACTIONS(2500), + [anon_sym_break] = ACTIONS(2500), + [anon_sym_continue] = ACTIONS(2500), + [anon_sym_do] = ACTIONS(2500), + [anon_sym_if] = ACTIONS(2500), + [anon_sym_match] = ACTIONS(2500), + [anon_sym_LBRACE] = ACTIONS(2502), + [anon_sym_DOT_DOT] = ACTIONS(2500), + [anon_sym_try] = ACTIONS(2500), + [anon_sym_return] = ACTIONS(2500), + [anon_sym_where] = ACTIONS(2502), + [aux_sym_expr_unary_token1] = ACTIONS(2502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2502), + [anon_sym_DOT_DOT_LT] = ACTIONS(2502), + [anon_sym_null] = ACTIONS(2500), + [anon_sym_true] = ACTIONS(2500), + [anon_sym_false] = ACTIONS(2500), + [aux_sym__val_number_decimal_token1] = ACTIONS(2500), + [aux_sym__val_number_decimal_token2] = ACTIONS(2502), + [aux_sym__val_number_decimal_token3] = ACTIONS(2502), + [aux_sym__val_number_decimal_token4] = ACTIONS(2502), + [aux_sym__val_number_token1] = ACTIONS(2502), + [aux_sym__val_number_token2] = ACTIONS(2502), + [aux_sym__val_number_token3] = ACTIONS(2502), + [aux_sym__val_number_token4] = ACTIONS(2500), + [aux_sym__val_number_token5] = ACTIONS(2500), + [aux_sym__val_number_token6] = ACTIONS(2500), + [anon_sym_0b] = ACTIONS(2500), + [anon_sym_0o] = ACTIONS(2500), + [anon_sym_0x] = ACTIONS(2500), + [sym_val_date] = ACTIONS(2502), + [anon_sym_DQUOTE] = ACTIONS(2502), + [sym__str_single_quotes] = ACTIONS(2502), + [sym__str_back_ticks] = ACTIONS(2502), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2502), + [aux_sym_env_var_token1] = ACTIONS(2500), + [anon_sym_CARET] = ACTIONS(2502), + [aux_sym_command_token1] = ACTIONS(2502), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2502), + }, + [750] = { + [sym_comment] = STATE(750), [anon_sym_export] = ACTIONS(1270), [anon_sym_alias] = ACTIONS(1270), [anon_sym_let] = ACTIONS(1270), @@ -161154,402 +160160,207 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1268), }, - [765] = { - [sym_comment] = STATE(765), - [anon_sym_export] = ACTIONS(2120), - [anon_sym_alias] = ACTIONS(2120), - [anon_sym_let] = ACTIONS(2120), - [anon_sym_let_DASHenv] = ACTIONS(2120), - [anon_sym_mut] = ACTIONS(2120), - [anon_sym_const] = ACTIONS(2120), - [aux_sym_cmd_identifier_token1] = ACTIONS(2120), - [aux_sym_cmd_identifier_token2] = ACTIONS(2122), - [aux_sym_cmd_identifier_token3] = ACTIONS(2122), - [aux_sym_cmd_identifier_token4] = ACTIONS(2122), - [aux_sym_cmd_identifier_token5] = ACTIONS(2122), - [aux_sym_cmd_identifier_token6] = ACTIONS(2122), - [aux_sym_cmd_identifier_token7] = ACTIONS(2122), - [aux_sym_cmd_identifier_token8] = ACTIONS(2120), - [aux_sym_cmd_identifier_token9] = ACTIONS(2120), - [aux_sym_cmd_identifier_token10] = ACTIONS(2122), - [aux_sym_cmd_identifier_token11] = ACTIONS(2122), - [aux_sym_cmd_identifier_token12] = ACTIONS(2120), - [aux_sym_cmd_identifier_token13] = ACTIONS(2120), - [aux_sym_cmd_identifier_token14] = ACTIONS(2120), - [aux_sym_cmd_identifier_token15] = ACTIONS(2120), - [aux_sym_cmd_identifier_token16] = ACTIONS(2122), - [aux_sym_cmd_identifier_token17] = ACTIONS(2122), - [aux_sym_cmd_identifier_token18] = ACTIONS(2122), - [aux_sym_cmd_identifier_token19] = ACTIONS(2122), - [aux_sym_cmd_identifier_token20] = ACTIONS(2122), - [aux_sym_cmd_identifier_token21] = ACTIONS(2122), - [aux_sym_cmd_identifier_token22] = ACTIONS(2122), - [aux_sym_cmd_identifier_token23] = ACTIONS(2122), - [aux_sym_cmd_identifier_token24] = ACTIONS(2122), - [aux_sym_cmd_identifier_token25] = ACTIONS(2122), - [aux_sym_cmd_identifier_token26] = ACTIONS(2122), - [aux_sym_cmd_identifier_token27] = ACTIONS(2122), - [aux_sym_cmd_identifier_token28] = ACTIONS(2122), - [aux_sym_cmd_identifier_token29] = ACTIONS(2122), - [aux_sym_cmd_identifier_token30] = ACTIONS(2122), - [aux_sym_cmd_identifier_token31] = ACTIONS(2122), - [aux_sym_cmd_identifier_token32] = ACTIONS(2122), - [aux_sym_cmd_identifier_token33] = ACTIONS(2122), - [aux_sym_cmd_identifier_token34] = ACTIONS(2120), - [aux_sym_cmd_identifier_token35] = ACTIONS(2122), - [aux_sym_cmd_identifier_token36] = ACTIONS(2122), - [aux_sym_cmd_identifier_token37] = ACTIONS(2122), - [aux_sym_cmd_identifier_token38] = ACTIONS(2120), - [aux_sym_cmd_identifier_token39] = ACTIONS(2122), - [aux_sym_cmd_identifier_token40] = ACTIONS(2122), - [anon_sym_def] = ACTIONS(2120), - [anon_sym_export_DASHenv] = ACTIONS(2120), - [anon_sym_extern] = ACTIONS(2120), - [anon_sym_module] = ACTIONS(2120), - [anon_sym_use] = ACTIONS(2120), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2122), - [anon_sym_error] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_break] = ACTIONS(2120), - [anon_sym_continue] = ACTIONS(2120), - [anon_sym_for] = ACTIONS(2120), - [anon_sym_in2] = ACTIONS(2120), - [anon_sym_loop] = ACTIONS(2120), - [anon_sym_make] = ACTIONS(2120), - [anon_sym_while] = ACTIONS(2120), - [anon_sym_do] = ACTIONS(2120), - [anon_sym_if] = ACTIONS(2120), - [anon_sym_else] = ACTIONS(2120), - [anon_sym_match] = ACTIONS(2120), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_try] = ACTIONS(2120), - [anon_sym_catch] = ACTIONS(2120), - [anon_sym_return] = ACTIONS(2120), - [anon_sym_source] = ACTIONS(2120), - [anon_sym_source_DASHenv] = ACTIONS(2120), - [anon_sym_register] = ACTIONS(2120), - [anon_sym_hide] = ACTIONS(2120), - [anon_sym_hide_DASHenv] = ACTIONS(2120), - [anon_sym_overlay] = ACTIONS(2120), - [anon_sym_as] = ACTIONS(2120), - [anon_sym_PLUS2] = ACTIONS(2120), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2122), - [aux_sym__val_number_decimal_token3] = ACTIONS(2122), - [aux_sym__val_number_decimal_token4] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2120), - [aux_sym__val_number_token5] = ACTIONS(2120), - [aux_sym__val_number_token6] = ACTIONS(2120), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOT_DOT_DOT_LBRACE] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2122), - }, - [766] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_rest] = STATE(7523), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2826), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(3048), - [sym__val_range] = STATE(7611), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(3049), - [sym_val_bool] = STATE(2917), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(2831), - [sym_val_number] = STATE(3049), - [sym__val_number_decimal] = STATE(2475), - [sym__val_number] = STATE(3050), - [sym_val_duration] = STATE(3049), - [sym_val_filesize] = STATE(3049), - [sym_val_binary] = STATE(3049), - [sym_val_string] = STATE(3049), - [sym__raw_str] = STATE(3066), - [sym__str_double_quotes] = STATE(3066), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7135), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7384), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(3049), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(2923), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6679), - [sym_comment] = STATE(766), - [aux_sym_shebang_repeat1] = STATE(888), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym__match_pattern_list_repeat1] = STATE(1302), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_RBRACK] = ACTIONS(2541), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_DOT_DOT] = ACTIONS(2551), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2553), - [anon_sym_DOT_DOT_LT] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2559), - [aux_sym__val_number_decimal_token2] = ACTIONS(2561), - [aux_sym__val_number_decimal_token3] = ACTIONS(2563), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2567), - [aux_sym__val_number_token2] = ACTIONS(2567), - [aux_sym__val_number_token3] = ACTIONS(2567), - [aux_sym__val_number_token4] = ACTIONS(2569), - [aux_sym__val_number_token5] = ACTIONS(2569), - [aux_sym__val_number_token6] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2577), - [sym__str_single_quotes] = ACTIONS(2579), - [sym__str_back_ticks] = ACTIONS(2579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2593), - }, - [767] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_rest] = STATE(7523), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2826), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(3048), - [sym__val_range] = STATE(7611), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(3049), - [sym_val_bool] = STATE(2917), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(2831), - [sym_val_number] = STATE(3049), - [sym__val_number_decimal] = STATE(2475), - [sym__val_number] = STATE(3050), - [sym_val_duration] = STATE(3049), - [sym_val_filesize] = STATE(3049), - [sym_val_binary] = STATE(3049), - [sym_val_string] = STATE(3049), - [sym__raw_str] = STATE(3066), - [sym__str_double_quotes] = STATE(3066), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7151), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7497), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(3049), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(2923), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6679), - [sym_comment] = STATE(767), - [aux_sym_shebang_repeat1] = STATE(890), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym__match_pattern_list_repeat1] = STATE(1302), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(2539), - [anon_sym_RBRACK] = ACTIONS(2595), - [anon_sym_LPAREN] = ACTIONS(2543), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(2547), - [anon_sym_LBRACE] = ACTIONS(2549), - [anon_sym_DOT_DOT] = ACTIONS(2551), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2553), - [anon_sym_DOT_DOT_LT] = ACTIONS(2553), - [anon_sym_null] = ACTIONS(2555), - [anon_sym_true] = ACTIONS(2557), - [anon_sym_false] = ACTIONS(2557), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(2559), - [aux_sym__val_number_decimal_token2] = ACTIONS(2561), - [aux_sym__val_number_decimal_token3] = ACTIONS(2563), - [aux_sym__val_number_decimal_token4] = ACTIONS(2565), - [aux_sym__val_number_token1] = ACTIONS(2567), - [aux_sym__val_number_token2] = ACTIONS(2567), - [aux_sym__val_number_token3] = ACTIONS(2567), - [aux_sym__val_number_token4] = ACTIONS(2569), - [aux_sym__val_number_token5] = ACTIONS(2569), - [aux_sym__val_number_token6] = ACTIONS(2569), - [anon_sym_0b] = ACTIONS(2571), - [anon_sym_0o] = ACTIONS(2573), - [anon_sym_0x] = ACTIONS(2573), - [sym_val_date] = ACTIONS(2575), - [anon_sym_DQUOTE] = ACTIONS(2577), - [sym__str_single_quotes] = ACTIONS(2579), - [sym__str_back_ticks] = ACTIONS(2579), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(2591), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2593), + [751] = { + [aux_sym__pipe_separator] = STATE(752), + [sym_comment] = STATE(751), + [aux_sym_shebang_repeat1] = STATE(756), + [aux_sym_cmd_identifier_token1] = ACTIONS(2508), + [aux_sym_cmd_identifier_token2] = ACTIONS(2510), + [aux_sym_cmd_identifier_token3] = ACTIONS(2510), + [aux_sym_cmd_identifier_token4] = ACTIONS(2510), + [aux_sym_cmd_identifier_token5] = ACTIONS(2510), + [aux_sym_cmd_identifier_token6] = ACTIONS(2510), + [aux_sym_cmd_identifier_token7] = ACTIONS(2510), + [aux_sym_cmd_identifier_token8] = ACTIONS(2510), + [aux_sym_cmd_identifier_token9] = ACTIONS(2508), + [aux_sym_cmd_identifier_token10] = ACTIONS(2510), + [aux_sym_cmd_identifier_token11] = ACTIONS(2510), + [aux_sym_cmd_identifier_token12] = ACTIONS(2510), + [aux_sym_cmd_identifier_token13] = ACTIONS(2508), + [aux_sym_cmd_identifier_token14] = ACTIONS(2510), + [aux_sym_cmd_identifier_token15] = ACTIONS(2508), + [aux_sym_cmd_identifier_token16] = ACTIONS(2510), + [aux_sym_cmd_identifier_token17] = ACTIONS(2510), + [aux_sym_cmd_identifier_token18] = ACTIONS(2508), + [aux_sym_cmd_identifier_token19] = ACTIONS(2510), + [aux_sym_cmd_identifier_token20] = ACTIONS(2510), + [aux_sym_cmd_identifier_token21] = ACTIONS(2510), + [aux_sym_cmd_identifier_token22] = ACTIONS(2510), + [aux_sym_cmd_identifier_token23] = ACTIONS(2510), + [aux_sym_cmd_identifier_token24] = ACTIONS(2510), + [aux_sym_cmd_identifier_token25] = ACTIONS(2510), + [aux_sym_cmd_identifier_token26] = ACTIONS(2510), + [aux_sym_cmd_identifier_token27] = ACTIONS(2510), + [aux_sym_cmd_identifier_token28] = ACTIONS(2510), + [aux_sym_cmd_identifier_token29] = ACTIONS(2510), + [aux_sym_cmd_identifier_token30] = ACTIONS(2510), + [aux_sym_cmd_identifier_token31] = ACTIONS(2510), + [aux_sym_cmd_identifier_token32] = ACTIONS(2508), + [aux_sym_cmd_identifier_token33] = ACTIONS(2510), + [aux_sym_cmd_identifier_token34] = ACTIONS(2508), + [aux_sym_cmd_identifier_token35] = ACTIONS(2510), + [aux_sym_cmd_identifier_token36] = ACTIONS(2510), + [aux_sym_cmd_identifier_token37] = ACTIONS(2510), + [aux_sym_cmd_identifier_token38] = ACTIONS(2508), + [aux_sym_cmd_identifier_token39] = ACTIONS(2510), + [aux_sym_cmd_identifier_token40] = ACTIONS(2510), + [sym__newline] = ACTIONS(2512), + [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_LBRACK] = ACTIONS(2510), + [anon_sym_LPAREN] = ACTIONS(2510), + [anon_sym_DOLLAR] = ACTIONS(2508), + [anon_sym_DASH2] = ACTIONS(2508), + [anon_sym_break] = ACTIONS(2508), + [anon_sym_continue] = ACTIONS(2508), + [anon_sym_do] = ACTIONS(2508), + [anon_sym_if] = ACTIONS(2508), + [anon_sym_match] = ACTIONS(2508), + [anon_sym_LBRACE] = ACTIONS(2510), + [anon_sym_DOT_DOT] = ACTIONS(2508), + [anon_sym_try] = ACTIONS(2508), + [anon_sym_return] = ACTIONS(2508), + [anon_sym_where] = ACTIONS(2510), + [aux_sym_expr_unary_token1] = ACTIONS(2510), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2510), + [anon_sym_DOT_DOT_LT] = ACTIONS(2510), + [anon_sym_null] = ACTIONS(2508), + [anon_sym_true] = ACTIONS(2508), + [anon_sym_false] = ACTIONS(2508), + [aux_sym__val_number_decimal_token1] = ACTIONS(2508), + [aux_sym__val_number_decimal_token2] = ACTIONS(2510), + [aux_sym__val_number_decimal_token3] = ACTIONS(2510), + [aux_sym__val_number_decimal_token4] = ACTIONS(2510), + [aux_sym__val_number_token1] = ACTIONS(2510), + [aux_sym__val_number_token2] = ACTIONS(2510), + [aux_sym__val_number_token3] = ACTIONS(2510), + [aux_sym__val_number_token4] = ACTIONS(2508), + [aux_sym__val_number_token5] = ACTIONS(2508), + [aux_sym__val_number_token6] = ACTIONS(2508), + [anon_sym_0b] = ACTIONS(2508), + [anon_sym_0o] = ACTIONS(2508), + [anon_sym_0x] = ACTIONS(2508), + [sym_val_date] = ACTIONS(2510), + [anon_sym_DQUOTE] = ACTIONS(2510), + [sym__str_single_quotes] = ACTIONS(2510), + [sym__str_back_ticks] = ACTIONS(2510), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2510), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2510), + [aux_sym_env_var_token1] = ACTIONS(2508), + [anon_sym_CARET] = ACTIONS(2510), + [aux_sym_command_token1] = ACTIONS(2510), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2510), }, - [768] = { - [sym_comment] = STATE(768), - [aux_sym_shebang_repeat1] = STATE(769), - [aux_sym_cmd_identifier_token1] = ACTIONS(2597), - [aux_sym_cmd_identifier_token2] = ACTIONS(2599), - [aux_sym_cmd_identifier_token3] = ACTIONS(2599), - [aux_sym_cmd_identifier_token4] = ACTIONS(2599), - [aux_sym_cmd_identifier_token5] = ACTIONS(2599), - [aux_sym_cmd_identifier_token6] = ACTIONS(2599), - [aux_sym_cmd_identifier_token7] = ACTIONS(2599), - [aux_sym_cmd_identifier_token8] = ACTIONS(2599), - [aux_sym_cmd_identifier_token9] = ACTIONS(2597), - [aux_sym_cmd_identifier_token10] = ACTIONS(2599), - [aux_sym_cmd_identifier_token11] = ACTIONS(2599), - [aux_sym_cmd_identifier_token12] = ACTIONS(2599), - [aux_sym_cmd_identifier_token13] = ACTIONS(2597), - [aux_sym_cmd_identifier_token14] = ACTIONS(2599), - [aux_sym_cmd_identifier_token15] = ACTIONS(2597), - [aux_sym_cmd_identifier_token16] = ACTIONS(2599), - [aux_sym_cmd_identifier_token17] = ACTIONS(2599), - [aux_sym_cmd_identifier_token18] = ACTIONS(2597), - [aux_sym_cmd_identifier_token19] = ACTIONS(2599), - [aux_sym_cmd_identifier_token20] = ACTIONS(2599), - [aux_sym_cmd_identifier_token21] = ACTIONS(2599), - [aux_sym_cmd_identifier_token22] = ACTIONS(2599), - [aux_sym_cmd_identifier_token23] = ACTIONS(2599), - [aux_sym_cmd_identifier_token24] = ACTIONS(2599), - [aux_sym_cmd_identifier_token25] = ACTIONS(2599), - [aux_sym_cmd_identifier_token26] = ACTIONS(2599), - [aux_sym_cmd_identifier_token27] = ACTIONS(2599), - [aux_sym_cmd_identifier_token28] = ACTIONS(2599), - [aux_sym_cmd_identifier_token29] = ACTIONS(2599), - [aux_sym_cmd_identifier_token30] = ACTIONS(2599), - [aux_sym_cmd_identifier_token31] = ACTIONS(2599), - [aux_sym_cmd_identifier_token32] = ACTIONS(2597), - [aux_sym_cmd_identifier_token33] = ACTIONS(2599), - [aux_sym_cmd_identifier_token34] = ACTIONS(2597), - [aux_sym_cmd_identifier_token35] = ACTIONS(2599), - [aux_sym_cmd_identifier_token36] = ACTIONS(2599), - [aux_sym_cmd_identifier_token37] = ACTIONS(2599), - [aux_sym_cmd_identifier_token38] = ACTIONS(2597), - [aux_sym_cmd_identifier_token39] = ACTIONS(2599), - [aux_sym_cmd_identifier_token40] = ACTIONS(2599), - [sym__newline] = ACTIONS(2517), - [anon_sym_PIPE] = ACTIONS(2601), - [anon_sym_err_GT_PIPE] = ACTIONS(2601), - [anon_sym_out_GT_PIPE] = ACTIONS(2601), - [anon_sym_e_GT_PIPE] = ACTIONS(2601), - [anon_sym_o_GT_PIPE] = ACTIONS(2601), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2601), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2601), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2601), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2601), - [anon_sym_LBRACK] = ACTIONS(2599), - [anon_sym_LPAREN] = ACTIONS(2599), - [anon_sym_DOLLAR] = ACTIONS(2597), - [anon_sym_DASH2] = ACTIONS(2597), - [anon_sym_break] = ACTIONS(2597), - [anon_sym_continue] = ACTIONS(2597), - [anon_sym_do] = ACTIONS(2597), - [anon_sym_if] = ACTIONS(2597), - [anon_sym_match] = ACTIONS(2597), - [anon_sym_LBRACE] = ACTIONS(2599), - [anon_sym_DOT_DOT] = ACTIONS(2597), - [anon_sym_try] = ACTIONS(2597), - [anon_sym_return] = ACTIONS(2597), - [anon_sym_where] = ACTIONS(2599), - [aux_sym_expr_unary_token1] = ACTIONS(2599), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2599), - [anon_sym_DOT_DOT_LT] = ACTIONS(2599), - [anon_sym_null] = ACTIONS(2597), - [anon_sym_true] = ACTIONS(2597), - [anon_sym_false] = ACTIONS(2597), - [aux_sym__val_number_decimal_token1] = ACTIONS(2597), - [aux_sym__val_number_decimal_token2] = ACTIONS(2599), - [aux_sym__val_number_decimal_token3] = ACTIONS(2599), - [aux_sym__val_number_decimal_token4] = ACTIONS(2599), - [aux_sym__val_number_token1] = ACTIONS(2599), - [aux_sym__val_number_token2] = ACTIONS(2599), - [aux_sym__val_number_token3] = ACTIONS(2599), - [aux_sym__val_number_token4] = ACTIONS(2597), - [aux_sym__val_number_token5] = ACTIONS(2597), - [aux_sym__val_number_token6] = ACTIONS(2597), - [anon_sym_0b] = ACTIONS(2597), - [anon_sym_0o] = ACTIONS(2597), - [anon_sym_0x] = ACTIONS(2597), - [sym_val_date] = ACTIONS(2599), - [anon_sym_DQUOTE] = ACTIONS(2599), - [sym__str_single_quotes] = ACTIONS(2599), - [sym__str_back_ticks] = ACTIONS(2599), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2599), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2599), - [aux_sym_env_var_token1] = ACTIONS(2597), - [anon_sym_CARET] = ACTIONS(2599), - [aux_sym_command_token1] = ACTIONS(2599), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2599), + [752] = { + [aux_sym__pipe_separator] = STATE(752), + [sym_comment] = STATE(752), + [aux_sym_shebang_repeat1] = STATE(5010), + [aux_sym_cmd_identifier_token1] = ACTIONS(2514), + [aux_sym_cmd_identifier_token2] = ACTIONS(2516), + [aux_sym_cmd_identifier_token3] = ACTIONS(2516), + [aux_sym_cmd_identifier_token4] = ACTIONS(2516), + [aux_sym_cmd_identifier_token5] = ACTIONS(2516), + [aux_sym_cmd_identifier_token6] = ACTIONS(2516), + [aux_sym_cmd_identifier_token7] = ACTIONS(2516), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2514), + [aux_sym_cmd_identifier_token10] = ACTIONS(2516), + [aux_sym_cmd_identifier_token11] = ACTIONS(2516), + [aux_sym_cmd_identifier_token12] = ACTIONS(2516), + [aux_sym_cmd_identifier_token13] = ACTIONS(2514), + [aux_sym_cmd_identifier_token14] = ACTIONS(2516), + [aux_sym_cmd_identifier_token15] = ACTIONS(2514), + [aux_sym_cmd_identifier_token16] = ACTIONS(2516), + [aux_sym_cmd_identifier_token17] = ACTIONS(2516), + [aux_sym_cmd_identifier_token18] = ACTIONS(2514), + [aux_sym_cmd_identifier_token19] = ACTIONS(2516), + [aux_sym_cmd_identifier_token20] = ACTIONS(2516), + [aux_sym_cmd_identifier_token21] = ACTIONS(2516), + [aux_sym_cmd_identifier_token22] = ACTIONS(2516), + [aux_sym_cmd_identifier_token23] = ACTIONS(2516), + [aux_sym_cmd_identifier_token24] = ACTIONS(2516), + [aux_sym_cmd_identifier_token25] = ACTIONS(2516), + [aux_sym_cmd_identifier_token26] = ACTIONS(2516), + [aux_sym_cmd_identifier_token27] = ACTIONS(2516), + [aux_sym_cmd_identifier_token28] = ACTIONS(2516), + [aux_sym_cmd_identifier_token29] = ACTIONS(2516), + [aux_sym_cmd_identifier_token30] = ACTIONS(2516), + [aux_sym_cmd_identifier_token31] = ACTIONS(2516), + [aux_sym_cmd_identifier_token32] = ACTIONS(2514), + [aux_sym_cmd_identifier_token33] = ACTIONS(2516), + [aux_sym_cmd_identifier_token34] = ACTIONS(2514), + [aux_sym_cmd_identifier_token35] = ACTIONS(2516), + [aux_sym_cmd_identifier_token36] = ACTIONS(2516), + [aux_sym_cmd_identifier_token37] = ACTIONS(2516), + [aux_sym_cmd_identifier_token38] = ACTIONS(2514), + [aux_sym_cmd_identifier_token39] = ACTIONS(2516), + [aux_sym_cmd_identifier_token40] = ACTIONS(2516), + [sym__newline] = ACTIONS(2518), + [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_LBRACK] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_DOLLAR] = ACTIONS(2514), + [anon_sym_DASH2] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_do] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_where] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(2516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2516), + [anon_sym_DOT_DOT_LT] = ACTIONS(2516), + [anon_sym_null] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2514), + [anon_sym_false] = ACTIONS(2514), + [aux_sym__val_number_decimal_token1] = ACTIONS(2514), + [aux_sym__val_number_decimal_token2] = ACTIONS(2516), + [aux_sym__val_number_decimal_token3] = ACTIONS(2516), + [aux_sym__val_number_decimal_token4] = ACTIONS(2516), + [aux_sym__val_number_token1] = ACTIONS(2516), + [aux_sym__val_number_token2] = ACTIONS(2516), + [aux_sym__val_number_token3] = ACTIONS(2516), + [aux_sym__val_number_token4] = ACTIONS(2514), + [aux_sym__val_number_token5] = ACTIONS(2514), + [aux_sym__val_number_token6] = ACTIONS(2514), + [anon_sym_0b] = ACTIONS(2514), + [anon_sym_0o] = ACTIONS(2514), + [anon_sym_0x] = ACTIONS(2514), + [sym_val_date] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [sym__str_single_quotes] = ACTIONS(2516), + [sym__str_back_ticks] = ACTIONS(2516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2516), + [aux_sym_env_var_token1] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2516), + [aux_sym_command_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2516), }, - [769] = { - [sym_comment] = STATE(769), - [aux_sym_shebang_repeat1] = STATE(769), + [753] = { + [sym_comment] = STATE(753), + [aux_sym_shebang_repeat1] = STATE(753), [aux_sym_cmd_identifier_token1] = ACTIONS(1274), [aux_sym_cmd_identifier_token2] = ACTIONS(1276), [aux_sym_cmd_identifier_token3] = ACTIONS(1276), @@ -161590,7 +160401,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1274), [aux_sym_cmd_identifier_token39] = ACTIONS(1276), [aux_sym_cmd_identifier_token40] = ACTIONS(1276), - [sym__newline] = ACTIONS(2603), + [sym__newline] = ACTIONS(2524), [anon_sym_PIPE] = ACTIONS(1276), [anon_sym_err_GT_PIPE] = ACTIONS(1276), [anon_sym_out_GT_PIPE] = ACTIONS(1276), @@ -161645,1269 +160456,787 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1276), }, - [770] = { - [sym_expr_parenthesized] = STATE(1507), - [sym_val_range] = STATE(1812), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1812), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1812), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1620), - [sym__unquoted_with_expr] = STATE(1813), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(770), - [aux_sym_ctrl_do_repeat2] = STATE(770), - [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_LBRACK] = ACTIONS(2608), - [anon_sym_LPAREN] = ACTIONS(2611), - [anon_sym_RPAREN] = ACTIONS(2606), - [anon_sym_DOLLAR] = ACTIONS(2614), - [anon_sym_DASH_DASH] = ACTIONS(2617), - [anon_sym_DASH2] = ACTIONS(2620), - [anon_sym_LBRACE] = ACTIONS(2623), - [anon_sym_RBRACE] = ACTIONS(2606), - [anon_sym_DOT_DOT] = ACTIONS(2626), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2629), - [anon_sym_DOT_DOT_LT] = ACTIONS(2629), - [anon_sym_null] = ACTIONS(2632), - [anon_sym_true] = ACTIONS(2635), - [anon_sym_false] = ACTIONS(2635), - [aux_sym__val_number_decimal_token1] = ACTIONS(2638), - [aux_sym__val_number_decimal_token2] = ACTIONS(2641), - [aux_sym__val_number_decimal_token3] = ACTIONS(2644), - [aux_sym__val_number_decimal_token4] = ACTIONS(2647), - [aux_sym__val_number_token1] = ACTIONS(2650), - [aux_sym__val_number_token2] = ACTIONS(2650), - [aux_sym__val_number_token3] = ACTIONS(2650), - [aux_sym__val_number_token4] = ACTIONS(2653), - [aux_sym__val_number_token5] = ACTIONS(2653), - [aux_sym__val_number_token6] = ACTIONS(2653), - [anon_sym_0b] = ACTIONS(2656), - [anon_sym_0o] = ACTIONS(2659), - [anon_sym_0x] = ACTIONS(2659), - [sym_val_date] = ACTIONS(2662), - [anon_sym_DQUOTE] = ACTIONS(2665), - [sym__str_single_quotes] = ACTIONS(2668), - [sym__str_back_ticks] = ACTIONS(2668), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2671), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2674), - [anon_sym_err_GT] = ACTIONS(2677), - [anon_sym_out_GT] = ACTIONS(2677), - [anon_sym_e_GT] = ACTIONS(2677), - [anon_sym_o_GT] = ACTIONS(2677), - [anon_sym_err_PLUSout_GT] = ACTIONS(2677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2677), - [anon_sym_o_PLUSe_GT] = ACTIONS(2677), - [anon_sym_e_PLUSo_GT] = ACTIONS(2677), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [aux_sym_unquoted_token1] = ACTIONS(2683), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2686), - }, - [771] = { - [sym_comment] = STATE(771), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(2689), - [aux_sym__immediate_decimal_token2] = ACTIONS(2691), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_COLON2] = ACTIONS(1595), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(3), - }, - [772] = { - [sym_expr_parenthesized] = STATE(1507), - [sym_val_range] = STATE(1812), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1812), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1812), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1620), - [sym__unquoted_with_expr] = STATE(1813), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(772), - [aux_sym_ctrl_do_repeat2] = STATE(773), - [sym__newline] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_err_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_GT_PIPE] = ACTIONS(2693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2693), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2693), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), - }, - [773] = { - [sym_expr_parenthesized] = STATE(1507), - [sym_val_range] = STATE(1812), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1812), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1812), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1620), - [sym__unquoted_with_expr] = STATE(1813), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(773), - [aux_sym_ctrl_do_repeat2] = STATE(770), - [sym__newline] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_err_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_GT_PIPE] = ACTIONS(2749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2749), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), - }, - [774] = { - [sym_expr_parenthesized] = STATE(1507), - [sym_val_range] = STATE(1812), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1812), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1812), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1620), - [sym__unquoted_with_expr] = STATE(1813), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(774), - [aux_sym_ctrl_do_repeat2] = STATE(775), - [sym__newline] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_err_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_GT_PIPE] = ACTIONS(2749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2749), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2749), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), - }, - [775] = { - [sym_expr_parenthesized] = STATE(1507), - [sym_val_range] = STATE(1812), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1812), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1812), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1620), - [sym__unquoted_with_expr] = STATE(1813), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(775), - [aux_sym_ctrl_do_repeat2] = STATE(770), - [sym__newline] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_err_GT_PIPE] = ACTIONS(2751), - [anon_sym_out_GT_PIPE] = ACTIONS(2751), - [anon_sym_e_GT_PIPE] = ACTIONS(2751), - [anon_sym_o_GT_PIPE] = ACTIONS(2751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2751), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_RBRACE] = ACTIONS(2751), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [754] = { + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_rest] = STATE(7561), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2865), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(3104), + [sym__val_range] = STATE(7585), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2930), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(2803), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2504), + [sym__val_number] = STATE(3049), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(3083), + [sym__str_double_quotes] = STATE(3083), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7134), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7666), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(2879), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6898), + [sym_comment] = STATE(754), + [aux_sym_shebang_repeat1] = STATE(874), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym__match_pattern_list_repeat1] = STATE(1258), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_RBRACK] = ACTIONS(2531), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_DOT_DOT] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2543), + [anon_sym_DOT_DOT_LT] = ACTIONS(2543), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [aux_sym__val_number_token4] = ACTIONS(2559), + [aux_sym__val_number_token5] = ACTIONS(2559), + [aux_sym__val_number_token6] = ACTIONS(2559), + [anon_sym_0b] = ACTIONS(2561), + [anon_sym_0o] = ACTIONS(2563), + [anon_sym_0x] = ACTIONS(2563), + [sym_val_date] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2567), + [sym__str_single_quotes] = ACTIONS(2569), + [sym__str_back_ticks] = ACTIONS(2569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2583), }, - [776] = { - [sym_comment] = STATE(776), - [aux_sym_cmd_identifier_token1] = ACTIONS(2753), - [aux_sym_cmd_identifier_token2] = ACTIONS(2755), - [aux_sym_cmd_identifier_token3] = ACTIONS(2755), - [aux_sym_cmd_identifier_token4] = ACTIONS(2755), - [aux_sym_cmd_identifier_token5] = ACTIONS(2755), - [aux_sym_cmd_identifier_token6] = ACTIONS(2755), - [aux_sym_cmd_identifier_token7] = ACTIONS(2755), - [aux_sym_cmd_identifier_token8] = ACTIONS(2755), - [aux_sym_cmd_identifier_token9] = ACTIONS(2753), - [aux_sym_cmd_identifier_token10] = ACTIONS(2755), - [aux_sym_cmd_identifier_token11] = ACTIONS(2755), - [aux_sym_cmd_identifier_token12] = ACTIONS(2755), - [aux_sym_cmd_identifier_token13] = ACTIONS(2753), - [aux_sym_cmd_identifier_token14] = ACTIONS(2755), - [aux_sym_cmd_identifier_token15] = ACTIONS(2753), - [aux_sym_cmd_identifier_token16] = ACTIONS(2755), - [aux_sym_cmd_identifier_token17] = ACTIONS(2755), - [aux_sym_cmd_identifier_token18] = ACTIONS(2753), - [aux_sym_cmd_identifier_token19] = ACTIONS(2755), - [aux_sym_cmd_identifier_token20] = ACTIONS(2755), - [aux_sym_cmd_identifier_token21] = ACTIONS(2755), - [aux_sym_cmd_identifier_token22] = ACTIONS(2755), - [aux_sym_cmd_identifier_token23] = ACTIONS(2755), - [aux_sym_cmd_identifier_token24] = ACTIONS(2755), - [aux_sym_cmd_identifier_token25] = ACTIONS(2755), - [aux_sym_cmd_identifier_token26] = ACTIONS(2755), - [aux_sym_cmd_identifier_token27] = ACTIONS(2755), - [aux_sym_cmd_identifier_token28] = ACTIONS(2755), - [aux_sym_cmd_identifier_token29] = ACTIONS(2755), - [aux_sym_cmd_identifier_token30] = ACTIONS(2755), - [aux_sym_cmd_identifier_token31] = ACTIONS(2755), - [aux_sym_cmd_identifier_token32] = ACTIONS(2753), - [aux_sym_cmd_identifier_token33] = ACTIONS(2755), - [aux_sym_cmd_identifier_token34] = ACTIONS(2753), - [aux_sym_cmd_identifier_token35] = ACTIONS(2755), - [aux_sym_cmd_identifier_token36] = ACTIONS(2755), - [aux_sym_cmd_identifier_token37] = ACTIONS(2755), - [aux_sym_cmd_identifier_token38] = ACTIONS(2753), - [aux_sym_cmd_identifier_token39] = ACTIONS(2755), - [aux_sym_cmd_identifier_token40] = ACTIONS(2755), - [sym__newline] = ACTIONS(2755), - [anon_sym_PIPE] = ACTIONS(2755), - [anon_sym_err_GT_PIPE] = ACTIONS(2755), - [anon_sym_out_GT_PIPE] = ACTIONS(2755), - [anon_sym_e_GT_PIPE] = ACTIONS(2755), - [anon_sym_o_GT_PIPE] = ACTIONS(2755), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2755), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2755), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2755), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2755), - [anon_sym_LBRACK] = ACTIONS(2755), - [anon_sym_LPAREN] = ACTIONS(2755), - [anon_sym_DOLLAR] = ACTIONS(2753), - [anon_sym_DASH2] = ACTIONS(2753), - [anon_sym_break] = ACTIONS(2753), - [anon_sym_continue] = ACTIONS(2753), - [anon_sym_do] = ACTIONS(2753), - [anon_sym_if] = ACTIONS(2753), - [anon_sym_match] = ACTIONS(2753), - [anon_sym_LBRACE] = ACTIONS(2755), - [anon_sym_DOT_DOT] = ACTIONS(2753), - [anon_sym_try] = ACTIONS(2753), - [anon_sym_return] = ACTIONS(2753), - [anon_sym_where] = ACTIONS(2755), - [aux_sym_expr_unary_token1] = ACTIONS(2755), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2755), - [anon_sym_DOT_DOT_LT] = ACTIONS(2755), - [anon_sym_null] = ACTIONS(2753), - [anon_sym_true] = ACTIONS(2753), - [anon_sym_false] = ACTIONS(2753), - [aux_sym__val_number_decimal_token1] = ACTIONS(2753), - [aux_sym__val_number_decimal_token2] = ACTIONS(2755), - [aux_sym__val_number_decimal_token3] = ACTIONS(2755), - [aux_sym__val_number_decimal_token4] = ACTIONS(2755), - [aux_sym__val_number_token1] = ACTIONS(2755), - [aux_sym__val_number_token2] = ACTIONS(2755), - [aux_sym__val_number_token3] = ACTIONS(2755), - [aux_sym__val_number_token4] = ACTIONS(2753), - [aux_sym__val_number_token5] = ACTIONS(2753), - [aux_sym__val_number_token6] = ACTIONS(2753), - [anon_sym_0b] = ACTIONS(2753), - [anon_sym_0o] = ACTIONS(2753), - [anon_sym_0x] = ACTIONS(2753), - [sym_val_date] = ACTIONS(2755), - [anon_sym_DQUOTE] = ACTIONS(2755), - [sym__str_single_quotes] = ACTIONS(2755), - [sym__str_back_ticks] = ACTIONS(2755), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2755), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2755), - [aux_sym_env_var_token1] = ACTIONS(2753), - [anon_sym_CARET] = ACTIONS(2755), - [aux_sym_command_token1] = ACTIONS(2755), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2755), + [755] = { + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_rest] = STATE(7561), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2865), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(3104), + [sym__val_range] = STATE(7585), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(3105), + [sym_val_bool] = STATE(2930), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(2803), + [sym_val_number] = STATE(3105), + [sym__val_number_decimal] = STATE(2504), + [sym__val_number] = STATE(3049), + [sym_val_duration] = STATE(3105), + [sym_val_filesize] = STATE(3105), + [sym_val_binary] = STATE(3105), + [sym_val_string] = STATE(3105), + [sym__raw_str] = STATE(3083), + [sym__str_double_quotes] = STATE(3083), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7118), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7396), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(3105), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(2879), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6898), + [sym_comment] = STATE(755), + [aux_sym_shebang_repeat1] = STATE(872), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym__match_pattern_list_repeat1] = STATE(1258), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(2529), + [anon_sym_RBRACK] = ACTIONS(2585), + [anon_sym_LPAREN] = ACTIONS(2533), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(2537), + [anon_sym_LBRACE] = ACTIONS(2539), + [anon_sym_DOT_DOT] = ACTIONS(2541), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2543), + [anon_sym_DOT_DOT_LT] = ACTIONS(2543), + [anon_sym_null] = ACTIONS(2545), + [anon_sym_true] = ACTIONS(2547), + [anon_sym_false] = ACTIONS(2547), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(2549), + [aux_sym__val_number_decimal_token2] = ACTIONS(2551), + [aux_sym__val_number_decimal_token3] = ACTIONS(2553), + [aux_sym__val_number_decimal_token4] = ACTIONS(2555), + [aux_sym__val_number_token1] = ACTIONS(2557), + [aux_sym__val_number_token2] = ACTIONS(2557), + [aux_sym__val_number_token3] = ACTIONS(2557), + [aux_sym__val_number_token4] = ACTIONS(2559), + [aux_sym__val_number_token5] = ACTIONS(2559), + [aux_sym__val_number_token6] = ACTIONS(2559), + [anon_sym_0b] = ACTIONS(2561), + [anon_sym_0o] = ACTIONS(2563), + [anon_sym_0x] = ACTIONS(2563), + [sym_val_date] = ACTIONS(2565), + [anon_sym_DQUOTE] = ACTIONS(2567), + [sym__str_single_quotes] = ACTIONS(2569), + [sym__str_back_ticks] = ACTIONS(2569), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(2581), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2583), }, - [777] = { - [sym_expr_parenthesized] = STATE(1574), - [sym_val_range] = STATE(1904), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1904), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1904), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1907), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(777), - [aux_sym_shebang_repeat1] = STATE(1053), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(779), - [sym__newline] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_err_GT_PIPE] = ACTIONS(2760), - [anon_sym_out_GT_PIPE] = ACTIONS(2760), - [anon_sym_e_GT_PIPE] = ACTIONS(2760), - [anon_sym_o_GT_PIPE] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [756] = { + [sym_comment] = STATE(756), + [aux_sym_shebang_repeat1] = STATE(753), + [aux_sym_cmd_identifier_token1] = ACTIONS(2587), + [aux_sym_cmd_identifier_token2] = ACTIONS(2589), + [aux_sym_cmd_identifier_token3] = ACTIONS(2589), + [aux_sym_cmd_identifier_token4] = ACTIONS(2589), + [aux_sym_cmd_identifier_token5] = ACTIONS(2589), + [aux_sym_cmd_identifier_token6] = ACTIONS(2589), + [aux_sym_cmd_identifier_token7] = ACTIONS(2589), + [aux_sym_cmd_identifier_token8] = ACTIONS(2589), + [aux_sym_cmd_identifier_token9] = ACTIONS(2587), + [aux_sym_cmd_identifier_token10] = ACTIONS(2589), + [aux_sym_cmd_identifier_token11] = ACTIONS(2589), + [aux_sym_cmd_identifier_token12] = ACTIONS(2589), + [aux_sym_cmd_identifier_token13] = ACTIONS(2587), + [aux_sym_cmd_identifier_token14] = ACTIONS(2589), + [aux_sym_cmd_identifier_token15] = ACTIONS(2587), + [aux_sym_cmd_identifier_token16] = ACTIONS(2589), + [aux_sym_cmd_identifier_token17] = ACTIONS(2589), + [aux_sym_cmd_identifier_token18] = ACTIONS(2587), + [aux_sym_cmd_identifier_token19] = ACTIONS(2589), + [aux_sym_cmd_identifier_token20] = ACTIONS(2589), + [aux_sym_cmd_identifier_token21] = ACTIONS(2589), + [aux_sym_cmd_identifier_token22] = ACTIONS(2589), + [aux_sym_cmd_identifier_token23] = ACTIONS(2589), + [aux_sym_cmd_identifier_token24] = ACTIONS(2589), + [aux_sym_cmd_identifier_token25] = ACTIONS(2589), + [aux_sym_cmd_identifier_token26] = ACTIONS(2589), + [aux_sym_cmd_identifier_token27] = ACTIONS(2589), + [aux_sym_cmd_identifier_token28] = ACTIONS(2589), + [aux_sym_cmd_identifier_token29] = ACTIONS(2589), + [aux_sym_cmd_identifier_token30] = ACTIONS(2589), + [aux_sym_cmd_identifier_token31] = ACTIONS(2589), + [aux_sym_cmd_identifier_token32] = ACTIONS(2587), + [aux_sym_cmd_identifier_token33] = ACTIONS(2589), + [aux_sym_cmd_identifier_token34] = ACTIONS(2587), + [aux_sym_cmd_identifier_token35] = ACTIONS(2589), + [aux_sym_cmd_identifier_token36] = ACTIONS(2589), + [aux_sym_cmd_identifier_token37] = ACTIONS(2589), + [aux_sym_cmd_identifier_token38] = ACTIONS(2587), + [aux_sym_cmd_identifier_token39] = ACTIONS(2589), + [aux_sym_cmd_identifier_token40] = ACTIONS(2589), + [sym__newline] = ACTIONS(2512), + [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_LBRACK] = ACTIONS(2589), + [anon_sym_LPAREN] = ACTIONS(2589), + [anon_sym_DOLLAR] = ACTIONS(2587), + [anon_sym_DASH2] = ACTIONS(2587), + [anon_sym_break] = ACTIONS(2587), + [anon_sym_continue] = ACTIONS(2587), + [anon_sym_do] = ACTIONS(2587), + [anon_sym_if] = ACTIONS(2587), + [anon_sym_match] = ACTIONS(2587), + [anon_sym_LBRACE] = ACTIONS(2589), + [anon_sym_DOT_DOT] = ACTIONS(2587), + [anon_sym_try] = ACTIONS(2587), + [anon_sym_return] = ACTIONS(2587), + [anon_sym_where] = ACTIONS(2589), + [aux_sym_expr_unary_token1] = ACTIONS(2589), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2589), + [anon_sym_DOT_DOT_LT] = ACTIONS(2589), + [anon_sym_null] = ACTIONS(2587), + [anon_sym_true] = ACTIONS(2587), + [anon_sym_false] = ACTIONS(2587), + [aux_sym__val_number_decimal_token1] = ACTIONS(2587), + [aux_sym__val_number_decimal_token2] = ACTIONS(2589), + [aux_sym__val_number_decimal_token3] = ACTIONS(2589), + [aux_sym__val_number_decimal_token4] = ACTIONS(2589), + [aux_sym__val_number_token1] = ACTIONS(2589), + [aux_sym__val_number_token2] = ACTIONS(2589), + [aux_sym__val_number_token3] = ACTIONS(2589), + [aux_sym__val_number_token4] = ACTIONS(2587), + [aux_sym__val_number_token5] = ACTIONS(2587), + [aux_sym__val_number_token6] = ACTIONS(2587), + [anon_sym_0b] = ACTIONS(2587), + [anon_sym_0o] = ACTIONS(2587), + [anon_sym_0x] = ACTIONS(2587), + [sym_val_date] = ACTIONS(2589), + [anon_sym_DQUOTE] = ACTIONS(2589), + [sym__str_single_quotes] = ACTIONS(2589), + [sym__str_back_ticks] = ACTIONS(2589), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2589), + [aux_sym_env_var_token1] = ACTIONS(2587), + [anon_sym_CARET] = ACTIONS(2589), + [aux_sym_command_token1] = ACTIONS(2589), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2589), }, - [778] = { - [sym_expr_parenthesized] = STATE(1574), - [sym_val_range] = STATE(1904), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1904), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1904), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1907), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(778), - [aux_sym_shebang_repeat1] = STATE(1053), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(780), - [sym__newline] = ACTIONS(2757), - [anon_sym_SEMI] = ACTIONS(2760), - [anon_sym_PIPE] = ACTIONS(2760), - [anon_sym_err_GT_PIPE] = ACTIONS(2760), - [anon_sym_out_GT_PIPE] = ACTIONS(2760), - [anon_sym_e_GT_PIPE] = ACTIONS(2760), - [anon_sym_o_GT_PIPE] = ACTIONS(2760), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2760), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2760), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2760), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2760), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2760), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [757] = { + [sym_expr_parenthesized] = STATE(1548), + [sym_val_range] = STATE(1906), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1906), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1906), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1617), + [sym__unquoted_with_expr] = STATE(1925), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(757), + [aux_sym_shebang_repeat1] = STATE(1040), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(760), + [sym__newline] = ACTIONS(2593), + [anon_sym_SEMI] = ACTIONS(2596), + [anon_sym_PIPE] = ACTIONS(2596), + [anon_sym_err_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_GT_PIPE] = ACTIONS(2596), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2596), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2596), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2596), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2596), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2596), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, - [779] = { - [sym_expr_parenthesized] = STATE(1574), - [sym_val_range] = STATE(1904), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1904), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1904), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1907), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(779), - [aux_sym_shebang_repeat1] = STATE(1053), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(780), - [sym__newline] = ACTIONS(2762), - [anon_sym_SEMI] = ACTIONS(2765), - [anon_sym_PIPE] = ACTIONS(2765), - [anon_sym_err_GT_PIPE] = ACTIONS(2765), - [anon_sym_out_GT_PIPE] = ACTIONS(2765), - [anon_sym_e_GT_PIPE] = ACTIONS(2765), - [anon_sym_o_GT_PIPE] = ACTIONS(2765), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2765), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2765), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2765), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2765), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2765), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [758] = { + [sym_expr_parenthesized] = STATE(1548), + [sym_val_range] = STATE(1906), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1906), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1906), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1617), + [sym__unquoted_with_expr] = STATE(1925), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(758), + [aux_sym_shebang_repeat1] = STATE(1040), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(765), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_err_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_GT_PIPE] = ACTIONS(2655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, - [780] = { - [sym_expr_parenthesized] = STATE(1574), - [sym_val_range] = STATE(1904), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1904), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1904), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1907), - [sym__unquoted_anonymous_prefix] = STATE(6658), - [sym_comment] = STATE(780), - [aux_sym_shebang_repeat1] = STATE(1053), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(780), - [sym__newline] = ACTIONS(2767), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_err_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_GT_PIPE] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2772), - [anon_sym_LPAREN] = ACTIONS(2775), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(2778), - [anon_sym_DASH_DASH] = ACTIONS(2781), - [anon_sym_DASH2] = ACTIONS(2784), - [anon_sym_LBRACE] = ACTIONS(2787), - [anon_sym_DOT_DOT] = ACTIONS(2790), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2793), - [anon_sym_DOT_DOT_LT] = ACTIONS(2793), - [anon_sym_null] = ACTIONS(2796), - [anon_sym_true] = ACTIONS(2799), - [anon_sym_false] = ACTIONS(2799), - [aux_sym__val_number_decimal_token1] = ACTIONS(2802), - [aux_sym__val_number_decimal_token2] = ACTIONS(2805), - [aux_sym__val_number_decimal_token3] = ACTIONS(2808), - [aux_sym__val_number_decimal_token4] = ACTIONS(2811), - [aux_sym__val_number_token1] = ACTIONS(2814), - [aux_sym__val_number_token2] = ACTIONS(2814), - [aux_sym__val_number_token3] = ACTIONS(2814), - [aux_sym__val_number_token4] = ACTIONS(2817), - [aux_sym__val_number_token5] = ACTIONS(2817), - [aux_sym__val_number_token6] = ACTIONS(2817), - [anon_sym_0b] = ACTIONS(2820), - [anon_sym_0o] = ACTIONS(2823), - [anon_sym_0x] = ACTIONS(2823), - [sym_val_date] = ACTIONS(2826), - [anon_sym_DQUOTE] = ACTIONS(2829), - [sym__str_single_quotes] = ACTIONS(2832), - [sym__str_back_ticks] = ACTIONS(2832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2835), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2838), - [anon_sym_err_GT] = ACTIONS(2841), - [anon_sym_out_GT] = ACTIONS(2841), - [anon_sym_e_GT] = ACTIONS(2841), - [anon_sym_o_GT] = ACTIONS(2841), - [anon_sym_err_PLUSout_GT] = ACTIONS(2841), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2841), - [anon_sym_o_PLUSe_GT] = ACTIONS(2841), - [anon_sym_e_PLUSo_GT] = ACTIONS(2841), - [anon_sym_err_GT_GT] = ACTIONS(2844), - [anon_sym_out_GT_GT] = ACTIONS(2844), - [anon_sym_e_GT_GT] = ACTIONS(2844), - [anon_sym_o_GT_GT] = ACTIONS(2844), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2844), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2844), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2844), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2844), - [aux_sym_unquoted_token1] = ACTIONS(2847), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2850), + [759] = { + [sym_expr_parenthesized] = STATE(1483), + [sym_val_range] = STATE(1778), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1778), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1778), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1590), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(759), + [aux_sym_ctrl_do_repeat2] = STATE(764), + [sym__newline] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_err_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_GT_PIPE] = ACTIONS(2657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, - [781] = { - [sym_comment] = STATE(781), - [aux_sym_cmd_identifier_token1] = ACTIONS(2853), - [aux_sym_cmd_identifier_token2] = ACTIONS(2855), - [aux_sym_cmd_identifier_token3] = ACTIONS(2855), - [aux_sym_cmd_identifier_token4] = ACTIONS(2855), - [aux_sym_cmd_identifier_token5] = ACTIONS(2855), - [aux_sym_cmd_identifier_token6] = ACTIONS(2855), - [aux_sym_cmd_identifier_token7] = ACTIONS(2855), - [aux_sym_cmd_identifier_token8] = ACTIONS(2855), - [aux_sym_cmd_identifier_token9] = ACTIONS(2853), - [aux_sym_cmd_identifier_token10] = ACTIONS(2855), - [aux_sym_cmd_identifier_token11] = ACTIONS(2855), - [aux_sym_cmd_identifier_token12] = ACTIONS(2855), - [aux_sym_cmd_identifier_token13] = ACTIONS(2853), - [aux_sym_cmd_identifier_token14] = ACTIONS(2855), - [aux_sym_cmd_identifier_token15] = ACTIONS(2853), - [aux_sym_cmd_identifier_token16] = ACTIONS(2855), - [aux_sym_cmd_identifier_token17] = ACTIONS(2855), - [aux_sym_cmd_identifier_token18] = ACTIONS(2853), - [aux_sym_cmd_identifier_token19] = ACTIONS(2855), - [aux_sym_cmd_identifier_token20] = ACTIONS(2855), - [aux_sym_cmd_identifier_token21] = ACTIONS(2855), - [aux_sym_cmd_identifier_token22] = ACTIONS(2855), - [aux_sym_cmd_identifier_token23] = ACTIONS(2855), - [aux_sym_cmd_identifier_token24] = ACTIONS(2855), - [aux_sym_cmd_identifier_token25] = ACTIONS(2855), - [aux_sym_cmd_identifier_token26] = ACTIONS(2855), - [aux_sym_cmd_identifier_token27] = ACTIONS(2855), - [aux_sym_cmd_identifier_token28] = ACTIONS(2855), - [aux_sym_cmd_identifier_token29] = ACTIONS(2855), - [aux_sym_cmd_identifier_token30] = ACTIONS(2855), - [aux_sym_cmd_identifier_token31] = ACTIONS(2855), - [aux_sym_cmd_identifier_token32] = ACTIONS(2853), - [aux_sym_cmd_identifier_token33] = ACTIONS(2855), - [aux_sym_cmd_identifier_token34] = ACTIONS(2853), - [aux_sym_cmd_identifier_token35] = ACTIONS(2855), - [aux_sym_cmd_identifier_token36] = ACTIONS(2855), - [aux_sym_cmd_identifier_token37] = ACTIONS(2855), - [aux_sym_cmd_identifier_token38] = ACTIONS(2853), - [aux_sym_cmd_identifier_token39] = ACTIONS(2855), - [aux_sym_cmd_identifier_token40] = ACTIONS(2855), - [sym__newline] = ACTIONS(1268), - [anon_sym_PIPE] = ACTIONS(1268), - [anon_sym_err_GT_PIPE] = ACTIONS(1268), - [anon_sym_out_GT_PIPE] = ACTIONS(1268), - [anon_sym_e_GT_PIPE] = ACTIONS(1268), - [anon_sym_o_GT_PIPE] = ACTIONS(1268), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1268), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1268), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1268), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1268), - [anon_sym_LBRACK] = ACTIONS(2855), - [anon_sym_LPAREN] = ACTIONS(2855), - [anon_sym_DOLLAR] = ACTIONS(2853), - [anon_sym_DASH2] = ACTIONS(2853), - [anon_sym_break] = ACTIONS(2853), - [anon_sym_continue] = ACTIONS(2853), - [anon_sym_do] = ACTIONS(2853), - [anon_sym_if] = ACTIONS(2853), - [anon_sym_match] = ACTIONS(2853), - [anon_sym_LBRACE] = ACTIONS(2855), - [anon_sym_DOT_DOT] = ACTIONS(2853), - [anon_sym_try] = ACTIONS(2853), - [anon_sym_return] = ACTIONS(2853), - [anon_sym_where] = ACTIONS(2855), - [aux_sym_expr_unary_token1] = ACTIONS(2855), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2855), - [anon_sym_DOT_DOT_LT] = ACTIONS(2855), - [anon_sym_null] = ACTIONS(2853), - [anon_sym_true] = ACTIONS(2853), - [anon_sym_false] = ACTIONS(2853), - [aux_sym__val_number_decimal_token1] = ACTIONS(2853), - [aux_sym__val_number_decimal_token2] = ACTIONS(2855), - [aux_sym__val_number_decimal_token3] = ACTIONS(2855), - [aux_sym__val_number_decimal_token4] = ACTIONS(2855), - [aux_sym__val_number_token1] = ACTIONS(2855), - [aux_sym__val_number_token2] = ACTIONS(2855), - [aux_sym__val_number_token3] = ACTIONS(2855), - [aux_sym__val_number_token4] = ACTIONS(2853), - [aux_sym__val_number_token5] = ACTIONS(2853), - [aux_sym__val_number_token6] = ACTIONS(2853), - [anon_sym_0b] = ACTIONS(2853), - [anon_sym_0o] = ACTIONS(2853), - [anon_sym_0x] = ACTIONS(2853), - [sym_val_date] = ACTIONS(2855), - [anon_sym_DQUOTE] = ACTIONS(2855), - [sym__str_single_quotes] = ACTIONS(2855), - [sym__str_back_ticks] = ACTIONS(2855), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2855), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2855), - [aux_sym_env_var_token1] = ACTIONS(2853), - [anon_sym_CARET] = ACTIONS(2855), - [aux_sym_command_token1] = ACTIONS(2855), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2855), + [760] = { + [sym_expr_parenthesized] = STATE(1548), + [sym_val_range] = STATE(1906), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1906), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1906), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1617), + [sym__unquoted_with_expr] = STATE(1925), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(760), + [aux_sym_shebang_repeat1] = STATE(1040), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(766), + [sym__newline] = ACTIONS(2652), + [anon_sym_SEMI] = ACTIONS(2655), + [anon_sym_PIPE] = ACTIONS(2655), + [anon_sym_err_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_GT_PIPE] = ACTIONS(2655), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2655), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2655), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2655), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2655), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2655), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, - [782] = { - [sym_comment] = STATE(782), - [aux_sym_cmd_identifier_token1] = ACTIONS(2527), - [aux_sym_cmd_identifier_token2] = ACTIONS(2529), - [aux_sym_cmd_identifier_token3] = ACTIONS(2529), - [aux_sym_cmd_identifier_token4] = ACTIONS(2529), - [aux_sym_cmd_identifier_token5] = ACTIONS(2529), - [aux_sym_cmd_identifier_token6] = ACTIONS(2529), - [aux_sym_cmd_identifier_token7] = ACTIONS(2529), - [aux_sym_cmd_identifier_token8] = ACTIONS(2529), - [aux_sym_cmd_identifier_token9] = ACTIONS(2527), - [aux_sym_cmd_identifier_token10] = ACTIONS(2529), - [aux_sym_cmd_identifier_token11] = ACTIONS(2529), - [aux_sym_cmd_identifier_token12] = ACTIONS(2529), - [aux_sym_cmd_identifier_token13] = ACTIONS(2527), - [aux_sym_cmd_identifier_token14] = ACTIONS(2529), - [aux_sym_cmd_identifier_token15] = ACTIONS(2527), - [aux_sym_cmd_identifier_token16] = ACTIONS(2529), - [aux_sym_cmd_identifier_token17] = ACTIONS(2529), - [aux_sym_cmd_identifier_token18] = ACTIONS(2527), - [aux_sym_cmd_identifier_token19] = ACTIONS(2529), - [aux_sym_cmd_identifier_token20] = ACTIONS(2529), - [aux_sym_cmd_identifier_token21] = ACTIONS(2529), - [aux_sym_cmd_identifier_token22] = ACTIONS(2529), - [aux_sym_cmd_identifier_token23] = ACTIONS(2529), - [aux_sym_cmd_identifier_token24] = ACTIONS(2529), - [aux_sym_cmd_identifier_token25] = ACTIONS(2529), - [aux_sym_cmd_identifier_token26] = ACTIONS(2529), - [aux_sym_cmd_identifier_token27] = ACTIONS(2529), - [aux_sym_cmd_identifier_token28] = ACTIONS(2529), - [aux_sym_cmd_identifier_token29] = ACTIONS(2529), - [aux_sym_cmd_identifier_token30] = ACTIONS(2529), - [aux_sym_cmd_identifier_token31] = ACTIONS(2529), - [aux_sym_cmd_identifier_token32] = ACTIONS(2527), - [aux_sym_cmd_identifier_token33] = ACTIONS(2529), - [aux_sym_cmd_identifier_token34] = ACTIONS(2527), - [aux_sym_cmd_identifier_token35] = ACTIONS(2529), - [aux_sym_cmd_identifier_token36] = ACTIONS(2529), - [aux_sym_cmd_identifier_token37] = ACTIONS(2529), - [aux_sym_cmd_identifier_token38] = ACTIONS(2527), - [aux_sym_cmd_identifier_token39] = ACTIONS(2529), - [aux_sym_cmd_identifier_token40] = ACTIONS(2529), - [sym__newline] = 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_LBRACK] = ACTIONS(2529), - [anon_sym_LPAREN] = ACTIONS(2529), - [anon_sym_DOLLAR] = ACTIONS(2527), - [anon_sym_DASH2] = ACTIONS(2527), - [anon_sym_break] = ACTIONS(2527), - [anon_sym_continue] = ACTIONS(2527), - [anon_sym_do] = ACTIONS(2527), - [anon_sym_if] = ACTIONS(2527), - [anon_sym_match] = ACTIONS(2527), - [anon_sym_LBRACE] = ACTIONS(2529), - [anon_sym_DOT_DOT] = ACTIONS(2527), - [anon_sym_try] = ACTIONS(2527), - [anon_sym_return] = 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), - [anon_sym_null] = ACTIONS(2527), - [anon_sym_true] = ACTIONS(2527), - [anon_sym_false] = ACTIONS(2527), - [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), - [aux_sym__val_number_token4] = ACTIONS(2527), - [aux_sym__val_number_token5] = ACTIONS(2527), - [aux_sym__val_number_token6] = ACTIONS(2527), - [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), - [sym__str_single_quotes] = ACTIONS(2529), - [sym__str_back_ticks] = ACTIONS(2529), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2529), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2529), - [aux_sym_env_var_token1] = ACTIONS(2527), - [anon_sym_CARET] = ACTIONS(2529), - [aux_sym_command_token1] = ACTIONS(2529), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2529), + [761] = { + [sym_expr_parenthesized] = STATE(1483), + [sym_val_range] = STATE(1778), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1778), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1778), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1590), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(761), + [aux_sym_ctrl_do_repeat2] = STATE(761), + [sym__newline] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_err_GT_PIPE] = ACTIONS(2659), + [anon_sym_out_GT_PIPE] = ACTIONS(2659), + [anon_sym_e_GT_PIPE] = ACTIONS(2659), + [anon_sym_o_GT_PIPE] = ACTIONS(2659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2661), + [anon_sym_LPAREN] = ACTIONS(2664), + [anon_sym_RPAREN] = ACTIONS(2659), + [anon_sym_DOLLAR] = ACTIONS(2667), + [anon_sym_DASH_DASH] = ACTIONS(2670), + [anon_sym_DASH2] = ACTIONS(2673), + [anon_sym_LBRACE] = ACTIONS(2676), + [anon_sym_RBRACE] = ACTIONS(2659), + [anon_sym_DOT_DOT] = ACTIONS(2679), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2682), + [anon_sym_DOT_DOT_LT] = ACTIONS(2682), + [anon_sym_null] = ACTIONS(2685), + [anon_sym_true] = ACTIONS(2688), + [anon_sym_false] = ACTIONS(2688), + [aux_sym__val_number_decimal_token1] = ACTIONS(2691), + [aux_sym__val_number_decimal_token2] = ACTIONS(2694), + [aux_sym__val_number_decimal_token3] = ACTIONS(2697), + [aux_sym__val_number_decimal_token4] = ACTIONS(2700), + [aux_sym__val_number_token1] = ACTIONS(2703), + [aux_sym__val_number_token2] = ACTIONS(2703), + [aux_sym__val_number_token3] = ACTIONS(2703), + [aux_sym__val_number_token4] = ACTIONS(2706), + [aux_sym__val_number_token5] = ACTIONS(2706), + [aux_sym__val_number_token6] = ACTIONS(2706), + [anon_sym_0b] = ACTIONS(2709), + [anon_sym_0o] = ACTIONS(2712), + [anon_sym_0x] = ACTIONS(2712), + [sym_val_date] = ACTIONS(2715), + [anon_sym_DQUOTE] = ACTIONS(2718), + [sym__str_single_quotes] = ACTIONS(2721), + [sym__str_back_ticks] = ACTIONS(2721), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2724), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2727), + [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(2733), + [anon_sym_out_GT_GT] = ACTIONS(2733), + [anon_sym_e_GT_GT] = ACTIONS(2733), + [anon_sym_o_GT_GT] = ACTIONS(2733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2733), + [aux_sym_unquoted_token1] = ACTIONS(2736), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2739), }, - [783] = { - [sym_comment] = STATE(783), + [762] = { + [sym_comment] = STATE(762), [aux_sym_cmd_identifier_token1] = ACTIONS(1270), [aux_sym_cmd_identifier_token2] = ACTIONS(1268), [aux_sym_cmd_identifier_token3] = ACTIONS(1268), @@ -163003,30450 +161332,31310 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1268), }, + [763] = { + [sym_comment] = STATE(763), + [aux_sym_cmd_identifier_token1] = ACTIONS(2742), + [aux_sym_cmd_identifier_token2] = ACTIONS(2744), + [aux_sym_cmd_identifier_token3] = ACTIONS(2744), + [aux_sym_cmd_identifier_token4] = ACTIONS(2744), + [aux_sym_cmd_identifier_token5] = ACTIONS(2744), + [aux_sym_cmd_identifier_token6] = ACTIONS(2744), + [aux_sym_cmd_identifier_token7] = ACTIONS(2744), + [aux_sym_cmd_identifier_token8] = ACTIONS(2744), + [aux_sym_cmd_identifier_token9] = ACTIONS(2742), + [aux_sym_cmd_identifier_token10] = ACTIONS(2744), + [aux_sym_cmd_identifier_token11] = ACTIONS(2744), + [aux_sym_cmd_identifier_token12] = ACTIONS(2744), + [aux_sym_cmd_identifier_token13] = ACTIONS(2742), + [aux_sym_cmd_identifier_token14] = ACTIONS(2744), + [aux_sym_cmd_identifier_token15] = ACTIONS(2742), + [aux_sym_cmd_identifier_token16] = ACTIONS(2744), + [aux_sym_cmd_identifier_token17] = ACTIONS(2744), + [aux_sym_cmd_identifier_token18] = ACTIONS(2742), + [aux_sym_cmd_identifier_token19] = ACTIONS(2744), + [aux_sym_cmd_identifier_token20] = ACTIONS(2744), + [aux_sym_cmd_identifier_token21] = ACTIONS(2744), + [aux_sym_cmd_identifier_token22] = ACTIONS(2744), + [aux_sym_cmd_identifier_token23] = ACTIONS(2744), + [aux_sym_cmd_identifier_token24] = ACTIONS(2744), + [aux_sym_cmd_identifier_token25] = ACTIONS(2744), + [aux_sym_cmd_identifier_token26] = ACTIONS(2744), + [aux_sym_cmd_identifier_token27] = ACTIONS(2744), + [aux_sym_cmd_identifier_token28] = ACTIONS(2744), + [aux_sym_cmd_identifier_token29] = ACTIONS(2744), + [aux_sym_cmd_identifier_token30] = ACTIONS(2744), + [aux_sym_cmd_identifier_token31] = ACTIONS(2744), + [aux_sym_cmd_identifier_token32] = ACTIONS(2742), + [aux_sym_cmd_identifier_token33] = ACTIONS(2744), + [aux_sym_cmd_identifier_token34] = ACTIONS(2742), + [aux_sym_cmd_identifier_token35] = ACTIONS(2744), + [aux_sym_cmd_identifier_token36] = ACTIONS(2744), + [aux_sym_cmd_identifier_token37] = ACTIONS(2744), + [aux_sym_cmd_identifier_token38] = ACTIONS(2742), + [aux_sym_cmd_identifier_token39] = ACTIONS(2744), + [aux_sym_cmd_identifier_token40] = ACTIONS(2744), + [sym__newline] = 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_LBRACK] = ACTIONS(2744), + [anon_sym_LPAREN] = ACTIONS(2744), + [anon_sym_DOLLAR] = ACTIONS(2742), + [anon_sym_DASH2] = ACTIONS(2742), + [anon_sym_break] = ACTIONS(2742), + [anon_sym_continue] = ACTIONS(2742), + [anon_sym_do] = ACTIONS(2742), + [anon_sym_if] = ACTIONS(2742), + [anon_sym_match] = ACTIONS(2742), + [anon_sym_LBRACE] = ACTIONS(2744), + [anon_sym_DOT_DOT] = ACTIONS(2742), + [anon_sym_try] = ACTIONS(2742), + [anon_sym_return] = ACTIONS(2742), + [anon_sym_where] = ACTIONS(2744), + [aux_sym_expr_unary_token1] = ACTIONS(2744), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2744), + [anon_sym_DOT_DOT_LT] = ACTIONS(2744), + [anon_sym_null] = ACTIONS(2742), + [anon_sym_true] = ACTIONS(2742), + [anon_sym_false] = ACTIONS(2742), + [aux_sym__val_number_decimal_token1] = ACTIONS(2742), + [aux_sym__val_number_decimal_token2] = ACTIONS(2744), + [aux_sym__val_number_decimal_token3] = ACTIONS(2744), + [aux_sym__val_number_decimal_token4] = ACTIONS(2744), + [aux_sym__val_number_token1] = ACTIONS(2744), + [aux_sym__val_number_token2] = ACTIONS(2744), + [aux_sym__val_number_token3] = ACTIONS(2744), + [aux_sym__val_number_token4] = ACTIONS(2742), + [aux_sym__val_number_token5] = ACTIONS(2742), + [aux_sym__val_number_token6] = ACTIONS(2742), + [anon_sym_0b] = ACTIONS(2742), + [anon_sym_0o] = ACTIONS(2742), + [anon_sym_0x] = ACTIONS(2742), + [sym_val_date] = ACTIONS(2744), + [anon_sym_DQUOTE] = ACTIONS(2744), + [sym__str_single_quotes] = ACTIONS(2744), + [sym__str_back_ticks] = ACTIONS(2744), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2744), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2744), + [aux_sym_env_var_token1] = ACTIONS(2742), + [anon_sym_CARET] = ACTIONS(2744), + [aux_sym_command_token1] = ACTIONS(2744), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2744), + }, + [764] = { + [sym_expr_parenthesized] = STATE(1483), + [sym_val_range] = STATE(1778), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1778), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1778), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1590), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(764), + [aux_sym_ctrl_do_repeat2] = STATE(761), + [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_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2746), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2746), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), + }, + [765] = { + [sym_expr_parenthesized] = STATE(1548), + [sym_val_range] = STATE(1906), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1906), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1906), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1617), + [sym__unquoted_with_expr] = STATE(1925), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(765), + [aux_sym_shebang_repeat1] = STATE(1040), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(766), + [sym__newline] = ACTIONS(2748), + [anon_sym_SEMI] = ACTIONS(2751), + [anon_sym_PIPE] = ACTIONS(2751), + [anon_sym_err_GT_PIPE] = ACTIONS(2751), + [anon_sym_out_GT_PIPE] = ACTIONS(2751), + [anon_sym_e_GT_PIPE] = ACTIONS(2751), + [anon_sym_o_GT_PIPE] = ACTIONS(2751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2751), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2751), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), + }, + [766] = { + [sym_expr_parenthesized] = STATE(1548), + [sym_val_range] = STATE(1906), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1906), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1906), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1617), + [sym__unquoted_with_expr] = STATE(1925), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(766), + [aux_sym_shebang_repeat1] = STATE(1040), + [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(766), + [sym__newline] = ACTIONS(2753), + [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_LBRACK] = ACTIONS(2758), + [anon_sym_LPAREN] = ACTIONS(2761), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(2764), + [anon_sym_DASH_DASH] = ACTIONS(2767), + [anon_sym_DASH2] = ACTIONS(2770), + [anon_sym_LBRACE] = ACTIONS(2773), + [anon_sym_DOT_DOT] = ACTIONS(2776), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2779), + [anon_sym_DOT_DOT_LT] = ACTIONS(2779), + [anon_sym_null] = ACTIONS(2782), + [anon_sym_true] = ACTIONS(2785), + [anon_sym_false] = ACTIONS(2785), + [aux_sym__val_number_decimal_token1] = ACTIONS(2788), + [aux_sym__val_number_decimal_token2] = ACTIONS(2791), + [aux_sym__val_number_decimal_token3] = ACTIONS(2794), + [aux_sym__val_number_decimal_token4] = ACTIONS(2797), + [aux_sym__val_number_token1] = ACTIONS(2800), + [aux_sym__val_number_token2] = ACTIONS(2800), + [aux_sym__val_number_token3] = ACTIONS(2800), + [aux_sym__val_number_token4] = ACTIONS(2803), + [aux_sym__val_number_token5] = ACTIONS(2803), + [aux_sym__val_number_token6] = ACTIONS(2803), + [anon_sym_0b] = ACTIONS(2806), + [anon_sym_0o] = ACTIONS(2809), + [anon_sym_0x] = ACTIONS(2809), + [sym_val_date] = ACTIONS(2812), + [anon_sym_DQUOTE] = ACTIONS(2815), + [sym__str_single_quotes] = ACTIONS(2818), + [sym__str_back_ticks] = ACTIONS(2818), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2821), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2824), + [anon_sym_err_GT] = ACTIONS(2827), + [anon_sym_out_GT] = ACTIONS(2827), + [anon_sym_e_GT] = ACTIONS(2827), + [anon_sym_o_GT] = ACTIONS(2827), + [anon_sym_err_PLUSout_GT] = ACTIONS(2827), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2827), + [anon_sym_o_PLUSe_GT] = ACTIONS(2827), + [anon_sym_e_PLUSo_GT] = ACTIONS(2827), + [anon_sym_err_GT_GT] = ACTIONS(2830), + [anon_sym_out_GT_GT] = ACTIONS(2830), + [anon_sym_e_GT_GT] = ACTIONS(2830), + [anon_sym_o_GT_GT] = ACTIONS(2830), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2830), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2830), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2830), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2830), + [aux_sym_unquoted_token1] = ACTIONS(2833), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2836), + }, + [767] = { + [sym_expr_parenthesized] = STATE(1483), + [sym_val_range] = STATE(1778), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1778), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1778), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1590), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(767), + [aux_sym_ctrl_do_repeat2] = STATE(772), + [sym__newline] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2839), + [anon_sym_err_GT_PIPE] = ACTIONS(2839), + [anon_sym_out_GT_PIPE] = ACTIONS(2839), + [anon_sym_e_GT_PIPE] = ACTIONS(2839), + [anon_sym_o_GT_PIPE] = ACTIONS(2839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2839), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2839), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), + }, + [768] = { + [sym_comment] = STATE(768), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(2841), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2843), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_COLON2] = ACTIONS(1605), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), + }, + [769] = { + [sym_comment] = STATE(769), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(2845), + [aux_sym__immediate_decimal_token2] = ACTIONS(2847), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_COLON2] = ACTIONS(1597), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(3), + }, + [770] = { + [sym_comment] = STATE(770), + [aux_sym_cmd_identifier_token1] = ACTIONS(2514), + [aux_sym_cmd_identifier_token2] = ACTIONS(2516), + [aux_sym_cmd_identifier_token3] = ACTIONS(2516), + [aux_sym_cmd_identifier_token4] = ACTIONS(2516), + [aux_sym_cmd_identifier_token5] = ACTIONS(2516), + [aux_sym_cmd_identifier_token6] = ACTIONS(2516), + [aux_sym_cmd_identifier_token7] = ACTIONS(2516), + [aux_sym_cmd_identifier_token8] = ACTIONS(2516), + [aux_sym_cmd_identifier_token9] = ACTIONS(2514), + [aux_sym_cmd_identifier_token10] = ACTIONS(2516), + [aux_sym_cmd_identifier_token11] = ACTIONS(2516), + [aux_sym_cmd_identifier_token12] = ACTIONS(2516), + [aux_sym_cmd_identifier_token13] = ACTIONS(2514), + [aux_sym_cmd_identifier_token14] = ACTIONS(2516), + [aux_sym_cmd_identifier_token15] = ACTIONS(2514), + [aux_sym_cmd_identifier_token16] = ACTIONS(2516), + [aux_sym_cmd_identifier_token17] = ACTIONS(2516), + [aux_sym_cmd_identifier_token18] = ACTIONS(2514), + [aux_sym_cmd_identifier_token19] = ACTIONS(2516), + [aux_sym_cmd_identifier_token20] = ACTIONS(2516), + [aux_sym_cmd_identifier_token21] = ACTIONS(2516), + [aux_sym_cmd_identifier_token22] = ACTIONS(2516), + [aux_sym_cmd_identifier_token23] = ACTIONS(2516), + [aux_sym_cmd_identifier_token24] = ACTIONS(2516), + [aux_sym_cmd_identifier_token25] = ACTIONS(2516), + [aux_sym_cmd_identifier_token26] = ACTIONS(2516), + [aux_sym_cmd_identifier_token27] = ACTIONS(2516), + [aux_sym_cmd_identifier_token28] = ACTIONS(2516), + [aux_sym_cmd_identifier_token29] = ACTIONS(2516), + [aux_sym_cmd_identifier_token30] = ACTIONS(2516), + [aux_sym_cmd_identifier_token31] = ACTIONS(2516), + [aux_sym_cmd_identifier_token32] = ACTIONS(2514), + [aux_sym_cmd_identifier_token33] = ACTIONS(2516), + [aux_sym_cmd_identifier_token34] = ACTIONS(2514), + [aux_sym_cmd_identifier_token35] = ACTIONS(2516), + [aux_sym_cmd_identifier_token36] = ACTIONS(2516), + [aux_sym_cmd_identifier_token37] = ACTIONS(2516), + [aux_sym_cmd_identifier_token38] = ACTIONS(2514), + [aux_sym_cmd_identifier_token39] = ACTIONS(2516), + [aux_sym_cmd_identifier_token40] = ACTIONS(2516), + [sym__newline] = ACTIONS(2516), + [anon_sym_PIPE] = ACTIONS(2516), + [anon_sym_err_GT_PIPE] = ACTIONS(2516), + [anon_sym_out_GT_PIPE] = ACTIONS(2516), + [anon_sym_e_GT_PIPE] = ACTIONS(2516), + [anon_sym_o_GT_PIPE] = ACTIONS(2516), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2516), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2516), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2516), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2516), + [anon_sym_LBRACK] = ACTIONS(2516), + [anon_sym_LPAREN] = ACTIONS(2516), + [anon_sym_DOLLAR] = ACTIONS(2514), + [anon_sym_DASH2] = ACTIONS(2514), + [anon_sym_break] = ACTIONS(2514), + [anon_sym_continue] = ACTIONS(2514), + [anon_sym_do] = ACTIONS(2514), + [anon_sym_if] = ACTIONS(2514), + [anon_sym_match] = ACTIONS(2514), + [anon_sym_LBRACE] = ACTIONS(2516), + [anon_sym_DOT_DOT] = ACTIONS(2514), + [anon_sym_try] = ACTIONS(2514), + [anon_sym_return] = ACTIONS(2514), + [anon_sym_where] = ACTIONS(2516), + [aux_sym_expr_unary_token1] = ACTIONS(2516), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2516), + [anon_sym_DOT_DOT_LT] = ACTIONS(2516), + [anon_sym_null] = ACTIONS(2514), + [anon_sym_true] = ACTIONS(2514), + [anon_sym_false] = ACTIONS(2514), + [aux_sym__val_number_decimal_token1] = ACTIONS(2514), + [aux_sym__val_number_decimal_token2] = ACTIONS(2516), + [aux_sym__val_number_decimal_token3] = ACTIONS(2516), + [aux_sym__val_number_decimal_token4] = ACTIONS(2516), + [aux_sym__val_number_token1] = ACTIONS(2516), + [aux_sym__val_number_token2] = ACTIONS(2516), + [aux_sym__val_number_token3] = ACTIONS(2516), + [aux_sym__val_number_token4] = ACTIONS(2514), + [aux_sym__val_number_token5] = ACTIONS(2514), + [aux_sym__val_number_token6] = ACTIONS(2514), + [anon_sym_0b] = ACTIONS(2514), + [anon_sym_0o] = ACTIONS(2514), + [anon_sym_0x] = ACTIONS(2514), + [sym_val_date] = ACTIONS(2516), + [anon_sym_DQUOTE] = ACTIONS(2516), + [sym__str_single_quotes] = ACTIONS(2516), + [sym__str_back_ticks] = ACTIONS(2516), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2516), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2516), + [aux_sym_env_var_token1] = ACTIONS(2514), + [anon_sym_CARET] = ACTIONS(2516), + [aux_sym_command_token1] = ACTIONS(2516), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2516), + }, + [771] = { + [sym_comment] = STATE(771), + [aux_sym_cmd_identifier_token1] = ACTIONS(2849), + [aux_sym_cmd_identifier_token2] = ACTIONS(2851), + [aux_sym_cmd_identifier_token3] = ACTIONS(2851), + [aux_sym_cmd_identifier_token4] = ACTIONS(2851), + [aux_sym_cmd_identifier_token5] = ACTIONS(2851), + [aux_sym_cmd_identifier_token6] = ACTIONS(2851), + [aux_sym_cmd_identifier_token7] = ACTIONS(2851), + [aux_sym_cmd_identifier_token8] = ACTIONS(2851), + [aux_sym_cmd_identifier_token9] = ACTIONS(2849), + [aux_sym_cmd_identifier_token10] = ACTIONS(2851), + [aux_sym_cmd_identifier_token11] = ACTIONS(2851), + [aux_sym_cmd_identifier_token12] = ACTIONS(2851), + [aux_sym_cmd_identifier_token13] = ACTIONS(2849), + [aux_sym_cmd_identifier_token14] = ACTIONS(2851), + [aux_sym_cmd_identifier_token15] = ACTIONS(2849), + [aux_sym_cmd_identifier_token16] = ACTIONS(2851), + [aux_sym_cmd_identifier_token17] = ACTIONS(2851), + [aux_sym_cmd_identifier_token18] = ACTIONS(2849), + [aux_sym_cmd_identifier_token19] = ACTIONS(2851), + [aux_sym_cmd_identifier_token20] = ACTIONS(2851), + [aux_sym_cmd_identifier_token21] = ACTIONS(2851), + [aux_sym_cmd_identifier_token22] = ACTIONS(2851), + [aux_sym_cmd_identifier_token23] = ACTIONS(2851), + [aux_sym_cmd_identifier_token24] = ACTIONS(2851), + [aux_sym_cmd_identifier_token25] = ACTIONS(2851), + [aux_sym_cmd_identifier_token26] = ACTIONS(2851), + [aux_sym_cmd_identifier_token27] = ACTIONS(2851), + [aux_sym_cmd_identifier_token28] = ACTIONS(2851), + [aux_sym_cmd_identifier_token29] = ACTIONS(2851), + [aux_sym_cmd_identifier_token30] = ACTIONS(2851), + [aux_sym_cmd_identifier_token31] = ACTIONS(2851), + [aux_sym_cmd_identifier_token32] = ACTIONS(2849), + [aux_sym_cmd_identifier_token33] = ACTIONS(2851), + [aux_sym_cmd_identifier_token34] = ACTIONS(2849), + [aux_sym_cmd_identifier_token35] = ACTIONS(2851), + [aux_sym_cmd_identifier_token36] = ACTIONS(2851), + [aux_sym_cmd_identifier_token37] = ACTIONS(2851), + [aux_sym_cmd_identifier_token38] = ACTIONS(2849), + [aux_sym_cmd_identifier_token39] = ACTIONS(2851), + [aux_sym_cmd_identifier_token40] = ACTIONS(2851), + [sym__newline] = ACTIONS(1268), + [anon_sym_PIPE] = ACTIONS(1268), + [anon_sym_err_GT_PIPE] = ACTIONS(1268), + [anon_sym_out_GT_PIPE] = ACTIONS(1268), + [anon_sym_e_GT_PIPE] = ACTIONS(1268), + [anon_sym_o_GT_PIPE] = ACTIONS(1268), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1268), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1268), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1268), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1268), + [anon_sym_LBRACK] = ACTIONS(2851), + [anon_sym_LPAREN] = ACTIONS(2851), + [anon_sym_DOLLAR] = ACTIONS(2849), + [anon_sym_DASH2] = ACTIONS(2849), + [anon_sym_break] = ACTIONS(2849), + [anon_sym_continue] = ACTIONS(2849), + [anon_sym_do] = ACTIONS(2849), + [anon_sym_if] = ACTIONS(2849), + [anon_sym_match] = ACTIONS(2849), + [anon_sym_LBRACE] = ACTIONS(2851), + [anon_sym_DOT_DOT] = ACTIONS(2849), + [anon_sym_try] = ACTIONS(2849), + [anon_sym_return] = ACTIONS(2849), + [anon_sym_where] = ACTIONS(2851), + [aux_sym_expr_unary_token1] = ACTIONS(2851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2851), + [anon_sym_DOT_DOT_LT] = ACTIONS(2851), + [anon_sym_null] = ACTIONS(2849), + [anon_sym_true] = ACTIONS(2849), + [anon_sym_false] = ACTIONS(2849), + [aux_sym__val_number_decimal_token1] = ACTIONS(2849), + [aux_sym__val_number_decimal_token2] = ACTIONS(2851), + [aux_sym__val_number_decimal_token3] = ACTIONS(2851), + [aux_sym__val_number_decimal_token4] = ACTIONS(2851), + [aux_sym__val_number_token1] = ACTIONS(2851), + [aux_sym__val_number_token2] = ACTIONS(2851), + [aux_sym__val_number_token3] = ACTIONS(2851), + [aux_sym__val_number_token4] = ACTIONS(2849), + [aux_sym__val_number_token5] = ACTIONS(2849), + [aux_sym__val_number_token6] = ACTIONS(2849), + [anon_sym_0b] = ACTIONS(2849), + [anon_sym_0o] = ACTIONS(2849), + [anon_sym_0x] = ACTIONS(2849), + [sym_val_date] = ACTIONS(2851), + [anon_sym_DQUOTE] = ACTIONS(2851), + [sym__str_single_quotes] = ACTIONS(2851), + [sym__str_back_ticks] = ACTIONS(2851), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2851), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2851), + [aux_sym_env_var_token1] = ACTIONS(2849), + [anon_sym_CARET] = ACTIONS(2851), + [aux_sym_command_token1] = ACTIONS(2851), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2851), + }, + [772] = { + [sym_expr_parenthesized] = STATE(1483), + [sym_val_range] = STATE(1778), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1778), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1778), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1590), + [sym__unquoted_with_expr] = STATE(1784), + [sym__unquoted_anonymous_prefix] = STATE(6646), + [sym_comment] = STATE(772), + [aux_sym_ctrl_do_repeat2] = STATE(761), + [sym__newline] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_err_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_GT_PIPE] = ACTIONS(2657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_RPAREN] = ACTIONS(2657), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_RBRACE] = ACTIONS(2657), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), + }, + [773] = { + [sym_expr_parenthesized] = STATE(1538), + [sym_val_range] = STATE(1890), + [sym__val_range] = STATE(7715), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(1890), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1688), + [sym_val_variable] = STATE(1593), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1328), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym__flag] = STATE(1890), + [sym_short_flag] = STATE(1827), + [sym_long_flag] = STATE(1827), + [sym_unquoted] = STATE(1629), + [sym__unquoted_with_expr] = STATE(1884), + [sym__unquoted_anonymous_prefix] = STATE(6736), + [sym_comment] = STATE(773), + [aux_sym_ctrl_do_repeat2] = STATE(782), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_DASH2] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(2865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_LT] = ACTIONS(2867), + [anon_sym_null] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [aux_sym__val_number_decimal_token1] = ACTIONS(2873), + [aux_sym__val_number_decimal_token2] = ACTIONS(2875), + [aux_sym__val_number_decimal_token3] = ACTIONS(2877), + [aux_sym__val_number_decimal_token4] = ACTIONS(2879), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(2883), + [aux_sym__val_number_token5] = ACTIONS(2883), + [aux_sym__val_number_token6] = ACTIONS(2883), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), + }, + [774] = { + [sym_expr_parenthesized] = STATE(1538), + [sym_val_range] = STATE(1890), + [sym__val_range] = STATE(7715), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(1890), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1688), + [sym_val_variable] = STATE(1593), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1328), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym__flag] = STATE(1890), + [sym_short_flag] = STATE(1827), + [sym_long_flag] = STATE(1827), + [sym_unquoted] = STATE(1629), + [sym__unquoted_with_expr] = STATE(1884), + [sym__unquoted_anonymous_prefix] = STATE(6736), + [sym_comment] = STATE(774), + [aux_sym_ctrl_do_repeat2] = STATE(782), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym__newline] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_err_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_GT_PIPE] = ACTIONS(2657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_DASH2] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(2865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_LT] = ACTIONS(2867), + [anon_sym_null] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [aux_sym__val_number_decimal_token1] = ACTIONS(2873), + [aux_sym__val_number_decimal_token2] = ACTIONS(2875), + [aux_sym__val_number_decimal_token3] = ACTIONS(2877), + [aux_sym__val_number_decimal_token4] = ACTIONS(2879), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(2883), + [aux_sym__val_number_token5] = ACTIONS(2883), + [aux_sym__val_number_token6] = ACTIONS(2883), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), + }, + [775] = { + [sym_comment] = STATE(775), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(2903), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2905), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), + }, + [776] = { + [sym_comment] = STATE(776), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(2907), + [aux_sym__immediate_decimal_token2] = ACTIONS(2909), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(3), + }, + [777] = { + [sym_comment] = STATE(777), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2843), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_COLON2] = ACTIONS(1605), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), + }, + [778] = { + [sym_comment] = STATE(778), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(2911), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_COLON2] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), + }, + [779] = { + [sym_comment] = STATE(779), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(2913), + [aux_sym__immediate_decimal_token2] = ACTIONS(2915), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(3), + }, + [780] = { + [sym_expr_parenthesized] = STATE(1538), + [sym_val_range] = STATE(1890), + [sym__val_range] = STATE(7715), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(1890), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1688), + [sym_val_variable] = STATE(1593), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1328), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym__flag] = STATE(1890), + [sym_short_flag] = STATE(1827), + [sym_long_flag] = STATE(1827), + [sym_unquoted] = STATE(1629), + [sym__unquoted_with_expr] = STATE(1884), + [sym__unquoted_anonymous_prefix] = STATE(6736), + [sym_comment] = STATE(780), + [aux_sym_ctrl_do_repeat2] = STATE(774), + [ts_builtin_sym_end] = ACTIONS(2839), + [sym__newline] = ACTIONS(2839), + [anon_sym_SEMI] = ACTIONS(2839), + [anon_sym_PIPE] = ACTIONS(2839), + [anon_sym_err_GT_PIPE] = ACTIONS(2839), + [anon_sym_out_GT_PIPE] = ACTIONS(2839), + [anon_sym_e_GT_PIPE] = ACTIONS(2839), + [anon_sym_o_GT_PIPE] = ACTIONS(2839), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2839), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2839), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2839), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2839), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_DASH2] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(2865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_LT] = ACTIONS(2867), + [anon_sym_null] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [aux_sym__val_number_decimal_token1] = ACTIONS(2873), + [aux_sym__val_number_decimal_token2] = ACTIONS(2875), + [aux_sym__val_number_decimal_token3] = ACTIONS(2877), + [aux_sym__val_number_decimal_token4] = ACTIONS(2879), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(2883), + [aux_sym__val_number_token5] = ACTIONS(2883), + [aux_sym__val_number_token6] = ACTIONS(2883), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), + }, + [781] = { + [sym_comment] = STATE(781), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(2917), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2919), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), + }, + [782] = { + [sym_expr_parenthesized] = STATE(1538), + [sym_val_range] = STATE(1890), + [sym__val_range] = STATE(7715), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(1890), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1688), + [sym_val_variable] = STATE(1593), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1328), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym__flag] = STATE(1890), + [sym_short_flag] = STATE(1827), + [sym_long_flag] = STATE(1827), + [sym_unquoted] = STATE(1629), + [sym__unquoted_with_expr] = STATE(1884), + [sym__unquoted_anonymous_prefix] = STATE(6736), + [sym_comment] = STATE(782), + [aux_sym_ctrl_do_repeat2] = STATE(782), + [ts_builtin_sym_end] = ACTIONS(2659), + [sym__newline] = ACTIONS(2659), + [anon_sym_SEMI] = ACTIONS(2659), + [anon_sym_PIPE] = ACTIONS(2659), + [anon_sym_err_GT_PIPE] = ACTIONS(2659), + [anon_sym_out_GT_PIPE] = ACTIONS(2659), + [anon_sym_e_GT_PIPE] = ACTIONS(2659), + [anon_sym_o_GT_PIPE] = ACTIONS(2659), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2659), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2659), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2659), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2659), + [anon_sym_LBRACK] = ACTIONS(2921), + [anon_sym_LPAREN] = ACTIONS(2924), + [anon_sym_DOLLAR] = ACTIONS(2927), + [anon_sym_DASH_DASH] = ACTIONS(2930), + [anon_sym_DASH2] = ACTIONS(2933), + [anon_sym_LBRACE] = ACTIONS(2936), + [anon_sym_DOT_DOT] = ACTIONS(2939), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2942), + [anon_sym_DOT_DOT_LT] = ACTIONS(2942), + [anon_sym_null] = ACTIONS(2945), + [anon_sym_true] = ACTIONS(2948), + [anon_sym_false] = ACTIONS(2948), + [aux_sym__val_number_decimal_token1] = ACTIONS(2951), + [aux_sym__val_number_decimal_token2] = ACTIONS(2954), + [aux_sym__val_number_decimal_token3] = ACTIONS(2957), + [aux_sym__val_number_decimal_token4] = ACTIONS(2960), + [aux_sym__val_number_token1] = ACTIONS(2963), + [aux_sym__val_number_token2] = ACTIONS(2963), + [aux_sym__val_number_token3] = ACTIONS(2963), + [aux_sym__val_number_token4] = ACTIONS(2966), + [aux_sym__val_number_token5] = ACTIONS(2966), + [aux_sym__val_number_token6] = ACTIONS(2966), + [anon_sym_0b] = ACTIONS(2969), + [anon_sym_0o] = ACTIONS(2972), + [anon_sym_0x] = ACTIONS(2972), + [sym_val_date] = ACTIONS(2975), + [anon_sym_DQUOTE] = ACTIONS(2978), + [sym__str_single_quotes] = ACTIONS(2981), + [sym__str_back_ticks] = ACTIONS(2981), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2984), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2987), + [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(2733), + [anon_sym_out_GT_GT] = ACTIONS(2733), + [anon_sym_e_GT_GT] = ACTIONS(2733), + [anon_sym_o_GT_GT] = ACTIONS(2733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2733), + [aux_sym_unquoted_token1] = ACTIONS(2990), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2993), + }, + [783] = { + [sym_expr_parenthesized] = STATE(1538), + [sym_val_range] = STATE(1890), + [sym__val_range] = STATE(7715), + [sym__val_range_with_end] = STATE(7320), + [sym__value] = STATE(1890), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1688), + [sym_val_variable] = STATE(1593), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1328), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym__flag] = STATE(1890), + [sym_short_flag] = STATE(1827), + [sym_long_flag] = STATE(1827), + [sym_unquoted] = STATE(1629), + [sym__unquoted_with_expr] = STATE(1884), + [sym__unquoted_anonymous_prefix] = STATE(6736), + [sym_comment] = STATE(783), + [aux_sym_ctrl_do_repeat2] = STATE(773), + [ts_builtin_sym_end] = ACTIONS(2657), + [sym__newline] = ACTIONS(2657), + [anon_sym_SEMI] = ACTIONS(2657), + [anon_sym_PIPE] = ACTIONS(2657), + [anon_sym_err_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_GT_PIPE] = ACTIONS(2657), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2657), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2657), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2657), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2657), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(2855), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(2859), + [anon_sym_DASH2] = ACTIONS(2861), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(2865), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2867), + [anon_sym_DOT_DOT_LT] = ACTIONS(2867), + [anon_sym_null] = ACTIONS(2869), + [anon_sym_true] = ACTIONS(2871), + [anon_sym_false] = ACTIONS(2871), + [aux_sym__val_number_decimal_token1] = ACTIONS(2873), + [aux_sym__val_number_decimal_token2] = ACTIONS(2875), + [aux_sym__val_number_decimal_token3] = ACTIONS(2877), + [aux_sym__val_number_decimal_token4] = ACTIONS(2879), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(2883), + [aux_sym__val_number_token5] = ACTIONS(2883), + [aux_sym__val_number_token6] = ACTIONS(2883), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(2889), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2899), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), + }, [784] = { - [sym_expr_parenthesized] = STATE(1574), - [sym_val_range] = STATE(1904), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1904), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1904), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1685), - [sym__unquoted_with_expr] = STATE(1907), - [sym__unquoted_anonymous_prefix] = STATE(6658), [sym_comment] = STATE(784), - [aux_sym_shebang_repeat1] = STATE(1053), - [aux_sym_ctrl_do_parenthesized_repeat3] = STATE(778), - [sym__newline] = ACTIONS(2857), - [anon_sym_SEMI] = ACTIONS(2860), - [anon_sym_PIPE] = ACTIONS(2860), - [anon_sym_err_GT_PIPE] = ACTIONS(2860), - [anon_sym_out_GT_PIPE] = ACTIONS(2860), - [anon_sym_e_GT_PIPE] = ACTIONS(2860), - [anon_sym_o_GT_PIPE] = ACTIONS(2860), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2860), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2860), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2860), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2860), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_RPAREN] = ACTIONS(2860), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(2996), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2998), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), }, [785] = { [sym_comment] = STATE(785), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2862), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2864), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_COLON2] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3000), + [aux_sym__immediate_decimal_token2] = ACTIONS(3002), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [786] = { - [sym_expr_parenthesized] = STATE(1551), - [sym_val_range] = STATE(1884), - [sym__val_range] = STATE(7740), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(1884), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1669), - [sym_val_variable] = STATE(1573), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1338), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym__flag] = STATE(1884), - [sym_short_flag] = STATE(1897), - [sym_long_flag] = STATE(1897), - [sym_unquoted] = STATE(1672), - [sym__unquoted_with_expr] = STATE(1886), - [sym__unquoted_anonymous_prefix] = STATE(6804), [sym_comment] = STATE(786), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2866), - [anon_sym_LPAREN] = ACTIONS(2869), - [anon_sym_DOLLAR] = ACTIONS(2872), - [anon_sym_DASH_DASH] = ACTIONS(2875), - [anon_sym_DASH2] = ACTIONS(2878), - [anon_sym_LBRACE] = ACTIONS(2881), - [anon_sym_DOT_DOT] = ACTIONS(2884), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2887), - [anon_sym_DOT_DOT_LT] = ACTIONS(2887), - [anon_sym_null] = ACTIONS(2890), - [anon_sym_true] = ACTIONS(2893), - [anon_sym_false] = ACTIONS(2893), - [aux_sym__val_number_decimal_token1] = ACTIONS(2896), - [aux_sym__val_number_decimal_token2] = ACTIONS(2899), - [aux_sym__val_number_decimal_token3] = ACTIONS(2902), - [aux_sym__val_number_decimal_token4] = ACTIONS(2905), - [aux_sym__val_number_token1] = ACTIONS(2908), - [aux_sym__val_number_token2] = ACTIONS(2908), - [aux_sym__val_number_token3] = ACTIONS(2908), - [aux_sym__val_number_token4] = ACTIONS(2911), - [aux_sym__val_number_token5] = ACTIONS(2911), - [aux_sym__val_number_token6] = ACTIONS(2911), - [anon_sym_0b] = ACTIONS(2914), - [anon_sym_0o] = ACTIONS(2917), - [anon_sym_0x] = ACTIONS(2917), - [sym_val_date] = ACTIONS(2920), - [anon_sym_DQUOTE] = ACTIONS(2923), - [sym__str_single_quotes] = ACTIONS(2926), - [sym__str_back_ticks] = ACTIONS(2926), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2929), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2932), - [anon_sym_err_GT] = ACTIONS(2677), - [anon_sym_out_GT] = ACTIONS(2677), - [anon_sym_e_GT] = ACTIONS(2677), - [anon_sym_o_GT] = ACTIONS(2677), - [anon_sym_err_PLUSout_GT] = ACTIONS(2677), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2677), - [anon_sym_o_PLUSe_GT] = ACTIONS(2677), - [anon_sym_e_PLUSo_GT] = ACTIONS(2677), - [anon_sym_err_GT_GT] = ACTIONS(2680), - [anon_sym_out_GT_GT] = ACTIONS(2680), - [anon_sym_e_GT_GT] = ACTIONS(2680), - [anon_sym_o_GT_GT] = ACTIONS(2680), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2680), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2680), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2680), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2680), - [aux_sym_unquoted_token1] = ACTIONS(2935), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2938), + [anon_sym_STAR_STAR] = ACTIONS(3004), + [anon_sym_PLUS_PLUS] = ACTIONS(3004), + [anon_sym_STAR] = ACTIONS(3006), + [anon_sym_SLASH] = ACTIONS(3006), + [anon_sym_mod] = ACTIONS(3004), + [anon_sym_SLASH_SLASH] = ACTIONS(3004), + [anon_sym_PLUS] = ACTIONS(3006), + [anon_sym_DASH] = ACTIONS(3004), + [anon_sym_bit_DASHshl] = ACTIONS(3004), + [anon_sym_bit_DASHshr] = ACTIONS(3004), + [anon_sym_EQ_TILDE] = ACTIONS(3004), + [anon_sym_BANG_TILDE] = ACTIONS(3004), + [anon_sym_bit_DASHand] = ACTIONS(3004), + [anon_sym_bit_DASHxor] = ACTIONS(3004), + [anon_sym_bit_DASHor] = ACTIONS(3004), + [anon_sym_and] = ACTIONS(3004), + [anon_sym_xor] = ACTIONS(3004), + [anon_sym_or] = ACTIONS(3004), + [anon_sym_in] = ACTIONS(3004), + [anon_sym_not_DASHin] = ACTIONS(3004), + [anon_sym_starts_DASHwith] = ACTIONS(3004), + [anon_sym_ends_DASHwith] = ACTIONS(3004), + [anon_sym_EQ_EQ] = ACTIONS(3004), + [anon_sym_BANG_EQ] = ACTIONS(3004), + [anon_sym_LT] = ACTIONS(3006), + [anon_sym_LT_EQ] = ACTIONS(3004), + [anon_sym_GT] = ACTIONS(3006), + [anon_sym_GT_EQ] = ACTIONS(3004), + [aux_sym_cmd_identifier_token41] = ACTIONS(3008), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3014), + [sym_duration_unit] = ACTIONS(3016), + [anon_sym_COLON2] = ACTIONS(1663), + [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(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), }, [787] = { - [sym_expr_parenthesized] = STATE(1551), - [sym_val_range] = STATE(1884), - [sym__val_range] = STATE(7740), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(1884), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1669), - [sym_val_variable] = STATE(1573), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1338), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym__flag] = STATE(1884), - [sym_short_flag] = STATE(1897), - [sym_long_flag] = STATE(1897), - [sym_unquoted] = STATE(1672), - [sym__unquoted_with_expr] = STATE(1886), - [sym__unquoted_anonymous_prefix] = STATE(6804), [sym_comment] = STATE(787), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(2751), - [sym__newline] = ACTIONS(2751), - [anon_sym_SEMI] = ACTIONS(2751), - [anon_sym_PIPE] = ACTIONS(2751), - [anon_sym_err_GT_PIPE] = ACTIONS(2751), - [anon_sym_out_GT_PIPE] = ACTIONS(2751), - [anon_sym_e_GT_PIPE] = ACTIONS(2751), - [anon_sym_o_GT_PIPE] = ACTIONS(2751), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2751), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2751), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2751), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2751), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_DASH2] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [anon_sym_null] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [aux_sym__val_number_decimal_token1] = ACTIONS(2961), - [aux_sym__val_number_decimal_token2] = ACTIONS(2963), - [aux_sym__val_number_decimal_token3] = ACTIONS(2965), - [aux_sym__val_number_decimal_token4] = ACTIONS(2967), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(2971), - [aux_sym__val_number_token5] = ACTIONS(2971), - [aux_sym__val_number_token6] = ACTIONS(2971), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3018), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), }, [788] = { - [sym_expr_parenthesized] = STATE(1551), - [sym_val_range] = STATE(1884), - [sym__val_range] = STATE(7740), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(1884), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1669), - [sym_val_variable] = STATE(1573), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1338), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym__flag] = STATE(1884), - [sym_short_flag] = STATE(1897), - [sym_long_flag] = STATE(1897), - [sym_unquoted] = STATE(1672), - [sym__unquoted_with_expr] = STATE(1886), - [sym__unquoted_anonymous_prefix] = STATE(6804), [sym_comment] = STATE(788), - [aux_sym_ctrl_do_repeat2] = STATE(786), - [ts_builtin_sym_end] = ACTIONS(2749), - [sym__newline] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_err_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_GT_PIPE] = ACTIONS(2749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_DASH2] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [anon_sym_null] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [aux_sym__val_number_decimal_token1] = ACTIONS(2961), - [aux_sym__val_number_decimal_token2] = ACTIONS(2963), - [aux_sym__val_number_decimal_token3] = ACTIONS(2965), - [aux_sym__val_number_decimal_token4] = ACTIONS(2967), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(2971), - [aux_sym__val_number_token5] = ACTIONS(2971), - [aux_sym__val_number_token6] = ACTIONS(2971), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_COLON2] = ACTIONS(1685), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), }, [789] = { [sym_comment] = STATE(789), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2991), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2993), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2919), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [790] = { - [sym_expr_parenthesized] = STATE(1551), - [sym_val_range] = STATE(1884), - [sym__val_range] = STATE(7740), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(1884), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1669), - [sym_val_variable] = STATE(1573), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1338), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym__flag] = STATE(1884), - [sym_short_flag] = STATE(1897), - [sym_long_flag] = STATE(1897), - [sym_unquoted] = STATE(1672), - [sym__unquoted_with_expr] = STATE(1886), - [sym__unquoted_anonymous_prefix] = STATE(6804), [sym_comment] = STATE(790), - [aux_sym_ctrl_do_repeat2] = STATE(788), - [ts_builtin_sym_end] = ACTIONS(2693), - [sym__newline] = ACTIONS(2693), - [anon_sym_SEMI] = ACTIONS(2693), - [anon_sym_PIPE] = ACTIONS(2693), - [anon_sym_err_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_GT_PIPE] = ACTIONS(2693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2693), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_DASH2] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [anon_sym_null] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [aux_sym__val_number_decimal_token1] = ACTIONS(2961), - [aux_sym__val_number_decimal_token2] = ACTIONS(2963), - [aux_sym__val_number_decimal_token3] = ACTIONS(2965), - [aux_sym__val_number_decimal_token4] = ACTIONS(2967), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(2971), - [aux_sym__val_number_token5] = ACTIONS(2971), - [aux_sym__val_number_token6] = ACTIONS(2971), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_COLON2] = ACTIONS(1605), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(3), }, [791] = { [sym_comment] = STATE(791), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(2995), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2997), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_COLON2] = ACTIONS(1597), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [792] = { [sym_comment] = STATE(792), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(2999), - [aux_sym__immediate_decimal_token2] = ACTIONS(3001), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_COLON2] = ACTIONS(1727), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1727), + [anon_sym_out_GT_GT] = ACTIONS(1727), + [anon_sym_e_GT_GT] = ACTIONS(1727), + [anon_sym_o_GT_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), }, [793] = { - [sym_expr_parenthesized] = STATE(1551), - [sym_val_range] = STATE(1884), - [sym__val_range] = STATE(7740), - [sym__val_range_with_end] = STATE(7326), - [sym__value] = STATE(1884), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1669), - [sym_val_variable] = STATE(1573), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1338), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym__flag] = STATE(1884), - [sym_short_flag] = STATE(1897), - [sym_long_flag] = STATE(1897), - [sym_unquoted] = STATE(1672), - [sym__unquoted_with_expr] = STATE(1886), - [sym__unquoted_anonymous_prefix] = STATE(6804), [sym_comment] = STATE(793), - [aux_sym_ctrl_do_repeat2] = STATE(787), - [ts_builtin_sym_end] = ACTIONS(2749), - [sym__newline] = ACTIONS(2749), - [anon_sym_SEMI] = ACTIONS(2749), - [anon_sym_PIPE] = ACTIONS(2749), - [anon_sym_err_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_GT_PIPE] = ACTIONS(2749), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2749), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2749), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2749), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2749), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(2943), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(2947), - [anon_sym_DASH2] = ACTIONS(2949), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(2953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2955), - [anon_sym_DOT_DOT_LT] = ACTIONS(2955), - [anon_sym_null] = ACTIONS(2957), - [anon_sym_true] = ACTIONS(2959), - [anon_sym_false] = ACTIONS(2959), - [aux_sym__val_number_decimal_token1] = ACTIONS(2961), - [aux_sym__val_number_decimal_token2] = ACTIONS(2963), - [aux_sym__val_number_decimal_token3] = ACTIONS(2965), - [aux_sym__val_number_decimal_token4] = ACTIONS(2967), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(2971), - [aux_sym__val_number_token5] = ACTIONS(2971), - [aux_sym__val_number_token6] = ACTIONS(2971), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2987), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3020), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), }, [794] = { [sym_comment] = STATE(794), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3003), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3005), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2905), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [795] = { [sym_comment] = STATE(795), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3007), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_COLON2] = ACTIONS(1667), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(2998), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [796] = { [sym_comment] = STATE(796), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3009), - [aux_sym__immediate_decimal_token2] = ACTIONS(3011), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3022), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3024), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [797] = { [sym_comment] = STATE(797), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2864), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_COLON2] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3026), + [aux_sym__immediate_decimal_token2] = ACTIONS(3028), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [798] = { [sym_comment] = STATE(798), - [ts_builtin_sym_end] = ACTIONS(1597), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3013), - [aux_sym__immediate_decimal_token2] = ACTIONS(3015), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3030), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [799] = { [sym_comment] = STATE(799), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_COLON2] = ACTIONS(1733), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1733), - [anon_sym_out_GT_GT] = ACTIONS(1733), - [anon_sym_e_GT_GT] = ACTIONS(1733), - [anon_sym_o_GT_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3032), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3034), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [800] = { [sym_comment] = STATE(800), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3017), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3019), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [801] = { [sym_comment] = STATE(801), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3021), - [aux_sym__immediate_decimal_token2] = ACTIONS(3023), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1727), + [anon_sym_out_GT_GT] = ACTIONS(1727), + [anon_sym_e_GT_GT] = ACTIONS(1727), + [anon_sym_o_GT_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), }, [802] = { [sym_comment] = STATE(802), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2993), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [803] = { [sym_comment] = STATE(803), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(2997), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [804] = { [sym_comment] = STATE(804), - [anon_sym_STAR_STAR] = ACTIONS(3025), - [anon_sym_PLUS_PLUS] = ACTIONS(3025), - [anon_sym_STAR] = ACTIONS(3027), - [anon_sym_SLASH] = ACTIONS(3027), - [anon_sym_mod] = ACTIONS(3025), - [anon_sym_SLASH_SLASH] = ACTIONS(3025), - [anon_sym_PLUS] = ACTIONS(3027), - [anon_sym_DASH] = ACTIONS(3025), - [anon_sym_bit_DASHshl] = ACTIONS(3025), - [anon_sym_bit_DASHshr] = ACTIONS(3025), - [anon_sym_EQ_TILDE] = ACTIONS(3025), - [anon_sym_BANG_TILDE] = ACTIONS(3025), - [anon_sym_bit_DASHand] = ACTIONS(3025), - [anon_sym_bit_DASHxor] = ACTIONS(3025), - [anon_sym_bit_DASHor] = ACTIONS(3025), - [anon_sym_and] = ACTIONS(3025), - [anon_sym_xor] = ACTIONS(3025), - [anon_sym_or] = ACTIONS(3025), - [anon_sym_in] = ACTIONS(3025), - [anon_sym_not_DASHin] = ACTIONS(3025), - [anon_sym_starts_DASHwith] = ACTIONS(3025), - [anon_sym_ends_DASHwith] = ACTIONS(3025), - [anon_sym_EQ_EQ] = ACTIONS(3025), - [anon_sym_BANG_EQ] = ACTIONS(3025), - [anon_sym_LT] = ACTIONS(3027), - [anon_sym_LT_EQ] = ACTIONS(3025), - [anon_sym_GT] = ACTIONS(3027), - [anon_sym_GT_EQ] = ACTIONS(3025), - [aux_sym_cmd_identifier_token41] = ACTIONS(3029), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3035), - [sym_duration_unit] = ACTIONS(3037), - [anon_sym_COLON2] = ACTIONS(1681), - [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(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_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [805] = { [sym_comment] = STATE(805), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3039), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [806] = { [sym_comment] = STATE(806), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3041), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1727), + [anon_sym_out_GT_GT] = ACTIONS(1727), + [anon_sym_e_GT_GT] = ACTIONS(1727), + [anon_sym_o_GT_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), }, [807] = { [sym_comment] = STATE(807), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_COLON2] = ACTIONS(1587), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_mod] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_bit_DASHshl] = ACTIONS(3036), + [anon_sym_bit_DASHshr] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_BANG_TILDE] = ACTIONS(3036), + [anon_sym_bit_DASHand] = ACTIONS(3036), + [anon_sym_bit_DASHxor] = ACTIONS(3036), + [anon_sym_bit_DASHor] = ACTIONS(3036), + [anon_sym_and] = ACTIONS(3036), + [anon_sym_xor] = ACTIONS(3036), + [anon_sym_or] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_not_DASHin] = ACTIONS(3036), + [anon_sym_starts_DASHwith] = ACTIONS(3036), + [anon_sym_ends_DASHwith] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3036), + [aux_sym_cmd_identifier_token41] = ACTIONS(3040), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3044), + [sym_filesize_unit] = ACTIONS(3046), + [sym_duration_unit] = ACTIONS(3048), + [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(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), }, [808] = { [sym_comment] = STATE(808), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3043), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [809] = { [sym_comment] = STATE(809), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_COLON2] = ACTIONS(1595), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3050), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [810] = { [sym_comment] = STATE(810), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3005), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [811] = { [sym_comment] = STATE(811), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_COLON2] = ACTIONS(1667), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3052), + [aux_sym__immediate_decimal_token2] = ACTIONS(3054), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [812] = { [sym_comment] = STATE(812), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [813] = { [sym_comment] = STATE(813), - [ts_builtin_sym_end] = ACTIONS(1597), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3062), + [sym_duration_unit] = ACTIONS(3064), + [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(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), }, [814] = { [sym_comment] = STATE(814), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3045), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3047), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3066), + [sym_duration_unit] = ACTIONS(3068), + [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(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), }, [815] = { [sym_comment] = STATE(815), - [ts_builtin_sym_end] = ACTIONS(1693), - [anon_sym_STAR_STAR] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_mod] = ACTIONS(3049), - [anon_sym_SLASH_SLASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_bit_DASHshl] = ACTIONS(3049), - [anon_sym_bit_DASHshr] = ACTIONS(3049), - [anon_sym_EQ_TILDE] = ACTIONS(3049), - [anon_sym_BANG_TILDE] = ACTIONS(3049), - [anon_sym_bit_DASHand] = ACTIONS(3049), - [anon_sym_bit_DASHxor] = ACTIONS(3049), - [anon_sym_bit_DASHor] = ACTIONS(3049), - [anon_sym_and] = ACTIONS(3049), - [anon_sym_xor] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_not_DASHin] = ACTIONS(3049), - [anon_sym_starts_DASHwith] = ACTIONS(3049), - [anon_sym_ends_DASHwith] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3049), - [aux_sym_cmd_identifier_token41] = ACTIONS(3053), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), - [sym_filesize_unit] = ACTIONS(3059), - [sym_duration_unit] = ACTIONS(3061), - [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(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), + [ts_builtin_sym_end] = ACTIONS(1729), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1727), + [anon_sym_out_GT_GT] = ACTIONS(1727), + [anon_sym_e_GT_GT] = ACTIONS(1727), + [anon_sym_o_GT_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), }, [816] = { [sym_comment] = STATE(816), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3063), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [817] = { [sym_comment] = STATE(817), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3019), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3024), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [818] = { [sym_comment] = STATE(818), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [819] = { [sym_comment] = STATE(819), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3071), - [sym_duration_unit] = ACTIONS(3073), - [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(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_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3070), + [sym_duration_unit] = ACTIONS(3072), + [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(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), }, [820] = { [sym_comment] = STATE(820), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3075), - [sym_duration_unit] = ACTIONS(3077), - [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(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_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [821] = { [sym_comment] = STATE(821), - [ts_builtin_sym_end] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1733), - [anon_sym_out_GT_GT] = ACTIONS(1733), - [anon_sym_e_GT_GT] = ACTIONS(1733), - [anon_sym_o_GT_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), - }, - [822] = { - [sym_comment] = STATE(822), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), - }, - [823] = { - [sym_comment] = STATE(823), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1733), - [anon_sym_out_GT_GT] = ACTIONS(1733), - [anon_sym_e_GT_GT] = ACTIONS(1733), - [anon_sym_o_GT_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(3), + }, + [822] = { + [sym_comment] = STATE(822), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3074), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(3), + }, + [823] = { + [sym_comment] = STATE(823), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3034), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [824] = { [sym_comment] = STATE(824), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1727), + [anon_sym_out_GT_GT] = ACTIONS(1727), + [anon_sym_e_GT_GT] = ACTIONS(1727), + [anon_sym_o_GT_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(3), }, [825] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7396), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(825), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [aux_sym_shebang_repeat1] = STATE(860), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3078), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [826] = { [sym_comment] = STATE(826), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3079), - [aux_sym__immediate_decimal_token2] = ACTIONS(3081), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3120), + [sym_duration_unit] = ACTIONS(3122), + [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(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), }, [827] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7089), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7493), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(827), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1733), - [anon_sym_out_GT_GT] = ACTIONS(1733), - [anon_sym_e_GT_GT] = ACTIONS(1733), - [anon_sym_o_GT_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(869), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3126), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [828] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7142), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7551), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(828), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [aux_sym_shebang_repeat1] = STATE(875), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3128), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [829] = { [sym_comment] = STATE(829), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1685), + [anon_sym_out_GT_GT] = ACTIONS(1685), + [anon_sym_e_GT_GT] = ACTIONS(1685), + [anon_sym_o_GT_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(3), }, [830] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7061), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7624), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(830), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(866), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3130), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [831] = { [sym_comment] = STATE(831), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3047), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1605), + [anon_sym_out_GT_GT] = ACTIONS(1605), + [anon_sym_e_GT_GT] = ACTIONS(1605), + [anon_sym_o_GT_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(3), }, [832] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7437), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(832), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [aux_sym_shebang_repeat1] = STATE(860), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3132), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [833] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7150), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7602), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(833), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(876), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3134), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [834] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7719), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(834), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3083), - [sym_duration_unit] = ACTIONS(3085), - [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(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), + [aux_sym_shebang_repeat1] = STATE(860), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [835] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7017), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7612), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(835), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(864), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3138), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [836] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7098), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7645), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(836), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = ACTIONS(1667), - [sym__newline] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3087), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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), + [aux_sym_shebang_repeat1] = STATE(870), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3140), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [837] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7156), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7655), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(837), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1733), - [anon_sym_out_GT_GT] = ACTIONS(1733), - [anon_sym_e_GT_GT] = ACTIONS(1733), - [anon_sym_o_GT_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(877), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3142), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [838] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7726), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7164), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7727), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(838), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3091), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(878), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3144), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [839] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7568), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7052), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7567), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(839), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3133), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(865), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3146), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [840] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7473), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(840), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1733), - [anon_sym_out_GT_GT] = ACTIONS(1733), - [anon_sym_e_GT_GT] = ACTIONS(1733), - [anon_sym_o_GT_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(860), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3148), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [841] = { [sym_comment] = STATE(841), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1595), - [anon_sym_out_GT_GT] = ACTIONS(1595), - [anon_sym_e_GT_GT] = ACTIONS(1595), - [anon_sym_o_GT_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1595), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [anon_sym_err_GT_GT] = ACTIONS(1597), + [anon_sym_out_GT_GT] = ACTIONS(1597), + [anon_sym_e_GT_GT] = ACTIONS(1597), + [anon_sym_o_GT_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(3), }, [842] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7073), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7462), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7109), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7423), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(842), - [aux_sym_shebang_repeat1] = STATE(872), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3137), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(871), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3150), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [843] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(6972), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7745), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7080), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7432), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(843), - [aux_sym_shebang_repeat1] = STATE(880), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(868), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3152), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [844] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7084), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7743), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7071), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7456), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(844), - [aux_sym_shebang_repeat1] = STATE(882), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3141), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(867), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3154), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [845] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7092), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7584), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(6954), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7719), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(845), - [aux_sym_shebang_repeat1] = STATE(883), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3143), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(863), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3136), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [846] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(6972), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7497), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(6954), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7666), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(846), - [aux_sym_shebang_repeat1] = STATE(880), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3145), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(863), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3156), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [847] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7099), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7625), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7125), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7481), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(847), - [aux_sym_shebang_repeat1] = STATE(884), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3147), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(873), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3158), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [848] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7108), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7538), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(848), - [aux_sym_shebang_repeat1] = STATE(885), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3149), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1727), + [anon_sym_out_GT_GT] = ACTIONS(1727), + [anon_sym_e_GT_GT] = ACTIONS(1727), + [anon_sym_o_GT_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(3), }, [849] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7116), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7690), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7562), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(849), - [aux_sym_shebang_repeat1] = STATE(886), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3151), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(860), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_RBRACK] = ACTIONS(3160), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [850] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7125), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7401), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(6756), + [sym__spread_list] = STATE(7263), + [sym_list_body] = STATE(7729), + [sym_val_entry] = STATE(6771), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(850), - [aux_sym_shebang_repeat1] = STATE(887), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3153), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(859), + [aux_sym_parameter_repeat2] = STATE(6329), + [aux_sym_list_body_repeat1] = STATE(889), + [sym__newline] = ACTIONS(2527), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_RBRACK] = ACTIONS(3162), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_COMMA] = ACTIONS(2535), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [851] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7143), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7472), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(851), - [aux_sym_shebang_repeat1] = STATE(889), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3155), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_mod] = ACTIONS(3164), + [anon_sym_SLASH_SLASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_bit_DASHshl] = ACTIONS(3164), + [anon_sym_bit_DASHshr] = ACTIONS(3164), + [anon_sym_EQ_TILDE] = ACTIONS(3164), + [anon_sym_BANG_TILDE] = ACTIONS(3164), + [anon_sym_bit_DASHand] = ACTIONS(3164), + [anon_sym_bit_DASHxor] = ACTIONS(3164), + [anon_sym_bit_DASHor] = ACTIONS(3164), + [anon_sym_and] = ACTIONS(3164), + [anon_sym_xor] = ACTIONS(3164), + [anon_sym_or] = ACTIONS(3164), + [anon_sym_in] = ACTIONS(3164), + [anon_sym_not_DASHin] = ACTIONS(3164), + [anon_sym_starts_DASHwith] = ACTIONS(3164), + [anon_sym_ends_DASHwith] = ACTIONS(3164), + [anon_sym_EQ_EQ] = ACTIONS(3164), + [anon_sym_BANG_EQ] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3164), + [aux_sym_cmd_identifier_token41] = ACTIONS(3168), + [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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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(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(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), }, [852] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7159), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7560), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(852), - [aux_sym_shebang_repeat1] = STATE(891), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3157), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(2196), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(3), }, [853] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7166), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7616), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(853), - [aux_sym_shebang_repeat1] = STATE(873), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3159), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(2202), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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(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(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), }, [854] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(6904), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7722), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(854), - [aux_sym_shebang_repeat1] = STATE(878), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3161), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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(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(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), }, [855] = { [sym_comment] = STATE(855), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = ACTIONS(1667), - [sym__newline] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(3), }, [856] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7173), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7668), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(856), - [aux_sym_shebang_repeat1] = STATE(874), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3163), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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(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(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), }, [857] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7180), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7725), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(857), - [aux_sym_shebang_repeat1] = STATE(876), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3165), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(3164), + [anon_sym_PLUS_PLUS] = ACTIONS(3164), + [anon_sym_STAR] = ACTIONS(3166), + [anon_sym_SLASH] = ACTIONS(3166), + [anon_sym_mod] = ACTIONS(3164), + [anon_sym_SLASH_SLASH] = ACTIONS(3164), + [anon_sym_PLUS] = ACTIONS(3166), + [anon_sym_DASH] = ACTIONS(3164), + [anon_sym_bit_DASHshl] = ACTIONS(3164), + [anon_sym_bit_DASHshr] = ACTIONS(3164), + [anon_sym_EQ_TILDE] = ACTIONS(3164), + [anon_sym_BANG_TILDE] = ACTIONS(3164), + [anon_sym_bit_DASHand] = ACTIONS(3164), + [anon_sym_bit_DASHxor] = ACTIONS(3164), + [anon_sym_bit_DASHor] = ACTIONS(3164), + [anon_sym_and] = ACTIONS(3164), + [anon_sym_xor] = ACTIONS(3164), + [anon_sym_or] = ACTIONS(3164), + [anon_sym_in] = ACTIONS(3164), + [anon_sym_not_DASHin] = ACTIONS(3164), + [anon_sym_starts_DASHwith] = ACTIONS(3164), + [anon_sym_ends_DASHwith] = ACTIONS(3164), + [anon_sym_EQ_EQ] = ACTIONS(3164), + [anon_sym_BANG_EQ] = ACTIONS(3164), + [anon_sym_LT] = ACTIONS(3166), + [anon_sym_LT_EQ] = ACTIONS(3164), + [anon_sym_GT] = ACTIONS(3166), + [anon_sym_GT_EQ] = ACTIONS(3164), + [aux_sym_cmd_identifier_token41] = ACTIONS(3168), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(3), }, [858] = { [sym_comment] = STATE(858), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = 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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3167), - [sym_duration_unit] = ACTIONS(3169), - [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(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_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(3), }, [859] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7745), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7004), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(859), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3139), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [860] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7729), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(860), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3171), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [861] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7048), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7626), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(861), - [aux_sym_shebang_repeat1] = STATE(881), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_RBRACK] = ACTIONS(3173), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(3), }, [862] = { [sym_comment] = STATE(862), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1587), - [anon_sym_out_GT_GT] = ACTIONS(1587), - [anon_sym_e_GT_GT] = ACTIONS(1587), - [anon_sym_o_GT_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1587), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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(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(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), }, [863] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_list_body] = STATE(7384), - [sym_val_entry] = STATE(6912), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(6973), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(863), - [aux_sym_shebang_repeat1] = STATE(875), - [aux_sym_parameter_repeat2] = STATE(6085), - [aux_sym_list_body_repeat1] = STATE(973), - [sym__newline] = ACTIONS(2537), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_RBRACK] = ACTIONS(3175), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_COMMA] = ACTIONS(2545), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [864] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7020), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(864), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [865] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7054), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(865), - [ts_builtin_sym_end] = ACTIONS(2247), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [866] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7064), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(866), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [867] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7072), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(867), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [868] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7082), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(868), - [ts_builtin_sym_end] = ACTIONS(2241), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [869] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7092), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(869), - [anon_sym_STAR_STAR] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_bit_DASHshl] = ACTIONS(3189), - [anon_sym_bit_DASHshr] = ACTIONS(3189), - [anon_sym_EQ_TILDE] = ACTIONS(3189), - [anon_sym_BANG_TILDE] = ACTIONS(3189), - [anon_sym_bit_DASHand] = ACTIONS(3189), - [anon_sym_bit_DASHxor] = ACTIONS(3189), - [anon_sym_bit_DASHor] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_xor] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_not_DASHin] = ACTIONS(3189), - [anon_sym_starts_DASHwith] = ACTIONS(3189), - [anon_sym_ends_DASHwith] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3189), - [aux_sym_cmd_identifier_token41] = ACTIONS(3193), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [870] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7101), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(870), - [anon_sym_STAR_STAR] = ACTIONS(3189), - [anon_sym_PLUS_PLUS] = ACTIONS(3189), - [anon_sym_STAR] = ACTIONS(3191), - [anon_sym_SLASH] = ACTIONS(3191), - [anon_sym_mod] = ACTIONS(3189), - [anon_sym_SLASH_SLASH] = ACTIONS(3189), - [anon_sym_PLUS] = ACTIONS(3191), - [anon_sym_DASH] = ACTIONS(3189), - [anon_sym_bit_DASHshl] = ACTIONS(3189), - [anon_sym_bit_DASHshr] = ACTIONS(3189), - [anon_sym_EQ_TILDE] = ACTIONS(3189), - [anon_sym_BANG_TILDE] = ACTIONS(3189), - [anon_sym_bit_DASHand] = ACTIONS(3189), - [anon_sym_bit_DASHxor] = ACTIONS(3189), - [anon_sym_bit_DASHor] = ACTIONS(3189), - [anon_sym_and] = ACTIONS(3189), - [anon_sym_xor] = ACTIONS(3189), - [anon_sym_or] = ACTIONS(3189), - [anon_sym_in] = ACTIONS(3189), - [anon_sym_not_DASHin] = ACTIONS(3189), - [anon_sym_starts_DASHwith] = ACTIONS(3189), - [anon_sym_ends_DASHwith] = ACTIONS(3189), - [anon_sym_EQ_EQ] = ACTIONS(3189), - [anon_sym_BANG_EQ] = ACTIONS(3189), - [anon_sym_LT] = ACTIONS(3191), - [anon_sym_LT_EQ] = ACTIONS(3189), - [anon_sym_GT] = ACTIONS(3191), - [anon_sym_GT_EQ] = ACTIONS(3189), - [aux_sym_cmd_identifier_token41] = ACTIONS(3193), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [871] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7112), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(871), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [872] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7075), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7119), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(872), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [873] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7167), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7127), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(873), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [874] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7174), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7135), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(874), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [875] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7143), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(875), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [876] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7181), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7151), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(876), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [877] = { + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7157), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(877), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [878] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7017), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7165), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7015), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(878), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_shebang_repeat1] = STATE(2788), + [aux_sym_list_body_repeat1] = STATE(916), + [sym__newline] = ACTIONS(3182), + [anon_sym_LBRACK] = ACTIONS(3124), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [879] = { [sym_comment] = STATE(879), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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(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(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), }, [880] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(6999), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), [sym_comment] = STATE(880), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(3), }, [881] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3338), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7049), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2177), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(881), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3186), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3204), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [882] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2341), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7087), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(882), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(896), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [883] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2346), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7093), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(883), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(897), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [884] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2257), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7101), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2017), + [sym__unquoted_with_expr] = STATE(2258), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(884), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(898), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [885] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2355), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7109), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2018), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(885), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(899), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [886] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2359), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7118), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(886), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(900), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [887] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2361), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7127), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2020), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(887), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(901), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [888] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2364), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7137), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2025), + [sym__unquoted_with_expr] = STATE(2267), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(888), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(902), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [889] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), [sym__raw_str] = STATE(5129), [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7145), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7044), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(889), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), + [aux_sym_list_body_repeat1] = STATE(917), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [890] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2430), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7154), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2060), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(890), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [891] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2411), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7160), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7034), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2061), + [sym__unquoted_with_expr] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(891), - [aux_sym_shebang_repeat1] = STATE(2797), - [aux_sym_list_body_repeat1] = STATE(1048), - [sym__newline] = ACTIONS(3195), - [anon_sym_LBRACK] = ACTIONS(3135), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [892] = { + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2379), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1940), + [sym__unquoted_with_expr] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(892), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [893] = { + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2324), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(893), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [894] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3280), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2305), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2237), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(894), - [aux_sym_shebang_repeat1] = STATE(994), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [895] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2433), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2345), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1943), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(895), - [aux_sym_shebang_repeat1] = STATE(974), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [896] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2429), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2376), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1944), + [sym__unquoted_with_expr] = STATE(2278), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(896), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [897] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2311), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2404), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2145), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(897), - [aux_sym_shebang_repeat1] = STATE(977), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [898] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2425), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2166), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(898), - [aux_sym_shebang_repeat1] = STATE(1052), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [899] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2365), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2431), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1947), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(899), - [aux_sym_shebang_repeat1] = STATE(1034), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [900] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2398), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2334), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(900), - [aux_sym_shebang_repeat1] = STATE(1035), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [901] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2442), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2408), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1949), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(901), - [aux_sym_shebang_repeat1] = STATE(971), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [902] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2430), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2309), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1950), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(902), - [aux_sym_shebang_repeat1] = STATE(912), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [903] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2367), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1983), - [sym__unquoted_with_expr] = STATE(2228), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2312), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2242), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(903), - [aux_sym_shebang_repeat1] = STATE(1037), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(918), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [904] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2441), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2327), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2246), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(904), - [aux_sym_shebang_repeat1] = STATE(1046), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(919), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [905] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2396), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2177), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2344), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(905), - [aux_sym_shebang_repeat1] = STATE(1032), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(920), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [906] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2416), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2348), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2256), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(906), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(921), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [907] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2174), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2302), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2356), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(907), - [aux_sym_shebang_repeat1] = STATE(1045), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(922), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [908] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2421), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1967), - [sym__unquoted_with_expr] = STATE(2258), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2366), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1956), + [sym__unquoted_with_expr] = STATE(2266), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(908), - [aux_sym_shebang_repeat1] = STATE(906), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(923), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [909] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2373), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2370), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(909), - [aux_sym_shebang_repeat1] = STATE(1038), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(924), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [910] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2417), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2377), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(910), - [aux_sym_shebang_repeat1] = STATE(1051), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(925), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [911] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2440), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2022), - [sym__unquoted_with_expr] = STATE(2179), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2277), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2279), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(911), - [aux_sym_shebang_repeat1] = STATE(896), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(978), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [912] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2334), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2397), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2280), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(912), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(979), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [913] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2316), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2400), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2282), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(913), - [aux_sym_shebang_repeat1] = STATE(1040), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(980), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [914] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3631), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2403), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(914), - [aux_sym_shebang_repeat1] = STATE(927), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(981), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [915] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3632), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2070), - [sym__unquoted_with_expr] = STATE(2300), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2418), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(915), - [aux_sym_shebang_repeat1] = STATE(928), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(982), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [916] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3638), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(6979), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(916), - [aux_sym_shebang_repeat1] = STATE(929), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_list_body_repeat1] = STATE(917), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3086), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3088), + [anon_sym_DOT_DOT_LT] = ACTIONS(3088), + [anon_sym_null] = ACTIONS(3090), + [anon_sym_true] = ACTIONS(3092), + [anon_sym_false] = ACTIONS(3092), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), + [aux_sym__val_number_decimal_token1] = ACTIONS(3094), + [aux_sym__val_number_decimal_token2] = ACTIONS(3096), + [aux_sym__val_number_decimal_token3] = ACTIONS(3098), + [aux_sym__val_number_decimal_token4] = ACTIONS(3100), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3104), + [aux_sym__val_number_token5] = ACTIONS(3104), + [aux_sym__val_number_token6] = ACTIONS(3104), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3110), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_DOT_DOT_DOT_LBRACK] = 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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3116), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [917] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3641), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_parenthesized] = STATE(5931), + [sym__spread_parenthesized] = STATE(7263), + [sym_val_range] = STATE(7342), + [sym__val_range] = STATE(7368), + [sym__val_range_with_end] = STATE(7210), + [sym__value] = STATE(7342), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6105), + [sym__spread_variable] = STATE(7211), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5101), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym__spread_list] = STATE(7263), + [sym_val_entry] = STATE(7244), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_list] = STATE(6313), + [sym__unquoted_in_list_with_expr] = STATE(7342), + [sym__unquoted_anonymous_prefix] = STATE(6781), [sym_comment] = STATE(917), - [aux_sym_shebang_repeat1] = STATE(930), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_list_body_repeat1] = STATE(917), + [anon_sym_LBRACK] = ACTIONS(3228), + [anon_sym_LPAREN] = ACTIONS(3231), + [anon_sym_DOLLAR] = ACTIONS(3234), + [anon_sym_LBRACE] = ACTIONS(3237), + [anon_sym_DOT_DOT] = ACTIONS(3240), + [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3243), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3246), + [anon_sym_DOT_DOT_LT] = ACTIONS(3246), + [anon_sym_null] = ACTIONS(3249), + [anon_sym_true] = ACTIONS(3252), + [anon_sym_false] = ACTIONS(3252), + [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3255), + [aux_sym__val_number_decimal_token1] = ACTIONS(3258), + [aux_sym__val_number_decimal_token2] = ACTIONS(3261), + [aux_sym__val_number_decimal_token3] = ACTIONS(3264), + [aux_sym__val_number_decimal_token4] = ACTIONS(3267), + [aux_sym__val_number_token1] = ACTIONS(3270), + [aux_sym__val_number_token2] = ACTIONS(3270), + [aux_sym__val_number_token3] = ACTIONS(3270), + [aux_sym__val_number_token4] = ACTIONS(3273), + [aux_sym__val_number_token5] = ACTIONS(3273), + [aux_sym__val_number_token6] = ACTIONS(3273), + [anon_sym_0b] = ACTIONS(3276), + [anon_sym_0o] = ACTIONS(3279), + [anon_sym_0x] = ACTIONS(3279), + [sym_val_date] = ACTIONS(3282), + [anon_sym_DQUOTE] = ACTIONS(3285), + [sym__str_single_quotes] = ACTIONS(3288), + [sym__str_back_ticks] = ACTIONS(3288), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3291), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3294), + [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3297), + [anon_sym_err_GT] = ACTIONS(3300), + [anon_sym_out_GT] = ACTIONS(3300), + [anon_sym_e_GT] = ACTIONS(3300), + [anon_sym_o_GT] = ACTIONS(3300), + [anon_sym_err_PLUSout_GT] = ACTIONS(3300), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3300), + [anon_sym_o_PLUSe_GT] = ACTIONS(3300), + [anon_sym_e_PLUSo_GT] = ACTIONS(3300), + [anon_sym_err_GT_GT] = ACTIONS(3303), + [anon_sym_out_GT_GT] = ACTIONS(3303), + [anon_sym_e_GT_GT] = ACTIONS(3303), + [anon_sym_o_GT_GT] = ACTIONS(3303), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3303), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3303), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3303), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3303), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3306), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3309), }, [918] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3655), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2352), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(918), - [aux_sym_shebang_repeat1] = STATE(931), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [919] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3656), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1983), - [sym__unquoted_with_expr] = STATE(2228), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2380), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2167), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(919), - [aux_sym_shebang_repeat1] = STATE(932), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [920] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3667), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2416), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(920), - [aux_sym_shebang_repeat1] = STATE(933), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [921] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3678), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2177), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2300), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1973), + [sym__unquoted_with_expr] = STATE(2172), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(921), - [aux_sym_shebang_repeat1] = STATE(934), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [922] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2174), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2302), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2330), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1975), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(922), - [aux_sym_shebang_repeat1] = STATE(935), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [923] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3628), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1967), - [sym__unquoted_with_expr] = STATE(2258), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2347), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2177), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(923), - [aux_sym_shebang_repeat1] = STATE(936), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [924] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3659), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2363), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(924), - [aux_sym_shebang_repeat1] = STATE(937), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [925] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3662), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2381), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(925), - [aux_sym_shebang_repeat1] = STATE(938), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [926] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3587), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2022), - [sym__unquoted_with_expr] = STATE(2179), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3567), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(926), [aux_sym_shebang_repeat1] = STATE(939), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [927] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3664), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2017), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3568), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2003), [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(927), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(940), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [928] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3666), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2270), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3569), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2243), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(928), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(941), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [929] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3673), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2020), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3570), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(929), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(942), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [930] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3676), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2021), - [sym__unquoted_with_expr] = STATE(2167), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3571), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(930), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(943), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [931] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3558), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2024), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3572), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2251), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(931), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(944), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [932] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3560), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2213), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3574), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(932), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(945), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [933] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3562), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2225), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3575), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(933), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(946), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [934] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3565), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2237), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2257), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2017), + [sym__unquoted_with_expr] = STATE(2258), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(934), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(947), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [935] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2245), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3576), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2018), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(935), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(948), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [936] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3568), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3577), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(936), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(949), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [937] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3570), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3579), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2020), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(937), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(950), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [938] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3572), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1956), - [sym__unquoted_with_expr] = STATE(2219), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3580), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2025), + [sym__unquoted_with_expr] = STATE(2267), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(938), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(951), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [939] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3574), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3589), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2060), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(939), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [940] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3575), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3591), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2061), + [sym__unquoted_with_expr] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(940), - [aux_sym_shebang_repeat1] = STATE(953), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [941] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3576), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3594), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1940), + [sym__unquoted_with_expr] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(941), - [aux_sym_shebang_repeat1] = STATE(954), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [942] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3577), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3596), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(942), - [aux_sym_shebang_repeat1] = STATE(955), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [943] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3578), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3598), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1942), + [sym__unquoted_with_expr] = STATE(2237), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(943), - [aux_sym_shebang_repeat1] = STATE(956), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [944] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3579), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3600), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1943), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(944), - [aux_sym_shebang_repeat1] = STATE(957), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [945] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3580), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1965), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3602), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1944), + [sym__unquoted_with_expr] = STATE(2278), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(945), - [aux_sym_shebang_repeat1] = STATE(958), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [946] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3581), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1966), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3604), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2145), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(946), - [aux_sym_shebang_repeat1] = STATE(959), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [947] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3582), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1968), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2166), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(947), - [aux_sym_shebang_repeat1] = STATE(960), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [948] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2286), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2299), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3606), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1947), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(948), - [aux_sym_shebang_repeat1] = STATE(961), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [949] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3583), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3614), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(949), - [aux_sym_shebang_repeat1] = STATE(962), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [950] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3584), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3620), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1949), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(950), - [aux_sym_shebang_repeat1] = STATE(963), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [951] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3585), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3624), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1950), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(951), - [aux_sym_shebang_repeat1] = STATE(964), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [952] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3586), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1975), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3626), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2242), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(952), [aux_sym_shebang_repeat1] = STATE(965), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [953] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3609), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3656), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2246), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(953), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(966), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [954] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3612), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2265), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3665), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(954), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(967), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [955] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3614), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3608), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2256), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(955), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(968), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [956] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3617), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2276), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3659), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(956), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(969), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [957] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3619), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1991), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3663), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1956), + [sym__unquoted_with_expr] = STATE(2266), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(957), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(970), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [958] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3622), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3546), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(958), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(971), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [959] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3624), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3657), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(959), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(972), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [960] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3626), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1994), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2277), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2279), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(960), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(973), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [961] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2304), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3658), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2280), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(961), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(974), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [962] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3679), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1996), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3660), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2282), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(962), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(975), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [963] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3633), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2248), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3661), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(963), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(976), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [964] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3635), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1998), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2336), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2251), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(964), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(895), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [965] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3639), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3587), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(965), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [966] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2336), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2265), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3607), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2167), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(966), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [967] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2339), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3610), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(967), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [968] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2341), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2276), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3616), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1973), + [sym__unquoted_with_expr] = STATE(2172), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(968), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [969] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2387), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1965), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3622), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1975), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(969), - [aux_sym_shebang_repeat1] = STATE(972), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [970] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2312), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1966), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3628), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1976), + [sym__unquoted_with_expr] = STATE(2177), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(970), - [aux_sym_shebang_repeat1] = STATE(975), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [971] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2343), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1991), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3630), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(971), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [972] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2345), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3633), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(972), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [973] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2188), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7063), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1979), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(973), - [aux_sym_list_body_repeat1] = STATE(1049), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [974] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2355), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2017), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3636), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(974), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [975] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2347), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3638), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(975), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [976] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2349), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1994), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3640), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2196), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(976), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [977] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2361), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2270), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3642), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(977), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [978] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2438), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2188), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1979), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(978), - [aux_sym_shebang_repeat1] = STATE(968), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [979] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2304), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2429), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(979), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [980] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2353), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1996), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2301), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(980), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [981] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3279), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2062), - [sym__unquoted_with_expr] = STATE(2288), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2310), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2196), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(981), - [aux_sym_shebang_repeat1] = STATE(993), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [982] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3281), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2014), - [sym__unquoted_with_expr] = STATE(2240), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2322), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(982), - [aux_sym_shebang_repeat1] = STATE(995), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [983] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3282), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1955), - [sym__unquoted_with_expr] = STATE(2170), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3267), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(983), [aux_sym_shebang_repeat1] = STATE(996), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [984] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3283), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2001), - [sym__unquoted_with_expr] = STATE(2230), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3268), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2003), + [sym__unquoted_with_expr] = STATE(2239), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(984), [aux_sym_shebang_repeat1] = STATE(997), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [985] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3284), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1983), - [sym__unquoted_with_expr] = STATE(2228), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3269), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2243), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(985), [aux_sym_shebang_repeat1] = STATE(998), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [986] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3285), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2010), - [sym__unquoted_with_expr] = STATE(2190), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3270), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(986), [aux_sym_shebang_repeat1] = STATE(999), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [987] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3286), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2036), - [sym__unquoted_with_expr] = STATE(2177), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3271), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(987), [aux_sym_shebang_repeat1] = STATE(1000), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [988] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2174), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1999), - [sym__unquoted_with_expr] = STATE(2302), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3272), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2009), + [sym__unquoted_with_expr] = STATE(2251), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(988), [aux_sym_shebang_repeat1] = STATE(1001), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [989] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3287), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1967), - [sym__unquoted_with_expr] = STATE(2258), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3273), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2010), + [sym__unquoted_with_expr] = STATE(2252), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(989), [aux_sym_shebang_repeat1] = STATE(1002), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [990] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3288), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2003), - [sym__unquoted_with_expr] = STATE(2292), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3274), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2013), + [sym__unquoted_with_expr] = STATE(2255), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(990), [aux_sym_shebang_repeat1] = STATE(1003), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [991] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3289), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2018), - [sym__unquoted_with_expr] = STATE(2163), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2257), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2017), + [sym__unquoted_with_expr] = STATE(2258), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(991), [aux_sym_shebang_repeat1] = STATE(1004), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [992] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3290), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2022), - [sym__unquoted_with_expr] = STATE(2179), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3275), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2018), + [sym__unquoted_with_expr] = STATE(2261), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(992), [aux_sym_shebang_repeat1] = STATE(1005), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [993] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3294), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2017), - [sym__unquoted_with_expr] = STATE(2239), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3276), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2019), + [sym__unquoted_with_expr] = STATE(2262), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(993), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1006), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [994] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3296), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2019), - [sym__unquoted_with_expr] = STATE(2270), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3277), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2020), + [sym__unquoted_with_expr] = STATE(2264), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(994), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1007), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [995] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3298), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2020), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3278), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2025), + [sym__unquoted_with_expr] = STATE(2267), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(995), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1008), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [996] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3300), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2021), - [sym__unquoted_with_expr] = STATE(2167), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3281), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2060), + [sym__unquoted_with_expr] = STATE(2296), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(996), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [997] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3302), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2024), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3283), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2061), + [sym__unquoted_with_expr] = STATE(2143), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(997), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [998] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3304), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2213), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3285), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1940), + [sym__unquoted_with_expr] = STATE(2144), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(998), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [999] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3306), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2225), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3287), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1941), + [sym__unquoted_with_expr] = STATE(2216), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(999), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1000] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3308), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2032), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3289), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1942), [sym__unquoted_with_expr] = STATE(2237), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1000), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1001] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2245), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3291), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1943), + [sym__unquoted_with_expr] = STATE(2260), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1001), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1002] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3310), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2073), - [sym__unquoted_with_expr] = STATE(2305), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3293), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1944), + [sym__unquoted_with_expr] = STATE(2278), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1002), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1003] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3312), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3295), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1945), + [sym__unquoted_with_expr] = STATE(2145), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1003), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1004] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3314), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1956), - [sym__unquoted_with_expr] = STATE(2219), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2166), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1946), + [sym__unquoted_with_expr] = STATE(2179), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1004), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1005] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3316), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1958), - [sym__unquoted_with_expr] = STATE(2267), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3297), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1947), + [sym__unquoted_with_expr] = STATE(2199), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1005), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1006] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3317), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1959), - [sym__unquoted_with_expr] = STATE(2294), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3299), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1948), + [sym__unquoted_with_expr] = STATE(2215), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1006), - [aux_sym_shebang_repeat1] = STATE(1019), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1007] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3318), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3301), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1949), + [sym__unquoted_with_expr] = STATE(2234), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1007), - [aux_sym_shebang_repeat1] = STATE(1020), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1008] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3319), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3303), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1950), + [sym__unquoted_with_expr] = STATE(2236), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1008), - [aux_sym_shebang_repeat1] = STATE(1021), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1009] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3320), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1962), - [sym__unquoted_with_expr] = STATE(2215), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3304), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1951), + [sym__unquoted_with_expr] = STATE(2242), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1009), [aux_sym_shebang_repeat1] = STATE(1022), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1010] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3321), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1963), - [sym__unquoted_with_expr] = STATE(2243), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3305), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1952), + [sym__unquoted_with_expr] = STATE(2246), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1010), [aux_sym_shebang_repeat1] = STATE(1023), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1011] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3322), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1965), - [sym__unquoted_with_expr] = STATE(2216), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3306), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1953), + [sym__unquoted_with_expr] = STATE(2253), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1011), [aux_sym_shebang_repeat1] = STATE(1024), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1012] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3323), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1966), - [sym__unquoted_with_expr] = STATE(2264), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3307), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1954), + [sym__unquoted_with_expr] = STATE(2256), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1012), [aux_sym_shebang_repeat1] = STATE(1025), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1013] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3324), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1968), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3308), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1955), + [sym__unquoted_with_expr] = STATE(2263), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1013), [aux_sym_shebang_repeat1] = STATE(1026), - [sym__newline] = ACTIONS(3197), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1014] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2286), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2299), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3309), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1956), + [sym__unquoted_with_expr] = STATE(2266), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1014), - [aux_sym_shebang_repeat1] = STATE(1027), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(881), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1015] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3325), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3310), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1957), + [sym__unquoted_with_expr] = STATE(2272), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1015), - [aux_sym_shebang_repeat1] = STATE(1028), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1027), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1016] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3326), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3311), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1958), + [sym__unquoted_with_expr] = STATE(2274), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1016), - [aux_sym_shebang_repeat1] = STATE(1029), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1028), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1017] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3327), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1974), - [sym__unquoted_with_expr] = STATE(2283), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2277), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1959), + [sym__unquoted_with_expr] = STATE(2279), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1017), - [aux_sym_shebang_repeat1] = STATE(1030), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1029), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1018] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3328), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1975), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3377), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1960), + [sym__unquoted_with_expr] = STATE(2280), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1018), - [aux_sym_shebang_repeat1] = STATE(1031), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1030), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1019] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3342), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1987), - [sym__unquoted_with_expr] = STATE(2262), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3312), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1961), + [sym__unquoted_with_expr] = STATE(2282), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1019), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1031), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1020] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3344), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1988), - [sym__unquoted_with_expr] = STATE(2265), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3313), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1962), + [sym__unquoted_with_expr] = STATE(2291), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1020), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1032), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1021] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3346), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1989), - [sym__unquoted_with_expr] = STATE(2271), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3314), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1021), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(1033), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1022] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3348), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1990), - [sym__unquoted_with_expr] = STATE(2276), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3328), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1970), + [sym__unquoted_with_expr] = STATE(2164), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1022), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1023] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3350), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1991), - [sym__unquoted_with_expr] = STATE(2280), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3330), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1971), + [sym__unquoted_with_expr] = STATE(2167), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1023), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1024] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3352), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1992), - [sym__unquoted_with_expr] = STATE(2284), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3332), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1972), + [sym__unquoted_with_expr] = STATE(2170), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1024), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1025] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3354), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1993), - [sym__unquoted_with_expr] = STATE(2287), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3334), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1973), + [sym__unquoted_with_expr] = STATE(2172), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1025), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1026] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3356), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1994), - [sym__unquoted_with_expr] = STATE(2295), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3336), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1975), + [sym__unquoted_with_expr] = STATE(2175), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1026), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1027] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2156), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1995), - [sym__unquoted_with_expr] = STATE(2304), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3340), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1977), + [sym__unquoted_with_expr] = STATE(2180), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1027), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1028] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3358), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1996), - [sym__unquoted_with_expr] = STATE(2178), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3342), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1978), + [sym__unquoted_with_expr] = STATE(2185), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1028), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1029] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3360), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2248), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2188), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1979), + [sym__unquoted_with_expr] = STATE(2190), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1029), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1030] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3362), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1998), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3344), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1980), + [sym__unquoted_with_expr] = STATE(2192), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1030), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1031] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(3364), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3346), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1981), + [sym__unquoted_with_expr] = STATE(2194), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1031), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1032] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2394), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2032), - [sym__unquoted_with_expr] = STATE(2237), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3348), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1982), + [sym__unquoted_with_expr] = STATE(2196), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1032), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1033] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2434), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1960), - [sym__unquoted_with_expr] = STATE(2247), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3350), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1983), + [sym__unquoted_with_expr] = STATE(2198), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1033), - [aux_sym_shebang_repeat1] = STATE(966), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(2860), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1034] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2370), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2021), - [sym__unquoted_with_expr] = STATE(2167), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2318), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2002), + [sym__unquoted_with_expr] = STATE(2238), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1034), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(890), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1035] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2376), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2024), - [sym__unquoted_with_expr] = STATE(2183), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2320), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2003), + [sym__unquoted_with_expr] = STATE(2239), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1035), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(891), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1036] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2317), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1975), - [sym__unquoted_with_expr] = STATE(2161), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2323), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2004), + [sym__unquoted_with_expr] = STATE(2243), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1036), - [aux_sym_shebang_repeat1] = STATE(1041), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(892), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1037] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2447), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2025), - [sym__unquoted_with_expr] = STATE(2213), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2329), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2006), + [sym__unquoted_with_expr] = STATE(2245), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1037), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(893), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1038] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2419), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1954), - [sym__unquoted_with_expr] = STATE(2261), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(2332), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(2008), + [sym__unquoted_with_expr] = STATE(2247), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1038), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(894), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1039] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2356), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1997), - [sym__unquoted_with_expr] = STATE(2248), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2317), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary_parenthesized] = STATE(2317), + [sym__expr_binary_expression_parenthesized] = STATE(3662), + [sym_expr_parenthesized] = STATE(2001), + [sym_val_range] = STATE(2317), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2317), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1963), + [sym__unquoted_with_expr] = STATE(2292), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1039), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [aux_sym_shebang_repeat1] = STATE(977), + [sym__newline] = ACTIONS(3184), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1040] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2359), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1998), - [sym__unquoted_with_expr] = STATE(2212), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_parenthesized] = STATE(1555), + [sym_val_range] = STATE(1922), + [sym__val_range] = STATE(7641), + [sym__val_range_with_end] = STATE(7310), + [sym__value] = STATE(1922), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1615), + [sym_val_variable] = STATE(1475), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1235), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym__flag] = STATE(1922), + [sym_short_flag] = STATE(1774), + [sym_long_flag] = STATE(1774), + [sym_unquoted] = STATE(1657), + [sym__unquoted_with_expr] = STATE(1864), + [sym__unquoted_anonymous_prefix] = STATE(6646), [sym_comment] = STATE(1040), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [aux_sym_shebang_repeat1] = STATE(2815), + [sym__newline] = ACTIONS(3332), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(2600), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(2604), + [anon_sym_DASH2] = ACTIONS(2606), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(2610), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2612), + [anon_sym_DOT_DOT_LT] = ACTIONS(2612), + [anon_sym_null] = ACTIONS(2614), + [anon_sym_true] = ACTIONS(2616), + [anon_sym_false] = ACTIONS(2616), + [aux_sym__val_number_decimal_token1] = ACTIONS(2618), + [aux_sym__val_number_decimal_token2] = ACTIONS(2620), + [aux_sym__val_number_decimal_token3] = ACTIONS(2622), + [aux_sym__val_number_decimal_token4] = ACTIONS(2624), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(2628), + [aux_sym__val_number_token5] = ACTIONS(2628), + [aux_sym__val_number_token6] = ACTIONS(2628), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(2634), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2648), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, [1041] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2362), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2000), - [sym__unquoted_with_expr] = STATE(2229), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2505), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2222), + [sym__unquoted_with_expr] = STATE(2506), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1041), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1042] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2286), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1970), - [sym__unquoted_with_expr] = STATE(2299), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2507), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2223), + [sym__unquoted_with_expr] = STATE(2508), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1042), - [aux_sym_shebang_repeat1] = STATE(979), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1043] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2314), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1971), - [sym__unquoted_with_expr] = STATE(2221), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2509), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2225), + [sym__unquoted_with_expr] = STATE(2511), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1043), - [aux_sym_shebang_repeat1] = STATE(980), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1044] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2315), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1972), - [sym__unquoted_with_expr] = STATE(2206), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2526), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2226), + [sym__unquoted_with_expr] = STATE(2528), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1044), - [aux_sym_shebang_repeat1] = STATE(1039), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1045] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2245), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2042), - [sym__unquoted_with_expr] = STATE(2254), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2529), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2297), + [sym__unquoted_with_expr] = STATE(2531), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1045), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1046] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2391), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2027), - [sym__unquoted_with_expr] = STATE(2225), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1046), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [1047] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2313), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1968), - [sym__unquoted_with_expr] = STATE(2273), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1047), - [aux_sym_shebang_repeat1] = STATE(976), - [sym__newline] = ACTIONS(3197), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3724), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1046), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1048] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), - [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(6995), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), - [sym_comment] = STATE(1048), - [aux_sym_list_body_repeat1] = STATE(1049), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3099), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(313), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3101), - [anon_sym_DOT_DOT_LT] = ACTIONS(3101), - [anon_sym_null] = ACTIONS(3103), - [anon_sym_true] = ACTIONS(3105), - [anon_sym_false] = ACTIONS(3105), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(315), - [aux_sym__val_number_decimal_token1] = ACTIONS(3107), - [aux_sym__val_number_decimal_token2] = ACTIONS(3109), - [aux_sym__val_number_decimal_token3] = ACTIONS(3111), - [aux_sym__val_number_decimal_token4] = ACTIONS(3113), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3117), - [aux_sym__val_number_token5] = ACTIONS(3117), - [aux_sym__val_number_token6] = ACTIONS(3117), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3123), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(2585), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3129), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), - }, - [1049] = { - [sym_expr_parenthesized] = STATE(5918), - [sym__spread_parenthesized] = STATE(7376), - [sym_val_range] = STATE(7310), + [1047] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3725), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), [sym__val_range] = STATE(7646), - [sym__val_range_with_end] = STATE(7258), - [sym__value] = STATE(7310), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6108), - [sym__spread_variable] = STATE(7279), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5067), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym__spread_list] = STATE(7376), - [sym_val_entry] = STATE(7262), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_list] = STATE(6539), - [sym__unquoted_in_list_with_expr] = STATE(7310), - [sym__unquoted_anonymous_prefix] = STATE(6930), - [sym_comment] = STATE(1049), - [aux_sym_list_body_repeat1] = STATE(1049), - [anon_sym_LBRACK] = ACTIONS(3261), - [anon_sym_LPAREN] = ACTIONS(3264), - [anon_sym_DOLLAR] = ACTIONS(3267), - [anon_sym_LBRACE] = ACTIONS(3270), - [anon_sym_DOT_DOT] = ACTIONS(3273), - [anon_sym_DOT_DOT_DOT_LPAREN] = ACTIONS(3276), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3279), - [anon_sym_DOT_DOT_LT] = ACTIONS(3279), - [anon_sym_null] = ACTIONS(3282), - [anon_sym_true] = ACTIONS(3285), - [anon_sym_false] = ACTIONS(3285), - [anon_sym_DOT_DOT_DOT_DOLLAR] = ACTIONS(3288), - [aux_sym__val_number_decimal_token1] = ACTIONS(3291), - [aux_sym__val_number_decimal_token2] = ACTIONS(3294), - [aux_sym__val_number_decimal_token3] = ACTIONS(3297), - [aux_sym__val_number_decimal_token4] = ACTIONS(3300), - [aux_sym__val_number_token1] = ACTIONS(3303), - [aux_sym__val_number_token2] = ACTIONS(3303), - [aux_sym__val_number_token3] = ACTIONS(3303), - [aux_sym__val_number_token4] = ACTIONS(3306), - [aux_sym__val_number_token5] = ACTIONS(3306), - [aux_sym__val_number_token6] = ACTIONS(3306), - [anon_sym_0b] = ACTIONS(3309), - [anon_sym_0o] = ACTIONS(3312), - [anon_sym_0x] = ACTIONS(3312), - [sym_val_date] = ACTIONS(3315), - [anon_sym_DQUOTE] = ACTIONS(3318), - [sym__str_single_quotes] = ACTIONS(3321), - [sym__str_back_ticks] = ACTIONS(3321), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3324), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3327), - [anon_sym_DOT_DOT_DOT_LBRACK] = ACTIONS(3330), - [anon_sym_err_GT] = ACTIONS(3333), - [anon_sym_out_GT] = ACTIONS(3333), - [anon_sym_e_GT] = ACTIONS(3333), - [anon_sym_o_GT] = ACTIONS(3333), - [anon_sym_err_PLUSout_GT] = ACTIONS(3333), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3333), - [anon_sym_o_PLUSe_GT] = ACTIONS(3333), - [anon_sym_e_PLUSo_GT] = ACTIONS(3333), - [anon_sym_err_GT_GT] = ACTIONS(3336), - [anon_sym_out_GT_GT] = ACTIONS(3336), - [anon_sym_e_GT_GT] = ACTIONS(3336), - [anon_sym_o_GT_GT] = ACTIONS(3336), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3336), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3336), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3336), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3336), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3339), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3342), - }, - [1050] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2435), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1961), - [sym__unquoted_with_expr] = STATE(2173), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1050), - [aux_sym_shebang_repeat1] = STATE(967), - [sym__newline] = ACTIONS(3197), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1047), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1051] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2427), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1956), - [sym__unquoted_with_expr] = STATE(2219), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1051), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), + [1048] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3726), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1048), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [1049] = { + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3393), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2220), + [sym__unquoted_with_expr] = STATE(2501), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1049), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1050] = { + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3394), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2221), + [sym__unquoted_with_expr] = STATE(2503), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1050), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1051] = { + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3395), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2222), + [sym__unquoted_with_expr] = STATE(2506), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1051), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, [1052] = { - [sym_expr_unary] = STATE(2432), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary_parenthesized] = STATE(2432), - [sym__expr_binary_expression_parenthesized] = STATE(2364), - [sym_expr_parenthesized] = STATE(2056), - [sym_val_range] = STATE(2432), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2432), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(2020), - [sym__unquoted_with_expr] = STATE(2289), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3396), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2223), + [sym__unquoted_with_expr] = STATE(2508), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1052), - [aux_sym_shebang_repeat1] = STATE(2817), - [sym__newline] = ACTIONS(3197), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1053] = { - [sym_expr_parenthesized] = STATE(1565), - [sym_val_range] = STATE(1870), - [sym__val_range] = STATE(7686), - [sym__val_range_with_end] = STATE(7324), - [sym__value] = STATE(1870), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1604), - [sym_val_variable] = STATE(1504), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1293), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym__flag] = STATE(1870), - [sym_short_flag] = STATE(1711), - [sym_long_flag] = STATE(1711), - [sym_unquoted] = STATE(1654), - [sym__unquoted_with_expr] = STATE(1871), - [sym__unquoted_anonymous_prefix] = STATE(6658), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3398), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2225), + [sym__unquoted_with_expr] = STATE(2511), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1053), - [aux_sym_shebang_repeat1] = STATE(2810), - [sym__newline] = ACTIONS(3345), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(2697), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(2701), - [anon_sym_DASH2] = ACTIONS(2703), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(2707), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2709), - [anon_sym_DOT_DOT_LT] = ACTIONS(2709), - [anon_sym_null] = ACTIONS(2711), - [anon_sym_true] = ACTIONS(2713), - [anon_sym_false] = ACTIONS(2713), - [aux_sym__val_number_decimal_token1] = ACTIONS(2715), - [aux_sym__val_number_decimal_token2] = ACTIONS(2717), - [aux_sym__val_number_decimal_token3] = ACTIONS(2719), - [aux_sym__val_number_decimal_token4] = ACTIONS(2721), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(2725), - [aux_sym__val_number_token5] = ACTIONS(2725), - [aux_sym__val_number_token6] = ACTIONS(2725), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(2731), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2745), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, [1054] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3388), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3399), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2226), + [sym__unquoted_with_expr] = STATE(2528), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1054), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1055] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2516), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2208), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3400), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2297), + [sym__unquoted_with_expr] = STATE(2531), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1055), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3356), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3374), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1056] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2506), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2199), - [sym__unquoted_with_expr] = STATE(2507), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3402), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2228), + [sym__unquoted_with_expr] = STATE(2534), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1056), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3356), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3374), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1057] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2508), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2200), - [sym__unquoted_with_expr] = STATE(2509), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2536), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2229), + [sym__unquoted_with_expr] = STATE(2538), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1057), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3356), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3374), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1058] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2401), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3404), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2230), + [sym__unquoted_with_expr] = STATE(2541), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1058), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1059] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2402), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3405), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2231), + [sym__unquoted_with_expr] = STATE(2544), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1059), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1060] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2403), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3401), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2232), + [sym__unquoted_with_expr] = STATE(2437), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1060), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1061] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2404), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(3379), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(3255), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3102), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2233), + [sym__unquoted_with_expr] = STATE(2440), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1061), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3356), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3358), + [anon_sym_DOT_DOT_LT] = ACTIONS(3358), + [anon_sym_null] = ACTIONS(3360), + [anon_sym_true] = ACTIONS(3362), + [anon_sym_false] = ACTIONS(3362), + [aux_sym__val_number_decimal_token1] = ACTIONS(3364), + [aux_sym__val_number_decimal_token2] = ACTIONS(3366), + [aux_sym__val_number_decimal_token3] = ACTIONS(3368), + [aux_sym__val_number_decimal_token4] = ACTIONS(3370), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3372), + [aux_sym__val_number_token5] = ACTIONS(3372), + [aux_sym__val_number_token6] = ACTIONS(3372), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3374), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_raw_string_begin] = ACTIONS(123), }, [1062] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2405), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3727), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1062), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1063] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2406), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3728), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1828), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1063), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1064] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2407), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3729), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1852), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1064), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1065] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2408), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3730), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1065), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1066] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2112), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2114), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3732), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1066), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1067] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2409), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2104), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2062), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1067), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1068] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2410), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3733), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1068), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1069] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2411), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3734), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1069), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1070] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2412), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2096), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(1539), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3735), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1070), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3221), + [anon_sym_DOT_DOT] = ACTIONS(3312), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3223), - [anon_sym_DOT_DOT_LT] = ACTIONS(3223), - [anon_sym_null] = ACTIONS(3225), - [anon_sym_true] = ACTIONS(3227), - [anon_sym_false] = ACTIONS(3227), - [aux_sym__val_number_decimal_token1] = ACTIONS(3229), - [aux_sym__val_number_decimal_token2] = ACTIONS(3231), - [aux_sym__val_number_decimal_token3] = ACTIONS(3233), - [aux_sym__val_number_decimal_token4] = ACTIONS(3235), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3237), - [aux_sym__val_number_token5] = ACTIONS(3237), - [aux_sym__val_number_token6] = ACTIONS(3237), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3239), + [sym_val_date] = ACTIONS(3330), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1071] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2510), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2201), - [sym__unquoted_with_expr] = STATE(2511), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3736), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3534), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3432), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1071), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3312), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3314), + [anon_sym_DOT_DOT_LT] = ACTIONS(3314), + [anon_sym_null] = ACTIONS(3316), + [anon_sym_true] = ACTIONS(3318), + [anon_sym_false] = ACTIONS(3318), + [aux_sym__val_number_decimal_token1] = ACTIONS(3320), + [aux_sym__val_number_decimal_token2] = ACTIONS(3322), + [aux_sym__val_number_decimal_token3] = ACTIONS(3324), + [aux_sym__val_number_decimal_token4] = ACTIONS(3326), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3328), + [aux_sym__val_number_token5] = ACTIONS(3328), + [aux_sym__val_number_token6] = ACTIONS(3328), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3330), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, [1072] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2512), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2202), - [sym__unquoted_with_expr] = STATE(2513), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2532), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2228), + [sym__unquoted_with_expr] = STATE(2534), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1072), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3334), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1073] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2487), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2157), - [sym__unquoted_with_expr] = STATE(2488), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2536), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2229), + [sym__unquoted_with_expr] = STATE(2538), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1073), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3334), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1074] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2489), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2158), - [sym__unquoted_with_expr] = STATE(2490), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2539), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2230), + [sym__unquoted_with_expr] = STATE(2541), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1074), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3334), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1075] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2491), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2159), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2542), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2231), + [sym__unquoted_with_expr] = STATE(2544), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1075), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3334), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1076] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2495), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2162), - [sym__unquoted_with_expr] = STATE(2497), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2436), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2232), + [sym__unquoted_with_expr] = STATE(2437), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1076), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), + [anon_sym_DOT_DOT] = ACTIONS(3334), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), + [sym_val_date] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1077] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3416), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2157), - [sym__unquoted_with_expr] = STATE(2488), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2438), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2233), + [sym__unquoted_with_expr] = STATE(2440), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1077), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), + [anon_sym_DOT_DOT] = ACTIONS(3334), [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), + [sym_val_date] = ACTIONS(3352), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, [1078] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3732), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_ctrl_do] = STATE(4736), + [sym_ctrl_if] = STATE(4736), + [sym_ctrl_match] = STATE(4736), + [sym_ctrl_try] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3156), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), [sym_comment] = STATE(1078), + [sym__newline] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_match] = ACTIONS(3382), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3384), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [aux_sym__val_number_decimal_token1] = ACTIONS(3390), + [aux_sym__val_number_decimal_token2] = ACTIONS(3392), + [aux_sym__val_number_decimal_token3] = ACTIONS(3394), + [aux_sym__val_number_decimal_token4] = ACTIONS(3396), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(235), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_COLON2] = ACTIONS(3398), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1079] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3745), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2385), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1079), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1080] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3749), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2386), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1080), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1081] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3727), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2387), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1081), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1082] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3748), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2388), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1082), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1083] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3723), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2389), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1828), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1083), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1084] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3417), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2158), - [sym__unquoted_with_expr] = STATE(2490), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2390), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1852), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1084), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, [1085] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3728), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2392), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1085), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1086] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3380), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2104), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2062), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1086), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1087] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3381), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2393), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1087), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1088] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3382), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2394), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1088), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1089] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3383), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2395), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1089), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1090] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3384), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2396), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1090), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3208), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3226), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1091] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3385), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2498), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2220), + [sym__unquoted_with_expr] = STATE(2501), + [sym__unquoted_anonymous_prefix] = STATE(6888), [sym_comment] = STATE(1091), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1092] = { + [sym_expr_unary] = STATE(2496), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2496), + [sym__expr_binary_expression] = STATE(2502), + [sym_expr_parenthesized] = STATE(2086), + [sym_val_range] = STATE(2496), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(2496), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2289), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(1602), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(2221), + [sym__unquoted_with_expr] = STATE(2503), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1092), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3334), + [aux_sym_expr_unary_token1] = ACTIONS(83), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3336), + [anon_sym_DOT_DOT_LT] = ACTIONS(3336), + [anon_sym_null] = ACTIONS(3338), + [anon_sym_true] = ACTIONS(3340), + [anon_sym_false] = ACTIONS(3340), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3350), + [aux_sym__val_number_token5] = ACTIONS(3350), + [aux_sym__val_number_token6] = ACTIONS(3350), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3352), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), + }, + [1093] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3362), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1093), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1092] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3386), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1092), + [1094] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3363), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1094), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1093] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3270), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1093), + [1095] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3364), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1095), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1094] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2112), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2114), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1094), + [1096] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3365), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1096), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1095] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3387), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1095), + [1097] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3366), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1828), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1097), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1096] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2498), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2164), - [sym__unquoted_with_expr] = STATE(2499), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1096), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1097] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2500), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2165), - [sym__unquoted_with_expr] = STATE(2505), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1097), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, [1098] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3271), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3367), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1852), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1098), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1099] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3729), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3368), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1099), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1100] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2112), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2114), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3369), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1100), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1101] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3746), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1911), - [sym__unquoted_with_expr] = STATE(2102), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2104), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2062), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1101), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1102] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3734), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1912), - [sym__unquoted_with_expr] = STATE(2104), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3370), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1102), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1103] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3730), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1913), - [sym__unquoted_with_expr] = STATE(2105), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3371), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1103), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1104] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3716), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1914), - [sym__unquoted_with_expr] = STATE(2107), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3372), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1104), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1105] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3718), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1915), - [sym__unquoted_with_expr] = STATE(2108), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3373), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3225), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(2991), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1105), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3186), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3188), + [anon_sym_DOT_DOT_LT] = ACTIONS(3188), + [anon_sym_null] = ACTIONS(3190), + [anon_sym_true] = ACTIONS(3192), + [anon_sym_false] = ACTIONS(3192), + [aux_sym__val_number_decimal_token1] = ACTIONS(3194), + [aux_sym__val_number_decimal_token2] = ACTIONS(3196), + [aux_sym__val_number_decimal_token3] = ACTIONS(3198), + [aux_sym__val_number_decimal_token4] = ACTIONS(3200), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3202), + [aux_sym__val_number_token5] = ACTIONS(3202), + [aux_sym__val_number_token6] = ACTIONS(3202), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3204), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1106] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3719), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1916), - [sym__unquoted_with_expr] = STATE(2109), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3709), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1908), + [sym__unquoted_with_expr] = STATE(2095), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1106), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1107] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3720), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1917), - [sym__unquoted_with_expr] = STATE(2110), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3702), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1919), + [sym__unquoted_with_expr] = STATE(2096), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1107), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1108] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3721), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1918), - [sym__unquoted_with_expr] = STATE(2111), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3710), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1927), + [sym__unquoted_with_expr] = STATE(2097), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1108), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1109] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(2112), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1919), - [sym__unquoted_with_expr] = STATE(2114), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3711), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1928), + [sym__unquoted_with_expr] = STATE(2098), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1109), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1110] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3722), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3712), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1828), + [sym__unquoted_with_expr] = STATE(2100), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1110), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1111] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3724), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3713), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1852), + [sym__unquoted_with_expr] = STATE(2101), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1111), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1112] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3725), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3714), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1112), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1113] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3726), - [sym_expr_parenthesized] = STATE(3540), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3670), - [sym_val_variable] = STATE(3538), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3474), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3715), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1857), + [sym__unquoted_with_expr] = STATE(2103), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1113), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3389), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3391), - [anon_sym_DOT_DOT_LT] = ACTIONS(3391), - [anon_sym_null] = ACTIONS(3393), - [anon_sym_true] = ACTIONS(3395), - [anon_sym_false] = ACTIONS(3395), - [aux_sym__val_number_decimal_token1] = ACTIONS(3397), - [aux_sym__val_number_decimal_token2] = ACTIONS(3399), - [aux_sym__val_number_decimal_token3] = ACTIONS(3401), - [aux_sym__val_number_decimal_token4] = ACTIONS(3403), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3405), - [aux_sym__val_number_token5] = ACTIONS(3405), - [aux_sym__val_number_token6] = ACTIONS(3405), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3407), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1114] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3750), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1920), - [sym__unquoted_with_expr] = STATE(2115), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2104), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1859), + [sym__unquoted_with_expr] = STATE(2062), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1114), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1115] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3742), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1921), - [sym__unquoted_with_expr] = STATE(2116), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3716), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1863), + [sym__unquoted_with_expr] = STATE(2107), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1115), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1116] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3744), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7204), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3737), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1867), + [sym__unquoted_with_expr] = STATE(2108), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1116), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, [1117] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3418), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2159), - [sym__unquoted_with_expr] = STATE(2493), - [sym__unquoted_anonymous_prefix] = STATE(6774), + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3717), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1868), + [sym__unquoted_with_expr] = STATE(2109), + [sym__unquoted_anonymous_prefix] = STATE(7188), [sym_comment] = STATE(1117), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1118] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3739), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3542), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3430), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1923), - [sym__unquoted_with_expr] = STATE(2075), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1118), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3241), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3243), - [anon_sym_DOT_DOT_LT] = ACTIONS(3243), - [anon_sym_null] = ACTIONS(3245), - [anon_sym_true] = ACTIONS(3247), - [anon_sym_false] = ACTIONS(3247), - [aux_sym__val_number_decimal_token1] = ACTIONS(3249), - [aux_sym__val_number_decimal_token2] = ACTIONS(3251), - [aux_sym__val_number_decimal_token3] = ACTIONS(3253), - [aux_sym__val_number_decimal_token4] = ACTIONS(3255), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3257), - [aux_sym__val_number_token5] = ACTIONS(3257), - [aux_sym__val_number_token6] = ACTIONS(3257), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3259), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1119] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3392), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2162), - [sym__unquoted_with_expr] = STATE(2497), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1119), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1120] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3391), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2164), - [sym__unquoted_with_expr] = STATE(2499), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1120), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1121] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3395), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2165), - [sym__unquoted_with_expr] = STATE(2505), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1121), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1122] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3396), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2199), - [sym__unquoted_with_expr] = STATE(2507), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1122), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1123] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3401), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2200), - [sym__unquoted_with_expr] = STATE(2509), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1123), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1124] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2510), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2201), - [sym__unquoted_with_expr] = STATE(2511), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1124), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1125] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3402), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2202), - [sym__unquoted_with_expr] = STATE(2513), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1125), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1126] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2514), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2515), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1126), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1127] = { - [sym_ctrl_do] = STATE(4623), - [sym_ctrl_if] = STATE(4623), - [sym_ctrl_match] = STATE(4623), - [sym_ctrl_try] = STATE(4623), - [sym__expression] = STATE(4623), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3124), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_comment] = STATE(1127), - [sym__newline] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), + [1118] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(3718), + [sym_expr_parenthesized] = STATE(3529), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3544), + [sym_val_variable] = STATE(3527), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3462), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1869), + [sym__unquoted_with_expr] = STATE(2111), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1118), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3417), + [anon_sym_DOT_DOT] = ACTIONS(3400), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3402), + [anon_sym_DOT_DOT_LT] = ACTIONS(3402), + [anon_sym_null] = ACTIONS(3404), + [anon_sym_true] = ACTIONS(3406), + [anon_sym_false] = ACTIONS(3406), + [aux_sym__val_number_decimal_token1] = ACTIONS(3408), + [aux_sym__val_number_decimal_token2] = ACTIONS(3410), + [aux_sym__val_number_decimal_token3] = ACTIONS(3412), + [aux_sym__val_number_decimal_token4] = ACTIONS(3414), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3416), + [aux_sym__val_number_token5] = ACTIONS(3416), + [aux_sym__val_number_token6] = ACTIONS(3416), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), + [sym_val_date] = ACTIONS(3418), [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3431), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [1128] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3406), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2207), - [sym__unquoted_with_expr] = STATE(2515), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1128), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1129] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3407), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2208), - [sym__unquoted_with_expr] = STATE(2517), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1129), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1130] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(3393), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(3261), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3068), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2209), - [sym__unquoted_with_expr] = STATE(2519), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1130), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3369), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3371), - [anon_sym_DOT_DOT_LT] = ACTIONS(3371), - [anon_sym_null] = ACTIONS(3373), - [anon_sym_true] = ACTIONS(3375), - [anon_sym_false] = ACTIONS(3375), - [aux_sym__val_number_decimal_token1] = ACTIONS(3377), - [aux_sym__val_number_decimal_token2] = ACTIONS(3379), - [aux_sym__val_number_decimal_token3] = ACTIONS(3381), - [aux_sym__val_number_decimal_token4] = ACTIONS(3383), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3385), - [aux_sym__val_number_token5] = ACTIONS(3385), - [aux_sym__val_number_token6] = ACTIONS(3385), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3387), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, - [1131] = { - [sym_ctrl_do] = STATE(4623), - [sym_ctrl_if] = STATE(4623), - [sym_ctrl_match] = STATE(4623), - [sym_ctrl_try] = STATE(4623), - [sym__expression] = STATE(4623), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3124), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_comment] = STATE(1131), - [sym__newline] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), + [1119] = { + [sym_ctrl_do] = STATE(4736), + [sym_ctrl_if] = STATE(4736), + [sym_ctrl_match] = STATE(4736), + [sym_ctrl_try] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3156), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_comment] = STATE(1119), + [sym__newline] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_match] = ACTIONS(3382), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3409), + [anon_sym_RBRACE] = ACTIONS(3376), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3384), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [aux_sym__val_number_decimal_token1] = ACTIONS(3390), + [aux_sym__val_number_decimal_token2] = ACTIONS(3392), + [aux_sym__val_number_decimal_token3] = ACTIONS(3394), + [aux_sym__val_number_decimal_token4] = ACTIONS(3396), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -193462,243 +192651,242 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3433), + [anon_sym_COLON2] = ACTIONS(3420), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1132] = { - [sym_expr_unary] = STATE(2486), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2486), - [sym__expr_binary_expression] = STATE(2518), - [sym_expr_parenthesized] = STATE(2099), - [sym_val_range] = STATE(2486), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(2486), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2218), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(1622), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(2209), - [sym__unquoted_with_expr] = STATE(2519), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1132), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), + [1120] = { + [sym_expr_unary] = STATE(2094), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2094), + [sym__expr_binary_expression] = STATE(2391), + [sym_expr_parenthesized] = STATE(1905), + [sym_val_range] = STATE(2094), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(2094), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2135), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(1478), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(1853), + [sym__unquoted_with_expr] = STATE(2102), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1120), + [anon_sym_LBRACK] = ACTIONS(155), + [anon_sym_LPAREN] = ACTIONS(157), [anon_sym_DOLLAR] = ACTIONS(1024), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3347), - [aux_sym_expr_unary_token1] = ACTIONS(83), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3349), - [anon_sym_DOT_DOT_LT] = ACTIONS(3349), - [anon_sym_null] = ACTIONS(3351), - [anon_sym_true] = ACTIONS(3353), - [anon_sym_false] = ACTIONS(3353), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3363), - [aux_sym__val_number_token5] = ACTIONS(3363), - [aux_sym__val_number_token6] = ACTIONS(3363), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3365), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(3208), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3210), + [anon_sym_DOT_DOT_LT] = ACTIONS(3210), + [anon_sym_null] = ACTIONS(3212), + [anon_sym_true] = ACTIONS(3214), + [anon_sym_false] = ACTIONS(3214), + [aux_sym__val_number_decimal_token1] = ACTIONS(3216), + [aux_sym__val_number_decimal_token2] = ACTIONS(3218), + [aux_sym__val_number_decimal_token3] = ACTIONS(3220), + [aux_sym__val_number_decimal_token4] = ACTIONS(3222), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3224), + [aux_sym__val_number_token5] = ACTIONS(3224), + [aux_sym__val_number_token6] = ACTIONS(3224), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3226), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), + [sym_raw_string_begin] = ACTIONS(253), }, - [1133] = { - [sym_expr_unary] = STATE(2101), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2101), - [sym__expr_binary_expression] = STATE(3389), - [sym_expr_parenthesized] = STATE(1910), - [sym_val_range] = STATE(2101), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(2101), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(3251), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(2978), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(1922), - [sym__unquoted_with_expr] = STATE(2117), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1133), + [1121] = { + [sym_ctrl_do] = STATE(4736), + [sym_ctrl_if] = STATE(4736), + [sym_ctrl_match] = STATE(4736), + [sym_ctrl_try] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3156), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_comment] = STATE(1121), + [sym__newline] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3380), + [anon_sym_match] = ACTIONS(3382), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3199), + [anon_sym_RBRACE] = ACTIONS(3376), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3384), [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3201), - [anon_sym_DOT_DOT_LT] = ACTIONS(3201), - [anon_sym_null] = ACTIONS(3203), - [anon_sym_true] = ACTIONS(3205), - [anon_sym_false] = ACTIONS(3205), - [aux_sym__val_number_decimal_token1] = ACTIONS(3207), - [aux_sym__val_number_decimal_token2] = ACTIONS(3209), - [aux_sym__val_number_decimal_token3] = ACTIONS(3211), - [aux_sym__val_number_decimal_token4] = ACTIONS(3213), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [aux_sym__val_number_decimal_token1] = ACTIONS(3390), + [aux_sym__val_number_decimal_token2] = ACTIONS(3392), + [aux_sym__val_number_decimal_token3] = ACTIONS(3394), + [aux_sym__val_number_decimal_token4] = ACTIONS(3396), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3215), - [aux_sym__val_number_token5] = ACTIONS(3215), - [aux_sym__val_number_token6] = ACTIONS(3215), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3217), + [sym_val_date] = ACTIONS(235), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1134] = { - [sym_ctrl_do] = STATE(4821), - [sym_ctrl_if] = STATE(4821), - [sym_ctrl_match] = STATE(4821), - [sym_ctrl_try] = STATE(4821), - [sym__expression] = STATE(4821), - [sym_expr_unary] = STATE(2546), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_binary] = STATE(2546), - [sym__expr_binary_expression] = STATE(3755), - [sym_expr_parenthesized] = STATE(2085), - [sym_val_range] = STATE(2546), - [sym__value] = STATE(2546), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(2448), - [sym_val_variable] = STATE(2132), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3218), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_comment] = STATE(1134), - [ts_builtin_sym_end] = ACTIONS(3409), - [sym__newline] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), + [1122] = { + [sym_ctrl_do] = STATE(4808), + [sym_ctrl_if] = STATE(4808), + [sym_ctrl_match] = STATE(4808), + [sym_ctrl_try] = STATE(4808), + [sym__expression] = STATE(4808), + [sym_expr_unary] = STATE(2451), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_binary] = STATE(2451), + [sym__expr_binary_expression] = STATE(3740), + [sym_expr_parenthesized] = STATE(2117), + [sym_val_range] = STATE(2451), + [sym__value] = STATE(2451), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(2510), + [sym_val_variable] = STATE(2136), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3214), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_comment] = STATE(1122), + [ts_builtin_sym_end] = ACTIONS(3376), + [sym__newline] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DOLLAR] = ACTIONS(1022), [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_do] = ACTIONS(3435), - [anon_sym_if] = ACTIONS(3437), - [anon_sym_match] = ACTIONS(3439), + [anon_sym_do] = ACTIONS(3422), + [anon_sym_if] = ACTIONS(3424), + [anon_sym_match] = ACTIONS(3426), [anon_sym_LBRACE] = ACTIONS(63), [anon_sym_DOT_DOT] = ACTIONS(65), - [anon_sym_try] = ACTIONS(3441), + [anon_sym_try] = ACTIONS(3428), [aux_sym_expr_unary_token1] = ACTIONS(83), [anon_sym_DOT_DOT_EQ] = ACTIONS(85), [anon_sym_DOT_DOT_LT] = ACTIONS(85), - [anon_sym_null] = ACTIONS(3443), - [anon_sym_true] = ACTIONS(3445), - [anon_sym_false] = ACTIONS(3445), - [aux_sym__val_number_decimal_token1] = ACTIONS(3355), - [aux_sym__val_number_decimal_token2] = ACTIONS(3357), - [aux_sym__val_number_decimal_token3] = ACTIONS(3359), - [aux_sym__val_number_decimal_token4] = ACTIONS(3361), + [anon_sym_null] = ACTIONS(3430), + [anon_sym_true] = ACTIONS(3432), + [anon_sym_false] = ACTIONS(3432), + [aux_sym__val_number_decimal_token1] = ACTIONS(3342), + [aux_sym__val_number_decimal_token2] = ACTIONS(3344), + [aux_sym__val_number_decimal_token3] = ACTIONS(3346), + [aux_sym__val_number_decimal_token4] = ACTIONS(3348), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), @@ -193717,154 +192905,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1135] = { - [sym_ctrl_do] = STATE(4623), - [sym_ctrl_if] = STATE(4623), - [sym_ctrl_match] = STATE(4623), - [sym_ctrl_try] = STATE(4623), - [sym__expression] = STATE(4623), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3124), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_comment] = STATE(1135), - [sym__newline] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3413), - [anon_sym_match] = ACTIONS(3415), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_RBRACE] = ACTIONS(3409), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3417), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [1136] = { - [sym_ctrl_do] = STATE(4623), - [sym_ctrl_if] = STATE(4623), - [sym_ctrl_match] = STATE(4623), - [sym_ctrl_try] = STATE(4623), - [sym__expression] = STATE(4623), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3124), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_comment] = STATE(1136), - [sym__newline] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), + [1123] = { + [sym_ctrl_do] = STATE(4736), + [sym_ctrl_if] = STATE(4736), + [sym_ctrl_match] = STATE(4736), + [sym_ctrl_try] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3156), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_comment] = STATE(1123), + [sym__newline] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_RPAREN] = ACTIONS(3409), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_RPAREN] = ACTIONS(3376), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3447), - [anon_sym_match] = ACTIONS(3415), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3434), + [anon_sym_match] = ACTIONS(3382), [anon_sym_LBRACE] = ACTIONS(183), [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3417), + [anon_sym_try] = ACTIONS(3384), [aux_sym_expr_unary_token1] = ACTIONS(205), [anon_sym_DOT_DOT_EQ] = ACTIONS(211), [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [aux_sym__val_number_decimal_token1] = ACTIONS(3390), + [aux_sym__val_number_decimal_token2] = ACTIONS(3392), + [aux_sym__val_number_decimal_token3] = ACTIONS(3394), + [aux_sym__val_number_decimal_token4] = ACTIONS(3396), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), @@ -193883,1071 +192988,747 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1137] = { - [sym_expr_unary] = STATE(4170), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_parenthesized] = STATE(3901), - [sym_val_range] = STATE(4170), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(4170), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(4002), - [sym_val_variable] = STATE(3931), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3799), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(3940), - [sym__unquoted_with_expr] = STATE(4174), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1137), - [anon_sym_LBRACK] = ACTIONS(155), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3449), - [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3451), - [aux_sym_expr_unary_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3455), - [anon_sym_DOT_DOT_LT] = ACTIONS(3455), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3459), - [anon_sym_false] = ACTIONS(3459), - [aux_sym__val_number_decimal_token1] = ACTIONS(3461), - [aux_sym__val_number_decimal_token2] = ACTIONS(3463), - [aux_sym__val_number_decimal_token3] = ACTIONS(3465), - [aux_sym__val_number_decimal_token4] = ACTIONS(3467), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3469), - [aux_sym__val_number_token5] = ACTIONS(3469), - [aux_sym__val_number_token6] = ACTIONS(3469), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3471), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), - }, - [1138] = { - [sym_expr_unary] = STATE(4157), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_parenthesized] = STATE(3900), - [sym_val_range] = STATE(4157), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(4157), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(4002), - [sym_val_variable] = STATE(3931), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3799), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(4006), - [sym__unquoted_with_expr] = STATE(4168), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1138), + [1124] = { + [sym_expr_unary] = STATE(4115), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_parenthesized] = STATE(3905), + [sym_val_range] = STATE(4115), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(4115), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3979), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3781), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(3967), + [sym__unquoted_with_expr] = STATE(4118), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1124), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_DOLLAR] = ACTIONS(3436), [anon_sym_DASH2] = ACTIONS(381), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3451), - [aux_sym_expr_unary_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3455), - [anon_sym_DOT_DOT_LT] = ACTIONS(3455), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3459), - [anon_sym_false] = ACTIONS(3459), - [aux_sym__val_number_decimal_token1] = ACTIONS(3461), - [aux_sym__val_number_decimal_token2] = ACTIONS(3463), - [aux_sym__val_number_decimal_token3] = ACTIONS(3465), - [aux_sym__val_number_decimal_token4] = ACTIONS(3467), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [aux_sym_expr_unary_token1] = ACTIONS(3440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3442), + [anon_sym_DOT_DOT_LT] = ACTIONS(3442), + [anon_sym_null] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [aux_sym__val_number_decimal_token1] = ACTIONS(3448), + [aux_sym__val_number_decimal_token2] = ACTIONS(3450), + [aux_sym__val_number_decimal_token3] = ACTIONS(3452), + [aux_sym__val_number_decimal_token4] = ACTIONS(3454), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3469), - [aux_sym__val_number_token5] = ACTIONS(3469), - [aux_sym__val_number_token6] = ACTIONS(3469), + [aux_sym__val_number_token4] = ACTIONS(3456), + [aux_sym__val_number_token5] = ACTIONS(3456), + [aux_sym__val_number_token6] = ACTIONS(3456), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3471), + [sym_val_date] = ACTIONS(3458), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1139] = { - [sym_comment] = STATE(1139), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1142), - [aux_sym_cmd_identifier_token1] = ACTIONS(3473), - [aux_sym_cmd_identifier_token2] = ACTIONS(3473), - [aux_sym_cmd_identifier_token3] = ACTIONS(3473), - [aux_sym_cmd_identifier_token4] = ACTIONS(3473), - [aux_sym_cmd_identifier_token5] = ACTIONS(3473), - [aux_sym_cmd_identifier_token6] = ACTIONS(3473), - [aux_sym_cmd_identifier_token7] = ACTIONS(3473), - [aux_sym_cmd_identifier_token8] = ACTIONS(3473), - [aux_sym_cmd_identifier_token9] = ACTIONS(3473), - [aux_sym_cmd_identifier_token10] = ACTIONS(3473), - [aux_sym_cmd_identifier_token11] = ACTIONS(3473), - [aux_sym_cmd_identifier_token12] = ACTIONS(3473), - [aux_sym_cmd_identifier_token13] = ACTIONS(3473), - [aux_sym_cmd_identifier_token14] = ACTIONS(3473), - [aux_sym_cmd_identifier_token15] = ACTIONS(3473), - [aux_sym_cmd_identifier_token16] = ACTIONS(3473), - [aux_sym_cmd_identifier_token17] = ACTIONS(3473), - [aux_sym_cmd_identifier_token18] = ACTIONS(3473), - [aux_sym_cmd_identifier_token19] = ACTIONS(3473), - [aux_sym_cmd_identifier_token20] = ACTIONS(3473), - [aux_sym_cmd_identifier_token21] = ACTIONS(3473), - [aux_sym_cmd_identifier_token22] = ACTIONS(3473), - [aux_sym_cmd_identifier_token23] = ACTIONS(3473), - [aux_sym_cmd_identifier_token24] = ACTIONS(3473), - [aux_sym_cmd_identifier_token25] = ACTIONS(3473), - [aux_sym_cmd_identifier_token26] = ACTIONS(3473), - [aux_sym_cmd_identifier_token27] = ACTIONS(3473), - [aux_sym_cmd_identifier_token28] = ACTIONS(3473), - [aux_sym_cmd_identifier_token29] = ACTIONS(3473), - [aux_sym_cmd_identifier_token30] = ACTIONS(3473), - [aux_sym_cmd_identifier_token31] = ACTIONS(3473), - [aux_sym_cmd_identifier_token32] = ACTIONS(3473), - [aux_sym_cmd_identifier_token33] = ACTIONS(3473), - [aux_sym_cmd_identifier_token34] = ACTIONS(3473), - [aux_sym_cmd_identifier_token35] = ACTIONS(3473), - [aux_sym_cmd_identifier_token36] = ACTIONS(3473), - [aux_sym_cmd_identifier_token37] = ACTIONS(3473), - [aux_sym_cmd_identifier_token38] = ACTIONS(3473), - [aux_sym_cmd_identifier_token39] = ACTIONS(3473), - [aux_sym_cmd_identifier_token40] = ACTIONS(3473), - [sym__newline] = ACTIONS(3475), - [sym__space] = ACTIONS(3477), - [anon_sym_LBRACK] = ACTIONS(3473), - [anon_sym_LPAREN] = ACTIONS(3473), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_DASH2] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3473), - [anon_sym_DOT_DOT] = ACTIONS(3473), - [aux_sym_expr_unary_token1] = ACTIONS(3473), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3473), - [anon_sym_DOT_DOT_LT] = ACTIONS(3473), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3473), - [aux_sym__val_number_decimal_token2] = ACTIONS(3473), - [aux_sym__val_number_decimal_token3] = ACTIONS(3473), - [aux_sym__val_number_decimal_token4] = ACTIONS(3473), - [aux_sym__val_number_token1] = ACTIONS(3473), - [aux_sym__val_number_token2] = ACTIONS(3473), - [aux_sym__val_number_token3] = ACTIONS(3473), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3473), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3473), - [anon_sym_DQUOTE] = ACTIONS(3473), - [sym__str_single_quotes] = ACTIONS(3473), - [sym__str_back_ticks] = ACTIONS(3473), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3473), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3473), - [aux_sym_env_var_token1] = ACTIONS(3473), - [anon_sym_CARET] = ACTIONS(3473), - [aux_sym_command_token1] = ACTIONS(3473), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3479), - }, - [1140] = { - [sym_expr_unary] = STATE(4372), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_parenthesized] = STATE(3987), - [sym_val_range] = STATE(4372), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(4372), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(4035), - [sym_val_variable] = STATE(3990), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3816), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(4046), - [sym__unquoted_with_expr] = STATE(4353), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1140), + [1125] = { + [sym_expr_unary] = STATE(4346), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_parenthesized] = STATE(3972), + [sym_val_range] = STATE(4346), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(4346), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(4048), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3802), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(4014), + [sym__unquoted_with_expr] = STATE(4358), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1125), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3460), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3483), - [aux_sym_expr_unary_token1] = ACTIONS(3485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3487), - [anon_sym_DOT_DOT_LT] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3491), - [anon_sym_false] = ACTIONS(3491), - [aux_sym__val_number_decimal_token1] = ACTIONS(3493), - [aux_sym__val_number_decimal_token2] = ACTIONS(3495), - [aux_sym__val_number_decimal_token3] = ACTIONS(3497), - [aux_sym__val_number_decimal_token4] = ACTIONS(3499), + [anon_sym_DOT_DOT] = ACTIONS(3462), + [aux_sym_expr_unary_token1] = ACTIONS(3464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3466), + [anon_sym_DOT_DOT_LT] = ACTIONS(3466), + [anon_sym_null] = ACTIONS(3468), + [anon_sym_true] = ACTIONS(3470), + [anon_sym_false] = ACTIONS(3470), + [aux_sym__val_number_decimal_token1] = ACTIONS(3472), + [aux_sym__val_number_decimal_token2] = ACTIONS(3474), + [aux_sym__val_number_decimal_token3] = ACTIONS(3476), + [aux_sym__val_number_decimal_token4] = ACTIONS(3478), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3501), - [aux_sym__val_number_token5] = ACTIONS(3501), - [aux_sym__val_number_token6] = ACTIONS(3501), + [aux_sym__val_number_token4] = ACTIONS(3480), + [aux_sym__val_number_token5] = ACTIONS(3480), + [aux_sym__val_number_token6] = ACTIONS(3480), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3503), + [sym_val_date] = ACTIONS(3482), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1141] = { - [sym_expr_unary] = STATE(4316), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_parenthesized] = STATE(3956), - [sym_val_range] = STATE(4316), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(4316), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(4035), - [sym_val_variable] = STATE(3990), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3816), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(4053), - [sym__unquoted_with_expr] = STATE(4369), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1141), + [1126] = { + [sym_expr_unary] = STATE(4326), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_parenthesized] = STATE(3971), + [sym_val_range] = STATE(4326), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(4326), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(4048), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3802), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(4012), + [sym__unquoted_with_expr] = STATE(4342), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1126), [anon_sym_LBRACK] = ACTIONS(37), [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3481), + [anon_sym_DOLLAR] = ACTIONS(3460), [anon_sym_DASH2] = ACTIONS(45), [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3483), - [aux_sym_expr_unary_token1] = ACTIONS(3485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3487), - [anon_sym_DOT_DOT_LT] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3491), - [anon_sym_false] = ACTIONS(3491), - [aux_sym__val_number_decimal_token1] = ACTIONS(3493), - [aux_sym__val_number_decimal_token2] = ACTIONS(3495), - [aux_sym__val_number_decimal_token3] = ACTIONS(3497), - [aux_sym__val_number_decimal_token4] = ACTIONS(3499), + [anon_sym_DOT_DOT] = ACTIONS(3462), + [aux_sym_expr_unary_token1] = ACTIONS(3464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3466), + [anon_sym_DOT_DOT_LT] = ACTIONS(3466), + [anon_sym_null] = ACTIONS(3468), + [anon_sym_true] = ACTIONS(3470), + [anon_sym_false] = ACTIONS(3470), + [aux_sym__val_number_decimal_token1] = ACTIONS(3472), + [aux_sym__val_number_decimal_token2] = ACTIONS(3474), + [aux_sym__val_number_decimal_token3] = ACTIONS(3476), + [aux_sym__val_number_decimal_token4] = ACTIONS(3478), [aux_sym__val_number_token1] = ACTIONS(99), [aux_sym__val_number_token2] = ACTIONS(99), [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3501), - [aux_sym__val_number_token5] = ACTIONS(3501), - [aux_sym__val_number_token6] = ACTIONS(3501), + [aux_sym__val_number_token4] = ACTIONS(3480), + [aux_sym__val_number_token5] = ACTIONS(3480), + [aux_sym__val_number_token6] = ACTIONS(3480), [anon_sym_0b] = ACTIONS(103), [anon_sym_0o] = ACTIONS(105), [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3503), + [sym_val_date] = ACTIONS(3482), [anon_sym_DQUOTE] = ACTIONS(109), [sym__str_single_quotes] = ACTIONS(111), [sym__str_back_ticks] = ACTIONS(111), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(123), }, - [1142] = { - [sym_comment] = STATE(1142), - [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1142), - [aux_sym_cmd_identifier_token1] = ACTIONS(3505), - [aux_sym_cmd_identifier_token2] = ACTIONS(3505), - [aux_sym_cmd_identifier_token3] = ACTIONS(3505), - [aux_sym_cmd_identifier_token4] = ACTIONS(3505), - [aux_sym_cmd_identifier_token5] = ACTIONS(3505), - [aux_sym_cmd_identifier_token6] = ACTIONS(3505), - [aux_sym_cmd_identifier_token7] = ACTIONS(3505), - [aux_sym_cmd_identifier_token8] = ACTIONS(3505), - [aux_sym_cmd_identifier_token9] = ACTIONS(3505), - [aux_sym_cmd_identifier_token10] = ACTIONS(3505), - [aux_sym_cmd_identifier_token11] = ACTIONS(3505), - [aux_sym_cmd_identifier_token12] = ACTIONS(3505), - [aux_sym_cmd_identifier_token13] = ACTIONS(3505), - [aux_sym_cmd_identifier_token14] = ACTIONS(3505), - [aux_sym_cmd_identifier_token15] = ACTIONS(3505), - [aux_sym_cmd_identifier_token16] = ACTIONS(3505), - [aux_sym_cmd_identifier_token17] = ACTIONS(3505), - [aux_sym_cmd_identifier_token18] = ACTIONS(3505), - [aux_sym_cmd_identifier_token19] = ACTIONS(3505), - [aux_sym_cmd_identifier_token20] = ACTIONS(3505), - [aux_sym_cmd_identifier_token21] = ACTIONS(3505), - [aux_sym_cmd_identifier_token22] = ACTIONS(3505), - [aux_sym_cmd_identifier_token23] = ACTIONS(3505), - [aux_sym_cmd_identifier_token24] = ACTIONS(3505), - [aux_sym_cmd_identifier_token25] = ACTIONS(3505), - [aux_sym_cmd_identifier_token26] = ACTIONS(3505), - [aux_sym_cmd_identifier_token27] = ACTIONS(3505), - [aux_sym_cmd_identifier_token28] = ACTIONS(3505), - [aux_sym_cmd_identifier_token29] = ACTIONS(3505), - [aux_sym_cmd_identifier_token30] = ACTIONS(3505), - [aux_sym_cmd_identifier_token31] = ACTIONS(3505), - [aux_sym_cmd_identifier_token32] = ACTIONS(3505), - [aux_sym_cmd_identifier_token33] = ACTIONS(3505), - [aux_sym_cmd_identifier_token34] = ACTIONS(3505), - [aux_sym_cmd_identifier_token35] = ACTIONS(3505), - [aux_sym_cmd_identifier_token36] = ACTIONS(3505), - [aux_sym_cmd_identifier_token37] = ACTIONS(3505), - [aux_sym_cmd_identifier_token38] = ACTIONS(3505), - [aux_sym_cmd_identifier_token39] = ACTIONS(3505), - [aux_sym_cmd_identifier_token40] = ACTIONS(3505), - [sym__newline] = ACTIONS(3507), - [sym__space] = ACTIONS(3510), - [anon_sym_LBRACK] = ACTIONS(3505), - [anon_sym_LPAREN] = ACTIONS(3505), - [anon_sym_DOLLAR] = ACTIONS(3505), - [anon_sym_DASH2] = ACTIONS(3505), - [anon_sym_LBRACE] = ACTIONS(3505), - [anon_sym_DOT_DOT] = ACTIONS(3505), - [aux_sym_expr_unary_token1] = ACTIONS(3505), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3505), - [anon_sym_DOT_DOT_LT] = ACTIONS(3505), - [anon_sym_null] = ACTIONS(3505), - [anon_sym_true] = ACTIONS(3505), - [anon_sym_false] = ACTIONS(3505), - [aux_sym__val_number_decimal_token1] = ACTIONS(3505), - [aux_sym__val_number_decimal_token2] = ACTIONS(3505), - [aux_sym__val_number_decimal_token3] = ACTIONS(3505), - [aux_sym__val_number_decimal_token4] = ACTIONS(3505), - [aux_sym__val_number_token1] = ACTIONS(3505), - [aux_sym__val_number_token2] = ACTIONS(3505), - [aux_sym__val_number_token3] = ACTIONS(3505), - [aux_sym__val_number_token4] = ACTIONS(3505), - [aux_sym__val_number_token5] = ACTIONS(3505), - [aux_sym__val_number_token6] = ACTIONS(3505), - [anon_sym_0b] = ACTIONS(3505), - [anon_sym_0o] = ACTIONS(3505), - [anon_sym_0x] = ACTIONS(3505), - [sym_val_date] = ACTIONS(3505), - [anon_sym_DQUOTE] = ACTIONS(3505), - [sym__str_single_quotes] = ACTIONS(3505), - [sym__str_back_ticks] = ACTIONS(3505), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3505), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3505), - [aux_sym_env_var_token1] = ACTIONS(3505), - [anon_sym_CARET] = ACTIONS(3505), - [aux_sym_command_token1] = ACTIONS(3505), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3513), - }, - [1143] = { - [sym_expr_unary] = STATE(4140), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_parenthesized] = STATE(3899), - [sym_val_range] = STATE(4140), - [sym__val_range] = STATE(7439), - [sym__val_range_with_end] = STATE(7317), - [sym__value] = STATE(4140), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(4002), - [sym_val_variable] = STATE(3931), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3799), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(3999), - [sym__unquoted_with_expr] = STATE(4154), - [sym__unquoted_anonymous_prefix] = STATE(7204), - [sym_comment] = STATE(1143), + [1127] = { + [sym_ctrl_do] = STATE(4736), + [sym_ctrl_if] = STATE(4736), + [sym_ctrl_match] = STATE(4736), + [sym_ctrl_try] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3156), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_comment] = STATE(1127), + [sym__newline] = ACTIONS(3376), + [anon_sym_SEMI] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3449), + [anon_sym_DOLLAR] = ACTIONS(1024), [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3484), + [anon_sym_match] = ACTIONS(3382), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(3451), - [aux_sym_expr_unary_token1] = ACTIONS(3453), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3455), - [anon_sym_DOT_DOT_LT] = ACTIONS(3455), - [anon_sym_null] = ACTIONS(3457), - [anon_sym_true] = ACTIONS(3459), - [anon_sym_false] = ACTIONS(3459), - [aux_sym__val_number_decimal_token1] = ACTIONS(3461), - [aux_sym__val_number_decimal_token2] = ACTIONS(3463), - [aux_sym__val_number_decimal_token3] = ACTIONS(3465), - [aux_sym__val_number_decimal_token4] = ACTIONS(3467), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3384), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [aux_sym__val_number_decimal_token1] = ACTIONS(3390), + [aux_sym__val_number_decimal_token2] = ACTIONS(3392), + [aux_sym__val_number_decimal_token3] = ACTIONS(3394), + [aux_sym__val_number_decimal_token4] = ACTIONS(3396), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3469), - [aux_sym__val_number_token5] = ACTIONS(3469), - [aux_sym__val_number_token6] = ACTIONS(3469), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3471), + [sym_val_date] = ACTIONS(235), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1144] = { - [sym_ctrl_do] = STATE(4623), - [sym_ctrl_if] = STATE(4623), - [sym_ctrl_match] = STATE(4623), - [sym_ctrl_try] = STATE(4623), - [sym__expression] = STATE(4623), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3124), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_comment] = STATE(1144), - [sym__newline] = ACTIONS(3409), - [anon_sym_SEMI] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), + [1128] = { + [sym_expr_unary] = STATE(4103), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_parenthesized] = STATE(3909), + [sym_val_range] = STATE(4103), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(4103), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3979), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3781), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(3964), + [sym__unquoted_with_expr] = STATE(4107), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1128), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(3436), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3515), - [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3417), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [aux_sym_expr_unary_token1] = ACTIONS(3440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3442), + [anon_sym_DOT_DOT_LT] = ACTIONS(3442), + [anon_sym_null] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [aux_sym__val_number_decimal_token1] = ACTIONS(3448), + [aux_sym__val_number_decimal_token2] = ACTIONS(3450), + [aux_sym__val_number_decimal_token3] = ACTIONS(3452), + [aux_sym__val_number_decimal_token4] = ACTIONS(3454), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3456), + [aux_sym__val_number_token5] = ACTIONS(3456), + [aux_sym__val_number_token6] = ACTIONS(3456), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), + [sym_val_date] = ACTIONS(3458), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1145] = { - [sym_expr_unary] = STATE(4306), - [sym__expr_unary_minus] = STATE(2545), - [sym_expr_parenthesized] = STATE(4014), - [sym_val_range] = STATE(4306), - [sym__val_range] = STATE(7581), - [sym__val_range_with_end] = STATE(7299), - [sym__value] = STATE(4306), - [sym_val_nothing] = STATE(2448), - [sym_val_bool] = STATE(4035), - [sym_val_variable] = STATE(3990), - [sym_val_number] = STATE(2448), - [sym__val_number_decimal] = STATE(3816), - [sym__val_number] = STATE(2544), - [sym_val_duration] = STATE(2448), - [sym_val_filesize] = STATE(2448), - [sym_val_binary] = STATE(2448), - [sym_val_string] = STATE(2448), - [sym__raw_str] = STATE(1720), - [sym__str_double_quotes] = STATE(1720), - [sym_val_interpolated] = STATE(2448), - [sym__inter_single_quotes] = STATE(2550), - [sym__inter_double_quotes] = STATE(2552), - [sym_val_list] = STATE(2448), - [sym_val_record] = STATE(2448), - [sym_val_table] = STATE(2448), - [sym_val_closure] = STATE(2448), - [sym_unquoted] = STATE(4105), - [sym__unquoted_with_expr] = STATE(4314), - [sym__unquoted_anonymous_prefix] = STATE(6774), - [sym_comment] = STATE(1145), - [anon_sym_LBRACK] = ACTIONS(37), - [anon_sym_LPAREN] = ACTIONS(39), - [anon_sym_DOLLAR] = ACTIONS(3481), - [anon_sym_DASH2] = ACTIONS(45), - [anon_sym_LBRACE] = ACTIONS(63), - [anon_sym_DOT_DOT] = ACTIONS(3483), - [aux_sym_expr_unary_token1] = ACTIONS(3485), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3487), - [anon_sym_DOT_DOT_LT] = ACTIONS(3487), - [anon_sym_null] = ACTIONS(3489), - [anon_sym_true] = ACTIONS(3491), - [anon_sym_false] = ACTIONS(3491), - [aux_sym__val_number_decimal_token1] = ACTIONS(3493), - [aux_sym__val_number_decimal_token2] = ACTIONS(3495), - [aux_sym__val_number_decimal_token3] = ACTIONS(3497), - [aux_sym__val_number_decimal_token4] = ACTIONS(3499), - [aux_sym__val_number_token1] = ACTIONS(99), - [aux_sym__val_number_token2] = ACTIONS(99), - [aux_sym__val_number_token3] = ACTIONS(99), - [aux_sym__val_number_token4] = ACTIONS(3501), - [aux_sym__val_number_token5] = ACTIONS(3501), - [aux_sym__val_number_token6] = ACTIONS(3501), - [anon_sym_0b] = ACTIONS(103), - [anon_sym_0o] = ACTIONS(105), - [anon_sym_0x] = ACTIONS(105), - [sym_val_date] = ACTIONS(3503), - [anon_sym_DQUOTE] = ACTIONS(109), - [sym__str_single_quotes] = ACTIONS(111), - [sym__str_back_ticks] = ACTIONS(111), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3367), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(123), - }, - [1146] = { - [sym_comment] = STATE(1146), - [aux_sym_pipe_element_repeat1] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(3517), - [aux_sym_cmd_identifier_token2] = ACTIONS(3517), - [aux_sym_cmd_identifier_token3] = ACTIONS(3517), - [aux_sym_cmd_identifier_token4] = ACTIONS(3517), - [aux_sym_cmd_identifier_token5] = ACTIONS(3517), - [aux_sym_cmd_identifier_token6] = ACTIONS(3517), - [aux_sym_cmd_identifier_token7] = ACTIONS(3517), - [aux_sym_cmd_identifier_token8] = ACTIONS(3517), - [aux_sym_cmd_identifier_token9] = ACTIONS(3517), - [aux_sym_cmd_identifier_token10] = ACTIONS(3517), - [aux_sym_cmd_identifier_token11] = ACTIONS(3517), - [aux_sym_cmd_identifier_token12] = ACTIONS(3517), - [aux_sym_cmd_identifier_token13] = ACTIONS(3517), - [aux_sym_cmd_identifier_token14] = ACTIONS(3517), - [aux_sym_cmd_identifier_token15] = ACTIONS(3517), - [aux_sym_cmd_identifier_token16] = ACTIONS(3517), - [aux_sym_cmd_identifier_token17] = ACTIONS(3517), - [aux_sym_cmd_identifier_token18] = ACTIONS(3517), - [aux_sym_cmd_identifier_token19] = ACTIONS(3517), - [aux_sym_cmd_identifier_token20] = ACTIONS(3517), - [aux_sym_cmd_identifier_token21] = ACTIONS(3517), - [aux_sym_cmd_identifier_token22] = ACTIONS(3517), - [aux_sym_cmd_identifier_token23] = ACTIONS(3517), - [aux_sym_cmd_identifier_token24] = ACTIONS(3517), - [aux_sym_cmd_identifier_token25] = ACTIONS(3517), - [aux_sym_cmd_identifier_token26] = ACTIONS(3517), - [aux_sym_cmd_identifier_token27] = ACTIONS(3517), - [aux_sym_cmd_identifier_token28] = ACTIONS(3517), - [aux_sym_cmd_identifier_token29] = ACTIONS(3517), - [aux_sym_cmd_identifier_token30] = ACTIONS(3517), - [aux_sym_cmd_identifier_token31] = ACTIONS(3517), - [aux_sym_cmd_identifier_token32] = ACTIONS(3517), - [aux_sym_cmd_identifier_token33] = ACTIONS(3517), - [aux_sym_cmd_identifier_token34] = ACTIONS(3517), - [aux_sym_cmd_identifier_token35] = ACTIONS(3517), - [aux_sym_cmd_identifier_token36] = ACTIONS(3517), - [aux_sym_cmd_identifier_token37] = ACTIONS(3517), - [aux_sym_cmd_identifier_token38] = ACTIONS(3517), - [aux_sym_cmd_identifier_token39] = ACTIONS(3517), - [aux_sym_cmd_identifier_token40] = ACTIONS(3517), - [sym__space] = ACTIONS(3519), - [anon_sym_LBRACK] = ACTIONS(3517), - [anon_sym_LPAREN] = ACTIONS(3517), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_DASH2] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(3517), - [anon_sym_DOT_DOT] = ACTIONS(3517), - [aux_sym_expr_unary_token1] = ACTIONS(3517), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3517), - [anon_sym_DOT_DOT_LT] = ACTIONS(3517), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [aux_sym__val_number_decimal_token1] = ACTIONS(3517), - [aux_sym__val_number_decimal_token2] = ACTIONS(3517), - [aux_sym__val_number_decimal_token3] = ACTIONS(3517), - [aux_sym__val_number_decimal_token4] = ACTIONS(3517), - [aux_sym__val_number_token1] = ACTIONS(3517), - [aux_sym__val_number_token2] = ACTIONS(3517), - [aux_sym__val_number_token3] = ACTIONS(3517), - [aux_sym__val_number_token4] = ACTIONS(3517), - [aux_sym__val_number_token5] = ACTIONS(3517), - [aux_sym__val_number_token6] = ACTIONS(3517), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3517), - [anon_sym_0x] = ACTIONS(3517), - [sym_val_date] = ACTIONS(3517), - [anon_sym_DQUOTE] = ACTIONS(3517), - [sym__str_single_quotes] = ACTIONS(3517), - [sym__str_back_ticks] = ACTIONS(3517), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3517), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3517), - [aux_sym_env_var_token1] = ACTIONS(3517), - [anon_sym_CARET] = ACTIONS(3517), - [aux_sym_command_token1] = ACTIONS(3517), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3521), - }, - [1147] = { - [sym_ctrl_do] = STATE(4623), - [sym_ctrl_if] = STATE(4623), - [sym_ctrl_match] = STATE(4623), - [sym_ctrl_try] = STATE(4623), - [sym__expression] = STATE(4623), - [sym_expr_unary] = STATE(2089), - [sym__expr_unary_minus] = STATE(2090), - [sym_expr_binary] = STATE(2089), - [sym__expr_binary_expression] = STATE(3758), - [sym_expr_parenthesized] = STATE(1891), - [sym_val_range] = STATE(2089), - [sym__value] = STATE(2089), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(2131), - [sym_val_variable] = STATE(1894), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(3124), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_comment] = STATE(1147), - [sym__newline] = ACTIONS(3409), - [anon_sym_PIPE] = ACTIONS(3409), - [anon_sym_err_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_GT_PIPE] = ACTIONS(3409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3409), + [1129] = { + [sym_expr_unary] = STATE(4110), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_parenthesized] = STATE(3900), + [sym_val_range] = STATE(4110), + [sym__val_range] = STATE(7646), + [sym__val_range_with_end] = STATE(7305), + [sym__value] = STATE(4110), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(3979), + [sym_val_variable] = STATE(3915), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3781), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(3966), + [sym__unquoted_with_expr] = STATE(4114), + [sym__unquoted_anonymous_prefix] = STATE(7188), + [sym_comment] = STATE(1129), [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(1022), + [anon_sym_DOLLAR] = ACTIONS(3436), [anon_sym_DASH2] = ACTIONS(381), - [anon_sym_do] = ACTIONS(3411), - [anon_sym_if] = ACTIONS(3523), - [anon_sym_match] = ACTIONS(3415), [anon_sym_LBRACE] = ACTIONS(183), - [anon_sym_DOT_DOT] = ACTIONS(187), - [anon_sym_try] = ACTIONS(3417), - [aux_sym_expr_unary_token1] = ACTIONS(205), - [anon_sym_DOT_DOT_EQ] = ACTIONS(211), - [anon_sym_DOT_DOT_LT] = ACTIONS(211), - [anon_sym_null] = ACTIONS(3419), - [anon_sym_true] = ACTIONS(3421), - [anon_sym_false] = ACTIONS(3421), - [aux_sym__val_number_decimal_token1] = ACTIONS(3423), - [aux_sym__val_number_decimal_token2] = ACTIONS(3425), - [aux_sym__val_number_decimal_token3] = ACTIONS(3427), - [aux_sym__val_number_decimal_token4] = ACTIONS(3429), + [anon_sym_DOT_DOT] = ACTIONS(3438), + [aux_sym_expr_unary_token1] = ACTIONS(3440), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3442), + [anon_sym_DOT_DOT_LT] = ACTIONS(3442), + [anon_sym_null] = ACTIONS(3444), + [anon_sym_true] = ACTIONS(3446), + [anon_sym_false] = ACTIONS(3446), + [aux_sym__val_number_decimal_token1] = ACTIONS(3448), + [aux_sym__val_number_decimal_token2] = ACTIONS(3450), + [aux_sym__val_number_decimal_token3] = ACTIONS(3452), + [aux_sym__val_number_decimal_token4] = ACTIONS(3454), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(227), - [aux_sym__val_number_token5] = ACTIONS(227), - [aux_sym__val_number_token6] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3456), + [aux_sym__val_number_token5] = ACTIONS(3456), + [aux_sym__val_number_token6] = ACTIONS(3456), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(235), + [sym_val_date] = ACTIONS(3458), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1148] = { - [sym_comment] = STATE(1148), - [aux_sym_pipe_element_repeat1] = STATE(1148), - [aux_sym_cmd_identifier_token1] = ACTIONS(3525), - [aux_sym_cmd_identifier_token2] = ACTIONS(3525), - [aux_sym_cmd_identifier_token3] = ACTIONS(3525), - [aux_sym_cmd_identifier_token4] = ACTIONS(3525), - [aux_sym_cmd_identifier_token5] = ACTIONS(3525), - [aux_sym_cmd_identifier_token6] = ACTIONS(3525), - [aux_sym_cmd_identifier_token7] = ACTIONS(3525), - [aux_sym_cmd_identifier_token8] = ACTIONS(3525), - [aux_sym_cmd_identifier_token9] = ACTIONS(3525), - [aux_sym_cmd_identifier_token10] = ACTIONS(3525), - [aux_sym_cmd_identifier_token11] = ACTIONS(3525), - [aux_sym_cmd_identifier_token12] = ACTIONS(3525), - [aux_sym_cmd_identifier_token13] = ACTIONS(3525), - [aux_sym_cmd_identifier_token14] = ACTIONS(3525), - [aux_sym_cmd_identifier_token15] = ACTIONS(3525), - [aux_sym_cmd_identifier_token16] = ACTIONS(3525), - [aux_sym_cmd_identifier_token17] = ACTIONS(3525), - [aux_sym_cmd_identifier_token18] = ACTIONS(3525), - [aux_sym_cmd_identifier_token19] = ACTIONS(3525), - [aux_sym_cmd_identifier_token20] = ACTIONS(3525), - [aux_sym_cmd_identifier_token21] = ACTIONS(3525), - [aux_sym_cmd_identifier_token22] = ACTIONS(3525), - [aux_sym_cmd_identifier_token23] = ACTIONS(3525), - [aux_sym_cmd_identifier_token24] = ACTIONS(3525), - [aux_sym_cmd_identifier_token25] = ACTIONS(3525), - [aux_sym_cmd_identifier_token26] = ACTIONS(3525), - [aux_sym_cmd_identifier_token27] = ACTIONS(3525), - [aux_sym_cmd_identifier_token28] = ACTIONS(3525), - [aux_sym_cmd_identifier_token29] = ACTIONS(3525), - [aux_sym_cmd_identifier_token30] = ACTIONS(3525), - [aux_sym_cmd_identifier_token31] = ACTIONS(3525), - [aux_sym_cmd_identifier_token32] = ACTIONS(3525), - [aux_sym_cmd_identifier_token33] = ACTIONS(3525), - [aux_sym_cmd_identifier_token34] = ACTIONS(3525), - [aux_sym_cmd_identifier_token35] = ACTIONS(3525), - [aux_sym_cmd_identifier_token36] = ACTIONS(3525), - [aux_sym_cmd_identifier_token37] = ACTIONS(3525), - [aux_sym_cmd_identifier_token38] = ACTIONS(3525), - [aux_sym_cmd_identifier_token39] = ACTIONS(3525), - [aux_sym_cmd_identifier_token40] = ACTIONS(3525), - [sym__space] = ACTIONS(3527), - [anon_sym_LBRACK] = ACTIONS(3525), - [anon_sym_LPAREN] = ACTIONS(3525), - [anon_sym_DOLLAR] = ACTIONS(3525), - [anon_sym_DASH2] = ACTIONS(3525), - [anon_sym_LBRACE] = ACTIONS(3525), - [anon_sym_DOT_DOT] = ACTIONS(3525), - [aux_sym_expr_unary_token1] = ACTIONS(3525), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3525), - [anon_sym_DOT_DOT_LT] = ACTIONS(3525), - [anon_sym_null] = ACTIONS(3525), - [anon_sym_true] = ACTIONS(3525), - [anon_sym_false] = ACTIONS(3525), - [aux_sym__val_number_decimal_token1] = ACTIONS(3525), - [aux_sym__val_number_decimal_token2] = ACTIONS(3525), - [aux_sym__val_number_decimal_token3] = ACTIONS(3525), - [aux_sym__val_number_decimal_token4] = ACTIONS(3525), - [aux_sym__val_number_token1] = ACTIONS(3525), - [aux_sym__val_number_token2] = ACTIONS(3525), - [aux_sym__val_number_token3] = ACTIONS(3525), - [aux_sym__val_number_token4] = ACTIONS(3525), - [aux_sym__val_number_token5] = ACTIONS(3525), - [aux_sym__val_number_token6] = ACTIONS(3525), - [anon_sym_0b] = ACTIONS(3525), - [anon_sym_0o] = ACTIONS(3525), - [anon_sym_0x] = ACTIONS(3525), - [sym_val_date] = ACTIONS(3525), - [anon_sym_DQUOTE] = ACTIONS(3525), - [sym__str_single_quotes] = ACTIONS(3525), - [sym__str_back_ticks] = ACTIONS(3525), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3525), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3525), - [aux_sym_env_var_token1] = ACTIONS(3525), - [anon_sym_CARET] = ACTIONS(3525), - [aux_sym_command_token1] = ACTIONS(3525), + [1130] = { + [sym_comment] = STATE(1130), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1130), + [aux_sym_cmd_identifier_token1] = ACTIONS(3486), + [aux_sym_cmd_identifier_token2] = ACTIONS(3486), + [aux_sym_cmd_identifier_token3] = ACTIONS(3486), + [aux_sym_cmd_identifier_token4] = ACTIONS(3486), + [aux_sym_cmd_identifier_token5] = ACTIONS(3486), + [aux_sym_cmd_identifier_token6] = ACTIONS(3486), + [aux_sym_cmd_identifier_token7] = ACTIONS(3486), + [aux_sym_cmd_identifier_token8] = ACTIONS(3486), + [aux_sym_cmd_identifier_token9] = ACTIONS(3486), + [aux_sym_cmd_identifier_token10] = ACTIONS(3486), + [aux_sym_cmd_identifier_token11] = ACTIONS(3486), + [aux_sym_cmd_identifier_token12] = ACTIONS(3486), + [aux_sym_cmd_identifier_token13] = ACTIONS(3486), + [aux_sym_cmd_identifier_token14] = ACTIONS(3486), + [aux_sym_cmd_identifier_token15] = ACTIONS(3486), + [aux_sym_cmd_identifier_token16] = ACTIONS(3486), + [aux_sym_cmd_identifier_token17] = ACTIONS(3486), + [aux_sym_cmd_identifier_token18] = ACTIONS(3486), + [aux_sym_cmd_identifier_token19] = ACTIONS(3486), + [aux_sym_cmd_identifier_token20] = ACTIONS(3486), + [aux_sym_cmd_identifier_token21] = ACTIONS(3486), + [aux_sym_cmd_identifier_token22] = ACTIONS(3486), + [aux_sym_cmd_identifier_token23] = ACTIONS(3486), + [aux_sym_cmd_identifier_token24] = ACTIONS(3486), + [aux_sym_cmd_identifier_token25] = ACTIONS(3486), + [aux_sym_cmd_identifier_token26] = ACTIONS(3486), + [aux_sym_cmd_identifier_token27] = ACTIONS(3486), + [aux_sym_cmd_identifier_token28] = ACTIONS(3486), + [aux_sym_cmd_identifier_token29] = ACTIONS(3486), + [aux_sym_cmd_identifier_token30] = ACTIONS(3486), + [aux_sym_cmd_identifier_token31] = ACTIONS(3486), + [aux_sym_cmd_identifier_token32] = ACTIONS(3486), + [aux_sym_cmd_identifier_token33] = ACTIONS(3486), + [aux_sym_cmd_identifier_token34] = ACTIONS(3486), + [aux_sym_cmd_identifier_token35] = ACTIONS(3486), + [aux_sym_cmd_identifier_token36] = ACTIONS(3486), + [aux_sym_cmd_identifier_token37] = ACTIONS(3486), + [aux_sym_cmd_identifier_token38] = ACTIONS(3486), + [aux_sym_cmd_identifier_token39] = ACTIONS(3486), + [aux_sym_cmd_identifier_token40] = ACTIONS(3486), + [sym__newline] = ACTIONS(3488), + [sym__space] = ACTIONS(3491), + [anon_sym_LBRACK] = ACTIONS(3486), + [anon_sym_LPAREN] = ACTIONS(3486), + [anon_sym_DOLLAR] = ACTIONS(3486), + [anon_sym_DASH2] = ACTIONS(3486), + [anon_sym_LBRACE] = ACTIONS(3486), + [anon_sym_DOT_DOT] = ACTIONS(3486), + [aux_sym_expr_unary_token1] = ACTIONS(3486), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3486), + [anon_sym_DOT_DOT_LT] = ACTIONS(3486), + [anon_sym_null] = ACTIONS(3486), + [anon_sym_true] = ACTIONS(3486), + [anon_sym_false] = ACTIONS(3486), + [aux_sym__val_number_decimal_token1] = ACTIONS(3486), + [aux_sym__val_number_decimal_token2] = ACTIONS(3486), + [aux_sym__val_number_decimal_token3] = ACTIONS(3486), + [aux_sym__val_number_decimal_token4] = ACTIONS(3486), + [aux_sym__val_number_token1] = ACTIONS(3486), + [aux_sym__val_number_token2] = ACTIONS(3486), + [aux_sym__val_number_token3] = ACTIONS(3486), + [aux_sym__val_number_token4] = ACTIONS(3486), + [aux_sym__val_number_token5] = ACTIONS(3486), + [aux_sym__val_number_token6] = ACTIONS(3486), + [anon_sym_0b] = ACTIONS(3486), + [anon_sym_0o] = ACTIONS(3486), + [anon_sym_0x] = ACTIONS(3486), + [sym_val_date] = ACTIONS(3486), + [anon_sym_DQUOTE] = ACTIONS(3486), + [sym__str_single_quotes] = ACTIONS(3486), + [sym__str_back_ticks] = ACTIONS(3486), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3486), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3486), + [aux_sym_env_var_token1] = ACTIONS(3486), + [anon_sym_CARET] = ACTIONS(3486), + [aux_sym_command_token1] = ACTIONS(3486), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3530), + [sym_raw_string_begin] = ACTIONS(3494), }, - [1149] = { - [sym_env_var] = STATE(6681), - [sym_comment] = STATE(1149), - [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1149), - [aux_sym_cmd_identifier_token1] = ACTIONS(3473), - [aux_sym_cmd_identifier_token2] = ACTIONS(3479), - [aux_sym_cmd_identifier_token3] = ACTIONS(3479), - [aux_sym_cmd_identifier_token4] = ACTIONS(3479), - [aux_sym_cmd_identifier_token5] = ACTIONS(3479), - [aux_sym_cmd_identifier_token6] = ACTIONS(3479), - [aux_sym_cmd_identifier_token7] = ACTIONS(3479), - [aux_sym_cmd_identifier_token8] = ACTIONS(3479), - [aux_sym_cmd_identifier_token9] = ACTIONS(3473), - [aux_sym_cmd_identifier_token10] = ACTIONS(3479), - [aux_sym_cmd_identifier_token11] = ACTIONS(3479), - [aux_sym_cmd_identifier_token12] = ACTIONS(3479), - [aux_sym_cmd_identifier_token13] = ACTIONS(3473), - [aux_sym_cmd_identifier_token14] = ACTIONS(3479), - [aux_sym_cmd_identifier_token15] = ACTIONS(3473), - [aux_sym_cmd_identifier_token16] = ACTIONS(3479), - [aux_sym_cmd_identifier_token17] = ACTIONS(3479), - [aux_sym_cmd_identifier_token18] = ACTIONS(3473), - [aux_sym_cmd_identifier_token19] = ACTIONS(3479), - [aux_sym_cmd_identifier_token20] = ACTIONS(3479), - [aux_sym_cmd_identifier_token21] = ACTIONS(3479), - [aux_sym_cmd_identifier_token22] = ACTIONS(3479), - [aux_sym_cmd_identifier_token23] = ACTIONS(3479), - [aux_sym_cmd_identifier_token24] = ACTIONS(3479), - [aux_sym_cmd_identifier_token25] = ACTIONS(3479), - [aux_sym_cmd_identifier_token26] = ACTIONS(3479), - [aux_sym_cmd_identifier_token27] = ACTIONS(3479), - [aux_sym_cmd_identifier_token28] = ACTIONS(3479), - [aux_sym_cmd_identifier_token29] = ACTIONS(3479), - [aux_sym_cmd_identifier_token30] = ACTIONS(3479), - [aux_sym_cmd_identifier_token31] = ACTIONS(3479), - [aux_sym_cmd_identifier_token32] = ACTIONS(3473), - [aux_sym_cmd_identifier_token33] = ACTIONS(3479), - [aux_sym_cmd_identifier_token34] = ACTIONS(3473), - [aux_sym_cmd_identifier_token35] = ACTIONS(3479), - [aux_sym_cmd_identifier_token36] = ACTIONS(3479), - [aux_sym_cmd_identifier_token37] = ACTIONS(3479), - [aux_sym_cmd_identifier_token38] = ACTIONS(3473), - [aux_sym_cmd_identifier_token39] = ACTIONS(3479), - [aux_sym_cmd_identifier_token40] = ACTIONS(3479), - [anon_sym_LBRACK] = ACTIONS(3479), - [anon_sym_LPAREN] = ACTIONS(3479), - [anon_sym_DOLLAR] = ACTIONS(3473), - [anon_sym_DASH2] = ACTIONS(3473), - [anon_sym_LBRACE] = ACTIONS(3479), - [anon_sym_DOT_DOT] = ACTIONS(3473), - [aux_sym_expr_unary_token1] = ACTIONS(3479), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3479), - [anon_sym_DOT_DOT_LT] = ACTIONS(3479), - [anon_sym_null] = ACTIONS(3473), - [anon_sym_true] = ACTIONS(3473), - [anon_sym_false] = ACTIONS(3473), - [aux_sym__val_number_decimal_token1] = ACTIONS(3473), - [aux_sym__val_number_decimal_token2] = ACTIONS(3479), - [aux_sym__val_number_decimal_token3] = ACTIONS(3479), - [aux_sym__val_number_decimal_token4] = ACTIONS(3479), - [aux_sym__val_number_token1] = ACTIONS(3479), - [aux_sym__val_number_token2] = ACTIONS(3479), - [aux_sym__val_number_token3] = ACTIONS(3479), - [aux_sym__val_number_token4] = ACTIONS(3473), - [aux_sym__val_number_token5] = ACTIONS(3473), - [aux_sym__val_number_token6] = ACTIONS(3473), - [anon_sym_0b] = ACTIONS(3473), - [anon_sym_0o] = ACTIONS(3473), - [anon_sym_0x] = ACTIONS(3473), - [sym_val_date] = ACTIONS(3479), - [anon_sym_DQUOTE] = ACTIONS(3479), - [sym__str_single_quotes] = ACTIONS(3479), - [sym__str_back_ticks] = ACTIONS(3479), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3479), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3479), - [aux_sym_env_var_token1] = ACTIONS(3532), - [anon_sym_CARET] = ACTIONS(3479), - [aux_sym_command_token1] = ACTIONS(3479), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3479), + [1131] = { + [sym_expr_unary] = STATE(4292), + [sym__expr_unary_minus] = STATE(2455), + [sym_expr_parenthesized] = STATE(3970), + [sym_val_range] = STATE(4292), + [sym__val_range] = STATE(7615), + [sym__val_range_with_end] = STATE(7280), + [sym__value] = STATE(4292), + [sym_val_nothing] = STATE(2510), + [sym_val_bool] = STATE(4048), + [sym_val_variable] = STATE(3942), + [sym_val_number] = STATE(2510), + [sym__val_number_decimal] = STATE(3802), + [sym__val_number] = STATE(2456), + [sym_val_duration] = STATE(2510), + [sym_val_filesize] = STATE(2510), + [sym_val_binary] = STATE(2510), + [sym_val_string] = STATE(2510), + [sym__raw_str] = STATE(1780), + [sym__str_double_quotes] = STATE(1780), + [sym_val_interpolated] = STATE(2510), + [sym__inter_single_quotes] = STATE(2461), + [sym__inter_double_quotes] = STATE(2465), + [sym_val_list] = STATE(2510), + [sym_val_record] = STATE(2510), + [sym_val_table] = STATE(2510), + [sym_val_closure] = STATE(2510), + [sym_unquoted] = STATE(4010), + [sym__unquoted_with_expr] = STATE(4320), + [sym__unquoted_anonymous_prefix] = STATE(6888), + [sym_comment] = STATE(1131), + [anon_sym_LBRACK] = ACTIONS(37), + [anon_sym_LPAREN] = ACTIONS(39), + [anon_sym_DOLLAR] = ACTIONS(3460), + [anon_sym_DASH2] = ACTIONS(45), + [anon_sym_LBRACE] = ACTIONS(63), + [anon_sym_DOT_DOT] = ACTIONS(3462), + [aux_sym_expr_unary_token1] = ACTIONS(3464), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3466), + [anon_sym_DOT_DOT_LT] = ACTIONS(3466), + [anon_sym_null] = ACTIONS(3468), + [anon_sym_true] = ACTIONS(3470), + [anon_sym_false] = ACTIONS(3470), + [aux_sym__val_number_decimal_token1] = ACTIONS(3472), + [aux_sym__val_number_decimal_token2] = ACTIONS(3474), + [aux_sym__val_number_decimal_token3] = ACTIONS(3476), + [aux_sym__val_number_decimal_token4] = ACTIONS(3478), + [aux_sym__val_number_token1] = ACTIONS(99), + [aux_sym__val_number_token2] = ACTIONS(99), + [aux_sym__val_number_token3] = ACTIONS(99), + [aux_sym__val_number_token4] = ACTIONS(3480), + [aux_sym__val_number_token5] = ACTIONS(3480), + [aux_sym__val_number_token6] = ACTIONS(3480), + [anon_sym_0b] = ACTIONS(103), + [anon_sym_0o] = ACTIONS(105), + [anon_sym_0x] = ACTIONS(105), + [sym_val_date] = ACTIONS(3482), + [anon_sym_DQUOTE] = ACTIONS(109), + [sym__str_single_quotes] = ACTIONS(111), + [sym__str_back_ticks] = ACTIONS(111), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(113), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(115), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3354), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(123), }, - [1150] = { - [sym_comment] = STATE(1150), - [aux_sym_shebang_repeat1] = STATE(1150), + [1132] = { + [sym_comment] = STATE(1132), + [aux_sym_ctrl_do_parenthesized_repeat2] = STATE(1130), + [aux_sym_cmd_identifier_token1] = ACTIONS(3496), + [aux_sym_cmd_identifier_token2] = ACTIONS(3496), + [aux_sym_cmd_identifier_token3] = ACTIONS(3496), + [aux_sym_cmd_identifier_token4] = ACTIONS(3496), + [aux_sym_cmd_identifier_token5] = ACTIONS(3496), + [aux_sym_cmd_identifier_token6] = ACTIONS(3496), + [aux_sym_cmd_identifier_token7] = ACTIONS(3496), + [aux_sym_cmd_identifier_token8] = ACTIONS(3496), + [aux_sym_cmd_identifier_token9] = ACTIONS(3496), + [aux_sym_cmd_identifier_token10] = ACTIONS(3496), + [aux_sym_cmd_identifier_token11] = ACTIONS(3496), + [aux_sym_cmd_identifier_token12] = ACTIONS(3496), + [aux_sym_cmd_identifier_token13] = ACTIONS(3496), + [aux_sym_cmd_identifier_token14] = ACTIONS(3496), + [aux_sym_cmd_identifier_token15] = ACTIONS(3496), + [aux_sym_cmd_identifier_token16] = ACTIONS(3496), + [aux_sym_cmd_identifier_token17] = ACTIONS(3496), + [aux_sym_cmd_identifier_token18] = ACTIONS(3496), + [aux_sym_cmd_identifier_token19] = ACTIONS(3496), + [aux_sym_cmd_identifier_token20] = ACTIONS(3496), + [aux_sym_cmd_identifier_token21] = ACTIONS(3496), + [aux_sym_cmd_identifier_token22] = ACTIONS(3496), + [aux_sym_cmd_identifier_token23] = ACTIONS(3496), + [aux_sym_cmd_identifier_token24] = ACTIONS(3496), + [aux_sym_cmd_identifier_token25] = ACTIONS(3496), + [aux_sym_cmd_identifier_token26] = ACTIONS(3496), + [aux_sym_cmd_identifier_token27] = ACTIONS(3496), + [aux_sym_cmd_identifier_token28] = ACTIONS(3496), + [aux_sym_cmd_identifier_token29] = ACTIONS(3496), + [aux_sym_cmd_identifier_token30] = ACTIONS(3496), + [aux_sym_cmd_identifier_token31] = ACTIONS(3496), + [aux_sym_cmd_identifier_token32] = ACTIONS(3496), + [aux_sym_cmd_identifier_token33] = ACTIONS(3496), + [aux_sym_cmd_identifier_token34] = ACTIONS(3496), + [aux_sym_cmd_identifier_token35] = ACTIONS(3496), + [aux_sym_cmd_identifier_token36] = ACTIONS(3496), + [aux_sym_cmd_identifier_token37] = ACTIONS(3496), + [aux_sym_cmd_identifier_token38] = ACTIONS(3496), + [aux_sym_cmd_identifier_token39] = ACTIONS(3496), + [aux_sym_cmd_identifier_token40] = ACTIONS(3496), + [sym__newline] = ACTIONS(3498), + [sym__space] = ACTIONS(3500), + [anon_sym_LBRACK] = ACTIONS(3496), + [anon_sym_LPAREN] = ACTIONS(3496), + [anon_sym_DOLLAR] = ACTIONS(3496), + [anon_sym_DASH2] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3496), + [anon_sym_DOT_DOT] = ACTIONS(3496), + [aux_sym_expr_unary_token1] = ACTIONS(3496), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3496), + [anon_sym_DOT_DOT_LT] = ACTIONS(3496), + [anon_sym_null] = ACTIONS(3496), + [anon_sym_true] = ACTIONS(3496), + [anon_sym_false] = ACTIONS(3496), + [aux_sym__val_number_decimal_token1] = ACTIONS(3496), + [aux_sym__val_number_decimal_token2] = ACTIONS(3496), + [aux_sym__val_number_decimal_token3] = ACTIONS(3496), + [aux_sym__val_number_decimal_token4] = ACTIONS(3496), + [aux_sym__val_number_token1] = ACTIONS(3496), + [aux_sym__val_number_token2] = ACTIONS(3496), + [aux_sym__val_number_token3] = ACTIONS(3496), + [aux_sym__val_number_token4] = ACTIONS(3496), + [aux_sym__val_number_token5] = ACTIONS(3496), + [aux_sym__val_number_token6] = ACTIONS(3496), + [anon_sym_0b] = ACTIONS(3496), + [anon_sym_0o] = ACTIONS(3496), + [anon_sym_0x] = ACTIONS(3496), + [sym_val_date] = ACTIONS(3496), + [anon_sym_DQUOTE] = ACTIONS(3496), + [sym__str_single_quotes] = ACTIONS(3496), + [sym__str_back_ticks] = ACTIONS(3496), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3496), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3496), + [aux_sym_env_var_token1] = ACTIONS(3496), + [anon_sym_CARET] = ACTIONS(3496), + [aux_sym_command_token1] = ACTIONS(3496), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3502), + }, + [1133] = { + [sym_comment] = STATE(1133), + [aux_sym_shebang_repeat1] = STATE(1133), [aux_sym_cmd_identifier_token1] = ACTIONS(1274), [aux_sym_cmd_identifier_token2] = ACTIONS(1276), [aux_sym_cmd_identifier_token3] = ACTIONS(1276), @@ -194988,7 +193769,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym_cmd_identifier_token38] = ACTIONS(1274), [aux_sym_cmd_identifier_token39] = ACTIONS(1276), [aux_sym_cmd_identifier_token40] = ACTIONS(1276), - [sym__newline] = ACTIONS(3535), + [sym__newline] = ACTIONS(3504), [anon_sym_LBRACK] = ACTIONS(1276), [anon_sym_LPAREN] = ACTIONS(1276), [anon_sym_DOLLAR] = ACTIONS(1274), @@ -195026,730 +193807,1374 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1276), }, - [1151] = { - [sym_env_var] = STATE(7347), - [sym_comment] = STATE(1151), - [aux_sym_pipe_element_repeat2] = STATE(1151), - [aux_sym_cmd_identifier_token1] = ACTIONS(3517), - [aux_sym_cmd_identifier_token2] = ACTIONS(3521), - [aux_sym_cmd_identifier_token3] = ACTIONS(3521), - [aux_sym_cmd_identifier_token4] = ACTIONS(3521), - [aux_sym_cmd_identifier_token5] = ACTIONS(3521), - [aux_sym_cmd_identifier_token6] = ACTIONS(3521), - [aux_sym_cmd_identifier_token7] = ACTIONS(3521), - [aux_sym_cmd_identifier_token8] = ACTIONS(3521), - [aux_sym_cmd_identifier_token9] = ACTIONS(3517), - [aux_sym_cmd_identifier_token10] = ACTIONS(3521), - [aux_sym_cmd_identifier_token11] = ACTIONS(3521), - [aux_sym_cmd_identifier_token12] = ACTIONS(3521), - [aux_sym_cmd_identifier_token13] = ACTIONS(3517), - [aux_sym_cmd_identifier_token14] = ACTIONS(3521), - [aux_sym_cmd_identifier_token15] = ACTIONS(3517), - [aux_sym_cmd_identifier_token16] = ACTIONS(3521), - [aux_sym_cmd_identifier_token17] = ACTIONS(3521), - [aux_sym_cmd_identifier_token18] = ACTIONS(3517), - [aux_sym_cmd_identifier_token19] = ACTIONS(3521), - [aux_sym_cmd_identifier_token20] = ACTIONS(3521), - [aux_sym_cmd_identifier_token21] = ACTIONS(3521), - [aux_sym_cmd_identifier_token22] = ACTIONS(3521), - [aux_sym_cmd_identifier_token23] = ACTIONS(3521), - [aux_sym_cmd_identifier_token24] = ACTIONS(3521), - [aux_sym_cmd_identifier_token25] = ACTIONS(3521), - [aux_sym_cmd_identifier_token26] = ACTIONS(3521), - [aux_sym_cmd_identifier_token27] = ACTIONS(3521), - [aux_sym_cmd_identifier_token28] = ACTIONS(3521), - [aux_sym_cmd_identifier_token29] = ACTIONS(3521), - [aux_sym_cmd_identifier_token30] = ACTIONS(3521), - [aux_sym_cmd_identifier_token31] = ACTIONS(3521), - [aux_sym_cmd_identifier_token32] = ACTIONS(3517), - [aux_sym_cmd_identifier_token33] = ACTIONS(3521), - [aux_sym_cmd_identifier_token34] = ACTIONS(3517), - [aux_sym_cmd_identifier_token35] = ACTIONS(3521), - [aux_sym_cmd_identifier_token36] = ACTIONS(3521), - [aux_sym_cmd_identifier_token37] = ACTIONS(3521), - [aux_sym_cmd_identifier_token38] = ACTIONS(3517), - [aux_sym_cmd_identifier_token39] = ACTIONS(3521), - [aux_sym_cmd_identifier_token40] = ACTIONS(3521), - [anon_sym_LBRACK] = ACTIONS(3521), - [anon_sym_LPAREN] = ACTIONS(3521), - [anon_sym_DOLLAR] = ACTIONS(3517), - [anon_sym_DASH2] = ACTIONS(3517), - [anon_sym_LBRACE] = ACTIONS(3521), - [anon_sym_DOT_DOT] = ACTIONS(3517), - [aux_sym_expr_unary_token1] = ACTIONS(3521), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3521), - [anon_sym_DOT_DOT_LT] = ACTIONS(3521), - [anon_sym_null] = ACTIONS(3517), - [anon_sym_true] = ACTIONS(3517), - [anon_sym_false] = ACTIONS(3517), - [aux_sym__val_number_decimal_token1] = ACTIONS(3517), - [aux_sym__val_number_decimal_token2] = ACTIONS(3521), - [aux_sym__val_number_decimal_token3] = ACTIONS(3521), - [aux_sym__val_number_decimal_token4] = ACTIONS(3521), - [aux_sym__val_number_token1] = ACTIONS(3521), - [aux_sym__val_number_token2] = ACTIONS(3521), - [aux_sym__val_number_token3] = ACTIONS(3521), - [aux_sym__val_number_token4] = ACTIONS(3517), - [aux_sym__val_number_token5] = ACTIONS(3517), - [aux_sym__val_number_token6] = ACTIONS(3517), - [anon_sym_0b] = ACTIONS(3517), - [anon_sym_0o] = ACTIONS(3517), - [anon_sym_0x] = ACTIONS(3517), - [sym_val_date] = ACTIONS(3521), - [anon_sym_DQUOTE] = ACTIONS(3521), - [sym__str_single_quotes] = ACTIONS(3521), - [sym__str_back_ticks] = ACTIONS(3521), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3521), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3521), - [aux_sym_env_var_token1] = ACTIONS(3538), - [anon_sym_CARET] = ACTIONS(3521), - [aux_sym_command_token1] = ACTIONS(3521), - [anon_sym_POUND] = ACTIONS(251), + [1134] = { + [sym_env_var] = STATE(7217), + [sym_comment] = STATE(1134), + [aux_sym_pipe_element_repeat2] = STATE(1134), + [aux_sym_cmd_identifier_token1] = ACTIONS(3507), + [aux_sym_cmd_identifier_token2] = ACTIONS(3509), + [aux_sym_cmd_identifier_token3] = ACTIONS(3509), + [aux_sym_cmd_identifier_token4] = ACTIONS(3509), + [aux_sym_cmd_identifier_token5] = ACTIONS(3509), + [aux_sym_cmd_identifier_token6] = ACTIONS(3509), + [aux_sym_cmd_identifier_token7] = ACTIONS(3509), + [aux_sym_cmd_identifier_token8] = ACTIONS(3509), + [aux_sym_cmd_identifier_token9] = ACTIONS(3507), + [aux_sym_cmd_identifier_token10] = ACTIONS(3509), + [aux_sym_cmd_identifier_token11] = ACTIONS(3509), + [aux_sym_cmd_identifier_token12] = ACTIONS(3509), + [aux_sym_cmd_identifier_token13] = ACTIONS(3507), + [aux_sym_cmd_identifier_token14] = ACTIONS(3509), + [aux_sym_cmd_identifier_token15] = ACTIONS(3507), + [aux_sym_cmd_identifier_token16] = ACTIONS(3509), + [aux_sym_cmd_identifier_token17] = ACTIONS(3509), + [aux_sym_cmd_identifier_token18] = ACTIONS(3507), + [aux_sym_cmd_identifier_token19] = ACTIONS(3509), + [aux_sym_cmd_identifier_token20] = ACTIONS(3509), + [aux_sym_cmd_identifier_token21] = ACTIONS(3509), + [aux_sym_cmd_identifier_token22] = ACTIONS(3509), + [aux_sym_cmd_identifier_token23] = ACTIONS(3509), + [aux_sym_cmd_identifier_token24] = ACTIONS(3509), + [aux_sym_cmd_identifier_token25] = ACTIONS(3509), + [aux_sym_cmd_identifier_token26] = ACTIONS(3509), + [aux_sym_cmd_identifier_token27] = ACTIONS(3509), + [aux_sym_cmd_identifier_token28] = ACTIONS(3509), + [aux_sym_cmd_identifier_token29] = ACTIONS(3509), + [aux_sym_cmd_identifier_token30] = ACTIONS(3509), + [aux_sym_cmd_identifier_token31] = ACTIONS(3509), + [aux_sym_cmd_identifier_token32] = ACTIONS(3507), + [aux_sym_cmd_identifier_token33] = ACTIONS(3509), + [aux_sym_cmd_identifier_token34] = ACTIONS(3507), + [aux_sym_cmd_identifier_token35] = ACTIONS(3509), + [aux_sym_cmd_identifier_token36] = ACTIONS(3509), + [aux_sym_cmd_identifier_token37] = ACTIONS(3509), + [aux_sym_cmd_identifier_token38] = ACTIONS(3507), + [aux_sym_cmd_identifier_token39] = ACTIONS(3509), + [aux_sym_cmd_identifier_token40] = ACTIONS(3509), + [anon_sym_LBRACK] = ACTIONS(3509), + [anon_sym_LPAREN] = ACTIONS(3509), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_DASH2] = ACTIONS(3507), + [anon_sym_LBRACE] = ACTIONS(3509), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3509), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3509), + [anon_sym_DOT_DOT_LT] = ACTIONS(3509), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_true] = ACTIONS(3507), + [anon_sym_false] = ACTIONS(3507), + [aux_sym__val_number_decimal_token1] = ACTIONS(3507), + [aux_sym__val_number_decimal_token2] = ACTIONS(3509), + [aux_sym__val_number_decimal_token3] = ACTIONS(3509), + [aux_sym__val_number_decimal_token4] = ACTIONS(3509), + [aux_sym__val_number_token1] = ACTIONS(3509), + [aux_sym__val_number_token2] = ACTIONS(3509), + [aux_sym__val_number_token3] = ACTIONS(3509), + [aux_sym__val_number_token4] = ACTIONS(3507), + [aux_sym__val_number_token5] = ACTIONS(3507), + [aux_sym__val_number_token6] = ACTIONS(3507), + [anon_sym_0b] = ACTIONS(3507), + [anon_sym_0o] = ACTIONS(3507), + [anon_sym_0x] = ACTIONS(3507), + [sym_val_date] = ACTIONS(3509), + [anon_sym_DQUOTE] = ACTIONS(3509), + [sym__str_single_quotes] = ACTIONS(3509), + [sym__str_back_ticks] = ACTIONS(3509), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3509), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3509), + [aux_sym_env_var_token1] = ACTIONS(3511), + [anon_sym_CARET] = ACTIONS(3509), + [aux_sym_command_token1] = ACTIONS(3509), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3509), + }, + [1135] = { + [sym_comment] = STATE(1135), + [aux_sym_pipe_element_repeat1] = STATE(1135), + [aux_sym_cmd_identifier_token1] = ACTIONS(3514), + [aux_sym_cmd_identifier_token2] = ACTIONS(3514), + [aux_sym_cmd_identifier_token3] = ACTIONS(3514), + [aux_sym_cmd_identifier_token4] = ACTIONS(3514), + [aux_sym_cmd_identifier_token5] = ACTIONS(3514), + [aux_sym_cmd_identifier_token6] = ACTIONS(3514), + [aux_sym_cmd_identifier_token7] = ACTIONS(3514), + [aux_sym_cmd_identifier_token8] = ACTIONS(3514), + [aux_sym_cmd_identifier_token9] = ACTIONS(3514), + [aux_sym_cmd_identifier_token10] = ACTIONS(3514), + [aux_sym_cmd_identifier_token11] = ACTIONS(3514), + [aux_sym_cmd_identifier_token12] = ACTIONS(3514), + [aux_sym_cmd_identifier_token13] = ACTIONS(3514), + [aux_sym_cmd_identifier_token14] = ACTIONS(3514), + [aux_sym_cmd_identifier_token15] = ACTIONS(3514), + [aux_sym_cmd_identifier_token16] = ACTIONS(3514), + [aux_sym_cmd_identifier_token17] = ACTIONS(3514), + [aux_sym_cmd_identifier_token18] = ACTIONS(3514), + [aux_sym_cmd_identifier_token19] = ACTIONS(3514), + [aux_sym_cmd_identifier_token20] = ACTIONS(3514), + [aux_sym_cmd_identifier_token21] = ACTIONS(3514), + [aux_sym_cmd_identifier_token22] = ACTIONS(3514), + [aux_sym_cmd_identifier_token23] = ACTIONS(3514), + [aux_sym_cmd_identifier_token24] = ACTIONS(3514), + [aux_sym_cmd_identifier_token25] = ACTIONS(3514), + [aux_sym_cmd_identifier_token26] = ACTIONS(3514), + [aux_sym_cmd_identifier_token27] = ACTIONS(3514), + [aux_sym_cmd_identifier_token28] = ACTIONS(3514), + [aux_sym_cmd_identifier_token29] = ACTIONS(3514), + [aux_sym_cmd_identifier_token30] = ACTIONS(3514), + [aux_sym_cmd_identifier_token31] = ACTIONS(3514), + [aux_sym_cmd_identifier_token32] = ACTIONS(3514), + [aux_sym_cmd_identifier_token33] = ACTIONS(3514), + [aux_sym_cmd_identifier_token34] = ACTIONS(3514), + [aux_sym_cmd_identifier_token35] = ACTIONS(3514), + [aux_sym_cmd_identifier_token36] = ACTIONS(3514), + [aux_sym_cmd_identifier_token37] = ACTIONS(3514), + [aux_sym_cmd_identifier_token38] = ACTIONS(3514), + [aux_sym_cmd_identifier_token39] = ACTIONS(3514), + [aux_sym_cmd_identifier_token40] = ACTIONS(3514), + [sym__space] = ACTIONS(3516), + [anon_sym_LBRACK] = ACTIONS(3514), + [anon_sym_LPAREN] = ACTIONS(3514), + [anon_sym_DOLLAR] = ACTIONS(3514), + [anon_sym_DASH2] = ACTIONS(3514), + [anon_sym_LBRACE] = ACTIONS(3514), + [anon_sym_DOT_DOT] = ACTIONS(3514), + [aux_sym_expr_unary_token1] = ACTIONS(3514), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3514), + [anon_sym_DOT_DOT_LT] = ACTIONS(3514), + [anon_sym_null] = ACTIONS(3514), + [anon_sym_true] = ACTIONS(3514), + [anon_sym_false] = ACTIONS(3514), + [aux_sym__val_number_decimal_token1] = ACTIONS(3514), + [aux_sym__val_number_decimal_token2] = ACTIONS(3514), + [aux_sym__val_number_decimal_token3] = ACTIONS(3514), + [aux_sym__val_number_decimal_token4] = ACTIONS(3514), + [aux_sym__val_number_token1] = ACTIONS(3514), + [aux_sym__val_number_token2] = ACTIONS(3514), + [aux_sym__val_number_token3] = ACTIONS(3514), + [aux_sym__val_number_token4] = ACTIONS(3514), + [aux_sym__val_number_token5] = ACTIONS(3514), + [aux_sym__val_number_token6] = ACTIONS(3514), + [anon_sym_0b] = ACTIONS(3514), + [anon_sym_0o] = ACTIONS(3514), + [anon_sym_0x] = ACTIONS(3514), + [sym_val_date] = ACTIONS(3514), + [anon_sym_DQUOTE] = ACTIONS(3514), + [sym__str_single_quotes] = ACTIONS(3514), + [sym__str_back_ticks] = ACTIONS(3514), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3514), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3514), + [aux_sym_env_var_token1] = ACTIONS(3514), + [anon_sym_CARET] = ACTIONS(3514), + [aux_sym_command_token1] = ACTIONS(3514), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3519), + }, + [1136] = { + [sym_comment] = STATE(1136), + [aux_sym_cmd_identifier_token1] = ACTIONS(1960), + [aux_sym_cmd_identifier_token2] = ACTIONS(1960), + [aux_sym_cmd_identifier_token3] = ACTIONS(1960), + [aux_sym_cmd_identifier_token4] = ACTIONS(1960), + [aux_sym_cmd_identifier_token5] = ACTIONS(1960), + [aux_sym_cmd_identifier_token6] = ACTIONS(1960), + [aux_sym_cmd_identifier_token7] = ACTIONS(1960), + [aux_sym_cmd_identifier_token8] = ACTIONS(1960), + [aux_sym_cmd_identifier_token9] = ACTIONS(1960), + [aux_sym_cmd_identifier_token10] = ACTIONS(1960), + [aux_sym_cmd_identifier_token11] = ACTIONS(1960), + [aux_sym_cmd_identifier_token12] = ACTIONS(1960), + [aux_sym_cmd_identifier_token13] = ACTIONS(1960), + [aux_sym_cmd_identifier_token14] = ACTIONS(1960), + [aux_sym_cmd_identifier_token15] = ACTIONS(1960), + [aux_sym_cmd_identifier_token16] = ACTIONS(1960), + [aux_sym_cmd_identifier_token17] = ACTIONS(1960), + [aux_sym_cmd_identifier_token18] = ACTIONS(1960), + [aux_sym_cmd_identifier_token19] = ACTIONS(1960), + [aux_sym_cmd_identifier_token20] = ACTIONS(1960), + [aux_sym_cmd_identifier_token21] = ACTIONS(1960), + [aux_sym_cmd_identifier_token22] = ACTIONS(1960), + [aux_sym_cmd_identifier_token23] = ACTIONS(1960), + [aux_sym_cmd_identifier_token24] = ACTIONS(1960), + [aux_sym_cmd_identifier_token25] = ACTIONS(1960), + [aux_sym_cmd_identifier_token26] = ACTIONS(1960), + [aux_sym_cmd_identifier_token27] = ACTIONS(1960), + [aux_sym_cmd_identifier_token28] = ACTIONS(1960), + [aux_sym_cmd_identifier_token29] = ACTIONS(1960), + [aux_sym_cmd_identifier_token30] = ACTIONS(1960), + [aux_sym_cmd_identifier_token31] = ACTIONS(1960), + [aux_sym_cmd_identifier_token32] = ACTIONS(1960), + [aux_sym_cmd_identifier_token33] = ACTIONS(1960), + [aux_sym_cmd_identifier_token34] = ACTIONS(1960), + [aux_sym_cmd_identifier_token35] = ACTIONS(1960), + [aux_sym_cmd_identifier_token36] = ACTIONS(1960), + [aux_sym_cmd_identifier_token37] = ACTIONS(1960), + [aux_sym_cmd_identifier_token38] = ACTIONS(1960), + [aux_sym_cmd_identifier_token39] = ACTIONS(1960), + [aux_sym_cmd_identifier_token40] = ACTIONS(1960), + [sym__newline] = ACTIONS(1960), + [sym__space] = ACTIONS(3521), + [anon_sym_LBRACK] = ACTIONS(1960), + [anon_sym_LPAREN] = ACTIONS(1960), + [anon_sym_DOLLAR] = ACTIONS(1960), + [anon_sym_DASH2] = ACTIONS(1960), + [anon_sym_LBRACE] = ACTIONS(1960), + [anon_sym_DOT_DOT] = ACTIONS(1960), + [aux_sym_expr_unary_token1] = ACTIONS(1960), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1960), + [anon_sym_DOT_DOT_LT] = ACTIONS(1960), + [anon_sym_null] = ACTIONS(1960), + [anon_sym_true] = ACTIONS(1960), + [anon_sym_false] = ACTIONS(1960), + [aux_sym__val_number_decimal_token1] = ACTIONS(1960), + [aux_sym__val_number_decimal_token2] = ACTIONS(1960), + [aux_sym__val_number_decimal_token3] = ACTIONS(1960), + [aux_sym__val_number_decimal_token4] = ACTIONS(1960), + [aux_sym__val_number_token1] = ACTIONS(1960), + [aux_sym__val_number_token2] = ACTIONS(1960), + [aux_sym__val_number_token3] = ACTIONS(1960), + [aux_sym__val_number_token4] = ACTIONS(1960), + [aux_sym__val_number_token5] = ACTIONS(1960), + [aux_sym__val_number_token6] = ACTIONS(1960), + [anon_sym_0b] = ACTIONS(1960), + [anon_sym_0o] = ACTIONS(1960), + [anon_sym_0x] = ACTIONS(1960), + [sym_val_date] = ACTIONS(1960), + [anon_sym_DQUOTE] = ACTIONS(1960), + [sym__str_single_quotes] = ACTIONS(1960), + [sym__str_back_ticks] = ACTIONS(1960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1960), + [aux_sym_env_var_token1] = ACTIONS(1960), + [anon_sym_CARET] = ACTIONS(1960), + [aux_sym_command_token1] = ACTIONS(1960), + [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(3521), }, - [1152] = { - [sym_comment] = STATE(1152), - [aux_sym_cmd_identifier_token1] = ACTIONS(1853), - [aux_sym_cmd_identifier_token2] = ACTIONS(1853), - [aux_sym_cmd_identifier_token3] = ACTIONS(1853), - [aux_sym_cmd_identifier_token4] = ACTIONS(1853), - [aux_sym_cmd_identifier_token5] = ACTIONS(1853), - [aux_sym_cmd_identifier_token6] = ACTIONS(1853), - [aux_sym_cmd_identifier_token7] = ACTIONS(1853), - [aux_sym_cmd_identifier_token8] = ACTIONS(1853), - [aux_sym_cmd_identifier_token9] = ACTIONS(1853), - [aux_sym_cmd_identifier_token10] = ACTIONS(1853), - [aux_sym_cmd_identifier_token11] = ACTIONS(1853), - [aux_sym_cmd_identifier_token12] = ACTIONS(1853), - [aux_sym_cmd_identifier_token13] = ACTIONS(1853), - [aux_sym_cmd_identifier_token14] = ACTIONS(1853), - [aux_sym_cmd_identifier_token15] = ACTIONS(1853), - [aux_sym_cmd_identifier_token16] = ACTIONS(1853), - [aux_sym_cmd_identifier_token17] = ACTIONS(1853), - [aux_sym_cmd_identifier_token18] = ACTIONS(1853), - [aux_sym_cmd_identifier_token19] = ACTIONS(1853), - [aux_sym_cmd_identifier_token20] = ACTIONS(1853), - [aux_sym_cmd_identifier_token21] = ACTIONS(1853), - [aux_sym_cmd_identifier_token22] = ACTIONS(1853), - [aux_sym_cmd_identifier_token23] = ACTIONS(1853), - [aux_sym_cmd_identifier_token24] = ACTIONS(1853), - [aux_sym_cmd_identifier_token25] = ACTIONS(1853), - [aux_sym_cmd_identifier_token26] = ACTIONS(1853), - [aux_sym_cmd_identifier_token27] = ACTIONS(1853), - [aux_sym_cmd_identifier_token28] = ACTIONS(1853), - [aux_sym_cmd_identifier_token29] = ACTIONS(1853), - [aux_sym_cmd_identifier_token30] = ACTIONS(1853), - [aux_sym_cmd_identifier_token31] = ACTIONS(1853), - [aux_sym_cmd_identifier_token32] = ACTIONS(1853), - [aux_sym_cmd_identifier_token33] = ACTIONS(1853), - [aux_sym_cmd_identifier_token34] = ACTIONS(1853), - [aux_sym_cmd_identifier_token35] = ACTIONS(1853), - [aux_sym_cmd_identifier_token36] = ACTIONS(1853), - [aux_sym_cmd_identifier_token37] = ACTIONS(1853), - [aux_sym_cmd_identifier_token38] = ACTIONS(1853), - [aux_sym_cmd_identifier_token39] = ACTIONS(1853), - [aux_sym_cmd_identifier_token40] = ACTIONS(1853), - [sym__newline] = ACTIONS(1853), - [sym__space] = ACTIONS(3541), - [anon_sym_LBRACK] = ACTIONS(1853), - [anon_sym_LPAREN] = ACTIONS(1853), - [anon_sym_DOLLAR] = ACTIONS(1853), - [anon_sym_DASH2] = ACTIONS(1853), - [anon_sym_LBRACE] = ACTIONS(1853), - [anon_sym_DOT_DOT] = ACTIONS(1853), - [aux_sym_expr_unary_token1] = ACTIONS(1853), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), - [anon_sym_DOT_DOT_LT] = ACTIONS(1853), - [anon_sym_null] = ACTIONS(1853), - [anon_sym_true] = ACTIONS(1853), - [anon_sym_false] = ACTIONS(1853), - [aux_sym__val_number_decimal_token1] = ACTIONS(1853), - [aux_sym__val_number_decimal_token2] = ACTIONS(1853), - [aux_sym__val_number_decimal_token3] = ACTIONS(1853), - [aux_sym__val_number_decimal_token4] = ACTIONS(1853), - [aux_sym__val_number_token1] = ACTIONS(1853), - [aux_sym__val_number_token2] = ACTIONS(1853), - [aux_sym__val_number_token3] = ACTIONS(1853), - [aux_sym__val_number_token4] = ACTIONS(1853), - [aux_sym__val_number_token5] = ACTIONS(1853), - [aux_sym__val_number_token6] = ACTIONS(1853), - [anon_sym_0b] = ACTIONS(1853), - [anon_sym_0o] = ACTIONS(1853), - [anon_sym_0x] = ACTIONS(1853), - [sym_val_date] = ACTIONS(1853), - [anon_sym_DQUOTE] = ACTIONS(1853), - [sym__str_single_quotes] = ACTIONS(1853), - [sym__str_back_ticks] = ACTIONS(1853), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), - [aux_sym_env_var_token1] = ACTIONS(1853), - [anon_sym_CARET] = ACTIONS(1853), - [aux_sym_command_token1] = ACTIONS(1853), + [1137] = { + [sym_comment] = STATE(1137), + [aux_sym_pipe_element_repeat1] = STATE(1135), + [aux_sym_cmd_identifier_token1] = ACTIONS(3507), + [aux_sym_cmd_identifier_token2] = ACTIONS(3507), + [aux_sym_cmd_identifier_token3] = ACTIONS(3507), + [aux_sym_cmd_identifier_token4] = ACTIONS(3507), + [aux_sym_cmd_identifier_token5] = ACTIONS(3507), + [aux_sym_cmd_identifier_token6] = ACTIONS(3507), + [aux_sym_cmd_identifier_token7] = ACTIONS(3507), + [aux_sym_cmd_identifier_token8] = ACTIONS(3507), + [aux_sym_cmd_identifier_token9] = ACTIONS(3507), + [aux_sym_cmd_identifier_token10] = ACTIONS(3507), + [aux_sym_cmd_identifier_token11] = ACTIONS(3507), + [aux_sym_cmd_identifier_token12] = ACTIONS(3507), + [aux_sym_cmd_identifier_token13] = ACTIONS(3507), + [aux_sym_cmd_identifier_token14] = ACTIONS(3507), + [aux_sym_cmd_identifier_token15] = ACTIONS(3507), + [aux_sym_cmd_identifier_token16] = ACTIONS(3507), + [aux_sym_cmd_identifier_token17] = ACTIONS(3507), + [aux_sym_cmd_identifier_token18] = ACTIONS(3507), + [aux_sym_cmd_identifier_token19] = ACTIONS(3507), + [aux_sym_cmd_identifier_token20] = ACTIONS(3507), + [aux_sym_cmd_identifier_token21] = ACTIONS(3507), + [aux_sym_cmd_identifier_token22] = ACTIONS(3507), + [aux_sym_cmd_identifier_token23] = ACTIONS(3507), + [aux_sym_cmd_identifier_token24] = ACTIONS(3507), + [aux_sym_cmd_identifier_token25] = ACTIONS(3507), + [aux_sym_cmd_identifier_token26] = ACTIONS(3507), + [aux_sym_cmd_identifier_token27] = ACTIONS(3507), + [aux_sym_cmd_identifier_token28] = ACTIONS(3507), + [aux_sym_cmd_identifier_token29] = ACTIONS(3507), + [aux_sym_cmd_identifier_token30] = ACTIONS(3507), + [aux_sym_cmd_identifier_token31] = ACTIONS(3507), + [aux_sym_cmd_identifier_token32] = ACTIONS(3507), + [aux_sym_cmd_identifier_token33] = ACTIONS(3507), + [aux_sym_cmd_identifier_token34] = ACTIONS(3507), + [aux_sym_cmd_identifier_token35] = ACTIONS(3507), + [aux_sym_cmd_identifier_token36] = ACTIONS(3507), + [aux_sym_cmd_identifier_token37] = ACTIONS(3507), + [aux_sym_cmd_identifier_token38] = ACTIONS(3507), + [aux_sym_cmd_identifier_token39] = ACTIONS(3507), + [aux_sym_cmd_identifier_token40] = ACTIONS(3507), + [sym__space] = ACTIONS(3523), + [anon_sym_LBRACK] = ACTIONS(3507), + [anon_sym_LPAREN] = ACTIONS(3507), + [anon_sym_DOLLAR] = ACTIONS(3507), + [anon_sym_DASH2] = ACTIONS(3507), + [anon_sym_LBRACE] = ACTIONS(3507), + [anon_sym_DOT_DOT] = ACTIONS(3507), + [aux_sym_expr_unary_token1] = ACTIONS(3507), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3507), + [anon_sym_DOT_DOT_LT] = ACTIONS(3507), + [anon_sym_null] = ACTIONS(3507), + [anon_sym_true] = ACTIONS(3507), + [anon_sym_false] = ACTIONS(3507), + [aux_sym__val_number_decimal_token1] = ACTIONS(3507), + [aux_sym__val_number_decimal_token2] = ACTIONS(3507), + [aux_sym__val_number_decimal_token3] = ACTIONS(3507), + [aux_sym__val_number_decimal_token4] = ACTIONS(3507), + [aux_sym__val_number_token1] = ACTIONS(3507), + [aux_sym__val_number_token2] = ACTIONS(3507), + [aux_sym__val_number_token3] = ACTIONS(3507), + [aux_sym__val_number_token4] = ACTIONS(3507), + [aux_sym__val_number_token5] = ACTIONS(3507), + [aux_sym__val_number_token6] = ACTIONS(3507), + [anon_sym_0b] = ACTIONS(3507), + [anon_sym_0o] = ACTIONS(3507), + [anon_sym_0x] = ACTIONS(3507), + [sym_val_date] = ACTIONS(3507), + [anon_sym_DQUOTE] = ACTIONS(3507), + [sym__str_single_quotes] = ACTIONS(3507), + [sym__str_back_ticks] = ACTIONS(3507), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3507), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3507), + [aux_sym_env_var_token1] = ACTIONS(3507), + [anon_sym_CARET] = ACTIONS(3507), + [aux_sym_command_token1] = ACTIONS(3507), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3541), + [sym_raw_string_begin] = ACTIONS(3509), }, - [1153] = { - [sym_match_arm] = STATE(6888), - [sym_default_arm] = STATE(6888), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1153), - [aux_sym_shebang_repeat1] = STATE(1169), - [aux_sym_ctrl_match_repeat1] = STATE(1221), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), + [1138] = { + [sym_env_var] = STATE(6990), + [sym_comment] = STATE(1138), + [aux_sym_pipe_element_parenthesized_repeat1] = STATE(1138), + [aux_sym_cmd_identifier_token1] = ACTIONS(3496), + [aux_sym_cmd_identifier_token2] = ACTIONS(3502), + [aux_sym_cmd_identifier_token3] = ACTIONS(3502), + [aux_sym_cmd_identifier_token4] = ACTIONS(3502), + [aux_sym_cmd_identifier_token5] = ACTIONS(3502), + [aux_sym_cmd_identifier_token6] = ACTIONS(3502), + [aux_sym_cmd_identifier_token7] = ACTIONS(3502), + [aux_sym_cmd_identifier_token8] = ACTIONS(3502), + [aux_sym_cmd_identifier_token9] = ACTIONS(3496), + [aux_sym_cmd_identifier_token10] = ACTIONS(3502), + [aux_sym_cmd_identifier_token11] = ACTIONS(3502), + [aux_sym_cmd_identifier_token12] = ACTIONS(3502), + [aux_sym_cmd_identifier_token13] = ACTIONS(3496), + [aux_sym_cmd_identifier_token14] = ACTIONS(3502), + [aux_sym_cmd_identifier_token15] = ACTIONS(3496), + [aux_sym_cmd_identifier_token16] = ACTIONS(3502), + [aux_sym_cmd_identifier_token17] = ACTIONS(3502), + [aux_sym_cmd_identifier_token18] = ACTIONS(3496), + [aux_sym_cmd_identifier_token19] = ACTIONS(3502), + [aux_sym_cmd_identifier_token20] = ACTIONS(3502), + [aux_sym_cmd_identifier_token21] = ACTIONS(3502), + [aux_sym_cmd_identifier_token22] = ACTIONS(3502), + [aux_sym_cmd_identifier_token23] = ACTIONS(3502), + [aux_sym_cmd_identifier_token24] = ACTIONS(3502), + [aux_sym_cmd_identifier_token25] = ACTIONS(3502), + [aux_sym_cmd_identifier_token26] = ACTIONS(3502), + [aux_sym_cmd_identifier_token27] = ACTIONS(3502), + [aux_sym_cmd_identifier_token28] = ACTIONS(3502), + [aux_sym_cmd_identifier_token29] = ACTIONS(3502), + [aux_sym_cmd_identifier_token30] = ACTIONS(3502), + [aux_sym_cmd_identifier_token31] = ACTIONS(3502), + [aux_sym_cmd_identifier_token32] = ACTIONS(3496), + [aux_sym_cmd_identifier_token33] = ACTIONS(3502), + [aux_sym_cmd_identifier_token34] = ACTIONS(3496), + [aux_sym_cmd_identifier_token35] = ACTIONS(3502), + [aux_sym_cmd_identifier_token36] = ACTIONS(3502), + [aux_sym_cmd_identifier_token37] = ACTIONS(3502), + [aux_sym_cmd_identifier_token38] = ACTIONS(3496), + [aux_sym_cmd_identifier_token39] = ACTIONS(3502), + [aux_sym_cmd_identifier_token40] = ACTIONS(3502), + [anon_sym_LBRACK] = ACTIONS(3502), + [anon_sym_LPAREN] = ACTIONS(3502), + [anon_sym_DOLLAR] = ACTIONS(3496), + [anon_sym_DASH2] = ACTIONS(3496), + [anon_sym_LBRACE] = ACTIONS(3502), + [anon_sym_DOT_DOT] = ACTIONS(3496), + [aux_sym_expr_unary_token1] = ACTIONS(3502), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3502), + [anon_sym_DOT_DOT_LT] = ACTIONS(3502), + [anon_sym_null] = ACTIONS(3496), + [anon_sym_true] = ACTIONS(3496), + [anon_sym_false] = ACTIONS(3496), + [aux_sym__val_number_decimal_token1] = ACTIONS(3496), + [aux_sym__val_number_decimal_token2] = ACTIONS(3502), + [aux_sym__val_number_decimal_token3] = ACTIONS(3502), + [aux_sym__val_number_decimal_token4] = ACTIONS(3502), + [aux_sym__val_number_token1] = ACTIONS(3502), + [aux_sym__val_number_token2] = ACTIONS(3502), + [aux_sym__val_number_token3] = ACTIONS(3502), + [aux_sym__val_number_token4] = ACTIONS(3496), + [aux_sym__val_number_token5] = ACTIONS(3496), + [aux_sym__val_number_token6] = ACTIONS(3496), + [anon_sym_0b] = ACTIONS(3496), + [anon_sym_0o] = ACTIONS(3496), + [anon_sym_0x] = ACTIONS(3496), + [sym_val_date] = ACTIONS(3502), + [anon_sym_DQUOTE] = ACTIONS(3502), + [sym__str_single_quotes] = ACTIONS(3502), + [sym__str_back_ticks] = ACTIONS(3502), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3502), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3502), + [aux_sym_env_var_token1] = ACTIONS(3525), + [anon_sym_CARET] = ACTIONS(3502), + [aux_sym_command_token1] = ACTIONS(3502), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3502), + }, + [1139] = { + [sym_ctrl_do] = STATE(4736), + [sym_ctrl_if] = STATE(4736), + [sym_ctrl_match] = STATE(4736), + [sym_ctrl_try] = STATE(4736), + [sym__expression] = STATE(4736), + [sym_expr_unary] = STATE(2084), + [sym__expr_unary_minus] = STATE(2085), + [sym_expr_binary] = STATE(2084), + [sym__expr_binary_expression] = STATE(3754), + [sym_expr_parenthesized] = STATE(1843), + [sym_val_range] = STATE(2084), + [sym__value] = STATE(2084), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(2134), + [sym_val_variable] = STATE(1810), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(3156), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_comment] = STATE(1139), + [sym__newline] = ACTIONS(3376), + [anon_sym_PIPE] = ACTIONS(3376), + [anon_sym_err_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_GT_PIPE] = ACTIONS(3376), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(3376), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(3376), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(3376), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(3376), + [anon_sym_LBRACK] = ACTIONS(155), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3551), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(1024), + [anon_sym_DASH2] = ACTIONS(381), + [anon_sym_do] = ACTIONS(3378), + [anon_sym_if] = ACTIONS(3528), + [anon_sym_match] = ACTIONS(3382), + [anon_sym_LBRACE] = ACTIONS(183), + [anon_sym_DOT_DOT] = ACTIONS(187), + [anon_sym_try] = ACTIONS(3384), + [aux_sym_expr_unary_token1] = ACTIONS(205), + [anon_sym_DOT_DOT_EQ] = ACTIONS(211), + [anon_sym_DOT_DOT_LT] = ACTIONS(211), + [anon_sym_null] = ACTIONS(3386), + [anon_sym_true] = ACTIONS(3388), + [anon_sym_false] = ACTIONS(3388), + [aux_sym__val_number_decimal_token1] = ACTIONS(3390), + [aux_sym__val_number_decimal_token2] = ACTIONS(3392), + [aux_sym__val_number_decimal_token3] = ACTIONS(3394), + [aux_sym__val_number_decimal_token4] = ACTIONS(3396), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(227), + [aux_sym__val_number_token5] = ACTIONS(227), + [aux_sym__val_number_token6] = ACTIONS(227), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(235), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1154] = { - [sym_comment] = STATE(1154), - [ts_builtin_sym_end] = ACTIONS(1597), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3575), - [aux_sym__immediate_decimal_token2] = ACTIONS(3577), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), + [1140] = { + [sym_match_arm] = STATE(7000), + [sym_default_arm] = STATE(7000), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1140), + [aux_sym_shebang_repeat1] = STATE(1157), + [aux_sym_ctrl_match_repeat1] = STATE(1201), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3538), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1141] = { + [sym_comment] = STATE(1141), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3562), + [aux_sym__immediate_decimal_token2] = ACTIONS(3564), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, - [1155] = { - [sym_match_arm] = STATE(6677), - [sym_default_arm] = STATE(6677), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1155), - [aux_sym_shebang_repeat1] = STATE(1173), - [aux_sym_ctrl_match_repeat1] = STATE(1214), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), + [1142] = { + [sym_comment] = STATE(1142), + [aux_sym_cmd_identifier_token1] = ACTIONS(3566), + [aux_sym_cmd_identifier_token2] = ACTIONS(3566), + [aux_sym_cmd_identifier_token3] = ACTIONS(3566), + [aux_sym_cmd_identifier_token4] = ACTIONS(3566), + [aux_sym_cmd_identifier_token5] = ACTIONS(3566), + [aux_sym_cmd_identifier_token6] = ACTIONS(3566), + [aux_sym_cmd_identifier_token7] = ACTIONS(3566), + [aux_sym_cmd_identifier_token8] = ACTIONS(3566), + [aux_sym_cmd_identifier_token9] = ACTIONS(3566), + [aux_sym_cmd_identifier_token10] = ACTIONS(3566), + [aux_sym_cmd_identifier_token11] = ACTIONS(3566), + [aux_sym_cmd_identifier_token12] = ACTIONS(3566), + [aux_sym_cmd_identifier_token13] = ACTIONS(3566), + [aux_sym_cmd_identifier_token14] = ACTIONS(3566), + [aux_sym_cmd_identifier_token15] = ACTIONS(3566), + [aux_sym_cmd_identifier_token16] = ACTIONS(3566), + [aux_sym_cmd_identifier_token17] = ACTIONS(3566), + [aux_sym_cmd_identifier_token18] = ACTIONS(3566), + [aux_sym_cmd_identifier_token19] = ACTIONS(3566), + [aux_sym_cmd_identifier_token20] = ACTIONS(3566), + [aux_sym_cmd_identifier_token21] = ACTIONS(3566), + [aux_sym_cmd_identifier_token22] = ACTIONS(3566), + [aux_sym_cmd_identifier_token23] = ACTIONS(3566), + [aux_sym_cmd_identifier_token24] = ACTIONS(3566), + [aux_sym_cmd_identifier_token25] = ACTIONS(3566), + [aux_sym_cmd_identifier_token26] = ACTIONS(3566), + [aux_sym_cmd_identifier_token27] = ACTIONS(3566), + [aux_sym_cmd_identifier_token28] = ACTIONS(3566), + [aux_sym_cmd_identifier_token29] = ACTIONS(3566), + [aux_sym_cmd_identifier_token30] = ACTIONS(3566), + [aux_sym_cmd_identifier_token31] = ACTIONS(3566), + [aux_sym_cmd_identifier_token32] = ACTIONS(3566), + [aux_sym_cmd_identifier_token33] = ACTIONS(3566), + [aux_sym_cmd_identifier_token34] = ACTIONS(3566), + [aux_sym_cmd_identifier_token35] = ACTIONS(3566), + [aux_sym_cmd_identifier_token36] = ACTIONS(3566), + [aux_sym_cmd_identifier_token37] = ACTIONS(3566), + [aux_sym_cmd_identifier_token38] = ACTIONS(3566), + [aux_sym_cmd_identifier_token39] = ACTIONS(3566), + [aux_sym_cmd_identifier_token40] = ACTIONS(3566), + [sym__space] = ACTIONS(3568), + [anon_sym_LBRACK] = ACTIONS(3566), + [anon_sym_LPAREN] = ACTIONS(3566), + [anon_sym_DOLLAR] = ACTIONS(3566), + [anon_sym_DASH2] = ACTIONS(3566), + [anon_sym_LBRACE] = ACTIONS(3566), + [anon_sym_DOT_DOT] = ACTIONS(3566), + [aux_sym_expr_unary_token1] = ACTIONS(3566), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3566), + [anon_sym_DOT_DOT_LT] = ACTIONS(3566), + [anon_sym_null] = ACTIONS(3566), + [anon_sym_true] = ACTIONS(3566), + [anon_sym_false] = ACTIONS(3566), + [aux_sym__val_number_decimal_token1] = ACTIONS(3566), + [aux_sym__val_number_decimal_token2] = ACTIONS(3566), + [aux_sym__val_number_decimal_token3] = ACTIONS(3566), + [aux_sym__val_number_decimal_token4] = ACTIONS(3566), + [aux_sym__val_number_token1] = ACTIONS(3566), + [aux_sym__val_number_token2] = ACTIONS(3566), + [aux_sym__val_number_token3] = ACTIONS(3566), + [aux_sym__val_number_token4] = ACTIONS(3566), + [aux_sym__val_number_token5] = ACTIONS(3566), + [aux_sym__val_number_token6] = ACTIONS(3566), + [anon_sym_0b] = ACTIONS(3566), + [anon_sym_0o] = ACTIONS(3566), + [anon_sym_0x] = ACTIONS(3566), + [sym_val_date] = ACTIONS(3566), + [anon_sym_DQUOTE] = ACTIONS(3566), + [sym__str_single_quotes] = ACTIONS(3566), + [sym__str_back_ticks] = ACTIONS(3566), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3566), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3566), + [aux_sym_env_var_token1] = ACTIONS(3566), + [anon_sym_CARET] = ACTIONS(3566), + [aux_sym_command_token1] = ACTIONS(3566), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(3568), + }, + [1143] = { + [sym_comment] = STATE(1143), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3570), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3572), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + }, + [1144] = { + [sym_comment] = STATE(1144), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3574), + [aux_sym__immediate_decimal_token2] = ACTIONS(3576), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + }, + [1145] = { + [sym_match_arm] = STATE(6704), + [sym_default_arm] = STATE(6704), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1145), + [aux_sym_shebang_repeat1] = STATE(1164), + [aux_sym_ctrl_match_repeat1] = STATE(1210), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3579), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3578), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1156] = { - [sym_comment] = STATE(1156), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3581), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3583), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), + [1146] = { + [sym_comment] = STATE(1146), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3580), + [aux_sym__immediate_decimal_token2] = ACTIONS(3582), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, - [1157] = { - [sym_expr_parenthesized] = STATE(4339), - [sym_val_range] = STATE(4806), - [sym__val_range] = STATE(7669), - [sym__val_range_with_end] = STATE(7271), - [sym__value] = STATE(4806), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(4397), - [sym_val_variable] = STATE(4380), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(3891), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(4074), - [sym__str_double_quotes] = STATE(4074), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym__unquoted_in_record] = STATE(4514), - [sym__unquoted_in_record_with_expr] = STATE(4806), - [sym__unquoted_anonymous_prefix] = STATE(6891), - [sym_comment] = STATE(1157), - [aux_sym_shebang_repeat1] = STATE(1163), - [sym__newline] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3605), - [aux_sym__val_number_decimal_token3] = ACTIONS(3607), - [aux_sym__val_number_decimal_token4] = ACTIONS(3609), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(3613), - [aux_sym__val_number_token5] = ACTIONS(3613), - [aux_sym__val_number_token6] = ACTIONS(3613), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym__str_single_quotes] = ACTIONS(3623), - [sym__str_back_ticks] = ACTIONS(3623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3635), - }, - [1158] = { - [sym_comment] = STATE(1158), - [aux_sym_cmd_identifier_token1] = ACTIONS(3637), - [aux_sym_cmd_identifier_token2] = ACTIONS(3637), - [aux_sym_cmd_identifier_token3] = ACTIONS(3637), - [aux_sym_cmd_identifier_token4] = ACTIONS(3637), - [aux_sym_cmd_identifier_token5] = ACTIONS(3637), - [aux_sym_cmd_identifier_token6] = ACTIONS(3637), - [aux_sym_cmd_identifier_token7] = ACTIONS(3637), - [aux_sym_cmd_identifier_token8] = ACTIONS(3637), - [aux_sym_cmd_identifier_token9] = ACTIONS(3637), - [aux_sym_cmd_identifier_token10] = ACTIONS(3637), - [aux_sym_cmd_identifier_token11] = ACTIONS(3637), - [aux_sym_cmd_identifier_token12] = ACTIONS(3637), - [aux_sym_cmd_identifier_token13] = ACTIONS(3637), - [aux_sym_cmd_identifier_token14] = ACTIONS(3637), - [aux_sym_cmd_identifier_token15] = ACTIONS(3637), - [aux_sym_cmd_identifier_token16] = ACTIONS(3637), - [aux_sym_cmd_identifier_token17] = ACTIONS(3637), - [aux_sym_cmd_identifier_token18] = ACTIONS(3637), - [aux_sym_cmd_identifier_token19] = ACTIONS(3637), - [aux_sym_cmd_identifier_token20] = ACTIONS(3637), - [aux_sym_cmd_identifier_token21] = ACTIONS(3637), - [aux_sym_cmd_identifier_token22] = ACTIONS(3637), - [aux_sym_cmd_identifier_token23] = ACTIONS(3637), - [aux_sym_cmd_identifier_token24] = ACTIONS(3637), - [aux_sym_cmd_identifier_token25] = ACTIONS(3637), - [aux_sym_cmd_identifier_token26] = ACTIONS(3637), - [aux_sym_cmd_identifier_token27] = ACTIONS(3637), - [aux_sym_cmd_identifier_token28] = ACTIONS(3637), - [aux_sym_cmd_identifier_token29] = ACTIONS(3637), - [aux_sym_cmd_identifier_token30] = ACTIONS(3637), - [aux_sym_cmd_identifier_token31] = ACTIONS(3637), - [aux_sym_cmd_identifier_token32] = ACTIONS(3637), - [aux_sym_cmd_identifier_token33] = ACTIONS(3637), - [aux_sym_cmd_identifier_token34] = ACTIONS(3637), - [aux_sym_cmd_identifier_token35] = ACTIONS(3637), - [aux_sym_cmd_identifier_token36] = ACTIONS(3637), - [aux_sym_cmd_identifier_token37] = ACTIONS(3637), - [aux_sym_cmd_identifier_token38] = ACTIONS(3637), - [aux_sym_cmd_identifier_token39] = ACTIONS(3637), - [aux_sym_cmd_identifier_token40] = ACTIONS(3637), - [sym__space] = ACTIONS(3639), - [anon_sym_LBRACK] = ACTIONS(3637), - [anon_sym_LPAREN] = ACTIONS(3637), - [anon_sym_DOLLAR] = ACTIONS(3637), - [anon_sym_DASH2] = ACTIONS(3637), - [anon_sym_LBRACE] = ACTIONS(3637), - [anon_sym_DOT_DOT] = ACTIONS(3637), - [aux_sym_expr_unary_token1] = ACTIONS(3637), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3637), - [anon_sym_DOT_DOT_LT] = ACTIONS(3637), - [anon_sym_null] = ACTIONS(3637), - [anon_sym_true] = ACTIONS(3637), - [anon_sym_false] = ACTIONS(3637), - [aux_sym__val_number_decimal_token1] = ACTIONS(3637), - [aux_sym__val_number_decimal_token2] = ACTIONS(3637), - [aux_sym__val_number_decimal_token3] = ACTIONS(3637), - [aux_sym__val_number_decimal_token4] = ACTIONS(3637), - [aux_sym__val_number_token1] = ACTIONS(3637), - [aux_sym__val_number_token2] = ACTIONS(3637), - [aux_sym__val_number_token3] = ACTIONS(3637), - [aux_sym__val_number_token4] = ACTIONS(3637), - [aux_sym__val_number_token5] = ACTIONS(3637), - [aux_sym__val_number_token6] = ACTIONS(3637), - [anon_sym_0b] = ACTIONS(3637), - [anon_sym_0o] = ACTIONS(3637), - [anon_sym_0x] = ACTIONS(3637), - [sym_val_date] = ACTIONS(3637), - [anon_sym_DQUOTE] = ACTIONS(3637), - [sym__str_single_quotes] = ACTIONS(3637), - [sym__str_back_ticks] = ACTIONS(3637), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3637), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3637), - [aux_sym_env_var_token1] = ACTIONS(3637), - [anon_sym_CARET] = ACTIONS(3637), - [aux_sym_command_token1] = ACTIONS(3637), + [1147] = { + [sym_comment] = STATE(1147), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3584), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3586), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(3639), }, - [1159] = { - [sym_comment] = STATE(1159), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3641), - [aux_sym__immediate_decimal_token2] = ACTIONS(3643), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), + [1148] = { + [sym_comment] = STATE(1148), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3588), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3590), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, - [1160] = { - [sym_comment] = STATE(1160), + [1149] = { + [sym_match_arm] = STATE(6706), + [sym_default_arm] = STATE(6706), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1149), + [aux_sym_shebang_repeat1] = STATE(1165), + [aux_sym_ctrl_match_repeat1] = STATE(1212), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3592), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1150] = { + [sym_expr_parenthesized] = STATE(4341), + [sym_val_range] = STATE(4889), + [sym__val_range] = STATE(7450), + [sym__val_range_with_end] = STATE(7246), + [sym__value] = STATE(4889), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(4386), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(3867), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(4068), + [sym__str_double_quotes] = STATE(4068), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym__unquoted_in_record] = STATE(4515), + [sym__unquoted_in_record_with_expr] = STATE(4889), + [sym__unquoted_anonymous_prefix] = STATE(6720), + [sym_comment] = STATE(1150), + [aux_sym_shebang_repeat1] = STATE(2959), + [sym__newline] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_DOT_DOT] = ACTIONS(3604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3606), + [anon_sym_DOT_DOT_LT] = ACTIONS(3606), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_true] = ACTIONS(3610), + [anon_sym_false] = ACTIONS(3610), + [aux_sym__val_number_decimal_token1] = ACTIONS(3612), + [aux_sym__val_number_decimal_token2] = ACTIONS(3614), + [aux_sym__val_number_decimal_token3] = ACTIONS(3616), + [aux_sym__val_number_decimal_token4] = ACTIONS(3618), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(3622), + [aux_sym__val_number_token5] = ACTIONS(3622), + [aux_sym__val_number_token6] = ACTIONS(3622), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym__str_single_quotes] = ACTIONS(3632), + [sym__str_back_ticks] = ACTIONS(3632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3642), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3644), + }, + [1151] = { + [sym_comment] = STATE(1151), [aux_sym_cmd_identifier_token1] = ACTIONS(1270), [aux_sym_cmd_identifier_token2] = ACTIONS(1268), [aux_sym_cmd_identifier_token3] = ACTIONS(1268), @@ -195828,6006 +195253,5911 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1268), }, - [1161] = { - [sym_match_arm] = STATE(6889), - [sym_default_arm] = STATE(6889), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1161), - [aux_sym_shebang_repeat1] = STATE(1170), - [aux_sym_ctrl_match_repeat1] = STATE(1222), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), + [1152] = { + [sym_expr_parenthesized] = STATE(4364), + [sym_val_range] = STATE(4794), + [sym__val_range] = STATE(7450), + [sym__val_range_with_end] = STATE(7246), + [sym__value] = STATE(4794), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(4386), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(3867), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(4068), + [sym__str_double_quotes] = STATE(4068), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym__unquoted_in_record] = STATE(4416), + [sym__unquoted_in_record_with_expr] = STATE(4794), + [sym__unquoted_anonymous_prefix] = STATE(6720), + [sym_comment] = STATE(1152), + [aux_sym_shebang_repeat1] = STATE(1153), + [sym__newline] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_DOT_DOT] = ACTIONS(3604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3606), + [anon_sym_DOT_DOT_LT] = ACTIONS(3606), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_true] = ACTIONS(3610), + [anon_sym_false] = ACTIONS(3610), + [aux_sym__val_number_decimal_token1] = ACTIONS(3612), + [aux_sym__val_number_decimal_token2] = ACTIONS(3614), + [aux_sym__val_number_decimal_token3] = ACTIONS(3616), + [aux_sym__val_number_decimal_token4] = ACTIONS(3618), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(3622), + [aux_sym__val_number_token5] = ACTIONS(3622), + [aux_sym__val_number_token6] = ACTIONS(3622), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym__str_single_quotes] = ACTIONS(3632), + [sym__str_back_ticks] = ACTIONS(3632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3642), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3644), + }, + [1153] = { + [sym_expr_parenthesized] = STATE(4343), + [sym_val_range] = STATE(4862), + [sym__val_range] = STATE(7450), + [sym__val_range_with_end] = STATE(7246), + [sym__value] = STATE(4862), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(4386), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(3867), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(4068), + [sym__str_double_quotes] = STATE(4068), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym__unquoted_in_record] = STATE(4407), + [sym__unquoted_in_record_with_expr] = STATE(4862), + [sym__unquoted_anonymous_prefix] = STATE(6720), + [sym_comment] = STATE(1153), + [aux_sym_shebang_repeat1] = STATE(2959), + [sym__newline] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_DOT_DOT] = ACTIONS(3604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3606), + [anon_sym_DOT_DOT_LT] = ACTIONS(3606), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_true] = ACTIONS(3610), + [anon_sym_false] = ACTIONS(3610), + [aux_sym__val_number_decimal_token1] = ACTIONS(3612), + [aux_sym__val_number_decimal_token2] = ACTIONS(3614), + [aux_sym__val_number_decimal_token3] = ACTIONS(3616), + [aux_sym__val_number_decimal_token4] = ACTIONS(3618), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(3622), + [aux_sym__val_number_token5] = ACTIONS(3622), + [aux_sym__val_number_token6] = ACTIONS(3622), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym__str_single_quotes] = ACTIONS(3632), + [sym__str_back_ticks] = ACTIONS(3632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3642), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3644), + }, + [1154] = { + [sym_expr_parenthesized] = STATE(4343), + [sym_val_range] = STATE(4862), + [sym__val_range] = STATE(7450), + [sym__val_range_with_end] = STATE(7246), + [sym__value] = STATE(4862), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(4386), + [sym_val_variable] = STATE(4345), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(3867), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(4068), + [sym__str_double_quotes] = STATE(4068), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym__unquoted_in_record] = STATE(4407), + [sym__unquoted_in_record_with_expr] = STATE(4862), + [sym__unquoted_anonymous_prefix] = STATE(6720), + [sym_comment] = STATE(1154), + [aux_sym_shebang_repeat1] = STATE(1150), + [sym__newline] = ACTIONS(3594), + [anon_sym_LBRACK] = ACTIONS(3596), + [anon_sym_LPAREN] = ACTIONS(3598), + [anon_sym_DOLLAR] = ACTIONS(3600), + [anon_sym_LBRACE] = ACTIONS(3602), + [anon_sym_DOT_DOT] = ACTIONS(3604), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3606), + [anon_sym_DOT_DOT_LT] = ACTIONS(3606), + [anon_sym_null] = ACTIONS(3608), + [anon_sym_true] = ACTIONS(3610), + [anon_sym_false] = ACTIONS(3610), + [aux_sym__val_number_decimal_token1] = ACTIONS(3612), + [aux_sym__val_number_decimal_token2] = ACTIONS(3614), + [aux_sym__val_number_decimal_token3] = ACTIONS(3616), + [aux_sym__val_number_decimal_token4] = ACTIONS(3618), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(3622), + [aux_sym__val_number_token5] = ACTIONS(3622), + [aux_sym__val_number_token6] = ACTIONS(3622), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(3628), + [anon_sym_DQUOTE] = ACTIONS(3630), + [sym__str_single_quotes] = ACTIONS(3632), + [sym__str_back_ticks] = ACTIONS(3632), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3642), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3644), + }, + [1155] = { + [sym_match_arm] = STATE(6923), + [sym_default_arm] = STATE(6923), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1155), + [aux_sym_shebang_repeat1] = STATE(1166), + [aux_sym_ctrl_match_repeat1] = STATE(1200), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_RBRACE] = ACTIONS(3646), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), + }, + [1156] = { + [sym_comment] = STATE(1156), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3590), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + }, + [1157] = { + [sym_match_arm] = STATE(7183), + [sym_default_arm] = STATE(7183), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1157), + [aux_sym_shebang_repeat1] = STATE(3054), + [aux_sym_ctrl_match_repeat1] = STATE(1208), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3645), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [1158] = { + [sym_comment] = STATE(1158), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3648), + [aux_sym__immediate_decimal_token2] = ACTIONS(3650), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + }, + [1159] = { + [sym_comment] = STATE(1159), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3652), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3654), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), + }, + [1160] = { + [sym_comment] = STATE(1160), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3656), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + }, + [1161] = { + [sym_comment] = STATE(1161), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3658), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + }, [1162] = { [sym_comment] = STATE(1162), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3647), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3649), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3572), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, [1163] = { - [sym_expr_parenthesized] = STATE(4370), - [sym_val_range] = STATE(4873), - [sym__val_range] = STATE(7669), - [sym__val_range_with_end] = STATE(7271), - [sym__value] = STATE(4873), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(4397), - [sym_val_variable] = STATE(4380), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(3891), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(4074), - [sym__str_double_quotes] = STATE(4074), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym__unquoted_in_record] = STATE(4430), - [sym__unquoted_in_record_with_expr] = STATE(4873), - [sym__unquoted_anonymous_prefix] = STATE(6891), [sym_comment] = STATE(1163), - [aux_sym_shebang_repeat1] = STATE(3034), - [sym__newline] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3605), - [aux_sym__val_number_decimal_token3] = ACTIONS(3607), - [aux_sym__val_number_decimal_token4] = ACTIONS(3609), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(3613), - [aux_sym__val_number_token5] = ACTIONS(3613), - [aux_sym__val_number_token6] = ACTIONS(3613), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym__str_single_quotes] = ACTIONS(3623), - [sym__str_back_ticks] = ACTIONS(3623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3635), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3586), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, [1164] = { - [sym_expr_parenthesized] = STATE(4354), - [sym_val_range] = STATE(4902), - [sym__val_range] = STATE(7669), - [sym__val_range_with_end] = STATE(7271), - [sym__value] = STATE(4902), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(4397), - [sym_val_variable] = STATE(4380), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(3891), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(4074), - [sym__str_double_quotes] = STATE(4074), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym__unquoted_in_record] = STATE(4531), - [sym__unquoted_in_record_with_expr] = STATE(4902), - [sym__unquoted_anonymous_prefix] = STATE(6891), + [sym_match_arm] = STATE(6858), + [sym_default_arm] = STATE(6858), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), [sym_comment] = STATE(1164), - [aux_sym_shebang_repeat1] = STATE(3034), - [sym__newline] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3605), - [aux_sym__val_number_decimal_token3] = ACTIONS(3607), - [aux_sym__val_number_decimal_token4] = ACTIONS(3609), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(3613), - [aux_sym__val_number_token5] = ACTIONS(3613), - [aux_sym__val_number_token6] = ACTIONS(3613), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym__str_single_quotes] = ACTIONS(3623), - [sym__str_back_ticks] = ACTIONS(3623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3635), - }, - [1165] = { - [sym_comment] = STATE(1165), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3651), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3653), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [1166] = { - [sym_match_arm] = STATE(6733), - [sym_default_arm] = STATE(6733), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1166), - [aux_sym_shebang_repeat1] = STATE(1174), - [aux_sym_ctrl_match_repeat1] = STATE(1219), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), + [aux_sym_shebang_repeat1] = STATE(3054), + [aux_sym_ctrl_match_repeat1] = STATE(1213), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_RBRACE] = ACTIONS(3655), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1167] = { - [sym_comment] = STATE(1167), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3657), - [aux_sym__immediate_decimal_token2] = ACTIONS(3659), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(3), - }, - [1168] = { - [sym_expr_parenthesized] = STATE(4370), - [sym_val_range] = STATE(4873), - [sym__val_range] = STATE(7669), - [sym__val_range_with_end] = STATE(7271), - [sym__value] = STATE(4873), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(4397), - [sym_val_variable] = STATE(4380), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(3891), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(4074), - [sym__str_double_quotes] = STATE(4074), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym__unquoted_in_record] = STATE(4430), - [sym__unquoted_in_record_with_expr] = STATE(4873), - [sym__unquoted_anonymous_prefix] = STATE(6891), - [sym_comment] = STATE(1168), - [aux_sym_shebang_repeat1] = STATE(1164), - [sym__newline] = ACTIONS(3585), - [anon_sym_LBRACK] = ACTIONS(3587), - [anon_sym_LPAREN] = ACTIONS(3589), - [anon_sym_DOLLAR] = ACTIONS(3591), - [anon_sym_LBRACE] = ACTIONS(3593), - [anon_sym_DOT_DOT] = ACTIONS(3595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3597), - [anon_sym_DOT_DOT_LT] = ACTIONS(3597), - [anon_sym_null] = ACTIONS(3599), - [anon_sym_true] = ACTIONS(3601), - [anon_sym_false] = ACTIONS(3601), - [aux_sym__val_number_decimal_token1] = ACTIONS(3603), - [aux_sym__val_number_decimal_token2] = ACTIONS(3605), - [aux_sym__val_number_decimal_token3] = ACTIONS(3607), - [aux_sym__val_number_decimal_token4] = ACTIONS(3609), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(3613), - [aux_sym__val_number_token5] = ACTIONS(3613), - [aux_sym__val_number_token6] = ACTIONS(3613), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(3619), - [anon_sym_DQUOTE] = ACTIONS(3621), - [sym__str_single_quotes] = ACTIONS(3623), - [sym__str_back_ticks] = ACTIONS(3623), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3635), - }, - [1169] = { - [sym_match_arm] = STATE(6969), - [sym_default_arm] = STATE(6969), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1169), - [aux_sym_shebang_repeat1] = STATE(3088), - [aux_sym_ctrl_match_repeat1] = STATE(1223), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), + [1165] = { + [sym_match_arm] = STATE(6869), + [sym_default_arm] = STATE(6869), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1165), + [aux_sym_shebang_repeat1] = STATE(3054), + [aux_sym_ctrl_match_repeat1] = STATE(1214), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1170] = { - [sym_match_arm] = STATE(6970), - [sym_default_arm] = STATE(6970), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1170), - [aux_sym_shebang_repeat1] = STATE(3088), - [aux_sym_ctrl_match_repeat1] = STATE(1224), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), + [1166] = { + [sym_match_arm] = STATE(7174), + [sym_default_arm] = STATE(7174), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1166), + [aux_sym_shebang_repeat1] = STATE(3054), + [aux_sym_ctrl_match_repeat1] = STATE(1206), + [sym__newline] = ACTIONS(3530), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, + [1167] = { + [sym_comment] = STATE(1167), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3660), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), + }, + [1168] = { + [sym_comment] = STATE(1168), + [ts_builtin_sym_end] = ACTIONS(1729), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), + }, + [1169] = { + [sym_comment] = STATE(1169), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_RBRACE] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), + }, + [1170] = { + [sym_comment] = STATE(1170), + [ts_builtin_sym_end] = ACTIONS(1599), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_POUND] = ACTIONS(3), + }, [1171] = { [sym_comment] = STATE(1171), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3661), - [aux_sym__immediate_decimal_token2] = ACTIONS(3663), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3662), + [aux_sym__immediate_decimal_token2] = ACTIONS(3664), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [1172] = { [sym_comment] = STATE(1172), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3665), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3667), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(3666), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3668), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, [1173] = { - [sym_match_arm] = STATE(7144), - [sym_default_arm] = STATE(7144), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), [sym_comment] = STATE(1173), - [aux_sym_shebang_repeat1] = STATE(3088), - [aux_sym_ctrl_match_repeat1] = STATE(1228), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3654), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, [1174] = { - [sym_match_arm] = STATE(7191), - [sym_default_arm] = STATE(7191), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), + [sym_expr_parenthesized] = STATE(523), + [sym_val_range] = STATE(691), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7284), + [sym__value] = STATE(691), + [sym_val_nothing] = STATE(725), + [sym_val_bool] = STATE(581), + [sym_val_variable] = STATE(542), + [sym_val_number] = STATE(725), + [sym__val_number_decimal] = STATE(347), + [sym__val_number] = STATE(679), + [sym_val_duration] = STATE(725), + [sym_val_filesize] = STATE(725), + [sym_val_binary] = STATE(725), + [sym_val_string] = STATE(725), + [sym__raw_str] = STATE(711), + [sym__str_double_quotes] = STATE(711), + [sym_val_interpolated] = STATE(725), + [sym__inter_single_quotes] = STATE(686), + [sym__inter_double_quotes] = STATE(689), + [sym_val_list] = STATE(725), + [sym_val_record] = STATE(725), + [sym_val_table] = STATE(725), + [sym_val_closure] = STATE(725), + [sym__unquoted_in_record] = STATE(582), + [sym__unquoted_in_record_with_expr] = STATE(691), + [sym__unquoted_anonymous_prefix] = STATE(6617), [sym_comment] = STATE(1174), - [aux_sym_shebang_repeat1] = STATE(3088), - [aux_sym_ctrl_match_repeat1] = STATE(1210), - [sym__newline] = ACTIONS(3543), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_DOLLAR] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3680), + [anon_sym_DOT_DOT_LT] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_true] = ACTIONS(3684), + [anon_sym_false] = ACTIONS(3684), + [aux_sym__val_number_decimal_token1] = ACTIONS(3686), + [aux_sym__val_number_decimal_token2] = ACTIONS(3688), + [aux_sym__val_number_decimal_token3] = ACTIONS(3690), + [aux_sym__val_number_decimal_token4] = ACTIONS(3692), + [aux_sym__val_number_token1] = ACTIONS(3694), + [aux_sym__val_number_token2] = ACTIONS(3694), + [aux_sym__val_number_token3] = ACTIONS(3694), + [aux_sym__val_number_token4] = ACTIONS(3696), + [aux_sym__val_number_token5] = ACTIONS(3696), + [aux_sym__val_number_token6] = ACTIONS(3696), + [anon_sym_0b] = ACTIONS(3698), + [anon_sym_0o] = ACTIONS(3700), + [anon_sym_0x] = ACTIONS(3700), + [sym_val_date] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym__str_single_quotes] = ACTIONS(3706), + [sym__str_back_ticks] = ACTIONS(3706), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3710), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3712), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3714), }, [1175] = { [sym_comment] = STATE(1175), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3653), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), + [ts_builtin_sym_end] = ACTIONS(1675), + [anon_sym_STAR_STAR] = ACTIONS(3036), + [anon_sym_PLUS_PLUS] = ACTIONS(3036), + [anon_sym_STAR] = ACTIONS(3038), + [anon_sym_SLASH] = ACTIONS(3038), + [anon_sym_mod] = ACTIONS(3036), + [anon_sym_SLASH_SLASH] = ACTIONS(3036), + [anon_sym_PLUS] = ACTIONS(3038), + [anon_sym_DASH] = ACTIONS(3036), + [anon_sym_bit_DASHshl] = ACTIONS(3036), + [anon_sym_bit_DASHshr] = ACTIONS(3036), + [anon_sym_EQ_TILDE] = ACTIONS(3036), + [anon_sym_BANG_TILDE] = ACTIONS(3036), + [anon_sym_bit_DASHand] = ACTIONS(3036), + [anon_sym_bit_DASHxor] = ACTIONS(3036), + [anon_sym_bit_DASHor] = ACTIONS(3036), + [anon_sym_and] = ACTIONS(3036), + [anon_sym_xor] = ACTIONS(3036), + [anon_sym_or] = ACTIONS(3036), + [anon_sym_in] = ACTIONS(3036), + [anon_sym_not_DASHin] = ACTIONS(3036), + [anon_sym_starts_DASHwith] = ACTIONS(3036), + [anon_sym_ends_DASHwith] = ACTIONS(3036), + [anon_sym_EQ_EQ] = ACTIONS(3036), + [anon_sym_BANG_EQ] = ACTIONS(3036), + [anon_sym_LT] = ACTIONS(3038), + [anon_sym_LT_EQ] = ACTIONS(3036), + [anon_sym_GT] = ACTIONS(3038), + [anon_sym_GT_EQ] = ACTIONS(3036), + [aux_sym_cmd_identifier_token41] = ACTIONS(3040), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3042), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3044), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3044), + [sym_filesize_unit] = ACTIONS(3716), + [sym_duration_unit] = ACTIONS(3718), [anon_sym_POUND] = ACTIONS(3), }, [1176] = { [sym_comment] = STATE(1176), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3720), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [1177] = { + [sym_expr_parenthesized] = STATE(488), + [sym_val_range] = STATE(636), + [sym__val_range] = STATE(7416), + [sym__val_range_with_end] = STATE(7298), + [sym__value] = STATE(636), + [sym_val_nothing] = STATE(667), + [sym_val_bool] = STATE(512), + [sym_val_variable] = STATE(463), + [sym_val_number] = STATE(667), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(650), + [sym_val_duration] = STATE(667), + [sym_val_filesize] = STATE(667), + [sym_val_binary] = STATE(667), + [sym_val_string] = STATE(667), + [sym__raw_str] = STATE(637), + [sym__str_double_quotes] = STATE(637), + [sym_val_interpolated] = STATE(667), + [sym__inter_single_quotes] = STATE(651), + [sym__inter_double_quotes] = STATE(652), + [sym_val_list] = STATE(667), + [sym_val_record] = STATE(667), + [sym_val_table] = STATE(667), + [sym_val_closure] = STATE(667), + [sym__unquoted_in_record] = STATE(531), + [sym__unquoted_in_record_with_expr] = STATE(636), + [sym__unquoted_anonymous_prefix] = STATE(7001), [sym_comment] = STATE(1177), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3583), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_DOT_DOT] = ACTIONS(3728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3730), + [anon_sym_DOT_DOT_LT] = ACTIONS(3730), + [anon_sym_null] = ACTIONS(3732), + [anon_sym_true] = ACTIONS(3734), + [anon_sym_false] = ACTIONS(3734), + [aux_sym__val_number_decimal_token1] = ACTIONS(3736), + [aux_sym__val_number_decimal_token2] = ACTIONS(3738), + [aux_sym__val_number_decimal_token3] = ACTIONS(3740), + [aux_sym__val_number_decimal_token4] = ACTIONS(3742), + [aux_sym__val_number_token1] = ACTIONS(3744), + [aux_sym__val_number_token2] = ACTIONS(3744), + [aux_sym__val_number_token3] = ACTIONS(3744), + [aux_sym__val_number_token4] = ACTIONS(3746), + [aux_sym__val_number_token5] = ACTIONS(3746), + [aux_sym__val_number_token6] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3760), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3762), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3764), }, [1178] = { [sym_comment] = STATE(1178), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3671), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), + [ts_builtin_sym_end] = ACTIONS(1687), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [1179] = { + [sym_expr_parenthesized] = STATE(486), + [sym_val_range] = STATE(624), + [sym__val_range] = STATE(7416), + [sym__val_range_with_end] = STATE(7298), + [sym__value] = STATE(624), + [sym_val_nothing] = STATE(667), + [sym_val_bool] = STATE(512), + [sym_val_variable] = STATE(463), + [sym_val_number] = STATE(667), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(650), + [sym_val_duration] = STATE(667), + [sym_val_filesize] = STATE(667), + [sym_val_binary] = STATE(667), + [sym_val_string] = STATE(667), + [sym__raw_str] = STATE(637), + [sym__str_double_quotes] = STATE(637), + [sym_val_interpolated] = STATE(667), + [sym__inter_single_quotes] = STATE(651), + [sym__inter_double_quotes] = STATE(652), + [sym_val_list] = STATE(667), + [sym_val_record] = STATE(667), + [sym_val_table] = STATE(667), + [sym_val_closure] = STATE(667), + [sym__unquoted_in_record] = STATE(526), + [sym__unquoted_in_record_with_expr] = STATE(624), + [sym__unquoted_anonymous_prefix] = STATE(7001), [sym_comment] = STATE(1179), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3649), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_DOT_DOT] = ACTIONS(3728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3730), + [anon_sym_DOT_DOT_LT] = ACTIONS(3730), + [anon_sym_null] = ACTIONS(3732), + [anon_sym_true] = ACTIONS(3734), + [anon_sym_false] = ACTIONS(3734), + [aux_sym__val_number_decimal_token1] = ACTIONS(3736), + [aux_sym__val_number_decimal_token2] = ACTIONS(3738), + [aux_sym__val_number_decimal_token3] = ACTIONS(3740), + [aux_sym__val_number_decimal_token4] = ACTIONS(3742), + [aux_sym__val_number_token1] = ACTIONS(3744), + [aux_sym__val_number_token2] = ACTIONS(3744), + [aux_sym__val_number_token3] = ACTIONS(3744), + [aux_sym__val_number_token4] = ACTIONS(3746), + [aux_sym__val_number_token5] = ACTIONS(3746), + [aux_sym__val_number_token6] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3760), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3762), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3764), }, [1180] = { + [sym_expr_parenthesized] = STATE(487), + [sym_val_range] = STATE(630), + [sym__val_range] = STATE(7416), + [sym__val_range_with_end] = STATE(7298), + [sym__value] = STATE(630), + [sym_val_nothing] = STATE(667), + [sym_val_bool] = STATE(512), + [sym_val_variable] = STATE(463), + [sym_val_number] = STATE(667), + [sym__val_number_decimal] = STATE(328), + [sym__val_number] = STATE(650), + [sym_val_duration] = STATE(667), + [sym_val_filesize] = STATE(667), + [sym_val_binary] = STATE(667), + [sym_val_string] = STATE(667), + [sym__raw_str] = STATE(637), + [sym__str_double_quotes] = STATE(637), + [sym_val_interpolated] = STATE(667), + [sym__inter_single_quotes] = STATE(651), + [sym__inter_double_quotes] = STATE(652), + [sym_val_list] = STATE(667), + [sym_val_record] = STATE(667), + [sym_val_table] = STATE(667), + [sym_val_closure] = STATE(667), + [sym__unquoted_in_record] = STATE(528), + [sym__unquoted_in_record_with_expr] = STATE(630), + [sym__unquoted_anonymous_prefix] = STATE(7001), [sym_comment] = STATE(1180), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3673), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3722), + [anon_sym_LPAREN] = ACTIONS(3724), + [anon_sym_DOLLAR] = ACTIONS(1531), + [anon_sym_LBRACE] = ACTIONS(3726), + [anon_sym_DOT_DOT] = ACTIONS(3728), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3730), + [anon_sym_DOT_DOT_LT] = ACTIONS(3730), + [anon_sym_null] = ACTIONS(3732), + [anon_sym_true] = ACTIONS(3734), + [anon_sym_false] = ACTIONS(3734), + [aux_sym__val_number_decimal_token1] = ACTIONS(3736), + [aux_sym__val_number_decimal_token2] = ACTIONS(3738), + [aux_sym__val_number_decimal_token3] = ACTIONS(3740), + [aux_sym__val_number_decimal_token4] = ACTIONS(3742), + [aux_sym__val_number_token1] = ACTIONS(3744), + [aux_sym__val_number_token2] = ACTIONS(3744), + [aux_sym__val_number_token3] = ACTIONS(3744), + [aux_sym__val_number_token4] = ACTIONS(3746), + [aux_sym__val_number_token5] = ACTIONS(3746), + [aux_sym__val_number_token6] = ACTIONS(3746), + [anon_sym_0b] = ACTIONS(3748), + [anon_sym_0o] = ACTIONS(3750), + [anon_sym_0x] = ACTIONS(3750), + [sym_val_date] = ACTIONS(3752), + [anon_sym_DQUOTE] = ACTIONS(3754), + [sym__str_single_quotes] = ACTIONS(3756), + [sym__str_back_ticks] = ACTIONS(3756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3758), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3760), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3762), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3764), }, [1181] = { + [sym_expr_parenthesized] = STATE(5805), + [sym_val_range] = STATE(7200), + [sym__val_range] = STATE(7544), + [sym__val_range_with_end] = STATE(7205), + [sym__value] = STATE(7200), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6210), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5053), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_record] = STATE(6441), + [sym__unquoted_in_record_with_expr] = STATE(7200), + [sym__unquoted_anonymous_prefix] = STATE(6939), [sym_comment] = STATE(1181), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3768), + [anon_sym_DOT_DOT_LT] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_true] = ACTIONS(3772), + [anon_sym_false] = ACTIONS(3772), + [aux_sym__val_number_decimal_token1] = ACTIONS(3774), + [aux_sym__val_number_decimal_token2] = ACTIONS(3776), + [aux_sym__val_number_decimal_token3] = ACTIONS(3778), + [aux_sym__val_number_decimal_token4] = ACTIONS(3780), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3782), + [aux_sym__val_number_token5] = ACTIONS(3782), + [aux_sym__val_number_token6] = ACTIONS(3782), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [1182] = { + [sym_expr_parenthesized] = STATE(5796), + [sym_val_range] = STATE(7321), + [sym__val_range] = STATE(7544), + [sym__val_range_with_end] = STATE(7205), + [sym__value] = STATE(7321), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6210), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5053), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_record] = STATE(6088), + [sym__unquoted_in_record_with_expr] = STATE(7321), + [sym__unquoted_anonymous_prefix] = STATE(6939), [sym_comment] = STATE(1182), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(3675), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3677), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3768), + [anon_sym_DOT_DOT_LT] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_true] = ACTIONS(3772), + [anon_sym_false] = ACTIONS(3772), + [aux_sym__val_number_decimal_token1] = ACTIONS(3774), + [aux_sym__val_number_decimal_token2] = ACTIONS(3776), + [aux_sym__val_number_decimal_token3] = ACTIONS(3778), + [aux_sym__val_number_decimal_token4] = ACTIONS(3780), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3782), + [aux_sym__val_number_token5] = ACTIONS(3782), + [aux_sym__val_number_token6] = ACTIONS(3782), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [1183] = { - [sym_expr_parenthesized] = STATE(479), - [sym_val_range] = STATE(682), - [sym__val_range] = STATE(7528), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(682), - [sym_val_nothing] = STATE(602), - [sym_val_bool] = STATE(510), - [sym_val_variable] = STATE(485), - [sym_val_number] = STATE(602), - [sym__val_number_decimal] = STATE(330), - [sym__val_number] = STATE(628), - [sym_val_duration] = STATE(602), - [sym_val_filesize] = STATE(602), - [sym_val_binary] = STATE(602), - [sym_val_string] = STATE(602), - [sym__raw_str] = STATE(663), - [sym__str_double_quotes] = STATE(663), - [sym_val_interpolated] = STATE(602), - [sym__inter_single_quotes] = STATE(629), - [sym__inter_double_quotes] = STATE(630), - [sym_val_list] = STATE(602), - [sym_val_record] = STATE(602), - [sym_val_table] = STATE(602), - [sym_val_closure] = STATE(602), - [sym__unquoted_in_record] = STATE(523), - [sym__unquoted_in_record_with_expr] = STATE(682), - [sym__unquoted_anonymous_prefix] = STATE(7076), [sym_comment] = STATE(1183), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [anon_sym_null] = ACTIONS(3689), - [anon_sym_true] = ACTIONS(3691), - [anon_sym_false] = ACTIONS(3691), - [aux_sym__val_number_decimal_token1] = ACTIONS(3693), - [aux_sym__val_number_decimal_token2] = ACTIONS(3695), - [aux_sym__val_number_decimal_token3] = ACTIONS(3697), - [aux_sym__val_number_decimal_token4] = ACTIONS(3699), - [aux_sym__val_number_token1] = ACTIONS(3701), - [aux_sym__val_number_token2] = ACTIONS(3701), - [aux_sym__val_number_token3] = ACTIONS(3701), - [aux_sym__val_number_token4] = ACTIONS(3703), - [aux_sym__val_number_token5] = ACTIONS(3703), - [aux_sym__val_number_token6] = ACTIONS(3703), - [anon_sym_0b] = ACTIONS(3705), - [anon_sym_0o] = ACTIONS(3707), - [anon_sym_0x] = ACTIONS(3707), - [sym_val_date] = ACTIONS(3709), - [anon_sym_DQUOTE] = ACTIONS(3711), - [sym__str_single_quotes] = ACTIONS(3713), - [sym__str_back_ticks] = ACTIONS(3713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3715), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3721), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3788), + [sym_duration_unit] = ACTIONS(3790), + [anon_sym_POUND] = ACTIONS(3), }, [1184] = { - [sym_expr_parenthesized] = STATE(5869), - [sym_val_range] = STATE(7351), - [sym__val_range] = STATE(7475), - [sym__val_range_with_end] = STATE(7236), - [sym__value] = STATE(7351), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6457), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5119), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_record] = STATE(6253), - [sym__unquoted_in_record_with_expr] = STATE(7351), - [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(1184), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), - [anon_sym_DOT_DOT_LT] = ACTIONS(3725), - [anon_sym_null] = ACTIONS(3727), - [anon_sym_true] = ACTIONS(3729), - [anon_sym_false] = ACTIONS(3729), - [aux_sym__val_number_decimal_token1] = ACTIONS(3731), - [aux_sym__val_number_decimal_token2] = ACTIONS(3733), - [aux_sym__val_number_decimal_token3] = ACTIONS(3735), - [aux_sym__val_number_decimal_token4] = ACTIONS(3737), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3739), - [aux_sym__val_number_token5] = ACTIONS(3739), - [aux_sym__val_number_token6] = ACTIONS(3739), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, [1185] = { [sym_comment] = STATE(1185), - [ts_builtin_sym_end] = ACTIONS(1589), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [1186] = { - [sym_expr_parenthesized] = STATE(5877), - [sym_val_range] = STATE(7360), - [sym__val_range] = STATE(7475), - [sym__val_range_with_end] = STATE(7236), - [sym__value] = STATE(7360), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6457), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5119), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_record] = STATE(6487), - [sym__unquoted_in_record_with_expr] = STATE(7360), - [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(1186), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), - [anon_sym_DOT_DOT_LT] = ACTIONS(3725), - [anon_sym_null] = ACTIONS(3727), - [anon_sym_true] = ACTIONS(3729), - [anon_sym_false] = ACTIONS(3729), - [aux_sym__val_number_decimal_token1] = ACTIONS(3731), - [aux_sym__val_number_decimal_token2] = ACTIONS(3733), - [aux_sym__val_number_decimal_token3] = ACTIONS(3735), - [aux_sym__val_number_decimal_token4] = ACTIONS(3737), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3739), - [aux_sym__val_number_token5] = ACTIONS(3739), - [aux_sym__val_number_token6] = ACTIONS(3739), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [ts_builtin_sym_end] = ACTIONS(1607), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, [1187] = { [sym_comment] = STATE(1187), - [ts_builtin_sym_end] = ACTIONS(1597), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [1188] = { - [sym_expr_parenthesized] = STATE(476), - [sym_val_range] = STATE(673), - [sym__val_range] = STATE(7528), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(673), - [sym_val_nothing] = STATE(602), - [sym_val_bool] = STATE(510), - [sym_val_variable] = STATE(485), - [sym_val_number] = STATE(602), - [sym__val_number_decimal] = STATE(330), - [sym__val_number] = STATE(628), - [sym_val_duration] = STATE(602), - [sym_val_filesize] = STATE(602), - [sym_val_binary] = STATE(602), - [sym_val_string] = STATE(602), - [sym__raw_str] = STATE(663), - [sym__str_double_quotes] = STATE(663), - [sym_val_interpolated] = STATE(602), - [sym__inter_single_quotes] = STATE(629), - [sym__inter_double_quotes] = STATE(630), - [sym_val_list] = STATE(602), - [sym_val_record] = STATE(602), - [sym_val_table] = STATE(602), - [sym_val_closure] = STATE(602), - [sym__unquoted_in_record] = STATE(520), - [sym__unquoted_in_record_with_expr] = STATE(673), - [sym__unquoted_anonymous_prefix] = STATE(7076), [sym_comment] = STATE(1188), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [anon_sym_null] = ACTIONS(3689), - [anon_sym_true] = ACTIONS(3691), - [anon_sym_false] = ACTIONS(3691), - [aux_sym__val_number_decimal_token1] = ACTIONS(3693), - [aux_sym__val_number_decimal_token2] = ACTIONS(3695), - [aux_sym__val_number_decimal_token3] = ACTIONS(3697), - [aux_sym__val_number_decimal_token4] = ACTIONS(3699), - [aux_sym__val_number_token1] = ACTIONS(3701), - [aux_sym__val_number_token2] = ACTIONS(3701), - [aux_sym__val_number_token3] = ACTIONS(3701), - [aux_sym__val_number_token4] = ACTIONS(3703), - [aux_sym__val_number_token5] = ACTIONS(3703), - [aux_sym__val_number_token6] = ACTIONS(3703), - [anon_sym_0b] = ACTIONS(3705), - [anon_sym_0o] = ACTIONS(3707), - [anon_sym_0x] = ACTIONS(3707), - [sym_val_date] = ACTIONS(3709), - [anon_sym_DQUOTE] = ACTIONS(3711), - [sym__str_single_quotes] = ACTIONS(3713), - [sym__str_back_ticks] = ACTIONS(3713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3715), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3721), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), }, [1189] = { - [sym_expr_parenthesized] = STATE(478), - [sym_val_range] = STATE(677), - [sym__val_range] = STATE(7528), - [sym__val_range_with_end] = STATE(7315), - [sym__value] = STATE(677), - [sym_val_nothing] = STATE(602), - [sym_val_bool] = STATE(510), - [sym_val_variable] = STATE(485), - [sym_val_number] = STATE(602), - [sym__val_number_decimal] = STATE(330), - [sym__val_number] = STATE(628), - [sym_val_duration] = STATE(602), - [sym_val_filesize] = STATE(602), - [sym_val_binary] = STATE(602), - [sym_val_string] = STATE(602), - [sym__raw_str] = STATE(663), - [sym__str_double_quotes] = STATE(663), - [sym_val_interpolated] = STATE(602), - [sym__inter_single_quotes] = STATE(629), - [sym__inter_double_quotes] = STATE(630), - [sym_val_list] = STATE(602), - [sym_val_record] = STATE(602), - [sym_val_table] = STATE(602), - [sym_val_closure] = STATE(602), - [sym__unquoted_in_record] = STATE(522), - [sym__unquoted_in_record_with_expr] = STATE(677), - [sym__unquoted_anonymous_prefix] = STATE(7076), [sym_comment] = STATE(1189), - [anon_sym_LBRACK] = ACTIONS(3679), - [anon_sym_LPAREN] = ACTIONS(3681), - [anon_sym_DOLLAR] = ACTIONS(1541), - [anon_sym_LBRACE] = ACTIONS(3683), - [anon_sym_DOT_DOT] = ACTIONS(3685), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3687), - [anon_sym_DOT_DOT_LT] = ACTIONS(3687), - [anon_sym_null] = ACTIONS(3689), - [anon_sym_true] = ACTIONS(3691), - [anon_sym_false] = ACTIONS(3691), - [aux_sym__val_number_decimal_token1] = ACTIONS(3693), - [aux_sym__val_number_decimal_token2] = ACTIONS(3695), - [aux_sym__val_number_decimal_token3] = ACTIONS(3697), - [aux_sym__val_number_decimal_token4] = ACTIONS(3699), - [aux_sym__val_number_token1] = ACTIONS(3701), - [aux_sym__val_number_token2] = ACTIONS(3701), - [aux_sym__val_number_token3] = ACTIONS(3701), - [aux_sym__val_number_token4] = ACTIONS(3703), - [aux_sym__val_number_token5] = ACTIONS(3703), - [aux_sym__val_number_token6] = ACTIONS(3703), - [anon_sym_0b] = ACTIONS(3705), - [anon_sym_0o] = ACTIONS(3707), - [anon_sym_0x] = ACTIONS(3707), - [sym_val_date] = ACTIONS(3709), - [anon_sym_DQUOTE] = ACTIONS(3711), - [sym__str_single_quotes] = ACTIONS(3713), - [sym__str_back_ticks] = ACTIONS(3713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3715), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3717), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3719), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3721), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_RBRACE] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, [1190] = { - [sym_expr_parenthesized] = STATE(517), - [sym_val_range] = STATE(745), - [sym__val_range] = STATE(7453), - [sym__val_range_with_end] = STATE(7300), - [sym__value] = STATE(745), - [sym_val_nothing] = STATE(729), - [sym_val_bool] = STATE(583), - [sym_val_variable] = STATE(532), - [sym_val_number] = STATE(729), - [sym__val_number_decimal] = STATE(344), - [sym__val_number] = STATE(757), - [sym_val_duration] = STATE(729), - [sym_val_filesize] = STATE(729), - [sym_val_binary] = STATE(729), - [sym_val_string] = STATE(729), - [sym__raw_str] = STATE(730), - [sym__str_double_quotes] = STATE(730), - [sym_val_interpolated] = STATE(729), - [sym__inter_single_quotes] = STATE(758), - [sym__inter_double_quotes] = STATE(759), - [sym_val_list] = STATE(729), - [sym_val_record] = STATE(729), - [sym_val_table] = STATE(729), - [sym_val_closure] = STATE(729), - [sym__unquoted_in_record] = STATE(571), - [sym__unquoted_in_record_with_expr] = STATE(745), - [sym__unquoted_anonymous_prefix] = STATE(6826), [sym_comment] = STATE(1190), - [anon_sym_LBRACK] = ACTIONS(3745), - [anon_sym_LPAREN] = ACTIONS(3747), - [anon_sym_DOLLAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_DOT_DOT] = ACTIONS(3753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3755), - [anon_sym_DOT_DOT_LT] = ACTIONS(3755), - [anon_sym_null] = ACTIONS(3757), - [anon_sym_true] = ACTIONS(3759), - [anon_sym_false] = ACTIONS(3759), - [aux_sym__val_number_decimal_token1] = ACTIONS(3761), - [aux_sym__val_number_decimal_token2] = ACTIONS(3763), - [aux_sym__val_number_decimal_token3] = ACTIONS(3765), - [aux_sym__val_number_decimal_token4] = ACTIONS(3767), - [aux_sym__val_number_token1] = ACTIONS(3769), - [aux_sym__val_number_token2] = ACTIONS(3769), - [aux_sym__val_number_token3] = ACTIONS(3769), - [aux_sym__val_number_token4] = ACTIONS(3771), - [aux_sym__val_number_token5] = ACTIONS(3771), - [aux_sym__val_number_token6] = ACTIONS(3771), - [anon_sym_0b] = ACTIONS(3773), - [anon_sym_0o] = ACTIONS(3775), - [anon_sym_0x] = ACTIONS(3775), - [sym_val_date] = ACTIONS(3777), - [anon_sym_DQUOTE] = ACTIONS(3779), - [sym__str_single_quotes] = ACTIONS(3781), - [sym__str_back_ticks] = ACTIONS(3781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3785), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3789), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_RBRACE] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3792), + [sym_duration_unit] = ACTIONS(3794), + [anon_sym_POUND] = ACTIONS(3), }, [1191] = { [sym_comment] = STATE(1191), - [ts_builtin_sym_end] = ACTIONS(1669), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_RBRACE] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [1192] = { + [sym_expr_parenthesized] = STATE(5881), + [sym_val_range] = STATE(7328), + [sym__val_range] = STATE(7544), + [sym__val_range_with_end] = STATE(7205), + [sym__value] = STATE(7328), + [sym_val_nothing] = STATE(7103), + [sym_val_bool] = STATE(6210), + [sym_val_variable] = STATE(5692), + [sym_val_number] = STATE(7103), + [sym__val_number_decimal] = STATE(5053), + [sym__val_number] = STATE(6638), + [sym_val_duration] = STATE(7103), + [sym_val_filesize] = STATE(7103), + [sym_val_binary] = STATE(7103), + [sym_val_string] = STATE(7103), + [sym__raw_str] = STATE(5129), + [sym__str_double_quotes] = STATE(5129), + [sym_val_interpolated] = STATE(7103), + [sym__inter_single_quotes] = STATE(6628), + [sym__inter_double_quotes] = STATE(6821), + [sym_val_list] = STATE(7103), + [sym_val_record] = STATE(7103), + [sym_val_table] = STATE(7103), + [sym_val_closure] = STATE(7103), + [sym__unquoted_in_record] = STATE(6102), + [sym__unquoted_in_record_with_expr] = STATE(7328), + [sym__unquoted_anonymous_prefix] = STATE(6939), [sym_comment] = STATE(1192), - [ts_builtin_sym_end] = ACTIONS(1735), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3076), + [anon_sym_LPAREN] = ACTIONS(3080), + [anon_sym_DOLLAR] = ACTIONS(3082), + [anon_sym_LBRACE] = ACTIONS(3084), + [anon_sym_DOT_DOT] = ACTIONS(3766), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3768), + [anon_sym_DOT_DOT_LT] = ACTIONS(3768), + [anon_sym_null] = ACTIONS(3770), + [anon_sym_true] = ACTIONS(3772), + [anon_sym_false] = ACTIONS(3772), + [aux_sym__val_number_decimal_token1] = ACTIONS(3774), + [aux_sym__val_number_decimal_token2] = ACTIONS(3776), + [aux_sym__val_number_decimal_token3] = ACTIONS(3778), + [aux_sym__val_number_decimal_token4] = ACTIONS(3780), + [aux_sym__val_number_token1] = ACTIONS(3102), + [aux_sym__val_number_token2] = ACTIONS(3102), + [aux_sym__val_number_token3] = ACTIONS(3102), + [aux_sym__val_number_token4] = ACTIONS(3782), + [aux_sym__val_number_token5] = ACTIONS(3782), + [aux_sym__val_number_token6] = ACTIONS(3782), + [anon_sym_0b] = ACTIONS(3106), + [anon_sym_0o] = ACTIONS(3108), + [anon_sym_0x] = ACTIONS(3108), + [sym_val_date] = ACTIONS(3784), + [anon_sym_DQUOTE] = ACTIONS(3112), + [sym__str_single_quotes] = ACTIONS(3114), + [sym__str_back_ticks] = ACTIONS(3114), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2571), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2573), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3786), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3118), }, [1193] = { + [sym_expr_parenthesized] = STATE(519), + [sym_val_range] = STATE(684), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7284), + [sym__value] = STATE(684), + [sym_val_nothing] = STATE(725), + [sym_val_bool] = STATE(581), + [sym_val_variable] = STATE(542), + [sym_val_number] = STATE(725), + [sym__val_number_decimal] = STATE(347), + [sym__val_number] = STATE(679), + [sym_val_duration] = STATE(725), + [sym_val_filesize] = STATE(725), + [sym_val_binary] = STATE(725), + [sym_val_string] = STATE(725), + [sym__raw_str] = STATE(711), + [sym__str_double_quotes] = STATE(711), + [sym_val_interpolated] = STATE(725), + [sym__inter_single_quotes] = STATE(686), + [sym__inter_double_quotes] = STATE(689), + [sym_val_list] = STATE(725), + [sym_val_record] = STATE(725), + [sym_val_table] = STATE(725), + [sym_val_closure] = STATE(725), + [sym__unquoted_in_record] = STATE(574), + [sym__unquoted_in_record_with_expr] = STATE(684), + [sym__unquoted_anonymous_prefix] = STATE(6617), [sym_comment] = STATE(1193), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_DOLLAR] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3680), + [anon_sym_DOT_DOT_LT] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_true] = ACTIONS(3684), + [anon_sym_false] = ACTIONS(3684), + [aux_sym__val_number_decimal_token1] = ACTIONS(3686), + [aux_sym__val_number_decimal_token2] = ACTIONS(3688), + [aux_sym__val_number_decimal_token3] = ACTIONS(3690), + [aux_sym__val_number_decimal_token4] = ACTIONS(3692), + [aux_sym__val_number_token1] = ACTIONS(3694), + [aux_sym__val_number_token2] = ACTIONS(3694), + [aux_sym__val_number_token3] = ACTIONS(3694), + [aux_sym__val_number_token4] = ACTIONS(3696), + [aux_sym__val_number_token5] = ACTIONS(3696), + [aux_sym__val_number_token6] = ACTIONS(3696), + [anon_sym_0b] = ACTIONS(3698), + [anon_sym_0o] = ACTIONS(3700), + [anon_sym_0x] = ACTIONS(3700), + [sym_val_date] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym__str_single_quotes] = ACTIONS(3706), + [sym__str_back_ticks] = ACTIONS(3706), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3710), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3712), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3714), }, [1194] = { + [sym_expr_parenthesized] = STATE(522), + [sym_val_range] = STATE(688), + [sym__val_range] = STATE(7517), + [sym__val_range_with_end] = STATE(7284), + [sym__value] = STATE(688), + [sym_val_nothing] = STATE(725), + [sym_val_bool] = STATE(581), + [sym_val_variable] = STATE(542), + [sym_val_number] = STATE(725), + [sym__val_number_decimal] = STATE(347), + [sym__val_number] = STATE(679), + [sym_val_duration] = STATE(725), + [sym_val_filesize] = STATE(725), + [sym_val_binary] = STATE(725), + [sym_val_string] = STATE(725), + [sym__raw_str] = STATE(711), + [sym__str_double_quotes] = STATE(711), + [sym_val_interpolated] = STATE(725), + [sym__inter_single_quotes] = STATE(686), + [sym__inter_double_quotes] = STATE(689), + [sym_val_list] = STATE(725), + [sym_val_record] = STATE(725), + [sym_val_table] = STATE(725), + [sym_val_closure] = STATE(725), + [sym__unquoted_in_record] = STATE(580), + [sym__unquoted_in_record_with_expr] = STATE(688), + [sym__unquoted_anonymous_prefix] = STATE(6617), [sym_comment] = STATE(1194), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3791), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACK] = ACTIONS(3670), + [anon_sym_LPAREN] = ACTIONS(3672), + [anon_sym_DOLLAR] = ACTIONS(3674), + [anon_sym_LBRACE] = ACTIONS(3676), + [anon_sym_DOT_DOT] = ACTIONS(3678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3680), + [anon_sym_DOT_DOT_LT] = ACTIONS(3680), + [anon_sym_null] = ACTIONS(3682), + [anon_sym_true] = ACTIONS(3684), + [anon_sym_false] = ACTIONS(3684), + [aux_sym__val_number_decimal_token1] = ACTIONS(3686), + [aux_sym__val_number_decimal_token2] = ACTIONS(3688), + [aux_sym__val_number_decimal_token3] = ACTIONS(3690), + [aux_sym__val_number_decimal_token4] = ACTIONS(3692), + [aux_sym__val_number_token1] = ACTIONS(3694), + [aux_sym__val_number_token2] = ACTIONS(3694), + [aux_sym__val_number_token3] = ACTIONS(3694), + [aux_sym__val_number_token4] = ACTIONS(3696), + [aux_sym__val_number_token5] = ACTIONS(3696), + [aux_sym__val_number_token6] = ACTIONS(3696), + [anon_sym_0b] = ACTIONS(3698), + [anon_sym_0o] = ACTIONS(3700), + [anon_sym_0x] = ACTIONS(3700), + [sym_val_date] = ACTIONS(3702), + [anon_sym_DQUOTE] = ACTIONS(3704), + [sym__str_single_quotes] = ACTIONS(3706), + [sym__str_back_ticks] = ACTIONS(3706), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3708), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3710), + [anon_sym_err_GT] = ACTIONS(3638), + [anon_sym_out_GT] = ACTIONS(3638), + [anon_sym_e_GT] = ACTIONS(3638), + [anon_sym_o_GT] = ACTIONS(3638), + [anon_sym_err_PLUSout_GT] = ACTIONS(3638), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3638), + [anon_sym_o_PLUSe_GT] = ACTIONS(3638), + [anon_sym_e_PLUSo_GT] = ACTIONS(3638), + [anon_sym_err_GT_GT] = ACTIONS(3640), + [anon_sym_out_GT_GT] = ACTIONS(3640), + [anon_sym_e_GT_GT] = ACTIONS(3640), + [anon_sym_o_GT_GT] = ACTIONS(3640), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3640), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3640), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3640), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3640), + [aux_sym__unquoted_in_record_token1] = ACTIONS(3712), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3714), }, [1195] = { [sym_comment] = STATE(1195), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_RBRACE] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [1196] = { - [sym_expr_parenthesized] = STATE(513), - [sym_val_range] = STATE(740), - [sym__val_range] = STATE(7453), - [sym__val_range_with_end] = STATE(7300), - [sym__value] = STATE(740), - [sym_val_nothing] = STATE(729), - [sym_val_bool] = STATE(583), - [sym_val_variable] = STATE(532), - [sym_val_number] = STATE(729), - [sym__val_number_decimal] = STATE(344), - [sym__val_number] = STATE(757), - [sym_val_duration] = STATE(729), - [sym_val_filesize] = STATE(729), - [sym_val_binary] = STATE(729), - [sym_val_string] = STATE(729), - [sym__raw_str] = STATE(730), - [sym__str_double_quotes] = STATE(730), - [sym_val_interpolated] = STATE(729), - [sym__inter_single_quotes] = STATE(758), - [sym__inter_double_quotes] = STATE(759), - [sym_val_list] = STATE(729), - [sym_val_record] = STATE(729), - [sym_val_table] = STATE(729), - [sym_val_closure] = STATE(729), - [sym__unquoted_in_record] = STATE(563), - [sym__unquoted_in_record_with_expr] = STATE(740), - [sym__unquoted_anonymous_prefix] = STATE(6826), [sym_comment] = STATE(1196), - [anon_sym_LBRACK] = ACTIONS(3745), - [anon_sym_LPAREN] = ACTIONS(3747), - [anon_sym_DOLLAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_DOT_DOT] = ACTIONS(3753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3755), - [anon_sym_DOT_DOT_LT] = ACTIONS(3755), - [anon_sym_null] = ACTIONS(3757), - [anon_sym_true] = ACTIONS(3759), - [anon_sym_false] = ACTIONS(3759), - [aux_sym__val_number_decimal_token1] = ACTIONS(3761), - [aux_sym__val_number_decimal_token2] = ACTIONS(3763), - [aux_sym__val_number_decimal_token3] = ACTIONS(3765), - [aux_sym__val_number_decimal_token4] = ACTIONS(3767), - [aux_sym__val_number_token1] = ACTIONS(3769), - [aux_sym__val_number_token2] = ACTIONS(3769), - [aux_sym__val_number_token3] = ACTIONS(3769), - [aux_sym__val_number_token4] = ACTIONS(3771), - [aux_sym__val_number_token5] = ACTIONS(3771), - [aux_sym__val_number_token6] = ACTIONS(3771), - [anon_sym_0b] = ACTIONS(3773), - [anon_sym_0o] = ACTIONS(3775), - [anon_sym_0x] = ACTIONS(3775), - [sym_val_date] = ACTIONS(3777), - [anon_sym_DQUOTE] = ACTIONS(3779), - [sym__str_single_quotes] = ACTIONS(3781), - [sym__str_back_ticks] = ACTIONS(3781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3785), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3789), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_SEMI] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), }, [1197] = { [sym_comment] = STATE(1197), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_SEMI] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3796), + [sym_duration_unit] = ACTIONS(3798), [anon_sym_POUND] = ACTIONS(3), }, [1198] = { [sym_comment] = STATE(1198), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(3793), - [aux_sym__immediate_decimal_token2] = ACTIONS(3795), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_SEMI] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, [1199] = { + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_rest] = STATE(7506), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2931), + [sym_val_range] = STATE(3169), + [sym__val_range] = STATE(7662), + [sym_val_nothing] = STATE(3179), + [sym_val_bool] = STATE(3084), + [sym_val_variable] = STATE(2868), + [sym_val_number] = STATE(3179), + [sym__val_number_decimal] = STATE(2720), + [sym__val_number] = STATE(3155), + [sym_val_duration] = STATE(3179), + [sym_val_filesize] = STATE(3179), + [sym_val_binary] = STATE(3179), + [sym_val_string] = STATE(3179), + [sym__raw_str] = STATE(3127), + [sym__str_double_quotes] = STATE(3127), + [sym_val_list] = STATE(7360), + [sym_val_table] = STATE(3179), + [sym__unquoted_in_list] = STATE(3118), + [sym__unquoted_anonymous_prefix] = STATE(7511), [sym_comment] = STATE(1199), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_RBRACE] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_shebang_repeat1] = STATE(6552), + [aux_sym__match_pattern_list_repeat1] = STATE(1247), + [sym__newline] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_RBRACK] = ACTIONS(3804), + [anon_sym_LPAREN] = ACTIONS(3806), + [anon_sym_DOLLAR] = ACTIONS(3808), + [anon_sym_LBRACE] = ACTIONS(3810), + [anon_sym_DOT_DOT] = ACTIONS(3812), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), + [anon_sym_DOT_DOT_LT] = ACTIONS(3814), + [anon_sym_null] = ACTIONS(3816), + [anon_sym_true] = ACTIONS(3818), + [anon_sym_false] = ACTIONS(3818), + [aux_sym__val_number_decimal_token1] = ACTIONS(3820), + [aux_sym__val_number_decimal_token2] = ACTIONS(3822), + [aux_sym__val_number_decimal_token3] = ACTIONS(3824), + [aux_sym__val_number_decimal_token4] = ACTIONS(3826), + [aux_sym__val_number_token1] = ACTIONS(3828), + [aux_sym__val_number_token2] = ACTIONS(3828), + [aux_sym__val_number_token3] = ACTIONS(3828), + [aux_sym__val_number_token4] = ACTIONS(3830), + [aux_sym__val_number_token5] = ACTIONS(3830), + [aux_sym__val_number_token6] = ACTIONS(3830), + [anon_sym_0b] = ACTIONS(3832), + [anon_sym_0o] = ACTIONS(3834), + [anon_sym_0x] = ACTIONS(3834), + [sym_val_date] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3838), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3842), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3844), }, [1200] = { - [sym_expr_parenthesized] = STATE(515), - [sym_val_range] = STATE(742), - [sym__val_range] = STATE(7453), - [sym__val_range_with_end] = STATE(7300), - [sym__value] = STATE(742), - [sym_val_nothing] = STATE(729), - [sym_val_bool] = STATE(583), - [sym_val_variable] = STATE(532), - [sym_val_number] = STATE(729), - [sym__val_number_decimal] = STATE(344), - [sym__val_number] = STATE(757), - [sym_val_duration] = STATE(729), - [sym_val_filesize] = STATE(729), - [sym_val_binary] = STATE(729), - [sym_val_string] = STATE(729), - [sym__raw_str] = STATE(730), - [sym__str_double_quotes] = STATE(730), - [sym_val_interpolated] = STATE(729), - [sym__inter_single_quotes] = STATE(758), - [sym__inter_double_quotes] = STATE(759), - [sym_val_list] = STATE(729), - [sym_val_record] = STATE(729), - [sym_val_table] = STATE(729), - [sym_val_closure] = STATE(729), - [sym__unquoted_in_record] = STATE(567), - [sym__unquoted_in_record_with_expr] = STATE(742), - [sym__unquoted_anonymous_prefix] = STATE(6826), + [sym_match_arm] = STATE(7174), + [sym_default_arm] = STATE(7174), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), [sym_comment] = STATE(1200), - [anon_sym_LBRACK] = ACTIONS(3745), - [anon_sym_LPAREN] = ACTIONS(3747), - [anon_sym_DOLLAR] = ACTIONS(3749), - [anon_sym_LBRACE] = ACTIONS(3751), - [anon_sym_DOT_DOT] = ACTIONS(3753), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3755), - [anon_sym_DOT_DOT_LT] = ACTIONS(3755), - [anon_sym_null] = ACTIONS(3757), - [anon_sym_true] = ACTIONS(3759), - [anon_sym_false] = ACTIONS(3759), - [aux_sym__val_number_decimal_token1] = ACTIONS(3761), - [aux_sym__val_number_decimal_token2] = ACTIONS(3763), - [aux_sym__val_number_decimal_token3] = ACTIONS(3765), - [aux_sym__val_number_decimal_token4] = ACTIONS(3767), - [aux_sym__val_number_token1] = ACTIONS(3769), - [aux_sym__val_number_token2] = ACTIONS(3769), - [aux_sym__val_number_token3] = ACTIONS(3769), - [aux_sym__val_number_token4] = ACTIONS(3771), - [aux_sym__val_number_token5] = ACTIONS(3771), - [aux_sym__val_number_token6] = ACTIONS(3771), - [anon_sym_0b] = ACTIONS(3773), - [anon_sym_0o] = ACTIONS(3775), - [anon_sym_0x] = ACTIONS(3775), - [sym_val_date] = ACTIONS(3777), - [anon_sym_DQUOTE] = ACTIONS(3779), - [sym__str_single_quotes] = ACTIONS(3781), - [sym__str_back_ticks] = ACTIONS(3781), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3783), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3785), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3787), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3789), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1201] = { + [sym_match_arm] = STATE(7183), + [sym_default_arm] = STATE(7183), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), [sym_comment] = STATE(1201), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_RBRACE] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(3), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3560), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(253), }, [1202] = { [sym_comment] = STATE(1202), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_RBRACE] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3797), - [sym_duration_unit] = ACTIONS(3799), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(3668), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), [anon_sym_POUND] = ACTIONS(3), }, [1203] = { [sym_comment] = STATE(1203), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_SEMI] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, [1204] = { [sym_comment] = STATE(1204), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_RBRACE] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(3846), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, [1205] = { - [sym_expr_parenthesized] = STATE(5924), - [sym_val_range] = STATE(7231), - [sym__val_range] = STATE(7475), - [sym__val_range_with_end] = STATE(7236), - [sym__value] = STATE(7231), - [sym_val_nothing] = STATE(7128), - [sym_val_bool] = STATE(6457), - [sym_val_variable] = STATE(5784), - [sym_val_number] = STATE(7128), - [sym__val_number_decimal] = STATE(5119), - [sym__val_number] = STATE(7195), - [sym_val_duration] = STATE(7128), - [sym_val_filesize] = STATE(7128), - [sym_val_binary] = STATE(7128), - [sym_val_string] = STATE(7128), - [sym__raw_str] = STATE(5129), - [sym__str_double_quotes] = STATE(5129), - [sym_val_interpolated] = STATE(7128), - [sym__inter_single_quotes] = STATE(6854), - [sym__inter_double_quotes] = STATE(6868), - [sym_val_list] = STATE(7128), - [sym_val_record] = STATE(7128), - [sym_val_table] = STATE(7128), - [sym_val_closure] = STATE(7128), - [sym__unquoted_in_record] = STATE(6181), - [sym__unquoted_in_record_with_expr] = STATE(7231), - [sym__unquoted_anonymous_prefix] = STATE(6968), [sym_comment] = STATE(1205), - [anon_sym_LBRACK] = ACTIONS(3089), - [anon_sym_LPAREN] = ACTIONS(3093), - [anon_sym_DOLLAR] = ACTIONS(3095), - [anon_sym_LBRACE] = ACTIONS(3097), - [anon_sym_DOT_DOT] = ACTIONS(3723), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3725), - [anon_sym_DOT_DOT_LT] = ACTIONS(3725), - [anon_sym_null] = ACTIONS(3727), - [anon_sym_true] = ACTIONS(3729), - [anon_sym_false] = ACTIONS(3729), - [aux_sym__val_number_decimal_token1] = ACTIONS(3731), - [aux_sym__val_number_decimal_token2] = ACTIONS(3733), - [aux_sym__val_number_decimal_token3] = ACTIONS(3735), - [aux_sym__val_number_decimal_token4] = ACTIONS(3737), - [aux_sym__val_number_token1] = ACTIONS(3115), - [aux_sym__val_number_token2] = ACTIONS(3115), - [aux_sym__val_number_token3] = ACTIONS(3115), - [aux_sym__val_number_token4] = ACTIONS(3739), - [aux_sym__val_number_token5] = ACTIONS(3739), - [aux_sym__val_number_token6] = ACTIONS(3739), - [anon_sym_0b] = ACTIONS(3119), - [anon_sym_0o] = ACTIONS(3121), - [anon_sym_0x] = ACTIONS(3121), - [sym_val_date] = ACTIONS(3741), - [anon_sym_DQUOTE] = ACTIONS(3125), - [sym__str_single_quotes] = ACTIONS(3127), - [sym__str_back_ticks] = ACTIONS(3127), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2581), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2583), - [anon_sym_err_GT] = ACTIONS(3629), - [anon_sym_out_GT] = ACTIONS(3629), - [anon_sym_e_GT] = ACTIONS(3629), - [anon_sym_o_GT] = ACTIONS(3629), - [anon_sym_err_PLUSout_GT] = ACTIONS(3629), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3629), - [anon_sym_o_PLUSe_GT] = ACTIONS(3629), - [anon_sym_e_PLUSo_GT] = ACTIONS(3629), - [anon_sym_err_GT_GT] = ACTIONS(3631), - [anon_sym_out_GT_GT] = ACTIONS(3631), - [anon_sym_e_GT_GT] = ACTIONS(3631), - [anon_sym_o_GT_GT] = ACTIONS(3631), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3631), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3631), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3631), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3631), - [aux_sym__unquoted_in_record_token1] = ACTIONS(3743), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3131), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_SEMI] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_POUND] = ACTIONS(3), }, [1206] = { + [sym_match_arm] = STATE(6906), + [sym_default_arm] = STATE(6906), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), [sym_comment] = STATE(1206), - [ts_builtin_sym_end] = ACTIONS(1693), - [anon_sym_STAR_STAR] = ACTIONS(3049), - [anon_sym_PLUS_PLUS] = ACTIONS(3049), - [anon_sym_STAR] = ACTIONS(3051), - [anon_sym_SLASH] = ACTIONS(3051), - [anon_sym_mod] = ACTIONS(3049), - [anon_sym_SLASH_SLASH] = ACTIONS(3049), - [anon_sym_PLUS] = ACTIONS(3051), - [anon_sym_DASH] = ACTIONS(3049), - [anon_sym_bit_DASHshl] = ACTIONS(3049), - [anon_sym_bit_DASHshr] = ACTIONS(3049), - [anon_sym_EQ_TILDE] = ACTIONS(3049), - [anon_sym_BANG_TILDE] = ACTIONS(3049), - [anon_sym_bit_DASHand] = ACTIONS(3049), - [anon_sym_bit_DASHxor] = ACTIONS(3049), - [anon_sym_bit_DASHor] = ACTIONS(3049), - [anon_sym_and] = ACTIONS(3049), - [anon_sym_xor] = ACTIONS(3049), - [anon_sym_or] = ACTIONS(3049), - [anon_sym_in] = ACTIONS(3049), - [anon_sym_not_DASHin] = ACTIONS(3049), - [anon_sym_starts_DASHwith] = ACTIONS(3049), - [anon_sym_ends_DASHwith] = ACTIONS(3049), - [anon_sym_EQ_EQ] = ACTIONS(3049), - [anon_sym_BANG_EQ] = ACTIONS(3049), - [anon_sym_LT] = ACTIONS(3051), - [anon_sym_LT_EQ] = ACTIONS(3049), - [anon_sym_GT] = ACTIONS(3051), - [anon_sym_GT_EQ] = ACTIONS(3049), - [aux_sym_cmd_identifier_token41] = ACTIONS(3053), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3055), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3057), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3057), - [sym_filesize_unit] = ACTIONS(3801), - [sym_duration_unit] = ACTIONS(3803), - [anon_sym_POUND] = ACTIONS(3), - }, - [1207] = { - [sym_comment] = STATE(1207), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3667), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [1208] = { - [sym_comment] = STATE(1208), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3805), - [sym_duration_unit] = ACTIONS(3807), - [anon_sym_POUND] = ACTIONS(3), - }, - [1209] = { - [sym_comment] = STATE(1209), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = ACTIONS(1667), - [sym__newline] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(3809), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [1210] = { - [sym_match_arm] = STATE(6667), - [sym_default_arm] = STATE(6667), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1210), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1211] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_rest] = STATE(7501), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2902), - [sym_val_range] = STATE(3134), - [sym__val_range] = STATE(7495), - [sym_val_nothing] = STATE(3146), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2903), - [sym_val_number] = STATE(3146), - [sym__val_number_decimal] = STATE(2743), - [sym__val_number] = STATE(3166), - [sym_val_duration] = STATE(3146), - [sym_val_filesize] = STATE(3146), - [sym_val_binary] = STATE(3146), - [sym_val_string] = STATE(3146), - [sym__raw_str] = STATE(3154), - [sym__str_double_quotes] = STATE(3154), - [sym_val_list] = STATE(7503), - [sym_val_table] = STATE(3146), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7504), - [sym_comment] = STATE(1211), - [aux_sym_shebang_repeat1] = STATE(6517), - [aux_sym__match_pattern_list_repeat1] = STATE(1289), - [sym__newline] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_RBRACK] = ACTIONS(3815), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_DOLLAR] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(3823), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), - [anon_sym_DOT_DOT_LT] = ACTIONS(3825), - [anon_sym_null] = ACTIONS(3827), - [anon_sym_true] = ACTIONS(3829), - [anon_sym_false] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3831), - [aux_sym__val_number_decimal_token2] = ACTIONS(3833), - [aux_sym__val_number_decimal_token3] = ACTIONS(3835), - [aux_sym__val_number_decimal_token4] = ACTIONS(3837), - [aux_sym__val_number_token1] = ACTIONS(3839), - [aux_sym__val_number_token2] = ACTIONS(3839), - [aux_sym__val_number_token3] = ACTIONS(3839), - [aux_sym__val_number_token4] = ACTIONS(3841), - [aux_sym__val_number_token5] = ACTIONS(3841), - [aux_sym__val_number_token6] = ACTIONS(3841), - [anon_sym_0b] = ACTIONS(3843), - [anon_sym_0o] = ACTIONS(3845), - [anon_sym_0x] = ACTIONS(3845), - [sym_val_date] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3849), - [sym__str_single_quotes] = ACTIONS(3851), - [sym__str_back_ticks] = ACTIONS(3851), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3855), - }, - [1212] = { - [sym_comment] = STATE(1212), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [1213] = { - [sym_expr_parenthesized] = STATE(6408), - [sym_val_range] = STATE(7607), - [sym__val_range] = STATE(7439), - [sym__value] = STATE(7607), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(6084), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5557), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(7613), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1213), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), - [anon_sym_DOT_DOT_LT] = ACTIONS(3867), + [1207] = { + [sym_match_arm] = STATE(7352), + [sym_default_arm] = STATE(7352), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1207), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3848), + [anon_sym_LPAREN] = ACTIONS(3851), + [anon_sym_DOLLAR] = ACTIONS(3854), + [anon_sym_LBRACE] = ACTIONS(3857), + [anon_sym__] = ACTIONS(3860), + [anon_sym_DOT_DOT] = ACTIONS(3863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3866), + [anon_sym_DOT_DOT_LT] = ACTIONS(3866), [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3433), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [anon_sym_true] = ACTIONS(3872), + [anon_sym_false] = ACTIONS(3872), + [aux_sym__val_number_decimal_token1] = ACTIONS(3875), + [aux_sym__val_number_decimal_token2] = ACTIONS(3878), + [aux_sym__val_number_decimal_token3] = ACTIONS(3881), + [aux_sym__val_number_decimal_token4] = ACTIONS(3884), + [aux_sym__val_number_token1] = ACTIONS(3887), + [aux_sym__val_number_token2] = ACTIONS(3887), + [aux_sym__val_number_token3] = ACTIONS(3887), + [aux_sym__val_number_token4] = ACTIONS(3890), + [aux_sym__val_number_token5] = ACTIONS(3890), + [aux_sym__val_number_token6] = ACTIONS(3890), + [anon_sym_0b] = ACTIONS(3893), + [anon_sym_0o] = ACTIONS(3896), + [anon_sym_0x] = ACTIONS(3896), + [sym_val_date] = ACTIONS(3899), + [anon_sym_DQUOTE] = ACTIONS(3902), + [sym__str_single_quotes] = ACTIONS(3905), + [sym__str_back_ticks] = ACTIONS(3905), + [anon_sym_err_GT] = ACTIONS(3908), + [anon_sym_out_GT] = ACTIONS(3908), + [anon_sym_e_GT] = ACTIONS(3908), + [anon_sym_o_GT] = ACTIONS(3908), + [anon_sym_err_PLUSout_GT] = ACTIONS(3908), + [anon_sym_out_PLUSerr_GT] = ACTIONS(3908), + [anon_sym_o_PLUSe_GT] = ACTIONS(3908), + [anon_sym_e_PLUSo_GT] = ACTIONS(3908), + [anon_sym_err_GT_GT] = ACTIONS(3911), + [anon_sym_out_GT_GT] = ACTIONS(3911), + [anon_sym_e_GT_GT] = ACTIONS(3911), + [anon_sym_o_GT_GT] = ACTIONS(3911), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3911), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3911), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3911), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3911), + [aux_sym_unquoted_token1] = ACTIONS(3914), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3917), }, - [1214] = { - [sym_match_arm] = STATE(7144), - [sym_default_arm] = STATE(7144), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1214), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), + [1208] = { + [sym_match_arm] = STATE(6928), + [sym_default_arm] = STATE(6928), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1208), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1215] = { - [sym_comment] = STATE(1215), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_SEMI] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(3), - }, - [1216] = { - [sym_comment] = STATE(1216), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_SEMI] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), - }, - [1217] = { - [sym_comment] = STATE(1217), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_SEMI] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(3), - }, - [1218] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_rest] = STATE(7523), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2902), - [sym_val_range] = STATE(3134), - [sym__val_range] = STATE(7495), - [sym_val_nothing] = STATE(3146), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2903), - [sym_val_number] = STATE(3146), - [sym__val_number_decimal] = STATE(2743), - [sym__val_number] = STATE(3166), - [sym_val_duration] = STATE(3146), - [sym_val_filesize] = STATE(3146), - [sym_val_binary] = STATE(3146), - [sym_val_string] = STATE(3146), - [sym__raw_str] = STATE(3154), - [sym__str_double_quotes] = STATE(3154), - [sym_val_list] = STATE(7409), - [sym_val_table] = STATE(3146), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7504), - [sym_comment] = STATE(1218), - [aux_sym_shebang_repeat1] = STATE(6595), - [aux_sym__match_pattern_list_repeat1] = STATE(1302), - [sym__newline] = ACTIONS(3811), - [anon_sym_LBRACK] = ACTIONS(3813), - [anon_sym_RBRACK] = ACTIONS(3885), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_DOLLAR] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(3887), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), - [anon_sym_DOT_DOT_LT] = ACTIONS(3825), - [anon_sym_null] = ACTIONS(3827), - [anon_sym_true] = ACTIONS(3829), - [anon_sym_false] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3831), - [aux_sym__val_number_decimal_token2] = ACTIONS(3833), - [aux_sym__val_number_decimal_token3] = ACTIONS(3835), - [aux_sym__val_number_decimal_token4] = ACTIONS(3837), - [aux_sym__val_number_token1] = ACTIONS(3839), - [aux_sym__val_number_token2] = ACTIONS(3839), - [aux_sym__val_number_token3] = ACTIONS(3839), - [aux_sym__val_number_token4] = ACTIONS(3841), - [aux_sym__val_number_token5] = ACTIONS(3841), - [aux_sym__val_number_token6] = ACTIONS(3841), - [anon_sym_0b] = ACTIONS(3843), - [anon_sym_0o] = ACTIONS(3845), - [anon_sym_0x] = ACTIONS(3845), - [sym_val_date] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3849), - [sym__str_single_quotes] = ACTIONS(3851), - [sym__str_back_ticks] = ACTIONS(3851), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3855), + [1209] = { + [sym_expr_parenthesized] = STATE(6481), + [sym_val_range] = STATE(7572), + [sym__val_range] = STATE(7646), + [sym__value] = STATE(7572), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(6561), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(7573), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1209), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(3928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3930), + [anon_sym_DOT_DOT_LT] = ACTIONS(3930), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_COLON2] = ACTIONS(3420), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1219] = { - [sym_match_arm] = STATE(7191), - [sym_default_arm] = STATE(7191), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1219), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), + [1210] = { + [sym_match_arm] = STATE(6858), + [sym_default_arm] = STATE(6858), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1210), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1220] = { - [sym_expr_parenthesized] = STATE(6408), - [sym_val_range] = STATE(7607), - [sym__val_range] = STATE(7439), - [sym__value] = STATE(7607), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(6084), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5557), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(7613), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1220), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), - [anon_sym_DOT_DOT_LT] = ACTIONS(3867), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), + [1211] = { + [sym_expr_parenthesized] = STATE(6481), + [sym_val_range] = STATE(7572), + [sym__val_range] = STATE(7646), + [sym__value] = STATE(7572), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(6561), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(7573), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1211), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(3928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3930), + [anon_sym_DOT_DOT_LT] = ACTIONS(3930), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_COLON2] = ACTIONS(3431), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [anon_sym_COLON2] = ACTIONS(3398), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1221] = { - [sym_match_arm] = STATE(6969), - [sym_default_arm] = STATE(6969), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1221), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), + [1212] = { + [sym_match_arm] = STATE(6869), + [sym_default_arm] = STATE(6869), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1212), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1222] = { - [sym_match_arm] = STATE(6970), - [sym_default_arm] = STATE(6970), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1222), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), + [1213] = { + [sym_match_arm] = STATE(6982), + [sym_default_arm] = STATE(6982), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1213), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1223] = { - [sym_match_arm] = STATE(7036), - [sym_default_arm] = STATE(7036), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1223), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), + [1214] = { + [sym_match_arm] = STATE(6984), + [sym_default_arm] = STATE(6984), + [sym_match_pattern] = STATE(7475), + [sym__match_pattern] = STATE(5949), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6159), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5217), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1214), + [aux_sym_ctrl_match_repeat1] = STATE(1207), + [anon_sym_LBRACK] = ACTIONS(3532), [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym__] = ACTIONS(3540), + [anon_sym_DOT_DOT] = ACTIONS(3542), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3544), + [anon_sym_DOT_DOT_LT] = ACTIONS(3544), + [anon_sym_null] = ACTIONS(3546), + [anon_sym_true] = ACTIONS(3548), + [anon_sym_false] = ACTIONS(3548), + [aux_sym__val_number_decimal_token1] = ACTIONS(3550), + [aux_sym__val_number_decimal_token2] = ACTIONS(3552), + [aux_sym__val_number_decimal_token3] = ACTIONS(3554), + [aux_sym__val_number_decimal_token4] = ACTIONS(3556), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3558), + [aux_sym__val_number_token5] = ACTIONS(3558), + [aux_sym__val_number_token6] = ACTIONS(3558), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), + [sym_val_date] = ACTIONS(3560), [anon_sym_DQUOTE] = ACTIONS(237), [sym__str_single_quotes] = ACTIONS(239), [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(253), }, - [1224] = { - [sym_match_arm] = STATE(7038), - [sym_default_arm] = STATE(7038), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1224), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [1215] = { + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_rest] = STATE(7561), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2931), + [sym_val_range] = STATE(3169), + [sym__val_range] = STATE(7662), + [sym_val_nothing] = STATE(3179), + [sym_val_bool] = STATE(3084), + [sym_val_variable] = STATE(2868), + [sym_val_number] = STATE(3179), + [sym__val_number_decimal] = STATE(2720), + [sym__val_number] = STATE(3155), + [sym_val_duration] = STATE(3179), + [sym_val_filesize] = STATE(3179), + [sym_val_binary] = STATE(3179), + [sym_val_string] = STATE(3179), + [sym__raw_str] = STATE(3127), + [sym__str_double_quotes] = STATE(3127), + [sym_val_list] = STATE(7391), + [sym_val_table] = STATE(3179), + [sym__unquoted_in_list] = STATE(3118), + [sym__unquoted_anonymous_prefix] = STATE(7511), + [sym_comment] = STATE(1215), + [aux_sym_shebang_repeat1] = STATE(6588), + [aux_sym__match_pattern_list_repeat1] = STATE(1258), + [sym__newline] = ACTIONS(3800), + [anon_sym_LBRACK] = ACTIONS(3802), + [anon_sym_RBRACK] = ACTIONS(3948), + [anon_sym_LPAREN] = ACTIONS(3806), + [anon_sym_DOLLAR] = ACTIONS(3808), + [anon_sym_LBRACE] = ACTIONS(3810), + [anon_sym_DOT_DOT] = ACTIONS(3950), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), + [anon_sym_DOT_DOT_LT] = ACTIONS(3814), + [anon_sym_null] = ACTIONS(3816), + [anon_sym_true] = ACTIONS(3818), + [anon_sym_false] = ACTIONS(3818), + [aux_sym__val_number_decimal_token1] = ACTIONS(3820), + [aux_sym__val_number_decimal_token2] = ACTIONS(3822), + [aux_sym__val_number_decimal_token3] = ACTIONS(3824), + [aux_sym__val_number_decimal_token4] = ACTIONS(3826), + [aux_sym__val_number_token1] = ACTIONS(3828), + [aux_sym__val_number_token2] = ACTIONS(3828), + [aux_sym__val_number_token3] = ACTIONS(3828), + [aux_sym__val_number_token4] = ACTIONS(3830), + [aux_sym__val_number_token5] = ACTIONS(3830), + [aux_sym__val_number_token6] = ACTIONS(3830), + [anon_sym_0b] = ACTIONS(3832), + [anon_sym_0o] = ACTIONS(3834), + [anon_sym_0x] = ACTIONS(3834), + [sym_val_date] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3838), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3842), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3844), }, - [1225] = { - [sym_match_arm] = STATE(7211), - [sym_default_arm] = STATE(7211), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1225), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3889), - [anon_sym_LPAREN] = ACTIONS(3892), - [anon_sym_DOLLAR] = ACTIONS(3895), - [anon_sym_LBRACE] = ACTIONS(3898), - [anon_sym__] = ACTIONS(3901), - [anon_sym_DOT_DOT] = ACTIONS(3904), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3907), - [anon_sym_DOT_DOT_LT] = ACTIONS(3907), - [anon_sym_null] = ACTIONS(3910), - [anon_sym_true] = ACTIONS(3913), - [anon_sym_false] = ACTIONS(3913), - [aux_sym__val_number_decimal_token1] = ACTIONS(3916), - [aux_sym__val_number_decimal_token2] = ACTIONS(3919), - [aux_sym__val_number_decimal_token3] = ACTIONS(3922), - [aux_sym__val_number_decimal_token4] = ACTIONS(3925), - [aux_sym__val_number_token1] = ACTIONS(3928), - [aux_sym__val_number_token2] = ACTIONS(3928), - [aux_sym__val_number_token3] = ACTIONS(3928), - [aux_sym__val_number_token4] = ACTIONS(3931), - [aux_sym__val_number_token5] = ACTIONS(3931), - [aux_sym__val_number_token6] = ACTIONS(3931), - [anon_sym_0b] = ACTIONS(3934), - [anon_sym_0o] = ACTIONS(3937), - [anon_sym_0x] = ACTIONS(3937), - [sym_val_date] = ACTIONS(3940), - [anon_sym_DQUOTE] = ACTIONS(3943), - [sym__str_single_quotes] = ACTIONS(3946), - [sym__str_back_ticks] = ACTIONS(3946), - [anon_sym_err_GT] = ACTIONS(3949), - [anon_sym_out_GT] = ACTIONS(3949), - [anon_sym_e_GT] = ACTIONS(3949), - [anon_sym_o_GT] = ACTIONS(3949), - [anon_sym_err_PLUSout_GT] = ACTIONS(3949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(3949), - [anon_sym_o_PLUSe_GT] = ACTIONS(3949), - [anon_sym_e_PLUSo_GT] = ACTIONS(3949), - [anon_sym_err_GT_GT] = ACTIONS(3952), - [anon_sym_out_GT_GT] = ACTIONS(3952), - [anon_sym_e_GT_GT] = ACTIONS(3952), - [anon_sym_o_GT_GT] = ACTIONS(3952), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(3952), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(3952), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(3952), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(3952), - [aux_sym_unquoted_token1] = ACTIONS(3955), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3958), + [1216] = { + [sym_comment] = STATE(1216), + [anon_sym_STAR_STAR] = ACTIONS(1607), + [anon_sym_PLUS_PLUS] = ACTIONS(1607), + [anon_sym_STAR] = ACTIONS(1605), + [anon_sym_SLASH] = ACTIONS(1605), + [anon_sym_mod] = ACTIONS(1607), + [anon_sym_SLASH_SLASH] = ACTIONS(1607), + [anon_sym_PLUS] = ACTIONS(1605), + [anon_sym_DASH] = ACTIONS(1607), + [anon_sym_bit_DASHshl] = ACTIONS(1607), + [anon_sym_bit_DASHshr] = ACTIONS(1607), + [anon_sym_EQ_TILDE] = ACTIONS(1607), + [anon_sym_BANG_TILDE] = ACTIONS(1607), + [anon_sym_bit_DASHand] = ACTIONS(1607), + [anon_sym_bit_DASHxor] = ACTIONS(1607), + [anon_sym_bit_DASHor] = ACTIONS(1607), + [anon_sym_and] = ACTIONS(1607), + [anon_sym_xor] = ACTIONS(1607), + [anon_sym_or] = ACTIONS(1607), + [anon_sym_in] = ACTIONS(1607), + [anon_sym_not_DASHin] = ACTIONS(1607), + [anon_sym_starts_DASHwith] = ACTIONS(1607), + [anon_sym_ends_DASHwith] = ACTIONS(1607), + [anon_sym_EQ_EQ] = ACTIONS(1607), + [anon_sym_BANG_EQ] = ACTIONS(1607), + [anon_sym_LT] = ACTIONS(1605), + [anon_sym_LT_EQ] = ACTIONS(1607), + [anon_sym_GT] = ACTIONS(1605), + [anon_sym_GT_EQ] = ACTIONS(1607), + [aux_sym_cmd_identifier_token41] = ACTIONS(1605), + [sym__newline] = ACTIONS(1605), + [anon_sym_PIPE] = ACTIONS(1605), + [anon_sym_err_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_GT_PIPE] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1605), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_in2] = ACTIONS(1605), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1605), + [anon_sym_xor2] = ACTIONS(1605), + [anon_sym_or2] = ACTIONS(1605), + [anon_sym_not_DASHin2] = ACTIONS(1605), + [anon_sym_starts_DASHwith2] = ACTIONS(1605), + [anon_sym_ends_DASHwith2] = ACTIONS(1605), + [anon_sym_EQ_EQ2] = ACTIONS(1605), + [anon_sym_BANG_EQ2] = ACTIONS(1605), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1605), + [anon_sym_GT_EQ2] = ACTIONS(1605), + [anon_sym_EQ_TILDE2] = ACTIONS(1605), + [anon_sym_BANG_TILDE2] = ACTIONS(1605), + [anon_sym_STAR_STAR2] = ACTIONS(1605), + [anon_sym_PLUS_PLUS2] = ACTIONS(1605), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1605), + [anon_sym_SLASH_SLASH2] = ACTIONS(1605), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1605), + [anon_sym_bit_DASHshr2] = ACTIONS(1605), + [anon_sym_bit_DASHand2] = ACTIONS(1605), + [anon_sym_bit_DASHxor2] = ACTIONS(1605), + [anon_sym_bit_DASHor2] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_POUND] = ACTIONS(3), }, - [1226] = { - [sym_comment] = STATE(1226), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3961), - [sym_duration_unit] = ACTIONS(3963), + [1217] = { + [sym__expr_parenthesized_immediate] = STATE(1482), + [sym__immediate_decimal] = STATE(1380), + [sym_val_variable] = STATE(1482), + [sym_comment] = STATE(1217), + [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_LBRACK] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3954), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(3956), + [aux_sym__immediate_decimal_token3] = ACTIONS(3958), + [aux_sym__immediate_decimal_token4] = ACTIONS(3960), + [aux_sym__immediate_decimal_token5] = ACTIONS(3962), + [anon_sym_null] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_0b] = ACTIONS(1529), + [anon_sym_0o] = ACTIONS(1529), + [anon_sym_0x] = ACTIONS(1529), + [sym_val_date] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1543), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1529), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1543), + }, + [1218] = { + [sym_comment] = STATE(1218), + [anon_sym_STAR_STAR] = ACTIONS(1687), + [anon_sym_PLUS_PLUS] = ACTIONS(1687), + [anon_sym_STAR] = ACTIONS(1685), + [anon_sym_SLASH] = ACTIONS(1685), + [anon_sym_mod] = ACTIONS(1687), + [anon_sym_SLASH_SLASH] = ACTIONS(1687), + [anon_sym_PLUS] = ACTIONS(1685), + [anon_sym_DASH] = ACTIONS(1687), + [anon_sym_bit_DASHshl] = ACTIONS(1687), + [anon_sym_bit_DASHshr] = ACTIONS(1687), + [anon_sym_EQ_TILDE] = ACTIONS(1687), + [anon_sym_BANG_TILDE] = ACTIONS(1687), + [anon_sym_bit_DASHand] = ACTIONS(1687), + [anon_sym_bit_DASHxor] = ACTIONS(1687), + [anon_sym_bit_DASHor] = ACTIONS(1687), + [anon_sym_and] = ACTIONS(1687), + [anon_sym_xor] = ACTIONS(1687), + [anon_sym_or] = ACTIONS(1687), + [anon_sym_in] = ACTIONS(1687), + [anon_sym_not_DASHin] = ACTIONS(1687), + [anon_sym_starts_DASHwith] = ACTIONS(1687), + [anon_sym_ends_DASHwith] = ACTIONS(1687), + [anon_sym_EQ_EQ] = ACTIONS(1687), + [anon_sym_BANG_EQ] = ACTIONS(1687), + [anon_sym_LT] = ACTIONS(1685), + [anon_sym_LT_EQ] = ACTIONS(1687), + [anon_sym_GT] = ACTIONS(1685), + [anon_sym_GT_EQ] = ACTIONS(1687), + [aux_sym_cmd_identifier_token41] = ACTIONS(1685), + [sym__newline] = ACTIONS(1685), + [anon_sym_PIPE] = ACTIONS(1685), + [anon_sym_err_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_GT_PIPE] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1685), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_in2] = ACTIONS(1685), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1685), + [anon_sym_xor2] = ACTIONS(1685), + [anon_sym_or2] = ACTIONS(1685), + [anon_sym_not_DASHin2] = ACTIONS(1685), + [anon_sym_starts_DASHwith2] = ACTIONS(1685), + [anon_sym_ends_DASHwith2] = ACTIONS(1685), + [anon_sym_EQ_EQ2] = ACTIONS(1685), + [anon_sym_BANG_EQ2] = ACTIONS(1685), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1685), + [anon_sym_GT_EQ2] = ACTIONS(1685), + [anon_sym_EQ_TILDE2] = ACTIONS(1685), + [anon_sym_BANG_TILDE2] = ACTIONS(1685), + [anon_sym_STAR_STAR2] = ACTIONS(1685), + [anon_sym_PLUS_PLUS2] = ACTIONS(1685), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1685), + [anon_sym_SLASH_SLASH2] = ACTIONS(1685), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1685), + [anon_sym_bit_DASHshr2] = ACTIONS(1685), + [anon_sym_bit_DASHand2] = ACTIONS(1685), + [anon_sym_bit_DASHxor2] = ACTIONS(1685), + [anon_sym_bit_DASHor2] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), [anon_sym_POUND] = ACTIONS(3), }, - [1227] = { - [sym_comment] = STATE(1227), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(3677), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), + [1219] = { + [sym_comment] = STATE(1219), + [anon_sym_STAR_STAR] = ACTIONS(1599), + [anon_sym_PLUS_PLUS] = ACTIONS(1599), + [anon_sym_STAR] = ACTIONS(1597), + [anon_sym_SLASH] = ACTIONS(1597), + [anon_sym_mod] = ACTIONS(1599), + [anon_sym_SLASH_SLASH] = ACTIONS(1599), + [anon_sym_PLUS] = ACTIONS(1597), + [anon_sym_DASH] = ACTIONS(1599), + [anon_sym_bit_DASHshl] = ACTIONS(1599), + [anon_sym_bit_DASHshr] = ACTIONS(1599), + [anon_sym_EQ_TILDE] = ACTIONS(1599), + [anon_sym_BANG_TILDE] = ACTIONS(1599), + [anon_sym_bit_DASHand] = ACTIONS(1599), + [anon_sym_bit_DASHxor] = ACTIONS(1599), + [anon_sym_bit_DASHor] = ACTIONS(1599), + [anon_sym_and] = ACTIONS(1599), + [anon_sym_xor] = ACTIONS(1599), + [anon_sym_or] = ACTIONS(1599), + [anon_sym_in] = ACTIONS(1599), + [anon_sym_not_DASHin] = ACTIONS(1599), + [anon_sym_starts_DASHwith] = ACTIONS(1599), + [anon_sym_ends_DASHwith] = ACTIONS(1599), + [anon_sym_EQ_EQ] = ACTIONS(1599), + [anon_sym_BANG_EQ] = ACTIONS(1599), + [anon_sym_LT] = ACTIONS(1597), + [anon_sym_LT_EQ] = ACTIONS(1599), + [anon_sym_GT] = ACTIONS(1597), + [anon_sym_GT_EQ] = ACTIONS(1599), + [aux_sym_cmd_identifier_token41] = ACTIONS(1597), + [sym__newline] = ACTIONS(1597), + [anon_sym_PIPE] = ACTIONS(1597), + [anon_sym_err_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_GT_PIPE] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_in2] = ACTIONS(1597), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1597), + [anon_sym_xor2] = ACTIONS(1597), + [anon_sym_or2] = ACTIONS(1597), + [anon_sym_not_DASHin2] = ACTIONS(1597), + [anon_sym_starts_DASHwith2] = ACTIONS(1597), + [anon_sym_ends_DASHwith2] = ACTIONS(1597), + [anon_sym_EQ_EQ2] = ACTIONS(1597), + [anon_sym_BANG_EQ2] = ACTIONS(1597), + [anon_sym_LT2] = ACTIONS(1597), + [anon_sym_LT_EQ2] = ACTIONS(1597), + [anon_sym_GT_EQ2] = ACTIONS(1597), + [anon_sym_EQ_TILDE2] = ACTIONS(1597), + [anon_sym_BANG_TILDE2] = ACTIONS(1597), + [anon_sym_STAR_STAR2] = ACTIONS(1597), + [anon_sym_PLUS_PLUS2] = ACTIONS(1597), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1597), + [anon_sym_SLASH_SLASH2] = ACTIONS(1597), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1597), + [anon_sym_bit_DASHshr2] = ACTIONS(1597), + [anon_sym_bit_DASHand2] = ACTIONS(1597), + [anon_sym_bit_DASHxor2] = ACTIONS(1597), + [anon_sym_bit_DASHor2] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), [anon_sym_POUND] = ACTIONS(3), }, - [1228] = { - [sym_match_arm] = STATE(6647), - [sym_default_arm] = STATE(6647), - [sym_match_pattern] = STATE(7571), - [sym__match_pattern] = STATE(5882), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6433), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5235), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1228), - [aux_sym_ctrl_match_repeat1] = STATE(1225), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym__] = ACTIONS(3553), - [anon_sym_DOT_DOT] = ACTIONS(3555), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3557), - [anon_sym_DOT_DOT_LT] = ACTIONS(3557), - [anon_sym_null] = ACTIONS(3559), - [anon_sym_true] = ACTIONS(3561), - [anon_sym_false] = ACTIONS(3561), - [aux_sym__val_number_decimal_token1] = ACTIONS(3563), - [aux_sym__val_number_decimal_token2] = ACTIONS(3565), - [aux_sym__val_number_decimal_token3] = ACTIONS(3567), - [aux_sym__val_number_decimal_token4] = ACTIONS(3569), + [1220] = { + [sym_expr_parenthesized] = STATE(6551), + [sym_val_range] = STATE(7634), + [sym__val_range] = STATE(7646), + [sym__value] = STATE(7634), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(6561), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(7737), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1220), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(3928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3930), + [anon_sym_DOT_DOT_LT] = ACTIONS(3930), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3571), - [aux_sym__val_number_token5] = ACTIONS(3571), - [aux_sym__val_number_token6] = ACTIONS(3571), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3573), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1229] = { - [sym_expr_parenthesized] = STATE(6408), - [sym_val_range] = STATE(7607), - [sym__val_range] = STATE(7439), - [sym__value] = STATE(7607), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(6084), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5557), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(7613), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1229), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), - [anon_sym_DOT_DOT_LT] = ACTIONS(3867), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), + [1221] = { + [sym_comment] = STATE(1221), + [anon_sym_STAR_STAR] = ACTIONS(1729), + [anon_sym_PLUS_PLUS] = ACTIONS(1729), + [anon_sym_STAR] = ACTIONS(1727), + [anon_sym_SLASH] = ACTIONS(1727), + [anon_sym_mod] = ACTIONS(1729), + [anon_sym_SLASH_SLASH] = ACTIONS(1729), + [anon_sym_PLUS] = ACTIONS(1727), + [anon_sym_DASH] = ACTIONS(1729), + [anon_sym_bit_DASHshl] = ACTIONS(1729), + [anon_sym_bit_DASHshr] = ACTIONS(1729), + [anon_sym_EQ_TILDE] = ACTIONS(1729), + [anon_sym_BANG_TILDE] = ACTIONS(1729), + [anon_sym_bit_DASHand] = ACTIONS(1729), + [anon_sym_bit_DASHxor] = ACTIONS(1729), + [anon_sym_bit_DASHor] = ACTIONS(1729), + [anon_sym_and] = ACTIONS(1729), + [anon_sym_xor] = ACTIONS(1729), + [anon_sym_or] = ACTIONS(1729), + [anon_sym_in] = ACTIONS(1729), + [anon_sym_not_DASHin] = ACTIONS(1729), + [anon_sym_starts_DASHwith] = ACTIONS(1729), + [anon_sym_ends_DASHwith] = ACTIONS(1729), + [anon_sym_EQ_EQ] = ACTIONS(1729), + [anon_sym_BANG_EQ] = ACTIONS(1729), + [anon_sym_LT] = ACTIONS(1727), + [anon_sym_LT_EQ] = ACTIONS(1729), + [anon_sym_GT] = ACTIONS(1727), + [anon_sym_GT_EQ] = ACTIONS(1729), + [aux_sym_cmd_identifier_token41] = ACTIONS(1727), + [sym__newline] = ACTIONS(1727), + [anon_sym_PIPE] = ACTIONS(1727), + [anon_sym_err_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_GT_PIPE] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_in2] = ACTIONS(1727), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1727), + [anon_sym_xor2] = ACTIONS(1727), + [anon_sym_or2] = ACTIONS(1727), + [anon_sym_not_DASHin2] = ACTIONS(1727), + [anon_sym_starts_DASHwith2] = ACTIONS(1727), + [anon_sym_ends_DASHwith2] = ACTIONS(1727), + [anon_sym_EQ_EQ2] = ACTIONS(1727), + [anon_sym_BANG_EQ2] = ACTIONS(1727), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1727), + [anon_sym_GT_EQ2] = ACTIONS(1727), + [anon_sym_EQ_TILDE2] = ACTIONS(1727), + [anon_sym_BANG_TILDE2] = ACTIONS(1727), + [anon_sym_STAR_STAR2] = ACTIONS(1727), + [anon_sym_PLUS_PLUS2] = ACTIONS(1727), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1727), + [anon_sym_SLASH_SLASH2] = ACTIONS(1727), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1727), + [anon_sym_bit_DASHshr2] = ACTIONS(1727), + [anon_sym_bit_DASHand2] = ACTIONS(1727), + [anon_sym_bit_DASHxor2] = ACTIONS(1727), + [anon_sym_bit_DASHor2] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_POUND] = ACTIONS(3), + }, + [1222] = { + [sym_expr_parenthesized] = STATE(6481), + [sym_val_range] = STATE(7572), + [sym__val_range] = STATE(7646), + [sym__value] = STATE(7572), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(6561), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5555), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(7573), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1222), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(3922), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(3928), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3930), + [anon_sym_DOT_DOT_LT] = ACTIONS(3930), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1230] = { - [sym_comment] = STATE(1230), - [anon_sym_STAR_STAR] = ACTIONS(1597), - [anon_sym_PLUS_PLUS] = ACTIONS(1597), - [anon_sym_STAR] = ACTIONS(1595), - [anon_sym_SLASH] = ACTIONS(1595), - [anon_sym_mod] = ACTIONS(1597), - [anon_sym_SLASH_SLASH] = ACTIONS(1597), - [anon_sym_PLUS] = ACTIONS(1595), - [anon_sym_DASH] = ACTIONS(1597), - [anon_sym_bit_DASHshl] = ACTIONS(1597), - [anon_sym_bit_DASHshr] = ACTIONS(1597), - [anon_sym_EQ_TILDE] = ACTIONS(1597), - [anon_sym_BANG_TILDE] = ACTIONS(1597), - [anon_sym_bit_DASHand] = ACTIONS(1597), - [anon_sym_bit_DASHxor] = ACTIONS(1597), - [anon_sym_bit_DASHor] = ACTIONS(1597), - [anon_sym_and] = ACTIONS(1597), - [anon_sym_xor] = ACTIONS(1597), - [anon_sym_or] = ACTIONS(1597), - [anon_sym_in] = ACTIONS(1597), - [anon_sym_not_DASHin] = ACTIONS(1597), - [anon_sym_starts_DASHwith] = ACTIONS(1597), - [anon_sym_ends_DASHwith] = ACTIONS(1597), - [anon_sym_EQ_EQ] = ACTIONS(1597), - [anon_sym_BANG_EQ] = ACTIONS(1597), - [anon_sym_LT] = ACTIONS(1595), - [anon_sym_LT_EQ] = ACTIONS(1597), - [anon_sym_GT] = ACTIONS(1595), - [anon_sym_GT_EQ] = ACTIONS(1597), - [aux_sym_cmd_identifier_token41] = ACTIONS(1595), - [sym__newline] = ACTIONS(1595), - [anon_sym_PIPE] = ACTIONS(1595), - [anon_sym_err_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_GT_PIPE] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1595), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_in2] = ACTIONS(1595), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1595), - [anon_sym_xor2] = ACTIONS(1595), - [anon_sym_or2] = ACTIONS(1595), - [anon_sym_not_DASHin2] = ACTIONS(1595), - [anon_sym_starts_DASHwith2] = ACTIONS(1595), - [anon_sym_ends_DASHwith2] = ACTIONS(1595), - [anon_sym_EQ_EQ2] = ACTIONS(1595), - [anon_sym_BANG_EQ2] = ACTIONS(1595), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1595), - [anon_sym_GT_EQ2] = ACTIONS(1595), - [anon_sym_EQ_TILDE2] = ACTIONS(1595), - [anon_sym_BANG_TILDE2] = ACTIONS(1595), - [anon_sym_STAR_STAR2] = ACTIONS(1595), - [anon_sym_PLUS_PLUS2] = ACTIONS(1595), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1595), - [anon_sym_SLASH_SLASH2] = ACTIONS(1595), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1595), - [anon_sym_bit_DASHshr2] = ACTIONS(1595), - [anon_sym_bit_DASHand2] = ACTIONS(1595), - [anon_sym_bit_DASHxor2] = ACTIONS(1595), - [anon_sym_bit_DASHor2] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_POUND] = ACTIONS(3), - }, - [1231] = { - [sym_comment] = STATE(1231), - [anon_sym_STAR_STAR] = ACTIONS(1669), - [anon_sym_PLUS_PLUS] = ACTIONS(1669), - [anon_sym_STAR] = ACTIONS(1667), - [anon_sym_SLASH] = ACTIONS(1667), - [anon_sym_mod] = ACTIONS(1669), - [anon_sym_SLASH_SLASH] = ACTIONS(1669), - [anon_sym_PLUS] = ACTIONS(1667), - [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_bit_DASHshl] = ACTIONS(1669), - [anon_sym_bit_DASHshr] = ACTIONS(1669), - [anon_sym_EQ_TILDE] = ACTIONS(1669), - [anon_sym_BANG_TILDE] = ACTIONS(1669), - [anon_sym_bit_DASHand] = ACTIONS(1669), - [anon_sym_bit_DASHxor] = ACTIONS(1669), - [anon_sym_bit_DASHor] = ACTIONS(1669), - [anon_sym_and] = ACTIONS(1669), - [anon_sym_xor] = ACTIONS(1669), - [anon_sym_or] = ACTIONS(1669), - [anon_sym_in] = ACTIONS(1669), - [anon_sym_not_DASHin] = ACTIONS(1669), - [anon_sym_starts_DASHwith] = ACTIONS(1669), - [anon_sym_ends_DASHwith] = ACTIONS(1669), - [anon_sym_EQ_EQ] = ACTIONS(1669), - [anon_sym_BANG_EQ] = ACTIONS(1669), - [anon_sym_LT] = ACTIONS(1667), - [anon_sym_LT_EQ] = ACTIONS(1669), - [anon_sym_GT] = ACTIONS(1667), - [anon_sym_GT_EQ] = ACTIONS(1669), - [aux_sym_cmd_identifier_token41] = ACTIONS(1667), - [sym__newline] = 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_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_in2] = ACTIONS(1667), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1667), - [anon_sym_xor2] = ACTIONS(1667), - [anon_sym_or2] = ACTIONS(1667), - [anon_sym_not_DASHin2] = ACTIONS(1667), - [anon_sym_starts_DASHwith2] = ACTIONS(1667), - [anon_sym_ends_DASHwith2] = ACTIONS(1667), - [anon_sym_EQ_EQ2] = ACTIONS(1667), - [anon_sym_BANG_EQ2] = ACTIONS(1667), - [anon_sym_LT2] = ACTIONS(1667), - [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_STAR_STAR2] = ACTIONS(1667), - [anon_sym_PLUS_PLUS2] = ACTIONS(1667), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1667), - [anon_sym_SLASH_SLASH2] = ACTIONS(1667), - [anon_sym_PLUS2] = ACTIONS(1667), - [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), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_POUND] = ACTIONS(3), - }, - [1232] = { - [sym_comment] = STATE(1232), - [anon_sym_STAR_STAR] = ACTIONS(1735), - [anon_sym_PLUS_PLUS] = ACTIONS(1735), - [anon_sym_STAR] = ACTIONS(1733), - [anon_sym_SLASH] = ACTIONS(1733), - [anon_sym_mod] = ACTIONS(1735), - [anon_sym_SLASH_SLASH] = ACTIONS(1735), - [anon_sym_PLUS] = ACTIONS(1733), - [anon_sym_DASH] = ACTIONS(1735), - [anon_sym_bit_DASHshl] = ACTIONS(1735), - [anon_sym_bit_DASHshr] = ACTIONS(1735), - [anon_sym_EQ_TILDE] = ACTIONS(1735), - [anon_sym_BANG_TILDE] = ACTIONS(1735), - [anon_sym_bit_DASHand] = ACTIONS(1735), - [anon_sym_bit_DASHxor] = ACTIONS(1735), - [anon_sym_bit_DASHor] = ACTIONS(1735), - [anon_sym_and] = ACTIONS(1735), - [anon_sym_xor] = ACTIONS(1735), - [anon_sym_or] = ACTIONS(1735), - [anon_sym_in] = ACTIONS(1735), - [anon_sym_not_DASHin] = ACTIONS(1735), - [anon_sym_starts_DASHwith] = ACTIONS(1735), - [anon_sym_ends_DASHwith] = ACTIONS(1735), - [anon_sym_EQ_EQ] = ACTIONS(1735), - [anon_sym_BANG_EQ] = ACTIONS(1735), - [anon_sym_LT] = ACTIONS(1733), - [anon_sym_LT_EQ] = ACTIONS(1735), - [anon_sym_GT] = ACTIONS(1733), - [anon_sym_GT_EQ] = ACTIONS(1735), - [aux_sym_cmd_identifier_token41] = ACTIONS(1733), - [sym__newline] = ACTIONS(1733), - [anon_sym_PIPE] = ACTIONS(1733), - [anon_sym_err_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_GT_PIPE] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_in2] = ACTIONS(1733), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1733), - [anon_sym_xor2] = ACTIONS(1733), - [anon_sym_or2] = ACTIONS(1733), - [anon_sym_not_DASHin2] = ACTIONS(1733), - [anon_sym_starts_DASHwith2] = ACTIONS(1733), - [anon_sym_ends_DASHwith2] = ACTIONS(1733), - [anon_sym_EQ_EQ2] = ACTIONS(1733), - [anon_sym_BANG_EQ2] = ACTIONS(1733), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1733), - [anon_sym_GT_EQ2] = ACTIONS(1733), - [anon_sym_EQ_TILDE2] = ACTIONS(1733), - [anon_sym_BANG_TILDE2] = ACTIONS(1733), - [anon_sym_STAR_STAR2] = ACTIONS(1733), - [anon_sym_PLUS_PLUS2] = ACTIONS(1733), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1733), - [anon_sym_SLASH_SLASH2] = ACTIONS(1733), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1733), - [anon_sym_bit_DASHshr2] = ACTIONS(1733), - [anon_sym_bit_DASHand2] = ACTIONS(1733), - [anon_sym_bit_DASHxor2] = ACTIONS(1733), - [anon_sym_bit_DASHor2] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1233] = { - [sym_comment] = STATE(1233), - [anon_sym_STAR_STAR] = ACTIONS(3065), - [anon_sym_PLUS_PLUS] = ACTIONS(3065), - [anon_sym_STAR] = ACTIONS(3067), - [anon_sym_SLASH] = ACTIONS(3067), - [anon_sym_mod] = ACTIONS(3065), - [anon_sym_SLASH_SLASH] = ACTIONS(3065), - [anon_sym_PLUS] = ACTIONS(3067), - [anon_sym_DASH] = ACTIONS(3065), - [anon_sym_bit_DASHshl] = ACTIONS(3065), - [anon_sym_bit_DASHshr] = ACTIONS(3065), - [anon_sym_EQ_TILDE] = ACTIONS(3065), - [anon_sym_BANG_TILDE] = ACTIONS(3065), - [anon_sym_bit_DASHand] = ACTIONS(3065), - [anon_sym_bit_DASHxor] = ACTIONS(3065), - [anon_sym_bit_DASHor] = ACTIONS(3065), - [anon_sym_and] = ACTIONS(3065), - [anon_sym_xor] = ACTIONS(3065), - [anon_sym_or] = ACTIONS(3065), - [anon_sym_in] = ACTIONS(3065), - [anon_sym_not_DASHin] = ACTIONS(3065), - [anon_sym_starts_DASHwith] = ACTIONS(3065), - [anon_sym_ends_DASHwith] = ACTIONS(3065), - [anon_sym_EQ_EQ] = ACTIONS(3065), - [anon_sym_BANG_EQ] = ACTIONS(3065), - [anon_sym_LT] = ACTIONS(3067), - [anon_sym_LT_EQ] = ACTIONS(3065), - [anon_sym_GT] = ACTIONS(3067), - [anon_sym_GT_EQ] = ACTIONS(3065), - [aux_sym_cmd_identifier_token41] = ACTIONS(3069), - [sym__newline] = 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(1681), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_in2] = ACTIONS(1681), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1681), - [anon_sym_xor2] = ACTIONS(1681), - [anon_sym_or2] = ACTIONS(1681), - [anon_sym_not_DASHin2] = ACTIONS(1681), - [anon_sym_starts_DASHwith2] = ACTIONS(1681), - [anon_sym_ends_DASHwith2] = ACTIONS(1681), - [anon_sym_EQ_EQ2] = ACTIONS(1681), - [anon_sym_BANG_EQ2] = ACTIONS(1681), - [anon_sym_LT2] = ACTIONS(1681), - [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_STAR_STAR2] = ACTIONS(1681), - [anon_sym_PLUS_PLUS2] = ACTIONS(1681), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1681), - [anon_sym_SLASH_SLASH2] = ACTIONS(1681), - [anon_sym_PLUS2] = ACTIONS(1681), - [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(3031), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(3033), - [anon_sym_DOT_DOT_LT2] = ACTIONS(3033), - [sym_filesize_unit] = ACTIONS(3965), - [sym_duration_unit] = ACTIONS(3967), + [1223] = { + [sym_comment] = STATE(1223), + [anon_sym_STAR_STAR] = ACTIONS(3056), + [anon_sym_PLUS_PLUS] = ACTIONS(3056), + [anon_sym_STAR] = ACTIONS(3058), + [anon_sym_SLASH] = ACTIONS(3058), + [anon_sym_mod] = ACTIONS(3056), + [anon_sym_SLASH_SLASH] = ACTIONS(3056), + [anon_sym_PLUS] = ACTIONS(3058), + [anon_sym_DASH] = ACTIONS(3056), + [anon_sym_bit_DASHshl] = ACTIONS(3056), + [anon_sym_bit_DASHshr] = ACTIONS(3056), + [anon_sym_EQ_TILDE] = ACTIONS(3056), + [anon_sym_BANG_TILDE] = ACTIONS(3056), + [anon_sym_bit_DASHand] = ACTIONS(3056), + [anon_sym_bit_DASHxor] = ACTIONS(3056), + [anon_sym_bit_DASHor] = ACTIONS(3056), + [anon_sym_and] = ACTIONS(3056), + [anon_sym_xor] = ACTIONS(3056), + [anon_sym_or] = ACTIONS(3056), + [anon_sym_in] = ACTIONS(3056), + [anon_sym_not_DASHin] = ACTIONS(3056), + [anon_sym_starts_DASHwith] = ACTIONS(3056), + [anon_sym_ends_DASHwith] = ACTIONS(3056), + [anon_sym_EQ_EQ] = ACTIONS(3056), + [anon_sym_BANG_EQ] = ACTIONS(3056), + [anon_sym_LT] = ACTIONS(3058), + [anon_sym_LT_EQ] = ACTIONS(3056), + [anon_sym_GT] = ACTIONS(3058), + [anon_sym_GT_EQ] = ACTIONS(3056), + [aux_sym_cmd_identifier_token41] = ACTIONS(3060), + [sym__newline] = ACTIONS(1663), + [anon_sym_PIPE] = ACTIONS(1663), + [anon_sym_err_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_GT_PIPE] = ACTIONS(1663), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1663), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1663), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1663), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1663), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_in2] = ACTIONS(1663), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1663), + [anon_sym_xor2] = ACTIONS(1663), + [anon_sym_or2] = ACTIONS(1663), + [anon_sym_not_DASHin2] = ACTIONS(1663), + [anon_sym_starts_DASHwith2] = ACTIONS(1663), + [anon_sym_ends_DASHwith2] = ACTIONS(1663), + [anon_sym_EQ_EQ2] = ACTIONS(1663), + [anon_sym_BANG_EQ2] = ACTIONS(1663), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1663), + [anon_sym_PLUS_PLUS2] = ACTIONS(1663), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1663), + [anon_sym_SLASH_SLASH2] = ACTIONS(1663), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1663), + [anon_sym_bit_DASHshr2] = ACTIONS(1663), + [anon_sym_bit_DASHand2] = ACTIONS(1663), + [anon_sym_bit_DASHxor2] = ACTIONS(1663), + [anon_sym_bit_DASHor2] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(3010), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(3012), + [anon_sym_DOT_DOT_LT2] = ACTIONS(3012), + [sym_filesize_unit] = ACTIONS(3964), + [sym_duration_unit] = ACTIONS(3966), [anon_sym_POUND] = ACTIONS(3), }, - [1234] = { - [sym__expr_parenthesized_immediate] = STATE(1523), - [sym__immediate_decimal] = STATE(1401), - [sym_val_variable] = STATE(1523), - [sym_comment] = STATE(1234), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(3971), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(3973), - [aux_sym__immediate_decimal_token3] = ACTIONS(3975), - [aux_sym__immediate_decimal_token4] = ACTIONS(3977), - [aux_sym__immediate_decimal_token5] = ACTIONS(3979), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [aux_sym__val_number_token4] = ACTIONS(1553), - [aux_sym__val_number_token5] = ACTIONS(1553), - [aux_sym__val_number_token6] = ACTIONS(1553), - [anon_sym_0b] = ACTIONS(1539), - [anon_sym_0o] = ACTIONS(1539), - [anon_sym_0x] = ACTIONS(1539), - [sym_val_date] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token1] = ACTIONS(1539), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1553), - }, - [1235] = { - [sym_comment] = STATE(1235), - [anon_sym_STAR_STAR] = ACTIONS(1589), - [anon_sym_PLUS_PLUS] = ACTIONS(1589), - [anon_sym_STAR] = ACTIONS(1587), - [anon_sym_SLASH] = ACTIONS(1587), - [anon_sym_mod] = ACTIONS(1589), - [anon_sym_SLASH_SLASH] = ACTIONS(1589), - [anon_sym_PLUS] = ACTIONS(1587), - [anon_sym_DASH] = ACTIONS(1589), - [anon_sym_bit_DASHshl] = ACTIONS(1589), - [anon_sym_bit_DASHshr] = ACTIONS(1589), - [anon_sym_EQ_TILDE] = ACTIONS(1589), - [anon_sym_BANG_TILDE] = ACTIONS(1589), - [anon_sym_bit_DASHand] = ACTIONS(1589), - [anon_sym_bit_DASHxor] = ACTIONS(1589), - [anon_sym_bit_DASHor] = ACTIONS(1589), - [anon_sym_and] = ACTIONS(1589), - [anon_sym_xor] = ACTIONS(1589), - [anon_sym_or] = ACTIONS(1589), - [anon_sym_in] = ACTIONS(1589), - [anon_sym_not_DASHin] = ACTIONS(1589), - [anon_sym_starts_DASHwith] = ACTIONS(1589), - [anon_sym_ends_DASHwith] = ACTIONS(1589), - [anon_sym_EQ_EQ] = ACTIONS(1589), - [anon_sym_BANG_EQ] = ACTIONS(1589), - [anon_sym_LT] = ACTIONS(1587), - [anon_sym_LT_EQ] = ACTIONS(1589), - [anon_sym_GT] = ACTIONS(1587), - [anon_sym_GT_EQ] = ACTIONS(1589), - [aux_sym_cmd_identifier_token41] = ACTIONS(1587), - [sym__newline] = ACTIONS(1587), - [anon_sym_PIPE] = ACTIONS(1587), - [anon_sym_err_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_GT_PIPE] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1587), - [anon_sym_GT2] = ACTIONS(1587), + [1224] = { + [sym__expr_parenthesized_immediate] = STATE(1768), + [sym__immediate_decimal] = STATE(1596), + [sym_val_variable] = STATE(1768), + [sym_comment] = STATE(1224), + [sym__newline] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_err_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_GT_PIPE] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(1589), + [anon_sym_LPAREN] = ACTIONS(1587), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(1589), [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_in2] = ACTIONS(1587), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1587), - [anon_sym_xor2] = ACTIONS(1587), - [anon_sym_or2] = ACTIONS(1587), - [anon_sym_not_DASHin2] = ACTIONS(1587), - [anon_sym_starts_DASHwith2] = ACTIONS(1587), - [anon_sym_ends_DASHwith2] = ACTIONS(1587), - [anon_sym_EQ_EQ2] = ACTIONS(1587), - [anon_sym_BANG_EQ2] = ACTIONS(1587), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1587), - [anon_sym_GT_EQ2] = ACTIONS(1587), - [anon_sym_EQ_TILDE2] = ACTIONS(1587), - [anon_sym_BANG_TILDE2] = ACTIONS(1587), - [anon_sym_STAR_STAR2] = ACTIONS(1587), - [anon_sym_PLUS_PLUS2] = ACTIONS(1587), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1587), - [anon_sym_SLASH_SLASH2] = ACTIONS(1587), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1587), - [anon_sym_bit_DASHshr2] = ACTIONS(1587), - [anon_sym_bit_DASHand2] = ACTIONS(1587), - [anon_sym_bit_DASHxor2] = ACTIONS(1587), - [anon_sym_bit_DASHor2] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_POUND] = ACTIONS(3), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_DOT_DOT] = ACTIONS(1587), + [anon_sym_LPAREN2] = ACTIONS(3970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(3972), + [aux_sym__immediate_decimal_token3] = ACTIONS(3974), + [aux_sym__immediate_decimal_token4] = ACTIONS(3976), + [aux_sym__immediate_decimal_token5] = ACTIONS(3978), + [anon_sym_null] = ACTIONS(1589), + [anon_sym_true] = ACTIONS(1589), + [anon_sym_false] = ACTIONS(1589), + [aux_sym__val_number_decimal_token1] = ACTIONS(1587), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), + [aux_sym__val_number_token1] = ACTIONS(1589), + [aux_sym__val_number_token2] = ACTIONS(1589), + [aux_sym__val_number_token3] = ACTIONS(1589), + [aux_sym__val_number_token4] = ACTIONS(1589), + [aux_sym__val_number_token5] = ACTIONS(1589), + [aux_sym__val_number_token6] = ACTIONS(1589), + [anon_sym_0b] = ACTIONS(1587), + [anon_sym_0o] = ACTIONS(1587), + [anon_sym_0x] = ACTIONS(1587), + [sym_val_date] = ACTIONS(1589), + [anon_sym_DQUOTE] = ACTIONS(1589), + [sym__str_single_quotes] = ACTIONS(1589), + [sym__str_back_ticks] = ACTIONS(1589), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1589), + [anon_sym_out_GT_GT] = ACTIONS(1589), + [anon_sym_e_GT_GT] = ACTIONS(1589), + [anon_sym_o_GT_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), + [aux_sym_unquoted_token1] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1589), }, - [1236] = { - [sym_expr_parenthesized] = STATE(6516), - [sym_val_range] = STATE(7598), - [sym__val_range] = STATE(7439), - [sym__value] = STATE(7598), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(6084), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5557), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(7731), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1236), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(3859), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(3865), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3867), - [anon_sym_DOT_DOT_LT] = ACTIONS(3867), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [1225] = { + [sym_comment] = STATE(1225), + [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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(3980), + [aux_sym__immediate_decimal_token2] = ACTIONS(3982), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), }, - [1237] = { - [sym__expr_parenthesized_immediate] = STATE(1582), - [sym__immediate_decimal] = STATE(1461), - [sym_val_variable] = STATE(1582), - [sym_comment] = STATE(1237), - [ts_builtin_sym_end] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(3981), - [anon_sym_DOT] = ACTIONS(3983), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(3985), - [aux_sym__immediate_decimal_token3] = ACTIONS(3987), - [aux_sym__immediate_decimal_token4] = ACTIONS(3989), - [aux_sym__immediate_decimal_token5] = ACTIONS(3991), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [aux_sym__val_number_token4] = ACTIONS(1553), - [aux_sym__val_number_token5] = ACTIONS(1553), - [aux_sym__val_number_token6] = ACTIONS(1553), - [anon_sym_0b] = ACTIONS(1539), - [anon_sym_0o] = ACTIONS(1539), - [anon_sym_0x] = ACTIONS(1539), - [sym_val_date] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token1] = ACTIONS(1539), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1553), + [1226] = { + [sym__expr_parenthesized_immediate] = STATE(1753), + [sym__immediate_decimal] = STATE(1584), + [sym_val_variable] = STATE(1753), + [sym_comment] = STATE(1226), + [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_LBRACK] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_RPAREN] = ACTIONS(1543), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(3970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(3972), + [aux_sym__immediate_decimal_token3] = ACTIONS(3974), + [aux_sym__immediate_decimal_token4] = ACTIONS(3976), + [aux_sym__immediate_decimal_token5] = ACTIONS(3978), + [anon_sym_null] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_0b] = ACTIONS(1529), + [anon_sym_0o] = ACTIONS(1529), + [anon_sym_0x] = ACTIONS(1529), + [sym_val_date] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1543), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1529), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1543), }, - [1238] = { - [sym_cell_path] = STATE(1400), - [sym_path] = STATE(1363), - [sym_comment] = STATE(1238), - [aux_sym_cell_path_repeat1] = STATE(1250), + [1227] = { + [sym__expr_parenthesized_immediate] = STATE(1552), + [sym__immediate_decimal] = STATE(1436), + [sym_val_variable] = STATE(1552), + [sym_comment] = STATE(1227), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(3984), + [anon_sym_DOT] = ACTIONS(3986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(3988), + [aux_sym__immediate_decimal_token3] = ACTIONS(3990), + [aux_sym__immediate_decimal_token4] = ACTIONS(3992), + [aux_sym__immediate_decimal_token5] = ACTIONS(3994), + [anon_sym_null] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_0b] = ACTIONS(1529), + [anon_sym_0o] = ACTIONS(1529), + [anon_sym_0x] = ACTIONS(1529), + [sym_val_date] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1543), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1529), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1543), + }, + [1228] = { + [sym_cell_path] = STATE(1395), + [sym_path] = STATE(1334), + [sym_comment] = STATE(1228), + [aux_sym_cell_path_repeat1] = STATE(1248), [anon_sym_EQ] = ACTIONS(935), [anon_sym_PLUS_EQ] = ACTIONS(937), [anon_sym_DASH_EQ] = ACTIONS(937), @@ -201879,7 +201209,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), [anon_sym_DOT_DOT_LT2] = ACTIONS(937), [anon_sym_COLON2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(3993), + [anon_sym_DOT2] = ACTIONS(3996), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -201898,829 +201228,1418 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), [anon_sym_POUND] = ACTIONS(251), }, + [1229] = { + [sym__expr_parenthesized_immediate] = STATE(1480), + [sym__immediate_decimal] = STATE(1481), + [sym_val_variable] = STATE(1480), + [sym_comment] = STATE(1229), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(2602), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(3952), + [anon_sym_DOT] = ACTIONS(3998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4000), + [aux_sym__immediate_decimal_token3] = ACTIONS(4002), + [aux_sym__immediate_decimal_token4] = ACTIONS(4004), + [aux_sym__immediate_decimal_token5] = ACTIONS(4006), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1547), + [anon_sym_0o] = ACTIONS(1547), + [anon_sym_0x] = ACTIONS(1547), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [1230] = { + [sym_comment] = STATE(1230), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(4008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [1231] = { + [sym__val_range] = STATE(7412), + [sym__value] = STATE(1930), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1716), + [sym_val_variable] = STATE(1830), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1401), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym_unquoted] = STATE(1807), + [sym__unquoted_anonymous_prefix] = STATE(7436), + [sym_comment] = STATE(1231), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(4012), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4018), + [anon_sym_DOT_DOT_LT] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_true] = ACTIONS(4022), + [anon_sym_false] = ACTIONS(4022), + [aux_sym__val_number_decimal_token1] = ACTIONS(4024), + [aux_sym__val_number_decimal_token2] = ACTIONS(4026), + [aux_sym__val_number_decimal_token3] = ACTIONS(4028), + [aux_sym__val_number_decimal_token4] = ACTIONS(4030), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), + }, + [1232] = { + [sym_comment] = STATE(1232), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(4038), + [aux_sym__immediate_decimal_token2] = ACTIONS(4040), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), + }, + [1233] = { + [sym_comment] = STATE(1233), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(4042), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4044), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [1234] = { + [sym__val_range] = STATE(7646), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(2134), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(5884), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1234), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(4048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4050), + [anon_sym_DOT_DOT_LT] = ACTIONS(4050), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [1235] = { + [sym__expr_parenthesized_immediate] = STATE(7341), + [sym_comment] = STATE(1235), + [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_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT2] = ACTIONS(4054), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4056), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4056), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(4058), + [sym_duration_unit] = ACTIONS(4060), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(4062), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [1236] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5062), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5884), + [sym__unquoted_anonymous_prefix] = STATE(7458), + [sym_comment] = STATE(1236), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4080), + [aux_sym__val_number_decimal_token2] = ACTIONS(4082), + [aux_sym__val_number_decimal_token3] = ACTIONS(4084), + [aux_sym__val_number_decimal_token4] = ACTIONS(4086), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4088), + [aux_sym__val_number_token5] = ACTIONS(4088), + [aux_sym__val_number_token6] = ACTIONS(4088), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [1237] = { + [sym__val_range] = STATE(7646), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(2134), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(6021), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1237), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(4048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4050), + [anon_sym_DOT_DOT_LT] = ACTIONS(4050), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [1238] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5950), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5062), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5951), + [sym__unquoted_anonymous_prefix] = STATE(7458), + [sym_comment] = STATE(1238), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4080), + [aux_sym__val_number_decimal_token2] = ACTIONS(4082), + [aux_sym__val_number_decimal_token3] = ACTIONS(4084), + [aux_sym__val_number_decimal_token4] = ACTIONS(4086), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4088), + [aux_sym__val_number_token5] = ACTIONS(4088), + [aux_sym__val_number_token6] = ACTIONS(4088), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, [1239] = { - [sym__expr_parenthesized_immediate] = STATE(1746), - [sym__immediate_decimal] = STATE(1606), - [sym_val_variable] = STATE(1746), + [sym__val_range] = STATE(7412), + [sym__value] = STATE(1887), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1716), + [sym_val_variable] = STATE(1830), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1401), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym_unquoted] = STATE(1888), + [sym__unquoted_anonymous_prefix] = STATE(7436), [sym_comment] = STATE(1239), - [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_LBRACK] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(3999), - [aux_sym__immediate_decimal_token3] = ACTIONS(4001), - [aux_sym__immediate_decimal_token4] = ACTIONS(4003), - [aux_sym__immediate_decimal_token5] = ACTIONS(4005), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1627), - [aux_sym__val_number_decimal_token2] = ACTIONS(1627), - [aux_sym__val_number_decimal_token3] = ACTIONS(1627), - [aux_sym__val_number_decimal_token4] = ACTIONS(1627), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [aux_sym__val_number_token4] = ACTIONS(1629), - [aux_sym__val_number_token5] = ACTIONS(1629), - [aux_sym__val_number_token6] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1627), - [anon_sym_0o] = ACTIONS(1627), - [anon_sym_0x] = ACTIONS(1627), - [sym_val_date] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1627), - [anon_sym_out_GT] = ACTIONS(1627), - [anon_sym_e_GT] = ACTIONS(1627), - [anon_sym_o_GT] = ACTIONS(1627), - [anon_sym_err_PLUSout_GT] = ACTIONS(1627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), - [anon_sym_o_PLUSe_GT] = ACTIONS(1627), - [anon_sym_e_PLUSo_GT] = ACTIONS(1627), - [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), - [aux_sym_unquoted_token1] = ACTIONS(1627), - [aux_sym_unquoted_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(4012), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4018), + [anon_sym_DOT_DOT_LT] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_true] = ACTIONS(4022), + [anon_sym_false] = ACTIONS(4022), + [aux_sym__val_number_decimal_token1] = ACTIONS(4024), + [aux_sym__val_number_decimal_token2] = ACTIONS(4026), + [aux_sym__val_number_decimal_token3] = ACTIONS(4028), + [aux_sym__val_number_decimal_token4] = ACTIONS(4030), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), }, [1240] = { - [sym__expr_parenthesized_immediate] = STATE(1521), - [sym__immediate_decimal] = STATE(1522), - [sym_val_variable] = STATE(1521), + [sym__val_range] = STATE(7433), + [sym__value] = STATE(3001), + [sym_val_nothing] = STATE(2951), + [sym_val_bool] = STATE(2921), + [sym_val_variable] = STATE(2951), + [sym_val_number] = STATE(2951), + [sym__val_number_decimal] = STATE(2569), + [sym__val_number] = STATE(2977), + [sym_val_duration] = STATE(2951), + [sym_val_filesize] = STATE(2951), + [sym_val_binary] = STATE(2951), + [sym_val_string] = STATE(2951), + [sym__raw_str] = STATE(2958), + [sym__str_double_quotes] = STATE(2958), + [sym_val_interpolated] = STATE(2951), + [sym__inter_single_quotes] = STATE(2965), + [sym__inter_double_quotes] = STATE(2969), + [sym_val_list] = STATE(2951), + [sym_val_record] = STATE(2951), + [sym_val_table] = STATE(2951), + [sym_val_closure] = STATE(2951), + [sym_unquoted] = STATE(3002), + [sym__unquoted_anonymous_prefix] = STATE(7716), [sym_comment] = STATE(1240), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(2699), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(3969), - [anon_sym_DOT] = ACTIONS(4007), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4009), - [aux_sym__immediate_decimal_token3] = ACTIONS(4011), - [aux_sym__immediate_decimal_token4] = ACTIONS(4013), - [aux_sym__immediate_decimal_token5] = ACTIONS(4015), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), + [anon_sym_DOT_DOT_LT] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4106), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [aux_sym__val_number_decimal_token1] = ACTIONS(4110), + [aux_sym__val_number_decimal_token2] = ACTIONS(4112), + [aux_sym__val_number_decimal_token3] = ACTIONS(4114), + [aux_sym__val_number_decimal_token4] = ACTIONS(4116), + [aux_sym__val_number_token1] = ACTIONS(4118), + [aux_sym__val_number_token2] = ACTIONS(4118), + [aux_sym__val_number_token3] = ACTIONS(4118), + [aux_sym__val_number_token4] = ACTIONS(4120), + [aux_sym__val_number_token5] = ACTIONS(4120), + [aux_sym__val_number_token6] = ACTIONS(4120), + [anon_sym_0b] = ACTIONS(4122), + [anon_sym_0o] = ACTIONS(4124), + [anon_sym_0x] = ACTIONS(4124), + [sym_val_date] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4128), + [sym__str_single_quotes] = ACTIONS(4130), + [sym__str_back_ticks] = ACTIONS(4130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4134), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4136), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4138), }, [1241] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5919), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5062), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5924), + [sym__unquoted_anonymous_prefix] = STATE(7458), [sym_comment] = STATE(1241), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4017), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4019), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4080), + [aux_sym__val_number_decimal_token2] = ACTIONS(4082), + [aux_sym__val_number_decimal_token3] = ACTIONS(4084), + [aux_sym__val_number_decimal_token4] = ACTIONS(4086), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4088), + [aux_sym__val_number_token5] = ACTIONS(4088), + [aux_sym__val_number_token6] = ACTIONS(4088), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1242] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5115), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(6021), + [sym__unquoted_anonymous_prefix] = STATE(7458), [sym_comment] = STATE(1242), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4021), - [aux_sym__immediate_decimal_token2] = ACTIONS(4023), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4142), + [aux_sym__val_number_decimal_token2] = ACTIONS(4144), + [aux_sym__val_number_decimal_token3] = ACTIONS(4146), + [aux_sym__val_number_decimal_token4] = ACTIONS(4148), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4150), + [aux_sym__val_number_token5] = ACTIONS(4150), + [aux_sym__val_number_token6] = ACTIONS(4150), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1243] = { - [sym__expr_parenthesized_immediate] = STATE(1736), - [sym__immediate_decimal] = STATE(1591), - [sym_val_variable] = STATE(1736), + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5950), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5115), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5951), + [sym__unquoted_anonymous_prefix] = STATE(7458), [sym_comment] = STATE(1243), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(3999), - [aux_sym__immediate_decimal_token3] = ACTIONS(4001), - [aux_sym__immediate_decimal_token4] = ACTIONS(4003), - [aux_sym__immediate_decimal_token5] = ACTIONS(4005), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [aux_sym__val_number_token4] = ACTIONS(1553), - [aux_sym__val_number_token5] = ACTIONS(1553), - [aux_sym__val_number_token6] = ACTIONS(1553), - [anon_sym_0b] = ACTIONS(1539), - [anon_sym_0o] = ACTIONS(1539), - [anon_sym_0x] = ACTIONS(1539), - [sym_val_date] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token1] = ACTIONS(1539), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1553), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4142), + [aux_sym__val_number_decimal_token2] = ACTIONS(4144), + [aux_sym__val_number_decimal_token3] = ACTIONS(4146), + [aux_sym__val_number_decimal_token4] = ACTIONS(4148), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4150), + [aux_sym__val_number_token5] = ACTIONS(4150), + [aux_sym__val_number_token6] = ACTIONS(4150), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1244] = { - [sym__val_range] = STATE(7666), - [sym__value] = STATE(4636), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4379), - [sym_val_variable] = STATE(4663), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(4579), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(3997), - [sym__str_double_quotes] = STATE(3997), - [sym_val_interpolated] = STATE(4663), - [sym__inter_single_quotes] = STATE(4562), - [sym__inter_double_quotes] = STATE(4658), - [sym_val_list] = STATE(4663), - [sym_val_record] = STATE(4663), - [sym_val_table] = STATE(4663), - [sym_val_closure] = STATE(4663), - [sym_unquoted] = STATE(4803), - [sym__unquoted_anonymous_prefix] = STATE(7624), [sym_comment] = STATE(1244), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), - [anon_sym_DOT_DOT_LT] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4035), - [anon_sym_true] = ACTIONS(4037), - [anon_sym_false] = ACTIONS(4037), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4039), - [aux_sym__val_number_decimal_token3] = ACTIONS(4041), - [aux_sym__val_number_decimal_token4] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4045), - [aux_sym__val_number_token2] = ACTIONS(4045), - [aux_sym__val_number_token3] = ACTIONS(4045), - [aux_sym__val_number_token4] = ACTIONS(4047), - [aux_sym__val_number_token5] = ACTIONS(4047), - [aux_sym__val_number_token6] = ACTIONS(4047), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2065), - [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2083), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4010), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, [1245] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5931), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5058), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5933), - [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1245), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4063), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4075), - [aux_sym__val_number_decimal_token2] = ACTIONS(4077), - [aux_sym__val_number_decimal_token3] = ACTIONS(4079), - [aux_sym__val_number_decimal_token4] = ACTIONS(4081), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4083), - [aux_sym__val_number_token5] = ACTIONS(4083), - [aux_sym__val_number_token6] = ACTIONS(4083), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(4152), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, [1246] = { - [sym__val_range] = STATE(7396), - [sym__value] = STATE(1929), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1793), - [sym_val_variable] = STATE(1946), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1396), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym_unquoted] = STATE(1930), - [sym__unquoted_anonymous_prefix] = STATE(7578), + [sym__expr_parenthesized_immediate] = STATE(1878), + [sym__immediate_decimal] = STATE(1649), + [sym_val_variable] = STATE(1878), [sym_comment] = STATE(1246), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(4093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), - [anon_sym_DOT_DOT_LT] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4097), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [aux_sym__val_number_decimal_token1] = ACTIONS(4101), - [aux_sym__val_number_decimal_token2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_decimal_token4] = ACTIONS(4107), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(4109), - [aux_sym__val_number_token5] = ACTIONS(4109), - [aux_sym__val_number_token6] = ACTIONS(4109), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(4111), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4113), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1543), + [anon_sym_LPAREN] = ACTIONS(1529), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(1543), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_DOT_DOT] = ACTIONS(1529), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1543), + [anon_sym_DOT_DOT_LT] = ACTIONS(1543), + [aux_sym__immediate_decimal_token1] = ACTIONS(4156), + [aux_sym__immediate_decimal_token3] = ACTIONS(4158), + [aux_sym__immediate_decimal_token4] = ACTIONS(4160), + [aux_sym__immediate_decimal_token5] = ACTIONS(4162), + [anon_sym_null] = ACTIONS(1543), + [anon_sym_true] = ACTIONS(1543), + [anon_sym_false] = ACTIONS(1543), + [aux_sym__val_number_decimal_token1] = ACTIONS(1529), + [aux_sym__val_number_decimal_token2] = ACTIONS(1529), + [aux_sym__val_number_decimal_token3] = ACTIONS(1529), + [aux_sym__val_number_decimal_token4] = ACTIONS(1529), + [aux_sym__val_number_token1] = ACTIONS(1543), + [aux_sym__val_number_token2] = ACTIONS(1543), + [aux_sym__val_number_token3] = ACTIONS(1543), + [aux_sym__val_number_token4] = ACTIONS(1543), + [aux_sym__val_number_token5] = ACTIONS(1543), + [aux_sym__val_number_token6] = ACTIONS(1543), + [anon_sym_0b] = ACTIONS(1529), + [anon_sym_0o] = ACTIONS(1529), + [anon_sym_0x] = ACTIONS(1529), + [sym_val_date] = ACTIONS(1543), + [anon_sym_DQUOTE] = ACTIONS(1543), + [sym__str_single_quotes] = ACTIONS(1543), + [sym__str_back_ticks] = ACTIONS(1543), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1543), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1543), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token1] = ACTIONS(1529), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1543), }, [1247] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5931), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5062), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5933), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_rest] = STATE(7375), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2931), + [sym_val_range] = STATE(3169), + [sym__val_range] = STATE(7662), + [sym_val_nothing] = STATE(3179), + [sym_val_bool] = STATE(3084), + [sym_val_variable] = STATE(2868), + [sym_val_number] = STATE(3179), + [sym__val_number_decimal] = STATE(2720), + [sym__val_number] = STATE(3155), + [sym_val_duration] = STATE(3179), + [sym_val_filesize] = STATE(3179), + [sym_val_binary] = STATE(3179), + [sym_val_string] = STATE(3179), + [sym__raw_str] = STATE(3127), + [sym__str_double_quotes] = STATE(3127), + [sym_val_table] = STATE(3179), + [sym__unquoted_in_list] = STATE(3118), + [sym__unquoted_anonymous_prefix] = STATE(7511), [sym_comment] = STATE(1247), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [aux_sym__match_pattern_list_repeat1] = STATE(1316), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4166), + [anon_sym_LPAREN] = ACTIONS(3806), + [anon_sym_DOLLAR] = ACTIONS(3808), + [anon_sym_LBRACE] = ACTIONS(3810), + [anon_sym_DOT_DOT] = ACTIONS(4168), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), + [anon_sym_DOT_DOT_LT] = ACTIONS(3814), + [anon_sym_null] = ACTIONS(3816), + [anon_sym_true] = ACTIONS(3818), + [anon_sym_false] = ACTIONS(3818), + [aux_sym__val_number_decimal_token1] = ACTIONS(3820), + [aux_sym__val_number_decimal_token2] = ACTIONS(3822), + [aux_sym__val_number_decimal_token3] = ACTIONS(3824), + [aux_sym__val_number_decimal_token4] = ACTIONS(3826), + [aux_sym__val_number_token1] = ACTIONS(3828), + [aux_sym__val_number_token2] = ACTIONS(3828), + [aux_sym__val_number_token3] = ACTIONS(3828), + [aux_sym__val_number_token4] = ACTIONS(3830), + [aux_sym__val_number_token5] = ACTIONS(3830), + [aux_sym__val_number_token6] = ACTIONS(3830), + [anon_sym_0b] = ACTIONS(3832), + [anon_sym_0o] = ACTIONS(3834), + [anon_sym_0x] = ACTIONS(3834), + [sym_val_date] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3838), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3842), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3844), }, [1248] = { - [sym__expr_parenthesized_immediate] = STATE(1578), - [sym__immediate_decimal] = STATE(1579), - [sym_val_variable] = STATE(1578), + [sym_path] = STATE(1334), [sym_comment] = STATE(1248), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(2945), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(3981), - [anon_sym_DOT] = ACTIONS(4127), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4129), - [aux_sym__immediate_decimal_token3] = ACTIONS(4131), - [aux_sym__immediate_decimal_token4] = ACTIONS(4133), - [aux_sym__immediate_decimal_token5] = ACTIONS(4135), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), - }, - [1249] = { - [sym__val_range] = STATE(7439), - [sym__value] = STATE(5911), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(2131), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5438), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(5913), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1249), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(4137), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1250] = { - [sym_path] = STATE(1363), - [sym_comment] = STATE(1250), - [aux_sym_cell_path_repeat1] = STATE(1251), + [aux_sym_cell_path_repeat1] = STATE(1249), [anon_sym_EQ] = ACTIONS(948), [anon_sym_PLUS_EQ] = ACTIONS(950), [anon_sym_DASH_EQ] = ACTIONS(950), @@ -202772,7 +202691,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), [anon_sym_DOT_DOT_LT2] = ACTIONS(950), [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(3993), + [anon_sym_DOT2] = ACTIONS(3996), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -202791,10 +202710,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(251), }, - [1251] = { - [sym_path] = STATE(1363), - [sym_comment] = STATE(1251), - [aux_sym_cell_path_repeat1] = STATE(1251), + [1249] = { + [sym_path] = STATE(1334), + [sym_comment] = STATE(1249), + [aux_sym_cell_path_repeat1] = STATE(1249), [anon_sym_EQ] = ACTIONS(941), [anon_sym_PLUS_EQ] = ACTIONS(943), [anon_sym_DASH_EQ] = ACTIONS(943), @@ -202830,3595 +202749,2859 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LT_EQ2] = ACTIONS(943), [anon_sym_GT_EQ2] = ACTIONS(943), [anon_sym_EQ_TILDE2] = ACTIONS(943), - [anon_sym_BANG_TILDE2] = ACTIONS(943), - [anon_sym_STAR_STAR2] = ACTIONS(943), - [anon_sym_PLUS_PLUS2] = ACTIONS(941), - [anon_sym_SLASH2] = ACTIONS(941), - [anon_sym_mod2] = ACTIONS(943), - [anon_sym_SLASH_SLASH2] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_bit_DASHshl2] = ACTIONS(943), - [anon_sym_bit_DASHshr2] = ACTIONS(943), - [anon_sym_bit_DASHand2] = ACTIONS(943), - [anon_sym_bit_DASHxor2] = ACTIONS(943), - [anon_sym_bit_DASHor2] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_COLON2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4143), - [anon_sym_err_GT] = ACTIONS(941), - [anon_sym_out_GT] = ACTIONS(941), - [anon_sym_e_GT] = ACTIONS(941), - [anon_sym_o_GT] = ACTIONS(941), - [anon_sym_err_PLUSout_GT] = ACTIONS(941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(941), - [anon_sym_o_PLUSe_GT] = ACTIONS(941), - [anon_sym_e_PLUSo_GT] = ACTIONS(941), - [anon_sym_err_GT_GT] = ACTIONS(943), - [anon_sym_out_GT_GT] = ACTIONS(943), - [anon_sym_e_GT_GT] = ACTIONS(943), - [anon_sym_o_GT_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - }, - [1252] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5911), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5062), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5913), - [sym__unquoted_anonymous_prefix] = STATE(7738), - [sym_comment] = STATE(1252), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1253] = { - [sym__expr_parenthesized_immediate] = STATE(1837), - [sym__immediate_decimal] = STATE(1639), - [sym_val_variable] = STATE(1837), - [sym_comment] = STATE(1253), - [ts_builtin_sym_end] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_LBRACK] = ACTIONS(1553), - [anon_sym_LPAREN] = ACTIONS(1539), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_DASH_DASH] = ACTIONS(1553), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_DOT_DOT] = ACTIONS(1539), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1553), - [anon_sym_DOT_DOT_LT] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4148), - [aux_sym__immediate_decimal_token3] = ACTIONS(4150), - [aux_sym__immediate_decimal_token4] = ACTIONS(4152), - [aux_sym__immediate_decimal_token5] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(1553), - [anon_sym_true] = ACTIONS(1553), - [anon_sym_false] = ACTIONS(1553), - [aux_sym__val_number_decimal_token1] = ACTIONS(1539), - [aux_sym__val_number_decimal_token2] = ACTIONS(1539), - [aux_sym__val_number_decimal_token3] = ACTIONS(1539), - [aux_sym__val_number_decimal_token4] = ACTIONS(1539), - [aux_sym__val_number_token1] = ACTIONS(1553), - [aux_sym__val_number_token2] = ACTIONS(1553), - [aux_sym__val_number_token3] = ACTIONS(1553), - [aux_sym__val_number_token4] = ACTIONS(1553), - [aux_sym__val_number_token5] = ACTIONS(1553), - [aux_sym__val_number_token6] = ACTIONS(1553), - [anon_sym_0b] = ACTIONS(1539), - [anon_sym_0o] = ACTIONS(1539), - [anon_sym_0x] = ACTIONS(1539), - [sym_val_date] = ACTIONS(1553), - [anon_sym_DQUOTE] = ACTIONS(1553), - [sym__str_single_quotes] = ACTIONS(1553), - [sym__str_back_ticks] = ACTIONS(1553), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1553), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1553), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token1] = ACTIONS(1539), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1553), - }, - [1254] = { - [sym__val_range] = STATE(7439), - [sym__value] = STATE(5931), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(2131), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5438), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(5933), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1254), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(4137), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1255] = { - [sym_comment] = STATE(1255), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4156), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4158), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(941), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4170), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), + }, + [1250] = { + [sym__val_range] = STATE(7433), + [sym__value] = STATE(2985), + [sym_val_nothing] = STATE(2951), + [sym_val_bool] = STATE(2921), + [sym_val_variable] = STATE(2951), + [sym_val_number] = STATE(2951), + [sym__val_number_decimal] = STATE(2569), + [sym__val_number] = STATE(2977), + [sym_val_duration] = STATE(2951), + [sym_val_filesize] = STATE(2951), + [sym_val_binary] = STATE(2951), + [sym_val_string] = STATE(2951), + [sym__raw_str] = STATE(2958), + [sym__str_double_quotes] = STATE(2958), + [sym_val_interpolated] = STATE(2951), + [sym__inter_single_quotes] = STATE(2965), + [sym__inter_double_quotes] = STATE(2969), + [sym_val_list] = STATE(2951), + [sym_val_record] = STATE(2951), + [sym_val_table] = STATE(2951), + [sym_val_closure] = STATE(2951), + [sym_unquoted] = STATE(2941), + [sym__unquoted_anonymous_prefix] = STATE(7716), + [sym_comment] = STATE(1250), + [anon_sym_LBRACK] = ACTIONS(4094), + [anon_sym_LPAREN] = ACTIONS(4096), + [anon_sym_DOLLAR] = ACTIONS(4098), + [anon_sym_LBRACE] = ACTIONS(4100), + [anon_sym_DOT_DOT] = ACTIONS(4102), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4104), + [anon_sym_DOT_DOT_LT] = ACTIONS(4104), + [anon_sym_null] = ACTIONS(4106), + [anon_sym_true] = ACTIONS(4108), + [anon_sym_false] = ACTIONS(4108), + [aux_sym__val_number_decimal_token1] = ACTIONS(4110), + [aux_sym__val_number_decimal_token2] = ACTIONS(4112), + [aux_sym__val_number_decimal_token3] = ACTIONS(4114), + [aux_sym__val_number_decimal_token4] = ACTIONS(4116), + [aux_sym__val_number_token1] = ACTIONS(4118), + [aux_sym__val_number_token2] = ACTIONS(4118), + [aux_sym__val_number_token3] = ACTIONS(4118), + [aux_sym__val_number_token4] = ACTIONS(4120), + [aux_sym__val_number_token5] = ACTIONS(4120), + [aux_sym__val_number_token6] = ACTIONS(4120), + [anon_sym_0b] = ACTIONS(4122), + [anon_sym_0o] = ACTIONS(4124), + [anon_sym_0x] = ACTIONS(4124), + [sym_val_date] = ACTIONS(4126), + [anon_sym_DQUOTE] = ACTIONS(4128), + [sym__str_single_quotes] = ACTIONS(4130), + [sym__str_back_ticks] = ACTIONS(4130), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4132), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4134), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4136), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4138), + }, + [1251] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5115), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5884), + [sym__unquoted_anonymous_prefix] = STATE(7458), + [sym_comment] = STATE(1251), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4142), + [aux_sym__val_number_decimal_token2] = ACTIONS(4144), + [aux_sym__val_number_decimal_token3] = ACTIONS(4146), + [aux_sym__val_number_decimal_token4] = ACTIONS(4148), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4150), + [aux_sym__val_number_token5] = ACTIONS(4150), + [aux_sym__val_number_token6] = ACTIONS(4150), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [1252] = { + [sym__expr_parenthesized_immediate] = STATE(1728), + [sym__immediate_decimal] = STATE(1806), + [sym_val_variable] = STATE(1728), + [sym_comment] = STATE(1252), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(3970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4173), + [aux_sym__immediate_decimal_token3] = ACTIONS(4175), + [aux_sym__immediate_decimal_token4] = ACTIONS(4177), + [aux_sym__immediate_decimal_token5] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1547), + [anon_sym_0o] = ACTIONS(1547), + [anon_sym_0x] = ACTIONS(1547), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [1253] = { + [sym__val_range] = STATE(7412), + [sym__value] = STATE(1848), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1716), + [sym_val_variable] = STATE(1830), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1401), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym_unquoted] = STATE(1860), + [sym__unquoted_anonymous_prefix] = STATE(7436), + [sym_comment] = STATE(1253), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(4012), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4018), + [anon_sym_DOT_DOT_LT] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_true] = ACTIONS(4022), + [anon_sym_false] = ACTIONS(4022), + [aux_sym__val_number_decimal_token1] = ACTIONS(4024), + [aux_sym__val_number_decimal_token2] = ACTIONS(4026), + [aux_sym__val_number_decimal_token3] = ACTIONS(4028), + [aux_sym__val_number_decimal_token4] = ACTIONS(4030), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), + }, + [1254] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(6604), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5144), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(6021), + [sym__unquoted_anonymous_prefix] = STATE(7458), + [sym_comment] = STATE(1254), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [1255] = { + [sym__val_range] = STATE(7412), + [sym__value] = STATE(1876), + [sym_val_nothing] = STATE(1830), + [sym_val_bool] = STATE(1716), + [sym_val_variable] = STATE(1830), + [sym_val_number] = STATE(1830), + [sym__val_number_decimal] = STATE(1401), + [sym__val_number] = STATE(1938), + [sym_val_duration] = STATE(1830), + [sym_val_filesize] = STATE(1830), + [sym_val_binary] = STATE(1830), + [sym_val_string] = STATE(1830), + [sym__raw_str] = STATE(1814), + [sym__str_double_quotes] = STATE(1814), + [sym_val_interpolated] = STATE(1830), + [sym__inter_single_quotes] = STATE(1813), + [sym__inter_double_quotes] = STATE(1819), + [sym_val_list] = STATE(1830), + [sym_val_record] = STATE(1830), + [sym_val_table] = STATE(1830), + [sym_val_closure] = STATE(1830), + [sym_unquoted] = STATE(1889), + [sym__unquoted_anonymous_prefix] = STATE(7436), + [sym_comment] = STATE(1255), + [anon_sym_LBRACK] = ACTIONS(2853), + [anon_sym_LPAREN] = ACTIONS(4012), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_LBRACE] = ACTIONS(2863), + [anon_sym_DOT_DOT] = ACTIONS(4016), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4018), + [anon_sym_DOT_DOT_LT] = ACTIONS(4018), + [anon_sym_null] = ACTIONS(4020), + [anon_sym_true] = ACTIONS(4022), + [anon_sym_false] = ACTIONS(4022), + [aux_sym__val_number_decimal_token1] = ACTIONS(4024), + [aux_sym__val_number_decimal_token2] = ACTIONS(4026), + [aux_sym__val_number_decimal_token3] = ACTIONS(4028), + [aux_sym__val_number_decimal_token4] = ACTIONS(4030), + [aux_sym__val_number_token1] = ACTIONS(2881), + [aux_sym__val_number_token2] = ACTIONS(2881), + [aux_sym__val_number_token3] = ACTIONS(2881), + [aux_sym__val_number_token4] = ACTIONS(4032), + [aux_sym__val_number_token5] = ACTIONS(4032), + [aux_sym__val_number_token6] = ACTIONS(4032), + [anon_sym_0b] = ACTIONS(2885), + [anon_sym_0o] = ACTIONS(2887), + [anon_sym_0x] = ACTIONS(2887), + [sym_val_date] = ACTIONS(4034), + [anon_sym_DQUOTE] = ACTIONS(2891), + [sym__str_single_quotes] = ACTIONS(2893), + [sym__str_back_ticks] = ACTIONS(2893), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2897), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4036), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2901), }, [1256] = { - [sym__val_range] = STATE(7396), - [sym__value] = STATE(1937), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1793), - [sym_val_variable] = STATE(1946), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1396), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym_unquoted] = STATE(1938), - [sym__unquoted_anonymous_prefix] = STATE(7578), + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5950), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(6604), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5144), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5951), + [sym__unquoted_anonymous_prefix] = STATE(7458), [sym_comment] = STATE(1256), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(4093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), - [anon_sym_DOT_DOT_LT] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4097), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [aux_sym__val_number_decimal_token1] = ACTIONS(4101), - [aux_sym__val_number_decimal_token2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_decimal_token4] = ACTIONS(4107), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(4109), - [aux_sym__val_number_token5] = ACTIONS(4109), - [aux_sym__val_number_token6] = ACTIONS(4109), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(4111), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4113), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1257] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5931), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5265), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5933), - [sym__unquoted_anonymous_prefix] = STATE(7738), [sym_comment] = STATE(1257), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4160), - [anon_sym_true] = ACTIONS(4162), - [anon_sym_false] = ACTIONS(4162), - [aux_sym__val_number_decimal_token1] = ACTIONS(4164), - [aux_sym__val_number_decimal_token2] = ACTIONS(4166), - [aux_sym__val_number_decimal_token3] = ACTIONS(4168), - [aux_sym__val_number_decimal_token4] = ACTIONS(4170), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4172), - [aux_sym__val_number_token5] = ACTIONS(4172), - [aux_sym__val_number_token6] = ACTIONS(4172), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(4197), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4199), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, [1258] = { - [sym__val_range] = STATE(7396), - [sym__value] = STATE(1942), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1793), - [sym_val_variable] = STATE(1946), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1396), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym_unquoted] = STATE(1943), - [sym__unquoted_anonymous_prefix] = STATE(7578), + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_rest] = STATE(7369), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2931), + [sym_val_range] = STATE(3169), + [sym__val_range] = STATE(7662), + [sym_val_nothing] = STATE(3179), + [sym_val_bool] = STATE(3084), + [sym_val_variable] = STATE(2868), + [sym_val_number] = STATE(3179), + [sym__val_number_decimal] = STATE(2720), + [sym__val_number] = STATE(3155), + [sym_val_duration] = STATE(3179), + [sym_val_filesize] = STATE(3179), + [sym_val_binary] = STATE(3179), + [sym_val_string] = STATE(3179), + [sym__raw_str] = STATE(3127), + [sym__str_double_quotes] = STATE(3127), + [sym_val_table] = STATE(3179), + [sym__unquoted_in_list] = STATE(3118), + [sym__unquoted_anonymous_prefix] = STATE(7511), [sym_comment] = STATE(1258), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(4093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), - [anon_sym_DOT_DOT_LT] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4097), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [aux_sym__val_number_decimal_token1] = ACTIONS(4101), - [aux_sym__val_number_decimal_token2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_decimal_token4] = ACTIONS(4107), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(4109), - [aux_sym__val_number_token5] = ACTIONS(4109), - [aux_sym__val_number_token6] = ACTIONS(4109), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(4111), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4113), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), + [aux_sym__match_pattern_list_repeat1] = STATE(1316), + [anon_sym_LBRACK] = ACTIONS(4164), + [anon_sym_RBRACK] = ACTIONS(4201), + [anon_sym_LPAREN] = ACTIONS(3806), + [anon_sym_DOLLAR] = ACTIONS(3808), + [anon_sym_LBRACE] = ACTIONS(3810), + [anon_sym_DOT_DOT] = ACTIONS(4203), + [anon_sym_DOT_DOT_EQ] = ACTIONS(3814), + [anon_sym_DOT_DOT_LT] = ACTIONS(3814), + [anon_sym_null] = ACTIONS(3816), + [anon_sym_true] = ACTIONS(3818), + [anon_sym_false] = ACTIONS(3818), + [aux_sym__val_number_decimal_token1] = ACTIONS(3820), + [aux_sym__val_number_decimal_token2] = ACTIONS(3822), + [aux_sym__val_number_decimal_token3] = ACTIONS(3824), + [aux_sym__val_number_decimal_token4] = ACTIONS(3826), + [aux_sym__val_number_token1] = ACTIONS(3828), + [aux_sym__val_number_token2] = ACTIONS(3828), + [aux_sym__val_number_token3] = ACTIONS(3828), + [aux_sym__val_number_token4] = ACTIONS(3830), + [aux_sym__val_number_token5] = ACTIONS(3830), + [aux_sym__val_number_token6] = ACTIONS(3830), + [anon_sym_0b] = ACTIONS(3832), + [anon_sym_0o] = ACTIONS(3834), + [anon_sym_0x] = ACTIONS(3834), + [sym_val_date] = ACTIONS(3836), + [anon_sym_DQUOTE] = ACTIONS(3838), + [sym__str_single_quotes] = ACTIONS(3840), + [sym__str_back_ticks] = ACTIONS(3840), + [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(2579), + [anon_sym_out_GT_GT] = ACTIONS(2579), + [anon_sym_e_GT_GT] = ACTIONS(2579), + [anon_sym_o_GT_GT] = ACTIONS(2579), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2579), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2579), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2579), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2579), + [aux_sym__unquoted_in_list_token1] = ACTIONS(3842), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(3844), }, [1259] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5265), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5879), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(6604), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5144), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5884), + [sym__unquoted_anonymous_prefix] = STATE(7458), [sym_comment] = STATE(1259), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4160), - [anon_sym_true] = ACTIONS(4162), - [anon_sym_false] = ACTIONS(4162), - [aux_sym__val_number_decimal_token1] = ACTIONS(4164), - [aux_sym__val_number_decimal_token2] = ACTIONS(4166), - [aux_sym__val_number_decimal_token3] = ACTIONS(4168), - [aux_sym__val_number_decimal_token4] = ACTIONS(4170), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4172), - [aux_sym__val_number_token5] = ACTIONS(4172), - [aux_sym__val_number_token6] = ACTIONS(4172), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1260] = { - [sym__expr_parenthesized_immediate] = STATE(1866), - [sym__immediate_decimal] = STATE(1699), - [sym_val_variable] = STATE(1866), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(4663), + [sym_val_nothing] = STATE(4593), + [sym_val_bool] = STATE(4311), + [sym_val_variable] = STATE(4593), + [sym_val_number] = STATE(4593), + [sym__val_number_decimal] = STATE(3894), + [sym__val_number] = STATE(4596), + [sym_val_duration] = STATE(4593), + [sym_val_filesize] = STATE(4593), + [sym_val_binary] = STATE(4593), + [sym_val_string] = STATE(4593), + [sym__raw_str] = STATE(3939), + [sym__str_double_quotes] = STATE(3939), + [sym_val_interpolated] = STATE(4593), + [sym__inter_single_quotes] = STATE(4597), + [sym__inter_double_quotes] = STATE(4598), + [sym_val_list] = STATE(4593), + [sym_val_record] = STATE(4593), + [sym_val_table] = STATE(4593), + [sym_val_closure] = STATE(4593), + [sym_unquoted] = STATE(4667), + [sym__unquoted_anonymous_prefix] = STATE(7406), [sym_comment] = STATE(1260), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1629), - [anon_sym_LPAREN] = ACTIONS(1627), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_DASH_DASH] = ACTIONS(1629), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_DOT_DOT] = ACTIONS(1627), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1629), - [anon_sym_DOT_DOT_LT] = ACTIONS(1629), - [aux_sym__immediate_decimal_token1] = ACTIONS(4148), - [aux_sym__immediate_decimal_token3] = ACTIONS(4150), - [aux_sym__immediate_decimal_token4] = ACTIONS(4152), - [aux_sym__immediate_decimal_token5] = ACTIONS(4154), - [anon_sym_null] = ACTIONS(1629), - [anon_sym_true] = ACTIONS(1629), - [anon_sym_false] = ACTIONS(1629), - [aux_sym__val_number_decimal_token1] = ACTIONS(1627), - [aux_sym__val_number_decimal_token2] = ACTIONS(1627), - [aux_sym__val_number_decimal_token3] = ACTIONS(1627), - [aux_sym__val_number_decimal_token4] = ACTIONS(1627), - [aux_sym__val_number_token1] = ACTIONS(1629), - [aux_sym__val_number_token2] = ACTIONS(1629), - [aux_sym__val_number_token3] = ACTIONS(1629), - [aux_sym__val_number_token4] = ACTIONS(1629), - [aux_sym__val_number_token5] = ACTIONS(1629), - [aux_sym__val_number_token6] = ACTIONS(1629), - [anon_sym_0b] = ACTIONS(1627), - [anon_sym_0o] = ACTIONS(1627), - [anon_sym_0x] = ACTIONS(1627), - [sym_val_date] = ACTIONS(1629), - [anon_sym_DQUOTE] = ACTIONS(1629), - [sym__str_single_quotes] = ACTIONS(1629), - [sym__str_back_ticks] = ACTIONS(1629), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1629), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1629), - [anon_sym_err_GT] = ACTIONS(1627), - [anon_sym_out_GT] = ACTIONS(1627), - [anon_sym_e_GT] = ACTIONS(1627), - [anon_sym_o_GT] = ACTIONS(1627), - [anon_sym_err_PLUSout_GT] = ACTIONS(1627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), - [anon_sym_o_PLUSe_GT] = ACTIONS(1627), - [anon_sym_e_PLUSo_GT] = ACTIONS(1627), - [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), - [aux_sym_unquoted_token1] = ACTIONS(1627), - [aux_sym_unquoted_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1629), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(4219), + [aux_sym__val_number_decimal_token3] = ACTIONS(4221), + [aux_sym__val_number_decimal_token4] = ACTIONS(4223), + [aux_sym__val_number_token1] = ACTIONS(4225), + [aux_sym__val_number_token2] = ACTIONS(4225), + [aux_sym__val_number_token3] = ACTIONS(4225), + [aux_sym__val_number_token4] = ACTIONS(4227), + [aux_sym__val_number_token5] = ACTIONS(4227), + [aux_sym__val_number_token6] = ACTIONS(4227), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4231), + [sym__str_single_quotes] = ACTIONS(4233), + [sym__str_back_ticks] = ACTIONS(4233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2154), }, [1261] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5919), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(6604), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5144), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5924), + [sym__unquoted_anonymous_prefix] = STATE(7458), [sym_comment] = STATE(1261), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4176), - [aux_sym__immediate_decimal_token2] = ACTIONS(4178), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4181), + [anon_sym_true] = ACTIONS(4183), + [anon_sym_false] = ACTIONS(4183), + [aux_sym__val_number_decimal_token1] = ACTIONS(4185), + [aux_sym__val_number_decimal_token2] = ACTIONS(4187), + [aux_sym__val_number_decimal_token3] = ACTIONS(4189), + [aux_sym__val_number_decimal_token4] = ACTIONS(4191), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4193), + [aux_sym__val_number_token5] = ACTIONS(4193), + [aux_sym__val_number_token6] = ACTIONS(4193), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4195), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1262] = { + [sym__val_range] = STATE(7463), + [sym__value] = STATE(4585), + [sym_val_nothing] = STATE(4593), + [sym_val_bool] = STATE(4311), + [sym_val_variable] = STATE(4593), + [sym_val_number] = STATE(4593), + [sym__val_number_decimal] = STATE(3894), + [sym__val_number] = STATE(4596), + [sym_val_duration] = STATE(4593), + [sym_val_filesize] = STATE(4593), + [sym_val_binary] = STATE(4593), + [sym_val_string] = STATE(4593), + [sym__raw_str] = STATE(3939), + [sym__str_double_quotes] = STATE(3939), + [sym_val_interpolated] = STATE(4593), + [sym__inter_single_quotes] = STATE(4597), + [sym__inter_double_quotes] = STATE(4598), + [sym_val_list] = STATE(4593), + [sym_val_record] = STATE(4593), + [sym_val_table] = STATE(4593), + [sym_val_closure] = STATE(4593), + [sym_unquoted] = STATE(4595), + [sym__unquoted_anonymous_prefix] = STATE(7406), [sym_comment] = STATE(1262), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4180), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4182), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(4219), + [aux_sym__val_number_decimal_token3] = ACTIONS(4221), + [aux_sym__val_number_decimal_token4] = ACTIONS(4223), + [aux_sym__val_number_token1] = ACTIONS(4225), + [aux_sym__val_number_token2] = ACTIONS(4225), + [aux_sym__val_number_token3] = ACTIONS(4225), + [aux_sym__val_number_token4] = ACTIONS(4227), + [aux_sym__val_number_token5] = ACTIONS(4227), + [aux_sym__val_number_token6] = ACTIONS(4227), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4231), + [sym__str_single_quotes] = ACTIONS(4233), + [sym__str_back_ticks] = ACTIONS(4233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2152), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), + [sym_raw_string_begin] = ACTIONS(2154), }, [1263] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5911), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5265), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5913), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym__expr_parenthesized_immediate] = STATE(1754), + [sym__immediate_decimal] = STATE(1756), + [sym_val_variable] = STATE(1754), [sym_comment] = STATE(1263), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4160), - [anon_sym_true] = ACTIONS(4162), - [anon_sym_false] = ACTIONS(4162), - [aux_sym__val_number_decimal_token1] = ACTIONS(4164), - [aux_sym__val_number_decimal_token2] = ACTIONS(4166), - [aux_sym__val_number_decimal_token3] = ACTIONS(4168), - [aux_sym__val_number_decimal_token4] = ACTIONS(4170), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4172), - [aux_sym__val_number_token5] = ACTIONS(4172), - [aux_sym__val_number_token6] = ACTIONS(4172), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(3970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(4173), + [aux_sym__immediate_decimal_token3] = ACTIONS(4175), + [aux_sym__immediate_decimal_token4] = ACTIONS(4177), + [aux_sym__immediate_decimal_token5] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1703), }, [1264] = { - [sym__val_range] = STATE(7666), - [sym__value] = STATE(4677), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4379), - [sym_val_variable] = STATE(4663), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(4579), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(3997), - [sym__str_double_quotes] = STATE(3997), - [sym_val_interpolated] = STATE(4663), - [sym__inter_single_quotes] = STATE(4562), - [sym__inter_double_quotes] = STATE(4658), - [sym_val_list] = STATE(4663), - [sym_val_record] = STATE(4663), - [sym_val_table] = STATE(4663), - [sym_val_closure] = STATE(4663), - [sym_unquoted] = STATE(4678), - [sym__unquoted_anonymous_prefix] = STATE(7624), + [sym__expr_parenthesized_immediate] = STATE(1758), + [sym__immediate_decimal] = STATE(1760), + [sym_val_variable] = STATE(1758), [sym_comment] = STATE(1264), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), - [anon_sym_DOT_DOT_LT] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4035), - [anon_sym_true] = ACTIONS(4037), - [anon_sym_false] = ACTIONS(4037), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4039), - [aux_sym__val_number_decimal_token3] = ACTIONS(4041), - [aux_sym__val_number_decimal_token4] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4045), - [aux_sym__val_number_token2] = ACTIONS(4045), - [aux_sym__val_number_token3] = ACTIONS(4045), - [aux_sym__val_number_token4] = ACTIONS(4047), - [aux_sym__val_number_token5] = ACTIONS(4047), - [aux_sym__val_number_token6] = ACTIONS(4047), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2065), - [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2083), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(3970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(4173), + [aux_sym__immediate_decimal_token3] = ACTIONS(4175), + [aux_sym__immediate_decimal_token4] = ACTIONS(4177), + [aux_sym__immediate_decimal_token5] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1707), }, [1265] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(6599), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5265), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5814), - [sym__unquoted_anonymous_prefix] = STATE(7738), + [sym__expr_parenthesized_immediate] = STATE(1761), + [sym__immediate_decimal] = STATE(1762), + [sym_val_variable] = STATE(1761), [sym_comment] = STATE(1265), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4160), - [anon_sym_true] = ACTIONS(4162), - [anon_sym_false] = ACTIONS(4162), - [aux_sym__val_number_decimal_token1] = ACTIONS(4164), - [aux_sym__val_number_decimal_token2] = ACTIONS(4166), - [aux_sym__val_number_decimal_token3] = ACTIONS(4168), - [aux_sym__val_number_decimal_token4] = ACTIONS(4170), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4172), - [aux_sym__val_number_token5] = ACTIONS(4172), - [aux_sym__val_number_token6] = ACTIONS(4172), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4174), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(3970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT] = ACTIONS(1711), + [aux_sym__immediate_decimal_token1] = ACTIONS(4173), + [aux_sym__immediate_decimal_token3] = ACTIONS(4175), + [aux_sym__immediate_decimal_token4] = ACTIONS(4177), + [aux_sym__immediate_decimal_token5] = ACTIONS(4179), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), }, [1266] = { - [sym__val_range] = STATE(7666), - [sym__value] = STATE(4578), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4379), - [sym_val_variable] = STATE(4663), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(4579), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(3997), - [sym__str_double_quotes] = STATE(3997), - [sym_val_interpolated] = STATE(4663), - [sym__inter_single_quotes] = STATE(4562), - [sym__inter_double_quotes] = STATE(4658), - [sym_val_list] = STATE(4663), - [sym_val_record] = STATE(4663), - [sym_val_table] = STATE(4663), - [sym_val_closure] = STATE(4663), - [sym_unquoted] = STATE(4580), - [sym__unquoted_anonymous_prefix] = STATE(7624), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(4649), + [sym_val_nothing] = STATE(4593), + [sym_val_bool] = STATE(4311), + [sym_val_variable] = STATE(4593), + [sym_val_number] = STATE(4593), + [sym__val_number_decimal] = STATE(3894), + [sym__val_number] = STATE(4596), + [sym_val_duration] = STATE(4593), + [sym_val_filesize] = STATE(4593), + [sym_val_binary] = STATE(4593), + [sym_val_string] = STATE(4593), + [sym__raw_str] = STATE(3939), + [sym__str_double_quotes] = STATE(3939), + [sym_val_interpolated] = STATE(4593), + [sym__inter_single_quotes] = STATE(4597), + [sym__inter_double_quotes] = STATE(4598), + [sym_val_list] = STATE(4593), + [sym_val_record] = STATE(4593), + [sym_val_table] = STATE(4593), + [sym_val_closure] = STATE(4593), + [sym_unquoted] = STATE(4654), + [sym__unquoted_anonymous_prefix] = STATE(7406), [sym_comment] = STATE(1266), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), - [anon_sym_DOT_DOT_LT] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4035), - [anon_sym_true] = ACTIONS(4037), - [anon_sym_false] = ACTIONS(4037), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4039), - [aux_sym__val_number_decimal_token3] = ACTIONS(4041), - [aux_sym__val_number_decimal_token4] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4045), - [aux_sym__val_number_token2] = ACTIONS(4045), - [aux_sym__val_number_token3] = ACTIONS(4045), - [aux_sym__val_number_token4] = ACTIONS(4047), - [aux_sym__val_number_token5] = ACTIONS(4047), - [aux_sym__val_number_token6] = ACTIONS(4047), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2065), - [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(4219), + [aux_sym__val_number_decimal_token3] = ACTIONS(4221), + [aux_sym__val_number_decimal_token4] = ACTIONS(4223), + [aux_sym__val_number_token1] = ACTIONS(4225), + [aux_sym__val_number_token2] = ACTIONS(4225), + [aux_sym__val_number_token3] = ACTIONS(4225), + [aux_sym__val_number_token4] = ACTIONS(4227), + [aux_sym__val_number_token5] = ACTIONS(4227), + [aux_sym__val_number_token6] = ACTIONS(4227), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4231), + [sym__str_single_quotes] = ACTIONS(4233), + [sym__str_back_ticks] = ACTIONS(4233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2154), }, [1267] = { - [sym__val_range] = STATE(7666), - [sym__value] = STATE(4559), - [sym_val_nothing] = STATE(4663), - [sym_val_bool] = STATE(4379), - [sym_val_variable] = STATE(4663), - [sym_val_number] = STATE(4663), - [sym__val_number_decimal] = STATE(3911), - [sym__val_number] = STATE(4579), - [sym_val_duration] = STATE(4663), - [sym_val_filesize] = STATE(4663), - [sym_val_binary] = STATE(4663), - [sym_val_string] = STATE(4663), - [sym__raw_str] = STATE(3997), - [sym__str_double_quotes] = STATE(3997), - [sym_val_interpolated] = STATE(4663), - [sym__inter_single_quotes] = STATE(4562), - [sym__inter_double_quotes] = STATE(4658), - [sym_val_list] = STATE(4663), - [sym_val_record] = STATE(4663), - [sym_val_table] = STATE(4663), - [sym_val_closure] = STATE(4663), - [sym_unquoted] = STATE(4629), - [sym__unquoted_anonymous_prefix] = STATE(7624), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4432), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(7178), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(5407), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4433), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1267), - [anon_sym_LBRACK] = ACTIONS(4025), - [anon_sym_LPAREN] = ACTIONS(4027), - [anon_sym_DOLLAR] = ACTIONS(2033), - [anon_sym_LBRACE] = ACTIONS(4029), - [anon_sym_DOT_DOT] = ACTIONS(4031), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4033), - [anon_sym_DOT_DOT_LT] = ACTIONS(4033), - [anon_sym_null] = ACTIONS(4035), - [anon_sym_true] = ACTIONS(4037), - [anon_sym_false] = ACTIONS(4037), - [aux_sym__val_number_decimal_token1] = ACTIONS(2053), - [aux_sym__val_number_decimal_token2] = ACTIONS(4039), - [aux_sym__val_number_decimal_token3] = ACTIONS(4041), - [aux_sym__val_number_decimal_token4] = ACTIONS(4043), - [aux_sym__val_number_token1] = ACTIONS(4045), - [aux_sym__val_number_token2] = ACTIONS(4045), - [aux_sym__val_number_token3] = ACTIONS(4045), - [aux_sym__val_number_token4] = ACTIONS(4047), - [aux_sym__val_number_token5] = ACTIONS(4047), - [aux_sym__val_number_token6] = ACTIONS(4047), - [anon_sym_0b] = ACTIONS(2063), - [anon_sym_0o] = ACTIONS(2065), - [anon_sym_0x] = ACTIONS(2065), - [sym_val_date] = ACTIONS(4049), - [anon_sym_DQUOTE] = ACTIONS(4051), - [sym__str_single_quotes] = ACTIONS(4053), - [sym__str_back_ticks] = ACTIONS(4053), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4055), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4057), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(2081), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2083), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [aux_sym__val_number_decimal_token1] = ACTIONS(4253), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4263), + [aux_sym__val_number_token5] = ACTIONS(4263), + [aux_sym__val_number_token6] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4265), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1268] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4527), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(6799), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(5285), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4529), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7463), + [sym__value] = STATE(4785), + [sym_val_nothing] = STATE(4593), + [sym_val_bool] = STATE(4311), + [sym_val_variable] = STATE(4593), + [sym_val_number] = STATE(4593), + [sym__val_number_decimal] = STATE(3894), + [sym__val_number] = STATE(4596), + [sym_val_duration] = STATE(4593), + [sym_val_filesize] = STATE(4593), + [sym_val_binary] = STATE(4593), + [sym_val_string] = STATE(4593), + [sym__raw_str] = STATE(3939), + [sym__str_double_quotes] = STATE(3939), + [sym_val_interpolated] = STATE(4593), + [sym__inter_single_quotes] = STATE(4597), + [sym__inter_double_quotes] = STATE(4598), + [sym_val_list] = STATE(4593), + [sym_val_record] = STATE(4593), + [sym_val_table] = STATE(4593), + [sym_val_closure] = STATE(4593), + [sym_unquoted] = STATE(4537), + [sym__unquoted_anonymous_prefix] = STATE(7406), [sym_comment] = STATE(1268), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [aux_sym__val_number_decimal_token1] = ACTIONS(4198), - [aux_sym__val_number_decimal_token2] = ACTIONS(4200), - [aux_sym__val_number_decimal_token3] = ACTIONS(4202), - [aux_sym__val_number_decimal_token4] = ACTIONS(4204), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4208), - [aux_sym__val_number_token5] = ACTIONS(4208), - [aux_sym__val_number_token6] = ACTIONS(4208), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(4205), + [anon_sym_LPAREN] = ACTIONS(4207), + [anon_sym_DOLLAR] = ACTIONS(2104), + [anon_sym_LBRACE] = ACTIONS(4209), + [anon_sym_DOT_DOT] = ACTIONS(4211), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4213), + [anon_sym_DOT_DOT_LT] = ACTIONS(4213), + [anon_sym_null] = ACTIONS(4215), + [anon_sym_true] = ACTIONS(4217), + [anon_sym_false] = ACTIONS(4217), + [aux_sym__val_number_decimal_token1] = ACTIONS(2124), + [aux_sym__val_number_decimal_token2] = ACTIONS(4219), + [aux_sym__val_number_decimal_token3] = ACTIONS(4221), + [aux_sym__val_number_decimal_token4] = ACTIONS(4223), + [aux_sym__val_number_token1] = ACTIONS(4225), + [aux_sym__val_number_token2] = ACTIONS(4225), + [aux_sym__val_number_token3] = ACTIONS(4225), + [aux_sym__val_number_token4] = ACTIONS(4227), + [aux_sym__val_number_token5] = ACTIONS(4227), + [aux_sym__val_number_token6] = ACTIONS(4227), + [anon_sym_0b] = ACTIONS(2134), + [anon_sym_0o] = ACTIONS(2136), + [anon_sym_0x] = ACTIONS(2136), + [sym_val_date] = ACTIONS(4229), + [anon_sym_DQUOTE] = ACTIONS(4231), + [sym__str_single_quotes] = ACTIONS(4233), + [sym__str_back_ticks] = ACTIONS(4233), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4235), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4237), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(2152), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2154), }, [1269] = { - [sym__val_range] = STATE(7567), - [sym__value] = STATE(2997), - [sym_val_nothing] = STATE(2967), - [sym_val_bool] = STATE(2936), - [sym_val_variable] = STATE(2967), - [sym_val_number] = STATE(2967), - [sym__val_number_decimal] = STATE(2574), - [sym__val_number] = STATE(3035), - [sym_val_duration] = STATE(2967), - [sym_val_filesize] = STATE(2967), - [sym_val_binary] = STATE(2967), - [sym_val_string] = STATE(2967), - [sym__raw_str] = STATE(3030), - [sym__str_double_quotes] = STATE(3030), - [sym_val_interpolated] = STATE(2967), - [sym__inter_single_quotes] = STATE(2985), - [sym__inter_double_quotes] = STATE(2993), - [sym_val_list] = STATE(2967), - [sym_val_record] = STATE(2967), - [sym_val_table] = STATE(2967), - [sym_val_closure] = STATE(2967), - [sym_unquoted] = STATE(3004), - [sym__unquoted_anonymous_prefix] = STATE(7742), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4449), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(7178), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(5407), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4450), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1269), - [anon_sym_LBRACK] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_DOT_DOT] = ACTIONS(4228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4230), - [anon_sym_DOT_DOT_LT] = ACTIONS(4230), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_decimal_token2] = ACTIONS(4238), - [aux_sym__val_number_decimal_token3] = ACTIONS(4240), - [aux_sym__val_number_decimal_token4] = ACTIONS(4242), - [aux_sym__val_number_token1] = ACTIONS(4244), - [aux_sym__val_number_token2] = ACTIONS(4244), - [aux_sym__val_number_token3] = ACTIONS(4244), - [aux_sym__val_number_token4] = ACTIONS(4246), - [aux_sym__val_number_token5] = ACTIONS(4246), - [aux_sym__val_number_token6] = ACTIONS(4246), - [anon_sym_0b] = ACTIONS(4248), - [anon_sym_0o] = ACTIONS(4250), - [anon_sym_0x] = ACTIONS(4250), - [sym_val_date] = ACTIONS(4252), - [anon_sym_DQUOTE] = ACTIONS(4254), - [sym__str_single_quotes] = ACTIONS(4256), - [sym__str_back_ticks] = ACTIONS(4256), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4260), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4262), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4264), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [aux_sym__val_number_decimal_token1] = ACTIONS(4253), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4263), + [aux_sym__val_number_token5] = ACTIONS(4263), + [aux_sym__val_number_token6] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4265), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1270] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4500), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(6799), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(5285), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4548), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4522), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(7178), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(5407), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4523), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1270), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [aux_sym__val_number_decimal_token1] = ACTIONS(4198), - [aux_sym__val_number_decimal_token2] = ACTIONS(4200), - [aux_sym__val_number_decimal_token3] = ACTIONS(4202), - [aux_sym__val_number_decimal_token4] = ACTIONS(4204), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4208), - [aux_sym__val_number_token5] = ACTIONS(4208), - [aux_sym__val_number_token6] = ACTIONS(4208), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [aux_sym__val_number_decimal_token1] = ACTIONS(4253), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4263), + [aux_sym__val_number_token5] = ACTIONS(4263), + [aux_sym__val_number_token6] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4265), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1271] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4493), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(6799), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(5285), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4533), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4432), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3872), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4433), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1271), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [aux_sym__val_number_decimal_token1] = ACTIONS(4198), - [aux_sym__val_number_decimal_token2] = ACTIONS(4200), - [aux_sym__val_number_decimal_token3] = ACTIONS(4202), - [aux_sym__val_number_decimal_token4] = ACTIONS(4204), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4208), - [aux_sym__val_number_token5] = ACTIONS(4208), - [aux_sym__val_number_token6] = ACTIONS(4208), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_true] = ACTIONS(4277), + [anon_sym_false] = ACTIONS(4277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4279), + [aux_sym__val_number_decimal_token3] = ACTIONS(4281), + [aux_sym__val_number_decimal_token4] = ACTIONS(4283), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4285), + [aux_sym__val_number_token5] = ACTIONS(4285), + [aux_sym__val_number_token6] = ACTIONS(4285), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1272] = { + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4374), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(7178), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(5407), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4381), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1272), - [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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4266), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4249), + [anon_sym_true] = ACTIONS(4251), + [anon_sym_false] = ACTIONS(4251), + [aux_sym__val_number_decimal_token1] = ACTIONS(4253), + [aux_sym__val_number_decimal_token2] = ACTIONS(4255), + [aux_sym__val_number_decimal_token3] = ACTIONS(4257), + [aux_sym__val_number_decimal_token4] = ACTIONS(4259), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4263), + [aux_sym__val_number_token5] = ACTIONS(4263), + [aux_sym__val_number_token6] = ACTIONS(4263), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4265), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1273] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4442), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(6799), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(5285), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4444), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4449), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3872), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4450), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1273), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4194), - [anon_sym_true] = ACTIONS(4196), - [anon_sym_false] = ACTIONS(4196), - [aux_sym__val_number_decimal_token1] = ACTIONS(4198), - [aux_sym__val_number_decimal_token2] = ACTIONS(4200), - [aux_sym__val_number_decimal_token3] = ACTIONS(4202), - [aux_sym__val_number_decimal_token4] = ACTIONS(4204), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4208), - [aux_sym__val_number_token5] = ACTIONS(4208), - [aux_sym__val_number_token6] = ACTIONS(4208), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4210), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_true] = ACTIONS(4277), + [anon_sym_false] = ACTIONS(4277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4279), + [aux_sym__val_number_decimal_token3] = ACTIONS(4281), + [aux_sym__val_number_decimal_token4] = ACTIONS(4283), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4285), + [aux_sym__val_number_token5] = ACTIONS(4285), + [aux_sym__val_number_token6] = ACTIONS(4285), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1274] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4500), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3881), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4548), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4522), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3872), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4523), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1274), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4272), - [aux_sym__val_number_decimal_token3] = ACTIONS(4274), - [aux_sym__val_number_decimal_token4] = ACTIONS(4276), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4278), - [aux_sym__val_number_token5] = ACTIONS(4278), - [aux_sym__val_number_token6] = ACTIONS(4278), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_true] = ACTIONS(4277), + [anon_sym_false] = ACTIONS(4277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4279), + [aux_sym__val_number_decimal_token3] = ACTIONS(4281), + [aux_sym__val_number_decimal_token4] = ACTIONS(4283), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4285), + [aux_sym__val_number_token5] = ACTIONS(4285), + [aux_sym__val_number_token6] = ACTIONS(4285), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1275] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4493), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3881), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4533), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7393), + [sym__value] = STATE(1796), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1618), + [sym_val_variable] = STATE(1729), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym_unquoted] = STATE(1693), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1275), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4272), - [aux_sym__val_number_decimal_token3] = ACTIONS(4274), - [aux_sym__val_number_decimal_token4] = ACTIONS(4276), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4278), - [aux_sym__val_number_token5] = ACTIONS(4278), - [aux_sym__val_number_token6] = ACTIONS(4278), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4293), + [anon_sym_DOT_DOT_LT] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4311), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, [1276] = { - [sym__val_range] = STATE(7379), - [sym__value] = STATE(1716), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1691), - [sym_val_variable] = STATE(1751), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1373), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym_unquoted] = STATE(1717), - [sym__unquoted_anonymous_prefix] = STATE(7688), + [sym__val_range] = STATE(7381), + [sym__value] = STATE(4374), + [sym_val_nothing] = STATE(4437), + [sym_val_bool] = STATE(4190), + [sym_val_variable] = STATE(4437), + [sym_val_number] = STATE(4437), + [sym__val_number_decimal] = STATE(3872), + [sym__val_number] = STATE(4463), + [sym_val_duration] = STATE(4437), + [sym_val_filesize] = STATE(4437), + [sym_val_binary] = STATE(4437), + [sym_val_string] = STATE(4437), + [sym__raw_str] = STATE(3891), + [sym__str_double_quotes] = STATE(3891), + [sym_val_interpolated] = STATE(4437), + [sym__inter_single_quotes] = STATE(4505), + [sym__inter_double_quotes] = STATE(4378), + [sym_val_list] = STATE(4437), + [sym_val_record] = STATE(4437), + [sym_val_table] = STATE(4437), + [sym_val_closure] = STATE(4437), + [sym_unquoted] = STATE(4381), + [sym__unquoted_anonymous_prefix] = STATE(7492), [sym_comment] = STATE(1276), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4284), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), - [anon_sym_DOT_DOT_LT] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4288), - [anon_sym_true] = ACTIONS(4290), - [anon_sym_false] = ACTIONS(4290), - [aux_sym__val_number_decimal_token1] = ACTIONS(4292), - [aux_sym__val_number_decimal_token2] = ACTIONS(4294), - [aux_sym__val_number_decimal_token3] = ACTIONS(4296), - [aux_sym__val_number_decimal_token4] = ACTIONS(4298), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4300), - [aux_sym__val_number_token5] = ACTIONS(4300), - [aux_sym__val_number_token6] = ACTIONS(4300), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4302), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4304), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(4239), + [anon_sym_LPAREN] = ACTIONS(4241), + [anon_sym_DOLLAR] = ACTIONS(1914), + [anon_sym_LBRACE] = ACTIONS(4243), + [anon_sym_DOT_DOT] = ACTIONS(4245), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4247), + [anon_sym_DOT_DOT_LT] = ACTIONS(4247), + [anon_sym_null] = ACTIONS(4275), + [anon_sym_true] = ACTIONS(4277), + [anon_sym_false] = ACTIONS(4277), + [aux_sym__val_number_decimal_token1] = ACTIONS(1934), + [aux_sym__val_number_decimal_token2] = ACTIONS(4279), + [aux_sym__val_number_decimal_token3] = ACTIONS(4281), + [aux_sym__val_number_decimal_token4] = ACTIONS(4283), + [aux_sym__val_number_token1] = ACTIONS(4261), + [aux_sym__val_number_token2] = ACTIONS(4261), + [aux_sym__val_number_token3] = ACTIONS(4261), + [aux_sym__val_number_token4] = ACTIONS(4285), + [aux_sym__val_number_token5] = ACTIONS(4285), + [aux_sym__val_number_token6] = ACTIONS(4285), + [anon_sym_0b] = ACTIONS(1944), + [anon_sym_0o] = ACTIONS(1946), + [anon_sym_0x] = ACTIONS(1946), + [sym_val_date] = ACTIONS(4287), + [anon_sym_DQUOTE] = ACTIONS(4267), + [sym__str_single_quotes] = ACTIONS(4269), + [sym__str_back_ticks] = ACTIONS(4269), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4271), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4273), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(1964), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1966), }, [1277] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4442), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3881), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4444), - [sym__unquoted_anonymous_prefix] = STATE(7537), + [sym__val_range] = STATE(7393), + [sym__value] = STATE(1743), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1618), + [sym_val_variable] = STATE(1729), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym_unquoted] = STATE(1744), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1277), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4272), - [aux_sym__val_number_decimal_token3] = ACTIONS(4274), - [aux_sym__val_number_decimal_token4] = ACTIONS(4276), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4278), - [aux_sym__val_number_token5] = ACTIONS(4278), - [aux_sym__val_number_token6] = ACTIONS(4278), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4293), + [anon_sym_DOT_DOT_LT] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4311), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, [1278] = { - [sym__val_range] = STATE(7379), - [sym__value] = STATE(1722), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1691), - [sym_val_variable] = STATE(1751), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1373), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym_unquoted] = STATE(1723), - [sym__unquoted_anonymous_prefix] = STATE(7688), + [sym__val_range] = STATE(7393), + [sym__value] = STATE(1764), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1618), + [sym_val_variable] = STATE(1729), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym_unquoted] = STATE(1766), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1278), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4284), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), - [anon_sym_DOT_DOT_LT] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4288), - [anon_sym_true] = ACTIONS(4290), - [anon_sym_false] = ACTIONS(4290), - [aux_sym__val_number_decimal_token1] = ACTIONS(4292), - [aux_sym__val_number_decimal_token2] = ACTIONS(4294), - [aux_sym__val_number_decimal_token3] = ACTIONS(4296), - [aux_sym__val_number_decimal_token4] = ACTIONS(4298), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4300), - [aux_sym__val_number_token5] = ACTIONS(4300), - [aux_sym__val_number_token6] = ACTIONS(4300), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4302), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4304), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4293), + [anon_sym_DOT_DOT_LT] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4311), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, [1279] = { - [sym__val_range] = STATE(7379), - [sym__value] = STATE(1727), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1691), - [sym_val_variable] = STATE(1751), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1373), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym_unquoted] = STATE(1728), - [sym__unquoted_anonymous_prefix] = STATE(7688), + [sym__val_range] = STATE(7479), + [sym__value] = STATE(5775), + [sym_val_nothing] = STATE(5714), + [sym_val_bool] = STATE(5454), + [sym_val_variable] = STATE(5714), + [sym_val_number] = STATE(5714), + [sym__val_number_decimal] = STATE(4877), + [sym__val_number] = STATE(5584), + [sym_val_duration] = STATE(5714), + [sym_val_filesize] = STATE(5714), + [sym_val_binary] = STATE(5714), + [sym_val_string] = STATE(5714), + [sym__raw_str] = STATE(5412), + [sym__str_double_quotes] = STATE(5412), + [sym_val_interpolated] = STATE(5714), + [sym__inter_single_quotes] = STATE(5585), + [sym__inter_double_quotes] = STATE(5586), + [sym_val_list] = STATE(5714), + [sym_val_record] = STATE(5714), + [sym_val_table] = STATE(5714), + [sym_val_closure] = STATE(5714), + [sym_unquoted] = STATE(5778), + [sym__unquoted_anonymous_prefix] = STATE(7417), [sym_comment] = STATE(1279), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4284), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), - [anon_sym_DOT_DOT_LT] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4288), - [anon_sym_true] = ACTIONS(4290), - [anon_sym_false] = ACTIONS(4290), - [aux_sym__val_number_decimal_token1] = ACTIONS(4292), - [aux_sym__val_number_decimal_token2] = ACTIONS(4294), - [aux_sym__val_number_decimal_token3] = ACTIONS(4296), - [aux_sym__val_number_decimal_token4] = ACTIONS(4298), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4300), - [aux_sym__val_number_token5] = ACTIONS(4300), - [aux_sym__val_number_token6] = ACTIONS(4300), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4302), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4304), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_DOLLAR] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_DOT_DOT] = ACTIONS(4321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4323), + [anon_sym_DOT_DOT_LT] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [aux_sym__val_number_decimal_token1] = ACTIONS(4329), + [aux_sym__val_number_decimal_token2] = ACTIONS(4331), + [aux_sym__val_number_decimal_token3] = ACTIONS(4333), + [aux_sym__val_number_decimal_token4] = ACTIONS(4335), + [aux_sym__val_number_token1] = ACTIONS(4337), + [aux_sym__val_number_token2] = ACTIONS(4337), + [aux_sym__val_number_token3] = ACTIONS(4337), + [aux_sym__val_number_token4] = ACTIONS(4339), + [aux_sym__val_number_token5] = ACTIONS(4339), + [aux_sym__val_number_token6] = ACTIONS(4339), + [anon_sym_0b] = ACTIONS(4341), + [anon_sym_0o] = ACTIONS(4343), + [anon_sym_0x] = ACTIONS(4343), + [sym_val_date] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4347), + [sym__str_single_quotes] = ACTIONS(4349), + [sym__str_back_ticks] = ACTIONS(4349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4353), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4357), }, [1280] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(5773), - [sym_val_nothing] = STATE(5601), - [sym_val_bool] = STATE(5523), - [sym_val_variable] = STATE(5601), - [sym_val_number] = STATE(5601), - [sym__val_number_decimal] = STATE(4889), - [sym__val_number] = STATE(5681), - [sym_val_duration] = STATE(5601), - [sym_val_filesize] = STATE(5601), - [sym_val_binary] = STATE(5601), - [sym_val_string] = STATE(5601), - [sym__raw_str] = STATE(5406), - [sym__str_double_quotes] = STATE(5406), - [sym_val_interpolated] = STATE(5601), - [sym__inter_single_quotes] = STATE(5690), - [sym__inter_double_quotes] = STATE(5691), - [sym_val_list] = STATE(5601), - [sym_val_record] = STATE(5601), - [sym_val_table] = STATE(5601), - [sym_val_closure] = STATE(5601), - [sym_unquoted] = STATE(5777), - [sym__unquoted_anonymous_prefix] = STATE(7399), + [sym__val_range] = STATE(7393), + [sym__value] = STATE(1771), + [sym_val_nothing] = STATE(1729), + [sym_val_bool] = STATE(1618), + [sym_val_variable] = STATE(1729), + [sym_val_number] = STATE(1729), + [sym__val_number_decimal] = STATE(1344), + [sym__val_number] = STATE(1731), + [sym_val_duration] = STATE(1729), + [sym_val_filesize] = STATE(1729), + [sym_val_binary] = STATE(1729), + [sym_val_string] = STATE(1729), + [sym__raw_str] = STATE(1713), + [sym__str_double_quotes] = STATE(1713), + [sym_val_interpolated] = STATE(1729), + [sym__inter_single_quotes] = STATE(1739), + [sym__inter_double_quotes] = STATE(1733), + [sym_val_list] = STATE(1729), + [sym_val_record] = STATE(1729), + [sym_val_table] = STATE(1729), + [sym_val_closure] = STATE(1729), + [sym_unquoted] = STATE(1772), + [sym__unquoted_anonymous_prefix] = STATE(7642), [sym_comment] = STATE(1280), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4308), - [anon_sym_DOLLAR] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), - [anon_sym_DOT_DOT_LT] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [aux_sym__val_number_decimal_token1] = ACTIONS(4322), - [aux_sym__val_number_decimal_token2] = ACTIONS(4324), - [aux_sym__val_number_decimal_token3] = ACTIONS(4326), - [aux_sym__val_number_decimal_token4] = ACTIONS(4328), - [aux_sym__val_number_token1] = ACTIONS(4330), - [aux_sym__val_number_token2] = ACTIONS(4330), - [aux_sym__val_number_token3] = ACTIONS(4330), - [aux_sym__val_number_token4] = ACTIONS(4332), - [aux_sym__val_number_token5] = ACTIONS(4332), - [aux_sym__val_number_token6] = ACTIONS(4332), - [anon_sym_0b] = ACTIONS(4334), - [anon_sym_0o] = ACTIONS(4336), - [anon_sym_0x] = ACTIONS(4336), - [sym_val_date] = ACTIONS(4338), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym__str_single_quotes] = ACTIONS(4342), - [sym__str_back_ticks] = ACTIONS(4342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(2598), + [anon_sym_LPAREN] = ACTIONS(4289), + [anon_sym_DOLLAR] = ACTIONS(3968), + [anon_sym_LBRACE] = ACTIONS(2608), + [anon_sym_DOT_DOT] = ACTIONS(4291), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4293), + [anon_sym_DOT_DOT_LT] = ACTIONS(4293), + [anon_sym_null] = ACTIONS(4295), + [anon_sym_true] = ACTIONS(4297), + [anon_sym_false] = ACTIONS(4297), + [aux_sym__val_number_decimal_token1] = ACTIONS(4299), + [aux_sym__val_number_decimal_token2] = ACTIONS(4301), + [aux_sym__val_number_decimal_token3] = ACTIONS(4303), + [aux_sym__val_number_decimal_token4] = ACTIONS(4305), + [aux_sym__val_number_token1] = ACTIONS(2626), + [aux_sym__val_number_token2] = ACTIONS(2626), + [aux_sym__val_number_token3] = ACTIONS(2626), + [aux_sym__val_number_token4] = ACTIONS(4307), + [aux_sym__val_number_token5] = ACTIONS(4307), + [aux_sym__val_number_token6] = ACTIONS(4307), + [anon_sym_0b] = ACTIONS(2630), + [anon_sym_0o] = ACTIONS(2632), + [anon_sym_0x] = ACTIONS(2632), + [sym_val_date] = ACTIONS(4309), + [anon_sym_DQUOTE] = ACTIONS(2636), + [sym__str_single_quotes] = ACTIONS(2638), + [sym__str_back_ticks] = ACTIONS(2638), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2640), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2642), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4311), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2650), }, [1281] = { - [sym__val_range] = STATE(7379), - [sym__value] = STATE(1730), - [sym_val_nothing] = STATE(1751), - [sym_val_bool] = STATE(1691), - [sym_val_variable] = STATE(1751), - [sym_val_number] = STATE(1751), - [sym__val_number_decimal] = STATE(1373), - [sym__val_number] = STATE(1752), - [sym_val_duration] = STATE(1751), - [sym_val_filesize] = STATE(1751), - [sym_val_binary] = STATE(1751), - [sym_val_string] = STATE(1751), - [sym__raw_str] = STATE(1786), - [sym__str_double_quotes] = STATE(1786), - [sym_val_interpolated] = STATE(1751), - [sym__inter_single_quotes] = STATE(1779), - [sym__inter_double_quotes] = STATE(1780), - [sym_val_list] = STATE(1751), - [sym_val_record] = STATE(1751), - [sym_val_table] = STATE(1751), - [sym_val_closure] = STATE(1751), - [sym_unquoted] = STATE(1731), - [sym__unquoted_anonymous_prefix] = STATE(7688), + [sym__val_range] = STATE(7479), + [sym__value] = STATE(5602), + [sym_val_nothing] = STATE(5714), + [sym_val_bool] = STATE(5454), + [sym_val_variable] = STATE(5714), + [sym_val_number] = STATE(5714), + [sym__val_number_decimal] = STATE(4877), + [sym__val_number] = STATE(5584), + [sym_val_duration] = STATE(5714), + [sym_val_filesize] = STATE(5714), + [sym_val_binary] = STATE(5714), + [sym_val_string] = STATE(5714), + [sym__raw_str] = STATE(5412), + [sym__str_double_quotes] = STATE(5412), + [sym_val_interpolated] = STATE(5714), + [sym__inter_single_quotes] = STATE(5585), + [sym__inter_double_quotes] = STATE(5586), + [sym_val_list] = STATE(5714), + [sym_val_record] = STATE(5714), + [sym_val_table] = STATE(5714), + [sym_val_closure] = STATE(5714), + [sym_unquoted] = STATE(5667), + [sym__unquoted_anonymous_prefix] = STATE(7417), [sym_comment] = STATE(1281), - [anon_sym_LBRACK] = ACTIONS(2695), - [anon_sym_LPAREN] = ACTIONS(4282), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_LBRACE] = ACTIONS(2705), - [anon_sym_DOT_DOT] = ACTIONS(4284), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4286), - [anon_sym_DOT_DOT_LT] = ACTIONS(4286), - [anon_sym_null] = ACTIONS(4288), - [anon_sym_true] = ACTIONS(4290), - [anon_sym_false] = ACTIONS(4290), - [aux_sym__val_number_decimal_token1] = ACTIONS(4292), - [aux_sym__val_number_decimal_token2] = ACTIONS(4294), - [aux_sym__val_number_decimal_token3] = ACTIONS(4296), - [aux_sym__val_number_decimal_token4] = ACTIONS(4298), - [aux_sym__val_number_token1] = ACTIONS(2723), - [aux_sym__val_number_token2] = ACTIONS(2723), - [aux_sym__val_number_token3] = ACTIONS(2723), - [aux_sym__val_number_token4] = ACTIONS(4300), - [aux_sym__val_number_token5] = ACTIONS(4300), - [aux_sym__val_number_token6] = ACTIONS(4300), - [anon_sym_0b] = ACTIONS(2727), - [anon_sym_0o] = ACTIONS(2729), - [anon_sym_0x] = ACTIONS(2729), - [sym_val_date] = ACTIONS(4302), - [anon_sym_DQUOTE] = ACTIONS(2733), - [sym__str_single_quotes] = ACTIONS(2735), - [sym__str_back_ticks] = ACTIONS(2735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2737), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2739), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4304), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2747), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_DOLLAR] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_DOT_DOT] = ACTIONS(4321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4323), + [anon_sym_DOT_DOT_LT] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [aux_sym__val_number_decimal_token1] = ACTIONS(4329), + [aux_sym__val_number_decimal_token2] = ACTIONS(4331), + [aux_sym__val_number_decimal_token3] = ACTIONS(4333), + [aux_sym__val_number_decimal_token4] = ACTIONS(4335), + [aux_sym__val_number_token1] = ACTIONS(4337), + [aux_sym__val_number_token2] = ACTIONS(4337), + [aux_sym__val_number_token3] = ACTIONS(4337), + [aux_sym__val_number_token4] = ACTIONS(4339), + [aux_sym__val_number_token5] = ACTIONS(4339), + [aux_sym__val_number_token6] = ACTIONS(4339), + [anon_sym_0b] = ACTIONS(4341), + [anon_sym_0o] = ACTIONS(4343), + [anon_sym_0x] = ACTIONS(4343), + [sym_val_date] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4347), + [sym__str_single_quotes] = ACTIONS(4349), + [sym__str_back_ticks] = ACTIONS(4349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4353), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4357), }, [1282] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(5799), - [sym_val_nothing] = STATE(5601), - [sym_val_bool] = STATE(5523), - [sym_val_variable] = STATE(5601), - [sym_val_number] = STATE(5601), - [sym__val_number_decimal] = STATE(4889), - [sym__val_number] = STATE(5681), - [sym_val_duration] = STATE(5601), - [sym_val_filesize] = STATE(5601), - [sym_val_binary] = STATE(5601), - [sym_val_string] = STATE(5601), - [sym__raw_str] = STATE(5406), - [sym__str_double_quotes] = STATE(5406), - [sym_val_interpolated] = STATE(5601), - [sym__inter_single_quotes] = STATE(5690), - [sym__inter_double_quotes] = STATE(5691), - [sym_val_list] = STATE(5601), - [sym_val_record] = STATE(5601), - [sym_val_table] = STATE(5601), - [sym_val_closure] = STATE(5601), - [sym_unquoted] = STATE(5800), - [sym__unquoted_anonymous_prefix] = STATE(7399), + [sym__val_range] = STATE(7479), + [sym__value] = STATE(5727), + [sym_val_nothing] = STATE(5714), + [sym_val_bool] = STATE(5454), + [sym_val_variable] = STATE(5714), + [sym_val_number] = STATE(5714), + [sym__val_number_decimal] = STATE(4877), + [sym__val_number] = STATE(5584), + [sym_val_duration] = STATE(5714), + [sym_val_filesize] = STATE(5714), + [sym_val_binary] = STATE(5714), + [sym_val_string] = STATE(5714), + [sym__raw_str] = STATE(5412), + [sym__str_double_quotes] = STATE(5412), + [sym_val_interpolated] = STATE(5714), + [sym__inter_single_quotes] = STATE(5585), + [sym__inter_double_quotes] = STATE(5586), + [sym_val_list] = STATE(5714), + [sym_val_record] = STATE(5714), + [sym_val_table] = STATE(5714), + [sym_val_closure] = STATE(5714), + [sym_unquoted] = STATE(5732), + [sym__unquoted_anonymous_prefix] = STATE(7417), [sym_comment] = STATE(1282), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4308), - [anon_sym_DOLLAR] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), - [anon_sym_DOT_DOT_LT] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [aux_sym__val_number_decimal_token1] = ACTIONS(4322), - [aux_sym__val_number_decimal_token2] = ACTIONS(4324), - [aux_sym__val_number_decimal_token3] = ACTIONS(4326), - [aux_sym__val_number_decimal_token4] = ACTIONS(4328), - [aux_sym__val_number_token1] = ACTIONS(4330), - [aux_sym__val_number_token2] = ACTIONS(4330), - [aux_sym__val_number_token3] = ACTIONS(4330), - [aux_sym__val_number_token4] = ACTIONS(4332), - [aux_sym__val_number_token5] = ACTIONS(4332), - [aux_sym__val_number_token6] = ACTIONS(4332), - [anon_sym_0b] = ACTIONS(4334), - [anon_sym_0o] = ACTIONS(4336), - [anon_sym_0x] = ACTIONS(4336), - [sym_val_date] = ACTIONS(4338), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym__str_single_quotes] = ACTIONS(4342), - [sym__str_back_ticks] = ACTIONS(4342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_DOLLAR] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_DOT_DOT] = ACTIONS(4321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4323), + [anon_sym_DOT_DOT_LT] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [aux_sym__val_number_decimal_token1] = ACTIONS(4329), + [aux_sym__val_number_decimal_token2] = ACTIONS(4331), + [aux_sym__val_number_decimal_token3] = ACTIONS(4333), + [aux_sym__val_number_decimal_token4] = ACTIONS(4335), + [aux_sym__val_number_token1] = ACTIONS(4337), + [aux_sym__val_number_token2] = ACTIONS(4337), + [aux_sym__val_number_token3] = ACTIONS(4337), + [aux_sym__val_number_token4] = ACTIONS(4339), + [aux_sym__val_number_token5] = ACTIONS(4339), + [aux_sym__val_number_token6] = ACTIONS(4339), + [anon_sym_0b] = ACTIONS(4341), + [anon_sym_0o] = ACTIONS(4343), + [anon_sym_0x] = ACTIONS(4343), + [sym_val_date] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4347), + [sym__str_single_quotes] = ACTIONS(4349), + [sym__str_back_ticks] = ACTIONS(4349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4353), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4357), }, [1283] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(5719), - [sym_val_nothing] = STATE(5601), - [sym_val_bool] = STATE(5523), - [sym_val_variable] = STATE(5601), - [sym_val_number] = STATE(5601), - [sym__val_number_decimal] = STATE(4889), - [sym__val_number] = STATE(5681), - [sym_val_duration] = STATE(5601), - [sym_val_filesize] = STATE(5601), - [sym_val_binary] = STATE(5601), - [sym_val_string] = STATE(5601), - [sym__raw_str] = STATE(5406), - [sym__str_double_quotes] = STATE(5406), - [sym_val_interpolated] = STATE(5601), - [sym__inter_single_quotes] = STATE(5690), - [sym__inter_double_quotes] = STATE(5691), - [sym_val_list] = STATE(5601), - [sym_val_record] = STATE(5601), - [sym_val_table] = STATE(5601), - [sym_val_closure] = STATE(5601), - [sym_unquoted] = STATE(5731), - [sym__unquoted_anonymous_prefix] = STATE(7399), + [sym__val_range] = STATE(7550), + [sym__value] = STATE(5557), + [sym_val_nothing] = STATE(5422), + [sym_val_bool] = STATE(5349), + [sym_val_variable] = STATE(5422), + [sym_val_number] = STATE(5422), + [sym__val_number_decimal] = STATE(4568), + [sym__val_number] = STATE(5483), + [sym_val_duration] = STATE(5422), + [sym_val_filesize] = STATE(5422), + [sym_val_binary] = STATE(5422), + [sym_val_string] = STATE(5422), + [sym__raw_str] = STATE(5149), + [sym__str_double_quotes] = STATE(5149), + [sym_val_interpolated] = STATE(5422), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5486), + [sym_val_list] = STATE(5422), + [sym_val_record] = STATE(5422), + [sym_val_table] = STATE(5422), + [sym_val_closure] = STATE(5422), + [sym_unquoted] = STATE(5423), + [sym__unquoted_anonymous_prefix] = STATE(7395), [sym_comment] = STATE(1283), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4308), - [anon_sym_DOLLAR] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), - [anon_sym_DOT_DOT_LT] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [aux_sym__val_number_decimal_token1] = ACTIONS(4322), - [aux_sym__val_number_decimal_token2] = ACTIONS(4324), - [aux_sym__val_number_decimal_token3] = ACTIONS(4326), - [aux_sym__val_number_decimal_token4] = ACTIONS(4328), - [aux_sym__val_number_token1] = ACTIONS(4330), - [aux_sym__val_number_token2] = ACTIONS(4330), - [aux_sym__val_number_token3] = ACTIONS(4330), - [aux_sym__val_number_token4] = ACTIONS(4332), - [aux_sym__val_number_token5] = ACTIONS(4332), - [aux_sym__val_number_token6] = ACTIONS(4332), - [anon_sym_0b] = ACTIONS(4334), - [anon_sym_0o] = ACTIONS(4336), - [anon_sym_0x] = ACTIONS(4336), - [sym_val_date] = ACTIONS(4338), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym__str_single_quotes] = ACTIONS(4342), - [sym__str_back_ticks] = ACTIONS(4342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(4359), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_DOT_DOT] = ACTIONS(4367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4369), + [anon_sym_DOT_DOT_LT] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [aux_sym__val_number_decimal_token1] = ACTIONS(4375), + [aux_sym__val_number_decimal_token2] = ACTIONS(4377), + [aux_sym__val_number_decimal_token3] = ACTIONS(4379), + [aux_sym__val_number_decimal_token4] = ACTIONS(4381), + [aux_sym__val_number_token1] = ACTIONS(4383), + [aux_sym__val_number_token2] = ACTIONS(4383), + [aux_sym__val_number_token3] = ACTIONS(4383), + [aux_sym__val_number_token4] = ACTIONS(4385), + [aux_sym__val_number_token5] = ACTIONS(4385), + [aux_sym__val_number_token6] = ACTIONS(4385), + [anon_sym_0b] = ACTIONS(4387), + [anon_sym_0o] = ACTIONS(4389), + [anon_sym_0x] = ACTIONS(4389), + [sym_val_date] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym__str_single_quotes] = ACTIONS(4395), + [sym__str_back_ticks] = ACTIONS(4395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4399), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4403), }, [1284] = { - [sym__val_range] = STATE(7557), - [sym__value] = STATE(5478), - [sym_val_nothing] = STATE(5550), - [sym_val_bool] = STATE(5291), - [sym_val_variable] = STATE(5550), - [sym_val_number] = STATE(5550), - [sym__val_number_decimal] = STATE(4667), - [sym__val_number] = STATE(5538), - [sym_val_duration] = STATE(5550), - [sym_val_filesize] = STATE(5550), - [sym_val_binary] = STATE(5550), - [sym_val_string] = STATE(5550), - [sym__raw_str] = STATE(5198), - [sym__str_double_quotes] = STATE(5198), - [sym_val_interpolated] = STATE(5550), - [sym__inter_single_quotes] = STATE(5545), - [sym__inter_double_quotes] = STATE(5548), - [sym_val_list] = STATE(5550), - [sym_val_record] = STATE(5550), - [sym_val_table] = STATE(5550), - [sym_val_closure] = STATE(5550), - [sym_unquoted] = STATE(5485), - [sym__unquoted_anonymous_prefix] = STATE(7383), + [sym__val_range] = STATE(7479), + [sym__value] = STATE(5575), + [sym_val_nothing] = STATE(5714), + [sym_val_bool] = STATE(5454), + [sym_val_variable] = STATE(5714), + [sym_val_number] = STATE(5714), + [sym__val_number_decimal] = STATE(4877), + [sym__val_number] = STATE(5584), + [sym_val_duration] = STATE(5714), + [sym_val_filesize] = STATE(5714), + [sym_val_binary] = STATE(5714), + [sym_val_string] = STATE(5714), + [sym__raw_str] = STATE(5412), + [sym__str_double_quotes] = STATE(5412), + [sym_val_interpolated] = STATE(5714), + [sym__inter_single_quotes] = STATE(5585), + [sym__inter_double_quotes] = STATE(5586), + [sym_val_list] = STATE(5714), + [sym_val_record] = STATE(5714), + [sym_val_table] = STATE(5714), + [sym_val_closure] = STATE(5714), + [sym_unquoted] = STATE(5588), + [sym__unquoted_anonymous_prefix] = STATE(7417), [sym_comment] = STATE(1284), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [anon_sym_true] = ACTIONS(4366), - [anon_sym_false] = ACTIONS(4366), - [aux_sym__val_number_decimal_token1] = ACTIONS(4368), - [aux_sym__val_number_decimal_token2] = ACTIONS(4370), - [aux_sym__val_number_decimal_token3] = ACTIONS(4372), - [aux_sym__val_number_decimal_token4] = ACTIONS(4374), - [aux_sym__val_number_token1] = ACTIONS(4376), - [aux_sym__val_number_token2] = ACTIONS(4376), - [aux_sym__val_number_token3] = ACTIONS(4376), - [aux_sym__val_number_token4] = ACTIONS(4378), - [aux_sym__val_number_token5] = ACTIONS(4378), - [aux_sym__val_number_token6] = ACTIONS(4378), - [anon_sym_0b] = ACTIONS(4380), - [anon_sym_0o] = ACTIONS(4382), - [anon_sym_0x] = ACTIONS(4382), - [sym_val_date] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4386), - [sym__str_single_quotes] = ACTIONS(4388), - [sym__str_back_ticks] = ACTIONS(4388), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4394), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4313), + [anon_sym_LPAREN] = ACTIONS(4315), + [anon_sym_DOLLAR] = ACTIONS(4317), + [anon_sym_LBRACE] = ACTIONS(4319), + [anon_sym_DOT_DOT] = ACTIONS(4321), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4323), + [anon_sym_DOT_DOT_LT] = ACTIONS(4323), + [anon_sym_null] = ACTIONS(4325), + [anon_sym_true] = ACTIONS(4327), + [anon_sym_false] = ACTIONS(4327), + [aux_sym__val_number_decimal_token1] = ACTIONS(4329), + [aux_sym__val_number_decimal_token2] = ACTIONS(4331), + [aux_sym__val_number_decimal_token3] = ACTIONS(4333), + [aux_sym__val_number_decimal_token4] = ACTIONS(4335), + [aux_sym__val_number_token1] = ACTIONS(4337), + [aux_sym__val_number_token2] = ACTIONS(4337), + [aux_sym__val_number_token3] = ACTIONS(4337), + [aux_sym__val_number_token4] = ACTIONS(4339), + [aux_sym__val_number_token5] = ACTIONS(4339), + [aux_sym__val_number_token6] = ACTIONS(4339), + [anon_sym_0b] = ACTIONS(4341), + [anon_sym_0o] = ACTIONS(4343), + [anon_sym_0x] = ACTIONS(4343), + [sym_val_date] = ACTIONS(4345), + [anon_sym_DQUOTE] = ACTIONS(4347), + [sym__str_single_quotes] = ACTIONS(4349), + [sym__str_back_ticks] = ACTIONS(4349), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4351), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4353), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4355), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4357), }, [1285] = { - [sym__val_range] = STATE(7471), - [sym__value] = STATE(5792), - [sym_val_nothing] = STATE(5601), - [sym_val_bool] = STATE(5523), - [sym_val_variable] = STATE(5601), - [sym_val_number] = STATE(5601), - [sym__val_number_decimal] = STATE(4889), - [sym__val_number] = STATE(5681), - [sym_val_duration] = STATE(5601), - [sym_val_filesize] = STATE(5601), - [sym_val_binary] = STATE(5601), - [sym_val_string] = STATE(5601), - [sym__raw_str] = STATE(5406), - [sym__str_double_quotes] = STATE(5406), - [sym_val_interpolated] = STATE(5601), - [sym__inter_single_quotes] = STATE(5690), - [sym__inter_double_quotes] = STATE(5691), - [sym_val_list] = STATE(5601), - [sym_val_record] = STATE(5601), - [sym_val_table] = STATE(5601), - [sym_val_closure] = STATE(5601), - [sym_unquoted] = STATE(5576), - [sym__unquoted_anonymous_prefix] = STATE(7399), + [sym__val_range] = STATE(7550), + [sym__value] = STATE(5444), + [sym_val_nothing] = STATE(5422), + [sym_val_bool] = STATE(5349), + [sym_val_variable] = STATE(5422), + [sym_val_number] = STATE(5422), + [sym__val_number_decimal] = STATE(4568), + [sym__val_number] = STATE(5483), + [sym_val_duration] = STATE(5422), + [sym_val_filesize] = STATE(5422), + [sym_val_binary] = STATE(5422), + [sym_val_string] = STATE(5422), + [sym__raw_str] = STATE(5149), + [sym__str_double_quotes] = STATE(5149), + [sym_val_interpolated] = STATE(5422), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5486), + [sym_val_list] = STATE(5422), + [sym_val_record] = STATE(5422), + [sym_val_table] = STATE(5422), + [sym_val_closure] = STATE(5422), + [sym_unquoted] = STATE(5449), + [sym__unquoted_anonymous_prefix] = STATE(7395), [sym_comment] = STATE(1285), - [anon_sym_LBRACK] = ACTIONS(4306), - [anon_sym_LPAREN] = ACTIONS(4308), - [anon_sym_DOLLAR] = ACTIONS(4310), - [anon_sym_LBRACE] = ACTIONS(4312), - [anon_sym_DOT_DOT] = ACTIONS(4314), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4316), - [anon_sym_DOT_DOT_LT] = ACTIONS(4316), - [anon_sym_null] = ACTIONS(4318), - [anon_sym_true] = ACTIONS(4320), - [anon_sym_false] = ACTIONS(4320), - [aux_sym__val_number_decimal_token1] = ACTIONS(4322), - [aux_sym__val_number_decimal_token2] = ACTIONS(4324), - [aux_sym__val_number_decimal_token3] = ACTIONS(4326), - [aux_sym__val_number_decimal_token4] = ACTIONS(4328), - [aux_sym__val_number_token1] = ACTIONS(4330), - [aux_sym__val_number_token2] = ACTIONS(4330), - [aux_sym__val_number_token3] = ACTIONS(4330), - [aux_sym__val_number_token4] = ACTIONS(4332), - [aux_sym__val_number_token5] = ACTIONS(4332), - [aux_sym__val_number_token6] = ACTIONS(4332), - [anon_sym_0b] = ACTIONS(4334), - [anon_sym_0o] = ACTIONS(4336), - [anon_sym_0x] = ACTIONS(4336), - [sym_val_date] = ACTIONS(4338), - [anon_sym_DQUOTE] = ACTIONS(4340), - [sym__str_single_quotes] = ACTIONS(4342), - [sym__str_back_ticks] = ACTIONS(4342), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4344), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4346), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4348), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4350), + [anon_sym_LBRACK] = ACTIONS(4359), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_DOT_DOT] = ACTIONS(4367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4369), + [anon_sym_DOT_DOT_LT] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [aux_sym__val_number_decimal_token1] = ACTIONS(4375), + [aux_sym__val_number_decimal_token2] = ACTIONS(4377), + [aux_sym__val_number_decimal_token3] = ACTIONS(4379), + [aux_sym__val_number_decimal_token4] = ACTIONS(4381), + [aux_sym__val_number_token1] = ACTIONS(4383), + [aux_sym__val_number_token2] = ACTIONS(4383), + [aux_sym__val_number_token3] = ACTIONS(4383), + [aux_sym__val_number_token4] = ACTIONS(4385), + [aux_sym__val_number_token5] = ACTIONS(4385), + [aux_sym__val_number_token6] = ACTIONS(4385), + [anon_sym_0b] = ACTIONS(4387), + [anon_sym_0o] = ACTIONS(4389), + [anon_sym_0x] = ACTIONS(4389), + [sym_val_date] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym__str_single_quotes] = ACTIONS(4395), + [sym__str_back_ticks] = ACTIONS(4395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4399), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4403), }, [1286] = { - [sym__val_range] = STATE(7557), - [sym__value] = STATE(5508), - [sym_val_nothing] = STATE(5550), - [sym_val_bool] = STATE(5291), - [sym_val_variable] = STATE(5550), - [sym_val_number] = STATE(5550), - [sym__val_number_decimal] = STATE(4667), - [sym__val_number] = STATE(5538), - [sym_val_duration] = STATE(5550), - [sym_val_filesize] = STATE(5550), - [sym_val_binary] = STATE(5550), - [sym_val_string] = STATE(5550), - [sym__raw_str] = STATE(5198), - [sym__str_double_quotes] = STATE(5198), - [sym_val_interpolated] = STATE(5550), - [sym__inter_single_quotes] = STATE(5545), - [sym__inter_double_quotes] = STATE(5548), - [sym_val_list] = STATE(5550), - [sym_val_record] = STATE(5550), - [sym_val_table] = STATE(5550), - [sym_val_closure] = STATE(5550), - [sym_unquoted] = STATE(5509), - [sym__unquoted_anonymous_prefix] = STATE(7383), + [sym__val_range] = STATE(7550), + [sym__value] = STATE(5427), + [sym_val_nothing] = STATE(5422), + [sym_val_bool] = STATE(5349), + [sym_val_variable] = STATE(5422), + [sym_val_number] = STATE(5422), + [sym__val_number_decimal] = STATE(4568), + [sym__val_number] = STATE(5483), + [sym_val_duration] = STATE(5422), + [sym_val_filesize] = STATE(5422), + [sym_val_binary] = STATE(5422), + [sym_val_string] = STATE(5422), + [sym__raw_str] = STATE(5149), + [sym__str_double_quotes] = STATE(5149), + [sym_val_interpolated] = STATE(5422), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5486), + [sym_val_list] = STATE(5422), + [sym_val_record] = STATE(5422), + [sym_val_table] = STATE(5422), + [sym_val_closure] = STATE(5422), + [sym_unquoted] = STATE(5431), + [sym__unquoted_anonymous_prefix] = STATE(7395), [sym_comment] = STATE(1286), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [anon_sym_true] = ACTIONS(4366), - [anon_sym_false] = ACTIONS(4366), - [aux_sym__val_number_decimal_token1] = ACTIONS(4368), - [aux_sym__val_number_decimal_token2] = ACTIONS(4370), - [aux_sym__val_number_decimal_token3] = ACTIONS(4372), - [aux_sym__val_number_decimal_token4] = ACTIONS(4374), - [aux_sym__val_number_token1] = ACTIONS(4376), - [aux_sym__val_number_token2] = ACTIONS(4376), - [aux_sym__val_number_token3] = ACTIONS(4376), - [aux_sym__val_number_token4] = ACTIONS(4378), - [aux_sym__val_number_token5] = ACTIONS(4378), - [aux_sym__val_number_token6] = ACTIONS(4378), - [anon_sym_0b] = ACTIONS(4380), - [anon_sym_0o] = ACTIONS(4382), - [anon_sym_0x] = ACTIONS(4382), - [sym_val_date] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4386), - [sym__str_single_quotes] = ACTIONS(4388), - [sym__str_back_ticks] = ACTIONS(4388), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4394), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4359), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_DOT_DOT] = ACTIONS(4367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4369), + [anon_sym_DOT_DOT_LT] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [aux_sym__val_number_decimal_token1] = ACTIONS(4375), + [aux_sym__val_number_decimal_token2] = ACTIONS(4377), + [aux_sym__val_number_decimal_token3] = ACTIONS(4379), + [aux_sym__val_number_decimal_token4] = ACTIONS(4381), + [aux_sym__val_number_token1] = ACTIONS(4383), + [aux_sym__val_number_token2] = ACTIONS(4383), + [aux_sym__val_number_token3] = ACTIONS(4383), + [aux_sym__val_number_token4] = ACTIONS(4385), + [aux_sym__val_number_token5] = ACTIONS(4385), + [aux_sym__val_number_token6] = ACTIONS(4385), + [anon_sym_0b] = ACTIONS(4387), + [anon_sym_0o] = ACTIONS(4389), + [anon_sym_0x] = ACTIONS(4389), + [sym_val_date] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym__str_single_quotes] = ACTIONS(4395), + [sym__str_back_ticks] = ACTIONS(4395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4399), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4403), }, [1287] = { - [sym__val_range] = STATE(7557), - [sym__value] = STATE(5469), - [sym_val_nothing] = STATE(5550), - [sym_val_bool] = STATE(5291), - [sym_val_variable] = STATE(5550), - [sym_val_number] = STATE(5550), - [sym__val_number_decimal] = STATE(4667), - [sym__val_number] = STATE(5538), - [sym_val_duration] = STATE(5550), - [sym_val_filesize] = STATE(5550), - [sym_val_binary] = STATE(5550), - [sym_val_string] = STATE(5550), - [sym__raw_str] = STATE(5198), - [sym__str_double_quotes] = STATE(5198), - [sym_val_interpolated] = STATE(5550), - [sym__inter_single_quotes] = STATE(5545), - [sym__inter_double_quotes] = STATE(5548), - [sym_val_list] = STATE(5550), - [sym_val_record] = STATE(5550), - [sym_val_table] = STATE(5550), - [sym_val_closure] = STATE(5550), - [sym_unquoted] = STATE(5484), - [sym__unquoted_anonymous_prefix] = STATE(7383), + [sym__val_range] = STATE(7550), + [sym__value] = STATE(5445), + [sym_val_nothing] = STATE(5422), + [sym_val_bool] = STATE(5349), + [sym_val_variable] = STATE(5422), + [sym_val_number] = STATE(5422), + [sym__val_number_decimal] = STATE(4568), + [sym__val_number] = STATE(5483), + [sym_val_duration] = STATE(5422), + [sym_val_filesize] = STATE(5422), + [sym_val_binary] = STATE(5422), + [sym_val_string] = STATE(5422), + [sym__raw_str] = STATE(5149), + [sym__str_double_quotes] = STATE(5149), + [sym_val_interpolated] = STATE(5422), + [sym__inter_single_quotes] = STATE(5485), + [sym__inter_double_quotes] = STATE(5486), + [sym_val_list] = STATE(5422), + [sym_val_record] = STATE(5422), + [sym_val_table] = STATE(5422), + [sym_val_closure] = STATE(5422), + [sym_unquoted] = STATE(5446), + [sym__unquoted_anonymous_prefix] = STATE(7395), [sym_comment] = STATE(1287), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [anon_sym_true] = ACTIONS(4366), - [anon_sym_false] = ACTIONS(4366), - [aux_sym__val_number_decimal_token1] = ACTIONS(4368), - [aux_sym__val_number_decimal_token2] = ACTIONS(4370), - [aux_sym__val_number_decimal_token3] = ACTIONS(4372), - [aux_sym__val_number_decimal_token4] = ACTIONS(4374), - [aux_sym__val_number_token1] = ACTIONS(4376), - [aux_sym__val_number_token2] = ACTIONS(4376), - [aux_sym__val_number_token3] = ACTIONS(4376), - [aux_sym__val_number_token4] = ACTIONS(4378), - [aux_sym__val_number_token5] = ACTIONS(4378), - [aux_sym__val_number_token6] = ACTIONS(4378), - [anon_sym_0b] = ACTIONS(4380), - [anon_sym_0o] = ACTIONS(4382), - [anon_sym_0x] = ACTIONS(4382), - [sym_val_date] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4386), - [sym__str_single_quotes] = ACTIONS(4388), - [sym__str_back_ticks] = ACTIONS(4388), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4394), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4396), + [anon_sym_LBRACK] = ACTIONS(4359), + [anon_sym_LPAREN] = ACTIONS(4361), + [anon_sym_DOLLAR] = ACTIONS(4363), + [anon_sym_LBRACE] = ACTIONS(4365), + [anon_sym_DOT_DOT] = ACTIONS(4367), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4369), + [anon_sym_DOT_DOT_LT] = ACTIONS(4369), + [anon_sym_null] = ACTIONS(4371), + [anon_sym_true] = ACTIONS(4373), + [anon_sym_false] = ACTIONS(4373), + [aux_sym__val_number_decimal_token1] = ACTIONS(4375), + [aux_sym__val_number_decimal_token2] = ACTIONS(4377), + [aux_sym__val_number_decimal_token3] = ACTIONS(4379), + [aux_sym__val_number_decimal_token4] = ACTIONS(4381), + [aux_sym__val_number_token1] = ACTIONS(4383), + [aux_sym__val_number_token2] = ACTIONS(4383), + [aux_sym__val_number_token3] = ACTIONS(4383), + [aux_sym__val_number_token4] = ACTIONS(4385), + [aux_sym__val_number_token5] = ACTIONS(4385), + [aux_sym__val_number_token6] = ACTIONS(4385), + [anon_sym_0b] = ACTIONS(4387), + [anon_sym_0o] = ACTIONS(4389), + [anon_sym_0x] = ACTIONS(4389), + [sym_val_date] = ACTIONS(4391), + [anon_sym_DQUOTE] = ACTIONS(4393), + [sym__str_single_quotes] = ACTIONS(4395), + [sym__str_back_ticks] = ACTIONS(4395), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4397), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4399), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4401), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4403), }, [1288] = { - [sym__val_range] = STATE(7557), - [sym__value] = STATE(5447), - [sym_val_nothing] = STATE(5550), - [sym_val_bool] = STATE(5291), - [sym_val_variable] = STATE(5550), - [sym_val_number] = STATE(5550), - [sym__val_number_decimal] = STATE(4667), - [sym__val_number] = STATE(5538), - [sym_val_duration] = STATE(5550), - [sym_val_filesize] = STATE(5550), - [sym_val_binary] = STATE(5550), - [sym_val_string] = STATE(5550), - [sym__raw_str] = STATE(5198), - [sym__str_double_quotes] = STATE(5198), - [sym_val_interpolated] = STATE(5550), - [sym__inter_single_quotes] = STATE(5545), - [sym__inter_double_quotes] = STATE(5548), - [sym_val_list] = STATE(5550), - [sym_val_record] = STATE(5550), - [sym_val_table] = STATE(5550), - [sym_val_closure] = STATE(5550), - [sym_unquoted] = STATE(5459), - [sym__unquoted_anonymous_prefix] = STATE(7383), + [sym__expr_parenthesized_immediate] = STATE(1840), + [sym__immediate_decimal] = STATE(1670), + [sym_val_variable] = STATE(1840), [sym_comment] = STATE(1288), - [anon_sym_LBRACK] = ACTIONS(4352), - [anon_sym_LPAREN] = ACTIONS(4354), - [anon_sym_DOLLAR] = ACTIONS(4356), - [anon_sym_LBRACE] = ACTIONS(4358), - [anon_sym_DOT_DOT] = ACTIONS(4360), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4362), - [anon_sym_DOT_DOT_LT] = ACTIONS(4362), - [anon_sym_null] = ACTIONS(4364), - [anon_sym_true] = ACTIONS(4366), - [anon_sym_false] = ACTIONS(4366), - [aux_sym__val_number_decimal_token1] = ACTIONS(4368), - [aux_sym__val_number_decimal_token2] = ACTIONS(4370), - [aux_sym__val_number_decimal_token3] = ACTIONS(4372), - [aux_sym__val_number_decimal_token4] = ACTIONS(4374), - [aux_sym__val_number_token1] = ACTIONS(4376), - [aux_sym__val_number_token2] = ACTIONS(4376), - [aux_sym__val_number_token3] = ACTIONS(4376), - [aux_sym__val_number_token4] = ACTIONS(4378), - [aux_sym__val_number_token5] = ACTIONS(4378), - [aux_sym__val_number_token6] = ACTIONS(4378), - [anon_sym_0b] = ACTIONS(4380), - [anon_sym_0o] = ACTIONS(4382), - [anon_sym_0x] = ACTIONS(4382), - [sym_val_date] = ACTIONS(4384), - [anon_sym_DQUOTE] = ACTIONS(4386), - [sym__str_single_quotes] = ACTIONS(4388), - [sym__str_back_ticks] = ACTIONS(4388), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4390), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4392), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4394), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4396), - }, - [1289] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_rest] = STATE(7638), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2902), - [sym_val_range] = STATE(3134), - [sym__val_range] = STATE(7495), - [sym_val_nothing] = STATE(3146), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2903), - [sym_val_number] = STATE(3146), - [sym__val_number_decimal] = STATE(2743), - [sym__val_number] = STATE(3166), - [sym_val_duration] = STATE(3146), - [sym_val_filesize] = STATE(3146), - [sym_val_binary] = STATE(3146), - [sym_val_string] = STATE(3146), - [sym__raw_str] = STATE(3154), - [sym__str_double_quotes] = STATE(3154), - [sym_val_table] = STATE(3146), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7504), - [sym_comment] = STATE(1289), - [aux_sym__match_pattern_list_repeat1] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4398), - [anon_sym_RBRACK] = ACTIONS(4400), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_DOLLAR] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(4402), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), - [anon_sym_DOT_DOT_LT] = ACTIONS(3825), - [anon_sym_null] = ACTIONS(3827), - [anon_sym_true] = ACTIONS(3829), - [anon_sym_false] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3831), - [aux_sym__val_number_decimal_token2] = ACTIONS(3833), - [aux_sym__val_number_decimal_token3] = ACTIONS(3835), - [aux_sym__val_number_decimal_token4] = ACTIONS(3837), - [aux_sym__val_number_token1] = ACTIONS(3839), - [aux_sym__val_number_token2] = ACTIONS(3839), - [aux_sym__val_number_token3] = ACTIONS(3839), - [aux_sym__val_number_token4] = ACTIONS(3841), - [aux_sym__val_number_token5] = ACTIONS(3841), - [aux_sym__val_number_token6] = ACTIONS(3841), - [anon_sym_0b] = ACTIONS(3843), - [anon_sym_0o] = ACTIONS(3845), - [anon_sym_0x] = ACTIONS(3845), - [sym_val_date] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3849), - [sym__str_single_quotes] = ACTIONS(3851), - [sym__str_back_ticks] = ACTIONS(3851), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3855), - }, - [1290] = { - [sym__expr_parenthesized_immediate] = STATE(1742), - [sym__immediate_decimal] = STATE(1743), - [sym_val_variable] = STATE(1742), - [sym_comment] = STATE(1290), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_RPAREN] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4404), - [aux_sym__immediate_decimal_token3] = ACTIONS(4406), - [aux_sym__immediate_decimal_token4] = ACTIONS(4408), - [aux_sym__immediate_decimal_token5] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1291] = { - [sym__val_range] = STATE(7439), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(2131), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5438), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(5814), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1291), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(4137), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1292] = { - [sym__val_range] = STATE(7396), - [sym__value] = STATE(1925), - [sym_val_nothing] = STATE(1946), - [sym_val_bool] = STATE(1793), - [sym_val_variable] = STATE(1946), - [sym_val_number] = STATE(1946), - [sym__val_number_decimal] = STATE(1396), - [sym__val_number] = STATE(1947), - [sym_val_duration] = STATE(1946), - [sym_val_filesize] = STATE(1946), - [sym_val_binary] = STATE(1946), - [sym_val_string] = STATE(1946), - [sym__raw_str] = STATE(1945), - [sym__str_double_quotes] = STATE(1945), - [sym_val_interpolated] = STATE(1946), - [sym__inter_single_quotes] = STATE(1895), - [sym__inter_double_quotes] = STATE(1896), - [sym_val_list] = STATE(1946), - [sym_val_record] = STATE(1946), - [sym_val_table] = STATE(1946), - [sym_val_closure] = STATE(1946), - [sym_unquoted] = STATE(1926), - [sym__unquoted_anonymous_prefix] = STATE(7578), - [sym_comment] = STATE(1292), - [anon_sym_LBRACK] = ACTIONS(2941), - [anon_sym_LPAREN] = ACTIONS(4089), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_LBRACE] = ACTIONS(2951), - [anon_sym_DOT_DOT] = ACTIONS(4093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4095), - [anon_sym_DOT_DOT_LT] = ACTIONS(4095), - [anon_sym_null] = ACTIONS(4097), - [anon_sym_true] = ACTIONS(4099), - [anon_sym_false] = ACTIONS(4099), - [aux_sym__val_number_decimal_token1] = ACTIONS(4101), - [aux_sym__val_number_decimal_token2] = ACTIONS(4103), - [aux_sym__val_number_decimal_token3] = ACTIONS(4105), - [aux_sym__val_number_decimal_token4] = ACTIONS(4107), - [aux_sym__val_number_token1] = ACTIONS(2969), - [aux_sym__val_number_token2] = ACTIONS(2969), - [aux_sym__val_number_token3] = ACTIONS(2969), - [aux_sym__val_number_token4] = ACTIONS(4109), - [aux_sym__val_number_token5] = ACTIONS(4109), - [aux_sym__val_number_token6] = ACTIONS(4109), - [anon_sym_0b] = ACTIONS(2973), - [anon_sym_0o] = ACTIONS(2975), - [anon_sym_0x] = ACTIONS(2975), - [sym_val_date] = ACTIONS(4111), - [anon_sym_DQUOTE] = ACTIONS(2979), - [sym__str_single_quotes] = ACTIONS(2981), - [sym__str_back_ticks] = ACTIONS(2981), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2985), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4113), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2989), - }, - [1293] = { - [sym__expr_parenthesized_immediate] = STATE(7220), - [sym_comment] = STATE(1293), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT2] = ACTIONS(4414), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4416), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4416), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4418), - [sym_duration_unit] = ACTIONS(4420), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4422), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [1294] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5911), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5058), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5913), - [sym__unquoted_anonymous_prefix] = STATE(7738), - [sym_comment] = STATE(1294), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4063), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4075), - [aux_sym__val_number_decimal_token2] = ACTIONS(4077), - [aux_sym__val_number_decimal_token3] = ACTIONS(4079), - [aux_sym__val_number_decimal_token4] = ACTIONS(4081), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4083), - [aux_sym__val_number_token5] = ACTIONS(4083), - [aux_sym__val_number_token6] = ACTIONS(4083), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1295] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5058), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5814), - [sym__unquoted_anonymous_prefix] = STATE(7738), - [sym_comment] = STATE(1295), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4063), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4075), - [aux_sym__val_number_decimal_token2] = ACTIONS(4077), - [aux_sym__val_number_decimal_token3] = ACTIONS(4079), - [aux_sym__val_number_decimal_token4] = ACTIONS(4081), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4083), - [aux_sym__val_number_token5] = ACTIONS(4083), - [aux_sym__val_number_token6] = ACTIONS(4083), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1296] = { - [sym__val_range] = STATE(7567), - [sym__value] = STATE(2968), - [sym_val_nothing] = STATE(2967), - [sym_val_bool] = STATE(2936), - [sym_val_variable] = STATE(2967), - [sym_val_number] = STATE(2967), - [sym__val_number_decimal] = STATE(2574), - [sym__val_number] = STATE(3035), - [sym_val_duration] = STATE(2967), - [sym_val_filesize] = STATE(2967), - [sym_val_binary] = STATE(2967), - [sym_val_string] = STATE(2967), - [sym__raw_str] = STATE(3030), - [sym__str_double_quotes] = STATE(3030), - [sym_val_interpolated] = STATE(2967), - [sym__inter_single_quotes] = STATE(2985), - [sym__inter_double_quotes] = STATE(2993), - [sym_val_list] = STATE(2967), - [sym_val_record] = STATE(2967), - [sym_val_table] = STATE(2967), - [sym_val_closure] = STATE(2967), - [sym_unquoted] = STATE(2971), - [sym__unquoted_anonymous_prefix] = STATE(7742), - [sym_comment] = STATE(1296), - [anon_sym_LBRACK] = ACTIONS(4220), - [anon_sym_LPAREN] = ACTIONS(4222), - [anon_sym_DOLLAR] = ACTIONS(4224), - [anon_sym_LBRACE] = ACTIONS(4226), - [anon_sym_DOT_DOT] = ACTIONS(4228), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4230), - [anon_sym_DOT_DOT_LT] = ACTIONS(4230), - [anon_sym_null] = ACTIONS(4232), - [anon_sym_true] = ACTIONS(4234), - [anon_sym_false] = ACTIONS(4234), - [aux_sym__val_number_decimal_token1] = ACTIONS(4236), - [aux_sym__val_number_decimal_token2] = ACTIONS(4238), - [aux_sym__val_number_decimal_token3] = ACTIONS(4240), - [aux_sym__val_number_decimal_token4] = ACTIONS(4242), - [aux_sym__val_number_token1] = ACTIONS(4244), - [aux_sym__val_number_token2] = ACTIONS(4244), - [aux_sym__val_number_token3] = ACTIONS(4244), - [aux_sym__val_number_token4] = ACTIONS(4246), - [aux_sym__val_number_token5] = ACTIONS(4246), - [aux_sym__val_number_token6] = ACTIONS(4246), - [anon_sym_0b] = ACTIONS(4248), - [anon_sym_0o] = ACTIONS(4250), - [anon_sym_0x] = ACTIONS(4250), - [sym_val_date] = ACTIONS(4252), - [anon_sym_DQUOTE] = ACTIONS(4254), - [sym__str_single_quotes] = ACTIONS(4256), - [sym__str_back_ticks] = ACTIONS(4256), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4258), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4260), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4262), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4264), - }, - [1297] = { - [sym__expr_parenthesized_immediate] = STATE(1744), - [sym__immediate_decimal] = STATE(1745), - [sym_val_variable] = STATE(1744), - [sym_comment] = STATE(1297), - [sym__newline] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_err_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_GT_PIPE] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_DOT_DOT_LT] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4404), - [aux_sym__immediate_decimal_token3] = ACTIONS(4406), - [aux_sym__immediate_decimal_token4] = ACTIONS(4408), - [aux_sym__immediate_decimal_token5] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1665), - [aux_sym__val_number_token2] = ACTIONS(1665), - [aux_sym__val_number_token3] = ACTIONS(1665), - [aux_sym__val_number_token4] = ACTIONS(1665), - [aux_sym__val_number_token5] = ACTIONS(1665), - [aux_sym__val_number_token6] = ACTIONS(1665), - [anon_sym_0b] = ACTIONS(1657), - [anon_sym_0o] = ACTIONS(1657), - [anon_sym_0x] = ACTIONS(1657), - [sym_val_date] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym__str_single_quotes] = ACTIONS(1665), - [sym__str_back_ticks] = ACTIONS(1665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1665), - [anon_sym_out_GT_GT] = ACTIONS(1665), - [anon_sym_e_GT_GT] = ACTIONS(1665), - [anon_sym_o_GT_GT] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), - [aux_sym_unquoted_token1] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1665), - }, - [1298] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(6049), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5062), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5814), - [sym__unquoted_anonymous_prefix] = STATE(7738), - [sym_comment] = STATE(1298), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1299] = { - [sym__expr_parenthesized_immediate] = STATE(1734), - [sym__immediate_decimal] = STATE(1735), - [sym_val_variable] = STATE(1734), - [sym_comment] = STATE(1299), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4404), - [aux_sym__immediate_decimal_token3] = ACTIONS(4406), - [aux_sym__immediate_decimal_token4] = ACTIONS(4408), - [aux_sym__immediate_decimal_token5] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), - }, - [1300] = { - [sym_comment] = STATE(1300), + [ts_builtin_sym_end] = ACTIONS(1589), [sym__newline] = ACTIONS(1589), [anon_sym_SEMI] = ACTIONS(1589), [anon_sym_PIPE] = ACTIONS(1589), @@ -206432,27 +205615,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), [anon_sym_LBRACK] = ACTIONS(1589), [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), + [anon_sym_DOLLAR] = ACTIONS(4014), [anon_sym_DASH_DASH] = ACTIONS(1589), [anon_sym_DASH2] = ACTIONS(1587), [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4019), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1589), + [anon_sym_DOT_DOT_LT] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(4156), + [aux_sym__immediate_decimal_token3] = ACTIONS(4158), + [aux_sym__immediate_decimal_token4] = ACTIONS(4160), + [aux_sym__immediate_decimal_token5] = ACTIONS(4162), [anon_sym_null] = ACTIONS(1589), [anon_sym_true] = ACTIONS(1589), [anon_sym_false] = ACTIONS(1589), [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), + [aux_sym__val_number_decimal_token2] = ACTIONS(1587), + [aux_sym__val_number_decimal_token3] = ACTIONS(1587), + [aux_sym__val_number_decimal_token4] = ACTIONS(1587), [aux_sym__val_number_token1] = ACTIONS(1589), [aux_sym__val_number_token2] = ACTIONS(1589), [aux_sym__val_number_token3] = ACTIONS(1589), @@ -206460,8 +205641,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token5] = ACTIONS(1589), [aux_sym__val_number_token6] = ACTIONS(1589), [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), [anon_sym_0o] = ACTIONS(1587), [anon_sym_0x] = ACTIONS(1587), [sym_val_date] = ACTIONS(1589), @@ -206487,530 +205666,602 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), + [aux_sym_unquoted_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1589), }, - [1301] = { - [sym__val_range] = STATE(7439), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(2131), - [sym_val_bool] = STATE(7261), - [sym_val_variable] = STATE(2131), - [sym_val_number] = STATE(2131), - [sym__val_number_decimal] = STATE(5438), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(2131), - [sym_val_filesize] = STATE(2131), - [sym_val_binary] = STATE(2131), - [sym_val_string] = STATE(2131), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(2131), - [sym__inter_single_quotes] = STATE(2149), - [sym__inter_double_quotes] = STATE(2143), - [sym_val_list] = STATE(2131), - [sym_val_record] = STATE(2131), - [sym_val_table] = STATE(2131), - [sym_val_closure] = STATE(2131), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1301), - [anon_sym_LBRACK] = ACTIONS(3857), - [anon_sym_LPAREN] = ACTIONS(4137), - [anon_sym_DOLLAR] = ACTIONS(3861), - [anon_sym_LBRACE] = ACTIONS(3863), - [anon_sym_DOT_DOT] = ACTIONS(4139), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4141), - [anon_sym_DOT_DOT_LT] = ACTIONS(4141), - [anon_sym_null] = ACTIONS(3869), - [anon_sym_true] = ACTIONS(3871), - [anon_sym_false] = ACTIONS(3871), - [aux_sym__val_number_decimal_token1] = ACTIONS(3873), - [aux_sym__val_number_decimal_token2] = ACTIONS(3875), - [aux_sym__val_number_decimal_token3] = ACTIONS(3877), - [aux_sym__val_number_decimal_token4] = ACTIONS(3879), + [1289] = { + [sym__val_range] = STATE(7646), + [sym__value] = STATE(5919), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(2134), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(5924), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1289), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(4048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4050), + [anon_sym_DOT_DOT_LT] = ACTIONS(4050), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), [aux_sym__val_number_token1] = ACTIONS(227), [aux_sym__val_number_token2] = ACTIONS(227), [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(3881), - [aux_sym__val_number_token5] = ACTIONS(3881), - [aux_sym__val_number_token6] = ACTIONS(3881), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), [anon_sym_0b] = ACTIONS(231), [anon_sym_0o] = ACTIONS(233), [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(3883), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1302] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_rest] = STATE(7436), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2902), - [sym_val_range] = STATE(3134), - [sym__val_range] = STATE(7495), - [sym_val_nothing] = STATE(3146), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2903), - [sym_val_number] = STATE(3146), - [sym__val_number_decimal] = STATE(2743), - [sym__val_number] = STATE(3166), - [sym_val_duration] = STATE(3146), - [sym_val_filesize] = STATE(3146), - [sym_val_binary] = STATE(3146), - [sym_val_string] = STATE(3146), - [sym__raw_str] = STATE(3154), - [sym__str_double_quotes] = STATE(3154), - [sym_val_table] = STATE(3146), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7504), - [sym_comment] = STATE(1302), - [aux_sym__match_pattern_list_repeat1] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4398), - [anon_sym_RBRACK] = ACTIONS(4424), - [anon_sym_LPAREN] = ACTIONS(3817), - [anon_sym_DOLLAR] = ACTIONS(3819), - [anon_sym_LBRACE] = ACTIONS(3821), - [anon_sym_DOT_DOT] = ACTIONS(4426), - [anon_sym_DOT_DOT_EQ] = ACTIONS(3825), - [anon_sym_DOT_DOT_LT] = ACTIONS(3825), - [anon_sym_null] = ACTIONS(3827), - [anon_sym_true] = ACTIONS(3829), - [anon_sym_false] = ACTIONS(3829), - [aux_sym__val_number_decimal_token1] = ACTIONS(3831), - [aux_sym__val_number_decimal_token2] = ACTIONS(3833), - [aux_sym__val_number_decimal_token3] = ACTIONS(3835), - [aux_sym__val_number_decimal_token4] = ACTIONS(3837), - [aux_sym__val_number_token1] = ACTIONS(3839), - [aux_sym__val_number_token2] = ACTIONS(3839), - [aux_sym__val_number_token3] = ACTIONS(3839), - [aux_sym__val_number_token4] = ACTIONS(3841), - [aux_sym__val_number_token5] = ACTIONS(3841), - [aux_sym__val_number_token6] = ACTIONS(3841), - [anon_sym_0b] = ACTIONS(3843), - [anon_sym_0o] = ACTIONS(3845), - [anon_sym_0x] = ACTIONS(3845), - [sym_val_date] = ACTIONS(3847), - [anon_sym_DQUOTE] = ACTIONS(3849), - [sym__str_single_quotes] = ACTIONS(3851), - [sym__str_back_ticks] = ACTIONS(3851), - [anon_sym_err_GT] = ACTIONS(2587), - [anon_sym_out_GT] = ACTIONS(2587), - [anon_sym_e_GT] = ACTIONS(2587), - [anon_sym_o_GT] = ACTIONS(2587), - [anon_sym_err_PLUSout_GT] = ACTIONS(2587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2587), - [anon_sym_o_PLUSe_GT] = ACTIONS(2587), - [anon_sym_e_PLUSo_GT] = ACTIONS(2587), - [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), - [aux_sym__unquoted_in_list_token1] = ACTIONS(3853), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(3855), + [1290] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(6006), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5062), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(6021), + [sym__unquoted_anonymous_prefix] = STATE(7458), + [sym_comment] = STATE(1290), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4068), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4080), + [aux_sym__val_number_decimal_token2] = ACTIONS(4082), + [aux_sym__val_number_decimal_token3] = ACTIONS(4084), + [aux_sym__val_number_decimal_token4] = ACTIONS(4086), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4088), + [aux_sym__val_number_token5] = ACTIONS(4088), + [aux_sym__val_number_token6] = ACTIONS(4088), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1303] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5058), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7738), - [sym_comment] = STATE(1303), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4063), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4075), - [aux_sym__val_number_decimal_token2] = ACTIONS(4077), - [aux_sym__val_number_decimal_token3] = ACTIONS(4079), - [aux_sym__val_number_decimal_token4] = ACTIONS(4081), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4083), - [aux_sym__val_number_token5] = ACTIONS(4083), - [aux_sym__val_number_token6] = ACTIONS(4083), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [1291] = { + [sym__val_range] = STATE(7646), + [sym__value] = STATE(5950), + [sym_val_nothing] = STATE(2134), + [sym_val_bool] = STATE(7332), + [sym_val_variable] = STATE(2134), + [sym_val_number] = STATE(2134), + [sym__val_number_decimal] = STATE(5551), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(2134), + [sym_val_filesize] = STATE(2134), + [sym_val_binary] = STATE(2134), + [sym_val_string] = STATE(2134), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(2134), + [sym__inter_single_quotes] = STATE(2119), + [sym__inter_double_quotes] = STATE(2120), + [sym_val_list] = STATE(2134), + [sym_val_record] = STATE(2134), + [sym_val_table] = STATE(2134), + [sym_val_closure] = STATE(2134), + [sym_unquoted] = STATE(5951), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1291), + [anon_sym_LBRACK] = ACTIONS(3920), + [anon_sym_LPAREN] = ACTIONS(4046), + [anon_sym_DOLLAR] = ACTIONS(3924), + [anon_sym_LBRACE] = ACTIONS(3926), + [anon_sym_DOT_DOT] = ACTIONS(4048), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4050), + [anon_sym_DOT_DOT_LT] = ACTIONS(4050), + [anon_sym_null] = ACTIONS(3932), + [anon_sym_true] = ACTIONS(3934), + [anon_sym_false] = ACTIONS(3934), + [aux_sym__val_number_decimal_token1] = ACTIONS(3936), + [aux_sym__val_number_decimal_token2] = ACTIONS(3938), + [aux_sym__val_number_decimal_token3] = ACTIONS(3940), + [aux_sym__val_number_decimal_token4] = ACTIONS(3942), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(3944), + [aux_sym__val_number_token5] = ACTIONS(3944), + [aux_sym__val_number_token6] = ACTIONS(3944), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(3946), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(241), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(243), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1304] = { - [sym__val_range] = STATE(7536), - [sym__value] = STATE(5988), - [sym_val_nothing] = STATE(4683), - [sym_val_bool] = STATE(5629), - [sym_val_variable] = STATE(4683), - [sym_val_number] = STATE(4683), - [sym__val_number_decimal] = STATE(5062), - [sym__val_number] = STATE(4690), - [sym_val_duration] = STATE(4683), - [sym_val_filesize] = STATE(4683), - [sym_val_binary] = STATE(4683), - [sym_val_string] = STATE(4683), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_val_interpolated] = STATE(4683), - [sym__inter_single_quotes] = STATE(4745), - [sym__inter_double_quotes] = STATE(4746), - [sym_val_list] = STATE(4683), - [sym_val_record] = STATE(4683), - [sym_val_table] = STATE(4683), - [sym_val_closure] = STATE(4683), - [sym_unquoted] = STATE(5989), - [sym__unquoted_anonymous_prefix] = STATE(7738), - [sym_comment] = STATE(1304), - [anon_sym_LBRACK] = ACTIONS(4059), - [anon_sym_LPAREN] = ACTIONS(4061), - [anon_sym_DOLLAR] = ACTIONS(4115), - [anon_sym_LBRACE] = ACTIONS(4065), - [anon_sym_DOT_DOT] = ACTIONS(4067), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4069), - [anon_sym_DOT_DOT_LT] = ACTIONS(4069), - [anon_sym_null] = ACTIONS(4071), - [anon_sym_true] = ACTIONS(4073), - [anon_sym_false] = ACTIONS(4073), - [aux_sym__val_number_decimal_token1] = ACTIONS(4117), - [aux_sym__val_number_decimal_token2] = ACTIONS(4119), - [aux_sym__val_number_decimal_token3] = ACTIONS(4121), - [aux_sym__val_number_decimal_token4] = ACTIONS(4123), - [aux_sym__val_number_token1] = ACTIONS(3611), - [aux_sym__val_number_token2] = ACTIONS(3611), - [aux_sym__val_number_token3] = ACTIONS(3611), - [aux_sym__val_number_token4] = ACTIONS(4125), - [aux_sym__val_number_token5] = ACTIONS(4125), - [aux_sym__val_number_token6] = ACTIONS(4125), - [anon_sym_0b] = ACTIONS(3615), - [anon_sym_0o] = ACTIONS(3617), - [anon_sym_0x] = ACTIONS(3617), - [sym_val_date] = ACTIONS(4085), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3625), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3627), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(4087), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), + [1292] = { + [sym__val_range] = STATE(7491), + [sym__value] = STATE(5919), + [sym_val_nothing] = STATE(4789), + [sym_val_bool] = STATE(5718), + [sym_val_variable] = STATE(4789), + [sym_val_number] = STATE(4789), + [sym__val_number_decimal] = STATE(5115), + [sym__val_number] = STATE(4756), + [sym_val_duration] = STATE(4789), + [sym_val_filesize] = STATE(4789), + [sym_val_binary] = STATE(4789), + [sym_val_string] = STATE(4789), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_val_interpolated] = STATE(4789), + [sym__inter_single_quotes] = STATE(4710), + [sym__inter_double_quotes] = STATE(4713), + [sym_val_list] = STATE(4789), + [sym_val_record] = STATE(4789), + [sym_val_table] = STATE(4789), + [sym_val_closure] = STATE(4789), + [sym_unquoted] = STATE(5924), + [sym__unquoted_anonymous_prefix] = STATE(7458), + [sym_comment] = STATE(1292), + [anon_sym_LBRACK] = ACTIONS(4064), + [anon_sym_LPAREN] = ACTIONS(4066), + [anon_sym_DOLLAR] = ACTIONS(4140), + [anon_sym_LBRACE] = ACTIONS(4070), + [anon_sym_DOT_DOT] = ACTIONS(4072), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4074), + [anon_sym_DOT_DOT_LT] = ACTIONS(4074), + [anon_sym_null] = ACTIONS(4076), + [anon_sym_true] = ACTIONS(4078), + [anon_sym_false] = ACTIONS(4078), + [aux_sym__val_number_decimal_token1] = ACTIONS(4142), + [aux_sym__val_number_decimal_token2] = ACTIONS(4144), + [aux_sym__val_number_decimal_token3] = ACTIONS(4146), + [aux_sym__val_number_decimal_token4] = ACTIONS(4148), + [aux_sym__val_number_token1] = ACTIONS(3620), + [aux_sym__val_number_token2] = ACTIONS(3620), + [aux_sym__val_number_token3] = ACTIONS(3620), + [aux_sym__val_number_token4] = ACTIONS(4150), + [aux_sym__val_number_token5] = ACTIONS(4150), + [aux_sym__val_number_token6] = ACTIONS(4150), + [anon_sym_0b] = ACTIONS(3624), + [anon_sym_0o] = ACTIONS(3626), + [anon_sym_0x] = ACTIONS(3626), + [sym_val_date] = ACTIONS(4090), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(3634), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(3636), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(4092), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1305] = { - [sym_comment] = STATE(1305), - [ts_builtin_sym_end] = ACTIONS(1597), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4428), - [aux_sym__immediate_decimal_token2] = ACTIONS(4430), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), + [1293] = { + [sym__expr_parenthesized_immediate] = STATE(1536), + [sym__immediate_decimal] = STATE(1547), + [sym_val_variable] = STATE(1536), + [sym_comment] = STATE(1293), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_DOLLAR] = ACTIONS(2857), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(3984), + [anon_sym_DOT] = ACTIONS(4405), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4407), + [aux_sym__immediate_decimal_token3] = ACTIONS(4409), + [aux_sym__immediate_decimal_token4] = ACTIONS(4411), + [aux_sym__immediate_decimal_token5] = ACTIONS(4413), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1547), + [anon_sym_0o] = ACTIONS(1547), + [anon_sym_0x] = ACTIONS(1547), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), }, - [1306] = { - [sym__expr_parenthesized_immediate] = STATE(1740), - [sym__immediate_decimal] = STATE(1741), - [sym_val_variable] = STATE(1740), - [sym_comment] = STATE(1306), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(3995), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(3997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4404), - [aux_sym__immediate_decimal_token3] = ACTIONS(4406), - [aux_sym__immediate_decimal_token4] = ACTIONS(4408), - [aux_sym__immediate_decimal_token5] = ACTIONS(4410), - [anon_sym_null] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [anon_sym_0b] = ACTIONS(1707), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1709), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1709), + [1294] = { + [sym_comment] = STATE(1294), + [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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(4415), + [aux_sym__immediate_decimal_token2] = ACTIONS(4417), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), }, - [1307] = { - [sym__val_range] = STATE(7614), - [sym__value] = STATE(4527), - [sym_val_nothing] = STATE(4484), - [sym_val_bool] = STATE(4132), - [sym_val_variable] = STATE(4484), - [sym_val_number] = STATE(4484), - [sym__val_number_decimal] = STATE(3881), - [sym__val_number] = STATE(4521), - [sym_val_duration] = STATE(4484), - [sym_val_filesize] = STATE(4484), - [sym_val_binary] = STATE(4484), - [sym_val_string] = STATE(4484), - [sym__raw_str] = STATE(3922), - [sym__str_double_quotes] = STATE(3922), - [sym_val_interpolated] = STATE(4484), - [sym__inter_single_quotes] = STATE(4525), - [sym__inter_double_quotes] = STATE(4526), - [sym_val_list] = STATE(4484), - [sym_val_record] = STATE(4484), - [sym_val_table] = STATE(4484), - [sym_val_closure] = STATE(4484), - [sym_unquoted] = STATE(4529), - [sym__unquoted_anonymous_prefix] = STATE(7537), - [sym_comment] = STATE(1307), - [anon_sym_LBRACK] = ACTIONS(4184), - [anon_sym_LPAREN] = ACTIONS(4186), - [anon_sym_DOLLAR] = ACTIONS(1807), - [anon_sym_LBRACE] = ACTIONS(4188), - [anon_sym_DOT_DOT] = ACTIONS(4190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4192), - [anon_sym_DOT_DOT_LT] = ACTIONS(4192), - [anon_sym_null] = ACTIONS(4268), - [anon_sym_true] = ACTIONS(4270), - [anon_sym_false] = ACTIONS(4270), - [aux_sym__val_number_decimal_token1] = ACTIONS(1827), - [aux_sym__val_number_decimal_token2] = ACTIONS(4272), - [aux_sym__val_number_decimal_token3] = ACTIONS(4274), - [aux_sym__val_number_decimal_token4] = ACTIONS(4276), - [aux_sym__val_number_token1] = ACTIONS(4206), - [aux_sym__val_number_token2] = ACTIONS(4206), - [aux_sym__val_number_token3] = ACTIONS(4206), - [aux_sym__val_number_token4] = ACTIONS(4278), - [aux_sym__val_number_token5] = ACTIONS(4278), - [aux_sym__val_number_token6] = ACTIONS(4278), - [anon_sym_0b] = ACTIONS(1837), - [anon_sym_0o] = ACTIONS(1839), - [anon_sym_0x] = ACTIONS(1839), - [sym_val_date] = ACTIONS(4280), - [anon_sym_DQUOTE] = ACTIONS(4212), - [sym__str_single_quotes] = ACTIONS(4214), - [sym__str_back_ticks] = ACTIONS(4214), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4216), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4218), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(1857), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1859), + [1295] = { + [sym_comment] = STATE(1295), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(4419), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, - [1308] = { - [sym_comment] = STATE(1308), + [1296] = { + [sym_comment] = STATE(1296), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(4421), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [1297] = { + [sym_comment] = STATE(1297), [anon_sym_EQ] = ACTIONS(964), [anon_sym_PLUS_EQ] = ACTIONS(966), [anon_sym_DASH_EQ] = ACTIONS(966), @@ -207082,592 +206333,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(251), }, - [1309] = { - [sym_cell_path] = STATE(1496), - [sym_path] = STATE(1449), - [sym_comment] = STATE(1309), - [aux_sym_cell_path_repeat1] = STATE(1345), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1717), - [anon_sym_0x] = ACTIONS(1717), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4432), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1719), - }, - [1310] = { - [sym_cell_path] = STATE(1501), - [sym_path] = STATE(1449), - [sym_comment] = STATE(1310), - [aux_sym_cell_path_repeat1] = STATE(1345), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(935), - [anon_sym_DOT_DOT_LT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_null] = ACTIONS(937), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(935), - [anon_sym_0o] = ACTIONS(935), - [anon_sym_0x] = ACTIONS(935), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4432), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [aux_sym_unquoted_token1] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(937), - }, - [1311] = { - [sym_comment] = STATE(1311), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4434), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), - }, - [1312] = { - [sym__expr_parenthesized_immediate] = STATE(1856), - [sym__immediate_decimal] = STATE(1858), - [sym_val_variable] = STATE(1856), - [sym_comment] = STATE(1312), - [ts_builtin_sym_end] = ACTIONS(1709), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), - [anon_sym_LBRACK] = ACTIONS(1709), - [anon_sym_LPAREN] = ACTIONS(1707), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_DASH_DASH] = ACTIONS(1709), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_DOT_DOT] = ACTIONS(1707), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1709), - [anon_sym_DOT_DOT_LT] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4436), - [aux_sym__immediate_decimal_token3] = ACTIONS(4438), - [aux_sym__immediate_decimal_token4] = ACTIONS(4440), - [aux_sym__immediate_decimal_token5] = ACTIONS(4442), - [anon_sym_null] = ACTIONS(1709), - [anon_sym_true] = ACTIONS(1709), - [anon_sym_false] = ACTIONS(1709), - [aux_sym__val_number_decimal_token1] = ACTIONS(1707), - [aux_sym__val_number_decimal_token2] = ACTIONS(1707), - [aux_sym__val_number_decimal_token3] = ACTIONS(1707), - [aux_sym__val_number_decimal_token4] = ACTIONS(1707), - [aux_sym__val_number_token1] = ACTIONS(1709), - [aux_sym__val_number_token2] = ACTIONS(1709), - [aux_sym__val_number_token3] = ACTIONS(1709), - [aux_sym__val_number_token4] = ACTIONS(1709), - [aux_sym__val_number_token5] = ACTIONS(1709), - [aux_sym__val_number_token6] = ACTIONS(1709), - [anon_sym_0b] = ACTIONS(1707), - [anon_sym_0o] = ACTIONS(1707), - [anon_sym_0x] = ACTIONS(1707), - [sym_val_date] = ACTIONS(1709), - [anon_sym_DQUOTE] = ACTIONS(1709), - [sym__str_single_quotes] = ACTIONS(1709), - [sym__str_back_ticks] = ACTIONS(1709), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1709), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1709), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), - [aux_sym_unquoted_token1] = ACTIONS(1707), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1709), - }, - [1313] = { - [sym__expr_parenthesized_immediate] = STATE(1859), - [sym__immediate_decimal] = STATE(1860), - [sym_val_variable] = STATE(1859), - [sym_comment] = STATE(1313), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_LBRACK] = ACTIONS(1713), - [anon_sym_LPAREN] = ACTIONS(1711), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_DASH_DASH] = ACTIONS(1713), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_DOT_DOT] = ACTIONS(1711), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1713), - [anon_sym_DOT_DOT_LT] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4436), - [aux_sym__immediate_decimal_token3] = ACTIONS(4438), - [aux_sym__immediate_decimal_token4] = ACTIONS(4440), - [aux_sym__immediate_decimal_token5] = ACTIONS(4442), - [anon_sym_null] = ACTIONS(1713), - [anon_sym_true] = ACTIONS(1713), - [anon_sym_false] = ACTIONS(1713), - [aux_sym__val_number_decimal_token1] = ACTIONS(1711), - [aux_sym__val_number_decimal_token2] = ACTIONS(1711), - [aux_sym__val_number_decimal_token3] = ACTIONS(1711), - [aux_sym__val_number_decimal_token4] = ACTIONS(1711), - [aux_sym__val_number_token1] = ACTIONS(1713), - [aux_sym__val_number_token2] = ACTIONS(1713), - [aux_sym__val_number_token3] = ACTIONS(1713), - [aux_sym__val_number_token4] = ACTIONS(1713), - [aux_sym__val_number_token5] = ACTIONS(1713), - [aux_sym__val_number_token6] = ACTIONS(1713), - [anon_sym_0b] = ACTIONS(1711), - [anon_sym_0o] = ACTIONS(1711), - [anon_sym_0x] = ACTIONS(1711), - [sym_val_date] = ACTIONS(1713), - [anon_sym_DQUOTE] = ACTIONS(1713), - [sym__str_single_quotes] = ACTIONS(1713), - [sym__str_back_ticks] = ACTIONS(1713), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1713), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1713), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [aux_sym_unquoted_token1] = ACTIONS(1711), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1713), - }, - [1314] = { - [sym__expr_parenthesized_immediate] = STATE(1863), - [sym__immediate_decimal] = STATE(1864), - [sym_val_variable] = STATE(1863), - [sym_comment] = STATE(1314), - [ts_builtin_sym_end] = ACTIONS(1665), - [sym__newline] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_err_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_GT_PIPE] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), - [anon_sym_LBRACK] = ACTIONS(1665), - [anon_sym_LPAREN] = ACTIONS(1657), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_DASH_DASH] = ACTIONS(1665), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_DOT_DOT] = ACTIONS(1657), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1665), - [anon_sym_DOT_DOT_LT] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4436), - [aux_sym__immediate_decimal_token3] = ACTIONS(4438), - [aux_sym__immediate_decimal_token4] = ACTIONS(4440), - [aux_sym__immediate_decimal_token5] = ACTIONS(4442), - [anon_sym_null] = ACTIONS(1665), - [anon_sym_true] = ACTIONS(1665), - [anon_sym_false] = ACTIONS(1665), - [aux_sym__val_number_decimal_token1] = ACTIONS(1657), - [aux_sym__val_number_decimal_token2] = ACTIONS(1657), - [aux_sym__val_number_decimal_token3] = ACTIONS(1657), - [aux_sym__val_number_decimal_token4] = ACTIONS(1657), - [aux_sym__val_number_token1] = ACTIONS(1665), - [aux_sym__val_number_token2] = ACTIONS(1665), - [aux_sym__val_number_token3] = ACTIONS(1665), - [aux_sym__val_number_token4] = ACTIONS(1665), - [aux_sym__val_number_token5] = ACTIONS(1665), - [aux_sym__val_number_token6] = ACTIONS(1665), - [anon_sym_0b] = ACTIONS(1657), - [anon_sym_0o] = ACTIONS(1657), - [anon_sym_0x] = ACTIONS(1657), - [sym_val_date] = ACTIONS(1665), - [anon_sym_DQUOTE] = ACTIONS(1665), - [sym__str_single_quotes] = ACTIONS(1665), - [sym__str_back_ticks] = ACTIONS(1665), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1665), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1665), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1665), - [anon_sym_out_GT_GT] = ACTIONS(1665), - [anon_sym_e_GT_GT] = ACTIONS(1665), - [anon_sym_o_GT_GT] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), - [aux_sym_unquoted_token1] = ACTIONS(1657), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1665), - }, - [1315] = { - [sym_comment] = STATE(1315), - [ts_builtin_sym_end] = ACTIONS(1597), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4444), - [aux_sym__immediate_decimal_token2] = ACTIONS(4446), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [1316] = { - [sym_comment] = STATE(1316), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4182), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [1317] = { - [sym_comment] = STATE(1317), + [1298] = { + [sym_comment] = STATE(1298), [anon_sym_EQ] = ACTIONS(968), [anon_sym_PLUS_EQ] = ACTIONS(970), [anon_sym_DASH_EQ] = ACTIONS(970), @@ -207739,81 +206406,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), [anon_sym_POUND] = ACTIONS(251), }, - [1318] = { - [sym_comment] = STATE(1318), - [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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4448), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), - }, - [1319] = { - [sym_comment] = STATE(1319), + [1299] = { + [sym_comment] = STATE(1299), [anon_sym_EQ] = ACTIONS(972), [anon_sym_PLUS_EQ] = ACTIONS(974), [anon_sym_DASH_EQ] = ACTIONS(974), @@ -207885,738 +206479,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), [anon_sym_POUND] = ACTIONS(251), }, - [1320] = { - [sym_comment] = STATE(1320), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4450), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4452), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [1321] = { - [sym_cell_path] = STATE(1421), - [sym_path] = STATE(1430), - [sym_comment] = STATE(1321), - [aux_sym_cell_path_repeat1] = STATE(1343), - [ts_builtin_sym_end] = ACTIONS(937), - [anon_sym_EQ] = ACTIONS(935), - [anon_sym_PLUS_EQ] = ACTIONS(937), - [anon_sym_DASH_EQ] = ACTIONS(937), - [anon_sym_STAR_EQ] = ACTIONS(937), - [anon_sym_SLASH_EQ] = ACTIONS(937), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(935), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4454), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(251), - }, - [1322] = { - [sym_comment] = STATE(1322), - [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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), - }, - [1323] = { - [sym_comment] = STATE(1323), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [sym_filesize_unit] = ACTIONS(1735), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [aux_sym_unquoted_token2] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), - }, - [1324] = { - [sym_comment] = STATE(1324), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [1325] = { - [sym_comment] = STATE(1325), - [ts_builtin_sym_end] = ACTIONS(2247), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), - }, - [1326] = { - [sym_comment] = STATE(1326), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4158), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [1327] = { - [sym_comment] = STATE(1327), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [1328] = { - [sym__match_pattern_expression] = STATE(3138), - [sym__match_pattern_value] = STATE(3134), - [sym__match_pattern_list] = STATE(3139), - [sym__match_pattern_record] = STATE(3140), - [sym_expr_parenthesized] = STATE(2902), - [sym_val_range] = STATE(3134), - [sym__val_range] = STATE(7495), - [sym_val_nothing] = STATE(3146), - [sym_val_bool] = STATE(3047), - [sym_val_variable] = STATE(2903), - [sym_val_number] = STATE(3146), - [sym__val_number_decimal] = STATE(2743), - [sym__val_number] = STATE(3166), - [sym_val_duration] = STATE(3146), - [sym_val_filesize] = STATE(3146), - [sym_val_binary] = STATE(3146), - [sym_val_string] = STATE(3146), - [sym__raw_str] = STATE(3154), - [sym__str_double_quotes] = STATE(3154), - [sym_val_table] = STATE(3146), - [sym__unquoted_in_list] = STATE(3138), - [sym__unquoted_anonymous_prefix] = STATE(7504), - [sym_comment] = STATE(1328), - [aux_sym__match_pattern_list_repeat1] = STATE(1328), - [anon_sym_LBRACK] = ACTIONS(4456), - [anon_sym_RBRACK] = ACTIONS(4459), - [anon_sym_LPAREN] = ACTIONS(4461), - [anon_sym_DOLLAR] = ACTIONS(4464), - [anon_sym_LBRACE] = ACTIONS(4467), - [anon_sym_DOT_DOT] = ACTIONS(4470), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4473), - [anon_sym_DOT_DOT_LT] = ACTIONS(4473), - [anon_sym_null] = ACTIONS(4476), - [anon_sym_true] = ACTIONS(4479), - [anon_sym_false] = ACTIONS(4479), - [aux_sym__val_number_decimal_token1] = ACTIONS(4482), - [aux_sym__val_number_decimal_token2] = ACTIONS(4485), - [aux_sym__val_number_decimal_token3] = ACTIONS(4488), - [aux_sym__val_number_decimal_token4] = ACTIONS(4491), - [aux_sym__val_number_token1] = ACTIONS(4494), - [aux_sym__val_number_token2] = ACTIONS(4494), - [aux_sym__val_number_token3] = ACTIONS(4494), - [aux_sym__val_number_token4] = ACTIONS(4497), - [aux_sym__val_number_token5] = ACTIONS(4497), - [aux_sym__val_number_token6] = ACTIONS(4497), - [anon_sym_0b] = ACTIONS(4500), - [anon_sym_0o] = ACTIONS(4503), - [anon_sym_0x] = ACTIONS(4503), - [sym_val_date] = ACTIONS(4506), - [anon_sym_DQUOTE] = ACTIONS(4509), - [sym__str_single_quotes] = ACTIONS(4512), - [sym__str_back_ticks] = ACTIONS(4512), - [anon_sym_err_GT] = ACTIONS(4515), - [anon_sym_out_GT] = ACTIONS(4515), - [anon_sym_e_GT] = ACTIONS(4515), - [anon_sym_o_GT] = ACTIONS(4515), - [anon_sym_err_PLUSout_GT] = ACTIONS(4515), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4515), - [anon_sym_o_PLUSe_GT] = ACTIONS(4515), - [anon_sym_e_PLUSo_GT] = ACTIONS(4515), - [anon_sym_err_GT_GT] = ACTIONS(4518), - [anon_sym_out_GT_GT] = ACTIONS(4518), - [anon_sym_e_GT_GT] = ACTIONS(4518), - [anon_sym_o_GT_GT] = ACTIONS(4518), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4518), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4518), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4518), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4518), - [aux_sym__unquoted_in_list_token1] = ACTIONS(4521), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4524), - }, - [1329] = { - [sym_cell_path] = STATE(1502), - [sym_path] = STATE(1449), - [sym_comment] = STATE(1329), - [aux_sym_cell_path_repeat1] = STATE(1345), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_LBRACK] = ACTIONS(1723), - [anon_sym_LPAREN] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_DOLLAR] = ACTIONS(1721), - [anon_sym_DASH_DASH] = ACTIONS(1723), - [anon_sym_DASH2] = ACTIONS(1721), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_DOT_DOT] = ACTIONS(1721), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), - [anon_sym_DOT_DOT_LT] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_null] = ACTIONS(1723), - [anon_sym_true] = ACTIONS(1723), - [anon_sym_false] = ACTIONS(1723), - [aux_sym__val_number_decimal_token1] = ACTIONS(1721), - [aux_sym__val_number_decimal_token2] = ACTIONS(1723), - [aux_sym__val_number_decimal_token3] = ACTIONS(1723), - [aux_sym__val_number_decimal_token4] = ACTIONS(1723), - [aux_sym__val_number_token1] = ACTIONS(1723), - [aux_sym__val_number_token2] = ACTIONS(1723), - [aux_sym__val_number_token3] = ACTIONS(1723), - [aux_sym__val_number_token4] = ACTIONS(1723), - [aux_sym__val_number_token5] = ACTIONS(1723), - [aux_sym__val_number_token6] = ACTIONS(1723), - [anon_sym_0b] = ACTIONS(1721), - [anon_sym_0o] = ACTIONS(1721), - [anon_sym_0x] = ACTIONS(1721), - [sym_val_date] = ACTIONS(1723), - [anon_sym_DQUOTE] = ACTIONS(1723), - [sym__str_single_quotes] = ACTIONS(1723), - [sym__str_back_ticks] = ACTIONS(1723), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4432), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [aux_sym_unquoted_token1] = ACTIONS(1721), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1723), - }, - [1330] = { - [sym_comment] = STATE(1330), + [1300] = { + [sym_comment] = STATE(1300), [anon_sym_EQ] = ACTIONS(976), [anon_sym_PLUS_EQ] = ACTIONS(978), [anon_sym_DASH_EQ] = ACTIONS(978), @@ -208688,227 +206552,811 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(251), }, - [1331] = { - [sym_comment] = STATE(1331), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), + [1301] = { + [sym_cell_path] = STATE(1520), + [sym_path] = STATE(1442), + [sym_comment] = STATE(1301), + [aux_sym_cell_path_repeat1] = STATE(1336), + [sym__newline] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_err_GT_PIPE] = ACTIONS(1759), + [anon_sym_out_GT_PIPE] = ACTIONS(1759), + [anon_sym_e_GT_PIPE] = ACTIONS(1759), + [anon_sym_o_GT_PIPE] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1759), + [anon_sym_DASH2] = ACTIONS(1757), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1757), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), + [anon_sym_null] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1759), + [aux_sym__val_number_decimal_token3] = ACTIONS(1759), + [aux_sym__val_number_decimal_token4] = ACTIONS(1759), + [aux_sym__val_number_token1] = ACTIONS(1759), + [aux_sym__val_number_token2] = ACTIONS(1759), + [aux_sym__val_number_token3] = ACTIONS(1759), + [aux_sym__val_number_token4] = ACTIONS(1759), + [aux_sym__val_number_token5] = ACTIONS(1759), + [aux_sym__val_number_token6] = ACTIONS(1759), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [sym__str_single_quotes] = ACTIONS(1759), + [sym__str_back_ticks] = ACTIONS(1759), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), + [anon_sym_DOT2] = ACTIONS(4425), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1759), + [anon_sym_out_GT_GT] = ACTIONS(1759), + [anon_sym_e_GT_GT] = ACTIONS(1759), + [anon_sym_o_GT_GT] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), + [aux_sym_unquoted_token1] = ACTIONS(1757), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1759), + }, + [1302] = { + [sym_comment] = STATE(1302), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_RBRACE] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(3), + }, + [1303] = { + [sym_comment] = STATE(1303), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_RBRACE] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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_POUND] = ACTIONS(3), + }, + [1304] = { + [sym_cell_path] = STATE(1408), + [sym_path] = STATE(1424), + [sym_comment] = STATE(1304), + [aux_sym_cell_path_repeat1] = STATE(1338), + [ts_builtin_sym_end] = ACTIONS(937), + [anon_sym_EQ] = ACTIONS(935), + [anon_sym_PLUS_EQ] = ACTIONS(937), + [anon_sym_DASH_EQ] = ACTIONS(937), + [anon_sym_STAR_EQ] = ACTIONS(937), + [anon_sym_SLASH_EQ] = ACTIONS(937), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(935), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4427), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [anon_sym_POUND] = ACTIONS(251), + }, + [1305] = { + [sym_comment] = STATE(1305), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(3), }, - [1332] = { - [sym_comment] = STATE(1332), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), + [1306] = { + [sym_comment] = STATE(1306), + [ts_builtin_sym_end] = ACTIONS(2202), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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_POUND] = ACTIONS(3), }, - [1333] = { - [sym_comment] = STATE(1333), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4527), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4529), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), + [1307] = { + [sym_comment] = STATE(1307), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4199), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [1308] = { + [sym__expr_parenthesized_immediate] = STATE(1849), + [sym__immediate_decimal] = STATE(1856), + [sym_val_variable] = STATE(1849), + [sym_comment] = STATE(1308), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_LBRACK] = ACTIONS(1557), + [anon_sym_LPAREN] = ACTIONS(1547), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(1557), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_DOT_DOT] = ACTIONS(1547), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1557), + [anon_sym_DOT_DOT_LT] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4429), + [aux_sym__immediate_decimal_token3] = ACTIONS(4431), + [aux_sym__immediate_decimal_token4] = ACTIONS(4433), + [aux_sym__immediate_decimal_token5] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(1557), + [anon_sym_true] = ACTIONS(1557), + [anon_sym_false] = ACTIONS(1557), + [aux_sym__val_number_decimal_token1] = ACTIONS(1547), + [aux_sym__val_number_decimal_token2] = ACTIONS(1547), + [aux_sym__val_number_decimal_token3] = ACTIONS(1547), + [aux_sym__val_number_decimal_token4] = ACTIONS(1547), + [aux_sym__val_number_token1] = ACTIONS(1557), + [aux_sym__val_number_token2] = ACTIONS(1557), + [aux_sym__val_number_token3] = ACTIONS(1557), + [aux_sym__val_number_token4] = ACTIONS(1557), + [aux_sym__val_number_token5] = ACTIONS(1557), + [aux_sym__val_number_token6] = ACTIONS(1557), + [anon_sym_0b] = ACTIONS(1547), + [anon_sym_0o] = ACTIONS(1547), + [anon_sym_0x] = ACTIONS(1547), + [sym_val_date] = ACTIONS(1557), + [anon_sym_DQUOTE] = ACTIONS(1557), + [sym__str_single_quotes] = ACTIONS(1557), + [sym__str_back_ticks] = ACTIONS(1557), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1557), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1557), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [aux_sym_unquoted_token1] = ACTIONS(1547), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1557), + }, + [1309] = { + [sym_comment] = STATE(1309), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(4437), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), + }, + [1310] = { + [sym_comment] = STATE(1310), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4439), + [aux_sym__immediate_decimal_token2] = ACTIONS(4441), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1334] = { - [sym_comment] = STATE(1334), + [1311] = { + [sym_comment] = STATE(1311), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4443), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1312] = { + [sym_comment] = STATE(1312), [anon_sym_EQ] = ACTIONS(958), [anon_sym_PLUS_EQ] = ACTIONS(960), [anon_sym_DASH_EQ] = ACTIONS(960), @@ -208932,7 +207380,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4531), + [anon_sym_QMARK2] = ACTIONS(4447), [anon_sym_and2] = ACTIONS(960), [anon_sym_xor2] = ACTIONS(960), [anon_sym_or2] = ACTIONS(960), @@ -208980,8 +207428,300 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), [anon_sym_POUND] = ACTIONS(251), }, - [1335] = { - [sym_comment] = STATE(1335), + [1313] = { + [sym__expr_parenthesized_immediate] = STATE(1818), + [sym__immediate_decimal] = STATE(1826), + [sym_val_variable] = STATE(1818), + [sym_comment] = STATE(1313), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_LBRACK] = ACTIONS(1703), + [anon_sym_LPAREN] = ACTIONS(1701), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(1703), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_DOT_DOT] = ACTIONS(1701), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1703), + [anon_sym_DOT_DOT_LT] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(4429), + [aux_sym__immediate_decimal_token3] = ACTIONS(4431), + [aux_sym__immediate_decimal_token4] = ACTIONS(4433), + [aux_sym__immediate_decimal_token5] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(1703), + [anon_sym_true] = ACTIONS(1703), + [anon_sym_false] = ACTIONS(1703), + [aux_sym__val_number_decimal_token1] = ACTIONS(1701), + [aux_sym__val_number_decimal_token2] = ACTIONS(1701), + [aux_sym__val_number_decimal_token3] = ACTIONS(1701), + [aux_sym__val_number_decimal_token4] = ACTIONS(1701), + [aux_sym__val_number_token1] = ACTIONS(1703), + [aux_sym__val_number_token2] = ACTIONS(1703), + [aux_sym__val_number_token3] = ACTIONS(1703), + [aux_sym__val_number_token4] = ACTIONS(1703), + [aux_sym__val_number_token5] = ACTIONS(1703), + [aux_sym__val_number_token6] = ACTIONS(1703), + [anon_sym_0b] = ACTIONS(1701), + [anon_sym_0o] = ACTIONS(1701), + [anon_sym_0x] = ACTIONS(1701), + [sym_val_date] = ACTIONS(1703), + [anon_sym_DQUOTE] = ACTIONS(1703), + [sym__str_single_quotes] = ACTIONS(1703), + [sym__str_back_ticks] = ACTIONS(1703), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1703), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1703), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [aux_sym_unquoted_token1] = ACTIONS(1701), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1703), + }, + [1314] = { + [sym__expr_parenthesized_immediate] = STATE(1831), + [sym__immediate_decimal] = STATE(1832), + [sym_val_variable] = STATE(1831), + [sym_comment] = STATE(1314), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_LBRACK] = ACTIONS(1707), + [anon_sym_LPAREN] = ACTIONS(1705), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(1707), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_DOT_DOT] = ACTIONS(1705), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1707), + [anon_sym_DOT_DOT_LT] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(4429), + [aux_sym__immediate_decimal_token3] = ACTIONS(4431), + [aux_sym__immediate_decimal_token4] = ACTIONS(4433), + [aux_sym__immediate_decimal_token5] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(1707), + [anon_sym_true] = ACTIONS(1707), + [anon_sym_false] = ACTIONS(1707), + [aux_sym__val_number_decimal_token1] = ACTIONS(1705), + [aux_sym__val_number_decimal_token2] = ACTIONS(1705), + [aux_sym__val_number_decimal_token3] = ACTIONS(1705), + [aux_sym__val_number_decimal_token4] = ACTIONS(1705), + [aux_sym__val_number_token1] = ACTIONS(1707), + [aux_sym__val_number_token2] = ACTIONS(1707), + [aux_sym__val_number_token3] = ACTIONS(1707), + [aux_sym__val_number_token4] = ACTIONS(1707), + [aux_sym__val_number_token5] = ACTIONS(1707), + [aux_sym__val_number_token6] = ACTIONS(1707), + [anon_sym_0b] = ACTIONS(1705), + [anon_sym_0o] = ACTIONS(1705), + [anon_sym_0x] = ACTIONS(1705), + [sym_val_date] = ACTIONS(1707), + [anon_sym_DQUOTE] = ACTIONS(1707), + [sym__str_single_quotes] = ACTIONS(1707), + [sym__str_back_ticks] = ACTIONS(1707), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1707), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1707), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [aux_sym_unquoted_token1] = ACTIONS(1705), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1707), + }, + [1315] = { + [sym__expr_parenthesized_immediate] = STATE(1835), + [sym__immediate_decimal] = STATE(1839), + [sym_val_variable] = STATE(1835), + [sym_comment] = STATE(1315), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_LBRACK] = ACTIONS(1711), + [anon_sym_LPAREN] = ACTIONS(1709), + [anon_sym_DOLLAR] = ACTIONS(4014), + [anon_sym_DASH_DASH] = ACTIONS(1711), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_DOT_DOT] = ACTIONS(1709), + [anon_sym_LPAREN2] = ACTIONS(4154), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1711), + [anon_sym_DOT_DOT_LT] = ACTIONS(1711), + [aux_sym__immediate_decimal_token1] = ACTIONS(4429), + [aux_sym__immediate_decimal_token3] = ACTIONS(4431), + [aux_sym__immediate_decimal_token4] = ACTIONS(4433), + [aux_sym__immediate_decimal_token5] = ACTIONS(4435), + [anon_sym_null] = ACTIONS(1711), + [anon_sym_true] = ACTIONS(1711), + [anon_sym_false] = ACTIONS(1711), + [aux_sym__val_number_decimal_token1] = ACTIONS(1709), + [aux_sym__val_number_decimal_token2] = ACTIONS(1709), + [aux_sym__val_number_decimal_token3] = ACTIONS(1709), + [aux_sym__val_number_decimal_token4] = ACTIONS(1709), + [aux_sym__val_number_token1] = ACTIONS(1711), + [aux_sym__val_number_token2] = ACTIONS(1711), + [aux_sym__val_number_token3] = ACTIONS(1711), + [aux_sym__val_number_token4] = ACTIONS(1711), + [aux_sym__val_number_token5] = ACTIONS(1711), + [aux_sym__val_number_token6] = ACTIONS(1711), + [anon_sym_0b] = ACTIONS(1709), + [anon_sym_0o] = ACTIONS(1709), + [anon_sym_0x] = ACTIONS(1709), + [sym_val_date] = ACTIONS(1711), + [anon_sym_DQUOTE] = ACTIONS(1711), + [sym__str_single_quotes] = ACTIONS(1711), + [sym__str_back_ticks] = ACTIONS(1711), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1711), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1711), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [aux_sym_unquoted_token1] = ACTIONS(1709), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1711), + }, + [1316] = { + [sym__match_pattern_expression] = STATE(3118), + [sym__match_pattern_value] = STATE(3169), + [sym__match_pattern_list] = STATE(3177), + [sym__match_pattern_record] = STATE(3178), + [sym_expr_parenthesized] = STATE(2931), + [sym_val_range] = STATE(3169), + [sym__val_range] = STATE(7662), + [sym_val_nothing] = STATE(3179), + [sym_val_bool] = STATE(3084), + [sym_val_variable] = STATE(2868), + [sym_val_number] = STATE(3179), + [sym__val_number_decimal] = STATE(2720), + [sym__val_number] = STATE(3155), + [sym_val_duration] = STATE(3179), + [sym_val_filesize] = STATE(3179), + [sym_val_binary] = STATE(3179), + [sym_val_string] = STATE(3179), + [sym__raw_str] = STATE(3127), + [sym__str_double_quotes] = STATE(3127), + [sym_val_table] = STATE(3179), + [sym__unquoted_in_list] = STATE(3118), + [sym__unquoted_anonymous_prefix] = STATE(7511), + [sym_comment] = STATE(1316), + [aux_sym__match_pattern_list_repeat1] = STATE(1316), + [anon_sym_LBRACK] = ACTIONS(4449), + [anon_sym_RBRACK] = ACTIONS(4452), + [anon_sym_LPAREN] = ACTIONS(4454), + [anon_sym_DOLLAR] = ACTIONS(4457), + [anon_sym_LBRACE] = ACTIONS(4460), + [anon_sym_DOT_DOT] = ACTIONS(4463), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4466), + [anon_sym_DOT_DOT_LT] = ACTIONS(4466), + [anon_sym_null] = ACTIONS(4469), + [anon_sym_true] = ACTIONS(4472), + [anon_sym_false] = ACTIONS(4472), + [aux_sym__val_number_decimal_token1] = ACTIONS(4475), + [aux_sym__val_number_decimal_token2] = ACTIONS(4478), + [aux_sym__val_number_decimal_token3] = ACTIONS(4481), + [aux_sym__val_number_decimal_token4] = ACTIONS(4484), + [aux_sym__val_number_token1] = ACTIONS(4487), + [aux_sym__val_number_token2] = ACTIONS(4487), + [aux_sym__val_number_token3] = ACTIONS(4487), + [aux_sym__val_number_token4] = ACTIONS(4490), + [aux_sym__val_number_token5] = ACTIONS(4490), + [aux_sym__val_number_token6] = ACTIONS(4490), + [anon_sym_0b] = ACTIONS(4493), + [anon_sym_0o] = ACTIONS(4496), + [anon_sym_0x] = ACTIONS(4496), + [sym_val_date] = ACTIONS(4499), + [anon_sym_DQUOTE] = ACTIONS(4502), + [sym__str_single_quotes] = ACTIONS(4505), + [sym__str_back_ticks] = ACTIONS(4505), + [anon_sym_err_GT] = ACTIONS(4508), + [anon_sym_out_GT] = ACTIONS(4508), + [anon_sym_e_GT] = ACTIONS(4508), + [anon_sym_o_GT] = ACTIONS(4508), + [anon_sym_err_PLUSout_GT] = ACTIONS(4508), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4508), + [anon_sym_o_PLUSe_GT] = ACTIONS(4508), + [anon_sym_e_PLUSo_GT] = ACTIONS(4508), + [anon_sym_err_GT_GT] = ACTIONS(4511), + [anon_sym_out_GT_GT] = ACTIONS(4511), + [anon_sym_e_GT_GT] = ACTIONS(4511), + [anon_sym_o_GT_GT] = ACTIONS(4511), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4511), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4511), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4511), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4511), + [aux_sym__unquoted_in_list_token1] = ACTIONS(4514), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4517), + }, + [1317] = { + [sym_comment] = STATE(1317), [anon_sym_EQ] = ACTIONS(952), [anon_sym_PLUS_EQ] = ACTIONS(954), [anon_sym_DASH_EQ] = ACTIONS(954), @@ -209005,7 +207745,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_in2] = ACTIONS(954), [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_STAR2] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4533), + [anon_sym_QMARK2] = ACTIONS(4520), [anon_sym_and2] = ACTIONS(954), [anon_sym_xor2] = ACTIONS(954), [anon_sym_or2] = ACTIONS(954), @@ -209053,809 +207793,1030 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), [anon_sym_POUND] = ACTIONS(251), }, - [1336] = { - [sym_comment] = STATE(1336), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_RBRACE] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), + [1318] = { + [sym_comment] = STATE(1318), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, - [1337] = { - [sym_comment] = STATE(1337), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_RBRACE] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), + [1319] = { + [sym_comment] = STATE(1319), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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_POUND] = ACTIONS(3), }, - [1338] = { - [sym__expr_parenthesized_immediate] = STATE(7227), - [sym_comment] = STATE(1338), - [ts_builtin_sym_end] = ACTIONS(1693), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1681), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT2] = ACTIONS(4535), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4537), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4537), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4539), - [sym_duration_unit] = ACTIONS(4541), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4543), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), + [1320] = { + [sym_comment] = STATE(1320), + [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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), }, - [1339] = { - [sym__expr_parenthesized_immediate] = STATE(1835), - [sym__immediate_decimal] = STATE(1836), - [sym_val_variable] = STATE(1835), - [sym_comment] = STATE(1339), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_LBRACK] = ACTIONS(1643), - [anon_sym_LPAREN] = ACTIONS(1633), - [anon_sym_DOLLAR] = ACTIONS(4091), - [anon_sym_DASH_DASH] = ACTIONS(1643), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_DOT_DOT] = ACTIONS(1633), - [anon_sym_LPAREN2] = ACTIONS(4146), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1643), - [anon_sym_DOT_DOT_LT] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4436), - [aux_sym__immediate_decimal_token3] = ACTIONS(4438), - [aux_sym__immediate_decimal_token4] = ACTIONS(4440), - [aux_sym__immediate_decimal_token5] = ACTIONS(4442), - [anon_sym_null] = ACTIONS(1643), - [anon_sym_true] = ACTIONS(1643), - [anon_sym_false] = ACTIONS(1643), - [aux_sym__val_number_decimal_token1] = ACTIONS(1633), - [aux_sym__val_number_decimal_token2] = ACTIONS(1633), - [aux_sym__val_number_decimal_token3] = ACTIONS(1633), - [aux_sym__val_number_decimal_token4] = ACTIONS(1633), - [aux_sym__val_number_token1] = ACTIONS(1643), - [aux_sym__val_number_token2] = ACTIONS(1643), - [aux_sym__val_number_token3] = ACTIONS(1643), - [aux_sym__val_number_token4] = ACTIONS(1643), - [aux_sym__val_number_token5] = ACTIONS(1643), - [aux_sym__val_number_token6] = ACTIONS(1643), - [anon_sym_0b] = ACTIONS(1633), - [anon_sym_0o] = ACTIONS(1633), - [anon_sym_0x] = ACTIONS(1633), - [sym_val_date] = ACTIONS(1643), - [anon_sym_DQUOTE] = ACTIONS(1643), - [sym__str_single_quotes] = ACTIONS(1643), - [sym__str_back_ticks] = ACTIONS(1643), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1643), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1643), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [aux_sym_unquoted_token1] = ACTIONS(1633), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1643), + [1321] = { + [sym_comment] = STATE(1321), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(4522), + [aux_sym__immediate_decimal_token2] = ACTIONS(4524), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), }, - [1340] = { - [sym_comment] = STATE(1340), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4545), - [aux_sym__immediate_decimal_token2] = ACTIONS(4547), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), + [1322] = { + [sym_comment] = STATE(1322), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), + }, + [1323] = { + [sym_comment] = STATE(1323), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [sym_filesize_unit] = ACTIONS(1729), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1324] = { + [sym_cell_path] = STATE(1524), + [sym_path] = STATE(1442), + [sym_comment] = STATE(1324), + [aux_sym_cell_path_repeat1] = STATE(1336), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(935), + [anon_sym_DOT_DOT_LT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4425), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(937), }, - [1341] = { - [sym_comment] = STATE(1341), - [ts_builtin_sym_end] = ACTIONS(2241), - [anon_sym_STAR_STAR] = ACTIONS(3183), - [anon_sym_PLUS_PLUS] = ACTIONS(3183), - [anon_sym_STAR] = ACTIONS(3185), - [anon_sym_SLASH] = ACTIONS(3185), - [anon_sym_mod] = ACTIONS(3183), - [anon_sym_SLASH_SLASH] = ACTIONS(3183), - [anon_sym_PLUS] = ACTIONS(3185), - [anon_sym_DASH] = ACTIONS(3183), - [anon_sym_bit_DASHshl] = ACTIONS(3183), - [anon_sym_bit_DASHshr] = ACTIONS(3183), - [anon_sym_EQ_TILDE] = ACTIONS(3183), - [anon_sym_BANG_TILDE] = ACTIONS(3183), - [anon_sym_bit_DASHand] = ACTIONS(3183), - [anon_sym_bit_DASHxor] = ACTIONS(3183), - [anon_sym_bit_DASHor] = ACTIONS(3183), - [anon_sym_and] = ACTIONS(3183), - [anon_sym_xor] = ACTIONS(3183), - [anon_sym_or] = ACTIONS(3183), - [anon_sym_in] = ACTIONS(3183), - [anon_sym_not_DASHin] = ACTIONS(3183), - [anon_sym_starts_DASHwith] = ACTIONS(3183), - [anon_sym_ends_DASHwith] = ACTIONS(3183), - [anon_sym_EQ_EQ] = ACTIONS(3183), - [anon_sym_BANG_EQ] = ACTIONS(3183), - [anon_sym_LT] = ACTIONS(3185), - [anon_sym_LT_EQ] = ACTIONS(3183), - [anon_sym_GT] = ACTIONS(3185), - [anon_sym_GT_EQ] = ACTIONS(3183), - [aux_sym_cmd_identifier_token41] = ACTIONS(3187), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), + [1325] = { + [sym_comment] = STATE(1325), + [ts_builtin_sym_end] = ACTIONS(2196), + [anon_sym_STAR_STAR] = ACTIONS(3170), + [anon_sym_PLUS_PLUS] = ACTIONS(3170), + [anon_sym_STAR] = ACTIONS(3172), + [anon_sym_SLASH] = ACTIONS(3172), + [anon_sym_mod] = ACTIONS(3170), + [anon_sym_SLASH_SLASH] = ACTIONS(3170), + [anon_sym_PLUS] = ACTIONS(3172), + [anon_sym_DASH] = ACTIONS(3170), + [anon_sym_bit_DASHshl] = ACTIONS(3170), + [anon_sym_bit_DASHshr] = ACTIONS(3170), + [anon_sym_EQ_TILDE] = ACTIONS(3170), + [anon_sym_BANG_TILDE] = ACTIONS(3170), + [anon_sym_bit_DASHand] = ACTIONS(3170), + [anon_sym_bit_DASHxor] = ACTIONS(3170), + [anon_sym_bit_DASHor] = ACTIONS(3170), + [anon_sym_and] = ACTIONS(3170), + [anon_sym_xor] = ACTIONS(3170), + [anon_sym_or] = ACTIONS(3170), + [anon_sym_in] = ACTIONS(3170), + [anon_sym_not_DASHin] = ACTIONS(3170), + [anon_sym_starts_DASHwith] = ACTIONS(3170), + [anon_sym_ends_DASHwith] = ACTIONS(3170), + [anon_sym_EQ_EQ] = ACTIONS(3170), + [anon_sym_BANG_EQ] = ACTIONS(3170), + [anon_sym_LT] = ACTIONS(3172), + [anon_sym_LT_EQ] = ACTIONS(3170), + [anon_sym_GT] = ACTIONS(3172), + [anon_sym_GT_EQ] = ACTIONS(3170), + [aux_sym_cmd_identifier_token41] = ACTIONS(3174), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(3), }, - [1342] = { - [sym_comment] = STATE(1342), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1587), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), + [1326] = { + [sym_comment] = STATE(1326), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4044), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, - [1343] = { - [sym_path] = STATE(1430), - [sym_comment] = STATE(1343), - [aux_sym_cell_path_repeat1] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(950), - [anon_sym_EQ] = ACTIONS(948), - [anon_sym_PLUS_EQ] = ACTIONS(950), - [anon_sym_DASH_EQ] = ACTIONS(950), - [anon_sym_STAR_EQ] = ACTIONS(950), - [anon_sym_SLASH_EQ] = ACTIONS(950), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(948), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4454), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [1327] = { + [sym_cell_path] = STATE(1515), + [sym_path] = STATE(1442), + [sym_comment] = STATE(1327), + [aux_sym_cell_path_repeat1] = STATE(1336), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_LBRACK] = ACTIONS(1723), + [anon_sym_LPAREN] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_DOLLAR] = ACTIONS(1721), + [anon_sym_DASH_DASH] = ACTIONS(1723), + [anon_sym_DASH2] = ACTIONS(1721), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_DOT_DOT] = ACTIONS(1721), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1721), + [anon_sym_DOT_DOT_LT] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_null] = ACTIONS(1723), + [anon_sym_true] = ACTIONS(1723), + [anon_sym_false] = ACTIONS(1723), + [aux_sym__val_number_decimal_token1] = ACTIONS(1721), + [aux_sym__val_number_decimal_token2] = ACTIONS(1723), + [aux_sym__val_number_decimal_token3] = ACTIONS(1723), + [aux_sym__val_number_decimal_token4] = ACTIONS(1723), + [aux_sym__val_number_token1] = ACTIONS(1723), + [aux_sym__val_number_token2] = ACTIONS(1723), + [aux_sym__val_number_token3] = ACTIONS(1723), + [aux_sym__val_number_token4] = ACTIONS(1723), + [aux_sym__val_number_token5] = ACTIONS(1723), + [aux_sym__val_number_token6] = ACTIONS(1723), + [anon_sym_0b] = ACTIONS(1721), + [anon_sym_0o] = ACTIONS(1721), + [anon_sym_0x] = ACTIONS(1721), + [sym_val_date] = ACTIONS(1723), + [anon_sym_DQUOTE] = ACTIONS(1723), + [sym__str_single_quotes] = ACTIONS(1723), + [sym__str_back_ticks] = ACTIONS(1723), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), + [anon_sym_DOT2] = ACTIONS(4425), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), + [aux_sym_unquoted_token1] = ACTIONS(1721), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1723), }, - [1344] = { - [sym_comment] = STATE(1344), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [sym_filesize_unit] = ACTIONS(1735), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [aux_sym_unquoted_token2] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [1328] = { + [sym__expr_parenthesized_immediate] = STATE(7239), + [sym_comment] = STATE(1328), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1663), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT2] = ACTIONS(4526), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4528), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4528), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(4530), + [sym_duration_unit] = ACTIONS(4532), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(4534), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), }, - [1345] = { - [sym_path] = STATE(1449), - [sym_comment] = STATE(1345), - [aux_sym_cell_path_repeat1] = STATE(1350), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(948), - [anon_sym_DOT_DOT_LT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4432), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(950), + [1329] = { + [sym_comment] = STATE(1329), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(4536), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, - [1346] = { - [sym_cell_path] = STATE(1594), - [sym_path] = STATE(1484), - [sym_comment] = STATE(1346), - [aux_sym_cell_path_repeat1] = STATE(1380), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1717), - [anon_sym_0x] = ACTIONS(1717), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4549), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1719), + [1330] = { + [sym_comment] = STATE(1330), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_SEMI] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), + [anon_sym_POUND] = ACTIONS(3), }, - [1347] = { - [sym_cell_path] = STATE(1563), - [sym_path] = STATE(1484), - [sym_comment] = STATE(1347), - [aux_sym_cell_path_repeat1] = STATE(1380), + [1331] = { + [sym__expr_parenthesized_immediate] = STATE(1932), + [sym__immediate_decimal] = STATE(1880), + [sym_val_variable] = STATE(1932), + [sym_comment] = STATE(1331), + [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_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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] = ACTIONS(4540), + [aux_sym__immediate_decimal_token1] = ACTIONS(4542), + [aux_sym__immediate_decimal_token3] = ACTIONS(4542), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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(251), + }, + [1332] = { + [sym_cell_path] = STATE(1591), + [sym_path] = STATE(1533), + [sym_comment] = STATE(1332), + [aux_sym_cell_path_repeat1] = STATE(1365), [ts_builtin_sym_end] = ACTIONS(937), [sym__newline] = ACTIONS(937), [anon_sym_SEMI] = ACTIONS(937), @@ -209902,7 +208863,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4549), + [anon_sym_DOT2] = ACTIONS(4548), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -209923,371 +208884,515 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(937), }, - [1348] = { - [sym_comment] = STATE(1348), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1733), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [sym_filesize_unit] = ACTIONS(1735), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [aux_sym_unquoted_token2] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [1333] = { + [sym_comment] = STATE(1333), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4550), + [aux_sym__immediate_decimal_token2] = ACTIONS(4552), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1349] = { - [sym__expr_parenthesized_immediate] = STATE(1934), - [sym__immediate_decimal] = STATE(1935), - [sym_val_variable] = STATE(1934), - [sym_comment] = STATE(1349), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4555), - [aux_sym__immediate_decimal_token3] = ACTIONS(4555), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [1334] = { + [sym_comment] = STATE(1334), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_COLON2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(251), }, - [1350] = { - [sym_path] = STATE(1449), - [sym_comment] = STATE(1350), - [aux_sym_cell_path_repeat1] = STATE(1350), - [sym__newline] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_err_GT_PIPE] = ACTIONS(943), - [anon_sym_out_GT_PIPE] = ACTIONS(943), - [anon_sym_e_GT_PIPE] = ACTIONS(943), - [anon_sym_o_GT_PIPE] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT2] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(941), - [anon_sym_DOT_DOT_LT] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_null] = ACTIONS(943), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [aux_sym__val_number_decimal_token1] = ACTIONS(941), - [aux_sym__val_number_decimal_token2] = ACTIONS(943), - [aux_sym__val_number_decimal_token3] = ACTIONS(943), - [aux_sym__val_number_decimal_token4] = ACTIONS(943), - [aux_sym__val_number_token1] = ACTIONS(943), - [aux_sym__val_number_token2] = ACTIONS(943), - [aux_sym__val_number_token3] = ACTIONS(943), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_0b] = ACTIONS(941), - [anon_sym_0o] = ACTIONS(941), - [anon_sym_0x] = ACTIONS(941), - [sym_val_date] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(943), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4561), - [anon_sym_err_GT] = ACTIONS(941), - [anon_sym_out_GT] = ACTIONS(941), - [anon_sym_e_GT] = ACTIONS(941), - [anon_sym_o_GT] = ACTIONS(941), - [anon_sym_err_PLUSout_GT] = ACTIONS(941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(941), - [anon_sym_o_PLUSe_GT] = ACTIONS(941), - [anon_sym_e_PLUSo_GT] = ACTIONS(941), - [anon_sym_err_GT_GT] = ACTIONS(943), - [anon_sym_out_GT_GT] = ACTIONS(943), - [anon_sym_e_GT_GT] = ACTIONS(943), - [anon_sym_o_GT_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), - [aux_sym_unquoted_token1] = ACTIONS(941), + [1335] = { + [sym__expr_parenthesized_immediate] = STATE(1932), + [sym__immediate_decimal] = STATE(1767), + [sym_val_variable] = STATE(1932), + [sym_comment] = STATE(1335), + [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_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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] = ACTIONS(4554), + [aux_sym__immediate_decimal_token1] = ACTIONS(4542), + [aux_sym__immediate_decimal_token3] = ACTIONS(4542), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(943), }, - [1351] = { - [sym__expr_parenthesized_immediate] = STATE(1820), - [sym__immediate_decimal] = STATE(1729), - [sym_val_variable] = STATE(1820), - [sym_comment] = STATE(1351), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4564), - [aux_sym__immediate_decimal_token1] = ACTIONS(4555), - [aux_sym__immediate_decimal_token3] = ACTIONS(4555), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token2] = ACTIONS(1555), + [1336] = { + [sym_path] = STATE(1442), + [sym_comment] = STATE(1336), + [aux_sym_cell_path_repeat1] = STATE(1360), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(948), + [anon_sym_DOT_DOT_LT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_null] = ACTIONS(950), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(948), + [anon_sym_0o] = ACTIONS(948), + [anon_sym_0x] = ACTIONS(948), + [sym_val_date] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4425), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [aux_sym_unquoted_token1] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [1337] = { + [sym__expr_parenthesized_immediate] = STATE(1912), + [sym__immediate_decimal] = STATE(1914), + [sym_val_variable] = STATE(1912), + [sym_comment] = STATE(1337), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1557), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(4556), + [aux_sym__immediate_decimal_token1] = ACTIONS(4542), + [aux_sym__immediate_decimal_token3] = ACTIONS(4542), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(251), + }, + [1338] = { + [sym_path] = STATE(1424), + [sym_comment] = STATE(1338), + [aux_sym_cell_path_repeat1] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(950), + [anon_sym_EQ] = ACTIONS(948), + [anon_sym_PLUS_EQ] = ACTIONS(950), + [anon_sym_DASH_EQ] = ACTIONS(950), + [anon_sym_STAR_EQ] = ACTIONS(950), + [anon_sym_SLASH_EQ] = ACTIONS(950), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(948), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4427), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(251), }, - [1352] = { - [sym_comment] = STATE(1352), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4566), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [1339] = { + [sym_comment] = STATE(1339), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4558), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [1353] = { - [sym_cell_path] = STATE(1615), - [sym_path] = STATE(1484), - [sym_comment] = STATE(1353), - [aux_sym_cell_path_repeat1] = STATE(1380), + [1340] = { + [sym_cell_path] = STATE(1554), + [sym_path] = STATE(1533), + [sym_comment] = STATE(1340), + [aux_sym_cell_path_repeat1] = STATE(1365), [ts_builtin_sym_end] = ACTIONS(1723), [sym__newline] = ACTIONS(1723), [anon_sym_SEMI] = ACTIONS(1723), @@ -210334,7 +209439,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1723), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1723), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4549), + [anon_sym_DOT2] = ACTIONS(4548), [anon_sym_err_GT] = ACTIONS(1721), [anon_sym_out_GT] = ACTIONS(1721), [anon_sym_e_GT] = ACTIONS(1721), @@ -210355,656 +209460,152 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1723), }, - [1354] = { - [sym_comment] = STATE(1354), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4452), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [1355] = { - [sym_comment] = STATE(1355), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4568), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4570), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1356] = { - [sym_comment] = STATE(1356), - [ts_builtin_sym_end] = ACTIONS(1597), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1595), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), - }, - [1357] = { - [sym_cell_path] = STATE(1576), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1357), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_RPAREN] = ACTIONS(1723), - [anon_sym_GT2] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1723), - [anon_sym_in2] = ACTIONS(1723), - [anon_sym_if] = ACTIONS(1723), - [anon_sym_LBRACE] = ACTIONS(1723), - [anon_sym_RBRACE] = ACTIONS(1723), - [anon_sym_EQ_GT] = ACTIONS(1723), - [anon_sym_STAR2] = ACTIONS(1721), - [anon_sym_and2] = ACTIONS(1723), - [anon_sym_xor2] = ACTIONS(1723), - [anon_sym_or2] = ACTIONS(1723), - [anon_sym_not_DASHin2] = ACTIONS(1723), - [anon_sym_starts_DASHwith2] = ACTIONS(1723), - [anon_sym_ends_DASHwith2] = ACTIONS(1723), - [anon_sym_EQ_EQ2] = ACTIONS(1723), - [anon_sym_BANG_EQ2] = ACTIONS(1723), - [anon_sym_LT2] = ACTIONS(1721), - [anon_sym_LT_EQ2] = ACTIONS(1723), - [anon_sym_GT_EQ2] = ACTIONS(1723), - [anon_sym_EQ_TILDE2] = ACTIONS(1723), - [anon_sym_BANG_TILDE2] = ACTIONS(1723), - [anon_sym_STAR_STAR2] = ACTIONS(1723), - [anon_sym_PLUS_PLUS2] = ACTIONS(1723), - [anon_sym_SLASH2] = ACTIONS(1721), - [anon_sym_mod2] = ACTIONS(1723), - [anon_sym_SLASH_SLASH2] = ACTIONS(1723), - [anon_sym_PLUS2] = ACTIONS(1721), - [anon_sym_bit_DASHshl2] = ACTIONS(1723), - [anon_sym_bit_DASHshr2] = ACTIONS(1723), - [anon_sym_bit_DASHand2] = ACTIONS(1723), - [anon_sym_bit_DASHxor2] = ACTIONS(1723), - [anon_sym_bit_DASHor2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_COLON2] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(251), - }, - [1358] = { - [sym_comment] = STATE(1358), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_SEMI] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), - [anon_sym_POUND] = ACTIONS(3), - }, - [1359] = { - [sym__expr_parenthesized_immediate] = STATE(1820), - [sym__immediate_decimal] = STATE(1924), - [sym_val_variable] = STATE(1820), - [sym_comment] = STATE(1359), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4574), - [aux_sym__immediate_decimal_token1] = ACTIONS(4555), - [aux_sym__immediate_decimal_token3] = ACTIONS(4555), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(251), - }, - [1360] = { - [sym_path] = STATE(1430), - [sym_comment] = STATE(1360), - [aux_sym_cell_path_repeat1] = STATE(1360), - [ts_builtin_sym_end] = ACTIONS(943), - [anon_sym_EQ] = ACTIONS(941), - [anon_sym_PLUS_EQ] = ACTIONS(943), - [anon_sym_DASH_EQ] = ACTIONS(943), - [anon_sym_STAR_EQ] = ACTIONS(943), - [anon_sym_SLASH_EQ] = ACTIONS(943), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(943), - [sym__newline] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_err_GT_PIPE] = ACTIONS(943), - [anon_sym_out_GT_PIPE] = ACTIONS(943), - [anon_sym_e_GT_PIPE] = ACTIONS(943), - [anon_sym_o_GT_PIPE] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), - [anon_sym_GT2] = ACTIONS(941), - [anon_sym_DASH2] = ACTIONS(941), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_STAR2] = ACTIONS(941), - [anon_sym_and2] = ACTIONS(943), - [anon_sym_xor2] = ACTIONS(943), - [anon_sym_or2] = ACTIONS(943), - [anon_sym_not_DASHin2] = ACTIONS(943), - [anon_sym_starts_DASHwith2] = ACTIONS(943), - [anon_sym_ends_DASHwith2] = ACTIONS(943), - [anon_sym_EQ_EQ2] = ACTIONS(943), - [anon_sym_BANG_EQ2] = ACTIONS(943), - [anon_sym_LT2] = ACTIONS(941), - [anon_sym_LT_EQ2] = ACTIONS(943), - [anon_sym_GT_EQ2] = ACTIONS(943), - [anon_sym_EQ_TILDE2] = ACTIONS(943), - [anon_sym_BANG_TILDE2] = ACTIONS(943), - [anon_sym_STAR_STAR2] = ACTIONS(943), - [anon_sym_PLUS_PLUS2] = ACTIONS(941), - [anon_sym_SLASH2] = ACTIONS(941), - [anon_sym_mod2] = ACTIONS(943), - [anon_sym_SLASH_SLASH2] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_bit_DASHshl2] = ACTIONS(943), - [anon_sym_bit_DASHshr2] = ACTIONS(943), - [anon_sym_bit_DASHand2] = ACTIONS(943), - [anon_sym_bit_DASHxor2] = ACTIONS(943), - [anon_sym_bit_DASHor2] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4576), - [anon_sym_err_GT] = ACTIONS(941), - [anon_sym_out_GT] = ACTIONS(941), - [anon_sym_e_GT] = ACTIONS(941), - [anon_sym_o_GT] = ACTIONS(941), - [anon_sym_err_PLUSout_GT] = ACTIONS(941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(941), - [anon_sym_o_PLUSe_GT] = ACTIONS(941), - [anon_sym_e_PLUSo_GT] = ACTIONS(941), - [anon_sym_err_GT_GT] = ACTIONS(943), - [anon_sym_out_GT_GT] = ACTIONS(943), - [anon_sym_e_GT_GT] = ACTIONS(943), - [anon_sym_o_GT_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - }, - [1361] = { - [sym_comment] = STATE(1361), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4529), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), + [1341] = { + [sym__match_pattern] = STATE(7338), + [sym__match_pattern_expression] = STATE(6927), + [sym__match_pattern_value] = STATE(6943), + [sym__match_pattern_list] = STATE(6944), + [sym__match_pattern_record] = STATE(6945), + [sym_expr_parenthesized] = STATE(5764), + [sym_val_range] = STATE(6943), + [sym__val_range] = STATE(7646), + [sym_val_nothing] = STATE(6946), + [sym_val_bool] = STATE(6931), + [sym_val_variable] = STATE(5765), + [sym_val_number] = STATE(6946), + [sym__val_number_decimal] = STATE(5313), + [sym__val_number] = STATE(1662), + [sym_val_duration] = STATE(6946), + [sym_val_filesize] = STATE(6946), + [sym_val_binary] = STATE(6946), + [sym_val_string] = STATE(6946), + [sym__raw_str] = STATE(1410), + [sym__str_double_quotes] = STATE(1410), + [sym_val_table] = STATE(6946), + [sym_unquoted] = STATE(6952), + [sym__unquoted_anonymous_prefix] = STATE(7648), + [sym_comment] = STATE(1341), + [anon_sym_LBRACK] = ACTIONS(3532), + [anon_sym_LPAREN] = ACTIONS(157), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_LBRACE] = ACTIONS(3536), + [anon_sym_DOT_DOT] = ACTIONS(4560), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4562), + [anon_sym_DOT_DOT_LT] = ACTIONS(4562), + [anon_sym_null] = ACTIONS(4564), + [anon_sym_true] = ACTIONS(4566), + [anon_sym_false] = ACTIONS(4566), + [aux_sym__val_number_decimal_token1] = ACTIONS(4568), + [aux_sym__val_number_decimal_token2] = ACTIONS(4570), + [aux_sym__val_number_decimal_token3] = ACTIONS(4572), + [aux_sym__val_number_decimal_token4] = ACTIONS(4574), + [aux_sym__val_number_token1] = ACTIONS(227), + [aux_sym__val_number_token2] = ACTIONS(227), + [aux_sym__val_number_token3] = ACTIONS(227), + [aux_sym__val_number_token4] = ACTIONS(4576), + [aux_sym__val_number_token5] = ACTIONS(4576), + [aux_sym__val_number_token6] = ACTIONS(4576), + [anon_sym_0b] = ACTIONS(231), + [anon_sym_0o] = ACTIONS(233), + [anon_sym_0x] = ACTIONS(233), + [sym_val_date] = ACTIONS(4578), + [anon_sym_DQUOTE] = ACTIONS(237), + [sym__str_single_quotes] = ACTIONS(239), + [sym__str_back_ticks] = ACTIONS(239), + [anon_sym_err_GT] = ACTIONS(2644), + [anon_sym_out_GT] = ACTIONS(2644), + [anon_sym_e_GT] = ACTIONS(2644), + [anon_sym_o_GT] = ACTIONS(2644), + [anon_sym_err_PLUSout_GT] = ACTIONS(2644), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2644), + [anon_sym_o_PLUSe_GT] = ACTIONS(2644), + [anon_sym_e_PLUSo_GT] = ACTIONS(2644), + [anon_sym_err_GT_GT] = ACTIONS(2646), + [anon_sym_out_GT_GT] = ACTIONS(2646), + [anon_sym_e_GT_GT] = ACTIONS(2646), + [anon_sym_o_GT_GT] = ACTIONS(2646), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2646), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2646), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2646), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2646), + [aux_sym_unquoted_token1] = ACTIONS(3206), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(253), }, - [1362] = { - [sym_comment] = STATE(1362), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_SEMI] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), + [1342] = { + [sym_comment] = STATE(1342), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, - [1363] = { - [sym_comment] = STATE(1363), + [1343] = { + [sym_comment] = STATE(1343), [anon_sym_EQ] = ACTIONS(988), [anon_sym_PLUS_EQ] = ACTIONS(990), [anon_sym_DASH_EQ] = ACTIONS(990), @@ -211075,152 +209676,227 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), [anon_sym_POUND] = ACTIONS(251), }, - [1364] = { - [sym_comment] = STATE(1364), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), + [1344] = { + [sym_comment] = STATE(1344), + [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_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(4580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(4584), + [sym_duration_unit] = ACTIONS(4586), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), }, - [1365] = { - [sym_comment] = STATE(1365), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1667), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_LPAREN2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), + [1345] = { + [sym_comment] = STATE(1345), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1685), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, - [1366] = { - [sym_comment] = STATE(1366), + [1346] = { + [sym_comment] = STATE(1346), + [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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), + }, + [1347] = { + [sym_cell_path] = STATE(1564), + [sym_path] = STATE(1533), + [sym_comment] = STATE(1347), + [aux_sym_cell_path_repeat1] = STATE(1365), [ts_builtin_sym_end] = ACTIONS(1759), [sym__newline] = ACTIONS(1759), [anon_sym_SEMI] = ACTIONS(1759), @@ -211234,20 +209910,17 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), + [anon_sym_LPAREN] = ACTIONS(1759), [anon_sym_DOLLAR] = ACTIONS(1757), [anon_sym_DASH_DASH] = ACTIONS(1759), [anon_sym_DASH2] = ACTIONS(1757), [anon_sym_LBRACE] = ACTIONS(1759), [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), [anon_sym_DOT_DOT_LT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4579), - [aux_sym__immediate_decimal_token2] = ACTIONS(4581), [anon_sym_null] = ACTIONS(1759), [anon_sym_true] = ACTIONS(1759), [anon_sym_false] = ACTIONS(1759), @@ -211270,6 +209943,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(1759), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), + [anon_sym_DOT2] = ACTIONS(4548), [anon_sym_err_GT] = ACTIONS(1757), [anon_sym_out_GT] = ACTIONS(1757), [anon_sym_e_GT] = ACTIONS(1757), @@ -211287,156 +209961,299 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1759), }, - [1367] = { - [sym__match_pattern] = STATE(7334), - [sym__match_pattern_expression] = STATE(6701), - [sym__match_pattern_value] = STATE(6704), - [sym__match_pattern_list] = STATE(6712), - [sym__match_pattern_record] = STATE(6713), - [sym_expr_parenthesized] = STATE(5584), - [sym_val_range] = STATE(6704), - [sym__val_range] = STATE(7439), - [sym_val_nothing] = STATE(6717), - [sym_val_bool] = STATE(6695), - [sym_val_variable] = STATE(5590), - [sym_val_number] = STATE(6717), - [sym__val_number_decimal] = STATE(5309), - [sym__val_number] = STATE(1638), - [sym_val_duration] = STATE(6717), - [sym_val_filesize] = STATE(6717), - [sym_val_binary] = STATE(6717), - [sym_val_string] = STATE(6717), - [sym__raw_str] = STATE(1420), - [sym__str_double_quotes] = STATE(1420), - [sym_val_table] = STATE(6717), - [sym_unquoted] = STATE(6730), - [sym__unquoted_anonymous_prefix] = STATE(7445), - [sym_comment] = STATE(1367), - [anon_sym_LBRACK] = ACTIONS(3545), - [anon_sym_LPAREN] = ACTIONS(157), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_LBRACE] = ACTIONS(3549), - [anon_sym_DOT_DOT] = ACTIONS(4583), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4585), - [anon_sym_DOT_DOT_LT] = ACTIONS(4585), - [anon_sym_null] = ACTIONS(4587), - [anon_sym_true] = ACTIONS(4589), - [anon_sym_false] = ACTIONS(4589), - [aux_sym__val_number_decimal_token1] = ACTIONS(4591), - [aux_sym__val_number_decimal_token2] = ACTIONS(4593), - [aux_sym__val_number_decimal_token3] = ACTIONS(4595), - [aux_sym__val_number_decimal_token4] = ACTIONS(4597), - [aux_sym__val_number_token1] = ACTIONS(227), - [aux_sym__val_number_token2] = ACTIONS(227), - [aux_sym__val_number_token3] = ACTIONS(227), - [aux_sym__val_number_token4] = ACTIONS(4599), - [aux_sym__val_number_token5] = ACTIONS(4599), - [aux_sym__val_number_token6] = ACTIONS(4599), - [anon_sym_0b] = ACTIONS(231), - [anon_sym_0o] = ACTIONS(233), - [anon_sym_0x] = ACTIONS(233), - [sym_val_date] = ACTIONS(4601), - [anon_sym_DQUOTE] = ACTIONS(237), - [sym__str_single_quotes] = ACTIONS(239), - [sym__str_back_ticks] = ACTIONS(239), - [anon_sym_err_GT] = ACTIONS(2741), - [anon_sym_out_GT] = ACTIONS(2741), - [anon_sym_e_GT] = ACTIONS(2741), - [anon_sym_o_GT] = ACTIONS(2741), - [anon_sym_err_PLUSout_GT] = ACTIONS(2741), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2741), - [anon_sym_o_PLUSe_GT] = ACTIONS(2741), - [anon_sym_e_PLUSo_GT] = ACTIONS(2741), - [anon_sym_err_GT_GT] = ACTIONS(2743), - [anon_sym_out_GT_GT] = ACTIONS(2743), - [anon_sym_e_GT_GT] = ACTIONS(2743), - [anon_sym_o_GT_GT] = ACTIONS(2743), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2743), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2743), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2743), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2743), - [aux_sym_unquoted_token1] = ACTIONS(3219), + [1348] = { + [sym_comment] = STATE(1348), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1727), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [sym_filesize_unit] = ACTIONS(1729), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1349] = { + [sym_path] = STATE(1424), + [sym_comment] = STATE(1349), + [aux_sym_cell_path_repeat1] = STATE(1349), + [ts_builtin_sym_end] = ACTIONS(943), + [anon_sym_EQ] = ACTIONS(941), + [anon_sym_PLUS_EQ] = ACTIONS(943), + [anon_sym_DASH_EQ] = ACTIONS(943), + [anon_sym_STAR_EQ] = ACTIONS(943), + [anon_sym_SLASH_EQ] = ACTIONS(943), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(941), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4590), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(253), }, - [1368] = { - [sym_comment] = STATE(1368), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_COLON2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [1350] = { + [sym_comment] = STATE(1350), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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_POUND] = ACTIONS(3), + }, + [1351] = { + [sym_cell_path] = STATE(1558), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1351), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_err_GT_PIPE] = ACTIONS(1759), + [anon_sym_out_GT_PIPE] = ACTIONS(1759), + [anon_sym_e_GT_PIPE] = ACTIONS(1759), + [anon_sym_o_GT_PIPE] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_GT2] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1759), + [anon_sym_in2] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_EQ_GT] = ACTIONS(1759), + [anon_sym_STAR2] = ACTIONS(1757), + [anon_sym_and2] = ACTIONS(1759), + [anon_sym_xor2] = ACTIONS(1759), + [anon_sym_or2] = ACTIONS(1759), + [anon_sym_not_DASHin2] = ACTIONS(1759), + [anon_sym_starts_DASHwith2] = ACTIONS(1759), + [anon_sym_ends_DASHwith2] = ACTIONS(1759), + [anon_sym_EQ_EQ2] = ACTIONS(1759), + [anon_sym_BANG_EQ2] = ACTIONS(1759), + [anon_sym_LT2] = ACTIONS(1757), + [anon_sym_LT_EQ2] = ACTIONS(1759), + [anon_sym_GT_EQ2] = ACTIONS(1759), + [anon_sym_EQ_TILDE2] = ACTIONS(1759), + [anon_sym_BANG_TILDE2] = ACTIONS(1759), + [anon_sym_STAR_STAR2] = ACTIONS(1759), + [anon_sym_PLUS_PLUS2] = ACTIONS(1759), + [anon_sym_SLASH2] = ACTIONS(1757), + [anon_sym_mod2] = ACTIONS(1759), + [anon_sym_SLASH_SLASH2] = ACTIONS(1759), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_bit_DASHshl2] = ACTIONS(1759), + [anon_sym_bit_DASHshr2] = ACTIONS(1759), + [anon_sym_bit_DASHand2] = ACTIONS(1759), + [anon_sym_bit_DASHxor2] = ACTIONS(1759), + [anon_sym_bit_DASHor2] = ACTIONS(1759), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), + [anon_sym_COLON2] = ACTIONS(1759), + [anon_sym_DOT2] = ACTIONS(4593), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1759), + [anon_sym_out_GT_GT] = ACTIONS(1759), + [anon_sym_e_GT_GT] = ACTIONS(1759), + [anon_sym_o_GT_GT] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(251), }, - [1369] = { - [sym_comment] = STATE(1369), + [1352] = { + [sym_comment] = STATE(1352), [anon_sym_EQ] = ACTIONS(980), [anon_sym_PLUS_EQ] = ACTIONS(982), [anon_sym_DASH_EQ] = ACTIONS(982), @@ -211507,442 +210324,514 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), [anon_sym_POUND] = ACTIONS(251), }, - [1370] = { - [sym_comment] = STATE(1370), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4603), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), + [1353] = { + [sym_comment] = STATE(1353), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4423), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, - [1371] = { - [sym_comment] = STATE(1371), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), + [1354] = { + [sym_comment] = STATE(1354), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_RPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), }, - [1372] = { - [sym_cell_path] = STATE(1585), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1372), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_GT2] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_EQ_GT] = ACTIONS(1719), - [anon_sym_STAR2] = ACTIONS(1717), - [anon_sym_and2] = ACTIONS(1719), - [anon_sym_xor2] = ACTIONS(1719), - [anon_sym_or2] = ACTIONS(1719), - [anon_sym_not_DASHin2] = ACTIONS(1719), - [anon_sym_starts_DASHwith2] = ACTIONS(1719), - [anon_sym_ends_DASHwith2] = ACTIONS(1719), - [anon_sym_EQ_EQ2] = ACTIONS(1719), - [anon_sym_BANG_EQ2] = ACTIONS(1719), - [anon_sym_LT2] = ACTIONS(1717), - [anon_sym_LT_EQ2] = ACTIONS(1719), - [anon_sym_GT_EQ2] = ACTIONS(1719), - [anon_sym_EQ_TILDE2] = ACTIONS(1719), - [anon_sym_BANG_TILDE2] = ACTIONS(1719), - [anon_sym_STAR_STAR2] = ACTIONS(1719), - [anon_sym_PLUS_PLUS2] = ACTIONS(1719), - [anon_sym_SLASH2] = ACTIONS(1717), - [anon_sym_mod2] = ACTIONS(1719), - [anon_sym_SLASH_SLASH2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_bit_DASHshl2] = ACTIONS(1719), - [anon_sym_bit_DASHshr2] = ACTIONS(1719), - [anon_sym_bit_DASHand2] = ACTIONS(1719), - [anon_sym_bit_DASHxor2] = ACTIONS(1719), - [anon_sym_bit_DASHor2] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_COLON2] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), + [1355] = { + [sym_comment] = STATE(1355), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1605), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), }, - [1373] = { - [sym_comment] = STATE(1373), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(4605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4607), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4607), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4609), - [sym_duration_unit] = ACTIONS(4611), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4613), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), + [1356] = { + [sym_comment] = STATE(1356), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [sym_filesize_unit] = ACTIONS(1729), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), }, - [1374] = { - [sym_comment] = STATE(1374), - [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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), + [1357] = { + [sym_comment] = STATE(1357), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4445), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1375] = { - [sym_comment] = STATE(1375), - [ts_builtin_sym_end] = ACTIONS(1597), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_LBRACK] = ACTIONS(1597), - [anon_sym_LPAREN] = ACTIONS(1597), - [anon_sym_DOLLAR] = ACTIONS(1595), - [anon_sym_DASH_DASH] = ACTIONS(1597), - [anon_sym_DASH2] = ACTIONS(1595), - [anon_sym_LBRACE] = ACTIONS(1597), - [anon_sym_DOT_DOT] = ACTIONS(1595), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1595), - [anon_sym_DOT_DOT_LT] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [anon_sym_null] = ACTIONS(1597), - [anon_sym_true] = ACTIONS(1597), - [anon_sym_false] = ACTIONS(1597), - [aux_sym__val_number_decimal_token1] = ACTIONS(1595), - [aux_sym__val_number_decimal_token2] = ACTIONS(1597), - [aux_sym__val_number_decimal_token3] = ACTIONS(1597), - [aux_sym__val_number_decimal_token4] = ACTIONS(1597), - [aux_sym__val_number_token1] = ACTIONS(1597), - [aux_sym__val_number_token2] = ACTIONS(1597), - [aux_sym__val_number_token3] = ACTIONS(1597), - [aux_sym__val_number_token4] = ACTIONS(1597), - [aux_sym__val_number_token5] = ACTIONS(1597), - [aux_sym__val_number_token6] = ACTIONS(1597), - [anon_sym_0b] = ACTIONS(1595), - [sym_filesize_unit] = ACTIONS(1597), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_0o] = ACTIONS(1595), - [anon_sym_0x] = ACTIONS(1595), - [sym_val_date] = ACTIONS(1597), - [anon_sym_DQUOTE] = ACTIONS(1597), - [sym__str_single_quotes] = ACTIONS(1597), - [sym__str_back_ticks] = ACTIONS(1597), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1597), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token1] = ACTIONS(1595), - [aux_sym_unquoted_token2] = ACTIONS(1595), + [1358] = { + [sym_cell_path] = STATE(1537), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1358), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_RPAREN] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_if] = ACTIONS(1723), + [anon_sym_LBRACE] = ACTIONS(1723), + [anon_sym_RBRACE] = ACTIONS(1723), + [anon_sym_EQ_GT] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1721), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1721), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1721), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1721), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_COLON2] = ACTIONS(1723), + [anon_sym_DOT2] = ACTIONS(4593), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1597), }, - [1376] = { - [sym_path] = STATE(1484), - [sym_comment] = STATE(1376), - [aux_sym_cell_path_repeat1] = STATE(1376), - [ts_builtin_sym_end] = ACTIONS(943), + [1359] = { + [sym_comment] = STATE(1359), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4595), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4597), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1360] = { + [sym_path] = STATE(1442), + [sym_comment] = STATE(1360), + [aux_sym_cell_path_repeat1] = STATE(1360), [sym__newline] = ACTIONS(943), [anon_sym_SEMI] = ACTIONS(943), [anon_sym_PIPE] = ACTIONS(943), @@ -211956,10 +210845,12 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), [anon_sym_LBRACK] = ACTIONS(943), [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), [anon_sym_DOLLAR] = ACTIONS(941), [anon_sym_DASH_DASH] = ACTIONS(943), [anon_sym_DASH2] = ACTIONS(941), [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), [anon_sym_DOT_DOT] = ACTIONS(941), [anon_sym_DOT_DOT2] = ACTIONS(941), [anon_sym_DOT_DOT_EQ] = ACTIONS(941), @@ -211988,7 +210879,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4615), + [anon_sym_DOT2] = ACTIONS(4599), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -212009,223 +210900,295 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(943), }, - [1377] = { - [sym_cell_path] = STATE(1647), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1377), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(937), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_if] = ACTIONS(937), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), - [anon_sym_EQ_GT] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(937), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(251), + [1361] = { + [sym_comment] = STATE(1361), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1597), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_LPAREN2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), }, - [1378] = { - [sym__expr_parenthesized_immediate] = STATE(2050), - [sym__immediate_decimal] = STATE(2095), - [sym_val_variable] = STATE(2050), - [sym_comment] = STATE(1378), - [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_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1627), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_in2] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1627), - [anon_sym_and2] = ACTIONS(1629), - [anon_sym_xor2] = ACTIONS(1629), - [anon_sym_or2] = ACTIONS(1629), - [anon_sym_not_DASHin2] = ACTIONS(1629), - [anon_sym_starts_DASHwith2] = ACTIONS(1629), - [anon_sym_ends_DASHwith2] = ACTIONS(1629), - [anon_sym_EQ_EQ2] = ACTIONS(1629), - [anon_sym_BANG_EQ2] = ACTIONS(1629), - [anon_sym_LT2] = ACTIONS(1627), - [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_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1629), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1627), - [anon_sym_mod2] = ACTIONS(1629), - [anon_sym_SLASH_SLASH2] = ACTIONS(1629), - [anon_sym_PLUS2] = ACTIONS(1627), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4618), - [aux_sym__immediate_decimal_token3] = ACTIONS(4618), - [aux_sym__immediate_decimal_token4] = ACTIONS(4620), - [aux_sym__immediate_decimal_token5] = ACTIONS(4622), - [anon_sym_err_GT] = ACTIONS(1627), - [anon_sym_out_GT] = ACTIONS(1627), - [anon_sym_e_GT] = ACTIONS(1627), - [anon_sym_o_GT] = ACTIONS(1627), - [anon_sym_err_PLUSout_GT] = ACTIONS(1627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), - [anon_sym_o_PLUSe_GT] = ACTIONS(1627), - [anon_sym_e_PLUSo_GT] = ACTIONS(1627), - [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), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [1362] = { + [sym_comment] = STATE(1362), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(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_GT2] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_in2] = ACTIONS(2200), + [anon_sym_STAR2] = ACTIONS(2200), + [anon_sym_and2] = ACTIONS(2200), + [anon_sym_xor2] = ACTIONS(2200), + [anon_sym_or2] = ACTIONS(2200), + [anon_sym_not_DASHin2] = ACTIONS(2200), + [anon_sym_starts_DASHwith2] = ACTIONS(2200), + [anon_sym_ends_DASHwith2] = ACTIONS(2200), + [anon_sym_EQ_EQ2] = ACTIONS(2200), + [anon_sym_BANG_EQ2] = ACTIONS(2200), + [anon_sym_LT2] = ACTIONS(2200), + [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_STAR_STAR2] = ACTIONS(2200), + [anon_sym_PLUS_PLUS2] = ACTIONS(2200), + [anon_sym_SLASH2] = ACTIONS(2200), + [anon_sym_mod2] = ACTIONS(2200), + [anon_sym_SLASH_SLASH2] = ACTIONS(2200), + [anon_sym_PLUS2] = ACTIONS(2200), + [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_POUND] = ACTIONS(3), + }, + [1363] = { + [sym__expr_parenthesized_immediate] = STATE(2016), + [sym__immediate_decimal] = STATE(2076), + [sym_val_variable] = STATE(2016), + [sym_comment] = STATE(1363), + [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_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(4602), + [aux_sym__immediate_decimal_token3] = ACTIONS(4602), + [aux_sym__immediate_decimal_token4] = ACTIONS(4604), + [aux_sym__immediate_decimal_token5] = ACTIONS(4606), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1545), [anon_sym_POUND] = ACTIONS(251), }, - [1379] = { - [sym_comment] = STATE(1379), - [ts_builtin_sym_end] = ACTIONS(974), - [anon_sym_EQ] = ACTIONS(972), - [anon_sym_PLUS_EQ] = ACTIONS(974), - [anon_sym_DASH_EQ] = ACTIONS(974), - [anon_sym_STAR_EQ] = ACTIONS(974), - [anon_sym_SLASH_EQ] = ACTIONS(974), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_GT2] = ACTIONS(972), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_in2] = ACTIONS(974), - [anon_sym_STAR2] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_and2] = ACTIONS(974), - [anon_sym_xor2] = ACTIONS(974), - [anon_sym_or2] = ACTIONS(974), - [anon_sym_not_DASHin2] = ACTIONS(974), - [anon_sym_starts_DASHwith2] = ACTIONS(974), - [anon_sym_ends_DASHwith2] = ACTIONS(974), - [anon_sym_EQ_EQ2] = ACTIONS(974), - [anon_sym_BANG_EQ2] = ACTIONS(974), - [anon_sym_LT2] = ACTIONS(972), - [anon_sym_LT_EQ2] = ACTIONS(974), - [anon_sym_GT_EQ2] = ACTIONS(974), - [anon_sym_EQ_TILDE2] = ACTIONS(974), - [anon_sym_BANG_TILDE2] = ACTIONS(974), - [anon_sym_STAR_STAR2] = ACTIONS(974), - [anon_sym_PLUS_PLUS2] = ACTIONS(972), - [anon_sym_SLASH2] = ACTIONS(972), - [anon_sym_mod2] = ACTIONS(974), - [anon_sym_SLASH_SLASH2] = ACTIONS(974), - [anon_sym_PLUS2] = ACTIONS(972), - [anon_sym_bit_DASHshl2] = ACTIONS(974), - [anon_sym_bit_DASHshr2] = ACTIONS(974), - [anon_sym_bit_DASHand2] = ACTIONS(974), - [anon_sym_bit_DASHxor2] = ACTIONS(974), - [anon_sym_bit_DASHor2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [1364] = { + [sym_path] = STATE(1531), + [sym_comment] = STATE(1364), + [aux_sym_cell_path_repeat1] = STATE(1364), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_RPAREN] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(943), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_if] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_RBRACE] = ACTIONS(943), + [anon_sym_EQ_GT] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(943), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_COLON2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4608), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), [anon_sym_POUND] = ACTIONS(251), }, - [1380] = { - [sym_path] = STATE(1484), - [sym_comment] = STATE(1380), - [aux_sym_cell_path_repeat1] = STATE(1376), + [1365] = { + [sym_path] = STATE(1533), + [sym_comment] = STATE(1365), + [aux_sym_cell_path_repeat1] = STATE(1386), [ts_builtin_sym_end] = ACTIONS(950), [sym__newline] = ACTIONS(950), [anon_sym_SEMI] = ACTIONS(950), @@ -212272,7 +211235,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4549), + [anon_sym_DOT2] = ACTIONS(4548), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -212293,292 +211256,79 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(950), }, - [1381] = { - [sym_comment] = STATE(1381), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1382] = { - [sym_comment] = STATE(1382), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(4624), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4626), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4626), - [anon_sym_null] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [aux_sym__val_number_token4] = ACTIONS(1794), - [aux_sym__val_number_token5] = ACTIONS(1794), - [aux_sym__val_number_token6] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1794), - }, - [1383] = { - [sym_comment] = STATE(1383), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1384] = { - [sym_comment] = STATE(1384), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1669), - [anon_sym_LPAREN] = ACTIONS(1669), - [anon_sym_DOLLAR] = ACTIONS(1667), - [anon_sym_DASH_DASH] = ACTIONS(1669), - [anon_sym_DASH2] = ACTIONS(1667), - [anon_sym_LBRACE] = ACTIONS(1669), - [anon_sym_DOT_DOT] = ACTIONS(1667), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1667), - [anon_sym_DOT_DOT_LT] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [anon_sym_null] = ACTIONS(1669), - [anon_sym_true] = ACTIONS(1669), - [anon_sym_false] = ACTIONS(1669), - [aux_sym__val_number_decimal_token1] = ACTIONS(1667), - [aux_sym__val_number_decimal_token2] = ACTIONS(1669), - [aux_sym__val_number_decimal_token3] = ACTIONS(1669), - [aux_sym__val_number_decimal_token4] = ACTIONS(1669), - [aux_sym__val_number_token1] = ACTIONS(1669), - [aux_sym__val_number_token2] = ACTIONS(1669), - [aux_sym__val_number_token3] = ACTIONS(1669), - [aux_sym__val_number_token4] = ACTIONS(1669), - [aux_sym__val_number_token5] = ACTIONS(1669), - [aux_sym__val_number_token6] = ACTIONS(1669), - [anon_sym_0b] = ACTIONS(1667), - [sym_filesize_unit] = ACTIONS(1669), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_0o] = ACTIONS(1667), - [anon_sym_0x] = ACTIONS(1667), - [sym_val_date] = ACTIONS(1669), - [anon_sym_DQUOTE] = ACTIONS(1669), - [sym__str_single_quotes] = ACTIONS(1669), - [sym__str_back_ticks] = ACTIONS(1669), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1669), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token1] = ACTIONS(1667), - [aux_sym_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1669), + [1366] = { + [sym_comment] = STATE(1366), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4611), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [1385] = { - [sym_comment] = STATE(1385), + [1367] = { + [sym_comment] = STATE(1367), [sym__newline] = ACTIONS(960), [anon_sym_SEMI] = ACTIONS(960), [anon_sym_PIPE] = ACTIONS(960), @@ -212599,7 +211349,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(960), [anon_sym_RBRACE] = ACTIONS(960), [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4628), + [anon_sym_QMARK2] = ACTIONS(4613), [anon_sym_DOT_DOT2] = ACTIONS(958), [anon_sym_DOT_DOT_EQ] = ACTIONS(958), [anon_sym_DOT_DOT_LT] = ACTIONS(958), @@ -212648,1215 +211398,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(960), }, - [1386] = { - [sym__expr_parenthesized_immediate] = STATE(2044), - [sym__immediate_decimal] = STATE(2045), - [sym_val_variable] = STATE(2044), - [sym_comment] = STATE(1386), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), - [anon_sym_RPAREN] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_LBRACE] = ACTIONS(1709), - [anon_sym_RBRACE] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4630), - [aux_sym__immediate_decimal_token3] = ACTIONS(4630), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(251), - }, - [1387] = { - [sym__expr_parenthesized_immediate] = STATE(2035), - [sym__immediate_decimal] = STATE(2120), - [sym_val_variable] = STATE(2035), - [sym_comment] = STATE(1387), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_LBRACE] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4630), - [aux_sym__immediate_decimal_token3] = ACTIONS(4630), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(251), - }, - [1388] = { - [sym__expr_parenthesized_immediate] = STATE(2046), - [sym__immediate_decimal] = STATE(2047), - [sym_val_variable] = STATE(2046), - [sym_comment] = STATE(1388), - [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_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_LBRACE] = ACTIONS(1713), - [anon_sym_RBRACE] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4630), - [aux_sym__immediate_decimal_token3] = ACTIONS(4630), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), - }, - [1389] = { - [sym_comment] = STATE(1389), - [ts_builtin_sym_end] = ACTIONS(960), - [anon_sym_EQ] = ACTIONS(958), - [anon_sym_PLUS_EQ] = ACTIONS(960), - [anon_sym_DASH_EQ] = ACTIONS(960), - [anon_sym_STAR_EQ] = ACTIONS(960), - [anon_sym_SLASH_EQ] = ACTIONS(960), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_GT2] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_in2] = ACTIONS(960), - [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4632), - [anon_sym_and2] = ACTIONS(960), - [anon_sym_xor2] = ACTIONS(960), - [anon_sym_or2] = ACTIONS(960), - [anon_sym_not_DASHin2] = ACTIONS(960), - [anon_sym_starts_DASHwith2] = ACTIONS(960), - [anon_sym_ends_DASHwith2] = ACTIONS(960), - [anon_sym_EQ_EQ2] = ACTIONS(960), - [anon_sym_BANG_EQ2] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(958), - [anon_sym_LT_EQ2] = ACTIONS(960), - [anon_sym_GT_EQ2] = ACTIONS(960), - [anon_sym_EQ_TILDE2] = ACTIONS(960), - [anon_sym_BANG_TILDE2] = ACTIONS(960), - [anon_sym_STAR_STAR2] = ACTIONS(960), - [anon_sym_PLUS_PLUS2] = ACTIONS(958), - [anon_sym_SLASH2] = ACTIONS(958), - [anon_sym_mod2] = ACTIONS(960), - [anon_sym_SLASH_SLASH2] = ACTIONS(960), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_bit_DASHshl2] = ACTIONS(960), - [anon_sym_bit_DASHshr2] = ACTIONS(960), - [anon_sym_bit_DASHand2] = ACTIONS(960), - [anon_sym_bit_DASHxor2] = ACTIONS(960), - [anon_sym_bit_DASHor2] = ACTIONS(960), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [anon_sym_POUND] = ACTIONS(251), - }, - [1390] = { - [sym_comment] = STATE(1390), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4570), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1391] = { - [sym_comment] = STATE(1391), - [ts_builtin_sym_end] = ACTIONS(954), - [anon_sym_EQ] = ACTIONS(952), - [anon_sym_PLUS_EQ] = ACTIONS(954), - [anon_sym_DASH_EQ] = ACTIONS(954), - [anon_sym_STAR_EQ] = ACTIONS(954), - [anon_sym_SLASH_EQ] = ACTIONS(954), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(954), - [sym__newline] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_err_GT_PIPE] = ACTIONS(954), - [anon_sym_out_GT_PIPE] = ACTIONS(954), - [anon_sym_e_GT_PIPE] = ACTIONS(954), - [anon_sym_o_GT_PIPE] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), - [anon_sym_GT2] = ACTIONS(952), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_in2] = ACTIONS(954), - [anon_sym_STAR2] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4634), - [anon_sym_and2] = ACTIONS(954), - [anon_sym_xor2] = ACTIONS(954), - [anon_sym_or2] = ACTIONS(954), - [anon_sym_not_DASHin2] = ACTIONS(954), - [anon_sym_starts_DASHwith2] = ACTIONS(954), - [anon_sym_ends_DASHwith2] = ACTIONS(954), - [anon_sym_EQ_EQ2] = ACTIONS(954), - [anon_sym_BANG_EQ2] = ACTIONS(954), - [anon_sym_LT2] = ACTIONS(952), - [anon_sym_LT_EQ2] = ACTIONS(954), - [anon_sym_GT_EQ2] = ACTIONS(954), - [anon_sym_EQ_TILDE2] = ACTIONS(954), - [anon_sym_BANG_TILDE2] = ACTIONS(954), - [anon_sym_STAR_STAR2] = ACTIONS(954), - [anon_sym_PLUS_PLUS2] = ACTIONS(952), - [anon_sym_SLASH2] = ACTIONS(952), - [anon_sym_mod2] = ACTIONS(954), - [anon_sym_SLASH_SLASH2] = ACTIONS(954), - [anon_sym_PLUS2] = ACTIONS(952), - [anon_sym_bit_DASHshl2] = ACTIONS(954), - [anon_sym_bit_DASHshr2] = ACTIONS(954), - [anon_sym_bit_DASHand2] = ACTIONS(954), - [anon_sym_bit_DASHxor2] = ACTIONS(954), - [anon_sym_bit_DASHor2] = ACTIONS(954), - [anon_sym_DOT_DOT2] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), - [anon_sym_DOT_DOT_LT2] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [anon_sym_POUND] = ACTIONS(251), - }, - [1392] = { - [sym_comment] = STATE(1392), - [sym__newline] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_err_GT_PIPE] = ACTIONS(970), - [anon_sym_out_GT_PIPE] = ACTIONS(970), - [anon_sym_e_GT_PIPE] = ACTIONS(970), - [anon_sym_o_GT_PIPE] = ACTIONS(970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_RPAREN] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_RBRACE] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(970), - [anon_sym_DOT_DOT2] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ] = ACTIONS(968), - [anon_sym_DOT_DOT_LT] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), - [anon_sym_DOT_DOT_LT2] = ACTIONS(970), - [anon_sym_null] = ACTIONS(970), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(968), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [aux_sym__val_number_token4] = ACTIONS(970), - [aux_sym__val_number_token5] = ACTIONS(970), - [aux_sym__val_number_token6] = ACTIONS(970), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [sym_val_date] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(968), - [anon_sym_out_GT] = ACTIONS(968), - [anon_sym_e_GT] = ACTIONS(968), - [anon_sym_o_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT] = ACTIONS(968), - [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(968), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(970), - }, - [1393] = { - [sym_comment] = STATE(1393), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_LBRACK] = ACTIONS(1589), - [anon_sym_LPAREN] = ACTIONS(1589), - [anon_sym_DOLLAR] = ACTIONS(1587), - [anon_sym_DASH_DASH] = ACTIONS(1589), - [anon_sym_DASH2] = ACTIONS(1587), - [anon_sym_LBRACE] = ACTIONS(1589), - [anon_sym_DOT_DOT] = ACTIONS(1587), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1587), - [anon_sym_DOT_DOT_LT] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [anon_sym_null] = ACTIONS(1589), - [anon_sym_true] = ACTIONS(1589), - [anon_sym_false] = ACTIONS(1589), - [aux_sym__val_number_decimal_token1] = ACTIONS(1587), - [aux_sym__val_number_decimal_token2] = ACTIONS(1589), - [aux_sym__val_number_decimal_token3] = ACTIONS(1589), - [aux_sym__val_number_decimal_token4] = ACTIONS(1589), - [aux_sym__val_number_token1] = ACTIONS(1589), - [aux_sym__val_number_token2] = ACTIONS(1589), - [aux_sym__val_number_token3] = ACTIONS(1589), - [aux_sym__val_number_token4] = ACTIONS(1589), - [aux_sym__val_number_token5] = ACTIONS(1589), - [aux_sym__val_number_token6] = ACTIONS(1589), - [anon_sym_0b] = ACTIONS(1587), - [sym_filesize_unit] = ACTIONS(1589), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_0o] = ACTIONS(1587), - [anon_sym_0x] = ACTIONS(1587), - [sym_val_date] = ACTIONS(1589), - [anon_sym_DQUOTE] = ACTIONS(1589), - [sym__str_single_quotes] = ACTIONS(1589), - [sym__str_back_ticks] = ACTIONS(1589), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1589), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token1] = ACTIONS(1587), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1589), - }, - [1394] = { - [sym_comment] = STATE(1394), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1861), - [anon_sym_0o] = ACTIONS(1861), - [anon_sym_0x] = ACTIONS(1861), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token1] = ACTIONS(1861), - [aux_sym_unquoted_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [1395] = { - [sym_comment] = STATE(1395), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2245), - [anon_sym_PIPE] = ACTIONS(2245), - [anon_sym_err_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_GT_PIPE] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2245), - [anon_sym_GT2] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_in2] = ACTIONS(2245), - [anon_sym_STAR2] = ACTIONS(2245), - [anon_sym_and2] = ACTIONS(2245), - [anon_sym_xor2] = ACTIONS(2245), - [anon_sym_or2] = ACTIONS(2245), - [anon_sym_not_DASHin2] = ACTIONS(2245), - [anon_sym_starts_DASHwith2] = ACTIONS(2245), - [anon_sym_ends_DASHwith2] = ACTIONS(2245), - [anon_sym_EQ_EQ2] = ACTIONS(2245), - [anon_sym_BANG_EQ2] = ACTIONS(2245), - [anon_sym_LT2] = ACTIONS(2245), - [anon_sym_LT_EQ2] = ACTIONS(2245), - [anon_sym_GT_EQ2] = ACTIONS(2245), - [anon_sym_EQ_TILDE2] = ACTIONS(2245), - [anon_sym_BANG_TILDE2] = ACTIONS(2245), - [anon_sym_STAR_STAR2] = ACTIONS(2245), - [anon_sym_PLUS_PLUS2] = ACTIONS(2245), - [anon_sym_SLASH2] = ACTIONS(2245), - [anon_sym_mod2] = ACTIONS(2245), - [anon_sym_SLASH_SLASH2] = ACTIONS(2245), - [anon_sym_PLUS2] = ACTIONS(2245), - [anon_sym_bit_DASHshl2] = ACTIONS(2245), - [anon_sym_bit_DASHshr2] = ACTIONS(2245), - [anon_sym_bit_DASHand2] = ACTIONS(2245), - [anon_sym_bit_DASHxor2] = ACTIONS(2245), - [anon_sym_bit_DASHor2] = ACTIONS(2245), - [anon_sym_POUND] = ACTIONS(3), - }, - [1396] = { - [sym_comment] = STATE(1396), - [ts_builtin_sym_end] = ACTIONS(1693), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT2] = ACTIONS(4605), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1681), - [anon_sym_DOT_DOT_LT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4607), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4607), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1681), - [sym_filesize_unit] = ACTIONS(4636), - [sym_duration_unit] = ACTIONS(4638), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4640), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [1397] = { - [sym_comment] = STATE(1397), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4642), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4644), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1398] = { - [sym__expr_parenthesized_immediate] = STATE(2048), - [sym__immediate_decimal] = STATE(2049), - [sym_val_variable] = STATE(2048), - [sym_comment] = STATE(1398), - [sym__newline] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_err_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_GT_PIPE] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), - [anon_sym_RPAREN] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_in2] = ACTIONS(1665), - [anon_sym_LBRACE] = ACTIONS(1665), - [anon_sym_RBRACE] = ACTIONS(1665), - [anon_sym_STAR2] = ACTIONS(1657), - [anon_sym_and2] = ACTIONS(1665), - [anon_sym_xor2] = ACTIONS(1665), - [anon_sym_or2] = ACTIONS(1665), - [anon_sym_not_DASHin2] = ACTIONS(1665), - [anon_sym_starts_DASHwith2] = ACTIONS(1665), - [anon_sym_ends_DASHwith2] = ACTIONS(1665), - [anon_sym_EQ_EQ2] = ACTIONS(1665), - [anon_sym_BANG_EQ2] = ACTIONS(1665), - [anon_sym_LT2] = ACTIONS(1657), - [anon_sym_LT_EQ2] = ACTIONS(1665), - [anon_sym_GT_EQ2] = ACTIONS(1665), - [anon_sym_EQ_TILDE2] = ACTIONS(1665), - [anon_sym_BANG_TILDE2] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1665), - [anon_sym_PLUS_PLUS2] = ACTIONS(1665), - [anon_sym_SLASH2] = ACTIONS(1657), - [anon_sym_mod2] = ACTIONS(1665), - [anon_sym_SLASH_SLASH2] = ACTIONS(1665), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_bit_DASHshl2] = ACTIONS(1665), - [anon_sym_bit_DASHshr2] = ACTIONS(1665), - [anon_sym_bit_DASHand2] = ACTIONS(1665), - [anon_sym_bit_DASHxor2] = ACTIONS(1665), - [anon_sym_bit_DASHor2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4630), - [aux_sym__immediate_decimal_token3] = ACTIONS(4630), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1665), - [anon_sym_out_GT_GT] = ACTIONS(1665), - [anon_sym_e_GT_GT] = ACTIONS(1665), - [anon_sym_o_GT_GT] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(251), - }, - [1399] = { - [sym_comment] = STATE(1399), - [sym__newline] = ACTIONS(974), - [anon_sym_SEMI] = ACTIONS(974), - [anon_sym_PIPE] = ACTIONS(974), - [anon_sym_err_GT_PIPE] = ACTIONS(974), - [anon_sym_out_GT_PIPE] = ACTIONS(974), - [anon_sym_e_GT_PIPE] = ACTIONS(974), - [anon_sym_o_GT_PIPE] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), - [anon_sym_LBRACK] = ACTIONS(974), - [anon_sym_LPAREN] = ACTIONS(974), - [anon_sym_RPAREN] = ACTIONS(974), - [anon_sym_DOLLAR] = ACTIONS(972), - [anon_sym_DASH_DASH] = ACTIONS(974), - [anon_sym_DASH2] = ACTIONS(972), - [anon_sym_LBRACE] = ACTIONS(974), - [anon_sym_RBRACE] = ACTIONS(974), - [anon_sym_DOT_DOT] = ACTIONS(972), - [anon_sym_QMARK2] = ACTIONS(974), - [anon_sym_DOT_DOT2] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ] = ACTIONS(972), - [anon_sym_DOT_DOT_LT] = ACTIONS(972), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), - [anon_sym_DOT_DOT_LT2] = ACTIONS(974), - [anon_sym_null] = ACTIONS(974), - [anon_sym_true] = ACTIONS(974), - [anon_sym_false] = ACTIONS(974), - [aux_sym__val_number_decimal_token1] = ACTIONS(972), - [aux_sym__val_number_decimal_token2] = ACTIONS(974), - [aux_sym__val_number_decimal_token3] = ACTIONS(974), - [aux_sym__val_number_decimal_token4] = ACTIONS(974), - [aux_sym__val_number_token1] = ACTIONS(974), - [aux_sym__val_number_token2] = ACTIONS(974), - [aux_sym__val_number_token3] = ACTIONS(974), - [aux_sym__val_number_token4] = ACTIONS(974), - [aux_sym__val_number_token5] = ACTIONS(974), - [aux_sym__val_number_token6] = ACTIONS(974), - [anon_sym_0b] = ACTIONS(972), - [anon_sym_0o] = ACTIONS(972), - [anon_sym_0x] = ACTIONS(972), - [sym_val_date] = ACTIONS(974), - [anon_sym_DQUOTE] = ACTIONS(974), - [sym__str_single_quotes] = ACTIONS(974), - [sym__str_back_ticks] = ACTIONS(974), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), - [anon_sym_DOT2] = ACTIONS(972), - [anon_sym_err_GT] = ACTIONS(972), - [anon_sym_out_GT] = ACTIONS(972), - [anon_sym_e_GT] = ACTIONS(972), - [anon_sym_o_GT] = ACTIONS(972), - [anon_sym_err_PLUSout_GT] = ACTIONS(972), - [anon_sym_out_PLUSerr_GT] = ACTIONS(972), - [anon_sym_o_PLUSe_GT] = ACTIONS(972), - [anon_sym_e_PLUSo_GT] = ACTIONS(972), - [anon_sym_err_GT_GT] = ACTIONS(974), - [anon_sym_out_GT_GT] = ACTIONS(974), - [anon_sym_e_GT_GT] = ACTIONS(974), - [anon_sym_o_GT_GT] = ACTIONS(974), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), - [aux_sym_unquoted_token1] = ACTIONS(972), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(974), - }, - [1400] = { - [sym_comment] = STATE(1400), - [anon_sym_EQ] = ACTIONS(1018), - [anon_sym_PLUS_EQ] = ACTIONS(1020), - [anon_sym_DASH_EQ] = ACTIONS(1020), - [anon_sym_STAR_EQ] = ACTIONS(1020), - [anon_sym_SLASH_EQ] = ACTIONS(1020), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_RPAREN] = ACTIONS(1020), - [anon_sym_GT2] = ACTIONS(1018), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1018), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_COLON2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [anon_sym_POUND] = ACTIONS(251), - }, - [1401] = { - [sym_comment] = STATE(1401), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT2] = ACTIONS(4646), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4648), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4648), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1865), - [anon_sym_0o] = ACTIONS(1865), - [anon_sym_0x] = ACTIONS(1865), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(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(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1865), - [aux_sym_unquoted_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [1402] = { - [sym__expr_parenthesized_immediate] = STATE(2033), - [sym__immediate_decimal] = STATE(2034), - [sym_val_variable] = STATE(2033), - [sym_comment] = STATE(1402), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_RPAREN] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_LBRACE] = ACTIONS(1643), - [anon_sym_RBRACE] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4630), - [aux_sym__immediate_decimal_token3] = ACTIONS(4630), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - }, - [1403] = { - [sym_comment] = STATE(1403), + [1368] = { + [sym_comment] = STATE(1368), [sym__newline] = ACTIONS(954), [anon_sym_SEMI] = ACTIONS(954), [anon_sym_PIPE] = ACTIONS(954), @@ -213877,7 +211420,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(954), [anon_sym_RBRACE] = ACTIONS(954), [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4650), + [anon_sym_QMARK2] = ACTIONS(4615), [anon_sym_DOT_DOT2] = ACTIONS(952), [anon_sym_DOT_DOT_EQ] = ACTIONS(952), [anon_sym_DOT_DOT_LT] = ACTIONS(952), @@ -213926,434 +211469,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(954), }, - [1404] = { - [sym_comment] = STATE(1404), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4652), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1405] = { - [sym_comment] = STATE(1405), - [anon_sym_STAR_STAR] = ACTIONS(3177), - [anon_sym_PLUS_PLUS] = ACTIONS(3177), - [anon_sym_STAR] = ACTIONS(3179), - [anon_sym_SLASH] = ACTIONS(3179), - [anon_sym_mod] = ACTIONS(3177), - [anon_sym_SLASH_SLASH] = ACTIONS(3177), - [anon_sym_PLUS] = ACTIONS(3179), - [anon_sym_DASH] = ACTIONS(3177), - [anon_sym_bit_DASHshl] = ACTIONS(3177), - [anon_sym_bit_DASHshr] = ACTIONS(3177), - [anon_sym_EQ_TILDE] = ACTIONS(3177), - [anon_sym_BANG_TILDE] = ACTIONS(3177), - [anon_sym_bit_DASHand] = ACTIONS(3177), - [anon_sym_bit_DASHxor] = ACTIONS(3177), - [anon_sym_bit_DASHor] = ACTIONS(3177), - [anon_sym_and] = ACTIONS(3177), - [anon_sym_xor] = ACTIONS(3177), - [anon_sym_or] = ACTIONS(3177), - [anon_sym_in] = ACTIONS(3177), - [anon_sym_not_DASHin] = ACTIONS(3177), - [anon_sym_starts_DASHwith] = ACTIONS(3177), - [anon_sym_ends_DASHwith] = ACTIONS(3177), - [anon_sym_EQ_EQ] = ACTIONS(3177), - [anon_sym_BANG_EQ] = ACTIONS(3177), - [anon_sym_LT] = ACTIONS(3179), - [anon_sym_LT_EQ] = ACTIONS(3177), - [anon_sym_GT] = ACTIONS(3179), - [anon_sym_GT_EQ] = ACTIONS(3177), - [aux_sym_cmd_identifier_token41] = ACTIONS(3181), - [sym__newline] = ACTIONS(2237), - [anon_sym_PIPE] = ACTIONS(2237), - [anon_sym_err_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_GT_PIPE] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2237), - [anon_sym_GT2] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_in2] = ACTIONS(2237), - [anon_sym_STAR2] = ACTIONS(2237), - [anon_sym_and2] = ACTIONS(2237), - [anon_sym_xor2] = ACTIONS(2237), - [anon_sym_or2] = ACTIONS(2237), - [anon_sym_not_DASHin2] = ACTIONS(2237), - [anon_sym_starts_DASHwith2] = ACTIONS(2237), - [anon_sym_ends_DASHwith2] = ACTIONS(2237), - [anon_sym_EQ_EQ2] = ACTIONS(2237), - [anon_sym_BANG_EQ2] = ACTIONS(2237), - [anon_sym_LT2] = ACTIONS(2237), - [anon_sym_LT_EQ2] = ACTIONS(2237), - [anon_sym_GT_EQ2] = ACTIONS(2237), - [anon_sym_EQ_TILDE2] = ACTIONS(2237), - [anon_sym_BANG_TILDE2] = ACTIONS(2237), - [anon_sym_STAR_STAR2] = ACTIONS(2237), - [anon_sym_PLUS_PLUS2] = ACTIONS(2237), - [anon_sym_SLASH2] = ACTIONS(2237), - [anon_sym_mod2] = ACTIONS(2237), - [anon_sym_SLASH_SLASH2] = ACTIONS(2237), - [anon_sym_PLUS2] = ACTIONS(2237), - [anon_sym_bit_DASHshl2] = ACTIONS(2237), - [anon_sym_bit_DASHshr2] = ACTIONS(2237), - [anon_sym_bit_DASHand2] = ACTIONS(2237), - [anon_sym_bit_DASHxor2] = ACTIONS(2237), - [anon_sym_bit_DASHor2] = ACTIONS(2237), + [1369] = { + [sym_comment] = STATE(1369), + [anon_sym_STAR_STAR] = ACTIONS(3176), + [anon_sym_PLUS_PLUS] = ACTIONS(3176), + [anon_sym_STAR] = ACTIONS(3178), + [anon_sym_SLASH] = ACTIONS(3178), + [anon_sym_mod] = ACTIONS(3176), + [anon_sym_SLASH_SLASH] = ACTIONS(3176), + [anon_sym_PLUS] = ACTIONS(3178), + [anon_sym_DASH] = ACTIONS(3176), + [anon_sym_bit_DASHshl] = ACTIONS(3176), + [anon_sym_bit_DASHshr] = ACTIONS(3176), + [anon_sym_EQ_TILDE] = ACTIONS(3176), + [anon_sym_BANG_TILDE] = ACTIONS(3176), + [anon_sym_bit_DASHand] = ACTIONS(3176), + [anon_sym_bit_DASHxor] = ACTIONS(3176), + [anon_sym_bit_DASHor] = ACTIONS(3176), + [anon_sym_and] = ACTIONS(3176), + [anon_sym_xor] = ACTIONS(3176), + [anon_sym_or] = ACTIONS(3176), + [anon_sym_in] = ACTIONS(3176), + [anon_sym_not_DASHin] = ACTIONS(3176), + [anon_sym_starts_DASHwith] = ACTIONS(3176), + [anon_sym_ends_DASHwith] = ACTIONS(3176), + [anon_sym_EQ_EQ] = ACTIONS(3176), + [anon_sym_BANG_EQ] = ACTIONS(3176), + [anon_sym_LT] = ACTIONS(3178), + [anon_sym_LT_EQ] = ACTIONS(3176), + [anon_sym_GT] = ACTIONS(3178), + [anon_sym_GT_EQ] = ACTIONS(3176), + [aux_sym_cmd_identifier_token41] = ACTIONS(3180), + [sym__newline] = ACTIONS(2192), + [anon_sym_PIPE] = ACTIONS(2192), + [anon_sym_err_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_GT_PIPE] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), + [anon_sym_GT2] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_in2] = ACTIONS(2192), + [anon_sym_STAR2] = ACTIONS(2192), + [anon_sym_and2] = ACTIONS(2192), + [anon_sym_xor2] = ACTIONS(2192), + [anon_sym_or2] = ACTIONS(2192), + [anon_sym_not_DASHin2] = ACTIONS(2192), + [anon_sym_starts_DASHwith2] = ACTIONS(2192), + [anon_sym_ends_DASHwith2] = ACTIONS(2192), + [anon_sym_EQ_EQ2] = ACTIONS(2192), + [anon_sym_BANG_EQ2] = ACTIONS(2192), + [anon_sym_LT2] = ACTIONS(2192), + [anon_sym_LT_EQ2] = ACTIONS(2192), + [anon_sym_GT_EQ2] = ACTIONS(2192), + [anon_sym_EQ_TILDE2] = ACTIONS(2192), + [anon_sym_BANG_TILDE2] = ACTIONS(2192), + [anon_sym_STAR_STAR2] = ACTIONS(2192), + [anon_sym_PLUS_PLUS2] = ACTIONS(2192), + [anon_sym_SLASH2] = ACTIONS(2192), + [anon_sym_mod2] = ACTIONS(2192), + [anon_sym_SLASH_SLASH2] = ACTIONS(2192), + [anon_sym_PLUS2] = ACTIONS(2192), + [anon_sym_bit_DASHshl2] = ACTIONS(2192), + [anon_sym_bit_DASHshr2] = ACTIONS(2192), + [anon_sym_bit_DASHand2] = ACTIONS(2192), + [anon_sym_bit_DASHxor2] = ACTIONS(2192), + [anon_sym_bit_DASHor2] = ACTIONS(2192), [anon_sym_POUND] = ACTIONS(3), }, - [1406] = { - [sym_path] = STATE(1497), - [sym_comment] = STATE(1406), - [aux_sym_cell_path_repeat1] = STATE(1406), - [sym__newline] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_err_GT_PIPE] = ACTIONS(943), - [anon_sym_out_GT_PIPE] = ACTIONS(943), - [anon_sym_e_GT_PIPE] = ACTIONS(943), - [anon_sym_o_GT_PIPE] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), - [anon_sym_RPAREN] = ACTIONS(943), - [anon_sym_GT2] = ACTIONS(941), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_if] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_RBRACE] = ACTIONS(943), - [anon_sym_EQ_GT] = ACTIONS(943), - [anon_sym_STAR2] = ACTIONS(941), - [anon_sym_and2] = ACTIONS(943), - [anon_sym_xor2] = ACTIONS(943), - [anon_sym_or2] = ACTIONS(943), - [anon_sym_not_DASHin2] = ACTIONS(943), - [anon_sym_starts_DASHwith2] = ACTIONS(943), - [anon_sym_ends_DASHwith2] = ACTIONS(943), - [anon_sym_EQ_EQ2] = ACTIONS(943), - [anon_sym_BANG_EQ2] = ACTIONS(943), - [anon_sym_LT2] = ACTIONS(941), - [anon_sym_LT_EQ2] = ACTIONS(943), - [anon_sym_GT_EQ2] = ACTIONS(943), - [anon_sym_EQ_TILDE2] = ACTIONS(943), - [anon_sym_BANG_TILDE2] = ACTIONS(943), - [anon_sym_STAR_STAR2] = ACTIONS(943), - [anon_sym_PLUS_PLUS2] = ACTIONS(943), - [anon_sym_SLASH2] = ACTIONS(941), - [anon_sym_mod2] = ACTIONS(943), - [anon_sym_SLASH_SLASH2] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_bit_DASHshl2] = ACTIONS(943), - [anon_sym_bit_DASHshr2] = ACTIONS(943), - [anon_sym_bit_DASHand2] = ACTIONS(943), - [anon_sym_bit_DASHxor2] = ACTIONS(943), - [anon_sym_bit_DASHor2] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_COLON2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4654), - [anon_sym_err_GT] = ACTIONS(941), - [anon_sym_out_GT] = ACTIONS(941), - [anon_sym_e_GT] = ACTIONS(941), - [anon_sym_o_GT] = ACTIONS(941), - [anon_sym_err_PLUSout_GT] = ACTIONS(941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(941), - [anon_sym_o_PLUSe_GT] = ACTIONS(941), - [anon_sym_e_PLUSo_GT] = ACTIONS(941), - [anon_sym_err_GT_GT] = ACTIONS(943), - [anon_sym_out_GT_GT] = ACTIONS(943), - [anon_sym_e_GT_GT] = ACTIONS(943), - [anon_sym_o_GT_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [1370] = { + [sym_comment] = STATE(1370), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(976), + [anon_sym_DOT_DOT_LT] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(978), }, - [1407] = { - [sym__expr_parenthesized_immediate] = STATE(2035), - [sym__immediate_decimal] = STATE(2082), - [sym_val_variable] = STATE(2035), - [sym_comment] = STATE(1407), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_RPAREN] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_RBRACE] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4618), - [aux_sym__immediate_decimal_token3] = ACTIONS(4618), - [aux_sym__immediate_decimal_token4] = ACTIONS(4620), - [aux_sym__immediate_decimal_token5] = ACTIONS(4622), - [anon_sym_err_GT] = ACTIONS(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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token2] = ACTIONS(1555), + [1371] = { + [sym_comment] = STATE(1371), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1372] = { + [sym_comment] = STATE(1372), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1408] = { - [sym_comment] = STATE(1408), - [ts_builtin_sym_end] = ACTIONS(966), - [anon_sym_EQ] = ACTIONS(964), - [anon_sym_PLUS_EQ] = ACTIONS(966), - [anon_sym_DASH_EQ] = ACTIONS(966), - [anon_sym_STAR_EQ] = ACTIONS(966), - [anon_sym_SLASH_EQ] = ACTIONS(966), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), - [sym__newline] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_err_GT_PIPE] = ACTIONS(966), - [anon_sym_out_GT_PIPE] = ACTIONS(966), - [anon_sym_e_GT_PIPE] = ACTIONS(966), - [anon_sym_o_GT_PIPE] = ACTIONS(966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), - [anon_sym_GT2] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_in2] = ACTIONS(966), - [anon_sym_STAR2] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_and2] = ACTIONS(966), - [anon_sym_xor2] = ACTIONS(966), - [anon_sym_or2] = ACTIONS(966), - [anon_sym_not_DASHin2] = ACTIONS(966), - [anon_sym_starts_DASHwith2] = ACTIONS(966), - [anon_sym_ends_DASHwith2] = ACTIONS(966), - [anon_sym_EQ_EQ2] = ACTIONS(966), - [anon_sym_BANG_EQ2] = ACTIONS(966), - [anon_sym_LT2] = ACTIONS(964), - [anon_sym_LT_EQ2] = ACTIONS(966), - [anon_sym_GT_EQ2] = ACTIONS(966), - [anon_sym_EQ_TILDE2] = ACTIONS(966), - [anon_sym_BANG_TILDE2] = ACTIONS(966), - [anon_sym_STAR_STAR2] = ACTIONS(966), - [anon_sym_PLUS_PLUS2] = ACTIONS(964), - [anon_sym_SLASH2] = ACTIONS(964), - [anon_sym_mod2] = ACTIONS(966), - [anon_sym_SLASH_SLASH2] = ACTIONS(966), - [anon_sym_PLUS2] = ACTIONS(964), - [anon_sym_bit_DASHshl2] = ACTIONS(966), - [anon_sym_bit_DASHshr2] = ACTIONS(966), - [anon_sym_bit_DASHand2] = ACTIONS(966), - [anon_sym_bit_DASHxor2] = ACTIONS(966), - [anon_sym_bit_DASHor2] = ACTIONS(966), - [anon_sym_DOT_DOT2] = ACTIONS(964), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), - [anon_sym_DOT_DOT_LT2] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(964), - [anon_sym_out_GT] = ACTIONS(964), - [anon_sym_e_GT] = ACTIONS(964), - [anon_sym_o_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT] = ACTIONS(964), - [anon_sym_err_GT_GT] = ACTIONS(966), - [anon_sym_out_GT_GT] = ACTIONS(966), - [anon_sym_e_GT_GT] = ACTIONS(966), - [anon_sym_o_GT_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [1373] = { + [sym_cell_path] = STATE(1674), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1373), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(937), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_if] = ACTIONS(937), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_EQ_GT] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(937), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4593), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), [anon_sym_POUND] = ACTIONS(251), }, - [1409] = { - [sym_comment] = STATE(1409), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ] = ACTIONS(976), - [anon_sym_DOT_DOT_LT] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), + [1374] = { + [sym_comment] = STATE(1374), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT2] = ACTIONS(4617), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_LT] = ACTIONS(1805), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4619), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4619), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1813), }, - [1410] = { - [sym_comment] = STATE(1410), + [1375] = { + [sym_comment] = STATE(1375), [ts_builtin_sym_end] = ACTIONS(978), [anon_sym_EQ] = ACTIONS(976), [anon_sym_PLUS_EQ] = ACTIONS(978), @@ -214423,150 +211966,434 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), [anon_sym_POUND] = ACTIONS(251), }, - [1411] = { - [sym__expr_parenthesized_immediate] = STATE(2127), - [sym__immediate_decimal] = STATE(1838), - [sym_val_variable] = STATE(2127), - [sym_comment] = STATE(1411), - [ts_builtin_sym_end] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4661), - [aux_sym__immediate_decimal_token1] = ACTIONS(4663), - [aux_sym__immediate_decimal_token3] = ACTIONS(4663), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token2] = ACTIONS(1555), + [1376] = { + [sym_comment] = STATE(1376), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4597), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1377] = { + [sym__expr_parenthesized_immediate] = STATE(2014), + [sym__immediate_decimal] = STATE(2015), + [sym_val_variable] = STATE(2014), + [sym_comment] = STATE(1377), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_RPAREN] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1557), + [anon_sym_LBRACE] = ACTIONS(1557), + [anon_sym_RBRACE] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1557), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4621), + [aux_sym__immediate_decimal_token3] = ACTIONS(4621), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(251), }, - [1412] = { - [sym_comment] = STATE(1412), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4671), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), + [1378] = { + [sym_comment] = STATE(1378), + [ts_builtin_sym_end] = ACTIONS(974), + [anon_sym_EQ] = ACTIONS(972), + [anon_sym_PLUS_EQ] = ACTIONS(974), + [anon_sym_DASH_EQ] = ACTIONS(974), + [anon_sym_STAR_EQ] = ACTIONS(974), + [anon_sym_SLASH_EQ] = ACTIONS(974), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(974), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_GT2] = ACTIONS(972), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_in2] = ACTIONS(974), + [anon_sym_STAR2] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_and2] = ACTIONS(974), + [anon_sym_xor2] = ACTIONS(974), + [anon_sym_or2] = ACTIONS(974), + [anon_sym_not_DASHin2] = ACTIONS(974), + [anon_sym_starts_DASHwith2] = ACTIONS(974), + [anon_sym_ends_DASHwith2] = ACTIONS(974), + [anon_sym_EQ_EQ2] = ACTIONS(974), + [anon_sym_BANG_EQ2] = ACTIONS(974), + [anon_sym_LT2] = ACTIONS(972), + [anon_sym_LT_EQ2] = ACTIONS(974), + [anon_sym_GT_EQ2] = ACTIONS(974), + [anon_sym_EQ_TILDE2] = ACTIONS(974), + [anon_sym_BANG_TILDE2] = ACTIONS(974), + [anon_sym_STAR_STAR2] = ACTIONS(974), + [anon_sym_PLUS_PLUS2] = ACTIONS(972), + [anon_sym_SLASH2] = ACTIONS(972), + [anon_sym_mod2] = ACTIONS(974), + [anon_sym_SLASH_SLASH2] = ACTIONS(974), + [anon_sym_PLUS2] = ACTIONS(972), + [anon_sym_bit_DASHshl2] = ACTIONS(974), + [anon_sym_bit_DASHshr2] = ACTIONS(974), + [anon_sym_bit_DASHand2] = ACTIONS(974), + [anon_sym_bit_DASHxor2] = ACTIONS(974), + [anon_sym_bit_DASHor2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), }, - [1413] = { - [sym_comment] = STATE(1413), + [1379] = { + [sym__expr_parenthesized_immediate] = STATE(2092), + [sym__immediate_decimal] = STATE(1885), + [sym_val_variable] = STATE(2092), + [sym_comment] = STATE(1379), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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] = ACTIONS(4627), + [aux_sym__immediate_decimal_token1] = ACTIONS(4629), + [aux_sym__immediate_decimal_token3] = ACTIONS(4629), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + }, + [1380] = { + [sym_comment] = STATE(1380), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_DOT_DOT2] = ACTIONS(4635), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), + [anon_sym_DOT_DOT_LT] = ACTIONS(1793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4637), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4637), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1793), + [anon_sym_0o] = ACTIONS(1793), + [anon_sym_0x] = ACTIONS(1793), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1793), + [anon_sym_out_GT] = ACTIONS(1793), + [anon_sym_e_GT] = ACTIONS(1793), + [anon_sym_o_GT] = ACTIONS(1793), + [anon_sym_err_PLUSout_GT] = ACTIONS(1793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), + [anon_sym_o_PLUSe_GT] = ACTIONS(1793), + [anon_sym_e_PLUSo_GT] = ACTIONS(1793), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1793), + [aux_sym_unquoted_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1381] = { + [sym_comment] = STATE(1381), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_RPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_RBRACE] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(968), + [anon_sym_DOT_DOT_LT] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [sym_val_date] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [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(968), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(970), + }, + [1382] = { + [sym_comment] = STATE(1382), [sym__newline] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(966), [anon_sym_PIPE] = ACTIONS(966), @@ -214636,433 +212463,1506 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(966), }, - [1414] = { - [sym_path] = STATE(1497), - [sym_comment] = STATE(1414), - [aux_sym_cell_path_repeat1] = STATE(1406), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(950), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_if] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), - [anon_sym_EQ_GT] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(950), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_COLON2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4572), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [1383] = { + [sym_comment] = STATE(1383), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_LBRACK] = ACTIONS(1607), + [anon_sym_LPAREN] = ACTIONS(1607), + [anon_sym_DOLLAR] = ACTIONS(1605), + [anon_sym_DASH_DASH] = ACTIONS(1607), + [anon_sym_DASH2] = ACTIONS(1605), + [anon_sym_LBRACE] = ACTIONS(1607), + [anon_sym_DOT_DOT] = ACTIONS(1605), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1605), + [anon_sym_DOT_DOT_LT] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [anon_sym_null] = ACTIONS(1607), + [anon_sym_true] = ACTIONS(1607), + [anon_sym_false] = ACTIONS(1607), + [aux_sym__val_number_decimal_token1] = ACTIONS(1605), + [aux_sym__val_number_decimal_token2] = ACTIONS(1607), + [aux_sym__val_number_decimal_token3] = ACTIONS(1607), + [aux_sym__val_number_decimal_token4] = ACTIONS(1607), + [aux_sym__val_number_token1] = ACTIONS(1607), + [aux_sym__val_number_token2] = ACTIONS(1607), + [aux_sym__val_number_token3] = ACTIONS(1607), + [aux_sym__val_number_token4] = ACTIONS(1607), + [aux_sym__val_number_token5] = ACTIONS(1607), + [aux_sym__val_number_token6] = ACTIONS(1607), + [anon_sym_0b] = ACTIONS(1605), + [sym_filesize_unit] = ACTIONS(1607), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_0o] = ACTIONS(1605), + [anon_sym_0x] = ACTIONS(1605), + [sym_val_date] = ACTIONS(1607), + [anon_sym_DQUOTE] = ACTIONS(1607), + [sym__str_single_quotes] = ACTIONS(1607), + [sym__str_back_ticks] = ACTIONS(1607), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1607), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token1] = ACTIONS(1605), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1607), + }, + [1384] = { + [sym_comment] = STATE(1384), + [ts_builtin_sym_end] = ACTIONS(954), + [anon_sym_EQ] = ACTIONS(952), + [anon_sym_PLUS_EQ] = ACTIONS(954), + [anon_sym_DASH_EQ] = ACTIONS(954), + [anon_sym_STAR_EQ] = ACTIONS(954), + [anon_sym_SLASH_EQ] = ACTIONS(954), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_GT2] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_STAR2] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4639), + [anon_sym_and2] = ACTIONS(954), + [anon_sym_xor2] = ACTIONS(954), + [anon_sym_or2] = ACTIONS(954), + [anon_sym_not_DASHin2] = ACTIONS(954), + [anon_sym_starts_DASHwith2] = ACTIONS(954), + [anon_sym_ends_DASHwith2] = ACTIONS(954), + [anon_sym_EQ_EQ2] = ACTIONS(954), + [anon_sym_BANG_EQ2] = ACTIONS(954), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ2] = ACTIONS(954), + [anon_sym_GT_EQ2] = ACTIONS(954), + [anon_sym_EQ_TILDE2] = ACTIONS(954), + [anon_sym_BANG_TILDE2] = ACTIONS(954), + [anon_sym_STAR_STAR2] = ACTIONS(954), + [anon_sym_PLUS_PLUS2] = ACTIONS(952), + [anon_sym_SLASH2] = ACTIONS(952), + [anon_sym_mod2] = ACTIONS(954), + [anon_sym_SLASH_SLASH2] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_bit_DASHshl2] = ACTIONS(954), + [anon_sym_bit_DASHshr2] = ACTIONS(954), + [anon_sym_bit_DASHand2] = ACTIONS(954), + [anon_sym_bit_DASHxor2] = ACTIONS(954), + [anon_sym_bit_DASHor2] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), [anon_sym_POUND] = ACTIONS(251), }, - [1415] = { - [sym_comment] = STATE(1415), - [ts_builtin_sym_end] = ACTIONS(970), - [anon_sym_EQ] = ACTIONS(968), - [anon_sym_PLUS_EQ] = ACTIONS(970), - [anon_sym_DASH_EQ] = ACTIONS(970), - [anon_sym_STAR_EQ] = ACTIONS(970), - [anon_sym_SLASH_EQ] = ACTIONS(970), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(970), - [sym__newline] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_err_GT_PIPE] = ACTIONS(970), - [anon_sym_out_GT_PIPE] = ACTIONS(970), - [anon_sym_e_GT_PIPE] = ACTIONS(970), - [anon_sym_o_GT_PIPE] = ACTIONS(970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), - [anon_sym_GT2] = ACTIONS(968), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_in2] = ACTIONS(970), - [anon_sym_STAR2] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(970), - [anon_sym_and2] = ACTIONS(970), - [anon_sym_xor2] = ACTIONS(970), - [anon_sym_or2] = ACTIONS(970), - [anon_sym_not_DASHin2] = ACTIONS(970), - [anon_sym_starts_DASHwith2] = ACTIONS(970), - [anon_sym_ends_DASHwith2] = ACTIONS(970), - [anon_sym_EQ_EQ2] = ACTIONS(970), - [anon_sym_BANG_EQ2] = ACTIONS(970), - [anon_sym_LT2] = ACTIONS(968), - [anon_sym_LT_EQ2] = ACTIONS(970), - [anon_sym_GT_EQ2] = ACTIONS(970), - [anon_sym_EQ_TILDE2] = ACTIONS(970), - [anon_sym_BANG_TILDE2] = ACTIONS(970), - [anon_sym_STAR_STAR2] = ACTIONS(970), - [anon_sym_PLUS_PLUS2] = ACTIONS(968), - [anon_sym_SLASH2] = ACTIONS(968), - [anon_sym_mod2] = ACTIONS(970), - [anon_sym_SLASH_SLASH2] = ACTIONS(970), - [anon_sym_PLUS2] = ACTIONS(968), - [anon_sym_bit_DASHshl2] = ACTIONS(970), - [anon_sym_bit_DASHshr2] = ACTIONS(970), - [anon_sym_bit_DASHand2] = ACTIONS(970), - [anon_sym_bit_DASHxor2] = ACTIONS(970), - [anon_sym_bit_DASHor2] = ACTIONS(970), - [anon_sym_DOT_DOT2] = ACTIONS(968), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), - [anon_sym_DOT_DOT_LT2] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(968), - [anon_sym_out_GT] = ACTIONS(968), - [anon_sym_e_GT] = ACTIONS(968), - [anon_sym_o_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT] = ACTIONS(968), - [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), + [1385] = { + [sym__expr_parenthesized_immediate] = STATE(2033), + [sym__immediate_decimal] = STATE(2128), + [sym_val_variable] = STATE(2033), + [sym_comment] = STATE(1385), + [sym__newline] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_err_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_GT_PIPE] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1589), + [anon_sym_LBRACE] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1589), + [anon_sym_xor2] = ACTIONS(1589), + [anon_sym_or2] = ACTIONS(1589), + [anon_sym_not_DASHin2] = ACTIONS(1589), + [anon_sym_starts_DASHwith2] = ACTIONS(1589), + [anon_sym_ends_DASHwith2] = ACTIONS(1589), + [anon_sym_EQ_EQ2] = ACTIONS(1589), + [anon_sym_BANG_EQ2] = ACTIONS(1589), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1589), + [anon_sym_GT_EQ2] = ACTIONS(1589), + [anon_sym_EQ_TILDE2] = ACTIONS(1589), + [anon_sym_BANG_TILDE2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1589), + [anon_sym_PLUS_PLUS2] = ACTIONS(1589), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1589), + [anon_sym_SLASH_SLASH2] = ACTIONS(1589), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1589), + [anon_sym_bit_DASHshr2] = ACTIONS(1589), + [anon_sym_bit_DASHand2] = ACTIONS(1589), + [anon_sym_bit_DASHxor2] = ACTIONS(1589), + [anon_sym_bit_DASHor2] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(4621), + [aux_sym__immediate_decimal_token3] = ACTIONS(4621), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1589), + [anon_sym_out_GT_GT] = ACTIONS(1589), + [anon_sym_e_GT_GT] = ACTIONS(1589), + [anon_sym_o_GT_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), [anon_sym_POUND] = ACTIONS(251), }, - [1416] = { - [sym_comment] = STATE(1416), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), + [1386] = { + [sym_path] = STATE(1533), + [sym_comment] = STATE(1386), + [aux_sym_cell_path_repeat1] = STATE(1386), + [ts_builtin_sym_end] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(941), + [anon_sym_DOT_DOT_LT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_null] = ACTIONS(943), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(943), + [aux_sym__val_number_token5] = ACTIONS(943), + [aux_sym__val_number_token6] = ACTIONS(943), + [anon_sym_0b] = ACTIONS(941), + [anon_sym_0o] = ACTIONS(941), + [anon_sym_0x] = ACTIONS(941), + [sym_val_date] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4641), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [aux_sym_unquoted_token1] = ACTIONS(941), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(943), }, - [1417] = { - [sym_comment] = STATE(1417), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_LBRACK] = ACTIONS(1735), - [anon_sym_LPAREN] = ACTIONS(1735), - [anon_sym_DOLLAR] = ACTIONS(1733), - [anon_sym_DASH_DASH] = ACTIONS(1735), - [anon_sym_DASH2] = ACTIONS(1733), - [anon_sym_LBRACE] = ACTIONS(1735), - [anon_sym_DOT_DOT] = ACTIONS(1733), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), - [anon_sym_DOT_DOT_LT] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [anon_sym_null] = ACTIONS(1735), - [anon_sym_true] = ACTIONS(1735), - [anon_sym_false] = ACTIONS(1735), - [aux_sym__val_number_decimal_token1] = ACTIONS(1733), - [aux_sym__val_number_decimal_token2] = ACTIONS(1735), - [aux_sym__val_number_decimal_token3] = ACTIONS(1735), - [aux_sym__val_number_decimal_token4] = ACTIONS(1735), - [aux_sym__val_number_token1] = ACTIONS(1735), - [aux_sym__val_number_token2] = ACTIONS(1735), - [aux_sym__val_number_token3] = ACTIONS(1735), - [aux_sym__val_number_token4] = ACTIONS(1735), - [aux_sym__val_number_token5] = ACTIONS(1735), - [aux_sym__val_number_token6] = ACTIONS(1735), - [anon_sym_0b] = ACTIONS(1733), - [sym_filesize_unit] = ACTIONS(1735), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_0o] = ACTIONS(1733), - [anon_sym_0x] = ACTIONS(1733), - [sym_val_date] = ACTIONS(1735), - [anon_sym_DQUOTE] = ACTIONS(1735), - [sym__str_single_quotes] = ACTIONS(1735), - [sym__str_back_ticks] = ACTIONS(1735), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1735), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token1] = ACTIONS(1733), - [aux_sym_unquoted_token2] = ACTIONS(1733), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1735), + [1387] = { + [sym_comment] = STATE(1387), + [sym__newline] = ACTIONS(974), + [anon_sym_SEMI] = ACTIONS(974), + [anon_sym_PIPE] = ACTIONS(974), + [anon_sym_err_GT_PIPE] = ACTIONS(974), + [anon_sym_out_GT_PIPE] = ACTIONS(974), + [anon_sym_e_GT_PIPE] = ACTIONS(974), + [anon_sym_o_GT_PIPE] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(974), + [anon_sym_LBRACK] = ACTIONS(974), + [anon_sym_LPAREN] = ACTIONS(974), + [anon_sym_RPAREN] = ACTIONS(974), + [anon_sym_DOLLAR] = ACTIONS(972), + [anon_sym_DASH_DASH] = ACTIONS(974), + [anon_sym_DASH2] = ACTIONS(972), + [anon_sym_LBRACE] = ACTIONS(974), + [anon_sym_RBRACE] = ACTIONS(974), + [anon_sym_DOT_DOT] = ACTIONS(972), + [anon_sym_QMARK2] = ACTIONS(974), + [anon_sym_DOT_DOT2] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ] = ACTIONS(972), + [anon_sym_DOT_DOT_LT] = ACTIONS(972), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(974), + [anon_sym_DOT_DOT_LT2] = ACTIONS(974), + [anon_sym_null] = ACTIONS(974), + [anon_sym_true] = ACTIONS(974), + [anon_sym_false] = ACTIONS(974), + [aux_sym__val_number_decimal_token1] = ACTIONS(972), + [aux_sym__val_number_decimal_token2] = ACTIONS(974), + [aux_sym__val_number_decimal_token3] = ACTIONS(974), + [aux_sym__val_number_decimal_token4] = ACTIONS(974), + [aux_sym__val_number_token1] = ACTIONS(974), + [aux_sym__val_number_token2] = ACTIONS(974), + [aux_sym__val_number_token3] = ACTIONS(974), + [aux_sym__val_number_token4] = ACTIONS(974), + [aux_sym__val_number_token5] = ACTIONS(974), + [aux_sym__val_number_token6] = ACTIONS(974), + [anon_sym_0b] = ACTIONS(972), + [anon_sym_0o] = ACTIONS(972), + [anon_sym_0x] = ACTIONS(972), + [sym_val_date] = ACTIONS(974), + [anon_sym_DQUOTE] = ACTIONS(974), + [sym__str_single_quotes] = ACTIONS(974), + [sym__str_back_ticks] = ACTIONS(974), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(974), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(974), + [anon_sym_DOT2] = ACTIONS(972), + [anon_sym_err_GT] = ACTIONS(972), + [anon_sym_out_GT] = ACTIONS(972), + [anon_sym_e_GT] = ACTIONS(972), + [anon_sym_o_GT] = ACTIONS(972), + [anon_sym_err_PLUSout_GT] = ACTIONS(972), + [anon_sym_out_PLUSerr_GT] = ACTIONS(972), + [anon_sym_o_PLUSe_GT] = ACTIONS(972), + [anon_sym_e_PLUSo_GT] = ACTIONS(972), + [anon_sym_err_GT_GT] = ACTIONS(974), + [anon_sym_out_GT_GT] = ACTIONS(974), + [anon_sym_e_GT_GT] = ACTIONS(974), + [anon_sym_o_GT_GT] = ACTIONS(974), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(974), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(974), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(974), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), + [aux_sym_unquoted_token1] = ACTIONS(972), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(974), + }, + [1388] = { + [sym_comment] = STATE(1388), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4644), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1389] = { + [sym_comment] = STATE(1389), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_LBRACK] = ACTIONS(1729), + [anon_sym_LPAREN] = ACTIONS(1729), + [anon_sym_DOLLAR] = ACTIONS(1727), + [anon_sym_DASH_DASH] = ACTIONS(1729), + [anon_sym_DASH2] = ACTIONS(1727), + [anon_sym_LBRACE] = ACTIONS(1729), + [anon_sym_DOT_DOT] = ACTIONS(1727), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), + [anon_sym_DOT_DOT_LT] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [anon_sym_null] = ACTIONS(1729), + [anon_sym_true] = ACTIONS(1729), + [anon_sym_false] = ACTIONS(1729), + [aux_sym__val_number_decimal_token1] = ACTIONS(1727), + [aux_sym__val_number_decimal_token2] = ACTIONS(1729), + [aux_sym__val_number_decimal_token3] = ACTIONS(1729), + [aux_sym__val_number_decimal_token4] = ACTIONS(1729), + [aux_sym__val_number_token1] = ACTIONS(1729), + [aux_sym__val_number_token2] = ACTIONS(1729), + [aux_sym__val_number_token3] = ACTIONS(1729), + [aux_sym__val_number_token4] = ACTIONS(1729), + [aux_sym__val_number_token5] = ACTIONS(1729), + [aux_sym__val_number_token6] = ACTIONS(1729), + [anon_sym_0b] = ACTIONS(1727), + [sym_filesize_unit] = ACTIONS(1729), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_0o] = ACTIONS(1727), + [anon_sym_0x] = ACTIONS(1727), + [sym_val_date] = ACTIONS(1729), + [anon_sym_DQUOTE] = ACTIONS(1729), + [sym__str_single_quotes] = ACTIONS(1729), + [sym__str_back_ticks] = ACTIONS(1729), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1729), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token1] = ACTIONS(1727), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1729), + }, + [1390] = { + [sym__expr_parenthesized_immediate] = STATE(2033), + [sym__immediate_decimal] = STATE(2075), + [sym_val_variable] = STATE(2033), + [sym_comment] = STATE(1390), + [sym__newline] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_err_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_GT_PIPE] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), + [anon_sym_RPAREN] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1589), + [anon_sym_RBRACE] = ACTIONS(1589), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1589), + [anon_sym_xor2] = ACTIONS(1589), + [anon_sym_or2] = ACTIONS(1589), + [anon_sym_not_DASHin2] = ACTIONS(1589), + [anon_sym_starts_DASHwith2] = ACTIONS(1589), + [anon_sym_ends_DASHwith2] = ACTIONS(1589), + [anon_sym_EQ_EQ2] = ACTIONS(1589), + [anon_sym_BANG_EQ2] = ACTIONS(1589), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1589), + [anon_sym_GT_EQ2] = ACTIONS(1589), + [anon_sym_EQ_TILDE2] = ACTIONS(1589), + [anon_sym_BANG_TILDE2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1589), + [anon_sym_PLUS_PLUS2] = ACTIONS(1589), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1589), + [anon_sym_SLASH_SLASH2] = ACTIONS(1589), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1589), + [anon_sym_bit_DASHshr2] = ACTIONS(1589), + [anon_sym_bit_DASHand2] = ACTIONS(1589), + [anon_sym_bit_DASHxor2] = ACTIONS(1589), + [anon_sym_bit_DASHor2] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(4602), + [aux_sym__immediate_decimal_token3] = ACTIONS(4602), + [aux_sym__immediate_decimal_token4] = ACTIONS(4604), + [aux_sym__immediate_decimal_token5] = ACTIONS(4606), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1589), + [anon_sym_out_GT_GT] = ACTIONS(1589), + [anon_sym_e_GT_GT] = ACTIONS(1589), + [anon_sym_o_GT_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(251), + }, + [1391] = { + [sym__expr_parenthesized_immediate] = STATE(2027), + [sym__immediate_decimal] = STATE(2028), + [sym_val_variable] = STATE(2027), + [sym_comment] = STATE(1391), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_RPAREN] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_LBRACE] = ACTIONS(1703), + [anon_sym_RBRACE] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(4621), + [aux_sym__immediate_decimal_token3] = ACTIONS(4621), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(251), + }, + [1392] = { + [sym_comment] = STATE(1392), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1393] = { + [sym__expr_parenthesized_immediate] = STATE(2029), + [sym__immediate_decimal] = STATE(2030), + [sym_val_variable] = STATE(2029), + [sym_comment] = STATE(1393), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_RPAREN] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_LBRACE] = ACTIONS(1707), + [anon_sym_RBRACE] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1705), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1705), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1705), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(4621), + [aux_sym__immediate_decimal_token3] = ACTIONS(4621), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(251), + }, + [1394] = { + [sym__expr_parenthesized_immediate] = STATE(2031), + [sym__immediate_decimal] = STATE(2032), + [sym_val_variable] = STATE(2031), + [sym_comment] = STATE(1394), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_RPAREN] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_LBRACE] = ACTIONS(1711), + [anon_sym_RBRACE] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token1] = ACTIONS(4621), + [aux_sym__immediate_decimal_token3] = ACTIONS(4621), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(251), + }, + [1395] = { + [sym_comment] = STATE(1395), + [anon_sym_EQ] = ACTIONS(1018), + [anon_sym_PLUS_EQ] = ACTIONS(1020), + [anon_sym_DASH_EQ] = ACTIONS(1020), + [anon_sym_STAR_EQ] = ACTIONS(1020), + [anon_sym_SLASH_EQ] = ACTIONS(1020), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_RPAREN] = ACTIONS(1020), + [anon_sym_GT2] = ACTIONS(1018), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1018), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_COLON2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [anon_sym_POUND] = ACTIONS(251), + }, + [1396] = { + [sym__expr_parenthesized_immediate] = STATE(2016), + [sym__immediate_decimal] = STATE(2113), + [sym_val_variable] = STATE(2016), + [sym_comment] = STATE(1396), + [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_DOLLAR] = ACTIONS(3534), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_LBRACE] = ACTIONS(1543), + [anon_sym_RBRACE] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4538), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(4621), + [aux_sym__immediate_decimal_token3] = ACTIONS(4621), + [aux_sym__immediate_decimal_token4] = ACTIONS(4544), + [aux_sym__immediate_decimal_token5] = ACTIONS(4546), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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(251), + }, + [1397] = { + [sym_comment] = STATE(1397), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1817), + [anon_sym_DOT_DOT_LT] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_null] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1817), + [anon_sym_0o] = ACTIONS(1817), + [anon_sym_0x] = ACTIONS(1817), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1817), + [aux_sym_unquoted_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [1398] = { + [sym_comment] = STATE(1398), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4648), + [aux_sym__immediate_decimal_token2] = ACTIONS(4650), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [1399] = { + [sym_comment] = STATE(1399), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_LBRACK] = ACTIONS(1687), + [anon_sym_LPAREN] = ACTIONS(1687), + [anon_sym_DOLLAR] = ACTIONS(1685), + [anon_sym_DASH_DASH] = ACTIONS(1687), + [anon_sym_DASH2] = ACTIONS(1685), + [anon_sym_LBRACE] = ACTIONS(1687), + [anon_sym_DOT_DOT] = ACTIONS(1685), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1685), + [anon_sym_DOT_DOT_LT] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [anon_sym_null] = ACTIONS(1687), + [anon_sym_true] = ACTIONS(1687), + [anon_sym_false] = ACTIONS(1687), + [aux_sym__val_number_decimal_token1] = ACTIONS(1685), + [aux_sym__val_number_decimal_token2] = ACTIONS(1687), + [aux_sym__val_number_decimal_token3] = ACTIONS(1687), + [aux_sym__val_number_decimal_token4] = ACTIONS(1687), + [aux_sym__val_number_token1] = ACTIONS(1687), + [aux_sym__val_number_token2] = ACTIONS(1687), + [aux_sym__val_number_token3] = ACTIONS(1687), + [aux_sym__val_number_token4] = ACTIONS(1687), + [aux_sym__val_number_token5] = ACTIONS(1687), + [aux_sym__val_number_token6] = ACTIONS(1687), + [anon_sym_0b] = ACTIONS(1685), + [sym_filesize_unit] = ACTIONS(1687), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_0o] = ACTIONS(1685), + [anon_sym_0x] = ACTIONS(1685), + [sym_val_date] = ACTIONS(1687), + [anon_sym_DQUOTE] = ACTIONS(1687), + [sym__str_single_quotes] = ACTIONS(1687), + [sym__str_back_ticks] = ACTIONS(1687), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1687), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token1] = ACTIONS(1685), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1687), + }, + [1400] = { + [sym_comment] = STATE(1400), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1599), + [anon_sym_LPAREN] = ACTIONS(1599), + [anon_sym_DOLLAR] = ACTIONS(1597), + [anon_sym_DASH_DASH] = ACTIONS(1599), + [anon_sym_DASH2] = ACTIONS(1597), + [anon_sym_LBRACE] = ACTIONS(1599), + [anon_sym_DOT_DOT] = ACTIONS(1597), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1597), + [anon_sym_DOT_DOT_LT] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [anon_sym_null] = ACTIONS(1599), + [anon_sym_true] = ACTIONS(1599), + [anon_sym_false] = ACTIONS(1599), + [aux_sym__val_number_decimal_token1] = ACTIONS(1597), + [aux_sym__val_number_decimal_token2] = ACTIONS(1599), + [aux_sym__val_number_decimal_token3] = ACTIONS(1599), + [aux_sym__val_number_decimal_token4] = ACTIONS(1599), + [aux_sym__val_number_token1] = ACTIONS(1599), + [aux_sym__val_number_token2] = ACTIONS(1599), + [aux_sym__val_number_token3] = ACTIONS(1599), + [aux_sym__val_number_token4] = ACTIONS(1599), + [aux_sym__val_number_token5] = ACTIONS(1599), + [aux_sym__val_number_token6] = ACTIONS(1599), + [anon_sym_0b] = ACTIONS(1597), + [sym_filesize_unit] = ACTIONS(1599), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_0o] = ACTIONS(1597), + [anon_sym_0x] = ACTIONS(1597), + [sym_val_date] = ACTIONS(1599), + [anon_sym_DQUOTE] = ACTIONS(1599), + [sym__str_single_quotes] = ACTIONS(1599), + [sym__str_back_ticks] = ACTIONS(1599), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1599), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token1] = ACTIONS(1597), + [aux_sym_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1599), + }, + [1401] = { + [sym_comment] = STATE(1401), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT2] = ACTIONS(4580), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1663), + [anon_sym_DOT_DOT_LT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4582), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4582), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1663), + [sym_filesize_unit] = ACTIONS(4652), + [sym_duration_unit] = ACTIONS(4654), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(4656), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), }, - [1418] = { - [sym__expr_parenthesized_immediate] = STATE(2050), - [sym__immediate_decimal] = STATE(2130), - [sym_val_variable] = STATE(2050), - [sym_comment] = STATE(1418), - [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_RPAREN] = ACTIONS(1629), - [anon_sym_DOLLAR] = ACTIONS(3547), - [anon_sym_GT2] = ACTIONS(1627), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_in2] = ACTIONS(1629), - [anon_sym_LBRACE] = ACTIONS(1629), - [anon_sym_RBRACE] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1627), - [anon_sym_and2] = ACTIONS(1629), - [anon_sym_xor2] = ACTIONS(1629), - [anon_sym_or2] = ACTIONS(1629), - [anon_sym_not_DASHin2] = ACTIONS(1629), - [anon_sym_starts_DASHwith2] = ACTIONS(1629), - [anon_sym_ends_DASHwith2] = ACTIONS(1629), - [anon_sym_EQ_EQ2] = ACTIONS(1629), - [anon_sym_BANG_EQ2] = ACTIONS(1629), - [anon_sym_LT2] = ACTIONS(1627), - [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_LPAREN2] = ACTIONS(4551), - [anon_sym_STAR_STAR2] = ACTIONS(1629), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1627), - [anon_sym_mod2] = ACTIONS(1629), - [anon_sym_SLASH_SLASH2] = ACTIONS(1629), - [anon_sym_PLUS2] = ACTIONS(1627), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4630), - [aux_sym__immediate_decimal_token3] = ACTIONS(4630), - [aux_sym__immediate_decimal_token4] = ACTIONS(4557), - [aux_sym__immediate_decimal_token5] = ACTIONS(4559), - [anon_sym_err_GT] = ACTIONS(1627), - [anon_sym_out_GT] = ACTIONS(1627), - [anon_sym_e_GT] = ACTIONS(1627), - [anon_sym_o_GT] = ACTIONS(1627), - [anon_sym_err_PLUSout_GT] = ACTIONS(1627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), - [anon_sym_o_PLUSe_GT] = ACTIONS(1627), - [anon_sym_e_PLUSo_GT] = ACTIONS(1627), - [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), + [1402] = { + [sym_comment] = STATE(1402), + [ts_builtin_sym_end] = ACTIONS(970), + [anon_sym_EQ] = ACTIONS(968), + [anon_sym_PLUS_EQ] = ACTIONS(970), + [anon_sym_DASH_EQ] = ACTIONS(970), + [anon_sym_STAR_EQ] = ACTIONS(970), + [anon_sym_SLASH_EQ] = ACTIONS(970), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_GT2] = ACTIONS(968), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_in2] = ACTIONS(970), + [anon_sym_STAR2] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(970), + [anon_sym_and2] = ACTIONS(970), + [anon_sym_xor2] = ACTIONS(970), + [anon_sym_or2] = ACTIONS(970), + [anon_sym_not_DASHin2] = ACTIONS(970), + [anon_sym_starts_DASHwith2] = ACTIONS(970), + [anon_sym_ends_DASHwith2] = ACTIONS(970), + [anon_sym_EQ_EQ2] = ACTIONS(970), + [anon_sym_BANG_EQ2] = ACTIONS(970), + [anon_sym_LT2] = ACTIONS(968), + [anon_sym_LT_EQ2] = ACTIONS(970), + [anon_sym_GT_EQ2] = ACTIONS(970), + [anon_sym_EQ_TILDE2] = ACTIONS(970), + [anon_sym_BANG_TILDE2] = ACTIONS(970), + [anon_sym_STAR_STAR2] = ACTIONS(970), + [anon_sym_PLUS_PLUS2] = ACTIONS(968), + [anon_sym_SLASH2] = ACTIONS(968), + [anon_sym_mod2] = ACTIONS(970), + [anon_sym_SLASH_SLASH2] = ACTIONS(970), + [anon_sym_PLUS2] = ACTIONS(968), + [anon_sym_bit_DASHshl2] = ACTIONS(970), + [anon_sym_bit_DASHshr2] = ACTIONS(970), + [anon_sym_bit_DASHand2] = ACTIONS(970), + [anon_sym_bit_DASHxor2] = ACTIONS(970), + [anon_sym_bit_DASHor2] = ACTIONS(970), + [anon_sym_DOT_DOT2] = ACTIONS(968), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(970), + [anon_sym_DOT_DOT_LT2] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [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), [anon_sym_POUND] = ACTIONS(251), }, - [1419] = { - [sym_comment] = STATE(1419), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), + [1403] = { + [sym_path] = STATE(1531), + [sym_comment] = STATE(1403), + [aux_sym_cell_path_repeat1] = STATE(1364), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_if] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_EQ_GT] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_COLON2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4593), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), }, - [1420] = { - [sym_comment] = STATE(1420), + [1404] = { + [sym_comment] = STATE(1404), + [ts_builtin_sym_end] = ACTIONS(966), + [anon_sym_EQ] = ACTIONS(964), + [anon_sym_PLUS_EQ] = ACTIONS(966), + [anon_sym_DASH_EQ] = ACTIONS(966), + [anon_sym_STAR_EQ] = ACTIONS(966), + [anon_sym_SLASH_EQ] = ACTIONS(966), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(966), [sym__newline] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(966), [anon_sym_PIPE] = ACTIONS(966), @@ -215074,14 +213974,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), - [anon_sym_RPAREN] = ACTIONS(966), [anon_sym_GT2] = ACTIONS(964), - [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), [anon_sym_in2] = ACTIONS(966), - [anon_sym_if] = ACTIONS(966), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_RBRACE] = ACTIONS(966), - [anon_sym_EQ_GT] = ACTIONS(966), [anon_sym_STAR2] = ACTIONS(964), [anon_sym_QMARK2] = ACTIONS(966), [anon_sym_and2] = ACTIONS(966), @@ -215098,7 +213993,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE2] = ACTIONS(966), [anon_sym_BANG_TILDE2] = ACTIONS(966), [anon_sym_STAR_STAR2] = ACTIONS(966), - [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(964), [anon_sym_SLASH2] = ACTIONS(964), [anon_sym_mod2] = ACTIONS(966), [anon_sym_SLASH_SLASH2] = ACTIONS(966), @@ -215111,7 +214006,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(964), [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), [anon_sym_DOT_DOT_LT2] = ACTIONS(966), - [anon_sym_COLON2] = ACTIONS(966), [anon_sym_DOT2] = ACTIONS(964), [anon_sym_err_GT] = ACTIONS(964), [anon_sym_out_GT] = ACTIONS(964), @@ -215131,8 +214025,219 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(251), }, - [1421] = { - [sym_comment] = STATE(1421), + [1405] = { + [sym_comment] = STATE(1405), + [ts_builtin_sym_end] = ACTIONS(960), + [anon_sym_EQ] = ACTIONS(958), + [anon_sym_PLUS_EQ] = ACTIONS(960), + [anon_sym_DASH_EQ] = ACTIONS(960), + [anon_sym_STAR_EQ] = ACTIONS(960), + [anon_sym_SLASH_EQ] = ACTIONS(960), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4658), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(958), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(251), + }, + [1406] = { + [sym_comment] = STATE(1406), + [ts_builtin_sym_end] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4660), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ] = ACTIONS(952), + [anon_sym_DOT_DOT_LT] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), + }, + [1407] = { + [sym_comment] = STATE(1407), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_RPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_RBRACE] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [aux_sym_unquoted_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), + }, + [1408] = { + [sym_comment] = STATE(1408), [ts_builtin_sym_end] = ACTIONS(1020), [anon_sym_EQ] = ACTIONS(1018), [anon_sym_PLUS_EQ] = ACTIONS(1020), @@ -215201,428 +214306,218 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(251), }, - [1422] = { - [sym_cell_path] = STATE(1777), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1422), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), - }, - [1423] = { - [sym_comment] = STATE(1423), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4675), - [aux_sym__immediate_decimal_token2] = ACTIONS(4677), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), + [1409] = { + [sym_comment] = STATE(1409), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1597), + [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_LPAREN2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(4662), + [aux_sym__immediate_decimal_token2] = ACTIONS(4664), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token2] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1424] = { - [sym_cell_path] = STATE(1778), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1424), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), }, - [1425] = { - [sym_comment] = STATE(1425), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1597), - [anon_sym_in2] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1597), - [anon_sym_xor2] = ACTIONS(1597), - [anon_sym_or2] = ACTIONS(1597), - [anon_sym_not_DASHin2] = ACTIONS(1597), - [anon_sym_starts_DASHwith2] = ACTIONS(1597), - [anon_sym_ends_DASHwith2] = ACTIONS(1597), - [anon_sym_EQ_EQ2] = ACTIONS(1597), - [anon_sym_BANG_EQ2] = ACTIONS(1597), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1597), - [anon_sym_GT_EQ2] = ACTIONS(1597), - [anon_sym_EQ_TILDE2] = ACTIONS(1597), - [anon_sym_BANG_TILDE2] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_STAR_STAR2] = ACTIONS(1597), - [anon_sym_PLUS_PLUS2] = ACTIONS(1597), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1597), - [anon_sym_SLASH_SLASH2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1597), - [anon_sym_bit_DASHshr2] = ACTIONS(1597), - [anon_sym_bit_DASHand2] = ACTIONS(1597), - [anon_sym_bit_DASHxor2] = ACTIONS(1597), - [anon_sym_bit_DASHor2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4679), - [aux_sym__immediate_decimal_token2] = ACTIONS(4681), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token2] = ACTIONS(1595), + [1410] = { + [sym_comment] = STATE(1410), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_RPAREN] = ACTIONS(966), + [anon_sym_GT2] = ACTIONS(964), + [anon_sym_DASH2] = ACTIONS(966), + [anon_sym_in2] = ACTIONS(966), + [anon_sym_if] = ACTIONS(966), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_RBRACE] = ACTIONS(966), + [anon_sym_EQ_GT] = ACTIONS(966), + [anon_sym_STAR2] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_and2] = ACTIONS(966), + [anon_sym_xor2] = ACTIONS(966), + [anon_sym_or2] = ACTIONS(966), + [anon_sym_not_DASHin2] = ACTIONS(966), + [anon_sym_starts_DASHwith2] = ACTIONS(966), + [anon_sym_ends_DASHwith2] = ACTIONS(966), + [anon_sym_EQ_EQ2] = ACTIONS(966), + [anon_sym_BANG_EQ2] = ACTIONS(966), + [anon_sym_LT2] = ACTIONS(964), + [anon_sym_LT_EQ2] = ACTIONS(966), + [anon_sym_GT_EQ2] = ACTIONS(966), + [anon_sym_EQ_TILDE2] = ACTIONS(966), + [anon_sym_BANG_TILDE2] = ACTIONS(966), + [anon_sym_STAR_STAR2] = ACTIONS(966), + [anon_sym_PLUS_PLUS2] = ACTIONS(966), + [anon_sym_SLASH2] = ACTIONS(964), + [anon_sym_mod2] = ACTIONS(966), + [anon_sym_SLASH_SLASH2] = ACTIONS(966), + [anon_sym_PLUS2] = ACTIONS(964), + [anon_sym_bit_DASHshl2] = ACTIONS(966), + [anon_sym_bit_DASHshr2] = ACTIONS(966), + [anon_sym_bit_DASHand2] = ACTIONS(966), + [anon_sym_bit_DASHxor2] = ACTIONS(966), + [anon_sym_bit_DASHor2] = ACTIONS(966), + [anon_sym_DOT_DOT2] = ACTIONS(964), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(966), + [anon_sym_DOT_DOT_LT2] = ACTIONS(966), + [anon_sym_COLON2] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), [anon_sym_POUND] = ACTIONS(251), }, - [1426] = { - [sym_cell_path] = STATE(1757), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1426), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1427] = { - [sym_comment] = STATE(1427), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(4683), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4685), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [1411] = { + [sym_cell_path] = STATE(1770), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1411), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_err_GT_PIPE] = ACTIONS(2030), + [anon_sym_out_GT_PIPE] = ACTIONS(2030), + [anon_sym_e_GT_PIPE] = ACTIONS(2030), + [anon_sym_o_GT_PIPE] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_LT] = ACTIONS(2030), + [anon_sym_null] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2028), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_0b] = ACTIONS(2028), + [anon_sym_0o] = ACTIONS(2028), + [anon_sym_0x] = ACTIONS(2028), + [sym_val_date] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2030), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(2028), + [anon_sym_out_GT] = ACTIONS(2028), + [anon_sym_e_GT] = ACTIONS(2028), + [anon_sym_o_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT] = ACTIONS(2028), + [anon_sym_err_GT_GT] = ACTIONS(2030), + [anon_sym_out_GT_GT] = ACTIONS(2030), + [anon_sym_e_GT_GT] = ACTIONS(2030), + [anon_sym_o_GT_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2030), + [aux_sym_unquoted_token1] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2030), }, - [1428] = { - [sym_comment] = STATE(1428), + [1412] = { + [sym_comment] = STATE(1412), [sym__newline] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(970), [anon_sym_PIPE] = ACTIONS(970), @@ -215691,8 +214586,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(970), [anon_sym_POUND] = ACTIONS(251), }, - [1429] = { - [sym_comment] = STATE(1429), + [1413] = { + [sym_comment] = STATE(1413), [sym__newline] = ACTIONS(974), [anon_sym_SEMI] = ACTIONS(974), [anon_sym_PIPE] = ACTIONS(974), @@ -215761,288 +214656,428 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(974), [anon_sym_POUND] = ACTIONS(251), }, - [1430] = { - [sym_comment] = STATE(1430), - [ts_builtin_sym_end] = ACTIONS(990), - [anon_sym_EQ] = ACTIONS(988), - [anon_sym_PLUS_EQ] = ACTIONS(990), - [anon_sym_DASH_EQ] = ACTIONS(990), - [anon_sym_STAR_EQ] = ACTIONS(990), - [anon_sym_SLASH_EQ] = ACTIONS(990), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_GT2] = ACTIONS(988), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_in2] = ACTIONS(990), - [anon_sym_STAR2] = ACTIONS(988), - [anon_sym_and2] = ACTIONS(990), - [anon_sym_xor2] = ACTIONS(990), - [anon_sym_or2] = ACTIONS(990), - [anon_sym_not_DASHin2] = ACTIONS(990), - [anon_sym_starts_DASHwith2] = ACTIONS(990), - [anon_sym_ends_DASHwith2] = ACTIONS(990), - [anon_sym_EQ_EQ2] = ACTIONS(990), - [anon_sym_BANG_EQ2] = ACTIONS(990), - [anon_sym_LT2] = ACTIONS(988), - [anon_sym_LT_EQ2] = ACTIONS(990), - [anon_sym_GT_EQ2] = ACTIONS(990), - [anon_sym_EQ_TILDE2] = ACTIONS(990), - [anon_sym_BANG_TILDE2] = ACTIONS(990), - [anon_sym_STAR_STAR2] = ACTIONS(990), - [anon_sym_PLUS_PLUS2] = ACTIONS(988), - [anon_sym_SLASH2] = ACTIONS(988), - [anon_sym_mod2] = ACTIONS(990), - [anon_sym_SLASH_SLASH2] = ACTIONS(990), - [anon_sym_PLUS2] = ACTIONS(988), - [anon_sym_bit_DASHshl2] = ACTIONS(990), - [anon_sym_bit_DASHshr2] = ACTIONS(990), - [anon_sym_bit_DASHand2] = ACTIONS(990), - [anon_sym_bit_DASHxor2] = ACTIONS(990), - [anon_sym_bit_DASHor2] = ACTIONS(990), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [1414] = { + [sym_cell_path] = STATE(1697), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1414), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_LBRACK] = ACTIONS(937), + [anon_sym_LPAREN] = ACTIONS(937), + [anon_sym_RPAREN] = ACTIONS(937), + [anon_sym_DOLLAR] = ACTIONS(935), + [anon_sym_DASH_DASH] = ACTIONS(937), + [anon_sym_DASH2] = ACTIONS(935), + [anon_sym_LBRACE] = ACTIONS(937), + [anon_sym_RBRACE] = ACTIONS(937), + [anon_sym_DOT_DOT] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ] = ACTIONS(937), + [anon_sym_DOT_DOT_LT] = ACTIONS(937), + [anon_sym_null] = ACTIONS(937), + [anon_sym_true] = ACTIONS(937), + [anon_sym_false] = ACTIONS(937), + [aux_sym__val_number_decimal_token1] = ACTIONS(935), + [aux_sym__val_number_decimal_token2] = ACTIONS(937), + [aux_sym__val_number_decimal_token3] = ACTIONS(937), + [aux_sym__val_number_decimal_token4] = ACTIONS(937), + [aux_sym__val_number_token1] = ACTIONS(937), + [aux_sym__val_number_token2] = ACTIONS(937), + [aux_sym__val_number_token3] = ACTIONS(937), + [aux_sym__val_number_token4] = ACTIONS(937), + [aux_sym__val_number_token5] = ACTIONS(937), + [aux_sym__val_number_token6] = ACTIONS(937), + [anon_sym_0b] = ACTIONS(935), + [anon_sym_0o] = ACTIONS(935), + [anon_sym_0x] = ACTIONS(935), + [sym_val_date] = ACTIONS(937), + [anon_sym_DQUOTE] = ACTIONS(937), + [sym__str_single_quotes] = ACTIONS(937), + [sym__str_back_ticks] = ACTIONS(937), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), + [aux_sym_unquoted_token1] = ACTIONS(935), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(937), + }, + [1415] = { + [sym_comment] = STATE(1415), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_RPAREN] = ACTIONS(978), + [anon_sym_GT2] = ACTIONS(976), + [anon_sym_DASH2] = ACTIONS(978), + [anon_sym_in2] = ACTIONS(978), + [anon_sym_if] = ACTIONS(978), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_RBRACE] = ACTIONS(978), + [anon_sym_EQ_GT] = ACTIONS(978), + [anon_sym_STAR2] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_and2] = ACTIONS(978), + [anon_sym_xor2] = ACTIONS(978), + [anon_sym_or2] = ACTIONS(978), + [anon_sym_not_DASHin2] = ACTIONS(978), + [anon_sym_starts_DASHwith2] = ACTIONS(978), + [anon_sym_ends_DASHwith2] = ACTIONS(978), + [anon_sym_EQ_EQ2] = ACTIONS(978), + [anon_sym_BANG_EQ2] = ACTIONS(978), + [anon_sym_LT2] = ACTIONS(976), + [anon_sym_LT_EQ2] = ACTIONS(978), + [anon_sym_GT_EQ2] = ACTIONS(978), + [anon_sym_EQ_TILDE2] = ACTIONS(978), + [anon_sym_BANG_TILDE2] = ACTIONS(978), + [anon_sym_STAR_STAR2] = ACTIONS(978), + [anon_sym_PLUS_PLUS2] = ACTIONS(978), + [anon_sym_SLASH2] = ACTIONS(976), + [anon_sym_mod2] = ACTIONS(978), + [anon_sym_SLASH_SLASH2] = ACTIONS(978), + [anon_sym_PLUS2] = ACTIONS(976), + [anon_sym_bit_DASHshl2] = ACTIONS(978), + [anon_sym_bit_DASHshr2] = ACTIONS(978), + [anon_sym_bit_DASHand2] = ACTIONS(978), + [anon_sym_bit_DASHxor2] = ACTIONS(978), + [anon_sym_bit_DASHor2] = ACTIONS(978), + [anon_sym_DOT_DOT2] = ACTIONS(976), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), + [anon_sym_DOT_DOT_LT2] = ACTIONS(978), + [anon_sym_COLON2] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [anon_sym_POUND] = ACTIONS(251), + }, + [1416] = { + [sym_comment] = STATE(1416), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_GT2] = ACTIONS(958), + [anon_sym_DASH2] = ACTIONS(960), + [anon_sym_in2] = ACTIONS(960), + [anon_sym_if] = ACTIONS(960), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_EQ_GT] = ACTIONS(960), + [anon_sym_STAR2] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4668), + [anon_sym_and2] = ACTIONS(960), + [anon_sym_xor2] = ACTIONS(960), + [anon_sym_or2] = ACTIONS(960), + [anon_sym_not_DASHin2] = ACTIONS(960), + [anon_sym_starts_DASHwith2] = ACTIONS(960), + [anon_sym_ends_DASHwith2] = ACTIONS(960), + [anon_sym_EQ_EQ2] = ACTIONS(960), + [anon_sym_BANG_EQ2] = ACTIONS(960), + [anon_sym_LT2] = ACTIONS(958), + [anon_sym_LT_EQ2] = ACTIONS(960), + [anon_sym_GT_EQ2] = ACTIONS(960), + [anon_sym_EQ_TILDE2] = ACTIONS(960), + [anon_sym_BANG_TILDE2] = ACTIONS(960), + [anon_sym_STAR_STAR2] = ACTIONS(960), + [anon_sym_PLUS_PLUS2] = ACTIONS(960), + [anon_sym_SLASH2] = ACTIONS(958), + [anon_sym_mod2] = ACTIONS(960), + [anon_sym_SLASH_SLASH2] = ACTIONS(960), + [anon_sym_PLUS2] = ACTIONS(958), + [anon_sym_bit_DASHshl2] = ACTIONS(960), + [anon_sym_bit_DASHshr2] = ACTIONS(960), + [anon_sym_bit_DASHand2] = ACTIONS(960), + [anon_sym_bit_DASHxor2] = ACTIONS(960), + [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), + [anon_sym_DOT_DOT_LT2] = ACTIONS(960), + [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [anon_sym_POUND] = ACTIONS(251), + }, + [1417] = { + [sym_comment] = STATE(1417), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_GT2] = ACTIONS(952), + [anon_sym_DASH2] = ACTIONS(954), + [anon_sym_in2] = ACTIONS(954), + [anon_sym_if] = ACTIONS(954), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_EQ_GT] = ACTIONS(954), + [anon_sym_STAR2] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4670), + [anon_sym_and2] = ACTIONS(954), + [anon_sym_xor2] = ACTIONS(954), + [anon_sym_or2] = ACTIONS(954), + [anon_sym_not_DASHin2] = ACTIONS(954), + [anon_sym_starts_DASHwith2] = ACTIONS(954), + [anon_sym_ends_DASHwith2] = ACTIONS(954), + [anon_sym_EQ_EQ2] = ACTIONS(954), + [anon_sym_BANG_EQ2] = ACTIONS(954), + [anon_sym_LT2] = ACTIONS(952), + [anon_sym_LT_EQ2] = ACTIONS(954), + [anon_sym_GT_EQ2] = ACTIONS(954), + [anon_sym_EQ_TILDE2] = ACTIONS(954), + [anon_sym_BANG_TILDE2] = ACTIONS(954), + [anon_sym_STAR_STAR2] = ACTIONS(954), + [anon_sym_PLUS_PLUS2] = ACTIONS(954), + [anon_sym_SLASH2] = ACTIONS(952), + [anon_sym_mod2] = ACTIONS(954), + [anon_sym_SLASH_SLASH2] = ACTIONS(954), + [anon_sym_PLUS2] = ACTIONS(952), + [anon_sym_bit_DASHshl2] = ACTIONS(954), + [anon_sym_bit_DASHshr2] = ACTIONS(954), + [anon_sym_bit_DASHand2] = ACTIONS(954), + [anon_sym_bit_DASHxor2] = ACTIONS(954), + [anon_sym_bit_DASHor2] = ACTIONS(954), + [anon_sym_DOT_DOT2] = ACTIONS(952), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), + [anon_sym_DOT_DOT_LT2] = ACTIONS(954), + [anon_sym_COLON2] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), [anon_sym_POUND] = ACTIONS(251), }, - [1431] = { - [sym_comment] = STATE(1431), - [ts_builtin_sym_end] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT2] = ACTIONS(4687), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1786), - [anon_sym_DOT_DOT_LT] = ACTIONS(1786), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4689), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4689), - [anon_sym_null] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [aux_sym__val_number_token4] = ACTIONS(1794), - [aux_sym__val_number_token5] = ACTIONS(1794), - [aux_sym__val_number_token6] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1794), - }, - [1432] = { - [sym_comment] = STATE(1432), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_RPAREN] = ACTIONS(978), - [anon_sym_GT2] = ACTIONS(976), - [anon_sym_DASH2] = ACTIONS(978), - [anon_sym_in2] = ACTIONS(978), - [anon_sym_if] = ACTIONS(978), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_RBRACE] = ACTIONS(978), - [anon_sym_EQ_GT] = ACTIONS(978), - [anon_sym_STAR2] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_and2] = ACTIONS(978), - [anon_sym_xor2] = ACTIONS(978), - [anon_sym_or2] = ACTIONS(978), - [anon_sym_not_DASHin2] = ACTIONS(978), - [anon_sym_starts_DASHwith2] = ACTIONS(978), - [anon_sym_ends_DASHwith2] = ACTIONS(978), - [anon_sym_EQ_EQ2] = ACTIONS(978), - [anon_sym_BANG_EQ2] = ACTIONS(978), - [anon_sym_LT2] = ACTIONS(976), - [anon_sym_LT_EQ2] = ACTIONS(978), - [anon_sym_GT_EQ2] = ACTIONS(978), - [anon_sym_EQ_TILDE2] = ACTIONS(978), - [anon_sym_BANG_TILDE2] = ACTIONS(978), - [anon_sym_STAR_STAR2] = ACTIONS(978), - [anon_sym_PLUS_PLUS2] = ACTIONS(978), - [anon_sym_SLASH2] = ACTIONS(976), - [anon_sym_mod2] = ACTIONS(978), - [anon_sym_SLASH_SLASH2] = ACTIONS(978), - [anon_sym_PLUS2] = ACTIONS(976), - [anon_sym_bit_DASHshl2] = ACTIONS(978), - [anon_sym_bit_DASHshr2] = ACTIONS(978), - [anon_sym_bit_DASHand2] = ACTIONS(978), - [anon_sym_bit_DASHxor2] = ACTIONS(978), - [anon_sym_bit_DASHor2] = ACTIONS(978), - [anon_sym_DOT_DOT2] = ACTIONS(976), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(978), - [anon_sym_DOT_DOT_LT2] = ACTIONS(978), - [anon_sym_COLON2] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [1418] = { + [sym_comment] = STATE(1418), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4672), + [aux_sym__immediate_decimal_token2] = ACTIONS(4674), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1433] = { - [sym_cell_path] = STATE(1759), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1433), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_err_GT_PIPE] = ACTIONS(2095), - [anon_sym_out_GT_PIPE] = ACTIONS(2095), - [anon_sym_e_GT_PIPE] = ACTIONS(2095), - [anon_sym_o_GT_PIPE] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_DASH2] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2095), - [anon_sym_DOT_DOT_LT] = ACTIONS(2095), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2093), - [aux_sym__val_number_decimal_token2] = ACTIONS(2095), - [aux_sym__val_number_decimal_token3] = ACTIONS(2095), - [aux_sym__val_number_decimal_token4] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2095), - [aux_sym__val_number_token5] = ACTIONS(2095), - [aux_sym__val_number_token6] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2093), - [anon_sym_0o] = ACTIONS(2093), - [anon_sym_0x] = ACTIONS(2093), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(2093), - [anon_sym_out_GT] = ACTIONS(2093), - [anon_sym_e_GT] = ACTIONS(2093), - [anon_sym_o_GT] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT] = ACTIONS(2093), - [anon_sym_err_GT_GT] = ACTIONS(2095), - [anon_sym_out_GT_GT] = ACTIONS(2095), - [anon_sym_e_GT_GT] = ACTIONS(2095), - [anon_sym_o_GT_GT] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2095), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2095), + [1419] = { + [sym_comment] = STATE(1419), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_COLON2] = ACTIONS(4676), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), }, - [1434] = { - [sym_comment] = STATE(1434), + [1420] = { + [sym_comment] = STATE(1420), [ts_builtin_sym_end] = ACTIONS(966), [sym__newline] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(966), @@ -216111,8 +215146,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(966), }, - [1435] = { - [sym_comment] = STATE(1435), + [1421] = { + [sym_comment] = STATE(1421), [ts_builtin_sym_end] = ACTIONS(970), [sym__newline] = ACTIONS(970), [anon_sym_SEMI] = ACTIONS(970), @@ -216181,8 +215216,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(970), }, - [1436] = { - [sym_comment] = STATE(1436), + [1422] = { + [sym_comment] = STATE(1422), [ts_builtin_sym_end] = ACTIONS(974), [sym__newline] = ACTIONS(974), [anon_sym_SEMI] = ACTIONS(974), @@ -216251,78 +215286,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(974), }, - [1437] = { - [sym_cell_path] = STATE(1760), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1437), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [aux_sym__val_number_token4] = ACTIONS(1951), - [aux_sym__val_number_token5] = ACTIONS(1951), - [aux_sym__val_number_token6] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [1438] = { - [sym_comment] = STATE(1438), + [1423] = { + [sym_comment] = STATE(1423), [ts_builtin_sym_end] = ACTIONS(978), [sym__newline] = ACTIONS(978), [anon_sym_SEMI] = ACTIONS(978), @@ -216391,358 +215356,499 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(978), }, - [1439] = { - [sym_cell_path] = STATE(1761), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1439), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), + [1424] = { + [sym_comment] = STATE(1424), + [ts_builtin_sym_end] = ACTIONS(986), + [anon_sym_EQ] = ACTIONS(984), + [anon_sym_PLUS_EQ] = ACTIONS(986), + [anon_sym_DASH_EQ] = ACTIONS(986), + [anon_sym_STAR_EQ] = ACTIONS(986), + [anon_sym_SLASH_EQ] = ACTIONS(986), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_GT2] = ACTIONS(984), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_in2] = ACTIONS(986), + [anon_sym_STAR2] = ACTIONS(984), + [anon_sym_and2] = ACTIONS(986), + [anon_sym_xor2] = ACTIONS(986), + [anon_sym_or2] = ACTIONS(986), + [anon_sym_not_DASHin2] = ACTIONS(986), + [anon_sym_starts_DASHwith2] = ACTIONS(986), + [anon_sym_ends_DASHwith2] = ACTIONS(986), + [anon_sym_EQ_EQ2] = ACTIONS(986), + [anon_sym_BANG_EQ2] = ACTIONS(986), + [anon_sym_LT2] = ACTIONS(984), + [anon_sym_LT_EQ2] = ACTIONS(986), + [anon_sym_GT_EQ2] = ACTIONS(986), + [anon_sym_EQ_TILDE2] = ACTIONS(986), + [anon_sym_BANG_TILDE2] = ACTIONS(986), + [anon_sym_STAR_STAR2] = ACTIONS(986), + [anon_sym_PLUS_PLUS2] = ACTIONS(984), + [anon_sym_SLASH2] = ACTIONS(984), + [anon_sym_mod2] = ACTIONS(986), + [anon_sym_SLASH_SLASH2] = ACTIONS(986), + [anon_sym_PLUS2] = ACTIONS(984), + [anon_sym_bit_DASHshl2] = ACTIONS(986), + [anon_sym_bit_DASHshr2] = ACTIONS(986), + [anon_sym_bit_DASHand2] = ACTIONS(986), + [anon_sym_bit_DASHxor2] = ACTIONS(986), + [anon_sym_bit_DASHor2] = ACTIONS(986), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [anon_sym_POUND] = ACTIONS(251), }, - [1440] = { - [sym_cell_path] = STATE(1762), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1440), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), + [1425] = { + [sym_comment] = STATE(1425), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT2] = ACTIONS(4678), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1805), + [anon_sym_DOT_DOT_LT] = ACTIONS(1805), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4680), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4680), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1813), }, - [1441] = { - [sym_cell_path] = STATE(1763), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1441), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), + [1426] = { + [sym_comment] = STATE(1426), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1442] = { - [sym_cell_path] = STATE(1764), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1442), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [1427] = { + [sym_comment] = STATE(1427), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4682), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1443] = { - [sym_cell_path] = STATE(1819), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1443), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1971), - [aux_sym__val_number_token5] = ACTIONS(1971), - [aux_sym__val_number_token6] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [1428] = { + [sym__expr_parenthesized_immediate] = STATE(2090), + [sym__immediate_decimal] = STATE(2091), + [sym_val_variable] = STATE(2090), + [sym_comment] = STATE(1428), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1557), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [anon_sym_DOT] = ACTIONS(4686), + [aux_sym__immediate_decimal_token1] = ACTIONS(4629), + [aux_sym__immediate_decimal_token3] = ACTIONS(4629), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), + [anon_sym_POUND] = ACTIONS(251), }, - [1444] = { - [sym_comment] = STATE(1444), + [1429] = { + [sym_comment] = STATE(1429), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(4688), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4690), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), + }, + [1430] = { + [sym_comment] = STATE(1430), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [1431] = { + [sym_comment] = STATE(1431), + [ts_builtin_sym_end] = ACTIONS(960), [sym__newline] = ACTIONS(960), [anon_sym_SEMI] = ACTIONS(960), [anon_sym_PIPE] = ACTIONS(960), @@ -216754,44 +215860,41 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_GT2] = ACTIONS(958), - [anon_sym_DASH2] = ACTIONS(960), - [anon_sym_in2] = ACTIONS(960), - [anon_sym_if] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_EQ_GT] = ACTIONS(960), - [anon_sym_STAR2] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4691), - [anon_sym_and2] = ACTIONS(960), - [anon_sym_xor2] = ACTIONS(960), - [anon_sym_or2] = ACTIONS(960), - [anon_sym_not_DASHin2] = ACTIONS(960), - [anon_sym_starts_DASHwith2] = ACTIONS(960), - [anon_sym_ends_DASHwith2] = ACTIONS(960), - [anon_sym_EQ_EQ2] = ACTIONS(960), - [anon_sym_BANG_EQ2] = ACTIONS(960), - [anon_sym_LT2] = ACTIONS(958), - [anon_sym_LT_EQ2] = ACTIONS(960), - [anon_sym_GT_EQ2] = ACTIONS(960), - [anon_sym_EQ_TILDE2] = ACTIONS(960), - [anon_sym_BANG_TILDE2] = ACTIONS(960), - [anon_sym_STAR_STAR2] = ACTIONS(960), - [anon_sym_PLUS_PLUS2] = ACTIONS(960), - [anon_sym_SLASH2] = ACTIONS(958), - [anon_sym_mod2] = ACTIONS(960), - [anon_sym_SLASH_SLASH2] = ACTIONS(960), - [anon_sym_PLUS2] = ACTIONS(958), - [anon_sym_bit_DASHshl2] = ACTIONS(960), - [anon_sym_bit_DASHshr2] = ACTIONS(960), - [anon_sym_bit_DASHand2] = ACTIONS(960), - [anon_sym_bit_DASHxor2] = ACTIONS(960), - [anon_sym_bit_DASHor2] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4692), [anon_sym_DOT_DOT2] = ACTIONS(958), + [anon_sym_DOT_DOT_EQ] = ACTIONS(958), + [anon_sym_DOT_DOT_LT] = ACTIONS(958), [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_COLON2] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), [anon_sym_DOT2] = ACTIONS(958), [anon_sym_err_GT] = ACTIONS(958), [anon_sym_out_GT] = ACTIONS(958), @@ -216809,290 +215912,649 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, - [1445] = { - [sym_comment] = STATE(1445), - [sym__newline] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_err_GT_PIPE] = ACTIONS(954), - [anon_sym_out_GT_PIPE] = ACTIONS(954), - [anon_sym_e_GT_PIPE] = ACTIONS(954), - [anon_sym_o_GT_PIPE] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_GT2] = ACTIONS(952), - [anon_sym_DASH2] = ACTIONS(954), - [anon_sym_in2] = ACTIONS(954), - [anon_sym_if] = ACTIONS(954), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_EQ_GT] = ACTIONS(954), - [anon_sym_STAR2] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4693), - [anon_sym_and2] = ACTIONS(954), - [anon_sym_xor2] = ACTIONS(954), - [anon_sym_or2] = ACTIONS(954), - [anon_sym_not_DASHin2] = ACTIONS(954), - [anon_sym_starts_DASHwith2] = ACTIONS(954), - [anon_sym_ends_DASHwith2] = ACTIONS(954), - [anon_sym_EQ_EQ2] = ACTIONS(954), - [anon_sym_BANG_EQ2] = ACTIONS(954), - [anon_sym_LT2] = ACTIONS(952), - [anon_sym_LT_EQ2] = ACTIONS(954), - [anon_sym_GT_EQ2] = ACTIONS(954), - [anon_sym_EQ_TILDE2] = ACTIONS(954), - [anon_sym_BANG_TILDE2] = ACTIONS(954), - [anon_sym_STAR_STAR2] = ACTIONS(954), - [anon_sym_PLUS_PLUS2] = ACTIONS(954), - [anon_sym_SLASH2] = ACTIONS(952), - [anon_sym_mod2] = ACTIONS(954), - [anon_sym_SLASH_SLASH2] = ACTIONS(954), - [anon_sym_PLUS2] = ACTIONS(952), - [anon_sym_bit_DASHshl2] = ACTIONS(954), - [anon_sym_bit_DASHshr2] = ACTIONS(954), - [anon_sym_bit_DASHand2] = ACTIONS(954), - [anon_sym_bit_DASHxor2] = ACTIONS(954), - [anon_sym_bit_DASHor2] = ACTIONS(954), - [anon_sym_DOT_DOT2] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), - [anon_sym_DOT_DOT_LT2] = ACTIONS(954), - [anon_sym_COLON2] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [1432] = { + [sym_comment] = STATE(1432), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4694), + [aux_sym__immediate_decimal_token2] = ACTIONS(4696), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1446] = { - [sym_cell_path] = STATE(1754), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1446), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1947), - [aux_sym__val_number_token5] = ACTIONS(1947), - [aux_sym__val_number_token6] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), + [1433] = { + [sym__expr_parenthesized_immediate] = STATE(2446), + [sym__immediate_decimal] = STATE(2285), + [sym_val_variable] = STATE(2446), + [sym_comment] = STATE(1433), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(4698), + [aux_sym__immediate_decimal_token3] = ACTIONS(4698), + [aux_sym__immediate_decimal_token4] = ACTIONS(4700), + [aux_sym__immediate_decimal_token5] = ACTIONS(4702), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), }, - [1447] = { - [sym_cell_path] = STATE(1776), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1447), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_err_GT_PIPE] = ACTIONS(2091), - [anon_sym_out_GT_PIPE] = ACTIONS(2091), - [anon_sym_e_GT_PIPE] = ACTIONS(2091), - [anon_sym_o_GT_PIPE] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_RPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2091), - [anon_sym_DOT_DOT_LT] = ACTIONS(2091), - [anon_sym_null] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2091), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2091), - [aux_sym__val_number_token5] = ACTIONS(2091), - [aux_sym__val_number_token6] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2091), - [anon_sym_out_GT_GT] = ACTIONS(2091), - [anon_sym_e_GT_GT] = ACTIONS(2091), - [anon_sym_o_GT_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2091), + [1434] = { + [sym_comment] = STATE(1434), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [1448] = { - [sym_comment] = STATE(1448), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4695), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4697), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), + [1435] = { + [sym_comment] = STATE(1435), + [ts_builtin_sym_end] = ACTIONS(1819), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1817), + [anon_sym_DOT_DOT_LT] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_null] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1817), + [anon_sym_0o] = ACTIONS(1817), + [anon_sym_0x] = ACTIONS(1817), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1817), + [aux_sym_unquoted_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [1436] = { + [sym_comment] = STATE(1436), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_DOLLAR] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_DOT_DOT2] = ACTIONS(4704), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1793), + [anon_sym_DOT_DOT_LT] = ACTIONS(1793), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4706), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4706), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1793), + [anon_sym_0o] = ACTIONS(1793), + [anon_sym_0x] = ACTIONS(1793), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1793), + [anon_sym_out_GT] = ACTIONS(1793), + [anon_sym_e_GT] = ACTIONS(1793), + [anon_sym_o_GT] = ACTIONS(1793), + [anon_sym_err_PLUSout_GT] = ACTIONS(1793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), + [anon_sym_o_PLUSe_GT] = ACTIONS(1793), + [anon_sym_e_PLUSo_GT] = ACTIONS(1793), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1793), + [aux_sym_unquoted_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1437] = { + [sym__expr_parenthesized_immediate] = STATE(2092), + [sym__immediate_decimal] = STATE(2093), + [sym_val_variable] = STATE(2092), + [sym_comment] = STATE(1437), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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] = ACTIONS(4708), + [aux_sym__immediate_decimal_token1] = ACTIONS(4629), + [aux_sym__immediate_decimal_token3] = ACTIONS(4629), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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(251), - [sym_raw_string_begin] = ACTIONS(1727), }, - [1449] = { - [sym_comment] = STATE(1449), + [1438] = { + [sym_comment] = STATE(1438), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(4710), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1439] = { + [sym__expr_parenthesized_immediate] = STATE(2484), + [sym__immediate_decimal] = STATE(2287), + [sym_val_variable] = STATE(2484), + [sym_comment] = STATE(1439), + [ts_builtin_sym_end] = ACTIONS(1589), + [sym__newline] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_err_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_GT_PIPE] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1589), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1589), + [anon_sym_xor2] = ACTIONS(1589), + [anon_sym_or2] = ACTIONS(1589), + [anon_sym_not_DASHin2] = ACTIONS(1589), + [anon_sym_starts_DASHwith2] = ACTIONS(1589), + [anon_sym_ends_DASHwith2] = ACTIONS(1589), + [anon_sym_EQ_EQ2] = ACTIONS(1589), + [anon_sym_BANG_EQ2] = ACTIONS(1589), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1589), + [anon_sym_GT_EQ2] = ACTIONS(1589), + [anon_sym_EQ_TILDE2] = ACTIONS(1589), + [anon_sym_BANG_TILDE2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1589), + [anon_sym_PLUS_PLUS2] = ACTIONS(1589), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1589), + [anon_sym_SLASH_SLASH2] = ACTIONS(1589), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1589), + [anon_sym_bit_DASHshr2] = ACTIONS(1589), + [anon_sym_bit_DASHand2] = ACTIONS(1589), + [anon_sym_bit_DASHxor2] = ACTIONS(1589), + [anon_sym_bit_DASHor2] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(4698), + [aux_sym__immediate_decimal_token3] = ACTIONS(4698), + [aux_sym__immediate_decimal_token4] = ACTIONS(4700), + [aux_sym__immediate_decimal_token5] = ACTIONS(4702), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1589), + [anon_sym_out_GT_GT] = ACTIONS(1589), + [anon_sym_e_GT_GT] = ACTIONS(1589), + [anon_sym_o_GT_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), + [aux_sym_unquoted_token2] = ACTIONS(1591), + [anon_sym_POUND] = ACTIONS(251), + }, + [1440] = { + [sym_cell_path] = STATE(1745), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1440), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1978), + [anon_sym_DOT_DOT_LT] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [aux_sym__val_number_token4] = ACTIONS(1978), + [aux_sym__val_number_token5] = ACTIONS(1978), + [aux_sym__val_number_token6] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1976), + [anon_sym_0o] = ACTIONS(1976), + [anon_sym_0x] = ACTIONS(1976), + [sym_val_date] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), + [anon_sym_DOT2] = ACTIONS(4666), + [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(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [aux_sym_unquoted_token1] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1978), + }, + [1441] = { + [sym_comment] = STATE(1441), + [ts_builtin_sym_end] = ACTIONS(990), + [anon_sym_EQ] = ACTIONS(988), + [anon_sym_PLUS_EQ] = ACTIONS(990), + [anon_sym_DASH_EQ] = ACTIONS(990), + [anon_sym_STAR_EQ] = ACTIONS(990), + [anon_sym_SLASH_EQ] = ACTIONS(990), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(990), [sym__newline] = ACTIONS(990), [anon_sym_SEMI] = ACTIONS(990), [anon_sym_PIPE] = ACTIONS(990), @@ -217104,42 +216566,37 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_RPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_GT2] = ACTIONS(988), [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_RBRACE] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_in2] = ACTIONS(990), + [anon_sym_STAR2] = ACTIONS(988), + [anon_sym_and2] = ACTIONS(990), + [anon_sym_xor2] = ACTIONS(990), + [anon_sym_or2] = ACTIONS(990), + [anon_sym_not_DASHin2] = ACTIONS(990), + [anon_sym_starts_DASHwith2] = ACTIONS(990), + [anon_sym_ends_DASHwith2] = ACTIONS(990), + [anon_sym_EQ_EQ2] = ACTIONS(990), + [anon_sym_BANG_EQ2] = ACTIONS(990), + [anon_sym_LT2] = ACTIONS(988), + [anon_sym_LT_EQ2] = ACTIONS(990), + [anon_sym_GT_EQ2] = ACTIONS(990), + [anon_sym_EQ_TILDE2] = ACTIONS(990), + [anon_sym_BANG_TILDE2] = ACTIONS(990), + [anon_sym_STAR_STAR2] = ACTIONS(990), + [anon_sym_PLUS_PLUS2] = ACTIONS(988), + [anon_sym_SLASH2] = ACTIONS(988), + [anon_sym_mod2] = ACTIONS(990), + [anon_sym_SLASH_SLASH2] = ACTIONS(990), + [anon_sym_PLUS2] = ACTIONS(988), + [anon_sym_bit_DASHshl2] = ACTIONS(990), + [anon_sym_bit_DASHshr2] = ACTIONS(990), + [anon_sym_bit_DASHand2] = ACTIONS(990), + [anon_sym_bit_DASHxor2] = ACTIONS(990), + [anon_sym_bit_DASHor2] = ACTIONS(990), [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), [anon_sym_DOT2] = ACTIONS(988), [anon_sym_err_GT] = ACTIONS(988), [anon_sym_out_GT] = ACTIONS(988), @@ -217157,159 +216614,1829 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(988), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), }, - [1450] = { - [sym_cell_path] = STATE(1767), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1450), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_err_GT_PIPE] = ACTIONS(1979), - [anon_sym_out_GT_PIPE] = ACTIONS(1979), - [anon_sym_e_GT_PIPE] = ACTIONS(1979), - [anon_sym_o_GT_PIPE] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [anon_sym_null] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1979), - [aux_sym__val_number_decimal_token3] = ACTIONS(1979), - [aux_sym__val_number_decimal_token4] = ACTIONS(1979), - [aux_sym__val_number_token1] = ACTIONS(1979), - [aux_sym__val_number_token2] = ACTIONS(1979), - [aux_sym__val_number_token3] = ACTIONS(1979), - [aux_sym__val_number_token4] = ACTIONS(1979), - [aux_sym__val_number_token5] = ACTIONS(1979), - [aux_sym__val_number_token6] = ACTIONS(1979), - [anon_sym_0b] = ACTIONS(1977), - [anon_sym_0o] = ACTIONS(1977), - [anon_sym_0x] = ACTIONS(1977), - [sym_val_date] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1977), - [anon_sym_out_GT] = ACTIONS(1977), - [anon_sym_e_GT] = ACTIONS(1977), - [anon_sym_o_GT] = ACTIONS(1977), - [anon_sym_err_PLUSout_GT] = ACTIONS(1977), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), - [anon_sym_o_PLUSe_GT] = ACTIONS(1977), - [anon_sym_e_PLUSo_GT] = ACTIONS(1977), - [anon_sym_err_GT_GT] = ACTIONS(1979), - [anon_sym_out_GT_GT] = ACTIONS(1979), - [anon_sym_e_GT_GT] = ACTIONS(1979), - [anon_sym_o_GT_GT] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), - [aux_sym_unquoted_token1] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1979), + [1442] = { + [sym_comment] = STATE(1442), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), + }, + [1443] = { + [sym_comment] = STATE(1443), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4646), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1444] = { + [sym_cell_path] = STATE(1755), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1444), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_LBRACK] = ACTIONS(1873), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), + [anon_sym_DASH_DASH] = ACTIONS(1873), + [anon_sym_DASH2] = ACTIONS(1871), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), + [anon_sym_null] = ACTIONS(1873), + [anon_sym_true] = ACTIONS(1873), + [anon_sym_false] = ACTIONS(1873), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), + [aux_sym__val_number_decimal_token2] = ACTIONS(1873), + [aux_sym__val_number_decimal_token3] = ACTIONS(1873), + [aux_sym__val_number_decimal_token4] = ACTIONS(1873), + [aux_sym__val_number_token1] = ACTIONS(1873), + [aux_sym__val_number_token2] = ACTIONS(1873), + [aux_sym__val_number_token3] = ACTIONS(1873), + [aux_sym__val_number_token4] = ACTIONS(1873), + [aux_sym__val_number_token5] = ACTIONS(1873), + [aux_sym__val_number_token6] = ACTIONS(1873), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), + [sym_val_date] = ACTIONS(1873), + [anon_sym_DQUOTE] = ACTIONS(1873), + [sym__str_single_quotes] = ACTIONS(1873), + [sym__str_back_ticks] = ACTIONS(1873), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), + [aux_sym_unquoted_token1] = ACTIONS(1871), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1873), + }, + [1445] = { + [sym_comment] = STATE(1445), + [ts_builtin_sym_end] = ACTIONS(982), + [anon_sym_EQ] = ACTIONS(980), + [anon_sym_PLUS_EQ] = ACTIONS(982), + [anon_sym_DASH_EQ] = ACTIONS(982), + [anon_sym_STAR_EQ] = ACTIONS(982), + [anon_sym_SLASH_EQ] = ACTIONS(982), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_GT2] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_in2] = ACTIONS(982), + [anon_sym_STAR2] = ACTIONS(980), + [anon_sym_and2] = ACTIONS(982), + [anon_sym_xor2] = ACTIONS(982), + [anon_sym_or2] = ACTIONS(982), + [anon_sym_not_DASHin2] = ACTIONS(982), + [anon_sym_starts_DASHwith2] = ACTIONS(982), + [anon_sym_ends_DASHwith2] = ACTIONS(982), + [anon_sym_EQ_EQ2] = ACTIONS(982), + [anon_sym_BANG_EQ2] = ACTIONS(982), + [anon_sym_LT2] = ACTIONS(980), + [anon_sym_LT_EQ2] = ACTIONS(982), + [anon_sym_GT_EQ2] = ACTIONS(982), + [anon_sym_EQ_TILDE2] = ACTIONS(982), + [anon_sym_BANG_TILDE2] = ACTIONS(982), + [anon_sym_STAR_STAR2] = ACTIONS(982), + [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_SLASH2] = ACTIONS(980), + [anon_sym_mod2] = ACTIONS(982), + [anon_sym_SLASH_SLASH2] = ACTIONS(982), + [anon_sym_PLUS2] = ACTIONS(980), + [anon_sym_bit_DASHshl2] = ACTIONS(982), + [anon_sym_bit_DASHshr2] = ACTIONS(982), + [anon_sym_bit_DASHand2] = ACTIONS(982), + [anon_sym_bit_DASHxor2] = ACTIONS(982), + [anon_sym_bit_DASHor2] = ACTIONS(982), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [anon_sym_POUND] = ACTIONS(251), + }, + [1446] = { + [sym_cell_path] = STATE(1765), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1446), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_LT] = ACTIONS(1887), + [anon_sym_null] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_0b] = ACTIONS(1885), + [anon_sym_0o] = ACTIONS(1885), + [anon_sym_0x] = ACTIONS(1885), + [sym_val_date] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(4666), + [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(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [aux_sym_unquoted_token1] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1887), + }, + [1447] = { + [sym_comment] = STATE(1447), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4714), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1448] = { + [sym_cell_path] = STATE(1769), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1448), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1895), + }, + [1449] = { + [sym_cell_path] = STATE(1773), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1449), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1903), + [aux_sym__val_number_token5] = ACTIONS(1903), + [aux_sym__val_number_token6] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1901), + [anon_sym_0x] = ACTIONS(1901), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [aux_sym_unquoted_token1] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1903), + }, + [1450] = { + [sym_cell_path] = STATE(1775), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1450), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [1451] = { + [sym_cell_path] = STATE(1776), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1451), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_err_GT_PIPE] = ACTIONS(1988), + [anon_sym_out_GT_PIPE] = ACTIONS(1988), + [anon_sym_e_GT_PIPE] = ACTIONS(1988), + [anon_sym_o_GT_PIPE] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1988), + [anon_sym_DOT_DOT_LT] = ACTIONS(1988), + [anon_sym_null] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_0b] = ACTIONS(1986), + [anon_sym_0o] = ACTIONS(1986), + [anon_sym_0x] = ACTIONS(1986), + [sym_val_date] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1988), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1986), + [anon_sym_out_GT] = ACTIONS(1986), + [anon_sym_e_GT] = ACTIONS(1986), + [anon_sym_o_GT] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT] = ACTIONS(1986), + [anon_sym_err_GT_GT] = ACTIONS(1988), + [anon_sym_out_GT_GT] = ACTIONS(1988), + [anon_sym_e_GT_GT] = ACTIONS(1988), + [anon_sym_o_GT_GT] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1988), + [aux_sym_unquoted_token1] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1988), + }, + [1452] = { + [sym_cell_path] = STATE(1777), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1452), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2000), + [anon_sym_DOT_DOT_LT] = ACTIONS(2000), + [anon_sym_null] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_0b] = ACTIONS(1998), + [anon_sym_0o] = ACTIONS(1998), + [anon_sym_0x] = ACTIONS(1998), + [sym_val_date] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1998), + [anon_sym_out_GT] = ACTIONS(1998), + [anon_sym_e_GT] = ACTIONS(1998), + [anon_sym_o_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT] = ACTIONS(1998), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), + [aux_sym_unquoted_token1] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2000), + }, + [1453] = { + [sym_cell_path] = STATE(1779), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1453), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_RPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1831), + [anon_sym_out_GT] = ACTIONS(1831), + [anon_sym_e_GT] = ACTIONS(1831), + [anon_sym_o_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT] = ACTIONS(1831), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1833), + }, + [1454] = { + [sym_cell_path] = STATE(1782), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1454), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [aux_sym__val_number_token4] = ACTIONS(1837), + [aux_sym__val_number_token5] = ACTIONS(1837), + [aux_sym__val_number_token6] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1837), + }, + [1455] = { + [sym_cell_path] = STATE(1783), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1455), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1841), + }, + [1456] = { + [sym_cell_path] = STATE(1785), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1456), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_err_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_GT_PIPE] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_DASH2] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), + [anon_sym_DOT_DOT_LT] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [aux_sym__val_number_token4] = ACTIONS(1845), + [aux_sym__val_number_token5] = ACTIONS(1845), + [aux_sym__val_number_token6] = ACTIONS(1845), + [anon_sym_0b] = ACTIONS(1843), + [anon_sym_0o] = ACTIONS(1843), + [anon_sym_0x] = ACTIONS(1843), + [sym_val_date] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1843), + [anon_sym_out_GT] = ACTIONS(1843), + [anon_sym_e_GT] = ACTIONS(1843), + [anon_sym_o_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT] = ACTIONS(1843), + [anon_sym_err_GT_GT] = ACTIONS(1845), + [anon_sym_out_GT_GT] = ACTIONS(1845), + [anon_sym_e_GT_GT] = ACTIONS(1845), + [anon_sym_o_GT_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), + [aux_sym_unquoted_token1] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1845), + }, + [1457] = { + [sym_cell_path] = STATE(1786), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1457), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [aux_sym__val_number_token4] = ACTIONS(1849), + [aux_sym__val_number_token5] = ACTIONS(1849), + [aux_sym__val_number_token6] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1849), + }, + [1458] = { + [sym_cell_path] = STATE(1787), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1458), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_err_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_GT_PIPE] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), + [anon_sym_DOT_DOT_LT] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0o] = ACTIONS(1851), + [anon_sym_0x] = ACTIONS(1851), + [sym_val_date] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1853), + [anon_sym_out_GT_GT] = ACTIONS(1853), + [anon_sym_e_GT_GT] = ACTIONS(1853), + [anon_sym_o_GT_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), + [aux_sym_unquoted_token1] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1853), + }, + [1459] = { + [sym_cell_path] = STATE(1788), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1459), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DASH2] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [aux_sym__val_number_token4] = ACTIONS(1857), + [aux_sym__val_number_token5] = ACTIONS(1857), + [aux_sym__val_number_token6] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1857), + }, + [1460] = { + [sym_cell_path] = STATE(1789), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1460), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), + [anon_sym_DOT_DOT_LT] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_0b] = ACTIONS(1859), + [anon_sym_0o] = ACTIONS(1859), + [anon_sym_0x] = ACTIONS(1859), + [sym_val_date] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [aux_sym_unquoted_token1] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1861), + }, + [1461] = { + [sym_cell_path] = STATE(1790), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1461), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_LT] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1865), + [aux_sym__val_number_token5] = ACTIONS(1865), + [aux_sym__val_number_token6] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [aux_sym_unquoted_token1] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [1462] = { + [sym_cell_path] = STATE(1791), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1462), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_LT] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [aux_sym__val_number_token4] = ACTIONS(1869), + [aux_sym__val_number_token5] = ACTIONS(1869), + [aux_sym__val_number_token6] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [aux_sym_unquoted_token1] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1869), + }, + [1463] = { + [sym_cell_path] = STATE(1793), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1463), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), + }, + [1464] = { + [sym_cell_path] = STATE(1795), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1464), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), }, - [1451] = { - [sym_comment] = STATE(1451), - [ts_builtin_sym_end] = ACTIONS(986), - [anon_sym_EQ] = ACTIONS(984), - [anon_sym_PLUS_EQ] = ACTIONS(986), - [anon_sym_DASH_EQ] = ACTIONS(986), - [anon_sym_STAR_EQ] = ACTIONS(986), - [anon_sym_SLASH_EQ] = ACTIONS(986), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_GT2] = ACTIONS(984), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_in2] = ACTIONS(986), - [anon_sym_STAR2] = ACTIONS(984), - [anon_sym_and2] = ACTIONS(986), - [anon_sym_xor2] = ACTIONS(986), - [anon_sym_or2] = ACTIONS(986), - [anon_sym_not_DASHin2] = ACTIONS(986), - [anon_sym_starts_DASHwith2] = ACTIONS(986), - [anon_sym_ends_DASHwith2] = ACTIONS(986), - [anon_sym_EQ_EQ2] = ACTIONS(986), - [anon_sym_BANG_EQ2] = ACTIONS(986), - [anon_sym_LT2] = ACTIONS(984), - [anon_sym_LT_EQ2] = ACTIONS(986), - [anon_sym_GT_EQ2] = ACTIONS(986), - [anon_sym_EQ_TILDE2] = ACTIONS(986), - [anon_sym_BANG_TILDE2] = ACTIONS(986), - [anon_sym_STAR_STAR2] = ACTIONS(986), - [anon_sym_PLUS_PLUS2] = ACTIONS(984), - [anon_sym_SLASH2] = ACTIONS(984), - [anon_sym_mod2] = ACTIONS(986), - [anon_sym_SLASH_SLASH2] = ACTIONS(986), - [anon_sym_PLUS2] = ACTIONS(984), - [anon_sym_bit_DASHshl2] = ACTIONS(986), - [anon_sym_bit_DASHshr2] = ACTIONS(986), - [anon_sym_bit_DASHand2] = ACTIONS(986), - [anon_sym_bit_DASHxor2] = ACTIONS(986), - [anon_sym_bit_DASHor2] = ACTIONS(986), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [1465] = { + [sym_cell_path] = STATE(1696), + [sym_path] = STATE(1620), + [sym_comment] = STATE(1465), + [aux_sym_cell_path_repeat1] = STATE(1489), + [sym__newline] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_err_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_GT_PIPE] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2010), + [anon_sym_DOT_DOT_LT] = ACTIONS(2010), + [anon_sym_null] = ACTIONS(2010), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [aux_sym__val_number_decimal_token1] = ACTIONS(2008), + [aux_sym__val_number_decimal_token2] = ACTIONS(2010), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(2010), + [aux_sym__val_number_token2] = ACTIONS(2010), + [aux_sym__val_number_token3] = ACTIONS(2010), + [aux_sym__val_number_token4] = ACTIONS(2010), + [aux_sym__val_number_token5] = ACTIONS(2010), + [aux_sym__val_number_token6] = ACTIONS(2010), + [anon_sym_0b] = ACTIONS(2008), + [anon_sym_0o] = ACTIONS(2008), + [anon_sym_0x] = ACTIONS(2008), + [sym_val_date] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym__str_single_quotes] = ACTIONS(2010), + [sym__str_back_ticks] = ACTIONS(2010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2010), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(2008), + [anon_sym_out_GT] = ACTIONS(2008), + [anon_sym_e_GT] = ACTIONS(2008), + [anon_sym_o_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT] = ACTIONS(2008), + [anon_sym_err_GT_GT] = ACTIONS(2010), + [anon_sym_out_GT_GT] = ACTIONS(2010), + [anon_sym_e_GT_GT] = ACTIONS(2010), + [anon_sym_o_GT_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2010), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2010), + }, + [1466] = { + [sym_comment] = STATE(1466), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), }, - [1452] = { - [sym_comment] = STATE(1452), - [ts_builtin_sym_end] = ACTIONS(982), - [anon_sym_EQ] = ACTIONS(980), - [anon_sym_PLUS_EQ] = ACTIONS(982), - [anon_sym_DASH_EQ] = ACTIONS(982), - [anon_sym_STAR_EQ] = ACTIONS(982), - [anon_sym_SLASH_EQ] = ACTIONS(982), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(982), + [1467] = { + [sym__expr_parenthesized_immediate] = STATE(2468), + [sym__immediate_decimal] = STATE(2473), + [sym_val_variable] = STATE(2468), + [sym_comment] = STATE(1467), + [ts_builtin_sym_end] = ACTIONS(1707), + [sym__newline] = ACTIONS(1707), + [anon_sym_SEMI] = ACTIONS(1707), + [anon_sym_PIPE] = ACTIONS(1707), + [anon_sym_err_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_GT_PIPE] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1707), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1705), + [anon_sym_DASH2] = ACTIONS(1705), + [anon_sym_in2] = ACTIONS(1707), + [anon_sym_STAR2] = ACTIONS(1705), + [anon_sym_and2] = ACTIONS(1707), + [anon_sym_xor2] = ACTIONS(1707), + [anon_sym_or2] = ACTIONS(1707), + [anon_sym_not_DASHin2] = ACTIONS(1707), + [anon_sym_starts_DASHwith2] = ACTIONS(1707), + [anon_sym_ends_DASHwith2] = ACTIONS(1707), + [anon_sym_EQ_EQ2] = ACTIONS(1707), + [anon_sym_BANG_EQ2] = ACTIONS(1707), + [anon_sym_LT2] = ACTIONS(1705), + [anon_sym_LT_EQ2] = ACTIONS(1707), + [anon_sym_GT_EQ2] = ACTIONS(1707), + [anon_sym_EQ_TILDE2] = ACTIONS(1707), + [anon_sym_BANG_TILDE2] = ACTIONS(1707), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1707), + [anon_sym_PLUS_PLUS2] = ACTIONS(1707), + [anon_sym_SLASH2] = ACTIONS(1705), + [anon_sym_mod2] = ACTIONS(1707), + [anon_sym_SLASH_SLASH2] = ACTIONS(1707), + [anon_sym_PLUS2] = ACTIONS(1705), + [anon_sym_bit_DASHshl2] = ACTIONS(1707), + [anon_sym_bit_DASHshr2] = ACTIONS(1707), + [anon_sym_bit_DASHand2] = ACTIONS(1707), + [anon_sym_bit_DASHxor2] = ACTIONS(1707), + [anon_sym_bit_DASHor2] = ACTIONS(1707), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token3] = ACTIONS(4716), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1705), + [anon_sym_out_GT] = ACTIONS(1705), + [anon_sym_e_GT] = ACTIONS(1705), + [anon_sym_o_GT] = ACTIONS(1705), + [anon_sym_err_PLUSout_GT] = ACTIONS(1705), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1705), + [anon_sym_o_PLUSe_GT] = ACTIONS(1705), + [anon_sym_e_PLUSo_GT] = ACTIONS(1705), + [anon_sym_err_GT_GT] = ACTIONS(1707), + [anon_sym_out_GT_GT] = ACTIONS(1707), + [anon_sym_e_GT_GT] = ACTIONS(1707), + [anon_sym_o_GT_GT] = ACTIONS(1707), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1707), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1707), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1707), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1707), + [anon_sym_POUND] = ACTIONS(251), + }, + [1468] = { + [sym_comment] = STATE(1468), [sym__newline] = ACTIONS(982), [anon_sym_SEMI] = ACTIONS(982), [anon_sym_PIPE] = ACTIONS(982), @@ -217321,9 +218448,14 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_RPAREN] = ACTIONS(982), [anon_sym_GT2] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_DASH2] = ACTIONS(982), [anon_sym_in2] = ACTIONS(982), + [anon_sym_if] = ACTIONS(982), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_RBRACE] = ACTIONS(982), + [anon_sym_EQ_GT] = ACTIONS(982), [anon_sym_STAR2] = ACTIONS(980), [anon_sym_and2] = ACTIONS(982), [anon_sym_xor2] = ACTIONS(982), @@ -217339,7 +218471,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_EQ_TILDE2] = ACTIONS(982), [anon_sym_BANG_TILDE2] = ACTIONS(982), [anon_sym_STAR_STAR2] = ACTIONS(982), - [anon_sym_PLUS_PLUS2] = ACTIONS(980), + [anon_sym_PLUS_PLUS2] = ACTIONS(982), [anon_sym_SLASH2] = ACTIONS(980), [anon_sym_mod2] = ACTIONS(982), [anon_sym_SLASH_SLASH2] = ACTIONS(982), @@ -217352,6 +218484,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(980), [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_COLON2] = ACTIONS(982), [anon_sym_DOT2] = ACTIONS(980), [anon_sym_err_GT] = ACTIONS(980), [anon_sym_out_GT] = ACTIONS(980), @@ -217371,84 +218504,291 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), [anon_sym_POUND] = ACTIONS(251), }, - [1453] = { - [sym_comment] = STATE(1453), - [ts_builtin_sym_end] = ACTIONS(954), - [sym__newline] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_err_GT_PIPE] = ACTIONS(954), - [anon_sym_out_GT_PIPE] = ACTIONS(954), - [anon_sym_e_GT_PIPE] = ACTIONS(954), - [anon_sym_o_GT_PIPE] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4699), - [anon_sym_DOT_DOT2] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ] = ACTIONS(952), - [anon_sym_DOT_DOT_LT] = ACTIONS(952), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(954), - [anon_sym_DOT_DOT_LT2] = ACTIONS(954), - [anon_sym_null] = ACTIONS(954), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [sym_val_date] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(952), + [1469] = { + [sym_cell_path] = STATE(1895), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1469), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1978), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_LBRACK] = ACTIONS(1978), + [anon_sym_LPAREN] = ACTIONS(1978), + [anon_sym_DOLLAR] = ACTIONS(1976), + [anon_sym_DASH_DASH] = ACTIONS(1978), + [anon_sym_DASH2] = ACTIONS(1976), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_DOT_DOT] = ACTIONS(1976), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1978), + [anon_sym_DOT_DOT_LT] = ACTIONS(1978), + [anon_sym_null] = ACTIONS(1978), + [anon_sym_true] = ACTIONS(1978), + [anon_sym_false] = ACTIONS(1978), + [aux_sym__val_number_decimal_token1] = ACTIONS(1976), + [aux_sym__val_number_decimal_token2] = ACTIONS(1978), + [aux_sym__val_number_decimal_token3] = ACTIONS(1978), + [aux_sym__val_number_decimal_token4] = ACTIONS(1978), + [aux_sym__val_number_token1] = ACTIONS(1978), + [aux_sym__val_number_token2] = ACTIONS(1978), + [aux_sym__val_number_token3] = ACTIONS(1978), + [aux_sym__val_number_token4] = ACTIONS(1978), + [aux_sym__val_number_token5] = ACTIONS(1978), + [aux_sym__val_number_token6] = ACTIONS(1978), + [anon_sym_0b] = ACTIONS(1976), + [anon_sym_0o] = ACTIONS(1976), + [anon_sym_0x] = ACTIONS(1976), + [sym_val_date] = ACTIONS(1978), + [anon_sym_DQUOTE] = ACTIONS(1978), + [sym__str_single_quotes] = ACTIONS(1978), + [sym__str_back_ticks] = ACTIONS(1978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1978), + [anon_sym_DOT2] = ACTIONS(4718), + [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(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), + [aux_sym_unquoted_token1] = ACTIONS(1976), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1978), + }, + [1470] = { + [sym_comment] = STATE(1470), + [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(1685), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(4720), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(954), }, - [1454] = { - [sym_comment] = STATE(1454), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [1471] = { + [sym_cell_path] = STATE(1825), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1471), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(2030), + [sym__newline] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_err_GT_PIPE] = ACTIONS(2030), + [anon_sym_out_GT_PIPE] = ACTIONS(2030), + [anon_sym_e_GT_PIPE] = ACTIONS(2030), + [anon_sym_o_GT_PIPE] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2030), + [anon_sym_LBRACK] = ACTIONS(2030), + [anon_sym_LPAREN] = ACTIONS(2030), + [anon_sym_DOLLAR] = ACTIONS(2028), + [anon_sym_DASH_DASH] = ACTIONS(2030), + [anon_sym_DASH2] = ACTIONS(2028), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_DOT_DOT] = ACTIONS(2028), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2030), + [anon_sym_DOT_DOT_LT] = ACTIONS(2030), + [anon_sym_null] = ACTIONS(2030), + [anon_sym_true] = ACTIONS(2030), + [anon_sym_false] = ACTIONS(2030), + [aux_sym__val_number_decimal_token1] = ACTIONS(2028), + [aux_sym__val_number_decimal_token2] = ACTIONS(2030), + [aux_sym__val_number_decimal_token3] = ACTIONS(2030), + [aux_sym__val_number_decimal_token4] = ACTIONS(2030), + [aux_sym__val_number_token1] = ACTIONS(2030), + [aux_sym__val_number_token2] = ACTIONS(2030), + [aux_sym__val_number_token3] = ACTIONS(2030), + [aux_sym__val_number_token4] = ACTIONS(2030), + [aux_sym__val_number_token5] = ACTIONS(2030), + [aux_sym__val_number_token6] = ACTIONS(2030), + [anon_sym_0b] = ACTIONS(2028), + [anon_sym_0o] = ACTIONS(2028), + [anon_sym_0x] = ACTIONS(2028), + [sym_val_date] = ACTIONS(2030), + [anon_sym_DQUOTE] = ACTIONS(2030), + [sym__str_single_quotes] = ACTIONS(2030), + [sym__str_back_ticks] = ACTIONS(2030), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2030), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2030), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(2028), + [anon_sym_out_GT] = ACTIONS(2028), + [anon_sym_e_GT] = ACTIONS(2028), + [anon_sym_o_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT] = ACTIONS(2028), + [anon_sym_err_GT_GT] = ACTIONS(2030), + [anon_sym_out_GT_GT] = ACTIONS(2030), + [anon_sym_e_GT_GT] = ACTIONS(2030), + [anon_sym_o_GT_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2030), + [aux_sym_unquoted_token1] = ACTIONS(2028), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2030), + }, + [1472] = { + [sym_comment] = STATE(1472), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_GT2] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_STAR2] = ACTIONS(1731), + [anon_sym_and2] = ACTIONS(1733), + [anon_sym_xor2] = ACTIONS(1733), + [anon_sym_or2] = ACTIONS(1733), + [anon_sym_not_DASHin2] = ACTIONS(1733), + [anon_sym_starts_DASHwith2] = ACTIONS(1733), + [anon_sym_ends_DASHwith2] = ACTIONS(1733), + [anon_sym_EQ_EQ2] = ACTIONS(1733), + [anon_sym_BANG_EQ2] = ACTIONS(1733), + [anon_sym_LT2] = ACTIONS(1731), + [anon_sym_LT_EQ2] = ACTIONS(1733), + [anon_sym_GT_EQ2] = ACTIONS(1733), + [anon_sym_EQ_TILDE2] = ACTIONS(1733), + [anon_sym_BANG_TILDE2] = ACTIONS(1733), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_STAR_STAR2] = ACTIONS(1733), + [anon_sym_PLUS_PLUS2] = ACTIONS(1733), + [anon_sym_SLASH2] = ACTIONS(1731), + [anon_sym_mod2] = ACTIONS(1733), + [anon_sym_SLASH_SLASH2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_bit_DASHshl2] = ACTIONS(1733), + [anon_sym_bit_DASHshr2] = ACTIONS(1733), + [anon_sym_bit_DASHand2] = ACTIONS(1733), + [anon_sym_bit_DASHxor2] = ACTIONS(1733), + [anon_sym_bit_DASHor2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4722), + [aux_sym__immediate_decimal_token2] = ACTIONS(4724), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + }, + [1473] = { + [sym_comment] = STATE(1473), + [ts_builtin_sym_end] = ACTIONS(1000), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_PLUS_EQ] = ACTIONS(4728), + [anon_sym_DASH_EQ] = ACTIONS(4728), + [anon_sym_STAR_EQ] = ACTIONS(4728), + [anon_sym_SLASH_EQ] = ACTIONS(4728), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4728), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -217463,7 +218803,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT2] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_in2] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_STAR2] = ACTIONS(1004), [anon_sym_and2] = ACTIONS(1000), [anon_sym_xor2] = ACTIONS(1000), @@ -217489,10 +218828,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1000), [anon_sym_bit_DASHxor2] = ACTIONS(1000), [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_COLON2] = ACTIONS(4701), + [anon_sym_DOT_DOT2] = ACTIONS(4730), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4732), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4732), [anon_sym_err_GT] = ACTIONS(1004), [anon_sym_out_GT] = ACTIONS(1004), [anon_sym_e_GT] = ACTIONS(1004), @@ -217511,361 +218849,150 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), }, - [1455] = { - [sym__expr_parenthesized_immediate] = STATE(2527), - [sym__immediate_decimal] = STATE(2188), - [sym_val_variable] = STATE(2527), - [sym_comment] = STATE(1455), - [ts_builtin_sym_end] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4703), - [aux_sym__immediate_decimal_token3] = ACTIONS(4703), - [aux_sym__immediate_decimal_token4] = ACTIONS(4705), - [aux_sym__immediate_decimal_token5] = ACTIONS(4707), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - }, - [1456] = { - [sym_cell_path] = STATE(1768), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1456), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_err_GT_PIPE] = ACTIONS(1983), - [anon_sym_out_GT_PIPE] = ACTIONS(1983), - [anon_sym_e_GT_PIPE] = ACTIONS(1983), - [anon_sym_o_GT_PIPE] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), - [anon_sym_DOT_DOT_LT] = ACTIONS(1983), - [anon_sym_null] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1983), - [aux_sym__val_number_token5] = ACTIONS(1983), - [aux_sym__val_number_token6] = ACTIONS(1983), - [anon_sym_0b] = ACTIONS(1981), - [anon_sym_0o] = ACTIONS(1981), - [anon_sym_0x] = ACTIONS(1981), - [sym_val_date] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1981), - [anon_sym_out_GT] = ACTIONS(1981), - [anon_sym_e_GT] = ACTIONS(1981), - [anon_sym_o_GT] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT] = ACTIONS(1981), - [anon_sym_err_GT_GT] = ACTIONS(1983), - [anon_sym_out_GT_GT] = ACTIONS(1983), - [anon_sym_e_GT_GT] = ACTIONS(1983), - [anon_sym_o_GT_GT] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), - [aux_sym_unquoted_token1] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1983), + [1474] = { + [sym_comment] = STATE(1474), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT] = ACTIONS(4734), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1457] = { - [sym_comment] = STATE(1457), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), + [1475] = { + [sym_comment] = STATE(1475), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1458] = { - [sym_cell_path] = STATE(1769), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1458), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_err_GT_PIPE] = ACTIONS(1987), - [anon_sym_out_GT_PIPE] = ACTIONS(1987), - [anon_sym_e_GT_PIPE] = ACTIONS(1987), - [anon_sym_o_GT_PIPE] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), - [anon_sym_DOT_DOT_LT] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1987), - [aux_sym__val_number_token5] = ACTIONS(1987), - [aux_sym__val_number_token6] = ACTIONS(1987), - [anon_sym_0b] = ACTIONS(1985), - [anon_sym_0o] = ACTIONS(1985), - [anon_sym_0x] = ACTIONS(1985), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1985), - [anon_sym_out_GT] = ACTIONS(1985), - [anon_sym_e_GT] = ACTIONS(1985), - [anon_sym_o_GT] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT] = ACTIONS(1985), - [anon_sym_err_GT_GT] = ACTIONS(1987), - [anon_sym_out_GT_GT] = ACTIONS(1987), - [anon_sym_e_GT_GT] = ACTIONS(1987), - [anon_sym_o_GT_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), - [aux_sym_unquoted_token1] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [1459] = { - [sym_cell_path] = STATE(1770), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1459), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_err_GT_PIPE] = ACTIONS(1991), - [anon_sym_out_GT_PIPE] = ACTIONS(1991), - [anon_sym_e_GT_PIPE] = ACTIONS(1991), - [anon_sym_o_GT_PIPE] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_RPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [aux_sym__val_number_token4] = ACTIONS(1991), - [aux_sym__val_number_token5] = ACTIONS(1991), - [aux_sym__val_number_token6] = ACTIONS(1991), - [anon_sym_0b] = ACTIONS(1989), - [anon_sym_0o] = ACTIONS(1989), - [anon_sym_0x] = ACTIONS(1989), - [sym_val_date] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1989), - [anon_sym_out_GT] = ACTIONS(1989), - [anon_sym_e_GT] = ACTIONS(1989), - [anon_sym_o_GT] = ACTIONS(1989), - [anon_sym_err_PLUSout_GT] = ACTIONS(1989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1989), - [anon_sym_o_PLUSe_GT] = ACTIONS(1989), - [anon_sym_e_PLUSo_GT] = ACTIONS(1989), - [anon_sym_err_GT_GT] = ACTIONS(1991), - [anon_sym_out_GT_GT] = ACTIONS(1991), - [anon_sym_e_GT_GT] = ACTIONS(1991), - [anon_sym_o_GT_GT] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(1000), }, - [1460] = { - [sym_cell_path] = STATE(1792), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1460), - [aux_sym_cell_path_repeat1] = STATE(1532), + [1476] = { + [sym_cell_path] = STATE(1923), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1476), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(937), [sym__newline] = ACTIONS(937), [anon_sym_SEMI] = ACTIONS(937), [anon_sym_PIPE] = ACTIONS(937), @@ -217879,12 +219006,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), [anon_sym_LBRACK] = ACTIONS(937), [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_RPAREN] = ACTIONS(937), [anon_sym_DOLLAR] = ACTIONS(935), [anon_sym_DASH_DASH] = ACTIONS(937), [anon_sym_DASH2] = ACTIONS(935), [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_RBRACE] = ACTIONS(937), [anon_sym_DOT_DOT] = ACTIONS(935), [anon_sym_DOT_DOT_EQ] = ACTIONS(937), [anon_sym_DOT_DOT_LT] = ACTIONS(937), @@ -217910,7 +219035,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(937), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4673), + [anon_sym_DOT2] = ACTIONS(4718), [anon_sym_err_GT] = ACTIONS(935), [anon_sym_out_GT] = ACTIONS(935), [anon_sym_e_GT] = ACTIONS(935), @@ -217931,8 +219056,149 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(937), }, - [1461] = { - [sym_comment] = STATE(1461), + [1477] = { + [sym_comment] = STATE(1477), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_GT2] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1751), + [anon_sym_in2] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_STAR2] = ACTIONS(1749), + [anon_sym_and2] = ACTIONS(1751), + [anon_sym_xor2] = ACTIONS(1751), + [anon_sym_or2] = ACTIONS(1751), + [anon_sym_not_DASHin2] = ACTIONS(1751), + [anon_sym_starts_DASHwith2] = ACTIONS(1751), + [anon_sym_ends_DASHwith2] = ACTIONS(1751), + [anon_sym_EQ_EQ2] = ACTIONS(1751), + [anon_sym_BANG_EQ2] = ACTIONS(1751), + [anon_sym_LT2] = ACTIONS(1749), + [anon_sym_LT_EQ2] = ACTIONS(1751), + [anon_sym_GT_EQ2] = ACTIONS(1751), + [anon_sym_EQ_TILDE2] = ACTIONS(1751), + [anon_sym_BANG_TILDE2] = ACTIONS(1751), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_STAR_STAR2] = ACTIONS(1751), + [anon_sym_PLUS_PLUS2] = ACTIONS(1751), + [anon_sym_SLASH2] = ACTIONS(1749), + [anon_sym_mod2] = ACTIONS(1751), + [anon_sym_SLASH_SLASH2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_bit_DASHshl2] = ACTIONS(1751), + [anon_sym_bit_DASHshr2] = ACTIONS(1751), + [anon_sym_bit_DASHand2] = ACTIONS(1751), + [anon_sym_bit_DASHxor2] = ACTIONS(1751), + [anon_sym_bit_DASHor2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4742), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + }, + [1478] = { + [sym__expr_parenthesized_immediate] = STATE(7318), + [sym_comment] = STATE(1478), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1663), + [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_LPAREN2] = ACTIONS(4052), + [anon_sym_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(4746), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4748), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4748), + [sym_filesize_unit] = ACTIONS(4750), + [sym_duration_unit] = ACTIONS(4752), + [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(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), + [aux_sym_unquoted_token2] = ACTIONS(4754), + [anon_sym_POUND] = ACTIONS(251), + }, + [1479] = { + [sym_cell_path] = STATE(1897), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1479), + [aux_sym_cell_path_repeat1] = STATE(1553), [ts_builtin_sym_end] = ACTIONS(1873), [sym__newline] = ACTIONS(1873), [anon_sym_SEMI] = ACTIONS(1873), @@ -217946,22 +219212,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1873), + [anon_sym_DOLLAR] = ACTIONS(1871), [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1865), + [anon_sym_DASH2] = ACTIONS(1871), [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT2] = ACTIONS(4709), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), - [anon_sym_DOT_DOT_LT] = ACTIONS(1865), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4711), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4711), + [anon_sym_DOT_DOT] = ACTIONS(1871), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), + [anon_sym_DOT_DOT_LT] = ACTIONS(1873), [anon_sym_null] = ACTIONS(1873), [anon_sym_true] = ACTIONS(1873), [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1871), [aux_sym__val_number_decimal_token2] = ACTIONS(1873), [aux_sym__val_number_decimal_token3] = ACTIONS(1873), [aux_sym__val_number_decimal_token4] = ACTIONS(1873), @@ -217971,23 +219233,24 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [aux_sym__val_number_token4] = ACTIONS(1873), [aux_sym__val_number_token5] = ACTIONS(1873), [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1865), - [anon_sym_0o] = ACTIONS(1865), - [anon_sym_0x] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1871), + [anon_sym_0o] = ACTIONS(1871), + [anon_sym_0x] = ACTIONS(1871), [sym_val_date] = ACTIONS(1873), [anon_sym_DQUOTE] = ACTIONS(1873), [sym__str_single_quotes] = ACTIONS(1873), [sym__str_back_ticks] = ACTIONS(1873), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(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(4718), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), [anon_sym_err_GT_GT] = ACTIONS(1873), [anon_sym_out_GT_GT] = ACTIONS(1873), [anon_sym_e_GT_GT] = ACTIONS(1873), @@ -217996,1970 +219259,570 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1865), - [aux_sym_unquoted_token2] = ACTIONS(1875), + [aux_sym_unquoted_token1] = ACTIONS(1871), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(1873), - }, - [1462] = { - [sym_cell_path] = STATE(1771), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1462), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1995), - [aux_sym__val_number_token5] = ACTIONS(1995), - [aux_sym__val_number_token6] = ACTIONS(1995), - [anon_sym_0b] = ACTIONS(1993), - [anon_sym_0o] = ACTIONS(1993), - [anon_sym_0x] = ACTIONS(1993), - [sym_val_date] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [aux_sym_unquoted_token1] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), - }, - [1463] = { - [sym_cell_path] = STATE(1772), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1463), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1999), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1999), - [aux_sym__val_number_token5] = ACTIONS(1999), - [aux_sym__val_number_token6] = ACTIONS(1999), - [anon_sym_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [aux_sym_unquoted_token1] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), - }, - [1464] = { - [sym_cell_path] = STATE(1773), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1464), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2003), - [aux_sym__val_number_token5] = ACTIONS(2003), - [aux_sym__val_number_token6] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2001), - [anon_sym_0o] = ACTIONS(2001), - [anon_sym_0x] = ACTIONS(2001), - [sym_val_date] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [aux_sym_unquoted_token1] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2003), - }, - [1465] = { - [sym_comment] = STATE(1465), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1466] = { - [sym_cell_path] = STATE(1774), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1466), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_err_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_GT_PIPE] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), - [anon_sym_DOT_DOT_LT] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(2005), - [anon_sym_out_GT] = ACTIONS(2005), - [anon_sym_e_GT] = ACTIONS(2005), - [anon_sym_o_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT] = ACTIONS(2005), - [anon_sym_err_GT_GT] = ACTIONS(2007), - [anon_sym_out_GT_GT] = ACTIONS(2007), - [anon_sym_e_GT_GT] = ACTIONS(2007), - [anon_sym_o_GT_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), - [aux_sym_unquoted_token1] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2007), - }, - [1467] = { - [sym_comment] = STATE(1467), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1468] = { - [sym_comment] = STATE(1468), - [ts_builtin_sym_end] = ACTIONS(1863), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1861), - [anon_sym_0o] = ACTIONS(1861), - [anon_sym_0x] = ACTIONS(1861), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token1] = ACTIONS(1861), - [aux_sym_unquoted_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [1469] = { - [sym__expr_parenthesized_immediate] = STATE(2494), - [sym__immediate_decimal] = STATE(2192), - [sym_val_variable] = STATE(2494), - [sym_comment] = STATE(1469), - [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1627), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_in2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1627), - [anon_sym_and2] = ACTIONS(1629), - [anon_sym_xor2] = ACTIONS(1629), - [anon_sym_or2] = ACTIONS(1629), - [anon_sym_not_DASHin2] = ACTIONS(1629), - [anon_sym_starts_DASHwith2] = ACTIONS(1629), - [anon_sym_ends_DASHwith2] = ACTIONS(1629), - [anon_sym_EQ_EQ2] = ACTIONS(1629), - [anon_sym_BANG_EQ2] = ACTIONS(1629), - [anon_sym_LT2] = ACTIONS(1627), - [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_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1629), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1627), - [anon_sym_mod2] = ACTIONS(1629), - [anon_sym_SLASH_SLASH2] = ACTIONS(1629), - [anon_sym_PLUS2] = ACTIONS(1627), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4703), - [aux_sym__immediate_decimal_token3] = ACTIONS(4703), - [aux_sym__immediate_decimal_token4] = ACTIONS(4705), - [aux_sym__immediate_decimal_token5] = ACTIONS(4707), - [anon_sym_err_GT] = ACTIONS(1627), - [anon_sym_out_GT] = ACTIONS(1627), - [anon_sym_e_GT] = ACTIONS(1627), - [anon_sym_o_GT] = ACTIONS(1627), - [anon_sym_err_PLUSout_GT] = ACTIONS(1627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), - [anon_sym_o_PLUSe_GT] = ACTIONS(1627), - [anon_sym_e_PLUSo_GT] = ACTIONS(1627), - [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), - [aux_sym_unquoted_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(251), - }, - [1470] = { - [sym_cell_path] = STATE(1775), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1470), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [aux_sym__val_number_token4] = ACTIONS(2011), - [aux_sym__val_number_token5] = ACTIONS(2011), - [aux_sym__val_number_token6] = ACTIONS(2011), - [anon_sym_0b] = ACTIONS(2009), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [aux_sym_unquoted_token1] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2011), - }, - [1471] = { - [sym_comment] = STATE(1471), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4644), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1472] = { - [sym_comment] = STATE(1472), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4713), - [aux_sym__immediate_decimal_token2] = ACTIONS(4715), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1473] = { - [sym_comment] = STATE(1473), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1474] = { - [sym_comment] = STATE(1474), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1589), - [anon_sym_xor2] = ACTIONS(1589), - [anon_sym_or2] = ACTIONS(1589), - [anon_sym_not_DASHin2] = ACTIONS(1589), - [anon_sym_starts_DASHwith2] = ACTIONS(1589), - [anon_sym_ends_DASHwith2] = ACTIONS(1589), - [anon_sym_EQ_EQ2] = ACTIONS(1589), - [anon_sym_BANG_EQ2] = ACTIONS(1589), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1589), - [anon_sym_GT_EQ2] = ACTIONS(1589), - [anon_sym_EQ_TILDE2] = ACTIONS(1589), - [anon_sym_BANG_TILDE2] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR_STAR2] = ACTIONS(1589), - [anon_sym_PLUS_PLUS2] = ACTIONS(1589), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1589), - [anon_sym_SLASH_SLASH2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1589), - [anon_sym_bit_DASHshr2] = ACTIONS(1589), - [anon_sym_bit_DASHand2] = ACTIONS(1589), - [anon_sym_bit_DASHxor2] = ACTIONS(1589), - [anon_sym_bit_DASHor2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4719), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - }, - [1475] = { - [sym_comment] = STATE(1475), - [ts_builtin_sym_end] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4721), - [anon_sym_DOT_DOT2] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ] = ACTIONS(958), - [anon_sym_DOT_DOT_LT] = ACTIONS(958), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(960), - [anon_sym_DOT_DOT_LT2] = ACTIONS(960), - [anon_sym_null] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(958), - [anon_sym_0o] = ACTIONS(958), - [anon_sym_0x] = ACTIONS(958), - [sym_val_date] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(958), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(960), - }, - [1476] = { - [sym_comment] = STATE(1476), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4723), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1477] = { - [sym__expr_parenthesized_immediate] = STATE(2127), - [sym__immediate_decimal] = STATE(2128), - [sym_val_variable] = STATE(2127), - [sym_comment] = STATE(1477), - [ts_builtin_sym_end] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [anon_sym_DOT] = ACTIONS(4725), - [aux_sym__immediate_decimal_token1] = ACTIONS(4663), - [aux_sym__immediate_decimal_token3] = ACTIONS(4663), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(251), - }, - [1478] = { - [sym__expr_parenthesized_immediate] = STATE(2124), - [sym__immediate_decimal] = STATE(2125), - [sym_val_variable] = STATE(2124), - [sym_comment] = STATE(1478), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [anon_sym_DOT] = ACTIONS(4727), - [aux_sym__immediate_decimal_token1] = ACTIONS(4663), - [aux_sym__immediate_decimal_token3] = ACTIONS(4663), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), - [anon_sym_POUND] = ACTIONS(251), - }, - [1479] = { - [sym_cell_path] = STATE(1766), - [sym_path] = STATE(1659), - [sym_comment] = STATE(1479), - [aux_sym_cell_path_repeat1] = STATE(1532), - [sym__newline] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_err_GT_PIPE] = ACTIONS(1975), - [anon_sym_out_GT_PIPE] = ACTIONS(1975), - [anon_sym_e_GT_PIPE] = ACTIONS(1975), - [anon_sym_o_GT_PIPE] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), - [anon_sym_DOT_DOT_LT] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1975), - [aux_sym__val_number_decimal_token3] = ACTIONS(1975), - [aux_sym__val_number_decimal_token4] = ACTIONS(1975), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [aux_sym__val_number_token4] = ACTIONS(1975), - [aux_sym__val_number_token5] = ACTIONS(1975), - [aux_sym__val_number_token6] = ACTIONS(1975), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(4673), - [anon_sym_err_GT] = ACTIONS(1973), - [anon_sym_out_GT] = ACTIONS(1973), - [anon_sym_e_GT] = ACTIONS(1973), - [anon_sym_o_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT] = ACTIONS(1973), - [anon_sym_err_GT_GT] = ACTIONS(1975), - [anon_sym_out_GT_GT] = ACTIONS(1975), - [anon_sym_e_GT_GT] = ACTIONS(1975), - [anon_sym_o_GT_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1975), - [aux_sym_unquoted_token1] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1975), - }, - [1480] = { - [sym__expr_parenthesized_immediate] = STATE(2478), - [sym__immediate_decimal] = STATE(2492), - [sym_val_variable] = STATE(2478), - [sym_comment] = STATE(1480), - [ts_builtin_sym_end] = ACTIONS(1665), - [sym__newline] = ACTIONS(1665), - [anon_sym_SEMI] = ACTIONS(1665), - [anon_sym_PIPE] = ACTIONS(1665), - [anon_sym_err_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_GT_PIPE] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1665), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1657), - [anon_sym_DASH2] = ACTIONS(1657), - [anon_sym_in2] = ACTIONS(1665), - [anon_sym_STAR2] = ACTIONS(1657), - [anon_sym_and2] = ACTIONS(1665), - [anon_sym_xor2] = ACTIONS(1665), - [anon_sym_or2] = ACTIONS(1665), - [anon_sym_not_DASHin2] = ACTIONS(1665), - [anon_sym_starts_DASHwith2] = ACTIONS(1665), - [anon_sym_ends_DASHwith2] = ACTIONS(1665), - [anon_sym_EQ_EQ2] = ACTIONS(1665), - [anon_sym_BANG_EQ2] = ACTIONS(1665), - [anon_sym_LT2] = ACTIONS(1657), - [anon_sym_LT_EQ2] = ACTIONS(1665), - [anon_sym_GT_EQ2] = ACTIONS(1665), - [anon_sym_EQ_TILDE2] = ACTIONS(1665), - [anon_sym_BANG_TILDE2] = ACTIONS(1665), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1665), - [anon_sym_PLUS_PLUS2] = ACTIONS(1665), - [anon_sym_SLASH2] = ACTIONS(1657), - [anon_sym_mod2] = ACTIONS(1665), - [anon_sym_SLASH_SLASH2] = ACTIONS(1665), - [anon_sym_PLUS2] = ACTIONS(1657), - [anon_sym_bit_DASHshl2] = ACTIONS(1665), - [anon_sym_bit_DASHshr2] = ACTIONS(1665), - [anon_sym_bit_DASHand2] = ACTIONS(1665), - [anon_sym_bit_DASHxor2] = ACTIONS(1665), - [anon_sym_bit_DASHor2] = ACTIONS(1665), - [aux_sym__immediate_decimal_token1] = ACTIONS(4729), - [aux_sym__immediate_decimal_token3] = ACTIONS(4729), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [anon_sym_err_GT] = ACTIONS(1657), - [anon_sym_out_GT] = ACTIONS(1657), - [anon_sym_e_GT] = ACTIONS(1657), - [anon_sym_o_GT] = ACTIONS(1657), - [anon_sym_err_PLUSout_GT] = ACTIONS(1657), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1657), - [anon_sym_o_PLUSe_GT] = ACTIONS(1657), - [anon_sym_e_PLUSo_GT] = ACTIONS(1657), - [anon_sym_err_GT_GT] = ACTIONS(1665), - [anon_sym_out_GT_GT] = ACTIONS(1665), - [anon_sym_e_GT_GT] = ACTIONS(1665), - [anon_sym_o_GT_GT] = ACTIONS(1665), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1665), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1665), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1665), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1665), - [anon_sym_POUND] = ACTIONS(251), - }, - [1481] = { - [sym_cell_path] = STATE(1903), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1481), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1995), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_LBRACK] = ACTIONS(1995), - [anon_sym_LPAREN] = ACTIONS(1995), - [anon_sym_DOLLAR] = ACTIONS(1993), - [anon_sym_DASH_DASH] = ACTIONS(1995), - [anon_sym_DASH2] = ACTIONS(1993), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_DOT_DOT] = ACTIONS(1993), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1995), - [anon_sym_DOT_DOT_LT] = ACTIONS(1995), - [anon_sym_null] = ACTIONS(1995), - [anon_sym_true] = ACTIONS(1995), - [anon_sym_false] = ACTIONS(1995), - [aux_sym__val_number_decimal_token1] = ACTIONS(1993), - [aux_sym__val_number_decimal_token2] = ACTIONS(1995), - [aux_sym__val_number_decimal_token3] = ACTIONS(1995), - [aux_sym__val_number_decimal_token4] = ACTIONS(1995), - [aux_sym__val_number_token1] = ACTIONS(1995), - [aux_sym__val_number_token2] = ACTIONS(1995), - [aux_sym__val_number_token3] = ACTIONS(1995), - [aux_sym__val_number_token4] = ACTIONS(1995), - [aux_sym__val_number_token5] = ACTIONS(1995), - [aux_sym__val_number_token6] = ACTIONS(1995), - [anon_sym_0b] = ACTIONS(1993), - [anon_sym_0o] = ACTIONS(1993), - [anon_sym_0x] = ACTIONS(1993), - [sym_val_date] = ACTIONS(1995), - [anon_sym_DQUOTE] = ACTIONS(1995), - [sym__str_single_quotes] = ACTIONS(1995), - [sym__str_back_ticks] = ACTIONS(1995), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1995), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [aux_sym_unquoted_token1] = ACTIONS(1993), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1995), - }, - [1482] = { - [sym_cell_path] = STATE(1928), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1482), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1999), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_LBRACK] = ACTIONS(1999), - [anon_sym_LPAREN] = ACTIONS(1999), - [anon_sym_DOLLAR] = ACTIONS(1997), - [anon_sym_DASH_DASH] = ACTIONS(1999), - [anon_sym_DASH2] = ACTIONS(1997), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_DOT_DOT] = ACTIONS(1997), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1999), - [anon_sym_DOT_DOT_LT] = ACTIONS(1999), - [anon_sym_null] = ACTIONS(1999), - [anon_sym_true] = ACTIONS(1999), - [anon_sym_false] = ACTIONS(1999), - [aux_sym__val_number_decimal_token1] = ACTIONS(1997), - [aux_sym__val_number_decimal_token2] = ACTIONS(1999), - [aux_sym__val_number_decimal_token3] = ACTIONS(1999), - [aux_sym__val_number_decimal_token4] = ACTIONS(1999), - [aux_sym__val_number_token1] = ACTIONS(1999), - [aux_sym__val_number_token2] = ACTIONS(1999), - [aux_sym__val_number_token3] = ACTIONS(1999), - [aux_sym__val_number_token4] = ACTIONS(1999), - [aux_sym__val_number_token5] = ACTIONS(1999), - [aux_sym__val_number_token6] = ACTIONS(1999), - [anon_sym_0b] = ACTIONS(1997), - [anon_sym_0o] = ACTIONS(1997), - [anon_sym_0x] = ACTIONS(1997), - [sym_val_date] = ACTIONS(1999), - [anon_sym_DQUOTE] = ACTIONS(1999), - [sym__str_single_quotes] = ACTIONS(1999), - [sym__str_back_ticks] = ACTIONS(1999), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1999), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [aux_sym_unquoted_token1] = ACTIONS(1997), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1999), - }, - [1483] = { - [sym_comment] = STATE(1483), - [ts_builtin_sym_end] = ACTIONS(986), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT2] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(984), - [anon_sym_DOT_DOT_LT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), - [anon_sym_DOT_DOT_LT2] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1484] = { - [sym_comment] = STATE(1484), - [ts_builtin_sym_end] = ACTIONS(990), - [sym__newline] = ACTIONS(990), - [anon_sym_SEMI] = ACTIONS(990), - [anon_sym_PIPE] = ACTIONS(990), - [anon_sym_err_GT_PIPE] = ACTIONS(990), - [anon_sym_out_GT_PIPE] = ACTIONS(990), - [anon_sym_e_GT_PIPE] = ACTIONS(990), - [anon_sym_o_GT_PIPE] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), - [anon_sym_LBRACK] = ACTIONS(990), - [anon_sym_LPAREN] = ACTIONS(990), - [anon_sym_DOLLAR] = ACTIONS(988), - [anon_sym_DASH_DASH] = ACTIONS(990), - [anon_sym_DASH2] = ACTIONS(988), - [anon_sym_LBRACE] = ACTIONS(990), - [anon_sym_DOT_DOT] = ACTIONS(988), - [anon_sym_DOT_DOT2] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(988), - [anon_sym_DOT_DOT_LT] = ACTIONS(988), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), - [anon_sym_DOT_DOT_LT2] = ACTIONS(990), - [anon_sym_null] = ACTIONS(990), - [anon_sym_true] = ACTIONS(990), - [anon_sym_false] = ACTIONS(990), - [aux_sym__val_number_decimal_token1] = ACTIONS(988), - [aux_sym__val_number_decimal_token2] = ACTIONS(990), - [aux_sym__val_number_decimal_token3] = ACTIONS(990), - [aux_sym__val_number_decimal_token4] = ACTIONS(990), - [aux_sym__val_number_token1] = ACTIONS(990), - [aux_sym__val_number_token2] = ACTIONS(990), - [aux_sym__val_number_token3] = ACTIONS(990), - [aux_sym__val_number_token4] = ACTIONS(990), - [aux_sym__val_number_token5] = ACTIONS(990), - [aux_sym__val_number_token6] = ACTIONS(990), - [anon_sym_0b] = ACTIONS(988), - [anon_sym_0o] = ACTIONS(988), - [anon_sym_0x] = ACTIONS(988), - [sym_val_date] = ACTIONS(990), - [anon_sym_DQUOTE] = ACTIONS(990), - [sym__str_single_quotes] = ACTIONS(990), - [sym__str_back_ticks] = ACTIONS(990), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), - [anon_sym_DOT2] = ACTIONS(988), - [anon_sym_err_GT] = ACTIONS(988), - [anon_sym_out_GT] = ACTIONS(988), - [anon_sym_e_GT] = ACTIONS(988), - [anon_sym_o_GT] = ACTIONS(988), - [anon_sym_err_PLUSout_GT] = ACTIONS(988), - [anon_sym_out_PLUSerr_GT] = ACTIONS(988), - [anon_sym_o_PLUSe_GT] = ACTIONS(988), - [anon_sym_e_PLUSo_GT] = ACTIONS(988), - [anon_sym_err_GT_GT] = ACTIONS(990), - [anon_sym_out_GT_GT] = ACTIONS(990), - [anon_sym_e_GT_GT] = ACTIONS(990), - [anon_sym_o_GT_GT] = ACTIONS(990), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), - [aux_sym_unquoted_token1] = ACTIONS(988), + }, + [1480] = { + [sym_comment] = STATE(1480), + [sym__newline] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_err_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_GT_PIPE] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_RPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DASH2] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_RBRACE] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT2] = ACTIONS(4756), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4758), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4758), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2053), + [aux_sym__val_number_token5] = ACTIONS(2053), + [aux_sym__val_number_token6] = ACTIONS(2053), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), + [anon_sym_err_GT] = ACTIONS(2047), + [anon_sym_out_GT] = ACTIONS(2047), + [anon_sym_e_GT] = ACTIONS(2047), + [anon_sym_o_GT] = ACTIONS(2047), + [anon_sym_err_PLUSout_GT] = ACTIONS(2047), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2047), + [anon_sym_o_PLUSe_GT] = ACTIONS(2047), + [anon_sym_e_PLUSo_GT] = ACTIONS(2047), + [anon_sym_err_GT_GT] = ACTIONS(2053), + [anon_sym_out_GT_GT] = ACTIONS(2053), + [anon_sym_e_GT_GT] = ACTIONS(2053), + [anon_sym_o_GT_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), + [aux_sym_unquoted_token1] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [1481] = { + [sym_comment] = STATE(1481), + [sym__newline] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_err_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_GT_PIPE] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_RPAREN] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_RBRACE] = ACTIONS(2086), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT2] = ACTIONS(4760), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2080), + [anon_sym_DOT_DOT_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4762), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4762), + [anon_sym_null] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [aux_sym__val_number_decimal_token1] = ACTIONS(2080), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2086), + [aux_sym__val_number_decimal_token4] = ACTIONS(2086), + [aux_sym__val_number_token1] = ACTIONS(2086), + [aux_sym__val_number_token2] = ACTIONS(2086), + [aux_sym__val_number_token3] = ACTIONS(2086), + [aux_sym__val_number_token4] = ACTIONS(2086), + [aux_sym__val_number_token5] = ACTIONS(2086), + [aux_sym__val_number_token6] = ACTIONS(2086), + [anon_sym_0b] = ACTIONS(2080), + [anon_sym_0o] = ACTIONS(2080), + [anon_sym_0x] = ACTIONS(2080), + [sym_val_date] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym__str_single_quotes] = ACTIONS(2086), + [sym__str_back_ticks] = ACTIONS(2086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2086), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2086), + [anon_sym_out_GT_GT] = ACTIONS(2086), + [anon_sym_e_GT_GT] = ACTIONS(2086), + [anon_sym_o_GT_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2086), + [aux_sym_unquoted_token1] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2086), + }, + [1482] = { + [sym_comment] = STATE(1482), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_RPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_RBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_DOT_DOT2] = ACTIONS(4764), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4766), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4766), + [anon_sym_null] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2078), + [aux_sym__val_number_decimal_token3] = ACTIONS(2078), + [aux_sym__val_number_decimal_token4] = ACTIONS(2078), + [aux_sym__val_number_token1] = ACTIONS(2078), + [aux_sym__val_number_token2] = ACTIONS(2078), + [aux_sym__val_number_token3] = ACTIONS(2078), + [aux_sym__val_number_token4] = ACTIONS(2078), + [aux_sym__val_number_token5] = ACTIONS(2078), + [aux_sym__val_number_token6] = ACTIONS(2078), + [anon_sym_0b] = ACTIONS(2072), + [anon_sym_0o] = ACTIONS(2072), + [anon_sym_0x] = ACTIONS(2072), + [sym_val_date] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [anon_sym_err_GT] = ACTIONS(2072), + [anon_sym_out_GT] = ACTIONS(2072), + [anon_sym_e_GT] = ACTIONS(2072), + [anon_sym_o_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT] = ACTIONS(2072), + [anon_sym_err_GT_GT] = ACTIONS(2078), + [anon_sym_out_GT_GT] = ACTIONS(2078), + [anon_sym_e_GT_GT] = ACTIONS(2078), + [anon_sym_o_GT_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2078), + [aux_sym_unquoted_token1] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [1483] = { + [sym_comment] = STATE(1483), + [sym__newline] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_PIPE] = ACTIONS(4768), + [anon_sym_err_GT_PIPE] = ACTIONS(4768), + [anon_sym_out_GT_PIPE] = ACTIONS(4768), + [anon_sym_e_GT_PIPE] = ACTIONS(4768), + [anon_sym_o_GT_PIPE] = ACTIONS(4768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_RPAREN] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_DASH2] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_RBRACE] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4770), + [anon_sym_DOT_DOT2] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_DOT_DOT_LT] = ACTIONS(4770), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [aux_sym__val_number_decimal_token1] = ACTIONS(4770), + [aux_sym__val_number_decimal_token2] = ACTIONS(4768), + [aux_sym__val_number_decimal_token3] = ACTIONS(4768), + [aux_sym__val_number_decimal_token4] = ACTIONS(4768), + [aux_sym__val_number_token1] = ACTIONS(4768), + [aux_sym__val_number_token2] = ACTIONS(4768), + [aux_sym__val_number_token3] = ACTIONS(4768), + [aux_sym__val_number_token4] = ACTIONS(4768), + [aux_sym__val_number_token5] = ACTIONS(4768), + [aux_sym__val_number_token6] = ACTIONS(4768), + [anon_sym_0b] = ACTIONS(4770), + [anon_sym_0o] = ACTIONS(4770), + [anon_sym_0x] = ACTIONS(4770), + [sym_val_date] = ACTIONS(4768), + [anon_sym_DQUOTE] = ACTIONS(4768), + [sym__str_single_quotes] = ACTIONS(4768), + [sym__str_back_ticks] = ACTIONS(4768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4768), + [anon_sym_err_GT] = ACTIONS(4770), + [anon_sym_out_GT] = ACTIONS(4770), + [anon_sym_e_GT] = ACTIONS(4770), + [anon_sym_o_GT] = ACTIONS(4770), + [anon_sym_err_PLUSout_GT] = ACTIONS(4770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4770), + [anon_sym_o_PLUSe_GT] = ACTIONS(4770), + [anon_sym_e_PLUSo_GT] = ACTIONS(4770), + [anon_sym_err_GT_GT] = ACTIONS(4768), + [anon_sym_out_GT_GT] = ACTIONS(4768), + [anon_sym_e_GT_GT] = ACTIONS(4768), + [anon_sym_o_GT_GT] = ACTIONS(4768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4768), + [aux_sym_unquoted_token1] = ACTIONS(4770), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4768), + }, + [1484] = { + [sym__expr_parenthesized_immediate] = STATE(2443), + [sym__immediate_decimal] = STATE(2444), + [sym_val_variable] = STATE(2443), + [sym_comment] = STATE(1484), + [ts_builtin_sym_end] = ACTIONS(1557), + [sym__newline] = ACTIONS(1557), + [anon_sym_SEMI] = ACTIONS(1557), + [anon_sym_PIPE] = ACTIONS(1557), + [anon_sym_err_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_GT_PIPE] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1557), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1547), + [anon_sym_DASH2] = ACTIONS(1547), + [anon_sym_in2] = ACTIONS(1557), + [anon_sym_STAR2] = ACTIONS(1547), + [anon_sym_and2] = ACTIONS(1557), + [anon_sym_xor2] = ACTIONS(1557), + [anon_sym_or2] = ACTIONS(1557), + [anon_sym_not_DASHin2] = ACTIONS(1557), + [anon_sym_starts_DASHwith2] = ACTIONS(1557), + [anon_sym_ends_DASHwith2] = ACTIONS(1557), + [anon_sym_EQ_EQ2] = ACTIONS(1557), + [anon_sym_BANG_EQ2] = ACTIONS(1557), + [anon_sym_LT2] = ACTIONS(1547), + [anon_sym_LT_EQ2] = ACTIONS(1557), + [anon_sym_GT_EQ2] = ACTIONS(1557), + [anon_sym_EQ_TILDE2] = ACTIONS(1557), + [anon_sym_BANG_TILDE2] = ACTIONS(1557), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1557), + [anon_sym_PLUS_PLUS2] = ACTIONS(1557), + [anon_sym_SLASH2] = ACTIONS(1547), + [anon_sym_mod2] = ACTIONS(1557), + [anon_sym_SLASH_SLASH2] = ACTIONS(1557), + [anon_sym_PLUS2] = ACTIONS(1547), + [anon_sym_bit_DASHshl2] = ACTIONS(1557), + [anon_sym_bit_DASHshr2] = ACTIONS(1557), + [anon_sym_bit_DASHand2] = ACTIONS(1557), + [anon_sym_bit_DASHxor2] = ACTIONS(1557), + [anon_sym_bit_DASHor2] = ACTIONS(1557), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token3] = ACTIONS(4716), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [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(1557), + [anon_sym_out_GT_GT] = ACTIONS(1557), + [anon_sym_e_GT_GT] = ACTIONS(1557), + [anon_sym_o_GT_GT] = ACTIONS(1557), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1557), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1557), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1557), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1557), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(990), }, [1485] = { - [sym_cell_path] = STATE(1931), - [sym_path] = STATE(1747), + [sym_cell_path] = STATE(1808), + [sym_path] = STATE(1699), [sym_comment] = STATE(1485), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(2003), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_LBRACK] = ACTIONS(2003), - [anon_sym_LPAREN] = ACTIONS(2003), - [anon_sym_DOLLAR] = ACTIONS(2001), - [anon_sym_DASH_DASH] = ACTIONS(2003), - [anon_sym_DASH2] = ACTIONS(2001), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_DOT_DOT] = ACTIONS(2001), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2003), - [anon_sym_DOT_DOT_LT] = ACTIONS(2003), - [anon_sym_null] = ACTIONS(2003), - [anon_sym_true] = ACTIONS(2003), - [anon_sym_false] = ACTIONS(2003), - [aux_sym__val_number_decimal_token1] = ACTIONS(2001), - [aux_sym__val_number_decimal_token2] = ACTIONS(2003), - [aux_sym__val_number_decimal_token3] = ACTIONS(2003), - [aux_sym__val_number_decimal_token4] = ACTIONS(2003), - [aux_sym__val_number_token1] = ACTIONS(2003), - [aux_sym__val_number_token2] = ACTIONS(2003), - [aux_sym__val_number_token3] = ACTIONS(2003), - [aux_sym__val_number_token4] = ACTIONS(2003), - [aux_sym__val_number_token5] = ACTIONS(2003), - [aux_sym__val_number_token6] = ACTIONS(2003), - [anon_sym_0b] = ACTIONS(2001), - [anon_sym_0o] = ACTIONS(2001), - [anon_sym_0x] = ACTIONS(2001), - [sym_val_date] = ACTIONS(2003), - [anon_sym_DQUOTE] = ACTIONS(2003), - [sym__str_single_quotes] = ACTIONS(2003), - [sym__str_back_ticks] = ACTIONS(2003), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2003), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), - [aux_sym_unquoted_token1] = ACTIONS(2001), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2003), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1887), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_LBRACK] = ACTIONS(1887), + [anon_sym_LPAREN] = ACTIONS(1887), + [anon_sym_DOLLAR] = ACTIONS(1885), + [anon_sym_DASH_DASH] = ACTIONS(1887), + [anon_sym_DASH2] = ACTIONS(1885), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_DOT_DOT] = ACTIONS(1885), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1887), + [anon_sym_DOT_DOT_LT] = ACTIONS(1887), + [anon_sym_null] = ACTIONS(1887), + [anon_sym_true] = ACTIONS(1887), + [anon_sym_false] = ACTIONS(1887), + [aux_sym__val_number_decimal_token1] = ACTIONS(1885), + [aux_sym__val_number_decimal_token2] = ACTIONS(1887), + [aux_sym__val_number_decimal_token3] = ACTIONS(1887), + [aux_sym__val_number_decimal_token4] = ACTIONS(1887), + [aux_sym__val_number_token1] = ACTIONS(1887), + [aux_sym__val_number_token2] = ACTIONS(1887), + [aux_sym__val_number_token3] = ACTIONS(1887), + [aux_sym__val_number_token4] = ACTIONS(1887), + [aux_sym__val_number_token5] = ACTIONS(1887), + [aux_sym__val_number_token6] = ACTIONS(1887), + [anon_sym_0b] = ACTIONS(1885), + [anon_sym_0o] = ACTIONS(1885), + [anon_sym_0x] = ACTIONS(1885), + [sym_val_date] = ACTIONS(1887), + [anon_sym_DQUOTE] = ACTIONS(1887), + [sym__str_single_quotes] = ACTIONS(1887), + [sym__str_back_ticks] = ACTIONS(1887), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1887), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(4718), + [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(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [aux_sym_unquoted_token1] = ACTIONS(1885), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1887), }, [1486] = { - [sym_cell_path] = STATE(1939), - [sym_path] = STATE(1747), [sym_comment] = STATE(1486), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(2007), - [sym__newline] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_err_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_GT_PIPE] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), - [anon_sym_LBRACK] = ACTIONS(2007), - [anon_sym_LPAREN] = ACTIONS(2007), - [anon_sym_DOLLAR] = ACTIONS(2005), - [anon_sym_DASH_DASH] = ACTIONS(2007), - [anon_sym_DASH2] = ACTIONS(2005), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_DOT_DOT] = ACTIONS(2005), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2007), - [anon_sym_DOT_DOT_LT] = ACTIONS(2007), - [anon_sym_null] = ACTIONS(2007), - [anon_sym_true] = ACTIONS(2007), - [anon_sym_false] = ACTIONS(2007), - [aux_sym__val_number_decimal_token1] = ACTIONS(2005), - [aux_sym__val_number_decimal_token2] = ACTIONS(2007), - [aux_sym__val_number_decimal_token3] = ACTIONS(2007), - [aux_sym__val_number_decimal_token4] = ACTIONS(2007), - [aux_sym__val_number_token1] = ACTIONS(2007), - [aux_sym__val_number_token2] = ACTIONS(2007), - [aux_sym__val_number_token3] = ACTIONS(2007), - [aux_sym__val_number_token4] = ACTIONS(2007), - [aux_sym__val_number_token5] = ACTIONS(2007), - [aux_sym__val_number_token6] = ACTIONS(2007), - [anon_sym_0b] = ACTIONS(2005), - [anon_sym_0o] = ACTIONS(2005), - [anon_sym_0x] = ACTIONS(2005), - [sym_val_date] = ACTIONS(2007), - [anon_sym_DQUOTE] = ACTIONS(2007), - [sym__str_single_quotes] = ACTIONS(2007), - [sym__str_back_ticks] = ACTIONS(2007), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2007), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(2005), - [anon_sym_out_GT] = ACTIONS(2005), - [anon_sym_e_GT] = ACTIONS(2005), - [anon_sym_o_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT] = ACTIONS(2005), - [anon_sym_err_GT_GT] = ACTIONS(2007), - [anon_sym_out_GT_GT] = ACTIONS(2007), - [anon_sym_e_GT_GT] = ACTIONS(2007), - [anon_sym_o_GT_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), - [aux_sym_unquoted_token1] = ACTIONS(2005), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2007), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4712), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [1487] = { - [sym_cell_path] = STATE(1940), - [sym_path] = STATE(1747), [sym_comment] = STATE(1487), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(2011), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_LBRACK] = ACTIONS(2011), - [anon_sym_LPAREN] = ACTIONS(2011), - [anon_sym_DOLLAR] = ACTIONS(2009), - [anon_sym_DASH_DASH] = ACTIONS(2011), - [anon_sym_DASH2] = ACTIONS(2009), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_DOT_DOT] = ACTIONS(2009), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2011), - [anon_sym_DOT_DOT_LT] = ACTIONS(2011), - [anon_sym_null] = ACTIONS(2011), - [anon_sym_true] = ACTIONS(2011), - [anon_sym_false] = ACTIONS(2011), - [aux_sym__val_number_decimal_token1] = ACTIONS(2009), - [aux_sym__val_number_decimal_token2] = ACTIONS(2011), - [aux_sym__val_number_decimal_token3] = ACTIONS(2011), - [aux_sym__val_number_decimal_token4] = ACTIONS(2011), - [aux_sym__val_number_token1] = ACTIONS(2011), - [aux_sym__val_number_token2] = ACTIONS(2011), - [aux_sym__val_number_token3] = ACTIONS(2011), - [aux_sym__val_number_token4] = ACTIONS(2011), - [aux_sym__val_number_token5] = ACTIONS(2011), - [aux_sym__val_number_token6] = ACTIONS(2011), - [anon_sym_0b] = ACTIONS(2009), - [anon_sym_0o] = ACTIONS(2009), - [anon_sym_0x] = ACTIONS(2009), - [sym_val_date] = ACTIONS(2011), - [anon_sym_DQUOTE] = ACTIONS(2011), - [sym__str_single_quotes] = ACTIONS(2011), - [sym__str_back_ticks] = ACTIONS(2011), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2011), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), - [aux_sym_unquoted_token1] = ACTIONS(2009), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2011), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4772), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, [1488] = { - [sym_cell_path] = STATE(1821), - [sym_path] = STATE(1747), [sym_comment] = STATE(1488), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(2091), - [sym__newline] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_err_GT_PIPE] = ACTIONS(2091), - [anon_sym_out_GT_PIPE] = ACTIONS(2091), - [anon_sym_e_GT_PIPE] = ACTIONS(2091), - [anon_sym_o_GT_PIPE] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2091), - [anon_sym_LBRACK] = ACTIONS(2091), - [anon_sym_LPAREN] = ACTIONS(2091), - [anon_sym_DOLLAR] = ACTIONS(2089), - [anon_sym_DASH_DASH] = ACTIONS(2091), - [anon_sym_DASH2] = ACTIONS(2089), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_DOT_DOT] = ACTIONS(2089), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2091), - [anon_sym_DOT_DOT_LT] = ACTIONS(2091), - [anon_sym_null] = ACTIONS(2091), - [anon_sym_true] = ACTIONS(2091), - [anon_sym_false] = ACTIONS(2091), - [aux_sym__val_number_decimal_token1] = ACTIONS(2089), - [aux_sym__val_number_decimal_token2] = ACTIONS(2091), - [aux_sym__val_number_decimal_token3] = ACTIONS(2091), - [aux_sym__val_number_decimal_token4] = ACTIONS(2091), - [aux_sym__val_number_token1] = ACTIONS(2091), - [aux_sym__val_number_token2] = ACTIONS(2091), - [aux_sym__val_number_token3] = ACTIONS(2091), - [aux_sym__val_number_token4] = ACTIONS(2091), - [aux_sym__val_number_token5] = ACTIONS(2091), - [aux_sym__val_number_token6] = ACTIONS(2091), - [anon_sym_0b] = ACTIONS(2089), - [anon_sym_0o] = ACTIONS(2089), - [anon_sym_0x] = ACTIONS(2089), - [sym_val_date] = ACTIONS(2091), - [anon_sym_DQUOTE] = ACTIONS(2091), - [sym__str_single_quotes] = ACTIONS(2091), - [sym__str_back_ticks] = ACTIONS(2091), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2091), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2091), - [anon_sym_out_GT_GT] = ACTIONS(2091), - [anon_sym_e_GT_GT] = ACTIONS(2091), - [anon_sym_o_GT_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), - [aux_sym_unquoted_token1] = ACTIONS(2089), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2091), - }, - [1489] = { - [sym_comment] = STATE(1489), - [ts_builtin_sym_end] = ACTIONS(982), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_LBRACK] = ACTIONS(982), - [anon_sym_LPAREN] = ACTIONS(982), - [anon_sym_DOLLAR] = ACTIONS(980), - [anon_sym_DASH_DASH] = ACTIONS(982), - [anon_sym_DASH2] = ACTIONS(980), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_DOT_DOT] = ACTIONS(980), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ] = ACTIONS(980), - [anon_sym_DOT_DOT_LT] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_null] = ACTIONS(982), - [anon_sym_true] = ACTIONS(982), - [anon_sym_false] = ACTIONS(982), - [aux_sym__val_number_decimal_token1] = ACTIONS(980), - [aux_sym__val_number_decimal_token2] = ACTIONS(982), - [aux_sym__val_number_decimal_token3] = ACTIONS(982), - [aux_sym__val_number_decimal_token4] = ACTIONS(982), - [aux_sym__val_number_token1] = ACTIONS(982), - [aux_sym__val_number_token2] = ACTIONS(982), - [aux_sym__val_number_token3] = ACTIONS(982), - [aux_sym__val_number_token4] = ACTIONS(982), - [aux_sym__val_number_token5] = ACTIONS(982), - [aux_sym__val_number_token6] = ACTIONS(982), - [anon_sym_0b] = ACTIONS(980), - [anon_sym_0o] = ACTIONS(980), - [anon_sym_0x] = ACTIONS(980), - [sym_val_date] = ACTIONS(982), - [anon_sym_DQUOTE] = ACTIONS(982), - [sym__str_single_quotes] = ACTIONS(982), - [sym__str_back_ticks] = ACTIONS(982), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [aux_sym_unquoted_token1] = ACTIONS(980), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(982), - }, - [1490] = { - [sym_comment] = STATE(1490), - [ts_builtin_sym_end] = ACTIONS(1000), - [anon_sym_EQ] = ACTIONS(4733), - [anon_sym_PLUS_EQ] = ACTIONS(4735), - [anon_sym_DASH_EQ] = ACTIONS(4735), - [anon_sym_STAR_EQ] = ACTIONS(4735), - [anon_sym_SLASH_EQ] = ACTIONS(4735), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4735), + [anon_sym_EQ] = ACTIONS(4774), + [anon_sym_PLUS_EQ] = ACTIONS(4776), + [anon_sym_DASH_EQ] = ACTIONS(4776), + [anon_sym_STAR_EQ] = ACTIONS(4776), + [anon_sym_SLASH_EQ] = ACTIONS(4776), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4776), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -219971,6 +219834,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), [anon_sym_GT2] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_in2] = ACTIONS(1000), @@ -219999,9 +219863,9 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_bit_DASHand2] = ACTIONS(1000), [anon_sym_bit_DASHxor2] = ACTIONS(1000), [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(4737), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4739), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4739), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), [anon_sym_err_GT] = ACTIONS(1004), [anon_sym_out_GT] = ACTIONS(1004), [anon_sym_e_GT] = ACTIONS(1004), @@ -220020,217 +219884,493 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), }, + [1489] = { + [sym_path] = STATE(1620), + [sym_comment] = STATE(1489), + [aux_sym_cell_path_repeat1] = STATE(1496), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_LBRACK] = ACTIONS(950), + [anon_sym_LPAREN] = ACTIONS(950), + [anon_sym_RPAREN] = ACTIONS(950), + [anon_sym_DOLLAR] = ACTIONS(948), + [anon_sym_DASH_DASH] = ACTIONS(950), + [anon_sym_DASH2] = ACTIONS(948), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_RBRACE] = ACTIONS(950), + [anon_sym_DOT_DOT] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ] = ACTIONS(950), + [anon_sym_DOT_DOT_LT] = ACTIONS(950), + [anon_sym_null] = ACTIONS(950), + [anon_sym_true] = ACTIONS(950), + [anon_sym_false] = ACTIONS(950), + [aux_sym__val_number_decimal_token1] = ACTIONS(948), + [aux_sym__val_number_decimal_token2] = ACTIONS(950), + [aux_sym__val_number_decimal_token3] = ACTIONS(950), + [aux_sym__val_number_decimal_token4] = ACTIONS(950), + [aux_sym__val_number_token1] = ACTIONS(950), + [aux_sym__val_number_token2] = ACTIONS(950), + [aux_sym__val_number_token3] = ACTIONS(950), + [aux_sym__val_number_token4] = ACTIONS(950), + [aux_sym__val_number_token5] = ACTIONS(950), + [aux_sym__val_number_token6] = ACTIONS(950), + [anon_sym_0b] = ACTIONS(948), + [anon_sym_0o] = ACTIONS(948), + [anon_sym_0x] = ACTIONS(948), + [sym_val_date] = ACTIONS(950), + [anon_sym_DQUOTE] = ACTIONS(950), + [sym__str_single_quotes] = ACTIONS(950), + [sym__str_back_ticks] = ACTIONS(950), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4666), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), + [aux_sym_unquoted_token1] = ACTIONS(948), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(950), + }, + [1490] = { + [sym_cell_path] = STATE(1841), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1490), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1895), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_LBRACK] = ACTIONS(1895), + [anon_sym_LPAREN] = ACTIONS(1895), + [anon_sym_DOLLAR] = ACTIONS(1893), + [anon_sym_DASH_DASH] = ACTIONS(1895), + [anon_sym_DASH2] = ACTIONS(1893), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_DOT_DOT] = ACTIONS(1893), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1895), + [anon_sym_DOT_DOT_LT] = ACTIONS(1895), + [anon_sym_null] = ACTIONS(1895), + [anon_sym_true] = ACTIONS(1895), + [anon_sym_false] = ACTIONS(1895), + [aux_sym__val_number_decimal_token1] = ACTIONS(1893), + [aux_sym__val_number_decimal_token2] = ACTIONS(1895), + [aux_sym__val_number_decimal_token3] = ACTIONS(1895), + [aux_sym__val_number_decimal_token4] = ACTIONS(1895), + [aux_sym__val_number_token1] = ACTIONS(1895), + [aux_sym__val_number_token2] = ACTIONS(1895), + [aux_sym__val_number_token3] = ACTIONS(1895), + [aux_sym__val_number_token4] = ACTIONS(1895), + [aux_sym__val_number_token5] = ACTIONS(1895), + [aux_sym__val_number_token6] = ACTIONS(1895), + [anon_sym_0b] = ACTIONS(1893), + [anon_sym_0o] = ACTIONS(1893), + [anon_sym_0x] = ACTIONS(1893), + [sym_val_date] = ACTIONS(1895), + [anon_sym_DQUOTE] = ACTIONS(1895), + [sym__str_single_quotes] = ACTIONS(1895), + [sym__str_back_ticks] = ACTIONS(1895), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1895), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [aux_sym_unquoted_token1] = ACTIONS(1893), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1895), + }, [1491] = { - [sym_cell_path] = STATE(1829), - [sym_path] = STATE(1747), [sym_comment] = STATE(1491), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1927), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_LBRACK] = ACTIONS(1927), - [anon_sym_LPAREN] = ACTIONS(1927), - [anon_sym_DOLLAR] = ACTIONS(1925), - [anon_sym_DASH_DASH] = ACTIONS(1927), - [anon_sym_DASH2] = ACTIONS(1925), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_DOT_DOT] = ACTIONS(1925), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1927), - [anon_sym_DOT_DOT_LT] = ACTIONS(1927), - [anon_sym_null] = ACTIONS(1927), - [anon_sym_true] = ACTIONS(1927), - [anon_sym_false] = ACTIONS(1927), - [aux_sym__val_number_decimal_token1] = ACTIONS(1925), - [aux_sym__val_number_decimal_token2] = ACTIONS(1927), - [aux_sym__val_number_decimal_token3] = ACTIONS(1927), - [aux_sym__val_number_decimal_token4] = ACTIONS(1927), - [aux_sym__val_number_token1] = ACTIONS(1927), - [aux_sym__val_number_token2] = ACTIONS(1927), - [aux_sym__val_number_token3] = ACTIONS(1927), - [aux_sym__val_number_token4] = ACTIONS(1927), - [aux_sym__val_number_token5] = ACTIONS(1927), - [aux_sym__val_number_token6] = ACTIONS(1927), - [anon_sym_0b] = ACTIONS(1925), - [anon_sym_0o] = ACTIONS(1925), - [anon_sym_0x] = ACTIONS(1925), - [sym_val_date] = ACTIONS(1927), - [anon_sym_DQUOTE] = ACTIONS(1927), - [sym__str_single_quotes] = ACTIONS(1927), - [sym__str_back_ticks] = ACTIONS(1927), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1927), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), - [aux_sym_unquoted_token1] = ACTIONS(1925), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1927), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT] = ACTIONS(4778), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4780), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1605), + [anon_sym_POUND] = ACTIONS(251), }, [1492] = { - [sym__expr_parenthesized_immediate] = STATE(2474), - [sym__immediate_decimal] = STATE(2476), - [sym_val_variable] = STATE(2474), [sym_comment] = STATE(1492), - [ts_builtin_sym_end] = ACTIONS(1713), - [sym__newline] = ACTIONS(1713), - [anon_sym_SEMI] = ACTIONS(1713), - [anon_sym_PIPE] = ACTIONS(1713), - [anon_sym_err_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_GT_PIPE] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1713), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1711), - [anon_sym_DASH2] = ACTIONS(1711), - [anon_sym_in2] = ACTIONS(1713), - [anon_sym_STAR2] = ACTIONS(1711), - [anon_sym_and2] = ACTIONS(1713), - [anon_sym_xor2] = ACTIONS(1713), - [anon_sym_or2] = ACTIONS(1713), - [anon_sym_not_DASHin2] = ACTIONS(1713), - [anon_sym_starts_DASHwith2] = ACTIONS(1713), - [anon_sym_ends_DASHwith2] = ACTIONS(1713), - [anon_sym_EQ_EQ2] = ACTIONS(1713), - [anon_sym_BANG_EQ2] = ACTIONS(1713), - [anon_sym_LT2] = ACTIONS(1711), - [anon_sym_LT_EQ2] = ACTIONS(1713), - [anon_sym_GT_EQ2] = ACTIONS(1713), - [anon_sym_EQ_TILDE2] = ACTIONS(1713), - [anon_sym_BANG_TILDE2] = ACTIONS(1713), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1713), - [anon_sym_PLUS_PLUS2] = ACTIONS(1713), - [anon_sym_SLASH2] = ACTIONS(1711), - [anon_sym_mod2] = ACTIONS(1713), - [anon_sym_SLASH_SLASH2] = ACTIONS(1713), - [anon_sym_PLUS2] = ACTIONS(1711), - [anon_sym_bit_DASHshl2] = ACTIONS(1713), - [anon_sym_bit_DASHshr2] = ACTIONS(1713), - [anon_sym_bit_DASHand2] = ACTIONS(1713), - [anon_sym_bit_DASHxor2] = ACTIONS(1713), - [anon_sym_bit_DASHor2] = ACTIONS(1713), - [aux_sym__immediate_decimal_token1] = ACTIONS(4729), - [aux_sym__immediate_decimal_token3] = ACTIONS(4729), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [anon_sym_err_GT] = ACTIONS(1711), - [anon_sym_out_GT] = ACTIONS(1711), - [anon_sym_e_GT] = ACTIONS(1711), - [anon_sym_o_GT] = ACTIONS(1711), - [anon_sym_err_PLUSout_GT] = ACTIONS(1711), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1711), - [anon_sym_o_PLUSe_GT] = ACTIONS(1711), - [anon_sym_e_PLUSo_GT] = ACTIONS(1711), - [anon_sym_err_GT_GT] = ACTIONS(1713), - [anon_sym_out_GT_GT] = ACTIONS(1713), - [anon_sym_e_GT_GT] = ACTIONS(1713), - [anon_sym_o_GT_GT] = ACTIONS(1713), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1713), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1713), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1713), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1713), - [anon_sym_POUND] = ACTIONS(251), + [sym__newline] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_err_GT_PIPE] = ACTIONS(2065), + [anon_sym_out_GT_PIPE] = ACTIONS(2065), + [anon_sym_e_GT_PIPE] = ACTIONS(2065), + [anon_sym_o_GT_PIPE] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_RPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_RBRACE] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT_DOT2] = ACTIONS(4782), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2059), + [anon_sym_DOT_DOT_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4784), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4784), + [anon_sym_null] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2059), + [anon_sym_0x] = ACTIONS(2059), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2065), + [anon_sym_err_GT] = ACTIONS(2059), + [anon_sym_out_GT] = ACTIONS(2059), + [anon_sym_e_GT] = ACTIONS(2059), + [anon_sym_o_GT] = ACTIONS(2059), + [anon_sym_err_PLUSout_GT] = ACTIONS(2059), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), + [anon_sym_o_PLUSe_GT] = ACTIONS(2059), + [anon_sym_e_PLUSo_GT] = ACTIONS(2059), + [anon_sym_err_GT_GT] = ACTIONS(2065), + [anon_sym_out_GT_GT] = ACTIONS(2065), + [anon_sym_e_GT_GT] = ACTIONS(2065), + [anon_sym_o_GT_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2065), + [aux_sym_unquoted_token1] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2065), }, [1493] = { - [sym_cell_path] = STATE(1854), - [sym_path] = STATE(1747), [sym_comment] = STATE(1493), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(2095), - [sym__newline] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_err_GT_PIPE] = ACTIONS(2095), - [anon_sym_out_GT_PIPE] = ACTIONS(2095), - [anon_sym_e_GT_PIPE] = ACTIONS(2095), - [anon_sym_o_GT_PIPE] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2095), - [anon_sym_LBRACK] = ACTIONS(2095), - [anon_sym_LPAREN] = ACTIONS(2095), - [anon_sym_DOLLAR] = ACTIONS(2093), - [anon_sym_DASH_DASH] = ACTIONS(2095), - [anon_sym_DASH2] = ACTIONS(2093), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_DOT_DOT] = ACTIONS(2093), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2095), - [anon_sym_DOT_DOT_LT] = ACTIONS(2095), - [anon_sym_null] = ACTIONS(2095), - [anon_sym_true] = ACTIONS(2095), - [anon_sym_false] = ACTIONS(2095), - [aux_sym__val_number_decimal_token1] = ACTIONS(2093), - [aux_sym__val_number_decimal_token2] = ACTIONS(2095), - [aux_sym__val_number_decimal_token3] = ACTIONS(2095), - [aux_sym__val_number_decimal_token4] = ACTIONS(2095), - [aux_sym__val_number_token1] = ACTIONS(2095), - [aux_sym__val_number_token2] = ACTIONS(2095), - [aux_sym__val_number_token3] = ACTIONS(2095), - [aux_sym__val_number_token4] = ACTIONS(2095), - [aux_sym__val_number_token5] = ACTIONS(2095), - [aux_sym__val_number_token6] = ACTIONS(2095), - [anon_sym_0b] = ACTIONS(2093), - [anon_sym_0o] = ACTIONS(2093), - [anon_sym_0x] = ACTIONS(2093), - [sym_val_date] = ACTIONS(2095), - [anon_sym_DQUOTE] = ACTIONS(2095), - [sym__str_single_quotes] = ACTIONS(2095), - [sym__str_back_ticks] = ACTIONS(2095), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2095), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(2093), - [anon_sym_out_GT] = ACTIONS(2093), - [anon_sym_e_GT] = ACTIONS(2093), - [anon_sym_o_GT] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT] = ACTIONS(2093), - [anon_sym_err_GT_GT] = ACTIONS(2095), - [anon_sym_out_GT_GT] = ACTIONS(2095), - [anon_sym_e_GT_GT] = ACTIONS(2095), - [anon_sym_o_GT_GT] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2095), - [aux_sym_unquoted_token1] = ACTIONS(2093), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2095), + [ts_builtin_sym_end] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1597), + [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_LPAREN2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [aux_sym__immediate_decimal_token1] = ACTIONS(4786), + [aux_sym__immediate_decimal_token2] = ACTIONS(4788), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token2] = ACTIONS(1597), + [anon_sym_POUND] = ACTIONS(251), }, [1494] = { - [sym_path] = STATE(1659), [sym_comment] = STATE(1494), - [aux_sym_cell_path_repeat1] = STATE(1494), + [sym__newline] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_err_GT_PIPE] = ACTIONS(2037), + [anon_sym_out_GT_PIPE] = ACTIONS(2037), + [anon_sym_e_GT_PIPE] = ACTIONS(2037), + [anon_sym_o_GT_PIPE] = ACTIONS(2037), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2037), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2037), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2037), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2037), + [anon_sym_null] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2037), + [aux_sym__val_number_decimal_token3] = ACTIONS(2037), + [aux_sym__val_number_decimal_token4] = ACTIONS(2037), + [aux_sym__val_number_token1] = ACTIONS(2037), + [aux_sym__val_number_token2] = ACTIONS(2037), + [aux_sym__val_number_token3] = ACTIONS(2037), + [aux_sym__val_number_token4] = ACTIONS(2037), + [aux_sym__val_number_token5] = ACTIONS(2037), + [aux_sym__val_number_token6] = ACTIONS(2037), + [anon_sym_0b] = ACTIONS(2035), + [anon_sym_0o] = ACTIONS(2035), + [anon_sym_0x] = ACTIONS(2035), + [sym_val_date] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2037), + [anon_sym_err_GT] = ACTIONS(2035), + [anon_sym_out_GT] = ACTIONS(2035), + [anon_sym_e_GT] = ACTIONS(2035), + [anon_sym_o_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT] = ACTIONS(2035), + [anon_sym_err_GT_GT] = ACTIONS(2037), + [anon_sym_out_GT_GT] = ACTIONS(2037), + [anon_sym_e_GT_GT] = ACTIONS(2037), + [anon_sym_o_GT_GT] = ACTIONS(2037), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2037), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2037), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2037), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2037), + [aux_sym_unquoted_token1] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2037), + }, + [1495] = { + [sym_comment] = STATE(1495), + [anon_sym_EQ] = ACTIONS(994), + [anon_sym_PLUS_EQ] = ACTIONS(996), + [anon_sym_DASH_EQ] = ACTIONS(996), + [anon_sym_STAR_EQ] = ACTIONS(996), + [anon_sym_SLASH_EQ] = ACTIONS(996), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_GT2] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_in2] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_STAR2] = ACTIONS(1004), + [anon_sym_and2] = ACTIONS(1000), + [anon_sym_xor2] = ACTIONS(1000), + [anon_sym_or2] = ACTIONS(1000), + [anon_sym_not_DASHin2] = ACTIONS(1000), + [anon_sym_starts_DASHwith2] = ACTIONS(1000), + [anon_sym_ends_DASHwith2] = ACTIONS(1000), + [anon_sym_EQ_EQ2] = ACTIONS(1000), + [anon_sym_BANG_EQ2] = ACTIONS(1000), + [anon_sym_LT2] = ACTIONS(1004), + [anon_sym_LT_EQ2] = ACTIONS(1000), + [anon_sym_GT_EQ2] = ACTIONS(1000), + [anon_sym_EQ_TILDE2] = ACTIONS(1000), + [anon_sym_BANG_TILDE2] = ACTIONS(1000), + [anon_sym_STAR_STAR2] = ACTIONS(1000), + [anon_sym_PLUS_PLUS2] = ACTIONS(1004), + [anon_sym_SLASH2] = ACTIONS(1004), + [anon_sym_mod2] = ACTIONS(1000), + [anon_sym_SLASH_SLASH2] = ACTIONS(1000), + [anon_sym_PLUS2] = ACTIONS(1004), + [anon_sym_bit_DASHshl2] = ACTIONS(1000), + [anon_sym_bit_DASHshr2] = ACTIONS(1000), + [anon_sym_bit_DASHand2] = ACTIONS(1000), + [anon_sym_bit_DASHxor2] = ACTIONS(1000), + [anon_sym_bit_DASHor2] = ACTIONS(1000), + [anon_sym_DOT_DOT2] = ACTIONS(1012), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1496] = { + [sym_path] = STATE(1620), + [sym_comment] = STATE(1496), + [aux_sym_cell_path_repeat1] = STATE(1496), [sym__newline] = ACTIONS(943), [anon_sym_SEMI] = ACTIONS(943), [anon_sym_PIPE] = ACTIONS(943), @@ -220275,7 +220415,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(943), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4741), + [anon_sym_DOT2] = ACTIONS(4790), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -220296,146 +220436,422 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(943), }, - [1495] = { - [sym_cell_path] = STATE(1834), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1495), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1939), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_LBRACK] = ACTIONS(1939), - [anon_sym_LPAREN] = ACTIONS(1939), - [anon_sym_DOLLAR] = ACTIONS(1937), - [anon_sym_DASH_DASH] = ACTIONS(1939), - [anon_sym_DASH2] = ACTIONS(1937), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_DOT_DOT] = ACTIONS(1937), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1939), - [anon_sym_DOT_DOT_LT] = ACTIONS(1939), - [anon_sym_null] = ACTIONS(1939), - [anon_sym_true] = ACTIONS(1939), - [anon_sym_false] = ACTIONS(1939), - [aux_sym__val_number_decimal_token1] = ACTIONS(1937), - [aux_sym__val_number_decimal_token2] = ACTIONS(1939), - [aux_sym__val_number_decimal_token3] = ACTIONS(1939), - [aux_sym__val_number_decimal_token4] = ACTIONS(1939), - [aux_sym__val_number_token1] = ACTIONS(1939), - [aux_sym__val_number_token2] = ACTIONS(1939), - [aux_sym__val_number_token3] = ACTIONS(1939), - [aux_sym__val_number_token4] = ACTIONS(1939), - [aux_sym__val_number_token5] = ACTIONS(1939), - [aux_sym__val_number_token6] = ACTIONS(1939), - [anon_sym_0b] = ACTIONS(1937), - [anon_sym_0o] = ACTIONS(1937), - [anon_sym_0x] = ACTIONS(1937), - [sym_val_date] = ACTIONS(1939), - [anon_sym_DQUOTE] = ACTIONS(1939), - [sym__str_single_quotes] = ACTIONS(1939), - [sym__str_back_ticks] = ACTIONS(1939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [aux_sym_unquoted_token1] = ACTIONS(1937), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1939), - }, - [1496] = { - [sym_comment] = STATE(1496), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2102), - [anon_sym_DOT_DOT_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2102), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2104), - [aux_sym__val_number_token5] = ACTIONS(2104), - [aux_sym__val_number_token6] = ACTIONS(2104), - [anon_sym_0b] = ACTIONS(2102), - [anon_sym_0o] = ACTIONS(2102), - [anon_sym_0x] = ACTIONS(2102), - [sym_val_date] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(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(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), - [aux_sym_unquoted_token1] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, [1497] = { + [sym_cell_path] = STATE(1842), + [sym_path] = STATE(1699), [sym_comment] = STATE(1497), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1903), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_LBRACK] = ACTIONS(1903), + [anon_sym_LPAREN] = ACTIONS(1903), + [anon_sym_DOLLAR] = ACTIONS(1901), + [anon_sym_DASH_DASH] = ACTIONS(1903), + [anon_sym_DASH2] = ACTIONS(1901), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_DOT_DOT] = ACTIONS(1901), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1903), + [anon_sym_DOT_DOT_LT] = ACTIONS(1903), + [anon_sym_null] = ACTIONS(1903), + [anon_sym_true] = ACTIONS(1903), + [anon_sym_false] = ACTIONS(1903), + [aux_sym__val_number_decimal_token1] = ACTIONS(1901), + [aux_sym__val_number_decimal_token2] = ACTIONS(1903), + [aux_sym__val_number_decimal_token3] = ACTIONS(1903), + [aux_sym__val_number_decimal_token4] = ACTIONS(1903), + [aux_sym__val_number_token1] = ACTIONS(1903), + [aux_sym__val_number_token2] = ACTIONS(1903), + [aux_sym__val_number_token3] = ACTIONS(1903), + [aux_sym__val_number_token4] = ACTIONS(1903), + [aux_sym__val_number_token5] = ACTIONS(1903), + [aux_sym__val_number_token6] = ACTIONS(1903), + [anon_sym_0b] = ACTIONS(1901), + [anon_sym_0o] = ACTIONS(1901), + [anon_sym_0x] = ACTIONS(1901), + [sym_val_date] = ACTIONS(1903), + [anon_sym_DQUOTE] = ACTIONS(1903), + [sym__str_single_quotes] = ACTIONS(1903), + [sym__str_back_ticks] = ACTIONS(1903), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1903), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [aux_sym_unquoted_token1] = ACTIONS(1901), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1903), + }, + [1498] = { + [sym_cell_path] = STATE(1851), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1498), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1970), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_LBRACK] = ACTIONS(1970), + [anon_sym_LPAREN] = ACTIONS(1970), + [anon_sym_DOLLAR] = ACTIONS(1968), + [anon_sym_DASH_DASH] = ACTIONS(1970), + [anon_sym_DASH2] = ACTIONS(1968), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_DOT_DOT] = ACTIONS(1968), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1970), + [anon_sym_DOT_DOT_LT] = ACTIONS(1970), + [anon_sym_null] = ACTIONS(1970), + [anon_sym_true] = ACTIONS(1970), + [anon_sym_false] = ACTIONS(1970), + [aux_sym__val_number_decimal_token1] = ACTIONS(1968), + [aux_sym__val_number_decimal_token2] = ACTIONS(1970), + [aux_sym__val_number_decimal_token3] = ACTIONS(1970), + [aux_sym__val_number_decimal_token4] = ACTIONS(1970), + [aux_sym__val_number_token1] = ACTIONS(1970), + [aux_sym__val_number_token2] = ACTIONS(1970), + [aux_sym__val_number_token3] = ACTIONS(1970), + [aux_sym__val_number_token4] = ACTIONS(1970), + [aux_sym__val_number_token5] = ACTIONS(1970), + [aux_sym__val_number_token6] = ACTIONS(1970), + [anon_sym_0b] = ACTIONS(1968), + [anon_sym_0o] = ACTIONS(1968), + [anon_sym_0x] = ACTIONS(1968), + [sym_val_date] = ACTIONS(1970), + [anon_sym_DQUOTE] = ACTIONS(1970), + [sym__str_single_quotes] = ACTIONS(1970), + [sym__str_back_ticks] = ACTIONS(1970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1970), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), + [aux_sym_unquoted_token1] = ACTIONS(1968), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1970), + }, + [1499] = { + [sym_comment] = STATE(1499), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4793), + [aux_sym__immediate_decimal_token2] = ACTIONS(4795), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [1500] = { + [sym_cell_path] = STATE(1855), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1500), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1988), + [sym__newline] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_err_GT_PIPE] = ACTIONS(1988), + [anon_sym_out_GT_PIPE] = ACTIONS(1988), + [anon_sym_e_GT_PIPE] = ACTIONS(1988), + [anon_sym_o_GT_PIPE] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1988), + [anon_sym_LBRACK] = ACTIONS(1988), + [anon_sym_LPAREN] = ACTIONS(1988), + [anon_sym_DOLLAR] = ACTIONS(1986), + [anon_sym_DASH_DASH] = ACTIONS(1988), + [anon_sym_DASH2] = ACTIONS(1986), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_DOT_DOT] = ACTIONS(1986), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1988), + [anon_sym_DOT_DOT_LT] = ACTIONS(1988), + [anon_sym_null] = ACTIONS(1988), + [anon_sym_true] = ACTIONS(1988), + [anon_sym_false] = ACTIONS(1988), + [aux_sym__val_number_decimal_token1] = ACTIONS(1986), + [aux_sym__val_number_decimal_token2] = ACTIONS(1988), + [aux_sym__val_number_decimal_token3] = ACTIONS(1988), + [aux_sym__val_number_decimal_token4] = ACTIONS(1988), + [aux_sym__val_number_token1] = ACTIONS(1988), + [aux_sym__val_number_token2] = ACTIONS(1988), + [aux_sym__val_number_token3] = ACTIONS(1988), + [aux_sym__val_number_token4] = ACTIONS(1988), + [aux_sym__val_number_token5] = ACTIONS(1988), + [aux_sym__val_number_token6] = ACTIONS(1988), + [anon_sym_0b] = ACTIONS(1986), + [anon_sym_0o] = ACTIONS(1986), + [anon_sym_0x] = ACTIONS(1986), + [sym_val_date] = ACTIONS(1988), + [anon_sym_DQUOTE] = ACTIONS(1988), + [sym__str_single_quotes] = ACTIONS(1988), + [sym__str_back_ticks] = ACTIONS(1988), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1988), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1988), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1986), + [anon_sym_out_GT] = ACTIONS(1986), + [anon_sym_e_GT] = ACTIONS(1986), + [anon_sym_o_GT] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT] = ACTIONS(1986), + [anon_sym_err_GT_GT] = ACTIONS(1988), + [anon_sym_out_GT_GT] = ACTIONS(1988), + [anon_sym_e_GT_GT] = ACTIONS(1988), + [anon_sym_o_GT_GT] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1988), + [aux_sym_unquoted_token1] = ACTIONS(1986), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1988), + }, + [1501] = { + [sym__expr_parenthesized_immediate] = STATE(2466), + [sym__immediate_decimal] = STATE(2467), + [sym_val_variable] = STATE(2466), + [sym_comment] = STATE(1501), + [ts_builtin_sym_end] = ACTIONS(1703), + [sym__newline] = ACTIONS(1703), + [anon_sym_SEMI] = ACTIONS(1703), + [anon_sym_PIPE] = ACTIONS(1703), + [anon_sym_err_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_GT_PIPE] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1703), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1701), + [anon_sym_DASH2] = ACTIONS(1701), + [anon_sym_in2] = ACTIONS(1703), + [anon_sym_STAR2] = ACTIONS(1701), + [anon_sym_and2] = ACTIONS(1703), + [anon_sym_xor2] = ACTIONS(1703), + [anon_sym_or2] = ACTIONS(1703), + [anon_sym_not_DASHin2] = ACTIONS(1703), + [anon_sym_starts_DASHwith2] = ACTIONS(1703), + [anon_sym_ends_DASHwith2] = ACTIONS(1703), + [anon_sym_EQ_EQ2] = ACTIONS(1703), + [anon_sym_BANG_EQ2] = ACTIONS(1703), + [anon_sym_LT2] = ACTIONS(1701), + [anon_sym_LT_EQ2] = ACTIONS(1703), + [anon_sym_GT_EQ2] = ACTIONS(1703), + [anon_sym_EQ_TILDE2] = ACTIONS(1703), + [anon_sym_BANG_TILDE2] = ACTIONS(1703), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1703), + [anon_sym_PLUS_PLUS2] = ACTIONS(1703), + [anon_sym_SLASH2] = ACTIONS(1701), + [anon_sym_mod2] = ACTIONS(1703), + [anon_sym_SLASH_SLASH2] = ACTIONS(1703), + [anon_sym_PLUS2] = ACTIONS(1701), + [anon_sym_bit_DASHshl2] = ACTIONS(1703), + [anon_sym_bit_DASHshr2] = ACTIONS(1703), + [anon_sym_bit_DASHand2] = ACTIONS(1703), + [anon_sym_bit_DASHxor2] = ACTIONS(1703), + [anon_sym_bit_DASHor2] = ACTIONS(1703), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token3] = ACTIONS(4716), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1701), + [anon_sym_out_GT] = ACTIONS(1701), + [anon_sym_e_GT] = ACTIONS(1701), + [anon_sym_o_GT] = ACTIONS(1701), + [anon_sym_err_PLUSout_GT] = ACTIONS(1701), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1701), + [anon_sym_o_PLUSe_GT] = ACTIONS(1701), + [anon_sym_e_PLUSo_GT] = ACTIONS(1701), + [anon_sym_err_GT_GT] = ACTIONS(1703), + [anon_sym_out_GT_GT] = ACTIONS(1703), + [anon_sym_e_GT_GT] = ACTIONS(1703), + [anon_sym_o_GT_GT] = ACTIONS(1703), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1703), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1703), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1703), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1703), + [anon_sym_POUND] = ACTIONS(251), + }, + [1502] = { + [sym_comment] = STATE(1502), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4797), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1503] = { + [sym_comment] = STATE(1503), [sym__newline] = ACTIONS(990), [anon_sym_SEMI] = ACTIONS(990), [anon_sym_PIPE] = ACTIONS(990), @@ -220503,8 +220919,767 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), [anon_sym_POUND] = ACTIONS(251), }, - [1498] = { - [sym_comment] = STATE(1498), + [1504] = { + [sym__expr_parenthesized_immediate] = STATE(2477), + [sym__immediate_decimal] = STATE(2480), + [sym_val_variable] = STATE(2477), + [sym_comment] = STATE(1504), + [ts_builtin_sym_end] = ACTIONS(1711), + [sym__newline] = ACTIONS(1711), + [anon_sym_SEMI] = ACTIONS(1711), + [anon_sym_PIPE] = ACTIONS(1711), + [anon_sym_err_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_GT_PIPE] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1711), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1709), + [anon_sym_DASH2] = ACTIONS(1709), + [anon_sym_in2] = ACTIONS(1711), + [anon_sym_STAR2] = ACTIONS(1709), + [anon_sym_and2] = ACTIONS(1711), + [anon_sym_xor2] = ACTIONS(1711), + [anon_sym_or2] = ACTIONS(1711), + [anon_sym_not_DASHin2] = ACTIONS(1711), + [anon_sym_starts_DASHwith2] = ACTIONS(1711), + [anon_sym_ends_DASHwith2] = ACTIONS(1711), + [anon_sym_EQ_EQ2] = ACTIONS(1711), + [anon_sym_BANG_EQ2] = ACTIONS(1711), + [anon_sym_LT2] = ACTIONS(1709), + [anon_sym_LT_EQ2] = ACTIONS(1711), + [anon_sym_GT_EQ2] = ACTIONS(1711), + [anon_sym_EQ_TILDE2] = ACTIONS(1711), + [anon_sym_BANG_TILDE2] = ACTIONS(1711), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1711), + [anon_sym_PLUS_PLUS2] = ACTIONS(1711), + [anon_sym_SLASH2] = ACTIONS(1709), + [anon_sym_mod2] = ACTIONS(1711), + [anon_sym_SLASH_SLASH2] = ACTIONS(1711), + [anon_sym_PLUS2] = ACTIONS(1709), + [anon_sym_bit_DASHshl2] = ACTIONS(1711), + [anon_sym_bit_DASHshr2] = ACTIONS(1711), + [anon_sym_bit_DASHand2] = ACTIONS(1711), + [anon_sym_bit_DASHxor2] = ACTIONS(1711), + [anon_sym_bit_DASHor2] = ACTIONS(1711), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token3] = ACTIONS(4716), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1709), + [anon_sym_out_GT] = ACTIONS(1709), + [anon_sym_e_GT] = ACTIONS(1709), + [anon_sym_o_GT] = ACTIONS(1709), + [anon_sym_err_PLUSout_GT] = ACTIONS(1709), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1709), + [anon_sym_o_PLUSe_GT] = ACTIONS(1709), + [anon_sym_e_PLUSo_GT] = ACTIONS(1709), + [anon_sym_err_GT_GT] = ACTIONS(1711), + [anon_sym_out_GT_GT] = ACTIONS(1711), + [anon_sym_e_GT_GT] = ACTIONS(1711), + [anon_sym_o_GT_GT] = ACTIONS(1711), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1711), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1711), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1711), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1711), + [anon_sym_POUND] = ACTIONS(251), + }, + [1505] = { + [sym__expr_parenthesized_immediate] = STATE(2446), + [sym__immediate_decimal] = STATE(2447), + [sym_val_variable] = STATE(2446), + [sym_comment] = STATE(1505), + [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1529), + [anon_sym_DASH2] = ACTIONS(1529), + [anon_sym_in2] = ACTIONS(1543), + [anon_sym_STAR2] = ACTIONS(1529), + [anon_sym_and2] = ACTIONS(1543), + [anon_sym_xor2] = ACTIONS(1543), + [anon_sym_or2] = ACTIONS(1543), + [anon_sym_not_DASHin2] = ACTIONS(1543), + [anon_sym_starts_DASHwith2] = ACTIONS(1543), + [anon_sym_ends_DASHwith2] = ACTIONS(1543), + [anon_sym_EQ_EQ2] = ACTIONS(1543), + [anon_sym_BANG_EQ2] = ACTIONS(1543), + [anon_sym_LT2] = ACTIONS(1529), + [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_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1543), + [anon_sym_PLUS_PLUS2] = ACTIONS(1543), + [anon_sym_SLASH2] = ACTIONS(1529), + [anon_sym_mod2] = ACTIONS(1543), + [anon_sym_SLASH_SLASH2] = ACTIONS(1543), + [anon_sym_PLUS2] = ACTIONS(1529), + [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), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token3] = ACTIONS(4716), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1529), + [anon_sym_out_GT] = ACTIONS(1529), + [anon_sym_e_GT] = ACTIONS(1529), + [anon_sym_o_GT] = ACTIONS(1529), + [anon_sym_err_PLUSout_GT] = ACTIONS(1529), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1529), + [anon_sym_o_PLUSe_GT] = ACTIONS(1529), + [anon_sym_e_PLUSo_GT] = ACTIONS(1529), + [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(251), + }, + [1506] = { + [sym__expr_parenthesized_immediate] = STATE(2484), + [sym__immediate_decimal] = STATE(2485), + [sym_val_variable] = STATE(2484), + [sym_comment] = STATE(1506), + [ts_builtin_sym_end] = ACTIONS(1589), + [sym__newline] = ACTIONS(1589), + [anon_sym_SEMI] = ACTIONS(1589), + [anon_sym_PIPE] = ACTIONS(1589), + [anon_sym_err_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_GT_PIPE] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), + [anon_sym_DOLLAR] = ACTIONS(4623), + [anon_sym_GT2] = ACTIONS(1587), + [anon_sym_DASH2] = ACTIONS(1587), + [anon_sym_in2] = ACTIONS(1589), + [anon_sym_STAR2] = ACTIONS(1587), + [anon_sym_and2] = ACTIONS(1589), + [anon_sym_xor2] = ACTIONS(1589), + [anon_sym_or2] = ACTIONS(1589), + [anon_sym_not_DASHin2] = ACTIONS(1589), + [anon_sym_starts_DASHwith2] = ACTIONS(1589), + [anon_sym_ends_DASHwith2] = ACTIONS(1589), + [anon_sym_EQ_EQ2] = ACTIONS(1589), + [anon_sym_BANG_EQ2] = ACTIONS(1589), + [anon_sym_LT2] = ACTIONS(1587), + [anon_sym_LT_EQ2] = ACTIONS(1589), + [anon_sym_GT_EQ2] = ACTIONS(1589), + [anon_sym_EQ_TILDE2] = ACTIONS(1589), + [anon_sym_BANG_TILDE2] = ACTIONS(1589), + [anon_sym_LPAREN2] = ACTIONS(4625), + [anon_sym_STAR_STAR2] = ACTIONS(1589), + [anon_sym_PLUS_PLUS2] = ACTIONS(1589), + [anon_sym_SLASH2] = ACTIONS(1587), + [anon_sym_mod2] = ACTIONS(1589), + [anon_sym_SLASH_SLASH2] = ACTIONS(1589), + [anon_sym_PLUS2] = ACTIONS(1587), + [anon_sym_bit_DASHshl2] = ACTIONS(1589), + [anon_sym_bit_DASHshr2] = ACTIONS(1589), + [anon_sym_bit_DASHand2] = ACTIONS(1589), + [anon_sym_bit_DASHxor2] = ACTIONS(1589), + [anon_sym_bit_DASHor2] = ACTIONS(1589), + [aux_sym__immediate_decimal_token1] = ACTIONS(4716), + [aux_sym__immediate_decimal_token3] = ACTIONS(4716), + [aux_sym__immediate_decimal_token4] = ACTIONS(4631), + [aux_sym__immediate_decimal_token5] = ACTIONS(4633), + [anon_sym_err_GT] = ACTIONS(1587), + [anon_sym_out_GT] = ACTIONS(1587), + [anon_sym_e_GT] = ACTIONS(1587), + [anon_sym_o_GT] = ACTIONS(1587), + [anon_sym_err_PLUSout_GT] = ACTIONS(1587), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), + [anon_sym_o_PLUSe_GT] = ACTIONS(1587), + [anon_sym_e_PLUSo_GT] = ACTIONS(1587), + [anon_sym_err_GT_GT] = ACTIONS(1589), + [anon_sym_out_GT_GT] = ACTIONS(1589), + [anon_sym_e_GT_GT] = ACTIONS(1589), + [anon_sym_o_GT_GT] = ACTIONS(1589), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), + [anon_sym_POUND] = ACTIONS(251), + }, + [1507] = { + [sym_cell_path] = STATE(1865), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1507), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(2000), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_LBRACK] = ACTIONS(2000), + [anon_sym_LPAREN] = ACTIONS(2000), + [anon_sym_DOLLAR] = ACTIONS(1998), + [anon_sym_DASH_DASH] = ACTIONS(2000), + [anon_sym_DASH2] = ACTIONS(1998), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_DOT_DOT] = ACTIONS(1998), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2000), + [anon_sym_DOT_DOT_LT] = ACTIONS(2000), + [anon_sym_null] = ACTIONS(2000), + [anon_sym_true] = ACTIONS(2000), + [anon_sym_false] = ACTIONS(2000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1998), + [aux_sym__val_number_decimal_token2] = ACTIONS(2000), + [aux_sym__val_number_decimal_token3] = ACTIONS(2000), + [aux_sym__val_number_decimal_token4] = ACTIONS(2000), + [aux_sym__val_number_token1] = ACTIONS(2000), + [aux_sym__val_number_token2] = ACTIONS(2000), + [aux_sym__val_number_token3] = ACTIONS(2000), + [aux_sym__val_number_token4] = ACTIONS(2000), + [aux_sym__val_number_token5] = ACTIONS(2000), + [aux_sym__val_number_token6] = ACTIONS(2000), + [anon_sym_0b] = ACTIONS(1998), + [anon_sym_0o] = ACTIONS(1998), + [anon_sym_0x] = ACTIONS(1998), + [sym_val_date] = ACTIONS(2000), + [anon_sym_DQUOTE] = ACTIONS(2000), + [sym__str_single_quotes] = ACTIONS(2000), + [sym__str_back_ticks] = ACTIONS(2000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2000), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1998), + [anon_sym_out_GT] = ACTIONS(1998), + [anon_sym_e_GT] = ACTIONS(1998), + [anon_sym_o_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT] = ACTIONS(1998), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), + [aux_sym_unquoted_token1] = ACTIONS(1998), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2000), + }, + [1508] = { + [sym_comment] = STATE(1508), + [ts_builtin_sym_end] = ACTIONS(990), + [sym__newline] = ACTIONS(990), + [anon_sym_SEMI] = ACTIONS(990), + [anon_sym_PIPE] = ACTIONS(990), + [anon_sym_err_GT_PIPE] = ACTIONS(990), + [anon_sym_out_GT_PIPE] = ACTIONS(990), + [anon_sym_e_GT_PIPE] = ACTIONS(990), + [anon_sym_o_GT_PIPE] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(990), + [anon_sym_LBRACK] = ACTIONS(990), + [anon_sym_LPAREN] = ACTIONS(990), + [anon_sym_DOLLAR] = ACTIONS(988), + [anon_sym_DASH_DASH] = ACTIONS(990), + [anon_sym_DASH2] = ACTIONS(988), + [anon_sym_LBRACE] = ACTIONS(990), + [anon_sym_DOT_DOT] = ACTIONS(988), + [anon_sym_DOT_DOT2] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ] = ACTIONS(988), + [anon_sym_DOT_DOT_LT] = ACTIONS(988), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(990), + [anon_sym_DOT_DOT_LT2] = ACTIONS(990), + [anon_sym_null] = ACTIONS(990), + [anon_sym_true] = ACTIONS(990), + [anon_sym_false] = ACTIONS(990), + [aux_sym__val_number_decimal_token1] = ACTIONS(988), + [aux_sym__val_number_decimal_token2] = ACTIONS(990), + [aux_sym__val_number_decimal_token3] = ACTIONS(990), + [aux_sym__val_number_decimal_token4] = ACTIONS(990), + [aux_sym__val_number_token1] = ACTIONS(990), + [aux_sym__val_number_token2] = ACTIONS(990), + [aux_sym__val_number_token3] = ACTIONS(990), + [aux_sym__val_number_token4] = ACTIONS(990), + [aux_sym__val_number_token5] = ACTIONS(990), + [aux_sym__val_number_token6] = ACTIONS(990), + [anon_sym_0b] = ACTIONS(988), + [anon_sym_0o] = ACTIONS(988), + [anon_sym_0x] = ACTIONS(988), + [sym_val_date] = ACTIONS(990), + [anon_sym_DQUOTE] = ACTIONS(990), + [sym__str_single_quotes] = ACTIONS(990), + [sym__str_back_ticks] = ACTIONS(990), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(990), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(990), + [anon_sym_DOT2] = ACTIONS(988), + [anon_sym_err_GT] = ACTIONS(988), + [anon_sym_out_GT] = ACTIONS(988), + [anon_sym_e_GT] = ACTIONS(988), + [anon_sym_o_GT] = ACTIONS(988), + [anon_sym_err_PLUSout_GT] = ACTIONS(988), + [anon_sym_out_PLUSerr_GT] = ACTIONS(988), + [anon_sym_o_PLUSe_GT] = ACTIONS(988), + [anon_sym_e_PLUSo_GT] = ACTIONS(988), + [anon_sym_err_GT_GT] = ACTIONS(990), + [anon_sym_out_GT_GT] = ACTIONS(990), + [anon_sym_e_GT_GT] = ACTIONS(990), + [anon_sym_o_GT_GT] = ACTIONS(990), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(990), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(990), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(990), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(990), + [aux_sym_unquoted_token1] = ACTIONS(988), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(990), + }, + [1509] = { + [sym_comment] = STATE(1509), + [ts_builtin_sym_end] = ACTIONS(982), + [sym__newline] = ACTIONS(982), + [anon_sym_SEMI] = ACTIONS(982), + [anon_sym_PIPE] = ACTIONS(982), + [anon_sym_err_GT_PIPE] = ACTIONS(982), + [anon_sym_out_GT_PIPE] = ACTIONS(982), + [anon_sym_e_GT_PIPE] = ACTIONS(982), + [anon_sym_o_GT_PIPE] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), + [anon_sym_LBRACK] = ACTIONS(982), + [anon_sym_LPAREN] = ACTIONS(982), + [anon_sym_DOLLAR] = ACTIONS(980), + [anon_sym_DASH_DASH] = ACTIONS(982), + [anon_sym_DASH2] = ACTIONS(980), + [anon_sym_LBRACE] = ACTIONS(982), + [anon_sym_DOT_DOT] = ACTIONS(980), + [anon_sym_DOT_DOT2] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ] = ACTIONS(980), + [anon_sym_DOT_DOT_LT] = ACTIONS(980), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), + [anon_sym_DOT_DOT_LT2] = ACTIONS(982), + [anon_sym_null] = ACTIONS(982), + [anon_sym_true] = ACTIONS(982), + [anon_sym_false] = ACTIONS(982), + [aux_sym__val_number_decimal_token1] = ACTIONS(980), + [aux_sym__val_number_decimal_token2] = ACTIONS(982), + [aux_sym__val_number_decimal_token3] = ACTIONS(982), + [aux_sym__val_number_decimal_token4] = ACTIONS(982), + [aux_sym__val_number_token1] = ACTIONS(982), + [aux_sym__val_number_token2] = ACTIONS(982), + [aux_sym__val_number_token3] = ACTIONS(982), + [aux_sym__val_number_token4] = ACTIONS(982), + [aux_sym__val_number_token5] = ACTIONS(982), + [aux_sym__val_number_token6] = ACTIONS(982), + [anon_sym_0b] = ACTIONS(980), + [anon_sym_0o] = ACTIONS(980), + [anon_sym_0x] = ACTIONS(980), + [sym_val_date] = ACTIONS(982), + [anon_sym_DQUOTE] = ACTIONS(982), + [sym__str_single_quotes] = ACTIONS(982), + [sym__str_back_ticks] = ACTIONS(982), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(982), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(982), + [anon_sym_DOT2] = ACTIONS(980), + [anon_sym_err_GT] = ACTIONS(980), + [anon_sym_out_GT] = ACTIONS(980), + [anon_sym_e_GT] = ACTIONS(980), + [anon_sym_o_GT] = ACTIONS(980), + [anon_sym_err_PLUSout_GT] = ACTIONS(980), + [anon_sym_out_PLUSerr_GT] = ACTIONS(980), + [anon_sym_o_PLUSe_GT] = ACTIONS(980), + [anon_sym_e_PLUSo_GT] = ACTIONS(980), + [anon_sym_err_GT_GT] = ACTIONS(982), + [anon_sym_out_GT_GT] = ACTIONS(982), + [anon_sym_e_GT_GT] = ACTIONS(982), + [anon_sym_o_GT_GT] = ACTIONS(982), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), + [aux_sym_unquoted_token1] = ACTIONS(980), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(982), + }, + [1510] = { + [sym_cell_path] = STATE(1866), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1510), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1833), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_LBRACK] = ACTIONS(1833), + [anon_sym_LPAREN] = ACTIONS(1833), + [anon_sym_DOLLAR] = ACTIONS(1831), + [anon_sym_DASH_DASH] = ACTIONS(1833), + [anon_sym_DASH2] = ACTIONS(1831), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_DOT_DOT] = ACTIONS(1831), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1833), + [anon_sym_DOT_DOT_LT] = ACTIONS(1833), + [anon_sym_null] = ACTIONS(1833), + [anon_sym_true] = ACTIONS(1833), + [anon_sym_false] = ACTIONS(1833), + [aux_sym__val_number_decimal_token1] = ACTIONS(1831), + [aux_sym__val_number_decimal_token2] = ACTIONS(1833), + [aux_sym__val_number_decimal_token3] = ACTIONS(1833), + [aux_sym__val_number_decimal_token4] = ACTIONS(1833), + [aux_sym__val_number_token1] = ACTIONS(1833), + [aux_sym__val_number_token2] = ACTIONS(1833), + [aux_sym__val_number_token3] = ACTIONS(1833), + [aux_sym__val_number_token4] = ACTIONS(1833), + [aux_sym__val_number_token5] = ACTIONS(1833), + [aux_sym__val_number_token6] = ACTIONS(1833), + [anon_sym_0b] = ACTIONS(1831), + [anon_sym_0o] = ACTIONS(1831), + [anon_sym_0x] = ACTIONS(1831), + [sym_val_date] = ACTIONS(1833), + [anon_sym_DQUOTE] = ACTIONS(1833), + [sym__str_single_quotes] = ACTIONS(1833), + [sym__str_back_ticks] = ACTIONS(1833), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1833), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1831), + [anon_sym_out_GT] = ACTIONS(1831), + [anon_sym_e_GT] = ACTIONS(1831), + [anon_sym_o_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT] = ACTIONS(1831), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), + [aux_sym_unquoted_token1] = ACTIONS(1831), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1833), + }, + [1511] = { + [sym_cell_path] = STATE(1898), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1511), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1837), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_LBRACK] = ACTIONS(1837), + [anon_sym_LPAREN] = ACTIONS(1837), + [anon_sym_DOLLAR] = ACTIONS(1835), + [anon_sym_DASH_DASH] = ACTIONS(1837), + [anon_sym_DASH2] = ACTIONS(1835), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_DOT_DOT] = ACTIONS(1835), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1837), + [anon_sym_DOT_DOT_LT] = ACTIONS(1837), + [anon_sym_null] = ACTIONS(1837), + [anon_sym_true] = ACTIONS(1837), + [anon_sym_false] = ACTIONS(1837), + [aux_sym__val_number_decimal_token1] = ACTIONS(1835), + [aux_sym__val_number_decimal_token2] = ACTIONS(1837), + [aux_sym__val_number_decimal_token3] = ACTIONS(1837), + [aux_sym__val_number_decimal_token4] = ACTIONS(1837), + [aux_sym__val_number_token1] = ACTIONS(1837), + [aux_sym__val_number_token2] = ACTIONS(1837), + [aux_sym__val_number_token3] = ACTIONS(1837), + [aux_sym__val_number_token4] = ACTIONS(1837), + [aux_sym__val_number_token5] = ACTIONS(1837), + [aux_sym__val_number_token6] = ACTIONS(1837), + [anon_sym_0b] = ACTIONS(1835), + [anon_sym_0o] = ACTIONS(1835), + [anon_sym_0x] = ACTIONS(1835), + [sym_val_date] = ACTIONS(1837), + [anon_sym_DQUOTE] = ACTIONS(1837), + [sym__str_single_quotes] = ACTIONS(1837), + [sym__str_back_ticks] = ACTIONS(1837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1837), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), + [aux_sym_unquoted_token1] = ACTIONS(1835), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1837), + }, + [1512] = { + [sym_cell_path] = STATE(1907), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1512), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1841), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_LBRACK] = ACTIONS(1841), + [anon_sym_LPAREN] = ACTIONS(1841), + [anon_sym_DOLLAR] = ACTIONS(1839), + [anon_sym_DASH_DASH] = ACTIONS(1841), + [anon_sym_DASH2] = ACTIONS(1839), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_DOT_DOT] = ACTIONS(1839), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1841), + [anon_sym_DOT_DOT_LT] = ACTIONS(1841), + [anon_sym_null] = ACTIONS(1841), + [anon_sym_true] = ACTIONS(1841), + [anon_sym_false] = ACTIONS(1841), + [aux_sym__val_number_decimal_token1] = ACTIONS(1839), + [aux_sym__val_number_decimal_token2] = ACTIONS(1841), + [aux_sym__val_number_decimal_token3] = ACTIONS(1841), + [aux_sym__val_number_decimal_token4] = ACTIONS(1841), + [aux_sym__val_number_token1] = ACTIONS(1841), + [aux_sym__val_number_token2] = ACTIONS(1841), + [aux_sym__val_number_token3] = ACTIONS(1841), + [aux_sym__val_number_token4] = ACTIONS(1841), + [aux_sym__val_number_token5] = ACTIONS(1841), + [aux_sym__val_number_token6] = ACTIONS(1841), + [anon_sym_0b] = ACTIONS(1839), + [anon_sym_0o] = ACTIONS(1839), + [anon_sym_0x] = ACTIONS(1839), + [sym_val_date] = ACTIONS(1841), + [anon_sym_DQUOTE] = ACTIONS(1841), + [sym__str_single_quotes] = ACTIONS(1841), + [sym__str_back_ticks] = ACTIONS(1841), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1841), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [aux_sym_unquoted_token1] = ACTIONS(1839), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1841), + }, + [1513] = { + [sym_comment] = STATE(1513), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1514] = { + [sym_cell_path] = STATE(1909), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1514), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1845), + [sym__newline] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_err_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_GT_PIPE] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), + [anon_sym_LBRACK] = ACTIONS(1845), + [anon_sym_LPAREN] = ACTIONS(1845), + [anon_sym_DOLLAR] = ACTIONS(1843), + [anon_sym_DASH_DASH] = ACTIONS(1845), + [anon_sym_DASH2] = ACTIONS(1843), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_DOT_DOT] = ACTIONS(1843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1845), + [anon_sym_DOT_DOT_LT] = ACTIONS(1845), + [anon_sym_null] = ACTIONS(1845), + [anon_sym_true] = ACTIONS(1845), + [anon_sym_false] = ACTIONS(1845), + [aux_sym__val_number_decimal_token1] = ACTIONS(1843), + [aux_sym__val_number_decimal_token2] = ACTIONS(1845), + [aux_sym__val_number_decimal_token3] = ACTIONS(1845), + [aux_sym__val_number_decimal_token4] = ACTIONS(1845), + [aux_sym__val_number_token1] = ACTIONS(1845), + [aux_sym__val_number_token2] = ACTIONS(1845), + [aux_sym__val_number_token3] = ACTIONS(1845), + [aux_sym__val_number_token4] = ACTIONS(1845), + [aux_sym__val_number_token5] = ACTIONS(1845), + [aux_sym__val_number_token6] = ACTIONS(1845), + [anon_sym_0b] = ACTIONS(1843), + [anon_sym_0o] = ACTIONS(1843), + [anon_sym_0x] = ACTIONS(1843), + [sym_val_date] = ACTIONS(1845), + [anon_sym_DQUOTE] = ACTIONS(1845), + [sym__str_single_quotes] = ACTIONS(1845), + [sym__str_back_ticks] = ACTIONS(1845), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1845), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1843), + [anon_sym_out_GT] = ACTIONS(1843), + [anon_sym_e_GT] = ACTIONS(1843), + [anon_sym_o_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT] = ACTIONS(1843), + [anon_sym_err_GT_GT] = ACTIONS(1845), + [anon_sym_out_GT_GT] = ACTIONS(1845), + [anon_sym_e_GT_GT] = ACTIONS(1845), + [anon_sym_o_GT_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), + [aux_sym_unquoted_token1] = ACTIONS(1843), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1845), + }, + [1515] = { + [sym_comment] = STATE(1515), [sym__newline] = ACTIONS(1759), [anon_sym_SEMI] = ACTIONS(1759), [anon_sym_PIPE] = ACTIONS(1759), @@ -220516,43 +221691,42 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), + [anon_sym_LBRACK] = ACTIONS(1759), + [anon_sym_LPAREN] = ACTIONS(1759), [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_GT2] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1759), - [anon_sym_in2] = ACTIONS(1759), + [anon_sym_DOLLAR] = ACTIONS(1757), + [anon_sym_DASH_DASH] = ACTIONS(1759), + [anon_sym_DASH2] = ACTIONS(1757), [anon_sym_LBRACE] = ACTIONS(1759), [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_STAR2] = ACTIONS(1757), - [anon_sym_and2] = ACTIONS(1759), - [anon_sym_xor2] = ACTIONS(1759), - [anon_sym_or2] = ACTIONS(1759), - [anon_sym_not_DASHin2] = ACTIONS(1759), - [anon_sym_starts_DASHwith2] = ACTIONS(1759), - [anon_sym_ends_DASHwith2] = ACTIONS(1759), - [anon_sym_EQ_EQ2] = ACTIONS(1759), - [anon_sym_BANG_EQ2] = ACTIONS(1759), - [anon_sym_LT2] = ACTIONS(1757), - [anon_sym_LT_EQ2] = ACTIONS(1759), - [anon_sym_GT_EQ2] = ACTIONS(1759), - [anon_sym_EQ_TILDE2] = ACTIONS(1759), - [anon_sym_BANG_TILDE2] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_STAR_STAR2] = ACTIONS(1759), - [anon_sym_PLUS_PLUS2] = ACTIONS(1759), - [anon_sym_SLASH2] = ACTIONS(1757), - [anon_sym_mod2] = ACTIONS(1759), - [anon_sym_SLASH_SLASH2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_bit_DASHshl2] = ACTIONS(1759), - [anon_sym_bit_DASHshr2] = ACTIONS(1759), - [anon_sym_bit_DASHand2] = ACTIONS(1759), - [anon_sym_bit_DASHxor2] = ACTIONS(1759), - [anon_sym_bit_DASHor2] = ACTIONS(1759), + [anon_sym_DOT_DOT] = ACTIONS(1757), [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), + [anon_sym_DOT_DOT_LT] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4744), - [aux_sym__immediate_decimal_token2] = ACTIONS(4746), + [anon_sym_null] = ACTIONS(1759), + [anon_sym_true] = ACTIONS(1759), + [anon_sym_false] = ACTIONS(1759), + [aux_sym__val_number_decimal_token1] = ACTIONS(1757), + [aux_sym__val_number_decimal_token2] = ACTIONS(1759), + [aux_sym__val_number_decimal_token3] = ACTIONS(1759), + [aux_sym__val_number_decimal_token4] = ACTIONS(1759), + [aux_sym__val_number_token1] = ACTIONS(1759), + [aux_sym__val_number_token2] = ACTIONS(1759), + [aux_sym__val_number_token3] = ACTIONS(1759), + [aux_sym__val_number_token4] = ACTIONS(1759), + [aux_sym__val_number_token5] = ACTIONS(1759), + [aux_sym__val_number_token6] = ACTIONS(1759), + [anon_sym_0b] = ACTIONS(1757), + [anon_sym_0o] = ACTIONS(1757), + [anon_sym_0x] = ACTIONS(1757), + [sym_val_date] = ACTIONS(1759), + [anon_sym_DQUOTE] = ACTIONS(1759), + [sym__str_single_quotes] = ACTIONS(1759), + [sym__str_back_ticks] = ACTIONS(1759), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), [anon_sym_err_GT] = ACTIONS(1757), [anon_sym_out_GT] = ACTIONS(1757), [anon_sym_e_GT] = ACTIONS(1757), @@ -220569,149 +221743,564 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token2] = ACTIONS(1757), + [aux_sym_unquoted_token1] = ACTIONS(1757), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1759), }, - [1499] = { - [sym_comment] = STATE(1499), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4748), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [1516] = { + [sym_cell_path] = STATE(1879), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1516), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1849), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_LBRACK] = ACTIONS(1849), + [anon_sym_LPAREN] = ACTIONS(1849), + [anon_sym_DOLLAR] = ACTIONS(1847), + [anon_sym_DASH_DASH] = ACTIONS(1849), + [anon_sym_DASH2] = ACTIONS(1847), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_DOT_DOT] = ACTIONS(1847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1849), + [anon_sym_DOT_DOT_LT] = ACTIONS(1849), + [anon_sym_null] = ACTIONS(1849), + [anon_sym_true] = ACTIONS(1849), + [anon_sym_false] = ACTIONS(1849), + [aux_sym__val_number_decimal_token1] = ACTIONS(1847), + [aux_sym__val_number_decimal_token2] = ACTIONS(1849), + [aux_sym__val_number_decimal_token3] = ACTIONS(1849), + [aux_sym__val_number_decimal_token4] = ACTIONS(1849), + [aux_sym__val_number_token1] = ACTIONS(1849), + [aux_sym__val_number_token2] = ACTIONS(1849), + [aux_sym__val_number_token3] = ACTIONS(1849), + [aux_sym__val_number_token4] = ACTIONS(1849), + [aux_sym__val_number_token5] = ACTIONS(1849), + [aux_sym__val_number_token6] = ACTIONS(1849), + [anon_sym_0b] = ACTIONS(1847), + [anon_sym_0o] = ACTIONS(1847), + [anon_sym_0x] = ACTIONS(1847), + [sym_val_date] = ACTIONS(1849), + [anon_sym_DQUOTE] = ACTIONS(1849), + [sym__str_single_quotes] = ACTIONS(1849), + [sym__str_back_ticks] = ACTIONS(1849), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1849), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), + [aux_sym_unquoted_token1] = ACTIONS(1847), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1849), }, - [1500] = { - [sym__expr_parenthesized_immediate] = STATE(2521), - [sym__immediate_decimal] = STATE(2522), - [sym_val_variable] = STATE(2521), - [sym_comment] = STATE(1500), - [ts_builtin_sym_end] = ACTIONS(1643), - [sym__newline] = ACTIONS(1643), - [anon_sym_SEMI] = ACTIONS(1643), - [anon_sym_PIPE] = ACTIONS(1643), - [anon_sym_err_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_GT_PIPE] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1643), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1633), - [anon_sym_DASH2] = ACTIONS(1633), - [anon_sym_in2] = ACTIONS(1643), - [anon_sym_STAR2] = ACTIONS(1633), - [anon_sym_and2] = ACTIONS(1643), - [anon_sym_xor2] = ACTIONS(1643), - [anon_sym_or2] = ACTIONS(1643), - [anon_sym_not_DASHin2] = ACTIONS(1643), - [anon_sym_starts_DASHwith2] = ACTIONS(1643), - [anon_sym_ends_DASHwith2] = ACTIONS(1643), - [anon_sym_EQ_EQ2] = ACTIONS(1643), - [anon_sym_BANG_EQ2] = ACTIONS(1643), - [anon_sym_LT2] = ACTIONS(1633), - [anon_sym_LT_EQ2] = ACTIONS(1643), - [anon_sym_GT_EQ2] = ACTIONS(1643), - [anon_sym_EQ_TILDE2] = ACTIONS(1643), - [anon_sym_BANG_TILDE2] = ACTIONS(1643), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1643), - [anon_sym_PLUS_PLUS2] = ACTIONS(1643), - [anon_sym_SLASH2] = ACTIONS(1633), - [anon_sym_mod2] = ACTIONS(1643), - [anon_sym_SLASH_SLASH2] = ACTIONS(1643), - [anon_sym_PLUS2] = ACTIONS(1633), - [anon_sym_bit_DASHshl2] = ACTIONS(1643), - [anon_sym_bit_DASHshr2] = ACTIONS(1643), - [anon_sym_bit_DASHand2] = ACTIONS(1643), - [anon_sym_bit_DASHxor2] = ACTIONS(1643), - [anon_sym_bit_DASHor2] = ACTIONS(1643), - [aux_sym__immediate_decimal_token1] = ACTIONS(4729), - [aux_sym__immediate_decimal_token3] = ACTIONS(4729), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [anon_sym_err_GT] = ACTIONS(1633), - [anon_sym_out_GT] = ACTIONS(1633), - [anon_sym_e_GT] = ACTIONS(1633), - [anon_sym_o_GT] = ACTIONS(1633), - [anon_sym_err_PLUSout_GT] = ACTIONS(1633), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1633), - [anon_sym_o_PLUSe_GT] = ACTIONS(1633), - [anon_sym_e_PLUSo_GT] = ACTIONS(1633), - [anon_sym_err_GT_GT] = ACTIONS(1643), - [anon_sym_out_GT_GT] = ACTIONS(1643), - [anon_sym_e_GT_GT] = ACTIONS(1643), - [anon_sym_o_GT_GT] = ACTIONS(1643), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1643), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1643), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1643), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1643), + [1517] = { + [sym_cell_path] = STATE(1902), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1517), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1853), + [sym__newline] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_err_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_GT_PIPE] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), + [anon_sym_LBRACK] = ACTIONS(1853), + [anon_sym_LPAREN] = ACTIONS(1853), + [anon_sym_DOLLAR] = ACTIONS(1851), + [anon_sym_DASH_DASH] = ACTIONS(1853), + [anon_sym_DASH2] = ACTIONS(1851), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_DOT_DOT] = ACTIONS(1851), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1853), + [anon_sym_DOT_DOT_LT] = ACTIONS(1853), + [anon_sym_null] = ACTIONS(1853), + [anon_sym_true] = ACTIONS(1853), + [anon_sym_false] = ACTIONS(1853), + [aux_sym__val_number_decimal_token1] = ACTIONS(1851), + [aux_sym__val_number_decimal_token2] = ACTIONS(1853), + [aux_sym__val_number_decimal_token3] = ACTIONS(1853), + [aux_sym__val_number_decimal_token4] = ACTIONS(1853), + [aux_sym__val_number_token1] = ACTIONS(1853), + [aux_sym__val_number_token2] = ACTIONS(1853), + [aux_sym__val_number_token3] = ACTIONS(1853), + [aux_sym__val_number_token4] = ACTIONS(1853), + [aux_sym__val_number_token5] = ACTIONS(1853), + [aux_sym__val_number_token6] = ACTIONS(1853), + [anon_sym_0b] = ACTIONS(1851), + [anon_sym_0o] = ACTIONS(1851), + [anon_sym_0x] = ACTIONS(1851), + [sym_val_date] = ACTIONS(1853), + [anon_sym_DQUOTE] = ACTIONS(1853), + [sym__str_single_quotes] = ACTIONS(1853), + [sym__str_back_ticks] = ACTIONS(1853), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1853), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1853), + [anon_sym_out_GT_GT] = ACTIONS(1853), + [anon_sym_e_GT_GT] = ACTIONS(1853), + [anon_sym_o_GT_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), + [aux_sym_unquoted_token1] = ACTIONS(1851), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1853), + }, + [1518] = { + [sym_comment] = STATE(1518), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1501] = { - [sym_comment] = STATE(1501), + [1519] = { + [sym_cell_path] = STATE(1822), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1519), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1857), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_LBRACK] = ACTIONS(1857), + [anon_sym_LPAREN] = ACTIONS(1857), + [anon_sym_DOLLAR] = ACTIONS(1855), + [anon_sym_DASH_DASH] = ACTIONS(1857), + [anon_sym_DASH2] = ACTIONS(1855), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_DOT_DOT] = ACTIONS(1855), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1857), + [anon_sym_DOT_DOT_LT] = ACTIONS(1857), + [anon_sym_null] = ACTIONS(1857), + [anon_sym_true] = ACTIONS(1857), + [anon_sym_false] = ACTIONS(1857), + [aux_sym__val_number_decimal_token1] = ACTIONS(1855), + [aux_sym__val_number_decimal_token2] = ACTIONS(1857), + [aux_sym__val_number_decimal_token3] = ACTIONS(1857), + [aux_sym__val_number_decimal_token4] = ACTIONS(1857), + [aux_sym__val_number_token1] = ACTIONS(1857), + [aux_sym__val_number_token2] = ACTIONS(1857), + [aux_sym__val_number_token3] = ACTIONS(1857), + [aux_sym__val_number_token4] = ACTIONS(1857), + [aux_sym__val_number_token5] = ACTIONS(1857), + [aux_sym__val_number_token6] = ACTIONS(1857), + [anon_sym_0b] = ACTIONS(1855), + [anon_sym_0o] = ACTIONS(1855), + [anon_sym_0x] = ACTIONS(1855), + [sym_val_date] = ACTIONS(1857), + [anon_sym_DQUOTE] = ACTIONS(1857), + [sym__str_single_quotes] = ACTIONS(1857), + [sym__str_back_ticks] = ACTIONS(1857), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1857), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1857), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), + [aux_sym_unquoted_token1] = ACTIONS(1855), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1857), + }, + [1520] = { + [sym_comment] = STATE(1520), + [sym__newline] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_err_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_GT_PIPE] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_RPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), + [anon_sym_DOT_DOT_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [aux_sym__val_number_token4] = ACTIONS(2045), + [aux_sym__val_number_token5] = ACTIONS(2045), + [aux_sym__val_number_token6] = ACTIONS(2045), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2045), + [anon_sym_out_GT_GT] = ACTIONS(2045), + [anon_sym_e_GT_GT] = ACTIONS(2045), + [anon_sym_o_GT_GT] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), + [aux_sym_unquoted_token1] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2045), + }, + [1521] = { + [sym_cell_path] = STATE(1891), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1521), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1861), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_LBRACK] = ACTIONS(1861), + [anon_sym_LPAREN] = ACTIONS(1861), + [anon_sym_DOLLAR] = ACTIONS(1859), + [anon_sym_DASH_DASH] = ACTIONS(1861), + [anon_sym_DASH2] = ACTIONS(1859), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_DOT_DOT] = ACTIONS(1859), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), + [anon_sym_DOT_DOT_LT] = ACTIONS(1861), + [anon_sym_null] = ACTIONS(1861), + [anon_sym_true] = ACTIONS(1861), + [anon_sym_false] = ACTIONS(1861), + [aux_sym__val_number_decimal_token1] = ACTIONS(1859), + [aux_sym__val_number_decimal_token2] = ACTIONS(1861), + [aux_sym__val_number_decimal_token3] = ACTIONS(1861), + [aux_sym__val_number_decimal_token4] = ACTIONS(1861), + [aux_sym__val_number_token1] = ACTIONS(1861), + [aux_sym__val_number_token2] = ACTIONS(1861), + [aux_sym__val_number_token3] = ACTIONS(1861), + [aux_sym__val_number_token4] = ACTIONS(1861), + [aux_sym__val_number_token5] = ACTIONS(1861), + [aux_sym__val_number_token6] = ACTIONS(1861), + [anon_sym_0b] = ACTIONS(1859), + [anon_sym_0o] = ACTIONS(1859), + [anon_sym_0x] = ACTIONS(1859), + [sym_val_date] = ACTIONS(1861), + [anon_sym_DQUOTE] = ACTIONS(1861), + [sym__str_single_quotes] = ACTIONS(1861), + [sym__str_back_ticks] = ACTIONS(1861), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1861), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), + [aux_sym_unquoted_token1] = ACTIONS(1859), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1861), + }, + [1522] = { + [sym_comment] = STATE(1522), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1523] = { + [sym_comment] = STATE(1523), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1817), + [anon_sym_DOT_DOT_LT] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_null] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1817), + [anon_sym_0o] = ACTIONS(1817), + [anon_sym_0x] = ACTIONS(1817), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [1524] = { + [sym_comment] = STATE(1524), [sym__newline] = ACTIONS(1020), [anon_sym_SEMI] = ACTIONS(1020), [anon_sym_PIPE] = ACTIONS(1020), @@ -220770,1058 +222359,23 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_err_GT_GT] = ACTIONS(1020), [anon_sym_out_GT_GT] = ACTIONS(1020), [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [aux_sym_unquoted_token1] = ACTIONS(1018), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), - }, - [1502] = { - [sym_comment] = STATE(1502), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1717), - [anon_sym_0x] = ACTIONS(1717), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1719), - }, - [1503] = { - [sym_comment] = STATE(1503), - [anon_sym_EQ] = ACTIONS(994), - [anon_sym_PLUS_EQ] = ACTIONS(996), - [anon_sym_DASH_EQ] = ACTIONS(996), - [anon_sym_STAR_EQ] = ACTIONS(996), - [anon_sym_SLASH_EQ] = ACTIONS(996), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(996), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - }, - [1504] = { - [sym_comment] = STATE(1504), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [1505] = { - [sym_cell_path] = STATE(1862), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1505), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_LBRACK] = ACTIONS(937), - [anon_sym_LPAREN] = ACTIONS(937), - [anon_sym_DOLLAR] = ACTIONS(935), - [anon_sym_DASH_DASH] = ACTIONS(937), - [anon_sym_DASH2] = ACTIONS(935), - [anon_sym_LBRACE] = ACTIONS(937), - [anon_sym_DOT_DOT] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(937), - [anon_sym_DOT_DOT_LT] = ACTIONS(937), - [anon_sym_null] = ACTIONS(937), - [anon_sym_true] = ACTIONS(937), - [anon_sym_false] = ACTIONS(937), - [aux_sym__val_number_decimal_token1] = ACTIONS(935), - [aux_sym__val_number_decimal_token2] = ACTIONS(937), - [aux_sym__val_number_decimal_token3] = ACTIONS(937), - [aux_sym__val_number_decimal_token4] = ACTIONS(937), - [aux_sym__val_number_token1] = ACTIONS(937), - [aux_sym__val_number_token2] = ACTIONS(937), - [aux_sym__val_number_token3] = ACTIONS(937), - [aux_sym__val_number_token4] = ACTIONS(937), - [aux_sym__val_number_token5] = ACTIONS(937), - [aux_sym__val_number_token6] = ACTIONS(937), - [anon_sym_0b] = ACTIONS(935), - [anon_sym_0o] = ACTIONS(935), - [anon_sym_0x] = ACTIONS(935), - [sym_val_date] = ACTIONS(937), - [anon_sym_DQUOTE] = ACTIONS(937), - [sym__str_single_quotes] = ACTIONS(937), - [sym__str_back_ticks] = ACTIONS(937), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(937), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [aux_sym_unquoted_token1] = ACTIONS(935), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(937), - }, - [1506] = { - [sym_comment] = STATE(1506), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_GT2] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1727), - [anon_sym_in2] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR2] = ACTIONS(1725), - [anon_sym_and2] = ACTIONS(1727), - [anon_sym_xor2] = ACTIONS(1727), - [anon_sym_or2] = ACTIONS(1727), - [anon_sym_not_DASHin2] = ACTIONS(1727), - [anon_sym_starts_DASHwith2] = ACTIONS(1727), - [anon_sym_ends_DASHwith2] = ACTIONS(1727), - [anon_sym_EQ_EQ2] = ACTIONS(1727), - [anon_sym_BANG_EQ2] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1725), - [anon_sym_LT_EQ2] = ACTIONS(1727), - [anon_sym_GT_EQ2] = ACTIONS(1727), - [anon_sym_EQ_TILDE2] = ACTIONS(1727), - [anon_sym_BANG_TILDE2] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_STAR_STAR2] = ACTIONS(1727), - [anon_sym_PLUS_PLUS2] = ACTIONS(1727), - [anon_sym_SLASH2] = ACTIONS(1725), - [anon_sym_mod2] = ACTIONS(1727), - [anon_sym_SLASH_SLASH2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_bit_DASHshl2] = ACTIONS(1727), - [anon_sym_bit_DASHshr2] = ACTIONS(1727), - [anon_sym_bit_DASHand2] = ACTIONS(1727), - [anon_sym_bit_DASHxor2] = ACTIONS(1727), - [anon_sym_bit_DASHor2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4754), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4756), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - }, - [1507] = { - [sym_comment] = STATE(1507), - [sym__newline] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_err_GT_PIPE] = ACTIONS(4758), - [anon_sym_out_GT_PIPE] = ACTIONS(4758), - [anon_sym_e_GT_PIPE] = ACTIONS(4758), - [anon_sym_o_GT_PIPE] = ACTIONS(4758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4758), - [anon_sym_LPAREN] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4758), - [anon_sym_DASH2] = ACTIONS(4760), - [anon_sym_LBRACE] = ACTIONS(4758), - [anon_sym_RBRACE] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_DOT_DOT2] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4760), - [anon_sym_DOT_DOT_LT] = ACTIONS(4760), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(4758), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [aux_sym__val_number_decimal_token1] = ACTIONS(4760), - [aux_sym__val_number_decimal_token2] = ACTIONS(4758), - [aux_sym__val_number_decimal_token3] = ACTIONS(4758), - [aux_sym__val_number_decimal_token4] = ACTIONS(4758), - [aux_sym__val_number_token1] = ACTIONS(4758), - [aux_sym__val_number_token2] = ACTIONS(4758), - [aux_sym__val_number_token3] = ACTIONS(4758), - [aux_sym__val_number_token4] = ACTIONS(4758), - [aux_sym__val_number_token5] = ACTIONS(4758), - [aux_sym__val_number_token6] = ACTIONS(4758), - [anon_sym_0b] = ACTIONS(4760), - [anon_sym_0o] = ACTIONS(4760), - [anon_sym_0x] = ACTIONS(4760), - [sym_val_date] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [sym__str_single_quotes] = ACTIONS(4758), - [sym__str_back_ticks] = ACTIONS(4758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4758), - [anon_sym_err_GT] = ACTIONS(4760), - [anon_sym_out_GT] = ACTIONS(4760), - [anon_sym_e_GT] = ACTIONS(4760), - [anon_sym_o_GT] = ACTIONS(4760), - [anon_sym_err_PLUSout_GT] = ACTIONS(4760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4760), - [anon_sym_o_PLUSe_GT] = ACTIONS(4760), - [anon_sym_e_PLUSo_GT] = ACTIONS(4760), - [anon_sym_err_GT_GT] = ACTIONS(4758), - [anon_sym_out_GT_GT] = ACTIONS(4758), - [anon_sym_e_GT_GT] = ACTIONS(4758), - [anon_sym_o_GT_GT] = ACTIONS(4758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4758), - [aux_sym_unquoted_token1] = ACTIONS(4760), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4758), - }, - [1508] = { - [sym_comment] = STATE(1508), - [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_LBRACK] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_RPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_DOT_DOT2] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2116), - [anon_sym_DOT_DOT_LT] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), - [anon_sym_null] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2116), - [aux_sym__val_number_decimal_token2] = ACTIONS(2118), - [aux_sym__val_number_decimal_token3] = ACTIONS(2118), - [aux_sym__val_number_decimal_token4] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_0b] = ACTIONS(2116), - [anon_sym_0o] = ACTIONS(2116), - [anon_sym_0x] = ACTIONS(2116), - [sym_val_date] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(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), - [aux_sym_unquoted_token1] = ACTIONS(2116), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2118), - }, - [1509] = { - [sym__expr_parenthesized_immediate] = STATE(2527), - [sym__immediate_decimal] = STATE(2528), - [sym_val_variable] = STATE(2527), - [sym_comment] = STATE(1509), - [ts_builtin_sym_end] = ACTIONS(1553), - [sym__newline] = ACTIONS(1553), - [anon_sym_SEMI] = ACTIONS(1553), - [anon_sym_PIPE] = ACTIONS(1553), - [anon_sym_err_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_GT_PIPE] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1553), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1539), - [anon_sym_DASH2] = ACTIONS(1539), - [anon_sym_in2] = ACTIONS(1553), - [anon_sym_STAR2] = ACTIONS(1539), - [anon_sym_and2] = ACTIONS(1553), - [anon_sym_xor2] = ACTIONS(1553), - [anon_sym_or2] = ACTIONS(1553), - [anon_sym_not_DASHin2] = ACTIONS(1553), - [anon_sym_starts_DASHwith2] = ACTIONS(1553), - [anon_sym_ends_DASHwith2] = ACTIONS(1553), - [anon_sym_EQ_EQ2] = ACTIONS(1553), - [anon_sym_BANG_EQ2] = ACTIONS(1553), - [anon_sym_LT2] = ACTIONS(1539), - [anon_sym_LT_EQ2] = ACTIONS(1553), - [anon_sym_GT_EQ2] = ACTIONS(1553), - [anon_sym_EQ_TILDE2] = ACTIONS(1553), - [anon_sym_BANG_TILDE2] = ACTIONS(1553), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1553), - [anon_sym_PLUS_PLUS2] = ACTIONS(1553), - [anon_sym_SLASH2] = ACTIONS(1539), - [anon_sym_mod2] = ACTIONS(1553), - [anon_sym_SLASH_SLASH2] = ACTIONS(1553), - [anon_sym_PLUS2] = ACTIONS(1539), - [anon_sym_bit_DASHshl2] = ACTIONS(1553), - [anon_sym_bit_DASHshr2] = ACTIONS(1553), - [anon_sym_bit_DASHand2] = ACTIONS(1553), - [anon_sym_bit_DASHxor2] = ACTIONS(1553), - [anon_sym_bit_DASHor2] = ACTIONS(1553), - [aux_sym__immediate_decimal_token1] = ACTIONS(4729), - [aux_sym__immediate_decimal_token3] = ACTIONS(4729), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [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(1553), - [anon_sym_out_GT_GT] = ACTIONS(1553), - [anon_sym_e_GT_GT] = ACTIONS(1553), - [anon_sym_o_GT_GT] = ACTIONS(1553), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1553), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1553), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1553), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1553), - [anon_sym_POUND] = ACTIONS(251), - }, - [1510] = { - [sym_cell_path] = STATE(1825), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1510), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1947), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_LBRACK] = ACTIONS(1947), - [anon_sym_LPAREN] = ACTIONS(1947), - [anon_sym_DOLLAR] = ACTIONS(1945), - [anon_sym_DASH_DASH] = ACTIONS(1947), - [anon_sym_DASH2] = ACTIONS(1945), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_DOT_DOT] = ACTIONS(1945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1947), - [anon_sym_DOT_DOT_LT] = ACTIONS(1947), - [anon_sym_null] = ACTIONS(1947), - [anon_sym_true] = ACTIONS(1947), - [anon_sym_false] = ACTIONS(1947), - [aux_sym__val_number_decimal_token1] = ACTIONS(1945), - [aux_sym__val_number_decimal_token2] = ACTIONS(1947), - [aux_sym__val_number_decimal_token3] = ACTIONS(1947), - [aux_sym__val_number_decimal_token4] = ACTIONS(1947), - [aux_sym__val_number_token1] = ACTIONS(1947), - [aux_sym__val_number_token2] = ACTIONS(1947), - [aux_sym__val_number_token3] = ACTIONS(1947), - [aux_sym__val_number_token4] = ACTIONS(1947), - [aux_sym__val_number_token5] = ACTIONS(1947), - [aux_sym__val_number_token6] = ACTIONS(1947), - [anon_sym_0b] = ACTIONS(1945), - [anon_sym_0o] = ACTIONS(1945), - [anon_sym_0x] = ACTIONS(1945), - [sym_val_date] = ACTIONS(1947), - [anon_sym_DQUOTE] = ACTIONS(1947), - [sym__str_single_quotes] = ACTIONS(1947), - [sym__str_back_ticks] = ACTIONS(1947), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1947), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [aux_sym_unquoted_token1] = ACTIONS(1945), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1947), - }, - [1511] = { - [sym_cell_path] = STATE(1869), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1511), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1951), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_LBRACK] = ACTIONS(1951), - [anon_sym_LPAREN] = ACTIONS(1951), - [anon_sym_DOLLAR] = ACTIONS(1949), - [anon_sym_DASH_DASH] = ACTIONS(1951), - [anon_sym_DASH2] = ACTIONS(1949), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_DOT_DOT] = ACTIONS(1949), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1951), - [anon_sym_DOT_DOT_LT] = ACTIONS(1951), - [anon_sym_null] = ACTIONS(1951), - [anon_sym_true] = ACTIONS(1951), - [anon_sym_false] = ACTIONS(1951), - [aux_sym__val_number_decimal_token1] = ACTIONS(1949), - [aux_sym__val_number_decimal_token2] = ACTIONS(1951), - [aux_sym__val_number_decimal_token3] = ACTIONS(1951), - [aux_sym__val_number_decimal_token4] = ACTIONS(1951), - [aux_sym__val_number_token1] = ACTIONS(1951), - [aux_sym__val_number_token2] = ACTIONS(1951), - [aux_sym__val_number_token3] = ACTIONS(1951), - [aux_sym__val_number_token4] = ACTIONS(1951), - [aux_sym__val_number_token5] = ACTIONS(1951), - [aux_sym__val_number_token6] = ACTIONS(1951), - [anon_sym_0b] = ACTIONS(1949), - [anon_sym_0o] = ACTIONS(1949), - [anon_sym_0x] = ACTIONS(1949), - [sym_val_date] = ACTIONS(1951), - [anon_sym_DQUOTE] = ACTIONS(1951), - [sym__str_single_quotes] = ACTIONS(1951), - [sym__str_back_ticks] = ACTIONS(1951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), - [aux_sym_unquoted_token1] = ACTIONS(1949), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1951), - }, - [1512] = { - [sym_comment] = STATE(1512), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT] = ACTIONS(4762), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4764), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [aux_sym_unquoted_token1] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1513] = { - [sym_cell_path] = STATE(1873), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1513), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1955), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_LBRACK] = ACTIONS(1955), - [anon_sym_LPAREN] = ACTIONS(1955), - [anon_sym_DOLLAR] = ACTIONS(1953), - [anon_sym_DASH_DASH] = ACTIONS(1955), - [anon_sym_DASH2] = ACTIONS(1953), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_DOT_DOT] = ACTIONS(1953), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1955), - [anon_sym_DOT_DOT_LT] = ACTIONS(1955), - [anon_sym_null] = ACTIONS(1955), - [anon_sym_true] = ACTIONS(1955), - [anon_sym_false] = ACTIONS(1955), - [aux_sym__val_number_decimal_token1] = ACTIONS(1953), - [aux_sym__val_number_decimal_token2] = ACTIONS(1955), - [aux_sym__val_number_decimal_token3] = ACTIONS(1955), - [aux_sym__val_number_decimal_token4] = ACTIONS(1955), - [aux_sym__val_number_token1] = ACTIONS(1955), - [aux_sym__val_number_token2] = ACTIONS(1955), - [aux_sym__val_number_token3] = ACTIONS(1955), - [aux_sym__val_number_token4] = ACTIONS(1955), - [aux_sym__val_number_token5] = ACTIONS(1955), - [aux_sym__val_number_token6] = ACTIONS(1955), - [anon_sym_0b] = ACTIONS(1953), - [anon_sym_0o] = ACTIONS(1953), - [anon_sym_0x] = ACTIONS(1953), - [sym_val_date] = ACTIONS(1955), - [anon_sym_DQUOTE] = ACTIONS(1955), - [sym__str_single_quotes] = ACTIONS(1955), - [sym__str_back_ticks] = ACTIONS(1955), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1955), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), - [aux_sym_unquoted_token1] = ACTIONS(1953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1955), - }, - [1514] = { - [sym_cell_path] = STATE(1874), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1514), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1959), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_LBRACK] = ACTIONS(1959), - [anon_sym_LPAREN] = ACTIONS(1959), - [anon_sym_DOLLAR] = ACTIONS(1957), - [anon_sym_DASH_DASH] = ACTIONS(1959), - [anon_sym_DASH2] = ACTIONS(1957), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_DOT_DOT] = ACTIONS(1957), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1959), - [anon_sym_DOT_DOT_LT] = ACTIONS(1959), - [anon_sym_null] = ACTIONS(1959), - [anon_sym_true] = ACTIONS(1959), - [anon_sym_false] = ACTIONS(1959), - [aux_sym__val_number_decimal_token1] = ACTIONS(1957), - [aux_sym__val_number_decimal_token2] = ACTIONS(1959), - [aux_sym__val_number_decimal_token3] = ACTIONS(1959), - [aux_sym__val_number_decimal_token4] = ACTIONS(1959), - [aux_sym__val_number_token1] = ACTIONS(1959), - [aux_sym__val_number_token2] = ACTIONS(1959), - [aux_sym__val_number_token3] = ACTIONS(1959), - [aux_sym__val_number_token4] = ACTIONS(1959), - [aux_sym__val_number_token5] = ACTIONS(1959), - [aux_sym__val_number_token6] = ACTIONS(1959), - [anon_sym_0b] = ACTIONS(1957), - [anon_sym_0o] = ACTIONS(1957), - [anon_sym_0x] = ACTIONS(1957), - [sym_val_date] = ACTIONS(1959), - [anon_sym_DQUOTE] = ACTIONS(1959), - [sym__str_single_quotes] = ACTIONS(1959), - [sym__str_back_ticks] = ACTIONS(1959), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1959), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), - [aux_sym_unquoted_token1] = ACTIONS(1957), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1959), - }, - [1515] = { - [sym_cell_path] = STATE(1877), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1515), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1963), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_LBRACK] = ACTIONS(1963), - [anon_sym_LPAREN] = ACTIONS(1963), - [anon_sym_DOLLAR] = ACTIONS(1961), - [anon_sym_DASH_DASH] = ACTIONS(1963), - [anon_sym_DASH2] = ACTIONS(1961), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_DOT_DOT] = ACTIONS(1961), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1963), - [anon_sym_DOT_DOT_LT] = ACTIONS(1963), - [anon_sym_null] = ACTIONS(1963), - [anon_sym_true] = ACTIONS(1963), - [anon_sym_false] = ACTIONS(1963), - [aux_sym__val_number_decimal_token1] = ACTIONS(1961), - [aux_sym__val_number_decimal_token2] = ACTIONS(1963), - [aux_sym__val_number_decimal_token3] = ACTIONS(1963), - [aux_sym__val_number_decimal_token4] = ACTIONS(1963), - [aux_sym__val_number_token1] = ACTIONS(1963), - [aux_sym__val_number_token2] = ACTIONS(1963), - [aux_sym__val_number_token3] = ACTIONS(1963), - [aux_sym__val_number_token4] = ACTIONS(1963), - [aux_sym__val_number_token5] = ACTIONS(1963), - [aux_sym__val_number_token6] = ACTIONS(1963), - [anon_sym_0b] = ACTIONS(1961), - [anon_sym_0o] = ACTIONS(1961), - [anon_sym_0x] = ACTIONS(1961), - [sym_val_date] = ACTIONS(1963), - [anon_sym_DQUOTE] = ACTIONS(1963), - [sym__str_single_quotes] = ACTIONS(1963), - [sym__str_back_ticks] = ACTIONS(1963), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1963), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), - [aux_sym_unquoted_token1] = ACTIONS(1961), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1963), - }, - [1516] = { - [sym_cell_path] = STATE(1890), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1516), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1991), - [sym__newline] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_err_GT_PIPE] = ACTIONS(1991), - [anon_sym_out_GT_PIPE] = ACTIONS(1991), - [anon_sym_e_GT_PIPE] = ACTIONS(1991), - [anon_sym_o_GT_PIPE] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), - [anon_sym_LBRACK] = ACTIONS(1991), - [anon_sym_LPAREN] = ACTIONS(1991), - [anon_sym_DOLLAR] = ACTIONS(1989), - [anon_sym_DASH_DASH] = ACTIONS(1991), - [anon_sym_DASH2] = ACTIONS(1989), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_DOT_DOT] = ACTIONS(1989), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1991), - [anon_sym_DOT_DOT_LT] = ACTIONS(1991), - [anon_sym_null] = ACTIONS(1991), - [anon_sym_true] = ACTIONS(1991), - [anon_sym_false] = ACTIONS(1991), - [aux_sym__val_number_decimal_token1] = ACTIONS(1989), - [aux_sym__val_number_decimal_token2] = ACTIONS(1991), - [aux_sym__val_number_decimal_token3] = ACTIONS(1991), - [aux_sym__val_number_decimal_token4] = ACTIONS(1991), - [aux_sym__val_number_token1] = ACTIONS(1991), - [aux_sym__val_number_token2] = ACTIONS(1991), - [aux_sym__val_number_token3] = ACTIONS(1991), - [aux_sym__val_number_token4] = ACTIONS(1991), - [aux_sym__val_number_token5] = ACTIONS(1991), - [aux_sym__val_number_token6] = ACTIONS(1991), - [anon_sym_0b] = ACTIONS(1989), - [anon_sym_0o] = ACTIONS(1989), - [anon_sym_0x] = ACTIONS(1989), - [sym_val_date] = ACTIONS(1991), - [anon_sym_DQUOTE] = ACTIONS(1991), - [sym__str_single_quotes] = ACTIONS(1991), - [sym__str_back_ticks] = ACTIONS(1991), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1991), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1989), - [anon_sym_out_GT] = ACTIONS(1989), - [anon_sym_e_GT] = ACTIONS(1989), - [anon_sym_o_GT] = ACTIONS(1989), - [anon_sym_err_PLUSout_GT] = ACTIONS(1989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1989), - [anon_sym_o_PLUSe_GT] = ACTIONS(1989), - [anon_sym_e_PLUSo_GT] = ACTIONS(1989), - [anon_sym_err_GT_GT] = ACTIONS(1991), - [anon_sym_out_GT_GT] = ACTIONS(1991), - [anon_sym_e_GT_GT] = ACTIONS(1991), - [anon_sym_o_GT_GT] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), - [aux_sym_unquoted_token1] = ACTIONS(1989), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1991), + [sym_raw_string_begin] = ACTIONS(1020), }, - [1517] = { - [sym_comment] = STATE(1517), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_PLUS_EQ] = ACTIONS(4768), - [anon_sym_DASH_EQ] = ACTIONS(4768), - [anon_sym_STAR_EQ] = ACTIONS(4768), - [anon_sym_SLASH_EQ] = ACTIONS(4768), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4768), + [1525] = { + [sym_comment] = STATE(1525), + [anon_sym_EQ] = ACTIONS(4799), + [anon_sym_PLUS_EQ] = ACTIONS(4801), + [anon_sym_DASH_EQ] = ACTIONS(4801), + [anon_sym_STAR_EQ] = ACTIONS(4801), + [anon_sym_SLASH_EQ] = ACTIONS(4801), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4801), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -221883,8 +222437,353 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), }, - [1518] = { - [sym_comment] = STATE(1518), + [1526] = { + [sym_cell_path] = STATE(1838), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1526), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1865), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_LBRACK] = ACTIONS(1865), + [anon_sym_LPAREN] = ACTIONS(1865), + [anon_sym_DOLLAR] = ACTIONS(1863), + [anon_sym_DASH_DASH] = ACTIONS(1865), + [anon_sym_DASH2] = ACTIONS(1863), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_DOT_DOT] = ACTIONS(1863), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1865), + [anon_sym_DOT_DOT_LT] = ACTIONS(1865), + [anon_sym_null] = ACTIONS(1865), + [anon_sym_true] = ACTIONS(1865), + [anon_sym_false] = ACTIONS(1865), + [aux_sym__val_number_decimal_token1] = ACTIONS(1863), + [aux_sym__val_number_decimal_token2] = ACTIONS(1865), + [aux_sym__val_number_decimal_token3] = ACTIONS(1865), + [aux_sym__val_number_decimal_token4] = ACTIONS(1865), + [aux_sym__val_number_token1] = ACTIONS(1865), + [aux_sym__val_number_token2] = ACTIONS(1865), + [aux_sym__val_number_token3] = ACTIONS(1865), + [aux_sym__val_number_token4] = ACTIONS(1865), + [aux_sym__val_number_token5] = ACTIONS(1865), + [aux_sym__val_number_token6] = ACTIONS(1865), + [anon_sym_0b] = ACTIONS(1863), + [anon_sym_0o] = ACTIONS(1863), + [anon_sym_0x] = ACTIONS(1863), + [sym_val_date] = ACTIONS(1865), + [anon_sym_DQUOTE] = ACTIONS(1865), + [sym__str_single_quotes] = ACTIONS(1865), + [sym__str_back_ticks] = ACTIONS(1865), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1865), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1865), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), + [aux_sym_unquoted_token1] = ACTIONS(1863), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1865), + }, + [1527] = { + [sym_cell_path] = STATE(1875), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1527), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1869), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_LBRACK] = ACTIONS(1869), + [anon_sym_LPAREN] = ACTIONS(1869), + [anon_sym_DOLLAR] = ACTIONS(1867), + [anon_sym_DASH_DASH] = ACTIONS(1869), + [anon_sym_DASH2] = ACTIONS(1867), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_DOT_DOT] = ACTIONS(1867), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1869), + [anon_sym_DOT_DOT_LT] = ACTIONS(1869), + [anon_sym_null] = ACTIONS(1869), + [anon_sym_true] = ACTIONS(1869), + [anon_sym_false] = ACTIONS(1869), + [aux_sym__val_number_decimal_token1] = ACTIONS(1867), + [aux_sym__val_number_decimal_token2] = ACTIONS(1869), + [aux_sym__val_number_decimal_token3] = ACTIONS(1869), + [aux_sym__val_number_decimal_token4] = ACTIONS(1869), + [aux_sym__val_number_token1] = ACTIONS(1869), + [aux_sym__val_number_token2] = ACTIONS(1869), + [aux_sym__val_number_token3] = ACTIONS(1869), + [aux_sym__val_number_token4] = ACTIONS(1869), + [aux_sym__val_number_token5] = ACTIONS(1869), + [aux_sym__val_number_token6] = ACTIONS(1869), + [anon_sym_0b] = ACTIONS(1867), + [anon_sym_0o] = ACTIONS(1867), + [anon_sym_0x] = ACTIONS(1867), + [sym_val_date] = ACTIONS(1869), + [anon_sym_DQUOTE] = ACTIONS(1869), + [sym__str_single_quotes] = ACTIONS(1869), + [sym__str_back_ticks] = ACTIONS(1869), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1869), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), + [aux_sym_unquoted_token1] = ACTIONS(1867), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1869), + }, + [1528] = { + [sym_cell_path] = STATE(1829), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1528), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1877), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_LBRACK] = ACTIONS(1877), + [anon_sym_LPAREN] = ACTIONS(1877), + [anon_sym_DOLLAR] = ACTIONS(1875), + [anon_sym_DASH_DASH] = ACTIONS(1877), + [anon_sym_DASH2] = ACTIONS(1875), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_DOT_DOT] = ACTIONS(1875), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1877), + [anon_sym_DOT_DOT_LT] = ACTIONS(1877), + [anon_sym_null] = ACTIONS(1877), + [anon_sym_true] = ACTIONS(1877), + [anon_sym_false] = ACTIONS(1877), + [aux_sym__val_number_decimal_token1] = ACTIONS(1875), + [aux_sym__val_number_decimal_token2] = ACTIONS(1877), + [aux_sym__val_number_decimal_token3] = ACTIONS(1877), + [aux_sym__val_number_decimal_token4] = ACTIONS(1877), + [aux_sym__val_number_token1] = ACTIONS(1877), + [aux_sym__val_number_token2] = ACTIONS(1877), + [aux_sym__val_number_token3] = ACTIONS(1877), + [aux_sym__val_number_token4] = ACTIONS(1877), + [aux_sym__val_number_token5] = ACTIONS(1877), + [aux_sym__val_number_token6] = ACTIONS(1877), + [anon_sym_0b] = ACTIONS(1875), + [anon_sym_0o] = ACTIONS(1875), + [anon_sym_0x] = ACTIONS(1875), + [sym_val_date] = ACTIONS(1877), + [anon_sym_DQUOTE] = ACTIONS(1877), + [sym__str_single_quotes] = ACTIONS(1877), + [sym__str_back_ticks] = ACTIONS(1877), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1877), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [aux_sym_unquoted_token1] = ACTIONS(1875), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1877), + }, + [1529] = { + [sym_cell_path] = STATE(1870), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1529), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(1881), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_LBRACK] = ACTIONS(1881), + [anon_sym_LPAREN] = ACTIONS(1881), + [anon_sym_DOLLAR] = ACTIONS(1879), + [anon_sym_DASH_DASH] = ACTIONS(1881), + [anon_sym_DASH2] = ACTIONS(1879), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_DOT_DOT] = ACTIONS(1879), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1881), + [anon_sym_DOT_DOT_LT] = ACTIONS(1881), + [anon_sym_null] = ACTIONS(1881), + [anon_sym_true] = ACTIONS(1881), + [anon_sym_false] = ACTIONS(1881), + [aux_sym__val_number_decimal_token1] = ACTIONS(1879), + [aux_sym__val_number_decimal_token2] = ACTIONS(1881), + [aux_sym__val_number_decimal_token3] = ACTIONS(1881), + [aux_sym__val_number_decimal_token4] = ACTIONS(1881), + [aux_sym__val_number_token1] = ACTIONS(1881), + [aux_sym__val_number_token2] = ACTIONS(1881), + [aux_sym__val_number_token3] = ACTIONS(1881), + [aux_sym__val_number_token4] = ACTIONS(1881), + [aux_sym__val_number_token5] = ACTIONS(1881), + [aux_sym__val_number_token6] = ACTIONS(1881), + [anon_sym_0b] = ACTIONS(1879), + [anon_sym_0o] = ACTIONS(1879), + [anon_sym_0x] = ACTIONS(1879), + [sym_val_date] = ACTIONS(1881), + [anon_sym_DQUOTE] = ACTIONS(1881), + [sym__str_single_quotes] = ACTIONS(1881), + [sym__str_back_ticks] = ACTIONS(1881), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1881), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [aux_sym_unquoted_token1] = ACTIONS(1879), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1881), + }, + [1530] = { + [sym_cell_path] = STATE(1873), + [sym_path] = STATE(1699), + [sym_comment] = STATE(1530), + [aux_sym_cell_path_repeat1] = STATE(1553), + [ts_builtin_sym_end] = ACTIONS(2010), + [sym__newline] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_err_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_GT_PIPE] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), + [anon_sym_LBRACK] = ACTIONS(2010), + [anon_sym_LPAREN] = ACTIONS(2010), + [anon_sym_DOLLAR] = ACTIONS(2008), + [anon_sym_DASH_DASH] = ACTIONS(2010), + [anon_sym_DASH2] = ACTIONS(2008), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_DOT_DOT] = ACTIONS(2008), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2010), + [anon_sym_DOT_DOT_LT] = ACTIONS(2010), + [anon_sym_null] = ACTIONS(2010), + [anon_sym_true] = ACTIONS(2010), + [anon_sym_false] = ACTIONS(2010), + [aux_sym__val_number_decimal_token1] = ACTIONS(2008), + [aux_sym__val_number_decimal_token2] = ACTIONS(2010), + [aux_sym__val_number_decimal_token3] = ACTIONS(2010), + [aux_sym__val_number_decimal_token4] = ACTIONS(2010), + [aux_sym__val_number_token1] = ACTIONS(2010), + [aux_sym__val_number_token2] = ACTIONS(2010), + [aux_sym__val_number_token3] = ACTIONS(2010), + [aux_sym__val_number_token4] = ACTIONS(2010), + [aux_sym__val_number_token5] = ACTIONS(2010), + [aux_sym__val_number_token6] = ACTIONS(2010), + [anon_sym_0b] = ACTIONS(2008), + [anon_sym_0o] = ACTIONS(2008), + [anon_sym_0x] = ACTIONS(2008), + [sym_val_date] = ACTIONS(2010), + [anon_sym_DQUOTE] = ACTIONS(2010), + [sym__str_single_quotes] = ACTIONS(2010), + [sym__str_back_ticks] = ACTIONS(2010), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2010), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2010), + [anon_sym_DOT2] = ACTIONS(4718), + [anon_sym_err_GT] = ACTIONS(2008), + [anon_sym_out_GT] = ACTIONS(2008), + [anon_sym_e_GT] = ACTIONS(2008), + [anon_sym_o_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT] = ACTIONS(2008), + [anon_sym_err_GT_GT] = ACTIONS(2010), + [anon_sym_out_GT_GT] = ACTIONS(2010), + [anon_sym_e_GT_GT] = ACTIONS(2010), + [anon_sym_o_GT_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2010), + [aux_sym_unquoted_token1] = ACTIONS(2008), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2010), + }, + [1531] = { + [sym_comment] = STATE(1531), [sym__newline] = ACTIONS(986), [anon_sym_SEMI] = ACTIONS(986), [anon_sym_PIPE] = ACTIONS(986), @@ -221952,907 +222851,1443 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), [anon_sym_POUND] = ACTIONS(251), }, - [1519] = { - [sym_cell_path] = STATE(1878), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1519), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1967), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_LBRACK] = ACTIONS(1967), - [anon_sym_LPAREN] = ACTIONS(1967), - [anon_sym_DOLLAR] = ACTIONS(1965), - [anon_sym_DASH_DASH] = ACTIONS(1967), - [anon_sym_DASH2] = ACTIONS(1965), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_DOT_DOT] = ACTIONS(1965), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1967), - [anon_sym_DOT_DOT_LT] = ACTIONS(1967), - [anon_sym_null] = ACTIONS(1967), - [anon_sym_true] = ACTIONS(1967), - [anon_sym_false] = ACTIONS(1967), - [aux_sym__val_number_decimal_token1] = ACTIONS(1965), - [aux_sym__val_number_decimal_token2] = ACTIONS(1967), - [aux_sym__val_number_decimal_token3] = ACTIONS(1967), - [aux_sym__val_number_decimal_token4] = ACTIONS(1967), - [aux_sym__val_number_token1] = ACTIONS(1967), - [aux_sym__val_number_token2] = ACTIONS(1967), - [aux_sym__val_number_token3] = ACTIONS(1967), - [aux_sym__val_number_token4] = ACTIONS(1967), - [aux_sym__val_number_token5] = ACTIONS(1967), - [aux_sym__val_number_token6] = ACTIONS(1967), - [anon_sym_0b] = ACTIONS(1965), - [anon_sym_0o] = ACTIONS(1965), - [anon_sym_0x] = ACTIONS(1965), - [sym_val_date] = ACTIONS(1967), - [anon_sym_DQUOTE] = ACTIONS(1967), - [sym__str_single_quotes] = ACTIONS(1967), - [sym__str_back_ticks] = ACTIONS(1967), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1967), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [aux_sym_unquoted_token1] = ACTIONS(1965), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1967), + [1532] = { + [sym_comment] = STATE(1532), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4684), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1520] = { - [sym__expr_parenthesized_immediate] = STATE(2494), - [sym__immediate_decimal] = STATE(2496), - [sym_val_variable] = STATE(2494), - [sym_comment] = STATE(1520), - [ts_builtin_sym_end] = 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_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1627), - [anon_sym_DASH2] = ACTIONS(1627), - [anon_sym_in2] = ACTIONS(1629), - [anon_sym_STAR2] = ACTIONS(1627), - [anon_sym_and2] = ACTIONS(1629), - [anon_sym_xor2] = ACTIONS(1629), - [anon_sym_or2] = ACTIONS(1629), - [anon_sym_not_DASHin2] = ACTIONS(1629), - [anon_sym_starts_DASHwith2] = ACTIONS(1629), - [anon_sym_ends_DASHwith2] = ACTIONS(1629), - [anon_sym_EQ_EQ2] = ACTIONS(1629), - [anon_sym_BANG_EQ2] = ACTIONS(1629), - [anon_sym_LT2] = ACTIONS(1627), - [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_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1629), - [anon_sym_PLUS_PLUS2] = ACTIONS(1629), - [anon_sym_SLASH2] = ACTIONS(1627), - [anon_sym_mod2] = ACTIONS(1629), - [anon_sym_SLASH_SLASH2] = ACTIONS(1629), - [anon_sym_PLUS2] = ACTIONS(1627), - [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), - [aux_sym__immediate_decimal_token1] = ACTIONS(4729), - [aux_sym__immediate_decimal_token3] = ACTIONS(4729), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [anon_sym_err_GT] = ACTIONS(1627), - [anon_sym_out_GT] = ACTIONS(1627), - [anon_sym_e_GT] = ACTIONS(1627), - [anon_sym_o_GT] = ACTIONS(1627), - [anon_sym_err_PLUSout_GT] = ACTIONS(1627), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1627), - [anon_sym_o_PLUSe_GT] = ACTIONS(1627), - [anon_sym_e_PLUSo_GT] = ACTIONS(1627), - [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), + [1533] = { + [sym_comment] = STATE(1533), + [ts_builtin_sym_end] = ACTIONS(986), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT2] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(984), + [anon_sym_DOT_DOT_LT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(986), + [anon_sym_DOT_DOT_LT2] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), }, - [1521] = { - [sym_comment] = STATE(1521), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_RPAREN] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_RBRACE] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(4770), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), - [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4772), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4772), - [anon_sym_null] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2150), - [aux_sym__val_number_decimal_token3] = ACTIONS(2150), - [aux_sym__val_number_decimal_token4] = ACTIONS(2150), - [aux_sym__val_number_token1] = ACTIONS(2150), - [aux_sym__val_number_token2] = ACTIONS(2150), - [aux_sym__val_number_token3] = ACTIONS(2150), - [aux_sym__val_number_token4] = ACTIONS(2150), - [aux_sym__val_number_token5] = ACTIONS(2150), - [aux_sym__val_number_token6] = ACTIONS(2150), - [anon_sym_0b] = ACTIONS(2144), - [anon_sym_0o] = ACTIONS(2144), - [anon_sym_0x] = ACTIONS(2144), - [sym_val_date] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), - [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(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [aux_sym_unquoted_token1] = ACTIONS(2144), + [1534] = { + [sym_comment] = STATE(1534), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4690), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2150), }, - [1522] = { - [sym_comment] = STATE(1522), - [sym__newline] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_err_GT_PIPE] = ACTIONS(2158), - [anon_sym_out_GT_PIPE] = ACTIONS(2158), - [anon_sym_e_GT_PIPE] = ACTIONS(2158), - [anon_sym_o_GT_PIPE] = ACTIONS(2158), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2158), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2158), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2158), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_RPAREN] = ACTIONS(2158), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_RBRACE] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(4774), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2152), - [anon_sym_DOT_DOT_LT] = ACTIONS(2152), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4776), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4776), - [anon_sym_null] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2158), - [aux_sym__val_number_decimal_token3] = ACTIONS(2158), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2158), - [aux_sym__val_number_token2] = ACTIONS(2158), - [aux_sym__val_number_token3] = ACTIONS(2158), - [aux_sym__val_number_token4] = ACTIONS(2158), - [aux_sym__val_number_token5] = ACTIONS(2158), - [aux_sym__val_number_token6] = ACTIONS(2158), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2152), - [anon_sym_0x] = ACTIONS(2152), - [sym_val_date] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym__str_single_quotes] = ACTIONS(2158), - [sym__str_back_ticks] = ACTIONS(2158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2158), - [anon_sym_out_GT_GT] = ACTIONS(2158), - [anon_sym_e_GT_GT] = ACTIONS(2158), - [anon_sym_o_GT_GT] = ACTIONS(2158), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2158), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2158), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2158), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2158), - [aux_sym_unquoted_token1] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2158), + [1535] = { + [sym_comment] = STATE(1535), + [sym__newline] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_err_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_GT_PIPE] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH2] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_DOT_DOT2] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2039), + [anon_sym_DOT_DOT_LT] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2041), + [anon_sym_null] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2039), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [aux_sym__val_number_token4] = ACTIONS(2041), + [aux_sym__val_number_token5] = ACTIONS(2041), + [aux_sym__val_number_token6] = ACTIONS(2041), + [anon_sym_0b] = ACTIONS(2039), + [anon_sym_0o] = ACTIONS(2039), + [anon_sym_0x] = ACTIONS(2039), + [sym_val_date] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), + [anon_sym_err_GT] = ACTIONS(2039), + [anon_sym_out_GT] = ACTIONS(2039), + [anon_sym_e_GT] = ACTIONS(2039), + [anon_sym_o_GT] = ACTIONS(2039), + [anon_sym_err_PLUSout_GT] = ACTIONS(2039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2039), + [anon_sym_o_PLUSe_GT] = ACTIONS(2039), + [anon_sym_e_PLUSo_GT] = ACTIONS(2039), + [anon_sym_err_GT_GT] = ACTIONS(2041), + [anon_sym_out_GT_GT] = ACTIONS(2041), + [anon_sym_e_GT_GT] = ACTIONS(2041), + [anon_sym_o_GT_GT] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), + [aux_sym_unquoted_token1] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2041), }, - [1523] = { - [sym_comment] = STATE(1523), - [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_LBRACK] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_RPAREN] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [anon_sym_DASH2] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_RBRACE] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2160), - [anon_sym_DOT_DOT2] = ACTIONS(4778), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2160), - [anon_sym_DOT_DOT_LT] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4780), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4780), - [anon_sym_null] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2166), - [anon_sym_false] = ACTIONS(2166), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2166), - [aux_sym__val_number_decimal_token3] = ACTIONS(2166), - [aux_sym__val_number_decimal_token4] = ACTIONS(2166), - [aux_sym__val_number_token1] = ACTIONS(2166), - [aux_sym__val_number_token2] = ACTIONS(2166), - [aux_sym__val_number_token3] = ACTIONS(2166), - [aux_sym__val_number_token4] = ACTIONS(2166), - [aux_sym__val_number_token5] = ACTIONS(2166), - [aux_sym__val_number_token6] = ACTIONS(2166), - [anon_sym_0b] = ACTIONS(2160), - [anon_sym_0o] = ACTIONS(2160), - [anon_sym_0x] = ACTIONS(2160), - [sym_val_date] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [sym__str_single_quotes] = ACTIONS(2166), - [sym__str_back_ticks] = ACTIONS(2166), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), - [anon_sym_err_GT] = ACTIONS(2160), - [anon_sym_out_GT] = ACTIONS(2160), - [anon_sym_e_GT] = ACTIONS(2160), - [anon_sym_o_GT] = ACTIONS(2160), - [anon_sym_err_PLUSout_GT] = ACTIONS(2160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), - [anon_sym_o_PLUSe_GT] = ACTIONS(2160), - [anon_sym_e_PLUSo_GT] = ACTIONS(2160), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2160), + [1536] = { + [sym_comment] = STATE(1536), + [ts_builtin_sym_end] = ACTIONS(2053), + [sym__newline] = ACTIONS(2053), + [anon_sym_SEMI] = ACTIONS(2053), + [anon_sym_PIPE] = ACTIONS(2053), + [anon_sym_err_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_GT_PIPE] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2053), + [anon_sym_LBRACK] = ACTIONS(2053), + [anon_sym_LPAREN] = ACTIONS(2053), + [anon_sym_DOLLAR] = ACTIONS(2047), + [anon_sym_DASH_DASH] = ACTIONS(2053), + [anon_sym_DASH2] = ACTIONS(2047), + [anon_sym_LBRACE] = ACTIONS(2053), + [anon_sym_DOT_DOT] = ACTIONS(2047), + [anon_sym_DOT_DOT2] = ACTIONS(4803), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2047), + [anon_sym_DOT_DOT_LT] = ACTIONS(2047), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4805), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4805), + [anon_sym_null] = ACTIONS(2053), + [anon_sym_true] = ACTIONS(2053), + [anon_sym_false] = ACTIONS(2053), + [aux_sym__val_number_decimal_token1] = ACTIONS(2047), + [aux_sym__val_number_decimal_token2] = ACTIONS(2053), + [aux_sym__val_number_decimal_token3] = ACTIONS(2053), + [aux_sym__val_number_decimal_token4] = ACTIONS(2053), + [aux_sym__val_number_token1] = ACTIONS(2053), + [aux_sym__val_number_token2] = ACTIONS(2053), + [aux_sym__val_number_token3] = ACTIONS(2053), + [aux_sym__val_number_token4] = ACTIONS(2053), + [aux_sym__val_number_token5] = ACTIONS(2053), + [aux_sym__val_number_token6] = ACTIONS(2053), + [anon_sym_0b] = ACTIONS(2047), + [anon_sym_0o] = ACTIONS(2047), + [anon_sym_0x] = ACTIONS(2047), + [sym_val_date] = ACTIONS(2053), + [anon_sym_DQUOTE] = ACTIONS(2053), + [sym__str_single_quotes] = ACTIONS(2053), + [sym__str_back_ticks] = ACTIONS(2053), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2053), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2053), + [anon_sym_err_GT] = ACTIONS(2047), + [anon_sym_out_GT] = ACTIONS(2047), + [anon_sym_e_GT] = ACTIONS(2047), + [anon_sym_o_GT] = ACTIONS(2047), + [anon_sym_err_PLUSout_GT] = ACTIONS(2047), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2047), + [anon_sym_o_PLUSe_GT] = ACTIONS(2047), + [anon_sym_e_PLUSo_GT] = ACTIONS(2047), + [anon_sym_err_GT_GT] = ACTIONS(2053), + [anon_sym_out_GT_GT] = ACTIONS(2053), + [anon_sym_e_GT_GT] = ACTIONS(2053), + [anon_sym_o_GT_GT] = ACTIONS(2053), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2053), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2053), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2053), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2053), + [aux_sym_unquoted_token1] = ACTIONS(2047), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2053), + }, + [1537] = { + [sym_comment] = STATE(1537), + [sym__newline] = ACTIONS(1759), + [anon_sym_SEMI] = ACTIONS(1759), + [anon_sym_PIPE] = ACTIONS(1759), + [anon_sym_err_GT_PIPE] = ACTIONS(1759), + [anon_sym_out_GT_PIPE] = ACTIONS(1759), + [anon_sym_e_GT_PIPE] = ACTIONS(1759), + [anon_sym_o_GT_PIPE] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), + [anon_sym_RPAREN] = ACTIONS(1759), + [anon_sym_GT2] = ACTIONS(1757), + [anon_sym_DASH2] = ACTIONS(1759), + [anon_sym_in2] = ACTIONS(1759), + [anon_sym_if] = ACTIONS(1759), + [anon_sym_LBRACE] = ACTIONS(1759), + [anon_sym_RBRACE] = ACTIONS(1759), + [anon_sym_EQ_GT] = ACTIONS(1759), + [anon_sym_STAR2] = ACTIONS(1757), + [anon_sym_and2] = ACTIONS(1759), + [anon_sym_xor2] = ACTIONS(1759), + [anon_sym_or2] = ACTIONS(1759), + [anon_sym_not_DASHin2] = ACTIONS(1759), + [anon_sym_starts_DASHwith2] = ACTIONS(1759), + [anon_sym_ends_DASHwith2] = ACTIONS(1759), + [anon_sym_EQ_EQ2] = ACTIONS(1759), + [anon_sym_BANG_EQ2] = ACTIONS(1759), + [anon_sym_LT2] = ACTIONS(1757), + [anon_sym_LT_EQ2] = ACTIONS(1759), + [anon_sym_GT_EQ2] = ACTIONS(1759), + [anon_sym_EQ_TILDE2] = ACTIONS(1759), + [anon_sym_BANG_TILDE2] = ACTIONS(1759), + [anon_sym_STAR_STAR2] = ACTIONS(1759), + [anon_sym_PLUS_PLUS2] = ACTIONS(1759), + [anon_sym_SLASH2] = ACTIONS(1757), + [anon_sym_mod2] = ACTIONS(1759), + [anon_sym_SLASH_SLASH2] = ACTIONS(1759), + [anon_sym_PLUS2] = ACTIONS(1757), + [anon_sym_bit_DASHshl2] = ACTIONS(1759), + [anon_sym_bit_DASHshr2] = ACTIONS(1759), + [anon_sym_bit_DASHand2] = ACTIONS(1759), + [anon_sym_bit_DASHxor2] = ACTIONS(1759), + [anon_sym_bit_DASHor2] = ACTIONS(1759), + [anon_sym_DOT_DOT2] = ACTIONS(1757), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), + [anon_sym_COLON2] = ACTIONS(1759), + [anon_sym_err_GT] = ACTIONS(1757), + [anon_sym_out_GT] = ACTIONS(1757), + [anon_sym_e_GT] = ACTIONS(1757), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1759), + [anon_sym_out_GT_GT] = ACTIONS(1759), + [anon_sym_e_GT_GT] = ACTIONS(1759), + [anon_sym_o_GT_GT] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2166), }, - [1524] = { - [sym_cell_path] = STATE(1879), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1524), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1971), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_LBRACK] = ACTIONS(1971), - [anon_sym_LPAREN] = ACTIONS(1971), - [anon_sym_DOLLAR] = ACTIONS(1969), - [anon_sym_DASH_DASH] = ACTIONS(1971), - [anon_sym_DASH2] = ACTIONS(1969), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_DOT_DOT] = ACTIONS(1969), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1971), - [anon_sym_DOT_DOT_LT] = ACTIONS(1971), - [anon_sym_null] = ACTIONS(1971), - [anon_sym_true] = ACTIONS(1971), - [anon_sym_false] = ACTIONS(1971), - [aux_sym__val_number_decimal_token1] = ACTIONS(1969), - [aux_sym__val_number_decimal_token2] = ACTIONS(1971), - [aux_sym__val_number_decimal_token3] = ACTIONS(1971), - [aux_sym__val_number_decimal_token4] = ACTIONS(1971), - [aux_sym__val_number_token1] = ACTIONS(1971), - [aux_sym__val_number_token2] = ACTIONS(1971), - [aux_sym__val_number_token3] = ACTIONS(1971), - [aux_sym__val_number_token4] = ACTIONS(1971), - [aux_sym__val_number_token5] = ACTIONS(1971), - [aux_sym__val_number_token6] = ACTIONS(1971), - [anon_sym_0b] = ACTIONS(1969), - [anon_sym_0o] = ACTIONS(1969), - [anon_sym_0x] = ACTIONS(1969), - [sym_val_date] = ACTIONS(1971), - [anon_sym_DQUOTE] = ACTIONS(1971), - [sym__str_single_quotes] = ACTIONS(1971), - [sym__str_back_ticks] = ACTIONS(1971), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1971), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [aux_sym_unquoted_token1] = ACTIONS(1969), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1971), + [1538] = { + [sym_comment] = STATE(1538), + [ts_builtin_sym_end] = ACTIONS(4768), + [sym__newline] = ACTIONS(4768), + [anon_sym_SEMI] = ACTIONS(4768), + [anon_sym_PIPE] = ACTIONS(4768), + [anon_sym_err_GT_PIPE] = ACTIONS(4768), + [anon_sym_out_GT_PIPE] = ACTIONS(4768), + [anon_sym_e_GT_PIPE] = ACTIONS(4768), + [anon_sym_o_GT_PIPE] = ACTIONS(4768), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4768), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4768), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4768), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4768), + [anon_sym_LBRACK] = ACTIONS(4768), + [anon_sym_LPAREN] = ACTIONS(4768), + [anon_sym_DOLLAR] = ACTIONS(4770), + [anon_sym_DASH_DASH] = ACTIONS(4768), + [anon_sym_DASH2] = ACTIONS(4770), + [anon_sym_LBRACE] = ACTIONS(4768), + [anon_sym_DOT_DOT] = ACTIONS(4770), + [anon_sym_DOT_DOT2] = ACTIONS(4807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4770), + [anon_sym_DOT_DOT_LT] = ACTIONS(4770), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4809), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4809), + [anon_sym_null] = ACTIONS(4768), + [anon_sym_true] = ACTIONS(4768), + [anon_sym_false] = ACTIONS(4768), + [aux_sym__val_number_decimal_token1] = ACTIONS(4770), + [aux_sym__val_number_decimal_token2] = ACTIONS(4768), + [aux_sym__val_number_decimal_token3] = ACTIONS(4768), + [aux_sym__val_number_decimal_token4] = ACTIONS(4768), + [aux_sym__val_number_token1] = ACTIONS(4768), + [aux_sym__val_number_token2] = ACTIONS(4768), + [aux_sym__val_number_token3] = ACTIONS(4768), + [aux_sym__val_number_token4] = ACTIONS(4768), + [aux_sym__val_number_token5] = ACTIONS(4768), + [aux_sym__val_number_token6] = ACTIONS(4768), + [anon_sym_0b] = ACTIONS(4770), + [anon_sym_0o] = ACTIONS(4770), + [anon_sym_0x] = ACTIONS(4770), + [sym_val_date] = ACTIONS(4768), + [anon_sym_DQUOTE] = ACTIONS(4768), + [sym__str_single_quotes] = ACTIONS(4768), + [sym__str_back_ticks] = ACTIONS(4768), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4768), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4768), + [anon_sym_err_GT] = ACTIONS(4770), + [anon_sym_out_GT] = ACTIONS(4770), + [anon_sym_e_GT] = ACTIONS(4770), + [anon_sym_o_GT] = ACTIONS(4770), + [anon_sym_err_PLUSout_GT] = ACTIONS(4770), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4770), + [anon_sym_o_PLUSe_GT] = ACTIONS(4770), + [anon_sym_e_PLUSo_GT] = ACTIONS(4770), + [anon_sym_err_GT_GT] = ACTIONS(4768), + [anon_sym_out_GT_GT] = ACTIONS(4768), + [anon_sym_e_GT_GT] = ACTIONS(4768), + [anon_sym_o_GT_GT] = ACTIONS(4768), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4768), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4768), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4768), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4768), + [aux_sym_unquoted_token1] = ACTIONS(4770), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4768), }, - [1525] = { - [sym_comment] = STATE(1525), - [sym__newline] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_err_GT_PIPE] = ACTIONS(2122), - [anon_sym_out_GT_PIPE] = ACTIONS(2122), - [anon_sym_e_GT_PIPE] = ACTIONS(2122), - [anon_sym_o_GT_PIPE] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_null] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2122), - [aux_sym__val_number_decimal_token3] = ACTIONS(2122), - [aux_sym__val_number_decimal_token4] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_0b] = ACTIONS(2120), - [anon_sym_0o] = ACTIONS(2120), - [anon_sym_0x] = ACTIONS(2120), - [sym_val_date] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), - [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(2122), - [anon_sym_out_GT_GT] = ACTIONS(2122), - [anon_sym_e_GT_GT] = ACTIONS(2122), - [anon_sym_o_GT_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2122), - [aux_sym_unquoted_token1] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2122), + [1539] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1539), + [sym__newline] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_err_GT_PIPE] = ACTIONS(4811), + [anon_sym_out_GT_PIPE] = ACTIONS(4811), + [anon_sym_e_GT_PIPE] = ACTIONS(4811), + [anon_sym_o_GT_PIPE] = ACTIONS(4811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_RPAREN] = ACTIONS(4811), + [anon_sym_DOLLAR] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_DASH2] = ACTIONS(4813), + [anon_sym_LBRACE] = ACTIONS(4811), + [anon_sym_RBRACE] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4813), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4811), + [anon_sym_DOT_DOT_LT] = ACTIONS(4811), + [anon_sym_null] = ACTIONS(4811), + [anon_sym_true] = ACTIONS(4811), + [anon_sym_false] = ACTIONS(4811), + [aux_sym__val_number_decimal_token1] = ACTIONS(4813), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [aux_sym__val_number_decimal_token3] = ACTIONS(4811), + [aux_sym__val_number_decimal_token4] = ACTIONS(4811), + [aux_sym__val_number_token1] = ACTIONS(4811), + [aux_sym__val_number_token2] = ACTIONS(4811), + [aux_sym__val_number_token3] = ACTIONS(4811), + [aux_sym__val_number_token4] = ACTIONS(4811), + [aux_sym__val_number_token5] = ACTIONS(4811), + [aux_sym__val_number_token6] = ACTIONS(4811), + [anon_sym_0b] = ACTIONS(4813), + [anon_sym_0o] = ACTIONS(4813), + [anon_sym_0x] = ACTIONS(4813), + [sym_val_date] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [sym__str_single_quotes] = ACTIONS(4811), + [sym__str_back_ticks] = ACTIONS(4811), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(4813), + [anon_sym_out_GT] = ACTIONS(4813), + [anon_sym_e_GT] = ACTIONS(4813), + [anon_sym_o_GT] = ACTIONS(4813), + [anon_sym_err_PLUSout_GT] = ACTIONS(4813), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4813), + [anon_sym_o_PLUSe_GT] = ACTIONS(4813), + [anon_sym_e_PLUSo_GT] = ACTIONS(4813), + [anon_sym_err_GT_GT] = ACTIONS(4811), + [anon_sym_out_GT_GT] = ACTIONS(4811), + [anon_sym_e_GT_GT] = ACTIONS(4811), + [anon_sym_o_GT_GT] = ACTIONS(4811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4811), + [aux_sym_unquoted_token1] = ACTIONS(4813), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4811), }, - [1526] = { - [sym_comment] = STATE(1526), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), + [1540] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1540), + [sym__newline] = ACTIONS(4815), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_err_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_GT_PIPE] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_RPAREN] = ACTIONS(4815), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4815), + [anon_sym_DASH2] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_RBRACE] = ACTIONS(4815), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4815), + [anon_sym_DOT_DOT_LT] = ACTIONS(4815), + [anon_sym_null] = ACTIONS(4815), + [anon_sym_true] = ACTIONS(4815), + [anon_sym_false] = ACTIONS(4815), + [aux_sym__val_number_decimal_token1] = ACTIONS(4817), + [aux_sym__val_number_decimal_token2] = ACTIONS(4815), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_decimal_token4] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(4815), + [aux_sym__val_number_token2] = ACTIONS(4815), + [aux_sym__val_number_token3] = ACTIONS(4815), + [aux_sym__val_number_token4] = ACTIONS(4815), + [aux_sym__val_number_token5] = ACTIONS(4815), + [aux_sym__val_number_token6] = ACTIONS(4815), + [anon_sym_0b] = ACTIONS(4817), + [anon_sym_0o] = ACTIONS(4817), + [anon_sym_0x] = ACTIONS(4817), + [sym_val_date] = ACTIONS(4815), + [anon_sym_DQUOTE] = ACTIONS(4815), + [sym__str_single_quotes] = ACTIONS(4815), + [sym__str_back_ticks] = ACTIONS(4815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4815), + [anon_sym_err_GT] = ACTIONS(4817), + [anon_sym_out_GT] = ACTIONS(4817), + [anon_sym_e_GT] = ACTIONS(4817), + [anon_sym_o_GT] = ACTIONS(4817), + [anon_sym_err_PLUSout_GT] = ACTIONS(4817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4817), + [anon_sym_o_PLUSe_GT] = ACTIONS(4817), + [anon_sym_e_PLUSo_GT] = ACTIONS(4817), + [anon_sym_err_GT_GT] = ACTIONS(4815), + [anon_sym_out_GT_GT] = ACTIONS(4815), + [anon_sym_e_GT_GT] = ACTIONS(4815), + [anon_sym_o_GT_GT] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4815), + [aux_sym_unquoted_token1] = ACTIONS(4817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4815), + }, + [1541] = { + [sym_comment] = STATE(1541), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [aux_sym__immediate_decimal_token2] = ACTIONS(4780), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), }, - [1527] = { - [sym_comment] = STATE(1527), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4782), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [1542] = { + [sym_comment] = STATE(1542), + [sym__newline] = ACTIONS(4819), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4819), + [anon_sym_err_GT_PIPE] = ACTIONS(4819), + [anon_sym_out_GT_PIPE] = ACTIONS(4819), + [anon_sym_e_GT_PIPE] = ACTIONS(4819), + [anon_sym_o_GT_PIPE] = ACTIONS(4819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4819), + [anon_sym_RPAREN] = ACTIONS(4819), + [anon_sym_DOLLAR] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DASH2] = ACTIONS(4821), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_RBRACE] = ACTIONS(4819), + [anon_sym_DOT_DOT] = ACTIONS(4821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4819), + [anon_sym_DOT_DOT_LT] = ACTIONS(4819), + [anon_sym_null] = ACTIONS(4821), + [anon_sym_true] = ACTIONS(4821), + [anon_sym_false] = ACTIONS(4821), + [aux_sym__val_number_decimal_token1] = ACTIONS(4821), + [aux_sym__val_number_decimal_token2] = ACTIONS(4821), + [aux_sym__val_number_decimal_token3] = ACTIONS(4819), + [aux_sym__val_number_decimal_token4] = ACTIONS(4819), + [aux_sym__val_number_token1] = ACTIONS(4821), + [aux_sym__val_number_token2] = ACTIONS(4821), + [aux_sym__val_number_token3] = ACTIONS(4821), + [aux_sym__val_number_token4] = ACTIONS(4821), + [aux_sym__val_number_token5] = ACTIONS(4821), + [aux_sym__val_number_token6] = ACTIONS(4821), + [anon_sym_0b] = ACTIONS(4821), + [anon_sym_0o] = ACTIONS(4821), + [anon_sym_0x] = ACTIONS(4821), + [sym_val_date] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(4819), + [sym__str_single_quotes] = ACTIONS(4819), + [sym__str_back_ticks] = ACTIONS(4819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4819), + [anon_sym_err_GT] = ACTIONS(4821), + [anon_sym_out_GT] = ACTIONS(4821), + [anon_sym_e_GT] = ACTIONS(4821), + [anon_sym_o_GT] = ACTIONS(4821), + [anon_sym_err_PLUSout_GT] = ACTIONS(4821), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4821), + [anon_sym_o_PLUSe_GT] = ACTIONS(4821), + [anon_sym_e_PLUSo_GT] = ACTIONS(4821), + [anon_sym_err_GT_GT] = ACTIONS(4819), + [anon_sym_out_GT_GT] = ACTIONS(4819), + [anon_sym_e_GT_GT] = ACTIONS(4819), + [anon_sym_o_GT_GT] = ACTIONS(4819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4819), + [anon_sym_EQ2] = ACTIONS(4823), + [sym_short_flag_identifier] = ACTIONS(4825), + [aux_sym_unquoted_token1] = ACTIONS(4821), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4819), }, - [1528] = { - [sym_comment] = STATE(1528), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1589), - [anon_sym_xor2] = ACTIONS(1589), - [anon_sym_or2] = ACTIONS(1589), - [anon_sym_not_DASHin2] = ACTIONS(1589), - [anon_sym_starts_DASHwith2] = ACTIONS(1589), - [anon_sym_ends_DASHwith2] = ACTIONS(1589), - [anon_sym_EQ_EQ2] = ACTIONS(1589), - [anon_sym_BANG_EQ2] = ACTIONS(1589), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1589), - [anon_sym_GT_EQ2] = ACTIONS(1589), - [anon_sym_EQ_TILDE2] = ACTIONS(1589), - [anon_sym_BANG_TILDE2] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR_STAR2] = ACTIONS(1589), - [anon_sym_PLUS_PLUS2] = ACTIONS(1589), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1589), - [anon_sym_SLASH_SLASH2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1589), - [anon_sym_bit_DASHshr2] = ACTIONS(1589), - [anon_sym_bit_DASHand2] = ACTIONS(1589), - [anon_sym_bit_DASHxor2] = ACTIONS(1589), - [anon_sym_bit_DASHor2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT] = ACTIONS(4784), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4786), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1587), + [1543] = { + [sym_comment] = STATE(1543), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4736), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1544] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1544), + [sym__newline] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_err_GT_PIPE] = ACTIONS(4827), + [anon_sym_out_GT_PIPE] = ACTIONS(4827), + [anon_sym_e_GT_PIPE] = ACTIONS(4827), + [anon_sym_o_GT_PIPE] = ACTIONS(4827), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4827), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4827), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4827), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4829), + [anon_sym_RPAREN] = ACTIONS(4827), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_DASH2] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_RBRACE] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4829), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4827), + [anon_sym_DOT_DOT_LT] = ACTIONS(4827), + [anon_sym_null] = ACTIONS(4827), + [anon_sym_true] = ACTIONS(4827), + [anon_sym_false] = ACTIONS(4827), + [aux_sym__val_number_decimal_token1] = ACTIONS(4829), + [aux_sym__val_number_decimal_token2] = ACTIONS(4827), + [aux_sym__val_number_decimal_token3] = ACTIONS(4827), + [aux_sym__val_number_decimal_token4] = ACTIONS(4827), + [aux_sym__val_number_token1] = ACTIONS(4827), + [aux_sym__val_number_token2] = ACTIONS(4827), + [aux_sym__val_number_token3] = ACTIONS(4827), + [aux_sym__val_number_token4] = ACTIONS(4827), + [aux_sym__val_number_token5] = ACTIONS(4827), + [aux_sym__val_number_token6] = ACTIONS(4827), + [anon_sym_0b] = ACTIONS(4829), + [anon_sym_0o] = ACTIONS(4829), + [anon_sym_0x] = ACTIONS(4829), + [sym_val_date] = ACTIONS(4827), + [anon_sym_DQUOTE] = ACTIONS(4827), + [sym__str_single_quotes] = ACTIONS(4827), + [sym__str_back_ticks] = ACTIONS(4827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4827), + [anon_sym_err_GT] = ACTIONS(4829), + [anon_sym_out_GT] = ACTIONS(4829), + [anon_sym_e_GT] = ACTIONS(4829), + [anon_sym_o_GT] = ACTIONS(4829), + [anon_sym_err_PLUSout_GT] = ACTIONS(4829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4829), + [anon_sym_o_PLUSe_GT] = ACTIONS(4829), + [anon_sym_e_PLUSo_GT] = ACTIONS(4829), + [anon_sym_err_GT_GT] = ACTIONS(4827), + [anon_sym_out_GT_GT] = ACTIONS(4827), + [anon_sym_e_GT_GT] = ACTIONS(4827), + [anon_sym_o_GT_GT] = ACTIONS(4827), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4827), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4827), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4827), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4827), + [aux_sym_unquoted_token1] = ACTIONS(4829), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4827), + }, + [1545] = { + [sym_cell_path] = STATE(2042), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1545), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1837), + [anon_sym_SEMI] = ACTIONS(1837), + [anon_sym_PIPE] = ACTIONS(1837), + [anon_sym_err_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_GT_PIPE] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1837), + [anon_sym_RPAREN] = ACTIONS(1837), + [anon_sym_GT2] = ACTIONS(1835), + [anon_sym_DASH2] = ACTIONS(1837), + [anon_sym_in2] = ACTIONS(1837), + [anon_sym_if] = ACTIONS(1837), + [anon_sym_LBRACE] = ACTIONS(1837), + [anon_sym_RBRACE] = ACTIONS(1837), + [anon_sym_EQ_GT] = ACTIONS(1837), + [anon_sym_STAR2] = ACTIONS(1835), + [anon_sym_and2] = ACTIONS(1837), + [anon_sym_xor2] = ACTIONS(1837), + [anon_sym_or2] = ACTIONS(1837), + [anon_sym_not_DASHin2] = ACTIONS(1837), + [anon_sym_starts_DASHwith2] = ACTIONS(1837), + [anon_sym_ends_DASHwith2] = ACTIONS(1837), + [anon_sym_EQ_EQ2] = ACTIONS(1837), + [anon_sym_BANG_EQ2] = ACTIONS(1837), + [anon_sym_LT2] = ACTIONS(1835), + [anon_sym_LT_EQ2] = ACTIONS(1837), + [anon_sym_GT_EQ2] = ACTIONS(1837), + [anon_sym_EQ_TILDE2] = ACTIONS(1837), + [anon_sym_BANG_TILDE2] = ACTIONS(1837), + [anon_sym_STAR_STAR2] = ACTIONS(1837), + [anon_sym_PLUS_PLUS2] = ACTIONS(1837), + [anon_sym_SLASH2] = ACTIONS(1835), + [anon_sym_mod2] = ACTIONS(1837), + [anon_sym_SLASH_SLASH2] = ACTIONS(1837), + [anon_sym_PLUS2] = ACTIONS(1835), + [anon_sym_bit_DASHshl2] = ACTIONS(1837), + [anon_sym_bit_DASHshr2] = ACTIONS(1837), + [anon_sym_bit_DASHand2] = ACTIONS(1837), + [anon_sym_bit_DASHxor2] = ACTIONS(1837), + [anon_sym_bit_DASHor2] = ACTIONS(1837), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1835), + [anon_sym_out_GT] = ACTIONS(1835), + [anon_sym_e_GT] = ACTIONS(1835), + [anon_sym_o_GT] = ACTIONS(1835), + [anon_sym_err_PLUSout_GT] = ACTIONS(1835), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1835), + [anon_sym_o_PLUSe_GT] = ACTIONS(1835), + [anon_sym_e_PLUSo_GT] = ACTIONS(1835), + [anon_sym_err_GT_GT] = ACTIONS(1837), + [anon_sym_out_GT_GT] = ACTIONS(1837), + [anon_sym_e_GT_GT] = ACTIONS(1837), + [anon_sym_o_GT_GT] = ACTIONS(1837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1837), [anon_sym_POUND] = ACTIONS(251), }, - [1529] = { - [sym_cell_path] = STATE(1881), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1529), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1975), - [sym__newline] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_err_GT_PIPE] = ACTIONS(1975), - [anon_sym_out_GT_PIPE] = ACTIONS(1975), - [anon_sym_e_GT_PIPE] = ACTIONS(1975), - [anon_sym_o_GT_PIPE] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1975), - [anon_sym_LBRACK] = ACTIONS(1975), - [anon_sym_LPAREN] = ACTIONS(1975), - [anon_sym_DOLLAR] = ACTIONS(1973), - [anon_sym_DASH_DASH] = ACTIONS(1975), - [anon_sym_DASH2] = ACTIONS(1973), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_DOT_DOT] = ACTIONS(1973), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1975), - [anon_sym_DOT_DOT_LT] = ACTIONS(1975), - [anon_sym_null] = ACTIONS(1975), - [anon_sym_true] = ACTIONS(1975), - [anon_sym_false] = ACTIONS(1975), - [aux_sym__val_number_decimal_token1] = ACTIONS(1973), - [aux_sym__val_number_decimal_token2] = ACTIONS(1975), - [aux_sym__val_number_decimal_token3] = ACTIONS(1975), - [aux_sym__val_number_decimal_token4] = ACTIONS(1975), - [aux_sym__val_number_token1] = ACTIONS(1975), - [aux_sym__val_number_token2] = ACTIONS(1975), - [aux_sym__val_number_token3] = ACTIONS(1975), - [aux_sym__val_number_token4] = ACTIONS(1975), - [aux_sym__val_number_token5] = ACTIONS(1975), - [aux_sym__val_number_token6] = ACTIONS(1975), - [anon_sym_0b] = ACTIONS(1973), - [anon_sym_0o] = ACTIONS(1973), - [anon_sym_0x] = ACTIONS(1973), - [sym_val_date] = ACTIONS(1975), - [anon_sym_DQUOTE] = ACTIONS(1975), - [sym__str_single_quotes] = ACTIONS(1975), - [sym__str_back_ticks] = ACTIONS(1975), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1975), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1973), - [anon_sym_out_GT] = ACTIONS(1973), - [anon_sym_e_GT] = ACTIONS(1973), - [anon_sym_o_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT] = ACTIONS(1973), - [anon_sym_err_GT_GT] = ACTIONS(1975), - [anon_sym_out_GT_GT] = ACTIONS(1975), - [anon_sym_e_GT_GT] = ACTIONS(1975), - [anon_sym_o_GT_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1975), - [aux_sym_unquoted_token1] = ACTIONS(1973), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1975), + [1546] = { + [sym_cell_path] = STATE(2036), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1546), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1903), + [anon_sym_SEMI] = ACTIONS(1903), + [anon_sym_PIPE] = ACTIONS(1903), + [anon_sym_err_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_GT_PIPE] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1903), + [anon_sym_RPAREN] = ACTIONS(1903), + [anon_sym_GT2] = ACTIONS(1901), + [anon_sym_DASH2] = ACTIONS(1903), + [anon_sym_in2] = ACTIONS(1903), + [anon_sym_if] = ACTIONS(1903), + [anon_sym_LBRACE] = ACTIONS(1903), + [anon_sym_RBRACE] = ACTIONS(1903), + [anon_sym_EQ_GT] = ACTIONS(1903), + [anon_sym_STAR2] = ACTIONS(1901), + [anon_sym_and2] = ACTIONS(1903), + [anon_sym_xor2] = ACTIONS(1903), + [anon_sym_or2] = ACTIONS(1903), + [anon_sym_not_DASHin2] = ACTIONS(1903), + [anon_sym_starts_DASHwith2] = ACTIONS(1903), + [anon_sym_ends_DASHwith2] = ACTIONS(1903), + [anon_sym_EQ_EQ2] = ACTIONS(1903), + [anon_sym_BANG_EQ2] = ACTIONS(1903), + [anon_sym_LT2] = ACTIONS(1901), + [anon_sym_LT_EQ2] = ACTIONS(1903), + [anon_sym_GT_EQ2] = ACTIONS(1903), + [anon_sym_EQ_TILDE2] = ACTIONS(1903), + [anon_sym_BANG_TILDE2] = ACTIONS(1903), + [anon_sym_STAR_STAR2] = ACTIONS(1903), + [anon_sym_PLUS_PLUS2] = ACTIONS(1903), + [anon_sym_SLASH2] = ACTIONS(1901), + [anon_sym_mod2] = ACTIONS(1903), + [anon_sym_SLASH_SLASH2] = ACTIONS(1903), + [anon_sym_PLUS2] = ACTIONS(1901), + [anon_sym_bit_DASHshl2] = ACTIONS(1903), + [anon_sym_bit_DASHshr2] = ACTIONS(1903), + [anon_sym_bit_DASHand2] = ACTIONS(1903), + [anon_sym_bit_DASHxor2] = ACTIONS(1903), + [anon_sym_bit_DASHor2] = ACTIONS(1903), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1901), + [anon_sym_out_GT] = ACTIONS(1901), + [anon_sym_e_GT] = ACTIONS(1901), + [anon_sym_o_GT] = ACTIONS(1901), + [anon_sym_err_PLUSout_GT] = ACTIONS(1901), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1901), + [anon_sym_o_PLUSe_GT] = ACTIONS(1901), + [anon_sym_e_PLUSo_GT] = ACTIONS(1901), + [anon_sym_err_GT_GT] = ACTIONS(1903), + [anon_sym_out_GT_GT] = ACTIONS(1903), + [anon_sym_e_GT_GT] = ACTIONS(1903), + [anon_sym_o_GT_GT] = ACTIONS(1903), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1903), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1903), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1903), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1903), + [anon_sym_POUND] = ACTIONS(251), }, - [1530] = { - [sym_comment] = STATE(1530), - [sym__newline] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_err_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_GT_PIPE] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_RPAREN] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_RBRACE] = ACTIONS(2176), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_DOT_DOT2] = ACTIONS(4788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2170), - [anon_sym_DOT_DOT_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4790), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4790), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2170), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2176), - [aux_sym__val_number_token5] = ACTIONS(2176), - [aux_sym__val_number_token6] = ACTIONS(2176), - [anon_sym_0b] = ACTIONS(2170), - [anon_sym_0o] = ACTIONS(2170), - [anon_sym_0x] = ACTIONS(2170), - [sym_val_date] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_err_GT] = ACTIONS(2170), - [anon_sym_out_GT] = ACTIONS(2170), - [anon_sym_e_GT] = ACTIONS(2170), - [anon_sym_o_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT] = ACTIONS(2170), - [anon_sym_err_GT_GT] = ACTIONS(2176), - [anon_sym_out_GT_GT] = ACTIONS(2176), - [anon_sym_e_GT_GT] = ACTIONS(2176), - [anon_sym_o_GT_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), - [aux_sym_unquoted_token1] = ACTIONS(2170), + [1547] = { + [sym_comment] = STATE(1547), + [ts_builtin_sym_end] = ACTIONS(2086), + [sym__newline] = ACTIONS(2086), + [anon_sym_SEMI] = ACTIONS(2086), + [anon_sym_PIPE] = ACTIONS(2086), + [anon_sym_err_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_GT_PIPE] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2086), + [anon_sym_LBRACK] = ACTIONS(2086), + [anon_sym_LPAREN] = ACTIONS(2086), + [anon_sym_DOLLAR] = ACTIONS(2080), + [anon_sym_DASH_DASH] = ACTIONS(2086), + [anon_sym_DASH2] = ACTIONS(2080), + [anon_sym_LBRACE] = ACTIONS(2086), + [anon_sym_DOT_DOT] = ACTIONS(2080), + [anon_sym_DOT_DOT2] = ACTIONS(4833), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2080), + [anon_sym_DOT_DOT_LT] = ACTIONS(2080), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4835), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4835), + [anon_sym_null] = ACTIONS(2086), + [anon_sym_true] = ACTIONS(2086), + [anon_sym_false] = ACTIONS(2086), + [aux_sym__val_number_decimal_token1] = ACTIONS(2080), + [aux_sym__val_number_decimal_token2] = ACTIONS(2086), + [aux_sym__val_number_decimal_token3] = ACTIONS(2086), + [aux_sym__val_number_decimal_token4] = ACTIONS(2086), + [aux_sym__val_number_token1] = ACTIONS(2086), + [aux_sym__val_number_token2] = ACTIONS(2086), + [aux_sym__val_number_token3] = ACTIONS(2086), + [aux_sym__val_number_token4] = ACTIONS(2086), + [aux_sym__val_number_token5] = ACTIONS(2086), + [aux_sym__val_number_token6] = ACTIONS(2086), + [anon_sym_0b] = ACTIONS(2080), + [anon_sym_0o] = ACTIONS(2080), + [anon_sym_0x] = ACTIONS(2080), + [sym_val_date] = ACTIONS(2086), + [anon_sym_DQUOTE] = ACTIONS(2086), + [sym__str_single_quotes] = ACTIONS(2086), + [sym__str_back_ticks] = ACTIONS(2086), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2086), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2086), + [anon_sym_err_GT] = ACTIONS(2080), + [anon_sym_out_GT] = ACTIONS(2080), + [anon_sym_e_GT] = ACTIONS(2080), + [anon_sym_o_GT] = ACTIONS(2080), + [anon_sym_err_PLUSout_GT] = ACTIONS(2080), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2080), + [anon_sym_o_PLUSe_GT] = ACTIONS(2080), + [anon_sym_e_PLUSo_GT] = ACTIONS(2080), + [anon_sym_err_GT_GT] = ACTIONS(2086), + [anon_sym_out_GT_GT] = ACTIONS(2086), + [anon_sym_e_GT_GT] = ACTIONS(2086), + [anon_sym_o_GT_GT] = ACTIONS(2086), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2086), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2086), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2086), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2086), + [aux_sym_unquoted_token1] = ACTIONS(2080), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2086), + }, + [1548] = { + [sym_comment] = STATE(1548), + [sym__newline] = ACTIONS(4837), + [anon_sym_SEMI] = ACTIONS(4837), + [anon_sym_PIPE] = ACTIONS(4837), + [anon_sym_err_GT_PIPE] = ACTIONS(4837), + [anon_sym_out_GT_PIPE] = ACTIONS(4837), + [anon_sym_e_GT_PIPE] = ACTIONS(4837), + [anon_sym_o_GT_PIPE] = ACTIONS(4837), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4837), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4837), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4837), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4837), + [anon_sym_LBRACK] = ACTIONS(4837), + [anon_sym_LPAREN] = ACTIONS(4837), + [anon_sym_RPAREN] = ACTIONS(4837), + [anon_sym_DOLLAR] = ACTIONS(4839), + [anon_sym_DASH_DASH] = ACTIONS(4837), + [anon_sym_DASH2] = ACTIONS(4839), + [anon_sym_LBRACE] = ACTIONS(4837), + [anon_sym_DOT_DOT] = ACTIONS(4839), + [anon_sym_DOT_DOT2] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4839), + [anon_sym_DOT_DOT_LT] = ACTIONS(4839), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(4837), + [anon_sym_true] = ACTIONS(4837), + [anon_sym_false] = ACTIONS(4837), + [aux_sym__val_number_decimal_token1] = ACTIONS(4839), + [aux_sym__val_number_decimal_token2] = ACTIONS(4837), + [aux_sym__val_number_decimal_token3] = ACTIONS(4837), + [aux_sym__val_number_decimal_token4] = ACTIONS(4837), + [aux_sym__val_number_token1] = ACTIONS(4837), + [aux_sym__val_number_token2] = ACTIONS(4837), + [aux_sym__val_number_token3] = ACTIONS(4837), + [aux_sym__val_number_token4] = ACTIONS(4837), + [aux_sym__val_number_token5] = ACTIONS(4837), + [aux_sym__val_number_token6] = ACTIONS(4837), + [anon_sym_0b] = ACTIONS(4839), + [anon_sym_0o] = ACTIONS(4839), + [anon_sym_0x] = ACTIONS(4839), + [sym_val_date] = ACTIONS(4837), + [anon_sym_DQUOTE] = ACTIONS(4837), + [sym__str_single_quotes] = ACTIONS(4837), + [sym__str_back_ticks] = ACTIONS(4837), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4837), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4837), + [anon_sym_err_GT] = ACTIONS(4839), + [anon_sym_out_GT] = ACTIONS(4839), + [anon_sym_e_GT] = ACTIONS(4839), + [anon_sym_o_GT] = ACTIONS(4839), + [anon_sym_err_PLUSout_GT] = ACTIONS(4839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4839), + [anon_sym_o_PLUSe_GT] = ACTIONS(4839), + [anon_sym_e_PLUSo_GT] = ACTIONS(4839), + [anon_sym_err_GT_GT] = ACTIONS(4837), + [anon_sym_out_GT_GT] = ACTIONS(4837), + [anon_sym_e_GT_GT] = ACTIONS(4837), + [anon_sym_o_GT_GT] = ACTIONS(4837), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4837), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4837), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4837), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4837), + [aux_sym_unquoted_token1] = ACTIONS(4839), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4837), + }, + [1549] = { + [sym_cell_path] = STATE(2037), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1549), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1970), + [anon_sym_SEMI] = ACTIONS(1970), + [anon_sym_PIPE] = ACTIONS(1970), + [anon_sym_err_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_GT_PIPE] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1970), + [anon_sym_RPAREN] = ACTIONS(1970), + [anon_sym_GT2] = ACTIONS(1968), + [anon_sym_DASH2] = ACTIONS(1970), + [anon_sym_in2] = ACTIONS(1970), + [anon_sym_if] = ACTIONS(1970), + [anon_sym_LBRACE] = ACTIONS(1970), + [anon_sym_RBRACE] = ACTIONS(1970), + [anon_sym_EQ_GT] = ACTIONS(1970), + [anon_sym_STAR2] = ACTIONS(1968), + [anon_sym_and2] = ACTIONS(1970), + [anon_sym_xor2] = ACTIONS(1970), + [anon_sym_or2] = ACTIONS(1970), + [anon_sym_not_DASHin2] = ACTIONS(1970), + [anon_sym_starts_DASHwith2] = ACTIONS(1970), + [anon_sym_ends_DASHwith2] = ACTIONS(1970), + [anon_sym_EQ_EQ2] = ACTIONS(1970), + [anon_sym_BANG_EQ2] = ACTIONS(1970), + [anon_sym_LT2] = ACTIONS(1968), + [anon_sym_LT_EQ2] = ACTIONS(1970), + [anon_sym_GT_EQ2] = ACTIONS(1970), + [anon_sym_EQ_TILDE2] = ACTIONS(1970), + [anon_sym_BANG_TILDE2] = ACTIONS(1970), + [anon_sym_STAR_STAR2] = ACTIONS(1970), + [anon_sym_PLUS_PLUS2] = ACTIONS(1970), + [anon_sym_SLASH2] = ACTIONS(1968), + [anon_sym_mod2] = ACTIONS(1970), + [anon_sym_SLASH_SLASH2] = ACTIONS(1970), + [anon_sym_PLUS2] = ACTIONS(1968), + [anon_sym_bit_DASHshl2] = ACTIONS(1970), + [anon_sym_bit_DASHshr2] = ACTIONS(1970), + [anon_sym_bit_DASHand2] = ACTIONS(1970), + [anon_sym_bit_DASHxor2] = ACTIONS(1970), + [anon_sym_bit_DASHor2] = ACTIONS(1970), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1968), + [anon_sym_out_GT] = ACTIONS(1968), + [anon_sym_e_GT] = ACTIONS(1968), + [anon_sym_o_GT] = ACTIONS(1968), + [anon_sym_err_PLUSout_GT] = ACTIONS(1968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1968), + [anon_sym_o_PLUSe_GT] = ACTIONS(1968), + [anon_sym_e_PLUSo_GT] = ACTIONS(1968), + [anon_sym_err_GT_GT] = ACTIONS(1970), + [anon_sym_out_GT_GT] = ACTIONS(1970), + [anon_sym_e_GT_GT] = ACTIONS(1970), + [anon_sym_o_GT_GT] = ACTIONS(1970), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1970), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1970), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1970), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1970), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2176), }, - [1531] = { - [sym_comment] = STATE(1531), - [ts_builtin_sym_end] = ACTIONS(1597), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1597), - [anon_sym_in2] = ACTIONS(1597), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1597), - [anon_sym_xor2] = ACTIONS(1597), - [anon_sym_or2] = ACTIONS(1597), - [anon_sym_not_DASHin2] = ACTIONS(1597), - [anon_sym_starts_DASHwith2] = ACTIONS(1597), - [anon_sym_ends_DASHwith2] = ACTIONS(1597), - [anon_sym_EQ_EQ2] = ACTIONS(1597), - [anon_sym_BANG_EQ2] = ACTIONS(1597), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1597), - [anon_sym_GT_EQ2] = ACTIONS(1597), - [anon_sym_EQ_TILDE2] = ACTIONS(1597), - [anon_sym_BANG_TILDE2] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_STAR_STAR2] = ACTIONS(1597), - [anon_sym_PLUS_PLUS2] = ACTIONS(1597), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1597), - [anon_sym_SLASH_SLASH2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1597), - [anon_sym_bit_DASHshr2] = ACTIONS(1597), - [anon_sym_bit_DASHand2] = ACTIONS(1597), - [anon_sym_bit_DASHxor2] = ACTIONS(1597), - [anon_sym_bit_DASHor2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [aux_sym__immediate_decimal_token1] = ACTIONS(4792), - [aux_sym__immediate_decimal_token2] = ACTIONS(4794), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token2] = ACTIONS(1595), + [1550] = { + [sym_comment] = STATE(1550), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_RPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_RBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4841), + [anon_sym_DOT_DOT_EQ] = ACTIONS(954), + [anon_sym_DOT_DOT_LT] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(954), }, - [1532] = { - [sym_path] = STATE(1659), - [sym_comment] = STATE(1532), - [aux_sym_cell_path_repeat1] = STATE(1494), + [1551] = { + [sym_comment] = STATE(1551), + [ts_builtin_sym_end] = ACTIONS(2065), + [sym__newline] = ACTIONS(2065), + [anon_sym_SEMI] = ACTIONS(2065), + [anon_sym_PIPE] = ACTIONS(2065), + [anon_sym_err_GT_PIPE] = ACTIONS(2065), + [anon_sym_out_GT_PIPE] = ACTIONS(2065), + [anon_sym_e_GT_PIPE] = ACTIONS(2065), + [anon_sym_o_GT_PIPE] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2065), + [anon_sym_LBRACK] = ACTIONS(2065), + [anon_sym_LPAREN] = ACTIONS(2065), + [anon_sym_DOLLAR] = ACTIONS(2059), + [anon_sym_DASH_DASH] = ACTIONS(2065), + [anon_sym_DASH2] = ACTIONS(2059), + [anon_sym_LBRACE] = ACTIONS(2065), + [anon_sym_DOT_DOT] = ACTIONS(2059), + [anon_sym_DOT_DOT2] = ACTIONS(4843), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2059), + [anon_sym_DOT_DOT_LT] = ACTIONS(2059), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4845), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4845), + [anon_sym_null] = ACTIONS(2065), + [anon_sym_true] = ACTIONS(2065), + [anon_sym_false] = ACTIONS(2065), + [aux_sym__val_number_decimal_token1] = ACTIONS(2059), + [aux_sym__val_number_decimal_token2] = ACTIONS(2065), + [aux_sym__val_number_decimal_token3] = ACTIONS(2065), + [aux_sym__val_number_decimal_token4] = ACTIONS(2065), + [aux_sym__val_number_token1] = ACTIONS(2065), + [aux_sym__val_number_token2] = ACTIONS(2065), + [aux_sym__val_number_token3] = ACTIONS(2065), + [aux_sym__val_number_token4] = ACTIONS(2065), + [aux_sym__val_number_token5] = ACTIONS(2065), + [aux_sym__val_number_token6] = ACTIONS(2065), + [anon_sym_0b] = ACTIONS(2059), + [anon_sym_0o] = ACTIONS(2059), + [anon_sym_0x] = ACTIONS(2059), + [sym_val_date] = ACTIONS(2065), + [anon_sym_DQUOTE] = ACTIONS(2065), + [sym__str_single_quotes] = ACTIONS(2065), + [sym__str_back_ticks] = ACTIONS(2065), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2065), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2065), + [anon_sym_err_GT] = ACTIONS(2059), + [anon_sym_out_GT] = ACTIONS(2059), + [anon_sym_e_GT] = ACTIONS(2059), + [anon_sym_o_GT] = ACTIONS(2059), + [anon_sym_err_PLUSout_GT] = ACTIONS(2059), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2059), + [anon_sym_o_PLUSe_GT] = ACTIONS(2059), + [anon_sym_e_PLUSo_GT] = ACTIONS(2059), + [anon_sym_err_GT_GT] = ACTIONS(2065), + [anon_sym_out_GT_GT] = ACTIONS(2065), + [anon_sym_e_GT_GT] = ACTIONS(2065), + [anon_sym_o_GT_GT] = ACTIONS(2065), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2065), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2065), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2065), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2065), + [aux_sym_unquoted_token1] = ACTIONS(2059), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2065), + }, + [1552] = { + [sym_comment] = STATE(1552), + [ts_builtin_sym_end] = ACTIONS(2078), + [sym__newline] = ACTIONS(2078), + [anon_sym_SEMI] = ACTIONS(2078), + [anon_sym_PIPE] = ACTIONS(2078), + [anon_sym_err_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_GT_PIPE] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2078), + [anon_sym_LBRACK] = ACTIONS(2078), + [anon_sym_LPAREN] = ACTIONS(2078), + [anon_sym_DOLLAR] = ACTIONS(2072), + [anon_sym_DASH_DASH] = ACTIONS(2078), + [anon_sym_DASH2] = ACTIONS(2072), + [anon_sym_LBRACE] = ACTIONS(2078), + [anon_sym_DOT_DOT] = ACTIONS(2072), + [anon_sym_DOT_DOT2] = ACTIONS(4847), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2072), + [anon_sym_DOT_DOT_LT] = ACTIONS(2072), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4849), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4849), + [anon_sym_null] = ACTIONS(2078), + [anon_sym_true] = ACTIONS(2078), + [anon_sym_false] = ACTIONS(2078), + [aux_sym__val_number_decimal_token1] = ACTIONS(2072), + [aux_sym__val_number_decimal_token2] = ACTIONS(2078), + [aux_sym__val_number_decimal_token3] = ACTIONS(2078), + [aux_sym__val_number_decimal_token4] = ACTIONS(2078), + [aux_sym__val_number_token1] = ACTIONS(2078), + [aux_sym__val_number_token2] = ACTIONS(2078), + [aux_sym__val_number_token3] = ACTIONS(2078), + [aux_sym__val_number_token4] = ACTIONS(2078), + [aux_sym__val_number_token5] = ACTIONS(2078), + [aux_sym__val_number_token6] = ACTIONS(2078), + [anon_sym_0b] = ACTIONS(2072), + [anon_sym_0o] = ACTIONS(2072), + [anon_sym_0x] = ACTIONS(2072), + [sym_val_date] = ACTIONS(2078), + [anon_sym_DQUOTE] = ACTIONS(2078), + [sym__str_single_quotes] = ACTIONS(2078), + [sym__str_back_ticks] = ACTIONS(2078), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2078), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2078), + [anon_sym_err_GT] = ACTIONS(2072), + [anon_sym_out_GT] = ACTIONS(2072), + [anon_sym_e_GT] = ACTIONS(2072), + [anon_sym_o_GT] = ACTIONS(2072), + [anon_sym_err_PLUSout_GT] = ACTIONS(2072), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2072), + [anon_sym_o_PLUSe_GT] = ACTIONS(2072), + [anon_sym_e_PLUSo_GT] = ACTIONS(2072), + [anon_sym_err_GT_GT] = ACTIONS(2078), + [anon_sym_out_GT_GT] = ACTIONS(2078), + [anon_sym_e_GT_GT] = ACTIONS(2078), + [anon_sym_o_GT_GT] = ACTIONS(2078), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2078), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2078), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2078), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2078), + [aux_sym_unquoted_token1] = ACTIONS(2072), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2078), + }, + [1553] = { + [sym_path] = STATE(1699), + [sym_comment] = STATE(1553), + [aux_sym_cell_path_repeat1] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(950), [sym__newline] = ACTIONS(950), [anon_sym_SEMI] = ACTIONS(950), [anon_sym_PIPE] = ACTIONS(950), @@ -222866,12 +224301,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), [anon_sym_LBRACK] = ACTIONS(950), [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_RPAREN] = ACTIONS(950), [anon_sym_DOLLAR] = ACTIONS(948), [anon_sym_DASH_DASH] = ACTIONS(950), [anon_sym_DASH2] = ACTIONS(948), [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_RBRACE] = ACTIONS(950), [anon_sym_DOT_DOT] = ACTIONS(948), [anon_sym_DOT_DOT_EQ] = ACTIONS(950), [anon_sym_DOT_DOT_LT] = ACTIONS(950), @@ -222897,7 +224330,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__str_back_ticks] = ACTIONS(950), [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4673), + [anon_sym_DOT2] = ACTIONS(4718), [anon_sym_err_GT] = ACTIONS(948), [anon_sym_out_GT] = ACTIONS(948), [anon_sym_e_GT] = ACTIONS(948), @@ -222918,146 +224351,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(950), }, - [1533] = { - [sym_comment] = STATE(1533), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4697), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1534] = { - [sym_comment] = STATE(1534), - [sym__newline] = ACTIONS(982), - [anon_sym_SEMI] = ACTIONS(982), - [anon_sym_PIPE] = ACTIONS(982), - [anon_sym_err_GT_PIPE] = ACTIONS(982), - [anon_sym_out_GT_PIPE] = ACTIONS(982), - [anon_sym_e_GT_PIPE] = ACTIONS(982), - [anon_sym_o_GT_PIPE] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(982), - [anon_sym_RPAREN] = ACTIONS(982), - [anon_sym_GT2] = ACTIONS(980), - [anon_sym_DASH2] = ACTIONS(982), - [anon_sym_in2] = ACTIONS(982), - [anon_sym_if] = ACTIONS(982), - [anon_sym_LBRACE] = ACTIONS(982), - [anon_sym_RBRACE] = ACTIONS(982), - [anon_sym_EQ_GT] = ACTIONS(982), - [anon_sym_STAR2] = ACTIONS(980), - [anon_sym_and2] = ACTIONS(982), - [anon_sym_xor2] = ACTIONS(982), - [anon_sym_or2] = ACTIONS(982), - [anon_sym_not_DASHin2] = ACTIONS(982), - [anon_sym_starts_DASHwith2] = ACTIONS(982), - [anon_sym_ends_DASHwith2] = ACTIONS(982), - [anon_sym_EQ_EQ2] = ACTIONS(982), - [anon_sym_BANG_EQ2] = ACTIONS(982), - [anon_sym_LT2] = ACTIONS(980), - [anon_sym_LT_EQ2] = ACTIONS(982), - [anon_sym_GT_EQ2] = ACTIONS(982), - [anon_sym_EQ_TILDE2] = ACTIONS(982), - [anon_sym_BANG_TILDE2] = ACTIONS(982), - [anon_sym_STAR_STAR2] = ACTIONS(982), - [anon_sym_PLUS_PLUS2] = ACTIONS(982), - [anon_sym_SLASH2] = ACTIONS(980), - [anon_sym_mod2] = ACTIONS(982), - [anon_sym_SLASH_SLASH2] = ACTIONS(982), - [anon_sym_PLUS2] = ACTIONS(980), - [anon_sym_bit_DASHshl2] = ACTIONS(982), - [anon_sym_bit_DASHshr2] = ACTIONS(982), - [anon_sym_bit_DASHand2] = ACTIONS(982), - [anon_sym_bit_DASHxor2] = ACTIONS(982), - [anon_sym_bit_DASHor2] = ACTIONS(982), - [anon_sym_DOT_DOT2] = ACTIONS(980), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(982), - [anon_sym_DOT_DOT_LT2] = ACTIONS(982), - [anon_sym_COLON2] = ACTIONS(982), - [anon_sym_DOT2] = ACTIONS(980), - [anon_sym_err_GT] = ACTIONS(980), - [anon_sym_out_GT] = ACTIONS(980), - [anon_sym_e_GT] = ACTIONS(980), - [anon_sym_o_GT] = ACTIONS(980), - [anon_sym_err_PLUSout_GT] = ACTIONS(980), - [anon_sym_out_PLUSerr_GT] = ACTIONS(980), - [anon_sym_o_PLUSe_GT] = ACTIONS(980), - [anon_sym_e_PLUSo_GT] = ACTIONS(980), - [anon_sym_err_GT_GT] = ACTIONS(982), - [anon_sym_out_GT_GT] = ACTIONS(982), - [anon_sym_e_GT_GT] = ACTIONS(982), - [anon_sym_o_GT_GT] = ACTIONS(982), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(982), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(982), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(982), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(982), - [anon_sym_POUND] = ACTIONS(251), - }, - [1535] = { - [sym_comment] = STATE(1535), + [1554] = { + [sym_comment] = STATE(1554), [ts_builtin_sym_end] = ACTIONS(1759), [sym__newline] = ACTIONS(1759), [anon_sym_SEMI] = ACTIONS(1759), @@ -223071,357 +224366,11 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4796), - [aux_sym__immediate_decimal_token2] = ACTIONS(4798), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1536] = { - [sym_comment] = STATE(1536), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1589), - [anon_sym_xor2] = ACTIONS(1589), - [anon_sym_or2] = ACTIONS(1589), - [anon_sym_not_DASHin2] = ACTIONS(1589), - [anon_sym_starts_DASHwith2] = ACTIONS(1589), - [anon_sym_ends_DASHwith2] = ACTIONS(1589), - [anon_sym_EQ_EQ2] = ACTIONS(1589), - [anon_sym_BANG_EQ2] = ACTIONS(1589), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1589), - [anon_sym_GT_EQ2] = ACTIONS(1589), - [anon_sym_EQ_TILDE2] = ACTIONS(1589), - [anon_sym_BANG_TILDE2] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR_STAR2] = ACTIONS(1589), - [anon_sym_PLUS_PLUS2] = ACTIONS(1589), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1589), - [anon_sym_SLASH_SLASH2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1589), - [anon_sym_bit_DASHshr2] = ACTIONS(1589), - [anon_sym_bit_DASHand2] = ACTIONS(1589), - [anon_sym_bit_DASHxor2] = ACTIONS(1589), - [anon_sym_bit_DASHor2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4719), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - }, - [1537] = { - [sym__expr_parenthesized_immediate] = STATE(2467), - [sym__immediate_decimal] = STATE(2471), - [sym_val_variable] = STATE(2467), - [sym_comment] = STATE(1537), - [ts_builtin_sym_end] = ACTIONS(1709), - [sym__newline] = ACTIONS(1709), - [anon_sym_SEMI] = ACTIONS(1709), - [anon_sym_PIPE] = ACTIONS(1709), - [anon_sym_err_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_GT_PIPE] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1709), - [anon_sym_DOLLAR] = ACTIONS(4657), - [anon_sym_GT2] = ACTIONS(1707), - [anon_sym_DASH2] = ACTIONS(1707), - [anon_sym_in2] = ACTIONS(1709), - [anon_sym_STAR2] = ACTIONS(1707), - [anon_sym_and2] = ACTIONS(1709), - [anon_sym_xor2] = ACTIONS(1709), - [anon_sym_or2] = ACTIONS(1709), - [anon_sym_not_DASHin2] = ACTIONS(1709), - [anon_sym_starts_DASHwith2] = ACTIONS(1709), - [anon_sym_ends_DASHwith2] = ACTIONS(1709), - [anon_sym_EQ_EQ2] = ACTIONS(1709), - [anon_sym_BANG_EQ2] = ACTIONS(1709), - [anon_sym_LT2] = ACTIONS(1707), - [anon_sym_LT_EQ2] = ACTIONS(1709), - [anon_sym_GT_EQ2] = ACTIONS(1709), - [anon_sym_EQ_TILDE2] = ACTIONS(1709), - [anon_sym_BANG_TILDE2] = ACTIONS(1709), - [anon_sym_LPAREN2] = ACTIONS(4659), - [anon_sym_STAR_STAR2] = ACTIONS(1709), - [anon_sym_PLUS_PLUS2] = ACTIONS(1709), - [anon_sym_SLASH2] = ACTIONS(1707), - [anon_sym_mod2] = ACTIONS(1709), - [anon_sym_SLASH_SLASH2] = ACTIONS(1709), - [anon_sym_PLUS2] = ACTIONS(1707), - [anon_sym_bit_DASHshl2] = ACTIONS(1709), - [anon_sym_bit_DASHshr2] = ACTIONS(1709), - [anon_sym_bit_DASHand2] = ACTIONS(1709), - [anon_sym_bit_DASHxor2] = ACTIONS(1709), - [anon_sym_bit_DASHor2] = ACTIONS(1709), - [aux_sym__immediate_decimal_token1] = ACTIONS(4729), - [aux_sym__immediate_decimal_token3] = ACTIONS(4729), - [aux_sym__immediate_decimal_token4] = ACTIONS(4665), - [aux_sym__immediate_decimal_token5] = ACTIONS(4667), - [anon_sym_err_GT] = ACTIONS(1707), - [anon_sym_out_GT] = ACTIONS(1707), - [anon_sym_e_GT] = ACTIONS(1707), - [anon_sym_o_GT] = ACTIONS(1707), - [anon_sym_err_PLUSout_GT] = ACTIONS(1707), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1707), - [anon_sym_o_PLUSe_GT] = ACTIONS(1707), - [anon_sym_e_PLUSo_GT] = ACTIONS(1707), - [anon_sym_err_GT_GT] = ACTIONS(1709), - [anon_sym_out_GT_GT] = ACTIONS(1709), - [anon_sym_e_GT_GT] = ACTIONS(1709), - [anon_sym_o_GT_GT] = ACTIONS(1709), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1709), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1709), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1709), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1709), - [anon_sym_POUND] = ACTIONS(251), - }, - [1538] = { - [sym_comment] = STATE(1538), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1667), - [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_LPAREN2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4800), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), - }, - [1539] = { - [sym__expr_parenthesized_immediate] = STATE(7276), - [sym_comment] = STATE(1539), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1693), - [anon_sym_in2] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1693), - [anon_sym_xor2] = ACTIONS(1693), - [anon_sym_or2] = ACTIONS(1693), - [anon_sym_not_DASHin2] = ACTIONS(1693), - [anon_sym_starts_DASHwith2] = ACTIONS(1693), - [anon_sym_ends_DASHwith2] = ACTIONS(1693), - [anon_sym_EQ_EQ2] = ACTIONS(1693), - [anon_sym_BANG_EQ2] = ACTIONS(1693), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1693), - [anon_sym_GT_EQ2] = ACTIONS(1693), - [anon_sym_EQ_TILDE2] = ACTIONS(1693), - [anon_sym_BANG_TILDE2] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_STAR_STAR2] = ACTIONS(1693), - [anon_sym_PLUS_PLUS2] = ACTIONS(1693), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1693), - [anon_sym_SLASH_SLASH2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1693), - [anon_sym_bit_DASHshr2] = ACTIONS(1693), - [anon_sym_bit_DASHand2] = ACTIONS(1693), - [anon_sym_bit_DASHxor2] = ACTIONS(1693), - [anon_sym_bit_DASHor2] = ACTIONS(1693), - [anon_sym_DOT_DOT2] = ACTIONS(4802), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4804), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4804), - [sym_filesize_unit] = ACTIONS(4806), - [sym_duration_unit] = ACTIONS(4808), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token2] = ACTIONS(4810), - [anon_sym_POUND] = ACTIONS(251), - }, - [1540] = { - [sym_comment] = STATE(1540), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), [anon_sym_DOLLAR] = ACTIONS(1757), [anon_sym_DASH_DASH] = ACTIONS(1759), [anon_sym_DASH2] = ACTIONS(1757), [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), [anon_sym_DOT_DOT] = ACTIONS(1757), [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), @@ -223453,1189 +224402,161 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_err_GT] = ACTIONS(1757), [anon_sym_out_GT] = ACTIONS(1757), [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1541] = { - [sym_cell_path] = STATE(1885), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1541), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1979), - [sym__newline] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_err_GT_PIPE] = ACTIONS(1979), - [anon_sym_out_GT_PIPE] = ACTIONS(1979), - [anon_sym_e_GT_PIPE] = ACTIONS(1979), - [anon_sym_o_GT_PIPE] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), - [anon_sym_LBRACK] = ACTIONS(1979), - [anon_sym_LPAREN] = ACTIONS(1979), - [anon_sym_DOLLAR] = ACTIONS(1977), - [anon_sym_DASH_DASH] = ACTIONS(1979), - [anon_sym_DASH2] = ACTIONS(1977), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_DOT_DOT] = ACTIONS(1977), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1979), - [anon_sym_DOT_DOT_LT] = ACTIONS(1979), - [anon_sym_null] = ACTIONS(1979), - [anon_sym_true] = ACTIONS(1979), - [anon_sym_false] = ACTIONS(1979), - [aux_sym__val_number_decimal_token1] = ACTIONS(1977), - [aux_sym__val_number_decimal_token2] = ACTIONS(1979), - [aux_sym__val_number_decimal_token3] = ACTIONS(1979), - [aux_sym__val_number_decimal_token4] = ACTIONS(1979), - [aux_sym__val_number_token1] = ACTIONS(1979), - [aux_sym__val_number_token2] = ACTIONS(1979), - [aux_sym__val_number_token3] = ACTIONS(1979), - [aux_sym__val_number_token4] = ACTIONS(1979), - [aux_sym__val_number_token5] = ACTIONS(1979), - [aux_sym__val_number_token6] = ACTIONS(1979), - [anon_sym_0b] = ACTIONS(1977), - [anon_sym_0o] = ACTIONS(1977), - [anon_sym_0x] = ACTIONS(1977), - [sym_val_date] = ACTIONS(1979), - [anon_sym_DQUOTE] = ACTIONS(1979), - [sym__str_single_quotes] = ACTIONS(1979), - [sym__str_back_ticks] = ACTIONS(1979), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1979), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1977), - [anon_sym_out_GT] = ACTIONS(1977), - [anon_sym_e_GT] = ACTIONS(1977), - [anon_sym_o_GT] = ACTIONS(1977), - [anon_sym_err_PLUSout_GT] = ACTIONS(1977), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), - [anon_sym_o_PLUSe_GT] = ACTIONS(1977), - [anon_sym_e_PLUSo_GT] = ACTIONS(1977), - [anon_sym_err_GT_GT] = ACTIONS(1979), - [anon_sym_out_GT_GT] = ACTIONS(1979), - [anon_sym_e_GT_GT] = ACTIONS(1979), - [anon_sym_o_GT_GT] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), - [aux_sym_unquoted_token1] = ACTIONS(1977), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1979), - }, - [1542] = { - [sym_cell_path] = STATE(1840), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1542), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1935), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_LBRACK] = ACTIONS(1935), - [anon_sym_LPAREN] = ACTIONS(1935), - [anon_sym_DOLLAR] = ACTIONS(1933), - [anon_sym_DASH_DASH] = ACTIONS(1935), - [anon_sym_DASH2] = ACTIONS(1933), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_DOT_DOT] = ACTIONS(1933), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1935), - [anon_sym_DOT_DOT_LT] = ACTIONS(1935), - [anon_sym_null] = ACTIONS(1935), - [anon_sym_true] = ACTIONS(1935), - [anon_sym_false] = ACTIONS(1935), - [aux_sym__val_number_decimal_token1] = ACTIONS(1933), - [aux_sym__val_number_decimal_token2] = ACTIONS(1935), - [aux_sym__val_number_decimal_token3] = ACTIONS(1935), - [aux_sym__val_number_decimal_token4] = ACTIONS(1935), - [aux_sym__val_number_token1] = ACTIONS(1935), - [aux_sym__val_number_token2] = ACTIONS(1935), - [aux_sym__val_number_token3] = ACTIONS(1935), - [aux_sym__val_number_token4] = ACTIONS(1935), - [aux_sym__val_number_token5] = ACTIONS(1935), - [aux_sym__val_number_token6] = ACTIONS(1935), - [anon_sym_0b] = ACTIONS(1933), - [anon_sym_0o] = ACTIONS(1933), - [anon_sym_0x] = ACTIONS(1933), - [sym_val_date] = ACTIONS(1935), - [anon_sym_DQUOTE] = ACTIONS(1935), - [sym__str_single_quotes] = ACTIONS(1935), - [sym__str_back_ticks] = ACTIONS(1935), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1935), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), - [aux_sym_unquoted_token1] = ACTIONS(1933), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1935), - }, - [1543] = { - [sym_comment] = STATE(1543), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1544] = { - [sym_comment] = STATE(1544), - [anon_sym_EQ] = ACTIONS(4812), - [anon_sym_PLUS_EQ] = ACTIONS(4814), - [anon_sym_DASH_EQ] = ACTIONS(4814), - [anon_sym_STAR_EQ] = ACTIONS(4814), - [anon_sym_SLASH_EQ] = ACTIONS(4814), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4814), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), - [anon_sym_GT2] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_in2] = ACTIONS(1000), - [anon_sym_STAR2] = ACTIONS(1004), - [anon_sym_and2] = ACTIONS(1000), - [anon_sym_xor2] = ACTIONS(1000), - [anon_sym_or2] = ACTIONS(1000), - [anon_sym_not_DASHin2] = ACTIONS(1000), - [anon_sym_starts_DASHwith2] = ACTIONS(1000), - [anon_sym_ends_DASHwith2] = ACTIONS(1000), - [anon_sym_EQ_EQ2] = ACTIONS(1000), - [anon_sym_BANG_EQ2] = ACTIONS(1000), - [anon_sym_LT2] = ACTIONS(1004), - [anon_sym_LT_EQ2] = ACTIONS(1000), - [anon_sym_GT_EQ2] = ACTIONS(1000), - [anon_sym_EQ_TILDE2] = ACTIONS(1000), - [anon_sym_BANG_TILDE2] = ACTIONS(1000), - [anon_sym_STAR_STAR2] = ACTIONS(1000), - [anon_sym_PLUS_PLUS2] = ACTIONS(1004), - [anon_sym_SLASH2] = ACTIONS(1004), - [anon_sym_mod2] = ACTIONS(1000), - [anon_sym_SLASH_SLASH2] = ACTIONS(1000), - [anon_sym_PLUS2] = ACTIONS(1004), - [anon_sym_bit_DASHshl2] = ACTIONS(1000), - [anon_sym_bit_DASHshr2] = ACTIONS(1000), - [anon_sym_bit_DASHand2] = ACTIONS(1000), - [anon_sym_bit_DASHxor2] = ACTIONS(1000), - [anon_sym_bit_DASHor2] = ACTIONS(1000), - [anon_sym_DOT_DOT2] = ACTIONS(1012), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1014), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1014), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [anon_sym_POUND] = ACTIONS(251), - }, - [1545] = { - [sym_comment] = STATE(1545), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1861), - [anon_sym_0o] = ACTIONS(1861), - [anon_sym_0x] = ACTIONS(1861), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token1] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [1546] = { - [sym_cell_path] = STATE(1888), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1546), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1983), - [sym__newline] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_err_GT_PIPE] = ACTIONS(1983), - [anon_sym_out_GT_PIPE] = ACTIONS(1983), - [anon_sym_e_GT_PIPE] = ACTIONS(1983), - [anon_sym_o_GT_PIPE] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), - [anon_sym_LBRACK] = ACTIONS(1983), - [anon_sym_LPAREN] = ACTIONS(1983), - [anon_sym_DOLLAR] = ACTIONS(1981), - [anon_sym_DASH_DASH] = ACTIONS(1983), - [anon_sym_DASH2] = ACTIONS(1981), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_DOT_DOT] = ACTIONS(1981), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1983), - [anon_sym_DOT_DOT_LT] = ACTIONS(1983), - [anon_sym_null] = ACTIONS(1983), - [anon_sym_true] = ACTIONS(1983), - [anon_sym_false] = ACTIONS(1983), - [aux_sym__val_number_decimal_token1] = ACTIONS(1981), - [aux_sym__val_number_decimal_token2] = ACTIONS(1983), - [aux_sym__val_number_decimal_token3] = ACTIONS(1983), - [aux_sym__val_number_decimal_token4] = ACTIONS(1983), - [aux_sym__val_number_token1] = ACTIONS(1983), - [aux_sym__val_number_token2] = ACTIONS(1983), - [aux_sym__val_number_token3] = ACTIONS(1983), - [aux_sym__val_number_token4] = ACTIONS(1983), - [aux_sym__val_number_token5] = ACTIONS(1983), - [aux_sym__val_number_token6] = ACTIONS(1983), - [anon_sym_0b] = ACTIONS(1981), - [anon_sym_0o] = ACTIONS(1981), - [anon_sym_0x] = ACTIONS(1981), - [sym_val_date] = ACTIONS(1983), - [anon_sym_DQUOTE] = ACTIONS(1983), - [sym__str_single_quotes] = ACTIONS(1983), - [sym__str_back_ticks] = ACTIONS(1983), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1983), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1981), - [anon_sym_out_GT] = ACTIONS(1981), - [anon_sym_e_GT] = ACTIONS(1981), - [anon_sym_o_GT] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT] = ACTIONS(1981), - [anon_sym_err_GT_GT] = ACTIONS(1983), - [anon_sym_out_GT_GT] = ACTIONS(1983), - [anon_sym_e_GT_GT] = ACTIONS(1983), - [anon_sym_o_GT_GT] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), - [aux_sym_unquoted_token1] = ACTIONS(1981), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1983), - }, - [1547] = { - [sym_cell_path] = STATE(1889), - [sym_path] = STATE(1747), - [sym_comment] = STATE(1547), - [aux_sym_cell_path_repeat1] = STATE(1614), - [ts_builtin_sym_end] = ACTIONS(1987), - [sym__newline] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_err_GT_PIPE] = ACTIONS(1987), - [anon_sym_out_GT_PIPE] = ACTIONS(1987), - [anon_sym_e_GT_PIPE] = ACTIONS(1987), - [anon_sym_o_GT_PIPE] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1987), - [anon_sym_LBRACK] = ACTIONS(1987), - [anon_sym_LPAREN] = ACTIONS(1987), - [anon_sym_DOLLAR] = ACTIONS(1985), - [anon_sym_DASH_DASH] = ACTIONS(1987), - [anon_sym_DASH2] = ACTIONS(1985), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_DOT_DOT] = ACTIONS(1985), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1987), - [anon_sym_DOT_DOT_LT] = ACTIONS(1987), - [anon_sym_null] = ACTIONS(1987), - [anon_sym_true] = ACTIONS(1987), - [anon_sym_false] = ACTIONS(1987), - [aux_sym__val_number_decimal_token1] = ACTIONS(1985), - [aux_sym__val_number_decimal_token2] = ACTIONS(1987), - [aux_sym__val_number_decimal_token3] = ACTIONS(1987), - [aux_sym__val_number_decimal_token4] = ACTIONS(1987), - [aux_sym__val_number_token1] = ACTIONS(1987), - [aux_sym__val_number_token2] = ACTIONS(1987), - [aux_sym__val_number_token3] = ACTIONS(1987), - [aux_sym__val_number_token4] = ACTIONS(1987), - [aux_sym__val_number_token5] = ACTIONS(1987), - [aux_sym__val_number_token6] = ACTIONS(1987), - [anon_sym_0b] = ACTIONS(1985), - [anon_sym_0o] = ACTIONS(1985), - [anon_sym_0x] = ACTIONS(1985), - [sym_val_date] = ACTIONS(1987), - [anon_sym_DQUOTE] = ACTIONS(1987), - [sym__str_single_quotes] = ACTIONS(1987), - [sym__str_back_ticks] = ACTIONS(1987), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1987), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(1985), - [anon_sym_out_GT] = ACTIONS(1985), - [anon_sym_e_GT] = ACTIONS(1985), - [anon_sym_o_GT] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT] = ACTIONS(1985), - [anon_sym_err_GT_GT] = ACTIONS(1987), - [anon_sym_out_GT_GT] = ACTIONS(1987), - [anon_sym_e_GT_GT] = ACTIONS(1987), - [anon_sym_o_GT_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), - [aux_sym_unquoted_token1] = ACTIONS(1985), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1987), - }, - [1548] = { - [sym_comment] = STATE(1548), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4685), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1549] = { - [sym_comment] = STATE(1549), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1550] = { - [sym_cell_path] = STATE(2066), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1550), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1995), - [anon_sym_SEMI] = ACTIONS(1995), - [anon_sym_PIPE] = ACTIONS(1995), - [anon_sym_err_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_GT_PIPE] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1995), - [anon_sym_RPAREN] = ACTIONS(1995), - [anon_sym_GT2] = ACTIONS(1993), - [anon_sym_DASH2] = ACTIONS(1995), - [anon_sym_in2] = ACTIONS(1995), - [anon_sym_if] = ACTIONS(1995), - [anon_sym_LBRACE] = ACTIONS(1995), - [anon_sym_RBRACE] = ACTIONS(1995), - [anon_sym_EQ_GT] = ACTIONS(1995), - [anon_sym_STAR2] = ACTIONS(1993), - [anon_sym_and2] = ACTIONS(1995), - [anon_sym_xor2] = ACTIONS(1995), - [anon_sym_or2] = ACTIONS(1995), - [anon_sym_not_DASHin2] = ACTIONS(1995), - [anon_sym_starts_DASHwith2] = ACTIONS(1995), - [anon_sym_ends_DASHwith2] = ACTIONS(1995), - [anon_sym_EQ_EQ2] = ACTIONS(1995), - [anon_sym_BANG_EQ2] = ACTIONS(1995), - [anon_sym_LT2] = ACTIONS(1993), - [anon_sym_LT_EQ2] = ACTIONS(1995), - [anon_sym_GT_EQ2] = ACTIONS(1995), - [anon_sym_EQ_TILDE2] = ACTIONS(1995), - [anon_sym_BANG_TILDE2] = ACTIONS(1995), - [anon_sym_STAR_STAR2] = ACTIONS(1995), - [anon_sym_PLUS_PLUS2] = ACTIONS(1995), - [anon_sym_SLASH2] = ACTIONS(1993), - [anon_sym_mod2] = ACTIONS(1995), - [anon_sym_SLASH_SLASH2] = ACTIONS(1995), - [anon_sym_PLUS2] = ACTIONS(1993), - [anon_sym_bit_DASHshl2] = ACTIONS(1995), - [anon_sym_bit_DASHshr2] = ACTIONS(1995), - [anon_sym_bit_DASHand2] = ACTIONS(1995), - [anon_sym_bit_DASHxor2] = ACTIONS(1995), - [anon_sym_bit_DASHor2] = ACTIONS(1995), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1993), - [anon_sym_out_GT] = ACTIONS(1993), - [anon_sym_e_GT] = ACTIONS(1993), - [anon_sym_o_GT] = ACTIONS(1993), - [anon_sym_err_PLUSout_GT] = ACTIONS(1993), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1993), - [anon_sym_o_PLUSe_GT] = ACTIONS(1993), - [anon_sym_e_PLUSo_GT] = ACTIONS(1993), - [anon_sym_err_GT_GT] = ACTIONS(1995), - [anon_sym_out_GT_GT] = ACTIONS(1995), - [anon_sym_e_GT_GT] = ACTIONS(1995), - [anon_sym_o_GT_GT] = ACTIONS(1995), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1995), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1995), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1995), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1995), - [anon_sym_POUND] = ACTIONS(251), - }, - [1551] = { - [sym_comment] = STATE(1551), - [ts_builtin_sym_end] = ACTIONS(4758), - [sym__newline] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_err_GT_PIPE] = ACTIONS(4758), - [anon_sym_out_GT_PIPE] = ACTIONS(4758), - [anon_sym_e_GT_PIPE] = ACTIONS(4758), - [anon_sym_o_GT_PIPE] = ACTIONS(4758), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4758), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4758), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4758), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4758), - [anon_sym_LBRACK] = ACTIONS(4758), - [anon_sym_LPAREN] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4760), - [anon_sym_DASH_DASH] = ACTIONS(4758), - [anon_sym_DASH2] = ACTIONS(4760), - [anon_sym_LBRACE] = ACTIONS(4758), - [anon_sym_DOT_DOT] = ACTIONS(4760), - [anon_sym_DOT_DOT2] = ACTIONS(4818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4760), - [anon_sym_DOT_DOT_LT] = ACTIONS(4760), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4820), - [anon_sym_null] = ACTIONS(4758), - [anon_sym_true] = ACTIONS(4758), - [anon_sym_false] = ACTIONS(4758), - [aux_sym__val_number_decimal_token1] = ACTIONS(4760), - [aux_sym__val_number_decimal_token2] = ACTIONS(4758), - [aux_sym__val_number_decimal_token3] = ACTIONS(4758), - [aux_sym__val_number_decimal_token4] = ACTIONS(4758), - [aux_sym__val_number_token1] = ACTIONS(4758), - [aux_sym__val_number_token2] = ACTIONS(4758), - [aux_sym__val_number_token3] = ACTIONS(4758), - [aux_sym__val_number_token4] = ACTIONS(4758), - [aux_sym__val_number_token5] = ACTIONS(4758), - [aux_sym__val_number_token6] = ACTIONS(4758), - [anon_sym_0b] = ACTIONS(4760), - [anon_sym_0o] = ACTIONS(4760), - [anon_sym_0x] = ACTIONS(4760), - [sym_val_date] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [sym__str_single_quotes] = ACTIONS(4758), - [sym__str_back_ticks] = ACTIONS(4758), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4758), - [anon_sym_err_GT] = ACTIONS(4760), - [anon_sym_out_GT] = ACTIONS(4760), - [anon_sym_e_GT] = ACTIONS(4760), - [anon_sym_o_GT] = ACTIONS(4760), - [anon_sym_err_PLUSout_GT] = ACTIONS(4760), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4760), - [anon_sym_o_PLUSe_GT] = ACTIONS(4760), - [anon_sym_e_PLUSo_GT] = ACTIONS(4760), - [anon_sym_err_GT_GT] = ACTIONS(4758), - [anon_sym_out_GT_GT] = ACTIONS(4758), - [anon_sym_e_GT_GT] = ACTIONS(4758), - [anon_sym_o_GT_GT] = ACTIONS(4758), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4758), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4758), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4758), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4758), - [aux_sym_unquoted_token1] = ACTIONS(4760), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4758), - }, - [1552] = { - [sym_cell_path] = STATE(2055), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1552), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1971), - [anon_sym_SEMI] = ACTIONS(1971), - [anon_sym_PIPE] = ACTIONS(1971), - [anon_sym_err_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_GT_PIPE] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1971), - [anon_sym_RPAREN] = ACTIONS(1971), - [anon_sym_GT2] = ACTIONS(1969), - [anon_sym_DASH2] = ACTIONS(1971), - [anon_sym_in2] = ACTIONS(1971), - [anon_sym_if] = ACTIONS(1971), - [anon_sym_LBRACE] = ACTIONS(1971), - [anon_sym_RBRACE] = ACTIONS(1971), - [anon_sym_EQ_GT] = ACTIONS(1971), - [anon_sym_STAR2] = ACTIONS(1969), - [anon_sym_and2] = ACTIONS(1971), - [anon_sym_xor2] = ACTIONS(1971), - [anon_sym_or2] = ACTIONS(1971), - [anon_sym_not_DASHin2] = ACTIONS(1971), - [anon_sym_starts_DASHwith2] = ACTIONS(1971), - [anon_sym_ends_DASHwith2] = ACTIONS(1971), - [anon_sym_EQ_EQ2] = ACTIONS(1971), - [anon_sym_BANG_EQ2] = ACTIONS(1971), - [anon_sym_LT2] = ACTIONS(1969), - [anon_sym_LT_EQ2] = ACTIONS(1971), - [anon_sym_GT_EQ2] = ACTIONS(1971), - [anon_sym_EQ_TILDE2] = ACTIONS(1971), - [anon_sym_BANG_TILDE2] = ACTIONS(1971), - [anon_sym_STAR_STAR2] = ACTIONS(1971), - [anon_sym_PLUS_PLUS2] = ACTIONS(1971), - [anon_sym_SLASH2] = ACTIONS(1969), - [anon_sym_mod2] = ACTIONS(1971), - [anon_sym_SLASH_SLASH2] = ACTIONS(1971), - [anon_sym_PLUS2] = ACTIONS(1969), - [anon_sym_bit_DASHshl2] = ACTIONS(1971), - [anon_sym_bit_DASHshr2] = ACTIONS(1971), - [anon_sym_bit_DASHand2] = ACTIONS(1971), - [anon_sym_bit_DASHxor2] = ACTIONS(1971), - [anon_sym_bit_DASHor2] = ACTIONS(1971), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1969), - [anon_sym_out_GT] = ACTIONS(1969), - [anon_sym_e_GT] = ACTIONS(1969), - [anon_sym_o_GT] = ACTIONS(1969), - [anon_sym_err_PLUSout_GT] = ACTIONS(1969), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1969), - [anon_sym_o_PLUSe_GT] = ACTIONS(1969), - [anon_sym_e_PLUSo_GT] = ACTIONS(1969), - [anon_sym_err_GT_GT] = ACTIONS(1971), - [anon_sym_out_GT_GT] = ACTIONS(1971), - [anon_sym_e_GT_GT] = ACTIONS(1971), - [anon_sym_o_GT_GT] = ACTIONS(1971), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1971), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1971), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1971), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1971), - [anon_sym_POUND] = ACTIONS(251), - }, - [1553] = { - [sym_cell_path] = STATE(2043), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1553), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(2095), - [anon_sym_SEMI] = ACTIONS(2095), - [anon_sym_PIPE] = ACTIONS(2095), - [anon_sym_err_GT_PIPE] = ACTIONS(2095), - [anon_sym_out_GT_PIPE] = ACTIONS(2095), - [anon_sym_e_GT_PIPE] = ACTIONS(2095), - [anon_sym_o_GT_PIPE] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2095), - [anon_sym_RPAREN] = ACTIONS(2095), - [anon_sym_GT2] = ACTIONS(2093), - [anon_sym_DASH2] = ACTIONS(2095), - [anon_sym_in2] = ACTIONS(2095), - [anon_sym_if] = ACTIONS(2095), - [anon_sym_LBRACE] = ACTIONS(2095), - [anon_sym_RBRACE] = ACTIONS(2095), - [anon_sym_EQ_GT] = ACTIONS(2095), - [anon_sym_STAR2] = ACTIONS(2093), - [anon_sym_and2] = ACTIONS(2095), - [anon_sym_xor2] = ACTIONS(2095), - [anon_sym_or2] = ACTIONS(2095), - [anon_sym_not_DASHin2] = ACTIONS(2095), - [anon_sym_starts_DASHwith2] = ACTIONS(2095), - [anon_sym_ends_DASHwith2] = ACTIONS(2095), - [anon_sym_EQ_EQ2] = ACTIONS(2095), - [anon_sym_BANG_EQ2] = ACTIONS(2095), - [anon_sym_LT2] = ACTIONS(2093), - [anon_sym_LT_EQ2] = ACTIONS(2095), - [anon_sym_GT_EQ2] = ACTIONS(2095), - [anon_sym_EQ_TILDE2] = ACTIONS(2095), - [anon_sym_BANG_TILDE2] = ACTIONS(2095), - [anon_sym_STAR_STAR2] = ACTIONS(2095), - [anon_sym_PLUS_PLUS2] = ACTIONS(2095), - [anon_sym_SLASH2] = ACTIONS(2093), - [anon_sym_mod2] = ACTIONS(2095), - [anon_sym_SLASH_SLASH2] = ACTIONS(2095), - [anon_sym_PLUS2] = ACTIONS(2093), - [anon_sym_bit_DASHshl2] = ACTIONS(2095), - [anon_sym_bit_DASHshr2] = ACTIONS(2095), - [anon_sym_bit_DASHand2] = ACTIONS(2095), - [anon_sym_bit_DASHxor2] = ACTIONS(2095), - [anon_sym_bit_DASHor2] = ACTIONS(2095), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(2093), - [anon_sym_out_GT] = ACTIONS(2093), - [anon_sym_e_GT] = ACTIONS(2093), - [anon_sym_o_GT] = ACTIONS(2093), - [anon_sym_err_PLUSout_GT] = ACTIONS(2093), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2093), - [anon_sym_o_PLUSe_GT] = ACTIONS(2093), - [anon_sym_e_PLUSo_GT] = ACTIONS(2093), - [anon_sym_err_GT_GT] = ACTIONS(2095), - [anon_sym_out_GT_GT] = ACTIONS(2095), - [anon_sym_e_GT_GT] = ACTIONS(2095), - [anon_sym_o_GT_GT] = ACTIONS(2095), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2095), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2095), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2095), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2095), - [anon_sym_POUND] = ACTIONS(251), - }, - [1554] = { - [sym_comment] = STATE(1554), - [ts_builtin_sym_end] = ACTIONS(2176), - [sym__newline] = ACTIONS(2176), - [anon_sym_SEMI] = ACTIONS(2176), - [anon_sym_PIPE] = ACTIONS(2176), - [anon_sym_err_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_GT_PIPE] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2176), - [anon_sym_LBRACK] = ACTIONS(2176), - [anon_sym_LPAREN] = ACTIONS(2176), - [anon_sym_DOLLAR] = ACTIONS(2170), - [anon_sym_DASH_DASH] = ACTIONS(2176), - [anon_sym_DASH2] = ACTIONS(2170), - [anon_sym_LBRACE] = ACTIONS(2176), - [anon_sym_DOT_DOT] = ACTIONS(2170), - [anon_sym_DOT_DOT2] = ACTIONS(4822), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2170), - [anon_sym_DOT_DOT_LT] = ACTIONS(2170), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4824), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4824), - [anon_sym_null] = ACTIONS(2176), - [anon_sym_true] = ACTIONS(2176), - [anon_sym_false] = ACTIONS(2176), - [aux_sym__val_number_decimal_token1] = ACTIONS(2170), - [aux_sym__val_number_decimal_token2] = ACTIONS(2176), - [aux_sym__val_number_decimal_token3] = ACTIONS(2176), - [aux_sym__val_number_decimal_token4] = ACTIONS(2176), - [aux_sym__val_number_token1] = ACTIONS(2176), - [aux_sym__val_number_token2] = ACTIONS(2176), - [aux_sym__val_number_token3] = ACTIONS(2176), - [aux_sym__val_number_token4] = ACTIONS(2176), - [aux_sym__val_number_token5] = ACTIONS(2176), - [aux_sym__val_number_token6] = ACTIONS(2176), - [anon_sym_0b] = ACTIONS(2170), - [anon_sym_0o] = ACTIONS(2170), - [anon_sym_0x] = ACTIONS(2170), - [sym_val_date] = ACTIONS(2176), - [anon_sym_DQUOTE] = ACTIONS(2176), - [sym__str_single_quotes] = ACTIONS(2176), - [sym__str_back_ticks] = ACTIONS(2176), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2176), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2176), - [anon_sym_err_GT] = ACTIONS(2170), - [anon_sym_out_GT] = ACTIONS(2170), - [anon_sym_e_GT] = ACTIONS(2170), - [anon_sym_o_GT] = ACTIONS(2170), - [anon_sym_err_PLUSout_GT] = ACTIONS(2170), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), - [anon_sym_o_PLUSe_GT] = ACTIONS(2170), - [anon_sym_e_PLUSo_GT] = ACTIONS(2170), - [anon_sym_err_GT_GT] = ACTIONS(2176), - [anon_sym_out_GT_GT] = ACTIONS(2176), - [anon_sym_e_GT_GT] = ACTIONS(2176), - [anon_sym_o_GT_GT] = ACTIONS(2176), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2176), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2176), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2176), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2176), - [aux_sym_unquoted_token1] = ACTIONS(2170), + [anon_sym_o_GT] = ACTIONS(1757), + [anon_sym_err_PLUSout_GT] = ACTIONS(1757), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), + [anon_sym_o_PLUSe_GT] = ACTIONS(1757), + [anon_sym_e_PLUSo_GT] = ACTIONS(1757), + [anon_sym_err_GT_GT] = ACTIONS(1759), + [anon_sym_out_GT_GT] = ACTIONS(1759), + [anon_sym_e_GT_GT] = ACTIONS(1759), + [anon_sym_o_GT_GT] = ACTIONS(1759), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), + [aux_sym_unquoted_token1] = ACTIONS(1757), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2176), + [sym_raw_string_begin] = ACTIONS(1759), }, [1555] = { [sym_comment] = STATE(1555), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4826), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4828), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [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_LBRACK] = ACTIONS(2756), + [anon_sym_LPAREN] = ACTIONS(2756), + [anon_sym_RPAREN] = ACTIONS(2756), + [anon_sym_DOLLAR] = ACTIONS(4851), + [anon_sym_DASH_DASH] = ACTIONS(2756), + [anon_sym_DASH2] = ACTIONS(4851), + [anon_sym_LBRACE] = ACTIONS(2756), + [anon_sym_DOT_DOT] = ACTIONS(4851), + [anon_sym_DOT_DOT2] = ACTIONS(4738), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4851), + [anon_sym_DOT_DOT_LT] = ACTIONS(4851), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4740), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4740), + [anon_sym_null] = ACTIONS(2756), + [anon_sym_true] = ACTIONS(2756), + [anon_sym_false] = ACTIONS(2756), + [aux_sym__val_number_decimal_token1] = ACTIONS(4851), + [aux_sym__val_number_decimal_token2] = ACTIONS(2756), + [aux_sym__val_number_decimal_token3] = ACTIONS(2756), + [aux_sym__val_number_decimal_token4] = ACTIONS(2756), + [aux_sym__val_number_token1] = ACTIONS(2756), + [aux_sym__val_number_token2] = ACTIONS(2756), + [aux_sym__val_number_token3] = ACTIONS(2756), + [aux_sym__val_number_token4] = ACTIONS(2756), + [aux_sym__val_number_token5] = ACTIONS(2756), + [aux_sym__val_number_token6] = ACTIONS(2756), + [anon_sym_0b] = ACTIONS(4851), + [anon_sym_0o] = ACTIONS(4851), + [anon_sym_0x] = ACTIONS(4851), + [sym_val_date] = ACTIONS(2756), + [anon_sym_DQUOTE] = ACTIONS(2756), + [sym__str_single_quotes] = ACTIONS(2756), + [sym__str_back_ticks] = ACTIONS(2756), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2756), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2756), + [anon_sym_err_GT] = ACTIONS(4851), + [anon_sym_out_GT] = ACTIONS(4851), + [anon_sym_e_GT] = ACTIONS(4851), + [anon_sym_o_GT] = ACTIONS(4851), + [anon_sym_err_PLUSout_GT] = ACTIONS(4851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4851), + [anon_sym_o_PLUSe_GT] = ACTIONS(4851), + [anon_sym_e_PLUSo_GT] = ACTIONS(4851), + [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), + [aux_sym_unquoted_token1] = ACTIONS(4851), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2756), }, [1556] = { [sym_comment] = STATE(1556), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [aux_sym__val_number_token4] = ACTIONS(2237), - [aux_sym__val_number_token5] = ACTIONS(2237), - [aux_sym__val_number_token6] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [aux_sym_unquoted_token1] = ACTIONS(2237), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2241), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [aux_sym__immediate_decimal_token2] = ACTIONS(4853), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), }, [1557] = { - [sym_cell_path] = STATE(2060), - [sym_path] = STATE(1497), [sym_comment] = STATE(1557), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1975), - [anon_sym_SEMI] = ACTIONS(1975), - [anon_sym_PIPE] = ACTIONS(1975), - [anon_sym_err_GT_PIPE] = ACTIONS(1975), - [anon_sym_out_GT_PIPE] = ACTIONS(1975), - [anon_sym_e_GT_PIPE] = ACTIONS(1975), - [anon_sym_o_GT_PIPE] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1975), - [anon_sym_RPAREN] = ACTIONS(1975), - [anon_sym_GT2] = ACTIONS(1973), - [anon_sym_DASH2] = ACTIONS(1975), - [anon_sym_in2] = ACTIONS(1975), - [anon_sym_if] = ACTIONS(1975), - [anon_sym_LBRACE] = ACTIONS(1975), - [anon_sym_RBRACE] = ACTIONS(1975), - [anon_sym_EQ_GT] = ACTIONS(1975), - [anon_sym_STAR2] = ACTIONS(1973), - [anon_sym_and2] = ACTIONS(1975), - [anon_sym_xor2] = ACTIONS(1975), - [anon_sym_or2] = ACTIONS(1975), - [anon_sym_not_DASHin2] = ACTIONS(1975), - [anon_sym_starts_DASHwith2] = ACTIONS(1975), - [anon_sym_ends_DASHwith2] = ACTIONS(1975), - [anon_sym_EQ_EQ2] = ACTIONS(1975), - [anon_sym_BANG_EQ2] = ACTIONS(1975), - [anon_sym_LT2] = ACTIONS(1973), - [anon_sym_LT_EQ2] = ACTIONS(1975), - [anon_sym_GT_EQ2] = ACTIONS(1975), - [anon_sym_EQ_TILDE2] = ACTIONS(1975), - [anon_sym_BANG_TILDE2] = ACTIONS(1975), - [anon_sym_STAR_STAR2] = ACTIONS(1975), - [anon_sym_PLUS_PLUS2] = ACTIONS(1975), - [anon_sym_SLASH2] = ACTIONS(1973), - [anon_sym_mod2] = ACTIONS(1975), - [anon_sym_SLASH_SLASH2] = ACTIONS(1975), - [anon_sym_PLUS2] = ACTIONS(1973), - [anon_sym_bit_DASHshl2] = ACTIONS(1975), - [anon_sym_bit_DASHshr2] = ACTIONS(1975), - [anon_sym_bit_DASHand2] = ACTIONS(1975), - [anon_sym_bit_DASHxor2] = ACTIONS(1975), - [anon_sym_bit_DASHor2] = ACTIONS(1975), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1973), - [anon_sym_out_GT] = ACTIONS(1973), - [anon_sym_e_GT] = ACTIONS(1973), - [anon_sym_o_GT] = ACTIONS(1973), - [anon_sym_err_PLUSout_GT] = ACTIONS(1973), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1973), - [anon_sym_o_PLUSe_GT] = ACTIONS(1973), - [anon_sym_e_PLUSo_GT] = ACTIONS(1973), - [anon_sym_err_GT_GT] = ACTIONS(1975), - [anon_sym_out_GT_GT] = ACTIONS(1975), - [anon_sym_e_GT_GT] = ACTIONS(1975), - [anon_sym_o_GT_GT] = ACTIONS(1975), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1975), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1975), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1975), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1975), - [anon_sym_POUND] = ACTIONS(251), - }, - [1558] = { - [sym_comment] = STATE(1558), [sym__newline] = ACTIONS(966), [anon_sym_SEMI] = ACTIONS(966), [anon_sym_PIPE] = ACTIONS(966), @@ -224702,72 +224623,140 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(966), }, + [1558] = { + [sym_comment] = STATE(1558), + [sym__newline] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_err_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_GT_PIPE] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), + [anon_sym_RPAREN] = ACTIONS(2045), + [anon_sym_GT2] = ACTIONS(2043), + [anon_sym_DASH2] = ACTIONS(2045), + [anon_sym_in2] = ACTIONS(2045), + [anon_sym_if] = ACTIONS(2045), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_RBRACE] = ACTIONS(2045), + [anon_sym_EQ_GT] = ACTIONS(2045), + [anon_sym_STAR2] = ACTIONS(2043), + [anon_sym_and2] = ACTIONS(2045), + [anon_sym_xor2] = ACTIONS(2045), + [anon_sym_or2] = ACTIONS(2045), + [anon_sym_not_DASHin2] = ACTIONS(2045), + [anon_sym_starts_DASHwith2] = ACTIONS(2045), + [anon_sym_ends_DASHwith2] = ACTIONS(2045), + [anon_sym_EQ_EQ2] = ACTIONS(2045), + [anon_sym_BANG_EQ2] = ACTIONS(2045), + [anon_sym_LT2] = ACTIONS(2043), + [anon_sym_LT_EQ2] = ACTIONS(2045), + [anon_sym_GT_EQ2] = ACTIONS(2045), + [anon_sym_EQ_TILDE2] = ACTIONS(2045), + [anon_sym_BANG_TILDE2] = ACTIONS(2045), + [anon_sym_STAR_STAR2] = ACTIONS(2045), + [anon_sym_PLUS_PLUS2] = ACTIONS(2045), + [anon_sym_SLASH2] = ACTIONS(2043), + [anon_sym_mod2] = ACTIONS(2045), + [anon_sym_SLASH_SLASH2] = ACTIONS(2045), + [anon_sym_PLUS2] = ACTIONS(2043), + [anon_sym_bit_DASHshl2] = ACTIONS(2045), + [anon_sym_bit_DASHshr2] = ACTIONS(2045), + [anon_sym_bit_DASHand2] = ACTIONS(2045), + [anon_sym_bit_DASHxor2] = ACTIONS(2045), + [anon_sym_bit_DASHor2] = ACTIONS(2045), + [anon_sym_DOT_DOT2] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2045), + [anon_sym_COLON2] = ACTIONS(2045), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2045), + [anon_sym_out_GT_GT] = ACTIONS(2045), + [anon_sym_e_GT_GT] = ACTIONS(2045), + [anon_sym_o_GT_GT] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), + [anon_sym_POUND] = ACTIONS(251), + }, [1559] = { [sym_comment] = STATE(1559), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_RPAREN] = ACTIONS(1597), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1597), - [anon_sym_in2] = ACTIONS(1597), - [anon_sym_RBRACE] = ACTIONS(1597), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1597), - [anon_sym_xor2] = ACTIONS(1597), - [anon_sym_or2] = ACTIONS(1597), - [anon_sym_not_DASHin2] = ACTIONS(1597), - [anon_sym_starts_DASHwith2] = ACTIONS(1597), - [anon_sym_ends_DASHwith2] = ACTIONS(1597), - [anon_sym_EQ_EQ2] = ACTIONS(1597), - [anon_sym_BANG_EQ2] = ACTIONS(1597), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1597), - [anon_sym_GT_EQ2] = ACTIONS(1597), - [anon_sym_EQ_TILDE2] = ACTIONS(1597), - [anon_sym_BANG_TILDE2] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_STAR_STAR2] = ACTIONS(1597), - [anon_sym_PLUS_PLUS2] = ACTIONS(1597), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1597), - [anon_sym_SLASH_SLASH2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1597), - [anon_sym_bit_DASHshr2] = ACTIONS(1597), - [anon_sym_bit_DASHand2] = ACTIONS(1597), - [anon_sym_bit_DASHxor2] = ACTIONS(1597), - [anon_sym_bit_DASHor2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token2] = ACTIONS(1595), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_RPAREN] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_RBRACE] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(251), }, [1560] = { @@ -224907,143 +224896,347 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string_begin] = ACTIONS(974), }, [1562] = { + [sym_cell_path] = STATE(2043), + [sym_path] = STATE(1531), [sym_comment] = STATE(1562), - [sym__newline] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_err_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_GT_PIPE] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [aux_sym__val_number_token4] = ACTIONS(2245), - [aux_sym__val_number_token5] = ACTIONS(2245), - [aux_sym__val_number_token6] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [aux_sym_unquoted_token1] = ACTIONS(2245), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2247), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1841), + [anon_sym_SEMI] = ACTIONS(1841), + [anon_sym_PIPE] = ACTIONS(1841), + [anon_sym_err_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_GT_PIPE] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1841), + [anon_sym_RPAREN] = ACTIONS(1841), + [anon_sym_GT2] = ACTIONS(1839), + [anon_sym_DASH2] = ACTIONS(1841), + [anon_sym_in2] = ACTIONS(1841), + [anon_sym_if] = ACTIONS(1841), + [anon_sym_LBRACE] = ACTIONS(1841), + [anon_sym_RBRACE] = ACTIONS(1841), + [anon_sym_EQ_GT] = ACTIONS(1841), + [anon_sym_STAR2] = ACTIONS(1839), + [anon_sym_and2] = ACTIONS(1841), + [anon_sym_xor2] = ACTIONS(1841), + [anon_sym_or2] = ACTIONS(1841), + [anon_sym_not_DASHin2] = ACTIONS(1841), + [anon_sym_starts_DASHwith2] = ACTIONS(1841), + [anon_sym_ends_DASHwith2] = ACTIONS(1841), + [anon_sym_EQ_EQ2] = ACTIONS(1841), + [anon_sym_BANG_EQ2] = ACTIONS(1841), + [anon_sym_LT2] = ACTIONS(1839), + [anon_sym_LT_EQ2] = ACTIONS(1841), + [anon_sym_GT_EQ2] = ACTIONS(1841), + [anon_sym_EQ_TILDE2] = ACTIONS(1841), + [anon_sym_BANG_TILDE2] = ACTIONS(1841), + [anon_sym_STAR_STAR2] = ACTIONS(1841), + [anon_sym_PLUS_PLUS2] = ACTIONS(1841), + [anon_sym_SLASH2] = ACTIONS(1839), + [anon_sym_mod2] = ACTIONS(1841), + [anon_sym_SLASH_SLASH2] = ACTIONS(1841), + [anon_sym_PLUS2] = ACTIONS(1839), + [anon_sym_bit_DASHshl2] = ACTIONS(1841), + [anon_sym_bit_DASHshr2] = ACTIONS(1841), + [anon_sym_bit_DASHand2] = ACTIONS(1841), + [anon_sym_bit_DASHxor2] = ACTIONS(1841), + [anon_sym_bit_DASHor2] = ACTIONS(1841), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1839), + [anon_sym_out_GT] = ACTIONS(1839), + [anon_sym_e_GT] = ACTIONS(1839), + [anon_sym_o_GT] = ACTIONS(1839), + [anon_sym_err_PLUSout_GT] = ACTIONS(1839), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1839), + [anon_sym_o_PLUSe_GT] = ACTIONS(1839), + [anon_sym_e_PLUSo_GT] = ACTIONS(1839), + [anon_sym_err_GT_GT] = ACTIONS(1841), + [anon_sym_out_GT_GT] = ACTIONS(1841), + [anon_sym_e_GT_GT] = ACTIONS(1841), + [anon_sym_o_GT_GT] = ACTIONS(1841), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1841), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1841), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1841), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1841), + [anon_sym_POUND] = ACTIONS(251), }, [1563] = { + [sym_path] = STATE(1699), [sym_comment] = STATE(1563), - [ts_builtin_sym_end] = ACTIONS(1020), - [sym__newline] = ACTIONS(1020), - [anon_sym_SEMI] = ACTIONS(1020), - [anon_sym_PIPE] = ACTIONS(1020), - [anon_sym_err_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_GT_PIPE] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), - [anon_sym_LBRACK] = ACTIONS(1020), - [anon_sym_LPAREN] = ACTIONS(1020), - [anon_sym_DOLLAR] = ACTIONS(1018), - [anon_sym_DASH_DASH] = ACTIONS(1020), - [anon_sym_DASH2] = ACTIONS(1018), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_DOT_DOT] = ACTIONS(1018), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), - [anon_sym_DOT_DOT_LT] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_null] = ACTIONS(1020), - [anon_sym_true] = ACTIONS(1020), - [anon_sym_false] = ACTIONS(1020), - [aux_sym__val_number_decimal_token1] = ACTIONS(1018), - [aux_sym__val_number_decimal_token2] = ACTIONS(1020), - [aux_sym__val_number_decimal_token3] = ACTIONS(1020), - [aux_sym__val_number_decimal_token4] = ACTIONS(1020), - [aux_sym__val_number_token1] = ACTIONS(1020), - [aux_sym__val_number_token2] = ACTIONS(1020), - [aux_sym__val_number_token3] = ACTIONS(1020), - [aux_sym__val_number_token4] = ACTIONS(1020), - [aux_sym__val_number_token5] = ACTIONS(1020), - [aux_sym__val_number_token6] = ACTIONS(1020), - [anon_sym_0b] = ACTIONS(1018), - [anon_sym_0o] = ACTIONS(1018), - [anon_sym_0x] = ACTIONS(1018), - [sym_val_date] = ACTIONS(1020), - [anon_sym_DQUOTE] = ACTIONS(1020), - [sym__str_single_quotes] = ACTIONS(1020), - [sym__str_back_ticks] = ACTIONS(1020), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), - [aux_sym_unquoted_token1] = ACTIONS(1018), + [aux_sym_cell_path_repeat1] = STATE(1563), + [ts_builtin_sym_end] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_LBRACK] = ACTIONS(943), + [anon_sym_LPAREN] = ACTIONS(943), + [anon_sym_DOLLAR] = ACTIONS(941), + [anon_sym_DASH_DASH] = ACTIONS(943), + [anon_sym_DASH2] = ACTIONS(941), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_DOT_DOT] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ] = ACTIONS(943), + [anon_sym_DOT_DOT_LT] = ACTIONS(943), + [anon_sym_null] = ACTIONS(943), + [anon_sym_true] = ACTIONS(943), + [anon_sym_false] = ACTIONS(943), + [aux_sym__val_number_decimal_token1] = ACTIONS(941), + [aux_sym__val_number_decimal_token2] = ACTIONS(943), + [aux_sym__val_number_decimal_token3] = ACTIONS(943), + [aux_sym__val_number_decimal_token4] = ACTIONS(943), + [aux_sym__val_number_token1] = ACTIONS(943), + [aux_sym__val_number_token2] = ACTIONS(943), + [aux_sym__val_number_token3] = ACTIONS(943), + [aux_sym__val_number_token4] = ACTIONS(943), + [aux_sym__val_number_token5] = ACTIONS(943), + [aux_sym__val_number_token6] = ACTIONS(943), + [anon_sym_0b] = ACTIONS(941), + [anon_sym_0o] = ACTIONS(941), + [anon_sym_0x] = ACTIONS(941), + [sym_val_date] = ACTIONS(943), + [anon_sym_DQUOTE] = ACTIONS(943), + [sym__str_single_quotes] = ACTIONS(943), + [sym__str_back_ticks] = ACTIONS(943), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4855), + [anon_sym_err_GT] = ACTIONS(941), + [anon_sym_out_GT] = ACTIONS(941), + [anon_sym_e_GT] = ACTIONS(941), + [anon_sym_o_GT] = ACTIONS(941), + [anon_sym_err_PLUSout_GT] = ACTIONS(941), + [anon_sym_out_PLUSerr_GT] = ACTIONS(941), + [anon_sym_o_PLUSe_GT] = ACTIONS(941), + [anon_sym_e_PLUSo_GT] = ACTIONS(941), + [anon_sym_err_GT_GT] = ACTIONS(943), + [anon_sym_out_GT_GT] = ACTIONS(943), + [anon_sym_e_GT_GT] = ACTIONS(943), + [anon_sym_o_GT_GT] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), + [aux_sym_unquoted_token1] = ACTIONS(941), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1020), + [sym_raw_string_begin] = ACTIONS(943), }, [1564] = { [sym_comment] = STATE(1564), + [ts_builtin_sym_end] = ACTIONS(2045), + [sym__newline] = ACTIONS(2045), + [anon_sym_SEMI] = ACTIONS(2045), + [anon_sym_PIPE] = ACTIONS(2045), + [anon_sym_err_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_GT_PIPE] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2045), + [anon_sym_LBRACK] = ACTIONS(2045), + [anon_sym_LPAREN] = ACTIONS(2045), + [anon_sym_DOLLAR] = ACTIONS(2043), + [anon_sym_DASH_DASH] = ACTIONS(2045), + [anon_sym_DASH2] = ACTIONS(2043), + [anon_sym_LBRACE] = ACTIONS(2045), + [anon_sym_DOT_DOT] = ACTIONS(2043), + [anon_sym_DOT_DOT2] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2043), + [anon_sym_DOT_DOT_LT] = ACTIONS(2043), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2045), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2045), + [anon_sym_null] = ACTIONS(2045), + [anon_sym_true] = ACTIONS(2045), + [anon_sym_false] = ACTIONS(2045), + [aux_sym__val_number_decimal_token1] = ACTIONS(2043), + [aux_sym__val_number_decimal_token2] = ACTIONS(2045), + [aux_sym__val_number_decimal_token3] = ACTIONS(2045), + [aux_sym__val_number_decimal_token4] = ACTIONS(2045), + [aux_sym__val_number_token1] = ACTIONS(2045), + [aux_sym__val_number_token2] = ACTIONS(2045), + [aux_sym__val_number_token3] = ACTIONS(2045), + [aux_sym__val_number_token4] = ACTIONS(2045), + [aux_sym__val_number_token5] = ACTIONS(2045), + [aux_sym__val_number_token6] = ACTIONS(2045), + [anon_sym_0b] = ACTIONS(2043), + [anon_sym_0o] = ACTIONS(2043), + [anon_sym_0x] = ACTIONS(2043), + [sym_val_date] = ACTIONS(2045), + [anon_sym_DQUOTE] = ACTIONS(2045), + [sym__str_single_quotes] = ACTIONS(2045), + [sym__str_back_ticks] = ACTIONS(2045), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2045), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2045), + [anon_sym_err_GT] = ACTIONS(2043), + [anon_sym_out_GT] = ACTIONS(2043), + [anon_sym_e_GT] = ACTIONS(2043), + [anon_sym_o_GT] = ACTIONS(2043), + [anon_sym_err_PLUSout_GT] = ACTIONS(2043), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2043), + [anon_sym_o_PLUSe_GT] = ACTIONS(2043), + [anon_sym_e_PLUSo_GT] = ACTIONS(2043), + [anon_sym_err_GT_GT] = ACTIONS(2045), + [anon_sym_out_GT_GT] = ACTIONS(2045), + [anon_sym_e_GT_GT] = ACTIONS(2045), + [anon_sym_o_GT_GT] = ACTIONS(2045), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2045), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2045), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2045), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2045), + [aux_sym_unquoted_token1] = ACTIONS(2043), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2045), + }, + [1565] = { + [sym_comment] = STATE(1565), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4858), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1566] = { + [sym_cell_path] = STATE(2044), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1566), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1845), + [anon_sym_SEMI] = ACTIONS(1845), + [anon_sym_PIPE] = ACTIONS(1845), + [anon_sym_err_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_GT_PIPE] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1845), + [anon_sym_RPAREN] = ACTIONS(1845), + [anon_sym_GT2] = ACTIONS(1843), + [anon_sym_DASH2] = ACTIONS(1845), + [anon_sym_in2] = ACTIONS(1845), + [anon_sym_if] = ACTIONS(1845), + [anon_sym_LBRACE] = ACTIONS(1845), + [anon_sym_RBRACE] = ACTIONS(1845), + [anon_sym_EQ_GT] = ACTIONS(1845), + [anon_sym_STAR2] = ACTIONS(1843), + [anon_sym_and2] = ACTIONS(1845), + [anon_sym_xor2] = ACTIONS(1845), + [anon_sym_or2] = ACTIONS(1845), + [anon_sym_not_DASHin2] = ACTIONS(1845), + [anon_sym_starts_DASHwith2] = ACTIONS(1845), + [anon_sym_ends_DASHwith2] = ACTIONS(1845), + [anon_sym_EQ_EQ2] = ACTIONS(1845), + [anon_sym_BANG_EQ2] = ACTIONS(1845), + [anon_sym_LT2] = ACTIONS(1843), + [anon_sym_LT_EQ2] = ACTIONS(1845), + [anon_sym_GT_EQ2] = ACTIONS(1845), + [anon_sym_EQ_TILDE2] = ACTIONS(1845), + [anon_sym_BANG_TILDE2] = ACTIONS(1845), + [anon_sym_STAR_STAR2] = ACTIONS(1845), + [anon_sym_PLUS_PLUS2] = ACTIONS(1845), + [anon_sym_SLASH2] = ACTIONS(1843), + [anon_sym_mod2] = ACTIONS(1845), + [anon_sym_SLASH_SLASH2] = ACTIONS(1845), + [anon_sym_PLUS2] = ACTIONS(1843), + [anon_sym_bit_DASHshl2] = ACTIONS(1845), + [anon_sym_bit_DASHshr2] = ACTIONS(1845), + [anon_sym_bit_DASHand2] = ACTIONS(1845), + [anon_sym_bit_DASHxor2] = ACTIONS(1845), + [anon_sym_bit_DASHor2] = ACTIONS(1845), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1843), + [anon_sym_out_GT] = ACTIONS(1843), + [anon_sym_e_GT] = ACTIONS(1843), + [anon_sym_o_GT] = ACTIONS(1843), + [anon_sym_err_PLUSout_GT] = ACTIONS(1843), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1843), + [anon_sym_o_PLUSe_GT] = ACTIONS(1843), + [anon_sym_e_PLUSo_GT] = ACTIONS(1843), + [anon_sym_err_GT_GT] = ACTIONS(1845), + [anon_sym_out_GT_GT] = ACTIONS(1845), + [anon_sym_e_GT_GT] = ACTIONS(1845), + [anon_sym_o_GT_GT] = ACTIONS(1845), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1845), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1845), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1845), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1845), + [anon_sym_POUND] = ACTIONS(251), + }, + [1567] = { + [sym_comment] = STATE(1567), [sym__newline] = ACTIONS(978), [anon_sym_SEMI] = ACTIONS(978), [anon_sym_PIPE] = ACTIONS(978), @@ -225110,1301 +225303,213 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(978), }, - [1565] = { - [sym_comment] = STATE(1565), - [sym__newline] = ACTIONS(2770), - [anon_sym_SEMI] = ACTIONS(2770), - [anon_sym_PIPE] = ACTIONS(2770), - [anon_sym_err_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_GT_PIPE] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2770), - [anon_sym_LBRACK] = ACTIONS(2770), - [anon_sym_LPAREN] = ACTIONS(2770), - [anon_sym_RPAREN] = ACTIONS(2770), - [anon_sym_DOLLAR] = ACTIONS(4830), - [anon_sym_DASH_DASH] = ACTIONS(2770), - [anon_sym_DASH2] = ACTIONS(4830), - [anon_sym_LBRACE] = ACTIONS(2770), - [anon_sym_DOT_DOT] = ACTIONS(4830), - [anon_sym_DOT_DOT2] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4830), - [anon_sym_DOT_DOT_LT] = ACTIONS(4830), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(2770), - [anon_sym_true] = ACTIONS(2770), - [anon_sym_false] = ACTIONS(2770), - [aux_sym__val_number_decimal_token1] = ACTIONS(4830), - [aux_sym__val_number_decimal_token2] = ACTIONS(2770), - [aux_sym__val_number_decimal_token3] = ACTIONS(2770), - [aux_sym__val_number_decimal_token4] = ACTIONS(2770), - [aux_sym__val_number_token1] = ACTIONS(2770), - [aux_sym__val_number_token2] = ACTIONS(2770), - [aux_sym__val_number_token3] = ACTIONS(2770), - [aux_sym__val_number_token4] = ACTIONS(2770), - [aux_sym__val_number_token5] = ACTIONS(2770), - [aux_sym__val_number_token6] = ACTIONS(2770), - [anon_sym_0b] = ACTIONS(4830), - [anon_sym_0o] = ACTIONS(4830), - [anon_sym_0x] = ACTIONS(4830), - [sym_val_date] = ACTIONS(2770), - [anon_sym_DQUOTE] = ACTIONS(2770), - [sym__str_single_quotes] = ACTIONS(2770), - [sym__str_back_ticks] = ACTIONS(2770), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2770), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2770), - [anon_sym_err_GT] = ACTIONS(4830), - [anon_sym_out_GT] = ACTIONS(4830), - [anon_sym_e_GT] = ACTIONS(4830), - [anon_sym_o_GT] = ACTIONS(4830), - [anon_sym_err_PLUSout_GT] = ACTIONS(4830), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4830), - [anon_sym_o_PLUSe_GT] = ACTIONS(4830), - [anon_sym_e_PLUSo_GT] = ACTIONS(4830), - [anon_sym_err_GT_GT] = ACTIONS(2770), - [anon_sym_out_GT_GT] = ACTIONS(2770), - [anon_sym_e_GT_GT] = ACTIONS(2770), - [anon_sym_o_GT_GT] = ACTIONS(2770), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2770), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2770), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2770), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2770), - [aux_sym_unquoted_token1] = ACTIONS(4830), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2770), - }, - [1566] = { - [sym_comment] = STATE(1566), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_GT2] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1727), - [anon_sym_in2] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR2] = ACTIONS(1725), - [anon_sym_and2] = ACTIONS(1727), - [anon_sym_xor2] = ACTIONS(1727), - [anon_sym_or2] = ACTIONS(1727), - [anon_sym_not_DASHin2] = ACTIONS(1727), - [anon_sym_starts_DASHwith2] = ACTIONS(1727), - [anon_sym_ends_DASHwith2] = ACTIONS(1727), - [anon_sym_EQ_EQ2] = ACTIONS(1727), - [anon_sym_BANG_EQ2] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1725), - [anon_sym_LT_EQ2] = ACTIONS(1727), - [anon_sym_GT_EQ2] = ACTIONS(1727), - [anon_sym_EQ_TILDE2] = ACTIONS(1727), - [anon_sym_BANG_TILDE2] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_STAR_STAR2] = ACTIONS(1727), - [anon_sym_PLUS_PLUS2] = ACTIONS(1727), - [anon_sym_SLASH2] = ACTIONS(1725), - [anon_sym_mod2] = ACTIONS(1727), - [anon_sym_SLASH_SLASH2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_bit_DASHshl2] = ACTIONS(1727), - [anon_sym_bit_DASHshr2] = ACTIONS(1727), - [anon_sym_bit_DASHand2] = ACTIONS(1727), - [anon_sym_bit_DASHxor2] = ACTIONS(1727), - [anon_sym_bit_DASHor2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4756), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - }, - [1567] = { - [sym_cell_path] = STATE(2067), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1567), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1999), - [anon_sym_SEMI] = ACTIONS(1999), - [anon_sym_PIPE] = ACTIONS(1999), - [anon_sym_err_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_GT_PIPE] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1999), - [anon_sym_RPAREN] = ACTIONS(1999), - [anon_sym_GT2] = ACTIONS(1997), - [anon_sym_DASH2] = ACTIONS(1999), - [anon_sym_in2] = ACTIONS(1999), - [anon_sym_if] = ACTIONS(1999), - [anon_sym_LBRACE] = ACTIONS(1999), - [anon_sym_RBRACE] = ACTIONS(1999), - [anon_sym_EQ_GT] = ACTIONS(1999), - [anon_sym_STAR2] = ACTIONS(1997), - [anon_sym_and2] = ACTIONS(1999), - [anon_sym_xor2] = ACTIONS(1999), - [anon_sym_or2] = ACTIONS(1999), - [anon_sym_not_DASHin2] = ACTIONS(1999), - [anon_sym_starts_DASHwith2] = ACTIONS(1999), - [anon_sym_ends_DASHwith2] = ACTIONS(1999), - [anon_sym_EQ_EQ2] = ACTIONS(1999), - [anon_sym_BANG_EQ2] = ACTIONS(1999), - [anon_sym_LT2] = ACTIONS(1997), - [anon_sym_LT_EQ2] = ACTIONS(1999), - [anon_sym_GT_EQ2] = ACTIONS(1999), - [anon_sym_EQ_TILDE2] = ACTIONS(1999), - [anon_sym_BANG_TILDE2] = ACTIONS(1999), - [anon_sym_STAR_STAR2] = ACTIONS(1999), - [anon_sym_PLUS_PLUS2] = ACTIONS(1999), - [anon_sym_SLASH2] = ACTIONS(1997), - [anon_sym_mod2] = ACTIONS(1999), - [anon_sym_SLASH_SLASH2] = ACTIONS(1999), - [anon_sym_PLUS2] = ACTIONS(1997), - [anon_sym_bit_DASHshl2] = ACTIONS(1999), - [anon_sym_bit_DASHshr2] = ACTIONS(1999), - [anon_sym_bit_DASHand2] = ACTIONS(1999), - [anon_sym_bit_DASHxor2] = ACTIONS(1999), - [anon_sym_bit_DASHor2] = ACTIONS(1999), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1997), - [anon_sym_out_GT] = ACTIONS(1997), - [anon_sym_e_GT] = ACTIONS(1997), - [anon_sym_o_GT] = ACTIONS(1997), - [anon_sym_err_PLUSout_GT] = ACTIONS(1997), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1997), - [anon_sym_o_PLUSe_GT] = ACTIONS(1997), - [anon_sym_e_PLUSo_GT] = ACTIONS(1997), - [anon_sym_err_GT_GT] = ACTIONS(1999), - [anon_sym_out_GT_GT] = ACTIONS(1999), - [anon_sym_e_GT_GT] = ACTIONS(1999), - [anon_sym_o_GT_GT] = ACTIONS(1999), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1999), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1999), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1999), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1999), - [anon_sym_POUND] = ACTIONS(251), - }, [1568] = { - [sym_cell_path] = STATE(2068), - [sym_path] = STATE(1497), + [sym_cell_path] = STATE(2045), + [sym_path] = STATE(1531), [sym_comment] = STATE(1568), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(2003), - [anon_sym_SEMI] = ACTIONS(2003), - [anon_sym_PIPE] = ACTIONS(2003), - [anon_sym_err_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_GT_PIPE] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2003), - [anon_sym_RPAREN] = ACTIONS(2003), - [anon_sym_GT2] = ACTIONS(2001), - [anon_sym_DASH2] = ACTIONS(2003), - [anon_sym_in2] = ACTIONS(2003), - [anon_sym_if] = ACTIONS(2003), - [anon_sym_LBRACE] = ACTIONS(2003), - [anon_sym_RBRACE] = ACTIONS(2003), - [anon_sym_EQ_GT] = ACTIONS(2003), - [anon_sym_STAR2] = ACTIONS(2001), - [anon_sym_and2] = ACTIONS(2003), - [anon_sym_xor2] = ACTIONS(2003), - [anon_sym_or2] = ACTIONS(2003), - [anon_sym_not_DASHin2] = ACTIONS(2003), - [anon_sym_starts_DASHwith2] = ACTIONS(2003), - [anon_sym_ends_DASHwith2] = ACTIONS(2003), - [anon_sym_EQ_EQ2] = ACTIONS(2003), - [anon_sym_BANG_EQ2] = ACTIONS(2003), - [anon_sym_LT2] = ACTIONS(2001), - [anon_sym_LT_EQ2] = ACTIONS(2003), - [anon_sym_GT_EQ2] = ACTIONS(2003), - [anon_sym_EQ_TILDE2] = ACTIONS(2003), - [anon_sym_BANG_TILDE2] = ACTIONS(2003), - [anon_sym_STAR_STAR2] = ACTIONS(2003), - [anon_sym_PLUS_PLUS2] = ACTIONS(2003), - [anon_sym_SLASH2] = ACTIONS(2001), - [anon_sym_mod2] = ACTIONS(2003), - [anon_sym_SLASH_SLASH2] = ACTIONS(2003), - [anon_sym_PLUS2] = ACTIONS(2001), - [anon_sym_bit_DASHshl2] = ACTIONS(2003), - [anon_sym_bit_DASHshr2] = ACTIONS(2003), - [anon_sym_bit_DASHand2] = ACTIONS(2003), - [anon_sym_bit_DASHxor2] = ACTIONS(2003), - [anon_sym_bit_DASHor2] = ACTIONS(2003), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(2001), - [anon_sym_out_GT] = ACTIONS(2001), - [anon_sym_e_GT] = ACTIONS(2001), - [anon_sym_o_GT] = ACTIONS(2001), - [anon_sym_err_PLUSout_GT] = ACTIONS(2001), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2001), - [anon_sym_o_PLUSe_GT] = ACTIONS(2001), - [anon_sym_e_PLUSo_GT] = ACTIONS(2001), - [anon_sym_err_GT_GT] = ACTIONS(2003), - [anon_sym_out_GT_GT] = ACTIONS(2003), - [anon_sym_e_GT_GT] = ACTIONS(2003), - [anon_sym_o_GT_GT] = ACTIONS(2003), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2003), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2003), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2003), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2003), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1849), + [anon_sym_SEMI] = ACTIONS(1849), + [anon_sym_PIPE] = ACTIONS(1849), + [anon_sym_err_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_GT_PIPE] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1849), + [anon_sym_RPAREN] = ACTIONS(1849), + [anon_sym_GT2] = ACTIONS(1847), + [anon_sym_DASH2] = ACTIONS(1849), + [anon_sym_in2] = ACTIONS(1849), + [anon_sym_if] = ACTIONS(1849), + [anon_sym_LBRACE] = ACTIONS(1849), + [anon_sym_RBRACE] = ACTIONS(1849), + [anon_sym_EQ_GT] = ACTIONS(1849), + [anon_sym_STAR2] = ACTIONS(1847), + [anon_sym_and2] = ACTIONS(1849), + [anon_sym_xor2] = ACTIONS(1849), + [anon_sym_or2] = ACTIONS(1849), + [anon_sym_not_DASHin2] = ACTIONS(1849), + [anon_sym_starts_DASHwith2] = ACTIONS(1849), + [anon_sym_ends_DASHwith2] = ACTIONS(1849), + [anon_sym_EQ_EQ2] = ACTIONS(1849), + [anon_sym_BANG_EQ2] = ACTIONS(1849), + [anon_sym_LT2] = ACTIONS(1847), + [anon_sym_LT_EQ2] = ACTIONS(1849), + [anon_sym_GT_EQ2] = ACTIONS(1849), + [anon_sym_EQ_TILDE2] = ACTIONS(1849), + [anon_sym_BANG_TILDE2] = ACTIONS(1849), + [anon_sym_STAR_STAR2] = ACTIONS(1849), + [anon_sym_PLUS_PLUS2] = ACTIONS(1849), + [anon_sym_SLASH2] = ACTIONS(1847), + [anon_sym_mod2] = ACTIONS(1849), + [anon_sym_SLASH_SLASH2] = ACTIONS(1849), + [anon_sym_PLUS2] = ACTIONS(1847), + [anon_sym_bit_DASHshl2] = ACTIONS(1849), + [anon_sym_bit_DASHshr2] = ACTIONS(1849), + [anon_sym_bit_DASHand2] = ACTIONS(1849), + [anon_sym_bit_DASHxor2] = ACTIONS(1849), + [anon_sym_bit_DASHor2] = ACTIONS(1849), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1847), + [anon_sym_out_GT] = ACTIONS(1847), + [anon_sym_e_GT] = ACTIONS(1847), + [anon_sym_o_GT] = ACTIONS(1847), + [anon_sym_err_PLUSout_GT] = ACTIONS(1847), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1847), + [anon_sym_o_PLUSe_GT] = ACTIONS(1847), + [anon_sym_e_PLUSo_GT] = ACTIONS(1847), + [anon_sym_err_GT_GT] = ACTIONS(1849), + [anon_sym_out_GT_GT] = ACTIONS(1849), + [anon_sym_e_GT_GT] = ACTIONS(1849), + [anon_sym_o_GT_GT] = ACTIONS(1849), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1849), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1849), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1849), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1849), [anon_sym_POUND] = ACTIONS(251), }, [1569] = { - [sym_cell_path] = STATE(2069), - [sym_path] = STATE(1497), + [sym_cell_path] = STATE(2046), + [sym_path] = STATE(1531), [sym_comment] = STATE(1569), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(2007), - [anon_sym_SEMI] = ACTIONS(2007), - [anon_sym_PIPE] = ACTIONS(2007), - [anon_sym_err_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_GT_PIPE] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2007), - [anon_sym_RPAREN] = ACTIONS(2007), - [anon_sym_GT2] = ACTIONS(2005), - [anon_sym_DASH2] = ACTIONS(2007), - [anon_sym_in2] = ACTIONS(2007), - [anon_sym_if] = ACTIONS(2007), - [anon_sym_LBRACE] = ACTIONS(2007), - [anon_sym_RBRACE] = ACTIONS(2007), - [anon_sym_EQ_GT] = ACTIONS(2007), - [anon_sym_STAR2] = ACTIONS(2005), - [anon_sym_and2] = ACTIONS(2007), - [anon_sym_xor2] = ACTIONS(2007), - [anon_sym_or2] = ACTIONS(2007), - [anon_sym_not_DASHin2] = ACTIONS(2007), - [anon_sym_starts_DASHwith2] = ACTIONS(2007), - [anon_sym_ends_DASHwith2] = ACTIONS(2007), - [anon_sym_EQ_EQ2] = ACTIONS(2007), - [anon_sym_BANG_EQ2] = ACTIONS(2007), - [anon_sym_LT2] = ACTIONS(2005), - [anon_sym_LT_EQ2] = ACTIONS(2007), - [anon_sym_GT_EQ2] = ACTIONS(2007), - [anon_sym_EQ_TILDE2] = ACTIONS(2007), - [anon_sym_BANG_TILDE2] = ACTIONS(2007), - [anon_sym_STAR_STAR2] = ACTIONS(2007), - [anon_sym_PLUS_PLUS2] = ACTIONS(2007), - [anon_sym_SLASH2] = ACTIONS(2005), - [anon_sym_mod2] = ACTIONS(2007), - [anon_sym_SLASH_SLASH2] = ACTIONS(2007), - [anon_sym_PLUS2] = ACTIONS(2005), - [anon_sym_bit_DASHshl2] = ACTIONS(2007), - [anon_sym_bit_DASHshr2] = ACTIONS(2007), - [anon_sym_bit_DASHand2] = ACTIONS(2007), - [anon_sym_bit_DASHxor2] = ACTIONS(2007), - [anon_sym_bit_DASHor2] = ACTIONS(2007), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(2005), - [anon_sym_out_GT] = ACTIONS(2005), - [anon_sym_e_GT] = ACTIONS(2005), - [anon_sym_o_GT] = ACTIONS(2005), - [anon_sym_err_PLUSout_GT] = ACTIONS(2005), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2005), - [anon_sym_o_PLUSe_GT] = ACTIONS(2005), - [anon_sym_e_PLUSo_GT] = ACTIONS(2005), - [anon_sym_err_GT_GT] = ACTIONS(2007), - [anon_sym_out_GT_GT] = ACTIONS(2007), - [anon_sym_e_GT_GT] = ACTIONS(2007), - [anon_sym_o_GT_GT] = ACTIONS(2007), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2007), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2007), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2007), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2007), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1853), + [anon_sym_SEMI] = ACTIONS(1853), + [anon_sym_PIPE] = ACTIONS(1853), + [anon_sym_err_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_GT_PIPE] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1853), + [anon_sym_RPAREN] = ACTIONS(1853), + [anon_sym_GT2] = ACTIONS(1851), + [anon_sym_DASH2] = ACTIONS(1853), + [anon_sym_in2] = ACTIONS(1853), + [anon_sym_if] = ACTIONS(1853), + [anon_sym_LBRACE] = ACTIONS(1853), + [anon_sym_RBRACE] = ACTIONS(1853), + [anon_sym_EQ_GT] = ACTIONS(1853), + [anon_sym_STAR2] = ACTIONS(1851), + [anon_sym_and2] = ACTIONS(1853), + [anon_sym_xor2] = ACTIONS(1853), + [anon_sym_or2] = ACTIONS(1853), + [anon_sym_not_DASHin2] = ACTIONS(1853), + [anon_sym_starts_DASHwith2] = ACTIONS(1853), + [anon_sym_ends_DASHwith2] = ACTIONS(1853), + [anon_sym_EQ_EQ2] = ACTIONS(1853), + [anon_sym_BANG_EQ2] = ACTIONS(1853), + [anon_sym_LT2] = ACTIONS(1851), + [anon_sym_LT_EQ2] = ACTIONS(1853), + [anon_sym_GT_EQ2] = ACTIONS(1853), + [anon_sym_EQ_TILDE2] = ACTIONS(1853), + [anon_sym_BANG_TILDE2] = ACTIONS(1853), + [anon_sym_STAR_STAR2] = ACTIONS(1853), + [anon_sym_PLUS_PLUS2] = ACTIONS(1853), + [anon_sym_SLASH2] = ACTIONS(1851), + [anon_sym_mod2] = ACTIONS(1853), + [anon_sym_SLASH_SLASH2] = ACTIONS(1853), + [anon_sym_PLUS2] = ACTIONS(1851), + [anon_sym_bit_DASHshl2] = ACTIONS(1853), + [anon_sym_bit_DASHshr2] = ACTIONS(1853), + [anon_sym_bit_DASHand2] = ACTIONS(1853), + [anon_sym_bit_DASHxor2] = ACTIONS(1853), + [anon_sym_bit_DASHor2] = ACTIONS(1853), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1851), + [anon_sym_out_GT] = ACTIONS(1851), + [anon_sym_e_GT] = ACTIONS(1851), + [anon_sym_o_GT] = ACTIONS(1851), + [anon_sym_err_PLUSout_GT] = ACTIONS(1851), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1851), + [anon_sym_o_PLUSe_GT] = ACTIONS(1851), + [anon_sym_e_PLUSo_GT] = ACTIONS(1851), + [anon_sym_err_GT_GT] = ACTIONS(1853), + [anon_sym_out_GT_GT] = ACTIONS(1853), + [anon_sym_e_GT_GT] = ACTIONS(1853), + [anon_sym_o_GT_GT] = ACTIONS(1853), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1853), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1853), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1853), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1853), [anon_sym_POUND] = ACTIONS(251), }, [1570] = { - [sym_cell_path] = STATE(2071), - [sym_path] = STATE(1497), + [sym_cell_path] = STATE(2047), + [sym_path] = STATE(1531), [sym_comment] = STATE(1570), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(2011), - [anon_sym_SEMI] = ACTIONS(2011), - [anon_sym_PIPE] = ACTIONS(2011), - [anon_sym_err_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_GT_PIPE] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2011), - [anon_sym_RPAREN] = ACTIONS(2011), - [anon_sym_GT2] = ACTIONS(2009), - [anon_sym_DASH2] = ACTIONS(2011), - [anon_sym_in2] = ACTIONS(2011), - [anon_sym_if] = ACTIONS(2011), - [anon_sym_LBRACE] = ACTIONS(2011), - [anon_sym_RBRACE] = ACTIONS(2011), - [anon_sym_EQ_GT] = ACTIONS(2011), - [anon_sym_STAR2] = ACTIONS(2009), - [anon_sym_and2] = ACTIONS(2011), - [anon_sym_xor2] = ACTIONS(2011), - [anon_sym_or2] = ACTIONS(2011), - [anon_sym_not_DASHin2] = ACTIONS(2011), - [anon_sym_starts_DASHwith2] = ACTIONS(2011), - [anon_sym_ends_DASHwith2] = ACTIONS(2011), - [anon_sym_EQ_EQ2] = ACTIONS(2011), - [anon_sym_BANG_EQ2] = ACTIONS(2011), - [anon_sym_LT2] = ACTIONS(2009), - [anon_sym_LT_EQ2] = ACTIONS(2011), - [anon_sym_GT_EQ2] = ACTIONS(2011), - [anon_sym_EQ_TILDE2] = ACTIONS(2011), - [anon_sym_BANG_TILDE2] = ACTIONS(2011), - [anon_sym_STAR_STAR2] = ACTIONS(2011), - [anon_sym_PLUS_PLUS2] = ACTIONS(2011), - [anon_sym_SLASH2] = ACTIONS(2009), - [anon_sym_mod2] = ACTIONS(2011), - [anon_sym_SLASH_SLASH2] = ACTIONS(2011), - [anon_sym_PLUS2] = ACTIONS(2009), - [anon_sym_bit_DASHshl2] = ACTIONS(2011), - [anon_sym_bit_DASHshr2] = ACTIONS(2011), - [anon_sym_bit_DASHand2] = ACTIONS(2011), - [anon_sym_bit_DASHxor2] = ACTIONS(2011), - [anon_sym_bit_DASHor2] = ACTIONS(2011), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(2009), - [anon_sym_out_GT] = ACTIONS(2009), - [anon_sym_e_GT] = ACTIONS(2009), - [anon_sym_o_GT] = ACTIONS(2009), - [anon_sym_err_PLUSout_GT] = ACTIONS(2009), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2009), - [anon_sym_o_PLUSe_GT] = ACTIONS(2009), - [anon_sym_e_PLUSo_GT] = ACTIONS(2009), - [anon_sym_err_GT_GT] = ACTIONS(2011), - [anon_sym_out_GT_GT] = ACTIONS(2011), - [anon_sym_e_GT_GT] = ACTIONS(2011), - [anon_sym_o_GT_GT] = ACTIONS(2011), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2011), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2011), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2011), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2011), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1857), + [anon_sym_SEMI] = ACTIONS(1857), + [anon_sym_PIPE] = ACTIONS(1857), + [anon_sym_err_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_GT_PIPE] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1857), + [anon_sym_RPAREN] = ACTIONS(1857), + [anon_sym_GT2] = ACTIONS(1855), + [anon_sym_DASH2] = ACTIONS(1857), + [anon_sym_in2] = ACTIONS(1857), + [anon_sym_if] = ACTIONS(1857), + [anon_sym_LBRACE] = ACTIONS(1857), + [anon_sym_RBRACE] = ACTIONS(1857), + [anon_sym_EQ_GT] = ACTIONS(1857), + [anon_sym_STAR2] = ACTIONS(1855), + [anon_sym_and2] = ACTIONS(1857), + [anon_sym_xor2] = ACTIONS(1857), + [anon_sym_or2] = ACTIONS(1857), + [anon_sym_not_DASHin2] = ACTIONS(1857), + [anon_sym_starts_DASHwith2] = ACTIONS(1857), + [anon_sym_ends_DASHwith2] = ACTIONS(1857), + [anon_sym_EQ_EQ2] = ACTIONS(1857), + [anon_sym_BANG_EQ2] = ACTIONS(1857), + [anon_sym_LT2] = ACTIONS(1855), + [anon_sym_LT_EQ2] = ACTIONS(1857), + [anon_sym_GT_EQ2] = ACTIONS(1857), + [anon_sym_EQ_TILDE2] = ACTIONS(1857), + [anon_sym_BANG_TILDE2] = ACTIONS(1857), + [anon_sym_STAR_STAR2] = ACTIONS(1857), + [anon_sym_PLUS_PLUS2] = ACTIONS(1857), + [anon_sym_SLASH2] = ACTIONS(1855), + [anon_sym_mod2] = ACTIONS(1857), + [anon_sym_SLASH_SLASH2] = ACTIONS(1857), + [anon_sym_PLUS2] = ACTIONS(1855), + [anon_sym_bit_DASHshl2] = ACTIONS(1857), + [anon_sym_bit_DASHshr2] = ACTIONS(1857), + [anon_sym_bit_DASHand2] = ACTIONS(1857), + [anon_sym_bit_DASHxor2] = ACTIONS(1857), + [anon_sym_bit_DASHor2] = ACTIONS(1857), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1855), + [anon_sym_out_GT] = ACTIONS(1855), + [anon_sym_e_GT] = ACTIONS(1855), + [anon_sym_o_GT] = ACTIONS(1855), + [anon_sym_err_PLUSout_GT] = ACTIONS(1855), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1855), + [anon_sym_o_PLUSe_GT] = ACTIONS(1855), + [anon_sym_e_PLUSo_GT] = ACTIONS(1855), + [anon_sym_err_GT_GT] = ACTIONS(1857), + [anon_sym_out_GT_GT] = ACTIONS(1857), + [anon_sym_e_GT_GT] = ACTIONS(1857), + [anon_sym_o_GT_GT] = ACTIONS(1857), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1857), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1857), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1857), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1857), [anon_sym_POUND] = ACTIONS(251), }, [1571] = { - [sym_cell_path] = STATE(2072), - [sym_path] = STATE(1497), [sym_comment] = STATE(1571), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(2091), - [anon_sym_SEMI] = ACTIONS(2091), - [anon_sym_PIPE] = ACTIONS(2091), - [anon_sym_err_GT_PIPE] = ACTIONS(2091), - [anon_sym_out_GT_PIPE] = ACTIONS(2091), - [anon_sym_e_GT_PIPE] = ACTIONS(2091), - [anon_sym_o_GT_PIPE] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2091), - [anon_sym_RPAREN] = ACTIONS(2091), - [anon_sym_GT2] = ACTIONS(2089), - [anon_sym_DASH2] = ACTIONS(2091), - [anon_sym_in2] = ACTIONS(2091), - [anon_sym_if] = ACTIONS(2091), - [anon_sym_LBRACE] = ACTIONS(2091), - [anon_sym_RBRACE] = ACTIONS(2091), - [anon_sym_EQ_GT] = ACTIONS(2091), - [anon_sym_STAR2] = ACTIONS(2089), - [anon_sym_and2] = ACTIONS(2091), - [anon_sym_xor2] = ACTIONS(2091), - [anon_sym_or2] = ACTIONS(2091), - [anon_sym_not_DASHin2] = ACTIONS(2091), - [anon_sym_starts_DASHwith2] = ACTIONS(2091), - [anon_sym_ends_DASHwith2] = ACTIONS(2091), - [anon_sym_EQ_EQ2] = ACTIONS(2091), - [anon_sym_BANG_EQ2] = ACTIONS(2091), - [anon_sym_LT2] = ACTIONS(2089), - [anon_sym_LT_EQ2] = ACTIONS(2091), - [anon_sym_GT_EQ2] = ACTIONS(2091), - [anon_sym_EQ_TILDE2] = ACTIONS(2091), - [anon_sym_BANG_TILDE2] = ACTIONS(2091), - [anon_sym_STAR_STAR2] = ACTIONS(2091), - [anon_sym_PLUS_PLUS2] = ACTIONS(2091), - [anon_sym_SLASH2] = ACTIONS(2089), - [anon_sym_mod2] = ACTIONS(2091), - [anon_sym_SLASH_SLASH2] = ACTIONS(2091), - [anon_sym_PLUS2] = ACTIONS(2089), - [anon_sym_bit_DASHshl2] = ACTIONS(2091), - [anon_sym_bit_DASHshr2] = ACTIONS(2091), - [anon_sym_bit_DASHand2] = ACTIONS(2091), - [anon_sym_bit_DASHxor2] = ACTIONS(2091), - [anon_sym_bit_DASHor2] = ACTIONS(2091), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(2089), - [anon_sym_out_GT] = ACTIONS(2089), - [anon_sym_e_GT] = ACTIONS(2089), - [anon_sym_o_GT] = ACTIONS(2089), - [anon_sym_err_PLUSout_GT] = ACTIONS(2089), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2089), - [anon_sym_o_PLUSe_GT] = ACTIONS(2089), - [anon_sym_e_PLUSo_GT] = ACTIONS(2089), - [anon_sym_err_GT_GT] = ACTIONS(2091), - [anon_sym_out_GT_GT] = ACTIONS(2091), - [anon_sym_e_GT_GT] = ACTIONS(2091), - [anon_sym_o_GT_GT] = ACTIONS(2091), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2091), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2091), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2091), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2091), - [anon_sym_POUND] = ACTIONS(251), - }, - [1572] = { - [sym_comment] = STATE(1572), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1573] = { - [sym_comment] = STATE(1573), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1000), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_DOT_DOT2] = ACTIONS(4818), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4820), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4820), - [anon_sym_null] = ACTIONS(1000), - [anon_sym_true] = ACTIONS(1000), - [anon_sym_false] = ACTIONS(1000), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1000), - [aux_sym__val_number_decimal_token3] = ACTIONS(1000), - [aux_sym__val_number_decimal_token4] = ACTIONS(1000), - [aux_sym__val_number_token1] = ACTIONS(1000), - [aux_sym__val_number_token2] = ACTIONS(1000), - [aux_sym__val_number_token3] = ACTIONS(1000), - [aux_sym__val_number_token4] = ACTIONS(1000), - [aux_sym__val_number_token5] = ACTIONS(1000), - [aux_sym__val_number_token6] = ACTIONS(1000), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1000), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1000), - [anon_sym_out_GT_GT] = ACTIONS(1000), - [anon_sym_e_GT_GT] = ACTIONS(1000), - [anon_sym_o_GT_GT] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [1574] = { - [sym_comment] = STATE(1574), - [sym__newline] = ACTIONS(4832), - [anon_sym_SEMI] = ACTIONS(4832), - [anon_sym_PIPE] = ACTIONS(4832), - [anon_sym_err_GT_PIPE] = ACTIONS(4832), - [anon_sym_out_GT_PIPE] = ACTIONS(4832), - [anon_sym_e_GT_PIPE] = ACTIONS(4832), - [anon_sym_o_GT_PIPE] = ACTIONS(4832), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4832), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4832), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4832), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4832), - [anon_sym_LBRACK] = ACTIONS(4832), - [anon_sym_LPAREN] = ACTIONS(4832), - [anon_sym_RPAREN] = ACTIONS(4832), - [anon_sym_DOLLAR] = ACTIONS(4834), - [anon_sym_DASH_DASH] = ACTIONS(4832), - [anon_sym_DASH2] = ACTIONS(4834), - [anon_sym_LBRACE] = ACTIONS(4832), - [anon_sym_DOT_DOT] = ACTIONS(4834), - [anon_sym_DOT_DOT2] = ACTIONS(4750), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4834), - [anon_sym_DOT_DOT_LT] = ACTIONS(4834), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4752), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4752), - [anon_sym_null] = ACTIONS(4832), - [anon_sym_true] = ACTIONS(4832), - [anon_sym_false] = ACTIONS(4832), - [aux_sym__val_number_decimal_token1] = ACTIONS(4834), - [aux_sym__val_number_decimal_token2] = ACTIONS(4832), - [aux_sym__val_number_decimal_token3] = ACTIONS(4832), - [aux_sym__val_number_decimal_token4] = ACTIONS(4832), - [aux_sym__val_number_token1] = ACTIONS(4832), - [aux_sym__val_number_token2] = ACTIONS(4832), - [aux_sym__val_number_token3] = ACTIONS(4832), - [aux_sym__val_number_token4] = ACTIONS(4832), - [aux_sym__val_number_token5] = ACTIONS(4832), - [aux_sym__val_number_token6] = ACTIONS(4832), - [anon_sym_0b] = ACTIONS(4834), - [anon_sym_0o] = ACTIONS(4834), - [anon_sym_0x] = ACTIONS(4834), - [sym_val_date] = ACTIONS(4832), - [anon_sym_DQUOTE] = ACTIONS(4832), - [sym__str_single_quotes] = ACTIONS(4832), - [sym__str_back_ticks] = ACTIONS(4832), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4832), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4832), - [anon_sym_err_GT] = ACTIONS(4834), - [anon_sym_out_GT] = ACTIONS(4834), - [anon_sym_e_GT] = ACTIONS(4834), - [anon_sym_o_GT] = ACTIONS(4834), - [anon_sym_err_PLUSout_GT] = ACTIONS(4834), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4834), - [anon_sym_o_PLUSe_GT] = ACTIONS(4834), - [anon_sym_e_PLUSo_GT] = ACTIONS(4834), - [anon_sym_err_GT_GT] = ACTIONS(4832), - [anon_sym_out_GT_GT] = ACTIONS(4832), - [anon_sym_e_GT_GT] = ACTIONS(4832), - [anon_sym_o_GT_GT] = ACTIONS(4832), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4832), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4832), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4832), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4832), - [aux_sym_unquoted_token1] = ACTIONS(4834), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4832), - }, - [1575] = { - [sym_comment] = STATE(1575), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2118), - [anon_sym_LPAREN] = ACTIONS(2118), - [anon_sym_DOLLAR] = ACTIONS(2116), - [anon_sym_DASH_DASH] = ACTIONS(2118), - [anon_sym_DASH2] = ACTIONS(2116), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_DOT_DOT] = ACTIONS(2116), - [anon_sym_DOT_DOT2] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2116), - [anon_sym_DOT_DOT_LT] = ACTIONS(2116), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), - [anon_sym_null] = ACTIONS(2118), - [anon_sym_true] = ACTIONS(2118), - [anon_sym_false] = ACTIONS(2118), - [aux_sym__val_number_decimal_token1] = ACTIONS(2116), - [aux_sym__val_number_decimal_token2] = ACTIONS(2118), - [aux_sym__val_number_decimal_token3] = ACTIONS(2118), - [aux_sym__val_number_decimal_token4] = ACTIONS(2118), - [aux_sym__val_number_token1] = ACTIONS(2118), - [aux_sym__val_number_token2] = ACTIONS(2118), - [aux_sym__val_number_token3] = ACTIONS(2118), - [aux_sym__val_number_token4] = ACTIONS(2118), - [aux_sym__val_number_token5] = ACTIONS(2118), - [aux_sym__val_number_token6] = ACTIONS(2118), - [anon_sym_0b] = ACTIONS(2116), - [anon_sym_0o] = ACTIONS(2116), - [anon_sym_0x] = ACTIONS(2116), - [sym_val_date] = ACTIONS(2118), - [anon_sym_DQUOTE] = ACTIONS(2118), - [sym__str_single_quotes] = ACTIONS(2118), - [sym__str_back_ticks] = ACTIONS(2118), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2118), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(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), - [aux_sym_unquoted_token1] = ACTIONS(2116), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2118), - }, - [1576] = { - [sym_comment] = STATE(1576), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_RPAREN] = ACTIONS(1719), - [anon_sym_GT2] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_if] = ACTIONS(1719), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_RBRACE] = ACTIONS(1719), - [anon_sym_EQ_GT] = ACTIONS(1719), - [anon_sym_STAR2] = ACTIONS(1717), - [anon_sym_and2] = ACTIONS(1719), - [anon_sym_xor2] = ACTIONS(1719), - [anon_sym_or2] = ACTIONS(1719), - [anon_sym_not_DASHin2] = ACTIONS(1719), - [anon_sym_starts_DASHwith2] = ACTIONS(1719), - [anon_sym_ends_DASHwith2] = ACTIONS(1719), - [anon_sym_EQ_EQ2] = ACTIONS(1719), - [anon_sym_BANG_EQ2] = ACTIONS(1719), - [anon_sym_LT2] = ACTIONS(1717), - [anon_sym_LT_EQ2] = ACTIONS(1719), - [anon_sym_GT_EQ2] = ACTIONS(1719), - [anon_sym_EQ_TILDE2] = ACTIONS(1719), - [anon_sym_BANG_TILDE2] = ACTIONS(1719), - [anon_sym_STAR_STAR2] = ACTIONS(1719), - [anon_sym_PLUS_PLUS2] = ACTIONS(1719), - [anon_sym_SLASH2] = ACTIONS(1717), - [anon_sym_mod2] = ACTIONS(1719), - [anon_sym_SLASH_SLASH2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_bit_DASHshl2] = ACTIONS(1719), - [anon_sym_bit_DASHshr2] = ACTIONS(1719), - [anon_sym_bit_DASHand2] = ACTIONS(1719), - [anon_sym_bit_DASHxor2] = ACTIONS(1719), - [anon_sym_bit_DASHor2] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_COLON2] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [anon_sym_POUND] = ACTIONS(251), - }, - [1577] = { - [sym_comment] = STATE(1577), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1765), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1765), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1765), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4836), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - }, - [1578] = { - [sym_comment] = STATE(1578), - [ts_builtin_sym_end] = ACTIONS(2150), - [sym__newline] = ACTIONS(2150), - [anon_sym_SEMI] = ACTIONS(2150), - [anon_sym_PIPE] = ACTIONS(2150), - [anon_sym_err_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_GT_PIPE] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2150), - [anon_sym_LBRACK] = ACTIONS(2150), - [anon_sym_LPAREN] = ACTIONS(2150), - [anon_sym_DOLLAR] = ACTIONS(2144), - [anon_sym_DASH_DASH] = ACTIONS(2150), - [anon_sym_DASH2] = ACTIONS(2144), - [anon_sym_LBRACE] = ACTIONS(2150), - [anon_sym_DOT_DOT] = ACTIONS(2144), - [anon_sym_DOT_DOT2] = ACTIONS(4838), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2144), - [anon_sym_DOT_DOT_LT] = ACTIONS(2144), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4840), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4840), - [anon_sym_null] = ACTIONS(2150), - [anon_sym_true] = ACTIONS(2150), - [anon_sym_false] = ACTIONS(2150), - [aux_sym__val_number_decimal_token1] = ACTIONS(2144), - [aux_sym__val_number_decimal_token2] = ACTIONS(2150), - [aux_sym__val_number_decimal_token3] = ACTIONS(2150), - [aux_sym__val_number_decimal_token4] = ACTIONS(2150), - [aux_sym__val_number_token1] = ACTIONS(2150), - [aux_sym__val_number_token2] = ACTIONS(2150), - [aux_sym__val_number_token3] = ACTIONS(2150), - [aux_sym__val_number_token4] = ACTIONS(2150), - [aux_sym__val_number_token5] = ACTIONS(2150), - [aux_sym__val_number_token6] = ACTIONS(2150), - [anon_sym_0b] = ACTIONS(2144), - [anon_sym_0o] = ACTIONS(2144), - [anon_sym_0x] = ACTIONS(2144), - [sym_val_date] = ACTIONS(2150), - [anon_sym_DQUOTE] = ACTIONS(2150), - [sym__str_single_quotes] = ACTIONS(2150), - [sym__str_back_ticks] = ACTIONS(2150), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2150), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2150), - [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(2150), - [anon_sym_out_GT_GT] = ACTIONS(2150), - [anon_sym_e_GT_GT] = ACTIONS(2150), - [anon_sym_o_GT_GT] = ACTIONS(2150), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2150), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2150), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2150), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2150), - [aux_sym_unquoted_token1] = ACTIONS(2144), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2150), - }, - [1579] = { - [sym_comment] = STATE(1579), - [ts_builtin_sym_end] = ACTIONS(2158), - [sym__newline] = ACTIONS(2158), - [anon_sym_SEMI] = ACTIONS(2158), - [anon_sym_PIPE] = ACTIONS(2158), - [anon_sym_err_GT_PIPE] = ACTIONS(2158), - [anon_sym_out_GT_PIPE] = ACTIONS(2158), - [anon_sym_e_GT_PIPE] = ACTIONS(2158), - [anon_sym_o_GT_PIPE] = ACTIONS(2158), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2158), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2158), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2158), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2158), - [anon_sym_LBRACK] = ACTIONS(2158), - [anon_sym_LPAREN] = ACTIONS(2158), - [anon_sym_DOLLAR] = ACTIONS(2152), - [anon_sym_DASH_DASH] = ACTIONS(2158), - [anon_sym_DASH2] = ACTIONS(2152), - [anon_sym_LBRACE] = ACTIONS(2158), - [anon_sym_DOT_DOT] = ACTIONS(2152), - [anon_sym_DOT_DOT2] = ACTIONS(4842), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2152), - [anon_sym_DOT_DOT_LT] = ACTIONS(2152), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4844), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4844), - [anon_sym_null] = ACTIONS(2158), - [anon_sym_true] = ACTIONS(2158), - [anon_sym_false] = ACTIONS(2158), - [aux_sym__val_number_decimal_token1] = ACTIONS(2152), - [aux_sym__val_number_decimal_token2] = ACTIONS(2158), - [aux_sym__val_number_decimal_token3] = ACTIONS(2158), - [aux_sym__val_number_decimal_token4] = ACTIONS(2158), - [aux_sym__val_number_token1] = ACTIONS(2158), - [aux_sym__val_number_token2] = ACTIONS(2158), - [aux_sym__val_number_token3] = ACTIONS(2158), - [aux_sym__val_number_token4] = ACTIONS(2158), - [aux_sym__val_number_token5] = ACTIONS(2158), - [aux_sym__val_number_token6] = ACTIONS(2158), - [anon_sym_0b] = ACTIONS(2152), - [anon_sym_0o] = ACTIONS(2152), - [anon_sym_0x] = ACTIONS(2152), - [sym_val_date] = ACTIONS(2158), - [anon_sym_DQUOTE] = ACTIONS(2158), - [sym__str_single_quotes] = ACTIONS(2158), - [sym__str_back_ticks] = ACTIONS(2158), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2158), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2158), - [anon_sym_err_GT] = ACTIONS(2152), - [anon_sym_out_GT] = ACTIONS(2152), - [anon_sym_e_GT] = ACTIONS(2152), - [anon_sym_o_GT] = ACTIONS(2152), - [anon_sym_err_PLUSout_GT] = ACTIONS(2152), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2152), - [anon_sym_o_PLUSe_GT] = ACTIONS(2152), - [anon_sym_e_PLUSo_GT] = ACTIONS(2152), - [anon_sym_err_GT_GT] = ACTIONS(2158), - [anon_sym_out_GT_GT] = ACTIONS(2158), - [anon_sym_e_GT_GT] = ACTIONS(2158), - [anon_sym_o_GT_GT] = ACTIONS(2158), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2158), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2158), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2158), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2158), - [aux_sym_unquoted_token1] = ACTIONS(2152), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2158), - }, - [1580] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1580), - [sym__newline] = ACTIONS(4846), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4846), - [anon_sym_err_GT_PIPE] = ACTIONS(4846), - [anon_sym_out_GT_PIPE] = ACTIONS(4846), - [anon_sym_e_GT_PIPE] = ACTIONS(4846), - [anon_sym_o_GT_PIPE] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4848), - [anon_sym_RPAREN] = ACTIONS(4846), - [anon_sym_DOLLAR] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_DASH2] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_RBRACE] = ACTIONS(4846), - [anon_sym_DOT_DOT] = ACTIONS(4848), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4846), - [anon_sym_DOT_DOT_LT] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4846), - [anon_sym_false] = ACTIONS(4846), - [aux_sym__val_number_decimal_token1] = ACTIONS(4848), - [aux_sym__val_number_decimal_token2] = ACTIONS(4846), - [aux_sym__val_number_decimal_token3] = ACTIONS(4846), - [aux_sym__val_number_decimal_token4] = ACTIONS(4846), - [aux_sym__val_number_token1] = ACTIONS(4846), - [aux_sym__val_number_token2] = ACTIONS(4846), - [aux_sym__val_number_token3] = ACTIONS(4846), - [aux_sym__val_number_token4] = ACTIONS(4846), - [aux_sym__val_number_token5] = ACTIONS(4846), - [aux_sym__val_number_token6] = ACTIONS(4846), - [anon_sym_0b] = ACTIONS(4848), - [anon_sym_0o] = ACTIONS(4848), - [anon_sym_0x] = ACTIONS(4848), - [sym_val_date] = ACTIONS(4846), - [anon_sym_DQUOTE] = ACTIONS(4846), - [sym__str_single_quotes] = ACTIONS(4846), - [sym__str_back_ticks] = ACTIONS(4846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4846), - [anon_sym_err_GT] = ACTIONS(4848), - [anon_sym_out_GT] = ACTIONS(4848), - [anon_sym_e_GT] = ACTIONS(4848), - [anon_sym_o_GT] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT] = ACTIONS(4848), - [anon_sym_err_GT_GT] = ACTIONS(4846), - [anon_sym_out_GT_GT] = ACTIONS(4846), - [anon_sym_e_GT_GT] = ACTIONS(4846), - [anon_sym_o_GT_GT] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4846), - [aux_sym_unquoted_token1] = ACTIONS(4848), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4846), - }, - [1581] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1581), - [sym__newline] = ACTIONS(4850), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4850), - [anon_sym_err_GT_PIPE] = ACTIONS(4850), - [anon_sym_out_GT_PIPE] = ACTIONS(4850), - [anon_sym_e_GT_PIPE] = ACTIONS(4850), - [anon_sym_o_GT_PIPE] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_LPAREN] = ACTIONS(4852), - [anon_sym_RPAREN] = ACTIONS(4850), - [anon_sym_DOLLAR] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_DASH2] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_RBRACE] = ACTIONS(4850), - [anon_sym_DOT_DOT] = ACTIONS(4852), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4850), - [anon_sym_DOT_DOT_LT] = ACTIONS(4850), - [anon_sym_null] = ACTIONS(4850), - [anon_sym_true] = ACTIONS(4850), - [anon_sym_false] = ACTIONS(4850), - [aux_sym__val_number_decimal_token1] = ACTIONS(4852), - [aux_sym__val_number_decimal_token2] = ACTIONS(4850), - [aux_sym__val_number_decimal_token3] = ACTIONS(4850), - [aux_sym__val_number_decimal_token4] = ACTIONS(4850), - [aux_sym__val_number_token1] = ACTIONS(4850), - [aux_sym__val_number_token2] = ACTIONS(4850), - [aux_sym__val_number_token3] = ACTIONS(4850), - [aux_sym__val_number_token4] = ACTIONS(4850), - [aux_sym__val_number_token5] = ACTIONS(4850), - [aux_sym__val_number_token6] = ACTIONS(4850), - [anon_sym_0b] = ACTIONS(4852), - [anon_sym_0o] = ACTIONS(4852), - [anon_sym_0x] = ACTIONS(4852), - [sym_val_date] = ACTIONS(4850), - [anon_sym_DQUOTE] = ACTIONS(4850), - [sym__str_single_quotes] = ACTIONS(4850), - [sym__str_back_ticks] = ACTIONS(4850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4850), - [anon_sym_err_GT] = ACTIONS(4852), - [anon_sym_out_GT] = ACTIONS(4852), - [anon_sym_e_GT] = ACTIONS(4852), - [anon_sym_o_GT] = ACTIONS(4852), - [anon_sym_err_PLUSout_GT] = ACTIONS(4852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4852), - [anon_sym_o_PLUSe_GT] = ACTIONS(4852), - [anon_sym_e_PLUSo_GT] = ACTIONS(4852), - [anon_sym_err_GT_GT] = ACTIONS(4850), - [anon_sym_out_GT_GT] = ACTIONS(4850), - [anon_sym_e_GT_GT] = ACTIONS(4850), - [anon_sym_o_GT_GT] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4850), - [aux_sym_unquoted_token1] = ACTIONS(4852), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4850), - }, - [1582] = { - [sym_comment] = STATE(1582), - [ts_builtin_sym_end] = ACTIONS(2166), - [sym__newline] = ACTIONS(2166), - [anon_sym_SEMI] = ACTIONS(2166), - [anon_sym_PIPE] = ACTIONS(2166), - [anon_sym_err_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_GT_PIPE] = ACTIONS(2166), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2166), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2166), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2166), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2166), - [anon_sym_LBRACK] = ACTIONS(2166), - [anon_sym_LPAREN] = ACTIONS(2166), - [anon_sym_DOLLAR] = ACTIONS(2160), - [anon_sym_DASH_DASH] = ACTIONS(2166), - [anon_sym_DASH2] = ACTIONS(2160), - [anon_sym_LBRACE] = ACTIONS(2166), - [anon_sym_DOT_DOT] = ACTIONS(2160), - [anon_sym_DOT_DOT2] = ACTIONS(4854), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2160), - [anon_sym_DOT_DOT_LT] = ACTIONS(2160), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4856), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4856), - [anon_sym_null] = ACTIONS(2166), - [anon_sym_true] = ACTIONS(2166), - [anon_sym_false] = ACTIONS(2166), - [aux_sym__val_number_decimal_token1] = ACTIONS(2160), - [aux_sym__val_number_decimal_token2] = ACTIONS(2166), - [aux_sym__val_number_decimal_token3] = ACTIONS(2166), - [aux_sym__val_number_decimal_token4] = ACTIONS(2166), - [aux_sym__val_number_token1] = ACTIONS(2166), - [aux_sym__val_number_token2] = ACTIONS(2166), - [aux_sym__val_number_token3] = ACTIONS(2166), - [aux_sym__val_number_token4] = ACTIONS(2166), - [aux_sym__val_number_token5] = ACTIONS(2166), - [aux_sym__val_number_token6] = ACTIONS(2166), - [anon_sym_0b] = ACTIONS(2160), - [anon_sym_0o] = ACTIONS(2160), - [anon_sym_0x] = ACTIONS(2160), - [sym_val_date] = ACTIONS(2166), - [anon_sym_DQUOTE] = ACTIONS(2166), - [sym__str_single_quotes] = ACTIONS(2166), - [sym__str_back_ticks] = ACTIONS(2166), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2166), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2166), - [anon_sym_err_GT] = ACTIONS(2160), - [anon_sym_out_GT] = ACTIONS(2160), - [anon_sym_e_GT] = ACTIONS(2160), - [anon_sym_o_GT] = ACTIONS(2160), - [anon_sym_err_PLUSout_GT] = ACTIONS(2160), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2160), - [anon_sym_o_PLUSe_GT] = ACTIONS(2160), - [anon_sym_e_PLUSo_GT] = ACTIONS(2160), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2160), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2166), - }, - [1583] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1583), - [sym__newline] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4858), - [anon_sym_err_GT_PIPE] = ACTIONS(4858), - [anon_sym_out_GT_PIPE] = ACTIONS(4858), - [anon_sym_e_GT_PIPE] = ACTIONS(4858), - [anon_sym_o_GT_PIPE] = ACTIONS(4858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_RPAREN] = ACTIONS(4858), - [anon_sym_DOLLAR] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_DASH2] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_RBRACE] = ACTIONS(4858), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4858), - [anon_sym_DOT_DOT_LT] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4858), - [anon_sym_true] = ACTIONS(4858), - [anon_sym_false] = ACTIONS(4858), - [aux_sym__val_number_decimal_token1] = ACTIONS(4860), - [aux_sym__val_number_decimal_token2] = ACTIONS(4858), - [aux_sym__val_number_decimal_token3] = ACTIONS(4858), - [aux_sym__val_number_decimal_token4] = ACTIONS(4858), - [aux_sym__val_number_token1] = ACTIONS(4858), - [aux_sym__val_number_token2] = ACTIONS(4858), - [aux_sym__val_number_token3] = ACTIONS(4858), - [aux_sym__val_number_token4] = ACTIONS(4858), - [aux_sym__val_number_token5] = ACTIONS(4858), - [aux_sym__val_number_token6] = ACTIONS(4858), - [anon_sym_0b] = ACTIONS(4860), - [anon_sym_0o] = ACTIONS(4860), - [anon_sym_0x] = ACTIONS(4860), - [sym_val_date] = ACTIONS(4858), - [anon_sym_DQUOTE] = ACTIONS(4858), - [sym__str_single_quotes] = ACTIONS(4858), - [sym__str_back_ticks] = ACTIONS(4858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4858), - [anon_sym_err_GT] = ACTIONS(4860), - [anon_sym_out_GT] = ACTIONS(4860), - [anon_sym_e_GT] = ACTIONS(4860), - [anon_sym_o_GT] = ACTIONS(4860), - [anon_sym_err_PLUSout_GT] = ACTIONS(4860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4860), - [anon_sym_o_PLUSe_GT] = ACTIONS(4860), - [anon_sym_e_PLUSo_GT] = ACTIONS(4860), - [anon_sym_err_GT_GT] = ACTIONS(4858), - [anon_sym_out_GT_GT] = ACTIONS(4858), - [anon_sym_e_GT_GT] = ACTIONS(4858), - [anon_sym_o_GT_GT] = ACTIONS(4858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4858), - [aux_sym_unquoted_token1] = ACTIONS(4860), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4858), - }, - [1584] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1584), + [sym_long_flag_identifier] = ACTIONS(4860), [sym__newline] = ACTIONS(4862), [anon_sym_SEMI] = ACTIONS(4862), [anon_sym_PIPE] = ACTIONS(4862), @@ -226417,7 +225522,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4862), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4862), [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4862), [anon_sym_RPAREN] = ACTIONS(4862), [anon_sym_DOLLAR] = ACTIONS(4864), [anon_sym_DASH_DASH] = ACTIONS(4862), @@ -226425,26 +225530,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(4862), [anon_sym_RBRACE] = ACTIONS(4862), [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_LPAREN2] = ACTIONS(4412), [anon_sym_DOT_DOT_EQ] = ACTIONS(4862), [anon_sym_DOT_DOT_LT] = ACTIONS(4862), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4862), - [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4864), + [anon_sym_false] = ACTIONS(4864), [aux_sym__val_number_decimal_token1] = ACTIONS(4864), [aux_sym__val_number_decimal_token2] = ACTIONS(4862), [aux_sym__val_number_decimal_token3] = ACTIONS(4862), [aux_sym__val_number_decimal_token4] = ACTIONS(4862), - [aux_sym__val_number_token1] = ACTIONS(4862), - [aux_sym__val_number_token2] = ACTIONS(4862), - [aux_sym__val_number_token3] = ACTIONS(4862), - [aux_sym__val_number_token4] = ACTIONS(4862), + [aux_sym__val_number_token1] = ACTIONS(4864), + [aux_sym__val_number_token2] = ACTIONS(4864), + [aux_sym__val_number_token3] = ACTIONS(4864), + [aux_sym__val_number_token4] = ACTIONS(4864), [aux_sym__val_number_token5] = ACTIONS(4862), - [aux_sym__val_number_token6] = ACTIONS(4862), + [aux_sym__val_number_token6] = ACTIONS(4864), [anon_sym_0b] = ACTIONS(4864), [anon_sym_0o] = ACTIONS(4864), [anon_sym_0x] = ACTIONS(4864), - [sym_val_date] = ACTIONS(4862), + [sym_val_date] = ACTIONS(4864), [anon_sym_DQUOTE] = ACTIONS(4862), [sym__str_single_quotes] = ACTIONS(4862), [sym__str_back_ticks] = ACTIONS(4862), @@ -226466,358 +225570,971 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4862), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4862), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4862), + [anon_sym_EQ2] = ACTIONS(4866), [aux_sym_unquoted_token1] = ACTIONS(4864), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(4862), }, - [1585] = { - [sym_comment] = STATE(1585), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_RPAREN] = ACTIONS(2104), - [anon_sym_GT2] = ACTIONS(2102), - [anon_sym_DASH2] = ACTIONS(2104), - [anon_sym_in2] = ACTIONS(2104), - [anon_sym_if] = ACTIONS(2104), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_RBRACE] = ACTIONS(2104), - [anon_sym_EQ_GT] = ACTIONS(2104), - [anon_sym_STAR2] = ACTIONS(2102), - [anon_sym_and2] = ACTIONS(2104), - [anon_sym_xor2] = ACTIONS(2104), - [anon_sym_or2] = ACTIONS(2104), - [anon_sym_not_DASHin2] = ACTIONS(2104), - [anon_sym_starts_DASHwith2] = ACTIONS(2104), - [anon_sym_ends_DASHwith2] = ACTIONS(2104), - [anon_sym_EQ_EQ2] = ACTIONS(2104), - [anon_sym_BANG_EQ2] = ACTIONS(2104), - [anon_sym_LT2] = ACTIONS(2102), - [anon_sym_LT_EQ2] = ACTIONS(2104), - [anon_sym_GT_EQ2] = ACTIONS(2104), - [anon_sym_EQ_TILDE2] = ACTIONS(2104), - [anon_sym_BANG_TILDE2] = ACTIONS(2104), - [anon_sym_STAR_STAR2] = ACTIONS(2104), - [anon_sym_PLUS_PLUS2] = ACTIONS(2104), - [anon_sym_SLASH2] = ACTIONS(2102), - [anon_sym_mod2] = ACTIONS(2104), - [anon_sym_SLASH_SLASH2] = ACTIONS(2104), - [anon_sym_PLUS2] = ACTIONS(2102), - [anon_sym_bit_DASHshl2] = ACTIONS(2104), - [anon_sym_bit_DASHshr2] = ACTIONS(2104), - [anon_sym_bit_DASHand2] = ACTIONS(2104), - [anon_sym_bit_DASHxor2] = ACTIONS(2104), - [anon_sym_bit_DASHor2] = ACTIONS(2104), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_COLON2] = ACTIONS(2104), - [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(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), + [1572] = { + [sym_comment] = STATE(1572), + [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_LBRACK] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2216), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_0b] = ACTIONS(2216), + [anon_sym_0o] = ACTIONS(2216), + [anon_sym_0x] = ACTIONS(2216), + [sym_val_date] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), + [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(2216), + [anon_sym_out_GT_GT] = ACTIONS(2216), + [anon_sym_e_GT_GT] = ACTIONS(2216), + [anon_sym_o_GT_GT] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2216), + [aux_sym_unquoted_token1] = ACTIONS(2216), + [aux_sym_unquoted_token4] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, + [1573] = { + [sym_comment] = STATE(1573), + [ts_builtin_sym_end] = ACTIONS(2037), + [sym__newline] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_err_GT_PIPE] = ACTIONS(2037), + [anon_sym_out_GT_PIPE] = ACTIONS(2037), + [anon_sym_e_GT_PIPE] = ACTIONS(2037), + [anon_sym_o_GT_PIPE] = ACTIONS(2037), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2037), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2037), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2037), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2037), + [anon_sym_LBRACK] = ACTIONS(2037), + [anon_sym_LPAREN] = ACTIONS(2037), + [anon_sym_DOLLAR] = ACTIONS(2035), + [anon_sym_DASH_DASH] = ACTIONS(2037), + [anon_sym_DASH2] = ACTIONS(2035), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_DOT_DOT] = ACTIONS(2035), + [anon_sym_DOT_DOT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2035), + [anon_sym_DOT_DOT_LT] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2037), + [anon_sym_null] = ACTIONS(2037), + [anon_sym_true] = ACTIONS(2037), + [anon_sym_false] = ACTIONS(2037), + [aux_sym__val_number_decimal_token1] = ACTIONS(2035), + [aux_sym__val_number_decimal_token2] = ACTIONS(2037), + [aux_sym__val_number_decimal_token3] = ACTIONS(2037), + [aux_sym__val_number_decimal_token4] = ACTIONS(2037), + [aux_sym__val_number_token1] = ACTIONS(2037), + [aux_sym__val_number_token2] = ACTIONS(2037), + [aux_sym__val_number_token3] = ACTIONS(2037), + [aux_sym__val_number_token4] = ACTIONS(2037), + [aux_sym__val_number_token5] = ACTIONS(2037), + [aux_sym__val_number_token6] = ACTIONS(2037), + [anon_sym_0b] = ACTIONS(2035), + [anon_sym_0o] = ACTIONS(2035), + [anon_sym_0x] = ACTIONS(2035), + [sym_val_date] = ACTIONS(2037), + [anon_sym_DQUOTE] = ACTIONS(2037), + [sym__str_single_quotes] = ACTIONS(2037), + [sym__str_back_ticks] = ACTIONS(2037), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2037), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2037), + [anon_sym_err_GT] = ACTIONS(2035), + [anon_sym_out_GT] = ACTIONS(2035), + [anon_sym_e_GT] = ACTIONS(2035), + [anon_sym_o_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT] = ACTIONS(2035), + [anon_sym_err_GT_GT] = ACTIONS(2037), + [anon_sym_out_GT_GT] = ACTIONS(2037), + [anon_sym_e_GT_GT] = ACTIONS(2037), + [anon_sym_o_GT_GT] = ACTIONS(2037), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2037), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2037), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2037), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2037), + [aux_sym_unquoted_token1] = ACTIONS(2035), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2037), + }, + [1574] = { + [sym_cell_path] = STATE(2048), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1574), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1861), + [anon_sym_SEMI] = ACTIONS(1861), + [anon_sym_PIPE] = ACTIONS(1861), + [anon_sym_err_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_GT_PIPE] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1861), + [anon_sym_RPAREN] = ACTIONS(1861), + [anon_sym_GT2] = ACTIONS(1859), + [anon_sym_DASH2] = ACTIONS(1861), + [anon_sym_in2] = ACTIONS(1861), + [anon_sym_if] = ACTIONS(1861), + [anon_sym_LBRACE] = ACTIONS(1861), + [anon_sym_RBRACE] = ACTIONS(1861), + [anon_sym_EQ_GT] = ACTIONS(1861), + [anon_sym_STAR2] = ACTIONS(1859), + [anon_sym_and2] = ACTIONS(1861), + [anon_sym_xor2] = ACTIONS(1861), + [anon_sym_or2] = ACTIONS(1861), + [anon_sym_not_DASHin2] = ACTIONS(1861), + [anon_sym_starts_DASHwith2] = ACTIONS(1861), + [anon_sym_ends_DASHwith2] = ACTIONS(1861), + [anon_sym_EQ_EQ2] = ACTIONS(1861), + [anon_sym_BANG_EQ2] = ACTIONS(1861), + [anon_sym_LT2] = ACTIONS(1859), + [anon_sym_LT_EQ2] = ACTIONS(1861), + [anon_sym_GT_EQ2] = ACTIONS(1861), + [anon_sym_EQ_TILDE2] = ACTIONS(1861), + [anon_sym_BANG_TILDE2] = ACTIONS(1861), + [anon_sym_STAR_STAR2] = ACTIONS(1861), + [anon_sym_PLUS_PLUS2] = ACTIONS(1861), + [anon_sym_SLASH2] = ACTIONS(1859), + [anon_sym_mod2] = ACTIONS(1861), + [anon_sym_SLASH_SLASH2] = ACTIONS(1861), + [anon_sym_PLUS2] = ACTIONS(1859), + [anon_sym_bit_DASHshl2] = ACTIONS(1861), + [anon_sym_bit_DASHshr2] = ACTIONS(1861), + [anon_sym_bit_DASHand2] = ACTIONS(1861), + [anon_sym_bit_DASHxor2] = ACTIONS(1861), + [anon_sym_bit_DASHor2] = ACTIONS(1861), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1859), + [anon_sym_out_GT] = ACTIONS(1859), + [anon_sym_e_GT] = ACTIONS(1859), + [anon_sym_o_GT] = ACTIONS(1859), + [anon_sym_err_PLUSout_GT] = ACTIONS(1859), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1859), + [anon_sym_o_PLUSe_GT] = ACTIONS(1859), + [anon_sym_e_PLUSo_GT] = ACTIONS(1859), + [anon_sym_err_GT_GT] = ACTIONS(1861), + [anon_sym_out_GT_GT] = ACTIONS(1861), + [anon_sym_e_GT_GT] = ACTIONS(1861), + [anon_sym_o_GT_GT] = ACTIONS(1861), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1861), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1861), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1861), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1861), [anon_sym_POUND] = ACTIONS(251), }, - [1586] = { - [sym_cell_path] = STATE(2061), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1586), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1979), - [anon_sym_SEMI] = ACTIONS(1979), - [anon_sym_PIPE] = ACTIONS(1979), - [anon_sym_err_GT_PIPE] = ACTIONS(1979), - [anon_sym_out_GT_PIPE] = ACTIONS(1979), - [anon_sym_e_GT_PIPE] = ACTIONS(1979), - [anon_sym_o_GT_PIPE] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1979), - [anon_sym_RPAREN] = ACTIONS(1979), - [anon_sym_GT2] = ACTIONS(1977), - [anon_sym_DASH2] = ACTIONS(1979), - [anon_sym_in2] = ACTIONS(1979), - [anon_sym_if] = ACTIONS(1979), - [anon_sym_LBRACE] = ACTIONS(1979), - [anon_sym_RBRACE] = ACTIONS(1979), - [anon_sym_EQ_GT] = ACTIONS(1979), - [anon_sym_STAR2] = ACTIONS(1977), - [anon_sym_and2] = ACTIONS(1979), - [anon_sym_xor2] = ACTIONS(1979), - [anon_sym_or2] = ACTIONS(1979), - [anon_sym_not_DASHin2] = ACTIONS(1979), - [anon_sym_starts_DASHwith2] = ACTIONS(1979), - [anon_sym_ends_DASHwith2] = ACTIONS(1979), - [anon_sym_EQ_EQ2] = ACTIONS(1979), - [anon_sym_BANG_EQ2] = ACTIONS(1979), - [anon_sym_LT2] = ACTIONS(1977), - [anon_sym_LT_EQ2] = ACTIONS(1979), - [anon_sym_GT_EQ2] = ACTIONS(1979), - [anon_sym_EQ_TILDE2] = ACTIONS(1979), - [anon_sym_BANG_TILDE2] = ACTIONS(1979), - [anon_sym_STAR_STAR2] = ACTIONS(1979), - [anon_sym_PLUS_PLUS2] = ACTIONS(1979), - [anon_sym_SLASH2] = ACTIONS(1977), - [anon_sym_mod2] = ACTIONS(1979), - [anon_sym_SLASH_SLASH2] = ACTIONS(1979), - [anon_sym_PLUS2] = ACTIONS(1977), - [anon_sym_bit_DASHshl2] = ACTIONS(1979), - [anon_sym_bit_DASHshr2] = ACTIONS(1979), - [anon_sym_bit_DASHand2] = ACTIONS(1979), - [anon_sym_bit_DASHxor2] = ACTIONS(1979), - [anon_sym_bit_DASHor2] = ACTIONS(1979), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1977), - [anon_sym_out_GT] = ACTIONS(1977), - [anon_sym_e_GT] = ACTIONS(1977), - [anon_sym_o_GT] = ACTIONS(1977), - [anon_sym_err_PLUSout_GT] = ACTIONS(1977), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1977), - [anon_sym_o_PLUSe_GT] = ACTIONS(1977), - [anon_sym_e_PLUSo_GT] = ACTIONS(1977), - [anon_sym_err_GT_GT] = ACTIONS(1979), - [anon_sym_out_GT_GT] = ACTIONS(1979), - [anon_sym_e_GT_GT] = ACTIONS(1979), - [anon_sym_o_GT_GT] = ACTIONS(1979), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1979), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1979), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1979), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1979), + [1575] = { + [sym_cell_path] = STATE(2049), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1575), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1865), + [anon_sym_SEMI] = ACTIONS(1865), + [anon_sym_PIPE] = ACTIONS(1865), + [anon_sym_err_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_GT_PIPE] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1865), + [anon_sym_RPAREN] = ACTIONS(1865), + [anon_sym_GT2] = ACTIONS(1863), + [anon_sym_DASH2] = ACTIONS(1865), + [anon_sym_in2] = ACTIONS(1865), + [anon_sym_if] = ACTIONS(1865), + [anon_sym_LBRACE] = ACTIONS(1865), + [anon_sym_RBRACE] = ACTIONS(1865), + [anon_sym_EQ_GT] = ACTIONS(1865), + [anon_sym_STAR2] = ACTIONS(1863), + [anon_sym_and2] = ACTIONS(1865), + [anon_sym_xor2] = ACTIONS(1865), + [anon_sym_or2] = ACTIONS(1865), + [anon_sym_not_DASHin2] = ACTIONS(1865), + [anon_sym_starts_DASHwith2] = ACTIONS(1865), + [anon_sym_ends_DASHwith2] = ACTIONS(1865), + [anon_sym_EQ_EQ2] = ACTIONS(1865), + [anon_sym_BANG_EQ2] = ACTIONS(1865), + [anon_sym_LT2] = ACTIONS(1863), + [anon_sym_LT_EQ2] = ACTIONS(1865), + [anon_sym_GT_EQ2] = ACTIONS(1865), + [anon_sym_EQ_TILDE2] = ACTIONS(1865), + [anon_sym_BANG_TILDE2] = ACTIONS(1865), + [anon_sym_STAR_STAR2] = ACTIONS(1865), + [anon_sym_PLUS_PLUS2] = ACTIONS(1865), + [anon_sym_SLASH2] = ACTIONS(1863), + [anon_sym_mod2] = ACTIONS(1865), + [anon_sym_SLASH_SLASH2] = ACTIONS(1865), + [anon_sym_PLUS2] = ACTIONS(1863), + [anon_sym_bit_DASHshl2] = ACTIONS(1865), + [anon_sym_bit_DASHshr2] = ACTIONS(1865), + [anon_sym_bit_DASHand2] = ACTIONS(1865), + [anon_sym_bit_DASHxor2] = ACTIONS(1865), + [anon_sym_bit_DASHor2] = ACTIONS(1865), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1863), + [anon_sym_out_GT] = ACTIONS(1863), + [anon_sym_e_GT] = ACTIONS(1863), + [anon_sym_o_GT] = ACTIONS(1863), + [anon_sym_err_PLUSout_GT] = ACTIONS(1863), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1863), + [anon_sym_o_PLUSe_GT] = ACTIONS(1863), + [anon_sym_e_PLUSo_GT] = ACTIONS(1863), + [anon_sym_err_GT_GT] = ACTIONS(1865), + [anon_sym_out_GT_GT] = ACTIONS(1865), + [anon_sym_e_GT_GT] = ACTIONS(1865), + [anon_sym_o_GT_GT] = ACTIONS(1865), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1865), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1865), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1865), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1865), [anon_sym_POUND] = ACTIONS(251), }, - [1587] = { - [sym_cell_path] = STATE(2063), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1587), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1983), - [anon_sym_SEMI] = ACTIONS(1983), - [anon_sym_PIPE] = ACTIONS(1983), - [anon_sym_err_GT_PIPE] = ACTIONS(1983), - [anon_sym_out_GT_PIPE] = ACTIONS(1983), - [anon_sym_e_GT_PIPE] = ACTIONS(1983), - [anon_sym_o_GT_PIPE] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1983), - [anon_sym_RPAREN] = ACTIONS(1983), - [anon_sym_GT2] = ACTIONS(1981), - [anon_sym_DASH2] = ACTIONS(1983), - [anon_sym_in2] = ACTIONS(1983), - [anon_sym_if] = ACTIONS(1983), - [anon_sym_LBRACE] = ACTIONS(1983), - [anon_sym_RBRACE] = ACTIONS(1983), - [anon_sym_EQ_GT] = ACTIONS(1983), - [anon_sym_STAR2] = ACTIONS(1981), - [anon_sym_and2] = ACTIONS(1983), - [anon_sym_xor2] = ACTIONS(1983), - [anon_sym_or2] = ACTIONS(1983), - [anon_sym_not_DASHin2] = ACTIONS(1983), - [anon_sym_starts_DASHwith2] = ACTIONS(1983), - [anon_sym_ends_DASHwith2] = ACTIONS(1983), - [anon_sym_EQ_EQ2] = ACTIONS(1983), - [anon_sym_BANG_EQ2] = ACTIONS(1983), - [anon_sym_LT2] = ACTIONS(1981), - [anon_sym_LT_EQ2] = ACTIONS(1983), - [anon_sym_GT_EQ2] = ACTIONS(1983), - [anon_sym_EQ_TILDE2] = ACTIONS(1983), - [anon_sym_BANG_TILDE2] = ACTIONS(1983), - [anon_sym_STAR_STAR2] = ACTIONS(1983), - [anon_sym_PLUS_PLUS2] = ACTIONS(1983), - [anon_sym_SLASH2] = ACTIONS(1981), - [anon_sym_mod2] = ACTIONS(1983), - [anon_sym_SLASH_SLASH2] = ACTIONS(1983), - [anon_sym_PLUS2] = ACTIONS(1981), - [anon_sym_bit_DASHshl2] = ACTIONS(1983), - [anon_sym_bit_DASHshr2] = ACTIONS(1983), - [anon_sym_bit_DASHand2] = ACTIONS(1983), - [anon_sym_bit_DASHxor2] = ACTIONS(1983), - [anon_sym_bit_DASHor2] = ACTIONS(1983), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1981), - [anon_sym_out_GT] = ACTIONS(1981), - [anon_sym_e_GT] = ACTIONS(1981), - [anon_sym_o_GT] = ACTIONS(1981), - [anon_sym_err_PLUSout_GT] = ACTIONS(1981), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1981), - [anon_sym_o_PLUSe_GT] = ACTIONS(1981), - [anon_sym_e_PLUSo_GT] = ACTIONS(1981), - [anon_sym_err_GT_GT] = ACTIONS(1983), - [anon_sym_out_GT_GT] = ACTIONS(1983), - [anon_sym_e_GT_GT] = ACTIONS(1983), - [anon_sym_o_GT_GT] = ACTIONS(1983), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1983), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1983), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1983), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1983), + [1576] = { + [sym_comment] = STATE(1576), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_RPAREN] = ACTIONS(1813), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_RBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1813), + [anon_sym_DOT_DOT_LT] = ACTIONS(1813), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1813), + }, + [1577] = { + [sym_cell_path] = STATE(2050), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1577), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1869), + [anon_sym_SEMI] = ACTIONS(1869), + [anon_sym_PIPE] = ACTIONS(1869), + [anon_sym_err_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_GT_PIPE] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1869), + [anon_sym_RPAREN] = ACTIONS(1869), + [anon_sym_GT2] = ACTIONS(1867), + [anon_sym_DASH2] = ACTIONS(1869), + [anon_sym_in2] = ACTIONS(1869), + [anon_sym_if] = ACTIONS(1869), + [anon_sym_LBRACE] = ACTIONS(1869), + [anon_sym_RBRACE] = ACTIONS(1869), + [anon_sym_EQ_GT] = ACTIONS(1869), + [anon_sym_STAR2] = ACTIONS(1867), + [anon_sym_and2] = ACTIONS(1869), + [anon_sym_xor2] = ACTIONS(1869), + [anon_sym_or2] = ACTIONS(1869), + [anon_sym_not_DASHin2] = ACTIONS(1869), + [anon_sym_starts_DASHwith2] = ACTIONS(1869), + [anon_sym_ends_DASHwith2] = ACTIONS(1869), + [anon_sym_EQ_EQ2] = ACTIONS(1869), + [anon_sym_BANG_EQ2] = ACTIONS(1869), + [anon_sym_LT2] = ACTIONS(1867), + [anon_sym_LT_EQ2] = ACTIONS(1869), + [anon_sym_GT_EQ2] = ACTIONS(1869), + [anon_sym_EQ_TILDE2] = ACTIONS(1869), + [anon_sym_BANG_TILDE2] = ACTIONS(1869), + [anon_sym_STAR_STAR2] = ACTIONS(1869), + [anon_sym_PLUS_PLUS2] = ACTIONS(1869), + [anon_sym_SLASH2] = ACTIONS(1867), + [anon_sym_mod2] = ACTIONS(1869), + [anon_sym_SLASH_SLASH2] = ACTIONS(1869), + [anon_sym_PLUS2] = ACTIONS(1867), + [anon_sym_bit_DASHshl2] = ACTIONS(1869), + [anon_sym_bit_DASHshr2] = ACTIONS(1869), + [anon_sym_bit_DASHand2] = ACTIONS(1869), + [anon_sym_bit_DASHxor2] = ACTIONS(1869), + [anon_sym_bit_DASHor2] = ACTIONS(1869), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1867), + [anon_sym_out_GT] = ACTIONS(1867), + [anon_sym_e_GT] = ACTIONS(1867), + [anon_sym_o_GT] = ACTIONS(1867), + [anon_sym_err_PLUSout_GT] = ACTIONS(1867), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1867), + [anon_sym_o_PLUSe_GT] = ACTIONS(1867), + [anon_sym_e_PLUSo_GT] = ACTIONS(1867), + [anon_sym_err_GT_GT] = ACTIONS(1869), + [anon_sym_out_GT_GT] = ACTIONS(1869), + [anon_sym_e_GT_GT] = ACTIONS(1869), + [anon_sym_o_GT_GT] = ACTIONS(1869), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1869), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1869), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1869), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1869), [anon_sym_POUND] = ACTIONS(251), }, - [1588] = { - [sym_comment] = STATE(1588), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_RPAREN] = ACTIONS(1794), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [aux_sym__val_number_token4] = ACTIONS(1794), - [aux_sym__val_number_token5] = ACTIONS(1794), - [aux_sym__val_number_token6] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1794), + [1578] = { + [sym_cell_path] = STATE(2051), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1578), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1877), + [anon_sym_SEMI] = ACTIONS(1877), + [anon_sym_PIPE] = ACTIONS(1877), + [anon_sym_err_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_GT_PIPE] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1877), + [anon_sym_RPAREN] = ACTIONS(1877), + [anon_sym_GT2] = ACTIONS(1875), + [anon_sym_DASH2] = ACTIONS(1877), + [anon_sym_in2] = ACTIONS(1877), + [anon_sym_if] = ACTIONS(1877), + [anon_sym_LBRACE] = ACTIONS(1877), + [anon_sym_RBRACE] = ACTIONS(1877), + [anon_sym_EQ_GT] = ACTIONS(1877), + [anon_sym_STAR2] = ACTIONS(1875), + [anon_sym_and2] = ACTIONS(1877), + [anon_sym_xor2] = ACTIONS(1877), + [anon_sym_or2] = ACTIONS(1877), + [anon_sym_not_DASHin2] = ACTIONS(1877), + [anon_sym_starts_DASHwith2] = ACTIONS(1877), + [anon_sym_ends_DASHwith2] = ACTIONS(1877), + [anon_sym_EQ_EQ2] = ACTIONS(1877), + [anon_sym_BANG_EQ2] = ACTIONS(1877), + [anon_sym_LT2] = ACTIONS(1875), + [anon_sym_LT_EQ2] = ACTIONS(1877), + [anon_sym_GT_EQ2] = ACTIONS(1877), + [anon_sym_EQ_TILDE2] = ACTIONS(1877), + [anon_sym_BANG_TILDE2] = ACTIONS(1877), + [anon_sym_STAR_STAR2] = ACTIONS(1877), + [anon_sym_PLUS_PLUS2] = ACTIONS(1877), + [anon_sym_SLASH2] = ACTIONS(1875), + [anon_sym_mod2] = ACTIONS(1877), + [anon_sym_SLASH_SLASH2] = ACTIONS(1877), + [anon_sym_PLUS2] = ACTIONS(1875), + [anon_sym_bit_DASHshl2] = ACTIONS(1877), + [anon_sym_bit_DASHshr2] = ACTIONS(1877), + [anon_sym_bit_DASHand2] = ACTIONS(1877), + [anon_sym_bit_DASHxor2] = ACTIONS(1877), + [anon_sym_bit_DASHor2] = ACTIONS(1877), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1875), + [anon_sym_out_GT] = ACTIONS(1875), + [anon_sym_e_GT] = ACTIONS(1875), + [anon_sym_o_GT] = ACTIONS(1875), + [anon_sym_err_PLUSout_GT] = ACTIONS(1875), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1875), + [anon_sym_o_PLUSe_GT] = ACTIONS(1875), + [anon_sym_e_PLUSo_GT] = ACTIONS(1875), + [anon_sym_err_GT_GT] = ACTIONS(1877), + [anon_sym_out_GT_GT] = ACTIONS(1877), + [anon_sym_e_GT_GT] = ACTIONS(1877), + [anon_sym_o_GT_GT] = ACTIONS(1877), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1877), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1877), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1877), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1877), + [anon_sym_POUND] = ACTIONS(251), }, - [1589] = { - [sym_comment] = STATE(1589), - [sym__newline] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_err_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_GT_PIPE] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_RPAREN] = ACTIONS(2186), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2186), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_RBRACE] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_LT] = ACTIONS(2186), - [anon_sym_null] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(2186), - [aux_sym__val_number_token2] = ACTIONS(2186), - [aux_sym__val_number_token3] = ACTIONS(2186), - [aux_sym__val_number_token4] = ACTIONS(2186), - [aux_sym__val_number_token5] = ACTIONS(2186), - [aux_sym__val_number_token6] = ACTIONS(2186), - [anon_sym_0b] = ACTIONS(2184), - [anon_sym_0o] = ACTIONS(2184), - [anon_sym_0x] = ACTIONS(2184), - [sym_val_date] = ACTIONS(2186), - [anon_sym_DQUOTE] = ACTIONS(2186), - [sym__str_single_quotes] = ACTIONS(2186), - [sym__str_back_ticks] = ACTIONS(2186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2186), - [anon_sym_err_GT] = ACTIONS(2184), - [anon_sym_out_GT] = ACTIONS(2184), - [anon_sym_e_GT] = ACTIONS(2184), - [anon_sym_o_GT] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT] = ACTIONS(2184), - [anon_sym_err_GT_GT] = ACTIONS(2186), - [anon_sym_out_GT_GT] = ACTIONS(2186), - [anon_sym_e_GT_GT] = ACTIONS(2186), - [anon_sym_o_GT_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [aux_sym_unquoted_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2186), + [1579] = { + [sym_comment] = STATE(1579), + [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(1685), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_RBRACE] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(1685), + [anon_sym_POUND] = ACTIONS(251), }, - [1590] = { - [sym_comment] = STATE(1590), - [anon_sym_EQ] = ACTIONS(4866), - [anon_sym_PLUS_EQ] = ACTIONS(4868), - [anon_sym_DASH_EQ] = ACTIONS(4868), - [anon_sym_STAR_EQ] = ACTIONS(4868), - [anon_sym_SLASH_EQ] = ACTIONS(4868), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4868), + [1580] = { + [sym_comment] = STATE(1580), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1772), + [anon_sym_DOT_DOT_LT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1581] = { + [sym_cell_path] = STATE(2052), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1581), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1881), + [anon_sym_SEMI] = ACTIONS(1881), + [anon_sym_PIPE] = ACTIONS(1881), + [anon_sym_err_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_GT_PIPE] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1881), + [anon_sym_RPAREN] = ACTIONS(1881), + [anon_sym_GT2] = ACTIONS(1879), + [anon_sym_DASH2] = ACTIONS(1881), + [anon_sym_in2] = ACTIONS(1881), + [anon_sym_if] = ACTIONS(1881), + [anon_sym_LBRACE] = ACTIONS(1881), + [anon_sym_RBRACE] = ACTIONS(1881), + [anon_sym_EQ_GT] = ACTIONS(1881), + [anon_sym_STAR2] = ACTIONS(1879), + [anon_sym_and2] = ACTIONS(1881), + [anon_sym_xor2] = ACTIONS(1881), + [anon_sym_or2] = ACTIONS(1881), + [anon_sym_not_DASHin2] = ACTIONS(1881), + [anon_sym_starts_DASHwith2] = ACTIONS(1881), + [anon_sym_ends_DASHwith2] = ACTIONS(1881), + [anon_sym_EQ_EQ2] = ACTIONS(1881), + [anon_sym_BANG_EQ2] = ACTIONS(1881), + [anon_sym_LT2] = ACTIONS(1879), + [anon_sym_LT_EQ2] = ACTIONS(1881), + [anon_sym_GT_EQ2] = ACTIONS(1881), + [anon_sym_EQ_TILDE2] = ACTIONS(1881), + [anon_sym_BANG_TILDE2] = ACTIONS(1881), + [anon_sym_STAR_STAR2] = ACTIONS(1881), + [anon_sym_PLUS_PLUS2] = ACTIONS(1881), + [anon_sym_SLASH2] = ACTIONS(1879), + [anon_sym_mod2] = ACTIONS(1881), + [anon_sym_SLASH_SLASH2] = ACTIONS(1881), + [anon_sym_PLUS2] = ACTIONS(1879), + [anon_sym_bit_DASHshl2] = ACTIONS(1881), + [anon_sym_bit_DASHshr2] = ACTIONS(1881), + [anon_sym_bit_DASHand2] = ACTIONS(1881), + [anon_sym_bit_DASHxor2] = ACTIONS(1881), + [anon_sym_bit_DASHor2] = ACTIONS(1881), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1879), + [anon_sym_out_GT] = ACTIONS(1879), + [anon_sym_e_GT] = ACTIONS(1879), + [anon_sym_o_GT] = ACTIONS(1879), + [anon_sym_err_PLUSout_GT] = ACTIONS(1879), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1879), + [anon_sym_o_PLUSe_GT] = ACTIONS(1879), + [anon_sym_e_PLUSo_GT] = ACTIONS(1879), + [anon_sym_err_GT_GT] = ACTIONS(1881), + [anon_sym_out_GT_GT] = ACTIONS(1881), + [anon_sym_e_GT_GT] = ACTIONS(1881), + [anon_sym_o_GT_GT] = ACTIONS(1881), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1881), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1881), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1881), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1881), + [anon_sym_POUND] = ACTIONS(251), + }, + [1582] = { + [sym_comment] = STATE(1582), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_RPAREN] = ACTIONS(2190), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_RBRACE] = ACTIONS(2190), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2190), + [anon_sym_DOT_DOT_LT] = ACTIONS(2190), + [anon_sym_null] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [aux_sym__val_number_decimal_token1] = ACTIONS(2188), + [aux_sym__val_number_decimal_token2] = ACTIONS(2190), + [aux_sym__val_number_decimal_token3] = ACTIONS(2190), + [aux_sym__val_number_decimal_token4] = ACTIONS(2190), + [aux_sym__val_number_token1] = ACTIONS(2190), + [aux_sym__val_number_token2] = ACTIONS(2190), + [aux_sym__val_number_token3] = ACTIONS(2190), + [aux_sym__val_number_token4] = ACTIONS(2190), + [aux_sym__val_number_token5] = ACTIONS(2190), + [aux_sym__val_number_token6] = ACTIONS(2190), + [anon_sym_0b] = ACTIONS(2188), + [anon_sym_0o] = ACTIONS(2188), + [anon_sym_0x] = ACTIONS(2188), + [sym_val_date] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__str_single_quotes] = ACTIONS(2190), + [sym__str_back_ticks] = ACTIONS(2190), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2188), + [aux_sym_unquoted_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2190), + }, + [1583] = { + [sym_cell_path] = STATE(2038), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1583), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1988), + [anon_sym_SEMI] = ACTIONS(1988), + [anon_sym_PIPE] = ACTIONS(1988), + [anon_sym_err_GT_PIPE] = ACTIONS(1988), + [anon_sym_out_GT_PIPE] = ACTIONS(1988), + [anon_sym_e_GT_PIPE] = ACTIONS(1988), + [anon_sym_o_GT_PIPE] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1988), + [anon_sym_RPAREN] = ACTIONS(1988), + [anon_sym_GT2] = ACTIONS(1986), + [anon_sym_DASH2] = ACTIONS(1988), + [anon_sym_in2] = ACTIONS(1988), + [anon_sym_if] = ACTIONS(1988), + [anon_sym_LBRACE] = ACTIONS(1988), + [anon_sym_RBRACE] = ACTIONS(1988), + [anon_sym_EQ_GT] = ACTIONS(1988), + [anon_sym_STAR2] = ACTIONS(1986), + [anon_sym_and2] = ACTIONS(1988), + [anon_sym_xor2] = ACTIONS(1988), + [anon_sym_or2] = ACTIONS(1988), + [anon_sym_not_DASHin2] = ACTIONS(1988), + [anon_sym_starts_DASHwith2] = ACTIONS(1988), + [anon_sym_ends_DASHwith2] = ACTIONS(1988), + [anon_sym_EQ_EQ2] = ACTIONS(1988), + [anon_sym_BANG_EQ2] = ACTIONS(1988), + [anon_sym_LT2] = ACTIONS(1986), + [anon_sym_LT_EQ2] = ACTIONS(1988), + [anon_sym_GT_EQ2] = ACTIONS(1988), + [anon_sym_EQ_TILDE2] = ACTIONS(1988), + [anon_sym_BANG_TILDE2] = ACTIONS(1988), + [anon_sym_STAR_STAR2] = ACTIONS(1988), + [anon_sym_PLUS_PLUS2] = ACTIONS(1988), + [anon_sym_SLASH2] = ACTIONS(1986), + [anon_sym_mod2] = ACTIONS(1988), + [anon_sym_SLASH_SLASH2] = ACTIONS(1988), + [anon_sym_PLUS2] = ACTIONS(1986), + [anon_sym_bit_DASHshl2] = ACTIONS(1988), + [anon_sym_bit_DASHshr2] = ACTIONS(1988), + [anon_sym_bit_DASHand2] = ACTIONS(1988), + [anon_sym_bit_DASHxor2] = ACTIONS(1988), + [anon_sym_bit_DASHor2] = ACTIONS(1988), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1986), + [anon_sym_out_GT] = ACTIONS(1986), + [anon_sym_e_GT] = ACTIONS(1986), + [anon_sym_o_GT] = ACTIONS(1986), + [anon_sym_err_PLUSout_GT] = ACTIONS(1986), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1986), + [anon_sym_o_PLUSe_GT] = ACTIONS(1986), + [anon_sym_e_PLUSo_GT] = ACTIONS(1986), + [anon_sym_err_GT_GT] = ACTIONS(1988), + [anon_sym_out_GT_GT] = ACTIONS(1988), + [anon_sym_e_GT_GT] = ACTIONS(1988), + [anon_sym_o_GT_GT] = ACTIONS(1988), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1988), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1988), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1988), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1988), + [anon_sym_POUND] = ACTIONS(251), + }, + [1584] = { + [sym_comment] = STATE(1584), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_RPAREN] = ACTIONS(1801), + [anon_sym_DOLLAR] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_RBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1793), + [anon_sym_0o] = ACTIONS(1793), + [anon_sym_0x] = ACTIONS(1793), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1793), + [anon_sym_out_GT] = ACTIONS(1793), + [anon_sym_e_GT] = ACTIONS(1793), + [anon_sym_o_GT] = ACTIONS(1793), + [anon_sym_err_PLUSout_GT] = ACTIONS(1793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), + [anon_sym_o_PLUSe_GT] = ACTIONS(1793), + [anon_sym_e_PLUSo_GT] = ACTIONS(1793), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1793), + [aux_sym_unquoted_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1585] = { + [sym_cell_path] = STATE(2040), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1585), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(2000), + [anon_sym_SEMI] = ACTIONS(2000), + [anon_sym_PIPE] = ACTIONS(2000), + [anon_sym_err_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_GT_PIPE] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2000), + [anon_sym_RPAREN] = ACTIONS(2000), + [anon_sym_GT2] = ACTIONS(1998), + [anon_sym_DASH2] = ACTIONS(2000), + [anon_sym_in2] = ACTIONS(2000), + [anon_sym_if] = ACTIONS(2000), + [anon_sym_LBRACE] = ACTIONS(2000), + [anon_sym_RBRACE] = ACTIONS(2000), + [anon_sym_EQ_GT] = ACTIONS(2000), + [anon_sym_STAR2] = ACTIONS(1998), + [anon_sym_and2] = ACTIONS(2000), + [anon_sym_xor2] = ACTIONS(2000), + [anon_sym_or2] = ACTIONS(2000), + [anon_sym_not_DASHin2] = ACTIONS(2000), + [anon_sym_starts_DASHwith2] = ACTIONS(2000), + [anon_sym_ends_DASHwith2] = ACTIONS(2000), + [anon_sym_EQ_EQ2] = ACTIONS(2000), + [anon_sym_BANG_EQ2] = ACTIONS(2000), + [anon_sym_LT2] = ACTIONS(1998), + [anon_sym_LT_EQ2] = ACTIONS(2000), + [anon_sym_GT_EQ2] = ACTIONS(2000), + [anon_sym_EQ_TILDE2] = ACTIONS(2000), + [anon_sym_BANG_TILDE2] = ACTIONS(2000), + [anon_sym_STAR_STAR2] = ACTIONS(2000), + [anon_sym_PLUS_PLUS2] = ACTIONS(2000), + [anon_sym_SLASH2] = ACTIONS(1998), + [anon_sym_mod2] = ACTIONS(2000), + [anon_sym_SLASH_SLASH2] = ACTIONS(2000), + [anon_sym_PLUS2] = ACTIONS(1998), + [anon_sym_bit_DASHshl2] = ACTIONS(2000), + [anon_sym_bit_DASHshr2] = ACTIONS(2000), + [anon_sym_bit_DASHand2] = ACTIONS(2000), + [anon_sym_bit_DASHxor2] = ACTIONS(2000), + [anon_sym_bit_DASHor2] = ACTIONS(2000), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1998), + [anon_sym_out_GT] = ACTIONS(1998), + [anon_sym_e_GT] = ACTIONS(1998), + [anon_sym_o_GT] = ACTIONS(1998), + [anon_sym_err_PLUSout_GT] = ACTIONS(1998), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1998), + [anon_sym_o_PLUSe_GT] = ACTIONS(1998), + [anon_sym_e_PLUSo_GT] = ACTIONS(1998), + [anon_sym_err_GT_GT] = ACTIONS(2000), + [anon_sym_out_GT_GT] = ACTIONS(2000), + [anon_sym_e_GT_GT] = ACTIONS(2000), + [anon_sym_o_GT_GT] = ACTIONS(2000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2000), + [anon_sym_POUND] = ACTIONS(251), + }, + [1586] = { + [sym_comment] = STATE(1586), + [anon_sym_EQ] = ACTIONS(4868), + [anon_sym_PLUS_EQ] = ACTIONS(4870), + [anon_sym_DASH_EQ] = ACTIONS(4870), + [anon_sym_STAR_EQ] = ACTIONS(4870), + [anon_sym_SLASH_EQ] = ACTIONS(4870), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4870), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -226878,762 +226595,694 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), }, - [1591] = { - [sym_comment] = STATE(1591), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_RPAREN] = ACTIONS(1873), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_RBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1865), - [anon_sym_0o] = ACTIONS(1865), - [anon_sym_0x] = ACTIONS(1865), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(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(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1865), - [aux_sym_unquoted_token2] = ACTIONS(1875), + [1587] = { + [sym_comment] = STATE(1587), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_RPAREN] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_RBRACE] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1597), + [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_LPAREN2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token2] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [1592] = { - [sym_comment] = STATE(1592), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1861), - [anon_sym_0o] = ACTIONS(1861), - [anon_sym_0x] = ACTIONS(1861), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token1] = ACTIONS(1861), - [aux_sym_unquoted_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), }, - [1593] = { - [sym_cell_path] = STATE(2065), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1593), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1991), - [anon_sym_SEMI] = ACTIONS(1991), - [anon_sym_PIPE] = ACTIONS(1991), - [anon_sym_err_GT_PIPE] = ACTIONS(1991), - [anon_sym_out_GT_PIPE] = ACTIONS(1991), - [anon_sym_e_GT_PIPE] = ACTIONS(1991), - [anon_sym_o_GT_PIPE] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1991), - [anon_sym_RPAREN] = ACTIONS(1991), - [anon_sym_GT2] = ACTIONS(1989), - [anon_sym_DASH2] = ACTIONS(1991), - [anon_sym_in2] = ACTIONS(1991), - [anon_sym_if] = ACTIONS(1991), - [anon_sym_LBRACE] = ACTIONS(1991), - [anon_sym_RBRACE] = ACTIONS(1991), - [anon_sym_EQ_GT] = ACTIONS(1991), - [anon_sym_STAR2] = ACTIONS(1989), - [anon_sym_and2] = ACTIONS(1991), - [anon_sym_xor2] = ACTIONS(1991), - [anon_sym_or2] = ACTIONS(1991), - [anon_sym_not_DASHin2] = ACTIONS(1991), - [anon_sym_starts_DASHwith2] = ACTIONS(1991), - [anon_sym_ends_DASHwith2] = ACTIONS(1991), - [anon_sym_EQ_EQ2] = ACTIONS(1991), - [anon_sym_BANG_EQ2] = ACTIONS(1991), - [anon_sym_LT2] = ACTIONS(1989), - [anon_sym_LT_EQ2] = ACTIONS(1991), - [anon_sym_GT_EQ2] = ACTIONS(1991), - [anon_sym_EQ_TILDE2] = ACTIONS(1991), - [anon_sym_BANG_TILDE2] = ACTIONS(1991), - [anon_sym_STAR_STAR2] = ACTIONS(1991), - [anon_sym_PLUS_PLUS2] = ACTIONS(1991), - [anon_sym_SLASH2] = ACTIONS(1989), - [anon_sym_mod2] = ACTIONS(1991), - [anon_sym_SLASH_SLASH2] = ACTIONS(1991), - [anon_sym_PLUS2] = ACTIONS(1989), - [anon_sym_bit_DASHshl2] = ACTIONS(1991), - [anon_sym_bit_DASHshr2] = ACTIONS(1991), - [anon_sym_bit_DASHand2] = ACTIONS(1991), - [anon_sym_bit_DASHxor2] = ACTIONS(1991), - [anon_sym_bit_DASHor2] = ACTIONS(1991), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1989), - [anon_sym_out_GT] = ACTIONS(1989), - [anon_sym_e_GT] = ACTIONS(1989), - [anon_sym_o_GT] = ACTIONS(1989), - [anon_sym_err_PLUSout_GT] = ACTIONS(1989), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1989), - [anon_sym_o_PLUSe_GT] = ACTIONS(1989), - [anon_sym_e_PLUSo_GT] = ACTIONS(1989), - [anon_sym_err_GT_GT] = ACTIONS(1991), - [anon_sym_out_GT_GT] = ACTIONS(1991), - [anon_sym_e_GT_GT] = ACTIONS(1991), - [anon_sym_o_GT_GT] = ACTIONS(1991), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1991), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1991), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1991), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1991), + [1588] = { + [sym_cell_path] = STATE(2041), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1588), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1833), + [anon_sym_SEMI] = ACTIONS(1833), + [anon_sym_PIPE] = ACTIONS(1833), + [anon_sym_err_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_GT_PIPE] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1833), + [anon_sym_RPAREN] = ACTIONS(1833), + [anon_sym_GT2] = ACTIONS(1831), + [anon_sym_DASH2] = ACTIONS(1833), + [anon_sym_in2] = ACTIONS(1833), + [anon_sym_if] = ACTIONS(1833), + [anon_sym_LBRACE] = ACTIONS(1833), + [anon_sym_RBRACE] = ACTIONS(1833), + [anon_sym_EQ_GT] = ACTIONS(1833), + [anon_sym_STAR2] = ACTIONS(1831), + [anon_sym_and2] = ACTIONS(1833), + [anon_sym_xor2] = ACTIONS(1833), + [anon_sym_or2] = ACTIONS(1833), + [anon_sym_not_DASHin2] = ACTIONS(1833), + [anon_sym_starts_DASHwith2] = ACTIONS(1833), + [anon_sym_ends_DASHwith2] = ACTIONS(1833), + [anon_sym_EQ_EQ2] = ACTIONS(1833), + [anon_sym_BANG_EQ2] = ACTIONS(1833), + [anon_sym_LT2] = ACTIONS(1831), + [anon_sym_LT_EQ2] = ACTIONS(1833), + [anon_sym_GT_EQ2] = ACTIONS(1833), + [anon_sym_EQ_TILDE2] = ACTIONS(1833), + [anon_sym_BANG_TILDE2] = ACTIONS(1833), + [anon_sym_STAR_STAR2] = ACTIONS(1833), + [anon_sym_PLUS_PLUS2] = ACTIONS(1833), + [anon_sym_SLASH2] = ACTIONS(1831), + [anon_sym_mod2] = ACTIONS(1833), + [anon_sym_SLASH_SLASH2] = ACTIONS(1833), + [anon_sym_PLUS2] = ACTIONS(1831), + [anon_sym_bit_DASHshl2] = ACTIONS(1833), + [anon_sym_bit_DASHshr2] = ACTIONS(1833), + [anon_sym_bit_DASHand2] = ACTIONS(1833), + [anon_sym_bit_DASHxor2] = ACTIONS(1833), + [anon_sym_bit_DASHor2] = ACTIONS(1833), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1831), + [anon_sym_out_GT] = ACTIONS(1831), + [anon_sym_e_GT] = ACTIONS(1831), + [anon_sym_o_GT] = ACTIONS(1831), + [anon_sym_err_PLUSout_GT] = ACTIONS(1831), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1831), + [anon_sym_o_PLUSe_GT] = ACTIONS(1831), + [anon_sym_e_PLUSo_GT] = ACTIONS(1831), + [anon_sym_err_GT_GT] = ACTIONS(1833), + [anon_sym_out_GT_GT] = ACTIONS(1833), + [anon_sym_e_GT_GT] = ACTIONS(1833), + [anon_sym_o_GT_GT] = ACTIONS(1833), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1833), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1833), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1833), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1833), [anon_sym_POUND] = ACTIONS(251), }, - [1594] = { - [sym_comment] = STATE(1594), - [ts_builtin_sym_end] = ACTIONS(2104), - [sym__newline] = ACTIONS(2104), - [anon_sym_SEMI] = ACTIONS(2104), - [anon_sym_PIPE] = ACTIONS(2104), - [anon_sym_err_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_GT_PIPE] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2104), - [anon_sym_LBRACK] = ACTIONS(2104), - [anon_sym_LPAREN] = ACTIONS(2104), - [anon_sym_DOLLAR] = ACTIONS(2102), - [anon_sym_DASH_DASH] = ACTIONS(2104), - [anon_sym_DASH2] = ACTIONS(2102), - [anon_sym_LBRACE] = ACTIONS(2104), - [anon_sym_DOT_DOT] = ACTIONS(2102), - [anon_sym_DOT_DOT2] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2102), - [anon_sym_DOT_DOT_LT] = ACTIONS(2102), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2104), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2104), - [anon_sym_null] = ACTIONS(2104), - [anon_sym_true] = ACTIONS(2104), - [anon_sym_false] = ACTIONS(2104), - [aux_sym__val_number_decimal_token1] = ACTIONS(2102), - [aux_sym__val_number_decimal_token2] = ACTIONS(2104), - [aux_sym__val_number_decimal_token3] = ACTIONS(2104), - [aux_sym__val_number_decimal_token4] = ACTIONS(2104), - [aux_sym__val_number_token1] = ACTIONS(2104), - [aux_sym__val_number_token2] = ACTIONS(2104), - [aux_sym__val_number_token3] = ACTIONS(2104), - [aux_sym__val_number_token4] = ACTIONS(2104), - [aux_sym__val_number_token5] = ACTIONS(2104), - [aux_sym__val_number_token6] = ACTIONS(2104), - [anon_sym_0b] = ACTIONS(2102), - [anon_sym_0o] = ACTIONS(2102), - [anon_sym_0x] = ACTIONS(2102), - [sym_val_date] = ACTIONS(2104), - [anon_sym_DQUOTE] = ACTIONS(2104), - [sym__str_single_quotes] = ACTIONS(2104), - [sym__str_back_ticks] = ACTIONS(2104), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2104), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2104), - [anon_sym_err_GT] = ACTIONS(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(2104), - [anon_sym_out_GT_GT] = ACTIONS(2104), - [anon_sym_e_GT_GT] = ACTIONS(2104), - [anon_sym_o_GT_GT] = ACTIONS(2104), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2104), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2104), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2104), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2104), - [aux_sym_unquoted_token1] = ACTIONS(2102), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2104), - }, - [1595] = { - [sym_comment] = STATE(1595), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_RPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_RBRACE] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4870), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_null] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(958), - [anon_sym_0o] = ACTIONS(958), - [anon_sym_0x] = ACTIONS(958), - [sym_val_date] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(958), + [1589] = { + [sym_comment] = STATE(1589), + [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_LBRACK] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_RPAREN] = ACTIONS(2174), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_RBRACE] = ACTIONS(2174), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_LPAREN2] = ACTIONS(2172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2174), + [anon_sym_DOT_DOT_LT] = ACTIONS(2174), + [anon_sym_null] = ACTIONS(2174), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2174), + [aux_sym__val_number_decimal_token3] = ACTIONS(2174), + [aux_sym__val_number_decimal_token4] = ACTIONS(2174), + [aux_sym__val_number_token1] = ACTIONS(2174), + [aux_sym__val_number_token2] = ACTIONS(2174), + [aux_sym__val_number_token3] = ACTIONS(2174), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_0b] = ACTIONS(2170), + [anon_sym_0o] = ACTIONS(2170), + [anon_sym_0x] = ACTIONS(2170), + [sym_val_date] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [sym__str_single_quotes] = ACTIONS(2174), + [sym__str_back_ticks] = ACTIONS(2174), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2174), + [anon_sym_err_GT] = ACTIONS(2170), + [anon_sym_out_GT] = ACTIONS(2170), + [anon_sym_e_GT] = ACTIONS(2170), + [anon_sym_o_GT] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT] = ACTIONS(2170), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2170), + [aux_sym_unquoted_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(960), + [sym_raw_string_begin] = ACTIONS(2174), }, - [1596] = { - [sym_comment] = STATE(1596), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [1590] = { + [sym__expr_parenthesized_immediate] = STATE(7343), + [sym_comment] = STATE(1590), + [sym__newline] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_err_GT_PIPE] = ACTIONS(4872), + [anon_sym_out_GT_PIPE] = ACTIONS(4872), + [anon_sym_e_GT_PIPE] = ACTIONS(4872), + [anon_sym_o_GT_PIPE] = ACTIONS(4872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_RPAREN] = ACTIONS(4872), + [anon_sym_DOLLAR] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_DASH2] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_RBRACE] = ACTIONS(4872), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_DOT_DOT_LT] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [aux_sym__val_number_decimal_token1] = ACTIONS(4874), + [aux_sym__val_number_decimal_token2] = ACTIONS(4872), + [aux_sym__val_number_decimal_token3] = ACTIONS(4872), + [aux_sym__val_number_decimal_token4] = ACTIONS(4872), + [aux_sym__val_number_token1] = ACTIONS(4872), + [aux_sym__val_number_token2] = ACTIONS(4872), + [aux_sym__val_number_token3] = ACTIONS(4872), + [aux_sym__val_number_token4] = ACTIONS(4872), + [aux_sym__val_number_token5] = ACTIONS(4872), + [aux_sym__val_number_token6] = ACTIONS(4872), + [anon_sym_0b] = ACTIONS(4874), + [anon_sym_0o] = ACTIONS(4874), + [anon_sym_0x] = ACTIONS(4874), + [sym_val_date] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym__str_single_quotes] = ACTIONS(4872), + [sym__str_back_ticks] = ACTIONS(4872), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4872), + [anon_sym_err_GT] = ACTIONS(4874), + [anon_sym_out_GT] = ACTIONS(4874), + [anon_sym_e_GT] = ACTIONS(4874), + [anon_sym_o_GT] = ACTIONS(4874), + [anon_sym_err_PLUSout_GT] = ACTIONS(4874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4874), + [anon_sym_o_PLUSe_GT] = ACTIONS(4874), + [anon_sym_e_PLUSo_GT] = ACTIONS(4874), + [anon_sym_err_GT_GT] = ACTIONS(4872), + [anon_sym_out_GT_GT] = ACTIONS(4872), + [anon_sym_e_GT_GT] = ACTIONS(4872), + [anon_sym_o_GT_GT] = ACTIONS(4872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4872), + [aux_sym_unquoted_token1] = ACTIONS(4874), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4872), }, - [1597] = { - [sym_comment] = STATE(1597), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_RPAREN] = ACTIONS(1589), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_RBRACE] = ACTIONS(1589), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1589), - [anon_sym_xor2] = ACTIONS(1589), - [anon_sym_or2] = ACTIONS(1589), - [anon_sym_not_DASHin2] = ACTIONS(1589), - [anon_sym_starts_DASHwith2] = ACTIONS(1589), - [anon_sym_ends_DASHwith2] = ACTIONS(1589), - [anon_sym_EQ_EQ2] = ACTIONS(1589), - [anon_sym_BANG_EQ2] = ACTIONS(1589), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1589), - [anon_sym_GT_EQ2] = ACTIONS(1589), - [anon_sym_EQ_TILDE2] = ACTIONS(1589), - [anon_sym_BANG_TILDE2] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR_STAR2] = ACTIONS(1589), - [anon_sym_PLUS_PLUS2] = ACTIONS(1589), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1589), - [anon_sym_SLASH_SLASH2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1589), - [anon_sym_bit_DASHshr2] = ACTIONS(1589), - [anon_sym_bit_DASHand2] = ACTIONS(1589), - [anon_sym_bit_DASHxor2] = ACTIONS(1589), - [anon_sym_bit_DASHor2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1587), + [1591] = { + [sym_comment] = STATE(1591), + [ts_builtin_sym_end] = ACTIONS(1020), + [sym__newline] = ACTIONS(1020), + [anon_sym_SEMI] = ACTIONS(1020), + [anon_sym_PIPE] = ACTIONS(1020), + [anon_sym_err_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_GT_PIPE] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1020), + [anon_sym_LBRACK] = ACTIONS(1020), + [anon_sym_LPAREN] = ACTIONS(1020), + [anon_sym_DOLLAR] = ACTIONS(1018), + [anon_sym_DASH_DASH] = ACTIONS(1020), + [anon_sym_DASH2] = ACTIONS(1018), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_DOT_DOT] = ACTIONS(1018), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1018), + [anon_sym_DOT_DOT_LT] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_null] = ACTIONS(1020), + [anon_sym_true] = ACTIONS(1020), + [anon_sym_false] = ACTIONS(1020), + [aux_sym__val_number_decimal_token1] = ACTIONS(1018), + [aux_sym__val_number_decimal_token2] = ACTIONS(1020), + [aux_sym__val_number_decimal_token3] = ACTIONS(1020), + [aux_sym__val_number_decimal_token4] = ACTIONS(1020), + [aux_sym__val_number_token1] = ACTIONS(1020), + [aux_sym__val_number_token2] = ACTIONS(1020), + [aux_sym__val_number_token3] = ACTIONS(1020), + [aux_sym__val_number_token4] = ACTIONS(1020), + [aux_sym__val_number_token5] = ACTIONS(1020), + [aux_sym__val_number_token6] = ACTIONS(1020), + [anon_sym_0b] = ACTIONS(1018), + [anon_sym_0o] = ACTIONS(1018), + [anon_sym_0x] = ACTIONS(1018), + [sym_val_date] = ACTIONS(1020), + [anon_sym_DQUOTE] = ACTIONS(1020), + [sym__str_single_quotes] = ACTIONS(1020), + [sym__str_back_ticks] = ACTIONS(1020), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1020), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [aux_sym_unquoted_token1] = ACTIONS(1018), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1020), }, - [1598] = { - [sym_comment] = STATE(1598), - [sym__newline] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2229), - [anon_sym_out_GT_GT] = ACTIONS(2229), - [anon_sym_e_GT_GT] = ACTIONS(2229), - [anon_sym_o_GT_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2229), - [aux_sym_unquoted_token1] = ACTIONS(2229), - [aux_sym_unquoted_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), + [1592] = { + [sym_comment] = STATE(1592), + [ts_builtin_sym_end] = ACTIONS(1819), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1817), + [anon_sym_DOT_DOT_LT] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_null] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1817), + [anon_sym_0o] = ACTIONS(1817), + [anon_sym_0x] = ACTIONS(1817), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), }, - [1599] = { - [sym_comment] = STATE(1599), - [sym__newline] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_err_GT_PIPE] = ACTIONS(2192), - [anon_sym_out_GT_PIPE] = ACTIONS(2192), - [anon_sym_e_GT_PIPE] = ACTIONS(2192), - [anon_sym_o_GT_PIPE] = ACTIONS(2192), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_RPAREN] = ACTIONS(2192), - [anon_sym_DOLLAR] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_DASH2] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_RBRACE] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2192), - [anon_sym_DOT_DOT_LT] = ACTIONS(2192), - [anon_sym_null] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [aux_sym__val_number_decimal_token1] = ACTIONS(2188), - [aux_sym__val_number_decimal_token2] = ACTIONS(2192), - [aux_sym__val_number_decimal_token3] = ACTIONS(2192), - [aux_sym__val_number_decimal_token4] = ACTIONS(2192), - [aux_sym__val_number_token1] = ACTIONS(2192), - [aux_sym__val_number_token2] = ACTIONS(2192), - [aux_sym__val_number_token3] = ACTIONS(2192), - [aux_sym__val_number_token4] = ACTIONS(2192), - [aux_sym__val_number_token5] = ACTIONS(2192), - [aux_sym__val_number_token6] = ACTIONS(2192), - [anon_sym_0b] = ACTIONS(2188), - [anon_sym_0o] = ACTIONS(2188), - [anon_sym_0x] = ACTIONS(2188), - [sym_val_date] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym__str_single_quotes] = ACTIONS(2192), - [sym__str_back_ticks] = ACTIONS(2192), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(2188), - [anon_sym_out_GT] = ACTIONS(2188), - [anon_sym_e_GT] = ACTIONS(2188), - [anon_sym_o_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT] = ACTIONS(2188), - [anon_sym_err_GT_GT] = ACTIONS(2192), - [anon_sym_out_GT_GT] = ACTIONS(2192), - [anon_sym_e_GT_GT] = ACTIONS(2192), - [anon_sym_o_GT_GT] = ACTIONS(2192), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), - [aux_sym_unquoted_token1] = ACTIONS(2188), - [aux_sym_unquoted_token2] = ACTIONS(1631), + [1593] = { + [sym_comment] = STATE(1593), + [ts_builtin_sym_end] = ACTIONS(1000), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1000), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT2] = ACTIONS(4807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4809), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4809), + [anon_sym_null] = ACTIONS(1000), + [anon_sym_true] = ACTIONS(1000), + [anon_sym_false] = ACTIONS(1000), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1000), + [aux_sym__val_number_decimal_token3] = ACTIONS(1000), + [aux_sym__val_number_decimal_token4] = ACTIONS(1000), + [aux_sym__val_number_token1] = ACTIONS(1000), + [aux_sym__val_number_token2] = ACTIONS(1000), + [aux_sym__val_number_token3] = ACTIONS(1000), + [aux_sym__val_number_token4] = ACTIONS(1000), + [aux_sym__val_number_token5] = ACTIONS(1000), + [aux_sym__val_number_token6] = ACTIONS(1000), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1000), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1000), + [anon_sym_out_GT_GT] = ACTIONS(1000), + [anon_sym_e_GT_GT] = ACTIONS(1000), + [anon_sym_o_GT_GT] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), + [aux_sym_unquoted_token1] = ACTIONS(1004), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2192), + [sym_raw_string_begin] = ACTIONS(1000), }, - [1600] = { - [sym_comment] = STATE(1600), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_RPAREN] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_RBRACE] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1667), - [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_LPAREN2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token2] = ACTIONS(1667), - [anon_sym_POUND] = ACTIONS(251), + [1594] = { + [sym_comment] = STATE(1594), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1601] = { - [sym_comment] = STATE(1601), - [sym__newline] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_err_GT_PIPE] = ACTIONS(954), - [anon_sym_out_GT_PIPE] = ACTIONS(954), - [anon_sym_e_GT_PIPE] = ACTIONS(954), - [anon_sym_o_GT_PIPE] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_RPAREN] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_RBRACE] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4872), - [anon_sym_DOT_DOT_EQ] = ACTIONS(954), - [anon_sym_DOT_DOT_LT] = ACTIONS(954), - [anon_sym_null] = ACTIONS(954), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [sym_val_date] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(952), + [1595] = { + [sym_comment] = STATE(1595), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_RPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_RBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4876), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(954), + [sym_raw_string_begin] = ACTIONS(960), }, - [1602] = { - [sym_comment] = STATE(1602), - [anon_sym_EQ] = ACTIONS(4874), - [anon_sym_PLUS_EQ] = ACTIONS(4876), - [anon_sym_DASH_EQ] = ACTIONS(4876), - [anon_sym_STAR_EQ] = ACTIONS(4876), - [anon_sym_SLASH_EQ] = ACTIONS(4876), - [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4876), + [1596] = { + [sym_comment] = STATE(1596), + [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_LBRACK] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_RPAREN] = ACTIONS(2184), + [anon_sym_DOLLAR] = ACTIONS(2180), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_RBRACE] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(2182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2184), + [anon_sym_DOT_DOT_LT] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [aux_sym__val_number_decimal_token1] = ACTIONS(2180), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2184), + [aux_sym__val_number_decimal_token4] = ACTIONS(2184), + [aux_sym__val_number_token1] = ACTIONS(2184), + [aux_sym__val_number_token2] = ACTIONS(2184), + [aux_sym__val_number_token3] = ACTIONS(2184), + [aux_sym__val_number_token4] = ACTIONS(2184), + [aux_sym__val_number_token5] = ACTIONS(2184), + [aux_sym__val_number_token6] = ACTIONS(2184), + [anon_sym_0b] = ACTIONS(2180), + [anon_sym_0o] = ACTIONS(2180), + [anon_sym_0x] = ACTIONS(2180), + [sym_val_date] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym__str_single_quotes] = ACTIONS(2184), + [sym__str_back_ticks] = ACTIONS(2184), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2184), + [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(2184), + [anon_sym_out_GT_GT] = ACTIONS(2184), + [anon_sym_e_GT_GT] = ACTIONS(2184), + [anon_sym_o_GT_GT] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2184), + [aux_sym_unquoted_token1] = ACTIONS(2180), + [aux_sym_unquoted_token2] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2184), + }, + [1597] = { + [sym_comment] = STATE(1597), + [anon_sym_EQ] = ACTIONS(4878), + [anon_sym_PLUS_EQ] = ACTIONS(4880), + [anon_sym_DASH_EQ] = ACTIONS(4880), + [anon_sym_STAR_EQ] = ACTIONS(4880), + [anon_sym_SLASH_EQ] = ACTIONS(4880), + [anon_sym_PLUS_PLUS_EQ] = ACTIONS(4880), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -227694,76 +227343,1164 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1000), [anon_sym_POUND] = ACTIONS(251), }, + [1598] = { + [sym_comment] = STATE(1598), + [ts_builtin_sym_end] = ACTIONS(2041), + [sym__newline] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_err_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_GT_PIPE] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), + [anon_sym_LBRACK] = ACTIONS(2041), + [anon_sym_LPAREN] = ACTIONS(2041), + [anon_sym_DOLLAR] = ACTIONS(2039), + [anon_sym_DASH_DASH] = ACTIONS(2041), + [anon_sym_DASH2] = ACTIONS(2039), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_DOT_DOT] = ACTIONS(2039), + [anon_sym_DOT_DOT2] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2039), + [anon_sym_DOT_DOT_LT] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2041), + [anon_sym_null] = ACTIONS(2041), + [anon_sym_true] = ACTIONS(2041), + [anon_sym_false] = ACTIONS(2041), + [aux_sym__val_number_decimal_token1] = ACTIONS(2039), + [aux_sym__val_number_decimal_token2] = ACTIONS(2041), + [aux_sym__val_number_decimal_token3] = ACTIONS(2041), + [aux_sym__val_number_decimal_token4] = ACTIONS(2041), + [aux_sym__val_number_token1] = ACTIONS(2041), + [aux_sym__val_number_token2] = ACTIONS(2041), + [aux_sym__val_number_token3] = ACTIONS(2041), + [aux_sym__val_number_token4] = ACTIONS(2041), + [aux_sym__val_number_token5] = ACTIONS(2041), + [aux_sym__val_number_token6] = ACTIONS(2041), + [anon_sym_0b] = ACTIONS(2039), + [anon_sym_0o] = ACTIONS(2039), + [anon_sym_0x] = ACTIONS(2039), + [sym_val_date] = ACTIONS(2041), + [anon_sym_DQUOTE] = ACTIONS(2041), + [sym__str_single_quotes] = ACTIONS(2041), + [sym__str_back_ticks] = ACTIONS(2041), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2041), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2041), + [anon_sym_err_GT] = ACTIONS(2039), + [anon_sym_out_GT] = ACTIONS(2039), + [anon_sym_e_GT] = ACTIONS(2039), + [anon_sym_o_GT] = ACTIONS(2039), + [anon_sym_err_PLUSout_GT] = ACTIONS(2039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2039), + [anon_sym_o_PLUSe_GT] = ACTIONS(2039), + [anon_sym_e_PLUSo_GT] = ACTIONS(2039), + [anon_sym_err_GT_GT] = ACTIONS(2041), + [anon_sym_out_GT_GT] = ACTIONS(2041), + [anon_sym_e_GT_GT] = ACTIONS(2041), + [anon_sym_o_GT_GT] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), + [aux_sym_unquoted_token1] = ACTIONS(2039), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2041), + }, + [1599] = { + [sym_comment] = STATE(1599), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [1600] = { + [sym_comment] = STATE(1600), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_in2] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4882), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + }, + [1601] = { + [sym_comment] = STATE(1601), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), + }, + [1602] = { + [sym__expr_parenthesized_immediate] = STATE(7346), + [sym_comment] = STATE(1602), + [ts_builtin_sym_end] = ACTIONS(1675), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1663), + [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_LPAREN2] = ACTIONS(4052), + [anon_sym_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_DOT_DOT2] = ACTIONS(4884), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(4886), + [anon_sym_DOT_DOT_LT2] = ACTIONS(4886), + [sym_filesize_unit] = ACTIONS(4888), + [sym_duration_unit] = ACTIONS(4890), + [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(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), + [aux_sym_unquoted_token2] = ACTIONS(4892), + [anon_sym_POUND] = ACTIONS(251), + }, [1603] = { [sym_comment] = STATE(1603), - [ts_builtin_sym_end] = ACTIONS(2122), - [sym__newline] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_err_GT_PIPE] = ACTIONS(2122), - [anon_sym_out_GT_PIPE] = ACTIONS(2122), - [anon_sym_e_GT_PIPE] = ACTIONS(2122), - [anon_sym_o_GT_PIPE] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2122), - [anon_sym_LBRACK] = ACTIONS(2122), - [anon_sym_LPAREN] = ACTIONS(2122), - [anon_sym_DOLLAR] = ACTIONS(2120), - [anon_sym_DASH_DASH] = ACTIONS(2122), - [anon_sym_DASH2] = ACTIONS(2120), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_DOT_DOT] = ACTIONS(2120), - [anon_sym_DOT_DOT2] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2120), - [anon_sym_DOT_DOT_LT] = ACTIONS(2120), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2122), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2122), - [anon_sym_null] = ACTIONS(2122), - [anon_sym_true] = ACTIONS(2122), - [anon_sym_false] = ACTIONS(2122), - [aux_sym__val_number_decimal_token1] = ACTIONS(2120), - [aux_sym__val_number_decimal_token2] = ACTIONS(2122), - [aux_sym__val_number_decimal_token3] = ACTIONS(2122), - [aux_sym__val_number_decimal_token4] = ACTIONS(2122), - [aux_sym__val_number_token1] = ACTIONS(2122), - [aux_sym__val_number_token2] = ACTIONS(2122), - [aux_sym__val_number_token3] = ACTIONS(2122), - [aux_sym__val_number_token4] = ACTIONS(2122), - [aux_sym__val_number_token5] = ACTIONS(2122), - [aux_sym__val_number_token6] = ACTIONS(2122), - [anon_sym_0b] = ACTIONS(2120), - [anon_sym_0o] = ACTIONS(2120), - [anon_sym_0x] = ACTIONS(2120), - [sym_val_date] = ACTIONS(2122), - [anon_sym_DQUOTE] = ACTIONS(2122), - [sym__str_single_quotes] = ACTIONS(2122), - [sym__str_back_ticks] = ACTIONS(2122), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2122), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2122), - [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(2122), - [anon_sym_out_GT_GT] = ACTIONS(2122), - [anon_sym_e_GT_GT] = ACTIONS(2122), - [anon_sym_o_GT_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2122), - [aux_sym_unquoted_token1] = ACTIONS(2120), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2122), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4894), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4896), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [1604] = { [sym_comment] = STATE(1604), + [sym__newline] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_err_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_GT_PIPE] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2226), + [anon_sym_DOT_DOT_LT] = ACTIONS(2226), + [anon_sym_null] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [aux_sym__val_number_decimal_token2] = ACTIONS(2226), + [aux_sym__val_number_decimal_token3] = ACTIONS(2226), + [aux_sym__val_number_decimal_token4] = ACTIONS(2226), + [aux_sym__val_number_token1] = ACTIONS(2226), + [aux_sym__val_number_token2] = ACTIONS(2226), + [aux_sym__val_number_token3] = ACTIONS(2226), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2226), + [anon_sym_0o] = ACTIONS(2226), + [anon_sym_0x] = ACTIONS(2226), + [sym_val_date] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [aux_sym_unquoted_token4] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2230), + }, + [1605] = { + [sym_comment] = STATE(1605), + [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_LBRACK] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2192), + [anon_sym_DOT_DOT_LT] = ACTIONS(2192), + [anon_sym_null] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2192), + [anon_sym_false] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token2] = ACTIONS(2192), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2192), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2192), + [aux_sym__val_number_token5] = ACTIONS(2192), + [aux_sym__val_number_token6] = ACTIONS(2192), + [anon_sym_0b] = ACTIONS(2192), + [anon_sym_0o] = ACTIONS(2192), + [anon_sym_0x] = ACTIONS(2192), + [sym_val_date] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2196), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2196), + }, + [1606] = { + [sym_cell_path] = STATE(2026), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1606), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1887), + [anon_sym_SEMI] = ACTIONS(1887), + [anon_sym_PIPE] = ACTIONS(1887), + [anon_sym_err_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_GT_PIPE] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1887), + [anon_sym_RPAREN] = ACTIONS(1887), + [anon_sym_GT2] = ACTIONS(1885), + [anon_sym_DASH2] = ACTIONS(1887), + [anon_sym_in2] = ACTIONS(1887), + [anon_sym_if] = ACTIONS(1887), + [anon_sym_LBRACE] = ACTIONS(1887), + [anon_sym_RBRACE] = ACTIONS(1887), + [anon_sym_EQ_GT] = ACTIONS(1887), + [anon_sym_STAR2] = ACTIONS(1885), + [anon_sym_and2] = ACTIONS(1887), + [anon_sym_xor2] = ACTIONS(1887), + [anon_sym_or2] = ACTIONS(1887), + [anon_sym_not_DASHin2] = ACTIONS(1887), + [anon_sym_starts_DASHwith2] = ACTIONS(1887), + [anon_sym_ends_DASHwith2] = ACTIONS(1887), + [anon_sym_EQ_EQ2] = ACTIONS(1887), + [anon_sym_BANG_EQ2] = ACTIONS(1887), + [anon_sym_LT2] = ACTIONS(1885), + [anon_sym_LT_EQ2] = ACTIONS(1887), + [anon_sym_GT_EQ2] = ACTIONS(1887), + [anon_sym_EQ_TILDE2] = ACTIONS(1887), + [anon_sym_BANG_TILDE2] = ACTIONS(1887), + [anon_sym_STAR_STAR2] = ACTIONS(1887), + [anon_sym_PLUS_PLUS2] = ACTIONS(1887), + [anon_sym_SLASH2] = ACTIONS(1885), + [anon_sym_mod2] = ACTIONS(1887), + [anon_sym_SLASH_SLASH2] = ACTIONS(1887), + [anon_sym_PLUS2] = ACTIONS(1885), + [anon_sym_bit_DASHshl2] = ACTIONS(1887), + [anon_sym_bit_DASHshr2] = ACTIONS(1887), + [anon_sym_bit_DASHand2] = ACTIONS(1887), + [anon_sym_bit_DASHxor2] = ACTIONS(1887), + [anon_sym_bit_DASHor2] = ACTIONS(1887), + [anon_sym_DOT2] = ACTIONS(4831), + [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(1887), + [anon_sym_out_GT_GT] = ACTIONS(1887), + [anon_sym_e_GT_GT] = ACTIONS(1887), + [anon_sym_o_GT_GT] = ACTIONS(1887), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1887), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1887), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1887), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1887), + [anon_sym_POUND] = ACTIONS(251), + }, + [1607] = { + [sym_comment] = STATE(1607), + [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_LBRACK] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2200), + [anon_sym_DOT_DOT_LT] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [aux_sym__val_number_token4] = ACTIONS(2200), + [aux_sym__val_number_token5] = ACTIONS(2200), + [aux_sym__val_number_token6] = ACTIONS(2200), + [anon_sym_0b] = ACTIONS(2200), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2202), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(2200), + [aux_sym_unquoted_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [1608] = { + [sym_comment] = STATE(1608), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1749), + [anon_sym_DOT_DOT_LT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), + }, + [1609] = { + [sym_cell_path] = STATE(2034), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1609), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1895), + [anon_sym_SEMI] = ACTIONS(1895), + [anon_sym_PIPE] = ACTIONS(1895), + [anon_sym_err_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_GT_PIPE] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1895), + [anon_sym_RPAREN] = ACTIONS(1895), + [anon_sym_GT2] = ACTIONS(1893), + [anon_sym_DASH2] = ACTIONS(1895), + [anon_sym_in2] = ACTIONS(1895), + [anon_sym_if] = ACTIONS(1895), + [anon_sym_LBRACE] = ACTIONS(1895), + [anon_sym_RBRACE] = ACTIONS(1895), + [anon_sym_EQ_GT] = ACTIONS(1895), + [anon_sym_STAR2] = ACTIONS(1893), + [anon_sym_and2] = ACTIONS(1895), + [anon_sym_xor2] = ACTIONS(1895), + [anon_sym_or2] = ACTIONS(1895), + [anon_sym_not_DASHin2] = ACTIONS(1895), + [anon_sym_starts_DASHwith2] = ACTIONS(1895), + [anon_sym_ends_DASHwith2] = ACTIONS(1895), + [anon_sym_EQ_EQ2] = ACTIONS(1895), + [anon_sym_BANG_EQ2] = ACTIONS(1895), + [anon_sym_LT2] = ACTIONS(1893), + [anon_sym_LT_EQ2] = ACTIONS(1895), + [anon_sym_GT_EQ2] = ACTIONS(1895), + [anon_sym_EQ_TILDE2] = ACTIONS(1895), + [anon_sym_BANG_TILDE2] = ACTIONS(1895), + [anon_sym_STAR_STAR2] = ACTIONS(1895), + [anon_sym_PLUS_PLUS2] = ACTIONS(1895), + [anon_sym_SLASH2] = ACTIONS(1893), + [anon_sym_mod2] = ACTIONS(1895), + [anon_sym_SLASH_SLASH2] = ACTIONS(1895), + [anon_sym_PLUS2] = ACTIONS(1893), + [anon_sym_bit_DASHshl2] = ACTIONS(1895), + [anon_sym_bit_DASHshr2] = ACTIONS(1895), + [anon_sym_bit_DASHand2] = ACTIONS(1895), + [anon_sym_bit_DASHxor2] = ACTIONS(1895), + [anon_sym_bit_DASHor2] = ACTIONS(1895), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1893), + [anon_sym_out_GT] = ACTIONS(1893), + [anon_sym_e_GT] = ACTIONS(1893), + [anon_sym_o_GT] = ACTIONS(1893), + [anon_sym_err_PLUSout_GT] = ACTIONS(1893), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1893), + [anon_sym_o_PLUSe_GT] = ACTIONS(1893), + [anon_sym_e_PLUSo_GT] = ACTIONS(1893), + [anon_sym_err_GT_GT] = ACTIONS(1895), + [anon_sym_out_GT_GT] = ACTIONS(1895), + [anon_sym_e_GT_GT] = ACTIONS(1895), + [anon_sym_o_GT_GT] = ACTIONS(1895), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1895), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1895), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1895), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1895), + [anon_sym_POUND] = ACTIONS(251), + }, + [1610] = { + [sym_comment] = STATE(1610), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT] = ACTIONS(1819), + [anon_sym_null] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1817), + [anon_sym_0o] = ACTIONS(1817), + [anon_sym_0x] = ACTIONS(1817), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1817), + [aux_sym_unquoted_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), + }, + [1611] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1611), + [sym__newline] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_err_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_GT_PIPE] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_RPAREN] = ACTIONS(4898), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH2] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_RBRACE] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), + [anon_sym_DOT_DOT_LT] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [aux_sym__val_number_decimal_token1] = ACTIONS(4900), + [aux_sym__val_number_decimal_token2] = ACTIONS(4898), + [aux_sym__val_number_decimal_token3] = ACTIONS(4898), + [aux_sym__val_number_decimal_token4] = ACTIONS(4898), + [aux_sym__val_number_token1] = ACTIONS(4898), + [aux_sym__val_number_token2] = ACTIONS(4898), + [aux_sym__val_number_token3] = ACTIONS(4898), + [aux_sym__val_number_token4] = ACTIONS(4898), + [aux_sym__val_number_token5] = ACTIONS(4898), + [aux_sym__val_number_token6] = ACTIONS(4898), + [anon_sym_0b] = ACTIONS(4900), + [anon_sym_0o] = ACTIONS(4900), + [anon_sym_0x] = ACTIONS(4900), + [sym_val_date] = ACTIONS(4898), + [anon_sym_DQUOTE] = ACTIONS(4898), + [sym__str_single_quotes] = ACTIONS(4898), + [sym__str_back_ticks] = ACTIONS(4898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4898), + [anon_sym_err_GT] = ACTIONS(4900), + [anon_sym_out_GT] = ACTIONS(4900), + [anon_sym_e_GT] = ACTIONS(4900), + [anon_sym_o_GT] = ACTIONS(4900), + [anon_sym_err_PLUSout_GT] = ACTIONS(4900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4900), + [anon_sym_o_PLUSe_GT] = ACTIONS(4900), + [anon_sym_e_PLUSo_GT] = ACTIONS(4900), + [anon_sym_err_GT_GT] = ACTIONS(4898), + [anon_sym_out_GT_GT] = ACTIONS(4898), + [anon_sym_e_GT_GT] = ACTIONS(4898), + [anon_sym_o_GT_GT] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4898), + [aux_sym_unquoted_token1] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4898), + }, + [1612] = { + [sym_comment] = STATE(1612), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1731), + [anon_sym_DOT_DOT_LT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [1613] = { + [sym_comment] = STATE(1613), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4902), + [aux_sym__immediate_decimal_token2] = ACTIONS(4904), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), + }, + [1614] = { + [sym_comment] = STATE(1614), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_GT2] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1751), + [anon_sym_in2] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_STAR2] = ACTIONS(1749), + [anon_sym_and2] = ACTIONS(1751), + [anon_sym_xor2] = ACTIONS(1751), + [anon_sym_or2] = ACTIONS(1751), + [anon_sym_not_DASHin2] = ACTIONS(1751), + [anon_sym_starts_DASHwith2] = ACTIONS(1751), + [anon_sym_ends_DASHwith2] = ACTIONS(1751), + [anon_sym_EQ_EQ2] = ACTIONS(1751), + [anon_sym_BANG_EQ2] = ACTIONS(1751), + [anon_sym_LT2] = ACTIONS(1749), + [anon_sym_LT_EQ2] = ACTIONS(1751), + [anon_sym_GT_EQ2] = ACTIONS(1751), + [anon_sym_EQ_TILDE2] = ACTIONS(1751), + [anon_sym_BANG_TILDE2] = ACTIONS(1751), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_STAR_STAR2] = ACTIONS(1751), + [anon_sym_PLUS_PLUS2] = ACTIONS(1751), + [anon_sym_SLASH2] = ACTIONS(1749), + [anon_sym_mod2] = ACTIONS(1751), + [anon_sym_SLASH_SLASH2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_bit_DASHshl2] = ACTIONS(1751), + [anon_sym_bit_DASHshr2] = ACTIONS(1751), + [anon_sym_bit_DASHand2] = ACTIONS(1751), + [anon_sym_bit_DASHxor2] = ACTIONS(1751), + [anon_sym_bit_DASHor2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4744), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + }, + [1615] = { + [sym_comment] = STATE(1615), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -227784,7 +228521,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_LBRACE] = ACTIONS(1000), [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(2202), + [anon_sym_LPAREN2] = ACTIONS(2208), [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), [anon_sym_DOT_DOT_LT] = ACTIONS(1004), [anon_sym_null] = ACTIONS(1004), @@ -227826,874 +228563,1601 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), [aux_sym_unquoted_token1] = ACTIONS(1004), - [aux_sym_unquoted_token4] = ACTIONS(2204), + [aux_sym_unquoted_token4] = ACTIONS(2210), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1000), }, - [1605] = { - [sym_comment] = STATE(1605), - [sym__newline] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_err_GT_PIPE] = ACTIONS(2267), - [anon_sym_out_GT_PIPE] = ACTIONS(2267), - [anon_sym_e_GT_PIPE] = ACTIONS(2267), - [anon_sym_o_GT_PIPE] = ACTIONS(2267), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2267), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2267), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2267), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DASH2] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2265), - [anon_sym_LPAREN2] = ACTIONS(2267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), - [anon_sym_DOT_DOT_LT] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2265), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [aux_sym__val_number_token4] = ACTIONS(2265), - [aux_sym__val_number_token5] = ACTIONS(2265), - [aux_sym__val_number_token6] = ACTIONS(2265), - [anon_sym_0b] = ACTIONS(2265), - [anon_sym_0o] = ACTIONS(2265), - [anon_sym_0x] = ACTIONS(2265), - [sym_val_date] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_err_GT] = ACTIONS(2265), - [anon_sym_out_GT] = ACTIONS(2265), - [anon_sym_e_GT] = ACTIONS(2265), - [anon_sym_o_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT] = ACTIONS(2265), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), - [aux_sym_unquoted_token1] = ACTIONS(2265), - [aux_sym_unquoted_token4] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2267), + [1616] = { + [sym_comment] = STATE(1616), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_RPAREN] = ACTIONS(1729), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1729), + [anon_sym_in2] = ACTIONS(1729), + [anon_sym_RBRACE] = ACTIONS(1729), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1729), + [anon_sym_xor2] = ACTIONS(1729), + [anon_sym_or2] = ACTIONS(1729), + [anon_sym_not_DASHin2] = ACTIONS(1729), + [anon_sym_starts_DASHwith2] = ACTIONS(1729), + [anon_sym_ends_DASHwith2] = ACTIONS(1729), + [anon_sym_EQ_EQ2] = ACTIONS(1729), + [anon_sym_BANG_EQ2] = ACTIONS(1729), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1729), + [anon_sym_GT_EQ2] = ACTIONS(1729), + [anon_sym_EQ_TILDE2] = ACTIONS(1729), + [anon_sym_BANG_TILDE2] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_STAR_STAR2] = ACTIONS(1729), + [anon_sym_PLUS_PLUS2] = ACTIONS(1729), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1729), + [anon_sym_SLASH_SLASH2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1729), + [anon_sym_bit_DASHshr2] = ACTIONS(1729), + [anon_sym_bit_DASHand2] = ACTIONS(1729), + [anon_sym_bit_DASHxor2] = ACTIONS(1729), + [anon_sym_bit_DASHor2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token2] = ACTIONS(1727), + [anon_sym_POUND] = ACTIONS(251), }, - [1606] = { - [sym_comment] = STATE(1606), - [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_LBRACK] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_RPAREN] = ACTIONS(2198), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2198), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_RBRACE] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2198), - [anon_sym_DOT_DOT_LT] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [aux_sym__val_number_token4] = ACTIONS(2198), - [aux_sym__val_number_token5] = ACTIONS(2198), - [aux_sym__val_number_token6] = ACTIONS(2198), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2194), - [anon_sym_0x] = ACTIONS(2194), - [sym_val_date] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2194), - [anon_sym_out_GT] = ACTIONS(2194), - [anon_sym_e_GT] = ACTIONS(2194), - [anon_sym_o_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT] = ACTIONS(2194), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2194), - [aux_sym_unquoted_token2] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2198), + [1617] = { + [sym__expr_parenthesized_immediate] = STATE(7343), + [sym_comment] = STATE(1617), + [sym__newline] = ACTIONS(4906), + [anon_sym_SEMI] = ACTIONS(4906), + [anon_sym_PIPE] = ACTIONS(4906), + [anon_sym_err_GT_PIPE] = ACTIONS(4906), + [anon_sym_out_GT_PIPE] = ACTIONS(4906), + [anon_sym_e_GT_PIPE] = ACTIONS(4906), + [anon_sym_o_GT_PIPE] = ACTIONS(4906), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4906), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4906), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4906), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4906), + [anon_sym_LBRACK] = ACTIONS(4906), + [anon_sym_LPAREN] = ACTIONS(4908), + [anon_sym_RPAREN] = ACTIONS(4906), + [anon_sym_DOLLAR] = ACTIONS(4908), + [anon_sym_DASH_DASH] = ACTIONS(4906), + [anon_sym_DASH2] = ACTIONS(4908), + [anon_sym_LBRACE] = ACTIONS(4906), + [anon_sym_DOT_DOT] = ACTIONS(4908), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4906), + [anon_sym_DOT_DOT_LT] = ACTIONS(4906), + [anon_sym_null] = ACTIONS(4906), + [anon_sym_true] = ACTIONS(4906), + [anon_sym_false] = ACTIONS(4906), + [aux_sym__val_number_decimal_token1] = ACTIONS(4908), + [aux_sym__val_number_decimal_token2] = ACTIONS(4906), + [aux_sym__val_number_decimal_token3] = ACTIONS(4906), + [aux_sym__val_number_decimal_token4] = ACTIONS(4906), + [aux_sym__val_number_token1] = ACTIONS(4906), + [aux_sym__val_number_token2] = ACTIONS(4906), + [aux_sym__val_number_token3] = ACTIONS(4906), + [aux_sym__val_number_token4] = ACTIONS(4906), + [aux_sym__val_number_token5] = ACTIONS(4906), + [aux_sym__val_number_token6] = ACTIONS(4906), + [anon_sym_0b] = ACTIONS(4908), + [anon_sym_0o] = ACTIONS(4908), + [anon_sym_0x] = ACTIONS(4908), + [sym_val_date] = ACTIONS(4906), + [anon_sym_DQUOTE] = ACTIONS(4906), + [sym__str_single_quotes] = ACTIONS(4906), + [sym__str_back_ticks] = ACTIONS(4906), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4906), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4906), + [anon_sym_err_GT] = ACTIONS(4908), + [anon_sym_out_GT] = ACTIONS(4908), + [anon_sym_e_GT] = ACTIONS(4908), + [anon_sym_o_GT] = ACTIONS(4908), + [anon_sym_err_PLUSout_GT] = ACTIONS(4908), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4908), + [anon_sym_o_PLUSe_GT] = ACTIONS(4908), + [anon_sym_e_PLUSo_GT] = ACTIONS(4908), + [anon_sym_err_GT_GT] = ACTIONS(4906), + [anon_sym_out_GT_GT] = ACTIONS(4906), + [anon_sym_e_GT_GT] = ACTIONS(4906), + [anon_sym_o_GT_GT] = ACTIONS(4906), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4906), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4906), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4906), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4906), + [aux_sym_unquoted_token1] = ACTIONS(4908), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4906), }, - [1607] = { - [sym_comment] = STATE(1607), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1757), - [anon_sym_DOT_DOT_LT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), + [1618] = { + [sym_comment] = STATE(1618), + [sym__newline] = ACTIONS(1000), + [anon_sym_SEMI] = ACTIONS(1000), + [anon_sym_PIPE] = ACTIONS(1000), + [anon_sym_err_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_GT_PIPE] = ACTIONS(1000), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), + [anon_sym_LBRACK] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1000), + [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_DOLLAR] = ACTIONS(1004), + [anon_sym_DASH_DASH] = ACTIONS(1004), + [anon_sym_DASH2] = ACTIONS(1004), + [anon_sym_LBRACE] = ACTIONS(1000), + [anon_sym_RBRACE] = ACTIONS(1000), + [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), + [anon_sym_DOT_DOT_LT] = ACTIONS(1004), + [anon_sym_null] = ACTIONS(1004), + [anon_sym_true] = ACTIONS(1004), + [anon_sym_false] = ACTIONS(1004), + [aux_sym__val_number_decimal_token1] = ACTIONS(1004), + [aux_sym__val_number_decimal_token2] = ACTIONS(1004), + [aux_sym__val_number_decimal_token3] = ACTIONS(1004), + [aux_sym__val_number_decimal_token4] = ACTIONS(1004), + [aux_sym__val_number_token1] = ACTIONS(1004), + [aux_sym__val_number_token2] = ACTIONS(1004), + [aux_sym__val_number_token3] = ACTIONS(1004), + [aux_sym__val_number_token4] = ACTIONS(1004), + [aux_sym__val_number_token5] = ACTIONS(1004), + [aux_sym__val_number_token6] = ACTIONS(1004), + [anon_sym_0b] = ACTIONS(1004), + [anon_sym_0o] = ACTIONS(1004), + [anon_sym_0x] = ACTIONS(1004), + [sym_val_date] = ACTIONS(1004), + [anon_sym_DQUOTE] = ACTIONS(1000), + [sym__str_single_quotes] = ACTIONS(1000), + [sym__str_back_ticks] = ACTIONS(1000), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), + [anon_sym_err_GT] = ACTIONS(1004), + [anon_sym_out_GT] = ACTIONS(1004), + [anon_sym_e_GT] = ACTIONS(1004), + [anon_sym_o_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT] = ACTIONS(1004), + [anon_sym_err_GT_GT] = ACTIONS(1004), + [anon_sym_out_GT_GT] = ACTIONS(1004), + [anon_sym_e_GT_GT] = ACTIONS(1004), + [anon_sym_o_GT_GT] = ACTIONS(1004), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), + [aux_sym_unquoted_token1] = ACTIONS(1004), + [aux_sym_unquoted_token4] = ACTIONS(2210), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(1000), + }, + [1619] = { + [sym_comment] = STATE(1619), + [ts_builtin_sym_end] = ACTIONS(978), + [sym__newline] = ACTIONS(978), + [anon_sym_SEMI] = ACTIONS(978), + [anon_sym_PIPE] = ACTIONS(978), + [anon_sym_err_GT_PIPE] = ACTIONS(978), + [anon_sym_out_GT_PIPE] = ACTIONS(978), + [anon_sym_e_GT_PIPE] = ACTIONS(978), + [anon_sym_o_GT_PIPE] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), + [anon_sym_LBRACK] = ACTIONS(978), + [anon_sym_LPAREN] = ACTIONS(978), + [anon_sym_DOLLAR] = ACTIONS(976), + [anon_sym_DASH_DASH] = ACTIONS(978), + [anon_sym_DASH2] = ACTIONS(976), + [anon_sym_LBRACE] = ACTIONS(978), + [anon_sym_DOT_DOT] = ACTIONS(976), + [anon_sym_QMARK2] = ACTIONS(978), + [anon_sym_DOT_DOT_EQ] = ACTIONS(978), + [anon_sym_DOT_DOT_LT] = ACTIONS(978), + [anon_sym_null] = ACTIONS(978), + [anon_sym_true] = ACTIONS(978), + [anon_sym_false] = ACTIONS(978), + [aux_sym__val_number_decimal_token1] = ACTIONS(976), + [aux_sym__val_number_decimal_token2] = ACTIONS(978), + [aux_sym__val_number_decimal_token3] = ACTIONS(978), + [aux_sym__val_number_decimal_token4] = ACTIONS(978), + [aux_sym__val_number_token1] = ACTIONS(978), + [aux_sym__val_number_token2] = ACTIONS(978), + [aux_sym__val_number_token3] = ACTIONS(978), + [aux_sym__val_number_token4] = ACTIONS(978), + [aux_sym__val_number_token5] = ACTIONS(978), + [aux_sym__val_number_token6] = ACTIONS(978), + [anon_sym_0b] = ACTIONS(976), + [anon_sym_0o] = ACTIONS(976), + [anon_sym_0x] = ACTIONS(976), + [sym_val_date] = ACTIONS(978), + [anon_sym_DQUOTE] = ACTIONS(978), + [sym__str_single_quotes] = ACTIONS(978), + [sym__str_back_ticks] = ACTIONS(978), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), + [anon_sym_DOT2] = ACTIONS(976), + [anon_sym_err_GT] = ACTIONS(976), + [anon_sym_out_GT] = ACTIONS(976), + [anon_sym_e_GT] = ACTIONS(976), + [anon_sym_o_GT] = ACTIONS(976), + [anon_sym_err_PLUSout_GT] = ACTIONS(976), + [anon_sym_out_PLUSerr_GT] = ACTIONS(976), + [anon_sym_o_PLUSe_GT] = ACTIONS(976), + [anon_sym_e_PLUSo_GT] = ACTIONS(976), + [anon_sym_err_GT_GT] = ACTIONS(978), + [anon_sym_out_GT_GT] = ACTIONS(978), + [anon_sym_e_GT_GT] = ACTIONS(978), + [anon_sym_o_GT_GT] = ACTIONS(978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), + [aux_sym_unquoted_token1] = ACTIONS(976), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(978), }, - [1608] = { - [sym_comment] = STATE(1608), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1589), - [anon_sym_xor2] = ACTIONS(1589), - [anon_sym_or2] = ACTIONS(1589), - [anon_sym_not_DASHin2] = ACTIONS(1589), - [anon_sym_starts_DASHwith2] = ACTIONS(1589), - [anon_sym_ends_DASHwith2] = ACTIONS(1589), - [anon_sym_EQ_EQ2] = ACTIONS(1589), - [anon_sym_BANG_EQ2] = ACTIONS(1589), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1589), - [anon_sym_GT_EQ2] = ACTIONS(1589), - [anon_sym_EQ_TILDE2] = ACTIONS(1589), - [anon_sym_BANG_TILDE2] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR_STAR2] = ACTIONS(1589), - [anon_sym_PLUS_PLUS2] = ACTIONS(1589), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1589), - [anon_sym_SLASH_SLASH2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1589), - [anon_sym_bit_DASHshr2] = ACTIONS(1589), - [anon_sym_bit_DASHand2] = ACTIONS(1589), - [anon_sym_bit_DASHxor2] = ACTIONS(1589), - [anon_sym_bit_DASHor2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [aux_sym__immediate_decimal_token2] = ACTIONS(4786), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1587), + [1620] = { + [sym_comment] = STATE(1620), + [sym__newline] = ACTIONS(986), + [anon_sym_SEMI] = ACTIONS(986), + [anon_sym_PIPE] = ACTIONS(986), + [anon_sym_err_GT_PIPE] = ACTIONS(986), + [anon_sym_out_GT_PIPE] = ACTIONS(986), + [anon_sym_e_GT_PIPE] = ACTIONS(986), + [anon_sym_o_GT_PIPE] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), + [anon_sym_LBRACK] = ACTIONS(986), + [anon_sym_LPAREN] = ACTIONS(986), + [anon_sym_RPAREN] = ACTIONS(986), + [anon_sym_DOLLAR] = ACTIONS(984), + [anon_sym_DASH_DASH] = ACTIONS(986), + [anon_sym_DASH2] = ACTIONS(984), + [anon_sym_LBRACE] = ACTIONS(986), + [anon_sym_RBRACE] = ACTIONS(986), + [anon_sym_DOT_DOT] = ACTIONS(984), + [anon_sym_DOT_DOT_EQ] = ACTIONS(986), + [anon_sym_DOT_DOT_LT] = ACTIONS(986), + [anon_sym_null] = ACTIONS(986), + [anon_sym_true] = ACTIONS(986), + [anon_sym_false] = ACTIONS(986), + [aux_sym__val_number_decimal_token1] = ACTIONS(984), + [aux_sym__val_number_decimal_token2] = ACTIONS(986), + [aux_sym__val_number_decimal_token3] = ACTIONS(986), + [aux_sym__val_number_decimal_token4] = ACTIONS(986), + [aux_sym__val_number_token1] = ACTIONS(986), + [aux_sym__val_number_token2] = ACTIONS(986), + [aux_sym__val_number_token3] = ACTIONS(986), + [aux_sym__val_number_token4] = ACTIONS(986), + [aux_sym__val_number_token5] = ACTIONS(986), + [aux_sym__val_number_token6] = ACTIONS(986), + [anon_sym_0b] = ACTIONS(984), + [anon_sym_0o] = ACTIONS(984), + [anon_sym_0x] = ACTIONS(984), + [sym_val_date] = ACTIONS(986), + [anon_sym_DQUOTE] = ACTIONS(986), + [sym__str_single_quotes] = ACTIONS(986), + [sym__str_back_ticks] = ACTIONS(986), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), + [anon_sym_DOT2] = ACTIONS(984), + [anon_sym_err_GT] = ACTIONS(984), + [anon_sym_out_GT] = ACTIONS(984), + [anon_sym_e_GT] = ACTIONS(984), + [anon_sym_o_GT] = ACTIONS(984), + [anon_sym_err_PLUSout_GT] = ACTIONS(984), + [anon_sym_out_PLUSerr_GT] = ACTIONS(984), + [anon_sym_o_PLUSe_GT] = ACTIONS(984), + [anon_sym_e_PLUSo_GT] = ACTIONS(984), + [anon_sym_err_GT_GT] = ACTIONS(986), + [anon_sym_out_GT_GT] = ACTIONS(986), + [anon_sym_e_GT_GT] = ACTIONS(986), + [anon_sym_o_GT_GT] = ACTIONS(986), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), + [aux_sym_unquoted_token1] = ACTIONS(984), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(986), }, - [1609] = { - [sym_comment] = STATE(1609), - [sym__newline] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_PIPE] = ACTIONS(4878), - [anon_sym_err_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_GT_PIPE] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_RPAREN] = ACTIONS(4878), - [anon_sym_DOLLAR] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_DASH2] = ACTIONS(4880), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_RBRACE] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4878), - [anon_sym_DOT_DOT_LT] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4880), - [anon_sym_true] = ACTIONS(4880), - [anon_sym_false] = ACTIONS(4880), - [aux_sym__val_number_decimal_token1] = ACTIONS(4880), - [aux_sym__val_number_decimal_token2] = ACTIONS(4880), - [aux_sym__val_number_decimal_token3] = ACTIONS(4878), - [aux_sym__val_number_decimal_token4] = ACTIONS(4878), - [aux_sym__val_number_token1] = ACTIONS(4880), - [aux_sym__val_number_token2] = ACTIONS(4880), - [aux_sym__val_number_token3] = ACTIONS(4880), - [aux_sym__val_number_token4] = ACTIONS(4880), - [aux_sym__val_number_token5] = ACTIONS(4880), - [aux_sym__val_number_token6] = ACTIONS(4880), - [anon_sym_0b] = ACTIONS(4880), - [anon_sym_0o] = ACTIONS(4880), - [anon_sym_0x] = ACTIONS(4880), - [sym_val_date] = ACTIONS(4880), - [anon_sym_DQUOTE] = ACTIONS(4878), - [sym__str_single_quotes] = ACTIONS(4878), - [sym__str_back_ticks] = ACTIONS(4878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4878), - [anon_sym_err_GT] = ACTIONS(4880), - [anon_sym_out_GT] = ACTIONS(4880), - [anon_sym_e_GT] = ACTIONS(4880), - [anon_sym_o_GT] = ACTIONS(4880), - [anon_sym_err_PLUSout_GT] = ACTIONS(4880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4880), - [anon_sym_o_PLUSe_GT] = ACTIONS(4880), - [anon_sym_e_PLUSo_GT] = ACTIONS(4880), - [anon_sym_err_GT_GT] = ACTIONS(4878), - [anon_sym_out_GT_GT] = ACTIONS(4878), - [anon_sym_e_GT_GT] = ACTIONS(4878), - [anon_sym_o_GT_GT] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4878), - [anon_sym_EQ2] = ACTIONS(4882), - [sym_short_flag_identifier] = ACTIONS(4884), - [aux_sym_unquoted_token1] = ACTIONS(4880), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4878), + [1621] = { + [sym_comment] = STATE(1621), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4910), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4912), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1610] = { - [sym_comment] = STATE(1610), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4764), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), + [1622] = { + [sym_comment] = STATE(1622), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2192), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2192), + [anon_sym_DOT_DOT_LT] = ACTIONS(2192), + [anon_sym_null] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2192), + [anon_sym_false] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token2] = ACTIONS(2192), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2192), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2192), + [aux_sym__val_number_token5] = ACTIONS(2192), + [aux_sym__val_number_token6] = ACTIONS(2192), + [anon_sym_0b] = ACTIONS(2192), + [anon_sym_0o] = ACTIONS(2192), + [anon_sym_0x] = ACTIONS(2192), + [sym_val_date] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2196), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2196), + }, + [1623] = { + [sym_comment] = STATE(1623), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2200), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_LPAREN2] = ACTIONS(2194), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2200), + [anon_sym_DOT_DOT_LT] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [aux_sym__val_number_token4] = ACTIONS(2200), + [aux_sym__val_number_token5] = ACTIONS(2200), + [aux_sym__val_number_token6] = ACTIONS(2200), + [anon_sym_0b] = ACTIONS(2200), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2202), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(2200), + [aux_sym_unquoted_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [1624] = { + [sym_cell_path] = STATE(2077), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1624), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(2030), + [anon_sym_SEMI] = ACTIONS(2030), + [anon_sym_PIPE] = ACTIONS(2030), + [anon_sym_err_GT_PIPE] = ACTIONS(2030), + [anon_sym_out_GT_PIPE] = ACTIONS(2030), + [anon_sym_e_GT_PIPE] = ACTIONS(2030), + [anon_sym_o_GT_PIPE] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2030), + [anon_sym_RPAREN] = ACTIONS(2030), + [anon_sym_GT2] = ACTIONS(2028), + [anon_sym_DASH2] = ACTIONS(2030), + [anon_sym_in2] = ACTIONS(2030), + [anon_sym_LBRACE] = ACTIONS(2030), + [anon_sym_RBRACE] = ACTIONS(2030), + [anon_sym_EQ_GT] = ACTIONS(2030), + [anon_sym_STAR2] = ACTIONS(2028), + [anon_sym_and2] = ACTIONS(2030), + [anon_sym_xor2] = ACTIONS(2030), + [anon_sym_or2] = ACTIONS(2030), + [anon_sym_not_DASHin2] = ACTIONS(2030), + [anon_sym_starts_DASHwith2] = ACTIONS(2030), + [anon_sym_ends_DASHwith2] = ACTIONS(2030), + [anon_sym_EQ_EQ2] = ACTIONS(2030), + [anon_sym_BANG_EQ2] = ACTIONS(2030), + [anon_sym_LT2] = ACTIONS(2028), + [anon_sym_LT_EQ2] = ACTIONS(2030), + [anon_sym_GT_EQ2] = ACTIONS(2030), + [anon_sym_EQ_TILDE2] = ACTIONS(2030), + [anon_sym_BANG_TILDE2] = ACTIONS(2030), + [anon_sym_STAR_STAR2] = ACTIONS(2030), + [anon_sym_PLUS_PLUS2] = ACTIONS(2030), + [anon_sym_SLASH2] = ACTIONS(2028), + [anon_sym_mod2] = ACTIONS(2030), + [anon_sym_SLASH_SLASH2] = ACTIONS(2030), + [anon_sym_PLUS2] = ACTIONS(2028), + [anon_sym_bit_DASHshl2] = ACTIONS(2030), + [anon_sym_bit_DASHshr2] = ACTIONS(2030), + [anon_sym_bit_DASHand2] = ACTIONS(2030), + [anon_sym_bit_DASHxor2] = ACTIONS(2030), + [anon_sym_bit_DASHor2] = ACTIONS(2030), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(2028), + [anon_sym_out_GT] = ACTIONS(2028), + [anon_sym_e_GT] = ACTIONS(2028), + [anon_sym_o_GT] = ACTIONS(2028), + [anon_sym_err_PLUSout_GT] = ACTIONS(2028), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2028), + [anon_sym_o_PLUSe_GT] = ACTIONS(2028), + [anon_sym_e_PLUSo_GT] = ACTIONS(2028), + [anon_sym_err_GT_GT] = ACTIONS(2030), + [anon_sym_out_GT_GT] = ACTIONS(2030), + [anon_sym_e_GT_GT] = ACTIONS(2030), + [anon_sym_o_GT_GT] = ACTIONS(2030), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2030), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2030), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2030), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2030), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), }, - [1611] = { - [sym_comment] = STATE(1611), - [sym_long_flag_identifier] = ACTIONS(4886), - [sym__newline] = ACTIONS(4888), - [anon_sym_SEMI] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_err_GT_PIPE] = ACTIONS(4888), - [anon_sym_out_GT_PIPE] = ACTIONS(4888), - [anon_sym_e_GT_PIPE] = ACTIONS(4888), - [anon_sym_o_GT_PIPE] = ACTIONS(4888), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4888), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4888), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4888), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_RPAREN] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_DASH2] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_RBRACE] = ACTIONS(4888), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), - [anon_sym_DOT_DOT_LT] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4890), - [anon_sym_true] = ACTIONS(4890), - [anon_sym_false] = ACTIONS(4890), - [aux_sym__val_number_decimal_token1] = ACTIONS(4890), - [aux_sym__val_number_decimal_token2] = ACTIONS(4888), - [aux_sym__val_number_decimal_token3] = ACTIONS(4888), - [aux_sym__val_number_decimal_token4] = ACTIONS(4888), - [aux_sym__val_number_token1] = ACTIONS(4890), - [aux_sym__val_number_token2] = ACTIONS(4890), - [aux_sym__val_number_token3] = ACTIONS(4890), - [aux_sym__val_number_token4] = ACTIONS(4890), - [aux_sym__val_number_token5] = ACTIONS(4888), - [aux_sym__val_number_token6] = ACTIONS(4890), - [anon_sym_0b] = ACTIONS(4890), - [anon_sym_0o] = ACTIONS(4890), - [anon_sym_0x] = ACTIONS(4890), - [sym_val_date] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4888), - [sym__str_single_quotes] = ACTIONS(4888), - [sym__str_back_ticks] = ACTIONS(4888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4888), - [anon_sym_err_GT] = ACTIONS(4890), - [anon_sym_out_GT] = ACTIONS(4890), - [anon_sym_e_GT] = ACTIONS(4890), - [anon_sym_o_GT] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT] = ACTIONS(4890), - [anon_sym_err_GT_GT] = ACTIONS(4888), - [anon_sym_out_GT_GT] = ACTIONS(4888), - [anon_sym_e_GT_GT] = ACTIONS(4888), - [anon_sym_o_GT_GT] = ACTIONS(4888), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4888), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4888), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4888), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4888), - [anon_sym_EQ2] = ACTIONS(4892), - [aux_sym_unquoted_token1] = ACTIONS(4890), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4888), + [1625] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1625), + [ts_builtin_sym_end] = ACTIONS(4898), + [sym__newline] = ACTIONS(4898), + [anon_sym_SEMI] = ACTIONS(4898), + [anon_sym_PIPE] = ACTIONS(4898), + [anon_sym_err_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_GT_PIPE] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4898), + [anon_sym_LBRACK] = ACTIONS(4898), + [anon_sym_LPAREN] = ACTIONS(4900), + [anon_sym_DOLLAR] = ACTIONS(4900), + [anon_sym_DASH_DASH] = ACTIONS(4898), + [anon_sym_DASH2] = ACTIONS(4900), + [anon_sym_LBRACE] = ACTIONS(4898), + [anon_sym_DOT_DOT] = ACTIONS(4900), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4898), + [anon_sym_DOT_DOT_LT] = ACTIONS(4898), + [anon_sym_null] = ACTIONS(4898), + [anon_sym_true] = ACTIONS(4898), + [anon_sym_false] = ACTIONS(4898), + [aux_sym__val_number_decimal_token1] = ACTIONS(4900), + [aux_sym__val_number_decimal_token2] = ACTIONS(4898), + [aux_sym__val_number_decimal_token3] = ACTIONS(4898), + [aux_sym__val_number_decimal_token4] = ACTIONS(4898), + [aux_sym__val_number_token1] = ACTIONS(4898), + [aux_sym__val_number_token2] = ACTIONS(4898), + [aux_sym__val_number_token3] = ACTIONS(4898), + [aux_sym__val_number_token4] = ACTIONS(4898), + [aux_sym__val_number_token5] = ACTIONS(4898), + [aux_sym__val_number_token6] = ACTIONS(4898), + [anon_sym_0b] = ACTIONS(4900), + [anon_sym_0o] = ACTIONS(4900), + [anon_sym_0x] = ACTIONS(4900), + [sym_val_date] = ACTIONS(4898), + [anon_sym_DQUOTE] = ACTIONS(4898), + [sym__str_single_quotes] = ACTIONS(4898), + [sym__str_back_ticks] = ACTIONS(4898), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4898), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4898), + [anon_sym_err_GT] = ACTIONS(4900), + [anon_sym_out_GT] = ACTIONS(4900), + [anon_sym_e_GT] = ACTIONS(4900), + [anon_sym_o_GT] = ACTIONS(4900), + [anon_sym_err_PLUSout_GT] = ACTIONS(4900), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4900), + [anon_sym_o_PLUSe_GT] = ACTIONS(4900), + [anon_sym_e_PLUSo_GT] = ACTIONS(4900), + [anon_sym_err_GT_GT] = ACTIONS(4898), + [anon_sym_out_GT_GT] = ACTIONS(4898), + [anon_sym_e_GT_GT] = ACTIONS(4898), + [anon_sym_o_GT_GT] = ACTIONS(4898), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4898), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4898), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4898), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4898), + [aux_sym_unquoted_token1] = ACTIONS(4900), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4898), }, - [1612] = { - [sym_comment] = STATE(1612), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1765), - [anon_sym_DOT_DOT_LT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), + [1626] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1626), + [ts_builtin_sym_end] = ACTIONS(4815), + [sym__newline] = ACTIONS(4815), + [anon_sym_SEMI] = ACTIONS(4815), + [anon_sym_PIPE] = ACTIONS(4815), + [anon_sym_err_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_GT_PIPE] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4815), + [anon_sym_LBRACK] = ACTIONS(4815), + [anon_sym_LPAREN] = ACTIONS(4817), + [anon_sym_DOLLAR] = ACTIONS(4817), + [anon_sym_DASH_DASH] = ACTIONS(4815), + [anon_sym_DASH2] = ACTIONS(4817), + [anon_sym_LBRACE] = ACTIONS(4815), + [anon_sym_DOT_DOT] = ACTIONS(4817), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4815), + [anon_sym_DOT_DOT_LT] = ACTIONS(4815), + [anon_sym_null] = ACTIONS(4815), + [anon_sym_true] = ACTIONS(4815), + [anon_sym_false] = ACTIONS(4815), + [aux_sym__val_number_decimal_token1] = ACTIONS(4817), + [aux_sym__val_number_decimal_token2] = ACTIONS(4815), + [aux_sym__val_number_decimal_token3] = ACTIONS(4815), + [aux_sym__val_number_decimal_token4] = ACTIONS(4815), + [aux_sym__val_number_token1] = ACTIONS(4815), + [aux_sym__val_number_token2] = ACTIONS(4815), + [aux_sym__val_number_token3] = ACTIONS(4815), + [aux_sym__val_number_token4] = ACTIONS(4815), + [aux_sym__val_number_token5] = ACTIONS(4815), + [aux_sym__val_number_token6] = ACTIONS(4815), + [anon_sym_0b] = ACTIONS(4817), + [anon_sym_0o] = ACTIONS(4817), + [anon_sym_0x] = ACTIONS(4817), + [sym_val_date] = ACTIONS(4815), + [anon_sym_DQUOTE] = ACTIONS(4815), + [sym__str_single_quotes] = ACTIONS(4815), + [sym__str_back_ticks] = ACTIONS(4815), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4815), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4815), + [anon_sym_err_GT] = ACTIONS(4817), + [anon_sym_out_GT] = ACTIONS(4817), + [anon_sym_e_GT] = ACTIONS(4817), + [anon_sym_o_GT] = ACTIONS(4817), + [anon_sym_err_PLUSout_GT] = ACTIONS(4817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4817), + [anon_sym_o_PLUSe_GT] = ACTIONS(4817), + [anon_sym_e_PLUSo_GT] = ACTIONS(4817), + [anon_sym_err_GT_GT] = ACTIONS(4815), + [anon_sym_out_GT_GT] = ACTIONS(4815), + [anon_sym_e_GT_GT] = ACTIONS(4815), + [anon_sym_o_GT_GT] = ACTIONS(4815), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4815), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4815), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4815), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4815), + [aux_sym_unquoted_token1] = ACTIONS(4817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4815), }, - [1613] = { - [sym_comment] = STATE(1613), - [ts_builtin_sym_end] = ACTIONS(1863), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1863), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1861), - [anon_sym_DOT_DOT_LT] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1861), - [anon_sym_0o] = ACTIONS(1861), - [anon_sym_0x] = ACTIONS(1861), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token1] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), + [1627] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1627), + [ts_builtin_sym_end] = ACTIONS(4811), + [sym__newline] = ACTIONS(4811), + [anon_sym_SEMI] = ACTIONS(4811), + [anon_sym_PIPE] = ACTIONS(4811), + [anon_sym_err_GT_PIPE] = ACTIONS(4811), + [anon_sym_out_GT_PIPE] = ACTIONS(4811), + [anon_sym_e_GT_PIPE] = ACTIONS(4811), + [anon_sym_o_GT_PIPE] = ACTIONS(4811), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4811), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4811), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4811), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4811), + [anon_sym_LBRACK] = ACTIONS(4811), + [anon_sym_LPAREN] = ACTIONS(4813), + [anon_sym_DOLLAR] = ACTIONS(4813), + [anon_sym_DASH_DASH] = ACTIONS(4811), + [anon_sym_DASH2] = ACTIONS(4813), + [anon_sym_LBRACE] = ACTIONS(4811), + [anon_sym_DOT_DOT] = ACTIONS(4813), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4811), + [anon_sym_DOT_DOT_LT] = ACTIONS(4811), + [anon_sym_null] = ACTIONS(4811), + [anon_sym_true] = ACTIONS(4811), + [anon_sym_false] = ACTIONS(4811), + [aux_sym__val_number_decimal_token1] = ACTIONS(4813), + [aux_sym__val_number_decimal_token2] = ACTIONS(4811), + [aux_sym__val_number_decimal_token3] = ACTIONS(4811), + [aux_sym__val_number_decimal_token4] = ACTIONS(4811), + [aux_sym__val_number_token1] = ACTIONS(4811), + [aux_sym__val_number_token2] = ACTIONS(4811), + [aux_sym__val_number_token3] = ACTIONS(4811), + [aux_sym__val_number_token4] = ACTIONS(4811), + [aux_sym__val_number_token5] = ACTIONS(4811), + [aux_sym__val_number_token6] = ACTIONS(4811), + [anon_sym_0b] = ACTIONS(4813), + [anon_sym_0o] = ACTIONS(4813), + [anon_sym_0x] = ACTIONS(4813), + [sym_val_date] = ACTIONS(4811), + [anon_sym_DQUOTE] = ACTIONS(4811), + [sym__str_single_quotes] = ACTIONS(4811), + [sym__str_back_ticks] = ACTIONS(4811), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4811), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4811), + [anon_sym_err_GT] = ACTIONS(4813), + [anon_sym_out_GT] = ACTIONS(4813), + [anon_sym_e_GT] = ACTIONS(4813), + [anon_sym_o_GT] = ACTIONS(4813), + [anon_sym_err_PLUSout_GT] = ACTIONS(4813), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4813), + [anon_sym_o_PLUSe_GT] = ACTIONS(4813), + [anon_sym_e_PLUSo_GT] = ACTIONS(4813), + [anon_sym_err_GT_GT] = ACTIONS(4811), + [anon_sym_out_GT_GT] = ACTIONS(4811), + [anon_sym_e_GT_GT] = ACTIONS(4811), + [anon_sym_o_GT_GT] = ACTIONS(4811), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4811), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4811), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4811), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4811), + [aux_sym_unquoted_token1] = ACTIONS(4813), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4811), }, - [1614] = { - [sym_path] = STATE(1747), - [sym_comment] = STATE(1614), - [aux_sym_cell_path_repeat1] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_LBRACK] = ACTIONS(950), - [anon_sym_LPAREN] = ACTIONS(950), - [anon_sym_DOLLAR] = ACTIONS(948), - [anon_sym_DASH_DASH] = ACTIONS(950), - [anon_sym_DASH2] = ACTIONS(948), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_DOT_DOT] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ] = ACTIONS(950), - [anon_sym_DOT_DOT_LT] = ACTIONS(950), - [anon_sym_null] = ACTIONS(950), - [anon_sym_true] = ACTIONS(950), - [anon_sym_false] = ACTIONS(950), - [aux_sym__val_number_decimal_token1] = ACTIONS(948), - [aux_sym__val_number_decimal_token2] = ACTIONS(950), - [aux_sym__val_number_decimal_token3] = ACTIONS(950), - [aux_sym__val_number_decimal_token4] = ACTIONS(950), - [aux_sym__val_number_token1] = ACTIONS(950), - [aux_sym__val_number_token2] = ACTIONS(950), - [aux_sym__val_number_token3] = ACTIONS(950), - [aux_sym__val_number_token4] = ACTIONS(950), - [aux_sym__val_number_token5] = ACTIONS(950), - [aux_sym__val_number_token6] = ACTIONS(950), - [anon_sym_0b] = ACTIONS(948), - [anon_sym_0o] = ACTIONS(948), - [anon_sym_0x] = ACTIONS(948), - [sym_val_date] = ACTIONS(950), - [anon_sym_DQUOTE] = ACTIONS(950), - [sym__str_single_quotes] = ACTIONS(950), - [sym__str_back_ticks] = ACTIONS(950), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(950), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4731), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [aux_sym_unquoted_token1] = ACTIONS(948), + [1628] = { + [sym_comment] = STATE(1628), + [sym__newline] = ACTIONS(4914), + [anon_sym_SEMI] = ACTIONS(4914), + [anon_sym_PIPE] = ACTIONS(4914), + [anon_sym_err_GT_PIPE] = ACTIONS(4914), + [anon_sym_out_GT_PIPE] = ACTIONS(4914), + [anon_sym_e_GT_PIPE] = ACTIONS(4914), + [anon_sym_o_GT_PIPE] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4914), + [anon_sym_LBRACK] = ACTIONS(4914), + [anon_sym_LPAREN] = ACTIONS(4914), + [anon_sym_RPAREN] = ACTIONS(4914), + [anon_sym_DOLLAR] = ACTIONS(4916), + [anon_sym_DASH_DASH] = ACTIONS(4914), + [anon_sym_DASH2] = ACTIONS(4916), + [anon_sym_LBRACE] = ACTIONS(4914), + [anon_sym_RBRACE] = ACTIONS(4914), + [anon_sym_DOT_DOT] = ACTIONS(4916), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4914), + [anon_sym_DOT_DOT_LT] = ACTIONS(4914), + [anon_sym_null] = ACTIONS(4914), + [anon_sym_true] = ACTIONS(4914), + [anon_sym_false] = ACTIONS(4914), + [aux_sym__val_number_decimal_token1] = ACTIONS(4916), + [aux_sym__val_number_decimal_token2] = ACTIONS(4914), + [aux_sym__val_number_decimal_token3] = ACTIONS(4914), + [aux_sym__val_number_decimal_token4] = ACTIONS(4914), + [aux_sym__val_number_token1] = ACTIONS(4914), + [aux_sym__val_number_token2] = ACTIONS(4914), + [aux_sym__val_number_token3] = ACTIONS(4914), + [aux_sym__val_number_token4] = ACTIONS(4914), + [aux_sym__val_number_token5] = ACTIONS(4914), + [aux_sym__val_number_token6] = ACTIONS(4914), + [anon_sym_0b] = ACTIONS(4916), + [anon_sym_0o] = ACTIONS(4916), + [anon_sym_0x] = ACTIONS(4916), + [sym_val_date] = ACTIONS(4914), + [anon_sym_DQUOTE] = ACTIONS(4914), + [sym__str_single_quotes] = ACTIONS(4914), + [sym__str_back_ticks] = ACTIONS(4914), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4914), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4914), + [anon_sym_err_GT] = ACTIONS(4916), + [anon_sym_out_GT] = ACTIONS(4916), + [anon_sym_e_GT] = ACTIONS(4916), + [anon_sym_o_GT] = ACTIONS(4916), + [anon_sym_err_PLUSout_GT] = ACTIONS(4916), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4916), + [anon_sym_o_PLUSe_GT] = ACTIONS(4916), + [anon_sym_e_PLUSo_GT] = ACTIONS(4916), + [anon_sym_err_GT_GT] = ACTIONS(4914), + [anon_sym_out_GT_GT] = ACTIONS(4914), + [anon_sym_e_GT_GT] = ACTIONS(4914), + [anon_sym_o_GT_GT] = ACTIONS(4914), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4914), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4914), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4914), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4914), + [anon_sym_EQ2] = ACTIONS(4918), + [aux_sym_unquoted_token1] = ACTIONS(4916), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4914), + }, + [1629] = { + [sym__expr_parenthesized_immediate] = STATE(7193), + [sym_comment] = STATE(1629), + [ts_builtin_sym_end] = ACTIONS(4872), + [sym__newline] = ACTIONS(4872), + [anon_sym_SEMI] = ACTIONS(4872), + [anon_sym_PIPE] = ACTIONS(4872), + [anon_sym_err_GT_PIPE] = ACTIONS(4872), + [anon_sym_out_GT_PIPE] = ACTIONS(4872), + [anon_sym_e_GT_PIPE] = ACTIONS(4872), + [anon_sym_o_GT_PIPE] = ACTIONS(4872), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4872), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4872), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4872), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4872), + [anon_sym_LBRACK] = ACTIONS(4872), + [anon_sym_LPAREN] = ACTIONS(4874), + [anon_sym_DOLLAR] = ACTIONS(4874), + [anon_sym_DASH_DASH] = ACTIONS(4872), + [anon_sym_DASH2] = ACTIONS(4874), + [anon_sym_LBRACE] = ACTIONS(4872), + [anon_sym_DOT_DOT] = ACTIONS(4874), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4872), + [anon_sym_DOT_DOT_LT] = ACTIONS(4872), + [anon_sym_null] = ACTIONS(4872), + [anon_sym_true] = ACTIONS(4872), + [anon_sym_false] = ACTIONS(4872), + [aux_sym__val_number_decimal_token1] = ACTIONS(4874), + [aux_sym__val_number_decimal_token2] = ACTIONS(4872), + [aux_sym__val_number_decimal_token3] = ACTIONS(4872), + [aux_sym__val_number_decimal_token4] = ACTIONS(4872), + [aux_sym__val_number_token1] = ACTIONS(4872), + [aux_sym__val_number_token2] = ACTIONS(4872), + [aux_sym__val_number_token3] = ACTIONS(4872), + [aux_sym__val_number_token4] = ACTIONS(4872), + [aux_sym__val_number_token5] = ACTIONS(4872), + [aux_sym__val_number_token6] = ACTIONS(4872), + [anon_sym_0b] = ACTIONS(4874), + [anon_sym_0o] = ACTIONS(4874), + [anon_sym_0x] = ACTIONS(4874), + [sym_val_date] = ACTIONS(4872), + [anon_sym_DQUOTE] = ACTIONS(4872), + [sym__str_single_quotes] = ACTIONS(4872), + [sym__str_back_ticks] = ACTIONS(4872), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4872), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4872), + [anon_sym_err_GT] = ACTIONS(4874), + [anon_sym_out_GT] = ACTIONS(4874), + [anon_sym_e_GT] = ACTIONS(4874), + [anon_sym_o_GT] = ACTIONS(4874), + [anon_sym_err_PLUSout_GT] = ACTIONS(4874), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4874), + [anon_sym_o_PLUSe_GT] = ACTIONS(4874), + [anon_sym_e_PLUSo_GT] = ACTIONS(4874), + [anon_sym_err_GT_GT] = ACTIONS(4872), + [anon_sym_out_GT_GT] = ACTIONS(4872), + [anon_sym_e_GT_GT] = ACTIONS(4872), + [anon_sym_o_GT_GT] = ACTIONS(4872), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4872), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4872), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4872), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4872), + [aux_sym_unquoted_token1] = ACTIONS(4874), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4872), + }, + [1630] = { + [sym_cell_path] = STATE(2081), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1630), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1873), + [anon_sym_SEMI] = ACTIONS(1873), + [anon_sym_PIPE] = ACTIONS(1873), + [anon_sym_err_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_GT_PIPE] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), + [anon_sym_RPAREN] = ACTIONS(1873), + [anon_sym_GT2] = ACTIONS(1871), + [anon_sym_DASH2] = ACTIONS(1873), + [anon_sym_in2] = ACTIONS(1873), + [anon_sym_LBRACE] = ACTIONS(1873), + [anon_sym_RBRACE] = ACTIONS(1873), + [anon_sym_EQ_GT] = ACTIONS(1873), + [anon_sym_STAR2] = ACTIONS(1871), + [anon_sym_and2] = ACTIONS(1873), + [anon_sym_xor2] = ACTIONS(1873), + [anon_sym_or2] = ACTIONS(1873), + [anon_sym_not_DASHin2] = ACTIONS(1873), + [anon_sym_starts_DASHwith2] = ACTIONS(1873), + [anon_sym_ends_DASHwith2] = ACTIONS(1873), + [anon_sym_EQ_EQ2] = ACTIONS(1873), + [anon_sym_BANG_EQ2] = ACTIONS(1873), + [anon_sym_LT2] = ACTIONS(1871), + [anon_sym_LT_EQ2] = ACTIONS(1873), + [anon_sym_GT_EQ2] = ACTIONS(1873), + [anon_sym_EQ_TILDE2] = ACTIONS(1873), + [anon_sym_BANG_TILDE2] = ACTIONS(1873), + [anon_sym_STAR_STAR2] = ACTIONS(1873), + [anon_sym_PLUS_PLUS2] = ACTIONS(1873), + [anon_sym_SLASH2] = ACTIONS(1871), + [anon_sym_mod2] = ACTIONS(1873), + [anon_sym_SLASH_SLASH2] = ACTIONS(1873), + [anon_sym_PLUS2] = ACTIONS(1871), + [anon_sym_bit_DASHshl2] = ACTIONS(1873), + [anon_sym_bit_DASHshr2] = ACTIONS(1873), + [anon_sym_bit_DASHand2] = ACTIONS(1873), + [anon_sym_bit_DASHxor2] = ACTIONS(1873), + [anon_sym_bit_DASHor2] = ACTIONS(1873), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(1871), + [anon_sym_out_GT] = ACTIONS(1871), + [anon_sym_e_GT] = ACTIONS(1871), + [anon_sym_o_GT] = ACTIONS(1871), + [anon_sym_err_PLUSout_GT] = ACTIONS(1871), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1871), + [anon_sym_o_PLUSe_GT] = ACTIONS(1871), + [anon_sym_e_PLUSo_GT] = ACTIONS(1871), + [anon_sym_err_GT_GT] = ACTIONS(1873), + [anon_sym_out_GT_GT] = ACTIONS(1873), + [anon_sym_e_GT_GT] = ACTIONS(1873), + [anon_sym_o_GT_GT] = ACTIONS(1873), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(950), }, - [1615] = { - [sym_comment] = STATE(1615), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_LBRACK] = ACTIONS(1719), - [anon_sym_LPAREN] = ACTIONS(1719), - [anon_sym_DOLLAR] = ACTIONS(1717), - [anon_sym_DASH_DASH] = ACTIONS(1719), - [anon_sym_DASH2] = ACTIONS(1717), - [anon_sym_LBRACE] = ACTIONS(1719), - [anon_sym_DOT_DOT] = ACTIONS(1717), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1717), - [anon_sym_DOT_DOT_LT] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_null] = ACTIONS(1719), - [anon_sym_true] = ACTIONS(1719), - [anon_sym_false] = ACTIONS(1719), - [aux_sym__val_number_decimal_token1] = ACTIONS(1717), - [aux_sym__val_number_decimal_token2] = ACTIONS(1719), - [aux_sym__val_number_decimal_token3] = ACTIONS(1719), - [aux_sym__val_number_decimal_token4] = ACTIONS(1719), - [aux_sym__val_number_token1] = ACTIONS(1719), - [aux_sym__val_number_token2] = ACTIONS(1719), - [aux_sym__val_number_token3] = ACTIONS(1719), - [aux_sym__val_number_token4] = ACTIONS(1719), - [aux_sym__val_number_token5] = ACTIONS(1719), - [aux_sym__val_number_token6] = ACTIONS(1719), - [anon_sym_0b] = ACTIONS(1717), - [anon_sym_0o] = ACTIONS(1717), - [anon_sym_0x] = ACTIONS(1717), - [sym_val_date] = ACTIONS(1719), - [anon_sym_DQUOTE] = ACTIONS(1719), - [sym__str_single_quotes] = ACTIONS(1719), - [sym__str_back_ticks] = ACTIONS(1719), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1719), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1719), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), - [aux_sym_unquoted_token1] = ACTIONS(1717), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1719), + [1631] = { + [sym_comment] = STATE(1631), + [sym__newline] = ACTIONS(4920), + [anon_sym_SEMI] = ACTIONS(4920), + [anon_sym_PIPE] = ACTIONS(4920), + [anon_sym_err_GT_PIPE] = ACTIONS(4920), + [anon_sym_out_GT_PIPE] = ACTIONS(4920), + [anon_sym_e_GT_PIPE] = ACTIONS(4920), + [anon_sym_o_GT_PIPE] = ACTIONS(4920), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4920), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4920), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4920), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4920), + [anon_sym_LBRACK] = ACTIONS(4920), + [anon_sym_LPAREN] = ACTIONS(4920), + [anon_sym_RPAREN] = ACTIONS(4920), + [anon_sym_DOLLAR] = ACTIONS(4922), + [anon_sym_DASH_DASH] = ACTIONS(4920), + [anon_sym_DASH2] = ACTIONS(4922), + [anon_sym_LBRACE] = ACTIONS(4920), + [anon_sym_RBRACE] = ACTIONS(4920), + [anon_sym_DOT_DOT] = ACTIONS(4922), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4920), + [anon_sym_DOT_DOT_LT] = ACTIONS(4920), + [anon_sym_null] = ACTIONS(4920), + [anon_sym_true] = ACTIONS(4920), + [anon_sym_false] = ACTIONS(4920), + [aux_sym__val_number_decimal_token1] = ACTIONS(4922), + [aux_sym__val_number_decimal_token2] = ACTIONS(4920), + [aux_sym__val_number_decimal_token3] = ACTIONS(4920), + [aux_sym__val_number_decimal_token4] = ACTIONS(4920), + [aux_sym__val_number_token1] = ACTIONS(4920), + [aux_sym__val_number_token2] = ACTIONS(4920), + [aux_sym__val_number_token3] = ACTIONS(4920), + [aux_sym__val_number_token4] = ACTIONS(4920), + [aux_sym__val_number_token5] = ACTIONS(4920), + [aux_sym__val_number_token6] = ACTIONS(4920), + [anon_sym_0b] = ACTIONS(4922), + [anon_sym_0o] = ACTIONS(4922), + [anon_sym_0x] = ACTIONS(4922), + [sym_val_date] = ACTIONS(4920), + [anon_sym_DQUOTE] = ACTIONS(4920), + [sym__str_single_quotes] = ACTIONS(4920), + [sym__str_back_ticks] = ACTIONS(4920), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4920), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4920), + [anon_sym_err_GT] = ACTIONS(4922), + [anon_sym_out_GT] = ACTIONS(4922), + [anon_sym_e_GT] = ACTIONS(4922), + [anon_sym_o_GT] = ACTIONS(4922), + [anon_sym_err_PLUSout_GT] = ACTIONS(4922), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4922), + [anon_sym_o_PLUSe_GT] = ACTIONS(4922), + [anon_sym_e_PLUSo_GT] = ACTIONS(4922), + [anon_sym_err_GT_GT] = ACTIONS(4920), + [anon_sym_out_GT_GT] = ACTIONS(4920), + [anon_sym_e_GT_GT] = ACTIONS(4920), + [anon_sym_o_GT_GT] = ACTIONS(4920), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4920), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4920), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4920), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4920), + [anon_sym_EQ2] = ACTIONS(4924), + [aux_sym_unquoted_token1] = ACTIONS(4922), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4920), }, - [1616] = { - [sym_comment] = STATE(1616), - [ts_builtin_sym_end] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1667), - [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_LPAREN2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [aux_sym__immediate_decimal_token2] = ACTIONS(4894), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token2] = ACTIONS(1667), + [1632] = { + [sym__expr_parenthesized_immediate] = STATE(7574), + [sym_comment] = STATE(1632), + [ts_builtin_sym_end] = ACTIONS(4827), + [sym__newline] = ACTIONS(4827), + [anon_sym_SEMI] = ACTIONS(4827), + [anon_sym_PIPE] = ACTIONS(4827), + [anon_sym_err_GT_PIPE] = ACTIONS(4827), + [anon_sym_out_GT_PIPE] = ACTIONS(4827), + [anon_sym_e_GT_PIPE] = ACTIONS(4827), + [anon_sym_o_GT_PIPE] = ACTIONS(4827), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4827), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4827), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4827), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4827), + [anon_sym_LBRACK] = ACTIONS(4827), + [anon_sym_LPAREN] = ACTIONS(4829), + [anon_sym_DOLLAR] = ACTIONS(4829), + [anon_sym_DASH_DASH] = ACTIONS(4827), + [anon_sym_DASH2] = ACTIONS(4829), + [anon_sym_LBRACE] = ACTIONS(4827), + [anon_sym_DOT_DOT] = ACTIONS(4829), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4827), + [anon_sym_DOT_DOT_LT] = ACTIONS(4827), + [anon_sym_null] = ACTIONS(4827), + [anon_sym_true] = ACTIONS(4827), + [anon_sym_false] = ACTIONS(4827), + [aux_sym__val_number_decimal_token1] = ACTIONS(4829), + [aux_sym__val_number_decimal_token2] = ACTIONS(4827), + [aux_sym__val_number_decimal_token3] = ACTIONS(4827), + [aux_sym__val_number_decimal_token4] = ACTIONS(4827), + [aux_sym__val_number_token1] = ACTIONS(4827), + [aux_sym__val_number_token2] = ACTIONS(4827), + [aux_sym__val_number_token3] = ACTIONS(4827), + [aux_sym__val_number_token4] = ACTIONS(4827), + [aux_sym__val_number_token5] = ACTIONS(4827), + [aux_sym__val_number_token6] = ACTIONS(4827), + [anon_sym_0b] = ACTIONS(4829), + [anon_sym_0o] = ACTIONS(4829), + [anon_sym_0x] = ACTIONS(4829), + [sym_val_date] = ACTIONS(4827), + [anon_sym_DQUOTE] = ACTIONS(4827), + [sym__str_single_quotes] = ACTIONS(4827), + [sym__str_back_ticks] = ACTIONS(4827), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4827), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4827), + [anon_sym_err_GT] = ACTIONS(4829), + [anon_sym_out_GT] = ACTIONS(4829), + [anon_sym_e_GT] = ACTIONS(4829), + [anon_sym_o_GT] = ACTIONS(4829), + [anon_sym_err_PLUSout_GT] = ACTIONS(4829), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4829), + [anon_sym_o_PLUSe_GT] = ACTIONS(4829), + [anon_sym_e_PLUSo_GT] = ACTIONS(4829), + [anon_sym_err_GT_GT] = ACTIONS(4827), + [anon_sym_out_GT_GT] = ACTIONS(4827), + [anon_sym_e_GT_GT] = ACTIONS(4827), + [anon_sym_o_GT_GT] = ACTIONS(4827), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4827), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4827), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4827), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4827), + [aux_sym_unquoted_token1] = ACTIONS(4829), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4827), + }, + [1633] = { + [sym_comment] = STATE(1633), + [ts_builtin_sym_end] = ACTIONS(4819), + [sym__newline] = ACTIONS(4819), + [anon_sym_SEMI] = ACTIONS(4819), + [anon_sym_PIPE] = ACTIONS(4819), + [anon_sym_err_GT_PIPE] = ACTIONS(4819), + [anon_sym_out_GT_PIPE] = ACTIONS(4819), + [anon_sym_e_GT_PIPE] = ACTIONS(4819), + [anon_sym_o_GT_PIPE] = ACTIONS(4819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4819), + [anon_sym_LBRACK] = ACTIONS(4819), + [anon_sym_LPAREN] = ACTIONS(4819), + [anon_sym_DOLLAR] = ACTIONS(4821), + [anon_sym_DASH_DASH] = ACTIONS(4821), + [anon_sym_DASH2] = ACTIONS(4821), + [anon_sym_LBRACE] = ACTIONS(4819), + [anon_sym_DOT_DOT] = ACTIONS(4821), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4819), + [anon_sym_DOT_DOT_LT] = ACTIONS(4819), + [anon_sym_null] = ACTIONS(4821), + [anon_sym_true] = ACTIONS(4821), + [anon_sym_false] = ACTIONS(4821), + [aux_sym__val_number_decimal_token1] = ACTIONS(4821), + [aux_sym__val_number_decimal_token2] = ACTIONS(4821), + [aux_sym__val_number_decimal_token3] = ACTIONS(4819), + [aux_sym__val_number_decimal_token4] = ACTIONS(4819), + [aux_sym__val_number_token1] = ACTIONS(4821), + [aux_sym__val_number_token2] = ACTIONS(4821), + [aux_sym__val_number_token3] = ACTIONS(4821), + [aux_sym__val_number_token4] = ACTIONS(4821), + [aux_sym__val_number_token5] = ACTIONS(4821), + [aux_sym__val_number_token6] = ACTIONS(4821), + [anon_sym_0b] = ACTIONS(4821), + [anon_sym_0o] = ACTIONS(4821), + [anon_sym_0x] = ACTIONS(4821), + [sym_val_date] = ACTIONS(4821), + [anon_sym_DQUOTE] = ACTIONS(4819), + [sym__str_single_quotes] = ACTIONS(4819), + [sym__str_back_ticks] = ACTIONS(4819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4819), + [anon_sym_err_GT] = ACTIONS(4821), + [anon_sym_out_GT] = ACTIONS(4821), + [anon_sym_e_GT] = ACTIONS(4821), + [anon_sym_o_GT] = ACTIONS(4821), + [anon_sym_err_PLUSout_GT] = ACTIONS(4821), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4821), + [anon_sym_o_PLUSe_GT] = ACTIONS(4821), + [anon_sym_e_PLUSo_GT] = ACTIONS(4821), + [anon_sym_err_GT_GT] = ACTIONS(4819), + [anon_sym_out_GT_GT] = ACTIONS(4819), + [anon_sym_e_GT_GT] = ACTIONS(4819), + [anon_sym_o_GT_GT] = ACTIONS(4819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4819), + [anon_sym_EQ2] = ACTIONS(4926), + [sym_short_flag_identifier] = ACTIONS(4928), + [aux_sym_unquoted_token1] = ACTIONS(4821), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4819), + }, + [1634] = { + [sym_comment] = STATE(1634), + [ts_builtin_sym_end] = ACTIONS(966), + [sym__newline] = ACTIONS(966), + [anon_sym_SEMI] = ACTIONS(966), + [anon_sym_PIPE] = ACTIONS(966), + [anon_sym_err_GT_PIPE] = ACTIONS(966), + [anon_sym_out_GT_PIPE] = ACTIONS(966), + [anon_sym_e_GT_PIPE] = ACTIONS(966), + [anon_sym_o_GT_PIPE] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), + [anon_sym_LBRACK] = ACTIONS(966), + [anon_sym_LPAREN] = ACTIONS(966), + [anon_sym_DOLLAR] = ACTIONS(964), + [anon_sym_DASH_DASH] = ACTIONS(966), + [anon_sym_DASH2] = ACTIONS(964), + [anon_sym_LBRACE] = ACTIONS(966), + [anon_sym_DOT_DOT] = ACTIONS(964), + [anon_sym_QMARK2] = ACTIONS(966), + [anon_sym_DOT_DOT_EQ] = ACTIONS(966), + [anon_sym_DOT_DOT_LT] = ACTIONS(966), + [anon_sym_null] = ACTIONS(966), + [anon_sym_true] = ACTIONS(966), + [anon_sym_false] = ACTIONS(966), + [aux_sym__val_number_decimal_token1] = ACTIONS(964), + [aux_sym__val_number_decimal_token2] = ACTIONS(966), + [aux_sym__val_number_decimal_token3] = ACTIONS(966), + [aux_sym__val_number_decimal_token4] = ACTIONS(966), + [aux_sym__val_number_token1] = ACTIONS(966), + [aux_sym__val_number_token2] = ACTIONS(966), + [aux_sym__val_number_token3] = ACTIONS(966), + [aux_sym__val_number_token4] = ACTIONS(966), + [aux_sym__val_number_token5] = ACTIONS(966), + [aux_sym__val_number_token6] = ACTIONS(966), + [anon_sym_0b] = ACTIONS(964), + [anon_sym_0o] = ACTIONS(964), + [anon_sym_0x] = ACTIONS(964), + [sym_val_date] = ACTIONS(966), + [anon_sym_DQUOTE] = ACTIONS(966), + [sym__str_single_quotes] = ACTIONS(966), + [sym__str_back_ticks] = ACTIONS(966), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), + [anon_sym_DOT2] = ACTIONS(964), + [anon_sym_err_GT] = ACTIONS(964), + [anon_sym_out_GT] = ACTIONS(964), + [anon_sym_e_GT] = ACTIONS(964), + [anon_sym_o_GT] = ACTIONS(964), + [anon_sym_err_PLUSout_GT] = ACTIONS(964), + [anon_sym_out_PLUSerr_GT] = ACTIONS(964), + [anon_sym_o_PLUSe_GT] = ACTIONS(964), + [anon_sym_e_PLUSo_GT] = ACTIONS(964), + [anon_sym_err_GT_GT] = ACTIONS(966), + [anon_sym_out_GT_GT] = ACTIONS(966), + [anon_sym_e_GT_GT] = ACTIONS(966), + [anon_sym_o_GT_GT] = ACTIONS(966), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), + [aux_sym_unquoted_token1] = ACTIONS(964), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(966), }, - [1617] = { - [sym_path] = STATE(1747), - [sym_comment] = STATE(1617), - [aux_sym_cell_path_repeat1] = STATE(1617), - [ts_builtin_sym_end] = ACTIONS(943), - [sym__newline] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_err_GT_PIPE] = ACTIONS(943), - [anon_sym_out_GT_PIPE] = ACTIONS(943), - [anon_sym_e_GT_PIPE] = ACTIONS(943), - [anon_sym_o_GT_PIPE] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), - [anon_sym_LBRACK] = ACTIONS(943), - [anon_sym_LPAREN] = ACTIONS(943), - [anon_sym_DOLLAR] = ACTIONS(941), - [anon_sym_DASH_DASH] = ACTIONS(943), - [anon_sym_DASH2] = ACTIONS(941), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_DOT_DOT] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ] = ACTIONS(943), - [anon_sym_DOT_DOT_LT] = ACTIONS(943), - [anon_sym_null] = ACTIONS(943), - [anon_sym_true] = ACTIONS(943), - [anon_sym_false] = ACTIONS(943), - [aux_sym__val_number_decimal_token1] = ACTIONS(941), - [aux_sym__val_number_decimal_token2] = ACTIONS(943), - [aux_sym__val_number_decimal_token3] = ACTIONS(943), - [aux_sym__val_number_decimal_token4] = ACTIONS(943), - [aux_sym__val_number_token1] = ACTIONS(943), - [aux_sym__val_number_token2] = ACTIONS(943), - [aux_sym__val_number_token3] = ACTIONS(943), - [aux_sym__val_number_token4] = ACTIONS(943), - [aux_sym__val_number_token5] = ACTIONS(943), - [aux_sym__val_number_token6] = ACTIONS(943), - [anon_sym_0b] = ACTIONS(941), - [anon_sym_0o] = ACTIONS(941), - [anon_sym_0x] = ACTIONS(941), - [sym_val_date] = ACTIONS(943), - [anon_sym_DQUOTE] = ACTIONS(943), - [sym__str_single_quotes] = ACTIONS(943), - [sym__str_back_ticks] = ACTIONS(943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4896), + [1635] = { + [sym_comment] = STATE(1635), + [sym__newline] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_err_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_GT_PIPE] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2230), + [anon_sym_RPAREN] = ACTIONS(2230), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_RBRACE] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2226), + [anon_sym_DOT_DOT_LT] = ACTIONS(2226), + [anon_sym_null] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [aux_sym__val_number_decimal_token2] = ACTIONS(2226), + [aux_sym__val_number_decimal_token3] = ACTIONS(2226), + [aux_sym__val_number_decimal_token4] = ACTIONS(2226), + [aux_sym__val_number_token1] = ACTIONS(2226), + [aux_sym__val_number_token2] = ACTIONS(2226), + [aux_sym__val_number_token3] = ACTIONS(2226), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2226), + [anon_sym_0o] = ACTIONS(2226), + [anon_sym_0x] = ACTIONS(2226), + [sym_val_date] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [aux_sym_unquoted_token4] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2230), + }, + [1636] = { + [sym_cmd_identifier] = STATE(3982), + [sym__command_name] = STATE(6545), + [sym_scope_pattern] = STATE(6109), + [sym_wild_card] = STATE(6547), + [sym_command_list] = STATE(6548), + [sym__val_number_decimal] = STATE(3561), + [sym_val_string] = STATE(3955), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_comment] = STATE(1636), + [aux_sym_cmd_identifier_token1] = ACTIONS(4930), + [aux_sym_cmd_identifier_token2] = ACTIONS(4932), + [aux_sym_cmd_identifier_token3] = ACTIONS(4932), + [aux_sym_cmd_identifier_token4] = ACTIONS(4932), + [aux_sym_cmd_identifier_token5] = ACTIONS(4932), + [aux_sym_cmd_identifier_token6] = ACTIONS(4932), + [aux_sym_cmd_identifier_token7] = ACTIONS(4932), + [aux_sym_cmd_identifier_token8] = ACTIONS(4932), + [aux_sym_cmd_identifier_token9] = ACTIONS(4930), + [aux_sym_cmd_identifier_token10] = ACTIONS(4932), + [aux_sym_cmd_identifier_token11] = ACTIONS(4932), + [aux_sym_cmd_identifier_token12] = ACTIONS(4932), + [aux_sym_cmd_identifier_token13] = ACTIONS(4930), + [aux_sym_cmd_identifier_token14] = ACTIONS(4932), + [aux_sym_cmd_identifier_token15] = ACTIONS(4930), + [aux_sym_cmd_identifier_token16] = ACTIONS(4932), + [aux_sym_cmd_identifier_token17] = ACTIONS(4932), + [aux_sym_cmd_identifier_token18] = ACTIONS(4932), + [aux_sym_cmd_identifier_token19] = ACTIONS(4932), + [aux_sym_cmd_identifier_token20] = ACTIONS(4932), + [aux_sym_cmd_identifier_token21] = ACTIONS(4932), + [aux_sym_cmd_identifier_token22] = ACTIONS(4932), + [aux_sym_cmd_identifier_token23] = ACTIONS(4932), + [aux_sym_cmd_identifier_token24] = ACTIONS(4932), + [aux_sym_cmd_identifier_token25] = ACTIONS(4932), + [aux_sym_cmd_identifier_token26] = ACTIONS(4932), + [aux_sym_cmd_identifier_token27] = ACTIONS(4932), + [aux_sym_cmd_identifier_token28] = ACTIONS(4932), + [aux_sym_cmd_identifier_token29] = ACTIONS(4932), + [aux_sym_cmd_identifier_token30] = ACTIONS(4932), + [aux_sym_cmd_identifier_token31] = ACTIONS(4932), + [aux_sym_cmd_identifier_token32] = ACTIONS(4932), + [aux_sym_cmd_identifier_token33] = ACTIONS(4932), + [aux_sym_cmd_identifier_token34] = ACTIONS(4930), + [aux_sym_cmd_identifier_token35] = ACTIONS(4932), + [aux_sym_cmd_identifier_token36] = ACTIONS(4932), + [aux_sym_cmd_identifier_token37] = ACTIONS(4932), + [aux_sym_cmd_identifier_token38] = ACTIONS(4930), + [aux_sym_cmd_identifier_token39] = ACTIONS(4932), + [aux_sym_cmd_identifier_token40] = ACTIONS(4932), + [sym__newline] = ACTIONS(4934), + [anon_sym_SEMI] = ACTIONS(4934), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4934), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_STAR2] = ACTIONS(4938), + [aux_sym__val_number_decimal_token1] = ACTIONS(4940), + [aux_sym__val_number_decimal_token2] = ACTIONS(4940), + [aux_sym__val_number_decimal_token3] = ACTIONS(4942), + [aux_sym__val_number_decimal_token4] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), + }, + [1637] = { + [sym_comment] = STATE(1637), + [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_LBRACK] = ACTIONS(2196), + [anon_sym_LPAREN] = ACTIONS(2196), + [anon_sym_RPAREN] = ACTIONS(2196), + [anon_sym_DOLLAR] = ACTIONS(2192), + [anon_sym_DASH_DASH] = ACTIONS(2192), + [anon_sym_DASH2] = ACTIONS(2192), + [anon_sym_LBRACE] = ACTIONS(2196), + [anon_sym_RBRACE] = ACTIONS(2196), + [anon_sym_DOT_DOT] = ACTIONS(2192), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2192), + [anon_sym_DOT_DOT_LT] = ACTIONS(2192), + [anon_sym_null] = ACTIONS(2192), + [anon_sym_true] = ACTIONS(2192), + [anon_sym_false] = ACTIONS(2192), + [aux_sym__val_number_decimal_token1] = ACTIONS(2192), + [aux_sym__val_number_decimal_token2] = ACTIONS(2192), + [aux_sym__val_number_decimal_token3] = ACTIONS(2192), + [aux_sym__val_number_decimal_token4] = ACTIONS(2192), + [aux_sym__val_number_token1] = ACTIONS(2192), + [aux_sym__val_number_token2] = ACTIONS(2192), + [aux_sym__val_number_token3] = ACTIONS(2192), + [aux_sym__val_number_token4] = ACTIONS(2192), + [aux_sym__val_number_token5] = ACTIONS(2192), + [aux_sym__val_number_token6] = ACTIONS(2192), + [anon_sym_0b] = ACTIONS(2192), + [anon_sym_0o] = ACTIONS(2192), + [anon_sym_0x] = ACTIONS(2192), + [sym_val_date] = ACTIONS(2192), + [anon_sym_DQUOTE] = ACTIONS(2196), + [sym__str_single_quotes] = ACTIONS(2196), + [sym__str_back_ticks] = ACTIONS(2196), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2196), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2196), + [anon_sym_err_GT] = ACTIONS(2192), + [anon_sym_out_GT] = ACTIONS(2192), + [anon_sym_e_GT] = ACTIONS(2192), + [anon_sym_o_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT] = ACTIONS(2192), + [anon_sym_err_GT_GT] = ACTIONS(2192), + [anon_sym_out_GT_GT] = ACTIONS(2192), + [anon_sym_e_GT_GT] = ACTIONS(2192), + [anon_sym_o_GT_GT] = ACTIONS(2192), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), + [aux_sym_unquoted_token1] = ACTIONS(2192), + [aux_sym_unquoted_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2196), + }, + [1638] = { + [sym_comment] = STATE(1638), + [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_LBRACK] = ACTIONS(2202), + [anon_sym_LPAREN] = ACTIONS(2202), + [anon_sym_RPAREN] = ACTIONS(2202), + [anon_sym_DOLLAR] = ACTIONS(2200), + [anon_sym_DASH_DASH] = ACTIONS(2200), + [anon_sym_DASH2] = ACTIONS(2200), + [anon_sym_LBRACE] = ACTIONS(2202), + [anon_sym_RBRACE] = ACTIONS(2202), + [anon_sym_DOT_DOT] = ACTIONS(2200), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2200), + [anon_sym_DOT_DOT_LT] = ACTIONS(2200), + [anon_sym_null] = ACTIONS(2200), + [anon_sym_true] = ACTIONS(2200), + [anon_sym_false] = ACTIONS(2200), + [aux_sym__val_number_decimal_token1] = ACTIONS(2200), + [aux_sym__val_number_decimal_token2] = ACTIONS(2200), + [aux_sym__val_number_decimal_token3] = ACTIONS(2200), + [aux_sym__val_number_decimal_token4] = ACTIONS(2200), + [aux_sym__val_number_token1] = ACTIONS(2200), + [aux_sym__val_number_token2] = ACTIONS(2200), + [aux_sym__val_number_token3] = ACTIONS(2200), + [aux_sym__val_number_token4] = ACTIONS(2200), + [aux_sym__val_number_token5] = ACTIONS(2200), + [aux_sym__val_number_token6] = ACTIONS(2200), + [anon_sym_0b] = ACTIONS(2200), + [anon_sym_0o] = ACTIONS(2200), + [anon_sym_0x] = ACTIONS(2200), + [sym_val_date] = ACTIONS(2200), + [anon_sym_DQUOTE] = ACTIONS(2202), + [sym__str_single_quotes] = ACTIONS(2202), + [sym__str_back_ticks] = ACTIONS(2202), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2202), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2202), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(2200), + [aux_sym_unquoted_token4] = ACTIONS(2198), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2202), + }, + [1639] = { + [sym_path] = STATE(1811), + [sym_comment] = STATE(1639), + [aux_sym_cell_path_repeat1] = STATE(1639), + [ts_builtin_sym_end] = ACTIONS(943), + [sym__newline] = ACTIONS(943), + [anon_sym_SEMI] = ACTIONS(943), + [anon_sym_PIPE] = ACTIONS(943), + [anon_sym_err_GT_PIPE] = ACTIONS(943), + [anon_sym_out_GT_PIPE] = ACTIONS(943), + [anon_sym_e_GT_PIPE] = ACTIONS(943), + [anon_sym_o_GT_PIPE] = ACTIONS(943), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), + [anon_sym_GT2] = ACTIONS(941), + [anon_sym_DASH2] = ACTIONS(943), + [anon_sym_in2] = ACTIONS(943), + [anon_sym_LBRACE] = ACTIONS(943), + [anon_sym_STAR2] = ACTIONS(941), + [anon_sym_and2] = ACTIONS(943), + [anon_sym_xor2] = ACTIONS(943), + [anon_sym_or2] = ACTIONS(943), + [anon_sym_not_DASHin2] = ACTIONS(943), + [anon_sym_starts_DASHwith2] = ACTIONS(943), + [anon_sym_ends_DASHwith2] = ACTIONS(943), + [anon_sym_EQ_EQ2] = ACTIONS(943), + [anon_sym_BANG_EQ2] = ACTIONS(943), + [anon_sym_LT2] = ACTIONS(941), + [anon_sym_LT_EQ2] = ACTIONS(943), + [anon_sym_GT_EQ2] = ACTIONS(943), + [anon_sym_EQ_TILDE2] = ACTIONS(943), + [anon_sym_BANG_TILDE2] = ACTIONS(943), + [anon_sym_STAR_STAR2] = ACTIONS(943), + [anon_sym_PLUS_PLUS2] = ACTIONS(943), + [anon_sym_SLASH2] = ACTIONS(941), + [anon_sym_mod2] = ACTIONS(943), + [anon_sym_SLASH_SLASH2] = ACTIONS(943), + [anon_sym_PLUS2] = ACTIONS(941), + [anon_sym_bit_DASHshl2] = ACTIONS(943), + [anon_sym_bit_DASHshr2] = ACTIONS(943), + [anon_sym_bit_DASHand2] = ACTIONS(943), + [anon_sym_bit_DASHxor2] = ACTIONS(943), + [anon_sym_bit_DASHor2] = ACTIONS(943), + [anon_sym_DOT_DOT2] = ACTIONS(941), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), + [anon_sym_DOT_DOT_LT2] = ACTIONS(943), + [anon_sym_DOT2] = ACTIONS(4946), [anon_sym_err_GT] = ACTIONS(941), [anon_sym_out_GT] = ACTIONS(941), [anon_sym_e_GT] = ACTIONS(941), @@ -228710,962 +230174,948 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), - [aux_sym_unquoted_token1] = ACTIONS(941), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(943), }, - [1618] = { - [sym_cell_path] = STATE(2051), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1618), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1951), - [anon_sym_SEMI] = ACTIONS(1951), - [anon_sym_PIPE] = ACTIONS(1951), - [anon_sym_err_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_GT_PIPE] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1951), - [anon_sym_RPAREN] = ACTIONS(1951), - [anon_sym_GT2] = ACTIONS(1949), - [anon_sym_DASH2] = ACTIONS(1951), - [anon_sym_in2] = ACTIONS(1951), - [anon_sym_if] = ACTIONS(1951), - [anon_sym_LBRACE] = ACTIONS(1951), - [anon_sym_RBRACE] = ACTIONS(1951), - [anon_sym_EQ_GT] = ACTIONS(1951), - [anon_sym_STAR2] = ACTIONS(1949), - [anon_sym_and2] = ACTIONS(1951), - [anon_sym_xor2] = ACTIONS(1951), - [anon_sym_or2] = ACTIONS(1951), - [anon_sym_not_DASHin2] = ACTIONS(1951), - [anon_sym_starts_DASHwith2] = ACTIONS(1951), - [anon_sym_ends_DASHwith2] = ACTIONS(1951), - [anon_sym_EQ_EQ2] = ACTIONS(1951), - [anon_sym_BANG_EQ2] = ACTIONS(1951), - [anon_sym_LT2] = ACTIONS(1949), - [anon_sym_LT_EQ2] = ACTIONS(1951), - [anon_sym_GT_EQ2] = ACTIONS(1951), - [anon_sym_EQ_TILDE2] = ACTIONS(1951), - [anon_sym_BANG_TILDE2] = ACTIONS(1951), - [anon_sym_STAR_STAR2] = ACTIONS(1951), - [anon_sym_PLUS_PLUS2] = ACTIONS(1951), - [anon_sym_SLASH2] = ACTIONS(1949), - [anon_sym_mod2] = ACTIONS(1951), - [anon_sym_SLASH_SLASH2] = ACTIONS(1951), - [anon_sym_PLUS2] = ACTIONS(1949), - [anon_sym_bit_DASHshl2] = ACTIONS(1951), - [anon_sym_bit_DASHshr2] = ACTIONS(1951), - [anon_sym_bit_DASHand2] = ACTIONS(1951), - [anon_sym_bit_DASHxor2] = ACTIONS(1951), - [anon_sym_bit_DASHor2] = ACTIONS(1951), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1949), - [anon_sym_out_GT] = ACTIONS(1949), - [anon_sym_e_GT] = ACTIONS(1949), - [anon_sym_o_GT] = ACTIONS(1949), - [anon_sym_err_PLUSout_GT] = ACTIONS(1949), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1949), - [anon_sym_o_PLUSe_GT] = ACTIONS(1949), - [anon_sym_e_PLUSo_GT] = ACTIONS(1949), - [anon_sym_err_GT_GT] = ACTIONS(1951), - [anon_sym_out_GT_GT] = ACTIONS(1951), - [anon_sym_e_GT_GT] = ACTIONS(1951), - [anon_sym_o_GT_GT] = ACTIONS(1951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1951), + [1640] = { + [sym_comment] = STATE(1640), + [sym__newline] = ACTIONS(2037), + [anon_sym_SEMI] = ACTIONS(2037), + [anon_sym_PIPE] = ACTIONS(2037), + [anon_sym_err_GT_PIPE] = ACTIONS(2037), + [anon_sym_out_GT_PIPE] = ACTIONS(2037), + [anon_sym_e_GT_PIPE] = ACTIONS(2037), + [anon_sym_o_GT_PIPE] = ACTIONS(2037), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2037), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2037), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2037), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2037), + [anon_sym_RPAREN] = ACTIONS(2037), + [anon_sym_GT2] = ACTIONS(2035), + [anon_sym_DASH2] = ACTIONS(2037), + [anon_sym_in2] = ACTIONS(2037), + [anon_sym_if] = ACTIONS(2037), + [anon_sym_LBRACE] = ACTIONS(2037), + [anon_sym_RBRACE] = ACTIONS(2037), + [anon_sym_EQ_GT] = ACTIONS(2037), + [anon_sym_STAR2] = ACTIONS(2035), + [anon_sym_and2] = ACTIONS(2037), + [anon_sym_xor2] = ACTIONS(2037), + [anon_sym_or2] = ACTIONS(2037), + [anon_sym_not_DASHin2] = ACTIONS(2037), + [anon_sym_starts_DASHwith2] = ACTIONS(2037), + [anon_sym_ends_DASHwith2] = ACTIONS(2037), + [anon_sym_EQ_EQ2] = ACTIONS(2037), + [anon_sym_BANG_EQ2] = ACTIONS(2037), + [anon_sym_LT2] = ACTIONS(2035), + [anon_sym_LT_EQ2] = ACTIONS(2037), + [anon_sym_GT_EQ2] = ACTIONS(2037), + [anon_sym_EQ_TILDE2] = ACTIONS(2037), + [anon_sym_BANG_TILDE2] = ACTIONS(2037), + [anon_sym_STAR_STAR2] = ACTIONS(2037), + [anon_sym_PLUS_PLUS2] = ACTIONS(2037), + [anon_sym_SLASH2] = ACTIONS(2035), + [anon_sym_mod2] = ACTIONS(2037), + [anon_sym_SLASH_SLASH2] = ACTIONS(2037), + [anon_sym_PLUS2] = ACTIONS(2035), + [anon_sym_bit_DASHshl2] = ACTIONS(2037), + [anon_sym_bit_DASHshr2] = ACTIONS(2037), + [anon_sym_bit_DASHand2] = ACTIONS(2037), + [anon_sym_bit_DASHxor2] = ACTIONS(2037), + [anon_sym_bit_DASHor2] = ACTIONS(2037), + [anon_sym_DOT_DOT2] = ACTIONS(2035), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2037), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2037), + [anon_sym_err_GT] = ACTIONS(2035), + [anon_sym_out_GT] = ACTIONS(2035), + [anon_sym_e_GT] = ACTIONS(2035), + [anon_sym_o_GT] = ACTIONS(2035), + [anon_sym_err_PLUSout_GT] = ACTIONS(2035), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2035), + [anon_sym_o_PLUSe_GT] = ACTIONS(2035), + [anon_sym_e_PLUSo_GT] = ACTIONS(2035), + [anon_sym_err_GT_GT] = ACTIONS(2037), + [anon_sym_out_GT_GT] = ACTIONS(2037), + [anon_sym_e_GT_GT] = ACTIONS(2037), + [anon_sym_o_GT_GT] = ACTIONS(2037), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2037), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2037), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2037), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2037), [anon_sym_POUND] = ACTIONS(251), }, - [1619] = { - [sym_cell_path] = STATE(1952), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1619), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1959), - [anon_sym_SEMI] = ACTIONS(1959), - [anon_sym_PIPE] = ACTIONS(1959), - [anon_sym_err_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_GT_PIPE] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1959), - [anon_sym_RPAREN] = ACTIONS(1959), - [anon_sym_GT2] = ACTIONS(1957), - [anon_sym_DASH2] = ACTIONS(1959), - [anon_sym_in2] = ACTIONS(1959), - [anon_sym_if] = ACTIONS(1959), - [anon_sym_LBRACE] = ACTIONS(1959), - [anon_sym_RBRACE] = ACTIONS(1959), - [anon_sym_EQ_GT] = ACTIONS(1959), - [anon_sym_STAR2] = ACTIONS(1957), - [anon_sym_and2] = ACTIONS(1959), - [anon_sym_xor2] = ACTIONS(1959), - [anon_sym_or2] = ACTIONS(1959), - [anon_sym_not_DASHin2] = ACTIONS(1959), - [anon_sym_starts_DASHwith2] = ACTIONS(1959), - [anon_sym_ends_DASHwith2] = ACTIONS(1959), - [anon_sym_EQ_EQ2] = ACTIONS(1959), - [anon_sym_BANG_EQ2] = ACTIONS(1959), - [anon_sym_LT2] = ACTIONS(1957), - [anon_sym_LT_EQ2] = ACTIONS(1959), - [anon_sym_GT_EQ2] = ACTIONS(1959), - [anon_sym_EQ_TILDE2] = ACTIONS(1959), - [anon_sym_BANG_TILDE2] = ACTIONS(1959), - [anon_sym_STAR_STAR2] = ACTIONS(1959), - [anon_sym_PLUS_PLUS2] = ACTIONS(1959), - [anon_sym_SLASH2] = ACTIONS(1957), - [anon_sym_mod2] = ACTIONS(1959), - [anon_sym_SLASH_SLASH2] = ACTIONS(1959), - [anon_sym_PLUS2] = ACTIONS(1957), - [anon_sym_bit_DASHshl2] = ACTIONS(1959), - [anon_sym_bit_DASHshr2] = ACTIONS(1959), - [anon_sym_bit_DASHand2] = ACTIONS(1959), - [anon_sym_bit_DASHxor2] = ACTIONS(1959), - [anon_sym_bit_DASHor2] = ACTIONS(1959), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1957), - [anon_sym_out_GT] = ACTIONS(1957), - [anon_sym_e_GT] = ACTIONS(1957), - [anon_sym_o_GT] = ACTIONS(1957), - [anon_sym_err_PLUSout_GT] = ACTIONS(1957), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1957), - [anon_sym_o_PLUSe_GT] = ACTIONS(1957), - [anon_sym_e_PLUSo_GT] = ACTIONS(1957), - [anon_sym_err_GT_GT] = ACTIONS(1959), - [anon_sym_out_GT_GT] = ACTIONS(1959), - [anon_sym_e_GT_GT] = ACTIONS(1959), - [anon_sym_o_GT_GT] = ACTIONS(1959), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1959), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1959), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1959), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1959), + [1641] = { + [sym_comment] = STATE(1641), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_GT2] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1751), + [anon_sym_in2] = ACTIONS(1751), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_STAR2] = ACTIONS(1749), + [anon_sym_and2] = ACTIONS(1751), + [anon_sym_xor2] = ACTIONS(1751), + [anon_sym_or2] = ACTIONS(1751), + [anon_sym_not_DASHin2] = ACTIONS(1751), + [anon_sym_starts_DASHwith2] = ACTIONS(1751), + [anon_sym_ends_DASHwith2] = ACTIONS(1751), + [anon_sym_EQ_EQ2] = ACTIONS(1751), + [anon_sym_BANG_EQ2] = ACTIONS(1751), + [anon_sym_LT2] = ACTIONS(1749), + [anon_sym_LT_EQ2] = ACTIONS(1751), + [anon_sym_GT_EQ2] = ACTIONS(1751), + [anon_sym_EQ_TILDE2] = ACTIONS(1751), + [anon_sym_BANG_TILDE2] = ACTIONS(1751), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_STAR_STAR2] = ACTIONS(1751), + [anon_sym_PLUS_PLUS2] = ACTIONS(1751), + [anon_sym_SLASH2] = ACTIONS(1749), + [anon_sym_mod2] = ACTIONS(1751), + [anon_sym_SLASH_SLASH2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_bit_DASHshl2] = ACTIONS(1751), + [anon_sym_bit_DASHshr2] = ACTIONS(1751), + [anon_sym_bit_DASHand2] = ACTIONS(1751), + [anon_sym_bit_DASHxor2] = ACTIONS(1751), + [anon_sym_bit_DASHor2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token2] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(251), }, - [1620] = { - [sym__expr_parenthesized_immediate] = STATE(7221), - [sym_comment] = STATE(1620), - [sym__newline] = ACTIONS(4899), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_err_GT_PIPE] = ACTIONS(4899), - [anon_sym_out_GT_PIPE] = ACTIONS(4899), - [anon_sym_e_GT_PIPE] = ACTIONS(4899), - [anon_sym_o_GT_PIPE] = ACTIONS(4899), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4901), - [anon_sym_RPAREN] = ACTIONS(4899), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_DASH_DASH] = ACTIONS(4899), - [anon_sym_DASH2] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_RBRACE] = ACTIONS(4899), - [anon_sym_DOT_DOT] = ACTIONS(4901), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4899), - [anon_sym_DOT_DOT_LT] = ACTIONS(4899), - [anon_sym_null] = ACTIONS(4899), - [anon_sym_true] = ACTIONS(4899), - [anon_sym_false] = ACTIONS(4899), - [aux_sym__val_number_decimal_token1] = ACTIONS(4901), - [aux_sym__val_number_decimal_token2] = ACTIONS(4899), - [aux_sym__val_number_decimal_token3] = ACTIONS(4899), - [aux_sym__val_number_decimal_token4] = ACTIONS(4899), - [aux_sym__val_number_token1] = ACTIONS(4899), - [aux_sym__val_number_token2] = ACTIONS(4899), - [aux_sym__val_number_token3] = ACTIONS(4899), - [aux_sym__val_number_token4] = ACTIONS(4899), - [aux_sym__val_number_token5] = ACTIONS(4899), - [aux_sym__val_number_token6] = ACTIONS(4899), - [anon_sym_0b] = ACTIONS(4901), - [anon_sym_0o] = ACTIONS(4901), - [anon_sym_0x] = ACTIONS(4901), - [sym_val_date] = ACTIONS(4899), - [anon_sym_DQUOTE] = ACTIONS(4899), - [sym__str_single_quotes] = ACTIONS(4899), - [sym__str_back_ticks] = ACTIONS(4899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4899), - [anon_sym_err_GT] = ACTIONS(4901), - [anon_sym_out_GT] = ACTIONS(4901), - [anon_sym_e_GT] = ACTIONS(4901), - [anon_sym_o_GT] = ACTIONS(4901), - [anon_sym_err_PLUSout_GT] = ACTIONS(4901), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), - [anon_sym_o_PLUSe_GT] = ACTIONS(4901), - [anon_sym_e_PLUSo_GT] = ACTIONS(4901), - [anon_sym_err_GT_GT] = ACTIONS(4899), - [anon_sym_out_GT_GT] = ACTIONS(4899), - [anon_sym_e_GT_GT] = ACTIONS(4899), - [anon_sym_o_GT_GT] = ACTIONS(4899), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), - [aux_sym_unquoted_token1] = ACTIONS(4901), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4899), - }, - [1621] = { - [sym_comment] = STATE(1621), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(4903), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1622] = { - [sym__expr_parenthesized_immediate] = STATE(7290), - [sym_comment] = STATE(1622), - [ts_builtin_sym_end] = ACTIONS(1693), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1693), - [anon_sym_in2] = ACTIONS(1693), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_and2] = ACTIONS(1693), - [anon_sym_xor2] = ACTIONS(1693), - [anon_sym_or2] = ACTIONS(1693), - [anon_sym_not_DASHin2] = ACTIONS(1693), - [anon_sym_starts_DASHwith2] = ACTIONS(1693), - [anon_sym_ends_DASHwith2] = ACTIONS(1693), - [anon_sym_EQ_EQ2] = ACTIONS(1693), - [anon_sym_BANG_EQ2] = ACTIONS(1693), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1693), - [anon_sym_GT_EQ2] = ACTIONS(1693), - [anon_sym_EQ_TILDE2] = ACTIONS(1693), - [anon_sym_BANG_TILDE2] = ACTIONS(1693), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_STAR_STAR2] = ACTIONS(1693), - [anon_sym_PLUS_PLUS2] = ACTIONS(1693), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1693), - [anon_sym_SLASH_SLASH2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1693), - [anon_sym_bit_DASHshr2] = ACTIONS(1693), - [anon_sym_bit_DASHand2] = ACTIONS(1693), - [anon_sym_bit_DASHxor2] = ACTIONS(1693), - [anon_sym_bit_DASHor2] = ACTIONS(1693), - [anon_sym_DOT_DOT2] = ACTIONS(4905), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(4907), - [anon_sym_DOT_DOT_LT2] = ACTIONS(4907), - [sym_filesize_unit] = ACTIONS(4909), - [sym_duration_unit] = ACTIONS(4911), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token2] = ACTIONS(4913), + [1642] = { + [sym_comment] = STATE(1642), + [ts_builtin_sym_end] = ACTIONS(970), + [sym__newline] = ACTIONS(970), + [anon_sym_SEMI] = ACTIONS(970), + [anon_sym_PIPE] = ACTIONS(970), + [anon_sym_err_GT_PIPE] = ACTIONS(970), + [anon_sym_out_GT_PIPE] = ACTIONS(970), + [anon_sym_e_GT_PIPE] = ACTIONS(970), + [anon_sym_o_GT_PIPE] = ACTIONS(970), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), + [anon_sym_LBRACK] = ACTIONS(970), + [anon_sym_LPAREN] = ACTIONS(970), + [anon_sym_DOLLAR] = ACTIONS(968), + [anon_sym_DASH_DASH] = ACTIONS(970), + [anon_sym_DASH2] = ACTIONS(968), + [anon_sym_LBRACE] = ACTIONS(970), + [anon_sym_DOT_DOT] = ACTIONS(968), + [anon_sym_QMARK2] = ACTIONS(970), + [anon_sym_DOT_DOT_EQ] = ACTIONS(970), + [anon_sym_DOT_DOT_LT] = ACTIONS(970), + [anon_sym_null] = ACTIONS(970), + [anon_sym_true] = ACTIONS(970), + [anon_sym_false] = ACTIONS(970), + [aux_sym__val_number_decimal_token1] = ACTIONS(968), + [aux_sym__val_number_decimal_token2] = ACTIONS(970), + [aux_sym__val_number_decimal_token3] = ACTIONS(970), + [aux_sym__val_number_decimal_token4] = ACTIONS(970), + [aux_sym__val_number_token1] = ACTIONS(970), + [aux_sym__val_number_token2] = ACTIONS(970), + [aux_sym__val_number_token3] = ACTIONS(970), + [aux_sym__val_number_token4] = ACTIONS(970), + [aux_sym__val_number_token5] = ACTIONS(970), + [aux_sym__val_number_token6] = ACTIONS(970), + [anon_sym_0b] = ACTIONS(968), + [anon_sym_0o] = ACTIONS(968), + [anon_sym_0x] = ACTIONS(968), + [sym_val_date] = ACTIONS(970), + [anon_sym_DQUOTE] = ACTIONS(970), + [sym__str_single_quotes] = ACTIONS(970), + [sym__str_back_ticks] = ACTIONS(970), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), + [anon_sym_DOT2] = ACTIONS(968), + [anon_sym_err_GT] = ACTIONS(968), + [anon_sym_out_GT] = ACTIONS(968), + [anon_sym_e_GT] = ACTIONS(968), + [anon_sym_o_GT] = ACTIONS(968), + [anon_sym_err_PLUSout_GT] = ACTIONS(968), + [anon_sym_out_PLUSerr_GT] = ACTIONS(968), + [anon_sym_o_PLUSe_GT] = ACTIONS(968), + [anon_sym_e_PLUSo_GT] = ACTIONS(968), + [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(968), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(970), }, - [1623] = { - [sym_comment] = STATE(1623), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_RPAREN] = ACTIONS(1735), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_in2] = ACTIONS(1735), - [anon_sym_RBRACE] = ACTIONS(1735), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1735), - [anon_sym_xor2] = ACTIONS(1735), - [anon_sym_or2] = ACTIONS(1735), - [anon_sym_not_DASHin2] = ACTIONS(1735), - [anon_sym_starts_DASHwith2] = ACTIONS(1735), - [anon_sym_ends_DASHwith2] = ACTIONS(1735), - [anon_sym_EQ_EQ2] = ACTIONS(1735), - [anon_sym_BANG_EQ2] = ACTIONS(1735), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1735), - [anon_sym_GT_EQ2] = ACTIONS(1735), - [anon_sym_EQ_TILDE2] = ACTIONS(1735), - [anon_sym_BANG_TILDE2] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_STAR_STAR2] = ACTIONS(1735), - [anon_sym_PLUS_PLUS2] = ACTIONS(1735), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1735), - [anon_sym_SLASH_SLASH2] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1735), - [anon_sym_bit_DASHshr2] = ACTIONS(1735), - [anon_sym_bit_DASHand2] = ACTIONS(1735), - [anon_sym_bit_DASHxor2] = ACTIONS(1735), - [anon_sym_bit_DASHor2] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token2] = ACTIONS(1733), + [1643] = { + [sym_comment] = STATE(1643), + [ts_builtin_sym_end] = ACTIONS(1607), + [sym__newline] = ACTIONS(1607), + [anon_sym_SEMI] = ACTIONS(1607), + [anon_sym_PIPE] = ACTIONS(1607), + [anon_sym_err_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_GT_PIPE] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1607), + [anon_sym_GT2] = ACTIONS(1605), + [anon_sym_DASH2] = ACTIONS(1607), + [anon_sym_in2] = ACTIONS(1607), + [anon_sym_STAR2] = ACTIONS(1605), + [anon_sym_and2] = ACTIONS(1607), + [anon_sym_xor2] = ACTIONS(1607), + [anon_sym_or2] = ACTIONS(1607), + [anon_sym_not_DASHin2] = ACTIONS(1607), + [anon_sym_starts_DASHwith2] = ACTIONS(1607), + [anon_sym_ends_DASHwith2] = ACTIONS(1607), + [anon_sym_EQ_EQ2] = ACTIONS(1607), + [anon_sym_BANG_EQ2] = ACTIONS(1607), + [anon_sym_LT2] = ACTIONS(1605), + [anon_sym_LT_EQ2] = ACTIONS(1607), + [anon_sym_GT_EQ2] = ACTIONS(1607), + [anon_sym_EQ_TILDE2] = ACTIONS(1607), + [anon_sym_BANG_TILDE2] = ACTIONS(1607), + [anon_sym_LPAREN2] = ACTIONS(1607), + [anon_sym_STAR_STAR2] = ACTIONS(1607), + [anon_sym_PLUS_PLUS2] = ACTIONS(1607), + [anon_sym_SLASH2] = ACTIONS(1605), + [anon_sym_mod2] = ACTIONS(1607), + [anon_sym_SLASH_SLASH2] = ACTIONS(1607), + [anon_sym_PLUS2] = ACTIONS(1605), + [anon_sym_bit_DASHshl2] = ACTIONS(1607), + [anon_sym_bit_DASHshr2] = ACTIONS(1607), + [anon_sym_bit_DASHand2] = ACTIONS(1607), + [anon_sym_bit_DASHxor2] = ACTIONS(1607), + [anon_sym_bit_DASHor2] = ACTIONS(1607), + [anon_sym_DOT_DOT2] = ACTIONS(1605), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1607), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1607), + [sym_filesize_unit] = ACTIONS(1605), + [sym_duration_unit] = ACTIONS(1607), + [anon_sym_err_GT] = ACTIONS(1605), + [anon_sym_out_GT] = ACTIONS(1605), + [anon_sym_e_GT] = ACTIONS(1605), + [anon_sym_o_GT] = ACTIONS(1605), + [anon_sym_err_PLUSout_GT] = ACTIONS(1605), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1605), + [anon_sym_o_PLUSe_GT] = ACTIONS(1605), + [anon_sym_e_PLUSo_GT] = ACTIONS(1605), + [anon_sym_err_GT_GT] = ACTIONS(1607), + [anon_sym_out_GT_GT] = ACTIONS(1607), + [anon_sym_e_GT_GT] = ACTIONS(1607), + [anon_sym_o_GT_GT] = ACTIONS(1607), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1607), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1607), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1607), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1607), + [aux_sym_unquoted_token2] = ACTIONS(1605), [anon_sym_POUND] = ACTIONS(251), }, - [1624] = { - [sym_cell_path] = STATE(2053), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1624), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1963), - [anon_sym_SEMI] = ACTIONS(1963), - [anon_sym_PIPE] = ACTIONS(1963), - [anon_sym_err_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_GT_PIPE] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1963), - [anon_sym_RPAREN] = ACTIONS(1963), - [anon_sym_GT2] = ACTIONS(1961), - [anon_sym_DASH2] = ACTIONS(1963), - [anon_sym_in2] = ACTIONS(1963), - [anon_sym_if] = ACTIONS(1963), - [anon_sym_LBRACE] = ACTIONS(1963), - [anon_sym_RBRACE] = ACTIONS(1963), - [anon_sym_EQ_GT] = ACTIONS(1963), - [anon_sym_STAR2] = ACTIONS(1961), - [anon_sym_and2] = ACTIONS(1963), - [anon_sym_xor2] = ACTIONS(1963), - [anon_sym_or2] = ACTIONS(1963), - [anon_sym_not_DASHin2] = ACTIONS(1963), - [anon_sym_starts_DASHwith2] = ACTIONS(1963), - [anon_sym_ends_DASHwith2] = ACTIONS(1963), - [anon_sym_EQ_EQ2] = ACTIONS(1963), - [anon_sym_BANG_EQ2] = ACTIONS(1963), - [anon_sym_LT2] = ACTIONS(1961), - [anon_sym_LT_EQ2] = ACTIONS(1963), - [anon_sym_GT_EQ2] = ACTIONS(1963), - [anon_sym_EQ_TILDE2] = ACTIONS(1963), - [anon_sym_BANG_TILDE2] = ACTIONS(1963), - [anon_sym_STAR_STAR2] = ACTIONS(1963), - [anon_sym_PLUS_PLUS2] = ACTIONS(1963), - [anon_sym_SLASH2] = ACTIONS(1961), - [anon_sym_mod2] = ACTIONS(1963), - [anon_sym_SLASH_SLASH2] = ACTIONS(1963), - [anon_sym_PLUS2] = ACTIONS(1961), - [anon_sym_bit_DASHshl2] = ACTIONS(1963), - [anon_sym_bit_DASHshr2] = ACTIONS(1963), - [anon_sym_bit_DASHand2] = ACTIONS(1963), - [anon_sym_bit_DASHxor2] = ACTIONS(1963), - [anon_sym_bit_DASHor2] = ACTIONS(1963), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1961), - [anon_sym_out_GT] = ACTIONS(1961), - [anon_sym_e_GT] = ACTIONS(1961), - [anon_sym_o_GT] = ACTIONS(1961), - [anon_sym_err_PLUSout_GT] = ACTIONS(1961), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1961), - [anon_sym_o_PLUSe_GT] = ACTIONS(1961), - [anon_sym_e_PLUSo_GT] = ACTIONS(1961), - [anon_sym_err_GT_GT] = ACTIONS(1963), - [anon_sym_out_GT_GT] = ACTIONS(1963), - [anon_sym_e_GT_GT] = ACTIONS(1963), - [anon_sym_o_GT_GT] = ACTIONS(1963), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1963), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1963), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1963), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1963), + [1644] = { + [sym_cell_path] = STATE(2070), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1644), + [aux_sym_cell_path_repeat1] = STATE(1668), + [ts_builtin_sym_end] = ACTIONS(937), + [sym__newline] = ACTIONS(937), + [anon_sym_SEMI] = ACTIONS(937), + [anon_sym_PIPE] = ACTIONS(937), + [anon_sym_err_GT_PIPE] = ACTIONS(937), + [anon_sym_out_GT_PIPE] = ACTIONS(937), + [anon_sym_e_GT_PIPE] = ACTIONS(937), + [anon_sym_o_GT_PIPE] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), + [anon_sym_GT2] = ACTIONS(935), + [anon_sym_DASH2] = ACTIONS(937), + [anon_sym_in2] = ACTIONS(937), + [anon_sym_STAR2] = ACTIONS(935), + [anon_sym_and2] = ACTIONS(937), + [anon_sym_xor2] = ACTIONS(937), + [anon_sym_or2] = ACTIONS(937), + [anon_sym_not_DASHin2] = ACTIONS(937), + [anon_sym_starts_DASHwith2] = ACTIONS(937), + [anon_sym_ends_DASHwith2] = ACTIONS(937), + [anon_sym_EQ_EQ2] = ACTIONS(937), + [anon_sym_BANG_EQ2] = ACTIONS(937), + [anon_sym_LT2] = ACTIONS(935), + [anon_sym_LT_EQ2] = ACTIONS(937), + [anon_sym_GT_EQ2] = ACTIONS(937), + [anon_sym_EQ_TILDE2] = ACTIONS(937), + [anon_sym_BANG_TILDE2] = ACTIONS(937), + [anon_sym_STAR_STAR2] = ACTIONS(937), + [anon_sym_PLUS_PLUS2] = ACTIONS(937), + [anon_sym_SLASH2] = ACTIONS(935), + [anon_sym_mod2] = ACTIONS(937), + [anon_sym_SLASH_SLASH2] = ACTIONS(937), + [anon_sym_PLUS2] = ACTIONS(935), + [anon_sym_bit_DASHshl2] = ACTIONS(937), + [anon_sym_bit_DASHshr2] = ACTIONS(937), + [anon_sym_bit_DASHand2] = ACTIONS(937), + [anon_sym_bit_DASHxor2] = ACTIONS(937), + [anon_sym_bit_DASHor2] = ACTIONS(937), + [anon_sym_DOT_DOT2] = ACTIONS(935), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), + [anon_sym_DOT_DOT_LT2] = ACTIONS(937), + [anon_sym_DOT2] = ACTIONS(4949), + [anon_sym_err_GT] = ACTIONS(935), + [anon_sym_out_GT] = ACTIONS(935), + [anon_sym_e_GT] = ACTIONS(935), + [anon_sym_o_GT] = ACTIONS(935), + [anon_sym_err_PLUSout_GT] = ACTIONS(935), + [anon_sym_out_PLUSerr_GT] = ACTIONS(935), + [anon_sym_o_PLUSe_GT] = ACTIONS(935), + [anon_sym_e_PLUSo_GT] = ACTIONS(935), + [anon_sym_err_GT_GT] = ACTIONS(937), + [anon_sym_out_GT_GT] = ACTIONS(937), + [anon_sym_e_GT_GT] = ACTIONS(937), + [anon_sym_o_GT_GT] = ACTIONS(937), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), [anon_sym_POUND] = ACTIONS(251), }, - [1625] = { - [sym_cell_path] = STATE(2054), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1625), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1967), - [anon_sym_SEMI] = ACTIONS(1967), - [anon_sym_PIPE] = ACTIONS(1967), - [anon_sym_err_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_GT_PIPE] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1967), - [anon_sym_RPAREN] = ACTIONS(1967), - [anon_sym_GT2] = ACTIONS(1965), - [anon_sym_DASH2] = ACTIONS(1967), - [anon_sym_in2] = ACTIONS(1967), - [anon_sym_if] = ACTIONS(1967), - [anon_sym_LBRACE] = ACTIONS(1967), - [anon_sym_RBRACE] = ACTIONS(1967), - [anon_sym_EQ_GT] = ACTIONS(1967), - [anon_sym_STAR2] = ACTIONS(1965), - [anon_sym_and2] = ACTIONS(1967), - [anon_sym_xor2] = ACTIONS(1967), - [anon_sym_or2] = ACTIONS(1967), - [anon_sym_not_DASHin2] = ACTIONS(1967), - [anon_sym_starts_DASHwith2] = ACTIONS(1967), - [anon_sym_ends_DASHwith2] = ACTIONS(1967), - [anon_sym_EQ_EQ2] = ACTIONS(1967), - [anon_sym_BANG_EQ2] = ACTIONS(1967), - [anon_sym_LT2] = ACTIONS(1965), - [anon_sym_LT_EQ2] = ACTIONS(1967), - [anon_sym_GT_EQ2] = ACTIONS(1967), - [anon_sym_EQ_TILDE2] = ACTIONS(1967), - [anon_sym_BANG_TILDE2] = ACTIONS(1967), - [anon_sym_STAR_STAR2] = ACTIONS(1967), - [anon_sym_PLUS_PLUS2] = ACTIONS(1967), - [anon_sym_SLASH2] = ACTIONS(1965), - [anon_sym_mod2] = ACTIONS(1967), - [anon_sym_SLASH_SLASH2] = ACTIONS(1967), - [anon_sym_PLUS2] = ACTIONS(1965), - [anon_sym_bit_DASHshl2] = ACTIONS(1967), - [anon_sym_bit_DASHshr2] = ACTIONS(1967), - [anon_sym_bit_DASHand2] = ACTIONS(1967), - [anon_sym_bit_DASHxor2] = ACTIONS(1967), - [anon_sym_bit_DASHor2] = ACTIONS(1967), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1965), - [anon_sym_out_GT] = ACTIONS(1965), - [anon_sym_e_GT] = ACTIONS(1965), - [anon_sym_o_GT] = ACTIONS(1965), - [anon_sym_err_PLUSout_GT] = ACTIONS(1965), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1965), - [anon_sym_o_PLUSe_GT] = ACTIONS(1965), - [anon_sym_e_PLUSo_GT] = ACTIONS(1965), - [anon_sym_err_GT_GT] = ACTIONS(1967), - [anon_sym_out_GT_GT] = ACTIONS(1967), - [anon_sym_e_GT_GT] = ACTIONS(1967), - [anon_sym_o_GT_GT] = ACTIONS(1967), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1967), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1967), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1967), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1967), - [anon_sym_POUND] = ACTIONS(251), + [1645] = { + [sym_comment] = STATE(1645), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2216), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_LPAREN2] = ACTIONS(2218), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2216), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_0b] = ACTIONS(2216), + [anon_sym_0o] = ACTIONS(2216), + [anon_sym_0x] = ACTIONS(2216), + [sym_val_date] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), + [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(2216), + [anon_sym_out_GT_GT] = ACTIONS(2216), + [anon_sym_e_GT_GT] = ACTIONS(2216), + [anon_sym_o_GT_GT] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2216), + [aux_sym_unquoted_token1] = ACTIONS(2216), + [aux_sym_unquoted_token4] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), }, - [1626] = { - [sym_cell_path] = STATE(2064), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1626), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1987), - [anon_sym_SEMI] = ACTIONS(1987), - [anon_sym_PIPE] = ACTIONS(1987), - [anon_sym_err_GT_PIPE] = ACTIONS(1987), - [anon_sym_out_GT_PIPE] = ACTIONS(1987), - [anon_sym_e_GT_PIPE] = ACTIONS(1987), - [anon_sym_o_GT_PIPE] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1987), - [anon_sym_RPAREN] = ACTIONS(1987), - [anon_sym_GT2] = ACTIONS(1985), - [anon_sym_DASH2] = ACTIONS(1987), - [anon_sym_in2] = ACTIONS(1987), - [anon_sym_if] = ACTIONS(1987), - [anon_sym_LBRACE] = ACTIONS(1987), - [anon_sym_RBRACE] = ACTIONS(1987), - [anon_sym_EQ_GT] = ACTIONS(1987), - [anon_sym_STAR2] = ACTIONS(1985), - [anon_sym_and2] = ACTIONS(1987), - [anon_sym_xor2] = ACTIONS(1987), - [anon_sym_or2] = ACTIONS(1987), - [anon_sym_not_DASHin2] = ACTIONS(1987), - [anon_sym_starts_DASHwith2] = ACTIONS(1987), - [anon_sym_ends_DASHwith2] = ACTIONS(1987), - [anon_sym_EQ_EQ2] = ACTIONS(1987), - [anon_sym_BANG_EQ2] = ACTIONS(1987), - [anon_sym_LT2] = ACTIONS(1985), - [anon_sym_LT_EQ2] = ACTIONS(1987), - [anon_sym_GT_EQ2] = ACTIONS(1987), - [anon_sym_EQ_TILDE2] = ACTIONS(1987), - [anon_sym_BANG_TILDE2] = ACTIONS(1987), - [anon_sym_STAR_STAR2] = ACTIONS(1987), - [anon_sym_PLUS_PLUS2] = ACTIONS(1987), - [anon_sym_SLASH2] = ACTIONS(1985), - [anon_sym_mod2] = ACTIONS(1987), - [anon_sym_SLASH_SLASH2] = ACTIONS(1987), - [anon_sym_PLUS2] = ACTIONS(1985), - [anon_sym_bit_DASHshl2] = ACTIONS(1987), - [anon_sym_bit_DASHshr2] = ACTIONS(1987), - [anon_sym_bit_DASHand2] = ACTIONS(1987), - [anon_sym_bit_DASHxor2] = ACTIONS(1987), - [anon_sym_bit_DASHor2] = ACTIONS(1987), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1985), - [anon_sym_out_GT] = ACTIONS(1985), - [anon_sym_e_GT] = ACTIONS(1985), - [anon_sym_o_GT] = ACTIONS(1985), - [anon_sym_err_PLUSout_GT] = ACTIONS(1985), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1985), - [anon_sym_o_PLUSe_GT] = ACTIONS(1985), - [anon_sym_e_PLUSo_GT] = ACTIONS(1985), - [anon_sym_err_GT_GT] = ACTIONS(1987), - [anon_sym_out_GT_GT] = ACTIONS(1987), - [anon_sym_e_GT_GT] = ACTIONS(1987), - [anon_sym_o_GT_GT] = ACTIONS(1987), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1987), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1987), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1987), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1987), - [anon_sym_POUND] = ACTIONS(251), + [1646] = { + [sym_comment] = STATE(1646), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1749), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [aux_sym_unquoted_token2] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, - [1627] = { - [sym_cell_path] = STATE(2052), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1627), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1955), - [anon_sym_SEMI] = ACTIONS(1955), - [anon_sym_PIPE] = ACTIONS(1955), - [anon_sym_err_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_GT_PIPE] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1955), - [anon_sym_RPAREN] = ACTIONS(1955), - [anon_sym_GT2] = ACTIONS(1953), - [anon_sym_DASH2] = ACTIONS(1955), - [anon_sym_in2] = ACTIONS(1955), - [anon_sym_if] = ACTIONS(1955), - [anon_sym_LBRACE] = ACTIONS(1955), - [anon_sym_RBRACE] = ACTIONS(1955), - [anon_sym_EQ_GT] = ACTIONS(1955), - [anon_sym_STAR2] = ACTIONS(1953), - [anon_sym_and2] = ACTIONS(1955), - [anon_sym_xor2] = ACTIONS(1955), - [anon_sym_or2] = ACTIONS(1955), - [anon_sym_not_DASHin2] = ACTIONS(1955), - [anon_sym_starts_DASHwith2] = ACTIONS(1955), - [anon_sym_ends_DASHwith2] = ACTIONS(1955), - [anon_sym_EQ_EQ2] = ACTIONS(1955), - [anon_sym_BANG_EQ2] = ACTIONS(1955), - [anon_sym_LT2] = ACTIONS(1953), - [anon_sym_LT_EQ2] = ACTIONS(1955), - [anon_sym_GT_EQ2] = ACTIONS(1955), - [anon_sym_EQ_TILDE2] = ACTIONS(1955), - [anon_sym_BANG_TILDE2] = ACTIONS(1955), - [anon_sym_STAR_STAR2] = ACTIONS(1955), - [anon_sym_PLUS_PLUS2] = ACTIONS(1955), - [anon_sym_SLASH2] = ACTIONS(1953), - [anon_sym_mod2] = ACTIONS(1955), - [anon_sym_SLASH_SLASH2] = ACTIONS(1955), - [anon_sym_PLUS2] = ACTIONS(1953), - [anon_sym_bit_DASHshl2] = ACTIONS(1955), - [anon_sym_bit_DASHshr2] = ACTIONS(1955), - [anon_sym_bit_DASHand2] = ACTIONS(1955), - [anon_sym_bit_DASHxor2] = ACTIONS(1955), - [anon_sym_bit_DASHor2] = ACTIONS(1955), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1953), - [anon_sym_out_GT] = ACTIONS(1953), - [anon_sym_e_GT] = ACTIONS(1953), - [anon_sym_o_GT] = ACTIONS(1953), - [anon_sym_err_PLUSout_GT] = ACTIONS(1953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1953), - [anon_sym_o_PLUSe_GT] = ACTIONS(1953), - [anon_sym_e_PLUSo_GT] = ACTIONS(1953), - [anon_sym_err_GT_GT] = ACTIONS(1955), - [anon_sym_out_GT_GT] = ACTIONS(1955), - [anon_sym_e_GT_GT] = ACTIONS(1955), - [anon_sym_o_GT_GT] = ACTIONS(1955), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1955), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1955), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1955), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1955), + [1647] = { + [sym_comment] = STATE(1647), + [ts_builtin_sym_end] = ACTIONS(1599), + [sym__newline] = ACTIONS(1599), + [anon_sym_SEMI] = ACTIONS(1599), + [anon_sym_PIPE] = ACTIONS(1599), + [anon_sym_err_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_GT_PIPE] = ACTIONS(1599), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1599), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1599), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1599), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1599), + [anon_sym_GT2] = ACTIONS(1597), + [anon_sym_DASH2] = ACTIONS(1599), + [anon_sym_in2] = ACTIONS(1599), + [anon_sym_STAR2] = ACTIONS(1597), + [anon_sym_and2] = ACTIONS(1599), + [anon_sym_xor2] = ACTIONS(1599), + [anon_sym_or2] = ACTIONS(1599), + [anon_sym_not_DASHin2] = ACTIONS(1599), + [anon_sym_starts_DASHwith2] = ACTIONS(1599), + [anon_sym_ends_DASHwith2] = ACTIONS(1599), + [anon_sym_EQ_EQ2] = ACTIONS(1599), + [anon_sym_BANG_EQ2] = ACTIONS(1599), + [anon_sym_LT2] = ACTIONS(1597), + [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_LPAREN2] = ACTIONS(1599), + [anon_sym_STAR_STAR2] = ACTIONS(1599), + [anon_sym_PLUS_PLUS2] = ACTIONS(1599), + [anon_sym_SLASH2] = ACTIONS(1597), + [anon_sym_mod2] = ACTIONS(1599), + [anon_sym_SLASH_SLASH2] = ACTIONS(1599), + [anon_sym_PLUS2] = ACTIONS(1597), + [anon_sym_bit_DASHshl2] = ACTIONS(1599), + [anon_sym_bit_DASHshr2] = ACTIONS(1599), + [anon_sym_bit_DASHand2] = ACTIONS(1599), + [anon_sym_bit_DASHxor2] = ACTIONS(1599), + [anon_sym_bit_DASHor2] = ACTIONS(1599), + [anon_sym_DOT_DOT2] = ACTIONS(1597), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1599), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1599), + [sym_filesize_unit] = ACTIONS(1597), + [sym_duration_unit] = ACTIONS(1599), + [anon_sym_err_GT] = ACTIONS(1597), + [anon_sym_out_GT] = ACTIONS(1597), + [anon_sym_e_GT] = ACTIONS(1597), + [anon_sym_o_GT] = ACTIONS(1597), + [anon_sym_err_PLUSout_GT] = ACTIONS(1597), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1597), + [anon_sym_o_PLUSe_GT] = ACTIONS(1597), + [anon_sym_e_PLUSo_GT] = ACTIONS(1597), + [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_unquoted_token2] = ACTIONS(1597), [anon_sym_POUND] = ACTIONS(251), }, - [1628] = { - [sym_comment] = STATE(1628), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4915), - [aux_sym__immediate_decimal_token2] = ACTIONS(4917), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), + [1648] = { + [sym_comment] = STATE(1648), + [ts_builtin_sym_end] = ACTIONS(2190), + [sym__newline] = ACTIONS(2190), + [anon_sym_SEMI] = ACTIONS(2190), + [anon_sym_PIPE] = ACTIONS(2190), + [anon_sym_err_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_GT_PIPE] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2190), + [anon_sym_LBRACK] = ACTIONS(2190), + [anon_sym_LPAREN] = ACTIONS(2188), + [anon_sym_DOLLAR] = ACTIONS(2188), + [anon_sym_DASH_DASH] = ACTIONS(2190), + [anon_sym_DASH2] = ACTIONS(2188), + [anon_sym_LBRACE] = ACTIONS(2190), + [anon_sym_DOT_DOT] = ACTIONS(2188), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2190), + [anon_sym_DOT_DOT_LT] = ACTIONS(2190), + [anon_sym_null] = ACTIONS(2190), + [anon_sym_true] = ACTIONS(2190), + [anon_sym_false] = ACTIONS(2190), + [aux_sym__val_number_decimal_token1] = ACTIONS(2188), + [aux_sym__val_number_decimal_token2] = ACTIONS(2190), + [aux_sym__val_number_decimal_token3] = ACTIONS(2190), + [aux_sym__val_number_decimal_token4] = ACTIONS(2190), + [aux_sym__val_number_token1] = ACTIONS(2190), + [aux_sym__val_number_token2] = ACTIONS(2190), + [aux_sym__val_number_token3] = ACTIONS(2190), + [aux_sym__val_number_token4] = ACTIONS(2190), + [aux_sym__val_number_token5] = ACTIONS(2190), + [aux_sym__val_number_token6] = ACTIONS(2190), + [anon_sym_0b] = ACTIONS(2188), + [anon_sym_0o] = ACTIONS(2188), + [anon_sym_0x] = ACTIONS(2188), + [sym_val_date] = ACTIONS(2190), + [anon_sym_DQUOTE] = ACTIONS(2190), + [sym__str_single_quotes] = ACTIONS(2190), + [sym__str_back_ticks] = ACTIONS(2190), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2190), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2190), + [anon_sym_err_GT] = ACTIONS(2188), + [anon_sym_out_GT] = ACTIONS(2188), + [anon_sym_e_GT] = ACTIONS(2188), + [anon_sym_o_GT] = ACTIONS(2188), + [anon_sym_err_PLUSout_GT] = ACTIONS(2188), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), + [anon_sym_o_PLUSe_GT] = ACTIONS(2188), + [anon_sym_e_PLUSo_GT] = ACTIONS(2188), + [anon_sym_err_GT_GT] = ACTIONS(2190), + [anon_sym_out_GT_GT] = ACTIONS(2190), + [anon_sym_e_GT_GT] = ACTIONS(2190), + [anon_sym_o_GT_GT] = ACTIONS(2190), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2190), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2190), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2190), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2190), + [aux_sym_unquoted_token1] = ACTIONS(2188), + [aux_sym_unquoted_token2] = ACTIONS(1803), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), + [sym_raw_string_begin] = ACTIONS(2190), }, - [1629] = { - [sym_comment] = STATE(1629), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1725), - [anon_sym_DOT_DOT_LT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), + [1649] = { + [sym_comment] = STATE(1649), + [ts_builtin_sym_end] = ACTIONS(1801), + [sym__newline] = ACTIONS(1801), + [anon_sym_SEMI] = ACTIONS(1801), + [anon_sym_PIPE] = ACTIONS(1801), + [anon_sym_err_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_GT_PIPE] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1801), + [anon_sym_LBRACK] = ACTIONS(1801), + [anon_sym_LPAREN] = ACTIONS(1793), + [anon_sym_DOLLAR] = ACTIONS(1793), + [anon_sym_DASH_DASH] = ACTIONS(1801), + [anon_sym_DASH2] = ACTIONS(1793), + [anon_sym_LBRACE] = ACTIONS(1801), + [anon_sym_DOT_DOT] = ACTIONS(1793), + [anon_sym_LPAREN2] = ACTIONS(1795), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1801), + [anon_sym_DOT_DOT_LT] = ACTIONS(1801), + [anon_sym_null] = ACTIONS(1801), + [anon_sym_true] = ACTIONS(1801), + [anon_sym_false] = ACTIONS(1801), + [aux_sym__val_number_decimal_token1] = ACTIONS(1793), + [aux_sym__val_number_decimal_token2] = ACTIONS(1801), + [aux_sym__val_number_decimal_token3] = ACTIONS(1801), + [aux_sym__val_number_decimal_token4] = ACTIONS(1801), + [aux_sym__val_number_token1] = ACTIONS(1801), + [aux_sym__val_number_token2] = ACTIONS(1801), + [aux_sym__val_number_token3] = ACTIONS(1801), + [aux_sym__val_number_token4] = ACTIONS(1801), + [aux_sym__val_number_token5] = ACTIONS(1801), + [aux_sym__val_number_token6] = ACTIONS(1801), + [anon_sym_0b] = ACTIONS(1793), + [anon_sym_0o] = ACTIONS(1793), + [anon_sym_0x] = ACTIONS(1793), + [sym_val_date] = ACTIONS(1801), + [anon_sym_DQUOTE] = ACTIONS(1801), + [sym__str_single_quotes] = ACTIONS(1801), + [sym__str_back_ticks] = ACTIONS(1801), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1801), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1801), + [anon_sym_err_GT] = ACTIONS(1793), + [anon_sym_out_GT] = ACTIONS(1793), + [anon_sym_e_GT] = ACTIONS(1793), + [anon_sym_o_GT] = ACTIONS(1793), + [anon_sym_err_PLUSout_GT] = ACTIONS(1793), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1793), + [anon_sym_o_PLUSe_GT] = ACTIONS(1793), + [anon_sym_e_PLUSo_GT] = ACTIONS(1793), + [anon_sym_err_GT_GT] = ACTIONS(1801), + [anon_sym_out_GT_GT] = ACTIONS(1801), + [anon_sym_e_GT_GT] = ACTIONS(1801), + [anon_sym_o_GT_GT] = ACTIONS(1801), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1801), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1801), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1801), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1801), + [aux_sym_unquoted_token1] = ACTIONS(1793), + [aux_sym_unquoted_token2] = ACTIONS(1803), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1801), + }, + [1650] = { + [sym_comment] = STATE(1650), + [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_LBRACK] = ACTIONS(2218), + [anon_sym_LPAREN] = ACTIONS(2218), + [anon_sym_RPAREN] = ACTIONS(2218), + [anon_sym_DOLLAR] = ACTIONS(2216), + [anon_sym_DASH_DASH] = ACTIONS(2216), + [anon_sym_DASH2] = ACTIONS(2216), + [anon_sym_LBRACE] = ACTIONS(2218), + [anon_sym_RBRACE] = ACTIONS(2218), + [anon_sym_DOT_DOT] = ACTIONS(2216), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2216), + [anon_sym_DOT_DOT_LT] = ACTIONS(2216), + [anon_sym_null] = ACTIONS(2216), + [anon_sym_true] = ACTIONS(2216), + [anon_sym_false] = ACTIONS(2216), + [aux_sym__val_number_decimal_token1] = ACTIONS(2216), + [aux_sym__val_number_decimal_token2] = ACTIONS(2216), + [aux_sym__val_number_decimal_token3] = ACTIONS(2216), + [aux_sym__val_number_decimal_token4] = ACTIONS(2216), + [aux_sym__val_number_token1] = ACTIONS(2216), + [aux_sym__val_number_token2] = ACTIONS(2216), + [aux_sym__val_number_token3] = ACTIONS(2216), + [aux_sym__val_number_token4] = ACTIONS(2216), + [aux_sym__val_number_token5] = ACTIONS(2216), + [aux_sym__val_number_token6] = ACTIONS(2216), + [anon_sym_0b] = ACTIONS(2216), + [anon_sym_0o] = ACTIONS(2216), + [anon_sym_0x] = ACTIONS(2216), + [sym_val_date] = ACTIONS(2216), + [anon_sym_DQUOTE] = ACTIONS(2218), + [sym__str_single_quotes] = ACTIONS(2218), + [sym__str_back_ticks] = ACTIONS(2218), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2218), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2218), + [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(2216), + [anon_sym_out_GT_GT] = ACTIONS(2216), + [anon_sym_e_GT_GT] = ACTIONS(2216), + [anon_sym_o_GT_GT] = ACTIONS(2216), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2216), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2216), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2216), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2216), + [aux_sym_unquoted_token1] = ACTIONS(2216), + [aux_sym_unquoted_token4] = ACTIONS(2216), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2218), + }, + [1651] = { + [sym_comment] = STATE(1651), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1731), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), + [aux_sym_unquoted_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1630] = { - [sym_cell_path] = STATE(2140), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1630), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1935), - [anon_sym_SEMI] = ACTIONS(1935), - [anon_sym_PIPE] = ACTIONS(1935), - [anon_sym_err_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_GT_PIPE] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1935), - [anon_sym_RPAREN] = ACTIONS(1935), - [anon_sym_GT2] = ACTIONS(1933), - [anon_sym_DASH2] = ACTIONS(1935), - [anon_sym_in2] = ACTIONS(1935), - [anon_sym_LBRACE] = ACTIONS(1935), - [anon_sym_RBRACE] = ACTIONS(1935), - [anon_sym_EQ_GT] = ACTIONS(1935), - [anon_sym_STAR2] = ACTIONS(1933), - [anon_sym_and2] = ACTIONS(1935), - [anon_sym_xor2] = ACTIONS(1935), - [anon_sym_or2] = ACTIONS(1935), - [anon_sym_not_DASHin2] = ACTIONS(1935), - [anon_sym_starts_DASHwith2] = ACTIONS(1935), - [anon_sym_ends_DASHwith2] = ACTIONS(1935), - [anon_sym_EQ_EQ2] = ACTIONS(1935), - [anon_sym_BANG_EQ2] = ACTIONS(1935), - [anon_sym_LT2] = ACTIONS(1933), - [anon_sym_LT_EQ2] = ACTIONS(1935), - [anon_sym_GT_EQ2] = ACTIONS(1935), - [anon_sym_EQ_TILDE2] = ACTIONS(1935), - [anon_sym_BANG_TILDE2] = ACTIONS(1935), - [anon_sym_STAR_STAR2] = ACTIONS(1935), - [anon_sym_PLUS_PLUS2] = ACTIONS(1935), - [anon_sym_SLASH2] = ACTIONS(1933), - [anon_sym_mod2] = ACTIONS(1935), - [anon_sym_SLASH_SLASH2] = ACTIONS(1935), - [anon_sym_PLUS2] = ACTIONS(1933), - [anon_sym_bit_DASHshl2] = ACTIONS(1935), - [anon_sym_bit_DASHshr2] = ACTIONS(1935), - [anon_sym_bit_DASHand2] = ACTIONS(1935), - [anon_sym_bit_DASHxor2] = ACTIONS(1935), - [anon_sym_bit_DASHor2] = ACTIONS(1935), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1933), - [anon_sym_out_GT] = ACTIONS(1933), - [anon_sym_e_GT] = ACTIONS(1933), - [anon_sym_o_GT] = ACTIONS(1933), - [anon_sym_err_PLUSout_GT] = ACTIONS(1933), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1933), - [anon_sym_o_PLUSe_GT] = ACTIONS(1933), - [anon_sym_e_PLUSo_GT] = ACTIONS(1933), - [anon_sym_err_GT_GT] = ACTIONS(1935), - [anon_sym_out_GT_GT] = ACTIONS(1935), - [anon_sym_e_GT_GT] = ACTIONS(1935), - [anon_sym_o_GT_GT] = ACTIONS(1935), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1935), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1935), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1935), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1935), + [1652] = { + [sym_comment] = STATE(1652), + [ts_builtin_sym_end] = ACTIONS(1687), + [sym__newline] = ACTIONS(1687), + [anon_sym_SEMI] = ACTIONS(1687), + [anon_sym_PIPE] = ACTIONS(1687), + [anon_sym_err_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_GT_PIPE] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1687), + [anon_sym_GT2] = ACTIONS(1685), + [anon_sym_DASH2] = ACTIONS(1687), + [anon_sym_in2] = ACTIONS(1687), + [anon_sym_STAR2] = ACTIONS(1685), + [anon_sym_and2] = ACTIONS(1687), + [anon_sym_xor2] = ACTIONS(1687), + [anon_sym_or2] = ACTIONS(1687), + [anon_sym_not_DASHin2] = ACTIONS(1687), + [anon_sym_starts_DASHwith2] = ACTIONS(1687), + [anon_sym_ends_DASHwith2] = ACTIONS(1687), + [anon_sym_EQ_EQ2] = ACTIONS(1687), + [anon_sym_BANG_EQ2] = ACTIONS(1687), + [anon_sym_LT2] = ACTIONS(1685), + [anon_sym_LT_EQ2] = ACTIONS(1687), + [anon_sym_GT_EQ2] = ACTIONS(1687), + [anon_sym_EQ_TILDE2] = ACTIONS(1687), + [anon_sym_BANG_TILDE2] = ACTIONS(1687), + [anon_sym_LPAREN2] = ACTIONS(1687), + [anon_sym_STAR_STAR2] = ACTIONS(1687), + [anon_sym_PLUS_PLUS2] = ACTIONS(1687), + [anon_sym_SLASH2] = ACTIONS(1685), + [anon_sym_mod2] = ACTIONS(1687), + [anon_sym_SLASH_SLASH2] = ACTIONS(1687), + [anon_sym_PLUS2] = ACTIONS(1685), + [anon_sym_bit_DASHshl2] = ACTIONS(1687), + [anon_sym_bit_DASHshr2] = ACTIONS(1687), + [anon_sym_bit_DASHand2] = ACTIONS(1687), + [anon_sym_bit_DASHxor2] = ACTIONS(1687), + [anon_sym_bit_DASHor2] = ACTIONS(1687), + [anon_sym_DOT_DOT2] = ACTIONS(1685), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1687), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1687), + [sym_filesize_unit] = ACTIONS(1685), + [sym_duration_unit] = ACTIONS(1687), + [anon_sym_err_GT] = ACTIONS(1685), + [anon_sym_out_GT] = ACTIONS(1685), + [anon_sym_e_GT] = ACTIONS(1685), + [anon_sym_o_GT] = ACTIONS(1685), + [anon_sym_err_PLUSout_GT] = ACTIONS(1685), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1685), + [anon_sym_o_PLUSe_GT] = ACTIONS(1685), + [anon_sym_e_PLUSo_GT] = ACTIONS(1685), + [anon_sym_err_GT_GT] = ACTIONS(1687), + [anon_sym_out_GT_GT] = ACTIONS(1687), + [anon_sym_e_GT_GT] = ACTIONS(1687), + [anon_sym_o_GT_GT] = ACTIONS(1687), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1687), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1687), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1687), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1687), + [aux_sym_unquoted_token2] = ACTIONS(1685), [anon_sym_POUND] = ACTIONS(251), }, - [1631] = { - [sym_cell_path] = STATE(2137), - [sym_path] = STATE(1861), - [sym_comment] = STATE(1631), - [aux_sym_cell_path_repeat1] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(1719), - [sym__newline] = ACTIONS(1719), - [anon_sym_SEMI] = ACTIONS(1719), - [anon_sym_PIPE] = ACTIONS(1719), - [anon_sym_err_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_GT_PIPE] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1719), - [anon_sym_GT2] = ACTIONS(1717), - [anon_sym_DASH2] = ACTIONS(1719), - [anon_sym_in2] = ACTIONS(1719), - [anon_sym_STAR2] = ACTIONS(1717), - [anon_sym_and2] = ACTIONS(1719), - [anon_sym_xor2] = ACTIONS(1719), - [anon_sym_or2] = ACTIONS(1719), - [anon_sym_not_DASHin2] = ACTIONS(1719), - [anon_sym_starts_DASHwith2] = ACTIONS(1719), - [anon_sym_ends_DASHwith2] = ACTIONS(1719), - [anon_sym_EQ_EQ2] = ACTIONS(1719), - [anon_sym_BANG_EQ2] = ACTIONS(1719), - [anon_sym_LT2] = ACTIONS(1717), - [anon_sym_LT_EQ2] = ACTIONS(1719), - [anon_sym_GT_EQ2] = ACTIONS(1719), - [anon_sym_EQ_TILDE2] = ACTIONS(1719), - [anon_sym_BANG_TILDE2] = ACTIONS(1719), - [anon_sym_STAR_STAR2] = ACTIONS(1719), - [anon_sym_PLUS_PLUS2] = ACTIONS(1719), - [anon_sym_SLASH2] = ACTIONS(1717), - [anon_sym_mod2] = ACTIONS(1719), - [anon_sym_SLASH_SLASH2] = ACTIONS(1719), - [anon_sym_PLUS2] = ACTIONS(1717), - [anon_sym_bit_DASHshl2] = ACTIONS(1719), - [anon_sym_bit_DASHshr2] = ACTIONS(1719), - [anon_sym_bit_DASHand2] = ACTIONS(1719), - [anon_sym_bit_DASHxor2] = ACTIONS(1719), - [anon_sym_bit_DASHor2] = ACTIONS(1719), - [anon_sym_DOT_DOT2] = ACTIONS(1717), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1719), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1719), - [anon_sym_DOT2] = ACTIONS(4919), - [anon_sym_err_GT] = ACTIONS(1717), - [anon_sym_out_GT] = ACTIONS(1717), - [anon_sym_e_GT] = ACTIONS(1717), - [anon_sym_o_GT] = ACTIONS(1717), - [anon_sym_err_PLUSout_GT] = ACTIONS(1717), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1717), - [anon_sym_o_PLUSe_GT] = ACTIONS(1717), - [anon_sym_e_PLUSo_GT] = ACTIONS(1717), - [anon_sym_err_GT_GT] = ACTIONS(1719), - [anon_sym_out_GT_GT] = ACTIONS(1719), - [anon_sym_e_GT_GT] = ACTIONS(1719), - [anon_sym_o_GT_GT] = ACTIONS(1719), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1719), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1719), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1719), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1719), + [1653] = { + [sym_comment] = STATE(1653), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_LBRACK] = ACTIONS(1733), + [anon_sym_LPAREN] = ACTIONS(1733), + [anon_sym_DOLLAR] = ACTIONS(1731), + [anon_sym_DASH_DASH] = ACTIONS(1733), + [anon_sym_DASH2] = ACTIONS(1731), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_DOT_DOT] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4951), + [aux_sym__immediate_decimal_token2] = ACTIONS(4953), + [anon_sym_null] = ACTIONS(1733), + [anon_sym_true] = ACTIONS(1733), + [anon_sym_false] = ACTIONS(1733), + [aux_sym__val_number_decimal_token1] = ACTIONS(1731), + [aux_sym__val_number_decimal_token2] = ACTIONS(1733), + [aux_sym__val_number_decimal_token3] = ACTIONS(1733), + [aux_sym__val_number_decimal_token4] = ACTIONS(1733), + [aux_sym__val_number_token1] = ACTIONS(1733), + [aux_sym__val_number_token2] = ACTIONS(1733), + [aux_sym__val_number_token3] = ACTIONS(1733), + [aux_sym__val_number_token4] = ACTIONS(1733), + [aux_sym__val_number_token5] = ACTIONS(1733), + [aux_sym__val_number_token6] = ACTIONS(1733), + [anon_sym_0b] = ACTIONS(1731), + [anon_sym_0o] = ACTIONS(1731), + [anon_sym_0x] = ACTIONS(1731), + [sym_val_date] = ACTIONS(1733), + [anon_sym_DQUOTE] = ACTIONS(1733), + [sym__str_single_quotes] = ACTIONS(1733), + [sym__str_back_ticks] = ACTIONS(1733), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1733), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token1] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1733), }, - [1632] = { - [sym_comment] = STATE(1632), + [1654] = { + [sym_comment] = STATE(1654), [ts_builtin_sym_end] = ACTIONS(974), [sym__newline] = ACTIONS(974), [anon_sym_SEMI] = ACTIONS(974), @@ -229731,276 +231181,212 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(974), }, - [1633] = { - [sym_comment] = STATE(1633), - [ts_builtin_sym_end] = ACTIONS(1735), - [sym__newline] = ACTIONS(1735), - [anon_sym_SEMI] = ACTIONS(1735), - [anon_sym_PIPE] = ACTIONS(1735), - [anon_sym_err_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_GT_PIPE] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1735), - [anon_sym_GT2] = ACTIONS(1733), - [anon_sym_DASH2] = ACTIONS(1735), - [anon_sym_in2] = ACTIONS(1735), - [anon_sym_STAR2] = ACTIONS(1733), - [anon_sym_and2] = ACTIONS(1735), - [anon_sym_xor2] = ACTIONS(1735), - [anon_sym_or2] = ACTIONS(1735), - [anon_sym_not_DASHin2] = ACTIONS(1735), - [anon_sym_starts_DASHwith2] = ACTIONS(1735), - [anon_sym_ends_DASHwith2] = ACTIONS(1735), - [anon_sym_EQ_EQ2] = ACTIONS(1735), - [anon_sym_BANG_EQ2] = ACTIONS(1735), - [anon_sym_LT2] = ACTIONS(1733), - [anon_sym_LT_EQ2] = ACTIONS(1735), - [anon_sym_GT_EQ2] = ACTIONS(1735), - [anon_sym_EQ_TILDE2] = ACTIONS(1735), - [anon_sym_BANG_TILDE2] = ACTIONS(1735), - [anon_sym_LPAREN2] = ACTIONS(1735), - [anon_sym_STAR_STAR2] = ACTIONS(1735), - [anon_sym_PLUS_PLUS2] = ACTIONS(1735), - [anon_sym_SLASH2] = ACTIONS(1733), - [anon_sym_mod2] = ACTIONS(1735), - [anon_sym_SLASH_SLASH2] = ACTIONS(1735), - [anon_sym_PLUS2] = ACTIONS(1733), - [anon_sym_bit_DASHshl2] = ACTIONS(1735), - [anon_sym_bit_DASHshr2] = ACTIONS(1735), - [anon_sym_bit_DASHand2] = ACTIONS(1735), - [anon_sym_bit_DASHxor2] = ACTIONS(1735), - [anon_sym_bit_DASHor2] = ACTIONS(1735), - [anon_sym_DOT_DOT2] = ACTIONS(1733), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1735), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1735), - [sym_filesize_unit] = ACTIONS(1733), - [sym_duration_unit] = ACTIONS(1735), - [anon_sym_err_GT] = ACTIONS(1733), - [anon_sym_out_GT] = ACTIONS(1733), - [anon_sym_e_GT] = ACTIONS(1733), - [anon_sym_o_GT] = ACTIONS(1733), - [anon_sym_err_PLUSout_GT] = ACTIONS(1733), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1733), - [anon_sym_o_PLUSe_GT] = ACTIONS(1733), - [anon_sym_e_PLUSo_GT] = ACTIONS(1733), - [anon_sym_err_GT_GT] = ACTIONS(1735), - [anon_sym_out_GT_GT] = ACTIONS(1735), - [anon_sym_e_GT_GT] = ACTIONS(1735), - [anon_sym_o_GT_GT] = ACTIONS(1735), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1735), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1735), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1735), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1735), - [aux_sym_unquoted_token2] = ACTIONS(1733), + [1655] = { + [sym_comment] = STATE(1655), + [ts_builtin_sym_end] = ACTIONS(960), + [sym__newline] = ACTIONS(960), + [anon_sym_SEMI] = ACTIONS(960), + [anon_sym_PIPE] = ACTIONS(960), + [anon_sym_err_GT_PIPE] = ACTIONS(960), + [anon_sym_out_GT_PIPE] = ACTIONS(960), + [anon_sym_e_GT_PIPE] = ACTIONS(960), + [anon_sym_o_GT_PIPE] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), + [anon_sym_LBRACK] = ACTIONS(960), + [anon_sym_LPAREN] = ACTIONS(960), + [anon_sym_DOLLAR] = ACTIONS(958), + [anon_sym_DASH_DASH] = ACTIONS(960), + [anon_sym_DASH2] = ACTIONS(958), + [anon_sym_LBRACE] = ACTIONS(960), + [anon_sym_DOT_DOT] = ACTIONS(958), + [anon_sym_QMARK2] = ACTIONS(4955), + [anon_sym_DOT_DOT_EQ] = ACTIONS(960), + [anon_sym_DOT_DOT_LT] = ACTIONS(960), + [anon_sym_null] = ACTIONS(960), + [anon_sym_true] = ACTIONS(960), + [anon_sym_false] = ACTIONS(960), + [aux_sym__val_number_decimal_token1] = ACTIONS(958), + [aux_sym__val_number_decimal_token2] = ACTIONS(960), + [aux_sym__val_number_decimal_token3] = ACTIONS(960), + [aux_sym__val_number_decimal_token4] = ACTIONS(960), + [aux_sym__val_number_token1] = ACTIONS(960), + [aux_sym__val_number_token2] = ACTIONS(960), + [aux_sym__val_number_token3] = ACTIONS(960), + [aux_sym__val_number_token4] = ACTIONS(960), + [aux_sym__val_number_token5] = ACTIONS(960), + [aux_sym__val_number_token6] = ACTIONS(960), + [anon_sym_0b] = ACTIONS(958), + [anon_sym_0o] = ACTIONS(958), + [anon_sym_0x] = ACTIONS(958), + [sym_val_date] = ACTIONS(960), + [anon_sym_DQUOTE] = ACTIONS(960), + [sym__str_single_quotes] = ACTIONS(960), + [sym__str_back_ticks] = ACTIONS(960), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), + [anon_sym_DOT2] = ACTIONS(958), + [anon_sym_err_GT] = ACTIONS(958), + [anon_sym_out_GT] = ACTIONS(958), + [anon_sym_e_GT] = ACTIONS(958), + [anon_sym_o_GT] = ACTIONS(958), + [anon_sym_err_PLUSout_GT] = ACTIONS(958), + [anon_sym_out_PLUSerr_GT] = ACTIONS(958), + [anon_sym_o_PLUSe_GT] = ACTIONS(958), + [anon_sym_e_PLUSo_GT] = ACTIONS(958), + [anon_sym_err_GT_GT] = ACTIONS(960), + [anon_sym_out_GT_GT] = ACTIONS(960), + [anon_sym_e_GT_GT] = ACTIONS(960), + [anon_sym_o_GT_GT] = ACTIONS(960), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), + [aux_sym_unquoted_token1] = ACTIONS(958), [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(960), }, - [1634] = { - [sym_comment] = STATE(1634), - [ts_builtin_sym_end] = ACTIONS(2186), - [sym__newline] = ACTIONS(2186), - [anon_sym_SEMI] = ACTIONS(2186), - [anon_sym_PIPE] = ACTIONS(2186), - [anon_sym_err_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_GT_PIPE] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2186), - [anon_sym_LBRACK] = ACTIONS(2186), - [anon_sym_LPAREN] = ACTIONS(2184), - [anon_sym_DOLLAR] = ACTIONS(2184), - [anon_sym_DASH_DASH] = ACTIONS(2186), - [anon_sym_DASH2] = ACTIONS(2184), - [anon_sym_LBRACE] = ACTIONS(2186), - [anon_sym_DOT_DOT] = ACTIONS(2184), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2186), - [anon_sym_DOT_DOT_LT] = ACTIONS(2186), - [anon_sym_null] = ACTIONS(2186), - [anon_sym_true] = ACTIONS(2186), - [anon_sym_false] = ACTIONS(2186), - [aux_sym__val_number_decimal_token1] = ACTIONS(2184), - [aux_sym__val_number_decimal_token2] = ACTIONS(2186), - [aux_sym__val_number_decimal_token3] = ACTIONS(2186), - [aux_sym__val_number_decimal_token4] = ACTIONS(2186), - [aux_sym__val_number_token1] = ACTIONS(2186), - [aux_sym__val_number_token2] = ACTIONS(2186), - [aux_sym__val_number_token3] = ACTIONS(2186), - [aux_sym__val_number_token4] = ACTIONS(2186), - [aux_sym__val_number_token5] = ACTIONS(2186), - [aux_sym__val_number_token6] = ACTIONS(2186), - [anon_sym_0b] = ACTIONS(2184), - [anon_sym_0o] = ACTIONS(2184), - [anon_sym_0x] = ACTIONS(2184), - [sym_val_date] = ACTIONS(2186), - [anon_sym_DQUOTE] = ACTIONS(2186), - [sym__str_single_quotes] = ACTIONS(2186), - [sym__str_back_ticks] = ACTIONS(2186), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2186), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2186), - [anon_sym_err_GT] = ACTIONS(2184), - [anon_sym_out_GT] = ACTIONS(2184), - [anon_sym_e_GT] = ACTIONS(2184), - [anon_sym_o_GT] = ACTIONS(2184), - [anon_sym_err_PLUSout_GT] = ACTIONS(2184), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2184), - [anon_sym_o_PLUSe_GT] = ACTIONS(2184), - [anon_sym_e_PLUSo_GT] = ACTIONS(2184), - [anon_sym_err_GT_GT] = ACTIONS(2186), - [anon_sym_out_GT_GT] = ACTIONS(2186), - [anon_sym_e_GT_GT] = ACTIONS(2186), - [anon_sym_o_GT_GT] = ACTIONS(2186), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2186), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2186), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2186), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2186), - [aux_sym_unquoted_token1] = ACTIONS(2184), - [aux_sym_unquoted_token2] = ACTIONS(1875), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2186), - }, - [1635] = { - [sym_comment] = STATE(1635), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2241), - [anon_sym_RPAREN] = ACTIONS(2241), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_RBRACE] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [aux_sym__val_number_token4] = ACTIONS(2237), - [aux_sym__val_number_token5] = ACTIONS(2237), - [aux_sym__val_number_token6] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [aux_sym_unquoted_token1] = ACTIONS(2237), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2241), - }, - [1636] = { - [sym_comment] = STATE(1636), - [ts_builtin_sym_end] = ACTIONS(970), - [sym__newline] = ACTIONS(970), - [anon_sym_SEMI] = ACTIONS(970), - [anon_sym_PIPE] = ACTIONS(970), - [anon_sym_err_GT_PIPE] = ACTIONS(970), - [anon_sym_out_GT_PIPE] = ACTIONS(970), - [anon_sym_e_GT_PIPE] = ACTIONS(970), - [anon_sym_o_GT_PIPE] = ACTIONS(970), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(970), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(970), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(970), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(970), - [anon_sym_LBRACK] = ACTIONS(970), - [anon_sym_LPAREN] = ACTIONS(970), - [anon_sym_DOLLAR] = ACTIONS(968), - [anon_sym_DASH_DASH] = ACTIONS(970), - [anon_sym_DASH2] = ACTIONS(968), - [anon_sym_LBRACE] = ACTIONS(970), - [anon_sym_DOT_DOT] = ACTIONS(968), - [anon_sym_QMARK2] = ACTIONS(970), - [anon_sym_DOT_DOT_EQ] = ACTIONS(970), - [anon_sym_DOT_DOT_LT] = ACTIONS(970), - [anon_sym_null] = ACTIONS(970), - [anon_sym_true] = ACTIONS(970), - [anon_sym_false] = ACTIONS(970), - [aux_sym__val_number_decimal_token1] = ACTIONS(968), - [aux_sym__val_number_decimal_token2] = ACTIONS(970), - [aux_sym__val_number_decimal_token3] = ACTIONS(970), - [aux_sym__val_number_decimal_token4] = ACTIONS(970), - [aux_sym__val_number_token1] = ACTIONS(970), - [aux_sym__val_number_token2] = ACTIONS(970), - [aux_sym__val_number_token3] = ACTIONS(970), - [aux_sym__val_number_token4] = ACTIONS(970), - [aux_sym__val_number_token5] = ACTIONS(970), - [aux_sym__val_number_token6] = ACTIONS(970), - [anon_sym_0b] = ACTIONS(968), - [anon_sym_0o] = ACTIONS(968), - [anon_sym_0x] = ACTIONS(968), - [sym_val_date] = ACTIONS(970), - [anon_sym_DQUOTE] = ACTIONS(970), - [sym__str_single_quotes] = ACTIONS(970), - [sym__str_back_ticks] = ACTIONS(970), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(970), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(970), - [anon_sym_DOT2] = ACTIONS(968), - [anon_sym_err_GT] = ACTIONS(968), - [anon_sym_out_GT] = ACTIONS(968), - [anon_sym_e_GT] = ACTIONS(968), - [anon_sym_o_GT] = ACTIONS(968), - [anon_sym_err_PLUSout_GT] = ACTIONS(968), - [anon_sym_out_PLUSerr_GT] = ACTIONS(968), - [anon_sym_o_PLUSe_GT] = ACTIONS(968), - [anon_sym_e_PLUSo_GT] = ACTIONS(968), - [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(968), + [1656] = { + [sym_comment] = STATE(1656), + [ts_builtin_sym_end] = ACTIONS(954), + [sym__newline] = ACTIONS(954), + [anon_sym_SEMI] = ACTIONS(954), + [anon_sym_PIPE] = ACTIONS(954), + [anon_sym_err_GT_PIPE] = ACTIONS(954), + [anon_sym_out_GT_PIPE] = ACTIONS(954), + [anon_sym_e_GT_PIPE] = ACTIONS(954), + [anon_sym_o_GT_PIPE] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), + [anon_sym_LBRACK] = ACTIONS(954), + [anon_sym_LPAREN] = ACTIONS(954), + [anon_sym_DOLLAR] = ACTIONS(952), + [anon_sym_DASH_DASH] = ACTIONS(954), + [anon_sym_DASH2] = ACTIONS(952), + [anon_sym_LBRACE] = ACTIONS(954), + [anon_sym_DOT_DOT] = ACTIONS(952), + [anon_sym_QMARK2] = ACTIONS(4957), + [anon_sym_DOT_DOT_EQ] = ACTIONS(954), + [anon_sym_DOT_DOT_LT] = ACTIONS(954), + [anon_sym_null] = ACTIONS(954), + [anon_sym_true] = ACTIONS(954), + [anon_sym_false] = ACTIONS(954), + [aux_sym__val_number_decimal_token1] = ACTIONS(952), + [aux_sym__val_number_decimal_token2] = ACTIONS(954), + [aux_sym__val_number_decimal_token3] = ACTIONS(954), + [aux_sym__val_number_decimal_token4] = ACTIONS(954), + [aux_sym__val_number_token1] = ACTIONS(954), + [aux_sym__val_number_token2] = ACTIONS(954), + [aux_sym__val_number_token3] = ACTIONS(954), + [aux_sym__val_number_token4] = ACTIONS(954), + [aux_sym__val_number_token5] = ACTIONS(954), + [aux_sym__val_number_token6] = ACTIONS(954), + [anon_sym_0b] = ACTIONS(952), + [anon_sym_0o] = ACTIONS(952), + [anon_sym_0x] = ACTIONS(952), + [sym_val_date] = ACTIONS(954), + [anon_sym_DQUOTE] = ACTIONS(954), + [sym__str_single_quotes] = ACTIONS(954), + [sym__str_back_ticks] = ACTIONS(954), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), + [anon_sym_DOT2] = ACTIONS(952), + [anon_sym_err_GT] = ACTIONS(952), + [anon_sym_out_GT] = ACTIONS(952), + [anon_sym_e_GT] = ACTIONS(952), + [anon_sym_o_GT] = ACTIONS(952), + [anon_sym_err_PLUSout_GT] = ACTIONS(952), + [anon_sym_out_PLUSerr_GT] = ACTIONS(952), + [anon_sym_o_PLUSe_GT] = ACTIONS(952), + [anon_sym_e_PLUSo_GT] = ACTIONS(952), + [anon_sym_err_GT_GT] = ACTIONS(954), + [anon_sym_out_GT_GT] = ACTIONS(954), + [anon_sym_e_GT_GT] = ACTIONS(954), + [anon_sym_o_GT_GT] = ACTIONS(954), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), + [aux_sym_unquoted_token1] = ACTIONS(952), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(970), + [sym_raw_string_begin] = ACTIONS(954), }, - [1637] = { - [sym_comment] = STATE(1637), + [1657] = { + [sym__expr_parenthesized_immediate] = STATE(7343), + [sym_comment] = STATE(1657), + [sym__newline] = ACTIONS(4959), + [anon_sym_SEMI] = ACTIONS(4959), + [anon_sym_PIPE] = ACTIONS(4959), + [anon_sym_err_GT_PIPE] = ACTIONS(4959), + [anon_sym_out_GT_PIPE] = ACTIONS(4959), + [anon_sym_e_GT_PIPE] = ACTIONS(4959), + [anon_sym_o_GT_PIPE] = ACTIONS(4959), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4959), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4959), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4959), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4959), + [anon_sym_LBRACK] = ACTIONS(4959), + [anon_sym_LPAREN] = ACTIONS(4961), + [anon_sym_RPAREN] = ACTIONS(4959), + [anon_sym_DOLLAR] = ACTIONS(4961), + [anon_sym_DASH_DASH] = ACTIONS(4959), + [anon_sym_DASH2] = ACTIONS(4961), + [anon_sym_LBRACE] = ACTIONS(4959), + [anon_sym_DOT_DOT] = ACTIONS(4961), + [anon_sym_LPAREN2] = ACTIONS(4052), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4959), + [anon_sym_DOT_DOT_LT] = ACTIONS(4959), + [anon_sym_null] = ACTIONS(4959), + [anon_sym_true] = ACTIONS(4959), + [anon_sym_false] = ACTIONS(4959), + [aux_sym__val_number_decimal_token1] = ACTIONS(4961), + [aux_sym__val_number_decimal_token2] = ACTIONS(4959), + [aux_sym__val_number_decimal_token3] = ACTIONS(4959), + [aux_sym__val_number_decimal_token4] = ACTIONS(4959), + [aux_sym__val_number_token1] = ACTIONS(4959), + [aux_sym__val_number_token2] = ACTIONS(4959), + [aux_sym__val_number_token3] = ACTIONS(4959), + [aux_sym__val_number_token4] = ACTIONS(4959), + [aux_sym__val_number_token5] = ACTIONS(4959), + [aux_sym__val_number_token6] = ACTIONS(4959), + [anon_sym_0b] = ACTIONS(4961), + [anon_sym_0o] = ACTIONS(4961), + [anon_sym_0x] = ACTIONS(4961), + [sym_val_date] = ACTIONS(4959), + [anon_sym_DQUOTE] = ACTIONS(4959), + [sym__str_single_quotes] = ACTIONS(4959), + [sym__str_back_ticks] = ACTIONS(4959), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4959), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4959), + [anon_sym_err_GT] = ACTIONS(4961), + [anon_sym_out_GT] = ACTIONS(4961), + [anon_sym_e_GT] = ACTIONS(4961), + [anon_sym_o_GT] = ACTIONS(4961), + [anon_sym_err_PLUSout_GT] = ACTIONS(4961), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4961), + [anon_sym_o_PLUSe_GT] = ACTIONS(4961), + [anon_sym_e_PLUSo_GT] = ACTIONS(4961), + [anon_sym_err_GT_GT] = ACTIONS(4959), + [anon_sym_out_GT_GT] = ACTIONS(4959), + [anon_sym_e_GT_GT] = ACTIONS(4959), + [anon_sym_o_GT_GT] = ACTIONS(4959), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4959), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4959), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4959), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4959), + [aux_sym_unquoted_token1] = ACTIONS(4961), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4959), + }, + [1658] = { + [sym_cell_path] = STATE(2099), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1658), + [aux_sym_cell_path_repeat1] = STATE(1668), [ts_builtin_sym_end] = ACTIONS(1759), [sym__newline] = ACTIONS(1759), [anon_sym_SEMI] = ACTIONS(1759), @@ -230030,7 +231416,6 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_EQ2] = ACTIONS(1759), [anon_sym_EQ_TILDE2] = ACTIONS(1759), [anon_sym_BANG_TILDE2] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1759), [anon_sym_STAR_STAR2] = ACTIONS(1759), [anon_sym_PLUS_PLUS2] = ACTIONS(1759), [anon_sym_SLASH2] = ACTIONS(1757), @@ -230045,8 +231430,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DOT_DOT2] = ACTIONS(1757), [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4921), - [aux_sym__immediate_decimal_token2] = ACTIONS(4923), + [anon_sym_DOT2] = ACTIONS(4949), [anon_sym_err_GT] = ACTIONS(1757), [anon_sym_out_GT] = ACTIONS(1757), [anon_sym_e_GT] = ACTIONS(1757), @@ -230063,1418 +231447,881 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token2] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - }, - [1638] = { - [sym_comment] = STATE(1638), - [sym__newline] = ACTIONS(2409), - [anon_sym_SEMI] = ACTIONS(2409), - [anon_sym_PIPE] = ACTIONS(2409), - [anon_sym_err_GT_PIPE] = ACTIONS(2409), - [anon_sym_out_GT_PIPE] = ACTIONS(2409), - [anon_sym_e_GT_PIPE] = ACTIONS(2409), - [anon_sym_o_GT_PIPE] = ACTIONS(2409), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2409), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2409), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2409), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2409), - [anon_sym_RPAREN] = ACTIONS(2409), - [anon_sym_GT2] = ACTIONS(2407), - [anon_sym_DASH2] = ACTIONS(2409), - [anon_sym_in2] = ACTIONS(2409), - [anon_sym_if] = ACTIONS(2409), - [anon_sym_LBRACE] = ACTIONS(2409), - [anon_sym_RBRACE] = ACTIONS(2409), - [anon_sym_EQ_GT] = ACTIONS(2409), - [anon_sym_STAR2] = ACTIONS(2407), - [anon_sym_QMARK2] = ACTIONS(2409), - [anon_sym_and2] = ACTIONS(2409), - [anon_sym_xor2] = ACTIONS(2409), - [anon_sym_or2] = ACTIONS(2409), - [anon_sym_not_DASHin2] = ACTIONS(2409), - [anon_sym_starts_DASHwith2] = ACTIONS(2409), - [anon_sym_ends_DASHwith2] = ACTIONS(2409), - [anon_sym_EQ_EQ2] = ACTIONS(2409), - [anon_sym_BANG_EQ2] = ACTIONS(2409), - [anon_sym_LT2] = ACTIONS(2407), - [anon_sym_LT_EQ2] = ACTIONS(2409), - [anon_sym_GT_EQ2] = ACTIONS(2409), - [anon_sym_EQ_TILDE2] = ACTIONS(2409), - [anon_sym_BANG_TILDE2] = ACTIONS(2409), - [anon_sym_STAR_STAR2] = ACTIONS(2409), - [anon_sym_PLUS_PLUS2] = ACTIONS(2409), - [anon_sym_SLASH2] = ACTIONS(2407), - [anon_sym_mod2] = ACTIONS(2409), - [anon_sym_SLASH_SLASH2] = ACTIONS(2409), - [anon_sym_PLUS2] = ACTIONS(2407), - [anon_sym_bit_DASHshl2] = ACTIONS(2409), - [anon_sym_bit_DASHshr2] = ACTIONS(2409), - [anon_sym_bit_DASHand2] = ACTIONS(2409), - [anon_sym_bit_DASHxor2] = ACTIONS(2409), - [anon_sym_bit_DASHor2] = ACTIONS(2409), - [anon_sym_COLON2] = ACTIONS(2409), - [anon_sym_DOT2] = ACTIONS(2409), - [anon_sym_err_GT] = ACTIONS(2407), - [anon_sym_out_GT] = ACTIONS(2407), - [anon_sym_e_GT] = ACTIONS(2407), - [anon_sym_o_GT] = ACTIONS(2407), - [anon_sym_err_PLUSout_GT] = ACTIONS(2407), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2407), - [anon_sym_o_PLUSe_GT] = ACTIONS(2407), - [anon_sym_e_PLUSo_GT] = ACTIONS(2407), - [anon_sym_err_GT_GT] = ACTIONS(2409), - [anon_sym_out_GT_GT] = ACTIONS(2409), - [anon_sym_e_GT_GT] = ACTIONS(2409), - [anon_sym_o_GT_GT] = ACTIONS(2409), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2409), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2409), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2409), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2409), - [anon_sym_POUND] = ACTIONS(251), - }, - [1639] = { - [sym_comment] = STATE(1639), - [ts_builtin_sym_end] = ACTIONS(1873), - [sym__newline] = ACTIONS(1873), - [anon_sym_SEMI] = ACTIONS(1873), - [anon_sym_PIPE] = ACTIONS(1873), - [anon_sym_err_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_GT_PIPE] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1873), - [anon_sym_LBRACK] = ACTIONS(1873), - [anon_sym_LPAREN] = ACTIONS(1865), - [anon_sym_DOLLAR] = ACTIONS(1865), - [anon_sym_DASH_DASH] = ACTIONS(1873), - [anon_sym_DASH2] = ACTIONS(1865), - [anon_sym_LBRACE] = ACTIONS(1873), - [anon_sym_DOT_DOT] = ACTIONS(1865), - [anon_sym_LPAREN2] = ACTIONS(1867), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1873), - [anon_sym_DOT_DOT_LT] = ACTIONS(1873), - [anon_sym_null] = ACTIONS(1873), - [anon_sym_true] = ACTIONS(1873), - [anon_sym_false] = ACTIONS(1873), - [aux_sym__val_number_decimal_token1] = ACTIONS(1865), - [aux_sym__val_number_decimal_token2] = ACTIONS(1873), - [aux_sym__val_number_decimal_token3] = ACTIONS(1873), - [aux_sym__val_number_decimal_token4] = ACTIONS(1873), - [aux_sym__val_number_token1] = ACTIONS(1873), - [aux_sym__val_number_token2] = ACTIONS(1873), - [aux_sym__val_number_token3] = ACTIONS(1873), - [aux_sym__val_number_token4] = ACTIONS(1873), - [aux_sym__val_number_token5] = ACTIONS(1873), - [aux_sym__val_number_token6] = ACTIONS(1873), - [anon_sym_0b] = ACTIONS(1865), - [anon_sym_0o] = ACTIONS(1865), - [anon_sym_0x] = ACTIONS(1865), - [sym_val_date] = ACTIONS(1873), - [anon_sym_DQUOTE] = ACTIONS(1873), - [sym__str_single_quotes] = ACTIONS(1873), - [sym__str_back_ticks] = ACTIONS(1873), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1873), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1873), - [anon_sym_err_GT] = ACTIONS(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(1873), - [anon_sym_out_GT_GT] = ACTIONS(1873), - [anon_sym_e_GT_GT] = ACTIONS(1873), - [anon_sym_o_GT_GT] = ACTIONS(1873), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1873), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1873), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1873), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1873), - [aux_sym_unquoted_token1] = ACTIONS(1865), - [aux_sym_unquoted_token2] = ACTIONS(1875), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1873), - }, - [1640] = { - [sym_comment] = STATE(1640), - [sym__newline] = ACTIONS(4925), - [anon_sym_SEMI] = ACTIONS(4925), - [anon_sym_PIPE] = ACTIONS(4925), - [anon_sym_err_GT_PIPE] = ACTIONS(4925), - [anon_sym_out_GT_PIPE] = ACTIONS(4925), - [anon_sym_e_GT_PIPE] = ACTIONS(4925), - [anon_sym_o_GT_PIPE] = ACTIONS(4925), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4925), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4925), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4925), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4925), - [anon_sym_LBRACK] = ACTIONS(4925), - [anon_sym_LPAREN] = ACTIONS(4925), - [anon_sym_RPAREN] = ACTIONS(4925), - [anon_sym_DOLLAR] = ACTIONS(4927), - [anon_sym_DASH_DASH] = ACTIONS(4925), - [anon_sym_DASH2] = ACTIONS(4927), - [anon_sym_LBRACE] = ACTIONS(4925), - [anon_sym_RBRACE] = ACTIONS(4925), - [anon_sym_DOT_DOT] = ACTIONS(4927), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4925), - [anon_sym_DOT_DOT_LT] = ACTIONS(4925), - [anon_sym_null] = ACTIONS(4925), - [anon_sym_true] = ACTIONS(4925), - [anon_sym_false] = ACTIONS(4925), - [aux_sym__val_number_decimal_token1] = ACTIONS(4927), - [aux_sym__val_number_decimal_token2] = ACTIONS(4925), - [aux_sym__val_number_decimal_token3] = ACTIONS(4925), - [aux_sym__val_number_decimal_token4] = ACTIONS(4925), - [aux_sym__val_number_token1] = ACTIONS(4925), - [aux_sym__val_number_token2] = ACTIONS(4925), - [aux_sym__val_number_token3] = ACTIONS(4925), - [aux_sym__val_number_token4] = ACTIONS(4925), - [aux_sym__val_number_token5] = ACTIONS(4925), - [aux_sym__val_number_token6] = ACTIONS(4925), - [anon_sym_0b] = ACTIONS(4927), - [anon_sym_0o] = ACTIONS(4927), - [anon_sym_0x] = ACTIONS(4927), - [sym_val_date] = ACTIONS(4925), - [anon_sym_DQUOTE] = ACTIONS(4925), - [sym__str_single_quotes] = ACTIONS(4925), - [sym__str_back_ticks] = ACTIONS(4925), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4925), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4925), - [anon_sym_err_GT] = ACTIONS(4927), - [anon_sym_out_GT] = ACTIONS(4927), - [anon_sym_e_GT] = ACTIONS(4927), - [anon_sym_o_GT] = ACTIONS(4927), - [anon_sym_err_PLUSout_GT] = ACTIONS(4927), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4927), - [anon_sym_o_PLUSe_GT] = ACTIONS(4927), - [anon_sym_e_PLUSo_GT] = ACTIONS(4927), - [anon_sym_err_GT_GT] = ACTIONS(4925), - [anon_sym_out_GT_GT] = ACTIONS(4925), - [anon_sym_e_GT_GT] = ACTIONS(4925), - [anon_sym_o_GT_GT] = ACTIONS(4925), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4925), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4925), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4925), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4925), - [anon_sym_EQ2] = ACTIONS(4929), - [aux_sym_unquoted_token1] = ACTIONS(4927), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4925), - }, - [1641] = { - [sym_comment] = STATE(1641), - [ts_builtin_sym_end] = ACTIONS(4878), - [sym__newline] = ACTIONS(4878), - [anon_sym_SEMI] = ACTIONS(4878), - [anon_sym_PIPE] = ACTIONS(4878), - [anon_sym_err_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_GT_PIPE] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4878), - [anon_sym_LBRACK] = ACTIONS(4878), - [anon_sym_LPAREN] = ACTIONS(4878), - [anon_sym_DOLLAR] = ACTIONS(4880), - [anon_sym_DASH_DASH] = ACTIONS(4880), - [anon_sym_DASH2] = ACTIONS(4880), - [anon_sym_LBRACE] = ACTIONS(4878), - [anon_sym_DOT_DOT] = ACTIONS(4880), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4878), - [anon_sym_DOT_DOT_LT] = ACTIONS(4878), - [anon_sym_null] = ACTIONS(4880), - [anon_sym_true] = ACTIONS(4880), - [anon_sym_false] = ACTIONS(4880), - [aux_sym__val_number_decimal_token1] = ACTIONS(4880), - [aux_sym__val_number_decimal_token2] = ACTIONS(4880), - [aux_sym__val_number_decimal_token3] = ACTIONS(4878), - [aux_sym__val_number_decimal_token4] = ACTIONS(4878), - [aux_sym__val_number_token1] = ACTIONS(4880), - [aux_sym__val_number_token2] = ACTIONS(4880), - [aux_sym__val_number_token3] = ACTIONS(4880), - [aux_sym__val_number_token4] = ACTIONS(4880), - [aux_sym__val_number_token5] = ACTIONS(4880), - [aux_sym__val_number_token6] = ACTIONS(4880), - [anon_sym_0b] = ACTIONS(4880), - [anon_sym_0o] = ACTIONS(4880), - [anon_sym_0x] = ACTIONS(4880), - [sym_val_date] = ACTIONS(4880), - [anon_sym_DQUOTE] = ACTIONS(4878), - [sym__str_single_quotes] = ACTIONS(4878), - [sym__str_back_ticks] = ACTIONS(4878), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4878), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4878), - [anon_sym_err_GT] = ACTIONS(4880), - [anon_sym_out_GT] = ACTIONS(4880), - [anon_sym_e_GT] = ACTIONS(4880), - [anon_sym_o_GT] = ACTIONS(4880), - [anon_sym_err_PLUSout_GT] = ACTIONS(4880), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4880), - [anon_sym_o_PLUSe_GT] = ACTIONS(4880), - [anon_sym_e_PLUSo_GT] = ACTIONS(4880), - [anon_sym_err_GT_GT] = ACTIONS(4878), - [anon_sym_out_GT_GT] = ACTIONS(4878), - [anon_sym_e_GT_GT] = ACTIONS(4878), - [anon_sym_o_GT_GT] = ACTIONS(4878), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4878), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4878), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4878), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4878), - [anon_sym_EQ2] = ACTIONS(4931), - [sym_short_flag_identifier] = ACTIONS(4933), - [aux_sym_unquoted_token1] = ACTIONS(4880), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4878), }, - [1642] = { - [sym_comment] = STATE(1642), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4935), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4937), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), + [1659] = { + [sym_comment] = STATE(1659), + [sym__newline] = ACTIONS(2041), + [anon_sym_SEMI] = ACTIONS(2041), + [anon_sym_PIPE] = ACTIONS(2041), + [anon_sym_err_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_GT_PIPE] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2041), + [anon_sym_RPAREN] = ACTIONS(2041), + [anon_sym_GT2] = ACTIONS(2039), + [anon_sym_DASH2] = ACTIONS(2041), + [anon_sym_in2] = ACTIONS(2041), + [anon_sym_if] = ACTIONS(2041), + [anon_sym_LBRACE] = ACTIONS(2041), + [anon_sym_RBRACE] = ACTIONS(2041), + [anon_sym_EQ_GT] = ACTIONS(2041), + [anon_sym_STAR2] = ACTIONS(2039), + [anon_sym_and2] = ACTIONS(2041), + [anon_sym_xor2] = ACTIONS(2041), + [anon_sym_or2] = ACTIONS(2041), + [anon_sym_not_DASHin2] = ACTIONS(2041), + [anon_sym_starts_DASHwith2] = ACTIONS(2041), + [anon_sym_ends_DASHwith2] = ACTIONS(2041), + [anon_sym_EQ_EQ2] = ACTIONS(2041), + [anon_sym_BANG_EQ2] = ACTIONS(2041), + [anon_sym_LT2] = ACTIONS(2039), + [anon_sym_LT_EQ2] = ACTIONS(2041), + [anon_sym_GT_EQ2] = ACTIONS(2041), + [anon_sym_EQ_TILDE2] = ACTIONS(2041), + [anon_sym_BANG_TILDE2] = ACTIONS(2041), + [anon_sym_STAR_STAR2] = ACTIONS(2041), + [anon_sym_PLUS_PLUS2] = ACTIONS(2041), + [anon_sym_SLASH2] = ACTIONS(2039), + [anon_sym_mod2] = ACTIONS(2041), + [anon_sym_SLASH_SLASH2] = ACTIONS(2041), + [anon_sym_PLUS2] = ACTIONS(2039), + [anon_sym_bit_DASHshl2] = ACTIONS(2041), + [anon_sym_bit_DASHshr2] = ACTIONS(2041), + [anon_sym_bit_DASHand2] = ACTIONS(2041), + [anon_sym_bit_DASHxor2] = ACTIONS(2041), + [anon_sym_bit_DASHor2] = ACTIONS(2041), + [anon_sym_DOT_DOT2] = ACTIONS(2039), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(2041), + [anon_sym_DOT_DOT_LT2] = ACTIONS(2041), + [anon_sym_err_GT] = ACTIONS(2039), + [anon_sym_out_GT] = ACTIONS(2039), + [anon_sym_e_GT] = ACTIONS(2039), + [anon_sym_o_GT] = ACTIONS(2039), + [anon_sym_err_PLUSout_GT] = ACTIONS(2039), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2039), + [anon_sym_o_PLUSe_GT] = ACTIONS(2039), + [anon_sym_e_PLUSo_GT] = ACTIONS(2039), + [anon_sym_err_GT_GT] = ACTIONS(2041), + [anon_sym_out_GT_GT] = ACTIONS(2041), + [anon_sym_e_GT_GT] = ACTIONS(2041), + [anon_sym_o_GT_GT] = ACTIONS(2041), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2041), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2041), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2041), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2041), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), }, - [1643] = { - [sym_comment] = STATE(1643), - [sym__newline] = ACTIONS(4939), - [anon_sym_SEMI] = ACTIONS(4939), - [anon_sym_PIPE] = ACTIONS(4939), - [anon_sym_err_GT_PIPE] = ACTIONS(4939), - [anon_sym_out_GT_PIPE] = ACTIONS(4939), - [anon_sym_e_GT_PIPE] = ACTIONS(4939), - [anon_sym_o_GT_PIPE] = ACTIONS(4939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4939), - [anon_sym_LBRACK] = ACTIONS(4939), - [anon_sym_LPAREN] = ACTIONS(4941), - [anon_sym_RPAREN] = ACTIONS(4939), - [anon_sym_DOLLAR] = ACTIONS(4941), - [anon_sym_DASH_DASH] = ACTIONS(4939), - [anon_sym_DASH2] = ACTIONS(4941), - [anon_sym_LBRACE] = ACTIONS(4939), - [anon_sym_RBRACE] = ACTIONS(4939), - [anon_sym_DOT_DOT] = ACTIONS(4941), - [anon_sym_LPAREN2] = ACTIONS(4939), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4939), - [anon_sym_DOT_DOT_LT] = ACTIONS(4939), - [anon_sym_null] = ACTIONS(4939), - [anon_sym_true] = ACTIONS(4939), - [anon_sym_false] = ACTIONS(4939), - [aux_sym__val_number_decimal_token1] = ACTIONS(4941), - [aux_sym__val_number_decimal_token2] = ACTIONS(4939), - [aux_sym__val_number_decimal_token3] = ACTIONS(4939), - [aux_sym__val_number_decimal_token4] = ACTIONS(4939), - [aux_sym__val_number_token1] = ACTIONS(4939), - [aux_sym__val_number_token2] = ACTIONS(4939), - [aux_sym__val_number_token3] = ACTIONS(4939), - [aux_sym__val_number_token4] = ACTIONS(4939), - [aux_sym__val_number_token5] = ACTIONS(4939), - [aux_sym__val_number_token6] = ACTIONS(4939), - [anon_sym_0b] = ACTIONS(4941), - [anon_sym_0o] = ACTIONS(4941), - [anon_sym_0x] = ACTIONS(4941), - [sym_val_date] = ACTIONS(4939), - [anon_sym_DQUOTE] = ACTIONS(4939), - [sym__str_single_quotes] = ACTIONS(4939), - [sym__str_back_ticks] = ACTIONS(4939), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4939), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4939), - [anon_sym_err_GT] = ACTIONS(4941), - [anon_sym_out_GT] = ACTIONS(4941), - [anon_sym_e_GT] = ACTIONS(4941), - [anon_sym_o_GT] = ACTIONS(4941), - [anon_sym_err_PLUSout_GT] = ACTIONS(4941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4941), - [anon_sym_o_PLUSe_GT] = ACTIONS(4941), - [anon_sym_e_PLUSo_GT] = ACTIONS(4941), - [anon_sym_err_GT_GT] = ACTIONS(4939), - [anon_sym_out_GT_GT] = ACTIONS(4939), - [anon_sym_e_GT_GT] = ACTIONS(4939), - [anon_sym_o_GT_GT] = ACTIONS(4939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4939), - [aux_sym_unquoted_token1] = ACTIONS(4941), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4939), - }, - [1644] = { - [sym_comment] = STATE(1644), - [ts_builtin_sym_end] = ACTIONS(978), - [sym__newline] = ACTIONS(978), - [anon_sym_SEMI] = ACTIONS(978), - [anon_sym_PIPE] = ACTIONS(978), - [anon_sym_err_GT_PIPE] = ACTIONS(978), - [anon_sym_out_GT_PIPE] = ACTIONS(978), - [anon_sym_e_GT_PIPE] = ACTIONS(978), - [anon_sym_o_GT_PIPE] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(978), - [anon_sym_LBRACK] = ACTIONS(978), - [anon_sym_LPAREN] = ACTIONS(978), - [anon_sym_DOLLAR] = ACTIONS(976), - [anon_sym_DASH_DASH] = ACTIONS(978), - [anon_sym_DASH2] = ACTIONS(976), - [anon_sym_LBRACE] = ACTIONS(978), - [anon_sym_DOT_DOT] = ACTIONS(976), - [anon_sym_QMARK2] = ACTIONS(978), - [anon_sym_DOT_DOT_EQ] = ACTIONS(978), - [anon_sym_DOT_DOT_LT] = ACTIONS(978), - [anon_sym_null] = ACTIONS(978), - [anon_sym_true] = ACTIONS(978), - [anon_sym_false] = ACTIONS(978), - [aux_sym__val_number_decimal_token1] = ACTIONS(976), - [aux_sym__val_number_decimal_token2] = ACTIONS(978), - [aux_sym__val_number_decimal_token3] = ACTIONS(978), - [aux_sym__val_number_decimal_token4] = ACTIONS(978), - [aux_sym__val_number_token1] = ACTIONS(978), - [aux_sym__val_number_token2] = ACTIONS(978), - [aux_sym__val_number_token3] = ACTIONS(978), - [aux_sym__val_number_token4] = ACTIONS(978), - [aux_sym__val_number_token5] = ACTIONS(978), - [aux_sym__val_number_token6] = ACTIONS(978), - [anon_sym_0b] = ACTIONS(976), - [anon_sym_0o] = ACTIONS(976), - [anon_sym_0x] = ACTIONS(976), - [sym_val_date] = ACTIONS(978), - [anon_sym_DQUOTE] = ACTIONS(978), - [sym__str_single_quotes] = ACTIONS(978), - [sym__str_back_ticks] = ACTIONS(978), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(978), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(978), - [anon_sym_DOT2] = ACTIONS(976), - [anon_sym_err_GT] = ACTIONS(976), - [anon_sym_out_GT] = ACTIONS(976), - [anon_sym_e_GT] = ACTIONS(976), - [anon_sym_o_GT] = ACTIONS(976), - [anon_sym_err_PLUSout_GT] = ACTIONS(976), - [anon_sym_out_PLUSerr_GT] = ACTIONS(976), - [anon_sym_o_PLUSe_GT] = ACTIONS(976), - [anon_sym_e_PLUSo_GT] = ACTIONS(976), - [anon_sym_err_GT_GT] = ACTIONS(978), - [anon_sym_out_GT_GT] = ACTIONS(978), - [anon_sym_e_GT_GT] = ACTIONS(978), - [anon_sym_o_GT_GT] = ACTIONS(978), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(978), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(978), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(978), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(978), - [aux_sym_unquoted_token1] = ACTIONS(976), + [1660] = { + [sym_comment] = STATE(1660), + [ts_builtin_sym_end] = ACTIONS(1733), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_GT2] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_STAR2] = ACTIONS(1731), + [anon_sym_and2] = ACTIONS(1733), + [anon_sym_xor2] = ACTIONS(1733), + [anon_sym_or2] = ACTIONS(1733), + [anon_sym_not_DASHin2] = ACTIONS(1733), + [anon_sym_starts_DASHwith2] = ACTIONS(1733), + [anon_sym_ends_DASHwith2] = ACTIONS(1733), + [anon_sym_EQ_EQ2] = ACTIONS(1733), + [anon_sym_BANG_EQ2] = ACTIONS(1733), + [anon_sym_LT2] = ACTIONS(1731), + [anon_sym_LT_EQ2] = ACTIONS(1733), + [anon_sym_GT_EQ2] = ACTIONS(1733), + [anon_sym_EQ_TILDE2] = ACTIONS(1733), + [anon_sym_BANG_TILDE2] = ACTIONS(1733), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_STAR_STAR2] = ACTIONS(1733), + [anon_sym_PLUS_PLUS2] = ACTIONS(1733), + [anon_sym_SLASH2] = ACTIONS(1731), + [anon_sym_mod2] = ACTIONS(1733), + [anon_sym_SLASH_SLASH2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_bit_DASHshl2] = ACTIONS(1733), + [anon_sym_bit_DASHshr2] = ACTIONS(1733), + [anon_sym_bit_DASHand2] = ACTIONS(1733), + [anon_sym_bit_DASHxor2] = ACTIONS(1733), + [anon_sym_bit_DASHor2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [aux_sym__immediate_decimal_token1] = ACTIONS(4963), + [aux_sym__immediate_decimal_token2] = ACTIONS(4965), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(978), }, - [1645] = { - [sym_comment] = STATE(1645), - [sym__newline] = ACTIONS(4943), - [anon_sym_SEMI] = ACTIONS(4943), - [anon_sym_PIPE] = ACTIONS(4943), - [anon_sym_err_GT_PIPE] = ACTIONS(4943), - [anon_sym_out_GT_PIPE] = ACTIONS(4943), - [anon_sym_e_GT_PIPE] = ACTIONS(4943), - [anon_sym_o_GT_PIPE] = ACTIONS(4943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4943), - [anon_sym_LBRACK] = ACTIONS(4943), - [anon_sym_LPAREN] = ACTIONS(4943), - [anon_sym_RPAREN] = ACTIONS(4943), - [anon_sym_DOLLAR] = ACTIONS(4945), - [anon_sym_DASH_DASH] = ACTIONS(4943), - [anon_sym_DASH2] = ACTIONS(4945), - [anon_sym_LBRACE] = ACTIONS(4943), - [anon_sym_RBRACE] = ACTIONS(4943), - [anon_sym_DOT_DOT] = ACTIONS(4945), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4943), - [anon_sym_DOT_DOT_LT] = ACTIONS(4943), - [anon_sym_null] = ACTIONS(4943), - [anon_sym_true] = ACTIONS(4943), - [anon_sym_false] = ACTIONS(4943), - [aux_sym__val_number_decimal_token1] = ACTIONS(4945), - [aux_sym__val_number_decimal_token2] = ACTIONS(4943), - [aux_sym__val_number_decimal_token3] = ACTIONS(4943), - [aux_sym__val_number_decimal_token4] = ACTIONS(4943), - [aux_sym__val_number_token1] = ACTIONS(4943), - [aux_sym__val_number_token2] = ACTIONS(4943), - [aux_sym__val_number_token3] = ACTIONS(4943), - [aux_sym__val_number_token4] = ACTIONS(4943), - [aux_sym__val_number_token5] = ACTIONS(4943), - [aux_sym__val_number_token6] = ACTIONS(4943), - [anon_sym_0b] = ACTIONS(4945), - [anon_sym_0o] = ACTIONS(4945), - [anon_sym_0x] = ACTIONS(4945), - [sym_val_date] = ACTIONS(4943), - [anon_sym_DQUOTE] = ACTIONS(4943), - [sym__str_single_quotes] = ACTIONS(4943), - [sym__str_back_ticks] = ACTIONS(4943), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4943), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4943), - [anon_sym_err_GT] = ACTIONS(4945), - [anon_sym_out_GT] = ACTIONS(4945), - [anon_sym_e_GT] = ACTIONS(4945), - [anon_sym_o_GT] = ACTIONS(4945), - [anon_sym_err_PLUSout_GT] = ACTIONS(4945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4945), - [anon_sym_o_PLUSe_GT] = ACTIONS(4945), - [anon_sym_e_PLUSo_GT] = ACTIONS(4945), - [anon_sym_err_GT_GT] = ACTIONS(4943), - [anon_sym_out_GT_GT] = ACTIONS(4943), - [anon_sym_e_GT_GT] = ACTIONS(4943), - [anon_sym_o_GT_GT] = ACTIONS(4943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4943), - [anon_sym_EQ2] = ACTIONS(4947), - [aux_sym_unquoted_token1] = ACTIONS(4945), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4943), - }, - [1646] = { - [sym_comment] = STATE(1646), - [sym__newline] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_err_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_GT_PIPE] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2247), - [anon_sym_RPAREN] = ACTIONS(2247), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_RBRACE] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [aux_sym__val_number_token4] = ACTIONS(2245), - [aux_sym__val_number_token5] = ACTIONS(2245), - [aux_sym__val_number_token6] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [aux_sym_unquoted_token1] = ACTIONS(2245), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2247), - }, - [1647] = { - [sym_comment] = STATE(1647), - [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(1018), - [anon_sym_DASH2] = ACTIONS(1020), - [anon_sym_in2] = ACTIONS(1020), - [anon_sym_if] = ACTIONS(1020), - [anon_sym_LBRACE] = ACTIONS(1020), - [anon_sym_RBRACE] = ACTIONS(1020), - [anon_sym_EQ_GT] = ACTIONS(1020), - [anon_sym_STAR2] = ACTIONS(1018), - [anon_sym_and2] = ACTIONS(1020), - [anon_sym_xor2] = ACTIONS(1020), - [anon_sym_or2] = ACTIONS(1020), - [anon_sym_not_DASHin2] = ACTIONS(1020), - [anon_sym_starts_DASHwith2] = ACTIONS(1020), - [anon_sym_ends_DASHwith2] = ACTIONS(1020), - [anon_sym_EQ_EQ2] = ACTIONS(1020), - [anon_sym_BANG_EQ2] = ACTIONS(1020), - [anon_sym_LT2] = ACTIONS(1018), - [anon_sym_LT_EQ2] = ACTIONS(1020), - [anon_sym_GT_EQ2] = ACTIONS(1020), - [anon_sym_EQ_TILDE2] = ACTIONS(1020), - [anon_sym_BANG_TILDE2] = ACTIONS(1020), - [anon_sym_STAR_STAR2] = ACTIONS(1020), - [anon_sym_PLUS_PLUS2] = ACTIONS(1020), - [anon_sym_SLASH2] = ACTIONS(1018), - [anon_sym_mod2] = ACTIONS(1020), - [anon_sym_SLASH_SLASH2] = ACTIONS(1020), - [anon_sym_PLUS2] = ACTIONS(1018), - [anon_sym_bit_DASHshl2] = ACTIONS(1020), - [anon_sym_bit_DASHshr2] = ACTIONS(1020), - [anon_sym_bit_DASHand2] = ACTIONS(1020), - [anon_sym_bit_DASHxor2] = ACTIONS(1020), - [anon_sym_bit_DASHor2] = ACTIONS(1020), - [anon_sym_DOT_DOT2] = ACTIONS(1018), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), - [anon_sym_err_GT] = ACTIONS(1018), - [anon_sym_out_GT] = ACTIONS(1018), - [anon_sym_e_GT] = ACTIONS(1018), - [anon_sym_o_GT] = ACTIONS(1018), - [anon_sym_err_PLUSout_GT] = ACTIONS(1018), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), - [anon_sym_o_PLUSe_GT] = ACTIONS(1018), - [anon_sym_e_PLUSo_GT] = ACTIONS(1018), - [anon_sym_err_GT_GT] = ACTIONS(1020), - [anon_sym_out_GT_GT] = ACTIONS(1020), - [anon_sym_e_GT_GT] = ACTIONS(1020), - [anon_sym_o_GT_GT] = ACTIONS(1020), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), + [1661] = { + [sym_comment] = STATE(1661), + [ts_builtin_sym_end] = ACTIONS(1729), + [sym__newline] = ACTIONS(1729), + [anon_sym_SEMI] = ACTIONS(1729), + [anon_sym_PIPE] = ACTIONS(1729), + [anon_sym_err_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_GT_PIPE] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1729), + [anon_sym_GT2] = ACTIONS(1727), + [anon_sym_DASH2] = ACTIONS(1729), + [anon_sym_in2] = ACTIONS(1729), + [anon_sym_STAR2] = ACTIONS(1727), + [anon_sym_and2] = ACTIONS(1729), + [anon_sym_xor2] = ACTIONS(1729), + [anon_sym_or2] = ACTIONS(1729), + [anon_sym_not_DASHin2] = ACTIONS(1729), + [anon_sym_starts_DASHwith2] = ACTIONS(1729), + [anon_sym_ends_DASHwith2] = ACTIONS(1729), + [anon_sym_EQ_EQ2] = ACTIONS(1729), + [anon_sym_BANG_EQ2] = ACTIONS(1729), + [anon_sym_LT2] = ACTIONS(1727), + [anon_sym_LT_EQ2] = ACTIONS(1729), + [anon_sym_GT_EQ2] = ACTIONS(1729), + [anon_sym_EQ_TILDE2] = ACTIONS(1729), + [anon_sym_BANG_TILDE2] = ACTIONS(1729), + [anon_sym_LPAREN2] = ACTIONS(1729), + [anon_sym_STAR_STAR2] = ACTIONS(1729), + [anon_sym_PLUS_PLUS2] = ACTIONS(1729), + [anon_sym_SLASH2] = ACTIONS(1727), + [anon_sym_mod2] = ACTIONS(1729), + [anon_sym_SLASH_SLASH2] = ACTIONS(1729), + [anon_sym_PLUS2] = ACTIONS(1727), + [anon_sym_bit_DASHshl2] = ACTIONS(1729), + [anon_sym_bit_DASHshr2] = ACTIONS(1729), + [anon_sym_bit_DASHand2] = ACTIONS(1729), + [anon_sym_bit_DASHxor2] = ACTIONS(1729), + [anon_sym_bit_DASHor2] = ACTIONS(1729), + [anon_sym_DOT_DOT2] = ACTIONS(1727), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1729), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1729), + [sym_filesize_unit] = ACTIONS(1727), + [sym_duration_unit] = ACTIONS(1729), + [anon_sym_err_GT] = ACTIONS(1727), + [anon_sym_out_GT] = ACTIONS(1727), + [anon_sym_e_GT] = ACTIONS(1727), + [anon_sym_o_GT] = ACTIONS(1727), + [anon_sym_err_PLUSout_GT] = ACTIONS(1727), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1727), + [anon_sym_o_PLUSe_GT] = ACTIONS(1727), + [anon_sym_e_PLUSo_GT] = ACTIONS(1727), + [anon_sym_err_GT_GT] = ACTIONS(1729), + [anon_sym_out_GT_GT] = ACTIONS(1729), + [anon_sym_e_GT_GT] = ACTIONS(1729), + [anon_sym_o_GT_GT] = ACTIONS(1729), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1729), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1729), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1729), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1729), + [aux_sym_unquoted_token2] = ACTIONS(1727), [anon_sym_POUND] = ACTIONS(251), }, - [1648] = { - [sym_comment] = STATE(1648), - [sym__newline] = ACTIONS(2322), - [anon_sym_SEMI] = ACTIONS(2322), - [anon_sym_PIPE] = ACTIONS(2322), - [anon_sym_err_GT_PIPE] = ACTIONS(2322), - [anon_sym_out_GT_PIPE] = ACTIONS(2322), - [anon_sym_e_GT_PIPE] = ACTIONS(2322), - [anon_sym_o_GT_PIPE] = ACTIONS(2322), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2322), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2322), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2322), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2322), - [anon_sym_LBRACK] = ACTIONS(2318), - [anon_sym_LPAREN] = ACTIONS(2322), - [anon_sym_RPAREN] = ACTIONS(2322), - [anon_sym_DOLLAR] = ACTIONS(2318), - [anon_sym_DASH_DASH] = ACTIONS(2322), - [anon_sym_DASH2] = ACTIONS(2318), - [anon_sym_LBRACE] = ACTIONS(2322), - [anon_sym_RBRACE] = ACTIONS(2322), - [anon_sym_DOT_DOT] = ACTIONS(2318), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2322), - [anon_sym_DOT_DOT_LT] = ACTIONS(2322), - [anon_sym_null] = ACTIONS(2322), - [anon_sym_true] = ACTIONS(2322), - [anon_sym_false] = ACTIONS(2322), - [aux_sym__val_number_decimal_token1] = ACTIONS(2318), - [aux_sym__val_number_decimal_token2] = ACTIONS(2322), - [aux_sym__val_number_decimal_token3] = ACTIONS(2322), - [aux_sym__val_number_decimal_token4] = ACTIONS(2322), - [aux_sym__val_number_token1] = ACTIONS(2322), - [aux_sym__val_number_token2] = ACTIONS(2322), - [aux_sym__val_number_token3] = ACTIONS(2322), - [aux_sym__val_number_token4] = ACTIONS(2322), - [aux_sym__val_number_token5] = ACTIONS(2322), - [aux_sym__val_number_token6] = ACTIONS(2322), - [anon_sym_0b] = ACTIONS(2318), - [anon_sym_0o] = ACTIONS(2318), - [anon_sym_0x] = ACTIONS(2318), - [anon_sym_LBRACK2] = ACTIONS(4949), - [sym_val_date] = ACTIONS(2322), - [anon_sym_DQUOTE] = ACTIONS(2322), - [sym__str_single_quotes] = ACTIONS(2322), - [sym__str_back_ticks] = ACTIONS(2322), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2322), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2322), - [anon_sym_err_GT] = ACTIONS(2318), - [anon_sym_out_GT] = ACTIONS(2318), - [anon_sym_e_GT] = ACTIONS(2318), - [anon_sym_o_GT] = ACTIONS(2318), - [anon_sym_err_PLUSout_GT] = ACTIONS(2318), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2318), - [anon_sym_o_PLUSe_GT] = ACTIONS(2318), - [anon_sym_e_PLUSo_GT] = ACTIONS(2318), - [anon_sym_err_GT_GT] = ACTIONS(2322), - [anon_sym_out_GT_GT] = ACTIONS(2322), - [anon_sym_e_GT_GT] = ACTIONS(2322), - [anon_sym_o_GT_GT] = ACTIONS(2322), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2322), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2322), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2322), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2322), - [aux_sym_unquoted_token1] = ACTIONS(2318), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2322), - }, - [1649] = { - [sym_comment] = STATE(1649), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_RPAREN] = ACTIONS(1759), - [anon_sym_GT2] = ACTIONS(1757), - [anon_sym_DASH2] = ACTIONS(1759), - [anon_sym_in2] = ACTIONS(1759), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_RBRACE] = ACTIONS(1759), - [anon_sym_STAR2] = ACTIONS(1757), - [anon_sym_and2] = ACTIONS(1759), - [anon_sym_xor2] = ACTIONS(1759), - [anon_sym_or2] = ACTIONS(1759), - [anon_sym_not_DASHin2] = ACTIONS(1759), - [anon_sym_starts_DASHwith2] = ACTIONS(1759), - [anon_sym_ends_DASHwith2] = ACTIONS(1759), - [anon_sym_EQ_EQ2] = ACTIONS(1759), - [anon_sym_BANG_EQ2] = ACTIONS(1759), - [anon_sym_LT2] = ACTIONS(1757), - [anon_sym_LT_EQ2] = ACTIONS(1759), - [anon_sym_GT_EQ2] = ACTIONS(1759), - [anon_sym_EQ_TILDE2] = ACTIONS(1759), - [anon_sym_BANG_TILDE2] = ACTIONS(1759), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_STAR_STAR2] = ACTIONS(1759), - [anon_sym_PLUS_PLUS2] = ACTIONS(1759), - [anon_sym_SLASH2] = ACTIONS(1757), - [anon_sym_mod2] = ACTIONS(1759), - [anon_sym_SLASH_SLASH2] = ACTIONS(1759), - [anon_sym_PLUS2] = ACTIONS(1757), - [anon_sym_bit_DASHshl2] = ACTIONS(1759), - [anon_sym_bit_DASHshr2] = ACTIONS(1759), - [anon_sym_bit_DASHand2] = ACTIONS(1759), - [anon_sym_bit_DASHxor2] = ACTIONS(1759), - [anon_sym_bit_DASHor2] = ACTIONS(1759), - [anon_sym_DOT_DOT2] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token2] = ACTIONS(1757), + [1662] = { + [sym_comment] = STATE(1662), + [sym__newline] = ACTIONS(2451), + [anon_sym_SEMI] = ACTIONS(2451), + [anon_sym_PIPE] = ACTIONS(2451), + [anon_sym_err_GT_PIPE] = ACTIONS(2451), + [anon_sym_out_GT_PIPE] = ACTIONS(2451), + [anon_sym_e_GT_PIPE] = ACTIONS(2451), + [anon_sym_o_GT_PIPE] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2451), + [anon_sym_RPAREN] = ACTIONS(2451), + [anon_sym_GT2] = ACTIONS(2449), + [anon_sym_DASH2] = ACTIONS(2451), + [anon_sym_in2] = ACTIONS(2451), + [anon_sym_if] = ACTIONS(2451), + [anon_sym_LBRACE] = ACTIONS(2451), + [anon_sym_RBRACE] = ACTIONS(2451), + [anon_sym_EQ_GT] = ACTIONS(2451), + [anon_sym_STAR2] = ACTIONS(2449), + [anon_sym_QMARK2] = ACTIONS(2451), + [anon_sym_and2] = ACTIONS(2451), + [anon_sym_xor2] = ACTIONS(2451), + [anon_sym_or2] = ACTIONS(2451), + [anon_sym_not_DASHin2] = ACTIONS(2451), + [anon_sym_starts_DASHwith2] = ACTIONS(2451), + [anon_sym_ends_DASHwith2] = ACTIONS(2451), + [anon_sym_EQ_EQ2] = ACTIONS(2451), + [anon_sym_BANG_EQ2] = ACTIONS(2451), + [anon_sym_LT2] = ACTIONS(2449), + [anon_sym_LT_EQ2] = ACTIONS(2451), + [anon_sym_GT_EQ2] = ACTIONS(2451), + [anon_sym_EQ_TILDE2] = ACTIONS(2451), + [anon_sym_BANG_TILDE2] = ACTIONS(2451), + [anon_sym_STAR_STAR2] = ACTIONS(2451), + [anon_sym_PLUS_PLUS2] = ACTIONS(2451), + [anon_sym_SLASH2] = ACTIONS(2449), + [anon_sym_mod2] = ACTIONS(2451), + [anon_sym_SLASH_SLASH2] = ACTIONS(2451), + [anon_sym_PLUS2] = ACTIONS(2449), + [anon_sym_bit_DASHshl2] = ACTIONS(2451), + [anon_sym_bit_DASHshr2] = ACTIONS(2451), + [anon_sym_bit_DASHand2] = ACTIONS(2451), + [anon_sym_bit_DASHxor2] = ACTIONS(2451), + [anon_sym_bit_DASHor2] = ACTIONS(2451), + [anon_sym_COLON2] = ACTIONS(2451), + [anon_sym_DOT2] = ACTIONS(2451), + [anon_sym_err_GT] = ACTIONS(2449), + [anon_sym_out_GT] = ACTIONS(2449), + [anon_sym_e_GT] = ACTIONS(2449), + [anon_sym_o_GT] = ACTIONS(2449), + [anon_sym_err_PLUSout_GT] = ACTIONS(2449), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2449), + [anon_sym_o_PLUSe_GT] = ACTIONS(2449), + [anon_sym_e_PLUSo_GT] = ACTIONS(2449), + [anon_sym_err_GT_GT] = ACTIONS(2451), + [anon_sym_out_GT_GT] = ACTIONS(2451), + [anon_sym_e_GT_GT] = ACTIONS(2451), + [anon_sym_o_GT_GT] = ACTIONS(2451), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2451), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2451), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2451), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2451), [anon_sym_POUND] = ACTIONS(251), }, - [1650] = { - [sym_comment] = STATE(1650), - [sym__newline] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_err_GT_PIPE] = ACTIONS(2267), - [anon_sym_out_GT_PIPE] = ACTIONS(2267), - [anon_sym_e_GT_PIPE] = ACTIONS(2267), - [anon_sym_o_GT_PIPE] = ACTIONS(2267), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2267), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2267), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2267), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2267), - [anon_sym_RPAREN] = ACTIONS(2267), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DASH2] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_RBRACE] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2265), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), - [anon_sym_DOT_DOT_LT] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2265), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [aux_sym__val_number_token4] = ACTIONS(2265), - [aux_sym__val_number_token5] = ACTIONS(2265), - [aux_sym__val_number_token6] = ACTIONS(2265), - [anon_sym_0b] = ACTIONS(2265), - [anon_sym_0o] = ACTIONS(2265), - [anon_sym_0x] = ACTIONS(2265), - [sym_val_date] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_err_GT] = ACTIONS(2265), - [anon_sym_out_GT] = ACTIONS(2265), - [anon_sym_e_GT] = ACTIONS(2265), - [anon_sym_o_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT] = ACTIONS(2265), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), - [aux_sym_unquoted_token1] = ACTIONS(2265), - [aux_sym_unquoted_token4] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2267), + [1663] = { + [sym_comment] = STATE(1663), + [ts_builtin_sym_end] = ACTIONS(1819), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_LBRACK] = ACTIONS(1819), + [anon_sym_LPAREN] = ACTIONS(1817), + [anon_sym_DOLLAR] = ACTIONS(1817), + [anon_sym_DASH_DASH] = ACTIONS(1819), + [anon_sym_DASH2] = ACTIONS(1817), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_DOT_DOT] = ACTIONS(1817), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT] = ACTIONS(1819), + [anon_sym_null] = ACTIONS(1819), + [anon_sym_true] = ACTIONS(1819), + [anon_sym_false] = ACTIONS(1819), + [aux_sym__val_number_decimal_token1] = ACTIONS(1817), + [aux_sym__val_number_decimal_token2] = ACTIONS(1819), + [aux_sym__val_number_decimal_token3] = ACTIONS(1819), + [aux_sym__val_number_decimal_token4] = ACTIONS(1819), + [aux_sym__val_number_token1] = ACTIONS(1819), + [aux_sym__val_number_token2] = ACTIONS(1819), + [aux_sym__val_number_token3] = ACTIONS(1819), + [aux_sym__val_number_token4] = ACTIONS(1819), + [aux_sym__val_number_token5] = ACTIONS(1819), + [aux_sym__val_number_token6] = ACTIONS(1819), + [anon_sym_0b] = ACTIONS(1817), + [anon_sym_0o] = ACTIONS(1817), + [anon_sym_0x] = ACTIONS(1817), + [sym_val_date] = ACTIONS(1819), + [anon_sym_DQUOTE] = ACTIONS(1819), + [sym__str_single_quotes] = ACTIONS(1819), + [sym__str_back_ticks] = ACTIONS(1819), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1819), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token1] = ACTIONS(1817), + [aux_sym_unquoted_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1819), }, - [1651] = { - [sym_comment] = STATE(1651), - [sym__newline] = ACTIONS(2122), - [anon_sym_SEMI] = ACTIONS(2122), - [anon_sym_PIPE] = ACTIONS(2122), - [anon_sym_err_GT_PIPE] = ACTIONS(2122), - [anon_sym_out_GT_PIPE] = ACTIONS(2122), - [anon_sym_e_GT_PIPE] = ACTIONS(2122), - [anon_sym_o_GT_PIPE] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2122), - [anon_sym_RPAREN] = ACTIONS(2122), - [anon_sym_GT2] = ACTIONS(2120), - [anon_sym_DASH2] = ACTIONS(2122), - [anon_sym_in2] = ACTIONS(2122), - [anon_sym_if] = ACTIONS(2122), - [anon_sym_LBRACE] = ACTIONS(2122), - [anon_sym_RBRACE] = ACTIONS(2122), - [anon_sym_EQ_GT] = ACTIONS(2122), - [anon_sym_STAR2] = ACTIONS(2120), - [anon_sym_and2] = ACTIONS(2122), - [anon_sym_xor2] = ACTIONS(2122), - [anon_sym_or2] = ACTIONS(2122), - [anon_sym_not_DASHin2] = ACTIONS(2122), - [anon_sym_starts_DASHwith2] = ACTIONS(2122), - [anon_sym_ends_DASHwith2] = ACTIONS(2122), - [anon_sym_EQ_EQ2] = ACTIONS(2122), - [anon_sym_BANG_EQ2] = ACTIONS(2122), - [anon_sym_LT2] = ACTIONS(2120), - [anon_sym_LT_EQ2] = ACTIONS(2122), - [anon_sym_GT_EQ2] = ACTIONS(2122), - [anon_sym_EQ_TILDE2] = ACTIONS(2122), - [anon_sym_BANG_TILDE2] = ACTIONS(2122), - [anon_sym_STAR_STAR2] = ACTIONS(2122), - [anon_sym_PLUS_PLUS2] = ACTIONS(2122), - [anon_sym_SLASH2] = ACTIONS(2120), - [anon_sym_mod2] = ACTIONS(2122), - [anon_sym_SLASH_SLASH2] = ACTIONS(2122), - [anon_sym_PLUS2] = ACTIONS(2120), - [anon_sym_bit_DASHshl2] = ACTIONS(2122), - [anon_sym_bit_DASHshr2] = ACTIONS(2122), - [anon_sym_bit_DASHand2] = ACTIONS(2122), - [anon_sym_bit_DASHxor2] = ACTIONS(2122), - [anon_sym_bit_DASHor2] = ACTIONS(2122), - [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(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(2122), - [anon_sym_out_GT_GT] = ACTIONS(2122), - [anon_sym_e_GT_GT] = ACTIONS(2122), - [anon_sym_o_GT_GT] = ACTIONS(2122), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2122), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2122), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2122), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2122), - [anon_sym_POUND] = ACTIONS(251), + [1664] = { + [sym_cmd_identifier] = STATE(3982), + [sym__command_name] = STATE(6545), + [sym_scope_pattern] = STATE(6546), + [sym_wild_card] = STATE(6547), + [sym_command_list] = STATE(6548), + [sym__val_number_decimal] = STATE(3561), + [sym_val_string] = STATE(3955), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), + [sym_comment] = STATE(1664), + [aux_sym_cmd_identifier_token1] = ACTIONS(4930), + [aux_sym_cmd_identifier_token2] = ACTIONS(4932), + [aux_sym_cmd_identifier_token3] = ACTIONS(4932), + [aux_sym_cmd_identifier_token4] = ACTIONS(4932), + [aux_sym_cmd_identifier_token5] = ACTIONS(4932), + [aux_sym_cmd_identifier_token6] = ACTIONS(4932), + [aux_sym_cmd_identifier_token7] = ACTIONS(4932), + [aux_sym_cmd_identifier_token8] = ACTIONS(4932), + [aux_sym_cmd_identifier_token9] = ACTIONS(4930), + [aux_sym_cmd_identifier_token10] = ACTIONS(4932), + [aux_sym_cmd_identifier_token11] = ACTIONS(4932), + [aux_sym_cmd_identifier_token12] = ACTIONS(4932), + [aux_sym_cmd_identifier_token13] = ACTIONS(4930), + [aux_sym_cmd_identifier_token14] = ACTIONS(4932), + [aux_sym_cmd_identifier_token15] = ACTIONS(4930), + [aux_sym_cmd_identifier_token16] = ACTIONS(4932), + [aux_sym_cmd_identifier_token17] = ACTIONS(4932), + [aux_sym_cmd_identifier_token18] = ACTIONS(4932), + [aux_sym_cmd_identifier_token19] = ACTIONS(4932), + [aux_sym_cmd_identifier_token20] = ACTIONS(4932), + [aux_sym_cmd_identifier_token21] = ACTIONS(4932), + [aux_sym_cmd_identifier_token22] = ACTIONS(4932), + [aux_sym_cmd_identifier_token23] = ACTIONS(4932), + [aux_sym_cmd_identifier_token24] = ACTIONS(4932), + [aux_sym_cmd_identifier_token25] = ACTIONS(4932), + [aux_sym_cmd_identifier_token26] = ACTIONS(4932), + [aux_sym_cmd_identifier_token27] = ACTIONS(4932), + [aux_sym_cmd_identifier_token28] = ACTIONS(4932), + [aux_sym_cmd_identifier_token29] = ACTIONS(4932), + [aux_sym_cmd_identifier_token30] = ACTIONS(4932), + [aux_sym_cmd_identifier_token31] = ACTIONS(4932), + [aux_sym_cmd_identifier_token32] = ACTIONS(4932), + [aux_sym_cmd_identifier_token33] = ACTIONS(4932), + [aux_sym_cmd_identifier_token34] = ACTIONS(4930), + [aux_sym_cmd_identifier_token35] = ACTIONS(4932), + [aux_sym_cmd_identifier_token36] = ACTIONS(4932), + [aux_sym_cmd_identifier_token37] = ACTIONS(4932), + [aux_sym_cmd_identifier_token38] = ACTIONS(4930), + [aux_sym_cmd_identifier_token39] = ACTIONS(4932), + [aux_sym_cmd_identifier_token40] = ACTIONS(4932), + [sym__newline] = ACTIONS(4967), + [anon_sym_SEMI] = ACTIONS(4967), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4967), + [anon_sym_RBRACE] = ACTIONS(4967), + [anon_sym_STAR2] = ACTIONS(4938), + [aux_sym__val_number_decimal_token1] = ACTIONS(4940), + [aux_sym__val_number_decimal_token2] = ACTIONS(4940), + [aux_sym__val_number_decimal_token3] = ACTIONS(4942), + [aux_sym__val_number_decimal_token4] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, - [1652] = { - [sym_cell_path] = STATE(2134), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1652), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1927), - [anon_sym_SEMI] = ACTIONS(1927), - [anon_sym_PIPE] = ACTIONS(1927), - [anon_sym_err_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_GT_PIPE] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1927), - [anon_sym_RPAREN] = ACTIONS(1927), - [anon_sym_GT2] = ACTIONS(1925), - [anon_sym_DASH2] = ACTIONS(1927), - [anon_sym_in2] = ACTIONS(1927), - [anon_sym_LBRACE] = ACTIONS(1927), - [anon_sym_RBRACE] = ACTIONS(1927), - [anon_sym_EQ_GT] = ACTIONS(1927), - [anon_sym_STAR2] = ACTIONS(1925), - [anon_sym_and2] = ACTIONS(1927), - [anon_sym_xor2] = ACTIONS(1927), - [anon_sym_or2] = ACTIONS(1927), - [anon_sym_not_DASHin2] = ACTIONS(1927), - [anon_sym_starts_DASHwith2] = ACTIONS(1927), - [anon_sym_ends_DASHwith2] = ACTIONS(1927), - [anon_sym_EQ_EQ2] = ACTIONS(1927), - [anon_sym_BANG_EQ2] = ACTIONS(1927), - [anon_sym_LT2] = ACTIONS(1925), - [anon_sym_LT_EQ2] = ACTIONS(1927), - [anon_sym_GT_EQ2] = ACTIONS(1927), - [anon_sym_EQ_TILDE2] = ACTIONS(1927), - [anon_sym_BANG_TILDE2] = ACTIONS(1927), - [anon_sym_STAR_STAR2] = ACTIONS(1927), - [anon_sym_PLUS_PLUS2] = ACTIONS(1927), - [anon_sym_SLASH2] = ACTIONS(1925), - [anon_sym_mod2] = ACTIONS(1927), - [anon_sym_SLASH_SLASH2] = ACTIONS(1927), - [anon_sym_PLUS2] = ACTIONS(1925), - [anon_sym_bit_DASHshl2] = ACTIONS(1927), - [anon_sym_bit_DASHshr2] = ACTIONS(1927), - [anon_sym_bit_DASHand2] = ACTIONS(1927), - [anon_sym_bit_DASHxor2] = ACTIONS(1927), - [anon_sym_bit_DASHor2] = ACTIONS(1927), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1925), - [anon_sym_out_GT] = ACTIONS(1925), - [anon_sym_e_GT] = ACTIONS(1925), - [anon_sym_o_GT] = ACTIONS(1925), - [anon_sym_err_PLUSout_GT] = ACTIONS(1925), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1925), - [anon_sym_o_PLUSe_GT] = ACTIONS(1925), - [anon_sym_e_PLUSo_GT] = ACTIONS(1925), - [anon_sym_err_GT_GT] = ACTIONS(1927), - [anon_sym_out_GT_GT] = ACTIONS(1927), - [anon_sym_e_GT_GT] = ACTIONS(1927), - [anon_sym_o_GT_GT] = ACTIONS(1927), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1927), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1927), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1927), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1927), + [1665] = { + [sym_cell_path] = STATE(2142), + [sym_path] = STATE(1811), + [sym_comment] = STATE(1665), + [aux_sym_cell_path_repeat1] = STATE(1668), + [ts_builtin_sym_end] = ACTIONS(1723), + [sym__newline] = ACTIONS(1723), + [anon_sym_SEMI] = ACTIONS(1723), + [anon_sym_PIPE] = ACTIONS(1723), + [anon_sym_err_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_GT_PIPE] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), + [anon_sym_GT2] = ACTIONS(1721), + [anon_sym_DASH2] = ACTIONS(1723), + [anon_sym_in2] = ACTIONS(1723), + [anon_sym_STAR2] = ACTIONS(1721), + [anon_sym_and2] = ACTIONS(1723), + [anon_sym_xor2] = ACTIONS(1723), + [anon_sym_or2] = ACTIONS(1723), + [anon_sym_not_DASHin2] = ACTIONS(1723), + [anon_sym_starts_DASHwith2] = ACTIONS(1723), + [anon_sym_ends_DASHwith2] = ACTIONS(1723), + [anon_sym_EQ_EQ2] = ACTIONS(1723), + [anon_sym_BANG_EQ2] = ACTIONS(1723), + [anon_sym_LT2] = ACTIONS(1721), + [anon_sym_LT_EQ2] = ACTIONS(1723), + [anon_sym_GT_EQ2] = ACTIONS(1723), + [anon_sym_EQ_TILDE2] = ACTIONS(1723), + [anon_sym_BANG_TILDE2] = ACTIONS(1723), + [anon_sym_STAR_STAR2] = ACTIONS(1723), + [anon_sym_PLUS_PLUS2] = ACTIONS(1723), + [anon_sym_SLASH2] = ACTIONS(1721), + [anon_sym_mod2] = ACTIONS(1723), + [anon_sym_SLASH_SLASH2] = ACTIONS(1723), + [anon_sym_PLUS2] = ACTIONS(1721), + [anon_sym_bit_DASHshl2] = ACTIONS(1723), + [anon_sym_bit_DASHshr2] = ACTIONS(1723), + [anon_sym_bit_DASHand2] = ACTIONS(1723), + [anon_sym_bit_DASHxor2] = ACTIONS(1723), + [anon_sym_bit_DASHor2] = ACTIONS(1723), + [anon_sym_DOT_DOT2] = ACTIONS(1721), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), + [anon_sym_DOT2] = ACTIONS(4949), + [anon_sym_err_GT] = ACTIONS(1721), + [anon_sym_out_GT] = ACTIONS(1721), + [anon_sym_e_GT] = ACTIONS(1721), + [anon_sym_o_GT] = ACTIONS(1721), + [anon_sym_err_PLUSout_GT] = ACTIONS(1721), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), + [anon_sym_o_PLUSe_GT] = ACTIONS(1721), + [anon_sym_e_PLUSo_GT] = ACTIONS(1721), + [anon_sym_err_GT_GT] = ACTIONS(1723), + [anon_sym_out_GT_GT] = ACTIONS(1723), + [anon_sym_e_GT_GT] = ACTIONS(1723), + [anon_sym_o_GT_GT] = ACTIONS(1723), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), [anon_sym_POUND] = ACTIONS(251), }, - [1653] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1653), - [ts_builtin_sym_end] = ACTIONS(4846), - [sym__newline] = ACTIONS(4846), - [anon_sym_SEMI] = ACTIONS(4846), - [anon_sym_PIPE] = ACTIONS(4846), - [anon_sym_err_GT_PIPE] = ACTIONS(4846), - [anon_sym_out_GT_PIPE] = ACTIONS(4846), - [anon_sym_e_GT_PIPE] = ACTIONS(4846), - [anon_sym_o_GT_PIPE] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4846), - [anon_sym_LBRACK] = ACTIONS(4846), - [anon_sym_LPAREN] = ACTIONS(4848), - [anon_sym_DOLLAR] = ACTIONS(4848), - [anon_sym_DASH_DASH] = ACTIONS(4846), - [anon_sym_DASH2] = ACTIONS(4848), - [anon_sym_LBRACE] = ACTIONS(4846), - [anon_sym_DOT_DOT] = ACTIONS(4848), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4846), - [anon_sym_DOT_DOT_LT] = ACTIONS(4846), - [anon_sym_null] = ACTIONS(4846), - [anon_sym_true] = ACTIONS(4846), - [anon_sym_false] = ACTIONS(4846), - [aux_sym__val_number_decimal_token1] = ACTIONS(4848), - [aux_sym__val_number_decimal_token2] = ACTIONS(4846), - [aux_sym__val_number_decimal_token3] = ACTIONS(4846), - [aux_sym__val_number_decimal_token4] = ACTIONS(4846), - [aux_sym__val_number_token1] = ACTIONS(4846), - [aux_sym__val_number_token2] = ACTIONS(4846), - [aux_sym__val_number_token3] = ACTIONS(4846), - [aux_sym__val_number_token4] = ACTIONS(4846), - [aux_sym__val_number_token5] = ACTIONS(4846), - [aux_sym__val_number_token6] = ACTIONS(4846), - [anon_sym_0b] = ACTIONS(4848), - [anon_sym_0o] = ACTIONS(4848), - [anon_sym_0x] = ACTIONS(4848), - [sym_val_date] = ACTIONS(4846), - [anon_sym_DQUOTE] = ACTIONS(4846), - [sym__str_single_quotes] = ACTIONS(4846), - [sym__str_back_ticks] = ACTIONS(4846), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4846), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4846), - [anon_sym_err_GT] = ACTIONS(4848), - [anon_sym_out_GT] = ACTIONS(4848), - [anon_sym_e_GT] = ACTIONS(4848), - [anon_sym_o_GT] = ACTIONS(4848), - [anon_sym_err_PLUSout_GT] = ACTIONS(4848), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4848), - [anon_sym_o_PLUSe_GT] = ACTIONS(4848), - [anon_sym_e_PLUSo_GT] = ACTIONS(4848), - [anon_sym_err_GT_GT] = ACTIONS(4846), - [anon_sym_out_GT_GT] = ACTIONS(4846), - [anon_sym_e_GT_GT] = ACTIONS(4846), - [anon_sym_o_GT_GT] = ACTIONS(4846), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4846), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4846), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4846), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4846), - [aux_sym_unquoted_token1] = ACTIONS(4848), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4846), - }, - [1654] = { - [sym__expr_parenthesized_immediate] = STATE(7221), - [sym_comment] = STATE(1654), - [sym__newline] = ACTIONS(4951), - [anon_sym_SEMI] = ACTIONS(4951), - [anon_sym_PIPE] = ACTIONS(4951), - [anon_sym_err_GT_PIPE] = ACTIONS(4951), - [anon_sym_out_GT_PIPE] = ACTIONS(4951), - [anon_sym_e_GT_PIPE] = ACTIONS(4951), - [anon_sym_o_GT_PIPE] = ACTIONS(4951), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4951), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4951), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4951), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4951), - [anon_sym_LBRACK] = ACTIONS(4951), - [anon_sym_LPAREN] = ACTIONS(4953), - [anon_sym_RPAREN] = ACTIONS(4951), - [anon_sym_DOLLAR] = ACTIONS(4953), - [anon_sym_DASH_DASH] = ACTIONS(4951), - [anon_sym_DASH2] = ACTIONS(4953), - [anon_sym_LBRACE] = ACTIONS(4951), - [anon_sym_DOT_DOT] = ACTIONS(4953), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4951), - [anon_sym_DOT_DOT_LT] = ACTIONS(4951), - [anon_sym_null] = ACTIONS(4951), - [anon_sym_true] = ACTIONS(4951), - [anon_sym_false] = ACTIONS(4951), - [aux_sym__val_number_decimal_token1] = ACTIONS(4953), - [aux_sym__val_number_decimal_token2] = ACTIONS(4951), - [aux_sym__val_number_decimal_token3] = ACTIONS(4951), - [aux_sym__val_number_decimal_token4] = ACTIONS(4951), - [aux_sym__val_number_token1] = ACTIONS(4951), - [aux_sym__val_number_token2] = ACTIONS(4951), - [aux_sym__val_number_token3] = ACTIONS(4951), - [aux_sym__val_number_token4] = ACTIONS(4951), - [aux_sym__val_number_token5] = ACTIONS(4951), - [aux_sym__val_number_token6] = ACTIONS(4951), - [anon_sym_0b] = ACTIONS(4953), - [anon_sym_0o] = ACTIONS(4953), - [anon_sym_0x] = ACTIONS(4953), - [sym_val_date] = ACTIONS(4951), - [anon_sym_DQUOTE] = ACTIONS(4951), - [sym__str_single_quotes] = ACTIONS(4951), - [sym__str_back_ticks] = ACTIONS(4951), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4951), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4951), - [anon_sym_err_GT] = ACTIONS(4953), - [anon_sym_out_GT] = ACTIONS(4953), - [anon_sym_e_GT] = ACTIONS(4953), - [anon_sym_o_GT] = ACTIONS(4953), - [anon_sym_err_PLUSout_GT] = ACTIONS(4953), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4953), - [anon_sym_o_PLUSe_GT] = ACTIONS(4953), - [anon_sym_e_PLUSo_GT] = ACTIONS(4953), - [anon_sym_err_GT_GT] = ACTIONS(4951), - [anon_sym_out_GT_GT] = ACTIONS(4951), - [anon_sym_e_GT_GT] = ACTIONS(4951), - [anon_sym_o_GT_GT] = ACTIONS(4951), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4951), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4951), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4951), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4951), - [aux_sym_unquoted_token1] = ACTIONS(4953), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4951), + [1666] = { + [sym_comment] = STATE(1666), + [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_LBRACK] = ACTIONS(2280), + [anon_sym_LPAREN] = ACTIONS(2284), + [anon_sym_RPAREN] = ACTIONS(2284), + [anon_sym_DOLLAR] = ACTIONS(2280), + [anon_sym_DASH_DASH] = ACTIONS(2284), + [anon_sym_DASH2] = ACTIONS(2280), + [anon_sym_LBRACE] = ACTIONS(2284), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_DOT_DOT] = ACTIONS(2280), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2284), + [anon_sym_DOT_DOT_LT] = ACTIONS(2284), + [anon_sym_null] = ACTIONS(2284), + [anon_sym_true] = ACTIONS(2284), + [anon_sym_false] = ACTIONS(2284), + [aux_sym__val_number_decimal_token1] = ACTIONS(2280), + [aux_sym__val_number_decimal_token2] = ACTIONS(2284), + [aux_sym__val_number_decimal_token3] = ACTIONS(2284), + [aux_sym__val_number_decimal_token4] = ACTIONS(2284), + [aux_sym__val_number_token1] = ACTIONS(2284), + [aux_sym__val_number_token2] = ACTIONS(2284), + [aux_sym__val_number_token3] = ACTIONS(2284), + [aux_sym__val_number_token4] = ACTIONS(2284), + [aux_sym__val_number_token5] = ACTIONS(2284), + [aux_sym__val_number_token6] = ACTIONS(2284), + [anon_sym_0b] = ACTIONS(2280), + [anon_sym_0o] = ACTIONS(2280), + [anon_sym_0x] = ACTIONS(2280), + [anon_sym_LBRACK2] = ACTIONS(4969), + [sym_val_date] = ACTIONS(2284), + [anon_sym_DQUOTE] = ACTIONS(2284), + [sym__str_single_quotes] = ACTIONS(2284), + [sym__str_back_ticks] = ACTIONS(2284), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2284), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2284), + [anon_sym_err_GT] = ACTIONS(2280), + [anon_sym_out_GT] = ACTIONS(2280), + [anon_sym_e_GT] = ACTIONS(2280), + [anon_sym_o_GT] = ACTIONS(2280), + [anon_sym_err_PLUSout_GT] = ACTIONS(2280), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2280), + [anon_sym_o_PLUSe_GT] = ACTIONS(2280), + [anon_sym_e_PLUSo_GT] = ACTIONS(2280), + [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), + [aux_sym_unquoted_token1] = ACTIONS(2280), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2284), }, - [1655] = { - [sym_comment] = STATE(1655), - [sym__newline] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2233), - [anon_sym_RPAREN] = ACTIONS(2233), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_RBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2229), - [anon_sym_out_GT_GT] = ACTIONS(2229), - [anon_sym_e_GT_GT] = ACTIONS(2229), - [anon_sym_o_GT_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2229), - [aux_sym_unquoted_token1] = ACTIONS(2229), - [aux_sym_unquoted_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), + [1667] = { + [sym_comment] = STATE(1667), + [sym__newline] = ACTIONS(4971), + [anon_sym_SEMI] = ACTIONS(4971), + [anon_sym_PIPE] = ACTIONS(4971), + [anon_sym_err_GT_PIPE] = ACTIONS(4971), + [anon_sym_out_GT_PIPE] = ACTIONS(4971), + [anon_sym_e_GT_PIPE] = ACTIONS(4971), + [anon_sym_o_GT_PIPE] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4971), + [anon_sym_LBRACK] = ACTIONS(4971), + [anon_sym_LPAREN] = ACTIONS(4973), + [anon_sym_RPAREN] = ACTIONS(4971), + [anon_sym_DOLLAR] = ACTIONS(4973), + [anon_sym_DASH_DASH] = ACTIONS(4971), + [anon_sym_DASH2] = ACTIONS(4973), + [anon_sym_LBRACE] = ACTIONS(4971), + [anon_sym_RBRACE] = ACTIONS(4971), + [anon_sym_DOT_DOT] = ACTIONS(4973), + [anon_sym_LPAREN2] = ACTIONS(4971), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4971), + [anon_sym_DOT_DOT_LT] = ACTIONS(4971), + [anon_sym_null] = ACTIONS(4971), + [anon_sym_true] = ACTIONS(4971), + [anon_sym_false] = ACTIONS(4971), + [aux_sym__val_number_decimal_token1] = ACTIONS(4973), + [aux_sym__val_number_decimal_token2] = ACTIONS(4971), + [aux_sym__val_number_decimal_token3] = ACTIONS(4971), + [aux_sym__val_number_decimal_token4] = ACTIONS(4971), + [aux_sym__val_number_token1] = ACTIONS(4971), + [aux_sym__val_number_token2] = ACTIONS(4971), + [aux_sym__val_number_token3] = ACTIONS(4971), + [aux_sym__val_number_token4] = ACTIONS(4971), + [aux_sym__val_number_token5] = ACTIONS(4971), + [aux_sym__val_number_token6] = ACTIONS(4971), + [anon_sym_0b] = ACTIONS(4973), + [anon_sym_0o] = ACTIONS(4973), + [anon_sym_0x] = ACTIONS(4973), + [sym_val_date] = ACTIONS(4971), + [anon_sym_DQUOTE] = ACTIONS(4971), + [sym__str_single_quotes] = ACTIONS(4971), + [sym__str_back_ticks] = ACTIONS(4971), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4971), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4971), + [anon_sym_err_GT] = ACTIONS(4973), + [anon_sym_out_GT] = ACTIONS(4973), + [anon_sym_e_GT] = ACTIONS(4973), + [anon_sym_o_GT] = ACTIONS(4973), + [anon_sym_err_PLUSout_GT] = ACTIONS(4973), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4973), + [anon_sym_o_PLUSe_GT] = ACTIONS(4973), + [anon_sym_e_PLUSo_GT] = ACTIONS(4973), + [anon_sym_err_GT_GT] = ACTIONS(4971), + [anon_sym_out_GT_GT] = ACTIONS(4971), + [anon_sym_e_GT_GT] = ACTIONS(4971), + [anon_sym_o_GT_GT] = ACTIONS(4971), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4971), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4971), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4971), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4971), + [aux_sym_unquoted_token1] = ACTIONS(4973), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4971), }, - [1656] = { - [sym_comment] = STATE(1656), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_GT2] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1727), - [anon_sym_in2] = ACTIONS(1727), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_STAR2] = ACTIONS(1725), - [anon_sym_and2] = ACTIONS(1727), - [anon_sym_xor2] = ACTIONS(1727), - [anon_sym_or2] = ACTIONS(1727), - [anon_sym_not_DASHin2] = ACTIONS(1727), - [anon_sym_starts_DASHwith2] = ACTIONS(1727), - [anon_sym_ends_DASHwith2] = ACTIONS(1727), - [anon_sym_EQ_EQ2] = ACTIONS(1727), - [anon_sym_BANG_EQ2] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1725), - [anon_sym_LT_EQ2] = ACTIONS(1727), - [anon_sym_GT_EQ2] = ACTIONS(1727), - [anon_sym_EQ_TILDE2] = ACTIONS(1727), - [anon_sym_BANG_TILDE2] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_STAR_STAR2] = ACTIONS(1727), - [anon_sym_PLUS_PLUS2] = ACTIONS(1727), - [anon_sym_SLASH2] = ACTIONS(1725), - [anon_sym_mod2] = ACTIONS(1727), - [anon_sym_SLASH_SLASH2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_bit_DASHshl2] = ACTIONS(1727), - [anon_sym_bit_DASHshr2] = ACTIONS(1727), - [anon_sym_bit_DASHand2] = ACTIONS(1727), - [anon_sym_bit_DASHxor2] = ACTIONS(1727), - [anon_sym_bit_DASHor2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token2] = ACTIONS(1725), + [1668] = { + [sym_path] = STATE(1811), + [sym_comment] = STATE(1668), + [aux_sym_cell_path_repeat1] = STATE(1639), + [ts_builtin_sym_end] = ACTIONS(950), + [sym__newline] = ACTIONS(950), + [anon_sym_SEMI] = ACTIONS(950), + [anon_sym_PIPE] = ACTIONS(950), + [anon_sym_err_GT_PIPE] = ACTIONS(950), + [anon_sym_out_GT_PIPE] = ACTIONS(950), + [anon_sym_e_GT_PIPE] = ACTIONS(950), + [anon_sym_o_GT_PIPE] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), + [anon_sym_GT2] = ACTIONS(948), + [anon_sym_DASH2] = ACTIONS(950), + [anon_sym_in2] = ACTIONS(950), + [anon_sym_LBRACE] = ACTIONS(950), + [anon_sym_STAR2] = ACTIONS(948), + [anon_sym_and2] = ACTIONS(950), + [anon_sym_xor2] = ACTIONS(950), + [anon_sym_or2] = ACTIONS(950), + [anon_sym_not_DASHin2] = ACTIONS(950), + [anon_sym_starts_DASHwith2] = ACTIONS(950), + [anon_sym_ends_DASHwith2] = ACTIONS(950), + [anon_sym_EQ_EQ2] = ACTIONS(950), + [anon_sym_BANG_EQ2] = ACTIONS(950), + [anon_sym_LT2] = ACTIONS(948), + [anon_sym_LT_EQ2] = ACTIONS(950), + [anon_sym_GT_EQ2] = ACTIONS(950), + [anon_sym_EQ_TILDE2] = ACTIONS(950), + [anon_sym_BANG_TILDE2] = ACTIONS(950), + [anon_sym_STAR_STAR2] = ACTIONS(950), + [anon_sym_PLUS_PLUS2] = ACTIONS(950), + [anon_sym_SLASH2] = ACTIONS(948), + [anon_sym_mod2] = ACTIONS(950), + [anon_sym_SLASH_SLASH2] = ACTIONS(950), + [anon_sym_PLUS2] = ACTIONS(948), + [anon_sym_bit_DASHshl2] = ACTIONS(950), + [anon_sym_bit_DASHshr2] = ACTIONS(950), + [anon_sym_bit_DASHand2] = ACTIONS(950), + [anon_sym_bit_DASHxor2] = ACTIONS(950), + [anon_sym_bit_DASHor2] = ACTIONS(950), + [anon_sym_DOT_DOT2] = ACTIONS(948), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), + [anon_sym_DOT_DOT_LT2] = ACTIONS(950), + [anon_sym_DOT2] = ACTIONS(4949), + [anon_sym_err_GT] = ACTIONS(948), + [anon_sym_out_GT] = ACTIONS(948), + [anon_sym_e_GT] = ACTIONS(948), + [anon_sym_o_GT] = ACTIONS(948), + [anon_sym_err_PLUSout_GT] = ACTIONS(948), + [anon_sym_out_PLUSerr_GT] = ACTIONS(948), + [anon_sym_o_PLUSe_GT] = ACTIONS(948), + [anon_sym_e_PLUSo_GT] = ACTIONS(948), + [anon_sym_err_GT_GT] = ACTIONS(950), + [anon_sym_out_GT_GT] = ACTIONS(950), + [anon_sym_e_GT_GT] = ACTIONS(950), + [anon_sym_o_GT_GT] = ACTIONS(950), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), [anon_sym_POUND] = ACTIONS(251), }, - [1657] = { - [sym_comment] = STATE(1657), - [ts_builtin_sym_end] = ACTIONS(2241), - [sym__newline] = ACTIONS(2241), - [anon_sym_SEMI] = ACTIONS(2241), - [anon_sym_PIPE] = ACTIONS(2241), - [anon_sym_err_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_GT_PIPE] = ACTIONS(2241), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2241), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2241), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2241), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2241), - [anon_sym_LBRACK] = ACTIONS(2241), - [anon_sym_LPAREN] = ACTIONS(2237), - [anon_sym_DOLLAR] = ACTIONS(2237), - [anon_sym_DASH_DASH] = ACTIONS(2237), - [anon_sym_DASH2] = ACTIONS(2237), - [anon_sym_LBRACE] = ACTIONS(2241), - [anon_sym_DOT_DOT] = ACTIONS(2237), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2237), - [anon_sym_DOT_DOT_LT] = ACTIONS(2237), - [anon_sym_null] = ACTIONS(2237), - [anon_sym_true] = ACTIONS(2237), - [anon_sym_false] = ACTIONS(2237), - [aux_sym__val_number_decimal_token1] = ACTIONS(2237), - [aux_sym__val_number_decimal_token2] = ACTIONS(2237), - [aux_sym__val_number_decimal_token3] = ACTIONS(2237), - [aux_sym__val_number_decimal_token4] = ACTIONS(2237), - [aux_sym__val_number_token1] = ACTIONS(2237), - [aux_sym__val_number_token2] = ACTIONS(2237), - [aux_sym__val_number_token3] = ACTIONS(2237), - [aux_sym__val_number_token4] = ACTIONS(2237), - [aux_sym__val_number_token5] = ACTIONS(2237), - [aux_sym__val_number_token6] = ACTIONS(2237), - [anon_sym_0b] = ACTIONS(2237), - [anon_sym_0o] = ACTIONS(2237), - [anon_sym_0x] = ACTIONS(2237), - [sym_val_date] = ACTIONS(2237), - [anon_sym_DQUOTE] = ACTIONS(2241), - [sym__str_single_quotes] = ACTIONS(2241), - [sym__str_back_ticks] = ACTIONS(2241), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2241), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2241), - [anon_sym_err_GT] = ACTIONS(2237), - [anon_sym_out_GT] = ACTIONS(2237), - [anon_sym_e_GT] = ACTIONS(2237), - [anon_sym_o_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT] = ACTIONS(2237), - [anon_sym_err_GT_GT] = ACTIONS(2237), - [anon_sym_out_GT_GT] = ACTIONS(2237), - [anon_sym_e_GT_GT] = ACTIONS(2237), - [anon_sym_o_GT_GT] = ACTIONS(2237), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2237), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2237), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2237), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2237), - [aux_sym_unquoted_token1] = ACTIONS(2237), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2241), + [1669] = { + [sym_comment] = STATE(1669), + [sym__newline] = ACTIONS(4975), + [anon_sym_SEMI] = ACTIONS(4975), + [anon_sym_PIPE] = ACTIONS(4975), + [anon_sym_err_GT_PIPE] = ACTIONS(4975), + [anon_sym_out_GT_PIPE] = ACTIONS(4975), + [anon_sym_e_GT_PIPE] = ACTIONS(4975), + [anon_sym_o_GT_PIPE] = ACTIONS(4975), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4975), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4975), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4975), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4975), + [anon_sym_LBRACK] = ACTIONS(4975), + [anon_sym_LPAREN] = ACTIONS(4977), + [anon_sym_RPAREN] = ACTIONS(4975), + [anon_sym_DOLLAR] = ACTIONS(4977), + [anon_sym_DASH_DASH] = ACTIONS(4975), + [anon_sym_DASH2] = ACTIONS(4977), + [anon_sym_LBRACE] = ACTIONS(4975), + [anon_sym_RBRACE] = ACTIONS(4975), + [anon_sym_DOT_DOT] = ACTIONS(4977), + [anon_sym_LPAREN2] = ACTIONS(4975), + [anon_sym_DOT_DOT_EQ] = ACTIONS(4975), + [anon_sym_DOT_DOT_LT] = ACTIONS(4975), + [anon_sym_null] = ACTIONS(4975), + [anon_sym_true] = ACTIONS(4975), + [anon_sym_false] = ACTIONS(4975), + [aux_sym__val_number_decimal_token1] = ACTIONS(4977), + [aux_sym__val_number_decimal_token2] = ACTIONS(4975), + [aux_sym__val_number_decimal_token3] = ACTIONS(4975), + [aux_sym__val_number_decimal_token4] = ACTIONS(4975), + [aux_sym__val_number_token1] = ACTIONS(4975), + [aux_sym__val_number_token2] = ACTIONS(4975), + [aux_sym__val_number_token3] = ACTIONS(4975), + [aux_sym__val_number_token4] = ACTIONS(4975), + [aux_sym__val_number_token5] = ACTIONS(4975), + [aux_sym__val_number_token6] = ACTIONS(4975), + [anon_sym_0b] = ACTIONS(4977), + [anon_sym_0o] = ACTIONS(4977), + [anon_sym_0x] = ACTIONS(4977), + [sym_val_date] = ACTIONS(4975), + [anon_sym_DQUOTE] = ACTIONS(4975), + [sym__str_single_quotes] = ACTIONS(4975), + [sym__str_back_ticks] = ACTIONS(4975), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4975), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4975), + [anon_sym_err_GT] = ACTIONS(4977), + [anon_sym_out_GT] = ACTIONS(4977), + [anon_sym_e_GT] = ACTIONS(4977), + [anon_sym_o_GT] = ACTIONS(4977), + [anon_sym_err_PLUSout_GT] = ACTIONS(4977), + [anon_sym_out_PLUSerr_GT] = ACTIONS(4977), + [anon_sym_o_PLUSe_GT] = ACTIONS(4977), + [anon_sym_e_PLUSo_GT] = ACTIONS(4977), + [anon_sym_err_GT_GT] = ACTIONS(4975), + [anon_sym_out_GT_GT] = ACTIONS(4975), + [anon_sym_e_GT_GT] = ACTIONS(4975), + [anon_sym_o_GT_GT] = ACTIONS(4975), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4975), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4975), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4975), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4975), + [aux_sym_unquoted_token1] = ACTIONS(4977), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(4975), }, - [1658] = { - [sym_comment] = STATE(1658), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_GT2] = ACTIONS(1725), - [anon_sym_DASH2] = ACTIONS(1727), - [anon_sym_in2] = ACTIONS(1727), - [anon_sym_STAR2] = ACTIONS(1725), - [anon_sym_and2] = ACTIONS(1727), - [anon_sym_xor2] = ACTIONS(1727), - [anon_sym_or2] = ACTIONS(1727), - [anon_sym_not_DASHin2] = ACTIONS(1727), - [anon_sym_starts_DASHwith2] = ACTIONS(1727), - [anon_sym_ends_DASHwith2] = ACTIONS(1727), - [anon_sym_EQ_EQ2] = ACTIONS(1727), - [anon_sym_BANG_EQ2] = ACTIONS(1727), - [anon_sym_LT2] = ACTIONS(1725), - [anon_sym_LT_EQ2] = ACTIONS(1727), - [anon_sym_GT_EQ2] = ACTIONS(1727), - [anon_sym_EQ_TILDE2] = ACTIONS(1727), - [anon_sym_BANG_TILDE2] = ACTIONS(1727), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_STAR_STAR2] = ACTIONS(1727), - [anon_sym_PLUS_PLUS2] = ACTIONS(1727), - [anon_sym_SLASH2] = ACTIONS(1725), - [anon_sym_mod2] = ACTIONS(1727), - [anon_sym_SLASH_SLASH2] = ACTIONS(1727), - [anon_sym_PLUS2] = ACTIONS(1725), - [anon_sym_bit_DASHshl2] = ACTIONS(1727), - [anon_sym_bit_DASHshr2] = ACTIONS(1727), - [anon_sym_bit_DASHand2] = ACTIONS(1727), - [anon_sym_bit_DASHxor2] = ACTIONS(1727), - [anon_sym_bit_DASHor2] = ACTIONS(1727), - [anon_sym_DOT_DOT2] = ACTIONS(1725), - [anon_sym_DOT] = ACTIONS(4955), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4957), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), + [1670] = { + [sym_comment] = STATE(1670), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2184), + [anon_sym_LPAREN] = ACTIONS(2180), + [anon_sym_DOLLAR] = ACTIONS(2180), + [anon_sym_DASH_DASH] = ACTIONS(2184), + [anon_sym_DASH2] = ACTIONS(2180), + [anon_sym_LBRACE] = ACTIONS(2184), + [anon_sym_DOT_DOT] = ACTIONS(2180), + [anon_sym_LPAREN2] = ACTIONS(2182), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2184), + [anon_sym_DOT_DOT_LT] = ACTIONS(2184), + [anon_sym_null] = ACTIONS(2184), + [anon_sym_true] = ACTIONS(2184), + [anon_sym_false] = ACTIONS(2184), + [aux_sym__val_number_decimal_token1] = ACTIONS(2180), + [aux_sym__val_number_decimal_token2] = ACTIONS(2184), + [aux_sym__val_number_decimal_token3] = ACTIONS(2184), + [aux_sym__val_number_decimal_token4] = ACTIONS(2184), + [aux_sym__val_number_token1] = ACTIONS(2184), + [aux_sym__val_number_token2] = ACTIONS(2184), + [aux_sym__val_number_token3] = ACTIONS(2184), + [aux_sym__val_number_token4] = ACTIONS(2184), + [aux_sym__val_number_token5] = ACTIONS(2184), + [aux_sym__val_number_token6] = ACTIONS(2184), + [anon_sym_0b] = ACTIONS(2180), + [anon_sym_0o] = ACTIONS(2180), + [anon_sym_0x] = ACTIONS(2180), + [sym_val_date] = ACTIONS(2184), + [anon_sym_DQUOTE] = ACTIONS(2184), + [sym__str_single_quotes] = ACTIONS(2184), + [sym__str_back_ticks] = ACTIONS(2184), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2184), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2184), + [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(2184), + [anon_sym_out_GT_GT] = ACTIONS(2184), + [anon_sym_e_GT_GT] = ACTIONS(2184), + [anon_sym_o_GT_GT] = ACTIONS(2184), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2184), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2184), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2184), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2184), + [aux_sym_unquoted_token1] = ACTIONS(2180), + [aux_sym_unquoted_token2] = ACTIONS(2186), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(2184), }, - [1659] = { - [sym_comment] = STATE(1659), + [1671] = { + [sym_comment] = STATE(1671), + [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_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(4588), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), + }, + [1672] = { + [sym_comment] = STATE(1672), [sym__newline] = ACTIONS(990), [anon_sym_SEMI] = ACTIONS(990), [anon_sym_PIPE] = ACTIONS(990), @@ -231540,1216 +232387,10 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(990), }, - [1660] = { - [sym_cmd_identifier] = STATE(3983), - [sym__command_name] = STATE(6500), - [sym_scope_pattern] = STATE(6579), - [sym_wild_card] = STATE(6509), - [sym_command_list] = STATE(6510), - [sym__val_number_decimal] = STATE(3649), - [sym_val_string] = STATE(3984), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_comment] = STATE(1660), - [aux_sym_cmd_identifier_token1] = ACTIONS(4959), - [aux_sym_cmd_identifier_token2] = ACTIONS(4961), - [aux_sym_cmd_identifier_token3] = ACTIONS(4961), - [aux_sym_cmd_identifier_token4] = ACTIONS(4961), - [aux_sym_cmd_identifier_token5] = ACTIONS(4961), - [aux_sym_cmd_identifier_token6] = ACTIONS(4961), - [aux_sym_cmd_identifier_token7] = ACTIONS(4961), - [aux_sym_cmd_identifier_token8] = ACTIONS(4961), - [aux_sym_cmd_identifier_token9] = ACTIONS(4959), - [aux_sym_cmd_identifier_token10] = ACTIONS(4961), - [aux_sym_cmd_identifier_token11] = ACTIONS(4961), - [aux_sym_cmd_identifier_token12] = ACTIONS(4961), - [aux_sym_cmd_identifier_token13] = ACTIONS(4959), - [aux_sym_cmd_identifier_token14] = ACTIONS(4961), - [aux_sym_cmd_identifier_token15] = ACTIONS(4959), - [aux_sym_cmd_identifier_token16] = ACTIONS(4961), - [aux_sym_cmd_identifier_token17] = ACTIONS(4961), - [aux_sym_cmd_identifier_token18] = ACTIONS(4961), - [aux_sym_cmd_identifier_token19] = ACTIONS(4961), - [aux_sym_cmd_identifier_token20] = ACTIONS(4961), - [aux_sym_cmd_identifier_token21] = ACTIONS(4961), - [aux_sym_cmd_identifier_token22] = ACTIONS(4961), - [aux_sym_cmd_identifier_token23] = ACTIONS(4961), - [aux_sym_cmd_identifier_token24] = ACTIONS(4961), - [aux_sym_cmd_identifier_token25] = ACTIONS(4961), - [aux_sym_cmd_identifier_token26] = ACTIONS(4961), - [aux_sym_cmd_identifier_token27] = ACTIONS(4961), - [aux_sym_cmd_identifier_token28] = ACTIONS(4961), - [aux_sym_cmd_identifier_token29] = ACTIONS(4961), - [aux_sym_cmd_identifier_token30] = ACTIONS(4961), - [aux_sym_cmd_identifier_token31] = ACTIONS(4961), - [aux_sym_cmd_identifier_token32] = ACTIONS(4961), - [aux_sym_cmd_identifier_token33] = ACTIONS(4961), - [aux_sym_cmd_identifier_token34] = ACTIONS(4959), - [aux_sym_cmd_identifier_token35] = ACTIONS(4961), - [aux_sym_cmd_identifier_token36] = ACTIONS(4961), - [aux_sym_cmd_identifier_token37] = ACTIONS(4961), - [aux_sym_cmd_identifier_token38] = ACTIONS(4959), - [aux_sym_cmd_identifier_token39] = ACTIONS(4961), - [aux_sym_cmd_identifier_token40] = ACTIONS(4961), - [sym__newline] = ACTIONS(4963), - [anon_sym_SEMI] = ACTIONS(4963), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4963), - [anon_sym_RBRACE] = ACTIONS(4963), - [anon_sym_STAR2] = ACTIONS(4967), - [aux_sym__val_number_decimal_token1] = ACTIONS(4969), - [aux_sym__val_number_decimal_token2] = ACTIONS(4969), - [aux_sym__val_number_decimal_token3] = ACTIONS(4971), - [aux_sym__val_number_decimal_token4] = ACTIONS(4973), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1661] = { - [sym_comment] = STATE(1661), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_GT2] = ACTIONS(1765), - [anon_sym_DASH2] = ACTIONS(1767), - [anon_sym_in2] = ACTIONS(1767), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_STAR2] = ACTIONS(1765), - [anon_sym_and2] = ACTIONS(1767), - [anon_sym_xor2] = ACTIONS(1767), - [anon_sym_or2] = ACTIONS(1767), - [anon_sym_not_DASHin2] = ACTIONS(1767), - [anon_sym_starts_DASHwith2] = ACTIONS(1767), - [anon_sym_ends_DASHwith2] = ACTIONS(1767), - [anon_sym_EQ_EQ2] = ACTIONS(1767), - [anon_sym_BANG_EQ2] = ACTIONS(1767), - [anon_sym_LT2] = ACTIONS(1765), - [anon_sym_LT_EQ2] = ACTIONS(1767), - [anon_sym_GT_EQ2] = ACTIONS(1767), - [anon_sym_EQ_TILDE2] = ACTIONS(1767), - [anon_sym_BANG_TILDE2] = ACTIONS(1767), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_STAR_STAR2] = ACTIONS(1767), - [anon_sym_PLUS_PLUS2] = ACTIONS(1767), - [anon_sym_SLASH2] = ACTIONS(1765), - [anon_sym_mod2] = ACTIONS(1767), - [anon_sym_SLASH_SLASH2] = ACTIONS(1767), - [anon_sym_PLUS2] = ACTIONS(1765), - [anon_sym_bit_DASHshl2] = ACTIONS(1767), - [anon_sym_bit_DASHshr2] = ACTIONS(1767), - [anon_sym_bit_DASHand2] = ACTIONS(1767), - [anon_sym_bit_DASHxor2] = ACTIONS(1767), - [anon_sym_bit_DASHor2] = ACTIONS(1767), - [anon_sym_DOT_DOT2] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - }, - [1662] = { - [sym_comment] = STATE(1662), - [ts_builtin_sym_end] = ACTIONS(1589), - [sym__newline] = ACTIONS(1589), - [anon_sym_SEMI] = ACTIONS(1589), - [anon_sym_PIPE] = ACTIONS(1589), - [anon_sym_err_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_GT_PIPE] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1589), - [anon_sym_GT2] = ACTIONS(1587), - [anon_sym_DASH2] = ACTIONS(1589), - [anon_sym_in2] = ACTIONS(1589), - [anon_sym_STAR2] = ACTIONS(1587), - [anon_sym_and2] = ACTIONS(1589), - [anon_sym_xor2] = ACTIONS(1589), - [anon_sym_or2] = ACTIONS(1589), - [anon_sym_not_DASHin2] = ACTIONS(1589), - [anon_sym_starts_DASHwith2] = ACTIONS(1589), - [anon_sym_ends_DASHwith2] = ACTIONS(1589), - [anon_sym_EQ_EQ2] = ACTIONS(1589), - [anon_sym_BANG_EQ2] = ACTIONS(1589), - [anon_sym_LT2] = ACTIONS(1587), - [anon_sym_LT_EQ2] = ACTIONS(1589), - [anon_sym_GT_EQ2] = ACTIONS(1589), - [anon_sym_EQ_TILDE2] = ACTIONS(1589), - [anon_sym_BANG_TILDE2] = ACTIONS(1589), - [anon_sym_LPAREN2] = ACTIONS(1589), - [anon_sym_STAR_STAR2] = ACTIONS(1589), - [anon_sym_PLUS_PLUS2] = ACTIONS(1589), - [anon_sym_SLASH2] = ACTIONS(1587), - [anon_sym_mod2] = ACTIONS(1589), - [anon_sym_SLASH_SLASH2] = ACTIONS(1589), - [anon_sym_PLUS2] = ACTIONS(1587), - [anon_sym_bit_DASHshl2] = ACTIONS(1589), - [anon_sym_bit_DASHshr2] = ACTIONS(1589), - [anon_sym_bit_DASHand2] = ACTIONS(1589), - [anon_sym_bit_DASHxor2] = ACTIONS(1589), - [anon_sym_bit_DASHor2] = ACTIONS(1589), - [anon_sym_DOT_DOT2] = ACTIONS(1587), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1589), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1589), - [sym_filesize_unit] = ACTIONS(1587), - [sym_duration_unit] = ACTIONS(1589), - [anon_sym_err_GT] = ACTIONS(1587), - [anon_sym_out_GT] = ACTIONS(1587), - [anon_sym_e_GT] = ACTIONS(1587), - [anon_sym_o_GT] = ACTIONS(1587), - [anon_sym_err_PLUSout_GT] = ACTIONS(1587), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1587), - [anon_sym_o_PLUSe_GT] = ACTIONS(1587), - [anon_sym_e_PLUSo_GT] = ACTIONS(1587), - [anon_sym_err_GT_GT] = ACTIONS(1589), - [anon_sym_out_GT_GT] = ACTIONS(1589), - [anon_sym_e_GT_GT] = ACTIONS(1589), - [anon_sym_o_GT_GT] = ACTIONS(1589), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1589), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1589), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1589), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1589), - [aux_sym_unquoted_token2] = ACTIONS(1587), - [anon_sym_POUND] = ACTIONS(251), - }, - [1663] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1663), - [ts_builtin_sym_end] = ACTIONS(4850), - [sym__newline] = ACTIONS(4850), - [anon_sym_SEMI] = ACTIONS(4850), - [anon_sym_PIPE] = ACTIONS(4850), - [anon_sym_err_GT_PIPE] = ACTIONS(4850), - [anon_sym_out_GT_PIPE] = ACTIONS(4850), - [anon_sym_e_GT_PIPE] = ACTIONS(4850), - [anon_sym_o_GT_PIPE] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4850), - [anon_sym_LBRACK] = ACTIONS(4850), - [anon_sym_LPAREN] = ACTIONS(4852), - [anon_sym_DOLLAR] = ACTIONS(4852), - [anon_sym_DASH_DASH] = ACTIONS(4850), - [anon_sym_DASH2] = ACTIONS(4852), - [anon_sym_LBRACE] = ACTIONS(4850), - [anon_sym_DOT_DOT] = ACTIONS(4852), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4850), - [anon_sym_DOT_DOT_LT] = ACTIONS(4850), - [anon_sym_null] = ACTIONS(4850), - [anon_sym_true] = ACTIONS(4850), - [anon_sym_false] = ACTIONS(4850), - [aux_sym__val_number_decimal_token1] = ACTIONS(4852), - [aux_sym__val_number_decimal_token2] = ACTIONS(4850), - [aux_sym__val_number_decimal_token3] = ACTIONS(4850), - [aux_sym__val_number_decimal_token4] = ACTIONS(4850), - [aux_sym__val_number_token1] = ACTIONS(4850), - [aux_sym__val_number_token2] = ACTIONS(4850), - [aux_sym__val_number_token3] = ACTIONS(4850), - [aux_sym__val_number_token4] = ACTIONS(4850), - [aux_sym__val_number_token5] = ACTIONS(4850), - [aux_sym__val_number_token6] = ACTIONS(4850), - [anon_sym_0b] = ACTIONS(4852), - [anon_sym_0o] = ACTIONS(4852), - [anon_sym_0x] = ACTIONS(4852), - [sym_val_date] = ACTIONS(4850), - [anon_sym_DQUOTE] = ACTIONS(4850), - [sym__str_single_quotes] = ACTIONS(4850), - [sym__str_back_ticks] = ACTIONS(4850), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4850), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4850), - [anon_sym_err_GT] = ACTIONS(4852), - [anon_sym_out_GT] = ACTIONS(4852), - [anon_sym_e_GT] = ACTIONS(4852), - [anon_sym_o_GT] = ACTIONS(4852), - [anon_sym_err_PLUSout_GT] = ACTIONS(4852), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4852), - [anon_sym_o_PLUSe_GT] = ACTIONS(4852), - [anon_sym_e_PLUSo_GT] = ACTIONS(4852), - [anon_sym_err_GT_GT] = ACTIONS(4850), - [anon_sym_out_GT_GT] = ACTIONS(4850), - [anon_sym_e_GT_GT] = ACTIONS(4850), - [anon_sym_o_GT_GT] = ACTIONS(4850), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4850), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4850), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4850), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4850), - [aux_sym_unquoted_token1] = ACTIONS(4852), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4850), - }, - [1664] = { - [sym_comment] = STATE(1664), - [ts_builtin_sym_end] = ACTIONS(1863), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_LBRACK] = ACTIONS(1863), - [anon_sym_LPAREN] = ACTIONS(1861), - [anon_sym_DOLLAR] = ACTIONS(1861), - [anon_sym_DASH_DASH] = ACTIONS(1863), - [anon_sym_DASH2] = ACTIONS(1861), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_DOT_DOT] = ACTIONS(1861), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT] = ACTIONS(1863), - [anon_sym_null] = ACTIONS(1863), - [anon_sym_true] = ACTIONS(1863), - [anon_sym_false] = ACTIONS(1863), - [aux_sym__val_number_decimal_token1] = ACTIONS(1861), - [aux_sym__val_number_decimal_token2] = ACTIONS(1863), - [aux_sym__val_number_decimal_token3] = ACTIONS(1863), - [aux_sym__val_number_decimal_token4] = ACTIONS(1863), - [aux_sym__val_number_token1] = ACTIONS(1863), - [aux_sym__val_number_token2] = ACTIONS(1863), - [aux_sym__val_number_token3] = ACTIONS(1863), - [aux_sym__val_number_token4] = ACTIONS(1863), - [aux_sym__val_number_token5] = ACTIONS(1863), - [aux_sym__val_number_token6] = ACTIONS(1863), - [anon_sym_0b] = ACTIONS(1861), - [anon_sym_0o] = ACTIONS(1861), - [anon_sym_0x] = ACTIONS(1861), - [sym_val_date] = ACTIONS(1863), - [anon_sym_DQUOTE] = ACTIONS(1863), - [sym__str_single_quotes] = ACTIONS(1863), - [sym__str_back_ticks] = ACTIONS(1863), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1863), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token1] = ACTIONS(1861), - [aux_sym_unquoted_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1863), - }, - [1665] = { - [sym_cell_path] = STATE(2094), - [sym_path] = STATE(1861), - [sym_comment] = STATE(1665), - [aux_sym_cell_path_repeat1] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(937), - [sym__newline] = ACTIONS(937), - [anon_sym_SEMI] = ACTIONS(937), - [anon_sym_PIPE] = ACTIONS(937), - [anon_sym_err_GT_PIPE] = ACTIONS(937), - [anon_sym_out_GT_PIPE] = ACTIONS(937), - [anon_sym_e_GT_PIPE] = ACTIONS(937), - [anon_sym_o_GT_PIPE] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(937), - [anon_sym_GT2] = ACTIONS(935), - [anon_sym_DASH2] = ACTIONS(937), - [anon_sym_in2] = ACTIONS(937), - [anon_sym_STAR2] = ACTIONS(935), - [anon_sym_and2] = ACTIONS(937), - [anon_sym_xor2] = ACTIONS(937), - [anon_sym_or2] = ACTIONS(937), - [anon_sym_not_DASHin2] = ACTIONS(937), - [anon_sym_starts_DASHwith2] = ACTIONS(937), - [anon_sym_ends_DASHwith2] = ACTIONS(937), - [anon_sym_EQ_EQ2] = ACTIONS(937), - [anon_sym_BANG_EQ2] = ACTIONS(937), - [anon_sym_LT2] = ACTIONS(935), - [anon_sym_LT_EQ2] = ACTIONS(937), - [anon_sym_GT_EQ2] = ACTIONS(937), - [anon_sym_EQ_TILDE2] = ACTIONS(937), - [anon_sym_BANG_TILDE2] = ACTIONS(937), - [anon_sym_STAR_STAR2] = ACTIONS(937), - [anon_sym_PLUS_PLUS2] = ACTIONS(937), - [anon_sym_SLASH2] = ACTIONS(935), - [anon_sym_mod2] = ACTIONS(937), - [anon_sym_SLASH_SLASH2] = ACTIONS(937), - [anon_sym_PLUS2] = ACTIONS(935), - [anon_sym_bit_DASHshl2] = ACTIONS(937), - [anon_sym_bit_DASHshr2] = ACTIONS(937), - [anon_sym_bit_DASHand2] = ACTIONS(937), - [anon_sym_bit_DASHxor2] = ACTIONS(937), - [anon_sym_bit_DASHor2] = ACTIONS(937), - [anon_sym_DOT_DOT2] = ACTIONS(935), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(937), - [anon_sym_DOT_DOT_LT2] = ACTIONS(937), - [anon_sym_DOT2] = ACTIONS(4919), - [anon_sym_err_GT] = ACTIONS(935), - [anon_sym_out_GT] = ACTIONS(935), - [anon_sym_e_GT] = ACTIONS(935), - [anon_sym_o_GT] = ACTIONS(935), - [anon_sym_err_PLUSout_GT] = ACTIONS(935), - [anon_sym_out_PLUSerr_GT] = ACTIONS(935), - [anon_sym_o_PLUSe_GT] = ACTIONS(935), - [anon_sym_e_PLUSo_GT] = ACTIONS(935), - [anon_sym_err_GT_GT] = ACTIONS(937), - [anon_sym_out_GT_GT] = ACTIONS(937), - [anon_sym_e_GT_GT] = ACTIONS(937), - [anon_sym_o_GT_GT] = ACTIONS(937), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(937), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(937), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(937), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(937), - [anon_sym_POUND] = ACTIONS(251), - }, - [1666] = { - [sym_comment] = STATE(1666), - [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(2116), - [anon_sym_DASH2] = ACTIONS(2118), - [anon_sym_in2] = ACTIONS(2118), - [anon_sym_if] = ACTIONS(2118), - [anon_sym_LBRACE] = ACTIONS(2118), - [anon_sym_RBRACE] = ACTIONS(2118), - [anon_sym_EQ_GT] = ACTIONS(2118), - [anon_sym_STAR2] = ACTIONS(2116), - [anon_sym_and2] = ACTIONS(2118), - [anon_sym_xor2] = ACTIONS(2118), - [anon_sym_or2] = ACTIONS(2118), - [anon_sym_not_DASHin2] = ACTIONS(2118), - [anon_sym_starts_DASHwith2] = ACTIONS(2118), - [anon_sym_ends_DASHwith2] = ACTIONS(2118), - [anon_sym_EQ_EQ2] = ACTIONS(2118), - [anon_sym_BANG_EQ2] = ACTIONS(2118), - [anon_sym_LT2] = ACTIONS(2116), - [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_STAR_STAR2] = ACTIONS(2118), - [anon_sym_PLUS_PLUS2] = ACTIONS(2118), - [anon_sym_SLASH2] = ACTIONS(2116), - [anon_sym_mod2] = ACTIONS(2118), - [anon_sym_SLASH_SLASH2] = ACTIONS(2118), - [anon_sym_PLUS2] = ACTIONS(2116), - [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(2116), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(2118), - [anon_sym_DOT_DOT_LT2] = ACTIONS(2118), - [anon_sym_err_GT] = ACTIONS(2116), - [anon_sym_out_GT] = ACTIONS(2116), - [anon_sym_e_GT] = ACTIONS(2116), - [anon_sym_o_GT] = ACTIONS(2116), - [anon_sym_err_PLUSout_GT] = ACTIONS(2116), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2116), - [anon_sym_o_PLUSe_GT] = ACTIONS(2116), - [anon_sym_e_PLUSo_GT] = ACTIONS(2116), - [anon_sym_err_GT_GT] = ACTIONS(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(251), - }, - [1667] = { - [sym_comment] = STATE(1667), - [ts_builtin_sym_end] = ACTIONS(1727), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1725), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_LPAREN2] = ACTIONS(1727), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [aux_sym_unquoted_token2] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1668] = { - [sym_path] = STATE(1861), - [sym_comment] = STATE(1668), - [aux_sym_cell_path_repeat1] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(943), - [sym__newline] = ACTIONS(943), - [anon_sym_SEMI] = ACTIONS(943), - [anon_sym_PIPE] = ACTIONS(943), - [anon_sym_err_GT_PIPE] = ACTIONS(943), - [anon_sym_out_GT_PIPE] = ACTIONS(943), - [anon_sym_e_GT_PIPE] = ACTIONS(943), - [anon_sym_o_GT_PIPE] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(943), - [anon_sym_GT2] = ACTIONS(941), - [anon_sym_DASH2] = ACTIONS(943), - [anon_sym_in2] = ACTIONS(943), - [anon_sym_LBRACE] = ACTIONS(943), - [anon_sym_STAR2] = ACTIONS(941), - [anon_sym_and2] = ACTIONS(943), - [anon_sym_xor2] = ACTIONS(943), - [anon_sym_or2] = ACTIONS(943), - [anon_sym_not_DASHin2] = ACTIONS(943), - [anon_sym_starts_DASHwith2] = ACTIONS(943), - [anon_sym_ends_DASHwith2] = ACTIONS(943), - [anon_sym_EQ_EQ2] = ACTIONS(943), - [anon_sym_BANG_EQ2] = ACTIONS(943), - [anon_sym_LT2] = ACTIONS(941), - [anon_sym_LT_EQ2] = ACTIONS(943), - [anon_sym_GT_EQ2] = ACTIONS(943), - [anon_sym_EQ_TILDE2] = ACTIONS(943), - [anon_sym_BANG_TILDE2] = ACTIONS(943), - [anon_sym_STAR_STAR2] = ACTIONS(943), - [anon_sym_PLUS_PLUS2] = ACTIONS(943), - [anon_sym_SLASH2] = ACTIONS(941), - [anon_sym_mod2] = ACTIONS(943), - [anon_sym_SLASH_SLASH2] = ACTIONS(943), - [anon_sym_PLUS2] = ACTIONS(941), - [anon_sym_bit_DASHshl2] = ACTIONS(943), - [anon_sym_bit_DASHshr2] = ACTIONS(943), - [anon_sym_bit_DASHand2] = ACTIONS(943), - [anon_sym_bit_DASHxor2] = ACTIONS(943), - [anon_sym_bit_DASHor2] = ACTIONS(943), - [anon_sym_DOT_DOT2] = ACTIONS(941), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(943), - [anon_sym_DOT_DOT_LT2] = ACTIONS(943), - [anon_sym_DOT2] = ACTIONS(4975), - [anon_sym_err_GT] = ACTIONS(941), - [anon_sym_out_GT] = ACTIONS(941), - [anon_sym_e_GT] = ACTIONS(941), - [anon_sym_o_GT] = ACTIONS(941), - [anon_sym_err_PLUSout_GT] = ACTIONS(941), - [anon_sym_out_PLUSerr_GT] = ACTIONS(941), - [anon_sym_o_PLUSe_GT] = ACTIONS(941), - [anon_sym_e_PLUSo_GT] = ACTIONS(941), - [anon_sym_err_GT_GT] = ACTIONS(943), - [anon_sym_out_GT_GT] = ACTIONS(943), - [anon_sym_e_GT_GT] = ACTIONS(943), - [anon_sym_o_GT_GT] = ACTIONS(943), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(943), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(943), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(943), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(943), - [anon_sym_POUND] = ACTIONS(251), - }, - [1669] = { - [sym_comment] = STATE(1669), - [ts_builtin_sym_end] = ACTIONS(1000), - [sym__newline] = ACTIONS(1000), - [anon_sym_SEMI] = ACTIONS(1000), - [anon_sym_PIPE] = ACTIONS(1000), - [anon_sym_err_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_GT_PIPE] = ACTIONS(1000), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1000), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1000), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), - [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1004), - [anon_sym_DOLLAR] = ACTIONS(1004), - [anon_sym_DASH_DASH] = ACTIONS(1004), - [anon_sym_DASH2] = ACTIONS(1004), - [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_DOT_DOT] = ACTIONS(1004), - [anon_sym_LPAREN2] = ACTIONS(2202), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), - [anon_sym_DOT_DOT_LT] = ACTIONS(1004), - [anon_sym_null] = ACTIONS(1004), - [anon_sym_true] = ACTIONS(1004), - [anon_sym_false] = ACTIONS(1004), - [aux_sym__val_number_decimal_token1] = ACTIONS(1004), - [aux_sym__val_number_decimal_token2] = ACTIONS(1004), - [aux_sym__val_number_decimal_token3] = ACTIONS(1004), - [aux_sym__val_number_decimal_token4] = ACTIONS(1004), - [aux_sym__val_number_token1] = ACTIONS(1004), - [aux_sym__val_number_token2] = ACTIONS(1004), - [aux_sym__val_number_token3] = ACTIONS(1004), - [aux_sym__val_number_token4] = ACTIONS(1004), - [aux_sym__val_number_token5] = ACTIONS(1004), - [aux_sym__val_number_token6] = ACTIONS(1004), - [anon_sym_0b] = ACTIONS(1004), - [anon_sym_0o] = ACTIONS(1004), - [anon_sym_0x] = ACTIONS(1004), - [sym_val_date] = ACTIONS(1004), - [anon_sym_DQUOTE] = ACTIONS(1000), - [sym__str_single_quotes] = ACTIONS(1000), - [sym__str_back_ticks] = ACTIONS(1000), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1000), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1000), - [anon_sym_err_GT] = ACTIONS(1004), - [anon_sym_out_GT] = ACTIONS(1004), - [anon_sym_e_GT] = ACTIONS(1004), - [anon_sym_o_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT] = ACTIONS(1004), - [anon_sym_err_GT_GT] = ACTIONS(1004), - [anon_sym_out_GT_GT] = ACTIONS(1004), - [anon_sym_e_GT_GT] = ACTIONS(1004), - [anon_sym_o_GT_GT] = ACTIONS(1004), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1004), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1004), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), - [aux_sym_unquoted_token1] = ACTIONS(1004), - [aux_sym_unquoted_token4] = ACTIONS(2204), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(1000), - }, - [1670] = { - [sym_comment] = STATE(1670), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1759), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [aux_sym__immediate_decimal_token1] = ACTIONS(4978), - [aux_sym__immediate_decimal_token2] = ACTIONS(4980), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), - }, - [1671] = { - [sym_comment] = STATE(1671), - [ts_builtin_sym_end] = ACTIONS(1597), - [sym__newline] = ACTIONS(1597), - [anon_sym_SEMI] = ACTIONS(1597), - [anon_sym_PIPE] = ACTIONS(1597), - [anon_sym_err_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_GT_PIPE] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1597), - [anon_sym_GT2] = ACTIONS(1595), - [anon_sym_DASH2] = ACTIONS(1597), - [anon_sym_in2] = ACTIONS(1597), - [anon_sym_STAR2] = ACTIONS(1595), - [anon_sym_and2] = ACTIONS(1597), - [anon_sym_xor2] = ACTIONS(1597), - [anon_sym_or2] = ACTIONS(1597), - [anon_sym_not_DASHin2] = ACTIONS(1597), - [anon_sym_starts_DASHwith2] = ACTIONS(1597), - [anon_sym_ends_DASHwith2] = ACTIONS(1597), - [anon_sym_EQ_EQ2] = ACTIONS(1597), - [anon_sym_BANG_EQ2] = ACTIONS(1597), - [anon_sym_LT2] = ACTIONS(1595), - [anon_sym_LT_EQ2] = ACTIONS(1597), - [anon_sym_GT_EQ2] = ACTIONS(1597), - [anon_sym_EQ_TILDE2] = ACTIONS(1597), - [anon_sym_BANG_TILDE2] = ACTIONS(1597), - [anon_sym_LPAREN2] = ACTIONS(1597), - [anon_sym_STAR_STAR2] = ACTIONS(1597), - [anon_sym_PLUS_PLUS2] = ACTIONS(1597), - [anon_sym_SLASH2] = ACTIONS(1595), - [anon_sym_mod2] = ACTIONS(1597), - [anon_sym_SLASH_SLASH2] = ACTIONS(1597), - [anon_sym_PLUS2] = ACTIONS(1595), - [anon_sym_bit_DASHshl2] = ACTIONS(1597), - [anon_sym_bit_DASHshr2] = ACTIONS(1597), - [anon_sym_bit_DASHand2] = ACTIONS(1597), - [anon_sym_bit_DASHxor2] = ACTIONS(1597), - [anon_sym_bit_DASHor2] = ACTIONS(1597), - [anon_sym_DOT_DOT2] = ACTIONS(1595), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1597), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1597), - [sym_filesize_unit] = ACTIONS(1595), - [sym_duration_unit] = ACTIONS(1597), - [anon_sym_err_GT] = ACTIONS(1595), - [anon_sym_out_GT] = ACTIONS(1595), - [anon_sym_e_GT] = ACTIONS(1595), - [anon_sym_o_GT] = ACTIONS(1595), - [anon_sym_err_PLUSout_GT] = ACTIONS(1595), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1595), - [anon_sym_o_PLUSe_GT] = ACTIONS(1595), - [anon_sym_e_PLUSo_GT] = ACTIONS(1595), - [anon_sym_err_GT_GT] = ACTIONS(1597), - [anon_sym_out_GT_GT] = ACTIONS(1597), - [anon_sym_e_GT_GT] = ACTIONS(1597), - [anon_sym_o_GT_GT] = ACTIONS(1597), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1597), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1597), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1597), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1597), - [aux_sym_unquoted_token2] = ACTIONS(1595), - [anon_sym_POUND] = ACTIONS(251), - }, - [1672] = { - [sym__expr_parenthesized_immediate] = STATE(7237), - [sym_comment] = STATE(1672), - [ts_builtin_sym_end] = ACTIONS(4899), - [sym__newline] = ACTIONS(4899), - [anon_sym_SEMI] = ACTIONS(4899), - [anon_sym_PIPE] = ACTIONS(4899), - [anon_sym_err_GT_PIPE] = ACTIONS(4899), - [anon_sym_out_GT_PIPE] = ACTIONS(4899), - [anon_sym_e_GT_PIPE] = ACTIONS(4899), - [anon_sym_o_GT_PIPE] = ACTIONS(4899), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4899), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4899), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4899), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4899), - [anon_sym_LBRACK] = ACTIONS(4899), - [anon_sym_LPAREN] = ACTIONS(4901), - [anon_sym_DOLLAR] = ACTIONS(4901), - [anon_sym_DASH_DASH] = ACTIONS(4899), - [anon_sym_DASH2] = ACTIONS(4901), - [anon_sym_LBRACE] = ACTIONS(4899), - [anon_sym_DOT_DOT] = ACTIONS(4901), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4899), - [anon_sym_DOT_DOT_LT] = ACTIONS(4899), - [anon_sym_null] = ACTIONS(4899), - [anon_sym_true] = ACTIONS(4899), - [anon_sym_false] = ACTIONS(4899), - [aux_sym__val_number_decimal_token1] = ACTIONS(4901), - [aux_sym__val_number_decimal_token2] = ACTIONS(4899), - [aux_sym__val_number_decimal_token3] = ACTIONS(4899), - [aux_sym__val_number_decimal_token4] = ACTIONS(4899), - [aux_sym__val_number_token1] = ACTIONS(4899), - [aux_sym__val_number_token2] = ACTIONS(4899), - [aux_sym__val_number_token3] = ACTIONS(4899), - [aux_sym__val_number_token4] = ACTIONS(4899), - [aux_sym__val_number_token5] = ACTIONS(4899), - [aux_sym__val_number_token6] = ACTIONS(4899), - [anon_sym_0b] = ACTIONS(4901), - [anon_sym_0o] = ACTIONS(4901), - [anon_sym_0x] = ACTIONS(4901), - [sym_val_date] = ACTIONS(4899), - [anon_sym_DQUOTE] = ACTIONS(4899), - [sym__str_single_quotes] = ACTIONS(4899), - [sym__str_back_ticks] = ACTIONS(4899), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4899), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4899), - [anon_sym_err_GT] = ACTIONS(4901), - [anon_sym_out_GT] = ACTIONS(4901), - [anon_sym_e_GT] = ACTIONS(4901), - [anon_sym_o_GT] = ACTIONS(4901), - [anon_sym_err_PLUSout_GT] = ACTIONS(4901), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4901), - [anon_sym_o_PLUSe_GT] = ACTIONS(4901), - [anon_sym_e_PLUSo_GT] = ACTIONS(4901), - [anon_sym_err_GT_GT] = ACTIONS(4899), - [anon_sym_out_GT_GT] = ACTIONS(4899), - [anon_sym_e_GT_GT] = ACTIONS(4899), - [anon_sym_o_GT_GT] = ACTIONS(4899), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4899), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4899), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4899), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4899), - [aux_sym_unquoted_token1] = ACTIONS(4901), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4899), - }, [1673] = { - [sym__expr_parenthesized_immediate] = STATE(7420), [sym_comment] = STATE(1673), - [ts_builtin_sym_end] = ACTIONS(4858), - [sym__newline] = ACTIONS(4858), - [anon_sym_SEMI] = ACTIONS(4858), - [anon_sym_PIPE] = ACTIONS(4858), - [anon_sym_err_GT_PIPE] = ACTIONS(4858), - [anon_sym_out_GT_PIPE] = ACTIONS(4858), - [anon_sym_e_GT_PIPE] = ACTIONS(4858), - [anon_sym_o_GT_PIPE] = ACTIONS(4858), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4858), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4858), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4858), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4858), - [anon_sym_LBRACK] = ACTIONS(4858), - [anon_sym_LPAREN] = ACTIONS(4860), - [anon_sym_DOLLAR] = ACTIONS(4860), - [anon_sym_DASH_DASH] = ACTIONS(4858), - [anon_sym_DASH2] = ACTIONS(4860), - [anon_sym_LBRACE] = ACTIONS(4858), - [anon_sym_DOT_DOT] = ACTIONS(4860), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4858), - [anon_sym_DOT_DOT_LT] = ACTIONS(4858), - [anon_sym_null] = ACTIONS(4858), - [anon_sym_true] = ACTIONS(4858), - [anon_sym_false] = ACTIONS(4858), - [aux_sym__val_number_decimal_token1] = ACTIONS(4860), - [aux_sym__val_number_decimal_token2] = ACTIONS(4858), - [aux_sym__val_number_decimal_token3] = ACTIONS(4858), - [aux_sym__val_number_decimal_token4] = ACTIONS(4858), - [aux_sym__val_number_token1] = ACTIONS(4858), - [aux_sym__val_number_token2] = ACTIONS(4858), - [aux_sym__val_number_token3] = ACTIONS(4858), - [aux_sym__val_number_token4] = ACTIONS(4858), - [aux_sym__val_number_token5] = ACTIONS(4858), - [aux_sym__val_number_token6] = ACTIONS(4858), - [anon_sym_0b] = ACTIONS(4860), - [anon_sym_0o] = ACTIONS(4860), - [anon_sym_0x] = ACTIONS(4860), - [sym_val_date] = ACTIONS(4858), - [anon_sym_DQUOTE] = ACTIONS(4858), - [sym__str_single_quotes] = ACTIONS(4858), - [sym__str_back_ticks] = ACTIONS(4858), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4858), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4858), - [anon_sym_err_GT] = ACTIONS(4860), - [anon_sym_out_GT] = ACTIONS(4860), - [anon_sym_e_GT] = ACTIONS(4860), - [anon_sym_o_GT] = ACTIONS(4860), - [anon_sym_err_PLUSout_GT] = ACTIONS(4860), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4860), - [anon_sym_o_PLUSe_GT] = ACTIONS(4860), - [anon_sym_e_PLUSo_GT] = ACTIONS(4860), - [anon_sym_err_GT_GT] = ACTIONS(4858), - [anon_sym_out_GT_GT] = ACTIONS(4858), - [anon_sym_e_GT_GT] = ACTIONS(4858), - [anon_sym_o_GT_GT] = ACTIONS(4858), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4858), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4858), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4858), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4858), - [aux_sym_unquoted_token1] = ACTIONS(4860), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4858), - }, - [1674] = { - [sym_cmd_identifier] = STATE(3983), - [sym__command_name] = STATE(6500), - [sym_scope_pattern] = STATE(6505), - [sym_wild_card] = STATE(6509), - [sym_command_list] = STATE(6510), - [sym__val_number_decimal] = STATE(3649), - [sym_val_string] = STATE(3984), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_comment] = STATE(1674), - [aux_sym_cmd_identifier_token1] = ACTIONS(4959), - [aux_sym_cmd_identifier_token2] = ACTIONS(4961), - [aux_sym_cmd_identifier_token3] = ACTIONS(4961), - [aux_sym_cmd_identifier_token4] = ACTIONS(4961), - [aux_sym_cmd_identifier_token5] = ACTIONS(4961), - [aux_sym_cmd_identifier_token6] = ACTIONS(4961), - [aux_sym_cmd_identifier_token7] = ACTIONS(4961), - [aux_sym_cmd_identifier_token8] = ACTIONS(4961), - [aux_sym_cmd_identifier_token9] = ACTIONS(4959), - [aux_sym_cmd_identifier_token10] = ACTIONS(4961), - [aux_sym_cmd_identifier_token11] = ACTIONS(4961), - [aux_sym_cmd_identifier_token12] = ACTIONS(4961), - [aux_sym_cmd_identifier_token13] = ACTIONS(4959), - [aux_sym_cmd_identifier_token14] = ACTIONS(4961), - [aux_sym_cmd_identifier_token15] = ACTIONS(4959), - [aux_sym_cmd_identifier_token16] = ACTIONS(4961), - [aux_sym_cmd_identifier_token17] = ACTIONS(4961), - [aux_sym_cmd_identifier_token18] = ACTIONS(4961), - [aux_sym_cmd_identifier_token19] = ACTIONS(4961), - [aux_sym_cmd_identifier_token20] = ACTIONS(4961), - [aux_sym_cmd_identifier_token21] = ACTIONS(4961), - [aux_sym_cmd_identifier_token22] = ACTIONS(4961), - [aux_sym_cmd_identifier_token23] = ACTIONS(4961), - [aux_sym_cmd_identifier_token24] = ACTIONS(4961), - [aux_sym_cmd_identifier_token25] = ACTIONS(4961), - [aux_sym_cmd_identifier_token26] = ACTIONS(4961), - [aux_sym_cmd_identifier_token27] = ACTIONS(4961), - [aux_sym_cmd_identifier_token28] = ACTIONS(4961), - [aux_sym_cmd_identifier_token29] = ACTIONS(4961), - [aux_sym_cmd_identifier_token30] = ACTIONS(4961), - [aux_sym_cmd_identifier_token31] = ACTIONS(4961), - [aux_sym_cmd_identifier_token32] = ACTIONS(4961), - [aux_sym_cmd_identifier_token33] = ACTIONS(4961), - [aux_sym_cmd_identifier_token34] = ACTIONS(4959), - [aux_sym_cmd_identifier_token35] = ACTIONS(4961), - [aux_sym_cmd_identifier_token36] = ACTIONS(4961), - [aux_sym_cmd_identifier_token37] = ACTIONS(4961), - [aux_sym_cmd_identifier_token38] = ACTIONS(4959), - [aux_sym_cmd_identifier_token39] = ACTIONS(4961), - [aux_sym_cmd_identifier_token40] = ACTIONS(4961), - [sym__newline] = ACTIONS(4982), - [anon_sym_SEMI] = ACTIONS(4982), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(4982), - [anon_sym_RBRACE] = ACTIONS(4982), - [anon_sym_STAR2] = ACTIONS(4967), - [aux_sym__val_number_decimal_token1] = ACTIONS(4969), - [aux_sym__val_number_decimal_token2] = ACTIONS(4969), - [aux_sym__val_number_decimal_token3] = ACTIONS(4971), - [aux_sym__val_number_decimal_token4] = ACTIONS(4973), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1675] = { - [sym_comment] = STATE(1675), - [ts_builtin_sym_end] = ACTIONS(4888), - [sym_long_flag_identifier] = ACTIONS(4984), - [sym__newline] = ACTIONS(4888), - [anon_sym_SEMI] = ACTIONS(4888), - [anon_sym_PIPE] = ACTIONS(4888), - [anon_sym_err_GT_PIPE] = ACTIONS(4888), - [anon_sym_out_GT_PIPE] = ACTIONS(4888), - [anon_sym_e_GT_PIPE] = ACTIONS(4888), - [anon_sym_o_GT_PIPE] = ACTIONS(4888), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4888), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4888), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4888), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4888), - [anon_sym_LBRACK] = ACTIONS(4888), - [anon_sym_LPAREN] = ACTIONS(4888), - [anon_sym_DOLLAR] = ACTIONS(4890), - [anon_sym_DASH_DASH] = ACTIONS(4888), - [anon_sym_DASH2] = ACTIONS(4890), - [anon_sym_LBRACE] = ACTIONS(4888), - [anon_sym_DOT_DOT] = ACTIONS(4890), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4888), - [anon_sym_DOT_DOT_LT] = ACTIONS(4888), - [anon_sym_null] = ACTIONS(4890), - [anon_sym_true] = ACTIONS(4890), - [anon_sym_false] = ACTIONS(4890), - [aux_sym__val_number_decimal_token1] = ACTIONS(4890), - [aux_sym__val_number_decimal_token2] = ACTIONS(4888), - [aux_sym__val_number_decimal_token3] = ACTIONS(4888), - [aux_sym__val_number_decimal_token4] = ACTIONS(4888), - [aux_sym__val_number_token1] = ACTIONS(4890), - [aux_sym__val_number_token2] = ACTIONS(4890), - [aux_sym__val_number_token3] = ACTIONS(4890), - [aux_sym__val_number_token4] = ACTIONS(4890), - [aux_sym__val_number_token5] = ACTIONS(4888), - [aux_sym__val_number_token6] = ACTIONS(4890), - [anon_sym_0b] = ACTIONS(4890), - [anon_sym_0o] = ACTIONS(4890), - [anon_sym_0x] = ACTIONS(4890), - [sym_val_date] = ACTIONS(4890), - [anon_sym_DQUOTE] = ACTIONS(4888), - [sym__str_single_quotes] = ACTIONS(4888), - [sym__str_back_ticks] = ACTIONS(4888), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4888), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4888), - [anon_sym_err_GT] = ACTIONS(4890), - [anon_sym_out_GT] = ACTIONS(4890), - [anon_sym_e_GT] = ACTIONS(4890), - [anon_sym_o_GT] = ACTIONS(4890), - [anon_sym_err_PLUSout_GT] = ACTIONS(4890), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4890), - [anon_sym_o_PLUSe_GT] = ACTIONS(4890), - [anon_sym_e_PLUSo_GT] = ACTIONS(4890), - [anon_sym_err_GT_GT] = ACTIONS(4888), - [anon_sym_out_GT_GT] = ACTIONS(4888), - [anon_sym_e_GT_GT] = ACTIONS(4888), - [anon_sym_o_GT_GT] = ACTIONS(4888), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4888), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4888), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4888), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4888), - [anon_sym_EQ2] = ACTIONS(4986), - [aux_sym_unquoted_token1] = ACTIONS(4890), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4888), - }, - [1676] = { - [sym_comment] = STATE(1676), - [sym__newline] = ACTIONS(1863), - [anon_sym_SEMI] = ACTIONS(1863), - [anon_sym_PIPE] = ACTIONS(1863), - [anon_sym_err_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_GT_PIPE] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1863), - [anon_sym_RPAREN] = ACTIONS(1863), - [anon_sym_GT2] = ACTIONS(1861), - [anon_sym_DASH2] = ACTIONS(1863), - [anon_sym_in2] = ACTIONS(1863), - [anon_sym_LBRACE] = ACTIONS(1863), - [anon_sym_RBRACE] = ACTIONS(1863), - [anon_sym_STAR2] = ACTIONS(1861), - [anon_sym_and2] = ACTIONS(1863), - [anon_sym_xor2] = ACTIONS(1863), - [anon_sym_or2] = ACTIONS(1863), - [anon_sym_not_DASHin2] = ACTIONS(1863), - [anon_sym_starts_DASHwith2] = ACTIONS(1863), - [anon_sym_ends_DASHwith2] = ACTIONS(1863), - [anon_sym_EQ_EQ2] = ACTIONS(1863), - [anon_sym_BANG_EQ2] = ACTIONS(1863), - [anon_sym_LT2] = ACTIONS(1861), - [anon_sym_LT_EQ2] = ACTIONS(1863), - [anon_sym_GT_EQ2] = ACTIONS(1863), - [anon_sym_EQ_TILDE2] = ACTIONS(1863), - [anon_sym_BANG_TILDE2] = ACTIONS(1863), - [anon_sym_LPAREN2] = ACTIONS(1863), - [anon_sym_STAR_STAR2] = ACTIONS(1863), - [anon_sym_PLUS_PLUS2] = ACTIONS(1863), - [anon_sym_SLASH2] = ACTIONS(1861), - [anon_sym_mod2] = ACTIONS(1863), - [anon_sym_SLASH_SLASH2] = ACTIONS(1863), - [anon_sym_PLUS2] = ACTIONS(1861), - [anon_sym_bit_DASHshl2] = ACTIONS(1863), - [anon_sym_bit_DASHshr2] = ACTIONS(1863), - [anon_sym_bit_DASHand2] = ACTIONS(1863), - [anon_sym_bit_DASHxor2] = ACTIONS(1863), - [anon_sym_bit_DASHor2] = ACTIONS(1863), - [anon_sym_DOT_DOT2] = ACTIONS(1861), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1863), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1863), - [anon_sym_err_GT] = ACTIONS(1861), - [anon_sym_out_GT] = ACTIONS(1861), - [anon_sym_e_GT] = ACTIONS(1861), - [anon_sym_o_GT] = ACTIONS(1861), - [anon_sym_err_PLUSout_GT] = ACTIONS(1861), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1861), - [anon_sym_o_PLUSe_GT] = ACTIONS(1861), - [anon_sym_e_PLUSo_GT] = ACTIONS(1861), - [anon_sym_err_GT_GT] = ACTIONS(1863), - [anon_sym_out_GT_GT] = ACTIONS(1863), - [anon_sym_e_GT_GT] = ACTIONS(1863), - [anon_sym_o_GT_GT] = ACTIONS(1863), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1863), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1863), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1863), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1863), - [aux_sym_unquoted_token2] = ACTIONS(1861), - [anon_sym_POUND] = ACTIONS(251), - }, - [1677] = { - [sym_cell_path] = STATE(2135), - [sym_path] = STATE(1497), - [sym_comment] = STATE(1677), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1947), - [anon_sym_SEMI] = ACTIONS(1947), - [anon_sym_PIPE] = ACTIONS(1947), - [anon_sym_err_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_GT_PIPE] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1947), - [anon_sym_RPAREN] = ACTIONS(1947), - [anon_sym_GT2] = ACTIONS(1945), - [anon_sym_DASH2] = ACTIONS(1947), - [anon_sym_in2] = ACTIONS(1947), - [anon_sym_LBRACE] = ACTIONS(1947), - [anon_sym_RBRACE] = ACTIONS(1947), - [anon_sym_EQ_GT] = ACTIONS(1947), - [anon_sym_STAR2] = ACTIONS(1945), - [anon_sym_and2] = ACTIONS(1947), - [anon_sym_xor2] = ACTIONS(1947), - [anon_sym_or2] = ACTIONS(1947), - [anon_sym_not_DASHin2] = ACTIONS(1947), - [anon_sym_starts_DASHwith2] = ACTIONS(1947), - [anon_sym_ends_DASHwith2] = ACTIONS(1947), - [anon_sym_EQ_EQ2] = ACTIONS(1947), - [anon_sym_BANG_EQ2] = ACTIONS(1947), - [anon_sym_LT2] = ACTIONS(1945), - [anon_sym_LT_EQ2] = ACTIONS(1947), - [anon_sym_GT_EQ2] = ACTIONS(1947), - [anon_sym_EQ_TILDE2] = ACTIONS(1947), - [anon_sym_BANG_TILDE2] = ACTIONS(1947), - [anon_sym_STAR_STAR2] = ACTIONS(1947), - [anon_sym_PLUS_PLUS2] = ACTIONS(1947), - [anon_sym_SLASH2] = ACTIONS(1945), - [anon_sym_mod2] = ACTIONS(1947), - [anon_sym_SLASH_SLASH2] = ACTIONS(1947), - [anon_sym_PLUS2] = ACTIONS(1945), - [anon_sym_bit_DASHshl2] = ACTIONS(1947), - [anon_sym_bit_DASHshr2] = ACTIONS(1947), - [anon_sym_bit_DASHand2] = ACTIONS(1947), - [anon_sym_bit_DASHxor2] = ACTIONS(1947), - [anon_sym_bit_DASHor2] = ACTIONS(1947), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1945), - [anon_sym_out_GT] = ACTIONS(1945), - [anon_sym_e_GT] = ACTIONS(1945), - [anon_sym_o_GT] = ACTIONS(1945), - [anon_sym_err_PLUSout_GT] = ACTIONS(1945), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1945), - [anon_sym_o_PLUSe_GT] = ACTIONS(1945), - [anon_sym_e_PLUSo_GT] = ACTIONS(1945), - [anon_sym_err_GT_GT] = ACTIONS(1947), - [anon_sym_out_GT_GT] = ACTIONS(1947), - [anon_sym_e_GT_GT] = ACTIONS(1947), - [anon_sym_o_GT_GT] = ACTIONS(1947), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1947), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1947), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1947), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1947), - [anon_sym_POUND] = ACTIONS(251), - }, - [1678] = { - [sym__expr_parenthesized_immediate] = STATE(7420), - [sym_comment] = STATE(1678), [ts_builtin_sym_end] = ACTIONS(4862), + [sym_long_flag_identifier] = ACTIONS(4979), [sym__newline] = ACTIONS(4862), [anon_sym_SEMI] = ACTIONS(4862), [anon_sym_PIPE] = ACTIONS(4862), @@ -232762,32 +232403,31 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4862), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4862), [anon_sym_LBRACK] = ACTIONS(4862), - [anon_sym_LPAREN] = ACTIONS(4864), + [anon_sym_LPAREN] = ACTIONS(4862), [anon_sym_DOLLAR] = ACTIONS(4864), [anon_sym_DASH_DASH] = ACTIONS(4862), [anon_sym_DASH2] = ACTIONS(4864), [anon_sym_LBRACE] = ACTIONS(4862), [anon_sym_DOT_DOT] = ACTIONS(4864), - [anon_sym_LPAREN2] = ACTIONS(4412), [anon_sym_DOT_DOT_EQ] = ACTIONS(4862), [anon_sym_DOT_DOT_LT] = ACTIONS(4862), - [anon_sym_null] = ACTIONS(4862), - [anon_sym_true] = ACTIONS(4862), - [anon_sym_false] = ACTIONS(4862), + [anon_sym_null] = ACTIONS(4864), + [anon_sym_true] = ACTIONS(4864), + [anon_sym_false] = ACTIONS(4864), [aux_sym__val_number_decimal_token1] = ACTIONS(4864), [aux_sym__val_number_decimal_token2] = ACTIONS(4862), [aux_sym__val_number_decimal_token3] = ACTIONS(4862), [aux_sym__val_number_decimal_token4] = ACTIONS(4862), - [aux_sym__val_number_token1] = ACTIONS(4862), - [aux_sym__val_number_token2] = ACTIONS(4862), - [aux_sym__val_number_token3] = ACTIONS(4862), - [aux_sym__val_number_token4] = ACTIONS(4862), + [aux_sym__val_number_token1] = ACTIONS(4864), + [aux_sym__val_number_token2] = ACTIONS(4864), + [aux_sym__val_number_token3] = ACTIONS(4864), + [aux_sym__val_number_token4] = ACTIONS(4864), [aux_sym__val_number_token5] = ACTIONS(4862), - [aux_sym__val_number_token6] = ACTIONS(4862), + [aux_sym__val_number_token6] = ACTIONS(4864), [anon_sym_0b] = ACTIONS(4864), [anon_sym_0o] = ACTIONS(4864), [anon_sym_0x] = ACTIONS(4864), - [sym_val_date] = ACTIONS(4862), + [sym_val_date] = ACTIONS(4864), [anon_sym_DQUOTE] = ACTIONS(4862), [sym__str_single_quotes] = ACTIONS(4862), [sym__str_back_ticks] = ACTIONS(4862), @@ -232809,79 +232449,80 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4862), [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4862), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4862), + [anon_sym_EQ2] = ACTIONS(4981), [aux_sym_unquoted_token1] = ACTIONS(4864), [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(4862), }, - [1679] = { - [sym_comment] = STATE(1679), - [ts_builtin_sym_end] = ACTIONS(1759), - [sym__newline] = ACTIONS(1759), - [anon_sym_SEMI] = ACTIONS(1759), - [anon_sym_PIPE] = ACTIONS(1759), - [anon_sym_err_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_GT_PIPE] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1759), - [anon_sym_LBRACK] = ACTIONS(1759), - [anon_sym_LPAREN] = ACTIONS(1757), - [anon_sym_DOLLAR] = ACTIONS(1757), - [anon_sym_DASH_DASH] = ACTIONS(1759), - [anon_sym_DASH2] = ACTIONS(1757), - [anon_sym_LBRACE] = ACTIONS(1759), - [anon_sym_DOT_DOT] = ACTIONS(1757), - [anon_sym_LPAREN2] = ACTIONS(1759), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1759), - [anon_sym_DOT_DOT_LT] = ACTIONS(1759), - [anon_sym_null] = ACTIONS(1759), - [anon_sym_true] = ACTIONS(1759), - [anon_sym_false] = ACTIONS(1759), - [aux_sym__val_number_decimal_token1] = ACTIONS(1757), - [aux_sym__val_number_decimal_token2] = ACTIONS(1759), - [aux_sym__val_number_decimal_token3] = ACTIONS(1759), - [aux_sym__val_number_decimal_token4] = ACTIONS(1759), - [aux_sym__val_number_token1] = ACTIONS(1759), - [aux_sym__val_number_token2] = ACTIONS(1759), - [aux_sym__val_number_token3] = ACTIONS(1759), - [aux_sym__val_number_token4] = ACTIONS(1759), - [aux_sym__val_number_token5] = ACTIONS(1759), - [aux_sym__val_number_token6] = ACTIONS(1759), - [anon_sym_0b] = ACTIONS(1757), - [anon_sym_0o] = ACTIONS(1757), - [anon_sym_0x] = ACTIONS(1757), - [sym_val_date] = ACTIONS(1759), - [anon_sym_DQUOTE] = ACTIONS(1759), - [sym__str_single_quotes] = ACTIONS(1759), - [sym__str_back_ticks] = ACTIONS(1759), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1759), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1759), - [anon_sym_err_GT] = ACTIONS(1757), - [anon_sym_out_GT] = ACTIONS(1757), - [anon_sym_e_GT] = ACTIONS(1757), - [anon_sym_o_GT] = ACTIONS(1757), - [anon_sym_err_PLUSout_GT] = ACTIONS(1757), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1757), - [anon_sym_o_PLUSe_GT] = ACTIONS(1757), - [anon_sym_e_PLUSo_GT] = ACTIONS(1757), - [anon_sym_err_GT_GT] = ACTIONS(1759), - [anon_sym_out_GT_GT] = ACTIONS(1759), - [anon_sym_e_GT_GT] = ACTIONS(1759), - [anon_sym_o_GT_GT] = ACTIONS(1759), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1759), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1759), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1759), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1759), - [aux_sym_unquoted_token1] = ACTIONS(1757), - [aux_sym_unquoted_token2] = ACTIONS(1757), + [1674] = { + [sym_comment] = STATE(1674), + [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(1018), + [anon_sym_DASH2] = ACTIONS(1020), + [anon_sym_in2] = ACTIONS(1020), + [anon_sym_if] = ACTIONS(1020), + [anon_sym_LBRACE] = ACTIONS(1020), + [anon_sym_RBRACE] = ACTIONS(1020), + [anon_sym_EQ_GT] = ACTIONS(1020), + [anon_sym_STAR2] = ACTIONS(1018), + [anon_sym_and2] = ACTIONS(1020), + [anon_sym_xor2] = ACTIONS(1020), + [anon_sym_or2] = ACTIONS(1020), + [anon_sym_not_DASHin2] = ACTIONS(1020), + [anon_sym_starts_DASHwith2] = ACTIONS(1020), + [anon_sym_ends_DASHwith2] = ACTIONS(1020), + [anon_sym_EQ_EQ2] = ACTIONS(1020), + [anon_sym_BANG_EQ2] = ACTIONS(1020), + [anon_sym_LT2] = ACTIONS(1018), + [anon_sym_LT_EQ2] = ACTIONS(1020), + [anon_sym_GT_EQ2] = ACTIONS(1020), + [anon_sym_EQ_TILDE2] = ACTIONS(1020), + [anon_sym_BANG_TILDE2] = ACTIONS(1020), + [anon_sym_STAR_STAR2] = ACTIONS(1020), + [anon_sym_PLUS_PLUS2] = ACTIONS(1020), + [anon_sym_SLASH2] = ACTIONS(1018), + [anon_sym_mod2] = ACTIONS(1020), + [anon_sym_SLASH_SLASH2] = ACTIONS(1020), + [anon_sym_PLUS2] = ACTIONS(1018), + [anon_sym_bit_DASHshl2] = ACTIONS(1020), + [anon_sym_bit_DASHshr2] = ACTIONS(1020), + [anon_sym_bit_DASHand2] = ACTIONS(1020), + [anon_sym_bit_DASHxor2] = ACTIONS(1020), + [anon_sym_bit_DASHor2] = ACTIONS(1020), + [anon_sym_DOT_DOT2] = ACTIONS(1018), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1020), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1020), + [anon_sym_err_GT] = ACTIONS(1018), + [anon_sym_out_GT] = ACTIONS(1018), + [anon_sym_e_GT] = ACTIONS(1018), + [anon_sym_o_GT] = ACTIONS(1018), + [anon_sym_err_PLUSout_GT] = ACTIONS(1018), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1018), + [anon_sym_o_PLUSe_GT] = ACTIONS(1018), + [anon_sym_e_PLUSo_GT] = ACTIONS(1018), + [anon_sym_err_GT_GT] = ACTIONS(1020), + [anon_sym_out_GT_GT] = ACTIONS(1020), + [anon_sym_e_GT_GT] = ACTIONS(1020), + [anon_sym_o_GT_GT] = ACTIONS(1020), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1020), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1020), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1020), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1020), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1759), }, - [1680] = { - [sym_comment] = STATE(1680), + [1675] = { + [sym_comment] = STATE(1675), [sym__newline] = ACTIONS(982), [anon_sym_SEMI] = ACTIONS(982), [anon_sym_PIPE] = ACTIONS(982), @@ -232947,678 +232588,813 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_POUND] = ACTIONS(251), [sym_raw_string_begin] = ACTIONS(982), }, - [1681] = { - [sym_comment] = STATE(1681), - [ts_builtin_sym_end] = ACTIONS(1669), - [sym__newline] = ACTIONS(1669), - [anon_sym_SEMI] = ACTIONS(1669), - [anon_sym_PIPE] = ACTIONS(1669), - [anon_sym_err_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_GT_PIPE] = ACTIONS(1669), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1669), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1669), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1669), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1669), - [anon_sym_GT2] = ACTIONS(1667), - [anon_sym_DASH2] = ACTIONS(1669), - [anon_sym_in2] = ACTIONS(1669), - [anon_sym_STAR2] = ACTIONS(1667), - [anon_sym_and2] = ACTIONS(1669), - [anon_sym_xor2] = ACTIONS(1669), - [anon_sym_or2] = ACTIONS(1669), - [anon_sym_not_DASHin2] = ACTIONS(1669), - [anon_sym_starts_DASHwith2] = ACTIONS(1669), - [anon_sym_ends_DASHwith2] = ACTIONS(1669), - [anon_sym_EQ_EQ2] = ACTIONS(1669), - [anon_sym_BANG_EQ2] = ACTIONS(1669), - [anon_sym_LT2] = ACTIONS(1667), - [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_LPAREN2] = ACTIONS(1669), - [anon_sym_STAR_STAR2] = ACTIONS(1669), - [anon_sym_PLUS_PLUS2] = ACTIONS(1669), - [anon_sym_SLASH2] = ACTIONS(1667), - [anon_sym_mod2] = ACTIONS(1669), - [anon_sym_SLASH_SLASH2] = ACTIONS(1669), - [anon_sym_PLUS2] = ACTIONS(1667), - [anon_sym_bit_DASHshl2] = ACTIONS(1669), - [anon_sym_bit_DASHshr2] = ACTIONS(1669), - [anon_sym_bit_DASHand2] = ACTIONS(1669), - [anon_sym_bit_DASHxor2] = ACTIONS(1669), - [anon_sym_bit_DASHor2] = ACTIONS(1669), - [anon_sym_DOT_DOT2] = ACTIONS(1667), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1669), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1669), - [sym_filesize_unit] = ACTIONS(1667), - [sym_duration_unit] = ACTIONS(1669), - [anon_sym_err_GT] = ACTIONS(1667), - [anon_sym_out_GT] = ACTIONS(1667), - [anon_sym_e_GT] = ACTIONS(1667), - [anon_sym_o_GT] = ACTIONS(1667), - [anon_sym_err_PLUSout_GT] = ACTIONS(1667), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1667), - [anon_sym_o_PLUSe_GT] = ACTIONS(1667), - [anon_sym_e_PLUSo_GT] = ACTIONS(1667), - [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_unquoted_token2] = ACTIONS(1667), + [1676] = { + [sym_comment] = STATE(1676), + [ts_builtin_sym_end] = ACTIONS(1751), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_GT2] = ACTIONS(1749), + [anon_sym_DASH2] = ACTIONS(1751), + [anon_sym_in2] = ACTIONS(1751), + [anon_sym_STAR2] = ACTIONS(1749), + [anon_sym_and2] = ACTIONS(1751), + [anon_sym_xor2] = ACTIONS(1751), + [anon_sym_or2] = ACTIONS(1751), + [anon_sym_not_DASHin2] = ACTIONS(1751), + [anon_sym_starts_DASHwith2] = ACTIONS(1751), + [anon_sym_ends_DASHwith2] = ACTIONS(1751), + [anon_sym_EQ_EQ2] = ACTIONS(1751), + [anon_sym_BANG_EQ2] = ACTIONS(1751), + [anon_sym_LT2] = ACTIONS(1749), + [anon_sym_LT_EQ2] = ACTIONS(1751), + [anon_sym_GT_EQ2] = ACTIONS(1751), + [anon_sym_EQ_TILDE2] = ACTIONS(1751), + [anon_sym_BANG_TILDE2] = ACTIONS(1751), + [anon_sym_LPAREN2] = ACTIONS(1751), + [anon_sym_STAR_STAR2] = ACTIONS(1751), + [anon_sym_PLUS_PLUS2] = ACTIONS(1751), + [anon_sym_SLASH2] = ACTIONS(1749), + [anon_sym_mod2] = ACTIONS(1751), + [anon_sym_SLASH_SLASH2] = ACTIONS(1751), + [anon_sym_PLUS2] = ACTIONS(1749), + [anon_sym_bit_DASHshl2] = ACTIONS(1751), + [anon_sym_bit_DASHshr2] = ACTIONS(1751), + [anon_sym_bit_DASHand2] = ACTIONS(1751), + [anon_sym_bit_DASHxor2] = ACTIONS(1751), + [anon_sym_bit_DASHor2] = ACTIONS(1751), + [anon_sym_DOT_DOT2] = ACTIONS(1749), + [anon_sym_DOT] = ACTIONS(4983), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4985), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token2] = ACTIONS(1749), [anon_sym_POUND] = ACTIONS(251), }, - [1682] = { - [sym_comment] = STATE(1682), - [ts_builtin_sym_end] = ACTIONS(960), - [sym__newline] = ACTIONS(960), - [anon_sym_SEMI] = ACTIONS(960), - [anon_sym_PIPE] = ACTIONS(960), - [anon_sym_err_GT_PIPE] = ACTIONS(960), - [anon_sym_out_GT_PIPE] = ACTIONS(960), - [anon_sym_e_GT_PIPE] = ACTIONS(960), - [anon_sym_o_GT_PIPE] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(960), - [anon_sym_LBRACK] = ACTIONS(960), - [anon_sym_LPAREN] = ACTIONS(960), - [anon_sym_DOLLAR] = ACTIONS(958), - [anon_sym_DASH_DASH] = ACTIONS(960), - [anon_sym_DASH2] = ACTIONS(958), - [anon_sym_LBRACE] = ACTIONS(960), - [anon_sym_DOT_DOT] = ACTIONS(958), - [anon_sym_QMARK2] = ACTIONS(4988), - [anon_sym_DOT_DOT_EQ] = ACTIONS(960), - [anon_sym_DOT_DOT_LT] = ACTIONS(960), - [anon_sym_null] = ACTIONS(960), - [anon_sym_true] = ACTIONS(960), - [anon_sym_false] = ACTIONS(960), - [aux_sym__val_number_decimal_token1] = ACTIONS(958), - [aux_sym__val_number_decimal_token2] = ACTIONS(960), - [aux_sym__val_number_decimal_token3] = ACTIONS(960), - [aux_sym__val_number_decimal_token4] = ACTIONS(960), - [aux_sym__val_number_token1] = ACTIONS(960), - [aux_sym__val_number_token2] = ACTIONS(960), - [aux_sym__val_number_token3] = ACTIONS(960), - [aux_sym__val_number_token4] = ACTIONS(960), - [aux_sym__val_number_token5] = ACTIONS(960), - [aux_sym__val_number_token6] = ACTIONS(960), - [anon_sym_0b] = ACTIONS(958), - [anon_sym_0o] = ACTIONS(958), - [anon_sym_0x] = ACTIONS(958), - [sym_val_date] = ACTIONS(960), - [anon_sym_DQUOTE] = ACTIONS(960), - [sym__str_single_quotes] = ACTIONS(960), - [sym__str_back_ticks] = ACTIONS(960), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(960), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(960), - [anon_sym_DOT2] = ACTIONS(958), - [anon_sym_err_GT] = ACTIONS(958), - [anon_sym_out_GT] = ACTIONS(958), - [anon_sym_e_GT] = ACTIONS(958), - [anon_sym_o_GT] = ACTIONS(958), - [anon_sym_err_PLUSout_GT] = ACTIONS(958), - [anon_sym_out_PLUSerr_GT] = ACTIONS(958), - [anon_sym_o_PLUSe_GT] = ACTIONS(958), - [anon_sym_e_PLUSo_GT] = ACTIONS(958), - [anon_sym_err_GT_GT] = ACTIONS(960), - [anon_sym_out_GT_GT] = ACTIONS(960), - [anon_sym_e_GT_GT] = ACTIONS(960), - [anon_sym_o_GT_GT] = ACTIONS(960), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(960), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(960), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(960), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(960), - [aux_sym_unquoted_token1] = ACTIONS(958), + [1677] = { + [sym_comment] = STATE(1677), + [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2174), + [anon_sym_LPAREN] = ACTIONS(2170), + [anon_sym_DOLLAR] = ACTIONS(2170), + [anon_sym_DASH_DASH] = ACTIONS(2174), + [anon_sym_DASH2] = ACTIONS(2170), + [anon_sym_LBRACE] = ACTIONS(2174), + [anon_sym_DOT_DOT] = ACTIONS(2170), + [anon_sym_LPAREN2] = ACTIONS(2172), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2174), + [anon_sym_DOT_DOT_LT] = ACTIONS(2174), + [anon_sym_null] = ACTIONS(2174), + [anon_sym_true] = ACTIONS(2174), + [anon_sym_false] = ACTIONS(2174), + [aux_sym__val_number_decimal_token1] = ACTIONS(2170), + [aux_sym__val_number_decimal_token2] = ACTIONS(2174), + [aux_sym__val_number_decimal_token3] = ACTIONS(2174), + [aux_sym__val_number_decimal_token4] = ACTIONS(2174), + [aux_sym__val_number_token1] = ACTIONS(2174), + [aux_sym__val_number_token2] = ACTIONS(2174), + [aux_sym__val_number_token3] = ACTIONS(2174), + [aux_sym__val_number_token4] = ACTIONS(2174), + [aux_sym__val_number_token5] = ACTIONS(2174), + [aux_sym__val_number_token6] = ACTIONS(2174), + [anon_sym_0b] = ACTIONS(2170), + [anon_sym_0o] = ACTIONS(2170), + [anon_sym_0x] = ACTIONS(2170), + [sym_val_date] = ACTIONS(2174), + [anon_sym_DQUOTE] = ACTIONS(2174), + [sym__str_single_quotes] = ACTIONS(2174), + [sym__str_back_ticks] = ACTIONS(2174), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2174), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2174), + [anon_sym_err_GT] = ACTIONS(2170), + [anon_sym_out_GT] = ACTIONS(2170), + [anon_sym_e_GT] = ACTIONS(2170), + [anon_sym_o_GT] = ACTIONS(2170), + [anon_sym_err_PLUSout_GT] = ACTIONS(2170), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2170), + [anon_sym_o_PLUSe_GT] = ACTIONS(2170), + [anon_sym_e_PLUSo_GT] = ACTIONS(2170), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2170), + [aux_sym_unquoted_token2] = ACTIONS(1591), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(960), + [sym_raw_string_begin] = ACTIONS(2174), }, - [1683] = { - [sym_comment] = STATE(1683), - [ts_builtin_sym_end] = ACTIONS(954), - [sym__newline] = ACTIONS(954), - [anon_sym_SEMI] = ACTIONS(954), - [anon_sym_PIPE] = ACTIONS(954), - [anon_sym_err_GT_PIPE] = ACTIONS(954), - [anon_sym_out_GT_PIPE] = ACTIONS(954), - [anon_sym_e_GT_PIPE] = ACTIONS(954), - [anon_sym_o_GT_PIPE] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(954), - [anon_sym_LBRACK] = ACTIONS(954), - [anon_sym_LPAREN] = ACTIONS(954), - [anon_sym_DOLLAR] = ACTIONS(952), - [anon_sym_DASH_DASH] = ACTIONS(954), - [anon_sym_DASH2] = ACTIONS(952), - [anon_sym_LBRACE] = ACTIONS(954), - [anon_sym_DOT_DOT] = ACTIONS(952), - [anon_sym_QMARK2] = ACTIONS(4990), - [anon_sym_DOT_DOT_EQ] = ACTIONS(954), - [anon_sym_DOT_DOT_LT] = ACTIONS(954), - [anon_sym_null] = ACTIONS(954), - [anon_sym_true] = ACTIONS(954), - [anon_sym_false] = ACTIONS(954), - [aux_sym__val_number_decimal_token1] = ACTIONS(952), - [aux_sym__val_number_decimal_token2] = ACTIONS(954), - [aux_sym__val_number_decimal_token3] = ACTIONS(954), - [aux_sym__val_number_decimal_token4] = ACTIONS(954), - [aux_sym__val_number_token1] = ACTIONS(954), - [aux_sym__val_number_token2] = ACTIONS(954), - [aux_sym__val_number_token3] = ACTIONS(954), - [aux_sym__val_number_token4] = ACTIONS(954), - [aux_sym__val_number_token5] = ACTIONS(954), - [aux_sym__val_number_token6] = ACTIONS(954), - [anon_sym_0b] = ACTIONS(952), - [anon_sym_0o] = ACTIONS(952), - [anon_sym_0x] = ACTIONS(952), - [sym_val_date] = ACTIONS(954), - [anon_sym_DQUOTE] = ACTIONS(954), - [sym__str_single_quotes] = ACTIONS(954), - [sym__str_back_ticks] = ACTIONS(954), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(954), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(954), - [anon_sym_DOT2] = ACTIONS(952), - [anon_sym_err_GT] = ACTIONS(952), - [anon_sym_out_GT] = ACTIONS(952), - [anon_sym_e_GT] = ACTIONS(952), - [anon_sym_o_GT] = ACTIONS(952), - [anon_sym_err_PLUSout_GT] = ACTIONS(952), - [anon_sym_out_PLUSerr_GT] = ACTIONS(952), - [anon_sym_o_PLUSe_GT] = ACTIONS(952), - [anon_sym_e_PLUSo_GT] = ACTIONS(952), - [anon_sym_err_GT_GT] = ACTIONS(954), - [anon_sym_out_GT_GT] = ACTIONS(954), - [anon_sym_e_GT_GT] = ACTIONS(954), - [anon_sym_o_GT_GT] = ACTIONS(954), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(954), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(954), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(954), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(954), - [aux_sym_unquoted_token1] = ACTIONS(952), + [1678] = { + [sym_comment] = STATE(1678), + [sym__newline] = ACTIONS(1733), + [anon_sym_SEMI] = ACTIONS(1733), + [anon_sym_PIPE] = ACTIONS(1733), + [anon_sym_err_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_GT_PIPE] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1733), + [anon_sym_RPAREN] = ACTIONS(1733), + [anon_sym_GT2] = ACTIONS(1731), + [anon_sym_DASH2] = ACTIONS(1733), + [anon_sym_in2] = ACTIONS(1733), + [anon_sym_LBRACE] = ACTIONS(1733), + [anon_sym_RBRACE] = ACTIONS(1733), + [anon_sym_STAR2] = ACTIONS(1731), + [anon_sym_and2] = ACTIONS(1733), + [anon_sym_xor2] = ACTIONS(1733), + [anon_sym_or2] = ACTIONS(1733), + [anon_sym_not_DASHin2] = ACTIONS(1733), + [anon_sym_starts_DASHwith2] = ACTIONS(1733), + [anon_sym_ends_DASHwith2] = ACTIONS(1733), + [anon_sym_EQ_EQ2] = ACTIONS(1733), + [anon_sym_BANG_EQ2] = ACTIONS(1733), + [anon_sym_LT2] = ACTIONS(1731), + [anon_sym_LT_EQ2] = ACTIONS(1733), + [anon_sym_GT_EQ2] = ACTIONS(1733), + [anon_sym_EQ_TILDE2] = ACTIONS(1733), + [anon_sym_BANG_TILDE2] = ACTIONS(1733), + [anon_sym_LPAREN2] = ACTIONS(1733), + [anon_sym_STAR_STAR2] = ACTIONS(1733), + [anon_sym_PLUS_PLUS2] = ACTIONS(1733), + [anon_sym_SLASH2] = ACTIONS(1731), + [anon_sym_mod2] = ACTIONS(1733), + [anon_sym_SLASH_SLASH2] = ACTIONS(1733), + [anon_sym_PLUS2] = ACTIONS(1731), + [anon_sym_bit_DASHshl2] = ACTIONS(1733), + [anon_sym_bit_DASHshr2] = ACTIONS(1733), + [anon_sym_bit_DASHand2] = ACTIONS(1733), + [anon_sym_bit_DASHxor2] = ACTIONS(1733), + [anon_sym_bit_DASHor2] = ACTIONS(1733), + [anon_sym_DOT_DOT2] = ACTIONS(1731), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1733), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1733), + [anon_sym_err_GT] = ACTIONS(1731), + [anon_sym_out_GT] = ACTIONS(1731), + [anon_sym_e_GT] = ACTIONS(1731), + [anon_sym_o_GT] = ACTIONS(1731), + [anon_sym_err_PLUSout_GT] = ACTIONS(1731), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1731), + [anon_sym_o_PLUSe_GT] = ACTIONS(1731), + [anon_sym_e_PLUSo_GT] = ACTIONS(1731), + [anon_sym_err_GT_GT] = ACTIONS(1733), + [anon_sym_out_GT_GT] = ACTIONS(1733), + [anon_sym_e_GT_GT] = ACTIONS(1733), + [anon_sym_o_GT_GT] = ACTIONS(1733), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1733), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1733), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1733), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1733), + [aux_sym_unquoted_token2] = ACTIONS(1731), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(954), + }, + [1679] = { + [sym_cell_path] = STATE(2064), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1679), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(2010), + [anon_sym_SEMI] = ACTIONS(2010), + [anon_sym_PIPE] = ACTIONS(2010), + [anon_sym_err_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_GT_PIPE] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2010), + [anon_sym_RPAREN] = ACTIONS(2010), + [anon_sym_GT2] = ACTIONS(2008), + [anon_sym_DASH2] = ACTIONS(2010), + [anon_sym_in2] = ACTIONS(2010), + [anon_sym_LBRACE] = ACTIONS(2010), + [anon_sym_RBRACE] = ACTIONS(2010), + [anon_sym_EQ_GT] = ACTIONS(2010), + [anon_sym_STAR2] = ACTIONS(2008), + [anon_sym_and2] = ACTIONS(2010), + [anon_sym_xor2] = ACTIONS(2010), + [anon_sym_or2] = ACTIONS(2010), + [anon_sym_not_DASHin2] = ACTIONS(2010), + [anon_sym_starts_DASHwith2] = ACTIONS(2010), + [anon_sym_ends_DASHwith2] = ACTIONS(2010), + [anon_sym_EQ_EQ2] = ACTIONS(2010), + [anon_sym_BANG_EQ2] = ACTIONS(2010), + [anon_sym_LT2] = ACTIONS(2008), + [anon_sym_LT_EQ2] = ACTIONS(2010), + [anon_sym_GT_EQ2] = ACTIONS(2010), + [anon_sym_EQ_TILDE2] = ACTIONS(2010), + [anon_sym_BANG_TILDE2] = ACTIONS(2010), + [anon_sym_STAR_STAR2] = ACTIONS(2010), + [anon_sym_PLUS_PLUS2] = ACTIONS(2010), + [anon_sym_SLASH2] = ACTIONS(2008), + [anon_sym_mod2] = ACTIONS(2010), + [anon_sym_SLASH_SLASH2] = ACTIONS(2010), + [anon_sym_PLUS2] = ACTIONS(2008), + [anon_sym_bit_DASHshl2] = ACTIONS(2010), + [anon_sym_bit_DASHshr2] = ACTIONS(2010), + [anon_sym_bit_DASHand2] = ACTIONS(2010), + [anon_sym_bit_DASHxor2] = ACTIONS(2010), + [anon_sym_bit_DASHor2] = ACTIONS(2010), + [anon_sym_DOT2] = ACTIONS(4831), + [anon_sym_err_GT] = ACTIONS(2008), + [anon_sym_out_GT] = ACTIONS(2008), + [anon_sym_e_GT] = ACTIONS(2008), + [anon_sym_o_GT] = ACTIONS(2008), + [anon_sym_err_PLUSout_GT] = ACTIONS(2008), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2008), + [anon_sym_o_PLUSe_GT] = ACTIONS(2008), + [anon_sym_e_PLUSo_GT] = ACTIONS(2008), + [anon_sym_err_GT_GT] = ACTIONS(2010), + [anon_sym_out_GT_GT] = ACTIONS(2010), + [anon_sym_e_GT_GT] = ACTIONS(2010), + [anon_sym_o_GT_GT] = ACTIONS(2010), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2010), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2010), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2010), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2010), + [anon_sym_POUND] = ACTIONS(251), + }, + [1680] = { + [sym_comment] = STATE(1680), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_GT2] = ACTIONS(1772), + [anon_sym_DASH2] = ACTIONS(1774), + [anon_sym_in2] = ACTIONS(1774), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_STAR2] = ACTIONS(1772), + [anon_sym_and2] = ACTIONS(1774), + [anon_sym_xor2] = ACTIONS(1774), + [anon_sym_or2] = ACTIONS(1774), + [anon_sym_not_DASHin2] = ACTIONS(1774), + [anon_sym_starts_DASHwith2] = ACTIONS(1774), + [anon_sym_ends_DASHwith2] = ACTIONS(1774), + [anon_sym_EQ_EQ2] = ACTIONS(1774), + [anon_sym_BANG_EQ2] = ACTIONS(1774), + [anon_sym_LT2] = ACTIONS(1772), + [anon_sym_LT_EQ2] = ACTIONS(1774), + [anon_sym_GT_EQ2] = ACTIONS(1774), + [anon_sym_EQ_TILDE2] = ACTIONS(1774), + [anon_sym_BANG_TILDE2] = ACTIONS(1774), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_STAR_STAR2] = ACTIONS(1774), + [anon_sym_PLUS_PLUS2] = ACTIONS(1774), + [anon_sym_SLASH2] = ACTIONS(1772), + [anon_sym_mod2] = ACTIONS(1774), + [anon_sym_SLASH_SLASH2] = ACTIONS(1774), + [anon_sym_PLUS2] = ACTIONS(1772), + [anon_sym_bit_DASHshl2] = ACTIONS(1774), + [anon_sym_bit_DASHshr2] = ACTIONS(1774), + [anon_sym_bit_DASHand2] = ACTIONS(1774), + [anon_sym_bit_DASHxor2] = ACTIONS(1774), + [anon_sym_bit_DASHor2] = ACTIONS(1774), + [anon_sym_DOT_DOT2] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + }, + [1681] = { + [sym_comment] = STATE(1681), + [sym__newline] = ACTIONS(1819), + [anon_sym_SEMI] = ACTIONS(1819), + [anon_sym_PIPE] = ACTIONS(1819), + [anon_sym_err_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_GT_PIPE] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1819), + [anon_sym_RPAREN] = ACTIONS(1819), + [anon_sym_GT2] = ACTIONS(1817), + [anon_sym_DASH2] = ACTIONS(1819), + [anon_sym_in2] = ACTIONS(1819), + [anon_sym_LBRACE] = ACTIONS(1819), + [anon_sym_RBRACE] = ACTIONS(1819), + [anon_sym_STAR2] = ACTIONS(1817), + [anon_sym_and2] = ACTIONS(1819), + [anon_sym_xor2] = ACTIONS(1819), + [anon_sym_or2] = ACTIONS(1819), + [anon_sym_not_DASHin2] = ACTIONS(1819), + [anon_sym_starts_DASHwith2] = ACTIONS(1819), + [anon_sym_ends_DASHwith2] = ACTIONS(1819), + [anon_sym_EQ_EQ2] = ACTIONS(1819), + [anon_sym_BANG_EQ2] = ACTIONS(1819), + [anon_sym_LT2] = ACTIONS(1817), + [anon_sym_LT_EQ2] = ACTIONS(1819), + [anon_sym_GT_EQ2] = ACTIONS(1819), + [anon_sym_EQ_TILDE2] = ACTIONS(1819), + [anon_sym_BANG_TILDE2] = ACTIONS(1819), + [anon_sym_LPAREN2] = ACTIONS(1819), + [anon_sym_STAR_STAR2] = ACTIONS(1819), + [anon_sym_PLUS_PLUS2] = ACTIONS(1819), + [anon_sym_SLASH2] = ACTIONS(1817), + [anon_sym_mod2] = ACTIONS(1819), + [anon_sym_SLASH_SLASH2] = ACTIONS(1819), + [anon_sym_PLUS2] = ACTIONS(1817), + [anon_sym_bit_DASHshl2] = ACTIONS(1819), + [anon_sym_bit_DASHshr2] = ACTIONS(1819), + [anon_sym_bit_DASHand2] = ACTIONS(1819), + [anon_sym_bit_DASHxor2] = ACTIONS(1819), + [anon_sym_bit_DASHor2] = ACTIONS(1819), + [anon_sym_DOT_DOT2] = ACTIONS(1817), + [anon_sym_DOT_DOT_EQ2] = ACTIONS(1819), + [anon_sym_DOT_DOT_LT2] = ACTIONS(1819), + [anon_sym_err_GT] = ACTIONS(1817), + [anon_sym_out_GT] = ACTIONS(1817), + [anon_sym_e_GT] = ACTIONS(1817), + [anon_sym_o_GT] = ACTIONS(1817), + [anon_sym_err_PLUSout_GT] = ACTIONS(1817), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1817), + [anon_sym_o_PLUSe_GT] = ACTIONS(1817), + [anon_sym_e_PLUSo_GT] = ACTIONS(1817), + [anon_sym_err_GT_GT] = ACTIONS(1819), + [anon_sym_out_GT_GT] = ACTIONS(1819), + [anon_sym_e_GT_GT] = ACTIONS(1819), + [anon_sym_o_GT_GT] = ACTIONS(1819), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1819), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1819), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1819), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1819), + [aux_sym_unquoted_token2] = ACTIONS(1817), + [anon_sym_POUND] = ACTIONS(251), + }, + [1682] = { + [sym_comment] = STATE(1682), + [sym__newline] = ACTIONS(1675), + [anon_sym_SEMI] = ACTIONS(1675), + [anon_sym_PIPE] = ACTIONS(1675), + [anon_sym_err_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_GT_PIPE] = ACTIONS(1675), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1675), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1675), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1675), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_GT2] = ACTIONS(1663), + [anon_sym_DASH2] = ACTIONS(1675), + [anon_sym_in2] = ACTIONS(1675), + [anon_sym_if] = ACTIONS(1675), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_EQ_GT] = ACTIONS(1675), + [anon_sym_STAR2] = ACTIONS(1663), + [anon_sym_QMARK2] = ACTIONS(1675), + [anon_sym_and2] = ACTIONS(1675), + [anon_sym_xor2] = ACTIONS(1675), + [anon_sym_or2] = ACTIONS(1675), + [anon_sym_not_DASHin2] = ACTIONS(1675), + [anon_sym_starts_DASHwith2] = ACTIONS(1675), + [anon_sym_ends_DASHwith2] = ACTIONS(1675), + [anon_sym_EQ_EQ2] = ACTIONS(1675), + [anon_sym_BANG_EQ2] = ACTIONS(1675), + [anon_sym_LT2] = ACTIONS(1663), + [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_STAR_STAR2] = ACTIONS(1675), + [anon_sym_PLUS_PLUS2] = ACTIONS(1675), + [anon_sym_SLASH2] = ACTIONS(1663), + [anon_sym_mod2] = ACTIONS(1675), + [anon_sym_SLASH_SLASH2] = ACTIONS(1675), + [anon_sym_PLUS2] = ACTIONS(1663), + [anon_sym_bit_DASHshl2] = ACTIONS(1675), + [anon_sym_bit_DASHshr2] = ACTIONS(1675), + [anon_sym_bit_DASHand2] = ACTIONS(1675), + [anon_sym_bit_DASHxor2] = ACTIONS(1675), + [anon_sym_bit_DASHor2] = ACTIONS(1675), + [anon_sym_COLON2] = ACTIONS(1675), + [anon_sym_DOT2] = ACTIONS(1675), + [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(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(251), + }, + [1683] = { + [sym_comment] = STATE(1683), + [ts_builtin_sym_end] = ACTIONS(1813), + [sym__newline] = ACTIONS(1813), + [anon_sym_SEMI] = ACTIONS(1813), + [anon_sym_PIPE] = ACTIONS(1813), + [anon_sym_err_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_GT_PIPE] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1813), + [anon_sym_LBRACK] = ACTIONS(1813), + [anon_sym_LPAREN] = ACTIONS(1805), + [anon_sym_DOLLAR] = ACTIONS(1805), + [anon_sym_DASH_DASH] = ACTIONS(1813), + [anon_sym_DASH2] = ACTIONS(1805), + [anon_sym_LBRACE] = ACTIONS(1813), + [anon_sym_DOT_DOT] = ACTIONS(1805), + [anon_sym_LPAREN2] = ACTIONS(1807), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1813), + [anon_sym_DOT_DOT_LT] = ACTIONS(1813), + [anon_sym_null] = ACTIONS(1813), + [anon_sym_true] = ACTIONS(1813), + [anon_sym_false] = ACTIONS(1813), + [aux_sym__val_number_decimal_token1] = ACTIONS(1805), + [aux_sym__val_number_decimal_token2] = ACTIONS(1813), + [aux_sym__val_number_decimal_token3] = ACTIONS(1813), + [aux_sym__val_number_decimal_token4] = ACTIONS(1813), + [aux_sym__val_number_token1] = ACTIONS(1813), + [aux_sym__val_number_token2] = ACTIONS(1813), + [aux_sym__val_number_token3] = ACTIONS(1813), + [aux_sym__val_number_token4] = ACTIONS(1813), + [aux_sym__val_number_token5] = ACTIONS(1813), + [aux_sym__val_number_token6] = ACTIONS(1813), + [anon_sym_0b] = ACTIONS(1805), + [anon_sym_0o] = ACTIONS(1805), + [anon_sym_0x] = ACTIONS(1805), + [sym_val_date] = ACTIONS(1813), + [anon_sym_DQUOTE] = ACTIONS(1813), + [sym__str_single_quotes] = ACTIONS(1813), + [sym__str_back_ticks] = ACTIONS(1813), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1813), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1813), + [anon_sym_err_GT] = ACTIONS(1805), + [anon_sym_out_GT] = ACTIONS(1805), + [anon_sym_e_GT] = ACTIONS(1805), + [anon_sym_o_GT] = ACTIONS(1805), + [anon_sym_err_PLUSout_GT] = ACTIONS(1805), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1805), + [anon_sym_o_PLUSe_GT] = ACTIONS(1805), + [anon_sym_e_PLUSo_GT] = ACTIONS(1805), + [anon_sym_err_GT_GT] = ACTIONS(1813), + [anon_sym_out_GT_GT] = ACTIONS(1813), + [anon_sym_e_GT_GT] = ACTIONS(1813), + [anon_sym_o_GT_GT] = ACTIONS(1813), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1813), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1813), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1813), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1813), + [aux_sym_unquoted_token1] = ACTIONS(1805), + [aux_sym_unquoted_token2] = ACTIONS(1545), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1813), }, [1684] = { - [sym_path] = STATE(1861), [sym_comment] = STATE(1684), - [aux_sym_cell_path_repeat1] = STATE(1668), - [ts_builtin_sym_end] = ACTIONS(950), - [sym__newline] = ACTIONS(950), - [anon_sym_SEMI] = ACTIONS(950), - [anon_sym_PIPE] = ACTIONS(950), - [anon_sym_err_GT_PIPE] = ACTIONS(950), - [anon_sym_out_GT_PIPE] = ACTIONS(950), - [anon_sym_e_GT_PIPE] = ACTIONS(950), - [anon_sym_o_GT_PIPE] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(950), - [anon_sym_GT2] = ACTIONS(948), - [anon_sym_DASH2] = ACTIONS(950), - [anon_sym_in2] = ACTIONS(950), - [anon_sym_LBRACE] = ACTIONS(950), - [anon_sym_STAR2] = ACTIONS(948), - [anon_sym_and2] = ACTIONS(950), - [anon_sym_xor2] = ACTIONS(950), - [anon_sym_or2] = ACTIONS(950), - [anon_sym_not_DASHin2] = ACTIONS(950), - [anon_sym_starts_DASHwith2] = ACTIONS(950), - [anon_sym_ends_DASHwith2] = ACTIONS(950), - [anon_sym_EQ_EQ2] = ACTIONS(950), - [anon_sym_BANG_EQ2] = ACTIONS(950), - [anon_sym_LT2] = ACTIONS(948), - [anon_sym_LT_EQ2] = ACTIONS(950), - [anon_sym_GT_EQ2] = ACTIONS(950), - [anon_sym_EQ_TILDE2] = ACTIONS(950), - [anon_sym_BANG_TILDE2] = ACTIONS(950), - [anon_sym_STAR_STAR2] = ACTIONS(950), - [anon_sym_PLUS_PLUS2] = ACTIONS(950), - [anon_sym_SLASH2] = ACTIONS(948), - [anon_sym_mod2] = ACTIONS(950), - [anon_sym_SLASH_SLASH2] = ACTIONS(950), - [anon_sym_PLUS2] = ACTIONS(948), - [anon_sym_bit_DASHshl2] = ACTIONS(950), - [anon_sym_bit_DASHshr2] = ACTIONS(950), - [anon_sym_bit_DASHand2] = ACTIONS(950), - [anon_sym_bit_DASHxor2] = ACTIONS(950), - [anon_sym_bit_DASHor2] = ACTIONS(950), - [anon_sym_DOT_DOT2] = ACTIONS(948), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(950), - [anon_sym_DOT_DOT_LT2] = ACTIONS(950), - [anon_sym_DOT2] = ACTIONS(4919), - [anon_sym_err_GT] = ACTIONS(948), - [anon_sym_out_GT] = ACTIONS(948), - [anon_sym_e_GT] = ACTIONS(948), - [anon_sym_o_GT] = ACTIONS(948), - [anon_sym_err_PLUSout_GT] = ACTIONS(948), - [anon_sym_out_PLUSerr_GT] = ACTIONS(948), - [anon_sym_o_PLUSe_GT] = ACTIONS(948), - [anon_sym_e_PLUSo_GT] = ACTIONS(948), - [anon_sym_err_GT_GT] = ACTIONS(950), - [anon_sym_out_GT_GT] = ACTIONS(950), - [anon_sym_e_GT_GT] = ACTIONS(950), - [anon_sym_o_GT_GT] = ACTIONS(950), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(950), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(950), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(950), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(950), - [anon_sym_POUND] = ACTIONS(251), + [sym__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_LBRACK] = ACTIONS(1675), + [anon_sym_LPAREN] = ACTIONS(1675), + [anon_sym_RPAREN] = ACTIONS(1675), + [anon_sym_DOLLAR] = ACTIONS(1663), + [anon_sym_DASH_DASH] = ACTIONS(1675), + [anon_sym_DASH2] = ACTIONS(1663), + [anon_sym_LBRACE] = ACTIONS(1675), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_DOT_DOT] = ACTIONS(1663), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1675), + [anon_sym_DOT_DOT_LT] = ACTIONS(1675), + [anon_sym_null] = ACTIONS(1675), + [anon_sym_true] = ACTIONS(1675), + [anon_sym_false] = ACTIONS(1675), + [aux_sym__val_number_decimal_token1] = ACTIONS(1663), + [aux_sym__val_number_decimal_token2] = ACTIONS(1675), + [aux_sym__val_number_decimal_token3] = ACTIONS(1675), + [aux_sym__val_number_decimal_token4] = ACTIONS(1675), + [aux_sym__val_number_token1] = ACTIONS(1675), + [aux_sym__val_number_token2] = ACTIONS(1675), + [aux_sym__val_number_token3] = ACTIONS(1675), + [aux_sym__val_number_token4] = ACTIONS(1675), + [aux_sym__val_number_token5] = ACTIONS(1675), + [aux_sym__val_number_token6] = ACTIONS(1675), + [anon_sym_0b] = ACTIONS(1663), + [anon_sym_0o] = ACTIONS(1663), + [anon_sym_0x] = ACTIONS(1663), + [sym_val_date] = ACTIONS(1675), + [anon_sym_DQUOTE] = ACTIONS(1675), + [sym__str_single_quotes] = ACTIONS(1675), + [sym__str_back_ticks] = ACTIONS(1675), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1675), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1675), + [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(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), + [aux_sym_unquoted_token1] = ACTIONS(1663), + [aux_sym_unquoted_token2] = ACTIONS(4062), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1675), }, [1685] = { - [sym__expr_parenthesized_immediate] = STATE(7221), [sym_comment] = STATE(1685), - [sym__newline] = ACTIONS(4992), - [anon_sym_SEMI] = ACTIONS(4992), - [anon_sym_PIPE] = ACTIONS(4992), - [anon_sym_err_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_GT_PIPE] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4992), - [anon_sym_LBRACK] = ACTIONS(4992), - [anon_sym_LPAREN] = ACTIONS(4994), - [anon_sym_RPAREN] = ACTIONS(4992), - [anon_sym_DOLLAR] = ACTIONS(4994), - [anon_sym_DASH_DASH] = ACTIONS(4992), - [anon_sym_DASH2] = ACTIONS(4994), - [anon_sym_LBRACE] = ACTIONS(4992), - [anon_sym_DOT_DOT] = ACTIONS(4994), - [anon_sym_LPAREN2] = ACTIONS(4412), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4992), - [anon_sym_DOT_DOT_LT] = ACTIONS(4992), - [anon_sym_null] = ACTIONS(4992), - [anon_sym_true] = ACTIONS(4992), - [anon_sym_false] = ACTIONS(4992), - [aux_sym__val_number_decimal_token1] = ACTIONS(4994), - [aux_sym__val_number_decimal_token2] = ACTIONS(4992), - [aux_sym__val_number_decimal_token3] = ACTIONS(4992), - [aux_sym__val_number_decimal_token4] = ACTIONS(4992), - [aux_sym__val_number_token1] = ACTIONS(4992), - [aux_sym__val_number_token2] = ACTIONS(4992), - [aux_sym__val_number_token3] = ACTIONS(4992), - [aux_sym__val_number_token4] = ACTIONS(4992), - [aux_sym__val_number_token5] = ACTIONS(4992), - [aux_sym__val_number_token6] = ACTIONS(4992), - [anon_sym_0b] = ACTIONS(4994), - [anon_sym_0o] = ACTIONS(4994), - [anon_sym_0x] = ACTIONS(4994), - [sym_val_date] = ACTIONS(4992), - [anon_sym_DQUOTE] = ACTIONS(4992), - [sym__str_single_quotes] = ACTIONS(4992), - [sym__str_back_ticks] = ACTIONS(4992), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4992), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4992), - [anon_sym_err_GT] = ACTIONS(4994), - [anon_sym_out_GT] = ACTIONS(4994), - [anon_sym_e_GT] = ACTIONS(4994), - [anon_sym_o_GT] = ACTIONS(4994), - [anon_sym_err_PLUSout_GT] = ACTIONS(4994), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4994), - [anon_sym_o_PLUSe_GT] = ACTIONS(4994), - [anon_sym_e_PLUSo_GT] = ACTIONS(4994), - [anon_sym_err_GT_GT] = ACTIONS(4992), - [anon_sym_out_GT_GT] = ACTIONS(4992), - [anon_sym_e_GT_GT] = ACTIONS(4992), - [anon_sym_o_GT_GT] = ACTIONS(4992), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4992), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4992), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4992), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4992), - [aux_sym_unquoted_token1] = ACTIONS(4994), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4992), + [ts_builtin_sym_end] = ACTIONS(2230), + [sym__newline] = ACTIONS(2230), + [anon_sym_SEMI] = ACTIONS(2230), + [anon_sym_PIPE] = ACTIONS(2230), + [anon_sym_err_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_GT_PIPE] = ACTIONS(2230), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2230), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2230), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2230), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2230), + [anon_sym_LBRACK] = ACTIONS(2230), + [anon_sym_LPAREN] = ACTIONS(2226), + [anon_sym_DOLLAR] = ACTIONS(2226), + [anon_sym_DASH_DASH] = ACTIONS(2226), + [anon_sym_DASH2] = ACTIONS(2226), + [anon_sym_LBRACE] = ACTIONS(2230), + [anon_sym_DOT_DOT] = ACTIONS(2226), + [anon_sym_LPAREN2] = ACTIONS(2228), + [anon_sym_DOT_DOT_EQ] = ACTIONS(2226), + [anon_sym_DOT_DOT_LT] = ACTIONS(2226), + [anon_sym_null] = ACTIONS(2226), + [anon_sym_true] = ACTIONS(2226), + [anon_sym_false] = ACTIONS(2226), + [aux_sym__val_number_decimal_token1] = ACTIONS(2226), + [aux_sym__val_number_decimal_token2] = ACTIONS(2226), + [aux_sym__val_number_decimal_token3] = ACTIONS(2226), + [aux_sym__val_number_decimal_token4] = ACTIONS(2226), + [aux_sym__val_number_token1] = ACTIONS(2226), + [aux_sym__val_number_token2] = ACTIONS(2226), + [aux_sym__val_number_token3] = ACTIONS(2226), + [aux_sym__val_number_token4] = ACTIONS(2226), + [aux_sym__val_number_token5] = ACTIONS(2226), + [aux_sym__val_number_token6] = ACTIONS(2226), + [anon_sym_0b] = ACTIONS(2226), + [anon_sym_0o] = ACTIONS(2226), + [anon_sym_0x] = ACTIONS(2226), + [sym_val_date] = ACTIONS(2226), + [anon_sym_DQUOTE] = ACTIONS(2230), + [sym__str_single_quotes] = ACTIONS(2230), + [sym__str_back_ticks] = ACTIONS(2230), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2230), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2230), + [anon_sym_err_GT] = ACTIONS(2226), + [anon_sym_out_GT] = ACTIONS(2226), + [anon_sym_e_GT] = ACTIONS(2226), + [anon_sym_o_GT] = ACTIONS(2226), + [anon_sym_err_PLUSout_GT] = ACTIONS(2226), + [anon_sym_out_PLUSerr_GT] = ACTIONS(2226), + [anon_sym_o_PLUSe_GT] = ACTIONS(2226), + [anon_sym_e_PLUSo_GT] = ACTIONS(2226), + [anon_sym_err_GT_GT] = ACTIONS(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), + [aux_sym_unquoted_token1] = ACTIONS(2226), + [aux_sym_unquoted_token4] = ACTIONS(2232), + [anon_sym_POUND] = ACTIONS(3), + [sym_raw_string_begin] = ACTIONS(2230), }, [1686] = { [sym_comment] = STATE(1686), - [ts_builtin_sym_end] = ACTIONS(2247), - [sym__newline] = ACTIONS(2247), - [anon_sym_SEMI] = ACTIONS(2247), - [anon_sym_PIPE] = ACTIONS(2247), - [anon_sym_err_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_GT_PIPE] = ACTIONS(2247), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2247), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2247), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2247), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2247), - [anon_sym_LBRACK] = ACTIONS(2247), - [anon_sym_LPAREN] = ACTIONS(2245), - [anon_sym_DOLLAR] = ACTIONS(2245), - [anon_sym_DASH_DASH] = ACTIONS(2245), - [anon_sym_DASH2] = ACTIONS(2245), - [anon_sym_LBRACE] = ACTIONS(2247), - [anon_sym_DOT_DOT] = ACTIONS(2245), - [anon_sym_LPAREN2] = ACTIONS(2239), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2245), - [anon_sym_DOT_DOT_LT] = ACTIONS(2245), - [anon_sym_null] = ACTIONS(2245), - [anon_sym_true] = ACTIONS(2245), - [anon_sym_false] = ACTIONS(2245), - [aux_sym__val_number_decimal_token1] = ACTIONS(2245), - [aux_sym__val_number_decimal_token2] = ACTIONS(2245), - [aux_sym__val_number_decimal_token3] = ACTIONS(2245), - [aux_sym__val_number_decimal_token4] = ACTIONS(2245), - [aux_sym__val_number_token1] = ACTIONS(2245), - [aux_sym__val_number_token2] = ACTIONS(2245), - [aux_sym__val_number_token3] = ACTIONS(2245), - [aux_sym__val_number_token4] = ACTIONS(2245), - [aux_sym__val_number_token5] = ACTIONS(2245), - [aux_sym__val_number_token6] = ACTIONS(2245), - [anon_sym_0b] = ACTIONS(2245), - [anon_sym_0o] = ACTIONS(2245), - [anon_sym_0x] = ACTIONS(2245), - [sym_val_date] = ACTIONS(2245), - [anon_sym_DQUOTE] = ACTIONS(2247), - [sym__str_single_quotes] = ACTIONS(2247), - [sym__str_back_ticks] = ACTIONS(2247), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2247), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2247), - [anon_sym_err_GT] = ACTIONS(2245), - [anon_sym_out_GT] = ACTIONS(2245), - [anon_sym_e_GT] = ACTIONS(2245), - [anon_sym_o_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT] = ACTIONS(2245), - [anon_sym_err_GT_GT] = ACTIONS(2245), - [anon_sym_out_GT_GT] = ACTIONS(2245), - [anon_sym_e_GT_GT] = ACTIONS(2245), - [anon_sym_o_GT_GT] = ACTIONS(2245), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2245), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2245), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2245), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2245), - [aux_sym_unquoted_token1] = ACTIONS(2245), - [aux_sym_unquoted_token4] = ACTIONS(2243), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2247), + [sym__newline] = ACTIONS(1751), + [anon_sym_SEMI] = ACTIONS(1751), + [anon_sym_PIPE] = ACTIONS(1751), + [anon_sym_err_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_GT_PIPE] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1751), + [anon_sym_LBRACK] = ACTIONS(1751), + [anon_sym_LPAREN] = ACTIONS(1751), + [anon_sym_RPAREN] = ACTIONS(1751), + [anon_sym_DOLLAR] = ACTIONS(1749), + [anon_sym_DASH_DASH] = ACTIONS(1751), + [anon_sym_DASH2] = ACTIONS(1749), + [anon_sym_LBRACE] = ACTIONS(1751), + [anon_sym_RBRACE] = ACTIONS(1751), + [anon_sym_DOT_DOT] = ACTIONS(1749), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1751), + [anon_sym_DOT_DOT_LT] = ACTIONS(1751), + [aux_sym__immediate_decimal_token2] = ACTIONS(4896), + [anon_sym_null] = ACTIONS(1751), + [anon_sym_true] = ACTIONS(1751), + [anon_sym_false] = ACTIONS(1751), + [aux_sym__val_number_decimal_token1] = ACTIONS(1749), + [aux_sym__val_number_decimal_token2] = ACTIONS(1751), + [aux_sym__val_number_decimal_token3] = ACTIONS(1751), + [aux_sym__val_number_decimal_token4] = ACTIONS(1751), + [aux_sym__val_number_token1] = ACTIONS(1751), + [aux_sym__val_number_token2] = ACTIONS(1751), + [aux_sym__val_number_token3] = ACTIONS(1751), + [aux_sym__val_number_token4] = ACTIONS(1751), + [aux_sym__val_number_token5] = ACTIONS(1751), + [aux_sym__val_number_token6] = ACTIONS(1751), + [anon_sym_0b] = ACTIONS(1749), + [anon_sym_0o] = ACTIONS(1749), + [anon_sym_0x] = ACTIONS(1749), + [sym_val_date] = ACTIONS(1751), + [anon_sym_DQUOTE] = ACTIONS(1751), + [sym__str_single_quotes] = ACTIONS(1751), + [sym__str_back_ticks] = ACTIONS(1751), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1751), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1751), + [anon_sym_err_GT] = ACTIONS(1749), + [anon_sym_out_GT] = ACTIONS(1749), + [anon_sym_e_GT] = ACTIONS(1749), + [anon_sym_o_GT] = ACTIONS(1749), + [anon_sym_err_PLUSout_GT] = ACTIONS(1749), + [anon_sym_out_PLUSerr_GT] = ACTIONS(1749), + [anon_sym_o_PLUSe_GT] = ACTIONS(1749), + [anon_sym_e_PLUSo_GT] = ACTIONS(1749), + [anon_sym_err_GT_GT] = ACTIONS(1751), + [anon_sym_out_GT_GT] = ACTIONS(1751), + [anon_sym_e_GT_GT] = ACTIONS(1751), + [anon_sym_o_GT_GT] = ACTIONS(1751), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1751), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1751), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1751), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1751), + [aux_sym_unquoted_token1] = ACTIONS(1749), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1751), }, [1687] = { - [sym_cell_path] = STATE(2138), - [sym_path] = STATE(1497), + [sym_cmd_identifier] = STATE(3982), + [sym__command_name] = STATE(6545), + [sym_scope_pattern] = STATE(6543), + [sym_wild_card] = STATE(6547), + [sym_command_list] = STATE(6548), + [sym__val_number_decimal] = STATE(3561), + [sym_val_string] = STATE(3955), + [sym__raw_str] = STATE(3895), + [sym__str_double_quotes] = STATE(3895), [sym_comment] = STATE(1687), - [aux_sym_cell_path_repeat1] = STATE(1414), - [sym__newline] = ACTIONS(1939), - [anon_sym_SEMI] = ACTIONS(1939), - [anon_sym_PIPE] = ACTIONS(1939), - [anon_sym_err_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_GT_PIPE] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1939), - [anon_sym_RPAREN] = ACTIONS(1939), - [anon_sym_GT2] = ACTIONS(1937), - [anon_sym_DASH2] = ACTIONS(1939), - [anon_sym_in2] = ACTIONS(1939), - [anon_sym_LBRACE] = ACTIONS(1939), - [anon_sym_RBRACE] = ACTIONS(1939), - [anon_sym_EQ_GT] = ACTIONS(1939), - [anon_sym_STAR2] = ACTIONS(1937), - [anon_sym_and2] = ACTIONS(1939), - [anon_sym_xor2] = ACTIONS(1939), - [anon_sym_or2] = ACTIONS(1939), - [anon_sym_not_DASHin2] = ACTIONS(1939), - [anon_sym_starts_DASHwith2] = ACTIONS(1939), - [anon_sym_ends_DASHwith2] = ACTIONS(1939), - [anon_sym_EQ_EQ2] = ACTIONS(1939), - [anon_sym_BANG_EQ2] = ACTIONS(1939), - [anon_sym_LT2] = ACTIONS(1937), - [anon_sym_LT_EQ2] = ACTIONS(1939), - [anon_sym_GT_EQ2] = ACTIONS(1939), - [anon_sym_EQ_TILDE2] = ACTIONS(1939), - [anon_sym_BANG_TILDE2] = ACTIONS(1939), - [anon_sym_STAR_STAR2] = ACTIONS(1939), - [anon_sym_PLUS_PLUS2] = ACTIONS(1939), - [anon_sym_SLASH2] = ACTIONS(1937), - [anon_sym_mod2] = ACTIONS(1939), - [anon_sym_SLASH_SLASH2] = ACTIONS(1939), - [anon_sym_PLUS2] = ACTIONS(1937), - [anon_sym_bit_DASHshl2] = ACTIONS(1939), - [anon_sym_bit_DASHshr2] = ACTIONS(1939), - [anon_sym_bit_DASHand2] = ACTIONS(1939), - [anon_sym_bit_DASHxor2] = ACTIONS(1939), - [anon_sym_bit_DASHor2] = ACTIONS(1939), - [anon_sym_DOT2] = ACTIONS(4816), - [anon_sym_err_GT] = ACTIONS(1937), - [anon_sym_out_GT] = ACTIONS(1937), - [anon_sym_e_GT] = ACTIONS(1937), - [anon_sym_o_GT] = ACTIONS(1937), - [anon_sym_err_PLUSout_GT] = ACTIONS(1937), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1937), - [anon_sym_o_PLUSe_GT] = ACTIONS(1937), - [anon_sym_e_PLUSo_GT] = ACTIONS(1937), - [anon_sym_err_GT_GT] = ACTIONS(1939), - [anon_sym_out_GT_GT] = ACTIONS(1939), - [anon_sym_e_GT_GT] = ACTIONS(1939), - [anon_sym_o_GT_GT] = ACTIONS(1939), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1939), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1939), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1939), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1939), - [anon_sym_POUND] = ACTIONS(251), + [aux_sym_cmd_identifier_token1] = ACTIONS(4930), + [aux_sym_cmd_identifier_token2] = ACTIONS(4932), + [aux_sym_cmd_identifier_token3] = ACTIONS(4932), + [aux_sym_cmd_identifier_token4] = ACTIONS(4932), + [aux_sym_cmd_identifier_token5] = ACTIONS(4932), + [aux_sym_cmd_identifier_token6] = ACTIONS(4932), + [aux_sym_cmd_identifier_token7] = ACTIONS(4932), + [aux_sym_cmd_identifier_token8] = ACTIONS(4932), + [aux_sym_cmd_identifier_token9] = ACTIONS(4930), + [aux_sym_cmd_identifier_token10] = ACTIONS(4932), + [aux_sym_cmd_identifier_token11] = ACTIONS(4932), + [aux_sym_cmd_identifier_token12] = ACTIONS(4932), + [aux_sym_cmd_identifier_token13] = ACTIONS(4930), + [aux_sym_cmd_identifier_token14] = ACTIONS(4932), + [aux_sym_cmd_identifier_token15] = ACTIONS(4930), + [aux_sym_cmd_identifier_token16] = ACTIONS(4932), + [aux_sym_cmd_identifier_token17] = ACTIONS(4932), + [aux_sym_cmd_identifier_token18] = ACTIONS(4932), + [aux_sym_cmd_identifier_token19] = ACTIONS(4932), + [aux_sym_cmd_identifier_token20] = ACTIONS(4932), + [aux_sym_cmd_identifier_token21] = ACTIONS(4932), + [aux_sym_cmd_identifier_token22] = ACTIONS(4932), + [aux_sym_cmd_identifier_token23] = ACTIONS(4932), + [aux_sym_cmd_identifier_token24] = ACTIONS(4932), + [aux_sym_cmd_identifier_token25] = ACTIONS(4932), + [aux_sym_cmd_identifier_token26] = ACTIONS(4932), + [aux_sym_cmd_identifier_token27] = ACTIONS(4932), + [aux_sym_cmd_identifier_token28] = ACTIONS(4932), + [aux_sym_cmd_identifier_token29] = ACTIONS(4932), + [aux_sym_cmd_identifier_token30] = ACTIONS(4932), + [aux_sym_cmd_identifier_token31] = ACTIONS(4932), + [aux_sym_cmd_identifier_token32] = ACTIONS(4932), + [aux_sym_cmd_identifier_token33] = ACTIONS(4932), + [aux_sym_cmd_identifier_token34] = ACTIONS(4930), + [aux_sym_cmd_identifier_token35] = ACTIONS(4932), + [aux_sym_cmd_identifier_token36] = ACTIONS(4932), + [aux_sym_cmd_identifier_token37] = ACTIONS(4932), + [aux_sym_cmd_identifier_token38] = ACTIONS(4930), + [aux_sym_cmd_identifier_token39] = ACTIONS(4932), + [aux_sym_cmd_identifier_token40] = ACTIONS(4932), + [sym__newline] = ACTIONS(4987), + [anon_sym_SEMI] = ACTIONS(4987), + [anon_sym_LBRACK] = ACTIONS(4936), + [anon_sym_RPAREN] = ACTIONS(4987), + [anon_sym_RBRACE] = ACTIONS(4987), + [anon_sym_STAR2] = ACTIONS(4938), + [aux_sym__val_number_decimal_token1] = ACTIONS(4940), + [aux_sym__val_number_decimal_token2] = ACTIONS(4940), + [aux_sym__val_number_decimal_token3] = ACTIONS(4942), + [aux_sym__val_number_decimal_token4] = ACTIONS(4944), + [anon_sym_DQUOTE] = ACTIONS(1297), + [sym__str_single_quotes] = ACTIONS(1299), + [sym__str_back_ticks] = ACTIONS(1299), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1301), }, [1688] = { [sym_comment] = STATE(1688), - [ts_builtin_sym_end] = ACTIONS(1767), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1765), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_LPAREN2] = ACTIONS(1767), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [aux_sym_unquoted_token2] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1689] = { - [sym_comment] = STATE(1689), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), - [anon_sym_DOT_DOT_LT] = ACTIONS(1693), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1681), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4613), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), - }, - [1690] = { - [sym_comment] = STATE(1690), - [sym__newline] = ACTIONS(4996), - [anon_sym_SEMI] = ACTIONS(4996), - [anon_sym_PIPE] = ACTIONS(4996), - [anon_sym_err_GT_PIPE] = ACTIONS(4996), - [anon_sym_out_GT_PIPE] = ACTIONS(4996), - [anon_sym_e_GT_PIPE] = ACTIONS(4996), - [anon_sym_o_GT_PIPE] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(4996), - [anon_sym_LBRACK] = ACTIONS(4996), - [anon_sym_LPAREN] = ACTIONS(4998), - [anon_sym_RPAREN] = ACTIONS(4996), - [anon_sym_DOLLAR] = ACTIONS(4998), - [anon_sym_DASH_DASH] = ACTIONS(4996), - [anon_sym_DASH2] = ACTIONS(4998), - [anon_sym_LBRACE] = ACTIONS(4996), - [anon_sym_RBRACE] = ACTIONS(4996), - [anon_sym_DOT_DOT] = ACTIONS(4998), - [anon_sym_LPAREN2] = ACTIONS(4996), - [anon_sym_DOT_DOT_EQ] = ACTIONS(4996), - [anon_sym_DOT_DOT_LT] = ACTIONS(4996), - [anon_sym_null] = ACTIONS(4996), - [anon_sym_true] = ACTIONS(4996), - [anon_sym_false] = ACTIONS(4996), - [aux_sym__val_number_decimal_token1] = ACTIONS(4998), - [aux_sym__val_number_decimal_token2] = ACTIONS(4996), - [aux_sym__val_number_decimal_token3] = ACTIONS(4996), - [aux_sym__val_number_decimal_token4] = ACTIONS(4996), - [aux_sym__val_number_token1] = ACTIONS(4996), - [aux_sym__val_number_token2] = ACTIONS(4996), - [aux_sym__val_number_token3] = ACTIONS(4996), - [aux_sym__val_number_token4] = ACTIONS(4996), - [aux_sym__val_number_token5] = ACTIONS(4996), - [aux_sym__val_number_token6] = ACTIONS(4996), - [anon_sym_0b] = ACTIONS(4998), - [anon_sym_0o] = ACTIONS(4998), - [anon_sym_0x] = ACTIONS(4998), - [sym_val_date] = ACTIONS(4996), - [anon_sym_DQUOTE] = ACTIONS(4996), - [sym__str_single_quotes] = ACTIONS(4996), - [sym__str_back_ticks] = ACTIONS(4996), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(4996), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(4996), - [anon_sym_err_GT] = ACTIONS(4998), - [anon_sym_out_GT] = ACTIONS(4998), - [anon_sym_e_GT] = ACTIONS(4998), - [anon_sym_o_GT] = ACTIONS(4998), - [anon_sym_err_PLUSout_GT] = ACTIONS(4998), - [anon_sym_out_PLUSerr_GT] = ACTIONS(4998), - [anon_sym_o_PLUSe_GT] = ACTIONS(4998), - [anon_sym_e_PLUSo_GT] = ACTIONS(4998), - [anon_sym_err_GT_GT] = ACTIONS(4996), - [anon_sym_out_GT_GT] = ACTIONS(4996), - [anon_sym_e_GT_GT] = ACTIONS(4996), - [anon_sym_o_GT_GT] = ACTIONS(4996), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(4996), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(4996), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(4996), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(4996), - [aux_sym_unquoted_token1] = ACTIONS(4998), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(4996), - }, - [1691] = { - [sym_comment] = STATE(1691), + [ts_builtin_sym_end] = ACTIONS(1000), [sym__newline] = ACTIONS(1000), [anon_sym_SEMI] = ACTIONS(1000), [anon_sym_PIPE] = ACTIONS(1000), @@ -233631,14 +233407,13 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1000), [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1000), [anon_sym_LBRACK] = ACTIONS(1000), - [anon_sym_LPAREN] = ACTIONS(1000), - [anon_sym_RPAREN] = ACTIONS(1000), + [anon_sym_LPAREN] = ACTIONS(1004), [anon_sym_DOLLAR] = ACTIONS(1004), [anon_sym_DASH_DASH] = ACTIONS(1004), [anon_sym_DASH2] = ACTIONS(1004), [anon_sym_LBRACE] = ACTIONS(1000), - [anon_sym_RBRACE] = ACTIONS(1000), [anon_sym_DOT_DOT] = ACTIONS(1004), + [anon_sym_LPAREN2] = ACTIONS(2208), [anon_sym_DOT_DOT_EQ] = ACTIONS(1004), [anon_sym_DOT_DOT_LT] = ACTIONS(1004), [anon_sym_null] = ACTIONS(1004), @@ -233680,880 +233455,210 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1004), [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1004), [aux_sym_unquoted_token1] = ACTIONS(1004), - [aux_sym_unquoted_token4] = ACTIONS(2204), + [aux_sym_unquoted_token4] = ACTIONS(2210), [anon_sym_POUND] = ACTIONS(3), [sym_raw_string_begin] = ACTIONS(1000), }, - [1692] = { - [sym_comment] = STATE(1692), - [ts_builtin_sym_end] = ACTIONS(2192), - [sym__newline] = ACTIONS(2192), - [anon_sym_SEMI] = ACTIONS(2192), - [anon_sym_PIPE] = ACTIONS(2192), - [anon_sym_err_GT_PIPE] = ACTIONS(2192), - [anon_sym_out_GT_PIPE] = ACTIONS(2192), - [anon_sym_e_GT_PIPE] = ACTIONS(2192), - [anon_sym_o_GT_PIPE] = ACTIONS(2192), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2192), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2192), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2192), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2192), - [anon_sym_LBRACK] = ACTIONS(2192), - [anon_sym_LPAREN] = ACTIONS(2188), - [anon_sym_DOLLAR] = ACTIONS(2188), - [anon_sym_DASH_DASH] = ACTIONS(2192), - [anon_sym_DASH2] = ACTIONS(2188), - [anon_sym_LBRACE] = ACTIONS(2192), - [anon_sym_DOT_DOT] = ACTIONS(2188), - [anon_sym_LPAREN2] = ACTIONS(2190), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2192), - [anon_sym_DOT_DOT_LT] = ACTIONS(2192), - [anon_sym_null] = ACTIONS(2192), - [anon_sym_true] = ACTIONS(2192), - [anon_sym_false] = ACTIONS(2192), - [aux_sym__val_number_decimal_token1] = ACTIONS(2188), - [aux_sym__val_number_decimal_token2] = ACTIONS(2192), - [aux_sym__val_number_decimal_token3] = ACTIONS(2192), - [aux_sym__val_number_decimal_token4] = ACTIONS(2192), - [aux_sym__val_number_token1] = ACTIONS(2192), - [aux_sym__val_number_token2] = ACTIONS(2192), - [aux_sym__val_number_token3] = ACTIONS(2192), - [aux_sym__val_number_token4] = ACTIONS(2192), - [aux_sym__val_number_token5] = ACTIONS(2192), - [aux_sym__val_number_token6] = ACTIONS(2192), - [anon_sym_0b] = ACTIONS(2188), - [anon_sym_0o] = ACTIONS(2188), - [anon_sym_0x] = ACTIONS(2188), - [sym_val_date] = ACTIONS(2192), - [anon_sym_DQUOTE] = ACTIONS(2192), - [sym__str_single_quotes] = ACTIONS(2192), - [sym__str_back_ticks] = ACTIONS(2192), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2192), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2192), - [anon_sym_err_GT] = ACTIONS(2188), - [anon_sym_out_GT] = ACTIONS(2188), - [anon_sym_e_GT] = ACTIONS(2188), - [anon_sym_o_GT] = ACTIONS(2188), - [anon_sym_err_PLUSout_GT] = ACTIONS(2188), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2188), - [anon_sym_o_PLUSe_GT] = ACTIONS(2188), - [anon_sym_e_PLUSo_GT] = ACTIONS(2188), - [anon_sym_err_GT_GT] = ACTIONS(2192), - [anon_sym_out_GT_GT] = ACTIONS(2192), - [anon_sym_e_GT_GT] = ACTIONS(2192), - [anon_sym_o_GT_GT] = ACTIONS(2192), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2192), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2192), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2192), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2192), - [aux_sym_unquoted_token1] = ACTIONS(2188), - [aux_sym_unquoted_token2] = ACTIONS(1631), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2192), - }, - [1693] = { - [sym_cmd_identifier] = STATE(3983), - [sym__command_name] = STATE(6500), - [sym_scope_pattern] = STATE(6627), - [sym_wild_card] = STATE(6509), - [sym_command_list] = STATE(6510), - [sym__val_number_decimal] = STATE(3649), - [sym_val_string] = STATE(3984), - [sym__raw_str] = STATE(3916), - [sym__str_double_quotes] = STATE(3916), - [sym_comment] = STATE(1693), - [aux_sym_cmd_identifier_token1] = ACTIONS(4959), - [aux_sym_cmd_identifier_token2] = ACTIONS(4961), - [aux_sym_cmd_identifier_token3] = ACTIONS(4961), - [aux_sym_cmd_identifier_token4] = ACTIONS(4961), - [aux_sym_cmd_identifier_token5] = ACTIONS(4961), - [aux_sym_cmd_identifier_token6] = ACTIONS(4961), - [aux_sym_cmd_identifier_token7] = ACTIONS(4961), - [aux_sym_cmd_identifier_token8] = ACTIONS(4961), - [aux_sym_cmd_identifier_token9] = ACTIONS(4959), - [aux_sym_cmd_identifier_token10] = ACTIONS(4961), - [aux_sym_cmd_identifier_token11] = ACTIONS(4961), - [aux_sym_cmd_identifier_token12] = ACTIONS(4961), - [aux_sym_cmd_identifier_token13] = ACTIONS(4959), - [aux_sym_cmd_identifier_token14] = ACTIONS(4961), - [aux_sym_cmd_identifier_token15] = ACTIONS(4959), - [aux_sym_cmd_identifier_token16] = ACTIONS(4961), - [aux_sym_cmd_identifier_token17] = ACTIONS(4961), - [aux_sym_cmd_identifier_token18] = ACTIONS(4961), - [aux_sym_cmd_identifier_token19] = ACTIONS(4961), - [aux_sym_cmd_identifier_token20] = ACTIONS(4961), - [aux_sym_cmd_identifier_token21] = ACTIONS(4961), - [aux_sym_cmd_identifier_token22] = ACTIONS(4961), - [aux_sym_cmd_identifier_token23] = ACTIONS(4961), - [aux_sym_cmd_identifier_token24] = ACTIONS(4961), - [aux_sym_cmd_identifier_token25] = ACTIONS(4961), - [aux_sym_cmd_identifier_token26] = ACTIONS(4961), - [aux_sym_cmd_identifier_token27] = ACTIONS(4961), - [aux_sym_cmd_identifier_token28] = ACTIONS(4961), - [aux_sym_cmd_identifier_token29] = ACTIONS(4961), - [aux_sym_cmd_identifier_token30] = ACTIONS(4961), - [aux_sym_cmd_identifier_token31] = ACTIONS(4961), - [aux_sym_cmd_identifier_token32] = ACTIONS(4961), - [aux_sym_cmd_identifier_token33] = ACTIONS(4961), - [aux_sym_cmd_identifier_token34] = ACTIONS(4959), - [aux_sym_cmd_identifier_token35] = ACTIONS(4961), - [aux_sym_cmd_identifier_token36] = ACTIONS(4961), - [aux_sym_cmd_identifier_token37] = ACTIONS(4961), - [aux_sym_cmd_identifier_token38] = ACTIONS(4959), - [aux_sym_cmd_identifier_token39] = ACTIONS(4961), - [aux_sym_cmd_identifier_token40] = ACTIONS(4961), - [sym__newline] = ACTIONS(5000), - [anon_sym_SEMI] = ACTIONS(5000), - [anon_sym_LBRACK] = ACTIONS(4965), - [anon_sym_RPAREN] = ACTIONS(5000), - [anon_sym_RBRACE] = ACTIONS(5000), - [anon_sym_STAR2] = ACTIONS(4967), - [aux_sym__val_number_decimal_token1] = ACTIONS(4969), - [aux_sym__val_number_decimal_token2] = ACTIONS(4969), - [aux_sym__val_number_decimal_token3] = ACTIONS(4971), - [aux_sym__val_number_decimal_token4] = ACTIONS(4973), - [anon_sym_DQUOTE] = ACTIONS(1295), - [sym__str_single_quotes] = ACTIONS(1297), - [sym__str_back_ticks] = ACTIONS(1297), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1299), - }, - [1694] = { - [sym_comment] = STATE(1694), - [ts_builtin_sym_end] = ACTIONS(1794), - [sym__newline] = ACTIONS(1794), - [anon_sym_SEMI] = ACTIONS(1794), - [anon_sym_PIPE] = ACTIONS(1794), - [anon_sym_err_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_GT_PIPE] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1794), - [anon_sym_LBRACK] = ACTIONS(1794), - [anon_sym_LPAREN] = ACTIONS(1786), - [anon_sym_DOLLAR] = ACTIONS(1786), - [anon_sym_DASH_DASH] = ACTIONS(1794), - [anon_sym_DASH2] = ACTIONS(1786), - [anon_sym_LBRACE] = ACTIONS(1794), - [anon_sym_DOT_DOT] = ACTIONS(1786), - [anon_sym_LPAREN2] = ACTIONS(1788), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1794), - [anon_sym_DOT_DOT_LT] = ACTIONS(1794), - [anon_sym_null] = ACTIONS(1794), - [anon_sym_true] = ACTIONS(1794), - [anon_sym_false] = ACTIONS(1794), - [aux_sym__val_number_decimal_token1] = ACTIONS(1786), - [aux_sym__val_number_decimal_token2] = ACTIONS(1794), - [aux_sym__val_number_decimal_token3] = ACTIONS(1794), - [aux_sym__val_number_decimal_token4] = ACTIONS(1794), - [aux_sym__val_number_token1] = ACTIONS(1794), - [aux_sym__val_number_token2] = ACTIONS(1794), - [aux_sym__val_number_token3] = ACTIONS(1794), - [aux_sym__val_number_token4] = ACTIONS(1794), - [aux_sym__val_number_token5] = ACTIONS(1794), - [aux_sym__val_number_token6] = ACTIONS(1794), - [anon_sym_0b] = ACTIONS(1786), - [anon_sym_0o] = ACTIONS(1786), - [anon_sym_0x] = ACTIONS(1786), - [sym_val_date] = ACTIONS(1794), - [anon_sym_DQUOTE] = ACTIONS(1794), - [sym__str_single_quotes] = ACTIONS(1794), - [sym__str_back_ticks] = ACTIONS(1794), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1794), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1794), - [anon_sym_err_GT] = ACTIONS(1786), - [anon_sym_out_GT] = ACTIONS(1786), - [anon_sym_e_GT] = ACTIONS(1786), - [anon_sym_o_GT] = ACTIONS(1786), - [anon_sym_err_PLUSout_GT] = ACTIONS(1786), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1786), - [anon_sym_o_PLUSe_GT] = ACTIONS(1786), - [anon_sym_e_PLUSo_GT] = ACTIONS(1786), - [anon_sym_err_GT_GT] = ACTIONS(1794), - [anon_sym_out_GT_GT] = ACTIONS(1794), - [anon_sym_e_GT_GT] = ACTIONS(1794), - [anon_sym_o_GT_GT] = ACTIONS(1794), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1794), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1794), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1794), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1794), - [aux_sym_unquoted_token1] = ACTIONS(1786), - [aux_sym_unquoted_token2] = ACTIONS(1555), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1794), - }, - [1695] = { - [sym_comment] = STATE(1695), - [sym__newline] = ACTIONS(1767), - [anon_sym_SEMI] = ACTIONS(1767), - [anon_sym_PIPE] = ACTIONS(1767), - [anon_sym_err_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_GT_PIPE] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1767), - [anon_sym_LBRACK] = ACTIONS(1767), - [anon_sym_LPAREN] = ACTIONS(1767), - [anon_sym_RPAREN] = ACTIONS(1767), - [anon_sym_DOLLAR] = ACTIONS(1765), - [anon_sym_DASH_DASH] = ACTIONS(1767), - [anon_sym_DASH2] = ACTIONS(1765), - [anon_sym_LBRACE] = ACTIONS(1767), - [anon_sym_RBRACE] = ACTIONS(1767), - [anon_sym_DOT_DOT] = ACTIONS(1765), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1767), - [anon_sym_DOT_DOT_LT] = ACTIONS(1767), - [aux_sym__immediate_decimal_token2] = ACTIONS(5002), - [anon_sym_null] = ACTIONS(1767), - [anon_sym_true] = ACTIONS(1767), - [anon_sym_false] = ACTIONS(1767), - [aux_sym__val_number_decimal_token1] = ACTIONS(1765), - [aux_sym__val_number_decimal_token2] = ACTIONS(1767), - [aux_sym__val_number_decimal_token3] = ACTIONS(1767), - [aux_sym__val_number_decimal_token4] = ACTIONS(1767), - [aux_sym__val_number_token1] = ACTIONS(1767), - [aux_sym__val_number_token2] = ACTIONS(1767), - [aux_sym__val_number_token3] = ACTIONS(1767), - [aux_sym__val_number_token4] = ACTIONS(1767), - [aux_sym__val_number_token5] = ACTIONS(1767), - [aux_sym__val_number_token6] = ACTIONS(1767), - [anon_sym_0b] = ACTIONS(1765), - [anon_sym_0o] = ACTIONS(1765), - [anon_sym_0x] = ACTIONS(1765), - [sym_val_date] = ACTIONS(1767), - [anon_sym_DQUOTE] = ACTIONS(1767), - [sym__str_single_quotes] = ACTIONS(1767), - [sym__str_back_ticks] = ACTIONS(1767), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1767), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1767), - [anon_sym_err_GT] = ACTIONS(1765), - [anon_sym_out_GT] = ACTIONS(1765), - [anon_sym_e_GT] = ACTIONS(1765), - [anon_sym_o_GT] = ACTIONS(1765), - [anon_sym_err_PLUSout_GT] = ACTIONS(1765), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1765), - [anon_sym_o_PLUSe_GT] = ACTIONS(1765), - [anon_sym_e_PLUSo_GT] = ACTIONS(1765), - [anon_sym_err_GT_GT] = ACTIONS(1767), - [anon_sym_out_GT_GT] = ACTIONS(1767), - [anon_sym_e_GT_GT] = ACTIONS(1767), - [anon_sym_o_GT_GT] = ACTIONS(1767), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1767), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1767), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1767), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1767), - [aux_sym_unquoted_token1] = ACTIONS(1765), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1767), - }, - [1696] = { - [sym_comment] = STATE(1696), - [sym__newline] = ACTIONS(986), - [anon_sym_SEMI] = ACTIONS(986), - [anon_sym_PIPE] = ACTIONS(986), - [anon_sym_err_GT_PIPE] = ACTIONS(986), - [anon_sym_out_GT_PIPE] = ACTIONS(986), - [anon_sym_e_GT_PIPE] = ACTIONS(986), - [anon_sym_o_GT_PIPE] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(986), - [anon_sym_LBRACK] = ACTIONS(986), - [anon_sym_LPAREN] = ACTIONS(986), - [anon_sym_RPAREN] = ACTIONS(986), - [anon_sym_DOLLAR] = ACTIONS(984), - [anon_sym_DASH_DASH] = ACTIONS(986), - [anon_sym_DASH2] = ACTIONS(984), - [anon_sym_LBRACE] = ACTIONS(986), - [anon_sym_RBRACE] = ACTIONS(986), - [anon_sym_DOT_DOT] = ACTIONS(984), - [anon_sym_DOT_DOT_EQ] = ACTIONS(986), - [anon_sym_DOT_DOT_LT] = ACTIONS(986), - [anon_sym_null] = ACTIONS(986), - [anon_sym_true] = ACTIONS(986), - [anon_sym_false] = ACTIONS(986), - [aux_sym__val_number_decimal_token1] = ACTIONS(984), - [aux_sym__val_number_decimal_token2] = ACTIONS(986), - [aux_sym__val_number_decimal_token3] = ACTIONS(986), - [aux_sym__val_number_decimal_token4] = ACTIONS(986), - [aux_sym__val_number_token1] = ACTIONS(986), - [aux_sym__val_number_token2] = ACTIONS(986), - [aux_sym__val_number_token3] = ACTIONS(986), - [aux_sym__val_number_token4] = ACTIONS(986), - [aux_sym__val_number_token5] = ACTIONS(986), - [aux_sym__val_number_token6] = ACTIONS(986), - [anon_sym_0b] = ACTIONS(984), - [anon_sym_0o] = ACTIONS(984), - [anon_sym_0x] = ACTIONS(984), - [sym_val_date] = ACTIONS(986), - [anon_sym_DQUOTE] = ACTIONS(986), - [sym__str_single_quotes] = ACTIONS(986), - [sym__str_back_ticks] = ACTIONS(986), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(986), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(986), - [anon_sym_DOT2] = ACTIONS(984), - [anon_sym_err_GT] = ACTIONS(984), - [anon_sym_out_GT] = ACTIONS(984), - [anon_sym_e_GT] = ACTIONS(984), - [anon_sym_o_GT] = ACTIONS(984), - [anon_sym_err_PLUSout_GT] = ACTIONS(984), - [anon_sym_out_PLUSerr_GT] = ACTIONS(984), - [anon_sym_o_PLUSe_GT] = ACTIONS(984), - [anon_sym_e_PLUSo_GT] = ACTIONS(984), - [anon_sym_err_GT_GT] = ACTIONS(986), - [anon_sym_out_GT_GT] = ACTIONS(986), - [anon_sym_e_GT_GT] = ACTIONS(986), - [anon_sym_o_GT_GT] = ACTIONS(986), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(986), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(986), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(986), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(986), - [aux_sym_unquoted_token1] = ACTIONS(984), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(986), - }, - [1697] = { - [sym_cell_path] = STATE(2076), - [sym_path] = STATE(1861), - [sym_comment] = STATE(1697), - [aux_sym_cell_path_repeat1] = STATE(1684), - [ts_builtin_sym_end] = ACTIONS(1723), - [sym__newline] = ACTIONS(1723), - [anon_sym_SEMI] = ACTIONS(1723), - [anon_sym_PIPE] = ACTIONS(1723), - [anon_sym_err_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_GT_PIPE] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1723), - [anon_sym_GT2] = ACTIONS(1721), - [anon_sym_DASH2] = ACTIONS(1723), - [anon_sym_in2] = ACTIONS(1723), - [anon_sym_STAR2] = ACTIONS(1721), - [anon_sym_and2] = ACTIONS(1723), - [anon_sym_xor2] = ACTIONS(1723), - [anon_sym_or2] = ACTIONS(1723), - [anon_sym_not_DASHin2] = ACTIONS(1723), - [anon_sym_starts_DASHwith2] = ACTIONS(1723), - [anon_sym_ends_DASHwith2] = ACTIONS(1723), - [anon_sym_EQ_EQ2] = ACTIONS(1723), - [anon_sym_BANG_EQ2] = ACTIONS(1723), - [anon_sym_LT2] = ACTIONS(1721), - [anon_sym_LT_EQ2] = ACTIONS(1723), - [anon_sym_GT_EQ2] = ACTIONS(1723), - [anon_sym_EQ_TILDE2] = ACTIONS(1723), - [anon_sym_BANG_TILDE2] = ACTIONS(1723), - [anon_sym_STAR_STAR2] = ACTIONS(1723), - [anon_sym_PLUS_PLUS2] = ACTIONS(1723), - [anon_sym_SLASH2] = ACTIONS(1721), - [anon_sym_mod2] = ACTIONS(1723), - [anon_sym_SLASH_SLASH2] = ACTIONS(1723), - [anon_sym_PLUS2] = ACTIONS(1721), - [anon_sym_bit_DASHshl2] = ACTIONS(1723), - [anon_sym_bit_DASHshr2] = ACTIONS(1723), - [anon_sym_bit_DASHand2] = ACTIONS(1723), - [anon_sym_bit_DASHxor2] = ACTIONS(1723), - [anon_sym_bit_DASHor2] = ACTIONS(1723), - [anon_sym_DOT_DOT2] = ACTIONS(1721), - [anon_sym_DOT_DOT_EQ2] = ACTIONS(1723), - [anon_sym_DOT_DOT_LT2] = ACTIONS(1723), - [anon_sym_DOT2] = ACTIONS(4919), - [anon_sym_err_GT] = ACTIONS(1721), - [anon_sym_out_GT] = ACTIONS(1721), - [anon_sym_e_GT] = ACTIONS(1721), - [anon_sym_o_GT] = ACTIONS(1721), - [anon_sym_err_PLUSout_GT] = ACTIONS(1721), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1721), - [anon_sym_o_PLUSe_GT] = ACTIONS(1721), - [anon_sym_e_PLUSo_GT] = ACTIONS(1721), - [anon_sym_err_GT_GT] = ACTIONS(1723), - [anon_sym_out_GT_GT] = ACTIONS(1723), - [anon_sym_e_GT_GT] = ACTIONS(1723), - [anon_sym_o_GT_GT] = ACTIONS(1723), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1723), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1723), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1723), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1723), - [anon_sym_POUND] = ACTIONS(251), - }, - [1698] = { - [sym_comment] = STATE(1698), - [ts_builtin_sym_end] = ACTIONS(2233), - [sym__newline] = ACTIONS(2233), - [anon_sym_SEMI] = ACTIONS(2233), - [anon_sym_PIPE] = ACTIONS(2233), - [anon_sym_err_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_GT_PIPE] = ACTIONS(2233), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2233), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2233), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2233), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2233), - [anon_sym_LBRACK] = ACTIONS(2233), - [anon_sym_LPAREN] = ACTIONS(2229), - [anon_sym_DOLLAR] = ACTIONS(2229), - [anon_sym_DASH_DASH] = ACTIONS(2229), - [anon_sym_DASH2] = ACTIONS(2229), - [anon_sym_LBRACE] = ACTIONS(2233), - [anon_sym_DOT_DOT] = ACTIONS(2229), - [anon_sym_LPAREN2] = ACTIONS(2231), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2229), - [anon_sym_DOT_DOT_LT] = ACTIONS(2229), - [anon_sym_null] = ACTIONS(2229), - [anon_sym_true] = ACTIONS(2229), - [anon_sym_false] = ACTIONS(2229), - [aux_sym__val_number_decimal_token1] = ACTIONS(2229), - [aux_sym__val_number_decimal_token2] = ACTIONS(2229), - [aux_sym__val_number_decimal_token3] = ACTIONS(2229), - [aux_sym__val_number_decimal_token4] = ACTIONS(2229), - [aux_sym__val_number_token1] = ACTIONS(2229), - [aux_sym__val_number_token2] = ACTIONS(2229), - [aux_sym__val_number_token3] = ACTIONS(2229), - [aux_sym__val_number_token4] = ACTIONS(2229), - [aux_sym__val_number_token5] = ACTIONS(2229), - [aux_sym__val_number_token6] = ACTIONS(2229), - [anon_sym_0b] = ACTIONS(2229), - [anon_sym_0o] = ACTIONS(2229), - [anon_sym_0x] = ACTIONS(2229), - [sym_val_date] = ACTIONS(2229), - [anon_sym_DQUOTE] = ACTIONS(2233), - [sym__str_single_quotes] = ACTIONS(2233), - [sym__str_back_ticks] = ACTIONS(2233), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2233), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2233), - [anon_sym_err_GT] = ACTIONS(2229), - [anon_sym_out_GT] = ACTIONS(2229), - [anon_sym_e_GT] = ACTIONS(2229), - [anon_sym_o_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT] = ACTIONS(2229), - [anon_sym_err_GT_GT] = ACTIONS(2229), - [anon_sym_out_GT_GT] = ACTIONS(2229), - [anon_sym_e_GT_GT] = ACTIONS(2229), - [anon_sym_o_GT_GT] = ACTIONS(2229), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2229), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2229), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2229), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2229), - [aux_sym_unquoted_token1] = ACTIONS(2229), - [aux_sym_unquoted_token4] = ACTIONS(2235), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2233), - }, - [1699] = { - [sym_comment] = STATE(1699), - [ts_builtin_sym_end] = 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_LBRACK] = ACTIONS(2198), - [anon_sym_LPAREN] = ACTIONS(2194), - [anon_sym_DOLLAR] = ACTIONS(2194), - [anon_sym_DASH_DASH] = ACTIONS(2198), - [anon_sym_DASH2] = ACTIONS(2194), - [anon_sym_LBRACE] = ACTIONS(2198), - [anon_sym_DOT_DOT] = ACTIONS(2194), - [anon_sym_LPAREN2] = ACTIONS(2196), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2198), - [anon_sym_DOT_DOT_LT] = ACTIONS(2198), - [anon_sym_null] = ACTIONS(2198), - [anon_sym_true] = ACTIONS(2198), - [anon_sym_false] = ACTIONS(2198), - [aux_sym__val_number_decimal_token1] = ACTIONS(2194), - [aux_sym__val_number_decimal_token2] = ACTIONS(2198), - [aux_sym__val_number_decimal_token3] = ACTIONS(2198), - [aux_sym__val_number_decimal_token4] = ACTIONS(2198), - [aux_sym__val_number_token1] = ACTIONS(2198), - [aux_sym__val_number_token2] = ACTIONS(2198), - [aux_sym__val_number_token3] = ACTIONS(2198), - [aux_sym__val_number_token4] = ACTIONS(2198), - [aux_sym__val_number_token5] = ACTIONS(2198), - [aux_sym__val_number_token6] = ACTIONS(2198), - [anon_sym_0b] = ACTIONS(2194), - [anon_sym_0o] = ACTIONS(2194), - [anon_sym_0x] = ACTIONS(2194), - [sym_val_date] = ACTIONS(2198), - [anon_sym_DQUOTE] = ACTIONS(2198), - [sym__str_single_quotes] = ACTIONS(2198), - [sym__str_back_ticks] = ACTIONS(2198), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2198), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2198), - [anon_sym_err_GT] = ACTIONS(2194), - [anon_sym_out_GT] = ACTIONS(2194), - [anon_sym_e_GT] = ACTIONS(2194), - [anon_sym_o_GT] = ACTIONS(2194), - [anon_sym_err_PLUSout_GT] = ACTIONS(2194), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2194), - [anon_sym_o_PLUSe_GT] = ACTIONS(2194), - [anon_sym_e_PLUSo_GT] = ACTIONS(2194), - [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), - [aux_sym_unquoted_token1] = ACTIONS(2194), - [aux_sym_unquoted_token2] = ACTIONS(2200), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(2198), - }, - [1700] = { - [sym_comment] = STATE(1700), - [sym__newline] = ACTIONS(1727), - [anon_sym_SEMI] = ACTIONS(1727), - [anon_sym_PIPE] = ACTIONS(1727), - [anon_sym_err_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_GT_PIPE] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1727), - [anon_sym_LBRACK] = ACTIONS(1727), - [anon_sym_LPAREN] = ACTIONS(1727), - [anon_sym_RPAREN] = ACTIONS(1727), - [anon_sym_DOLLAR] = ACTIONS(1725), - [anon_sym_DASH_DASH] = ACTIONS(1727), - [anon_sym_DASH2] = ACTIONS(1725), - [anon_sym_LBRACE] = ACTIONS(1727), - [anon_sym_RBRACE] = ACTIONS(1727), - [anon_sym_DOT_DOT] = ACTIONS(1725), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1727), - [anon_sym_DOT_DOT_LT] = ACTIONS(1727), - [aux_sym__immediate_decimal_token2] = ACTIONS(4828), - [anon_sym_null] = ACTIONS(1727), - [anon_sym_true] = ACTIONS(1727), - [anon_sym_false] = ACTIONS(1727), - [aux_sym__val_number_decimal_token1] = ACTIONS(1725), - [aux_sym__val_number_decimal_token2] = ACTIONS(1727), - [aux_sym__val_number_decimal_token3] = ACTIONS(1727), - [aux_sym__val_number_decimal_token4] = ACTIONS(1727), - [aux_sym__val_number_token1] = ACTIONS(1727), - [aux_sym__val_number_token2] = ACTIONS(1727), - [aux_sym__val_number_token3] = ACTIONS(1727), - [aux_sym__val_number_token4] = ACTIONS(1727), - [aux_sym__val_number_token5] = ACTIONS(1727), - [aux_sym__val_number_token6] = ACTIONS(1727), - [anon_sym_0b] = ACTIONS(1725), - [anon_sym_0o] = ACTIONS(1725), - [anon_sym_0x] = ACTIONS(1725), - [sym_val_date] = ACTIONS(1727), - [anon_sym_DQUOTE] = ACTIONS(1727), - [sym__str_single_quotes] = ACTIONS(1727), - [sym__str_back_ticks] = ACTIONS(1727), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1727), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1727), - [anon_sym_err_GT] = ACTIONS(1725), - [anon_sym_out_GT] = ACTIONS(1725), - [anon_sym_e_GT] = ACTIONS(1725), - [anon_sym_o_GT] = ACTIONS(1725), - [anon_sym_err_PLUSout_GT] = ACTIONS(1725), - [anon_sym_out_PLUSerr_GT] = ACTIONS(1725), - [anon_sym_o_PLUSe_GT] = ACTIONS(1725), - [anon_sym_e_PLUSo_GT] = ACTIONS(1725), - [anon_sym_err_GT_GT] = ACTIONS(1727), - [anon_sym_out_GT_GT] = ACTIONS(1727), - [anon_sym_e_GT_GT] = ACTIONS(1727), - [anon_sym_o_GT_GT] = ACTIONS(1727), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1727), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1727), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1727), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1727), - [aux_sym_unquoted_token1] = ACTIONS(1725), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1727), - }, - [1701] = { - [sym_comment] = STATE(1701), - [ts_builtin_sym_end] = ACTIONS(2267), - [sym__newline] = ACTIONS(2267), - [anon_sym_SEMI] = ACTIONS(2267), - [anon_sym_PIPE] = ACTIONS(2267), - [anon_sym_err_GT_PIPE] = ACTIONS(2267), - [anon_sym_out_GT_PIPE] = ACTIONS(2267), - [anon_sym_e_GT_PIPE] = ACTIONS(2267), - [anon_sym_o_GT_PIPE] = ACTIONS(2267), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(2267), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(2267), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(2267), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(2267), - [anon_sym_LBRACK] = ACTIONS(2267), - [anon_sym_LPAREN] = ACTIONS(2265), - [anon_sym_DOLLAR] = ACTIONS(2265), - [anon_sym_DASH_DASH] = ACTIONS(2265), - [anon_sym_DASH2] = ACTIONS(2265), - [anon_sym_LBRACE] = ACTIONS(2267), - [anon_sym_DOT_DOT] = ACTIONS(2265), - [anon_sym_LPAREN2] = ACTIONS(2267), - [anon_sym_DOT_DOT_EQ] = ACTIONS(2265), - [anon_sym_DOT_DOT_LT] = ACTIONS(2265), - [anon_sym_null] = ACTIONS(2265), - [anon_sym_true] = ACTIONS(2265), - [anon_sym_false] = ACTIONS(2265), - [aux_sym__val_number_decimal_token1] = ACTIONS(2265), - [aux_sym__val_number_decimal_token2] = ACTIONS(2265), - [aux_sym__val_number_decimal_token3] = ACTIONS(2265), - [aux_sym__val_number_decimal_token4] = ACTIONS(2265), - [aux_sym__val_number_token1] = ACTIONS(2265), - [aux_sym__val_number_token2] = ACTIONS(2265), - [aux_sym__val_number_token3] = ACTIONS(2265), - [aux_sym__val_number_token4] = ACTIONS(2265), - [aux_sym__val_number_token5] = ACTIONS(2265), - [aux_sym__val_number_token6] = ACTIONS(2265), - [anon_sym_0b] = ACTIONS(2265), - [anon_sym_0o] = ACTIONS(2265), - [anon_sym_0x] = ACTIONS(2265), - [sym_val_date] = ACTIONS(2265), - [anon_sym_DQUOTE] = ACTIONS(2267), - [sym__str_single_quotes] = ACTIONS(2267), - [sym__str_back_ticks] = ACTIONS(2267), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(2267), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(2267), - [anon_sym_err_GT] = ACTIONS(2265), - [anon_sym_out_GT] = ACTIONS(2265), - [anon_sym_e_GT] = ACTIONS(2265), - [anon_sym_o_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT] = ACTIONS(2265), - [anon_sym_err_GT_GT] = ACTIONS(2265), - [anon_sym_out_GT_GT] = ACTIONS(2265), - [anon_sym_e_GT_GT] = ACTIONS(2265), - [anon_sym_o_GT_GT] = ACTIONS(2265), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(2265), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(2265), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(2265), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(2265), - [aux_sym_unquoted_token1] = ACTIONS(2265), - [aux_sym_unquoted_token4] = ACTIONS(2265), - [anon_sym_POUND] = ACTIONS(3), - [sym_raw_string_begin] = ACTIONS(2267), + [1689] = { + [sym_comment] = STATE(1689), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_RBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT] = ACTIONS(1774), + [aux_sym__immediate_decimal_token2] = ACTIONS(4989), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, - [1702] = { - [sym_comment] = STATE(1702), - [ts_builtin_sym_end] = ACTIONS(966), - [sym__newline] = ACTIONS(966), - [anon_sym_SEMI] = ACTIONS(966), - [anon_sym_PIPE] = ACTIONS(966), - [anon_sym_err_GT_PIPE] = ACTIONS(966), - [anon_sym_out_GT_PIPE] = ACTIONS(966), - [anon_sym_e_GT_PIPE] = ACTIONS(966), - [anon_sym_o_GT_PIPE] = ACTIONS(966), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(966), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(966), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(966), - [anon_sym_LBRACK] = ACTIONS(966), - [anon_sym_LPAREN] = ACTIONS(966), - [anon_sym_DOLLAR] = ACTIONS(964), - [anon_sym_DASH_DASH] = ACTIONS(966), - [anon_sym_DASH2] = ACTIONS(964), - [anon_sym_LBRACE] = ACTIONS(966), - [anon_sym_DOT_DOT] = ACTIONS(964), - [anon_sym_QMARK2] = ACTIONS(966), - [anon_sym_DOT_DOT_EQ] = ACTIONS(966), - [anon_sym_DOT_DOT_LT] = ACTIONS(966), - [anon_sym_null] = ACTIONS(966), - [anon_sym_true] = ACTIONS(966), - [anon_sym_false] = ACTIONS(966), - [aux_sym__val_number_decimal_token1] = ACTIONS(964), - [aux_sym__val_number_decimal_token2] = ACTIONS(966), - [aux_sym__val_number_decimal_token3] = ACTIONS(966), - [aux_sym__val_number_decimal_token4] = ACTIONS(966), - [aux_sym__val_number_token1] = ACTIONS(966), - [aux_sym__val_number_token2] = ACTIONS(966), - [aux_sym__val_number_token3] = ACTIONS(966), - [aux_sym__val_number_token4] = ACTIONS(966), - [aux_sym__val_number_token5] = ACTIONS(966), - [aux_sym__val_number_token6] = ACTIONS(966), - [anon_sym_0b] = ACTIONS(964), - [anon_sym_0o] = ACTIONS(964), - [anon_sym_0x] = ACTIONS(964), - [sym_val_date] = ACTIONS(966), - [anon_sym_DQUOTE] = ACTIONS(966), - [sym__str_single_quotes] = ACTIONS(966), - [sym__str_back_ticks] = ACTIONS(966), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(966), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(966), - [anon_sym_DOT2] = ACTIONS(964), - [anon_sym_err_GT] = ACTIONS(964), - [anon_sym_out_GT] = ACTIONS(964), - [anon_sym_e_GT] = ACTIONS(964), - [anon_sym_o_GT] = ACTIONS(964), - [anon_sym_err_PLUSout_GT] = ACTIONS(964), - [anon_sym_out_PLUSerr_GT] = ACTIONS(964), - [anon_sym_o_PLUSe_GT] = ACTIONS(964), - [anon_sym_e_PLUSo_GT] = ACTIONS(964), - [anon_sym_err_GT_GT] = ACTIONS(966), - [anon_sym_out_GT_GT] = ACTIONS(966), - [anon_sym_e_GT_GT] = ACTIONS(966), - [anon_sym_o_GT_GT] = ACTIONS(966), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(966), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(966), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(966), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(966), - [aux_sym_unquoted_token1] = ACTIONS(964), + [1690] = { + [sym_cell_path] = STATE(2067), + [sym_path] = STATE(1531), + [sym_comment] = STATE(1690), + [aux_sym_cell_path_repeat1] = STATE(1403), + [sym__newline] = ACTIONS(1978), + [anon_sym_SEMI] = ACTIONS(1978), + [anon_sym_PIPE] = ACTIONS(1978), + [anon_sym_err_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_GT_PIPE] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1978), + [anon_sym_RPAREN] = ACTIONS(1978), + [anon_sym_GT2] = ACTIONS(1976), + [anon_sym_DASH2] = ACTIONS(1978), + [anon_sym_in2] = ACTIONS(1978), + [anon_sym_LBRACE] = ACTIONS(1978), + [anon_sym_RBRACE] = ACTIONS(1978), + [anon_sym_EQ_GT] = ACTIONS(1978), + [anon_sym_STAR2] = ACTIONS(1976), + [anon_sym_and2] = ACTIONS(1978), + [anon_sym_xor2] = ACTIONS(1978), + [anon_sym_or2] = ACTIONS(1978), + [anon_sym_not_DASHin2] = ACTIONS(1978), + [anon_sym_starts_DASHwith2] = ACTIONS(1978), + [anon_sym_ends_DASHwith2] = ACTIONS(1978), + [anon_sym_EQ_EQ2] = ACTIONS(1978), + [anon_sym_BANG_EQ2] = ACTIONS(1978), + [anon_sym_LT2] = ACTIONS(1976), + [anon_sym_LT_EQ2] = ACTIONS(1978), + [anon_sym_GT_EQ2] = ACTIONS(1978), + [anon_sym_EQ_TILDE2] = ACTIONS(1978), + [anon_sym_BANG_TILDE2] = ACTIONS(1978), + [anon_sym_STAR_STAR2] = ACTIONS(1978), + [anon_sym_PLUS_PLUS2] = ACTIONS(1978), + [anon_sym_SLASH2] = ACTIONS(1976), + [anon_sym_mod2] = ACTIONS(1978), + [anon_sym_SLASH_SLASH2] = ACTIONS(1978), + [anon_sym_PLUS2] = ACTIONS(1976), + [anon_sym_bit_DASHshl2] = ACTIONS(1978), + [anon_sym_bit_DASHshr2] = ACTIONS(1978), + [anon_sym_bit_DASHand2] = ACTIONS(1978), + [anon_sym_bit_DASHxor2] = ACTIONS(1978), + [anon_sym_bit_DASHor2] = ACTIONS(1978), + [anon_sym_DOT2] = ACTIONS(4831), + [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(1978), + [anon_sym_out_GT_GT] = ACTIONS(1978), + [anon_sym_e_GT_GT] = ACTIONS(1978), + [anon_sym_o_GT_GT] = ACTIONS(1978), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1978), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1978), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1978), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1978), [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(966), }, - [1703] = { - [sym_comment] = STATE(1703), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_GT2] = ACTIONS(1681), - [anon_sym_DASH2] = ACTIONS(1693), - [anon_sym_in2] = ACTIONS(1693), - [anon_sym_if] = ACTIONS(1693), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_EQ_GT] = ACTIONS(1693), - [anon_sym_STAR2] = ACTIONS(1681), - [anon_sym_QMARK2] = ACTIONS(1693), - [anon_sym_and2] = ACTIONS(1693), - [anon_sym_xor2] = ACTIONS(1693), - [anon_sym_or2] = ACTIONS(1693), - [anon_sym_not_DASHin2] = ACTIONS(1693), - [anon_sym_starts_DASHwith2] = ACTIONS(1693), - [anon_sym_ends_DASHwith2] = ACTIONS(1693), - [anon_sym_EQ_EQ2] = ACTIONS(1693), - [anon_sym_BANG_EQ2] = ACTIONS(1693), - [anon_sym_LT2] = ACTIONS(1681), - [anon_sym_LT_EQ2] = ACTIONS(1693), - [anon_sym_GT_EQ2] = ACTIONS(1693), - [anon_sym_EQ_TILDE2] = ACTIONS(1693), - [anon_sym_BANG_TILDE2] = ACTIONS(1693), - [anon_sym_STAR_STAR2] = ACTIONS(1693), - [anon_sym_PLUS_PLUS2] = ACTIONS(1693), - [anon_sym_SLASH2] = ACTIONS(1681), - [anon_sym_mod2] = ACTIONS(1693), - [anon_sym_SLASH_SLASH2] = ACTIONS(1693), - [anon_sym_PLUS2] = ACTIONS(1681), - [anon_sym_bit_DASHshl2] = ACTIONS(1693), - [anon_sym_bit_DASHshr2] = ACTIONS(1693), - [anon_sym_bit_DASHand2] = ACTIONS(1693), - [anon_sym_bit_DASHxor2] = ACTIONS(1693), - [anon_sym_bit_DASHor2] = ACTIONS(1693), - [anon_sym_COLON2] = ACTIONS(1693), - [anon_sym_DOT2] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [anon_sym_POUND] = ACTIONS(251), - }, - [1704] = { - [sym_comment] = STATE(1704), - [sym__newline] = ACTIONS(1693), - [anon_sym_SEMI] = ACTIONS(1693), - [anon_sym_PIPE] = ACTIONS(1693), - [anon_sym_err_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_GT_PIPE] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1693), - [anon_sym_LBRACK] = ACTIONS(1693), - [anon_sym_LPAREN] = ACTIONS(1693), - [anon_sym_RPAREN] = ACTIONS(1693), - [anon_sym_DOLLAR] = ACTIONS(1681), - [anon_sym_DASH_DASH] = ACTIONS(1693), - [anon_sym_DASH2] = ACTIONS(1681), - [anon_sym_LBRACE] = ACTIONS(1693), - [anon_sym_RBRACE] = ACTIONS(1693), - [anon_sym_DOT_DOT] = ACTIONS(1681), - [anon_sym_DOT_DOT_EQ] = ACTIONS(1693), - [anon_sym_DOT_DOT_LT] = ACTIONS(1693), - [anon_sym_null] = ACTIONS(1693), - [anon_sym_true] = ACTIONS(1693), - [anon_sym_false] = ACTIONS(1693), - [aux_sym__val_number_decimal_token1] = ACTIONS(1681), - [aux_sym__val_number_decimal_token2] = ACTIONS(1693), - [aux_sym__val_number_decimal_token3] = ACTIONS(1693), - [aux_sym__val_number_decimal_token4] = ACTIONS(1693), - [aux_sym__val_number_token1] = ACTIONS(1693), - [aux_sym__val_number_token2] = ACTIONS(1693), - [aux_sym__val_number_token3] = ACTIONS(1693), - [aux_sym__val_number_token4] = ACTIONS(1693), - [aux_sym__val_number_token5] = ACTIONS(1693), - [aux_sym__val_number_token6] = ACTIONS(1693), - [anon_sym_0b] = ACTIONS(1681), - [anon_sym_0o] = ACTIONS(1681), - [anon_sym_0x] = ACTIONS(1681), - [sym_val_date] = ACTIONS(1693), - [anon_sym_DQUOTE] = ACTIONS(1693), - [sym__str_single_quotes] = ACTIONS(1693), - [sym__str_back_ticks] = ACTIONS(1693), - [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1693), - [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1693), - [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(1693), - [anon_sym_out_GT_GT] = ACTIONS(1693), - [anon_sym_e_GT_GT] = ACTIONS(1693), - [anon_sym_o_GT_GT] = ACTIONS(1693), - [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1693), - [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1693), - [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1693), - [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1693), - [aux_sym_unquoted_token1] = ACTIONS(1681), - [aux_sym_unquoted_token2] = ACTIONS(4422), - [anon_sym_POUND] = ACTIONS(251), - [sym_raw_string_begin] = ACTIONS(1693), + [1691] = { + [sym_comment] = STATE(1691), + [ts_builtin_sym_end] = ACTIONS(1774), + [sym__newline] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_err_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_GT_PIPE] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_PIPE] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_PIPE] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_PIPE] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_PIPE] = ACTIONS(1774), + [anon_sym_LBRACK] = ACTIONS(1774), + [anon_sym_LPAREN] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1772), + [anon_sym_DASH_DASH] = ACTIONS(1774), + [anon_sym_DASH2] = ACTIONS(1772), + [anon_sym_LBRACE] = ACTIONS(1774), + [anon_sym_DOT_DOT] = ACTIONS(1772), + [anon_sym_LPAREN2] = ACTIONS(1774), + [anon_sym_DOT_DOT_EQ] = ACTIONS(1774), + [anon_sym_DOT_DOT_LT] = ACTIONS(1774), + [anon_sym_null] = ACTIONS(1774), + [anon_sym_true] = ACTIONS(1774), + [anon_sym_false] = ACTIONS(1774), + [aux_sym__val_number_decimal_token1] = ACTIONS(1772), + [aux_sym__val_number_decimal_token2] = ACTIONS(1774), + [aux_sym__val_number_decimal_token3] = ACTIONS(1774), + [aux_sym__val_number_decimal_token4] = ACTIONS(1774), + [aux_sym__val_number_token1] = ACTIONS(1774), + [aux_sym__val_number_token2] = ACTIONS(1774), + [aux_sym__val_number_token3] = ACTIONS(1774), + [aux_sym__val_number_token4] = ACTIONS(1774), + [aux_sym__val_number_token5] = ACTIONS(1774), + [aux_sym__val_number_token6] = ACTIONS(1774), + [anon_sym_0b] = ACTIONS(1772), + [anon_sym_0o] = ACTIONS(1772), + [anon_sym_0x] = ACTIONS(1772), + [sym_val_date] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [sym__str_single_quotes] = ACTIONS(1774), + [sym__str_back_ticks] = ACTIONS(1774), + [anon_sym_DOLLAR_SQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR_DQUOTE] = ACTIONS(1774), + [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(1774), + [anon_sym_out_GT_GT] = ACTIONS(1774), + [anon_sym_e_GT_GT] = ACTIONS(1774), + [anon_sym_o_GT_GT] = ACTIONS(1774), + [anon_sym_err_PLUSout_GT_GT] = ACTIONS(1774), + [anon_sym_out_PLUSerr_GT_GT] = ACTIONS(1774), + [anon_sym_o_PLUSe_GT_GT] = ACTIONS(1774), + [anon_sym_e_PLUSo_GT_GT] = ACTIONS(1774), + [aux_sym_unquoted_token1] = ACTIONS(1772), + [aux_sym_unquoted_token2] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(251), + [sym_raw_string_begin] = ACTIONS(1774), }, }; @@ -234561,374 +233666,9 @@ static const uint16_t ts_small_parse_table[] = { [0] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1705), 1, - sym_comment, - ACTIONS(4941), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4939), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [73] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5004), 1, - sym__newline, - STATE(1706), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1274), 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(1276), 47, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_else, - anon_sym_LBRACE, - anon_sym_catch, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [148] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5007), 1, - anon_sym_EQ2, - STATE(1707), 1, - sym_comment, - ACTIONS(4927), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4925), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [223] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1708), 1, - sym_comment, - ACTIONS(5011), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5009), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [296] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_STAR2, - STATE(1709), 1, - sym_comment, - STATE(3557), 1, - sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, - sym_val_string, - STATE(7185), 1, - sym__command_name, - STATE(7188), 1, - sym_scope_pattern, - STATE(7189), 1, - sym_wild_card, - STATE(7190), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1720), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4982), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5013), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [403] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1710), 1, + STATE(1692), 1, sym_comment, - ACTIONS(4941), 17, - anon_sym_LPAREN, + ACTIONS(980), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -234936,6 +233676,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -234945,7 +233686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4939), 45, + ACTIONS(982), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -234960,78 +233701,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [476] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1711), 1, - sym_comment, - ACTIONS(5023), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5021), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -235060,13 +233732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [549] = 4, + [73] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1712), 1, + STATE(1693), 1, sym_comment, - ACTIONS(4998), 17, - anon_sym_LPAREN, + ACTIONS(4993), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235080,200 +233751,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_GT, anon_sym_err_PLUSout_GT, anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(4996), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [622] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_DOLLAR, - ACTIONS(1859), 1, - sym_raw_string_begin, - ACTIONS(4212), 1, - anon_sym_DQUOTE, - ACTIONS(4216), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4218), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5025), 1, - anon_sym_LPAREN, - STATE(1713), 1, - sym_comment, - STATE(3644), 1, - sym__val_number_decimal, - STATE(4525), 1, - sym__inter_single_quotes, - STATE(4526), 1, - sym__inter_double_quotes, - ACTIONS(4214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3922), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4408), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(365), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [725] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1714), 1, - sym_comment, - ACTIONS(972), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(974), 47, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(4991), 46, + sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235282,58 +233801,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [798] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [146] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(1914), 1, + anon_sym_DOLLAR, + ACTIONS(1966), 1, + sym_raw_string_begin, + ACTIONS(4267), 1, + anon_sym_DQUOTE, + ACTIONS(4271), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4273), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_STAR2, - STATE(1715), 1, + ACTIONS(4995), 1, + anon_sym_LPAREN, + STATE(1694), 1, sym_comment, - STATE(3557), 1, + STATE(3618), 1, sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, - sym_val_string, - STATE(7035), 1, - sym_scope_pattern, - STATE(7185), 1, - sym__command_name, - STATE(7189), 1, - sym_wild_card, - STATE(7190), 1, - sym_command_list, - ACTIONS(111), 2, + STATE(4378), 1, + sym__inter_double_quotes, + STATE(4505), 1, + sym__inter_single_quotes, + ACTIONS(4269), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(3891), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4963), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(5013), 6, + STATE(4322), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(365), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -235368,12 +233885,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [905] = 4, + [249] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1716), 1, + STATE(1695), 1, sym_comment, - ACTIONS(5029), 16, + ACTIONS(2407), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235390,7 +233907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5027), 46, + ACTIONS(2409), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235437,12 +233954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [978] = 4, + [322] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1717), 1, + STATE(1696), 1, sym_comment, - ACTIONS(5033), 16, + ACTIONS(2028), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235459,7 +233976,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5031), 46, + ACTIONS(2030), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235506,12 +234023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1051] = 4, + [395] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1718), 1, + STATE(1697), 1, sym_comment, - ACTIONS(2345), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235528,7 +234045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2347), 46, + ACTIONS(1020), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235575,12 +234092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1124] = 4, + [468] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1719), 1, + STATE(1698), 1, sym_comment, - ACTIONS(2353), 16, + ACTIONS(4973), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235597,7 +234114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2355), 46, + ACTIONS(4971), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235644,18 +234161,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1197] = 4, + [541] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1720), 1, + STATE(1699), 1, sym_comment, - ACTIONS(964), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(984), 17, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, @@ -235665,7 +234183,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(966), 47, + aux_sym_unquoted_token1, + ACTIONS(986), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -235678,33 +234198,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235713,96 +234230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1270] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(2083), 1, - sym_raw_string_begin, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(4055), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4057), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5035), 1, - anon_sym_LPAREN, - STATE(1721), 1, - sym_comment, - STATE(3637), 1, - sym__val_number_decimal, - STATE(4562), 1, - sym__inter_single_quotes, - STATE(4658), 1, - sym__inter_double_quotes, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3997), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4518), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(19), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(21), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [1373] = 4, + [614] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1722), 1, + STATE(1700), 1, sym_comment, - ACTIONS(5039), 16, + ACTIONS(2035), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235819,7 +234252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5037), 46, + ACTIONS(2037), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -235866,19 +234299,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1446] = 4, - ACTIONS(251), 1, + [687] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1723), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(1701), 1, sym_comment, - ACTIONS(5043), 16, + ACTIONS(2196), 21, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2192), 40, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -235887,9 +234360,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - ACTIONS(5041), 46, + [762] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(1702), 1, + sym_comment, + ACTIONS(2202), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235903,15 +234392,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2200), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -235921,12 +234418,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -235935,12 +234438,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1519] = 4, + aux_sym_unquoted_token1, + [837] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1724), 1, + STATE(1703), 1, sym_comment, - ACTIONS(2369), 16, + ACTIONS(4977), 17, + anon_sym_LPAREN, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -235957,8 +234462,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2371), 46, + ACTIONS(4975), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -235971,11 +234477,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236004,20 +234508,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1592] = 5, + [910] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5045), 1, - aux_sym__immediate_decimal_token2, - STATE(1725), 1, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5001), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR2, + STATE(1704), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(6248), 1, + sym_cmd_identifier, + STATE(6250), 1, + sym_val_string, + STATE(6616), 1, + sym_wild_card, + STATE(6632), 1, + sym_command_list, + STATE(6989), 1, + sym_scope_pattern, + STATE(7185), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1780), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4934), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4997), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4999), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [1017] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1705), 1, sym_comment, - ACTIONS(1765), 15, + ACTIONS(976), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236026,8 +234615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1767), 46, + ACTIONS(978), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -236042,6 +234630,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -236054,7 +234644,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -236074,26 +234663,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1667] = 8, + [1090] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(5047), 1, - anon_sym_DOT_DOT2, - STATE(1726), 1, + ACTIONS(5005), 1, + aux_sym__immediate_decimal_token2, + STATE(1706), 1, sym_comment, - ACTIONS(5049), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(1772), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -236102,7 +234685,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(1794), 44, + aux_sym_unquoted_token2, + ACTIONS(1774), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236114,10 +234699,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -236130,6 +234713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -236139,6 +234723,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236147,12 +234733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1748] = 4, + [1165] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1727), 1, + STATE(1707), 1, sym_comment, - ACTIONS(5053), 16, + ACTIONS(2039), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236169,7 +234755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5051), 46, + ACTIONS(2041), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236216,12 +234802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1821] = 4, + [1238] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1728), 1, + STATE(1708), 1, sym_comment, - ACTIONS(5057), 16, + ACTIONS(2421), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236238,7 +234824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5055), 46, + ACTIONS(2423), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236285,85 +234871,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [1894] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(5059), 1, - anon_sym_DOT_DOT2, - STATE(1729), 1, - sym_comment, - ACTIONS(5061), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 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(1873), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [1975] = 4, + [1311] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1730), 1, + STATE(1709), 1, sym_comment, - ACTIONS(5065), 16, + ACTIONS(5010), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236380,7 +234893,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5063), 46, + ACTIONS(5007), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236427,12 +234940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2048] = 4, + [1384] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1731), 1, + STATE(1710), 1, sym_comment, - ACTIONS(5069), 16, + ACTIONS(972), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236449,7 +234962,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5067), 46, + ACTIONS(974), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236496,19 +235009,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2121] = 4, + [1457] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1732), 1, + ACTIONS(5013), 1, + sym__newline, + STATE(1711), 2, sym_comment, - ACTIONS(2170), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + aux_sym_shebang_repeat1, + ACTIONS(1274), 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, @@ -236517,10 +235031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2176), 46, - sym_raw_string_begin, - sym__newline, + ACTIONS(1276), 47, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -236531,32 +235042,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_COLON, anon_sym_LBRACK, - anon_sym_LPAREN, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_catch, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236565,12 +235079,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2194] = 4, + [1532] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1733), 1, + ACTIONS(5016), 1, + anon_sym_EQ2, + STATE(1712), 1, sym_comment, - ACTIONS(2341), 16, + ACTIONS(4916), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236587,8 +235103,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2343), 46, + ACTIONS(4914), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236602,10 +235119,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236634,12 +235149,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2267] = 4, + [1607] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1734), 1, + STATE(1713), 1, sym_comment, - ACTIONS(2144), 16, + ACTIONS(964), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236656,7 +235171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2150), 46, + ACTIONS(966), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236703,12 +235218,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2340] = 4, + [1680] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1735), 1, + ACTIONS(5018), 1, + aux_sym__immediate_decimal_token2, + STATE(1714), 1, sym_comment, - ACTIONS(2152), 16, + ACTIONS(1772), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236725,8 +235242,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2158), 46, + ACTIONS(1774), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236740,10 +235258,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236772,12 +235288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2413] = 4, + [1755] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1736), 1, + STATE(1715), 1, sym_comment, - ACTIONS(2160), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236794,7 +235310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2166), 46, + ACTIONS(5020), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -236841,30 +235357,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2486] = 4, - ACTIONS(251), 1, + [1828] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1737), 1, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(1716), 1, sym_comment, - ACTIONS(2357), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2359), 46, + ACTIONS(1000), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236878,15 +235380,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(1004), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -236896,12 +235406,18 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -236910,12 +235426,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, - [2559] = 4, + aux_sym_unquoted_token1, + [1903] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1738), 1, + ACTIONS(2104), 1, + anon_sym_DOLLAR, + ACTIONS(2154), 1, + sym_raw_string_begin, + ACTIONS(4231), 1, + anon_sym_DQUOTE, + ACTIONS(4235), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5024), 1, + anon_sym_LPAREN, + STATE(1717), 1, + sym_comment, + STATE(3611), 1, + sym__val_number_decimal, + STATE(4597), 1, + sym__inter_single_quotes, + STATE(4598), 1, + sym__inter_double_quotes, + ACTIONS(4233), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3939), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4413), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(19), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(21), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [2006] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5026), 1, + anon_sym_EQ2, + STATE(1718), 1, sym_comment, - ACTIONS(2361), 16, + ACTIONS(4922), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -236932,8 +235535,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2363), 46, + ACTIONS(4920), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -236947,10 +235551,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -236979,12 +235581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2632] = 4, + [2081] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1739), 1, + STATE(1719), 1, sym_comment, - ACTIONS(2365), 16, + ACTIONS(2326), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237001,7 +235603,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2367), 46, + ACTIONS(2328), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237048,12 +235650,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2705] = 4, + [2154] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1740), 1, + STATE(1720), 1, sym_comment, - ACTIONS(2373), 16, + ACTIONS(988), 17, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237061,6 +235663,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237070,8 +235673,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2375), 46, + ACTIONS(990), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237085,10 +235689,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237117,19 +235719,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2778] = 4, + [2227] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1741), 1, + ACTIONS(4985), 1, + aux_sym__immediate_decimal_token2, + STATE(1721), 1, sym_comment, - ACTIONS(2377), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1749), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237138,9 +235741,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2379), 46, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1751), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237152,32 +235755,185 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2302] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1914), 1, + anon_sym_DOLLAR, + ACTIONS(1966), 1, + sym_raw_string_begin, + ACTIONS(4267), 1, + anon_sym_DQUOTE, + ACTIONS(4271), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4273), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(4995), 1, + anon_sym_LPAREN, + STATE(1722), 1, + sym_comment, + STATE(3618), 1, + sym__val_number_decimal, + STATE(4378), 1, + sym__inter_double_quotes, + STATE(4505), 1, + sym__inter_single_quotes, + ACTIONS(4269), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3891), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4529), 5, + sym_cmd_identifier, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(363), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(365), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [2405] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1723), 1, + sym_comment, + ACTIONS(968), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(970), 47, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -237186,12 +235942,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, - [2851] = 4, + [2478] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(1742), 1, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5001), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR2, + STATE(1724), 1, sym_comment, - ACTIONS(2381), 16, + STATE(3553), 1, + sym__val_number_decimal, + STATE(6248), 1, + sym_cmd_identifier, + STATE(6250), 1, + sym_val_string, + STATE(6616), 1, + sym_wild_card, + STATE(6632), 1, + sym_command_list, + STATE(6675), 1, + sym_scope_pattern, + STATE(7185), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1780), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4987), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4997), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4999), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [2585] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1725), 1, + sym_comment, + ACTIONS(2441), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237208,7 +236050,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2383), 46, + ACTIONS(2443), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237255,12 +236097,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2924] = 4, + [2658] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1743), 1, + ACTIONS(5028), 1, + anon_sym_QMARK2, + STATE(1726), 1, sym_comment, - ACTIONS(2385), 16, + ACTIONS(952), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(954), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [2733] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1727), 1, + sym_comment, + ACTIONS(1663), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237277,7 +236189,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2387), 46, + ACTIONS(1675), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237324,12 +236236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [2997] = 4, + [2806] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1744), 1, + STATE(1728), 1, sym_comment, - ACTIONS(2389), 16, + ACTIONS(2047), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237346,7 +236258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2391), 46, + ACTIONS(2053), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237393,12 +236305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3070] = 4, + [2879] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1745), 1, + STATE(1729), 1, sym_comment, - ACTIONS(2393), 16, + ACTIONS(1004), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237415,7 +236327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2395), 46, + ACTIONS(1000), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237462,12 +236374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3143] = 4, + [2952] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1746), 1, + STATE(1730), 1, sym_comment, - ACTIONS(2397), 16, + ACTIONS(5032), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237484,7 +236396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2399), 46, + ACTIONS(5030), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237531,12 +236443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3216] = 4, + [3025] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1747), 1, + STATE(1731), 1, sym_comment, - ACTIONS(988), 17, + ACTIONS(2449), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237544,7 +236456,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237554,9 +236465,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(990), 45, + ACTIONS(2451), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237570,8 +236480,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237600,12 +236512,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3289] = 4, + [3098] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1748), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(5034), 1, + anon_sym_DOT_DOT2, + STATE(1732), 1, sym_comment, - ACTIONS(984), 17, + ACTIONS(5036), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 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(1813), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [3179] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1733), 1, + sym_comment, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237613,7 +236598,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237623,9 +236607,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(986), 45, + ACTIONS(2455), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237639,8 +236622,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237669,12 +236654,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3362] = 4, + [3252] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1749), 1, + STATE(1734), 1, sym_comment, - ACTIONS(980), 17, + ACTIONS(5040), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237682,7 +236667,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -237692,9 +236676,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(982), 45, + ACTIONS(5038), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237708,8 +236691,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237738,12 +236723,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3435] = 4, + [3325] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1750), 1, + ACTIONS(4534), 1, + aux_sym_unquoted_token2, + STATE(1735), 1, sym_comment, - ACTIONS(1681), 16, + ACTIONS(1663), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237760,8 +236747,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1693), 46, + ACTIONS(1675), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -237775,10 +236763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -237807,12 +236793,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3508] = 4, + [3400] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1751), 1, + STATE(1736), 1, sym_comment, - ACTIONS(1004), 16, + ACTIONS(2461), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237829,7 +236815,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1000), 46, + ACTIONS(2463), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237876,12 +236862,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3581] = 4, + [3473] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1752), 1, + STATE(1737), 1, sym_comment, - ACTIONS(2407), 16, + ACTIONS(2322), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237898,7 +236884,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2409), 46, + ACTIONS(2324), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -237945,12 +236931,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, - [3654] = 4, + [3546] = 21, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(1753), 1, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5001), 1, + anon_sym_LBRACK, + ACTIONS(5003), 1, + anon_sym_STAR2, + STATE(1738), 1, + sym_comment, + STATE(3553), 1, + sym__val_number_decimal, + STATE(6248), 1, + sym_cmd_identifier, + STATE(6250), 1, + sym_val_string, + STATE(6616), 1, + sym_wild_card, + STATE(6632), 1, + sym_command_list, + STATE(6941), 1, + sym_scope_pattern, + STATE(7185), 1, + sym__command_name, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1780), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4967), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4997), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4999), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [3653] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1739), 1, sym_comment, - ACTIONS(2415), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -237967,7 +237039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2417), 46, + ACTIONS(2455), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238014,12 +237086,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3727] = 4, + [3726] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1754), 1, + STATE(1740), 1, sym_comment, - ACTIONS(1933), 16, + ACTIONS(2425), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238036,7 +237108,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1935), 46, + ACTIONS(2427), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238083,12 +237155,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3800] = 4, + [3799] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1755), 1, + STATE(1741), 1, sym_comment, - ACTIONS(2337), 16, + ACTIONS(2433), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238105,7 +237177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2339), 46, + ACTIONS(2435), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238152,12 +237224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3873] = 4, + [3872] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1756), 1, + STATE(1742), 1, sym_comment, - ACTIONS(2427), 16, + ACTIONS(2437), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238174,7 +237246,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2429), 46, + ACTIONS(2439), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238221,12 +237293,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [3946] = 4, + [3945] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1757), 1, + STATE(1743), 1, sym_comment, - ACTIONS(2349), 16, + ACTIONS(5044), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238243,7 +237315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2351), 46, + ACTIONS(5042), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238290,12 +237362,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4019] = 4, + [4018] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1758), 1, + STATE(1744), 1, sym_comment, - ACTIONS(2439), 16, + ACTIONS(5048), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238312,7 +237384,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2441), 46, + ACTIONS(5046), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238359,12 +237431,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4092] = 4, + [4091] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1759), 1, + STATE(1745), 1, sym_comment, - ACTIONS(2443), 16, + ACTIONS(1871), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238381,7 +237453,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2445), 46, + ACTIONS(1873), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238428,12 +237500,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4165] = 4, + [4164] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1760), 1, + STATE(1746), 1, sym_comment, - ACTIONS(1957), 16, + ACTIONS(2403), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238450,7 +237522,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1959), 46, + ACTIONS(2405), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238497,19 +237569,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4238] = 4, + [4237] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1761), 1, + STATE(1747), 1, sym_comment, - ACTIONS(2447), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(972), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238518,9 +237590,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2449), 46, - sym_raw_string_begin, + ACTIONS(974), 47, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238532,32 +237603,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238566,12 +237638,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4311] = 4, + [4310] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1762), 1, + STATE(1748), 1, sym_comment, - ACTIONS(2451), 16, + ACTIONS(2312), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238588,7 +237660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2453), 46, + ACTIONS(2314), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238635,30 +237707,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4384] = 4, - ACTIONS(251), 1, + [4383] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1763), 1, + STATE(1749), 1, sym_comment, - ACTIONS(1973), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1975), 46, + ACTIONS(2218), 21, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -238672,84 +237728,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, anon_sym_DOLLAR_SQUOTE, anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4457] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1764), 1, - sym_comment, - ACTIONS(1981), 16, + ACTIONS(2216), 41, anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1983), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -238759,36 +237754,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [4530] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5071), 1, - anon_sym_LBRACK2, - STATE(1765), 1, - sym_comment, - ACTIONS(2318), 17, - anon_sym_LBRACK, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -238797,44 +237766,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2322), 44, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -238843,12 +237774,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4605] = 4, + aux_sym_unquoted_token1, + aux_sym_unquoted_token4, + [4456] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1766), 1, + STATE(1750), 1, sym_comment, - ACTIONS(2505), 16, + ACTIONS(2445), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238865,7 +237798,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2507), 46, + ACTIONS(2447), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238912,12 +237845,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4678] = 4, + [4529] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1767), 1, + STATE(1751), 1, sym_comment, - ACTIONS(1997), 16, + ACTIONS(976), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -238934,7 +237867,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1999), 46, + ACTIONS(978), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -238981,12 +237914,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4751] = 4, + [4602] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1768), 1, + ACTIONS(4656), 1, + aux_sym_unquoted_token2, + STATE(1752), 1, sym_comment, - ACTIONS(2459), 16, + ACTIONS(1663), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239003,8 +237938,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2461), 46, + ACTIONS(1675), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239018,10 +237954,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239050,12 +237984,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4824] = 4, + [4677] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1769), 1, + STATE(1753), 1, sym_comment, - ACTIONS(2463), 16, + ACTIONS(2072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239072,7 +238006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2465), 46, + ACTIONS(2078), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239119,12 +238053,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4897] = 4, + [4750] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1770), 1, + STATE(1754), 1, sym_comment, - ACTIONS(2001), 16, + ACTIONS(2457), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239141,7 +238075,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2003), 46, + ACTIONS(2459), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239188,12 +238122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [4970] = 4, + [4823] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1771), 1, + STATE(1755), 1, sym_comment, - ACTIONS(2009), 16, + ACTIONS(2411), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239210,7 +238144,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2011), 46, + ACTIONS(2413), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239257,12 +238191,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5043] = 4, + [4896] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1772), 1, + STATE(1756), 1, sym_comment, - ACTIONS(2467), 16, + ACTIONS(2465), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239279,7 +238213,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2469), 46, + ACTIONS(2467), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239326,12 +238260,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5116] = 4, + [4969] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1773), 1, + STATE(1757), 1, sym_comment, - ACTIONS(2471), 16, + ACTIONS(2334), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239348,7 +238282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2473), 46, + ACTIONS(2336), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239395,12 +238329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5189] = 4, + [5042] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1774), 1, + STATE(1758), 1, sym_comment, - ACTIONS(2089), 16, + ACTIONS(2300), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239417,7 +238351,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2091), 46, + ACTIONS(2302), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239464,81 +238398,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5262] = 4, + [5115] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1775), 1, + STATE(1759), 1, sym_comment, - ACTIONS(2475), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2477), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, + ACTIONS(4973), 17, anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5335] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1776), 1, - sym_comment, - ACTIONS(2479), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239555,8 +238421,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2481), 46, + ACTIONS(4971), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -239569,11 +238436,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -239602,12 +238467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5408] = 4, + [5188] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1777), 1, + STATE(1760), 1, sym_comment, - ACTIONS(1937), 16, + ACTIONS(2304), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239624,7 +238489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1939), 46, + ACTIONS(2306), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239671,12 +238536,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5481] = 4, + [5261] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1778), 1, + STATE(1761), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(2308), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239693,7 +238558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 46, + ACTIONS(2310), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239740,12 +238605,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5554] = 4, + [5334] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1779), 1, + STATE(1762), 1, sym_comment, - ACTIONS(2411), 16, + ACTIONS(2330), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239762,7 +238627,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2413), 46, + ACTIONS(2332), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239809,12 +238674,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5627] = 4, + [5407] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1780), 1, + STATE(1763), 1, sym_comment, - ACTIONS(2411), 16, + ACTIONS(1749), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239831,7 +238696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2413), 46, + ACTIONS(1751), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239878,12 +238743,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5700] = 4, + [5480] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1781), 1, + STATE(1764), 1, sym_comment, - ACTIONS(2419), 16, + ACTIONS(5052), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239900,7 +238765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2421), 46, + ACTIONS(5050), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -239947,12 +238812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5773] = 4, + [5553] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1782), 1, + STATE(1765), 1, sym_comment, - ACTIONS(2423), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -239969,7 +238834,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2425), 46, + ACTIONS(2340), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240016,12 +238881,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5846] = 4, + [5626] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1783), 1, + STATE(1766), 1, sym_comment, - ACTIONS(4998), 16, + ACTIONS(5056), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240038,7 +238903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4996), 46, + ACTIONS(5054), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240085,19 +238950,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [5919] = 4, + [5699] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1784), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(5058), 1, + anon_sym_DOT_DOT2, + STATE(1767), 1, sym_comment, - ACTIONS(2431), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5060), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 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, @@ -240106,9 +238978,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2433), 46, - sym_raw_string_begin, + ACTIONS(1801), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240120,101 +238990,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_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [5992] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1785), 1, - sym_comment, - ACTIONS(2435), 16, - anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2437), 46, - sym_raw_string_begin, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_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, @@ -240223,12 +239023,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6065] = 4, + [5780] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1786), 1, + STATE(1768), 1, sym_comment, - ACTIONS(964), 16, + ACTIONS(2389), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240245,7 +239045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(966), 46, + ACTIONS(2391), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240292,12 +239092,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6138] = 4, + [5853] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1787), 1, + STATE(1769), 1, sym_comment, - ACTIONS(968), 16, + ACTIONS(1968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240314,7 +239114,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(970), 46, + ACTIONS(1970), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240361,12 +239161,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6211] = 4, + [5926] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1788), 1, + STATE(1770), 1, sym_comment, - ACTIONS(972), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240383,7 +239183,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(974), 46, + ACTIONS(2431), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240430,12 +239230,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6284] = 4, + [5999] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1789), 1, + STATE(1771), 1, sym_comment, - ACTIONS(2116), 16, + ACTIONS(5064), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240452,7 +239252,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2118), 46, + ACTIONS(5062), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240499,12 +239299,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6357] = 4, + [6072] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1790), 1, + STATE(1772), 1, sym_comment, - ACTIONS(976), 16, + ACTIONS(5068), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240521,7 +239321,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(978), 46, + ACTIONS(5066), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240568,12 +239368,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6430] = 4, + [6145] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1791), 1, + STATE(1773), 1, sym_comment, - ACTIONS(2120), 16, + ACTIONS(2342), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240590,7 +239390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2122), 46, + ACTIONS(2344), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240637,12 +239437,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6503] = 4, + [6218] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1792), 1, + STATE(1774), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(5072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240659,7 +239459,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1020), 46, + ACTIONS(5070), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -240706,59 +239506,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6576] = 5, - ACTIONS(3), 1, + [6291] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(1793), 1, + STATE(1775), 1, sym_comment, - ACTIONS(1000), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(1004), 40, + ACTIONS(2346), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240767,25 +239527,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [6651] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(1794), 1, - sym_comment, - ACTIONS(2233), 21, + ACTIONS(2348), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240799,23 +239543,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2229), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -240825,18 +239561,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -240845,15 +239575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [6726] = 5, + [6364] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4937), 1, - aux_sym__immediate_decimal_token2, - STATE(1795), 1, + STATE(1776), 1, sym_comment, - ACTIONS(1725), 16, + ACTIONS(1835), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -240870,9 +239597,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1727), 45, + ACTIONS(1837), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -240886,8 +239612,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -240916,59 +239644,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [6801] = 5, - ACTIONS(3), 1, + [6437] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1796), 1, + STATE(1777), 1, sym_comment, - ACTIONS(2241), 21, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2237), 40, + ACTIONS(1843), 16, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -240977,25 +239665,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [6876] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(1797), 1, - sym_comment, - ACTIONS(2247), 21, + ACTIONS(1845), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241009,23 +239681,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2245), 40, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -241035,18 +239699,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241055,15 +239713,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [6951] = 5, + [6510] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5073), 1, - aux_sym__immediate_decimal_token2, - STATE(1798), 1, + STATE(1778), 1, sym_comment, - ACTIONS(1765), 16, + ACTIONS(4770), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241080,9 +239735,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1767), 45, + ACTIONS(4768), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241096,8 +239750,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241126,14 +239782,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, - [7026] = 4, - ACTIONS(3), 1, + [6583] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(1799), 1, + STATE(1779), 1, sym_comment, - ACTIONS(2267), 21, + ACTIONS(1847), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1849), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241147,23 +239819,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(2265), 41, - anon_sym_DOLLAR, + anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_DOT_DOT, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -241173,18 +239837,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -241193,22 +239851,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - aux_sym_unquoted_token4, - [7099] = 5, + [6656] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4957), 1, - aux_sym__immediate_decimal_token2, - STATE(1800), 1, + STATE(1780), 1, sym_comment, - ACTIONS(1725), 15, + ACTIONS(964), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -241217,8 +239872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 46, + ACTIONS(966), 47, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -241233,6 +239887,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -241245,7 +239901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -241265,182 +239920,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7174] = 21, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [6729] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5017), 1, - anon_sym_LBRACK, - ACTIONS(5019), 1, - anon_sym_STAR2, - STATE(1801), 1, + ACTIONS(5074), 1, + anon_sym_LBRACK2, + STATE(1781), 1, sym_comment, - STATE(3557), 1, - sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, - sym_val_string, - STATE(7027), 1, - sym_scope_pattern, - STATE(7185), 1, - sym__command_name, - STATE(7189), 1, - sym_wild_card, - STATE(7190), 1, - sym_command_list, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(2280), 17, + anon_sym_LBRACK, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1720), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5000), 3, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2284), 44, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - ACTIONS(5013), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [7281] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_DOLLAR, - ACTIONS(1859), 1, - sym_raw_string_begin, - ACTIONS(4212), 1, - anon_sym_DQUOTE, - ACTIONS(4216), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4218), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(4971), 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_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5025), 1, - anon_sym_LPAREN, - STATE(1802), 1, - sym_comment, - STATE(3644), 1, - sym__val_number_decimal, - STATE(4525), 1, - sym__inter_single_quotes, - STATE(4526), 1, - sym__inter_double_quotes, - ACTIONS(4214), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3922), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4357), 5, - sym_cmd_identifier, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(363), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(365), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [7384] = 4, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [6804] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1803), 1, + STATE(1782), 1, sym_comment, - ACTIONS(5077), 16, + ACTIONS(2350), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241457,7 +240012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5075), 46, + ACTIONS(2352), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241504,12 +240059,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7457] = 4, + [6877] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1804), 1, + STATE(1783), 1, sym_comment, - ACTIONS(5081), 16, + ACTIONS(1859), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241526,7 +240081,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5079), 46, + ACTIONS(1861), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241573,14 +240128,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7530] = 5, + [6950] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4543), 1, - aux_sym_unquoted_token2, - STATE(1805), 1, + STATE(1784), 1, sym_comment, - ACTIONS(1681), 16, + ACTIONS(4874), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241597,9 +240150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1693), 45, + ACTIONS(4872), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -241613,8 +240165,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -241643,12 +240197,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7605] = 4, + [7023] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1806), 1, + STATE(1785), 1, sym_comment, - ACTIONS(1725), 16, + ACTIONS(2358), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241665,7 +240219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1727), 46, + ACTIONS(2360), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241712,12 +240266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7678] = 4, + [7096] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1807), 1, + STATE(1786), 1, sym_comment, - ACTIONS(1757), 16, + ACTIONS(2362), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241734,7 +240288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1759), 46, + ACTIONS(2364), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241781,12 +240335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7751] = 4, + [7169] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1808), 1, + STATE(1787), 1, sym_comment, - ACTIONS(1765), 16, + ACTIONS(1863), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241803,7 +240357,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1767), 46, + ACTIONS(1865), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241850,12 +240404,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7824] = 4, + [7242] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1809), 1, + STATE(1788), 1, sym_comment, - ACTIONS(1861), 16, + ACTIONS(1875), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -241872,7 +240426,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1863), 46, + ACTIONS(1877), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -241919,83 +240473,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [7897] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1810), 1, - sym_comment, - ACTIONS(976), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(978), 47, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [7970] = 5, + [7315] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5083), 1, - anon_sym_EQ2, - STATE(1811), 1, + STATE(1789), 1, sym_comment, - ACTIONS(4945), 16, + ACTIONS(2373), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242012,9 +240495,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4943), 45, + ACTIONS(2375), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242028,8 +240510,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -242058,12 +240542,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8045] = 4, + [7388] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1812), 1, + STATE(1790), 1, sym_comment, - ACTIONS(4760), 16, + ACTIONS(2377), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242080,7 +240564,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4758), 46, + ACTIONS(2379), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242127,12 +240611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8118] = 4, + [7461] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1813), 1, + STATE(1791), 1, sym_comment, - ACTIONS(4901), 16, + ACTIONS(1879), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242149,7 +240633,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4899), 46, + ACTIONS(1881), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242196,12 +240680,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8191] = 4, + [7534] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1814), 1, + STATE(1792), 1, sym_comment, - ACTIONS(5088), 16, + ACTIONS(968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242218,7 +240702,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5085), 46, + ACTIONS(970), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242265,14 +240749,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8264] = 5, + [7607] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4640), 1, - aux_sym_unquoted_token2, - STATE(1815), 1, + STATE(1793), 1, sym_comment, - ACTIONS(1681), 16, + ACTIONS(2381), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242289,9 +240771,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1693), 45, + ACTIONS(2383), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242305,8 +240786,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -242335,28 +240818,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, - [8339] = 4, - ACTIONS(251), 1, + [7680] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1816), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(1794), 1, sym_comment, - ACTIONS(968), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(970), 47, + ACTIONS(2230), 21, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242369,126 +240839,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_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8412] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5091), 1, - anon_sym_QMARK2, - STATE(1817), 1, - sym_comment, - ACTIONS(958), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(960), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(2226), 40, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8487] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5093), 1, - anon_sym_QMARK2, - STATE(1818), 1, - sym_comment, - ACTIONS(952), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242497,45 +240879,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(954), 46, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242544,12 +240887,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8562] = 4, + aux_sym_unquoted_token1, + [7755] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1819), 1, + STATE(1795), 1, sym_comment, - ACTIONS(1985), 16, + ACTIONS(2385), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242566,7 +240910,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1987), 46, + ACTIONS(2387), 46, sym_raw_string_begin, sym__newline, anon_sym_SEMI, @@ -242613,82 +240957,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8635] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5095), 1, - anon_sym_DOT_DOT2, - STATE(1820), 1, - sym_comment, - ACTIONS(5097), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 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(2166), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8711] = 4, + [7828] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1821), 1, + STATE(1796), 1, sym_comment, - ACTIONS(2479), 16, + ACTIONS(5078), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242705,9 +240979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2481), 45, + ACTIONS(5076), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242721,8 +240994,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -242751,26 +241026,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8783] = 8, + [7901] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(5099), 1, - anon_sym_DOT_DOT2, - STATE(1822), 1, + ACTIONS(5080), 1, + anon_sym_QMARK2, + STATE(1797), 1, sym_comment, - ACTIONS(5101), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(958), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -242779,7 +241049,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 43, + ACTIONS(960), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -242794,6 +241064,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -242815,6 +241086,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -242823,148 +241096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [8863] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1823), 1, - sym_comment, - ACTIONS(968), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(970), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [8935] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1824), 1, - sym_comment, - ACTIONS(972), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(974), 45, - sym_raw_string_begin, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [9007] = 4, + [7976] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1825), 1, + STATE(1798), 1, sym_comment, - ACTIONS(1933), 16, + ACTIONS(1731), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -242981,9 +241118,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1935), 45, + ACTIONS(1733), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -242997,8 +241133,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243027,115 +241165,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9079] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [8049] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3197), 1, - sym__newline, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - STATE(1638), 1, - sym__val_number, - STATE(1826), 1, - sym_comment, - STATE(1894), 1, - sym_val_variable, - STATE(1927), 1, - aux_sym_shebang_repeat1, - STATE(1953), 1, - sym_expr_parenthesized, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3702), 1, - sym__expr_binary_expression_parenthesized, - STATE(6585), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2369), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [9221] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1827), 1, + STATE(1799), 1, sym_comment, - ACTIONS(2337), 16, + ACTIONS(4977), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243152,9 +241187,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2339), 45, + ACTIONS(4975), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243168,8 +241202,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243198,12 +241234,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9293] = 4, + [8122] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1828), 1, + ACTIONS(4912), 1, + aux_sym__immediate_decimal_token2, + STATE(1800), 1, sym_comment, - ACTIONS(976), 16, + ACTIONS(1749), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243220,7 +241258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(978), 45, + ACTIONS(1751), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243266,12 +241304,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9365] = 4, + [8197] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1829), 1, + STATE(1801), 1, sym_comment, - ACTIONS(1937), 16, + ACTIONS(1772), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243288,9 +241326,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1939), 45, + ACTIONS(1774), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243304,8 +241341,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243334,12 +241373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9437] = 4, + [8270] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1830), 1, + STATE(1802), 1, sym_comment, - ACTIONS(2170), 16, + ACTIONS(2481), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243356,9 +241395,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2176), 45, + ACTIONS(2483), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243372,8 +241410,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243402,12 +241442,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9509] = 4, + [8343] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1831), 1, + STATE(1803), 1, sym_comment, - ACTIONS(2427), 16, + ACTIONS(1817), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243424,9 +241464,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2429), 45, + ACTIONS(1819), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243440,8 +241479,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243470,12 +241511,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9581] = 4, + [8416] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1832), 1, + STATE(1804), 1, sym_comment, - ACTIONS(5088), 16, + ACTIONS(2059), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243492,9 +241533,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5085), 45, + ACTIONS(2065), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243508,8 +241548,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243538,12 +241580,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9653] = 4, + [8489] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1833), 1, + STATE(1805), 1, sym_comment, - ACTIONS(2341), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243560,9 +241602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2343), 45, + ACTIONS(2487), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243576,8 +241617,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243606,12 +241649,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9725] = 4, + [8562] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1834), 1, + STATE(1806), 1, sym_comment, - ACTIONS(2403), 16, + ACTIONS(2080), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243628,9 +241671,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2405), 45, + ACTIONS(2086), 46, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243644,8 +241686,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -243674,12 +241718,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9797] = 4, + [8635] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1835), 1, + STATE(1807), 1, sym_comment, - ACTIONS(2144), 16, + ACTIONS(5048), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243696,7 +241740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2150), 45, + ACTIONS(5046), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243742,12 +241786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9869] = 4, + [8707] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1836), 1, + STATE(1808), 1, sym_comment, - ACTIONS(2152), 16, + ACTIONS(2338), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243764,7 +241808,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2158), 45, + ACTIONS(2340), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -243810,19 +241854,125 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [9941] = 4, + [8779] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1837), 1, - sym_comment, - ACTIONS(2160), 16, - anon_sym_DOLLAR, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, anon_sym_DASH2, - anon_sym_DOT_DOT, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3184), 1, + sym__newline, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - anon_sym_0b, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + STATE(1662), 1, + sym__val_number, + STATE(1809), 1, + sym_comment, + STATE(1810), 1, + sym_val_variable, + STATE(1833), 1, + aux_sym_shebang_repeat1, + STATE(1999), 1, + sym_expr_parenthesized, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3689), 1, + sym__expr_binary_expression_parenthesized, + STATE(6600), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, anon_sym_0o, anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2307), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [8921] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(1810), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243831,10 +241981,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2166), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(1000), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -243846,30 +241993,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243878,26 +242027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10013] = 8, + [8997] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(5103), 1, - anon_sym_DOT_DOT2, - STATE(1838), 1, + STATE(1811), 1, sym_comment, - ACTIONS(5105), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 13, + ACTIONS(984), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -243906,7 +242048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 43, + ACTIONS(986), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -243921,6 +242063,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -243942,6 +242085,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -243950,12 +242095,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10093] = 4, + [9069] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1839), 1, + STATE(1812), 1, sym_comment, - ACTIONS(2345), 16, + ACTIONS(5040), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -243972,7 +242117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2347), 45, + ACTIONS(5038), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244018,12 +242163,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10165] = 4, + [9141] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1840), 1, + STATE(1813), 1, sym_comment, - ACTIONS(2349), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244040,7 +242185,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2351), 45, + ACTIONS(2455), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244086,12 +242231,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10237] = 4, + [9213] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1841), 1, + STATE(1814), 1, sym_comment, - ACTIONS(2353), 16, + ACTIONS(964), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244108,7 +242253,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2355), 45, + ACTIONS(966), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244154,12 +242299,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10309] = 4, + [9285] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1842), 1, + STATE(1815), 1, + sym_comment, + ACTIONS(2445), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2447), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9357] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1816), 1, sym_comment, - ACTIONS(2357), 16, + ACTIONS(5022), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244176,7 +242389,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2359), 45, + ACTIONS(5020), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244222,16 +242435,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10381] = 6, + [9429] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1843), 1, + STATE(1817), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4848), 13, + ACTIONS(4977), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244245,7 +242454,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4846), 46, + ACTIONS(4975), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244260,6 +242469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -244275,6 +242485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -244292,21 +242503,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10457] = 6, + [9501] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1844), 1, + STATE(1818), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4852), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2457), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244315,7 +242524,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4850), 46, + aux_sym_unquoted_token1, + ACTIONS(2459), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244327,33 +242539,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244362,12 +242571,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10533] = 4, + [9573] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1845), 1, + STATE(1819), 1, sym_comment, - ACTIONS(2361), 16, + ACTIONS(2453), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244384,7 +242593,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2363), 45, + ACTIONS(2455), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244430,16 +242639,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10605] = 6, + [9645] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, anon_sym_LPAREN2, - STATE(1846), 1, + ACTIONS(5082), 1, + anon_sym_DOT_DOT2, + STATE(1820), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 13, + ACTIONS(5084), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -244453,7 +242667,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(4858), 46, + ACTIONS(1813), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244465,12 +242680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -244500,21 +242711,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10681] = 6, + [9725] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1847), 1, + STATE(1821), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4864), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5032), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244523,7 +242732,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4862), 46, + aux_sym_unquoted_token1, + ACTIONS(5030), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -244535,33 +242747,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244570,12 +242779,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10757] = 4, + [9797] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1848), 1, + STATE(1822), 1, sym_comment, - ACTIONS(2365), 16, + ACTIONS(1875), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244592,7 +242801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2367), 45, + ACTIONS(1877), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244638,12 +242847,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10829] = 4, + [9869] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1849), 1, + STATE(1823), 1, sym_comment, - ACTIONS(4941), 16, + ACTIONS(1731), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token2, + ACTIONS(1733), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [9941] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1824), 1, + sym_comment, + ACTIONS(1817), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244660,7 +242937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4939), 45, + ACTIONS(1819), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244706,12 +242983,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10901] = 4, + [10013] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1850), 1, + STATE(1825), 1, sym_comment, - ACTIONS(4998), 16, + ACTIONS(2429), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244728,7 +243005,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4996), 45, + ACTIONS(2431), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244774,18 +243051,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [10973] = 4, + [10085] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1851), 1, + STATE(1826), 1, sym_comment, - ACTIONS(1765), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(2465), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -244794,8 +243072,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1767), 46, + aux_sym_unquoted_token1, + ACTIONS(2467), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -244808,32 +243087,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -244842,12 +243119,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11045] = 4, + [10157] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1852), 1, + STATE(1827), 1, sym_comment, - ACTIONS(2439), 16, + ACTIONS(5072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244864,7 +243141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2441), 45, + ACTIONS(5070), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244910,12 +243187,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11117] = 4, + [10229] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1853), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1828), 1, sym_comment, - ACTIONS(2116), 16, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5086), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [10305] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1829), 1, + sym_comment, + ACTIONS(2381), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -244932,7 +243279,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2118), 45, + ACTIONS(2383), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -244978,12 +243325,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11189] = 4, + [10377] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1854), 1, + STATE(1830), 1, sym_comment, - ACTIONS(2443), 16, + ACTIONS(1004), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245000,7 +243347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2445), 45, + ACTIONS(1000), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245046,12 +243393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11261] = 4, + [10449] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1855), 1, + STATE(1831), 1, sym_comment, - ACTIONS(2369), 16, + ACTIONS(2300), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245068,7 +243415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2371), 45, + ACTIONS(2302), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245114,12 +243461,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11333] = 4, + [10521] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1856), 1, + STATE(1832), 1, sym_comment, - ACTIONS(2373), 16, + ACTIONS(2304), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245136,7 +243483,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2375), 45, + ACTIONS(2306), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245182,12 +243529,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11405] = 4, + [10593] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1857), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3184), 1, + sym__newline, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1833), 1, sym_comment, - ACTIONS(2120), 16, + STATE(1999), 1, + sym_expr_parenthesized, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2860), 1, + aux_sym_shebang_repeat1, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3689), 1, + sym__expr_binary_expression_parenthesized, + STATE(6518), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2307), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [10735] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1834), 1, + sym_comment, + ACTIONS(2312), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245204,7 +243654,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2122), 45, + ACTIONS(2314), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245250,12 +243700,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11477] = 4, + [10807] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1858), 1, + STATE(1835), 1, sym_comment, - ACTIONS(2377), 16, + ACTIONS(2308), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245272,7 +243722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2379), 45, + ACTIONS(2310), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245318,12 +243768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11549] = 4, + [10879] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1859), 1, + STATE(1836), 1, sym_comment, - ACTIONS(2381), 16, + ACTIONS(2441), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245340,7 +243790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2383), 45, + ACTIONS(2443), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245386,12 +243836,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11621] = 4, + [10951] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1860), 1, + STATE(1837), 1, sym_comment, - ACTIONS(2385), 16, + ACTIONS(968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245408,7 +243858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2387), 45, + ACTIONS(970), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245454,19 +243904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11693] = 4, + [11023] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1861), 1, + STATE(1838), 1, sym_comment, - ACTIONS(988), 15, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, + ACTIONS(2377), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245475,7 +243925,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(990), 46, + aux_sym_unquoted_token1, + ACTIONS(2379), 45, + sym_raw_string_begin, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -245488,32 +243940,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245522,12 +243972,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11765] = 4, + [11095] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1862), 1, + STATE(1839), 1, sym_comment, - ACTIONS(1018), 16, + ACTIONS(2330), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245544,7 +243994,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1020), 45, + ACTIONS(2332), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245590,10 +244040,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11837] = 4, + [11167] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1863), 1, + STATE(1840), 1, sym_comment, ACTIONS(2389), 16, anon_sym_DOLLAR, @@ -245658,12 +244108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11909] = 4, + [11239] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1864), 1, + STATE(1841), 1, sym_comment, - ACTIONS(2393), 16, + ACTIONS(1968), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245680,7 +244130,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2395), 45, + ACTIONS(1970), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245726,12 +244176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [11981] = 4, + [11311] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1865), 1, + STATE(1842), 1, sym_comment, - ACTIONS(5077), 16, + ACTIONS(2342), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245748,7 +244198,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5075), 45, + ACTIONS(2344), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245794,19 +244244,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, - [12053] = 4, + [11383] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1866), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(1843), 1, sym_comment, - ACTIONS(2397), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5092), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5096), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245815,10 +244269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2399), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5090), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245830,30 +244281,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -245862,12 +244292,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, - [12125] = 4, + ACTIONS(5094), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [11463] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1867), 1, + STATE(1844), 1, sym_comment, - ACTIONS(5081), 16, + ACTIONS(972), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -245884,7 +244338,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5079), 45, + ACTIONS(974), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -245930,18 +244384,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12197] = 4, + [11535] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1868), 1, + ACTIONS(5098), 1, + anon_sym_DOT, + ACTIONS(5100), 1, + aux_sym__immediate_decimal_token2, + STATE(1845), 1, sym_comment, - ACTIONS(1861), 15, + ACTIONS(1749), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -245951,8 +244408,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token2, - ACTIONS(1863), 46, - ts_builtin_sym_end, + ACTIONS(1751), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -245964,8 +244420,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -245988,6 +244446,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [11611] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1846), 1, + sym_comment, + ACTIONS(988), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(990), 46, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, @@ -245998,12 +244522,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12269] = 4, + [11683] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1869), 1, + STATE(1847), 1, sym_comment, - ACTIONS(1957), 16, + ACTIONS(1749), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246020,7 +244544,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1959), 45, + ACTIONS(1751), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246066,12 +244590,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12341] = 4, + [11755] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1870), 1, + STATE(1848), 1, sym_comment, - ACTIONS(4830), 16, + ACTIONS(5052), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246088,8 +244612,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2770), 45, + ACTIONS(5050), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246103,7 +244628,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -246134,12 +244658,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12413] = 4, + [11827] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1871), 1, + STATE(1849), 1, sym_comment, - ACTIONS(4953), 16, + ACTIONS(2047), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246156,8 +244680,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4951), 45, + ACTIONS(2053), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246171,7 +244696,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -246202,16 +244726,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12485] = 6, + [11899] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5107), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5109), 1, - aux_sym__immediate_decimal_token2, - STATE(1872), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1850), 1, sym_comment, - ACTIONS(1757), 14, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4900), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -246225,8 +244749,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1759), 45, + ACTIONS(4898), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246241,7 +244764,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -246254,7 +244779,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -246272,12 +244796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12561] = 4, + [11975] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1873), 1, + STATE(1851), 1, sym_comment, - ACTIONS(2447), 16, + ACTIONS(2346), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246294,7 +244818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2449), 45, + ACTIONS(2348), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246340,12 +244864,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12633] = 4, + [12047] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1874), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1852), 1, + sym_comment, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5086), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12123] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1853), 1, + sym_comment, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5086), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12199] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1854), 1, + sym_comment, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4813), 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(4811), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [12275] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1855), 1, sym_comment, - ACTIONS(2451), 16, + ACTIONS(1835), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246362,7 +245096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2453), 45, + ACTIONS(1837), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246408,82 +245142,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12705] = 6, + [12347] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5111), 1, - anon_sym_DOT, - ACTIONS(5113), 1, - aux_sym__immediate_decimal_token2, - STATE(1875), 1, - sym_comment, - ACTIONS(1725), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [12781] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1876), 1, + STATE(1856), 1, sym_comment, - ACTIONS(1725), 16, + ACTIONS(2080), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246500,7 +245164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1727), 45, + ACTIONS(2086), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246546,19 +245210,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12853] = 4, + [12419] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1877), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1857), 1, sym_comment, - ACTIONS(1973), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 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, @@ -246567,10 +245233,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1975), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246582,30 +245245,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246614,12 +245280,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12925] = 4, + [12495] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1878), 1, + STATE(1858), 1, sym_comment, - ACTIONS(1981), 16, + ACTIONS(976), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246636,7 +245302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1983), 45, + ACTIONS(978), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246682,19 +245348,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [12997] = 4, + [12567] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1879), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1859), 1, sym_comment, - ACTIONS(1985), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 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, @@ -246703,10 +245371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1987), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246718,30 +245383,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -246750,12 +245418,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13069] = 4, + [12643] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1880), 1, + STATE(1860), 1, sym_comment, - ACTIONS(1757), 16, + ACTIONS(5056), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246772,7 +245440,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1759), 45, + ACTIONS(5054), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246818,12 +245486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13141] = 4, + [12715] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1881), 1, + STATE(1861), 1, sym_comment, - ACTIONS(2505), 16, + ACTIONS(2481), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246840,7 +245508,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2507), 45, + ACTIONS(2483), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246886,12 +245554,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13213] = 4, + [12787] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1882), 1, + STATE(1862), 1, sym_comment, - ACTIONS(1765), 16, + ACTIONS(2485), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -246908,7 +245576,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1767), 45, + ACTIONS(2487), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -246954,19 +245622,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13285] = 4, + [12859] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1883), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1863), 1, sym_comment, - ACTIONS(1861), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 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, @@ -246975,10 +245645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1863), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -246990,30 +245657,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247022,12 +245692,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13357] = 4, + [12935] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1884), 1, + STATE(1864), 1, sym_comment, - ACTIONS(4760), 16, + ACTIONS(4961), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247044,9 +245714,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4758), 45, + ACTIONS(4959), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247060,6 +245729,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -247090,12 +245760,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13429] = 4, + [13007] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1885), 1, + STATE(1865), 1, sym_comment, - ACTIONS(1997), 16, + ACTIONS(1843), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247112,7 +245782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1999), 45, + ACTIONS(1845), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247158,12 +245828,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13501] = 4, + [13079] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1886), 1, + STATE(1866), 1, sym_comment, - ACTIONS(4901), 16, + ACTIONS(1847), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247180,7 +245850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4899), 45, + ACTIONS(1849), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247226,18 +245896,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13573] = 4, + [13151] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1887), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1867), 1, sym_comment, - ACTIONS(1725), 15, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247246,9 +245919,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 46, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247260,8 +245931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247274,7 +245949,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -247284,8 +245958,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247294,19 +245966,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13645] = 4, + [13227] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1888), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1868), 1, sym_comment, - ACTIONS(2459), 16, - anon_sym_DOLLAR, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5086), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13303] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1869), 1, + sym_comment, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 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, @@ -247315,10 +246059,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(2461), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247330,30 +246071,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247362,12 +246106,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13717] = 4, + [13379] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1889), 1, + STATE(1870), 1, sym_comment, - ACTIONS(2463), 16, + ACTIONS(2385), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247384,7 +246128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2465), 45, + ACTIONS(2387), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247430,12 +246174,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13789] = 4, + [13451] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1890), 1, + STATE(1871), 1, sym_comment, - ACTIONS(2001), 16, + ACTIONS(2035), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247452,7 +246196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2003), 45, + ACTIONS(2037), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247498,23 +246242,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [13861] = 8, + [13523] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - STATE(1891), 1, + STATE(1872), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 5, + ACTIONS(980), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5121), 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247523,7 +246263,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(5115), 22, + ACTIONS(982), 46, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247535,20 +246276,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_LBRACE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5119), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247570,12 +246300,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [13941] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [13595] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1892), 1, + STATE(1873), 1, sym_comment, - ACTIONS(2415), 16, + ACTIONS(2028), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247592,7 +246332,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2417), 45, + ACTIONS(2030), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247638,12 +246378,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, - [14013] = 4, + [13667] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1893), 1, + ACTIONS(5102), 1, + anon_sym_DOT_DOT2, + STATE(1874), 1, sym_comment, - ACTIONS(4941), 13, + ACTIONS(5104), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2059), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -247657,7 +246402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4939), 48, + ACTIONS(2065), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247672,10 +246417,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -247688,7 +246431,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -247706,22 +246448,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14085] = 6, + [13743] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - STATE(1894), 1, + STATE(1875), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1879), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -247730,7 +246469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 45, + aux_sym_unquoted_token1, + ACTIONS(1881), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -247742,32 +246484,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -247776,12 +246516,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14161] = 4, + [13815] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1895), 1, + STATE(1876), 1, sym_comment, - ACTIONS(2411), 16, + ACTIONS(5064), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247798,7 +246538,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2413), 45, + ACTIONS(5062), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247844,12 +246584,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14233] = 4, + [13887] = 39, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(1896), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3184), 1, + sym__newline, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1877), 1, sym_comment, - ACTIONS(2411), 16, + STATE(1999), 1, + sym_expr_parenthesized, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2860), 1, + aux_sym_shebang_repeat1, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3689), 1, + sym__expr_binary_expression_parenthesized, + STATE(6596), 1, + sym__expression_parenthesized, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2307), 4, + sym_expr_unary, + sym_expr_binary_parenthesized, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [14029] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1878), 1, + sym_comment, + ACTIONS(2072), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247866,7 +246709,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2413), 45, + ACTIONS(2078), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247912,12 +246755,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14305] = 4, + [14101] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1897), 1, + STATE(1879), 1, sym_comment, - ACTIONS(5023), 16, + ACTIONS(2362), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -247934,7 +246777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5021), 45, + ACTIONS(2364), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -247980,19 +246823,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14377] = 4, + [14173] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1898), 1, + ACTIONS(5106), 1, + anon_sym_DOT_DOT2, + STATE(1880), 1, sym_comment, - ACTIONS(984), 15, + ACTIONS(5108), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248001,8 +246847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(986), 46, - ts_builtin_sym_end, + ACTIONS(1801), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248014,9 +246859,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248038,8 +246885,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248048,19 +246893,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, - [14449] = 4, + [14249] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1899), 1, + STATE(1881), 1, sym_comment, - ACTIONS(980), 15, + ACTIONS(1772), 15, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248069,7 +246913,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(982), 46, + aux_sym_unquoted_token2, + ACTIONS(1774), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -248084,7 +246929,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248097,6 +246941,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -248116,22 +246961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14521] = 6, + [14321] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5123), 1, - anon_sym_DOT_DOT2, - STATE(1900), 1, + STATE(1882), 1, sym_comment, - ACTIONS(5125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2039), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -248140,7 +246982,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 45, + aux_sym_unquoted_token1, + ACTIONS(2041), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248152,32 +246997,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -248186,12 +247029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14597] = 4, + [14393] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1901), 1, + STATE(1883), 1, sym_comment, - ACTIONS(2419), 16, + ACTIONS(2322), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248208,7 +247051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2421), 45, + ACTIONS(2324), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248254,12 +247097,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14669] = 4, + [14465] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1902), 1, + STATE(1884), 1, sym_comment, - ACTIONS(2423), 16, + ACTIONS(4874), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248276,7 +247119,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2425), 45, + ACTIONS(4872), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248322,12 +247165,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14741] = 4, + [14537] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1903), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(5110), 1, + anon_sym_DOT_DOT2, + STATE(1885), 1, + sym_comment, + ACTIONS(5112), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 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(1801), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [14617] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1886), 1, sym_comment, - ACTIONS(2009), 16, + ACTIONS(1731), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248344,7 +247259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2011), 45, + ACTIONS(1733), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248390,12 +247305,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14813] = 4, + [14689] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1904), 1, + STATE(1887), 1, sym_comment, - ACTIONS(4834), 16, + ACTIONS(5078), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248412,8 +247327,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4832), 45, + ACTIONS(5076), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248427,7 +247343,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -248458,12 +247373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14885] = 4, + [14761] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1905), 1, + STATE(1888), 1, sym_comment, - ACTIONS(5011), 16, + ACTIONS(4993), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248480,7 +247395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5009), 45, + ACTIONS(4991), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248526,80 +247441,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [14957] = 4, + [14833] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1906), 1, - sym_comment, - ACTIONS(4998), 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(4996), 48, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [15029] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1907), 1, + STATE(1889), 1, sym_comment, - ACTIONS(4994), 16, + ACTIONS(5068), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248616,8 +247463,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(4992), 45, + ACTIONS(5066), 45, sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248631,7 +247479,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -248662,12 +247509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15101] = 4, + [14905] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1908), 1, + STATE(1890), 1, sym_comment, - ACTIONS(2431), 16, + ACTIONS(4770), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248684,7 +247531,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2433), 45, + ACTIONS(4768), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248730,12 +247577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15173] = 4, + [14977] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1909), 1, + STATE(1891), 1, sym_comment, - ACTIONS(2435), 16, + ACTIONS(2373), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -248752,7 +247599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2437), 45, + ACTIONS(2375), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -248798,17 +247645,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15245] = 6, + [15049] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - STATE(1910), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1892), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4817), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248822,7 +247668,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5119), 45, + ACTIONS(4815), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248839,6 +247685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248868,16 +247715,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15321] = 6, + [15125] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1911), 1, + STATE(1893), 1, sym_comment, - STATE(7336), 1, + STATE(7574), 1, sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(4829), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248891,7 +247738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(4827), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248938,16 +247785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15397] = 6, + [15201] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1912), 1, + ACTIONS(5114), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5116), 1, + aux_sym__immediate_decimal_token2, + STATE(1894), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(1731), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -248961,7 +247808,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(5127), 46, + aux_sym_unquoted_token2, + ACTIONS(1733), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -248976,9 +247824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -248991,6 +247837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -249008,21 +247855,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15473] = 6, + [15277] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1913), 1, + STATE(1895), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1871), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249031,7 +247876,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(1873), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249043,33 +247891,166 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15349] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1896), 1, + sym_comment, + ACTIONS(2407), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_in2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2409), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [15421] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1897), 1, + sym_comment, + ACTIONS(2411), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2413), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249078,21 +248059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15549] = 6, + [15493] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1914), 1, + STATE(1898), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2350), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249101,7 +248080,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(2352), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249113,33 +248095,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249148,21 +248127,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15625] = 6, + [15565] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1915), 1, + STATE(1899), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2421), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249171,7 +248148,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(2423), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249183,33 +248163,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249218,21 +248195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15701] = 6, + [15637] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1916), 1, + STATE(1900), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2326), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249241,7 +248216,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(2328), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249253,33 +248231,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249288,21 +248263,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15777] = 6, + [15709] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1917), 1, + STATE(1901), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2403), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249311,7 +248284,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(2405), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249323,33 +248299,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249358,21 +248331,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15853] = 6, + [15781] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1918), 1, + STATE(1902), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1863), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249381,7 +248352,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(1865), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249393,33 +248367,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249428,16 +248399,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [15929] = 6, + [15853] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1919), 1, + STATE(1903), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(1270), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249451,7 +248418,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(1268), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249463,12 +248430,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_else, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_catch, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249498,21 +248467,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16005] = 6, + [15925] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1920), 1, + STATE(1904), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5010), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249521,7 +248488,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(5007), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249533,33 +248503,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249568,16 +248535,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, - [16081] = 6, + [15997] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1921), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(1905), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249591,7 +248559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5094), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249608,7 +248576,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249638,21 +248605,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16157] = 6, + [16073] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1922), 1, + STATE(1906), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(4839), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249661,7 +248626,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(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(4837), 45, + sym_raw_string_begin, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249673,33 +248640,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_DASH2, - anon_sym_in2, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249708,21 +248673,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16233] = 6, + [16145] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1923), 1, + STATE(1907), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1859), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -249731,7 +248694,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + aux_sym_unquoted_token1, + ACTIONS(1861), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249743,33 +248709,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -249778,17 +248741,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16309] = 6, + [16217] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5131), 1, - anon_sym_DOT_DOT2, - STATE(1924), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1908), 1, sym_comment, - ACTIONS(5133), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 13, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -249802,7 +248764,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 45, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -249819,6 +248781,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -249848,12 +248811,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16385] = 4, + [16293] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1925), 1, + STATE(1909), 1, sym_comment, - ACTIONS(5029), 16, + ACTIONS(2358), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249870,7 +248833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5027), 45, + ACTIONS(2360), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249916,12 +248879,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16457] = 4, + [16365] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1926), 1, + STATE(1910), 1, sym_comment, - ACTIONS(5033), 16, + ACTIONS(1772), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -249938,7 +248901,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5031), 45, + ACTIONS(1774), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -249984,115 +248947,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16529] = 39, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3197), 1, - sym__newline, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - STATE(1638), 1, - sym__val_number, - STATE(1894), 1, - sym_val_variable, - STATE(1927), 1, - sym_comment, - STATE(1953), 1, - sym_expr_parenthesized, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(2817), 1, - aux_sym_shebang_repeat1, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3702), 1, - sym__expr_binary_expression_parenthesized, - STATE(6444), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2369), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [16671] = 4, + [16437] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1928), 1, + STATE(1911), 1, sym_comment, - ACTIONS(2467), 16, + ACTIONS(2461), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250109,7 +248969,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2469), 45, + ACTIONS(2463), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250155,19 +249015,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16743] = 4, + [16509] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1929), 1, + ACTIONS(5118), 1, + anon_sym_DOT_DOT2, + STATE(1912), 1, sym_comment, - ACTIONS(5039), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5120), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2047), 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, @@ -250176,10 +249039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5037), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(2053), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250191,30 +249051,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250223,12 +249085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16815] = 4, + [16585] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1930), 1, + STATE(1913), 1, sym_comment, - ACTIONS(5043), 16, + ACTIONS(2059), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250245,7 +249107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5041), 45, + ACTIONS(2065), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250291,12 +249153,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16887] = 4, + [16657] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1931), 1, + ACTIONS(5122), 1, + anon_sym_DOT_DOT2, + STATE(1914), 1, + sym_comment, + ACTIONS(5124), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2080), 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(2086), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [16733] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1915), 1, sym_comment, - ACTIONS(2471), 16, + ACTIONS(2425), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250313,7 +249245,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2473), 45, + ACTIONS(2427), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250359,14 +249291,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [16959] = 5, + [16805] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_LBRACK2, - STATE(1932), 1, + STATE(1916), 1, sym_comment, - ACTIONS(2318), 13, + ACTIONS(4973), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250380,7 +249310,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2322), 47, + ACTIONS(4971), 48, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250411,6 +249341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -250428,17 +249359,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, - [17033] = 6, + [16877] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5137), 1, + ACTIONS(5126), 1, anon_sym_DOT_DOT2, - STATE(1933), 1, + STATE(1917), 1, sym_comment, - ACTIONS(5139), 2, + ACTIONS(5128), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250452,7 +249383,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2176), 45, + ACTIONS(1813), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250498,22 +249429,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17109] = 6, + [16953] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5141), 1, - anon_sym_DOT_DOT2, - STATE(1934), 1, + STATE(1918), 1, sym_comment, - ACTIONS(5143), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(2433), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -250522,7 +249450,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 45, + aux_sym_unquoted_token1, + ACTIONS(2435), 45, + sym_raw_string_begin, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250534,32 +249465,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -250568,17 +249497,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17185] = 6, + [17025] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5145), 1, - anon_sym_DOT_DOT2, - STATE(1935), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1919), 1, sym_comment, - ACTIONS(5147), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 13, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -250592,7 +249520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2158), 45, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250609,6 +249537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -250638,115 +249567,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17261] = 39, - ACTIONS(155), 1, + [17101] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1920), 1, + sym_comment, + ACTIONS(2437), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2439), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17173] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1921), 1, + sym_comment, + ACTIONS(2334), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2336), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, - ACTIONS(157), 1, anon_sym_LPAREN, - ACTIONS(183), 1, + anon_sym_DASH_DASH, anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3197), 1, - sym__newline, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - STATE(1638), 1, - sym__val_number, - STATE(1894), 1, - sym_val_variable, - STATE(1936), 1, - sym_comment, - STATE(1953), 1, - sym_expr_parenthesized, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(2817), 1, - aux_sym_shebang_repeat1, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3702), 1, - sym__expr_binary_expression_parenthesized, - STATE(6604), 1, - sym__expression_parenthesized, - ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, + anon_sym_null, anon_sym_true, anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2369), 4, - sym_expr_unary, - sym_expr_binary_parenthesized, - sym_val_range, - sym__value, - ACTIONS(227), 6, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [17403] = 4, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17245] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1937), 1, + STATE(1922), 1, sym_comment, - ACTIONS(5053), 16, + ACTIONS(4851), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250763,9 +249725,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5051), 45, + ACTIONS(2756), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250779,6 +249740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -250809,12 +249771,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17475] = 4, + [17317] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1938), 1, + STATE(1923), 1, sym_comment, - ACTIONS(5057), 16, + ACTIONS(1018), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250831,7 +249793,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5055), 45, + ACTIONS(1020), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250877,12 +249839,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17547] = 4, + [17389] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1939), 1, + STATE(1924), 1, sym_comment, - ACTIONS(2089), 16, + ACTIONS(4973), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250899,7 +249861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2091), 45, + ACTIONS(4971), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -250945,12 +249907,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17619] = 4, + [17461] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1940), 1, + STATE(1925), 1, sym_comment, - ACTIONS(2475), 16, + ACTIONS(4908), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -250967,9 +249929,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2477), 45, + ACTIONS(4906), 45, sym_raw_string_begin, - ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -250983,6 +249944,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -251013,12 +249975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17691] = 4, + [17533] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1941), 1, + ACTIONS(5130), 1, + anon_sym_LBRACK2, + STATE(1926), 1, sym_comment, - ACTIONS(1270), 13, + ACTIONS(2280), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251032,7 +249996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1268), 48, + ACTIONS(2284), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251044,14 +250008,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_LBRACK, anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_else, + anon_sym_if, anon_sym_LBRACE, - anon_sym_catch, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251081,19 +250044,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17763] = 4, + [17607] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1942), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1927), 1, sym_comment, - ACTIONS(5065), 16, - anon_sym_DOLLAR, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5086), 46, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17683] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1928), 1, + sym_comment, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 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, @@ -251102,10 +250137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(5063), 45, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251117,30 +250149,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251149,12 +250184,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17835] = 4, + [17759] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1943), 1, + STATE(1929), 1, sym_comment, - ACTIONS(5069), 16, + ACTIONS(1663), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251171,7 +250206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(5067), 45, + ACTIONS(1675), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251217,12 +250252,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [17907] = 4, + [17831] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1944), 1, + STATE(1930), 1, sym_comment, - ACTIONS(1681), 16, + ACTIONS(5044), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251239,7 +250274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(1693), 45, + ACTIONS(5042), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251285,19 +250320,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, - [17979] = 4, + [17903] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1945), 1, + STATE(1931), 1, sym_comment, - ACTIONS(964), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1817), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251306,9 +250340,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(966), 45, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1819), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251321,30 +250354,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [17975] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5132), 1, + anon_sym_DOT_DOT2, + STATE(1932), 1, + sym_comment, + ACTIONS(5134), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(2078), 45, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251356,16 +250461,15 @@ static const uint16_t ts_small_parse_table[] = { [18051] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1946), 1, + STATE(1933), 1, sym_comment, - ACTIONS(1004), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(1749), 15, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251374,9 +250478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1000), 45, - sym_raw_string_begin, + aux_sym_unquoted_token2, + ACTIONS(1751), 46, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251389,30 +250492,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251424,9 +250529,9 @@ static const uint16_t ts_small_parse_table[] = { [18123] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1947), 1, + STATE(1934), 1, sym_comment, - ACTIONS(2407), 16, + ACTIONS(4977), 16, anon_sym_DOLLAR, anon_sym_DASH2, anon_sym_DOT_DOT, @@ -251443,7 +250548,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym_unquoted_token1, - ACTIONS(2409), 45, + ACTIONS(4975), 45, sym_raw_string_begin, ts_builtin_sym_end, sym__newline, @@ -251516,41 +250621,41 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3197), 1, + ACTIONS(3184), 1, sym__newline, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(1948), 1, + STATE(1935), 1, sym_comment, - STATE(1949), 1, + STATE(1936), 1, aux_sym_shebang_repeat1, - STATE(1953), 1, + STATE(1999), 1, sym_expr_parenthesized, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(3124), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, sym__val_number_decimal, - STATE(3702), 1, + STATE(3689), 1, sym__expr_binary_expression_parenthesized, - STATE(6591), 1, + STATE(6584), 1, sym__expression_parenthesized, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -251561,13 +250666,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2369), 4, + STATE(2307), 4, sym_expr_unary, sym_expr_binary_parenthesized, sym_val_range, @@ -251579,7 +250684,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -251619,41 +250724,41 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3197), 1, + ACTIONS(3184), 1, sym__newline, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(1949), 1, + STATE(1936), 1, sym_comment, - STATE(1953), 1, + STATE(1999), 1, sym_expr_parenthesized, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(2817), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2860), 1, aux_sym_shebang_repeat1, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3702), 1, + STATE(3689), 1, sym__expr_binary_expression_parenthesized, - STATE(6593), 1, + STATE(6586), 1, sym__expression_parenthesized, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -251664,13 +250769,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2369), 4, + STATE(2307), 4, sym_expr_unary, sym_expr_binary_parenthesized, sym_val_range, @@ -251682,7 +250787,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -251722,41 +250827,41 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3197), 1, + ACTIONS(3184), 1, sym__newline, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(1936), 1, + STATE(1877), 1, aux_sym_shebang_repeat1, - STATE(1950), 1, + STATE(1937), 1, sym_comment, - STATE(1953), 1, + STATE(1999), 1, sym_expr_parenthesized, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(3124), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, sym__val_number_decimal, - STATE(3702), 1, + STATE(3689), 1, sym__expr_binary_expression_parenthesized, - STATE(6602), 1, + STATE(6594), 1, sym__expression_parenthesized, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -251767,13 +250872,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2369), 4, + STATE(2307), 4, sym_expr_unary, sym_expr_binary_parenthesized, sym_val_range, @@ -251785,7 +250890,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -251801,15 +250906,90 @@ static const uint16_t ts_small_parse_table[] = { [18621] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1951), 1, + STATE(1938), 1, + sym_comment, + ACTIONS(2449), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(2451), 45, + sym_raw_string_begin, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18693] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1939), 1, sym_comment, - ACTIONS(1757), 15, + STATE(2487), 1, + sym_cell_path, + ACTIONS(1893), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251818,8 +250998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1759), 46, + ACTIONS(1895), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -251846,7 +251025,146 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18772] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1940), 1, + sym_comment, + STATE(2148), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [18849] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, anon_sym_LPAREN2, + STATE(1941), 1, + sym_comment, + STATE(2150), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -251856,8 +251174,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251866,12 +251182,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, - [18693] = 4, + [18926] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(1952), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1942), 1, sym_comment, - ACTIONS(2451), 13, + STATE(2151), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -251885,7 +251207,287 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2453), 47, + ACTIONS(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19003] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1943), 1, + sym_comment, + STATE(2152), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19080] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1944), 1, + sym_comment, + STATE(2153), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19157] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1945), 1, + sym_comment, + STATE(2155), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19234] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1946), 1, + sym_comment, + STATE(2157), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -251900,10 +251502,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -251933,25 +251532,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [18764] = 9, + [19311] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - ACTIONS(5149), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1947), 1, + sym_comment, + STATE(2158), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, sym__newline, - STATE(1953), 1, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19388] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1948), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5154), 5, + STATE(2159), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5158), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -251960,7 +251627,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(5152), 20, + ACTIONS(5138), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -251972,7 +251640,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -251981,9 +251672,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, - ACTIONS(5156), 23, + [19465] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1949), 1, + sym_comment, + STATE(2160), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252005,18 +251734,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [18845] = 7, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19542] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1954), 1, + STATE(1950), 1, sym_comment, - STATE(2253), 1, + STATE(2161), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252030,7 +251767,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252075,18 +251812,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, - [18922] = 7, + [19619] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1955), 1, + STATE(1951), 1, sym_comment, - STATE(2307), 1, + STATE(2162), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252100,7 +251837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252145,18 +251882,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, - [18999] = 7, + [19696] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1956), 1, + STATE(1952), 1, sym_comment, - STATE(2255), 1, + STATE(2165), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252170,7 +251907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252215,16 +251952,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, - [19076] = 6, + [19773] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5168), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5170), 1, - aux_sym__immediate_decimal_token2, - STATE(1957), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1953), 1, sym_comment, - ACTIONS(1757), 14, + STATE(2168), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252238,9 +251977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1759), 44, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252252,8 +251989,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252266,7 +252005,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [19850] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, anon_sym_LPAREN2, + STATE(1954), 1, + sym_comment, + STATE(2171), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5142), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -252284,18 +252092,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, - [19151] = 7, + [19927] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1958), 1, + STATE(1955), 1, sym_comment, - STATE(2259), 1, + STATE(2174), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252309,7 +252117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252354,18 +252162,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, - [19228] = 7, + [20004] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1959), 1, + STATE(1956), 1, sym_comment, - STATE(2260), 1, + STATE(2176), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252379,7 +252187,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252424,18 +252232,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, - [19305] = 7, + [20081] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1960), 1, + STATE(1957), 1, sym_comment, - STATE(2263), 1, + STATE(2178), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252449,7 +252257,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252494,18 +252302,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, - [19382] = 7, + [20158] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1961), 1, + STATE(1958), 1, sym_comment, - STATE(2266), 1, + STATE(2182), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252519,7 +252327,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252564,18 +252372,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, - [19459] = 7, + [20235] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1962), 1, + STATE(1959), 1, sym_comment, - STATE(2272), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252589,7 +252397,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252634,18 +252442,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, - [19536] = 7, + [20312] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1963), 1, + STATE(1960), 1, sym_comment, - STATE(2278), 1, + STATE(2191), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252659,7 +252467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252704,16 +252512,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, - [19613] = 6, + [20389] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4756), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5176), 1, - anon_sym_DOT, - STATE(1964), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1961), 1, sym_comment, - ACTIONS(1725), 13, + STATE(2193), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252727,7 +252537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1727), 45, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252743,7 +252553,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252773,18 +252582,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, - [19688] = 7, + [20466] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1965), 1, + STATE(1962), 1, sym_comment, - STATE(2282), 1, + STATE(2195), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252798,7 +252607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252843,18 +252652,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, - [19765] = 7, + [20543] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1966), 1, + STATE(1963), 1, sym_comment, - STATE(2285), 1, + STATE(2197), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252868,7 +252677,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252913,18 +252722,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19842] = 7, + [20620] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1967), 1, + ACTIONS(4744), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5146), 1, + anon_sym_DOT, + STATE(1964), 1, sym_comment, - STATE(2303), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(1749), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -252938,7 +252745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(1751), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -252954,6 +252761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -252983,18 +252791,233 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19919] = 7, + [20695] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1965), 1, + sym_comment, + STATE(2530), 1, + sym_cell_path, + ACTIONS(1968), 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(1970), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20774] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1966), 1, + sym_comment, + STATE(2533), 1, + sym_cell_path, + ACTIONS(1986), 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(1988), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20853] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1967), 1, + sym_comment, + STATE(2537), 1, + sym_cell_path, + ACTIONS(1998), 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(2000), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [20932] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, STATE(1968), 1, sym_comment, - STATE(2290), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + STATE(2543), 1, + sym_cell_path, + ACTIONS(1831), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253008,7 +253031,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(5172), 44, + ACTIONS(1833), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253020,10 +253044,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253053,20 +253075,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [19996] = 8, + [21011] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5136), 1, anon_sym_DOT2, - STATE(1684), 1, + STATE(1668), 1, aux_sym_cell_path_repeat1, - STATE(1861), 1, + STATE(1811), 1, sym_path, STATE(1969), 1, sym_comment, - STATE(2558), 1, + STATE(2513), 1, sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253080,7 +253102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1951), 43, + ACTIONS(1873), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -253124,18 +253146,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, - [20075] = 7, + [21090] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, STATE(1970), 1, sym_comment, - STATE(2297), 1, + STATE(2201), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253149,7 +253171,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253194,18 +253216,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, - [20152] = 7, + [21167] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, STATE(1971), 1, sym_comment, - STATE(2306), 1, + STATE(2202), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253219,7 +253241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253264,18 +253286,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, - [20229] = 7, + [21244] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, STATE(1972), 1, sym_comment, - STATE(2211), 1, + STATE(2203), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253289,7 +253311,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253334,20 +253356,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, - [20306] = 8, + [21321] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, + ACTIONS(4052), 1, + anon_sym_LPAREN2, STATE(1973), 1, sym_comment, - STATE(2524), 1, - sym_cell_path, - ACTIONS(1953), 13, + STATE(2204), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253361,8 +253381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1955), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253374,8 +253393,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253405,18 +253426,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [20385] = 7, + [21398] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, + ACTIONS(5152), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5154), 1, + aux_sym__immediate_decimal_token2, STATE(1974), 1, sym_comment, - STATE(2293), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(1731), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253430,7 +253449,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(5172), 44, + aux_sym_unquoted_token2, + ACTIONS(1733), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253442,10 +253463,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253458,6 +253477,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -253475,18 +253495,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, - [20462] = 7, + [21473] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, STATE(1975), 1, sym_comment, - STATE(2214), 1, + STATE(2205), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5174), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253500,7 +253520,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253545,222 +253565,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, - [20539] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [21550] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3433), 1, - anon_sym_COLON2, - STATE(1638), 1, - sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, - sym_val_variable, + ACTIONS(4052), 1, + anon_sym_LPAREN2, STATE(1976), 1, sym_comment, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3765), 1, - sym__expr_binary_expression, - STATE(7374), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [20678] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3433), 1, - anon_sym_COLON2, - STATE(1638), 1, - sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, - sym_val_variable, - STATE(1977), 1, - sym_comment, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3765), 1, - sym__expr_binary_expression, - STATE(7298), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [20817] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(1978), 1, - sym_comment, - STATE(2462), 1, - sym_cell_path, - ACTIONS(1945), 13, + STATE(2206), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253774,8 +253590,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1947), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253787,8 +253602,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253818,20 +253635,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, - [20896] = 8, + [21627] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(1979), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1977), 1, sym_comment, - STATE(2553), 1, - sym_cell_path, - ACTIONS(1957), 13, + STATE(2207), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253845,8 +253660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253858,8 +253672,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253889,20 +253705,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, - [20975] = 8, + [21704] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(1980), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1978), 1, sym_comment, - STATE(2554), 1, - sym_cell_path, - ACTIONS(1961), 13, + STATE(2208), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253916,8 +253730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1963), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -253929,8 +253742,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -253960,20 +253775,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, - [21054] = 8, + [21781] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(1981), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1979), 1, sym_comment, - STATE(2555), 1, - sym_cell_path, - ACTIONS(1965), 13, + STATE(2210), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -253987,8 +253800,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1967), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254000,8 +253812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254031,20 +253845,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, - [21133] = 8, + [21858] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(1982), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(1980), 1, sym_comment, - STATE(2556), 1, - sym_cell_path, - ACTIONS(1969), 13, + STATE(2211), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254058,8 +253870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1971), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254071,8 +253882,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254102,18 +253915,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, - [21212] = 7, + [21935] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1983), 1, + STATE(1981), 1, sym_comment, - STATE(2194), 1, + STATE(2212), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254127,7 +253940,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254172,82 +253985,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, - [21289] = 5, + [22012] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5113), 1, - aux_sym__immediate_decimal_token2, - STATE(1984), 1, - sym_comment, - ACTIONS(1725), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(4052), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [21362] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5180), 1, - aux_sym__immediate_decimal_token2, - STATE(1985), 1, + STATE(1982), 1, sym_comment, - ACTIONS(1765), 14, + STATE(2213), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254261,8 +254010,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1767), 45, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254277,76 +254025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [21435] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5182), 1, - anon_sym_DOT, - ACTIONS(5184), 1, - aux_sym__immediate_decimal_token2, - STATE(1986), 1, - sym_comment, - ACTIONS(1725), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254359,7 +254038,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -254377,18 +254055,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, - [21510] = 7, + [22089] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(1987), 1, + STATE(1983), 1, sym_comment, - STATE(2180), 1, + STATE(2214), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254402,7 +254080,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254447,18 +254125,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21587] = 7, + [22166] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1988), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1984), 1, sym_comment, - STATE(2182), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2494), 1, + sym_cell_path, + ACTIONS(2008), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254472,7 +254152,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(5186), 44, + ACTIONS(2010), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254484,10 +254165,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254517,18 +254196,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21664] = 7, + [22245] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1989), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1985), 1, sym_comment, - STATE(2184), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2470), 1, + sym_cell_path, + ACTIONS(1835), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254542,7 +254223,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(5186), 44, + ACTIONS(1837), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254554,10 +254236,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254587,18 +254267,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21741] = 7, + [22324] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1990), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1986), 1, sym_comment, - STATE(2185), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2471), 1, + sym_cell_path, + ACTIONS(1839), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254612,7 +254294,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(5186), 44, + ACTIONS(1841), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254624,10 +254307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254657,18 +254338,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21818] = 7, + [22403] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1991), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1987), 1, sym_comment, - STATE(2186), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2474), 1, + sym_cell_path, + ACTIONS(1843), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254682,7 +254365,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(5186), 44, + ACTIONS(1845), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254694,10 +254378,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254727,18 +254409,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21895] = 7, + [22482] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1992), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1988), 1, sym_comment, - STATE(2187), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2475), 1, + sym_cell_path, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254752,7 +254436,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(5186), 44, + ACTIONS(1849), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254764,10 +254449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254797,18 +254480,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [21972] = 7, + [22561] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1993), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1989), 1, sym_comment, - STATE(2189), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2476), 1, + sym_cell_path, + ACTIONS(1851), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254822,7 +254507,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(5186), 44, + ACTIONS(1853), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254834,10 +254520,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254867,18 +254551,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22049] = 7, + [22640] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1994), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1990), 1, sym_comment, - STATE(2191), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2479), 1, + sym_cell_path, + ACTIONS(1855), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254892,7 +254578,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(5186), 44, + ACTIONS(1857), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254904,10 +254591,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254937,18 +254622,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22126] = 7, + [22719] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1995), 1, + ACTIONS(5100), 1, + aux_sym__immediate_decimal_token2, + STATE(1991), 1, sym_comment, - STATE(2195), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(1749), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -254962,7 +254643,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(5186), 44, + aux_sym_unquoted_token2, + ACTIONS(1751), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -254977,7 +254659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -254990,6 +254672,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -255007,18 +254690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22203] = 7, + [22792] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1996), 1, + ACTIONS(5156), 1, + aux_sym__immediate_decimal_token2, + STATE(1992), 1, sym_comment, - STATE(2196), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + ACTIONS(1772), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255032,7 +254711,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(5186), 44, + aux_sym_unquoted_token2, + ACTIONS(1774), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255047,7 +254727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255060,6 +254740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -255077,18 +254758,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22280] = 7, + [22865] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1997), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1993), 1, sym_comment, - STATE(2198), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2488), 1, + sym_cell_path, + ACTIONS(1859), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255102,7 +254785,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(5186), 44, + ACTIONS(1861), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255114,10 +254798,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255147,18 +254829,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22357] = 7, + [22944] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1998), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1994), 1, sym_comment, - STATE(2203), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2489), 1, + sym_cell_path, + ACTIONS(1863), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255172,7 +254856,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(5186), 44, + ACTIONS(1865), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255184,10 +254869,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255217,18 +254900,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22434] = 7, + [23023] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(1999), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1995), 1, sym_comment, - STATE(2242), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + STATE(2490), 1, + sym_cell_path, + ACTIONS(1867), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255242,7 +254927,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(5164), 44, + ACTIONS(1869), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255254,10 +254940,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255287,18 +254971,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22511] = 7, + [23102] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2000), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1996), 1, sym_comment, - STATE(2205), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5188), 13, + STATE(2491), 1, + sym_cell_path, + ACTIONS(1875), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255312,7 +254998,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(5186), 44, + ACTIONS(1877), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255324,10 +255011,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255357,18 +255042,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22588] = 7, + [23181] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2001), 1, + ACTIONS(5158), 1, + anon_sym_DOT, + ACTIONS(5160), 1, + aux_sym__immediate_decimal_token2, + STATE(1997), 1, sym_comment, - STATE(2168), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(1749), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255382,7 +255065,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(5164), 44, + aux_sym_unquoted_token2, + ACTIONS(1751), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255394,10 +255079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255410,6 +255093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -255427,90 +255111,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22665] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - ACTIONS(4701), 1, - anon_sym_COLON2, - STATE(2002), 1, - sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5121), 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(5115), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5119), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [22746] = 7, + [23256] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2003), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(1998), 1, sym_comment, - STATE(2308), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + STATE(2493), 1, + sym_cell_path, + ACTIONS(1879), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255524,7 +255138,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(5164), 44, + ACTIONS(1881), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255536,10 +255151,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255569,25 +255182,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [22823] = 8, + [23335] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2004), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + ACTIONS(5162), 1, + sym__newline, + STATE(1999), 1, sym_comment, - STATE(2456), 1, - sym_cell_path, - ACTIONS(1973), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5167), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5171), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -255596,9 +255209,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1975), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5165), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -255609,29 +255220,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + anon_sym_RPAREN, + anon_sym_LBRACE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -255640,46 +255230,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, - [22902] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2005), 1, - sym_comment, - STATE(2457), 1, - sym_cell_path, - ACTIONS(1977), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(1979), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + ACTIONS(5169), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -255703,28 +255254,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [22981] = 8, + [23416] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, + ACTIONS(5136), 1, anon_sym_DOT2, - STATE(1684), 1, + STATE(1668), 1, aux_sym_cell_path_repeat1, - STATE(1861), 1, + STATE(1811), 1, sym_path, - STATE(2006), 1, + STATE(2000), 1, sym_comment, - STATE(2458), 1, + STATE(2525), 1, sym_cell_path, - ACTIONS(1981), 13, + ACTIONS(1885), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255738,7 +255281,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1983), 43, + ACTIONS(1887), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -255782,20 +255325,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, - [23060] = 8, + [23495] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2007), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + STATE(2001), 1, sym_comment, - STATE(2459), 1, - sym_cell_path, - ACTIONS(1985), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5167), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255809,8 +255349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1987), 43, - ts_builtin_sym_end, + ACTIONS(5169), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255822,8 +255361,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255853,20 +255394,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, - [23139] = 8, + [23570] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2008), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2002), 1, sym_comment, - STATE(2460), 1, - sym_cell_path, - ACTIONS(1989), 13, + STATE(2295), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255880,8 +255419,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1991), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255893,8 +255431,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255924,20 +255464,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, - [23218] = 8, + [23647] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2009), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2003), 1, sym_comment, - STATE(2461), 1, - sym_cell_path, - ACTIONS(1993), 13, + STATE(2227), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -255951,8 +255489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1995), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -255964,8 +255501,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -255995,18 +255534,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, - [23297] = 7, + [23724] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(2010), 1, + STATE(2004), 1, sym_comment, - STATE(2217), 1, + STATE(2273), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256020,7 +255559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256065,20 +255604,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23374] = 8, + [23801] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2011), 1, + STATE(2005), 1, sym_comment, - STATE(2463), 1, - sym_cell_path, - ACTIONS(1997), 13, + ACTIONS(2461), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256092,8 +255623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1999), 43, - ts_builtin_sym_end, + ACTIONS(2463), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256105,8 +255635,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256136,20 +255671,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, - [23453] = 8, + [23872] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2012), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2006), 1, sym_comment, - STATE(2464), 1, - sym_cell_path, - ACTIONS(2001), 13, + STATE(2183), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256163,8 +255696,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2003), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256176,8 +255708,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256207,20 +255741,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23532] = 8, + [23949] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2013), 1, + STATE(2007), 1, sym_comment, - STATE(2465), 1, - sym_cell_path, - ACTIONS(2005), 13, + ACTIONS(2059), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256234,8 +255760,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2007), 43, - ts_builtin_sym_end, + ACTIONS(2065), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256247,8 +255772,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256278,18 +255808,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, - [23611] = 7, + [24020] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(2014), 1, + STATE(2008), 1, sym_comment, - STATE(2275), 1, + STATE(2219), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256303,7 +255833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256348,20 +255878,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, - [23688] = 8, + [24097] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2015), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2009), 1, sym_comment, - STATE(2472), 1, - sym_cell_path, - ACTIONS(2089), 13, + STATE(2244), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256375,8 +255903,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2091), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256388,8 +255915,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256419,20 +255948,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, - [23767] = 8, + [24174] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2016), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2010), 1, sym_comment, - STATE(2540), 1, - sym_cell_path, - ACTIONS(1933), 13, + STATE(2271), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256446,8 +255973,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256459,8 +255985,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256490,18 +256018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23846] = 7, + [24251] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2017), 1, + STATE(2011), 1, sym_comment, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(2312), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256515,7 +256037,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(2314), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256530,7 +256052,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256560,18 +256085,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [23923] = 7, + [24322] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2018), 1, + STATE(2012), 1, sym_comment, - STATE(2279), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(2441), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256585,7 +256104,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(2443), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256600,7 +256119,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256630,18 +256152,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, - [24000] = 7, + [24393] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(2019), 1, + STATE(2013), 1, sym_comment, - STATE(2231), 1, + STATE(2281), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256655,7 +256177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256700,18 +256222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24077] = 7, + [24470] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2020), 1, + STATE(2014), 1, sym_comment, - STATE(2232), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(2047), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256725,7 +256241,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(2053), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256740,7 +256256,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256770,18 +256289,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24154] = 7, + [24541] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2021), 1, + STATE(2015), 1, sym_comment, - STATE(2234), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(2080), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256795,7 +256308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(2086), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256810,7 +256323,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256840,18 +256356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24231] = 7, + [24612] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2022), 1, + STATE(2016), 1, sym_comment, - STATE(2235), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(2072), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256865,7 +256375,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(2078), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256880,7 +256390,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256910,20 +256423,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, - [24308] = 8, + [24683] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2023), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2017), 1, sym_comment, - STATE(2537), 1, - sym_cell_path, - ACTIONS(1937), 13, + STATE(2163), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -256937,8 +256448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -256950,8 +256460,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -256981,18 +256493,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, - [24387] = 7, + [24760] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(2024), 1, + STATE(2018), 1, sym_comment, - STATE(2236), 1, + STATE(2189), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257006,7 +256518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257051,18 +256563,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, - [24464] = 7, + [24837] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(2025), 1, + STATE(2019), 1, sym_comment, - STATE(2310), 1, + STATE(2200), 1, aux_sym_shebang_repeat1, - STATE(7336), 1, + STATE(7235), 1, sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257076,7 +256588,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257121,20 +256633,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, - [24541] = 8, + [24914] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2026), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2020), 1, sym_comment, - STATE(2531), 1, - sym_cell_path, - ACTIONS(1925), 13, + STATE(2218), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257148,8 +256658,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1927), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257161,8 +256670,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257192,18 +256703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24620] = 7, + [24991] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2027), 1, + STATE(2021), 1, sym_comment, - STATE(2244), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257217,7 +256722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(2427), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257232,7 +256737,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257262,12 +256770,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24697] = 4, + [25062] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2028), 1, + STATE(2022), 1, sym_comment, - ACTIONS(2415), 13, + ACTIONS(2433), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257281,7 +256789,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2417), 47, + ACTIONS(2435), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257329,12 +256837,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24768] = 4, + [25133] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2029), 1, + STATE(2023), 1, sym_comment, - ACTIONS(2170), 13, + ACTIONS(2437), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257348,7 +256856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2176), 47, + ACTIONS(2439), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257396,12 +256904,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24839] = 4, + [25204] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2030), 1, + STATE(2024), 1, sym_comment, - ACTIONS(2427), 13, + ACTIONS(2334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257415,7 +256923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2429), 47, + ACTIONS(2336), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257463,12 +256971,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, - [24910] = 4, + [25275] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2031), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2025), 1, sym_comment, - ACTIONS(2341), 13, + STATE(2235), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257482,7 +256996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2343), 47, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257497,10 +257011,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257530,18 +257041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [24981] = 7, + [25352] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2032), 1, + STATE(2026), 1, sym_comment, - STATE(2249), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(2338), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257555,7 +257060,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(2340), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257570,7 +257075,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257600,12 +257108,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25058] = 4, + [25423] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2033), 1, + STATE(2027), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257619,7 +257127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 47, + ACTIONS(2459), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257667,12 +257175,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25129] = 4, + [25494] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2034), 1, + STATE(2028), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(2465), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257686,7 +257194,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2158), 47, + ACTIONS(2467), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257734,12 +257242,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25200] = 4, + [25565] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2035), 1, + STATE(2029), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(2300), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257753,7 +257261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2166), 47, + ACTIONS(2302), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257801,18 +257309,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25271] = 7, + [25636] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2036), 1, + STATE(2030), 1, sym_comment, - STATE(2233), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 13, + ACTIONS(2304), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257826,7 +257328,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(2306), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257841,7 +257343,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257871,20 +257376,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25348] = 8, + [25707] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2037), 1, + STATE(2031), 1, sym_comment, - STATE(2455), 1, - sym_cell_path, - ACTIONS(2093), 13, + ACTIONS(2308), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257898,8 +257395,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2095), 43, - ts_builtin_sym_end, + ACTIONS(2310), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -257911,8 +257407,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -257942,12 +257443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25427] = 4, + [25778] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2038), 1, + STATE(2032), 1, sym_comment, - ACTIONS(2357), 13, + ACTIONS(2330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -257961,7 +257462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2359), 47, + ACTIONS(2332), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258009,12 +257510,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25498] = 4, + [25849] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2039), 1, + STATE(2033), 1, sym_comment, - ACTIONS(2361), 13, + ACTIONS(2389), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258028,7 +257529,7 @@ 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), 47, + ACTIONS(2391), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258076,12 +257577,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25569] = 4, + [25920] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2040), 1, + STATE(2034), 1, sym_comment, - ACTIONS(2365), 13, + ACTIONS(1968), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258095,7 +257596,7 @@ 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), 47, + ACTIONS(1970), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258143,12 +257644,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25640] = 4, + [25991] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2041), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(2035), 1, + sym_comment, + STATE(2450), 1, + sym_cell_path, + ACTIONS(2028), 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(2030), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [26070] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2036), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(2342), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258162,7 +257734,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2441), 47, + ACTIONS(2344), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258210,18 +257782,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25711] = 7, + [26141] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2042), 1, + STATE(2037), 1, sym_comment, - STATE(2251), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 13, + ACTIONS(2346), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258235,7 +257801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(2348), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258250,7 +257816,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -258280,12 +257849,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25788] = 4, + [26212] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2043), 1, + STATE(2038), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(1835), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258299,7 +257868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2445), 47, + ACTIONS(1837), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258347,12 +257916,113 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25859] = 4, + [26283] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2044), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3398), 1, + anon_sym_COLON2, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2039), 1, sym_comment, - ACTIONS(2373), 13, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3739), 1, + sym__expr_binary_expression, + STATE(7349), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [26422] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2040), 1, + sym_comment, + ACTIONS(1843), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258366,7 +258036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2375), 47, + ACTIONS(1845), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258414,12 +258084,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [25930] = 4, + [26493] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2045), 1, + STATE(2041), 1, sym_comment, - ACTIONS(2377), 13, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258433,7 +258103,7 @@ 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), 47, + ACTIONS(1849), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258481,12 +258151,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26001] = 4, + [26564] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2046), 1, + STATE(2042), 1, sym_comment, - ACTIONS(2381), 13, + ACTIONS(2350), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258500,7 +258170,7 @@ 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), 47, + ACTIONS(2352), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258548,12 +258218,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26072] = 4, + [26635] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2047), 1, + STATE(2043), 1, sym_comment, - ACTIONS(2385), 13, + ACTIONS(1859), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258567,7 +258237,7 @@ 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), 47, + ACTIONS(1861), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258615,12 +258285,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26143] = 4, + [26706] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2048), 1, + STATE(2044), 1, sym_comment, - ACTIONS(2389), 13, + ACTIONS(2358), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258634,7 +258304,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2391), 47, + ACTIONS(2360), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258682,12 +258352,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26214] = 4, + [26777] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2049), 1, + STATE(2045), 1, sym_comment, - ACTIONS(2393), 13, + ACTIONS(2362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258701,7 +258371,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2395), 47, + ACTIONS(2364), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258749,12 +258419,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26285] = 4, + [26848] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2050), 1, + STATE(2046), 1, sym_comment, - ACTIONS(2397), 13, + ACTIONS(1863), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258768,7 +258438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2399), 47, + ACTIONS(1865), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258816,12 +258486,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26356] = 4, + [26919] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2051), 1, + STATE(2047), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(1875), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258835,7 +258505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 47, + ACTIONS(1877), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258883,12 +258553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26427] = 4, + [26990] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2052), 1, + STATE(2048), 1, sym_comment, - ACTIONS(2447), 13, + ACTIONS(2373), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258902,7 +258572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2449), 47, + ACTIONS(2375), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -258950,12 +258620,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26498] = 4, + [27061] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2053), 1, + STATE(2049), 1, sym_comment, - ACTIONS(1973), 13, + ACTIONS(2377), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -258969,7 +258639,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1975), 47, + ACTIONS(2379), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259017,12 +258687,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26569] = 4, + [27132] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2054), 1, + STATE(2050), 1, sym_comment, - ACTIONS(1981), 13, + ACTIONS(1879), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259036,7 +258706,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1983), 47, + ACTIONS(1881), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259084,12 +258754,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26640] = 4, + [27203] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2055), 1, + STATE(2051), 1, sym_comment, - ACTIONS(1985), 13, + ACTIONS(2381), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259103,7 +258773,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1987), 47, + ACTIONS(2383), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259151,17 +258821,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [26711] = 6, + [27274] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - STATE(2056), 1, + STATE(2052), 1, sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5154), 13, + ACTIONS(2385), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259175,7 +258840,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 44, + ACTIONS(2387), 47, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259190,7 +258855,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_if, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259220,7 +258888,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, - [26786] = 38, + [27345] = 38, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -259247,140 +258915,39 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3431), 1, + ACTIONS(3398), 1, anon_sym_COLON2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2057), 1, - sym_comment, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3765), 1, - sym__expr_binary_expression, - STATE(7374), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [26925] = 38, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3431), 1, - anon_sym_COLON2, - STATE(1638), 1, - sym__val_number, - STATE(1891), 1, + STATE(1843), 1, sym_expr_parenthesized, - STATE(1894), 1, - sym_val_variable, - STATE(2058), 1, + STATE(2053), 1, sym_comment, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(3124), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7298), 1, + STATE(7358), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -259391,13 +258958,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -259409,7 +258976,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -259422,84 +258989,20 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [27064] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1012), 1, - anon_sym_DOT_DOT2, - ACTIONS(1016), 1, - anon_sym_COLON2, - STATE(2059), 1, - sym_comment, - ACTIONS(1014), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5121), 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(5115), 20, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5119), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [27145] = 4, + [27484] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2060), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(2054), 1, sym_comment, - ACTIONS(2505), 13, + STATE(2463), 1, + sym_cell_path, + ACTIONS(1976), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259513,7 +259016,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(2507), 47, + ACTIONS(1978), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259525,13 +259029,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259561,17 +259060,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27216] = 4, + [27563] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2061), 1, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + ACTIONS(4676), 1, + anon_sym_COLON2, + STATE(2055), 1, sym_comment, - ACTIONS(1997), 13, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5096), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259580,7 +259087,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1999), 47, + ACTIONS(5090), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259592,34 +259099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259628,47 +259108,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27287] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2062), 1, - sym_comment, - STATE(2223), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 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(5164), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5094), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259690,20 +259132,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27364] = 4, + [27644] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2063), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(2056), 1, sym_comment, - ACTIONS(2459), 13, + STATE(2499), 1, + sym_cell_path, + ACTIONS(1901), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259717,7 +259159,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(2461), 47, + ACTIONS(1903), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259729,13 +259172,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259765,17 +259203,227 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27435] = 4, + [27723] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2064), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3420), 1, + anon_sym_COLON2, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2057), 1, + sym_comment, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3739), 1, + sym__expr_binary_expression, + STATE(7349), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [27862] = 38, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3420), 1, + anon_sym_COLON2, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2058), 1, sym_comment, - ACTIONS(2463), 13, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3739), 1, + sym__expr_binary_expression, + STATE(7358), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [28001] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1012), 1, + anon_sym_DOT_DOT2, + ACTIONS(1016), 1, + anon_sym_COLON2, + STATE(2059), 1, + sym_comment, + ACTIONS(1014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5096), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -259784,7 +259432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2465), 47, + ACTIONS(5090), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259796,34 +259444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -259832,44 +259453,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27506] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2065), 1, - sym_comment, - ACTIONS(2001), 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(2003), 47, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5094), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259891,20 +259477,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27577] = 4, + [28082] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2066), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2060), 1, sym_comment, - ACTIONS(2009), 13, + STATE(2146), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259918,7 +259502,7 @@ 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), 47, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -259933,10 +259517,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -259966,12 +259547,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, - [27648] = 4, + [28159] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2067), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2061), 1, sym_comment, - ACTIONS(2467), 13, + STATE(2147), 1, + aux_sym_shebang_repeat1, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -259985,7 +259572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2469), 47, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260000,10 +259587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260033,12 +259617,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27719] = 4, + [28236] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2068), 1, + STATE(2062), 1, sym_comment, - ACTIONS(2471), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260052,7 +259636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2473), 47, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260067,7 +259651,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -260100,26 +259683,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27790] = 4, - ACTIONS(251), 1, + [28306] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2069), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(2063), 1, sym_comment, - ACTIONS(2089), 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(2091), 47, + ACTIONS(2196), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260132,12 +259705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2192), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260146,44 +259719,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [27861] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2070), 1, - sym_comment, - STATE(2246), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5166), 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, @@ -260192,43 +259743,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260237,12 +259751,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [27938] = 4, + [28380] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2071), 1, + STATE(2064), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(2028), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260256,7 +259770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2477), 47, + ACTIONS(2030), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260271,7 +259785,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, @@ -260304,12 +259817,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28009] = 4, + [28450] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2072), 1, + STATE(2065), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(1749), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260323,7 +259836,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(2481), 47, + aux_sym_unquoted_token2, + ACTIONS(1751), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260338,10 +259852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_if, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260354,6 +259865,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -260371,32 +259883,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28080] = 7, - ACTIONS(251), 1, + [28520] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(2194), 1, anon_sym_LPAREN2, - STATE(2073), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(2066), 1, sym_comment, - STATE(2252), 1, - aux_sym_shebang_repeat1, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5162), 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(5160), 44, + ACTIONS(2202), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260409,9 +259905,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2200), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260420,46 +259919,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [28157] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2074), 1, - sym_comment, - STATE(2468), 1, - sym_cell_path, - ACTIONS(2009), 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, @@ -260468,42 +259943,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2011), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260512,12 +259951,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28236] = 4, + [28594] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2075), 1, + STATE(2067), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260531,7 +259970,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(1873), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260578,18 +260017,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, - [28306] = 4, + [28664] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2076), 1, + STATE(2068), 1, sym_comment, - ACTIONS(1717), 14, + ACTIONS(2403), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260598,8 +260036,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1719), 45, - ts_builtin_sym_end, + ACTIONS(2405), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260611,8 +260048,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260634,8 +260075,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260644,18 +260083,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, - [28376] = 4, + [28734] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2077), 1, + STATE(2069), 1, sym_comment, - ACTIONS(2120), 14, + ACTIONS(1731), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260664,8 +260102,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(2122), 45, - ts_builtin_sym_end, + aux_sym_unquoted_token2, + ACTIONS(1733), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260677,8 +260115,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260691,6 +260131,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -260700,8 +260141,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260710,17 +260149,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, - [28446] = 4, + [28804] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2078), 1, + STATE(2070), 1, sym_comment, - ACTIONS(2435), 13, + ACTIONS(1018), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -260729,7 +260169,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(2437), 46, + ACTIONS(1020), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260741,12 +260182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -260768,6 +260205,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -260776,16 +260215,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28516] = 6, + [28874] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(2079), 1, + STATE(2071), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(1772), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260799,7 +260234,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(1794), 44, + aux_sym_unquoted_token2, + ACTIONS(1774), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260827,6 +260263,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -260844,16 +260281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28590] = 6, + [28944] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(2080), 1, + STATE(2072), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(1817), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -260867,7 +260300,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(2186), 44, + aux_sym_unquoted_token2, + ACTIONS(1819), 45, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -260895,6 +260329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -260912,115 +260347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28664] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [29014] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5190), 1, - anon_sym_DOT_DOT, - ACTIONS(5194), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(5196), 1, - aux_sym__val_number_decimal_token2, - STATE(1638), 1, - sym__val_number, - STATE(2081), 1, - sym_comment, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3509), 1, - sym__val_number_decimal, - STATE(3537), 1, - sym_expr_parenthesized, - STATE(3538), 1, - sym_val_variable, - STATE(3769), 1, - sym__expr_binary_expression, - STATE(7737), 1, - sym__expression, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5192), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [28800] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - STATE(2082), 1, + STATE(2073), 1, sym_comment, - ACTIONS(1865), 13, + ACTIONS(2188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261034,7 +260370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 44, + ACTIONS(2190), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261079,17 +260415,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28874] = 6, + [29088] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5198), 1, - anon_sym_DOT_DOT2, - STATE(2083), 1, + ACTIONS(5177), 1, + aux_sym__immediate_decimal_token2, + STATE(2074), 1, sym_comment, - ACTIONS(5200), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 13, + ACTIONS(1772), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261103,7 +260436,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(2176), 43, + aux_sym_unquoted_token2, + ACTIONS(1774), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -261130,6 +260464,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -261147,17 +260482,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [28948] = 6, + [29160] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5202), 1, - anon_sym_DOT_DOT2, - STATE(2084), 1, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(2075), 1, sym_comment, - ACTIONS(5204), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(2180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261171,8 +260505,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 43, - ts_builtin_sym_end, + ACTIONS(2184), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261184,8 +260517,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261215,23 +260550,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29022] = 8, + [29234] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4737), 1, - anon_sym_DOT_DOT2, - STATE(2085), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(2076), 1, sym_comment, - ACTIONS(4739), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 5, + ACTIONS(1793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261240,8 +260573,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5115), 20, - ts_builtin_sym_end, + ACTIONS(1801), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261253,17 +260585,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5119), 23, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261285,58 +260610,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29100] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [29308] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2086), 1, + STATE(2077), 1, sym_comment, - ACTIONS(2241), 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(2237), 44, + ACTIONS(2429), 13, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261345,24 +260637,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29174] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2087), 1, - sym_comment, - ACTIONS(2247), 13, + ACTIONS(2431), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261375,12 +260650,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2245), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261389,30 +260663,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261421,12 +260684,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29248] = 4, + [29378] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2088), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(2078), 1, sym_comment, - ACTIONS(2229), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261440,7 +260707,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2233), 46, + ACTIONS(1813), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261455,9 +260722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261487,18 +260752,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, - [29318] = 6, + [29452] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2089), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2079), 1, + sym_comment, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3739), 1, + sym__expr_binary_expression, + STATE(7330), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [29588] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2080), 1, sym_comment, - ACTIONS(5117), 5, + ACTIONS(2407), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261507,7 +260870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5115), 23, + ACTIONS(2409), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261520,20 +260883,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_EQ_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - ACTIONS(5119), 23, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261555,12 +260909,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [29392] = 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, + [29658] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2090), 1, + STATE(2081), 1, sym_comment, - ACTIONS(5208), 13, + ACTIONS(2411), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261574,7 +260936,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 46, + ACTIONS(2413), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261621,16 +260983,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29462] = 6, - ACTIONS(3), 1, + [29728] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2091), 1, + STATE(2082), 1, sym_comment, - ACTIONS(2233), 13, + ACTIONS(2421), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(2423), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261643,12 +261015,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2229), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261657,30 +261028,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261689,18 +261049,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, - [29536] = 4, + [29798] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2092), 1, + STATE(2083), 1, sym_comment, - ACTIONS(2116), 14, + ACTIONS(2226), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261709,8 +261068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2118), 45, - ts_builtin_sym_end, + ACTIONS(2230), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261722,8 +261080,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261745,8 +261107,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261755,21 +261115,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, - [29606] = 6, + [29868] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(2093), 1, + STATE(2084), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(5092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5096), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261778,7 +261135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2192), 44, + ACTIONS(5090), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261791,9 +261148,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_EQ_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5094), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261815,26 +261183,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [29680] = 4, + [29942] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2094), 1, + STATE(2085), 1, sym_comment, - ACTIONS(1018), 14, + ACTIONS(5181), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -261843,8 +261202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1020), 45, - ts_builtin_sym_end, + ACTIONS(5179), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261856,8 +261214,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261879,8 +261241,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -261889,16 +261249,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, - [29750] = 6, + [30012] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, - STATE(2095), 1, + ACTIONS(4730), 1, + anon_sym_DOT_DOT2, + STATE(2086), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(4732), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -261912,7 +261273,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(2198), 44, + ACTIONS(5094), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261924,10 +261286,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261957,16 +261317,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29824] = 6, - ACTIONS(3), 1, + [30086] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(2096), 1, + STATE(2087), 1, sym_comment, - ACTIONS(1000), 13, + ACTIONS(5185), 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(5183), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -261979,12 +261349,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1004), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -261993,30 +261362,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -262025,12 +261383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29898] = 4, + [30156] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2097), 1, + STATE(2088), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262044,7 +261402,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 46, + ACTIONS(1813), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262091,12 +261449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [29968] = 4, + [30226] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2098), 1, + STATE(2089), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(2445), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262110,7 +261468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 46, + ACTIONS(2447), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262157,17 +261515,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, - [30038] = 6, + [30296] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4737), 1, + ACTIONS(5187), 1, anon_sym_DOT_DOT2, - STATE(2099), 1, + STATE(2090), 1, sym_comment, - ACTIONS(4739), 2, + ACTIONS(5189), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 13, + ACTIONS(2047), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262181,7 +261539,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5119), 43, + ACTIONS(2053), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -262225,111 +261583,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, - [30112] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [30370] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - STATE(1638), 1, - sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, - sym_val_variable, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2100), 1, - sym_comment, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3765), 1, - sym__expr_binary_expression, - STATE(7224), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [30248] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2101), 1, + ACTIONS(5191), 1, + anon_sym_DOT_DOT2, + STATE(2091), 1, sym_comment, - ACTIONS(5117), 13, + ACTIONS(5193), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2080), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262343,7 +261607,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(5119), 46, + ACTIONS(2086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262355,12 +261620,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262390,12 +261651,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, - [30318] = 4, + [30444] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2102), 1, + ACTIONS(5195), 1, + anon_sym_DOT_DOT2, + STATE(2092), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5197), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262409,7 +261675,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(5127), 46, + ACTIONS(2078), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262421,12 +261688,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262456,111 +261719,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, - [30388] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [30518] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - STATE(1638), 1, - sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, - sym_val_variable, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2103), 1, - sym_comment, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3765), 1, - sym__expr_binary_expression, - STATE(7265), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [30524] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2104), 1, + ACTIONS(5199), 1, + anon_sym_DOT_DOT2, + STATE(2093), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5201), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262574,7 +261743,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(5127), 46, + ACTIONS(1801), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262586,12 +261756,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -262621,12 +261787,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30594] = 4, + [30592] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2105), 1, + STATE(2094), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262640,7 +261806,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5094), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262687,78 +261853,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30664] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2106), 1, - sym_comment, - ACTIONS(1725), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [30734] = 4, + [30662] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2107), 1, + STATE(2095), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262772,7 +261872,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262819,12 +261919,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30804] = 4, + [30732] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2108), 1, + STATE(2096), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262838,7 +261938,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262885,12 +261985,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30874] = 4, + [30802] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2109), 1, + STATE(2097), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262904,7 +262004,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -262951,12 +262051,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [30944] = 4, + [30872] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2110), 1, + STATE(2098), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -262970,7 +262070,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263017,17 +262117,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, - [31014] = 4, + [30942] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2111), 1, + STATE(2099), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2043), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263036,7 +262137,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(5127), 46, + ACTIONS(2045), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263048,12 +262150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263075,6 +262173,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263083,12 +262183,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31084] = 4, + [31012] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2112), 1, + STATE(2100), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263102,7 +262202,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263149,12 +262249,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31154] = 4, + [31082] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2113), 1, + STATE(2101), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263168,7 +262268,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2421), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263215,12 +262315,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31224] = 4, + [31152] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2114), 1, + STATE(2102), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263234,7 +262334,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263281,12 +262381,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31294] = 4, + [31222] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2115), 1, + STATE(2103), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263300,7 +262400,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263347,12 +262447,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31364] = 4, + [31292] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2116), 1, + STATE(2104), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5205), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263366,7 +262466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(5203), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263413,12 +262513,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31434] = 4, + [31362] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2117), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(2105), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2170), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263432,7 +262536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 46, + ACTIONS(2174), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263447,9 +262551,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263479,12 +262581,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31504] = 4, + [31436] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2118), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5207), 1, + anon_sym_DOT_DOT, + ACTIONS(5211), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(5213), 1, + aux_sym__val_number_decimal_token2, + STATE(1662), 1, + sym__val_number, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2106), 1, sym_comment, - ACTIONS(2423), 13, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3497), 1, + sym__val_number_decimal, + STATE(3527), 1, + sym_val_variable, + STATE(3543), 1, + sym_expr_parenthesized, + STATE(3746), 1, + sym__expr_binary_expression, + STATE(7521), 1, + sym__expression, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5209), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [31572] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2107), 1, + sym_comment, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263498,7 +262699,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2425), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263545,14 +262746,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31574] = 5, + [31642] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5218), 1, - aux_sym__immediate_decimal_token2, - STATE(2119), 1, + STATE(2108), 1, sym_comment, - ACTIONS(1765), 14, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263566,9 +262765,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1767), 44, - ts_builtin_sym_end, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263580,8 +262777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263594,7 +262795,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -263612,12 +262812,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31646] = 4, + [31712] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2120), 1, + STATE(2109), 1, sym_comment, - ACTIONS(1865), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263631,7 +262831,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263678,12 +262878,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31716] = 4, + [31782] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2121), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2110), 1, sym_comment, - ACTIONS(5222), 13, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3739), 1, + sym__expr_binary_expression, + STATE(7356), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [31918] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2111), 1, + sym_comment, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263697,7 +262996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 46, + ACTIONS(5086), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263744,12 +263043,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [31786] = 4, - ACTIONS(3), 1, + [31988] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2122), 1, + STATE(2112), 1, sym_comment, - ACTIONS(2267), 14, + ACTIONS(2188), 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(2190), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263762,13 +263075,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2265), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263777,30 +263088,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -263809,13 +263109,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [31856] = 4, + [32058] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2123), 1, + STATE(2113), 1, sym_comment, - ACTIONS(1757), 14, + ACTIONS(1793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -263829,8 +263128,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1759), 45, + ACTIONS(1801), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -263845,7 +263143,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -263858,7 +263158,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -263876,22 +263175,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, - [31926] = 6, + [32128] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5224), 1, - anon_sym_DOT_DOT2, - STATE(2124), 1, + STATE(2114), 1, sym_comment, - ACTIONS(5226), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 13, + ACTIONS(2035), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -263900,7 +263195,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 43, + ACTIONS(2037), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -263936,74 +263231,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32000] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5228), 1, - anon_sym_DOT_DOT2, - STATE(2125), 1, - sym_comment, - ACTIONS(5230), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - 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(2158), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264012,12 +263241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32074] = 4, + [32198] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2126), 1, + STATE(2115), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(5217), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264031,7 +263260,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2192), 46, + ACTIONS(5215), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264078,17 +263307,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32144] = 6, + [32268] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5232), 1, - anon_sym_DOT_DOT2, - STATE(2127), 1, + STATE(2116), 1, sym_comment, - ACTIONS(5234), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 13, + ACTIONS(2170), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264102,8 +263326,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2166), 43, - ts_builtin_sym_end, + ACTIONS(2174), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264115,8 +263338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264146,22 +263373,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, - [32218] = 6, + [32338] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5236), 1, + ACTIONS(4730), 1, anon_sym_DOT_DOT2, - STATE(2128), 1, + STATE(2117), 1, sym_comment, - ACTIONS(5238), 2, + ACTIONS(4732), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 13, + ACTIONS(5092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5096), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264170,7 +263398,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 43, + ACTIONS(5090), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -264183,29 +263411,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, @@ -264214,42 +263419,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32292] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2129), 1, - sym_comment, - ACTIONS(1765), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1767), 45, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5094), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264262,7 +263434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -264272,20 +263443,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32362] = 4, + [32416] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2130), 1, + STATE(2118), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(2216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264299,7 +263462,7 @@ 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), 46, + ACTIONS(2218), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264346,12 +263509,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32432] = 4, + [32486] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2131), 1, + STATE(2119), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264365,7 +263528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 46, + ACTIONS(2455), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264412,17 +263575,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32502] = 6, + [32556] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4737), 1, - anon_sym_DOT_DOT2, - STATE(2132), 1, + STATE(2120), 1, sym_comment, - ACTIONS(4739), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264436,8 +263594,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 43, - ts_builtin_sym_end, + ACTIONS(2455), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264449,8 +263606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264480,27 +263641,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32576] = 4, - ACTIONS(251), 1, + [32626] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2133), 1, + STATE(2121), 1, sym_comment, - ACTIONS(1861), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1863), 45, + ACTIONS(2218), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264513,9 +263659,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, + anon_sym_LPAREN2, + ACTIONS(2216), 45, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264524,39 +263674,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [32646] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2134), 1, - sym_comment, - ACTIONS(1937), 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, @@ -264565,45 +263698,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264612,17 +263706,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32716] = 4, + aux_sym_unquoted_token4, + [32696] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2135), 1, + STATE(2122), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(2039), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264631,7 +263727,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(1935), 46, + ACTIONS(2041), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264643,12 +263740,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264670,6 +263763,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264678,12 +263773,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32786] = 4, + [32766] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2136), 1, + STATE(2123), 1, sym_comment, - ACTIONS(2337), 13, + ACTIONS(2481), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264697,7 +263792,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2339), 46, + ACTIONS(2483), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264744,18 +263839,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, - [32856] = 4, + [32836] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2137), 1, + STATE(2124), 1, sym_comment, - ACTIONS(2102), 14, + ACTIONS(2485), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -264764,8 +263858,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2104), 45, - ts_builtin_sym_end, + ACTIONS(2487), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264777,8 +263870,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -264800,8 +263897,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -264810,12 +263905,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32926] = 4, + [32906] = 37, + ACTIONS(155), 1, + anon_sym_LBRACK, + ACTIONS(157), 1, + anon_sym_LPAREN, + ACTIONS(183), 1, + anon_sym_LBRACE, + ACTIONS(187), 1, + anon_sym_DOT_DOT, + ACTIONS(205), 1, + aux_sym_expr_unary_token1, + ACTIONS(231), 1, + anon_sym_0b, + ACTIONS(235), 1, + sym_val_date, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - STATE(2138), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(1024), 1, + anon_sym_DOLLAR, + ACTIONS(3386), 1, + anon_sym_null, + ACTIONS(3390), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3392), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + STATE(1662), 1, + sym__val_number, + STATE(1810), 1, + sym_val_variable, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2125), 1, sym_comment, - ACTIONS(2403), 13, + STATE(3156), 1, + sym__val_number_decimal, + STATE(3739), 1, + sym__expr_binary_expression, + STATE(7251), 1, + sym__expression, + ACTIONS(211), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(233), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3388), 2, + anon_sym_true, + anon_sym_false, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(2084), 4, + sym_expr_unary, + sym_expr_binary, + sym_val_range, + sym__value, + ACTIONS(227), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(2134), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [33042] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2126), 1, + sym_comment, + ACTIONS(2322), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264829,7 +264023,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2405), 46, + ACTIONS(2324), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264876,12 +264070,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [32996] = 4, + [33112] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2139), 1, + STATE(2127), 1, sym_comment, - ACTIONS(2345), 13, + ACTIONS(2326), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264895,7 +264089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2347), 46, + ACTIONS(2328), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -264942,12 +264136,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33066] = 4, + [33182] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2140), 1, + STATE(2128), 1, sym_comment, - ACTIONS(2349), 13, + ACTIONS(2180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -264961,7 +264155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2351), 46, + ACTIONS(2184), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265008,26 +264202,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [33136] = 4, - ACTIONS(251), 1, + [33252] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2141), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(2129), 1, sym_comment, - ACTIONS(2353), 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(2355), 46, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265040,11 +264224,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2226), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265053,19 +264238,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -265074,12 +264270,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, - [33206] = 4, + [33326] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2142), 1, + ACTIONS(5219), 1, + anon_sym_DOT_DOT2, + STATE(2130), 1, sym_comment, - ACTIONS(2369), 13, + ACTIONS(5221), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2059), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265093,7 +264294,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(2371), 46, + ACTIONS(2065), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265105,12 +264307,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265140,12 +264338,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, - [33276] = 4, + [33400] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2143), 1, + ACTIONS(5223), 1, + anon_sym_DOT_DOT2, + STATE(2131), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(5225), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265159,7 +264362,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(2413), 46, + ACTIONS(1813), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265171,12 +264375,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -265206,7 +264406,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, - [33346] = 37, + [33474] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -265233,136 +264433,37 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2144), 1, - sym_comment, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, - sym__val_number_decimal, - STATE(3765), 1, - sym__expr_binary_expression, - STATE(7374), 1, - sym__expression, - ACTIONS(211), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(233), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3421), 2, - anon_sym_true, - anon_sym_false, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(2089), 4, - sym_expr_unary, - sym_expr_binary, - sym_val_range, - sym__value, - ACTIONS(227), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(2131), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [33482] = 37, - ACTIONS(155), 1, - anon_sym_LBRACK, - ACTIONS(157), 1, - anon_sym_LPAREN, - ACTIONS(183), 1, - anon_sym_LBRACE, - ACTIONS(187), 1, - anon_sym_DOT_DOT, - ACTIONS(205), 1, - aux_sym_expr_unary_token1, - ACTIONS(231), 1, - anon_sym_0b, - ACTIONS(235), 1, - sym_val_date, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(1022), 1, - anon_sym_DOLLAR, - ACTIONS(3419), 1, - anon_sym_null, - ACTIONS(3423), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - STATE(1638), 1, - sym__val_number, - STATE(1891), 1, + STATE(1843), 1, sym_expr_parenthesized, - STATE(1894), 1, - sym_val_variable, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, sym__inter_double_quotes, - STATE(2145), 1, + STATE(2132), 1, sym_comment, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7298), 1, + STATE(7349), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -265373,13 +264474,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -265391,7 +264492,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -265404,7 +264505,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33618] = 37, + [33610] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -265431,37 +264532,37 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2090), 1, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, sym__inter_double_quotes, - STATE(2146), 1, + STATE(2133), 1, sym_comment, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7342), 1, + STATE(7358), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -265472,13 +264573,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -265490,7 +264591,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -265503,12 +264604,12 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33754] = 4, + [33746] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2147), 1, + STATE(2134), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -265522,7 +264623,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2433), 46, + ACTIONS(1000), 46, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -265569,7 +264670,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, - [33824] = 37, + [33816] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(2135), 1, + sym_comment, + ACTIONS(1000), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1004), 44, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33890] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4730), 1, + anon_sym_DOT_DOT2, + STATE(2136), 1, + sym_comment, + ACTIONS(4732), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(1000), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [33964] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -265596,37 +264833,37 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2090), 1, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, sym__inter_double_quotes, - STATE(2148), 1, + STATE(2137), 1, sym_comment, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7295), 1, + STATE(7220), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -265637,13 +264874,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -265655,7 +264892,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -265668,73 +264905,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [33960] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2149), 1, - sym_comment, - ACTIONS(2411), 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(2413), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34030] = 37, + [34100] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -265761,37 +264932,37 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2090), 1, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(2150), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2138), 1, sym_comment, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7309), 1, + STATE(7276), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -265802,13 +264973,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -265820,7 +264991,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -265833,7 +265004,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34166] = 37, + [34236] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -265860,37 +265031,37 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2090), 1, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(2151), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2139), 1, sym_comment, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7316), 1, + STATE(7294), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -265901,13 +265072,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -265919,7 +265090,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -265932,140 +265103,7 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34302] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5184), 1, - aux_sym__immediate_decimal_token2, - STATE(2152), 1, - sym_comment, - ACTIONS(1725), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 44, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34374] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2153), 1, - sym_comment, - ACTIONS(2265), 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(2267), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34444] = 37, + [34372] = 37, ACTIONS(155), 1, anon_sym_LBRACK, ACTIONS(157), 1, @@ -266092,37 +265130,37 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(3419), 1, + ACTIONS(3386), 1, anon_sym_null, - ACTIONS(3423), 1, + ACTIONS(3390), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3425), 1, + ACTIONS(3392), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1891), 1, - sym_expr_parenthesized, - STATE(1894), 1, + STATE(1810), 1, sym_val_variable, - STATE(2090), 1, + STATE(1843), 1, + sym_expr_parenthesized, + STATE(2085), 1, sym__expr_unary_minus, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + STATE(2119), 1, sym__inter_single_quotes, - STATE(2154), 1, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2140), 1, sym_comment, - STATE(3124), 1, + STATE(3156), 1, sym__val_number_decimal, - STATE(3765), 1, + STATE(3739), 1, sym__expr_binary_expression, - STATE(7277), 1, + STATE(7301), 1, sym__expression, ACTIONS(211), 2, anon_sym_DOT_DOT_EQ, @@ -266133,13 +265171,13 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(1420), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - STATE(2089), 4, + STATE(2084), 4, sym_expr_unary, sym_expr_binary, sym_val_range, @@ -266151,7 +265189,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(2131), 12, + STATE(2134), 12, sym_val_nothing, sym_val_bool, sym_val_number, @@ -266164,148 +265202,14 @@ static const uint16_t ts_small_parse_table[] = { sym_val_record, sym_val_table, sym_val_closure, - [34580] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2155), 1, - sym_comment, - ACTIONS(2184), 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(2186), 46, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34650] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2156), 1, - sym_comment, - STATE(2193), 1, - aux_sym_shebang_repeat1, - ACTIONS(5242), 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(5240), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34721] = 6, + [34508] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2157), 1, + ACTIONS(5160), 1, + aux_sym__immediate_decimal_token2, + STATE(2141), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(1749), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266319,7 +265223,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(5127), 43, + aux_sym_unquoted_token2, + ACTIONS(1751), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266346,73 +265251,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [34794] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4412), 1, anon_sym_LPAREN2, - STATE(2158), 1, - sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 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(5127), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -266430,21 +265269,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, - [34867] = 6, + [34580] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2159), 1, + STATE(2142), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(1757), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -266453,7 +265289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(1759), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -266489,6 +265325,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -266497,94 +265335,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [34940] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5248), 1, - sym__newline, - ACTIONS(5250), 1, - anon_sym_RBRACK, - STATE(2160), 1, - sym_comment, - STATE(2420), 1, - aux_sym_shebang_repeat1, - STATE(2580), 1, - aux_sym_command_list_repeat1, - STATE(3645), 1, - sym__val_number_decimal, - STATE(6822), 1, - sym__command_name, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5244), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [35039] = 5, + [34650] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2161), 1, + STATE(2143), 1, sym_comment, - STATE(2214), 1, + STATE(2147), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266598,7 +265356,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266643,16 +265401,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35110] = 6, + [34721] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2162), 1, + STATE(2144), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + STATE(2148), 1, + aux_sym_shebang_repeat1, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266666,8 +265422,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266679,8 +265434,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266710,14 +265467,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35183] = 5, + [34792] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2163), 1, + STATE(2145), 1, sym_comment, - STATE(2279), 1, + STATE(2155), 1, aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266731,7 +265488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266776,16 +265533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35254] = 6, + [34863] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2164), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2146), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266799,8 +265554,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266812,8 +265566,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266843,16 +265599,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35327] = 6, + [34934] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2165), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2147), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266866,8 +265620,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266879,8 +265632,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266910,16 +265665,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35400] = 6, + [35005] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(2166), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2148), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266933,8 +265686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 43, - ts_builtin_sym_end, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -266946,8 +265698,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -266977,14 +265731,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35473] = 5, + [35076] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2167), 1, - sym_comment, - STATE(2234), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5162), 13, + STATE(2149), 1, + sym_comment, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -266998,7 +265752,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5231), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267043,14 +265797,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35544] = 5, + [35147] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2168), 1, + STATE(2150), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267064,7 +265818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267109,94 +265863,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35615] = 19, + [35218] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, - anon_sym_DASH_DASH, - STATE(2169), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2151), 1, sym_comment, - STATE(2445), 1, - aux_sym_decl_def_repeat1, - STATE(3006), 1, - sym_long_flag, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6405), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [35714] = 5, + ACTIONS(5229), 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(5227), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35289] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2170), 1, - sym_comment, - STATE(2307), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + STATE(2152), 1, + sym_comment, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267210,7 +265950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267255,12 +265995,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [35785] = 4, + [35360] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2171), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2153), 1, sym_comment, - ACTIONS(1861), 14, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267274,9 +266016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1863), 44, - ts_builtin_sym_end, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267288,8 +266028,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267302,7 +266044,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -267320,27 +266061,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, - [35854] = 8, + [35431] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5258), 1, + ACTIONS(5235), 1, anon_sym_DOT2, - STATE(2172), 1, + STATE(2154), 1, sym_comment, - STATE(2426), 1, + STATE(2302), 1, aux_sym_cell_path_repeat1, - STATE(2560), 1, + STATE(2584), 1, sym_path, - STATE(2665), 1, + STATE(2632), 1, sym_cell_path, - ACTIONS(1717), 6, + ACTIONS(935), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1719), 48, + ACTIONS(937), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -267389,80 +266130,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [35931] = 5, + [35508] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2173), 1, - sym_comment, - STATE(2266), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 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(5172), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [36002] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2174), 1, + STATE(2155), 1, sym_comment, - STATE(2241), 1, - aux_sym_shebang_repeat1, - ACTIONS(5262), 13, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267476,7 +266151,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267521,97 +266196,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36073] = 19, + [35579] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5248), 1, - sym__newline, - ACTIONS(5264), 1, - anon_sym_RBRACK, - STATE(2175), 1, - sym_comment, - STATE(2437), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2595), 1, - aux_sym_command_list_repeat1, - STATE(3645), 1, - sym__val_number_decimal, - STATE(6821), 1, - sym__command_name, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5244), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [36172] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2176), 1, + STATE(2156), 1, sym_comment, - ACTIONS(2233), 12, - ts_builtin_sym_end, + ACTIONS(5239), 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(5237), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267623,11 +266229,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2229), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267636,22 +266241,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [35650] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2157), 1, + sym_comment, + ACTIONS(5229), 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, @@ -267660,6 +266283,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5227), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -267668,14 +266328,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36245] = 5, + [35721] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2177), 1, - sym_comment, - STATE(2233), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + STATE(2158), 1, + sym_comment, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267689,7 +266349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267734,14 +266394,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36316] = 5, + [35792] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2178), 1, - sym_comment, - STATE(2196), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5188), 13, + STATE(2159), 1, + sym_comment, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267755,7 +266415,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267800,14 +266460,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36387] = 5, + [35863] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2179), 1, - sym_comment, - STATE(2235), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + STATE(2160), 1, + sym_comment, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267821,7 +266481,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267866,14 +266526,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36458] = 5, + [35934] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2180), 1, + STATE(2161), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5229), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267887,7 +266547,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5227), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267932,16 +266592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36529] = 6, + [36005] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(2181), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2162), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -267955,8 +266613,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2192), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -267968,8 +266625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -267999,14 +266658,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36602] = 5, + [36076] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2182), 1, + STATE(2163), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268020,7 +266679,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268065,14 +266724,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36673] = 5, + [36147] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2183), 1, + STATE(2164), 1, sym_comment, - STATE(2236), 1, + STATE(2201), 1, aux_sym_shebang_repeat1, - ACTIONS(5162), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268086,7 +266745,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268131,14 +266790,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36744] = 5, + [36218] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2184), 1, + STATE(2165), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268152,7 +266811,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268197,14 +266856,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36815] = 5, + [36289] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2156), 1, aux_sym_shebang_repeat1, - STATE(2185), 1, + STATE(2166), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5251), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5249), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [36360] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2167), 1, + sym_comment, + STATE(2202), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268218,7 +266943,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268263,14 +266988,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36886] = 5, + [36431] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2186), 1, + STATE(2168), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268284,7 +267009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268329,14 +267054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [36957] = 5, + [36502] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2187), 1, + STATE(2169), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(1749), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268350,7 +267073,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(5266), 44, + aux_sym_unquoted_token2, + ACTIONS(1751), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268362,10 +267087,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268378,6 +267101,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -268395,16 +267119,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37028] = 6, + [36571] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(2188), 1, + STATE(2170), 1, sym_comment, - ACTIONS(1865), 13, + STATE(2203), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268418,8 +267140,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268431,8 +267152,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268462,14 +267185,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37101] = 5, + [36642] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2189), 1, + STATE(2171), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268483,7 +267206,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268528,14 +267251,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37172] = 5, + [36713] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2190), 1, + STATE(2172), 1, sym_comment, - STATE(2217), 1, + STATE(2204), 1, aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268549,7 +267272,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268594,14 +267317,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37243] = 5, + [36784] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2191), 1, + STATE(2173), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(1731), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268615,7 +267336,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(5266), 44, + aux_sym_unquoted_token2, + ACTIONS(1733), 44, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268627,10 +267350,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268643,6 +267364,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -268660,16 +267382,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37314] = 6, + [36853] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, - STATE(2192), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2174), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268683,8 +267403,7 @@ 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), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268696,8 +267415,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -268727,14 +267448,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37387] = 5, + [36924] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2193), 1, + STATE(2175), 1, sym_comment, - ACTIONS(5272), 13, + STATE(2205), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268748,7 +267469,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268793,14 +267514,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37458] = 5, + [36995] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2194), 1, + STATE(2176), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268814,7 +267535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268859,14 +267580,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37529] = 5, + [37066] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2195), 1, + STATE(2177), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2206), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268880,7 +267601,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268925,14 +267646,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37600] = 5, + [37137] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2196), 1, + STATE(2178), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -268946,7 +267667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -268991,81 +267712,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37671] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2197), 1, - sym_comment, - ACTIONS(2241), 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(2237), 44, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [37744] = 5, + [37208] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2157), 1, aux_sym_shebang_repeat1, - STATE(2198), 1, + STATE(2179), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269079,7 +267733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269124,16 +267778,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37815] = 6, + [37279] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2199), 1, + STATE(2180), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + STATE(2207), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269147,8 +267799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269160,8 +267811,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269191,16 +267844,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37888] = 6, + [37350] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2200), 1, + STATE(2181), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(1772), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269214,7 +267863,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(5127), 43, + aux_sym_unquoted_token2, + ACTIONS(1774), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269241,6 +267891,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -269258,16 +267909,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [37961] = 6, + [37419] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2201), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2182), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269281,8 +267930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269294,8 +267942,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269325,16 +267975,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38034] = 6, + [37490] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2202), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2183), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269348,8 +267996,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269361,8 +268008,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269392,14 +268041,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38107] = 5, + [37561] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2203), 1, + STATE(2184), 1, sym_comment, - ACTIONS(5268), 13, + ACTIONS(1817), 14, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269413,61 +268060,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(5266), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [38178] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2204), 1, - sym_comment, - ACTIONS(2247), 12, + aux_sym_unquoted_token2, + ACTIONS(1819), 44, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -269480,11 +268074,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(2245), 44, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269493,30 +268084,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -269525,14 +268106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38251] = 5, + [37630] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2205), 1, + STATE(2185), 1, sym_comment, - ACTIONS(5268), 13, + STATE(2208), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269546,7 +268127,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5266), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269591,14 +268172,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38322] = 5, + [37701] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2206), 1, - sym_comment, - STATE(2211), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + STATE(2186), 1, + sym_comment, + ACTIONS(5255), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269612,7 +268193,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5253), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269657,16 +268238,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38393] = 6, + [37772] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2207), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2187), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269680,8 +268259,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269693,8 +268271,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269724,16 +268304,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38466] = 6, + [37843] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2208), 1, + STATE(2188), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + STATE(2209), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269747,8 +268325,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5257), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269760,8 +268337,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269791,16 +268370,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38539] = 6, + [37914] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2209), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2189), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(5129), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269814,8 +268391,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, - ts_builtin_sym_end, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269827,8 +268403,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269858,12 +268436,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38612] = 4, + [37985] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2210), 1, + STATE(2190), 1, sym_comment, - ACTIONS(1757), 14, + STATE(2210), 1, + aux_sym_shebang_repeat1, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269877,9 +268457,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1759), 44, - ts_builtin_sym_end, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269891,8 +268469,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -269905,7 +268485,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -269923,14 +268502,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38681] = 5, + [38056] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2211), 1, + STATE(2191), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -269944,7 +268523,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -269989,14 +268568,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38752] = 5, + [38127] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2203), 1, + STATE(2192), 1, + sym_comment, + STATE(2211), 1, aux_sym_shebang_repeat1, - STATE(2212), 1, + ACTIONS(5150), 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(5148), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38198] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2193), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270010,7 +268655,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270055,14 +268700,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38823] = 5, + [38269] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2213), 1, + STATE(2194), 1, sym_comment, - STATE(2310), 1, + STATE(2212), 1, aux_sym_shebang_repeat1, - ACTIONS(5162), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270076,7 +268721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270121,14 +268766,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38894] = 5, + [38340] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2214), 1, + STATE(2195), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5243), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270142,7 +268787,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5241), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270187,14 +268832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [38965] = 5, + [38411] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2215), 1, + STATE(2196), 1, sym_comment, - STATE(2272), 1, + STATE(2213), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270208,7 +268853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270253,14 +268898,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39036] = 5, + [38482] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2216), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2197), 1, sym_comment, - STATE(2282), 1, + ACTIONS(5243), 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(5241), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38553] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2198), 1, + sym_comment, + STATE(2214), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + ACTIONS(5150), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270274,7 +268985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5148), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270319,14 +269030,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39107] = 5, + [38624] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2158), 1, aux_sym_shebang_repeat1, - STATE(2217), 1, + STATE(2199), 1, + sym_comment, + ACTIONS(5140), 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(5138), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [38695] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2200), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270340,7 +269117,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270385,17 +269162,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39178] = 6, - ACTIONS(3), 1, + [38766] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(2218), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2201), 1, sym_comment, - ACTIONS(1000), 12, - ts_builtin_sym_end, + ACTIONS(5263), 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(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270407,11 +269195,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1004), 44, - anon_sym_GT2, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270420,30 +269207,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -270452,14 +269228,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39251] = 5, + [38837] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2219), 1, - sym_comment, - STATE(2255), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5162), 13, + STATE(2202), 1, + sym_comment, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270473,7 +269249,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270518,83 +269294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39322] = 8, + [38908] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5258), 1, - anon_sym_DOT2, - STATE(2220), 1, - sym_comment, - STATE(2426), 1, - aux_sym_cell_path_repeat1, - STATE(2560), 1, - sym_path, - STATE(2646), 1, - sym_cell_path, - ACTIONS(935), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(937), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [39399] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2221), 1, - sym_comment, - STATE(2306), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + STATE(2203), 1, + sym_comment, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270608,7 +269315,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270653,12 +269360,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39470] = 4, + [38979] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2222), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2204), 1, sym_comment, - ACTIONS(4941), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270672,8 +269381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4939), 45, - ts_builtin_sym_end, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270685,6 +269393,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -270700,7 +269409,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270718,14 +269426,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39539] = 5, + [39050] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2223), 1, + STATE(2205), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270739,7 +269447,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270784,12 +269492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39610] = 4, + [39121] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2224), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2206), 1, sym_comment, - ACTIONS(1765), 14, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270803,9 +269513,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1767), 44, - ts_builtin_sym_end, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270817,8 +269525,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -270831,7 +269541,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -270849,14 +269558,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39679] = 5, + [39192] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2225), 1, - sym_comment, - STATE(2244), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5162), 13, + STATE(2207), 1, + sym_comment, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270870,7 +269579,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270915,14 +269624,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39750] = 5, + [39263] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2226), 1, + STATE(2208), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -270936,7 +269645,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -270981,12 +269690,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39821] = 4, + [39334] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2227), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2209), 1, sym_comment, - ACTIONS(4998), 13, + ACTIONS(5267), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271000,8 +269711,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4996), 45, - ts_builtin_sym_end, + ACTIONS(5265), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271013,6 +269723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -271028,7 +269739,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -271046,14 +269756,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39890] = 5, + [39405] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2194), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2228), 1, + STATE(2210), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271067,7 +269777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271112,14 +269822,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [39961] = 5, + [39476] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2205), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2229), 1, + STATE(2211), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271133,7 +269843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271178,14 +269888,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40032] = 5, + [39547] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2168), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2230), 1, + STATE(2212), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271199,7 +269909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271244,14 +269954,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40103] = 5, + [39618] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2231), 1, + STATE(2213), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271265,7 +269975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271310,14 +270020,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40174] = 5, + [39689] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2232), 1, + STATE(2214), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5263), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271331,7 +270041,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5261), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271376,14 +270086,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40245] = 5, + [39760] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2159), 1, aux_sym_shebang_repeat1, - STATE(2233), 1, + STATE(2215), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271397,7 +270107,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271442,14 +270152,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40316] = 5, + [39831] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2150), 1, aux_sym_shebang_repeat1, - STATE(2234), 1, + STATE(2216), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271463,7 +270173,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271508,14 +270218,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40387] = 5, + [39902] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2537), 1, + anon_sym_DOLLAR, + ACTIONS(5269), 1, + anon_sym_LPAREN2, + ACTIONS(5271), 1, + anon_sym_DOT, + ACTIONS(5275), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5277), 1, + aux_sym__immediate_decimal_token5, + STATE(2217), 1, + sym_comment, + STATE(2723), 1, + sym__immediate_decimal, + ACTIONS(1543), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5273), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2848), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [39989] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2235), 1, + STATE(2218), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271529,7 +270313,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271574,14 +270358,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40458] = 5, + [40060] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2236), 1, + STATE(2219), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271595,7 +270379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271640,14 +270424,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40529] = 5, + [40131] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2237), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2220), 1, sym_comment, - STATE(2249), 1, - aux_sym_shebang_repeat1, - ACTIONS(5162), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271661,7 +270447,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(5160), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271673,10 +270460,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271706,63 +270491,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40600] = 13, - ACTIONS(3), 1, + [40204] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2547), 1, - anon_sym_DOLLAR, - ACTIONS(5282), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - ACTIONS(5284), 1, - anon_sym_DOT, - ACTIONS(5288), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5290), 1, - aux_sym__immediate_decimal_token5, - STATE(2238), 1, + STATE(2221), 1, sym_comment, - STATE(2678), 1, - sym__immediate_decimal, - ACTIONS(1553), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5286), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2805), 2, + STATE(7348), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5088), 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, @@ -271771,6 +270514,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5086), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -271779,15 +270558,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [40687] = 5, + [40277] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2226), 1, - aux_sym_shebang_repeat1, - STATE(2239), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2222), 1, sym_comment, - ACTIONS(5162), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271801,7 +270581,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(5160), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271813,10 +270594,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271846,14 +270625,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40758] = 5, + [40350] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2240), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2223), 1, sym_comment, - STATE(2275), 1, - aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271867,7 +270648,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(5164), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271879,10 +270661,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271912,14 +270692,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40829] = 5, + [40423] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2241), 1, + ACTIONS(4985), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(5279), 1, + anon_sym_DOT, + STATE(2224), 1, sym_comment, - ACTIONS(5294), 13, + ACTIONS(1749), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271933,7 +270715,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(5292), 44, + ACTIONS(1751), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -271945,10 +270728,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -271978,14 +270759,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40900] = 5, + [40496] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2242), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2225), 1, sym_comment, - ACTIONS(5254), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -271999,7 +270782,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(5252), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272011,10 +270795,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272044,14 +270826,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [40971] = 5, + [40569] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2243), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2226), 1, sym_comment, - STATE(2278), 1, - aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272065,7 +270849,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(5172), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272077,10 +270862,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272110,14 +270893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41042] = 5, + [40642] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2244), 1, + STATE(2227), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272131,7 +270914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272176,14 +270959,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41113] = 5, + [40713] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2245), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2228), 1, sym_comment, - STATE(2250), 1, - aux_sym_shebang_repeat1, - ACTIONS(5298), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272197,7 +270982,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(5296), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272209,10 +270995,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272242,14 +271026,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41184] = 5, + [40786] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2246), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2229), 1, sym_comment, - ACTIONS(5254), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272263,7 +271049,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(5252), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272275,10 +271062,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272308,14 +271093,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41255] = 5, + [40859] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2247), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2230), 1, sym_comment, - STATE(2263), 1, - aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272329,7 +271116,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(5172), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272341,10 +271129,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272374,14 +271160,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41326] = 5, + [40932] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2198), 1, - aux_sym_shebang_repeat1, - STATE(2248), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2231), 1, sym_comment, - ACTIONS(5188), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272395,7 +271183,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(5186), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272407,10 +271196,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272440,14 +271227,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41397] = 5, + [41005] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2249), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2232), 1, sym_comment, - ACTIONS(5280), 13, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272461,7 +271250,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(5278), 44, + ACTIONS(5086), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272473,10 +271263,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272506,14 +271294,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41468] = 5, + [41078] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2233), 1, + sym_comment, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 13, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5086), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [41151] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2160), 1, aux_sym_shebang_repeat1, - STATE(2250), 1, + STATE(2234), 1, sym_comment, - ACTIONS(5302), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272527,7 +271382,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272572,14 +271427,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41539] = 5, + [41222] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2251), 1, + STATE(2235), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272593,7 +271448,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272638,14 +271493,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41610] = 5, + [41293] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2161), 1, aux_sym_shebang_repeat1, - STATE(2252), 1, + STATE(2236), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272659,7 +271514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272704,14 +271559,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41681] = 5, + [41364] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2151), 1, aux_sym_shebang_repeat1, - STATE(2253), 1, + STATE(2237), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272725,7 +271580,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272770,14 +271625,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41752] = 5, + [41435] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2251), 1, - aux_sym_shebang_repeat1, - STATE(2254), 1, + STATE(2238), 1, sym_comment, - ACTIONS(5162), 13, + STATE(2295), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272791,7 +271646,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272836,14 +271691,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41823] = 5, + [41506] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2227), 1, aux_sym_shebang_repeat1, - STATE(2255), 1, + STATE(2239), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272857,7 +271712,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -272902,16 +271757,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41894] = 6, - ACTIONS(251), 1, + [41577] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, + STATE(2240), 1, + sym_comment, + ACTIONS(2218), 13, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_LPAREN2, - STATE(2256), 1, + ACTIONS(2216), 45, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token4, + [41646] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2241), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4848), 13, + ACTIONS(4973), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272925,7 +271841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4846), 43, + ACTIONS(4971), 45, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -272940,6 +271856,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -272952,6 +271869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -272969,16 +271887,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [41967] = 6, + [41715] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2257), 1, + STATE(2162), 1, + aux_sym_shebang_repeat1, + STATE(2242), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4852), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -272992,8 +271908,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4850), 43, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273005,8 +271920,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273036,14 +271953,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42040] = 5, + [41786] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2258), 1, + STATE(2243), 1, sym_comment, - STATE(2303), 1, + STATE(2273), 1, aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273057,7 +271974,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273102,14 +272019,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42111] = 5, + [41857] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2259), 1, + STATE(2244), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273123,7 +272040,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273168,14 +272085,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42182] = 5, + [41928] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2183), 1, aux_sym_shebang_repeat1, - STATE(2260), 1, + STATE(2245), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273189,7 +272106,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273234,14 +272151,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42253] = 5, + [41999] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2253), 1, + STATE(2165), 1, aux_sym_shebang_repeat1, - STATE(2261), 1, + STATE(2246), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273255,7 +272172,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273300,14 +272217,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42324] = 5, + [42070] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2180), 1, + STATE(2219), 1, aux_sym_shebang_repeat1, - STATE(2262), 1, + STATE(2247), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273321,7 +272238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273366,14 +272283,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42395] = 5, + [42141] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2263), 1, + STATE(2248), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(4977), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273387,7 +272302,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(5274), 44, + ACTIONS(4975), 45, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273399,7 +272315,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -273415,6 +272330,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -273432,14 +272348,149 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42466] = 5, + [42210] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2264), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2249), 1, sym_comment, - STATE(2285), 1, + STATE(2302), 1, + aux_sym_cell_path_repeat1, + STATE(2584), 1, + sym_path, + STATE(2605), 1, + sym_cell_path, + ACTIONS(1721), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1723), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [42287] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + STATE(2250), 1, + sym_comment, + ACTIONS(1663), 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(1675), 44, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [42358] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2244), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + STATE(2251), 1, + sym_comment, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273453,7 +272504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273498,14 +272549,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42537] = 5, + [42429] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2182), 1, - aux_sym_shebang_repeat1, - STATE(2265), 1, + STATE(2252), 1, sym_comment, - ACTIONS(5188), 13, + STATE(2271), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273519,7 +272570,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273564,14 +272615,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42608] = 5, + [42500] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2168), 1, aux_sym_shebang_repeat1, - STATE(2266), 1, + STATE(2253), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273585,7 +272636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273630,82 +272681,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, - [42679] = 5, + [42571] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2259), 1, - aux_sym_shebang_repeat1, - STATE(2267), 1, - sym_comment, - ACTIONS(5162), 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(5160), 44, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5285), 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_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [42750] = 6, + ACTIONS(5287), 1, + anon_sym_RBRACK, + STATE(2254), 1, + sym_comment, + STATE(2420), 1, + aux_sym_shebang_repeat1, + STATE(2579), 1, + aux_sym_command_list_repeat1, + STATE(3621), 1, + sym__val_number_decimal, + STATE(6621), 1, + sym__command_name, + STATE(6831), 1, + sym_cmd_identifier, + STATE(6832), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5281), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5283), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [42670] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2268), 1, + STATE(2255), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 13, + STATE(2281), 1, + aux_sym_shebang_repeat1, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273719,8 +272782,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4858), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273732,8 +272794,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273763,16 +272827,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42823] = 6, + [42741] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(2269), 1, + STATE(2171), 1, + aux_sym_shebang_repeat1, + STATE(2256), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4864), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273786,8 +272848,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(4862), 43, - ts_builtin_sym_end, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273799,8 +272860,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -273830,14 +272893,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42896] = 5, + [42812] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2231), 1, + STATE(2149), 1, aux_sym_shebang_repeat1, - STATE(2270), 1, + STATE(2257), 1, sym_comment, - ACTIONS(5162), 13, + ACTIONS(5291), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273851,7 +272914,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5160), 44, + ACTIONS(5289), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273896,14 +272959,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [42967] = 5, + [42883] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2184), 1, + STATE(2163), 1, aux_sym_shebang_repeat1, - STATE(2271), 1, + STATE(2258), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273917,7 +272980,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -273962,14 +273025,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, - [43038] = 5, + [42954] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + STATE(2259), 1, + sym_comment, + STATE(2426), 1, + aux_sym_decl_def_repeat1, + STATE(2954), 1, + sym_long_flag, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6477), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4932), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [43053] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2152), 1, aux_sym_shebang_repeat1, - STATE(2272), 1, + STATE(2260), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -273983,7 +273126,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274028,14 +273171,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43109] = 5, + [43124] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2273), 1, - sym_comment, - STATE(2290), 1, + STATE(2189), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 13, + STATE(2261), 1, + sym_comment, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274049,7 +273192,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274094,16 +273237,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43180] = 6, + [43195] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4957), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(5304), 1, - anon_sym_DOT, - STATE(2274), 1, + STATE(2200), 1, + aux_sym_shebang_repeat1, + STATE(2262), 1, sym_comment, - ACTIONS(1725), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274117,8 +273258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1727), 43, - ts_builtin_sym_end, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274130,8 +273270,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274161,14 +273303,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43253] = 5, + [43266] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2174), 1, aux_sym_shebang_repeat1, - STATE(2275), 1, + STATE(2263), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274182,7 +273324,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274227,14 +273369,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43324] = 5, + [43337] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2185), 1, + STATE(2218), 1, aux_sym_shebang_repeat1, - STATE(2276), 1, + STATE(2264), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274248,7 +273390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274293,52 +273435,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43395] = 19, + [43408] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, - anon_sym_DASH_DASH, - STATE(2277), 1, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2265), 1, sym_comment, - STATE(2445), 1, - aux_sym_decl_def_repeat1, - STATE(3006), 1, - sym_long_flag, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6405), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + STATE(2302), 1, + aux_sym_cell_path_repeat1, + STATE(2584), 1, + sym_path, + STATE(2591), 1, + sym_cell_path, + ACTIONS(1757), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(1759), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -274373,14 +273491,27 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [43494] = 5, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [43485] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2176), 1, aux_sym_shebang_repeat1, - STATE(2278), 1, + STATE(2266), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274394,7 +273525,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274439,14 +273570,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43565] = 5, + [43556] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2235), 1, aux_sym_shebang_repeat1, - STATE(2279), 1, + STATE(2267), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5175), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274460,7 +273591,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5173), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274505,14 +273636,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43636] = 5, + [43627] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2186), 1, - aux_sym_shebang_repeat1, - STATE(2280), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2268), 1, sym_comment, - ACTIONS(5188), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4900), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274526,57 +273659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43707] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2281), 1, - sym_comment, - ACTIONS(2267), 13, + ACTIONS(4898), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -274589,12 +273672,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2265), 45, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274603,30 +273682,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -274635,15 +273703,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token4, - [43776] = 5, + [43700] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2282), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2269), 1, sym_comment, - ACTIONS(5276), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4813), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274657,7 +273726,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(5274), 44, + ACTIONS(4811), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274669,10 +273739,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -274702,80 +273770,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, - [43847] = 5, + [43773] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2283), 1, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5285), 1, + sym__newline, + ACTIONS(5295), 1, + anon_sym_RBRACK, + STATE(2270), 1, sym_comment, - STATE(2293), 1, + STATE(2314), 1, aux_sym_shebang_repeat1, - ACTIONS(5174), 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(5172), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [43918] = 5, + STATE(2549), 1, + aux_sym_command_list_repeat1, + STATE(3621), 1, + sym__val_number_decimal, + STATE(6831), 1, + sym_cmd_identifier, + STATE(6832), 1, + sym_val_string, + STATE(6922), 1, + sym__command_name, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5281), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5283), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [43872] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2187), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2284), 1, + STATE(2271), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274789,7 +273871,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274834,14 +273916,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [43989] = 5, + [43943] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2178), 1, aux_sym_shebang_repeat1, - STATE(2285), 1, + STATE(2272), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274855,7 +273937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274900,14 +273982,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44060] = 5, + [44014] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2286), 1, - sym_comment, - STATE(2296), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 13, + STATE(2273), 1, + sym_comment, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274921,7 +274003,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -274966,14 +274048,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44131] = 5, + [44085] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2189), 1, + STATE(2182), 1, aux_sym_shebang_repeat1, - STATE(2287), 1, + STATE(2274), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -274987,7 +274069,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275032,14 +274114,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44202] = 5, + [44156] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2223), 1, - aux_sym_shebang_repeat1, - STATE(2288), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2275), 1, sym_comment, - ACTIONS(5166), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4817), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275053,7 +274137,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(5164), 44, + ACTIONS(4815), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275065,10 +274150,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275098,14 +274181,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44273] = 5, + [44229] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2232), 1, - aux_sym_shebang_repeat1, - STATE(2289), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2276), 1, sym_comment, - ACTIONS(5162), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4829), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275119,7 +274204,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(5160), 44, + ACTIONS(4827), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275131,10 +274217,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275164,149 +274248,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44344] = 5, + [44302] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2186), 1, aux_sym_shebang_repeat1, - STATE(2290), 1, - sym_comment, - ACTIONS(5276), 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(5274), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44415] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5258), 1, - anon_sym_DOT2, - STATE(2291), 1, - sym_comment, - STATE(2426), 1, - aux_sym_cell_path_repeat1, - STATE(2560), 1, - sym_path, - STATE(2608), 1, - sym_cell_path, - ACTIONS(1721), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1723), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [44492] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2292), 1, + STATE(2277), 1, sym_comment, - STATE(2308), 1, - aux_sym_shebang_repeat1, - ACTIONS(5166), 13, + ACTIONS(5299), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275320,7 +274269,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5164), 44, + ACTIONS(5297), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275365,14 +274314,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44563] = 5, + [44373] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2153), 1, aux_sym_shebang_repeat1, - STATE(2293), 1, + STATE(2278), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5140), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275386,7 +274335,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5138), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275431,14 +274380,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44634] = 5, + [44444] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2260), 1, + STATE(2187), 1, aux_sym_shebang_repeat1, - STATE(2294), 1, + STATE(2279), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275452,7 +274401,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5172), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275497,14 +274446,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44705] = 5, + [44515] = 5, ACTIONS(251), 1, anon_sym_POUND, STATE(2191), 1, aux_sym_shebang_repeat1, - STATE(2295), 1, + STATE(2280), 1, sym_comment, - ACTIONS(5188), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275518,7 +274467,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5186), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275563,14 +274512,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44776] = 5, + [44586] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2296), 1, + STATE(2281), 1, sym_comment, - ACTIONS(5312), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275584,7 +274533,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275629,14 +274578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44847] = 5, + [44657] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2193), 1, aux_sym_shebang_repeat1, - STATE(2297), 1, + STATE(2282), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275650,7 +274599,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275695,80 +274644,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [44918] = 5, + [44728] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - STATE(2298), 1, - sym_comment, - ACTIONS(1681), 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(1693), 44, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [44989] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2297), 1, - aux_sym_shebang_repeat1, - STATE(2299), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(2283), 1, sym_comment, - ACTIONS(5174), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275782,7 +274667,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(5172), 44, + ACTIONS(1813), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275794,10 +274680,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275827,14 +274711,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45060] = 5, + [44801] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2246), 1, - aux_sym_shebang_repeat1, - STATE(2300), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(2284), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(2188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275848,7 +274734,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(5164), 44, + ACTIONS(2190), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275860,10 +274747,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -275893,16 +274778,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45131] = 6, + [44874] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - STATE(2301), 1, + STATE(2285), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(1793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275916,7 +274801,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2186), 43, + ACTIONS(1801), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -275960,14 +274845,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45204] = 5, + [44947] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2242), 1, - aux_sym_shebang_repeat1, - STATE(2302), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(2286), 1, sym_comment, - ACTIONS(5166), 13, + ACTIONS(2170), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -275981,7 +274868,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(5164), 44, + ACTIONS(2174), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -275993,10 +274881,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276026,14 +274912,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45275] = 5, + [45020] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2303), 1, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(2287), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(2180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276047,7 +274935,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(5252), 44, + ACTIONS(2184), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276059,10 +274948,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276092,28 +274979,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, - [45346] = 5, - ACTIONS(251), 1, + [45093] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2195), 1, - aux_sym_shebang_repeat1, - STATE(2304), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(2288), 1, sym_comment, - ACTIONS(5188), 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(5186), 44, + ACTIONS(2230), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276125,10 +275001,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2226), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276137,19 +275014,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276158,28 +275046,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, - [45417] = 5, - ACTIONS(251), 1, + [45166] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2252), 1, - aux_sym_shebang_repeat1, - STATE(2305), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(2289), 1, sym_comment, - ACTIONS(5162), 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(5160), 44, + ACTIONS(1000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276191,10 +275068,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(1004), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276203,19 +275081,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276224,14 +275113,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, - [45488] = 5, + [45239] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + STATE(2290), 1, + sym_comment, + STATE(2426), 1, + aux_sym_decl_def_repeat1, + STATE(2954), 1, + sym_long_flag, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6477), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4932), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [45338] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2195), 1, aux_sym_shebang_repeat1, - STATE(2306), 1, + STATE(2291), 1, sym_comment, - ACTIONS(5276), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276245,7 +275214,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5274), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276290,14 +275259,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45559] = 5, + [45409] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(2197), 1, aux_sym_shebang_repeat1, - STATE(2307), 1, + STATE(2292), 1, sym_comment, - ACTIONS(5254), 13, + ACTIONS(5144), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276311,7 +275280,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5252), 44, + ACTIONS(5142), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276356,28 +275325,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, - [45630] = 5, - ACTIONS(251), 1, + [45480] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2308), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(2293), 1, sym_comment, - ACTIONS(5254), 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(5252), 44, + ACTIONS(2196), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276389,10 +275347,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(2192), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276401,19 +275360,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276422,27 +275392,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45701] = 4, - ACTIONS(251), 1, + [45553] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2309), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(2294), 1, sym_comment, - ACTIONS(1725), 14, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token2, - ACTIONS(1727), 44, + ACTIONS(2202), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -276455,8 +275414,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, + ACTIONS(2200), 44, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276465,20 +275427,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -276487,14 +275459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [45770] = 5, + [45626] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2310), 1, + STATE(2295), 1, sym_comment, - ACTIONS(5280), 13, + ACTIONS(5247), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -276508,7 +275480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5278), 44, + ACTIONS(5245), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -276553,27 +275525,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, - [45841] = 9, + [45697] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2311), 1, - sym_comment, - STATE(2358), 1, + STATE(2146), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5262), 11, + STATE(2296), 1, + sym_comment, + ACTIONS(5140), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -276583,7 +275546,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(5260), 38, + ACTIONS(5138), 44, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276597,6 +275561,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276609,92 +275574,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [45919] = 21, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5331), 1, - anon_sym_xor2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - STATE(2312), 1, - sym_comment, - STATE(2346), 1, - aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 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(5306), 20, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, + 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, @@ -276703,45 +275591,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46021] = 15, + [45768] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5347), 1, - sym__newline, - STATE(2313), 1, - sym_comment, - STATE(2348), 1, - aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(2297), 1, + sym_comment, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5088), 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, @@ -276750,7 +275614,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(5306), 27, + ACTIONS(5086), 43, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276761,12 +275627,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -276778,31 +275658,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46111] = 11, + [45841] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5347), 1, - sym__newline, - STATE(2314), 1, + ACTIONS(4676), 1, + anon_sym_COLON2, + STATE(2298), 1, sym_comment, - STATE(2352), 1, - aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5308), 10, + ACTIONS(1004), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276811,7 +275679,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(5306), 37, + ACTIONS(1000), 43, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276822,8 +275691,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -276836,6 +275706,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -276849,48 +275723,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46193] = 16, + [45911] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5347), 1, - sym__newline, - STATE(2315), 1, - sym_comment, - STATE(2354), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + STATE(2299), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276899,7 +275771,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(5306), 25, + ACTIONS(5253), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276925,50 +275798,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46285] = 17, + [46001] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5347), 1, + ACTIONS(5321), 1, sym__newline, - STATE(2316), 1, + STATE(2300), 1, sym_comment, - STATE(2357), 1, + STATE(2349), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5259), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -276977,7 +275824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 24, + ACTIONS(5257), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -276989,9 +275836,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_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, @@ -277002,52 +275865,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46379] = 18, + [46075] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5347), 1, - sym__newline, - STATE(2317), 1, + STATE(2301), 1, sym_comment, - STATE(2360), 1, + STATE(2371), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277056,7 +275915,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 23, + ACTIONS(5257), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277071,6 +275930,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277080,97 +275941,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46475] = 11, + [46167] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5235), 1, + anon_sym_DOT2, + STATE(2302), 1, + sym_comment, + STATE(2358), 1, + aux_sym_cell_path_repeat1, + STATE(2584), 1, + sym_path, + ACTIONS(948), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(950), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [46241] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2318), 1, + STATE(2303), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5302), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5300), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5305), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [46557] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2319), 1, - sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5302), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277179,7 +276058,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 39, + ACTIONS(5253), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277192,23 +276071,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -277219,38 +276084,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46633] = 13, + [46333] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2320), 1, + STATE(2304), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 4, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5302), 8, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277259,7 +276136,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 32, + ACTIONS(5231), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277272,17 +276149,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277292,22 +276161,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46719] = 6, + [46427] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2321), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + STATE(2305), 1, sym_comment, - ACTIONS(5354), 2, + STATE(2434), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5302), 13, + ACTIONS(5326), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277316,8 +276217,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 41, - sym__newline, + ACTIONS(5249), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277329,27 +276229,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277358,29 +276240,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46791] = 6, + [46525] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5366), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5368), 1, - aux_sym__immediate_decimal_token2, - STATE(2322), 1, + ACTIONS(5357), 1, + anon_sym_DOT2, + STATE(2306), 1, sym_comment, - ACTIONS(1595), 11, + STATE(2535), 1, + aux_sym_cell_path_repeat1, + STATE(2588), 1, + sym_path, + STATE(2684), 1, + sym_cell_path, + ACTIONS(1757), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - aux_sym__val_number_decimal_token1, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 44, + ACTIONS(1759), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -277415,61 +276297,134 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [46863] = 18, + [46601] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5162), 1, + sym__newline, + STATE(2307), 1, + sym_comment, + ACTIONS(5167), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5171), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + 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(5165), 20, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(5169), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [46675] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5361), 1, + anon_sym_xor2, + ACTIONS(5363), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2323), 1, + STATE(2308), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5302), 8, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277478,7 +276433,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 23, + ACTIONS(5237), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277491,8 +276446,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277502,54 +276455,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [46959] = 19, + [46775] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - ACTIONS(5380), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2324), 1, + STATE(2309), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2321), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5302), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277558,8 +276509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 22, - sym__newline, + ACTIONS(5249), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277571,8 +276521,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277581,61 +276533,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47057] = 12, - ACTIONS(3), 1, + [46871] = 17, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(5388), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5390), 1, - aux_sym__immediate_decimal_token5, - STATE(2325), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + STATE(2310), 1, sym_comment, - STATE(2901), 1, - sym__immediate_decimal, - ACTIONS(1553), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5386), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3044), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(2373), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277644,6 +276585,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5257), 24, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277652,57 +276610,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [47141] = 20, + [46965] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, + ACTIONS(5363), 1, anon_sym_bit_DASHor2, - ACTIONS(5380), 1, - anon_sym_and2, - ACTIONS(5392), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2326), 1, + STATE(2311), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5302), 8, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277711,7 +276664,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 21, + ACTIONS(5253), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277724,6 +276677,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -277733,43 +276688,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47241] = 14, + [47061] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2327), 1, + ACTIONS(5365), 1, + sym__newline, + STATE(2312), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2333), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5299), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277778,8 +276724,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 28, - sym__newline, + ACTIONS(5297), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -277791,9 +276736,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -277807,29 +276760,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47329] = 10, + [47145] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2328), 1, + STATE(2313), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5302), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277838,7 +276816,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 38, + ACTIONS(5231), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -277851,24 +276829,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -277877,39 +276839,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47409] = 12, + [47243] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5285), 1, + sym__newline, + STATE(2314), 1, + sym_comment, + STATE(2573), 1, + aux_sym_command_list_repeat1, + STATE(2898), 1, + aux_sym_shebang_repeat1, + STATE(3621), 1, + sym__val_number_decimal, + STATE(6754), 1, + sym__command_name, + STATE(6831), 1, + sym_cmd_identifier, + STATE(6832), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5281), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5283), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [47339] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(5388), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5390), 1, - aux_sym__immediate_decimal_token5, - STATE(2329), 1, + ACTIONS(5368), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5370), 1, + aux_sym__immediate_decimal_token2, + STATE(2315), 1, sym_comment, - STATE(2939), 1, - sym__immediate_decimal, - ACTIONS(1629), 2, + ACTIONS(1599), 7, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(5386), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3096), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1627), 45, + ACTIONS(1597), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -277949,46 +276982,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [47493] = 15, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token2, + [47411] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2330), 1, + ACTIONS(5372), 1, + anon_sym_DOT, + ACTIONS(5374), 1, + aux_sym__immediate_decimal_token2, + STATE(2316), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 8, + ACTIONS(1607), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1605), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -277997,25 +277039,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 26, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278024,48 +277047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47583] = 16, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [47483] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2331), 1, + STATE(2317), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5167), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278074,7 +277068,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5300), 25, + ACTIONS(5169), 44, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278087,87 +277081,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [47675] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2332), 1, - sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5302), 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(5300), 24, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_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, @@ -278177,30 +277113,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47769] = 11, + [47551] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2333), 1, + ACTIONS(5376), 1, + sym__newline, + STATE(2318), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2428), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5312), 10, + ACTIONS(5291), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -278211,8 +277149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 36, - sym__newline, + ACTIONS(5289), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278248,34 +277185,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47851] = 12, + [47635] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - sym__newline, - STATE(2334), 1, - sym_comment, - STATE(2372), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + STATE(2319), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5242), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278284,7 +277237,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(5240), 35, + ACTIONS(5253), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278292,25 +277246,13 @@ 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, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -278320,23 +277262,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [47935] = 8, + [47729] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2335), 1, + ACTIONS(5376), 1, + sym__newline, + STATE(2320), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2432), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5312), 11, + ACTIONS(5291), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -278348,8 +277292,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 39, - sym__newline, + ACTIONS(5289), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278388,28 +277331,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48011] = 9, + [47807] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, - STATE(2336), 1, - sym_comment, - STATE(2374), 1, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + STATE(2321), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5242), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278418,7 +277383,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(5240), 38, + ACTIONS(5237), 24, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278430,24 +277396,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -278457,38 +277408,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48089] = 13, + [47901] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2337), 1, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + STATE(2322), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2375), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 4, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5312), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278497,8 +277462,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 32, - sym__newline, + ACTIONS(5257), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278510,17 +277474,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -278530,106 +277486,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48175] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5397), 1, - anon_sym_DOT, - ACTIONS(5399), 1, - aux_sym__immediate_decimal_token2, - STATE(2338), 1, - sym_comment, - ACTIONS(1587), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [48247] = 14, + [47997] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, + ACTIONS(5376), 1, sym__newline, - STATE(2339), 1, + STATE(2323), 1, sym_comment, - STATE(2375), 1, + STATE(2412), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278638,7 +277528,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 31, + ACTIONS(5289), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278670,17 +277560,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48335] = 6, + [48085] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2340), 1, + ACTIONS(5348), 1, + sym__newline, + STATE(2324), 1, sym_comment, - ACTIONS(5354), 2, + STATE(2340), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 13, + ACTIONS(5251), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -278694,8 +277586,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 41, - sym__newline, + ACTIONS(5249), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278736,23 +277627,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48407] = 7, + [48159] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, - STATE(2341), 1, - sym_comment, - STATE(2377), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, + STATE(2325), 1, + sym_comment, + ACTIONS(5307), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5242), 13, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 11, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -278762,7 +277655,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(5240), 40, + ACTIONS(5237), 39, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278788,8 +277682,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -278803,52 +277695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48481] = 18, + [48235] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2342), 1, + ACTIONS(5379), 1, + anon_sym_LBRACK2, + STATE(2326), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(2280), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278857,7 +277716,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(5310), 23, + ACTIONS(2284), 43, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -278869,10 +277729,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278881,54 +277760,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48577] = 19, + [48305] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - ACTIONS(5394), 1, + ACTIONS(5365), 1, sym__newline, - STATE(2343), 1, + STATE(2327), 1, sym_comment, - STATE(2378), 1, + STATE(2369), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5299), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5242), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -278937,7 +277790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 22, + ACTIONS(5297), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -278949,9 +277802,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -278960,54 +277829,92 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48675] = 19, + [48383] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - ACTIONS(5380), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2344), 1, + ACTIONS(5357), 1, + anon_sym_DOT2, + STATE(2328), 1, sym_comment, - ACTIONS(5352), 2, + STATE(2535), 1, + aux_sym_cell_path_repeat1, + STATE(2588), 1, + sym_path, + STATE(2674), 1, + sym_cell_path, + ACTIONS(935), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(937), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [48459] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5376), 1, + sym__newline, + STATE(2329), 1, + sym_comment, + STATE(2350), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5291), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279016,8 +277923,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 22, - sym__newline, + ACTIONS(5289), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279029,8 +277935,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279039,56 +277964,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48773] = 20, + [48533] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5343), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHor2, - ACTIONS(5394), 1, - sym__newline, - STATE(2345), 1, + STATE(2330), 1, sym_comment, - STATE(2379), 1, + STATE(2351), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279097,7 +278020,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 21, + ACTIONS(5257), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279109,6 +278032,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -279119,56 +278043,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48873] = 20, + [48631] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - ACTIONS(5380), 1, - anon_sym_and2, - ACTIONS(5392), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2346), 1, + STATE(2331), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279177,7 +278091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 21, + ACTIONS(5231), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279190,7 +278104,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_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, @@ -279199,58 +278118,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [48973] = 21, + [48721] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5331), 1, - anon_sym_xor2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5343), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHor2, - STATE(2347), 1, + ACTIONS(5376), 1, + sym__newline, + STATE(2332), 1, sym_comment, - STATE(2380), 1, + STATE(2383), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279259,7 +278174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 20, + ACTIONS(5289), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279271,6 +278186,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -279280,43 +278197,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49075] = 14, + [48819] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2348), 1, + STATE(2333), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5255), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279325,7 +278231,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 28, + ACTIONS(5253), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279338,9 +278244,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -279354,45 +278268,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49163] = 15, + [48901] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, + ACTIONS(5348), 1, sym__newline, - STATE(2349), 1, + STATE(2334), 1, sym_comment, - STATE(2381), 1, + STATE(2414), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279401,7 +278318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 27, + ACTIONS(5249), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279416,8 +278333,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_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279429,50 +278344,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49253] = 18, + [48993] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - STATE(2350), 1, + STATE(2335), 1, sym_comment, - STATE(2439), 1, + STATE(2866), 1, aux_sym_decl_def_repeat1, - STATE(3006), 1, + STATE(2954), 1, sym_long_flag, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6094), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6143), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -279507,32 +278422,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [49349] = 11, + [49089] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + ACTIONS(5376), 1, + sym__newline, + ACTIONS(5381), 1, + anon_sym_and2, + STATE(2313), 1, aux_sym_shebang_repeat1, - STATE(2351), 1, + STATE(2336), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5294), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279541,8 +278480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 36, - sym__newline, + ACTIONS(5289), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279554,22 +278492,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279578,27 +278502,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, - [49431] = 10, + [49189] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2352), 1, + STATE(2337), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5312), 10, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5267), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -279609,7 +278536,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 38, + ACTIONS(5265), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279635,8 +278562,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279648,31 +278573,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49511] = 11, + [49271] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - sym__newline, - STATE(2353), 1, - sym_comment, - STATE(2383), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + STATE(2338), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5242), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279681,7 +278629,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(5240), 37, + ACTIONS(5253), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279693,24 +278642,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -279719,46 +278652,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49593] = 15, + [49369] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2354), 1, + STATE(2339), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5267), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279767,7 +278680,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 26, + ACTIONS(5265), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -279780,9 +278693,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279794,34 +278720,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49683] = 12, + [49445] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, - sym__newline, - STATE(2318), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2355), 1, + STATE(2340), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5298), 10, + ACTIONS(5239), 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, @@ -279830,7 +278744,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(5296), 35, + ACTIONS(5237), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279842,6 +278757,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -279855,6 +278771,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -279866,48 +278786,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49767] = 16, + [49517] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5394), 1, - sym__newline, - STATE(2356), 1, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + ACTIONS(5381), 1, + anon_sym_and2, + ACTIONS(5383), 1, + anon_sym_xor2, + STATE(2341), 1, sym_comment, - STATE(2384), 1, + STATE(2367), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279916,7 +278846,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 25, + ACTIONS(5289), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -279928,12 +278858,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_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, @@ -279942,48 +278867,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [49859] = 16, + [49619] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2357), 1, + STATE(2342), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -279992,7 +278907,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 25, + ACTIONS(5265), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280005,9 +278920,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -280018,26 +278940,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, - [49951] = 8, + [49705] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2358), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3808), 1, + anon_sym_DOLLAR, + ACTIONS(5385), 1, + anon_sym_LPAREN2, + ACTIONS(5387), 1, + anon_sym_DOT, + ACTIONS(5389), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5391), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5393), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5395), 1, + aux_sym__immediate_decimal_token5, + STATE(2343), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5294), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + STATE(2827), 1, + sym__immediate_decimal, + STATE(2913), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280046,38 +278984,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + aux_sym__unquoted_in_list_token1, + ACTIONS(1543), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280086,50 +279014,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50027] = 17, + [49793] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5394), 1, + ACTIONS(5365), 1, sym__newline, - STATE(2359), 1, + STATE(2344), 1, sym_comment, - STATE(2385), 1, + STATE(2409), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280138,7 +279056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 24, + ACTIONS(5297), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280150,9 +279068,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -280163,50 +279088,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50121] = 17, + [49881] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2360), 1, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + ACTIONS(5381), 1, + anon_sym_and2, + STATE(2345), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2410), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5312), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280215,8 +279146,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5310), 24, - sym__newline, + ACTIONS(5249), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280228,10 +279158,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280240,121 +279168,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, - [50215] = 9, + [49981] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5376), 1, sym__newline, - STATE(2319), 1, - aux_sym_shebang_repeat1, - STATE(2361), 1, + STATE(2346), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + STATE(2398), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5298), 11, + ACTIONS(5326), 2, 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(5296), 38, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [50293] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5394), 1, - sym__newline, - STATE(2362), 1, - sym_comment, - STATE(2386), 1, - aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + ACTIONS(5332), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5242), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280363,7 +279215,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5240), 23, + ACTIONS(5289), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280378,6 +279230,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_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -280387,38 +279243,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50389] = 13, + [50071] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2363), 1, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + ACTIONS(5381), 1, + anon_sym_and2, + STATE(2347), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2353), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 4, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5294), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280427,8 +279301,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 32, - sym__newline, + ACTIONS(5257), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280440,18 +279313,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280460,40 +279323,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50475] = 14, + [50171] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5365), 1, sym__newline, - STATE(2320), 1, - aux_sym_shebang_repeat1, - STATE(2364), 1, + STATE(2348), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + STATE(2421), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + anon_sym_PLUS_PLUS2, + ACTIONS(5299), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5298), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280502,7 +279349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 31, + ACTIONS(5297), 40, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280514,6 +279361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -280521,8 +279369,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280534,19 +279390,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, - [50563] = 7, + [50245] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(2365), 1, - sym_comment, - STATE(2368), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5319), 2, + STATE(2349), 1, + sym_comment, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5262), 13, + ACTIONS(5267), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280560,7 +279414,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(5260), 40, + ACTIONS(5265), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280601,14 +279456,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, - [50637] = 5, + [50317] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4701), 1, - anon_sym_COLON2, - STATE(2366), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2350), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5233), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -280622,7 +279480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 43, + ACTIONS(5231), 41, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -280634,9 +279492,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -280649,8 +279507,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -280666,56 +279522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50707] = 20, + [50389] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHand2, - ACTIONS(5343), 1, + ACTIONS(5346), 1, anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, + ACTIONS(5363), 1, anon_sym_bit_DASHor2, - STATE(2367), 1, - sym_comment, - STATE(2382), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + STATE(2351), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5262), 8, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280724,7 +279576,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(5260), 21, + ACTIONS(5265), 23, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280736,6 +279589,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_and2, anon_sym_xor2, anon_sym_or2, anon_sym_err_GT_GT, @@ -280746,22 +279600,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50807] = 6, + [50485] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + STATE(2337), 1, aux_sym_shebang_repeat1, - STATE(2368), 1, + STATE(2352), 1, sym_comment, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5294), 13, - anon_sym_GT2, + ACTIONS(5332), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5259), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280770,8 +279636,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 41, - sym__newline, + ACTIONS(5257), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280783,7 +279648,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -280797,10 +279661,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -280812,20 +279672,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [50879] = 7, + [50569] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5149), 1, - sym__newline, - STATE(2369), 1, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2353), 1, sym_comment, - ACTIONS(5154), 5, + ACTIONS(5301), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5158), 8, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280834,7 +279728,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(5152), 20, + ACTIONS(5265), 22, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280846,7 +279741,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -280855,48 +279751,111 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(5156), 23, + [50667] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5303), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, anon_sym_and2, + ACTIONS(5361), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2354), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5311), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [50953] = 7, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + ACTIONS(5253), 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_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, + [50767] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5376), 1, sym__newline, - STATE(2321), 1, - aux_sym_shebang_repeat1, - STATE(2370), 1, + STATE(2355), 1, sym_comment, - ACTIONS(5319), 2, + STATE(2372), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5298), 13, - anon_sym_GT2, + ACTIONS(5332), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5291), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -280905,7 +279864,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 40, + ACTIONS(5289), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -280917,7 +279876,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -280931,8 +279889,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -280946,52 +279902,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51027] = 18, + [50849] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + ACTIONS(5365), 1, + sym__newline, + STATE(2311), 1, aux_sym_shebang_repeat1, - STATE(2371), 1, + STATE(2356), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281000,8 +279958,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 23, - sym__newline, + ACTIONS(5297), 22, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281024,32 +279981,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51123] = 11, + [50947] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5361), 1, + anon_sym_xor2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2372), 1, + STATE(2357), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5272), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281058,7 +280039,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 36, + ACTIONS(5265), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281071,22 +280052,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281095,48 +280061,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, - [51205] = 16, + [51047] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5397), 1, + anon_sym_DOT2, + STATE(2584), 1, + sym_path, + STATE(2358), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(943), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, sym__newline, - ACTIONS(5325), 1, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [51119] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(2373), 1, - sym_comment, - STATE(2418), 1, + ACTIONS(5376), 1, + sym__newline, + STATE(2331), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + STATE(2359), 1, + sym_comment, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5262), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281145,7 +280177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 25, + ACTIONS(5289), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281171,26 +280203,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, - [51297] = 8, + [51211] = 14, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2374), 1, + STATE(2360), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5272), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281199,7 +280248,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 39, + ACTIONS(5265), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281212,22 +280261,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -281239,38 +280277,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51373] = 13, + [51299] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2375), 1, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5376), 1, + sym__newline, + STATE(2361), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2382), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 4, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5272), 8, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281279,8 +280329,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 32, - sym__newline, + ACTIONS(5289), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281292,16 +280341,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -281312,54 +280354,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, - [51459] = 19, + [51393] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - ACTIONS(5401), 1, - sym__newline, - STATE(2323), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2376), 1, + STATE(2362), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281368,7 +280399,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(5296), 22, + ACTIONS(5237), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281383,6 +280415,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281391,22 +280428,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51557] = 6, + [51481] = 21, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + ACTIONS(5381), 1, + anon_sym_and2, + ACTIONS(5383), 1, + anon_sym_xor2, + STATE(2357), 1, aux_sym_shebang_repeat1, - STATE(2377), 1, + STATE(2363), 1, sym_comment, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5272), 13, + ACTIONS(5326), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281415,8 +280488,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 41, - sym__newline, + ACTIONS(5257), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281428,27 +280500,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281457,52 +280509,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51629] = 18, + [51583] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - STATE(1706), 1, + ACTIONS(5376), 1, + sym__newline, + STATE(2304), 1, aux_sym_shebang_repeat1, - STATE(2378), 1, + STATE(2364), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5291), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281511,8 +280563,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 23, - sym__newline, + ACTIONS(5289), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281527,6 +280578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281535,54 +280587,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51725] = 19, + [51679] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - ACTIONS(5380), 1, - anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2379), 1, + STATE(2365), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5239), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281591,7 +280621,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 22, + ACTIONS(5237), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281604,8 +280634,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281614,56 +280658,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51823] = 20, + [51761] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHor2, - ACTIONS(5380), 1, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(5381), 1, anon_sym_and2, - ACTIONS(5392), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(2338), 1, aux_sym_shebang_repeat1, - STATE(2380), 1, + STATE(2366), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281672,8 +280716,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 21, - sym__newline, + ACTIONS(5297), 21, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281685,6 +280728,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_xor2, anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -281694,43 +280738,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [51923] = 14, + [51861] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5361), 1, + anon_sym_xor2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2381), 1, + STATE(2367), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281739,7 +280796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 28, + ACTIONS(5231), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281752,14 +280809,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_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281768,54 +280818,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52011] = 19, + [51961] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, - anon_sym_bit_DASHor2, - ACTIONS(5380), 1, - anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2382), 1, + STATE(2368), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5267), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281824,7 +280849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 22, + ACTIONS(5265), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281837,8 +280862,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_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -281847,29 +280888,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52109] = 10, + [52041] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, - anon_sym_DASH2, - ACTIONS(5358), 1, - anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2383), 1, + STATE(2369), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5272), 10, + ACTIONS(5255), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281878,7 +280916,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 38, + ACTIONS(5253), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -281891,6 +280929,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -281917,46 +280956,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52189] = 15, + [52117] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5355), 1, + anon_sym_bit_DASHor2, + ACTIONS(5381), 1, + anon_sym_and2, + ACTIONS(5383), 1, + anon_sym_xor2, + STATE(2354), 1, aux_sym_shebang_repeat1, - STATE(2384), 1, + STATE(2370), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -281965,8 +281016,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 26, - sym__newline, + ACTIONS(5297), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -281978,12 +281028,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_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, @@ -281992,48 +281037,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52279] = 16, + [52219] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2385), 1, + STATE(2371), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282042,7 +281085,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 25, + ACTIONS(5265), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282058,6 +281101,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, @@ -282068,50 +281112,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52371] = 17, + [52309] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, - anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2386), 1, + STATE(2372), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5233), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5272), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282120,7 +281143,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5270), 24, + ACTIONS(5231), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282133,9 +281156,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -282145,56 +281182,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52465] = 20, + [52389] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, + ACTIONS(5344), 1, anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - ACTIONS(5347), 1, - sym__newline, - STATE(2344), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2387), 1, + STATE(2373), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282203,7 +281232,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(5306), 21, + ACTIONS(5265), 25, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282215,8 +281245,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_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, @@ -282225,120 +281258,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [52565] = 6, - ACTIONS(3), 1, + [52481] = 18, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5404), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5406), 1, - aux_sym__immediate_decimal_token2, - STATE(2388), 1, - sym_comment, - ACTIONS(1597), 7, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1595), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + STATE(2374), 1, + sym_comment, + STATE(2866), 1, + aux_sym_decl_def_repeat1, + STATE(2954), 1, + sym_long_flag, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6096), 1, + sym__command_name, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [52637] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5408), 1, - anon_sym_DOT, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token2, - STATE(2389), 1, - sym_comment, - ACTIONS(1589), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1587), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(4940), 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, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4932), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [52577] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2375), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5267), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282347,6 +281388,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5265), 24, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282355,58 +281413,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [52709] = 20, + [52671] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHor2, - ACTIONS(5380), 1, + ACTIONS(5381), 1, anon_sym_and2, - ACTIONS(5392), 1, + ACTIONS(5383), 1, anon_sym_xor2, - STATE(1706), 1, + STATE(2308), 1, aux_sym_shebang_repeat1, - STATE(2390), 1, + STATE(2376), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282415,8 +281473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 21, - sym__newline, + ACTIONS(5249), 20, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282437,58 +281494,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, - [52809] = 21, + [52773] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5331), 1, - anon_sym_xor2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - STATE(2326), 1, - aux_sym_shebang_repeat1, - STATE(2391), 1, + ACTIONS(5365), 1, + sym__newline, + STATE(2377), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + STATE(2378), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 8, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282497,7 +281541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 20, + ACTIONS(5297), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282509,7 +281553,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, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -282518,111 +281569,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, - [52911] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DOT2, - STATE(2392), 1, - sym_comment, - STATE(2535), 1, - aux_sym_cell_path_repeat1, - STATE(2657), 1, - sym_path, - STATE(2707), 1, - sym_cell_path, - ACTIONS(1721), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1723), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [52987] = 14, + [52863] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2393), 1, + STATE(2378), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282631,7 +281614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 28, + ACTIONS(5253), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -282660,45 +281643,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53075] = 15, + [52951] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - STATE(2327), 1, - aux_sym_shebang_repeat1, - STATE(2394), 1, + STATE(2379), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + STATE(2399), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 8, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282707,7 +281685,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 27, + ACTIONS(5249), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282719,9 +281697,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, @@ -282735,123 +281717,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53165] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, - anon_sym_DASH_DASH, - STATE(2395), 1, - sym_comment, - STATE(2806), 1, - aux_sym_decl_def_repeat1, - STATE(3006), 1, - sym_long_flag, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6531), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [53261] = 15, + [53039] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - STATE(2393), 1, + STATE(2339), 1, aux_sym_shebang_repeat1, - STATE(2396), 1, + STATE(2380), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5259), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5262), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -282860,7 +281747,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 27, + ACTIONS(5257), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -282872,11 +281759,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -282888,122 +281786,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, - [53351] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DOT2, - STATE(2397), 1, - sym_comment, - STATE(2535), 1, - aux_sym_cell_path_repeat1, - STATE(2657), 1, - sym_path, - STATE(2752), 1, - sym_cell_path, - ACTIONS(1717), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1719), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [53427] = 19, + [53117] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - STATE(2371), 1, + STATE(2360), 1, aux_sym_shebang_repeat1, - STATE(2398), 1, + STATE(2381), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5262), 8, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283012,7 +281833,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 22, + ACTIONS(5257), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -283027,6 +281848,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -283035,19 +281861,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53525] = 5, + [53207] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_LBRACK2, - STATE(2399), 1, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2382), 1, sym_comment, - ACTIONS(2318), 13, + ACTIONS(5301), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283056,8 +281911,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2322), 43, - ts_builtin_sym_end, + ACTIONS(5231), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283069,27 +281923,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -283100,29 +281937,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53595] = 10, + [53299] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2400), 1, + STATE(2383), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5294), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283131,7 +281991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 38, + ACTIONS(5231), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283144,24 +282004,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_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, @@ -283170,28 +282015,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, - [53675] = 10, + [53395] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5400), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5402), 1, + aux_sym__immediate_decimal_token2, + STATE(2384), 1, + sym_comment, + ACTIONS(1597), 11, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + aux_sym__val_number_decimal_token1, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1599), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [53467] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - STATE(2401), 1, + STATE(2385), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5216), 10, + ACTIONS(5205), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -283202,7 +282113,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 37, + ACTIONS(5203), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283240,21 +282151,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53755] = 7, + [53547] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2402), 1, + STATE(2386), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 11, + ACTIONS(5205), 11, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, @@ -283266,7 +282177,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 40, + ACTIONS(5203), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283307,36 +282218,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, - [53829] = 12, + [53621] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - STATE(2403), 1, + STATE(2387), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283345,7 +282256,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 33, + ACTIONS(5203), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283379,15 +282290,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, - [53913] = 5, + [53705] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2404), 1, + STATE(2388), 1, sym_comment, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5216), 13, + ACTIONS(5205), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -283401,7 +282312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 42, + ACTIONS(5203), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283444,50 +282355,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [53983] = 17, + [53775] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - ACTIONS(5436), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHand2, - ACTIONS(5438), 1, + ACTIONS(5426), 1, anon_sym_bit_DASHxor2, - ACTIONS(5440), 1, + ACTIONS(5428), 1, anon_sym_bit_DASHor2, - STATE(2405), 1, + STATE(2389), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(5422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283496,7 +282407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 24, + ACTIONS(5203), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283521,52 +282432,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54077] = 18, + [53869] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - ACTIONS(5436), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHand2, - ACTIONS(5438), 1, + ACTIONS(5426), 1, anon_sym_bit_DASHxor2, - ACTIONS(5440), 1, + ACTIONS(5428), 1, anon_sym_bit_DASHor2, - ACTIONS(5442), 1, + ACTIONS(5430), 1, anon_sym_and2, - STATE(2406), 1, + STATE(2390), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(5422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283575,7 +282486,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 23, + ACTIONS(5203), 23, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283599,54 +282510,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54173] = 19, + [53965] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - ACTIONS(5436), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHand2, - ACTIONS(5438), 1, + ACTIONS(5426), 1, anon_sym_bit_DASHxor2, - ACTIONS(5440), 1, + ACTIONS(5428), 1, anon_sym_bit_DASHor2, - ACTIONS(5442), 1, + ACTIONS(5430), 1, anon_sym_and2, - ACTIONS(5444), 1, + ACTIONS(5432), 1, anon_sym_xor2, - STATE(2407), 1, + STATE(2391), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(5422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283655,7 +282566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 22, + ACTIONS(5203), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283678,41 +282589,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54271] = 13, + [54063] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - STATE(2408), 1, + STATE(2392), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283721,7 +282632,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 29, + ACTIONS(5203), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283751,25 +282662,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54357] = 9, + [54149] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - STATE(2409), 1, + STATE(2393), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 10, + ACTIONS(5205), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -283780,7 +282691,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 39, + ACTIONS(5203), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283820,44 +282731,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54435] = 14, + [54227] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - STATE(2410), 1, + STATE(2394), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(5422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283866,7 +282777,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 27, + ACTIONS(5203), 27, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283894,46 +282805,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54523] = 15, + [54315] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - ACTIONS(5436), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHand2, - STATE(2411), 1, + STATE(2395), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(5422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -283942,7 +282853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 26, + ACTIONS(5203), 26, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -283969,48 +282880,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54613] = 16, + [54405] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - ACTIONS(5436), 1, + ACTIONS(5424), 1, anon_sym_bit_DASHand2, - ACTIONS(5438), 1, + ACTIONS(5426), 1, anon_sym_bit_DASHxor2, - STATE(2412), 1, + STATE(2396), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(5408), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(5416), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(5422), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(5420), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284019,7 +282930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 25, + ACTIONS(5203), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284045,249 +282956,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [54705] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DOT2, - STATE(2413), 1, - sym_comment, - STATE(2535), 1, - aux_sym_cell_path_repeat1, - STATE(2657), 1, - sym_path, - STATE(2729), 1, - sym_cell_path, - ACTIONS(935), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(937), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [54781] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, - anon_sym_DASH_DASH, - STATE(2395), 1, - aux_sym_decl_def_repeat1, - STATE(2414), 1, - sym_comment, - STATE(3006), 1, - sym_long_flag, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6110), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [54877] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3819), 1, - anon_sym_DOLLAR, - ACTIONS(5446), 1, - anon_sym_LPAREN2, - ACTIONS(5448), 1, - anon_sym_DOT, - ACTIONS(5450), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5452), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5454), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5456), 1, - aux_sym__immediate_decimal_token5, - STATE(2415), 1, - sym_comment, - STATE(2837), 1, - sym__immediate_decimal, - STATE(2905), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1553), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [54965] = 11, + [54497] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5365), 1, sym__newline, - STATE(2328), 1, - aux_sym_shebang_repeat1, - STATE(2416), 1, + STATE(2397), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + STATE(2422), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5298), 10, + ACTIONS(5299), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -284298,7 +282989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5296), 37, + ACTIONS(5297), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284336,50 +283027,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, - [55047] = 17, + [54579] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - STATE(2417), 1, - sym_comment, - STATE(2424), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, + STATE(2398), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5305), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5262), 8, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284388,7 +283072,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(5260), 24, + ACTIONS(5231), 28, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284403,6 +283088,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -284413,46 +283101,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55141] = 15, + [54667] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2418), 1, + STATE(2399), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5372), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284461,7 +283141,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 26, + ACTIONS(5237), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -284474,9 +283154,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284488,185 +283174,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55231] = 16, + [54753] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5401), 1, + ACTIONS(5365), 1, sym__newline, - STATE(2330), 1, + STATE(2299), 1, aux_sym_shebang_repeat1, - STATE(2419), 1, + STATE(2400), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 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(5296), 25, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_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, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [55323] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5248), 1, - sym__newline, - STATE(2420), 1, - sym_comment, - STATE(2579), 1, - aux_sym_command_list_repeat1, - STATE(2929), 1, - aux_sym_shebang_repeat1, - STATE(3645), 1, - sym__val_number_decimal, - STATE(6898), 1, - sym__command_name, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5244), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [55419] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - STATE(2400), 1, - aux_sym_shebang_repeat1, - STATE(2421), 1, - sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5262), 10, - anon_sym_GT2, - anon_sym_LT2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284675,7 +283224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 37, + ACTIONS(5297), 25, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284687,21 +283236,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -284713,63 +283250,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55501] = 5, - ACTIONS(251), 1, + [54845] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, - STATE(2422), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5440), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5442), 1, + aux_sym__immediate_decimal_token5, + STATE(2401), 1, sym_comment, - ACTIONS(1681), 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(1693), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + STATE(2932), 1, + sym__immediate_decimal, + ACTIONS(1543), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5438), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -284778,33 +283321,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [55571] = 12, + aux_sym__unquoted_in_list_token1, + [54929] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, + ACTIONS(1591), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5434), 1, anon_sym_DOLLAR, - ACTIONS(5282), 1, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(5458), 1, - anon_sym_DOT, - ACTIONS(5462), 1, + ACTIONS(5440), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5464), 1, + ACTIONS(5442), 1, aux_sym__immediate_decimal_token5, - STATE(2423), 1, + STATE(2402), 1, sym_comment, - STATE(2878), 1, + STATE(2905), 1, sym__immediate_decimal, - ACTIONS(1643), 2, + ACTIONS(1589), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5460), 2, + ACTIONS(5438), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2872), 2, + STATE(3081), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 45, + ACTIONS(1587), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -284850,48 +283394,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [55655] = 16, + [55013] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - STATE(1706), 1, + ACTIONS(5365), 1, + sym__newline, + STATE(2303), 1, aux_sym_shebang_repeat1, - STATE(2424), 1, + STATE(2403), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5299), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284900,8 +283446,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 25, - sym__newline, + ACTIONS(5297), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284926,40 +283471,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, - [55747] = 14, + [55107] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - STATE(2363), 1, + ACTIONS(5348), 1, + sym__newline, + STATE(2362), 1, aux_sym_shebang_repeat1, - STATE(2425), 1, + STATE(2404), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5333), 4, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5262), 8, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -284968,7 +283518,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 31, + ACTIONS(5249), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -284980,6 +283530,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_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, + [55197] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, + STATE(2405), 1, + sym_comment, + ACTIONS(1663), 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(1675), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -284987,8 +283588,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285000,25 +283611,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, - [55835] = 7, + [55267] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5258), 1, - anon_sym_DOT2, - STATE(2426), 1, + ACTIONS(5444), 1, + anon_sym_DOT, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token2, + STATE(2406), 1, sym_comment, - STATE(2431), 1, - aux_sym_cell_path_repeat1, - STATE(2560), 1, - sym_path, - ACTIONS(948), 6, + ACTIONS(1605), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(950), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -285054,12 +283667,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -285067,50 +283677,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [55909] = 17, + [55339] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5401), 1, - sym__newline, - STATE(2331), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2427), 1, + STATE(2407), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5239), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5298), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285119,7 +283708,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(5296), 24, + ACTIONS(5237), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285131,9 +283721,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -285144,50 +283747,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56003] = 17, + [55419] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5350), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, - anon_sym_bit_DASHxor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(2428), 1, + STATE(2408), 1, sym_comment, - ACTIONS(5352), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5354), 2, + STATE(2433), 1, + aux_sym_shebang_repeat1, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5294), 8, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5251), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285196,8 +283799,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5292), 24, - sym__newline, + ACTIONS(5249), 24, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285212,6 +283814,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -285221,52 +283824,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56097] = 18, + [55513] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5401), 1, - sym__newline, - STATE(2332), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2429), 1, + STATE(2409), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5298), 8, + ACTIONS(5255), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285275,7 +283864,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(5296), 23, + ACTIONS(5253), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285287,9 +283877,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -285299,155 +283897,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56193] = 12, + [55599] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5347), 1, - sym__newline, - STATE(2333), 1, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2430), 1, + STATE(2410), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5308), 10, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - ACTIONS(5306), 35, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + ACTIONS(5305), 4, anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [56277] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5466), 1, - anon_sym_DOT2, - STATE(2560), 1, - sym_path, - STATE(2431), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(941), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(943), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [56349] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2432), 1, - sym_comment, - ACTIONS(5154), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285456,7 +283953,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5156), 44, + ACTIONS(5237), 22, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -285469,30 +283966,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -285501,34 +283976,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56417] = 12, + [55697] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - STATE(2351), 1, + STATE(2325), 1, aux_sym_shebang_repeat1, - STATE(2433), 1, + STATE(2411), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5338), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5262), 10, + ACTIONS(5251), 11, anon_sym_GT2, anon_sym_LT2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285537,7 +284006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5260), 35, + ACTIONS(5249), 38, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285549,6 +284018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -285562,6 +284032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285573,28 +284045,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56501] = 9, + [55775] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - STATE(2335), 1, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2434), 1, + STATE(2412), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 11, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5233), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285603,7 +284085,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(5306), 38, + ACTIONS(5231), 32, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285615,7 +284098,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -285623,14 +284105,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285642,40 +284118,124 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56579] = 14, + [55861] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + STATE(2335), 1, + aux_sym_decl_def_repeat1, + STATE(2413), 1, + sym_comment, + STATE(2954), 1, + sym_long_flag, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6590), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4932), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [55957] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5347), 1, - sym__newline, - STATE(2337), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2435), 1, + STATE(2414), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5333), 4, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5308), 8, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285684,7 +284244,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(5306), 31, + ACTIONS(5237), 26, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285696,15 +284257,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285716,19 +284271,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56667] = 5, + [56047] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1016), 1, - anon_sym_COLON2, - STATE(2436), 1, + ACTIONS(5357), 1, + anon_sym_DOT2, + STATE(2415), 1, sym_comment, - ACTIONS(1004), 13, - anon_sym_GT2, + STATE(2535), 1, + aux_sym_cell_path_repeat1, + STATE(2588), 1, + sym_path, + STATE(2728), 1, + sym_cell_path, + ACTIONS(1721), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1723), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [56123] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + STATE(2342), 1, + aux_sym_shebang_repeat1, + STATE(2416), 1, + sym_comment, + ACTIONS(5324), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5326), 2, + anon_sym_GT2, anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5259), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -285737,8 +284381,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 43, - sym__newline, + ACTIONS(5257), 31, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285749,27 +284392,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_DASH2, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -285781,50 +284413,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56737] = 18, + [56211] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5248), 1, - sym__newline, - STATE(2437), 1, + ACTIONS(5293), 1, + anon_sym_DASH_DASH, + STATE(2374), 1, + aux_sym_decl_def_repeat1, + STATE(2417), 1, sym_comment, - STATE(2596), 1, - aux_sym_command_list_repeat1, - STATE(2929), 1, - aux_sym_shebang_repeat1, - STATE(3645), 1, + STATE(2954), 1, + sym_long_flag, + STATE(3561), 1, sym__val_number_decimal, - STATE(6922), 1, - sym__command_name, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, + STATE(3955), 1, sym_val_string, - ACTIONS(3127), 2, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6145), 1, + sym__command_name, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5129), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5244), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -285859,19 +284491,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [56833] = 7, + [56307] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5351), 1, + anon_sym_bit_DASHand2, + ACTIONS(5353), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5365), 1, sym__newline, - STATE(2340), 1, + STATE(2319), 1, aux_sym_shebang_repeat1, - STATE(2438), 1, + STATE(2418), 1, sym_comment, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5308), 13, + ACTIONS(5326), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5330), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5334), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5299), 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(5297), 23, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [56403] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1016), 1, + anon_sym_COLON2, + STATE(2419), 1, + sym_comment, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -285885,7 +284590,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(5306), 40, + ACTIONS(1000), 43, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -285896,9 +284602,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -285911,6 +284617,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -285926,50 +284634,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [56907] = 18, + [56473] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, - anon_sym_DASH_DASH, - STATE(2439), 1, + ACTIONS(5285), 1, + sym__newline, + STATE(2420), 1, sym_comment, - STATE(2806), 1, - aux_sym_decl_def_repeat1, - STATE(3006), 1, - sym_long_flag, - STATE(3649), 1, + STATE(2580), 1, + aux_sym_command_list_repeat1, + STATE(2898), 1, + aux_sym_shebang_repeat1, + STATE(3621), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(6746), 1, + sym__command_name, + STATE(6831), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6832), 1, sym_val_string, - STATE(6412), 1, - sym__command_name, - ACTIONS(1297), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(5281), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(5283), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286004,52 +284712,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [57003] = 18, + [56569] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - STATE(2428), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2440), 1, + STATE(2421), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5255), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5262), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286058,7 +284736,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(5260), 23, + ACTIONS(5253), 41, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286070,9 +284749,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -286082,58 +284778,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57099] = 21, + [56641] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5331), 1, - anon_sym_xor2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - STATE(2390), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2441), 1, + STATE(2422), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5255), 10, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5262), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286142,7 +284809,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(5260), 20, + ACTIONS(5253), 38, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286154,7 +284822,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_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286163,54 +284848,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57201] = 19, - ACTIONS(251), 1, + [56721] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5325), 1, - anon_sym_DASH2, - ACTIONS(5337), 1, - anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - ACTIONS(5347), 1, - sym__newline, - STATE(2342), 1, - aux_sym_shebang_repeat1, - STATE(2442), 1, + ACTIONS(2537), 1, + anon_sym_DOLLAR, + ACTIONS(5269), 1, + anon_sym_LPAREN2, + ACTIONS(5448), 1, + anon_sym_DOT, + ACTIONS(5452), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5454), 1, + aux_sym__immediate_decimal_token5, + STATE(2423), 1, sym_comment, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5308), 8, + STATE(2847), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5450), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2846), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1547), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286219,21 +284911,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5306), 22, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286242,50 +284919,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, - [57299] = 18, + aux_sym__unquoted_in_list_token1, + [56805] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - STATE(2443), 1, + STATE(2424), 1, sym_comment, - STATE(2445), 1, + STATE(2426), 1, aux_sym_decl_def_repeat1, - STATE(3006), 1, + STATE(2954), 1, sym_long_flag, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6405), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6477), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286320,50 +284998,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [57395] = 18, + [56901] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - STATE(2444), 1, + STATE(2425), 1, sym_comment, - STATE(2446), 1, + STATE(2427), 1, aux_sym_decl_def_repeat1, - STATE(3006), 1, + STATE(2954), 1, sym_long_flag, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6427), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6495), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286398,50 +285076,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [57491] = 18, + [56997] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - STATE(2445), 1, + STATE(2426), 1, sym_comment, - STATE(2806), 1, + STATE(2866), 1, aux_sym_decl_def_repeat1, - STATE(3006), 1, + STATE(2954), 1, sym_long_flag, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6428), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6496), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286476,50 +285154,50 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [57587] = 18, + [57093] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5256), 1, + ACTIONS(5293), 1, anon_sym_DASH_DASH, - STATE(2446), 1, + STATE(2427), 1, sym_comment, - STATE(2806), 1, + STATE(2866), 1, aux_sym_decl_def_repeat1, - STATE(3006), 1, + STATE(2954), 1, sym_long_flag, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6436), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6501), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -286554,56 +285232,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [57683] = 20, + [57189] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5325), 1, + ACTIONS(5303), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5337), 1, + ACTIONS(5317), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, - anon_sym_bit_DASHand2, - ACTIONS(5343), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, - anon_sym_bit_DASHor2, - ACTIONS(5401), 1, - sym__newline, - STATE(2324), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(2447), 1, + STATE(2428), 1, sym_comment, - ACTIONS(5317), 2, + ACTIONS(5307), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5335), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5298), 8, + ACTIONS(5233), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286612,7 +285266,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(5296), 21, + ACTIONS(5231), 36, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286624,8 +285279,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -286634,17 +285303,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57783] = 4, + [57271] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2448), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + STATE(2368), 1, + aux_sym_shebang_repeat1, + STATE(2429), 1, sym_comment, - ACTIONS(1004), 13, - anon_sym_GT2, + ACTIONS(5324), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5332), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286653,9 +285336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1000), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5257), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286666,7 +285347,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -286680,10 +285361,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286697,17 +285374,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57850] = 4, + [57353] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2449), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5348), 1, + sym__newline, + STATE(2365), 1, + aux_sym_shebang_repeat1, + STATE(2430), 1, sym_comment, - ACTIONS(5222), 13, - anon_sym_GT2, + ACTIONS(5324), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5332), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5251), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286716,9 +285410,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5220), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5249), 35, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286729,7 +285421,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -286743,12 +285435,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -286760,81 +285446,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [57917] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5469), 1, - aux_sym__immediate_decimal_token2, - STATE(2450), 1, - sym_comment, - ACTIONS(1667), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1669), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [57986] = 4, + [57437] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(2451), 1, + ACTIONS(5328), 1, + anon_sym_DASH2, + ACTIONS(5340), 1, + anon_sym_PLUS2, + ACTIONS(5348), 1, + sym__newline, + STATE(2407), 1, + aux_sym_shebang_repeat1, + STATE(2431), 1, sym_comment, - ACTIONS(2415), 13, - anon_sym_GT2, + ACTIONS(5324), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5332), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5251), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286843,9 +285479,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2417), 43, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5249), 37, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -286856,7 +285490,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, + anon_sym_RPAREN, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -286870,10 +285504,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286887,16 +285517,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58053] = 4, + [57519] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2452), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2432), 1, sym_comment, - ACTIONS(2361), 13, - anon_sym_GT2, + ACTIONS(5307), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5233), 11, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -286906,8 +285545,7 @@ 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), 43, - ts_builtin_sym_end, + ACTIONS(5231), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286919,6 +285557,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -286933,10 +285572,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -286950,17 +285585,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58120] = 4, + [57595] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2453), 1, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2433), 1, sym_comment, - ACTIONS(2369), 13, + ACTIONS(5301), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -286969,8 +285635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2371), 43, - ts_builtin_sym_end, + ACTIONS(5237), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -286982,29 +285647,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_DASH2, - anon_sym_in2, + anon_sym_RPAREN, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + anon_sym_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, + [57687] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(2434), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5311), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5239), 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(5237), 23, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -287013,12 +285739,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58187] = 4, + [57783] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2454), 1, + STATE(2435), 1, sym_comment, - ACTIONS(2365), 13, + ACTIONS(2441), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287032,7 +285758,7 @@ 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), 43, + ACTIONS(2443), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287076,17 +285802,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58254] = 4, + [57850] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2455), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5476), 1, + anon_sym_bit_DASHand2, + STATE(2436), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(5456), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287095,7 +285850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2445), 43, + ACTIONS(5203), 25, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287108,27 +285863,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -287139,12 +285876,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58321] = 4, + [57939] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2456), 1, + STATE(2437), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287158,7 +285895,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2507), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287202,12 +285939,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58388] = 4, + [58006] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2457), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5476), 1, + anon_sym_bit_DASHand2, + ACTIONS(5478), 1, + anon_sym_bit_DASHxor2, + STATE(2438), 1, + sym_comment, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 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(5203), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [58097] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2439), 1, sym_comment, - ACTIONS(1997), 13, + ACTIONS(2403), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287221,7 +286033,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1999), 43, + ACTIONS(2405), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287265,12 +286077,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58455] = 4, + [58164] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2458), 1, + STATE(2440), 1, sym_comment, - ACTIONS(2459), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287284,7 +286096,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2461), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287328,12 +286140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58522] = 4, + [58231] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2459), 1, + STATE(2441), 1, sym_comment, - ACTIONS(2463), 13, + ACTIONS(5185), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287347,7 +286159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2465), 43, + ACTIONS(5183), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287391,12 +286203,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58589] = 4, + [58298] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2460), 1, + STATE(2442), 1, sym_comment, - ACTIONS(2001), 13, + ACTIONS(2485), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287410,7 +286222,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2003), 43, + ACTIONS(2487), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287454,12 +286266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58656] = 4, + [58365] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2461), 1, + STATE(2443), 1, sym_comment, - ACTIONS(2009), 13, + ACTIONS(2047), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287473,7 +286285,7 @@ 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), 43, + ACTIONS(2053), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287517,12 +286329,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58723] = 4, + [58432] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2462), 1, + STATE(2444), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(2080), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287536,7 +286348,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1935), 43, + ACTIONS(2086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287580,12 +286392,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58790] = 4, + [58499] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2463), 1, + STATE(2445), 1, sym_comment, - ACTIONS(2467), 13, + ACTIONS(2188), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287599,7 +286411,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2469), 43, + ACTIONS(2190), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287643,12 +286455,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58857] = 4, + [58566] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2464), 1, + STATE(2446), 1, sym_comment, - ACTIONS(2471), 13, + ACTIONS(2072), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287662,7 +286474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2473), 43, + ACTIONS(2078), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287706,12 +286518,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58924] = 4, + [58633] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2465), 1, + STATE(2447), 1, sym_comment, - ACTIONS(2089), 13, + ACTIONS(1793), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287725,7 +286537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2091), 43, + ACTIONS(1801), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287769,76 +286581,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [58991] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5410), 1, - aux_sym__immediate_decimal_token2, - STATE(2466), 1, - sym_comment, - ACTIONS(1589), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1587), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [59060] = 4, + [58700] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2467), 1, + STATE(2448), 1, sym_comment, - ACTIONS(2373), 13, + ACTIONS(1663), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287852,7 +286600,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2375), 43, + ACTIONS(1675), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287896,12 +286644,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, - [59127] = 4, + [58767] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2468), 1, + ACTIONS(5480), 1, + anon_sym_QMARK2, + STATE(2449), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(958), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(960), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [58836] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2450), 1, + sym_comment, + ACTIONS(2429), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -287915,7 +286727,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2477), 43, + ACTIONS(2431), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287959,17 +286771,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, - [59194] = 4, + [58903] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2469), 1, + STATE(2451), 1, sym_comment, - ACTIONS(2337), 13, + ACTIONS(5092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + ACTIONS(5096), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -287978,7 +286791,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2339), 43, + ACTIONS(5090), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -287991,6 +286804,15 @@ static const uint16_t 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(5094), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -288014,6 +286836,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, + [58974] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5374), 1, + aux_sym__immediate_decimal_token2, + STATE(2452), 1, + sym_comment, + ACTIONS(1607), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1605), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288022,14 +286898,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59261] = 5, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [59043] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5482), 1, + anon_sym_QMARK2, + STATE(2453), 1, + sym_comment, + ACTIONS(952), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(954), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [59112] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5471), 1, + ACTIONS(5484), 1, aux_sym__immediate_decimal_token2, - STATE(2470), 1, + STATE(2454), 1, sym_comment, - ACTIONS(1669), 7, + ACTIONS(1687), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, @@ -288037,7 +286979,7 @@ static const uint16_t ts_small_parse_table[] = { sym_filesize_unit, sym_duration_unit, sym__entry_separator, - ACTIONS(1667), 48, + ACTIONS(1685), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -288086,12 +287028,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [59330] = 4, + [59181] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2471), 1, + STATE(2455), 1, sym_comment, - ACTIONS(2377), 13, + ACTIONS(5181), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288105,7 +287047,7 @@ 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), 43, + ACTIONS(5179), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288149,12 +287091,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59397] = 4, + [59248] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2472), 1, + STATE(2456), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(2449), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288168,7 +287110,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2481), 43, + ACTIONS(2451), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288212,17 +287154,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59464] = 4, - ACTIONS(251), 1, + [59315] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2473), 1, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token5, + STATE(2457), 1, sym_comment, - ACTIONS(2188), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3085), 1, + sym__immediate_decimal, + ACTIONS(1703), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5486), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3077), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1701), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288231,42 +287215,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2192), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288275,17 +287223,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59531] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [59396] = 11, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2474), 1, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token5, + STATE(2458), 1, sym_comment, - ACTIONS(2381), 13, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + STATE(3072), 1, + sym__immediate_decimal, + ACTIONS(1707), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5486), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3097), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1705), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -288294,42 +287285,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2383), 43, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -288338,35 +287293,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, - [59598] = 11, + aux_sym__unquoted_in_list_token1, + [59477] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(5475), 1, - anon_sym_DOT_DOT2, - ACTIONS(5479), 1, - sym_filesize_unit, - ACTIONS(5481), 1, - sym_duration_unit, - ACTIONS(5483), 1, - aux_sym__unquoted_in_list_token2, - STATE(2475), 1, + ACTIONS(5488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token5, + STATE(2459), 1, sym_comment, - STATE(7254), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1693), 2, + STATE(3108), 1, + sym__immediate_decimal, + ACTIONS(1711), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(5477), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 46, + ACTIONS(5486), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3057), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1709), 45, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -288408,12 +287364,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [59679] = 4, + [59558] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2476), 1, + STATE(2460), 1, sym_comment, - ACTIONS(2385), 13, + ACTIONS(1805), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288427,7 +287383,7 @@ 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), 43, + ACTIONS(1813), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288471,77 +287427,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59746] = 6, + [59625] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5485), 1, - anon_sym_DOT2, - STATE(2657), 1, - sym_path, - STATE(2477), 2, + STATE(2461), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(941), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(943), 47, - sym_raw_string_begin, + ACTIONS(2453), 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(2455), 43, ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, sym__newline, anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [59817] = 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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [59692] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2478), 1, + STATE(2462), 1, sym_comment, - ACTIONS(2389), 13, + ACTIONS(2445), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288555,7 +287509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2391), 43, + ACTIONS(2447), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288599,12 +287553,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59884] = 4, + [59759] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2479), 1, + STATE(2463), 1, sym_comment, - ACTIONS(5212), 13, + ACTIONS(1871), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288618,7 +287572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5210), 43, + ACTIONS(1873), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288662,12 +287616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [59951] = 4, + [59826] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2480), 1, + STATE(2464), 1, sym_comment, - ACTIONS(2170), 13, + ACTIONS(2481), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288681,7 +287635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2176), 43, + ACTIONS(2483), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288725,12 +287679,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60018] = 4, + [59893] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2481), 1, + STATE(2465), 1, sym_comment, - ACTIONS(2427), 13, + ACTIONS(2453), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288744,7 +287698,7 @@ 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), 43, + ACTIONS(2455), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288788,12 +287742,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60085] = 4, + [59960] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2482), 1, + STATE(2466), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(2457), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288807,7 +287761,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2433), 43, + ACTIONS(2459), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288851,12 +287805,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60152] = 4, + [60027] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2483), 1, + STATE(2467), 1, sym_comment, - ACTIONS(2435), 13, + ACTIONS(2465), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288870,7 +287824,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2437), 43, + ACTIONS(2467), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288914,12 +287868,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60219] = 4, + [60094] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2484), 1, + STATE(2468), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(2300), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288933,7 +287887,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1794), 43, + ACTIONS(2302), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -288977,12 +287931,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60286] = 4, + [60161] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2485), 1, + STATE(2469), 1, sym_comment, - ACTIONS(2229), 13, + ACTIONS(2312), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -288996,7 +287950,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2233), 43, + ACTIONS(2314), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289040,12 +287994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60353] = 4, + [60228] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2486), 1, + STATE(2470), 1, sym_comment, - ACTIONS(5117), 13, + ACTIONS(2350), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289059,7 +288013,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5119), 43, + ACTIONS(2352), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289103,30 +288057,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, - [60420] = 10, + [60295] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - STATE(2487), 1, + STATE(2471), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5216), 10, + ACTIONS(1859), 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, @@ -289135,7 +288076,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 36, + ACTIONS(1861), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289148,6 +288089,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -289161,6 +288103,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289172,12 +288120,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60499] = 4, + [60362] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(2488), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5492), 1, + anon_sym_DOLLAR, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(2472), 1, sym_comment, - ACTIONS(5129), 13, + STATE(3100), 1, + sym__immediate_decimal, + STATE(3117), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1543), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [60447] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2473), 1, + sym_comment, + ACTIONS(2304), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289191,7 +288211,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2306), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289235,23 +288255,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60566] = 7, + [60514] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2489), 1, + STATE(2474), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5216), 11, + ACTIONS(2358), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, @@ -289261,7 +288274,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 39, + ACTIONS(2360), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289288,6 +288301,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -289301,12 +288318,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60639] = 4, + [60581] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2490), 1, + STATE(2475), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2362), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289320,7 +288337,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2364), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289364,36 +288381,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60706] = 12, + [60648] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - STATE(2491), 1, + STATE(2476), 1, sym_comment, - ACTIONS(5490), 2, + ACTIONS(1863), 13, + anon_sym_GT2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(5492), 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(1865), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, + 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, + [60715] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2477), 1, + sym_comment, + ACTIONS(2308), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5216), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -289402,7 +288463,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 32, + ACTIONS(2310), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289415,6 +288476,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -289422,8 +288484,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -289435,12 +288507,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60789] = 4, + [60782] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5434), 1, + anon_sym_DOLLAR, + ACTIONS(5436), 1, + anon_sym_LPAREN2, + ACTIONS(5488), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5490), 1, + aux_sym__immediate_decimal_token5, + STATE(2478), 1, + sym_comment, + STATE(3031), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5486), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3029), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1547), 45, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [60863] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2492), 1, + STATE(2479), 1, sym_comment, - ACTIONS(2393), 13, + ACTIONS(1875), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289454,7 +288596,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2395), 43, + ACTIONS(1877), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289498,12 +288640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60856] = 4, + [60930] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2493), 1, + STATE(2480), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2330), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289517,7 +288659,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2332), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289561,12 +288703,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60923] = 4, + [60997] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2494), 1, + STATE(2481), 1, sym_comment, - ACTIONS(2397), 13, + ACTIONS(2322), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289580,7 +288722,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2399), 43, + ACTIONS(2324), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289624,15 +288766,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [60990] = 5, + [61064] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2495), 1, + STATE(2482), 1, sym_comment, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5216), 13, + ACTIONS(2326), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289646,7 +288785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 41, + ACTIONS(2328), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289673,6 +288812,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -289688,12 +288829,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, - [61059] = 4, + [61131] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2496), 1, + ACTIONS(5446), 1, + aux_sym__immediate_decimal_token2, + STATE(2483), 1, sym_comment, - ACTIONS(2194), 13, + ACTIONS(1605), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [61200] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2484), 1, + sym_comment, + ACTIONS(2389), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289707,7 +288912,7 @@ 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), 43, + ACTIONS(2391), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289751,12 +288956,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61126] = 4, + [61267] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2497), 1, + STATE(2485), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2180), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289770,7 +288975,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2184), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289814,88 +289019,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, - [61193] = 17, + [61334] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - ACTIONS(5508), 1, - anon_sym_bit_DASHand2, - ACTIONS(5510), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5512), 1, - anon_sym_bit_DASHor2, - STATE(2498), 1, + ACTIONS(5504), 1, + aux_sym__immediate_decimal_token2, + STATE(2486), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 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(5214), 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, - [61286] = 4, + ACTIONS(1685), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1687), 45, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [61403] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2499), 1, + STATE(2487), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(1968), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -289909,7 +289102,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(1970), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -289953,52 +289146,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, - [61353] = 18, + [61470] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - ACTIONS(5508), 1, - anon_sym_bit_DASHand2, - ACTIONS(5510), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5512), 1, - anon_sym_bit_DASHor2, - ACTIONS(5514), 1, - anon_sym_and2, - STATE(2500), 1, + STATE(2488), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, + ACTIONS(2373), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290007,7 +289165,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 22, + ACTIONS(2375), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290020,8 +289178,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290030,12 +289209,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61448] = 4, + [61537] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2501), 1, + STATE(2489), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(2377), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290049,7 +289228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2441), 43, + ACTIONS(2379), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290093,140 +289272,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61515] = 5, + [61604] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5516), 1, - anon_sym_QMARK2, - STATE(2502), 1, - sym_comment, - ACTIONS(958), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(960), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [61584] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5518), 1, - anon_sym_QMARK2, - STATE(2503), 1, - sym_comment, - ACTIONS(952), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(954), 48, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [61653] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2504), 1, + STATE(2490), 1, sym_comment, - ACTIONS(1681), 13, + ACTIONS(1879), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290240,7 +289291,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1693), 43, + ACTIONS(1881), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290284,12 +289335,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61720] = 4, + [61671] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2505), 1, + STATE(2491), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2381), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290303,7 +289354,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2383), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290347,54 +289398,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61787] = 19, + [61738] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, + ACTIONS(1591), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5492), 1, + anon_sym_DOLLAR, + ACTIONS(5494), 1, + anon_sym_LPAREN2, ACTIONS(5496), 1, - anon_sym_PLUS2, - ACTIONS(5508), 1, - anon_sym_bit_DASHand2, - ACTIONS(5510), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5512), 1, - anon_sym_bit_DASHor2, - ACTIONS(5514), 1, - anon_sym_and2, - ACTIONS(5520), 1, - anon_sym_xor2, - STATE(2506), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(2492), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + STATE(3068), 1, + sym__immediate_decimal, + STATE(3142), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290403,20 +289440,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 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, + aux_sym__unquoted_in_list_token1, + ACTIONS(1589), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290425,12 +289470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [61884] = 4, + [61823] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2507), 1, + STATE(2493), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2385), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290444,7 +289489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2387), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290488,41 +289533,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, - [61951] = 13, + [61890] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - STATE(2508), 1, + STATE(2494), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, + ACTIONS(2028), 13, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290531,7 +289552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 28, + ACTIONS(2030), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290544,11 +289565,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -290560,12 +289596,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62036] = 4, + [61957] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2509), 1, + STATE(2495), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2461), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290579,7 +289615,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2463), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290623,12 +289659,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62103] = 4, + [62024] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2510), 1, + STATE(2496), 1, sym_comment, - ACTIONS(5216), 13, + ACTIONS(5092), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290642,7 +289678,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 43, + ACTIONS(5094), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290686,12 +289722,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62170] = 4, + [62091] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2511), 1, + STATE(2497), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5217), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290705,7 +289741,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(5215), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290749,25 +289785,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62237] = 9, + [62158] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(5496), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - STATE(2512), 1, + STATE(2498), 1, sym_comment, - ACTIONS(5490), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5492), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 10, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5205), 10, anon_sym_GT2, anon_sym_LT2, anon_sym_err_GT, @@ -290778,7 +289817,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 38, + ACTIONS(5203), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290804,8 +289843,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -290817,12 +289854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62314] = 4, + [62237] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2513), 1, + STATE(2499), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(2342), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290836,7 +289873,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(2344), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -290880,44 +289917,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62381] = 14, + [62304] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - STATE(2514), 1, + ACTIONS(3808), 1, + anon_sym_DOLLAR, + ACTIONS(5385), 1, + anon_sym_LPAREN2, + ACTIONS(5506), 1, + anon_sym_DOT, + ACTIONS(5508), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5510), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5512), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5514), 1, + aux_sym__immediate_decimal_token5, + STATE(2500), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + STATE(2906), 1, + sym__immediate_decimal, + STATE(2900), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1547), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -290926,25 +289959,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 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, + aux_sym__unquoted_in_list_token1, + ACTIONS(1557), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -290953,12 +289989,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62468] = 4, + [62389] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2515), 1, + STATE(2501), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -290972,7 +290008,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291016,46 +290052,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62535] = 15, + [62456] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - ACTIONS(5508), 1, - anon_sym_bit_DASHand2, - STATE(2516), 1, + STATE(2502), 1, sym_comment, - ACTIONS(5490), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5492), 2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, + ACTIONS(5205), 11, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + anon_sym_PLUS2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291064,7 +290078,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 25, + ACTIONS(5203), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291077,9 +290091,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, anon_sym_err_GT_GT, @@ -291090,12 +290118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62624] = 4, + [62529] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2517), 1, + STATE(2503), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291109,7 +290137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291153,48 +290181,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62691] = 16, - ACTIONS(251), 1, + [62596] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - ACTIONS(5508), 1, - anon_sym_bit_DASHand2, - ACTIONS(5510), 1, - anon_sym_bit_DASHxor2, - STATE(2518), 1, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(5518), 1, + anon_sym_DOT_DOT2, + ACTIONS(5522), 1, + sym_filesize_unit, + ACTIONS(5524), 1, + sym_duration_unit, + ACTIONS(5526), 1, + aux_sym__unquoted_in_list_token2, + STATE(2504), 1, sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(5216), 8, + STATE(7233), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1675), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5520), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291203,23 +290242,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5214), 24, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -291228,17 +290250,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62782] = 4, + aux_sym__unquoted_in_list_token1, + [62677] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2519), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2505), 1, sym_comment, - ACTIONS(5129), 13, + ACTIONS(5456), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291247,7 +290289,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5127), 43, + ACTIONS(5203), 32, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291260,7 +290302,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -291268,18 +290309,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, @@ -291291,12 +290322,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62849] = 4, + [62760] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2520), 1, + STATE(2506), 1, sym_comment, - ACTIONS(2341), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291310,7 +290341,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2343), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291354,12 +290385,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, - [62916] = 4, + [62827] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2521), 1, + STATE(2507), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5205), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291373,7 +290407,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2150), 43, + ACTIONS(5203), 41, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291400,8 +290434,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -291417,12 +290449,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [62983] = 4, + [62896] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2522), 1, + STATE(2508), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291436,7 +290468,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2158), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291480,40 +290512,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63050] = 13, + [62963] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3819), 1, - anon_sym_DOLLAR, - ACTIONS(5446), 1, - anon_sym_LPAREN2, - ACTIONS(5522), 1, - anon_sym_DOT, - ACTIONS(5524), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5526), 1, - aux_sym__immediate_decimal_token3, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5476), 1, + anon_sym_bit_DASHand2, + ACTIONS(5478), 1, + anon_sym_bit_DASHxor2, ACTIONS(5528), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5530), 1, - aux_sym__immediate_decimal_token5, - STATE(2523), 1, + anon_sym_bit_DASHor2, + STATE(2509), 1, sym_comment, - STATE(2894), 1, - sym__immediate_decimal, - STATE(2940), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -291522,28 +290564,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1643), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5203), 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, @@ -291552,12 +290588,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63135] = 4, + [63056] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2524), 1, + STATE(2510), 1, sym_comment, - ACTIONS(2447), 13, + ACTIONS(1004), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291571,7 +290607,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2449), 43, + ACTIONS(1000), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291615,12 +290651,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63202] = 4, + [63123] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2525), 1, + STATE(2511), 1, sym_comment, - ACTIONS(2345), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291634,7 +290670,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2347), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291678,12 +290714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63269] = 4, + [63190] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2526), 1, + STATE(2512), 1, sym_comment, - ACTIONS(2184), 13, + ACTIONS(2407), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291697,7 +290733,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2186), 43, + ACTIONS(2409), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291741,12 +290777,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63336] = 4, + [63257] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2527), 1, + STATE(2513), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(2411), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291760,7 +290796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2166), 43, + ACTIONS(2413), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291804,12 +290840,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63403] = 4, + [63324] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2528), 1, + STATE(2514), 1, sym_comment, - ACTIONS(1865), 13, + ACTIONS(2421), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291823,7 +290859,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1873), 43, + ACTIONS(2423), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291867,12 +290903,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63470] = 4, + [63391] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2529), 1, + STATE(2515), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(2425), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291886,7 +290922,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2421), 43, + ACTIONS(2427), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291930,12 +290966,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63537] = 4, + [63458] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2530), 1, + STATE(2516), 1, sym_comment, - ACTIONS(2423), 13, + ACTIONS(2433), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -291949,7 +290985,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2425), 43, + ACTIONS(2435), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -291993,12 +291029,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [63604] = 4, + [63525] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2531), 1, + STATE(2517), 1, sym_comment, - ACTIONS(1937), 13, + ACTIONS(2437), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292012,7 +291048,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1939), 43, + ACTIONS(2439), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292056,40 +291092,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, - [63671] = 13, + [63592] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5532), 1, - anon_sym_DOLLAR, - ACTIONS(5534), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5540), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5542), 1, - aux_sym__immediate_decimal_token5, - STATE(2532), 1, + STATE(2518), 1, sym_comment, - STATE(3057), 1, - sym__immediate_decimal, - STATE(3185), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(2170), 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, @@ -292098,184 +291111,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1553), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(2174), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, anon_sym_err_PLUSout_GT_GT, anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [63756] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5399), 1, - aux_sym__immediate_decimal_token2, - STATE(2533), 1, - sym_comment, - ACTIONS(1587), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [63825] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2534), 1, - sym_comment, - ACTIONS(964), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(966), 49, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [63892] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5412), 1, - anon_sym_DOT2, - STATE(2477), 1, - aux_sym_cell_path_repeat1, - STATE(2535), 1, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63659] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2519), 1, sym_comment, - STATE(2657), 1, - sym_path, - ACTIONS(948), 6, + ACTIONS(964), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(950), 47, + anon_sym_DOT2, + ACTIONS(966), 49, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -292313,7 +291207,10 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -292321,10 +291218,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [63965] = 4, + [63726] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2536), 1, + STATE(2520), 1, sym_comment, ACTIONS(968), 7, aux_sym_cmd_identifier_token1, @@ -292384,12 +291281,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64032] = 4, + [63793] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2537), 1, + STATE(2521), 1, sym_comment, - ACTIONS(2403), 13, + ACTIONS(2334), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292403,7 +291300,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2405), 43, + ACTIONS(2336), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292447,10 +291344,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64099] = 4, + [63860] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2538), 1, + STATE(2522), 1, + sym_comment, + ACTIONS(2226), 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(2230), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [63927] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2523), 1, sym_comment, ACTIONS(972), 7, aux_sym_cmd_identifier_token1, @@ -292510,82 +291470,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64166] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(5546), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5548), 1, - aux_sym__immediate_decimal_token5, - STATE(2539), 1, - sym_comment, - STATE(3042), 1, - sym__immediate_decimal, - ACTIONS(1643), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5544), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3041), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64247] = 4, + [63994] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2540), 1, + STATE(2524), 1, sym_comment, - ACTIONS(2349), 13, + ACTIONS(2216), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292599,7 +291489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2351), 43, + ACTIONS(2218), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292643,84 +291533,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64314] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5532), 1, - anon_sym_DOLLAR, - ACTIONS(5534), 1, - anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5540), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5542), 1, - aux_sym__immediate_decimal_token5, - STATE(2541), 1, - sym_comment, - STATE(3077), 1, - sym__immediate_decimal, - STATE(3148), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1627), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1629), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [64399] = 4, + [64061] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2542), 1, + STATE(2525), 1, sym_comment, - ACTIONS(2357), 13, + ACTIONS(2338), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292734,7 +291552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2359), 43, + ACTIONS(2340), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292778,10 +291596,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64466] = 4, + [64128] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(2543), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5476), 1, + anon_sym_bit_DASHand2, + ACTIONS(5478), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5528), 1, + anon_sym_bit_DASHor2, + ACTIONS(5530), 1, + anon_sym_and2, + STATE(2526), 1, + sym_comment, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 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(5203), 22, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [64223] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2527), 1, sym_comment, ACTIONS(976), 7, aux_sym_cmd_identifier_token1, @@ -292841,12 +291736,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [64533] = 4, + [64290] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2544), 1, + STATE(2528), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -292860,7 +291755,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2409), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292904,17 +291799,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64600] = 4, + [64357] = 19, ACTIONS(251), 1, anon_sym_POUND, - STATE(2545), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + ACTIONS(5476), 1, + anon_sym_bit_DASHand2, + ACTIONS(5478), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5528), 1, + anon_sym_bit_DASHor2, + ACTIONS(5530), 1, + anon_sym_and2, + ACTIONS(5532), 1, + anon_sym_xor2, + STATE(2529), 1, sym_comment, - ACTIONS(5208), 13, + ACTIONS(5456), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292923,7 +291855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5206), 43, + ACTIONS(5203), 21, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -292936,29 +291868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_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, @@ -292967,18 +291877,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, - [64667] = 6, + [64454] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2546), 1, + STATE(2530), 1, sym_comment, - ACTIONS(5117), 5, + ACTIONS(2346), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5121), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -292987,7 +291896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(5115), 20, + ACTIONS(2348), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293000,15 +291909,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(5119), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -293032,12 +291932,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [64738] = 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, + [64521] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2547), 1, + STATE(2531), 1, sym_comment, - ACTIONS(2353), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293051,7 +291959,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2355), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293095,59 +292003,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [64805] = 11, - ACTIONS(3), 1, + [64588] = 13, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(5546), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5548), 1, - aux_sym__immediate_decimal_token5, - STATE(2548), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2532), 1, sym_comment, - STATE(3087), 1, - sym__immediate_decimal, - ACTIONS(1709), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5544), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3085), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293156,6 +292046,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5203), 28, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293164,60 +292075,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64886] = 11, - ACTIONS(3), 1, + [64673] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(5546), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5548), 1, - aux_sym__immediate_decimal_token5, - STATE(2549), 1, + STATE(2533), 1, sym_comment, - STATE(3091), 1, - sym__immediate_decimal, - ACTIONS(1713), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5544), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3089), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1711), 45, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + ACTIONS(1835), 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, @@ -293226,6 +292094,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(1837), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293234,13 +292138,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [64967] = 4, + [64740] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2550), 1, + STATE(2534), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293254,7 +292157,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2413), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293298,59 +292201,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65034] = 11, - ACTIONS(3), 1, + [64807] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5382), 1, - anon_sym_DOLLAR, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(5546), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5548), 1, - aux_sym__immediate_decimal_token5, - STATE(2551), 1, + ACTIONS(5357), 1, + anon_sym_DOT2, + STATE(2535), 1, sym_comment, - STATE(3095), 1, - sym__immediate_decimal, - ACTIONS(1665), 2, + STATE(2540), 1, + aux_sym_cell_path_repeat1, + STATE(2588), 1, + sym_path, + ACTIONS(948), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(950), 47, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5544), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3094), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 45, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [64880] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2536), 1, + sym_comment, + ACTIONS(5205), 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, @@ -293359,6 +292286,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + ACTIONS(5203), 43, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -293367,13 +292330,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65115] = 4, + [64947] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2552), 1, + STATE(2537), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(1843), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293387,7 +292349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2413), 43, + ACTIONS(1845), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293431,12 +292393,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65182] = 4, + [65014] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2553), 1, + STATE(2538), 1, sym_comment, - ACTIONS(2451), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293450,7 +292412,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2453), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293494,17 +292456,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, - [65249] = 4, + [65081] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2554), 1, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2539), 1, sym_comment, - ACTIONS(1973), 13, - anon_sym_GT2, + ACTIONS(5462), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5205), 10, + anon_sym_GT2, + anon_sym_LT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -293513,7 +292485,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1975), 43, + ACTIONS(5203), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293526,7 +292498,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -293540,10 +292511,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, @@ -293557,12 +292524,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65316] = 4, + [65158] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2555), 1, + ACTIONS(5534), 1, + anon_sym_DOT2, + STATE(2588), 1, + sym_path, + STATE(2540), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(943), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65229] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2541), 1, sym_comment, - ACTIONS(1981), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293576,7 +292608,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1983), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293620,12 +292652,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, + [65296] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5458), 1, + anon_sym_DASH2, + ACTIONS(5472), 1, + anon_sym_PLUS2, + STATE(2542), 1, + sym_comment, + ACTIONS(5456), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5462), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5470), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5205), 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(5203), 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, [65383] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2556), 1, + STATE(2543), 1, sym_comment, - ACTIONS(1985), 13, + ACTIONS(1847), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293639,7 +292744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1987), 43, + ACTIONS(1849), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293686,9 +292791,9 @@ static const uint16_t ts_small_parse_table[] = { [65450] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2557), 1, + STATE(2544), 1, sym_comment, - ACTIONS(2265), 13, + ACTIONS(5088), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293702,7 +292807,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2267), 43, + ACTIONS(5086), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293749,9 +292854,9 @@ static const uint16_t ts_small_parse_table[] = { [65517] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2558), 1, + STATE(2545), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(2059), 13, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -293765,7 +292870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(1959), 43, + ACTIONS(2065), 43, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -293809,14 +292914,278 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [65584] = 5, + [65584] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2546), 1, + sym_comment, + ACTIONS(988), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(990), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [65650] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5537), 1, + anon_sym_DOT2, + STATE(2547), 1, + sym_comment, + STATE(2625), 1, + aux_sym_cell_path_repeat1, + STATE(2785), 1, + sym_path, + STATE(2861), 1, + sym_cell_path, + ACTIONS(1723), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1721), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [65724] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5539), 1, + anon_sym_DOT, + ACTIONS(5541), 1, + aux_sym__immediate_decimal_token2, + STATE(2548), 1, + sym_comment, + ACTIONS(1605), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1607), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [65794] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2549), 1, + sym_comment, + STATE(2574), 1, + aux_sym_command_list_repeat1, + STATE(3621), 1, + sym__val_number_decimal, + STATE(6757), 1, + sym__command_name, + STATE(6831), 1, + sym_cmd_identifier, + STATE(6832), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5281), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5283), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [65884] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5550), 1, - anon_sym_QMARK2, - STATE(2559), 1, + STATE(2550), 1, sym_comment, - ACTIONS(958), 7, + ACTIONS(968), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -293824,7 +293193,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(960), 47, + ACTIONS(970), 48, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -293865,6 +293234,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SEMI, anon_sym_LBRACK, anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -293872,20 +293242,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65652] = 4, + [65950] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2560), 1, + STATE(2551), 1, sym_comment, - ACTIONS(988), 7, + ACTIONS(1605), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(990), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 45, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -293921,12 +293294,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -293934,22 +293304,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65718] = 6, + [66016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5552), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5554), 1, - aux_sym__immediate_decimal_token2, - STATE(2561), 1, + STATE(2552), 1, sym_comment, - ACTIONS(1759), 5, + ACTIONS(1607), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1757), 48, + ACTIONS(1605), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -293998,88 +293366,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [65788] = 8, - ACTIONS(3), 1, + [66082] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_DOT2, - STATE(2562), 1, + STATE(2553), 1, sym_comment, - STATE(2633), 1, - aux_sym_cell_path_repeat1, - STATE(2787), 1, - sym_path, - STATE(2843), 1, - sym_cell_path, - ACTIONS(1719), 4, + ACTIONS(1597), 10, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1599), 45, sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1717), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [65862] = 4, + [66148] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2563), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2554), 1, sym_comment, - ACTIONS(968), 7, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6152), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(970), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294114,36 +293502,24 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [65928] = 5, + [66238] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5558), 1, - anon_sym_QMARK2, - STATE(2564), 1, + STATE(2555), 1, sym_comment, - ACTIONS(952), 7, + ACTIONS(1685), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(954), 47, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1687), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294178,10 +293554,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -294189,22 +293564,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [65996] = 4, + [66304] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2565), 1, + STATE(2556), 1, sym_comment, - ACTIONS(972), 7, + ACTIONS(1727), 10, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(974), 48, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + ACTIONS(1729), 45, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294239,11 +293616,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, + 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, @@ -294251,22 +293626,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66062] = 6, + [66370] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5560), 1, - anon_sym_DOT, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token2, - STATE(2566), 1, + STATE(2557), 1, sym_comment, - ACTIONS(1727), 5, + ACTIONS(1599), 7, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(1725), 48, + ACTIONS(1597), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -294315,103 +293688,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [66132] = 16, - ACTIONS(251), 1, + [66436] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, + STATE(2558), 1, + sym_comment, + ACTIONS(1687), 7, sym_raw_string_begin, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(4971), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1685), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2567), 1, - sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6229), 1, - sym__command_name, - ACTIONS(1297), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [66502] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2559), 1, + sym_comment, + ACTIONS(1729), 7, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + ACTIONS(1727), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [66222] = 12, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [66568] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5532), 1, + ACTIONS(5492), 1, anon_sym_DOLLAR, - ACTIONS(5534), 1, + ACTIONS(5494), 1, anon_sym_LPAREN2, - ACTIONS(5564), 1, + ACTIONS(5543), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5566), 1, + ACTIONS(5545), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5568), 1, + ACTIONS(5547), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5570), 1, + ACTIONS(5549), 1, aux_sym__immediate_decimal_token5, - STATE(2568), 1, + STATE(2560), 1, sym_comment, - STATE(3191), 1, + STATE(3136), 1, sym__immediate_decimal, - STATE(3177), 2, + STATE(3135), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 18, + ACTIONS(1705), 18, anon_sym_LPAREN, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, @@ -294430,7 +293853,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1643), 28, + ACTIONS(1707), 28, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -294459,24 +293882,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [66304] = 4, + [66650] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2569), 1, + STATE(2561), 1, sym_comment, - ACTIONS(1733), 10, + ACTIONS(972), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1735), 45, + anon_sym_DOT2, + ACTIONS(974), 48, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294511,9 +293932,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -294521,46 +293944,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66370] = 16, + [66716] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3398), 1, anon_sym_COLON2, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, - anon_sym_DQUOTE, - ACTIONS(5580), 1, - sym_raw_string_begin, - STATE(1693), 1, - sym__command_name, - STATE(2570), 1, + STATE(2562), 1, sym_comment, - STATE(2609), 1, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, sym_val_string, - STATE(2670), 1, + STATE(3982), 1, sym_cmd_identifier, - STATE(3640), 1, - sym__val_number_decimal, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5578), 2, + STATE(5650), 1, + sym__command_name, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2601), 2, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5572), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5574), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294595,20 +294018,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66460] = 4, + [66806] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2571), 1, + ACTIONS(5551), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5553), 1, + aux_sym__immediate_decimal_token2, + STATE(2563), 1, sym_comment, - ACTIONS(1589), 7, + ACTIONS(1733), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1587), 48, + ACTIONS(1731), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -294657,46 +294082,179 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [66526] = 16, + [66876] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + anon_sym_DOLLAR, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5549), 1, + aux_sym__immediate_decimal_token5, + STATE(2564), 1, + sym_comment, + STATE(3140), 1, + sym__immediate_decimal, + STATE(3137), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1709), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1711), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [66958] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5555), 1, + anon_sym_QMARK2, + STATE(2565), 1, + sym_comment, + ACTIONS(952), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(954), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67026] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(3433), 1, + ACTIONS(3398), 1, anon_sym_COLON2, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2572), 1, + STATE(2566), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(5780), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7594), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -294731,20 +294289,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [66616] = 4, + [67116] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2573), 1, + ACTIONS(5557), 1, + anon_sym_DOT, + ACTIONS(5559), 1, + aux_sym__immediate_decimal_token2, + STATE(2567), 1, sym_comment, - ACTIONS(1597), 7, + ACTIONS(1751), 5, sym_raw_string_begin, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1595), 48, + ACTIONS(1749), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -294793,30 +294353,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - [66682] = 9, + [67186] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(5582), 1, - sym_filesize_unit, - ACTIONS(5584), 1, - sym_duration_unit, - ACTIONS(5586), 1, - aux_sym_unquoted_token2, - STATE(2574), 1, + STATE(2568), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 6, + ACTIONS(980), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1693), 43, + anon_sym_DOT2, + ACTIONS(982), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294852,7 +294402,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + 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, @@ -294860,23 +294415,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66758] = 4, + [67252] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2575), 1, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(5561), 1, + sym_filesize_unit, + ACTIONS(5563), 1, + sym_duration_unit, + ACTIONS(5565), 1, + aux_sym_unquoted_token2, + STATE(2569), 1, sym_comment, - ACTIONS(1587), 10, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 45, + ACTIONS(1675), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -294913,8 +294475,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -294922,82 +294482,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [66824] = 4, - ACTIONS(3), 1, + [67328] = 16, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2576), 1, - sym_comment, - ACTIONS(1669), 7, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - ACTIONS(1667), 48, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(5571), 1, anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + STATE(1687), 1, + sym__command_name, + STATE(2570), 1, + sym_comment, + STATE(2614), 1, + sym_cmd_identifier, + STATE(2615), 1, + sym_val_string, + STATE(3615), 1, + sym__val_number_decimal, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5573), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [66890] = 4, + STATE(2638), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5567), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5569), 34, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + [67418] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(2577), 1, + ACTIONS(5537), 1, + anon_sym_DOT2, + STATE(2571), 1, sym_comment, - ACTIONS(1735), 7, + STATE(2625), 1, + aux_sym_cell_path_repeat1, + STATE(2785), 1, + sym_path, + STATE(2817), 1, + sym_cell_path, + ACTIONS(1759), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - ACTIONS(1733), 48, + ACTIONS(1757), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -295045,117 +294622,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [66956] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5532), 1, - anon_sym_DOLLAR, - ACTIONS(5534), 1, - anon_sym_LPAREN2, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5566), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token5, - STATE(2578), 1, - sym_comment, - STATE(3142), 1, - sym__immediate_decimal, - STATE(3152), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1709), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67038] = 16, + [67492] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2579), 1, + STATE(2572), 1, sym_comment, - STATE(2584), 1, - aux_sym_command_list_repeat1, - STATE(3645), 1, - sym__val_number_decimal, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, - sym_val_string, - STATE(7050), 1, - sym__command_name, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5244), 6, + ACTIONS(976), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, + anon_sym_DOT2, + ACTIONS(978), 48, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295190,46 +294672,58 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67128] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [67558] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2580), 1, + STATE(2573), 1, sym_comment, - STATE(2584), 1, + STATE(2574), 1, aux_sym_command_list_repeat1, - STATE(3645), 1, + STATE(3621), 1, sym__val_number_decimal, - STATE(6907), 1, - sym__command_name, - STATE(6931), 1, + STATE(6831), 1, sym_cmd_identifier, - STATE(6932), 1, + STATE(6832), 1, sym_val_string, - ACTIONS(3127), 2, + STATE(7131), 1, + sym__command_name, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5244), 6, + ACTIONS(5281), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, + ACTIONS(5283), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295264,156 +294758,45 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67218] = 6, + [67648] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5588), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5590), 1, - aux_sym__immediate_decimal_token2, - STATE(2581), 1, - sym_comment, - ACTIONS(1595), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1597), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, + ACTIONS(5586), 1, aux_sym__val_number_decimal_token3, + ACTIONS(5589), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, + ACTIONS(5592), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67288] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5532), 1, - anon_sym_DOLLAR, - ACTIONS(5534), 1, - anon_sym_LPAREN2, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5566), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token5, - STATE(2582), 1, - sym_comment, - STATE(3137), 1, - sym__immediate_decimal, - STATE(3184), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1657), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, + ACTIONS(5598), 1, + sym_raw_string_begin, + STATE(3621), 1, + sym__val_number_decimal, + STATE(6831), 1, + sym_cmd_identifier, + STATE(6832), 1, + sym_val_string, + STATE(7313), 1, + sym__command_name, + ACTIONS(5583), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1665), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, + ACTIONS(5595), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67370] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2583), 1, + STATE(2574), 2, sym_comment, - ACTIONS(964), 7, + aux_sym_command_list_repeat1, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5577), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(966), 48, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(5580), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295448,57 +294831,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67436] = 15, + [67736] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5601), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(5604), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5607), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(5613), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - STATE(3645), 1, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2575), 1, + sym_comment, + STATE(3561), 1, sym__val_number_decimal, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, + STATE(3955), 1, sym_val_string, - STATE(7349), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7594), 1, sym__command_name, - ACTIONS(5598), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5610), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2584), 2, - sym_comment, - aux_sym_command_list_repeat1, - STATE(5129), 2, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5592), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5595), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295533,24 +294905,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67524] = 4, + [67826] = 16, ACTIONS(251), 1, anon_sym_POUND, - STATE(2585), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2576), 1, sym_comment, - ACTIONS(1595), 10, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6152), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 45, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295585,120 +294979,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [67590] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5616), 1, - anon_sym_DOT, - ACTIONS(5618), 1, - aux_sym__immediate_decimal_token2, - STATE(2586), 1, - sym_comment, - ACTIONS(1587), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1589), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [67660] = 16, + [67916] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2587), 1, + STATE(2577), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7662), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(5650), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295733,46 +295053,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67750] = 16, + [68006] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2588), 1, + ACTIONS(5571), 1, + anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + STATE(1687), 1, + sym__command_name, + STATE(2578), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, + STATE(2614), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(2615), 1, sym_val_string, - STATE(6229), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, + STATE(3615), 1, + sym__val_number_decimal, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + ACTIONS(5573), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2638), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(5567), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(5569), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295807,46 +295127,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67840] = 16, + [68096] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2589), 1, + STATE(2574), 1, + aux_sym_command_list_repeat1, + STATE(2579), 1, sym_comment, - STATE(3649), 1, + STATE(3621), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(6747), 1, + sym__command_name, + STATE(6831), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6832), 1, sym_val_string, - STATE(5780), 1, - sym__command_name, - ACTIONS(1297), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(5281), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(5283), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -295881,112 +295201,46 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [67930] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_DOT2, - STATE(2590), 1, - sym_comment, - STATE(2633), 1, - aux_sym_cell_path_repeat1, - STATE(2787), 1, - sym_path, - STATE(2812), 1, - sym_cell_path, - ACTIONS(937), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(935), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [68004] = 16, + [68186] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(5580), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - STATE(1693), 1, - sym__command_name, - STATE(2591), 1, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2574), 1, + aux_sym_command_list_repeat1, + STATE(2580), 1, sym_comment, - STATE(2609), 1, - sym_val_string, - STATE(2670), 1, - sym_cmd_identifier, - STATE(3640), 1, + STATE(3621), 1, sym__val_number_decimal, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5578), 2, + STATE(6831), 1, + sym_cmd_identifier, + STATE(6832), 1, + sym_val_string, + STATE(6890), 1, + sym__command_name, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2601), 2, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5572), 6, + ACTIONS(5281), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5574), 34, + ACTIONS(5283), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296021,55 +295275,156 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68094] = 8, - ACTIONS(3), 1, + [68276] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5556), 1, + STATE(2581), 1, + sym_comment, + ACTIONS(964), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, anon_sym_DOT2, - STATE(2592), 1, + ACTIONS(966), 48, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68342] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + anon_sym_DOLLAR, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5549), 1, + aux_sym__immediate_decimal_token5, + STATE(2582), 1, sym_comment, - STATE(2633), 1, - aux_sym_cell_path_repeat1, - STATE(2787), 1, - sym_path, - STATE(2868), 1, - sym_cell_path, - ACTIONS(1723), 4, + STATE(3132), 1, + sym__immediate_decimal, + STATE(3130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1701), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1703), 28, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1721), 47, anon_sym_LBRACK, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, aux_sym__val_number_token1, aux_sym__val_number_token2, aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68424] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5601), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5603), 1, + aux_sym__immediate_decimal_token2, + STATE(2583), 1, + sym_comment, + ACTIONS(1597), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -296078,6 +295433,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1599), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -296086,11 +295471,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [68168] = 4, + [68494] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2593), 1, + STATE(2584), 1, sym_comment, ACTIONS(984), 7, aux_sym_cmd_identifier_token1, @@ -296149,12 +295533,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68234] = 4, + [68560] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2594), 1, + ACTIONS(5605), 1, + anon_sym_QMARK2, + STATE(2585), 1, sym_comment, - ACTIONS(980), 7, + ACTIONS(958), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -296162,8 +295548,9 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(982), 48, + ACTIONS(960), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296201,8 +295588,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, @@ -296211,46 +295596,158 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68300] = 16, - ACTIONS(251), 1, + [68628] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(5537), 1, + anon_sym_DOT2, + STATE(2586), 1, + sym_comment, + STATE(2625), 1, + aux_sym_cell_path_repeat1, + STATE(2785), 1, + sym_path, + STATE(2849), 1, + sym_cell_path, + ACTIONS(937), 4, sym_raw_string_begin, - ACTIONS(4971), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(935), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2584), 1, - aux_sym_command_list_repeat1, - STATE(2595), 1, - sym_comment, - STATE(3645), 1, - sym__val_number_decimal, - STATE(6923), 1, - sym__command_name, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, - sym_val_string, - ACTIONS(3127), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [68702] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5492), 1, + anon_sym_DOLLAR, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + ACTIONS(5543), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5545), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5547), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5549), 1, + aux_sym__immediate_decimal_token5, + STATE(2587), 1, + sym_comment, + STATE(3114), 1, + sym__immediate_decimal, + STATE(3112), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1547), 18, + anon_sym_LPAREN, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5244), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1557), 28, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_COMMA, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [68784] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2588), 1, + sym_comment, + ACTIONS(984), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, + anon_sym_DOT2, + ACTIONS(986), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296285,46 +295782,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68390] = 16, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [68849] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3630), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3644), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2584), 1, - aux_sym_command_list_repeat1, - STATE(2596), 1, + STATE(2589), 1, sym_comment, - STATE(3645), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, + STATE(3955), 1, sym_val_string, - STATE(6983), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(4775), 1, sym__command_name, - ACTIONS(3127), 2, + ACTIONS(3632), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5129), 2, + STATE(4068), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5244), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296359,46 +295865,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68480] = 16, + [68936] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2597), 1, + STATE(2590), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7662), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6482), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296433,22 +295937,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [68570] = 4, + [69023] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2598), 1, + STATE(2591), 1, sym_comment, - ACTIONS(976), 7, + ACTIONS(2043), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(978), 48, + ACTIONS(2045), 48, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296486,160 +295988,29 @@ static const uint16_t ts_small_parse_table[] = { sym__newline, anon_sym_SEMI, anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_STAR2, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68636] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2599), 1, - sym_comment, - ACTIONS(1667), 10, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - ACTIONS(1669), 45, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [68702] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5532), 1, - anon_sym_DOLLAR, - ACTIONS(5534), 1, - anon_sym_LPAREN2, - ACTIONS(5564), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5566), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5568), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5570), 1, - aux_sym__immediate_decimal_token5, - STATE(2600), 1, - sym_comment, - STATE(3179), 1, - sym__immediate_decimal, - STATE(3150), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1711), 18, - anon_sym_LPAREN, - anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1713), 28, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [68784] = 4, + [69088] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2601), 1, + STATE(2592), 1, sym_comment, - ACTIONS(964), 6, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(966), 48, + ACTIONS(978), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296688,82 +296059,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68849] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5620), 1, - anon_sym_DOT2, - STATE(2787), 1, - sym_path, - STATE(2602), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(943), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(941), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [68918] = 4, + [69153] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2603), 1, + STATE(2593), 1, sym_comment, - ACTIONS(972), 6, + ACTIONS(2453), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(974), 48, + ACTIONS(2455), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -296812,44 +296120,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [68983] = 15, + [69218] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(123), 1, sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2604), 1, + STATE(2594), 1, sym_comment, - STATE(3557), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(5876), 1, + STATE(5811), 1, sym__command_name, - STATE(6534), 1, + STATE(6248), 1, sym_cmd_identifier, - STATE(6541), 1, + STATE(6250), 1, sym_val_string, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5013), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -296884,109 +296192,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69070] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5623), 1, - anon_sym_DOT2, - STATE(2605), 1, - sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2883), 1, - sym_cell_path, - ACTIONS(1721), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1723), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69143] = 15, + [69305] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2606), 1, + STATE(2595), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6571), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(2485), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(2487), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297021,84 +296240,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69230] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5623), 1, - anon_sym_DOT2, - STATE(2607), 1, - sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2910), 1, - sym_cell_path, - ACTIONS(935), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(937), 33, - sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [69303] = 4, + [69370] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2608), 1, + STATE(2596), 1, sym_comment, - ACTIONS(1717), 6, + ACTIONS(2453), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1719), 48, + ACTIONS(2455), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297147,19 +296314,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69368] = 4, + [69435] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2609), 1, + STATE(2597), 1, sym_comment, - ACTIONS(5625), 6, + ACTIONS(5607), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5627), 48, + ACTIONS(5609), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297208,44 +296375,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69433] = 15, + [69500] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2610), 1, + STATE(2598), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6122), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6239), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297280,19 +296447,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69520] = 4, + [69587] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2611), 1, + STATE(2599), 1, sym_comment, - ACTIONS(4941), 6, + ACTIONS(5611), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4939), 48, + ACTIONS(5613), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297341,117 +296508,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69585] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2612), 1, - sym_comment, - STATE(3557), 1, - sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, - sym_val_string, - STATE(7033), 1, - sym__command_name, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1720), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5013), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [69672] = 5, - ACTIONS(251), 1, + [69652] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5629), 1, + ACTIONS(5559), 1, aux_sym__immediate_decimal_token2, - STATE(2613), 1, + STATE(2600), 1, sym_comment, - ACTIONS(1667), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 35, + ACTIONS(1751), 5, sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1749), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -297461,12 +296545,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -297475,44 +296568,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [69739] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [69719] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2614), 1, + STATE(2601), 1, sym_comment, - STATE(3557), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(5915), 1, - sym__command_name, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, + STATE(3955), 1, sym_val_string, - ACTIONS(111), 2, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7380), 1, + sym__command_name, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5013), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297547,19 +296642,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69826] = 4, + [69806] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2615), 1, + STATE(2602), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(978), 48, + ACTIONS(970), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297608,44 +296703,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [69891] = 15, + [69871] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2616), 1, + STATE(2603), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7437), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(5751), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297680,44 +296775,82 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [69978] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, + [69958] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(5615), 1, + aux_sym__immediate_decimal_token2, + STATE(2604), 1, + sym_comment, + ACTIONS(1774), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1772), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2617), 1, - sym_comment, - STATE(3557), 1, - sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, - sym_val_string, - STATE(7039), 1, - sym__command_name, - ACTIONS(111), 2, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(1720), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5013), 6, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [70025] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2605), 1, + sym_comment, + ACTIONS(1757), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(1759), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297752,44 +296885,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70065] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 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, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2618), 1, - sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(7751), 1, - sym__command_name, - ACTIONS(1297), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + [70090] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2606), 1, + sym_comment, + ACTIONS(5617), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(5619), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297824,44 +296946,122 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70152] = 15, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [70155] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(5621), 1, + anon_sym_DOT2, + STATE(2607), 1, + sym_comment, + STATE(2698), 1, + aux_sym_cell_path_repeat1, + STATE(2837), 1, + sym_path, + STATE(2908), 1, + sym_cell_path, + ACTIONS(935), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(937), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5635), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(5639), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [70228] = 15, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(123), 1, sym_raw_string_begin, - STATE(1801), 1, - sym__command_name, - STATE(2619), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2608), 1, sym_comment, - STATE(2725), 1, + STATE(3553), 1, + sym__val_number_decimal, + STATE(6248), 1, sym_cmd_identifier, - STATE(2726), 1, + STATE(6250), 1, sym_val_string, - STATE(3668), 1, - sym__val_number_decimal, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - ACTIONS(5637), 2, + STATE(6692), 1, + sym__command_name, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2723), 2, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5631), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5633), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -297896,19 +297096,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70239] = 4, + [70315] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2620), 1, + STATE(2609), 1, sym_comment, - ACTIONS(2411), 6, + ACTIONS(5623), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2413), 48, + ACTIONS(5625), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -297957,20 +297157,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70304] = 8, + [70380] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5623), 1, - anon_sym_DOT2, - STATE(2621), 1, + ACTIONS(5627), 1, + aux_sym__immediate_decimal_token2, + STATE(2610), 1, sym_comment, - STATE(2715), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - STATE(2897), 1, - sym_cell_path, - ACTIONS(1717), 17, + ACTIONS(1685), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -297988,7 +297182,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1719), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1687), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -298010,6 +297205,8 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, @@ -298022,44 +297219,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [70377] = 15, + [70447] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2622), 1, + STATE(2611), 1, sym_comment, - STATE(3649), 1, + STATE(3621), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(6831), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6832), 1, sym_val_string, - STATE(4635), 1, + STATE(7247), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(5281), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(5283), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298094,20 +297291,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70464] = 4, + [70534] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2623), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2612), 1, sym_comment, - ACTIONS(2431), 6, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6483), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2433), 48, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298142,33 +297363,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [70621] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2613), 1, + sym_comment, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6484), 1, + sym__command_name, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - [70529] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2624), 1, - sym_comment, - ACTIONS(2423), 6, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2425), 48, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298203,32 +297435,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70594] = 4, + [70708] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2625), 1, + STATE(2614), 1, sym_comment, - ACTIONS(4998), 6, + ACTIONS(5629), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4996), 48, + ACTIONS(5631), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298277,19 +297496,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70659] = 4, + [70773] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2626), 1, + STATE(2615), 1, sym_comment, - ACTIONS(5641), 6, + ACTIONS(5633), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5643), 48, + ACTIONS(5635), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298338,19 +297557,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70724] = 4, + [70838] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2627), 1, + STATE(2616), 1, sym_comment, - ACTIONS(5645), 6, + ACTIONS(4973), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5647), 48, + ACTIONS(4971), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -298399,20 +297618,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [70789] = 4, + [70903] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2628), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2617), 1, sym_comment, - ACTIONS(2435), 6, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6267), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2437), 48, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298447,57 +297690,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [70854] = 15, + [70990] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2629), 1, + STATE(2618), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(5780), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7754), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298532,44 +297762,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [70941] = 15, + [71077] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, + ACTIONS(5641), 1, anon_sym_DQUOTE, - ACTIONS(5580), 1, + ACTIONS(5645), 1, sym_raw_string_begin, - STATE(1693), 1, + STATE(1724), 1, sym__command_name, - STATE(2609), 1, - sym_val_string, - STATE(2630), 1, + STATE(2619), 1, sym_comment, - STATE(2670), 1, + STATE(2669), 1, sym_cmd_identifier, - STATE(3640), 1, + STATE(2672), 1, + sym_val_string, + STATE(3554), 1, sym__val_number_decimal, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - ACTIONS(5578), 2, + ACTIONS(5643), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2601), 2, + STATE(2664), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5572), 6, + ACTIONS(5637), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5574), 34, + ACTIONS(5639), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298604,44 +297834,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71028] = 15, + [71164] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2631), 1, + STATE(2620), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6601), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6529), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298676,44 +297906,20 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71115] = 15, + [71251] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2632), 1, + STATE(2621), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(5733), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(5647), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(5649), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298748,108 +297954,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71202] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5556), 1, - anon_sym_DOT2, - STATE(2602), 1, - aux_sym_cell_path_repeat1, - STATE(2633), 1, - sym_comment, - STATE(2787), 1, - sym_path, - ACTIONS(950), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(948), 47, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [71273] = 15, + [71316] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2634), 1, + STATE(2622), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(7662), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4977), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4975), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298884,44 +298015,57 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71360] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 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, + sym__str_single_quotes, + sym__str_back_ticks, + [71381] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2635), 1, + STATE(2623), 1, sym_comment, - STATE(3649), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(6248), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6250), 1, sym_val_string, - STATE(6229), 1, + STATE(6886), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -298956,44 +298100,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71447] = 15, + [71468] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2636), 1, + STATE(2624), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6205), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6120), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299028,20 +298172,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71534] = 5, + [71555] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5562), 1, - aux_sym__immediate_decimal_token2, - STATE(2637), 1, + ACTIONS(5537), 1, + anon_sym_DOT2, + STATE(2625), 1, sym_comment, - ACTIONS(1727), 5, + STATE(2641), 1, + aux_sym_cell_path_repeat1, + STATE(2785), 1, + sym_path, + ACTIONS(950), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1725), 48, + ACTIONS(948), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -299089,45 +298236,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [71601] = 15, + [71626] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2638), 1, + STATE(2626), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7452), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(4775), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299162,44 +298308,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71688] = 15, + [71713] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2639), 1, + STATE(2627), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6349), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(988), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + anon_sym_DOT2, + ACTIONS(990), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299234,22 +298358,55 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71775] = 4, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [71778] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2640), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2628), 1, sym_comment, - ACTIONS(980), 7, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7714), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(982), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299284,55 +298441,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [71840] = 15, + [71865] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2641), 1, + STATE(2629), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(6206), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6599), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299367,44 +298513,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [71927] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, + [71952] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2642), 1, + STATE(2630), 1, sym_comment, - STATE(3649), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(5913), 1, + sym__command_name, + STATE(6248), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6250), 1, sym_val_string, - STATE(7640), 1, - sym__command_name, - ACTIONS(1297), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299439,44 +298585,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72014] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, + [72039] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2643), 1, + STATE(2631), 1, sym_comment, - STATE(3649), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(6248), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6250), 1, sym_val_string, - STATE(6420), 1, + STATE(6955), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299511,19 +298657,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72101] = 4, + [72126] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2644), 1, + STATE(2632), 1, sym_comment, - ACTIONS(5649), 6, + ACTIONS(1018), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5651), 48, + ACTIONS(1020), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299572,44 +298718,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72166] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [72191] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2645), 1, + STATE(2633), 1, sym_comment, - STATE(3557), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, + STATE(3955), 1, sym_val_string, - STATE(6776), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7594), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5013), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299644,20 +298790,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72253] = 4, + [72278] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2646), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2634), 1, sym_comment, - ACTIONS(1018), 6, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6152), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1020), 48, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299692,33 +298862,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, + [72365] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, + STATE(2635), 1, + sym_comment, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7405), 1, + sym__command_name, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - [72318] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2647), 1, - sym_comment, - ACTIONS(968), 6, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(970), 48, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299753,57 +298934,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72383] = 15, + [72452] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2648), 1, + STATE(2636), 1, sym_comment, - STATE(3645), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(6931), 1, - sym_cmd_identifier, - STATE(6932), 1, + STATE(3955), 1, sym_val_string, - STATE(7338), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(6171), 1, sym__command_name, - ACTIONS(3127), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(5129), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5244), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5246), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299838,19 +299006,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72470] = 4, + [72539] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2649), 1, + STATE(2637), 1, sym_comment, - ACTIONS(2411), 6, + ACTIONS(972), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2413), 48, + ACTIONS(974), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -299899,44 +299067,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72535] = 15, + [72604] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, - aux_sym__val_number_decimal_token4, - STATE(2650), 1, + STATE(2638), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(7525), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(964), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(966), 48, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -299971,34 +299115,63 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72622] = 5, - ACTIONS(3), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [72669] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5653), 1, - aux_sym__immediate_decimal_token2, - STATE(2651), 1, + ACTIONS(5621), 1, + anon_sym_DOT2, + STATE(2639), 1, sym_comment, - ACTIONS(1767), 5, + STATE(2698), 1, + aux_sym_cell_path_repeat1, + STATE(2837), 1, + sym_path, + STATE(2924), 1, + sym_cell_path, + ACTIONS(1757), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1759), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -300008,21 +299181,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -300031,21 +299193,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [72689] = 4, + [72742] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2652), 1, + STATE(2640), 1, sym_comment, - ACTIONS(2419), 6, + ACTIONS(2481), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2421), 48, + ACTIONS(2483), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300094,44 +299254,172 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [72754] = 15, + [72807] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5651), 1, + anon_sym_DOT2, + STATE(2785), 1, + sym_path, + STATE(2641), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(943), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(941), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [72876] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5621), 1, + anon_sym_DOT2, + STATE(2642), 1, + sym_comment, + STATE(2698), 1, + aux_sym_cell_path_repeat1, + STATE(2837), 1, + sym_path, + STATE(2914), 1, + sym_cell_path, + ACTIONS(1721), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1723), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [72949] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(123), 1, sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2653), 1, + STATE(2643), 1, sym_comment, - STATE(3557), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(6534), 1, + STATE(6248), 1, sym_cmd_identifier, - STATE(6541), 1, + STATE(6250), 1, sym_val_string, - STATE(6705), 1, + STATE(6937), 1, sym__command_name, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5013), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300166,20 +299454,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72841] = 4, + [73036] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2654), 1, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5571), 1, + anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + STATE(1687), 1, + sym__command_name, + STATE(2614), 1, + sym_cmd_identifier, + STATE(2615), 1, + sym_val_string, + STATE(2644), 1, sym_comment, - ACTIONS(5655), 6, + STATE(3615), 1, + sym__val_number_decimal, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + ACTIONS(5573), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2638), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5567), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5657), 48, - sym_raw_string_begin, + ACTIONS(5569), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300214,57 +299526,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [72906] = 15, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [73123] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2655), 1, + STATE(2645), 1, sym_comment, - STATE(3557), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(6534), 1, - sym_cmd_identifier, - STATE(6541), 1, + STATE(3955), 1, sym_val_string, - STATE(7006), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7365), 1, sym__command_name, - ACTIONS(111), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5013), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300299,44 +299598,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [72993] = 15, + [73210] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2656), 1, + STATE(2646), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7565), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7454), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300371,22 +299670,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73080] = 4, + [73297] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2657), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2647), 1, sym_comment, - ACTIONS(988), 7, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7490), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(990), 47, - sym_raw_string_begin, - ts_builtin_sym_end, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300421,55 +299742,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73145] = 15, + [73384] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2658), 1, + STATE(2648), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7681), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7706), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300504,44 +299814,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73232] = 15, + [73471] = 15, ACTIONS(109), 1, anon_sym_DQUOTE, ACTIONS(123), 1, sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2659), 1, + STATE(2649), 1, sym_comment, - STATE(3557), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(6534), 1, + STATE(6248), 1, sym_cmd_identifier, - STATE(6541), 1, + STATE(6250), 1, sym_val_string, - STATE(6707), 1, + STATE(6938), 1, sym__command_name, ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(1720), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5013), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5015), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300576,14 +299886,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73319] = 5, + [73558] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5618), 1, + ACTIONS(5541), 1, aux_sym__immediate_decimal_token2, - STATE(2660), 1, + STATE(2650), 1, sym_comment, - ACTIONS(1587), 18, + ACTIONS(1605), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -300602,7 +299912,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1589), 35, + ACTIONS(1607), 35, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -300638,44 +299948,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [73386] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, + [73625] = 15, + ACTIONS(109), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(123), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2661), 1, + STATE(2651), 1, sym_comment, - STATE(3649), 1, + STATE(3553), 1, sym__val_number_decimal, - STATE(3983), 1, + STATE(6248), 1, sym_cmd_identifier, - STATE(3984), 1, + STATE(6250), 1, sym_val_string, - STATE(7448), 1, + STATE(6696), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4997), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4999), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300710,44 +300020,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73473] = 15, + [73712] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2662), 1, + STATE(2652), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7482), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7746), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300782,20 +300092,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73560] = 4, + [73799] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(2663), 1, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(4942), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(4944), 1, + aux_sym__val_number_decimal_token4, + STATE(2653), 1, sym_comment, - ACTIONS(5659), 6, + STATE(3561), 1, + sym__val_number_decimal, + STATE(3955), 1, + sym_val_string, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7376), 1, + sym__command_name, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4940), 2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5661), 48, - sym_raw_string_begin, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300830,57 +300164,44 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [73625] = 15, + [73886] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3621), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(3635), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2664), 1, + STATE(2654), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(4635), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(7558), 1, sym__command_name, - ACTIONS(3623), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(4074), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -300915,19 +300236,80 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73712] = 4, + [73973] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2665), 1, + STATE(2655), 1, + sym_comment, + ACTIONS(2322), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2324), 48, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [74038] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2656), 1, sym_comment, - ACTIONS(2102), 6, + ACTIONS(2326), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2104), 48, + ACTIONS(2328), 48, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -300976,44 +300358,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [73777] = 15, + [74103] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - ACTIONS(4971), 1, + ACTIONS(4942), 1, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, + ACTIONS(4944), 1, aux_sym__val_number_decimal_token4, - STATE(2666), 1, + STATE(2657), 1, sym_comment, - STATE(3649), 1, + STATE(3561), 1, sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, + STATE(3955), 1, sym_val_string, - STATE(7768), 1, + STATE(3982), 1, + sym_cmd_identifier, + STATE(5650), 1, sym__command_name, - ACTIONS(1297), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + ACTIONS(4940), 2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(4930), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(4932), 34, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301048,44 +300430,151 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73864] = 15, + [74190] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, + STATE(2658), 1, + sym_comment, + ACTIONS(980), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(982), 47, sym_raw_string_begin, - ACTIONS(4971), 1, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2667), 1, - sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6533), 1, - sym__command_name, - ACTIONS(1297), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + [74255] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5654), 1, + anon_sym_DOT2, + STATE(2837), 1, + sym_path, + STATE(2659), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(943), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [74323] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2660), 1, + sym_comment, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2979), 1, + sym_cell_path, + ACTIONS(2028), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(2030), 43, + sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301120,44 +300609,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [73951] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 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(1299), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [74395] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2661), 1, + sym_comment, + ACTIONS(1774), 5, sym_raw_string_begin, - ACTIONS(4971), 1, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1772), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2668), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74459] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2662), 1, sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(7394), 1, - sym__command_name, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4969), 2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, + ACTIONS(2322), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, + ACTIONS(2324), 47, + sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301192,92 +300726,92 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - [74038] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(4971), 1, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, - ACTIONS(4973), 1, aux_sym__val_number_decimal_token4, - STATE(2669), 1, - sym_comment, - STATE(3649), 1, - sym__val_number_decimal, - STATE(3983), 1, - sym_cmd_identifier, - STATE(3984), 1, - sym_val_string, - STATE(6305), 1, - sym__command_name, - ACTIONS(1297), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(4969), 2, + [74523] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2663), 1, + sym_comment, + ACTIONS(1819), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1817), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(4959), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(4961), 34, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - [74125] = 4, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [74587] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2670), 1, + STATE(2664), 1, sym_comment, - ACTIONS(5663), 6, + ACTIONS(964), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5665), 48, + ACTIONS(966), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301315,8 +300849,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, @@ -301325,22 +300857,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74190] = 4, + [74651] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2671), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2665), 1, sym_comment, - ACTIONS(984), 7, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2938), 1, + sym_cell_path, + ACTIONS(1847), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(986), 47, + ACTIONS(1849), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -301375,10 +300913,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -301386,27 +300921,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74255] = 8, + [74723] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2672), 1, + STATE(2666), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(3025), 1, + STATE(2955), 1, sym_cell_path, - ACTIONS(1961), 6, + ACTIONS(1851), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1963), 43, + ACTIONS(1853), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -301450,80 +300985,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [74327] = 8, - ACTIONS(3), 1, + [74795] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(5669), 1, - anon_sym_DOT_DOT2, - STATE(2673), 1, + ACTIONS(5659), 1, + sym__newline, + STATE(2667), 1, sym_comment, - ACTIONS(1794), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5671), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 46, - anon_sym_LBRACK, + ACTIONS(5662), 2, anon_sym_RBRACK, - anon_sym_LPAREN, anon_sym_COMMA, + ACTIONS(1270), 15, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74399] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2674), 1, - sym_comment, - ACTIONS(1587), 18, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -301537,80 +301011,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1589), 35, + ACTIONS(1268), 35, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74463] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2675), 1, - sym_comment, - ACTIONS(1595), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1597), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -301620,12 +301032,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301634,353 +301047,195 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [74527] = 4, + [74863] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2676), 1, + STATE(2668), 1, sym_comment, - ACTIONS(1667), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 35, + ACTIONS(2326), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2328), 47, sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74591] = 4, + [74927] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2677), 1, + STATE(2669), 1, sym_comment, - ACTIONS(1733), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1735), 35, + ACTIONS(5629), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5631), 47, sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_filesize_unit, - sym_duration_unit, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [74655] = 8, - ACTIONS(3), 1, + [74991] = 31, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5673), 1, - anon_sym_DOT_DOT2, - STATE(2678), 1, - sym_comment, - ACTIONS(1873), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5675), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(1283), 1, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, + ACTIONS(1297), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74727] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2679), 1, - sym_comment, - ACTIONS(966), 4, + ACTIONS(1301), 1, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(964), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(3206), 1, + aux_sym_unquoted_token1, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(3924), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4048), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, sym_val_date, - anon_sym_DQUOTE, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2670), 1, + sym_comment, + STATE(5597), 1, + sym__val_number_decimal, + STATE(6480), 1, + sym_unquoted, + STATE(7646), 1, + sym__val_range, + STATE(7648), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74791] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2680), 1, - sym_comment, - ACTIONS(970), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(968), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(3934), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74855] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2681), 1, - sym_comment, - ACTIONS(974), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(972), 49, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + ACTIONS(4050), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOT2, + STATE(6479), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -301989,6 +301244,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(2646), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -301997,32 +301254,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [74919] = 4, + [75109] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(2682), 1, - sym_comment, - ACTIONS(978), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5670), 1, + anon_sym_RBRACK, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(976), 49, + ACTIONS(5674), 1, + sym_raw_string_begin, + STATE(2671), 1, + sym_comment, + STATE(2688), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302040,7 +301297,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302058,117 +301317,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [74983] = 33, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2583), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, - anon_sym_LBRACK, - ACTIONS(3093), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3107), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3109), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3111), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3113), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3119), 1, - anon_sym_0b, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(5677), 1, - anon_sym_LBRACE, - ACTIONS(5679), 1, - anon_sym_DOT_DOT, - ACTIONS(5683), 1, - anon_sym_null, - ACTIONS(5687), 1, - sym_val_date, - STATE(2683), 1, - sym_comment, - STATE(5529), 1, - sym__val_number_decimal, - STATE(5784), 1, - sym_val_variable, - STATE(5926), 1, - sym_expr_parenthesized, - STATE(6854), 1, - sym__inter_single_quotes, - STATE(6868), 1, - sym__inter_double_quotes, - STATE(7195), 1, - sym__val_number, - STATE(7365), 1, - sym_block, - ACTIONS(3121), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5681), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5685), 2, - anon_sym_true, - anon_sym_false, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7368), 2, - sym_val_range, - sym__value, - ACTIONS(3115), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7128), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [75105] = 8, + [75179] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2684), 1, + STATE(2672), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(3032), 1, - sym_cell_path, - ACTIONS(1993), 6, + ACTIONS(5633), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1995), 43, + ACTIONS(5635), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302203,124 +301366,38 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [75177] = 33, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2581), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(2583), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(3089), 1, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - ACTIONS(3093), 1, - anon_sym_LPAREN, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(3107), 1, + anon_sym_STAR2, aux_sym__val_number_decimal_token1, - ACTIONS(3109), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3111), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3113), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3119), 1, - anon_sym_0b, - ACTIONS(3125), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(5677), 1, - anon_sym_LBRACE, - ACTIONS(5679), 1, - anon_sym_DOT_DOT, - ACTIONS(5683), 1, - anon_sym_null, - ACTIONS(5687), 1, - sym_val_date, - STATE(2685), 1, - sym_comment, - STATE(5529), 1, - sym__val_number_decimal, - STATE(5784), 1, - sym_val_variable, - STATE(5930), 1, - sym_expr_parenthesized, - STATE(6854), 1, - sym__inter_single_quotes, - STATE(6868), 1, - sym__inter_double_quotes, - STATE(7195), 1, - sym__val_number, - STATE(7371), 1, - sym_block, - ACTIONS(3121), 2, - anon_sym_0o, - anon_sym_0x, - ACTIONS(3127), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5681), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5685), 2, - anon_sym_true, - anon_sym_false, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(7305), 2, - sym_val_range, - sym__value, - ACTIONS(3115), 6, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(7128), 12, - sym_val_nothing, - sym_val_bool, - sym_val_number, - sym_val_duration, - sym_val_filesize, - sym_val_binary, - sym_val_string, - sym_val_interpolated, - sym_val_list, - sym_val_record, - sym_val_table, - sym_val_closure, - [75299] = 8, + [75243] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2686), 1, + STATE(2673), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2972), 1, + STATE(2944), 1, sym_cell_path, - ACTIONS(1997), 6, + ACTIONS(935), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1999), 43, + ACTIONS(937), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302364,28 +301441,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75371] = 8, + [75315] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2687), 1, + STATE(2674), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(2969), 1, - sym_cell_path, - ACTIONS(1957), 6, + ACTIONS(1018), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1959), 43, + ACTIONS(1020), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302420,7 +301490,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + 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, @@ -302428,16 +301501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75443] = 6, + [75379] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5689), 1, + ACTIONS(5676), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5691), 1, + ACTIONS(5678), 1, aux_sym__immediate_decimal_token2, - STATE(2688), 1, + STATE(2675), 1, sym_comment, - ACTIONS(1757), 18, + ACTIONS(1731), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -302456,7 +301529,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 33, + ACTIONS(1733), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -302490,28 +301563,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [75511] = 8, + [75447] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2689), 1, + STATE(2676), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(2974), 1, - sym_cell_path, - ACTIONS(2001), 6, + ACTIONS(2481), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2003), 43, + ACTIONS(2483), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302546,29 +301612,159 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [75511] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2677), 1, + sym_comment, + ACTIONS(1685), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1687), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [75575] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2678), 1, + sym_comment, + ACTIONS(1727), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75583] = 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, + [75639] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2690), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2679), 1, sym_comment, - ACTIONS(2411), 6, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(3004), 1, + sym_cell_path, + ACTIONS(1855), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2413), 47, + ACTIONS(1857), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302603,10 +301799,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302614,79 +301807,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75647] = 4, + [75711] = 33, ACTIONS(251), 1, anon_sym_POUND, - STATE(2691), 1, - sym_comment, - ACTIONS(2411), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2413), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + ACTIONS(2571), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2573), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3076), 1, anon_sym_LBRACK, - anon_sym_STAR2, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + anon_sym_DOLLAR, + ACTIONS(3094), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3096), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3098), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3100), 1, aux_sym__val_number_decimal_token4, + ACTIONS(3106), 1, + anon_sym_0b, + ACTIONS(3112), 1, anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(5680), 1, + anon_sym_LBRACE, + ACTIONS(5682), 1, + anon_sym_DOT_DOT, + ACTIONS(5686), 1, + anon_sym_null, + ACTIONS(5690), 1, + sym_val_date, + STATE(2680), 1, + sym_comment, + STATE(5516), 1, + sym__val_number_decimal, + STATE(5692), 1, + sym_val_variable, + STATE(5990), 1, + sym_expr_parenthesized, + STATE(6628), 1, + sym__inter_single_quotes, + STATE(6638), 1, + sym__val_number, + STATE(6821), 1, + sym__inter_double_quotes, + STATE(7303), 1, + sym_block, + ACTIONS(3108), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - [75711] = 4, + ACTIONS(5684), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5688), 2, + anon_sym_true, + anon_sym_false, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7319), 2, + sym_val_range, + sym__value, + ACTIONS(3102), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7103), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [75833] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2692), 1, + STATE(2681), 1, sym_comment, - ACTIONS(5655), 6, + ACTIONS(2485), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5657), 47, + ACTIONS(2487), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -302734,27 +301956,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75775] = 8, + [75897] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2693), 1, + STATE(2682), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2984), 1, + STATE(2948), 1, sym_cell_path, - ACTIONS(2005), 6, + ACTIONS(1859), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2007), 43, + ACTIONS(1861), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -302798,93 +302020,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [75847] = 6, - ACTIONS(251), 1, + [75969] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5693), 1, - anon_sym_DOT, - ACTIONS(5695), 1, - aux_sym__immediate_decimal_token2, - STATE(2694), 1, - sym_comment, - ACTIONS(1725), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 33, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5692), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [75915] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2695), 1, + STATE(2683), 1, sym_comment, - ACTIONS(1727), 5, - sym_raw_string_begin, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1725), 48, + STATE(2688), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5668), 49, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -302902,6 +302063,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -302919,29 +302083,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [75979] = 8, + [76039] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2696), 1, + STATE(2684), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(2947), 1, - sym_cell_path, - ACTIONS(1965), 6, + ACTIONS(2043), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1967), 43, + ACTIONS(2045), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -302976,7 +302132,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + 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, @@ -302984,18 +302143,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76051] = 4, + [76103] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2697), 1, + ACTIONS(5694), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5696), 1, + aux_sym__immediate_decimal_token2, + STATE(2685), 1, sym_comment, - ACTIONS(1759), 5, + ACTIONS(1733), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1757), 48, + ACTIONS(1731), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303043,19 +302205,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76115] = 4, + [76171] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2698), 1, + ACTIONS(5698), 1, + anon_sym_DOT, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token2, + STATE(2686), 1, sym_comment, - ACTIONS(1767), 5, + ACTIONS(1751), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1765), 48, + ACTIONS(1749), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303103,19 +302267,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76179] = 4, + [76239] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2699), 1, + STATE(2687), 1, sym_comment, - ACTIONS(1863), 5, + ACTIONS(978), 4, sym_raw_string_begin, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1861), 48, + ACTIONS(976), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -303123,6 +302285,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -303146,6 +302309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303163,22 +302327,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [76243] = 4, + [76303] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2371), 1, + sym_raw_string_begin, + ACTIONS(5702), 1, + sym__entry_separator, + STATE(2688), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2366), 50, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [76369] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2700), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2689), 1, sym_comment, - ACTIONS(2419), 6, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2962), 1, + sym_cell_path, + ACTIONS(1863), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2421), 47, + ACTIONS(1865), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303213,10 +302444,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303224,21 +302452,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76307] = 4, + [76441] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2701), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2690), 1, sym_comment, - ACTIONS(2423), 6, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2970), 1, + sym_cell_path, + ACTIONS(1867), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2425), 47, + ACTIONS(1869), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303273,10 +302508,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303284,75 +302516,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76371] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, + [76513] = 30, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3433), 1, + ACTIONS(3398), 1, anon_sym_COLON2, - ACTIONS(3861), 1, - anon_sym_DOLLAR, - ACTIONS(3873), 1, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5699), 1, + ACTIONS(5571), 1, + anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + ACTIONS(5666), 1, sym_val_date, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, + ACTIONS(5705), 1, + anon_sym_LPAREN, + ACTIONS(5707), 1, + anon_sym_DOLLAR, + ACTIONS(5709), 1, + anon_sym_DOT_DOT, + ACTIONS(5715), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5717), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5719), 1, + aux_sym_unquoted_token1, + STATE(2593), 1, sym__inter_single_quotes, - STATE(2702), 1, + STATE(2596), 1, + sym__inter_double_quotes, + STATE(2691), 1, sym_comment, - STATE(5674), 1, + STATE(5777), 1, sym__val_number_decimal, - STATE(6329), 1, - sym_unquoted, - STATE(7439), 1, + STATE(7524), 1, sym__val_range, - STATE(7445), 1, + STATE(7540), 1, sym__unquoted_anonymous_prefix, - STATE(7527), 1, + STATE(7730), 1, sym_val_bool, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3871), 2, + ACTIONS(3934), 2, anon_sym_true, anon_sym_false, - ACTIONS(4141), 2, + ACTIONS(5573), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5711), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(3916), 2, + STATE(2638), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5697), 3, + ACTIONS(5713), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6323), 4, + STATE(1664), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - ACTIONS(2741), 8, + sym_unquoted, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303361,69 +302592,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(2743), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [76489] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5701), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5703), 1, - aux_sym__immediate_decimal_token2, - STATE(2703), 1, - sym_comment, - ACTIONS(1759), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1757), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(2646), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -303432,28 +302602,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, - aux_sym__unquoted_in_list_token1, - [76557] = 8, + [76629] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2704), 1, + STATE(2692), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2951), 1, + STATE(2945), 1, sym_cell_path, - ACTIONS(1969), 6, + ACTIONS(1885), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1971), 43, + ACTIONS(1887), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303497,27 +302666,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76629] = 8, + [76701] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2705), 1, + STATE(2693), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2976), 1, + STATE(2982), 1, sym_cell_path, - ACTIONS(1945), 6, + ACTIONS(1893), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1947), 43, + ACTIONS(1895), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303561,81 +302730,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76701] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2706), 1, - sym_comment, - ACTIONS(5659), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5661), 47, - sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [76765] = 4, + [76773] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2707), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2694), 1, sym_comment, - ACTIONS(1717), 6, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2994), 1, + sym_cell_path, + ACTIONS(1901), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1719), 47, + ACTIONS(1903), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -303670,10 +302786,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303681,27 +302794,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76829] = 8, + [76845] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2708), 1, + STATE(2695), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(3011), 1, + STATE(2974), 1, sym_cell_path, - ACTIONS(2009), 6, + ACTIONS(1875), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2011), 43, + ACTIONS(1877), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303745,27 +302858,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76901] = 8, + [76917] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2709), 1, + STATE(2696), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(3015), 1, + STATE(3006), 1, sym_cell_path, - ACTIONS(2089), 6, + ACTIONS(1879), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2091), 43, + ACTIONS(1881), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -303809,34 +302922,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [76973] = 6, + [76989] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5705), 1, - anon_sym_DOT, - ACTIONS(5707), 1, - aux_sym__immediate_decimal_token2, - STATE(2710), 1, - sym_comment, - ACTIONS(1727), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(1725), 47, - anon_sym_LBRACK, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5721), 1, anon_sym_RBRACK, + STATE(2688), 1, + aux_sym__multiple_types_repeat1, + STATE(2697), 1, + sym_comment, + ACTIONS(5668), 49, + anon_sym_LBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -303854,6 +302965,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -303871,212 +302985,299 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [77041] = 8, + [77059] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5621), 1, anon_sym_DOT2, - STATE(2711), 1, - sym_comment, - STATE(2756), 1, + STATE(2659), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2698), 1, + sym_comment, + STATE(2837), 1, sym_path, - STATE(2983), 1, - sym_cell_path, - ACTIONS(1925), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1927), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(948), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(950), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77113] = 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, + [77129] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2712), 1, + ACTIONS(5723), 1, + anon_sym_DOT, + ACTIONS(5725), 1, + aux_sym__immediate_decimal_token2, + STATE(2699), 1, sym_comment, - ACTIONS(2431), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2433), 47, + ACTIONS(1749), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 33, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77177] = 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, + [77197] = 33, ACTIONS(251), 1, anon_sym_POUND, - STATE(2713), 1, + ACTIONS(2571), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(2573), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(3076), 1, + anon_sym_LBRACK, + ACTIONS(3080), 1, + anon_sym_LPAREN, + ACTIONS(3082), 1, + anon_sym_DOLLAR, + ACTIONS(3094), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3096), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3098), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3100), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3106), 1, + anon_sym_0b, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(5680), 1, + anon_sym_LBRACE, + ACTIONS(5682), 1, + anon_sym_DOT_DOT, + ACTIONS(5686), 1, + anon_sym_null, + ACTIONS(5690), 1, + sym_val_date, + STATE(2700), 1, sym_comment, - ACTIONS(2435), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2437), 47, + STATE(5516), 1, + sym__val_number_decimal, + STATE(5692), 1, + sym_val_variable, + STATE(6043), 1, + sym_expr_parenthesized, + STATE(6628), 1, + sym__inter_single_quotes, + STATE(6638), 1, + sym__val_number, + STATE(6821), 1, + sym__inter_double_quotes, + STATE(7331), 1, + sym_block, + ACTIONS(3108), 2, + anon_sym_0o, + anon_sym_0x, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5684), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5688), 2, + anon_sym_true, + anon_sym_false, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(7337), 2, + sym_val_range, + sym__value, + ACTIONS(3102), 6, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(7103), 12, + sym_val_nothing, + sym_val_bool, + sym_val_number, + sym_val_duration, + sym_val_filesize, + sym_val_binary, + sym_val_string, + sym_val_interpolated, + sym_val_list, + sym_val_record, + sym_val_table, + sym_val_closure, + [77319] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(5727), 1, + anon_sym_DOT_DOT2, + STATE(2701), 1, + sym_comment, + ACTIONS(1813), 2, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(5729), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77241] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77391] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2714), 1, + STATE(2702), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(2961), 1, - sym_cell_path, - ACTIONS(1973), 6, + ACTIONS(5607), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1975), 43, + ACTIONS(5609), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304111,99 +303312,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77313] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5623), 1, - anon_sym_DOT2, - STATE(2715), 1, - sym_comment, - STATE(2717), 1, - aux_sym_cell_path_repeat1, - STATE(2841), 1, - sym_path, - ACTIONS(948), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(950), 33, - sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [77383] = 8, + [77455] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2716), 1, + STATE(2703), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(2954), 1, - sym_cell_path, - ACTIONS(1953), 6, + ACTIONS(5617), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1955), 43, + ACTIONS(5619), 47, sym_raw_string_begin, + ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304238,89 +303372,30 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [77455] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5709), 1, - anon_sym_DOT2, - STATE(2841), 1, - sym_path, - STATE(2717), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(941), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(943), 33, - sym_raw_string_begin, + sym__newline, + anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [77523] = 4, + [77519] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2718), 1, + STATE(2704), 1, sym_comment, - ACTIONS(4998), 6, + ACTIONS(4973), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4996), 47, + ACTIONS(4971), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304368,181 +303443,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77587] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5714), 1, - anon_sym_RBRACK, - ACTIONS(5716), 1, - sym__entry_separator, - ACTIONS(5718), 1, - sym_raw_string_begin, - STATE(2719), 1, - sym_comment, - STATE(2733), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5712), 49, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + [77583] = 31, + ACTIONS(241), 1, anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77657] = 7, - ACTIONS(3), 1, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5716), 1, - sym__entry_separator, - ACTIONS(5718), 1, - sym_raw_string_begin, - ACTIONS(5720), 1, - anon_sym_RBRACK, - STATE(2720), 1, - sym_comment, - STATE(2733), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5712), 49, - anon_sym_LBRACK, + ACTIONS(1283), 1, anon_sym_LPAREN, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3206), 1, + aux_sym_unquoted_token1, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(3924), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(4048), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, sym_val_date, - anon_sym_DQUOTE, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2705), 1, + sym_comment, + STATE(5597), 1, + sym__val_number_decimal, + STATE(6480), 1, + sym_unquoted, + STATE(7646), 1, + sym__val_range, + STATE(7648), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77727] = 10, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5724), 1, - anon_sym_RBRACK, - ACTIONS(5727), 1, - anon_sym_DOT2, - ACTIONS(5729), 1, - sym_raw_string_begin, - STATE(2721), 1, - sym_comment, - STATE(5742), 1, - aux_sym_cell_path_repeat1, - STATE(6483), 1, - sym_path, - STATE(7062), 1, - sym_cell_path, - ACTIONS(1925), 2, - sym__entry_separator, - sym__table_head_separator, - ACTIONS(5722), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, + ACTIONS(3934), 2, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, + ACTIONS(4050), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5664), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, + STATE(6479), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -304551,6 +303520,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(2646), 9, + anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -304559,20 +303530,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [77803] = 4, + [77701] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2722), 1, + STATE(2706), 1, sym_comment, - ACTIONS(5641), 6, + ACTIONS(2453), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5643), 47, + ACTIONS(2455), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304620,19 +303590,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77867] = 4, + [77765] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2723), 1, + STATE(2707), 1, sym_comment, - ACTIONS(964), 6, + ACTIONS(2453), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(966), 47, + ACTIONS(2455), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304680,19 +303650,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77931] = 4, + [77829] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + ACTIONS(5731), 1, + anon_sym_RBRACK, + STATE(2688), 1, + aux_sym__multiple_types_repeat1, + STATE(2708), 1, + sym_comment, + ACTIONS(5668), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [77899] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2724), 1, + STATE(2709), 1, sym_comment, - ACTIONS(5645), 6, + ACTIONS(5647), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5647), 47, + ACTIONS(5649), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304740,21 +303773,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [77995] = 4, + [77963] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2725), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2710), 1, sym_comment, - ACTIONS(5663), 6, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2966), 1, + sym_cell_path, + ACTIONS(1968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5665), 47, + ACTIONS(1970), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304789,10 +303829,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304800,19 +303837,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78059] = 4, + [78035] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2726), 1, + STATE(2711), 1, sym_comment, - ACTIONS(5625), 6, + ACTIONS(5623), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5627), 47, + ACTIONS(5625), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304860,21 +303897,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78123] = 4, + [78099] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2727), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2712), 1, sym_comment, - ACTIONS(968), 6, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(2980), 1, + sym_cell_path, + ACTIONS(1986), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(970), 47, + ACTIONS(1988), 43, sym_raw_string_begin, - ts_builtin_sym_end, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -304909,10 +303953,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -304920,19 +303961,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78187] = 4, + [78171] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2728), 1, + STATE(2713), 1, sym_comment, - ACTIONS(972), 6, + ACTIONS(5611), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(974), 47, + ACTIONS(5613), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -304980,19 +304021,139 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78251] = 4, + [78235] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2714), 1, + sym_comment, + ACTIONS(1751), 5, + sym_raw_string_begin, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1749), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [78299] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2729), 1, + STATE(2715), 1, sym_comment, - ACTIONS(1018), 6, + ACTIONS(1605), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1607), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78363] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2716), 1, + sym_comment, + ACTIONS(4977), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1020), 47, + ACTIONS(4975), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -305040,19 +304201,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78315] = 4, + [78427] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2730), 1, + STATE(2717), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(978), 47, + ACTIONS(970), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -305100,19 +304261,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78379] = 4, + [78491] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2731), 1, + STATE(2718), 1, sym_comment, - ACTIONS(4941), 6, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4939), 47, + ACTIONS(978), 47, sym_raw_string_begin, ts_builtin_sym_end, aux_sym_cmd_identifier_token2, @@ -305160,27 +304321,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78443] = 8, + [78555] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2732), 1, + STATE(2719), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(3000), 1, + STATE(2960), 1, sym_cell_path, - ACTIONS(1937), 6, + ACTIONS(2008), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1939), 43, + ACTIONS(2010), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305224,30 +304385,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78515] = 5, + [78627] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5733), 1, + anon_sym_DOT_DOT2, + ACTIONS(5737), 1, + sym_filesize_unit, + ACTIONS(5739), 1, + sym_duration_unit, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token2, + STATE(2720), 1, + sym_comment, + ACTIONS(5735), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1675), 31, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [78701] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, + ACTIONS(5745), 1, + anon_sym_RBRACK, + ACTIONS(5748), 1, + anon_sym_DOT2, + ACTIONS(5750), 1, sym_raw_string_begin, - ACTIONS(5731), 1, - sym__entry_separator, - STATE(2733), 2, + STATE(2721), 1, sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2287), 50, + STATE(5754), 1, + aux_sym_cell_path_repeat1, + STATE(6536), 1, + sym_path, + STATE(7041), 1, + sym_cell_path, + ACTIONS(2008), 2, + sym__entry_separator, + sym__table_head_separator, + ACTIONS(5743), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305265,9 +304499,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305285,32 +304516,100 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78581] = 7, - ACTIONS(3), 1, + [78777] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5716), 1, - sym__entry_separator, - ACTIONS(5718), 1, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2722), 1, + sym_comment, + STATE(2779), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + STATE(3022), 1, + sym_cell_path, + ACTIONS(1998), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2000), 43, sym_raw_string_begin, - ACTIONS(5734), 1, - anon_sym_RBRACK, - STATE(2733), 1, - aux_sym__multiple_types_repeat1, - STATE(2734), 1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [78849] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5752), 1, + anon_sym_DOT_DOT2, + STATE(2723), 1, sym_comment, - ACTIONS(5712), 49, + ACTIONS(1801), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5754), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305328,9 +304627,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305348,32 +304644,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78651] = 7, + [78921] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, - sym__entry_separator, - ACTIONS(5718), 1, - sym_raw_string_begin, - ACTIONS(5736), 1, - anon_sym_RBRACK, - STATE(2733), 1, - aux_sym__multiple_types_repeat1, - STATE(2735), 1, + STATE(2724), 1, sym_comment, - ACTIONS(5712), 49, + ACTIONS(970), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(968), 49, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -305391,9 +304686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305411,27 +304704,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [78721] = 8, + [78985] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2736), 1, + STATE(2725), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(3008), 1, + STATE(3017), 1, sym_cell_path, - ACTIONS(1933), 6, + ACTIONS(1976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1935), 43, + ACTIONS(1978), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305475,27 +304768,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78793] = 8, + [79057] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2737), 1, + STATE(2726), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2958), 1, + STATE(2978), 1, sym_cell_path, - ACTIONS(2093), 6, + ACTIONS(1871), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2095), 43, + ACTIONS(1873), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305539,27 +304832,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78865] = 8, + [79129] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2738), 1, + STATE(2727), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(3009), 1, + STATE(3020), 1, sym_cell_path, - ACTIONS(1977), 6, + ACTIONS(1831), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1979), 43, + ACTIONS(1833), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305603,27 +304896,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [78937] = 8, + [79201] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2728), 1, + sym_comment, + ACTIONS(1757), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1759), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79265] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2739), 1, + STATE(2729), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2989), 1, + STATE(2934), 1, sym_cell_path, - ACTIONS(1981), 6, + ACTIONS(1835), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1983), 43, + ACTIONS(1837), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305667,27 +305020,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79009] = 8, + [79337] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2730), 1, + sym_comment, + ACTIONS(966), 4, + sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(964), 49, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [79401] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2740), 1, + STATE(2731), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2957), 1, + STATE(2935), 1, sym_cell_path, - ACTIONS(1985), 6, + ACTIONS(1839), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1987), 43, + ACTIONS(1841), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305731,19 +305144,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79081] = 5, + [79473] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2732), 1, + sym_comment, + ACTIONS(972), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(974), 47, + sym_raw_string_begin, + ts_builtin_sym_end, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_STAR2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [79537] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5738), 1, - anon_sym_QMARK2, - STATE(2741), 1, + STATE(2733), 1, sym_comment, - ACTIONS(960), 4, + ACTIONS(1733), 5, sym_raw_string_begin, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(958), 48, + ACTIONS(1731), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305774,7 +305246,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305792,19 +305263,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79147] = 5, + aux_sym__unquoted_in_list_token2, + [79601] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2734), 1, + sym_comment, + ACTIONS(1597), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1599), 35, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_filesize_unit, + sym_duration_unit, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [79665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5740), 1, + ACTIONS(5756), 1, anon_sym_QMARK2, - STATE(2742), 1, + STATE(2735), 1, sym_comment, - ACTIONS(954), 4, + ACTIONS(960), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(952), 48, + ACTIONS(958), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -305853,30 +305385,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [79213] = 9, - ACTIONS(251), 1, + [79731] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5742), 1, - anon_sym_DOT_DOT2, - ACTIONS(5746), 1, - sym_filesize_unit, - ACTIONS(5748), 1, - sym_duration_unit, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token2, - STATE(2743), 1, + ACTIONS(5758), 1, + anon_sym_QMARK2, + STATE(2736), 1, sym_comment, - ACTIONS(5744), 2, + ACTIONS(954), 4, + sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 16, + sym__entry_separator, + ACTIONS(952), 48, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -305885,18 +305437,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1693), 31, + [79797] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2737), 1, + sym_comment, + ACTIONS(974), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(972), 49, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -305906,10 +305481,22 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -305918,27 +305505,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79287] = 8, + aux_sym__unquoted_in_list_token1, + [79861] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5657), 1, anon_sym_DOT2, - STATE(2744), 1, + STATE(2738), 1, sym_comment, - STATE(2756), 1, + STATE(2779), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(2867), 1, sym_path, - STATE(2960), 1, + STATE(2936), 1, sym_cell_path, - ACTIONS(1989), 6, + ACTIONS(1843), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1991), 43, + ACTIONS(1845), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -305982,23 +305570,136 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79359] = 6, + [79933] = 30, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5752), 1, - sym__newline, - STATE(2745), 1, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5571), 1, + anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5705), 1, + anon_sym_LPAREN, + ACTIONS(5707), 1, + anon_sym_DOLLAR, + ACTIONS(5709), 1, + anon_sym_DOT_DOT, + ACTIONS(5715), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5717), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5719), 1, + aux_sym_unquoted_token1, + STATE(2593), 1, + sym__inter_single_quotes, + STATE(2596), 1, + sym__inter_double_quotes, + STATE(2739), 1, sym_comment, - ACTIONS(5755), 2, - anon_sym_RBRACK, - anon_sym_COMMA, - ACTIONS(1270), 15, + STATE(5777), 1, + sym__val_number_decimal, + STATE(7524), 1, + sym__val_range, + STATE(7540), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5573), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5711), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2638), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5713), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1664), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2644), 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(2646), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80049] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(5674), 1, + sym_raw_string_begin, + STATE(2688), 1, + aux_sym__multiple_types_repeat1, + STATE(2740), 1, + sym_comment, + ACTIONS(5668), 49, + anon_sym_LBRACK, + anon_sym_LPAREN, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306007,19 +305708,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1268), 35, + [80116] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2741), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3106), 1, + sym_cell_path, + ACTIONS(937), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(935), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -306029,13 +305756,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306044,74 +305779,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79427] = 30, + aux_sym__unquoted_in_list_token1, + [80187] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(3873), 1, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, + ACTIONS(5641), 1, anon_sym_DQUOTE, - ACTIONS(5580), 1, + ACTIONS(5645), 1, sym_raw_string_begin, - ACTIONS(5699), 1, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(5757), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - ACTIONS(5759), 1, + ACTIONS(5764), 1, anon_sym_DOLLAR, - ACTIONS(5761), 1, + ACTIONS(5766), 1, anon_sym_DOT_DOT, - ACTIONS(5767), 1, + ACTIONS(5772), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5769), 1, + ACTIONS(5774), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5771), 1, + ACTIONS(5776), 1, aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_double_quotes, - STATE(2649), 1, + STATE(2706), 1, sym__inter_single_quotes, - STATE(2746), 1, + STATE(2707), 1, + sym__inter_double_quotes, + STATE(2742), 1, sym_comment, - STATE(5786), 1, + STATE(5604), 1, sym__val_number_decimal, - STATE(7455), 1, - sym__val_range, - STATE(7457), 1, - sym__unquoted_anonymous_prefix, STATE(7527), 1, + sym__val_range, + STATE(7730), 1, sym_val_bool, - ACTIONS(3871), 2, + STATE(7745), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3934), 2, anon_sym_true, anon_sym_false, - ACTIONS(5578), 2, + ACTIONS(5643), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5763), 2, + ACTIONS(5768), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2601), 2, + STATE(2664), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5765), 3, + ACTIONS(5770), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1674), 5, + STATE(1738), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2741), 8, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306120,7 +305854,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, + ACTIONS(2646), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -306130,75 +305864,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79543] = 31, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [80300] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2743), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3024), 1, + sym_cell_path, + ACTIONS(1887), 2, sym_raw_string_begin, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(3861), 1, + sym__entry_separator, + ACTIONS(1885), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(3873), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5699), 1, - sym_val_date, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(2747), 1, - sym_comment, - STATE(5674), 1, - sym__val_number_decimal, - STATE(6329), 1, - sym_unquoted, - STATE(7439), 1, - sym__val_range, - STATE(7445), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5697), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6323), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2741), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306207,8 +305918,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306217,74 +305926,112 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79661] = 30, + aux_sym__unquoted_in_list_token1, + [80371] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(3873), 1, + STATE(2744), 1, + sym_comment, + ACTIONS(964), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(966), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, - ACTIONS(5580), 1, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80434] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2745), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3037), 1, + sym_cell_path, + ACTIONS(1895), 2, sym_raw_string_begin, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(5757), 1, + sym__entry_separator, + ACTIONS(1893), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5759), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5761), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5767), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5771), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_double_quotes, - STATE(2649), 1, - sym__inter_single_quotes, - STATE(2748), 1, - sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7455), 1, - sym__val_range, - STATE(7457), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5578), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5763), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2601), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5765), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1674), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2741), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -306293,8 +306040,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -306303,260 +306048,194 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [79777] = 4, + aux_sym__unquoted_in_list_token1, + [80505] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2749), 1, + STATE(2746), 1, sym_comment, - ACTIONS(5649), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5651), 47, + ACTIONS(968), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(970), 34, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, anon_sym_LBRACK, - anon_sym_STAR2, - aux_sym__val_number_decimal_token1, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79841] = 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, + [80568] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5667), 1, - anon_sym_DOT2, - STATE(2750), 1, + STATE(2747), 1, sym_comment, - STATE(2756), 1, - aux_sym_cell_path_repeat1, - STATE(2909), 1, - sym_path, - STATE(2956), 1, - sym_cell_path, - ACTIONS(935), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(937), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(972), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(974), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [79913] = 8, - ACTIONS(251), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [80631] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2751), 1, + STATE(2748), 1, sym_comment, - STATE(2756), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(3009), 1, sym_path, - STATE(2982), 1, + STATE(3039), 1, sym_cell_path, - ACTIONS(1949), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1951), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [79985] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2752), 1, - sym_comment, - ACTIONS(2102), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2104), 47, + ACTIONS(1903), 2, sym_raw_string_begin, - ts_builtin_sym_end, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - sym__newline, - anon_sym_SEMI, + sym__entry_separator, + ACTIONS(1901), 46, anon_sym_LBRACK, - anon_sym_STAR2, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80049] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80702] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2753), 1, + STATE(2749), 1, sym_comment, - ACTIONS(968), 18, + ACTIONS(976), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -306575,7 +306254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(970), 34, + ACTIONS(978), 34, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -306610,23 +306289,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, - [80112] = 8, + [80765] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2754), 1, + STATE(2750), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3108), 1, + STATE(3042), 1, sym_cell_path, - ACTIONS(1971), 2, + ACTIONS(1970), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1969), 46, + ACTIONS(1968), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306673,23 +306352,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80183] = 8, + [80836] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2755), 1, + STATE(2751), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3036), 1, + STATE(3043), 1, sym_cell_path, - ACTIONS(1995), 2, + ACTIONS(1988), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1993), 46, + ACTIONS(1986), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306736,153 +306415,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80254] = 7, - ACTIONS(251), 1, + [80907] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5667), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2756), 1, + STATE(2752), 1, sym_comment, - STATE(2777), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(2909), 1, + STATE(3009), 1, sym_path, - ACTIONS(948), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(950), 43, + STATE(3044), 1, + sym_cell_path, + ACTIONS(2000), 2, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__entry_separator, + ACTIONS(1998), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [80323] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(5775), 1, - anon_sym_DOT, - ACTIONS(5779), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5781), 1, - aux_sym__immediate_decimal_token5, - STATE(2757), 1, - sym_comment, - STATE(3197), 1, - sym__immediate_decimal, - ACTIONS(5777), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1820), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1553), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [80404] = 8, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [80978] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2758), 1, + STATE(2753), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3117), 1, + STATE(3045), 1, sym_cell_path, - ACTIONS(1999), 2, + ACTIONS(1833), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1997), 46, + ACTIONS(1831), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -306929,72 +306541,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80475] = 29, - ACTIONS(251), 1, + [81049] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3873), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, - anon_sym_DQUOTE, - ACTIONS(5580), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2754), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3046), 1, + sym_cell_path, + ACTIONS(1837), 2, sym_raw_string_begin, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(5757), 1, + sym__entry_separator, + ACTIONS(1835), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5759), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5761), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5767), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5771), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_double_quotes, - STATE(2649), 1, - sym__inter_single_quotes, - STATE(2759), 1, - sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7455), 1, - sym__val_range, - STATE(7457), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(3871), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, anon_sym_true, anon_sym_false, - ACTIONS(5578), 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, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5763), 2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [81120] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2755), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3050), 1, + sym_cell_path, + ACTIONS(1841), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1839), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2601), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5765), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1674), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2741), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307003,8 +306658,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307013,23 +306666,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80588] = 8, + aux_sym__unquoted_in_list_token1, + [81191] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2760), 1, + STATE(2756), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3118), 1, + STATE(3052), 1, sym_cell_path, - ACTIONS(2003), 2, + ACTIONS(1845), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2001), 46, + ACTIONS(1843), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307076,23 +306730,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80659] = 8, + [81262] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2761), 1, + STATE(2757), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3119), 1, + STATE(3053), 1, sym_cell_path, - ACTIONS(2007), 2, + ACTIONS(1849), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2005), 46, + ACTIONS(1847), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307139,73 +306793,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [80730] = 30, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, + [81333] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1283), 1, - anon_sym_LPAREN, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2758), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3056), 1, + sym_cell_path, + ACTIONS(1853), 2, sym_raw_string_begin, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3861), 1, + sym__entry_separator, + ACTIONS(1851), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(3873), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5699), 1, - sym_val_date, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(2762), 1, - sym_comment, - STATE(5674), 1, - sym__val_number_decimal, - STATE(6329), 1, - sym_unquoted, - STATE(7439), 1, - sym__val_range, - STATE(7445), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5697), 3, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(6323), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2741), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307214,8 +306847,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307224,72 +306855,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80845] = 29, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [81404] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3873), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5576), 1, - anon_sym_DQUOTE, - ACTIONS(5580), 1, + ACTIONS(5760), 1, + anon_sym_DOT2, + STATE(2759), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3058), 1, + sym_cell_path, + ACTIONS(1857), 2, sym_raw_string_begin, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(5757), 1, + sym__entry_separator, + ACTIONS(1855), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - ACTIONS(5759), 1, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(5761), 1, + anon_sym_LBRACE, anon_sym_DOT_DOT, - ACTIONS(5767), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5769), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5771), 1, - aux_sym_unquoted_token1, - STATE(2620), 1, - sym__inter_double_quotes, - STATE(2649), 1, - sym__inter_single_quotes, - STATE(2763), 1, - sym_comment, - STATE(5786), 1, - sym__val_number_decimal, - STATE(7455), 1, - sym__val_range, - STATE(7457), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5578), 2, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5763), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2601), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5765), 3, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1660), 5, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - sym_unquoted, - ACTIONS(2741), 8, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307298,8 +306910,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, - anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307308,23 +306918,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [80958] = 8, + aux_sym__unquoted_in_list_token1, + [81475] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2764), 1, + STATE(2760), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3110), 1, + STATE(3060), 1, sym_cell_path, - ACTIONS(1979), 2, + ACTIONS(1861), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1977), 46, + ACTIONS(1859), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307371,23 +306982,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81029] = 8, + [81546] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2765), 1, + STATE(2761), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3120), 1, + STATE(3061), 1, sym_cell_path, - ACTIONS(2011), 2, + ACTIONS(1865), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2009), 46, + ACTIONS(1863), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307434,27 +307045,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81100] = 10, + [81617] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - ACTIONS(5785), 1, - anon_sym_RBRACK, - ACTIONS(5788), 1, - sym_raw_string_begin, - STATE(2766), 1, + STATE(2762), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3054), 1, + STATE(3062), 1, sym_cell_path, - ACTIONS(5783), 45, + ACTIONS(1869), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1867), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -307499,23 +307108,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81175] = 8, + [81688] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2767), 1, + STATE(2763), 1, sym_comment, - STATE(2869), 1, + STATE(2863), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, - STATE(3114), 1, + STATE(3063), 1, sym_cell_path, - ACTIONS(1983), 2, + ACTIONS(1877), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1981), 46, + ACTIONS(1875), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307562,21 +307171,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81246] = 4, + [81759] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(2768), 1, + ACTIONS(2010), 1, + sym__table_head_separator, + ACTIONS(5778), 1, + anon_sym_DOT2, + STATE(2764), 1, sym_comment, - ACTIONS(964), 18, + STATE(5590), 1, + sym_cell_path, + STATE(6098), 1, + aux_sym_cell_path_repeat1, + STATE(7264), 1, + sym_path, + ACTIONS(5743), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307586,7 +307201,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(966), 34, + ACTIONS(5750), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -307594,9 +307209,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -307621,92 +307235,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, - [81309] = 6, + [81832] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5790), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5792), 1, + ACTIONS(5725), 1, aux_sym__immediate_decimal_token2, - STATE(2769), 1, + STATE(2765), 1, sym_comment, - ACTIONS(1595), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(1749), 18, + anon_sym_DOT_DOT, anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1597), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [81376] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5716), 1, - sym__entry_separator, - ACTIONS(5718), 1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 33, sym_raw_string_begin, - STATE(2733), 1, - aux_sym__multiple_types_repeat1, - STATE(2770), 1, - sym_comment, - ACTIONS(5712), 49, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -307716,16 +307283,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [81897] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5780), 1, + aux_sym__immediate_decimal_token2, + STATE(2766), 1, + sym_comment, + ACTIONS(1772), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307734,6 +307319,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -307742,73 +307355,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [81443] = 29, + [81962] = 30, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3873), 1, + ACTIONS(3354), 1, + aux_sym_unquoted_token1, + ACTIONS(3460), 1, + anon_sym_DOLLAR, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5635), 1, - anon_sym_DQUOTE, - ACTIONS(5639), 1, - sym_raw_string_begin, - ACTIONS(5699), 1, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(5794), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, - anon_sym_DOLLAR, - ACTIONS(5798), 1, + ACTIONS(5784), 1, anon_sym_DOT_DOT, - ACTIONS(5804), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(5806), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5808), 1, - aux_sym_unquoted_token1, - STATE(2690), 1, + STATE(2461), 1, sym__inter_single_quotes, - STATE(2691), 1, + STATE(2465), 1, sym__inter_double_quotes, - STATE(2771), 1, + STATE(2767), 1, sym_comment, - STATE(5594), 1, + STATE(5601), 1, sym__val_number_decimal, - STATE(7405), 1, + STATE(6713), 1, + sym_unquoted, + STATE(7453), 1, sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - STATE(7676), 1, + STATE(7615), 1, sym__val_range, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5637), 2, + STATE(7730), 1, + sym_val_bool, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5800), 2, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5786), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2723), 2, + STATE(1780), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5802), 3, + ACTIONS(5788), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1709), 5, + STATE(6683), 4, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, - sym_unquoted, - ACTIONS(2741), 8, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307817,7 +307430,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, + ACTIONS(2646), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -307827,28 +307440,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81556] = 4, + [82077] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2772), 1, + ACTIONS(5790), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5792), 1, + aux_sym__immediate_decimal_token2, + STATE(2768), 1, sym_comment, - ACTIONS(2485), 2, + ACTIONS(1733), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2483), 50, + ACTIONS(1731), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -307866,9 +307483,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -307886,23 +307500,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81619] = 8, + aux_sym__unquoted_in_list_token2, + [82144] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5794), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5796), 1, + aux_sym__immediate_decimal_token2, + STATE(2769), 1, + sym_comment, + ACTIONS(1731), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1733), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2773), 1, + ACTIONS(5700), 1, + aux_sym__immediate_decimal_token2, + STATE(2770), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3037), 1, - sym_cell_path, - ACTIONS(2091), 2, + ACTIONS(1751), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(2089), 46, + ACTIONS(1749), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307910,6 +307582,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -307949,23 +307622,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81690] = 8, + [82276] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2774), 1, + ACTIONS(5798), 1, + aux_sym__immediate_decimal_token2, + STATE(2771), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3115), 1, - sym_cell_path, - ACTIONS(1987), 2, + ACTIONS(1774), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1985), 46, + ACTIONS(1772), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -307973,6 +307642,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -308012,23 +307682,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81761] = 8, + [82341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2775), 1, + ACTIONS(5800), 1, + anon_sym_DOT, + ACTIONS(5802), 1, + aux_sym__immediate_decimal_token2, + STATE(2772), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3109), 1, - sym_cell_path, - ACTIONS(1975), 2, + ACTIONS(1751), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1973), 46, + ACTIONS(1749), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308075,12 +307742,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [81832] = 4, + aux_sym__unquoted_in_list_token2, + [82408] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2776), 1, + ACTIONS(5804), 1, + anon_sym_DOT, + ACTIONS(5806), 1, + aux_sym__immediate_decimal_token2, + STATE(2773), 1, sym_comment, - ACTIONS(972), 18, + ACTIONS(1749), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -308089,7 +307761,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308099,7 +307770,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(974), 34, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308107,7 +307778,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_null, @@ -308134,88 +307804,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [81895] = 6, + [82475] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5810), 1, - anon_sym_DOT2, - STATE(2909), 1, - sym_path, - STATE(2777), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(941), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(943), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, + ACTIONS(5571), 1, anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5705), 1, + anon_sym_LPAREN, + ACTIONS(5707), 1, + anon_sym_DOLLAR, + ACTIONS(5709), 1, + anon_sym_DOT_DOT, + ACTIONS(5715), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5717), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5719), 1, + aux_sym_unquoted_token1, + STATE(2593), 1, + sym__inter_single_quotes, + STATE(2596), 1, + sym__inter_double_quotes, + STATE(2774), 1, + sym_comment, + STATE(5777), 1, + sym__val_number_decimal, + STATE(7524), 1, + sym__val_range, + STATE(7540), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5573), 2, sym__str_single_quotes, sym__str_back_ticks, - [81962] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - sym__table_head_separator, - ACTIONS(5813), 1, - anon_sym_DOT2, - STATE(2778), 1, - sym_comment, - STATE(5626), 1, - sym_cell_path, - STATE(6530), 1, - aux_sym_cell_path_repeat1, - STATE(7245), 1, - sym_path, - ACTIONS(5722), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, + ACTIONS(5711), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + STATE(2638), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5713), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1664), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308224,33 +307878,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5729), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(2646), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308259,22 +307888,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, - [82035] = 6, + [82588] = 10, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5815), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5817), 1, - aux_sym__immediate_decimal_token2, - STATE(2779), 1, - sym_comment, - ACTIONS(1759), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, + ACTIONS(1978), 1, sym__entry_separator, - ACTIONS(1757), 47, - anon_sym_LBRACK, + ACTIONS(5760), 1, + anon_sym_DOT2, + ACTIONS(5810), 1, anon_sym_RBRACK, + ACTIONS(5813), 1, + sym_raw_string_begin, + STATE(2775), 1, + sym_comment, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3094), 1, + sym_cell_path, + ACTIONS(5808), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -308319,24 +307953,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [82102] = 5, + [82663] = 30, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5819), 1, - anon_sym_QMARK2, - STATE(2780), 1, - sym_comment, - ACTIONS(958), 18, + ACTIONS(1283), 1, + anon_sym_LPAREN, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(3206), 1, + aux_sym_unquoted_token1, + ACTIONS(3924), 1, + anon_sym_DOLLAR, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4048), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5666), 1, + sym_val_date, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(2776), 1, + sym_comment, + STATE(5597), 1, + sym__val_number_decimal, + STATE(6480), 1, + sym_unquoted, + STATE(7646), 1, + sym__val_range, + STATE(7648), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4050), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5664), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(6479), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308345,33 +308028,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(960), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(2646), 9, anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308380,23 +308038,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82167] = 5, + [82778] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5821), 1, - anon_sym_QMARK2, - STATE(2781), 1, - sym_comment, - ACTIONS(952), 18, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5571), 1, + anon_sym_DQUOTE, + ACTIONS(5575), 1, + sym_raw_string_begin, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5705), 1, + anon_sym_LPAREN, + ACTIONS(5707), 1, + anon_sym_DOLLAR, + ACTIONS(5709), 1, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, + ACTIONS(5715), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(5717), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5719), 1, + aux_sym_unquoted_token1, + STATE(2593), 1, + sym__inter_single_quotes, + STATE(2596), 1, + sym__inter_double_quotes, + STATE(2777), 1, + sym_comment, + STATE(5777), 1, + sym__val_number_decimal, + STATE(7524), 1, + sym__val_range, + STATE(7540), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5573), 2, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5711), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, + STATE(2638), 2, + sym__raw_str, + sym__str_double_quotes, + ACTIONS(5713), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + STATE(1636), 5, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + sym_unquoted, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308405,70 +308112,222 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(954), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + ACTIONS(2646), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [82891] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5815), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5817), 1, + aux_sym__immediate_decimal_token2, + STATE(2778), 1, + sym_comment, + ACTIONS(1597), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1599), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, + sym_duration_unit, + [82958] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5657), 1, + anon_sym_DOT2, + STATE(2779), 1, + sym_comment, + STATE(2780), 1, + aux_sym_cell_path_repeat1, + STATE(2867), 1, + sym_path, + ACTIONS(948), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(950), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83027] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5819), 1, + anon_sym_DOT2, + STATE(2867), 1, + sym_path, + STATE(2780), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(943), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [82232] = 8, + [83094] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2782), 1, + STATE(2781), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3102), 1, - sym_cell_path, - ACTIONS(1951), 2, + ACTIONS(2491), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1949), 46, + ACTIONS(2489), 50, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -308486,6 +308345,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308503,36 +308365,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82303] = 8, - ACTIONS(3), 1, + [83157] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2783), 1, + ACTIONS(5822), 1, + anon_sym_QMARK2, + STATE(2782), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3116), 1, - sym_cell_path, - ACTIONS(1991), 2, + ACTIONS(958), 18, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(960), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1989), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308542,21 +308413,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308565,17 +308425,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82374] = 6, + [83222] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5823), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5825), 1, - aux_sym__immediate_decimal_token2, - STATE(2784), 1, + ACTIONS(5824), 1, + anon_sym_QMARK2, + STATE(2783), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(952), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -308584,6 +308441,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308593,7 +308451,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1759), 33, + ACTIONS(954), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -308627,72 +308485,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82441] = 29, + [83287] = 29, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3873), 1, + ACTIONS(3936), 1, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, + ACTIONS(3938), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, + ACTIONS(3940), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, + ACTIONS(3942), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5635), 1, + ACTIONS(5641), 1, anon_sym_DQUOTE, - ACTIONS(5639), 1, + ACTIONS(5645), 1, sym_raw_string_begin, - ACTIONS(5699), 1, + ACTIONS(5666), 1, sym_val_date, - ACTIONS(5794), 1, + ACTIONS(5762), 1, anon_sym_LPAREN, - ACTIONS(5796), 1, + ACTIONS(5764), 1, anon_sym_DOLLAR, - ACTIONS(5798), 1, + ACTIONS(5766), 1, anon_sym_DOT_DOT, - ACTIONS(5804), 1, + ACTIONS(5772), 1, anon_sym_DOLLAR_SQUOTE, - ACTIONS(5806), 1, + ACTIONS(5774), 1, anon_sym_DOLLAR_DQUOTE, - ACTIONS(5808), 1, + ACTIONS(5776), 1, aux_sym_unquoted_token1, - STATE(2690), 1, + STATE(2706), 1, sym__inter_single_quotes, - STATE(2691), 1, + STATE(2707), 1, sym__inter_double_quotes, - STATE(2785), 1, + STATE(2784), 1, sym_comment, - STATE(5594), 1, + STATE(5604), 1, sym__val_number_decimal, - STATE(7405), 1, - sym__unquoted_anonymous_prefix, STATE(7527), 1, - sym_val_bool, - STATE(7676), 1, sym__val_range, - ACTIONS(3871), 2, + STATE(7730), 1, + sym_val_bool, + STATE(7745), 1, + sym__unquoted_anonymous_prefix, + ACTIONS(3934), 2, anon_sym_true, anon_sym_false, - ACTIONS(5637), 2, + ACTIONS(5643), 2, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(5800), 2, + ACTIONS(5768), 2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - STATE(2723), 2, + STATE(2664), 2, sym__raw_str, sym__str_double_quotes, - ACTIONS(5802), 3, + ACTIONS(5770), 3, aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - STATE(1715), 5, + STATE(1704), 5, sym_expr_parenthesized, sym_val_variable, sym_val_string, sym_val_interpolated, sym_unquoted, - ACTIONS(2741), 8, + ACTIONS(2644), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308701,7 +308559,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(2743), 9, + ACTIONS(2646), 9, anon_sym_null, anon_sym_err_GT_GT, anon_sym_out_GT_GT, @@ -308711,23 +308569,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, - [82554] = 8, + [83400] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2786), 1, + STATE(2785), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3104), 1, - sym_cell_path, - ACTIONS(1955), 2, + ACTIONS(986), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1953), 46, + ACTIONS(984), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308735,6 +308587,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -308757,6 +308610,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308774,10 +308628,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82625] = 4, + [83463] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2787), 1, + STATE(2786), 1, sym_comment, ACTIONS(990), 4, sym_raw_string_begin, @@ -308833,19 +308687,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82688] = 5, + [83526] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5707), 1, - aux_sym__immediate_decimal_token2, - STATE(2788), 1, + STATE(2787), 1, sym_comment, - ACTIONS(1727), 4, + ACTIONS(982), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1725), 47, + ACTIONS(980), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308876,6 +308728,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308893,21 +308746,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82753] = 4, + [83589] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2789), 1, + ACTIONS(5826), 1, + sym__newline, + STATE(2788), 2, sym_comment, - ACTIONS(976), 18, + aux_sym_shebang_repeat1, + ACTIONS(1274), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -308917,20 +308770,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(978), 34, + ACTIONS(1276), 35, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_DOT_LPAREN, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -308944,6 +308795,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -308952,19 +308806,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [82816] = 5, + [83654] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(5829), 1, + anon_sym_DOT, + ACTIONS(5833), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5835), 1, + aux_sym__immediate_decimal_token5, + STATE(2789), 1, + sym_comment, + STATE(3190), 1, + sym__immediate_decimal, + ACTIONS(5831), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1932), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1543), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [83735] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5827), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(5760), 1, + anon_sym_DOT2, STATE(2790), 1, sym_comment, - ACTIONS(1767), 4, + STATE(2863), 1, + aux_sym_cell_path_repeat1, + STATE(3009), 1, + sym_path, + STATE(3064), 1, + sym_cell_path, + ACTIONS(1881), 2, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1765), 47, + ACTIONS(1879), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -308972,7 +308898,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309012,36 +308937,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [82881] = 8, - ACTIONS(3), 1, + [83806] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5837), 1, anon_sym_DOT2, STATE(2791), 1, sym_comment, - STATE(2869), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3030), 1, sym_path, - STATE(3098), 1, + STATE(3151), 1, sym_cell_path, - ACTIONS(2095), 2, + ACTIONS(1851), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1853), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2093), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309051,21 +308987,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309074,32 +308999,102 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [82952] = 4, - ACTIONS(3), 1, + [83876] = 4, + ACTIONS(251), 1, anon_sym_POUND, STATE(2792), 1, sym_comment, - ACTIONS(986), 4, + ACTIONS(972), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(974), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [83938] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5839), 1, + aux_sym__immediate_decimal_token2, + STATE(2793), 1, + sym_comment, + ACTIONS(1772), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1774), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(984), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309109,22 +309104,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309133,18 +309116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83015] = 4, + [84002] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2793), 1, + STATE(2794), 1, sym_comment, - ACTIONS(982), 4, + ACTIONS(1751), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(980), 48, + ACTIONS(1749), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309175,7 +309157,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309193,20 +309174,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83078] = 6, + [84064] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(5843), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5845), 1, + aux_sym__immediate_decimal_token5, + STATE(2795), 1, + sym_comment, + STATE(3234), 1, + sym__immediate_decimal, + ACTIONS(5841), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1589), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [84142] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5829), 1, - anon_sym_DOT, - ACTIONS(5831), 1, - aux_sym__immediate_decimal_token2, - STATE(2794), 1, + STATE(2796), 1, sym_comment, - ACTIONS(1727), 3, + ACTIONS(1733), 4, sym_raw_string_begin, - anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1725), 47, + ACTIONS(1731), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309214,6 +309258,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309253,132 +309298,89 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [83145] = 30, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, + [84204] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3367), 1, - aux_sym_unquoted_token1, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - ACTIONS(3873), 1, + STATE(2797), 1, + sym_comment, + ACTIONS(976), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(978), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, aux_sym__val_number_decimal_token4, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(5833), 1, - anon_sym_LPAREN, - ACTIONS(5835), 1, - anon_sym_DOT_DOT, - STATE(2550), 1, - sym__inter_single_quotes, - STATE(2552), 1, - sym__inter_double_quotes, - STATE(2795), 1, - sym_comment, - STATE(5714), 1, - sym__val_number_decimal, - STATE(6992), 1, - sym_unquoted, - STATE(7527), 1, - sym_val_bool, - STATE(7581), 1, - sym__val_range, - STATE(7587), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(111), 2, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5837), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - STATE(1720), 2, - sym__raw_str, - sym__str_double_quotes, - ACTIONS(5839), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - STATE(6967), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - ACTIONS(2741), 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(2743), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83260] = 6, - ACTIONS(251), 1, + [84266] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5841), 1, - anon_sym_DOT, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2796), 1, + STATE(2798), 1, sym_comment, - ACTIONS(1725), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1727), 33, + ACTIONS(1774), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1772), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309388,33 +309390,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [83327] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5845), 1, - sym__newline, - STATE(2797), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1274), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309423,35 +309405,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1276), 35, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309460,23 +309413,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, - [83392] = 8, + aux_sym__unquoted_in_list_token1, + [84328] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2798), 1, + STATE(2799), 1, sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3105), 1, - sym_cell_path, - ACTIONS(1959), 2, + ACTIONS(1819), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1957), 46, + ACTIONS(1817), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -309484,6 +309432,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -309523,18 +309472,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83463] = 5, + [84390] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5695), 1, - aux_sym__immediate_decimal_token2, - STATE(2799), 1, + STATE(2800), 1, + sym_comment, + ACTIONS(968), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(970), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [84452] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2801), 1, sym_comment, - ACTIONS(1725), 18, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3147), 1, + sym_cell_path, + ACTIONS(1835), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309548,8 +309558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 33, + ACTIONS(1837), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309557,8 +309566,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -309583,52 +309592,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [83528] = 8, - ACTIONS(3), 1, + [84522] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2800), 1, + STATE(2802), 1, sym_comment, - STATE(2869), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3030), 1, sym_path, - STATE(3099), 1, + STATE(3148), 1, sym_cell_path, - ACTIONS(937), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(935), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1839), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -309637,45 +309619,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83599] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2801), 1, - sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3106), 1, - sym_cell_path, - ACTIONS(1963), 2, + ACTIONS(1841), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1961), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309685,21 +309642,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -309708,26 +309654,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83670] = 8, + [84592] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, - anon_sym_DOT2, - STATE(2802), 1, - sym_comment, - STATE(2869), 1, - aux_sym_cell_path_repeat1, - STATE(3014), 1, - sym_path, - STATE(3107), 1, - sym_cell_path, - ACTIONS(1967), 2, - sym_raw_string_begin, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(1965), 46, - anon_sym_LBRACK, + ACTIONS(5849), 1, anon_sym_RBRACK, + ACTIONS(5852), 1, + anon_sym_DOT_DOT2, + ACTIONS(5856), 1, + sym_raw_string_begin, + STATE(2803), 1, + sym_comment, + ACTIONS(5854), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5847), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -309772,18 +309716,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [83741] = 5, + [84662] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5848), 1, - aux_sym__immediate_decimal_token2, - STATE(2803), 1, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2804), 1, sym_comment, - ACTIONS(1765), 18, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3149), 1, + sym_cell_path, + ACTIONS(1843), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -309797,8 +309744,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(1845), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -309806,8 +309752,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -309832,94 +309778,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, - [83806] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5852), 1, - anon_sym_RBRACK, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, - sym_raw_string_begin, - STATE(2804), 1, - sym_comment, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5850), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [83874] = 6, - ACTIONS(3), 1, + [84732] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5858), 1, - anon_sym_DOT_DOT2, + ACTIONS(5837), 1, + anon_sym_DOT2, STATE(2805), 1, sym_comment, - ACTIONS(2166), 2, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3141), 1, + sym_cell_path, + ACTIONS(5860), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5858), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5860), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -309929,104 +309828,32 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, anon_sym_o_GT_GT, anon_sym_err_PLUSout_GT_GT, anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [83940] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5866), 1, - anon_sym_DASH_DASH, - STATE(3006), 1, - sym_long_flag, - STATE(2806), 2, - sym_comment, - aux_sym_decl_def_repeat1, - ACTIONS(5862), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(5864), 42, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84006] = 8, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [84802] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2807), 1, + STATE(2806), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3135), 1, + STATE(3150), 1, sym_cell_path, - ACTIONS(2093), 14, + ACTIONS(1847), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310041,7 +309868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2095), 33, + ACTIONS(1849), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310075,20 +309902,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84076] = 8, + [84872] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5862), 1, + aux_sym__immediate_decimal_token2, + STATE(2807), 1, + sym_comment, + ACTIONS(1605), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1607), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [84936] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5837), 1, anon_sym_DOT2, STATE(2808), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3136), 1, + STATE(3159), 1, sym_cell_path, - ACTIONS(2001), 14, + ACTIONS(1855), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310103,7 +309989,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2003), 33, + ACTIONS(1857), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310137,20 +310023,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84146] = 8, + [85006] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, STATE(2809), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3158), 1, + STATE(3162), 1, sym_cell_path, - ACTIONS(5783), 14, + ACTIONS(1859), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310165,7 +310051,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5788), 33, + ACTIONS(1861), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310199,17 +310085,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84216] = 5, + [85076] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5871), 1, - sym__newline, - STATE(2810), 2, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2810), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1274), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3166), 1, + sym_cell_path, + ACTIONS(1863), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310223,12 +310112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1276), 33, + aux_sym__unquoted_in_list_token1, + ACTIONS(1865), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -310248,8 +310139,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310258,20 +310147,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84280] = 8, + [85146] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, STATE(2811), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3153), 1, + STATE(3167), 1, sym_cell_path, - ACTIONS(2005), 14, + ACTIONS(1867), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310286,7 +310175,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2007), 33, + ACTIONS(1869), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310320,47 +310209,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84350] = 4, - ACTIONS(3), 1, + [85216] = 8, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(5837), 1, + anon_sym_DOT2, STATE(2812), 1, sym_comment, - ACTIONS(1020), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1018), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3170), 1, + sym_cell_path, + ACTIONS(1875), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -310369,40 +310236,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [84412] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2813), 1, - sym_comment, - ACTIONS(2118), 4, + ACTIONS(1877), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2116), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310412,21 +310259,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310435,21 +310271,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [84474] = 8, + [85286] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2814), 1, + STATE(2813), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3172), 1, + STATE(3174), 1, sym_cell_path, - ACTIONS(5876), 14, + ACTIONS(1879), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310464,7 +310299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5874), 33, + ACTIONS(1881), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310498,81 +310333,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84544] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, - sym_raw_string_begin, - ACTIONS(5878), 1, - anon_sym_RBRACK, - STATE(2815), 1, - sym_comment, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(5850), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [84612] = 8, + [85356] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2816), 1, + STATE(2814), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3165), 1, - sym_cell_path, - ACTIONS(2009), 14, + ACTIONS(1270), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -310587,19 +310354,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2011), 33, + ACTIONS(1268), 36, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_DOT_LPAREN, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310613,6 +310380,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, + anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310621,12 +310391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84682] = 5, + [85418] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5880), 1, + ACTIONS(5864), 1, sym__newline, - STATE(2817), 2, + STATE(2815), 2, sym_comment, aux_sym_shebang_repeat1, ACTIONS(1274), 16, @@ -310650,8 +310420,8 @@ static const uint16_t ts_small_parse_table[] = { sym_raw_string_begin, anon_sym_LBRACK, anon_sym_LPAREN, + anon_sym_DASH_DASH, anon_sym_LBRACE, - aux_sym_expr_unary_token1, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -310680,12 +310450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84746] = 4, + [85482] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2818), 1, + STATE(2816), 1, sym_comment, - ACTIONS(1861), 18, + ACTIONS(1749), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -310704,7 +310474,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1863), 33, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310738,47 +310508,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [84808] = 8, - ACTIONS(251), 1, + [85544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2819), 1, + STATE(2817), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3162), 1, - sym_cell_path, - ACTIONS(1949), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1951), 33, + ACTIONS(2045), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2043), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -310788,10 +310542,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -310800,21 +310565,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, - [84878] = 8, + aux_sym__unquoted_in_list_token1, + [85606] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2820), 1, + STATE(2818), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3183), 1, - sym_cell_path, - ACTIONS(1953), 14, + ACTIONS(1731), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310828,7 +310589,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1955), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310836,8 +310598,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310862,21 +310624,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, - [84948] = 8, - ACTIONS(251), 1, + [85668] = 7, + ACTIONS(3), 1, anon_sym_POUND, ACTIONS(5869), 1, - anon_sym_DOT2, + anon_sym_RBRACK, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(5873), 1, + sym_raw_string_begin, + STATE(2819), 1, + sym_comment, + STATE(2826), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(5867), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85736] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5875), 1, + sym_long_flag_identifier, + ACTIONS(5877), 1, + anon_sym_EQ2, + STATE(2820), 1, + sym_comment, + ACTIONS(4862), 9, + sym_raw_string_begin, + aux_sym_cmd_identifier_token39, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(4864), 40, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + [85802] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5879), 1, + anon_sym_DOT_DOT2, STATE(2821), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3170), 1, - sym_cell_path, - ACTIONS(2089), 14, + ACTIONS(5881), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310890,7 +310774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2091), 33, + ACTIONS(1813), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310898,8 +310782,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310924,21 +310806,134 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85018] = 8, + [85870] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, + ACTIONS(5883), 1, + anon_sym_QMARK2, STATE(2822), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3132), 1, - sym_cell_path, - ACTIONS(1957), 14, + ACTIONS(958), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(960), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85934] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5885), 1, + anon_sym_QMARK2, + STATE(2823), 1, + sym_comment, + ACTIONS(952), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(954), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [85998] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2824), 1, + sym_comment, + ACTIONS(1772), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -310952,7 +310947,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1959), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -310960,8 +310956,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -310986,18 +310982,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85088] = 5, + [86060] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5831), 1, - aux_sym__immediate_decimal_token2, - STATE(2823), 1, + ACTIONS(5887), 1, + anon_sym_DOT_DOT2, + STATE(2825), 1, sym_comment, - ACTIONS(1727), 3, + ACTIONS(2065), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1725), 47, + ACTIONS(5889), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2059), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311044,15 +311042,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85152] = 4, + [86126] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2371), 1, + sym_raw_string_begin, + ACTIONS(5891), 1, + sym__entry_separator, + STATE(2826), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2366), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86190] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2824), 1, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(5894), 1, + anon_sym_DOT_DOT2, + STATE(2827), 1, sym_comment, - ACTIONS(1270), 15, - anon_sym_DOLLAR, + ACTIONS(5896), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311066,19 +311130,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1268), 36, + ACTIONS(1801), 31, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_DOT_LPAREN, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - anon_sym_DOT_DOT_DOT_DOLLAR, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311092,9 +311154,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_DOT_DOT_DOT_LBRACK, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311103,21 +311162,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [85214] = 8, + [86258] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2825), 1, + STATE(2828), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3156), 1, - sym_cell_path, - ACTIONS(1961), 14, + ACTIONS(1817), 18, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311131,7 +311185,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1963), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1819), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311139,8 +311194,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311165,51 +311220,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, - [85284] = 8, + [86320] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5887), 1, - anon_sym_DOT_DOT2, - ACTIONS(5891), 1, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(5893), 1, + ACTIONS(5873), 1, sym_raw_string_begin, + ACTIONS(5898), 1, + anon_sym_RBRACK, STATE(2826), 1, + aux_sym__multiple_types_repeat1, + STATE(2829), 1, sym_comment, - ACTIONS(5889), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5883), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(5867), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + [86388] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2830), 1, + sym_comment, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3128), 1, + sym_cell_path, + ACTIONS(1968), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311218,40 +311308,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85354] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5895), 1, - aux_sym__immediate_decimal_token2, - STATE(2827), 1, - sym_comment, - ACTIONS(1767), 3, + ACTIONS(1970), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1765), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311261,21 +311331,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -311284,86 +311343,201 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [85418] = 7, + [86458] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5897), 1, - anon_sym_DOT_DOT2, - STATE(2828), 1, + STATE(2831), 1, sym_comment, - ACTIONS(5899), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + ACTIONS(964), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(966), 44, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + anon_sym_QMARK2, aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1794), 31, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86520] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(5873), 1, sym_raw_string_begin, - anon_sym_LBRACK, + ACTIONS(5900), 1, anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, + STATE(2826), 1, + aux_sym__multiple_types_repeat1, + STATE(2832), 1, + sym_comment, + ACTIONS(5867), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85486] = 5, - ACTIONS(251), 1, + [86588] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5901), 1, - anon_sym_QMARK2, - STATE(2829), 1, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(5873), 1, + sym_raw_string_begin, + ACTIONS(5902), 1, + anon_sym_RBRACK, + STATE(2826), 1, + aux_sym__multiple_types_repeat1, + STATE(2833), 1, sym_comment, - ACTIONS(958), 7, + ACTIONS(5867), 47, aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(960), 43, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [86656] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(5873), 1, sym_raw_string_begin, + ACTIONS(5904), 1, + anon_sym_RBRACK, + STATE(2826), 1, + aux_sym__multiple_types_repeat1, + STATE(2834), 1, + sym_comment, + ACTIONS(5867), 47, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311371,10 +311545,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311393,157 +311570,34 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [85550] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2830), 1, - sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3176), 1, - sym_cell_path, - ACTIONS(1965), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1967), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [85620] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1000), 1, - sym__entry_separator, - ACTIONS(5887), 1, - anon_sym_DOT_DOT2, - ACTIONS(5905), 1, - anon_sym_RBRACK, - ACTIONS(5908), 1, - sym_raw_string_begin, - STATE(2831), 1, - sym_comment, - ACTIONS(5889), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5903), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [85690] = 7, + [86724] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(5856), 1, + ACTIONS(5873), 1, sym_raw_string_begin, - ACTIONS(5910), 1, + ACTIONS(5906), 1, anon_sym_RBRACK, - STATE(2832), 1, - sym_comment, - STATE(2836), 1, + STATE(2826), 1, aux_sym__multiple_types_repeat1, - ACTIONS(5850), 47, + STATE(2835), 1, + sym_comment, + ACTIONS(5867), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -311591,23 +311645,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85758] = 5, - ACTIONS(251), 1, + [86792] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5912), 1, - anon_sym_QMARK2, - STATE(2833), 1, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(5873), 1, + sym_raw_string_begin, + ACTIONS(5908), 1, + anon_sym_RBRACK, + STATE(2826), 1, + aux_sym__multiple_types_repeat1, + STATE(2836), 1, sym_comment, - ACTIONS(952), 7, + ACTIONS(5867), 47, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(954), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -311615,10 +311667,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -311637,12 +311692,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -311650,14 +311706,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [85822] = 5, + [86860] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5843), 1, - aux_sym__immediate_decimal_token2, - STATE(2834), 1, + STATE(2837), 1, sym_comment, - ACTIONS(1725), 17, + ACTIONS(984), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -311666,6 +311720,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -311675,7 +311730,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1727), 33, + ACTIONS(986), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311709,20 +311764,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, - [85886] = 6, - ACTIONS(3), 1, + [86922] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5914), 1, + ACTIONS(5910), 1, + aux_sym__immediate_decimal_token2, + STATE(2838), 1, + sym_comment, + ACTIONS(1685), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - STATE(2835), 1, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1687), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [86986] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2839), 1, sym_comment, - ACTIONS(2176), 2, + ACTIONS(2037), 4, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5916), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 46, + sym__entry_separator, + ACTIONS(2035), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -311730,6 +311841,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -311769,81 +311881,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [85952] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - sym_raw_string_begin, - ACTIONS(5918), 1, - sym__entry_separator, - STATE(2836), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2287), 48, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [86016] = 7, + [87048] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(5921), 1, - anon_sym_DOT_DOT2, - STATE(2837), 1, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2840), 1, sym_comment, - ACTIONS(5923), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 16, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3180), 1, + sym_cell_path, + ACTIONS(1986), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311857,7 +311909,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 31, + ACTIONS(1988), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311865,6 +311917,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311889,16 +311943,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86084] = 4, + [87118] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(2838), 1, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2841), 1, sym_comment, - ACTIONS(1757), 18, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3115), 1, + sym_cell_path, + ACTIONS(1998), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -311912,8 +311971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 33, + ACTIONS(2000), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -311921,8 +311979,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -311947,47 +312005,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86146] = 8, - ACTIONS(251), 1, + [87188] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2839), 1, + STATE(2842), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3159), 1, - sym_cell_path, - ACTIONS(1969), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1971), 33, + ACTIONS(2041), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(2039), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -311997,10 +312039,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312009,77 +312062,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86216] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(4657), 1, - anon_sym_DOLLAR, - ACTIONS(4659), 1, - anon_sym_LPAREN2, - ACTIONS(5925), 1, - anon_sym_DOT, - ACTIONS(5929), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5931), 1, - aux_sym__immediate_decimal_token5, - STATE(2840), 1, - sym_comment, - STATE(3208), 1, - sym__immediate_decimal, - ACTIONS(5927), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2127), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1553), 34, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [86296] = 4, + aux_sym__unquoted_in_list_token1, + [87250] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2841), 1, + STATE(2843), 1, sym_comment, ACTIONS(988), 18, anon_sym_DOT_DOT, @@ -312134,14 +312121,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86358] = 5, + [87312] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5933), 1, - aux_sym__immediate_decimal_token2, - STATE(2842), 1, + STATE(2844), 1, sym_comment, - ACTIONS(1765), 17, + ACTIONS(980), 18, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -312150,6 +312135,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312159,7 +312145,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(982), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -312193,95 +312179,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86422] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2843), 1, - sym_comment, - ACTIONS(2104), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(2102), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [86484] = 12, + [87374] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(3547), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(5937), 1, + ACTIONS(5912), 1, + anon_sym_DOT, + ACTIONS(5916), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5939), 1, + ACTIONS(5918), 1, aux_sym__immediate_decimal_token5, - STATE(2844), 1, + STATE(2845), 1, sym_comment, - STATE(3241), 1, + STATE(3193), 1, sym__immediate_decimal, - ACTIONS(5935), 2, + ACTIONS(5914), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2050), 2, + STATE(2092), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1627), 6, + ACTIONS(1529), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1629), 35, + ACTIONS(1543), 34, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -312293,9 +312224,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -312317,47 +312246,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [86562] = 8, - ACTIONS(251), 1, + [87454] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2845), 1, + ACTIONS(5920), 1, + anon_sym_DOT_DOT2, + STATE(2846), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3174), 1, - sym_cell_path, - ACTIONS(935), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(937), 33, + ACTIONS(2053), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5922), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2047), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312367,103 +312282,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86632] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(5937), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5939), 1, - aux_sym__immediate_decimal_token5, - STATE(2846), 1, - sym_comment, - STATE(3239), 1, - sym__immediate_decimal, - ACTIONS(5935), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2035), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1553), 35, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [86710] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2847), 1, - sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3131), 1, - sym_cell_path, - ACTIONS(1973), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312472,33 +312297,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1975), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312507,17 +312305,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [86780] = 4, + aux_sym__unquoted_in_list_token1, + [87520] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2848), 1, + ACTIONS(5924), 1, + anon_sym_DOT_DOT2, + STATE(2847), 1, sym_comment, - ACTIONS(1727), 4, + ACTIONS(2086), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5926), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1725), 47, + ACTIONS(2080), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312525,7 +312327,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -312565,47 +312366,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [86842] = 8, - ACTIONS(251), 1, + [87586] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2849), 1, + ACTIONS(5928), 1, + anon_sym_DOT_DOT2, + STATE(2848), 1, sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3133), 1, - sym_cell_path, - ACTIONS(1977), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1979), 33, + ACTIONS(2078), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(5930), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312615,37 +312402,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [86912] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2850), 1, - sym_comment, - STATE(2907), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - STATE(3122), 1, - sym_cell_path, - ACTIONS(1981), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312654,33 +312417,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1983), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312689,17 +312425,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, - [86982] = 4, + aux_sym__unquoted_in_list_token1, + [87652] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2851), 1, + STATE(2849), 1, sym_comment, - ACTIONS(1759), 4, + ACTIONS(1020), 4, sym_raw_string_begin, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(1757), 47, + ACTIONS(1018), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -312747,80 +312484,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87044] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5941), 1, - sym_long_flag_identifier, - ACTIONS(5943), 1, - anon_sym_EQ2, - STATE(2852), 1, - sym_comment, - ACTIONS(4888), 9, - sym_raw_string_begin, - aux_sym_cmd_identifier_token39, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(4890), 40, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - [87110] = 7, + [87714] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(5856), 1, + ACTIONS(5873), 1, sym_raw_string_begin, - ACTIONS(5945), 1, + ACTIONS(5932), 1, anon_sym_RBRACK, - STATE(2836), 1, + STATE(2826), 1, aux_sym__multiple_types_repeat1, - STATE(2853), 1, + STATE(2850), 1, sym_comment, - ACTIONS(5850), 47, + ACTIONS(5867), 47, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -312868,47 +312545,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [87178] = 4, - ACTIONS(3), 1, + [87782] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2854), 1, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2851), 1, sym_comment, - ACTIONS(1767), 4, - sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1765), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3113), 1, + sym_cell_path, + ACTIONS(1893), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -312917,40 +312572,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87240] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2855), 1, - sym_comment, - ACTIONS(1863), 4, + ACTIONS(1895), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1861), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -312960,21 +312595,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -312983,82 +312607,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [87302] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, - sym_raw_string_begin, - ACTIONS(5947), 1, - anon_sym_RBRACK, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - STATE(2856), 1, - sym_comment, - ACTIONS(5850), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87370] = 8, + [87852] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2857), 1, + STATE(2852), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3160), 1, + STATE(3175), 1, sym_cell_path, - ACTIONS(1985), 14, + ACTIONS(1885), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313073,7 +312635,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1987), 33, + ACTIONS(1887), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313107,104 +312669,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87440] = 7, + [87922] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, - sym_raw_string_begin, - ACTIONS(5949), 1, - anon_sym_RBRACK, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - STATE(2858), 1, - sym_comment, - ACTIONS(5850), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [87508] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2859), 1, - sym_comment, - ACTIONS(1765), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, + ACTIONS(5802), 1, + aux_sym__immediate_decimal_token2, + STATE(2853), 1, + sym_comment, + ACTIONS(1751), 3, sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(1749), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313214,10 +312703,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313226,20 +312726,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87570] = 8, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + [87986] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2860), 1, + STATE(2854), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3161), 1, + STATE(3111), 1, sym_cell_path, - ACTIONS(1989), 14, + ACTIONS(1901), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313254,7 +312756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1991), 33, + ACTIONS(1903), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313288,79 +312790,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87640] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5951), 1, - aux_sym__immediate_decimal_token2, - STATE(2861), 1, - sym_comment, - ACTIONS(1587), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1589), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [87704] = 8, + [88056] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2862), 1, + STATE(2855), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3180), 1, + STATE(3129), 1, sym_cell_path, - ACTIONS(1993), 14, + ACTIONS(1831), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313375,7 +312818,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1995), 33, + ACTIONS(1833), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313409,17 +312852,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, - [87774] = 4, + [88126] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(2863), 1, + ACTIONS(5934), 1, + aux_sym__immediate_decimal_token2, + STATE(2856), 1, sym_comment, - ACTIONS(2122), 4, + ACTIONS(1774), 3, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2120), 47, + ACTIONS(1772), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -313427,7 +312871,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -313467,20 +312910,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [87836] = 8, + aux_sym__unquoted_in_list_token2, + [88190] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5869), 1, + ACTIONS(5837), 1, anon_sym_DOT2, - STATE(2864), 1, + STATE(2857), 1, sym_comment, - STATE(2907), 1, + STATE(2917), 1, aux_sym_cell_path_repeat1, - STATE(3039), 1, + STATE(3030), 1, sym_path, - STATE(3190), 1, + STATE(3163), 1, sym_cell_path, - ACTIONS(1997), 14, + ACTIONS(935), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -313495,7 +312939,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1999), 33, + ACTIONS(937), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313529,12 +312973,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87906] = 4, + [88260] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2865), 1, + ACTIONS(5806), 1, + aux_sym__immediate_decimal_token2, + STATE(2858), 1, sym_comment, - ACTIONS(984), 18, + ACTIONS(1749), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -313543,7 +312989,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313553,7 +312998,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(986), 33, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -313587,21 +313032,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [87968] = 4, + [88324] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2866), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(5843), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5845), 1, + aux_sym__immediate_decimal_token5, + STATE(2859), 1, sym_comment, - ACTIONS(980), 18, + STATE(3240), 1, + sym__immediate_decimal, + ACTIONS(5841), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2016), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1543), 35, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [88402] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5936), 1, + sym__newline, + STATE(2860), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1274), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -313610,17 +313122,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(982), 33, + aux_sym_unquoted_token1, + ACTIONS(1276), 33, sym_raw_string_begin, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -313637,6 +313147,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313645,43 +313157,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88030] = 4, - ACTIONS(251), 1, + [88466] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2867), 1, + STATE(2861), 1, sym_comment, - ACTIONS(1725), 18, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 33, + ACTIONS(1759), 4, sym_raw_string_begin, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(1757), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313691,10 +313191,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313703,31 +313214,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [88092] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token1, + [88528] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2868), 1, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2862), 1, sym_comment, - ACTIONS(1719), 4, + STATE(2917), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + STATE(3123), 1, + sym_cell_path, + ACTIONS(5808), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5813), 33, sym_raw_string_begin, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(1717), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -313737,21 +313265,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -313760,17 +313277,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88154] = 7, + [88598] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5773), 1, + ACTIONS(5760), 1, anon_sym_DOT2, - STATE(2869), 1, + STATE(2863), 1, sym_comment, - STATE(2870), 1, + STATE(2864), 1, aux_sym_cell_path_repeat1, - STATE(3014), 1, + STATE(3009), 1, sym_path, ACTIONS(950), 2, sym_raw_string_begin, @@ -313822,17 +313338,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88222] = 6, + [88666] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5953), 1, + ACTIONS(5939), 1, anon_sym_DOT2, - STATE(3014), 1, + STATE(3009), 1, sym_path, ACTIONS(943), 2, sym_raw_string_begin, sym__entry_separator, - STATE(2870), 2, + STATE(2864), 2, sym_comment, aux_sym_cell_path_repeat1, ACTIONS(941), 46, @@ -313882,80 +313398,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88288] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2871), 1, - sym_comment, - ACTIONS(964), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(966), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88350] = 6, + [88732] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5956), 1, + ACTIONS(5852), 1, anon_sym_DOT_DOT2, - STATE(2872), 1, - sym_comment, - ACTIONS(2150), 2, - sym_raw_string_begin, + ACTIONS(5944), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, sym__entry_separator, - ACTIONS(5958), 2, + ACTIONS(5948), 1, + sym_raw_string_begin, + STATE(2865), 1, + sym_comment, + ACTIONS(5854), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 46, + ACTIONS(5942), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -314000,78 +313460,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [88416] = 4, + [88802] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2873), 1, - sym_comment, - ACTIONS(968), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(970), 44, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, + ACTIONS(5954), 1, anon_sym_DASH_DASH, - anon_sym_QMARK2, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88478] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2874), 1, + STATE(2954), 1, + sym_long_flag, + STATE(2866), 2, sym_comment, - ACTIONS(972), 7, + aux_sym_decl_def_repeat1, + ACTIONS(5950), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(974), 44, + ACTIONS(5952), 42, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314107,8 +313513,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314116,12 +313520,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88540] = 4, + [88868] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2875), 1, + STATE(2867), 1, sym_comment, - ACTIONS(976), 7, + ACTIONS(984), 7, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, @@ -314129,7 +313533,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, anon_sym_DOT2, - ACTIONS(978), 44, + ACTIONS(986), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -314166,7 +313570,6 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, - anon_sym_QMARK2, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -314174,153 +313577,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88602] = 5, + [88929] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5960), 1, - aux_sym__immediate_decimal_token2, - STATE(2876), 1, - sym_comment, - ACTIONS(1667), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, + ACTIONS(5957), 1, anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1669), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + STATE(2868), 1, + sym_comment, + ACTIONS(5959), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [88666] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, + ACTIONS(5847), 16, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(5856), 31, sym_raw_string_begin, - ACTIONS(5962), 1, + anon_sym_LBRACK, anon_sym_RBRACK, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - STATE(2877), 1, - sym_comment, - ACTIONS(5850), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [88734] = 6, - ACTIONS(3), 1, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [88994] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5964), 1, - anon_sym_DOT_DOT2, - STATE(2878), 1, + ACTIONS(5961), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5963), 1, + aux_sym__immediate_decimal_token2, + STATE(2869), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(1731), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(5966), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314330,21 +313683,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314353,143 +313695,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [88800] = 7, + [89059] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, - sym_raw_string_begin, - ACTIONS(5968), 1, - anon_sym_RBRACK, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - STATE(2879), 1, - sym_comment, - ACTIONS(5850), 47, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [88868] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(4657), 1, - anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(2194), 1, anon_sym_LPAREN2, - ACTIONS(5972), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5974), 1, - aux_sym__immediate_decimal_token5, - STATE(2880), 1, - sym_comment, - STATE(3263), 1, - sym__immediate_decimal, - ACTIONS(5970), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2494), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1627), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1629), 34, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [88945] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2881), 1, + ACTIONS(2198), 1, + aux_sym__unquoted_in_list_token4, + STATE(2870), 1, sym_comment, - ACTIONS(2267), 3, + ACTIONS(2196), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(2265), 47, + ACTIONS(2192), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314536,82 +313754,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [89006] = 12, + [89124] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(4657), 1, - anon_sym_DOLLAR, - ACTIONS(4659), 1, - anon_sym_LPAREN2, - ACTIONS(5972), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(5974), 1, - aux_sym__immediate_decimal_token5, - STATE(2882), 1, + STATE(2871), 1, sym_comment, - STATE(3254), 1, - sym__immediate_decimal, - ACTIONS(5970), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2527), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 6, - anon_sym_GT2, + ACTIONS(1270), 16, + anon_sym_DOLLAR, anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1553), 34, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [89083] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2883), 1, - sym_comment, - ACTIONS(1717), 17, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314624,17 +313775,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1719), 33, + aux_sym_unquoted_token1, + ACTIONS(1268), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -314651,6 +313801,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314659,20 +313811,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, - [89144] = 6, + [89185] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5976), 1, - anon_sym_DOT_DOT2, - STATE(2884), 1, + ACTIONS(5965), 1, + anon_sym_DOT, + ACTIONS(5967), 1, + aux_sym__immediate_decimal_token2, + STATE(2872), 1, sym_comment, - ACTIONS(5978), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 16, + ACTIONS(1749), 15, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -314686,61 +313835,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2176), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89209] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2885), 1, - sym_comment, - ACTIONS(966), 2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(964), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -314750,22 +313858,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -314774,16 +313870,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [89270] = 4, + [89250] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2886), 1, + STATE(2873), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(1751), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(968), 48, + ACTIONS(1749), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314791,7 +313887,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314814,7 +313909,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314832,72 +313926,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89331] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2887), 1, - sym_comment, - ACTIONS(2116), 17, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2118), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [89392] = 4, + aux_sym__unquoted_in_list_token2, + [89311] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(2888), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym__unquoted_in_list_token4, + STATE(2874), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(2202), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(972), 48, + ACTIONS(2200), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314905,7 +313947,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314928,7 +313969,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -314946,15 +313986,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89453] = 4, + [89376] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2889), 1, + STATE(2875), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(1733), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(976), 48, + ACTIONS(1731), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -314962,7 +314003,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -314985,7 +314025,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315003,76 +314042,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89514] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2890), 1, - sym_comment, - ACTIONS(2267), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2265), 46, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym_unquoted_token4, - [89575] = 6, + aux_sym__unquoted_in_list_token2, + [89437] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5980), 1, - anon_sym_DOT, - ACTIONS(5982), 1, - aux_sym__immediate_decimal_token2, - STATE(2891), 1, + STATE(2876), 1, sym_comment, - ACTIONS(1727), 2, + ACTIONS(1774), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1725), 46, + ACTIONS(1772), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315119,19 +314099,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89640] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1555), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(2892), 1, + [89498] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2877), 1, sym_comment, - ACTIONS(1794), 2, + ACTIONS(1819), 3, sym_raw_string_begin, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1786), 46, + ACTIONS(1817), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -315178,76 +314156,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89705] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2893), 1, - sym_comment, - ACTIONS(2241), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2237), 45, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [89768] = 6, + aux_sym__unquoted_in_list_token2, + [89559] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5984), 1, - anon_sym_DOT_DOT2, - STATE(2894), 1, + STATE(2878), 1, sym_comment, - ACTIONS(5986), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 16, + ACTIONS(1749), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -315263,7 +314180,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2158), 31, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315271,6 +314188,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315295,81 +314214,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [89833] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(2895), 1, - sym_comment, - ACTIONS(2247), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2245), 45, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [89896] = 6, + [89620] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(5516), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - STATE(2896), 1, - sym_comment, - ACTIONS(2186), 2, - sym_raw_string_begin, + ACTIONS(5944), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, sym__entry_separator, - ACTIONS(2184), 46, + ACTIONS(5971), 1, + anon_sym_COMMA, + ACTIONS(5973), 1, + sym_raw_string_begin, + STATE(2879), 1, + sym_comment, + STATE(7258), 1, + sym__expr_parenthesized_immediate, + ACTIONS(5969), 44, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, @@ -315412,12 +314276,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [89961] = 4, + [89691] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2897), 1, + STATE(2880), 1, sym_comment, - ACTIONS(2102), 17, + ACTIONS(1731), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -315435,7 +314299,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2104), 33, + ACTIONS(1733), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315469,12 +314333,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90022] = 4, + [89752] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2881), 1, + sym_comment, + ACTIONS(2218), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(2216), 47, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token4, + [89813] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2898), 1, + STATE(2882), 1, sym_comment, - ACTIONS(2120), 17, + ACTIONS(1772), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -315492,7 +314413,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2122), 33, + ACTIONS(1774), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315526,17 +314447,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90083] = 6, + [89874] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5988), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5990), 1, - aux_sym__immediate_decimal_token2, - STATE(2899), 1, + STATE(2883), 1, sym_comment, - ACTIONS(1757), 15, + ACTIONS(1817), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -315550,8 +314470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 33, + ACTIONS(1819), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315559,8 +314478,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315585,12 +314504,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90148] = 4, + [89935] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(2900), 1, + ACTIONS(5975), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5977), 1, + aux_sym__immediate_decimal_token2, + STATE(2884), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1597), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -315598,8 +314521,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1589), 42, + aux_sym_unquoted_token2, + ACTIONS(1599), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -315614,10 +314537,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -315630,6 +314550,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -315642,77 +314563,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [90209] = 6, - ACTIONS(3), 1, + [90000] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - STATE(2901), 1, + ACTIONS(5979), 1, + anon_sym_DOT, + ACTIONS(5981), 1, + aux_sym__immediate_decimal_token2, + STATE(2885), 1, sym_comment, - ACTIONS(1873), 2, - sym_raw_string_begin, + ACTIONS(1605), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [90065] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(1865), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(5873), 1, + sym_raw_string_begin, + STATE(2826), 1, + aux_sym__multiple_types_repeat1, + STATE(2886), 1, + sym_comment, + ACTIONS(5867), 47, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [90274] = 6, + [90130] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5992), 1, - anon_sym_DOT_DOT2, - STATE(2902), 1, + STATE(2887), 1, sym_comment, - ACTIONS(5994), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5883), 16, + ACTIONS(2035), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -315728,7 +314704,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5893), 31, + ACTIONS(2037), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315736,6 +314712,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315760,44 +314738,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90339] = 6, - ACTIONS(251), 1, + [90191] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5992), 1, - anon_sym_DOT_DOT2, - STATE(2903), 1, + ACTIONS(5983), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5985), 1, + aux_sym__immediate_decimal_token2, + STATE(2888), 1, sym_comment, - ACTIONS(5994), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5903), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(5908), 31, + ACTIONS(1733), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1731), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -315807,31 +314773,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [90404] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2904), 1, - sym_comment, - ACTIONS(1270), 16, - anon_sym_DOLLAR, - anon_sym_DASH2, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -315840,34 +314788,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1268), 34, - sym_raw_string_begin, - sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -315876,18 +314796,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, - [90465] = 6, + aux_sym__unquoted_in_list_token1, + [90256] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5996), 1, - anon_sym_DOT_DOT2, - STATE(2905), 1, + STATE(2889), 1, sym_comment, - ACTIONS(5998), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 16, + ACTIONS(2039), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -315903,7 +314820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2166), 31, + ACTIONS(2041), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -315911,6 +314828,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -315935,12 +314854,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90530] = 4, + [90317] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2906), 1, + STATE(2890), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1685), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -315949,7 +314868,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, anon_sym_DOT2, - ACTIONS(1669), 42, + ACTIONS(1687), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -315992,45 +314911,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [90591] = 7, - ACTIONS(251), 1, + [90378] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5869), 1, - anon_sym_DOT2, - STATE(2907), 1, + ACTIONS(5987), 1, + anon_sym_DOT, + ACTIONS(5989), 1, + aux_sym__immediate_decimal_token2, + STATE(2891), 1, sym_comment, - STATE(2914), 1, - aux_sym_cell_path_repeat1, - STATE(3039), 1, - sym_path, - ACTIONS(948), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(950), 33, + ACTIONS(1751), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1749), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316040,10 +314946,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316052,21 +314969,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90658] = 5, + aux_sym__unquoted_in_list_token1, + [90443] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6000), 1, + ACTIONS(5991), 1, anon_sym_LBRACK2, - STATE(2908), 1, + STATE(2892), 1, sym_comment, - ACTIONS(2318), 6, + ACTIONS(2280), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2322), 43, + ACTIONS(2284), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -316110,10 +315028,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90721] = 4, + [90506] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2893), 1, + sym_comment, + ACTIONS(2491), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2489), 48, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_RBRACK, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90567] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2909), 1, + STATE(2894), 1, sym_comment, ACTIONS(988), 7, aux_sym_cmd_identifier_token1, @@ -316167,14 +315142,307 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [90782] = 4, + [90628] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2910), 1, + STATE(2895), 1, sym_comment, - ACTIONS(1018), 17, + ACTIONS(980), 7, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + anon_sym_DOT2, + ACTIONS(982), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90689] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2896), 1, + sym_comment, + ACTIONS(1597), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1599), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [90750] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5993), 1, + anon_sym_EQ2, + STATE(2897), 1, + sym_comment, + ACTIONS(4916), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(4914), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90813] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5995), 1, + sym__newline, + STATE(2898), 2, + sym_comment, + aux_sym_shebang_repeat1, + ACTIONS(1274), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1276), 42, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [90876] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(2899), 1, + sym_comment, + ACTIONS(1813), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1805), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [90941] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5998), 1, anon_sym_DOT_DOT2, + STATE(2900), 1, + sym_comment, + ACTIONS(6000), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2047), 16, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, @@ -316190,7 +315458,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1020), 33, + ACTIONS(2053), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316198,8 +315466,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, @@ -316224,12 +315490,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [90843] = 4, + [91006] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token4, + STATE(2901), 1, + sym_comment, + ACTIONS(2230), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2226), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [91071] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + STATE(2902), 1, + sym_comment, + ACTIONS(2190), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2188), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [91136] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2911), 1, + STATE(2903), 1, sym_comment, - ACTIONS(1595), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -316238,7 +315622,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, anon_sym_DOT2, - ACTIONS(1597), 42, + ACTIONS(1607), 42, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -316281,19 +315665,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [90904] = 6, + [91197] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1591), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(2190), 1, + ACTIONS(2172), 1, anon_sym_LPAREN2, - STATE(2912), 1, + STATE(2904), 1, sym_comment, - ACTIONS(2192), 2, + ACTIONS(2174), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2188), 46, + ACTIONS(2170), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [91262] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym__unquoted_in_list_token2, + STATE(2905), 1, + sym_comment, + ACTIONS(2184), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2180), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316340,17 +315783,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [90969] = 6, + [91327] = 6, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(6002), 1, - anon_sym_DOT, - ACTIONS(6004), 1, - aux_sym__immediate_decimal_token2, - STATE(2913), 1, + anon_sym_DOT_DOT2, + STATE(2906), 1, sym_comment, - ACTIONS(1725), 15, + ACTIONS(6004), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2080), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -316364,8 +315810,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 33, + ACTIONS(2086), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316373,8 +315818,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -316399,18 +315842,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91034] = 6, + [91392] = 6, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(6006), 1, - anon_sym_DOT2, - STATE(3039), 1, - sym_path, - STATE(2914), 2, + anon_sym_DOT_DOT2, + STATE(2907), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(941), 14, + ACTIONS(6008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2059), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -316424,7 +315869,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(943), 33, + ACTIONS(2065), 31, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316432,8 +315877,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -316458,45 +315901,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91099] = 4, - ACTIONS(3), 1, + [91457] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2915), 1, + STATE(2908), 1, sym_comment, - ACTIONS(1727), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1725), 47, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1018), 17, anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316505,39 +315923,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91160] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2916), 1, - sym_comment, - ACTIONS(1759), 3, + ACTIONS(1020), 33, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(1757), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -316547,21 +315946,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316570,30 +315958,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91221] = 8, + [91518] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - sym__entry_separator, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(5905), 1, - anon_sym_RBRACK, - ACTIONS(5908), 1, - sym_raw_string_begin, - STATE(2917), 1, + STATE(2909), 1, sym_comment, - ACTIONS(5903), 45, + ACTIONS(966), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(964), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -316616,6 +315997,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316633,16 +316015,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91290] = 4, + [91579] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2918), 1, + STATE(2910), 1, sym_comment, - ACTIONS(1767), 3, + ACTIONS(970), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1765), 47, + ACTIONS(968), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316650,6 +316031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -316672,6 +316054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316689,74 +316072,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91351] = 4, + [91640] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(2919), 1, - sym_comment, - ACTIONS(2485), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2483), 48, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_RBRACK, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [91412] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2920), 1, + STATE(2911), 1, sym_comment, - ACTIONS(1863), 3, + ACTIONS(974), 2, sym_raw_string_begin, - anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(1861), 47, + ACTIONS(972), 48, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -316764,6 +316088,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -316786,6 +316111,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316803,16 +316129,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - [91473] = 4, + [91701] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(2921), 1, - sym_comment, - ACTIONS(1270), 16, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(4623), 1, anon_sym_DOLLAR, + ACTIONS(4625), 1, + anon_sym_LPAREN2, + ACTIONS(6012), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6014), 1, + aux_sym__immediate_decimal_token5, + STATE(2912), 1, + sym_comment, + STATE(3243), 1, + sym__immediate_decimal, + ACTIONS(6010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2446), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 6, + anon_sym_GT2, anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1543), 34, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [91778] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6016), 1, + anon_sym_DOT_DOT2, + STATE(2913), 1, + sym_comment, + ACTIONS(6018), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 16, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -316825,16 +316220,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1268), 34, + aux_sym__unquoted_in_list_token1, + ACTIONS(2078), 31, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, - aux_sym_expr_unary_token1, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -316851,8 +316245,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -316861,12 +316253,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91534] = 4, + [91843] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2922), 1, + STATE(2914), 1, sym_comment, - ACTIONS(1725), 17, + ACTIONS(1757), 17, anon_sym_DOT_DOT, anon_sym_DOT_DOT2, anon_sym_DOT_DOT_EQ, @@ -316884,7 +316276,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1727), 33, + ACTIONS(1759), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -316918,29 +316310,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, - [91595] = 9, + [91904] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(6011), 1, - anon_sym_COMMA, - ACTIONS(6013), 1, - sym_raw_string_begin, - STATE(2923), 1, + STATE(2915), 1, sym_comment, - STATE(7269), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6009), 44, + ACTIONS(978), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(976), 48, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -316963,6 +316349,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -316980,16 +316367,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [91666] = 4, + [91965] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2924), 1, + STATE(2916), 1, sym_comment, - ACTIONS(1757), 17, + ACTIONS(1270), 16, + anon_sym_DOLLAR, + anon_sym_DASH2, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -317002,17 +316388,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1759), 33, + aux_sym_unquoted_token1, + ACTIONS(1268), 34, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_LBRACE, + aux_sym_expr_unary_token1, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317029,6 +316414,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -317037,16 +316424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91727] = 4, + [92026] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(2925), 1, + ACTIONS(5837), 1, + anon_sym_DOT2, + STATE(2917), 1, sym_comment, - ACTIONS(1765), 17, + STATE(2919), 1, + aux_sym_cell_path_repeat1, + STATE(3030), 1, + sym_path, + ACTIONS(948), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -317060,7 +316450,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(950), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317068,8 +316458,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317094,16 +316484,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91788] = 4, + [92093] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2926), 1, + STATE(2918), 1, sym_comment, - ACTIONS(1861), 17, - anon_sym_DOT_DOT, + ACTIONS(1727), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, anon_sym_DOT_DOT2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, + sym_filesize_unit, + anon_sym_DOT2, + ACTIONS(1729), 42, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, + anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [92154] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6020), 1, + anon_sym_DOT2, + STATE(3030), 1, + sym_path, + STATE(2919), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 14, + anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, @@ -317117,7 +316566,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1863), 33, + ACTIONS(943), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -317125,8 +316574,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, @@ -317151,78 +316600,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [91849] = 4, - ACTIONS(251), 1, + [92219] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2927), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(2920), 1, sym_comment, - ACTIONS(984), 7, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(986), 43, + ACTIONS(2230), 4, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91910] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2928), 1, - sym_comment, - ACTIONS(980), 7, + ACTIONS(2226), 45, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - anon_sym_DOT2, - ACTIONS(982), 43, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317230,10 +316621,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -317252,9 +316646,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -317262,26 +316658,20 @@ 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, + [92282] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(2921), 1, + sym_comment, + ACTIONS(1000), 4, + sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [91971] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6015), 1, - sym__newline, - STATE(2929), 2, - sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1274), 6, + ACTIONS(1004), 45, aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1276), 42, - sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317289,10 +316679,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -317311,30 +316704,31 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92034] = 6, + [92345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(5856), 1, - sym_raw_string_begin, - STATE(2836), 1, - aux_sym__multiple_types_repeat1, - STATE(2930), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(2922), 1, sym_comment, - ACTIONS(5850), 47, + ACTIONS(2196), 4, + sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2192), 45, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317375,28 +316769,26 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92099] = 5, + [92408] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6018), 1, - anon_sym_EQ2, - STATE(2931), 1, + ACTIONS(5565), 1, + aux_sym_unquoted_token2, + STATE(2923), 1, sym_comment, - ACTIONS(4927), 6, + ACTIONS(1663), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4925), 43, + ACTIONS(1675), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317440,22 +316832,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [92162] = 5, + [92471] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5586), 1, - aux_sym_unquoted_token2, - STATE(2932), 1, + STATE(2924), 1, sym_comment, - ACTIONS(1681), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1693), 43, + ACTIONS(2043), 17, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2045), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [92532] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(2925), 1, + sym_comment, + ACTIONS(2202), 4, sym_raw_string_begin, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2200), 45, + aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, aux_sym_cmd_identifier_token4, @@ -317463,10 +316910,13 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token6, aux_sym_cmd_identifier_token7, aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token10, aux_sym_cmd_identifier_token11, aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token16, aux_sym_cmd_identifier_token17, aux_sym_cmd_identifier_token18, @@ -317485,9 +316935,11 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token35, aux_sym_cmd_identifier_token36, aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token38, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, anon_sym_DASH_DASH, @@ -317495,197 +316947,17 @@ 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, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [92225] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6020), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6022), 1, - aux_sym__immediate_decimal_token2, - STATE(2933), 1, - sym_comment, - ACTIONS(1595), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92290] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6024), 1, - anon_sym_DOT, - ACTIONS(6026), 1, - aux_sym__immediate_decimal_token2, - STATE(2934), 1, - sym_comment, - ACTIONS(1587), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92355] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2935), 1, - sym_comment, - ACTIONS(1733), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - anon_sym_DOT2, - ACTIONS(1735), 42, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, - anon_sym_QMARK2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [92416] = 5, + [92595] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(2936), 1, + STATE(2926), 1, sym_comment, - ACTIONS(1000), 4, + ACTIONS(2218), 4, sym_raw_string_begin, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(1004), 45, + ACTIONS(2216), 46, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -317731,12 +317003,13 @@ 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, - [92479] = 5, + aux_sym_unquoted_token4, + [92656] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6028), 1, + ACTIONS(6023), 1, anon_sym_QMARK2, - STATE(2937), 1, + STATE(2927), 1, sym_comment, ACTIONS(960), 2, sym_raw_string_begin, @@ -317789,12 +317062,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92542] = 5, + [92719] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6030), 1, + ACTIONS(6025), 1, anon_sym_QMARK2, - STATE(2938), 1, + STATE(2928), 1, sym_comment, ACTIONS(954), 2, sym_raw_string_begin, @@ -317847,139 +317120,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92605] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym__unquoted_in_list_token2, - STATE(2939), 1, - sym_comment, - ACTIONS(2198), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2194), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92670] = 6, + [92782] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6032), 1, - anon_sym_DOT_DOT2, - STATE(2940), 1, - sym_comment, - ACTIONS(6034), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 16, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2150), 31, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(4623), 1, anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [92735] = 6, + ACTIONS(4625), 1, + anon_sym_LPAREN2, + ACTIONS(6012), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6014), 1, + aux_sym__immediate_decimal_token5, + STATE(2929), 1, + sym_comment, + STATE(3249), 1, + sym__immediate_decimal, + ACTIONS(6010), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2484), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1589), 34, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [92859] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(1000), 1, + sym__entry_separator, + ACTIONS(2208), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2210), 1, aux_sym__unquoted_in_list_token4, - STATE(2941), 1, - sym_comment, - ACTIONS(2233), 2, + ACTIONS(5849), 1, + anon_sym_RBRACK, + ACTIONS(5856), 1, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2229), 46, + STATE(2930), 1, + sym_comment, + ACTIONS(5847), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -318024,48 +317246,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92800] = 6, - ACTIONS(3), 1, + [92928] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6036), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6038), 1, - aux_sym__immediate_decimal_token2, - STATE(2942), 1, + ACTIONS(5957), 1, + anon_sym_DOT_DOT2, + STATE(2931), 1, sym_comment, - ACTIONS(1759), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1757), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(5959), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5942), 16, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -318074,41 +317272,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92865] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(2943), 1, - sym_comment, - ACTIONS(2241), 2, + ACTIONS(5948), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2237), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318118,21 +317293,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318141,20 +317305,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [92930] = 6, + [92993] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(2944), 1, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + STATE(2932), 1, sym_comment, - ACTIONS(2247), 2, + ACTIONS(1801), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2245), 46, + ACTIONS(1793), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -318201,135 +317364,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [92995] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(2945), 1, - sym_comment, - ACTIONS(2233), 4, - sym_raw_string_begin, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2229), 45, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token38, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - [93058] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6040), 1, - anon_sym_DOT, - ACTIONS(6042), 1, - aux_sym__immediate_decimal_token2, - STATE(2946), 1, - sym_comment, - ACTIONS(1725), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1727), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93122] = 4, + [93058] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2947), 1, + STATE(2933), 1, sym_comment, - ACTIONS(1981), 6, + ACTIONS(2421), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1983), 43, + ACTIONS(2423), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318373,77 +317420,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93182] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5951), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6044), 1, - anon_sym_DOT, - STATE(2948), 1, - sym_comment, - ACTIONS(1587), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - ACTIONS(1589), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [93246] = 4, + [93118] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2949), 1, + STATE(2934), 1, sym_comment, - ACTIONS(4941), 6, + ACTIONS(2350), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4939), 43, + ACTIONS(2352), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318487,75 +317476,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93306] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2950), 1, - sym_comment, - ACTIONS(972), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(974), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [93366] = 4, + [93178] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2951), 1, + STATE(2935), 1, sym_comment, - ACTIONS(1985), 6, + ACTIONS(1859), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1987), 43, + ACTIONS(1861), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318599,19 +317532,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93426] = 4, + [93238] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2952), 1, + STATE(2936), 1, sym_comment, - ACTIONS(2427), 6, + ACTIONS(2358), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2429), 43, + ACTIONS(2360), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318655,41 +317588,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93486] = 4, - ACTIONS(251), 1, + [93298] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2953), 1, + ACTIONS(5526), 1, + aux_sym__unquoted_in_list_token2, + STATE(2937), 1, sym_comment, - ACTIONS(976), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(978), 34, + ACTIONS(1675), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1663), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -318699,10 +317621,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -318711,19 +317644,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [93546] = 4, + aux_sym__unquoted_in_list_token1, + [93360] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2954), 1, + STATE(2938), 1, sym_comment, - ACTIONS(2447), 6, + ACTIONS(2362), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2449), 43, + ACTIONS(2364), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318767,19 +317701,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93606] = 4, + [93420] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(2939), 1, + sym_comment, + ACTIONS(6029), 3, + sym_raw_string_begin, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6027), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93480] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2955), 1, + STATE(2940), 1, sym_comment, - ACTIONS(2431), 6, + ACTIONS(2312), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2433), 43, + ACTIONS(2314), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318823,19 +317813,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93666] = 4, + [93540] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2956), 1, + STATE(2941), 1, sym_comment, - ACTIONS(1018), 6, + ACTIONS(5056), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1020), 43, + ACTIONS(5054), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318879,19 +317869,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93726] = 4, + [93600] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2957), 1, + STATE(2942), 1, sym_comment, - ACTIONS(2463), 6, + ACTIONS(4973), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2465), 43, + ACTIONS(4971), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318935,19 +317925,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93786] = 4, + [93660] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2958), 1, + STATE(2943), 1, sym_comment, - ACTIONS(2443), 6, + ACTIONS(2326), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2445), 43, + ACTIONS(2328), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -318991,19 +317981,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93846] = 4, + [93720] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2959), 1, + STATE(2944), 1, sym_comment, - ACTIONS(2419), 6, + ACTIONS(1018), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2421), 43, + ACTIONS(1020), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319047,19 +318037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93906] = 4, + [93780] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2960), 1, + STATE(2945), 1, sym_comment, - ACTIONS(2001), 6, + ACTIONS(2338), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2003), 43, + ACTIONS(2340), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319103,75 +318093,132 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [93966] = 4, - ACTIONS(251), 1, + [93840] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2961), 1, + STATE(2946), 1, sym_comment, - ACTIONS(2505), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(2507), 43, + ACTIONS(6033), 3, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + anon_sym_LPAREN2, + sym__entry_separator, + ACTIONS(6031), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93900] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6035), 1, + anon_sym_LBRACK2, + STATE(2947), 1, + sym_comment, + ACTIONS(2284), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2280), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94026] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym__unquoted_in_list_token1, + [93962] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2962), 1, + STATE(2948), 1, sym_comment, - ACTIONS(2435), 6, + ACTIONS(2373), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2437), 43, + ACTIONS(2375), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319215,23 +318262,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94086] = 5, + [94022] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5483), 1, - aux_sym__unquoted_in_list_token2, - STATE(2963), 1, - sym_comment, - ACTIONS(1693), 2, + ACTIONS(6039), 1, + anon_sym_RBRACE, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6043), 1, sym_raw_string_begin, + STATE(2949), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [94088] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(1681), 46, + ACTIONS(6043), 1, + sym_raw_string_begin, + ACTIONS(6045), 1, + anon_sym_RBRACE, + STATE(2950), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -319271,20 +318379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94148] = 4, + aux_sym_unquoted_token1, + [94154] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2964), 1, + STATE(2951), 1, sym_comment, - ACTIONS(976), 6, + ACTIONS(1004), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(978), 43, + ACTIONS(1000), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319328,70 +318436,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94208] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(2965), 1, - sym_comment, - ACTIONS(6048), 3, - sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6046), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94268] = 5, + [94214] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6004), 1, + ACTIONS(6047), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6049), 1, aux_sym__immediate_decimal_token2, - STATE(2966), 1, + STATE(2952), 1, sym_comment, - ACTIONS(1725), 15, + ACTIONS(1731), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -319406,8 +318460,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 33, + ACTIONS(1733), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -319441,19 +318494,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [94330] = 4, + [94278] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2967), 1, + STATE(2953), 1, sym_comment, - ACTIONS(1004), 6, + ACTIONS(1270), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1000), 43, + ACTIONS(1268), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319489,7 +318542,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + sym__newline, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -319497,19 +318550,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94390] = 4, + [94338] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2968), 1, + STATE(2954), 1, sym_comment, - ACTIONS(5053), 6, + ACTIONS(6051), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5051), 43, + ACTIONS(6053), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319553,19 +318606,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94450] = 4, + [94398] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2969), 1, + STATE(2955), 1, sym_comment, - ACTIONS(2451), 6, + ACTIONS(1863), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2453), 43, + ACTIONS(1865), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319609,76 +318662,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94510] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6050), 1, - aux_sym__immediate_decimal_token2, - STATE(2970), 1, - sym_comment, - ACTIONS(1765), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [94572] = 4, + [94458] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2971), 1, + STATE(2956), 1, sym_comment, - ACTIONS(5057), 6, + ACTIONS(4977), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5055), 43, + ACTIONS(4975), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319722,19 +318718,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94632] = 4, + [94518] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(2972), 1, + ACTIONS(5981), 1, + aux_sym__immediate_decimal_token2, + STATE(2957), 1, + sym_comment, + ACTIONS(1605), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [94580] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2958), 1, sym_comment, - ACTIONS(2467), 6, + ACTIONS(964), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2469), 43, + ACTIONS(966), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319778,29 +318831,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94692] = 4, - ACTIONS(3), 1, + [94640] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(2973), 1, + ACTIONS(6055), 1, + sym__newline, + STATE(2959), 2, sym_comment, - ACTIONS(6054), 3, + aux_sym_shebang_repeat1, + ACTIONS(1274), 15, + anon_sym_DOLLAR, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_record_token1, + ACTIONS(1276), 32, sym_raw_string_begin, - anon_sym_LPAREN2, - sym__entry_separator, - ACTIONS(6052), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -319810,21 +318874,12 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -319833,20 +318888,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [94752] = 4, + [94702] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2974), 1, + STATE(2960), 1, sym_comment, - ACTIONS(2471), 6, + ACTIONS(2028), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2473), 43, + ACTIONS(2030), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -319890,78 +318944,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94812] = 7, - ACTIONS(3), 1, + [94762] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6058), 1, - anon_sym_RBRACE, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, - sym_raw_string_begin, - STATE(2975), 1, + STATE(2961), 1, sym_comment, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(6056), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + ACTIONS(1663), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1675), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [94878] = 4, + [94822] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2976), 1, + STATE(2962), 1, sym_comment, - ACTIONS(1933), 6, + ACTIONS(2377), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1935), 43, + ACTIONS(2379), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320005,23 +319056,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [94938] = 5, + [94882] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6064), 1, - anon_sym_LBRACK2, - STATE(2977), 1, - sym_comment, - ACTIONS(2322), 2, - sym_raw_string_begin, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(2318), 46, + ACTIONS(6043), 1, + sym_raw_string_begin, + ACTIONS(6058), 1, + anon_sym_RBRACE, + STATE(2963), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -320061,34 +319114,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [95000] = 11, + aux_sym_unquoted_token1, + [94948] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(6066), 1, - anon_sym_DOT_DOT2, - ACTIONS(6070), 1, - sym_filesize_unit, - ACTIONS(6072), 1, - sym_duration_unit, - STATE(2978), 1, + ACTIONS(6060), 1, + aux_sym__immediate_decimal_token2, + STATE(2964), 1, sym_comment, - STATE(7276), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6068), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, + ACTIONS(1685), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1693), 36, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1687), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -320116,6 +319159,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -320125,132 +319169,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [95074] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2292), 1, - sym_raw_string_begin, - ACTIONS(6074), 1, - sym__entry_separator, - STATE(2979), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2287), 46, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [95136] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(2980), 1, - sym_comment, - ACTIONS(964), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(966), 34, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [95196] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [95010] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2981), 1, + STATE(2965), 1, sym_comment, - ACTIONS(4998), 6, + ACTIONS(2453), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(4996), 43, + ACTIONS(2455), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320294,19 +319228,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95256] = 4, + [95070] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2982), 1, + STATE(2966), 1, sym_comment, - ACTIONS(1957), 6, + ACTIONS(2346), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1959), 43, + ACTIONS(2348), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320350,75 +319284,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95316] = 4, - ACTIONS(251), 1, + [95130] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(2983), 1, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6043), 1, + sym_raw_string_begin, + ACTIONS(6062), 1, + anon_sym_RBRACE, + STATE(2967), 1, sym_comment, - ACTIONS(1937), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1939), 43, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [95196] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6043), 1, sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, + ACTIONS(6064), 1, + anon_sym_RBRACE, + STATE(2968), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95376] = 4, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + aux_sym_unquoted_token1, + [95262] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2984), 1, + STATE(2969), 1, sym_comment, - ACTIONS(2089), 6, + ACTIONS(2453), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2091), 43, + ACTIONS(2455), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320462,19 +319458,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95436] = 4, + [95322] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2985), 1, + STATE(2970), 1, sym_comment, - ACTIONS(2411), 6, + ACTIONS(1879), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2413), 43, + ACTIONS(1881), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320518,20 +319514,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95496] = 7, + [95382] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(6043), 1, sym_raw_string_begin, - ACTIONS(6077), 1, + ACTIONS(6066), 1, anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(2986), 1, + STATE(2971), 1, sym_comment, - ACTIONS(6056), 45, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -320577,20 +319573,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [95562] = 7, + [95448] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(6043), 1, sym_raw_string_begin, - ACTIONS(6079), 1, + ACTIONS(6068), 1, anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(2987), 1, + STATE(2972), 1, sym_comment, - ACTIONS(6056), 45, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -320636,19 +319632,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [95628] = 4, + [95514] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2988), 1, + STATE(2973), 1, sym_comment, - ACTIONS(2337), 6, + ACTIONS(968), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2339), 43, + ACTIONS(970), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320692,19 +319688,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95688] = 4, + [95574] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2989), 1, + STATE(2974), 1, sym_comment, - ACTIONS(2459), 6, + ACTIONS(2381), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2461), 43, + ACTIONS(2383), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320748,43 +319744,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95748] = 6, - ACTIONS(251), 1, + [95634] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6081), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6083), 1, - aux_sym__immediate_decimal_token2, - STATE(2990), 1, - sym_comment, - ACTIONS(1757), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1759), 33, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6043), 1, sym_raw_string_begin, + ACTIONS(6070), 1, + anon_sym_RBRACE, + STATE(2975), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320794,10 +319779,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320806,42 +319802,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95812] = 5, - ACTIONS(251), 1, + aux_sym_unquoted_token1, + [95700] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6085), 1, - anon_sym_QMARK2, - STATE(2991), 1, - sym_comment, - ACTIONS(958), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(960), 33, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6043), 1, sym_raw_string_begin, + ACTIONS(6072), 1, + anon_sym_RBRACE, + STATE(2976), 1, + sym_comment, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -320851,10 +319838,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -320863,19 +319861,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [95874] = 4, + aux_sym_unquoted_token1, + [95766] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2992), 1, + STATE(2977), 1, sym_comment, - ACTIONS(2423), 6, + ACTIONS(2449), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2425), 43, + ACTIONS(2451), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -320919,10 +319918,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95934] = 4, + [95826] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2993), 1, + STATE(2978), 1, sym_comment, ACTIONS(2411), 6, aux_sym_cmd_identifier_token1, @@ -320975,19 +319974,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [95994] = 4, + [95886] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2994), 1, + STATE(2979), 1, sym_comment, - ACTIONS(972), 6, + ACTIONS(2429), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(974), 43, + ACTIONS(2431), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321031,137 +320030,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96054] = 7, - ACTIONS(3), 1, + [95946] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, - sym_raw_string_begin, - ACTIONS(6087), 1, - anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(2995), 1, + STATE(2980), 1, sym_comment, - ACTIONS(6056), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [96120] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(1835), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1837), 43, sym_raw_string_begin, - ACTIONS(6089), 1, - anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(2996), 1, - sym_comment, - ACTIONS(6056), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [96186] = 4, + [96006] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(2997), 1, + STATE(2981), 1, sym_comment, - ACTIONS(5065), 6, + ACTIONS(2407), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5063), 43, + ACTIONS(2409), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321205,71 +320142,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96246] = 5, + [96066] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6091), 1, - anon_sym_QMARK2, - STATE(2998), 1, + STATE(2982), 1, sym_comment, - ACTIONS(952), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(954), 33, + ACTIONS(1968), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1970), 43, sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [96308] = 5, + [96126] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6026), 1, + ACTIONS(6074), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6076), 1, aux_sym__immediate_decimal_token2, - STATE(2999), 1, + STATE(2983), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1597), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -321278,7 +320216,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 40, + ACTIONS(1599), 39, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321290,10 +320229,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -321319,19 +320256,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [96370] = 4, + [96190] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3000), 1, + STATE(2984), 1, sym_comment, - ACTIONS(2403), 6, + ACTIONS(972), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2405), 43, + ACTIONS(974), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321375,19 +320312,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96430] = 4, + [96250] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3001), 1, + STATE(2985), 1, sym_comment, - ACTIONS(2345), 6, + ACTIONS(5052), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2347), 43, + ACTIONS(5050), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321417,92 +320354,33 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token30, aux_sym_cmd_identifier_token31, aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [96490] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, - sym_raw_string_begin, - ACTIONS(6093), 1, - anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3002), 1, - sym_comment, - ACTIONS(6056), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [96556] = 4, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [96310] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3003), 1, + STATE(2986), 1, sym_comment, - ACTIONS(2353), 6, + ACTIONS(2481), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2355), 43, + ACTIONS(2483), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321546,19 +320424,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96616] = 4, + [96370] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3004), 1, + STATE(2987), 1, sym_comment, - ACTIONS(5069), 6, + ACTIONS(2485), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(5067), 43, + ACTIONS(2487), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321602,14 +320480,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96676] = 5, + [96430] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6095), 1, + ACTIONS(5967), 1, aux_sym__immediate_decimal_token2, - STATE(3005), 1, + STATE(2988), 1, + sym_comment, + ACTIONS(1749), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96492] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6078), 1, + anon_sym_DOT, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token2, + STATE(2989), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -321618,7 +320555,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1669), 40, + ACTIONS(1607), 39, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -321630,10 +320568,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -321659,19 +320595,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [96738] = 4, + [96556] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3006), 1, + STATE(2990), 1, sym_comment, - ACTIONS(6097), 6, + ACTIONS(2445), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(6099), 43, + ACTIONS(2447), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321715,20 +320651,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96798] = 7, + [96616] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(6082), 1, + anon_sym_DOT_DOT2, + ACTIONS(6086), 1, + sym_filesize_unit, + ACTIONS(6088), 1, + sym_duration_unit, + STATE(2991), 1, + sym_comment, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6084), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1675), 36, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [96690] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(6043), 1, sym_raw_string_begin, - ACTIONS(6101), 1, + ACTIONS(6090), 1, anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3007), 1, + STATE(2992), 1, sym_comment, - ACTIONS(6056), 45, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -321774,19 +320773,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [96864] = 4, + [96756] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3008), 1, + STATE(2993), 1, sym_comment, - ACTIONS(2349), 6, + ACTIONS(976), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2351), 43, + ACTIONS(978), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321830,19 +320829,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96924] = 4, + [96816] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3009), 1, + STATE(2994), 1, sym_comment, - ACTIONS(1997), 6, + ACTIONS(2342), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1999), 43, + ACTIONS(2344), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -321886,25 +320885,137 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [96984] = 7, - ACTIONS(3), 1, + [96876] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(6092), 1, + anon_sym_QMARK2, + STATE(2995), 1, + sym_comment, + ACTIONS(958), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(960), 33, sym_raw_string_begin, - ACTIONS(6103), 1, - anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3010), 1, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [96938] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6094), 1, + anon_sym_QMARK2, + STATE(2996), 1, sym_comment, - ACTIONS(6056), 45, + ACTIONS(952), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(954), 33, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97000] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5989), 1, + aux_sym__immediate_decimal_token2, + STATE(2997), 1, + sym_comment, + ACTIONS(1751), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1749), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -321944,20 +321055,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [97050] = 4, + aux_sym__unquoted_in_list_token1, + [97062] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3011), 1, + ACTIONS(6096), 1, + aux_sym__immediate_decimal_token2, + STATE(2998), 1, + sym_comment, + ACTIONS(1772), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97124] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(2999), 1, sym_comment, - ACTIONS(2475), 6, + ACTIONS(2334), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2477), 43, + ACTIONS(2336), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322001,77 +321169,131 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97110] = 6, + [97184] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6105), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6107), 1, - aux_sym__immediate_decimal_token2, - STATE(3012), 1, + STATE(3000), 1, sym_comment, - ACTIONS(1595), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [97174] = 4, + ACTIONS(2403), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(2405), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97244] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3013), 1, + STATE(3001), 1, + sym_comment, + ACTIONS(5064), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(5062), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [97304] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3002), 1, sym_comment, - ACTIONS(2439), 6, + ACTIONS(5068), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2441), 43, + ACTIONS(5066), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322115,15 +321337,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97234] = 4, + [97364] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3014), 1, + ACTIONS(6098), 1, + aux_sym__immediate_decimal_token2, + STATE(3003), 1, sym_comment, - ACTIONS(990), 2, + ACTIONS(1774), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(988), 47, + ACTIONS(1772), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322153,7 +321377,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322171,19 +321394,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97294] = 4, + [97426] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3015), 1, + STATE(3004), 1, sym_comment, - ACTIONS(2479), 6, + ACTIONS(1875), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2481), 43, + ACTIONS(1877), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322227,19 +321450,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97354] = 4, + [97486] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3016), 1, + STATE(3005), 1, sym_comment, - ACTIONS(1270), 6, + ACTIONS(964), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(966), 34, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [97546] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3006), 1, + sym_comment, + ACTIONS(2385), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(1268), 43, + ACTIONS(2387), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322275,7 +321554,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token37, aux_sym_cmd_identifier_token39, aux_sym_cmd_identifier_token40, - sym__newline, + anon_sym_DASH_DASH, aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, @@ -322283,20 +321562,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97414] = 7, + [97606] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(6043), 1, sym_raw_string_begin, - ACTIONS(6109), 1, + ACTIONS(6100), 1, anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3017), 1, + STATE(3007), 1, sym_comment, - ACTIONS(6056), 45, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322342,20 +321621,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97480] = 7, + [97672] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(6062), 1, + ACTIONS(6043), 1, sym_raw_string_begin, - ACTIONS(6111), 1, + ACTIONS(6102), 1, anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3018), 1, + STATE(3008), 1, sym_comment, - ACTIONS(6056), 45, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(6037), 45, anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_DOLLAR, @@ -322401,10 +321680,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym_unquoted_token1, - [97546] = 4, + [97738] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3019), 1, + STATE(3009), 1, sym_comment, ACTIONS(986), 2, sym_raw_string_begin, @@ -322457,32 +321736,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [97606] = 7, - ACTIONS(3), 1, + [97798] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, - sym_raw_string_begin, - ACTIONS(6113), 1, - anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3020), 1, + STATE(3010), 1, sym_comment, - ACTIONS(6056), 45, + ACTIONS(968), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(970), 34, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322492,21 +321780,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322515,29 +321792,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [97672] = 4, - ACTIONS(3), 1, + [97858] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3021), 1, + STATE(3011), 1, sym_comment, - ACTIONS(982), 2, + ACTIONS(972), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_DOT2, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(974), 34, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(980), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -322547,22 +321836,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -322571,20 +321848,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [97732] = 4, + [97918] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3022), 1, + STATE(3012), 1, sym_comment, - ACTIONS(2369), 6, + ACTIONS(2461), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2371), 43, + ACTIONS(2463), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322628,19 +321904,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97792] = 4, + [97978] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3023), 1, + STATE(3013), 1, sym_comment, - ACTIONS(2415), 6, + ACTIONS(2322), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2417), 43, + ACTIONS(2324), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -322684,16 +321960,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [97852] = 6, + [98038] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6115), 1, - anon_sym_DOT, - ACTIONS(6117), 1, + ACTIONS(5862), 1, aux_sym__immediate_decimal_token2, - STATE(3024), 1, + ACTIONS(6104), 1, + anon_sym_DOT, + STATE(3014), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1605), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -322701,9 +321977,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 39, - ts_builtin_sym_end, + ACTIONS(1607), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -322715,8 +321989,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -322729,7 +322006,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -322742,129 +322018,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [97916] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3025), 1, - sym_comment, - ACTIONS(1973), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1975), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [97976] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3026), 1, - sym_comment, - ACTIONS(1681), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(1693), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98036] = 5, + [98102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5982), 1, - aux_sym__immediate_decimal_token2, - STATE(3027), 1, + STATE(3015), 1, sym_comment, - ACTIONS(1727), 2, + ACTIONS(990), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1725), 46, + ACTIONS(988), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -322894,6 +322056,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -322911,188 +322074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98098] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3028), 1, - sym_comment, - ACTIONS(968), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(970), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98158] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, - sym_raw_string_begin, - ACTIONS(6119), 1, - anon_sym_RBRACE, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3029), 1, - sym_comment, - ACTIONS(6056), 45, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym__, - anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [98224] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3030), 1, - sym_comment, - ACTIONS(964), 6, - aux_sym_cmd_identifier_token1, - aux_sym_cmd_identifier_token9, - aux_sym_cmd_identifier_token13, - aux_sym_cmd_identifier_token15, - aux_sym_cmd_identifier_token34, - aux_sym_cmd_identifier_token38, - ACTIONS(966), 43, - sym_raw_string_begin, - aux_sym_cmd_identifier_token2, - aux_sym_cmd_identifier_token3, - aux_sym_cmd_identifier_token4, - aux_sym_cmd_identifier_token5, - aux_sym_cmd_identifier_token6, - aux_sym_cmd_identifier_token7, - aux_sym_cmd_identifier_token8, - aux_sym_cmd_identifier_token10, - aux_sym_cmd_identifier_token11, - aux_sym_cmd_identifier_token12, - aux_sym_cmd_identifier_token14, - aux_sym_cmd_identifier_token16, - aux_sym_cmd_identifier_token17, - aux_sym_cmd_identifier_token18, - aux_sym_cmd_identifier_token19, - aux_sym_cmd_identifier_token20, - aux_sym_cmd_identifier_token21, - aux_sym_cmd_identifier_token22, - aux_sym_cmd_identifier_token23, - aux_sym_cmd_identifier_token24, - aux_sym_cmd_identifier_token25, - aux_sym_cmd_identifier_token26, - aux_sym_cmd_identifier_token27, - aux_sym_cmd_identifier_token28, - aux_sym_cmd_identifier_token29, - aux_sym_cmd_identifier_token30, - aux_sym_cmd_identifier_token31, - aux_sym_cmd_identifier_token32, - aux_sym_cmd_identifier_token33, - aux_sym_cmd_identifier_token35, - aux_sym_cmd_identifier_token36, - aux_sym_cmd_identifier_token37, - aux_sym_cmd_identifier_token39, - aux_sym_cmd_identifier_token40, - anon_sym_DASH_DASH, - aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [98284] = 5, + [98162] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6121), 1, - aux_sym__immediate_decimal_token2, - STATE(3031), 1, + STATE(3016), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(982), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1765), 46, + ACTIONS(980), 47, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323122,6 +322112,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323139,19 +322130,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98346] = 4, + [98222] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3032), 1, + STATE(3017), 1, sym_comment, - ACTIONS(2009), 6, + ACTIONS(1871), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2011), 43, + ACTIONS(1873), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323195,18 +322186,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98406] = 4, + [98282] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3033), 1, + ACTIONS(6106), 1, + anon_sym_DOT, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + STATE(3018), 1, sym_comment, - ACTIONS(968), 15, + ACTIONS(1749), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323216,7 +322210,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(970), 34, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323224,7 +322218,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -323251,21 +322244,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, - [98466] = 5, + [98346] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6123), 1, - sym__newline, - STATE(3034), 2, + STATE(3019), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1274), 15, - anon_sym_DOLLAR, + ACTIONS(976), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323274,12 +322264,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_record_token1, - ACTIONS(1276), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(978), 34, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, @@ -323298,8 +322292,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323308,19 +322300,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98528] = 4, + [98406] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3035), 1, + STATE(3020), 1, sym_comment, - ACTIONS(2407), 6, + ACTIONS(1847), 6, aux_sym_cmd_identifier_token1, aux_sym_cmd_identifier_token9, aux_sym_cmd_identifier_token13, aux_sym_cmd_identifier_token15, aux_sym_cmd_identifier_token34, aux_sym_cmd_identifier_token38, - ACTIONS(2409), 43, + ACTIONS(1849), 43, sym_raw_string_begin, aux_sym_cmd_identifier_token2, aux_sym_cmd_identifier_token3, @@ -323364,21 +322356,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [98588] = 4, + [98466] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3036), 1, - sym_comment, - ACTIONS(2011), 2, + ACTIONS(2371), 1, sym_raw_string_begin, + ACTIONS(6110), 1, sym__entry_separator, - ACTIONS(2009), 46, + STATE(3021), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2366), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -323418,16 +322412,72 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [98647] = 4, + aux_sym_unquoted_token1, + [98528] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3022), 1, + sym_comment, + ACTIONS(1843), 6, + aux_sym_cmd_identifier_token1, + aux_sym_cmd_identifier_token9, + aux_sym_cmd_identifier_token13, + aux_sym_cmd_identifier_token15, + aux_sym_cmd_identifier_token34, + aux_sym_cmd_identifier_token38, + ACTIONS(1845), 43, + sym_raw_string_begin, + aux_sym_cmd_identifier_token2, + aux_sym_cmd_identifier_token3, + aux_sym_cmd_identifier_token4, + aux_sym_cmd_identifier_token5, + aux_sym_cmd_identifier_token6, + aux_sym_cmd_identifier_token7, + aux_sym_cmd_identifier_token8, + aux_sym_cmd_identifier_token10, + aux_sym_cmd_identifier_token11, + aux_sym_cmd_identifier_token12, + aux_sym_cmd_identifier_token14, + aux_sym_cmd_identifier_token16, + aux_sym_cmd_identifier_token17, + aux_sym_cmd_identifier_token18, + aux_sym_cmd_identifier_token19, + aux_sym_cmd_identifier_token20, + aux_sym_cmd_identifier_token21, + aux_sym_cmd_identifier_token22, + aux_sym_cmd_identifier_token23, + aux_sym_cmd_identifier_token24, + aux_sym_cmd_identifier_token25, + aux_sym_cmd_identifier_token26, + aux_sym_cmd_identifier_token27, + aux_sym_cmd_identifier_token28, + aux_sym_cmd_identifier_token29, + aux_sym_cmd_identifier_token30, + aux_sym_cmd_identifier_token31, + aux_sym_cmd_identifier_token32, + aux_sym_cmd_identifier_token33, + aux_sym_cmd_identifier_token35, + aux_sym_cmd_identifier_token36, + aux_sym_cmd_identifier_token37, + aux_sym_cmd_identifier_token39, + aux_sym_cmd_identifier_token40, + anon_sym_DASH_DASH, + aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [98588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3037), 1, + STATE(3023), 1, sym_comment, - ACTIONS(2481), 2, + ACTIONS(1774), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2479), 46, + ACTIONS(1772), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323474,40 +322524,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98706] = 4, - ACTIONS(251), 1, + [98647] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3038), 1, + STATE(3024), 1, sym_comment, - ACTIONS(1861), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1863), 33, + ACTIONS(2340), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2338), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323517,10 +322555,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323529,18 +322578,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [98765] = 4, + aux_sym__unquoted_in_list_token1, + [98706] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3039), 1, + ACTIONS(6113), 1, + anon_sym_LBRACK2, + STATE(3025), 1, sym_comment, - ACTIONS(988), 15, + ACTIONS(2280), 15, + anon_sym_LBRACK, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, - anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323550,9 +322602,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(990), 33, + ACTIONS(2284), 32, sym_raw_string_begin, - anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -323584,15 +322635,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, - [98824] = 4, + [98767] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3040), 1, + STATE(3026), 1, sym_comment, - ACTIONS(2118), 2, + ACTIONS(2443), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2116), 46, + ACTIONS(2441), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323639,44 +322690,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98883] = 4, - ACTIONS(3), 1, + [98826] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3041), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + STATE(3027), 1, sym_comment, - ACTIONS(2150), 2, - sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2144), 46, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, + ACTIONS(1805), 14, anon_sym_DOT_DOT, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, aux_sym__val_number_decimal_token1, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323685,37 +322711,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [98942] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3042), 1, - sym_comment, - ACTIONS(2158), 2, + ACTIONS(1813), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2152), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323725,21 +322734,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323748,86 +322746,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [99001] = 6, + [98887] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6126), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6128), 1, - aux_sym__immediate_decimal_token2, - STATE(3043), 1, - sym_comment, - ACTIONS(1757), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [99064] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3044), 1, + STATE(3028), 1, sym_comment, - ACTIONS(2166), 2, + ACTIONS(1731), 15, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2160), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -323837,21 +322789,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -323860,16 +322801,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, - aux_sym__unquoted_in_list_token1, - [99123] = 4, + [98946] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3045), 1, + STATE(3029), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(2053), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1681), 46, + ACTIONS(2047), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -323916,19 +322856,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99182] = 5, + [99005] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - STATE(3046), 1, + STATE(3030), 1, sym_comment, - ACTIONS(1786), 14, + ACTIONS(984), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -323938,7 +322877,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1794), 33, + ACTIONS(986), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -323972,25 +322911,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99243] = 5, + [99064] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym__unquoted_in_list_token4, - STATE(3047), 1, + STATE(3031), 1, sym_comment, - ACTIONS(5908), 9, + ACTIONS(2086), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2080), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(5903), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324011,6 +322946,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324028,19 +322966,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99304] = 6, + [99123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(5893), 1, - sym_raw_string_begin, - STATE(3048), 1, + STATE(3032), 1, sym_comment, - ACTIONS(5883), 45, + ACTIONS(2037), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2035), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -324085,19 +323021,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99367] = 6, + [99182] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - sym__entry_separator, - ACTIONS(5905), 1, - anon_sym_RBRACK, - ACTIONS(5908), 1, - sym_raw_string_begin, - STATE(3049), 1, + STATE(3033), 1, sym_comment, - ACTIONS(5903), 45, + ACTIONS(2078), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2072), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -324142,15 +323076,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99430] = 4, + [99241] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3050), 1, + STATE(3034), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(1751), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2407), 46, + ACTIONS(1749), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324197,15 +323131,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99489] = 4, + [99300] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3051), 1, + STATE(3035), 1, sym_comment, - ACTIONS(2417), 2, + ACTIONS(2065), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2415), 46, + ACTIONS(2059), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324252,15 +323186,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99548] = 4, + [99359] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6080), 1, + aux_sym__immediate_decimal_token2, + STATE(3036), 1, + sym_comment, + ACTIONS(1605), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [99420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3052), 1, + STATE(3037), 1, sym_comment, - ACTIONS(2343), 2, + ACTIONS(1970), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2341), 46, + ACTIONS(1968), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324307,25 +323297,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99607] = 5, + [99479] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, - STATE(3053), 1, + STATE(3038), 1, sym_comment, - ACTIONS(2233), 9, + ACTIONS(2041), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2039), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2229), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324346,6 +323332,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324363,19 +323352,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99668] = 6, + [99538] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, - ACTIONS(6132), 1, - anon_sym_RBRACK, - ACTIONS(6135), 1, - sym_raw_string_begin, - STATE(3054), 1, + STATE(3039), 1, sym_comment, - ACTIONS(6130), 45, + ACTIONS(2344), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2342), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -324420,19 +323407,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [99731] = 5, + [99597] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - STATE(3055), 1, + STATE(3040), 1, sym_comment, - ACTIONS(2184), 14, + ACTIONS(988), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324442,7 +323428,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2186), 33, + ACTIONS(990), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -324476,20 +323462,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, - [99792] = 5, + [99656] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6137), 1, - anon_sym_LBRACK2, - STATE(3056), 1, + STATE(3041), 1, sym_comment, - ACTIONS(2318), 15, - anon_sym_LBRACK, + ACTIONS(980), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, anon_sym_0o, anon_sym_0x, + anon_sym_DOT2, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324499,8 +323483,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2322), 32, + ACTIONS(982), 33, sym_raw_string_begin, + anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, @@ -324532,19 +323517,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99853] = 5, - ACTIONS(251), 1, + [99715] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - STATE(3057), 1, + STATE(3042), 1, sym_comment, - ACTIONS(1865), 14, + ACTIONS(2348), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2346), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324553,20 +323563,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1873), 33, + [99774] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3043), 1, + sym_comment, + ACTIONS(1837), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1835), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324576,10 +323603,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324588,19 +323626,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, - [99914] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [99833] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token2, - STATE(3058), 1, + STATE(3044), 1, sym_comment, - ACTIONS(1681), 14, + ACTIONS(1845), 2, + sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1843), 46, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, aux_sym__val_number_decimal_token1, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, anon_sym_0b, anon_sym_0o, anon_sym_0x, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324609,20 +323673,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1693), 33, + [99892] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3045), 1, + sym_comment, + ACTIONS(1849), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1847), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324632,10 +323713,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324644,15 +323736,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [99975] = 4, + aux_sym__unquoted_in_list_token1, + [99951] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3059), 1, + STATE(3046), 1, sym_comment, - ACTIONS(2359), 2, + ACTIONS(2352), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2357), 46, + ACTIONS(2350), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324699,14 +323792,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100034] = 5, + [100010] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6042), 1, + ACTIONS(6115), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6117), 1, aux_sym__immediate_decimal_token2, - STATE(3060), 1, + STATE(3047), 1, sym_comment, - ACTIONS(1725), 14, + ACTIONS(1731), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [100073] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3048), 1, + sym_comment, + ACTIONS(1270), 15, + anon_sym_DOLLAR, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -324720,14 +323869,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1727), 33, + aux_sym__unquoted_in_record_token1, + ACTIONS(1268), 33, sym_raw_string_begin, + sym__newline, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324747,6 +323894,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_DOLLAR_SQUOTE, + anon_sym_DOLLAR_DQUOTE, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324755,25 +323904,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100095] = 5, + [100132] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(3061), 1, + STATE(3049), 1, sym_comment, - ACTIONS(2241), 9, + ACTIONS(2451), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2449), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2237), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324794,6 +323939,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324811,25 +323959,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100156] = 5, + [100191] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - STATE(3062), 1, + STATE(3050), 1, sym_comment, - ACTIONS(2247), 9, + ACTIONS(1861), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1859), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_LBRACE, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - ACTIONS(2245), 38, anon_sym_DOLLAR, + anon_sym_LBRACE, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -324850,6 +323994,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -324867,28 +324014,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100217] = 4, - ACTIONS(3), 1, + [100250] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3063), 1, + ACTIONS(6108), 1, + aux_sym__immediate_decimal_token2, + STATE(3051), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(1749), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1751), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2361), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -324898,21 +324058,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -324921,16 +324070,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, - aux_sym__unquoted_in_list_token1, - [100276] = 4, + [100311] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3064), 1, + STATE(3052), 1, sym_comment, - ACTIONS(2367), 2, + ACTIONS(2360), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2365), 46, + ACTIONS(2358), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -324977,15 +324125,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100335] = 4, + [100370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3065), 1, + STATE(3053), 1, sym_comment, - ACTIONS(2122), 2, + ACTIONS(2364), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2120), 46, + ACTIONS(2362), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325032,28 +324180,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100394] = 4, - ACTIONS(3), 1, + [100429] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3066), 1, + ACTIONS(6119), 1, + sym__newline, + STATE(3054), 2, sym_comment, - ACTIONS(966), 2, + aux_sym_shebang_repeat1, + ACTIONS(1274), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1276), 31, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(964), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325063,21 +324224,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325086,15 +324236,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [100453] = 5, + [100490] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym__unquoted_in_list_token2, - STATE(3067), 1, + STATE(3055), 1, sym_comment, - ACTIONS(2188), 14, + ACTIONS(1817), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -325109,7 +324256,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2192), 33, + aux_sym__unquoted_in_list_token2, + ACTIONS(1819), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -325143,83 +324291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [100514] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, - ACTIONS(6139), 1, - anon_sym_DOT_DOT2, - ACTIONS(6143), 1, - sym_filesize_unit, - ACTIONS(6145), 1, - sym_duration_unit, - STATE(3068), 1, - sym_comment, - STATE(7290), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6141), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1693), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [100587] = 4, + [100549] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3069), 1, + STATE(3056), 1, sym_comment, - ACTIONS(2485), 2, + ACTIONS(1865), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2483), 46, + ACTIONS(1863), 46, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -325259,16 +324345,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [100646] = 4, + aux_sym__unquoted_in_list_token1, + [100608] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3070), 1, + STATE(3057), 1, sym_comment, - ACTIONS(970), 2, + ACTIONS(2310), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(968), 46, + ACTIONS(2308), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325315,15 +324401,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100705] = 4, + [100667] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3071), 1, + STATE(3058), 1, sym_comment, - ACTIONS(2429), 2, + ACTIONS(1877), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2427), 46, + ACTIONS(1875), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325370,15 +324456,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100764] = 4, + [100726] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3072), 1, + STATE(3059), 1, sym_comment, - ACTIONS(2176), 2, + ACTIONS(1733), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2170), 46, + ACTIONS(1731), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325425,15 +324511,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100823] = 4, + [100785] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3073), 1, + STATE(3060), 1, sym_comment, - ACTIONS(974), 2, + ACTIONS(2375), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(972), 46, + ACTIONS(2373), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325480,152 +324566,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [100882] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3074), 1, - sym_comment, - ACTIONS(1587), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [100941] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6147), 1, - anon_sym_DOT, - ACTIONS(6149), 1, - aux_sym__immediate_decimal_token2, - STATE(3075), 1, - sym_comment, - ACTIONS(1725), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [101004] = 4, - ACTIONS(251), 1, + [100844] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3076), 1, + STATE(3061), 1, sym_comment, - ACTIONS(1725), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 33, + ACTIONS(2379), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2377), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325635,10 +324597,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325647,41 +324620,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101063] = 5, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [100903] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym__unquoted_in_list_token2, - STATE(3077), 1, + STATE(3062), 1, sym_comment, - ACTIONS(2194), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2198), 33, + ACTIONS(1881), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1879), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325691,10 +324652,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325703,40 +324675,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101124] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [100962] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3078), 1, + STATE(3063), 1, sym_comment, - ACTIONS(984), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(986), 33, + ACTIONS(2383), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2381), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325746,10 +324707,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325758,95 +324730,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101183] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3079), 1, - sym_comment, - ACTIONS(1595), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101242] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_in_list_token1, + [101021] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3080), 1, + STATE(3064), 1, sym_comment, - ACTIONS(980), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_DOT2, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(982), 33, + ACTIONS(2387), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2385), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -325856,10 +324762,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -325868,15 +324785,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [101301] = 4, + aux_sym__unquoted_in_list_token1, + [101080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3081), 1, + STATE(3065), 1, sym_comment, - ACTIONS(978), 2, + ACTIONS(1675), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(976), 46, + ACTIONS(1663), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -325923,67 +324841,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101360] = 4, + [101139] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3082), 1, - sym_comment, - ACTIONS(1667), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1669), 40, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101419] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3083), 1, + STATE(3066), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -325992,7 +324855,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1735), 40, + ACTIONS(1607), 40, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -326033,71 +324896,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [101478] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6117), 1, - aux_sym__immediate_decimal_token2, - STATE(3084), 1, - sym_comment, - ACTIONS(1587), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [101539] = 4, + [101198] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3085), 1, + STATE(3067), 1, sym_comment, - ACTIONS(2375), 2, + ACTIONS(2314), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2373), 46, + ACTIONS(2312), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326144,12 +324951,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101598] = 4, + [101257] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2186), 1, + aux_sym__unquoted_in_list_token2, + STATE(3068), 1, + sym_comment, + ACTIONS(2180), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2184), 33, + sym_raw_string_begin, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_LPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [101318] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3086), 1, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token4, + STATE(3069), 1, sym_comment, - ACTIONS(2267), 9, + ACTIONS(2230), 9, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326159,7 +325024,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - ACTIONS(2265), 39, + ACTIONS(2226), 38, anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, @@ -326198,16 +325063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token4, - [101657] = 4, + [101379] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3087), 1, + STATE(3070), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(1819), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2377), 46, + ACTIONS(1817), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326254,16 +325118,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101716] = 5, + [101438] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6151), 1, - sym__newline, - STATE(3088), 2, + STATE(3071), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1274), 15, - anon_sym__, + ACTIONS(1772), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326277,11 +325137,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1276), 31, + aux_sym__unquoted_in_list_token1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 33, sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -326310,15 +325173,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, - [101777] = 4, + [101497] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3089), 1, + STATE(3072), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(2306), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2381), 46, + ACTIONS(2304), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326365,23 +325228,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101836] = 6, + [101556] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6062), 1, - sym_raw_string_begin, - STATE(2979), 1, - aux_sym__multiple_types_repeat1, - STATE(3090), 1, + ACTIONS(2198), 1, + aux_sym__unquoted_in_list_token4, + STATE(3073), 1, sym_comment, - ACTIONS(6056), 45, + ACTIONS(2196), 9, + sym_raw_string_begin, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_DOLLAR, + anon_sym_COMMA, anon_sym_LBRACE, - anon_sym__, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2192), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326402,9 +325267,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326421,22 +325283,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym_unquoted_token1, - [101899] = 4, + aux_sym__unquoted_in_list_token1, + [101617] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3091), 1, + ACTIONS(2198), 1, + aux_sym__unquoted_in_list_token4, + STATE(3074), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2202), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2385), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2200), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -326457,9 +325323,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -326477,15 +325340,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [101958] = 4, + [101678] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3092), 1, + STATE(3075), 1, sym_comment, - ACTIONS(2441), 2, + ACTIONS(2427), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2439), 46, + ACTIONS(2425), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326532,71 +325395,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102017] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6154), 1, - aux_sym__immediate_decimal_token2, - STATE(3093), 1, - sym_comment, - ACTIONS(1667), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1669), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [102078] = 4, + [101737] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3094), 1, + STATE(3076), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2435), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2389), 46, + ACTIONS(2433), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326643,15 +325450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102137] = 4, + [101796] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3095), 1, + STATE(3077), 1, sym_comment, - ACTIONS(2395), 2, + ACTIONS(2459), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2393), 46, + ACTIONS(2457), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326698,15 +325505,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102196] = 4, + [101855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3096), 1, + STATE(3078), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2439), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2397), 46, + ACTIONS(2437), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326753,70 +325560,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102255] = 4, + [101914] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3097), 1, + STATE(3079), 1, sym_comment, - ACTIONS(1270), 15, - anon_sym_DOLLAR, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_record_token1, - ACTIONS(1268), 33, - sym_raw_string_begin, + ACTIONS(1597), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1599), 40, sym__newline, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_DOLLAR_SQUOTE, - anon_sym_DOLLAR_DQUOTE, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102314] = 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_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [101973] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3098), 1, + STATE(3080), 1, sym_comment, - ACTIONS(2445), 2, + ACTIONS(2463), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2443), 46, + ACTIONS(2461), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326863,15 +325670,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102373] = 4, + [102032] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3099), 1, + STATE(3081), 1, sym_comment, - ACTIONS(1020), 2, + ACTIONS(2391), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1018), 46, + ACTIONS(2389), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -326918,12 +325725,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102432] = 4, + [102091] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3100), 1, + STATE(3082), 1, sym_comment, - ACTIONS(1757), 15, + ACTIONS(1749), 15, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -326939,7 +325746,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 33, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -326973,15 +325780,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, - [102491] = 4, + [102150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3101), 1, + STATE(3083), 1, sym_comment, - ACTIONS(1727), 2, + ACTIONS(966), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1725), 46, + ACTIONS(964), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327028,21 +325835,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102550] = 4, + [102209] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3102), 1, + ACTIONS(2210), 1, + aux_sym__unquoted_in_list_token4, + STATE(3084), 1, sym_comment, - ACTIONS(1959), 2, + ACTIONS(5856), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1957), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(5847), 38, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327063,9 +325874,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327083,70 +325891,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102609] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3103), 1, - sym_comment, - ACTIONS(1765), 15, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 33, - sym_raw_string_begin, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_LPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - anon_sym_null, - anon_sym_true, - anon_sym_false, - aux_sym__val_number_decimal_token2, - aux_sym__val_number_decimal_token3, - aux_sym__val_number_decimal_token4, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [102668] = 4, + [102270] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3104), 1, + STATE(3085), 1, sym_comment, - ACTIONS(2449), 2, + ACTIONS(2467), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2447), 46, + ACTIONS(2465), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327193,15 +325946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102727] = 4, + [102329] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3105), 1, + STATE(3086), 1, sym_comment, - ACTIONS(2453), 2, + ACTIONS(970), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2451), 46, + ACTIONS(968), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327248,15 +326001,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102786] = 4, + [102388] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3106), 1, + STATE(3087), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(974), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1973), 46, + ACTIONS(972), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327303,15 +326056,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102845] = 4, + [102447] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3088), 1, + sym_comment, + ACTIONS(1685), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1687), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [102506] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3107), 1, + STATE(3089), 1, sym_comment, - ACTIONS(1983), 2, + ACTIONS(978), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1981), 46, + ACTIONS(976), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327358,21 +326166,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [102904] = 4, + [102565] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3108), 1, - sym_comment, - ACTIONS(1987), 2, - sym_raw_string_begin, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(1985), 46, + ACTIONS(6043), 1, + sym_raw_string_begin, + STATE(3021), 1, + aux_sym__multiple_types_repeat1, + STATE(3090), 1, + sym_comment, + ACTIONS(6037), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327412,29 +326222,153 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [102963] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [102628] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3109), 1, + STATE(3091), 1, + sym_comment, + ACTIONS(1727), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1729), 40, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [102687] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6122), 1, + aux_sym__immediate_decimal_token2, + STATE(3092), 1, sym_comment, - ACTIONS(2507), 2, + ACTIONS(1685), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1687), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [102748] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1591), 1, + aux_sym__unquoted_in_list_token2, + STATE(3093), 1, + sym_comment, + ACTIONS(2170), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2174), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2505), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327444,21 +326378,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327467,18 +326390,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103022] = 4, + [102809] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3110), 1, - sym_comment, - ACTIONS(1999), 2, - sym_raw_string_begin, + ACTIONS(1873), 1, sym__entry_separator, - ACTIONS(1997), 46, - anon_sym_LBRACK, + ACTIONS(6126), 1, anon_sym_RBRACK, + ACTIONS(6129), 1, + sym_raw_string_begin, + STATE(3094), 1, + sym_comment, + ACTIONS(6124), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -327523,21 +326447,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103081] = 4, + [102872] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3111), 1, + STATE(3095), 1, sym_comment, - ACTIONS(1759), 2, + ACTIONS(2491), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1757), 46, + ACTIONS(2489), 46, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym__, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327577,29 +326501,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, - aux_sym__unquoted_in_list_token1, - [103140] = 4, - ACTIONS(3), 1, + aux_sym_unquoted_token1, + [102931] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3112), 1, + ACTIONS(6131), 1, + aux_sym__immediate_decimal_token2, + STATE(3096), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(1772), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1774), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(1765), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327609,21 +326546,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327632,16 +326558,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, - aux_sym__unquoted_in_list_token1, - [103199] = 4, + [102992] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3113), 1, + STATE(3097), 1, sym_comment, - ACTIONS(1863), 2, + ACTIONS(2302), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(1861), 46, + ACTIONS(2300), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327688,21 +326613,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103258] = 4, + [103051] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3114), 1, + STATE(3098), 1, sym_comment, - ACTIONS(2461), 2, + ACTIONS(2218), 9, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2459), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + ACTIONS(2216), 39, + anon_sym_DOLLAR, anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, @@ -327723,9 +326650,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_0o, anon_sym_0x, sym_val_date, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -327743,28 +326667,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103317] = 4, - ACTIONS(3), 1, + aux_sym__unquoted_in_list_token4, + [103110] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3115), 1, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + STATE(3099), 1, sym_comment, - ACTIONS(2465), 2, + ACTIONS(2188), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(2190), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2463), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327774,21 +326712,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327797,29 +326724,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103376] = 4, - ACTIONS(3), 1, + [103171] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3116), 1, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + STATE(3100), 1, sym_comment, - ACTIONS(2003), 2, + ACTIONS(1793), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1801), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2001), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327829,21 +326768,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327852,29 +326780,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103435] = 4, - ACTIONS(3), 1, + [103232] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3117), 1, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token2, + STATE(3101), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(1663), 14, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym__unquoted_in_list_token1, + ACTIONS(1675), 33, sym_raw_string_begin, - sym__entry_separator, - ACTIONS(2467), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, - anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, - aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -327884,21 +326824,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -327907,16 +326836,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - aux_sym__unquoted_in_list_token1, - [103494] = 4, + [103293] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, + ACTIONS(6133), 1, + anon_sym_DOT_DOT2, + ACTIONS(6137), 1, + sym_filesize_unit, + ACTIONS(6139), 1, + sym_duration_unit, + STATE(3102), 1, + sym_comment, + STATE(7346), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6135), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1675), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [103366] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3118), 1, + STATE(3103), 1, sym_comment, - ACTIONS(2473), 2, + ACTIONS(2336), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2471), 46, + ACTIONS(2334), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, @@ -327963,17 +326953,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103553] = 4, + [103425] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3119), 1, - sym_comment, - ACTIONS(2091), 2, - sym_raw_string_begin, + ACTIONS(5944), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, sym__entry_separator, - ACTIONS(2089), 46, + ACTIONS(5948), 1, + sym_raw_string_begin, + STATE(3104), 1, + sym_comment, + ACTIONS(5942), 45, anon_sym_LBRACK, - anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -328018,17 +327010,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103612] = 4, + [103488] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3120), 1, - sym_comment, - ACTIONS(2477), 2, - sym_raw_string_begin, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(2475), 46, - anon_sym_LBRACK, + ACTIONS(5849), 1, anon_sym_RBRACK, + ACTIONS(5856), 1, + sym_raw_string_begin, + STATE(3105), 1, + sym_comment, + ACTIONS(5847), 45, + anon_sym_LBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, @@ -328073,41 +327067,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, aux_sym__unquoted_in_list_token1, - [103671] = 5, - ACTIONS(251), 1, + [103551] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6156), 1, - aux_sym__immediate_decimal_token2, - STATE(3121), 1, + STATE(3106), 1, sym_comment, - ACTIONS(1765), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(1020), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(1018), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328117,10 +327098,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328129,39 +327121,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, - [103732] = 4, + aux_sym__unquoted_in_list_token1, + [103610] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3122), 1, + ACTIONS(6141), 1, + anon_sym_DOT, + ACTIONS(6143), 1, + aux_sym__immediate_decimal_token2, + STATE(3107), 1, sym_comment, - ACTIONS(2459), 14, - anon_sym_DOT_DOT, - aux_sym__val_number_decimal_token1, - anon_sym_0b, - anon_sym_0o, - anon_sym_0x, - anon_sym_err_GT, - anon_sym_out_GT, - anon_sym_e_GT, - anon_sym_o_GT, - anon_sym_err_PLUSout_GT, - anon_sym_out_PLUSerr_GT, - anon_sym_o_PLUSe_GT, - anon_sym_e_PLUSo_GT, - aux_sym__unquoted_in_list_token1, - ACTIONS(2461), 33, + ACTIONS(1749), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [103673] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3108), 1, + sym_comment, + ACTIONS(2332), 2, sym_raw_string_begin, + sym__entry_separator, + ACTIONS(2330), 46, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, + anon_sym_DOT_DOT, anon_sym_DOT_DOT_EQ, anon_sym_DOT_DOT_LT, anon_sym_null, anon_sym_true, anon_sym_false, + aux_sym__val_number_decimal_token1, aux_sym__val_number_decimal_token2, aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, @@ -328171,10 +327210,21 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token4, aux_sym__val_number_token5, aux_sym__val_number_token6, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, sym_val_date, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -328183,12 +327233,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103790] = 4, + aux_sym__unquoted_in_list_token1, + [103732] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3123), 1, + STATE(3109), 1, sym_comment, - ACTIONS(6160), 14, + ACTIONS(1749), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328203,7 +327254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6158), 33, + ACTIONS(1751), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328237,70 +327288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103848] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3031), 1, - anon_sym_DOT_DOT2, - ACTIONS(6162), 1, - sym_filesize_unit, - ACTIONS(6164), 1, - sym_duration_unit, - STATE(3124), 1, - sym_comment, - ACTIONS(3033), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1693), 37, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [103914] = 4, + [103790] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3125), 1, + STATE(3110), 1, sym_comment, - ACTIONS(972), 14, + ACTIONS(2035), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328315,7 +327308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(974), 33, + ACTIONS(2037), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328349,12 +327342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [103972] = 4, + [103848] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3126), 1, + STATE(3111), 1, sym_comment, - ACTIONS(2365), 14, + ACTIONS(2342), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328369,7 +327362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2367), 33, + ACTIONS(2344), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328403,12 +327396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104030] = 4, + [103906] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3127), 1, + STATE(3112), 1, sym_comment, - ACTIONS(1861), 14, + ACTIONS(2047), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328423,7 +327416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1863), 33, + ACTIONS(2053), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328457,67 +327450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104088] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6166), 1, - aux_sym__immediate_decimal_token2, - STATE(3128), 1, - sym_comment, - ACTIONS(1765), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104148] = 4, + [103964] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3129), 1, + STATE(3113), 1, sym_comment, - ACTIONS(2427), 14, + ACTIONS(1968), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328532,7 +327470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2429), 33, + ACTIONS(1970), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328566,68 +327504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104206] = 6, + [104022] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6168), 1, - anon_sym_DOT, - ACTIONS(6170), 1, - aux_sym__immediate_decimal_token2, - STATE(3130), 1, - sym_comment, - ACTIONS(1725), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [104268] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3131), 1, + STATE(3114), 1, sym_comment, - ACTIONS(2505), 14, + ACTIONS(2080), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328642,7 +327524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2507), 33, + ACTIONS(2086), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328676,12 +327558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104326] = 4, + [104080] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3132), 1, + STATE(3115), 1, sym_comment, - ACTIONS(2451), 14, + ACTIONS(1843), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328696,7 +327578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2453), 33, + ACTIONS(1845), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328730,12 +327612,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104384] = 4, + [104138] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3133), 1, + ACTIONS(6145), 1, + aux_sym__immediate_decimal_token2, + STATE(3116), 1, sym_comment, - ACTIONS(1997), 14, + ACTIONS(1772), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [104198] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3117), 1, + sym_comment, + ACTIONS(2072), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328750,7 +327687,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1999), 33, + ACTIONS(2078), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328784,12 +327721,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104442] = 4, + [104256] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3134), 1, + ACTIONS(6147), 1, + anon_sym_COMMA, + STATE(3118), 1, sym_comment, - ACTIONS(5883), 14, + ACTIONS(5969), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328804,12 +327743,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5893), 33, + ACTIONS(5973), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -328838,12 +327776,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104500] = 4, + [104316] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3135), 1, + STATE(3119), 1, sym_comment, - ACTIONS(2443), 14, + ACTIONS(2039), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328858,7 +327796,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2445), 33, + ACTIONS(2041), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328892,12 +327830,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104558] = 4, + [104374] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3136), 1, + STATE(3120), 1, sym_comment, - ACTIONS(2471), 14, + ACTIONS(6027), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328912,7 +327850,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2473), 33, + ACTIONS(6029), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -328946,12 +327884,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104616] = 4, + [104432] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3137), 1, + STATE(3121), 1, sym_comment, - ACTIONS(2393), 14, + ACTIONS(6151), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -328966,7 +327904,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2395), 33, + ACTIONS(6149), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329000,14 +327938,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104674] = 5, + [104490] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6172), 1, - anon_sym_COMMA, - STATE(3138), 1, + STATE(3122), 1, sym_comment, - ACTIONS(6009), 14, + ACTIONS(6155), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329022,11 +327958,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6013), 32, + ACTIONS(6153), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -329055,12 +327992,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104734] = 4, + [104548] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3139), 1, + STATE(3123), 1, sym_comment, - ACTIONS(6176), 14, + ACTIONS(6124), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329075,7 +328012,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6174), 33, + ACTIONS(6129), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329109,12 +328046,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104792] = 4, + [104606] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3140), 1, + STATE(3124), 1, + sym_comment, + ACTIONS(1597), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1599), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [104664] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3125), 1, sym_comment, - ACTIONS(6180), 14, + ACTIONS(2425), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329129,7 +328120,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6178), 33, + ACTIONS(2427), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329163,12 +328154,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104850] = 4, + [104722] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3141), 1, + STATE(3126), 1, sym_comment, - ACTIONS(2361), 14, + ACTIONS(2312), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329183,7 +328174,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2363), 33, + ACTIONS(2314), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329217,12 +328208,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104908] = 4, + [104780] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3142), 1, + STATE(3127), 1, sym_comment, - ACTIONS(2377), 14, + ACTIONS(964), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329237,7 +328228,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2379), 33, + ACTIONS(966), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329271,66 +328262,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [104966] = 4, + [104838] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3143), 1, - sym_comment, - ACTIONS(1587), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1589), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [105024] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3144), 1, + STATE(3128), 1, sym_comment, - ACTIONS(1681), 14, + ACTIONS(2346), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329345,7 +328282,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1693), 33, + ACTIONS(2348), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329379,12 +328316,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105082] = 4, + [104896] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3145), 1, + STATE(3129), 1, sym_comment, - ACTIONS(6184), 14, + ACTIONS(1847), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329399,7 +328336,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6182), 33, + ACTIONS(1849), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329433,12 +328370,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105140] = 4, + [104954] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3146), 1, + STATE(3130), 1, sym_comment, - ACTIONS(5903), 14, + ACTIONS(2457), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329453,7 +328390,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5908), 33, + ACTIONS(2459), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329487,12 +328424,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105198] = 4, + [105012] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3147), 1, + STATE(3131), 1, sym_comment, - ACTIONS(2170), 14, + ACTIONS(968), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329507,7 +328444,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2176), 33, + ACTIONS(970), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329541,12 +328478,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105256] = 4, + [105070] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3148), 1, + STATE(3132), 1, sym_comment, - ACTIONS(2397), 14, + ACTIONS(2465), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329561,7 +328498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2399), 33, + ACTIONS(2467), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329595,66 +328532,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105314] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3149), 1, - sym_comment, - ACTIONS(1595), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [105372] = 4, + [105128] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3150), 1, + STATE(3133), 1, sym_comment, - ACTIONS(2381), 14, + ACTIONS(972), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329669,7 +328552,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2383), 33, + ACTIONS(974), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329703,12 +328586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105430] = 4, + [105186] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3151), 1, + STATE(3134), 1, sym_comment, - ACTIONS(2120), 14, + ACTIONS(6159), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329723,7 +328606,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2122), 33, + ACTIONS(6157), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329757,12 +328640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105488] = 4, + [105244] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3152), 1, + STATE(3135), 1, sym_comment, - ACTIONS(2373), 14, + ACTIONS(2300), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329777,7 +328660,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2375), 33, + ACTIONS(2302), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329811,12 +328694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105546] = 4, + [105302] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3153), 1, + STATE(3136), 1, sym_comment, - ACTIONS(2089), 14, + ACTIONS(2304), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329831,7 +328714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2091), 33, + ACTIONS(2306), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329865,12 +328748,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105604] = 4, + [105360] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3154), 1, + STATE(3137), 1, sym_comment, - ACTIONS(964), 14, + ACTIONS(2308), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329885,7 +328768,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(966), 33, + ACTIONS(2310), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -329919,66 +328802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105662] = 4, + [105418] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3155), 1, - sym_comment, - ACTIONS(1667), 8, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1669), 39, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_duration_unit, - [105720] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3156), 1, + STATE(3138), 1, sym_comment, - ACTIONS(1973), 14, + ACTIONS(6159), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -329993,7 +328822,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1975), 33, + ACTIONS(6157), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330027,12 +328856,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105778] = 4, + [105476] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3157), 1, + STATE(3139), 1, sym_comment, - ACTIONS(2415), 14, + ACTIONS(976), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330047,7 +328876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2417), 33, + ACTIONS(978), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330081,12 +328910,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105836] = 4, + [105534] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3158), 1, + STATE(3140), 1, sym_comment, - ACTIONS(6130), 14, + ACTIONS(2330), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330101,7 +328930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6135), 33, + ACTIONS(2332), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330135,12 +328964,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105894] = 4, + [105592] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3159), 1, + STATE(3141), 1, sym_comment, - ACTIONS(1985), 14, + ACTIONS(6163), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330155,7 +328984,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1987), 33, + ACTIONS(6161), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330189,12 +329018,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [105952] = 4, + [105650] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3160), 1, + STATE(3142), 1, sym_comment, - ACTIONS(2463), 14, + ACTIONS(2389), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330209,7 +329038,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2465), 33, + ACTIONS(2391), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330243,12 +329072,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106010] = 4, + [105708] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3161), 1, + STATE(3143), 1, sym_comment, - ACTIONS(2001), 14, + ACTIONS(1731), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330263,7 +329092,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2003), 33, + ACTIONS(1733), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330297,12 +329126,120 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106068] = 4, + [105766] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3162), 1, + STATE(3144), 1, + sym_comment, + ACTIONS(1685), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1687), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [105824] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3145), 1, sym_comment, - ACTIONS(1957), 14, + ACTIONS(1270), 15, + anon_sym__, + anon_sym_DOT_DOT, + aux_sym__val_number_decimal_token1, + anon_sym_0b, + anon_sym_0o, + anon_sym_0x, + anon_sym_err_GT, + anon_sym_out_GT, + anon_sym_e_GT, + anon_sym_o_GT, + anon_sym_err_PLUSout_GT, + anon_sym_out_PLUSerr_GT, + anon_sym_o_PLUSe_GT, + anon_sym_e_PLUSo_GT, + aux_sym_unquoted_token1, + ACTIONS(1268), 32, + sym_raw_string_begin, + sym__newline, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_DOLLAR, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + anon_sym_null, + anon_sym_true, + anon_sym_false, + aux_sym__val_number_decimal_token2, + aux_sym__val_number_decimal_token3, + aux_sym__val_number_decimal_token4, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + sym_val_date, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [105882] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3146), 1, + sym_comment, + ACTIONS(1663), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330317,7 +329254,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1959), 33, + ACTIONS(1675), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330351,12 +329288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106126] = 4, + [105940] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3163), 1, + STATE(3147), 1, sym_comment, - ACTIONS(6184), 14, + ACTIONS(2350), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330371,7 +329308,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6182), 33, + ACTIONS(2352), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330405,12 +329342,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106184] = 4, + [105998] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3164), 1, + STATE(3148), 1, sym_comment, - ACTIONS(5722), 14, + ACTIONS(1859), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330425,7 +329362,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(5729), 33, + ACTIONS(1861), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330459,12 +329396,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106242] = 4, + [106056] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3165), 1, + STATE(3149), 1, sym_comment, - ACTIONS(2475), 14, + ACTIONS(2358), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330479,7 +329416,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2477), 33, + ACTIONS(2360), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330513,12 +329450,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106300] = 4, + [106114] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3166), 1, + STATE(3150), 1, sym_comment, - ACTIONS(2407), 14, + ACTIONS(2362), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330533,7 +329470,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2409), 33, + ACTIONS(2364), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330567,12 +329504,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106358] = 4, + [106172] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3167), 1, + STATE(3151), 1, sym_comment, - ACTIONS(6046), 14, + ACTIONS(1863), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330587,7 +329524,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6048), 33, + ACTIONS(1865), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330621,12 +329558,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106416] = 4, + [106230] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3168), 1, + STATE(3152), 1, sym_comment, - ACTIONS(6052), 14, + ACTIONS(1772), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330641,7 +329578,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6054), 33, + ACTIONS(1774), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330675,12 +329612,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106474] = 4, + [106288] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3169), 1, + STATE(3153), 1, + sym_comment, + ACTIONS(1727), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1729), 39, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [106346] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3154), 1, sym_comment, - ACTIONS(1725), 14, + ACTIONS(1817), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330695,7 +329686,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1727), 33, + ACTIONS(1819), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330729,12 +329720,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106532] = 4, + [106404] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3170), 1, + STATE(3155), 1, sym_comment, - ACTIONS(2479), 14, + ACTIONS(2449), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330749,7 +329740,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2481), 33, + ACTIONS(2451), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330783,22 +329774,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, - [106590] = 5, + [106462] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6149), 1, - aux_sym__immediate_decimal_token2, - STATE(3171), 1, + ACTIONS(3010), 1, + anon_sym_DOT_DOT2, + ACTIONS(6165), 1, + sym_filesize_unit, + ACTIONS(6167), 1, + sym_duration_unit, + STATE(3156), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(3012), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 39, + ACTIONS(1675), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -330813,6 +329809,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, @@ -330826,7 +329823,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -330836,14 +329832,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, - [106650] = 4, + [106528] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3172), 1, + STATE(3157), 1, sym_comment, - ACTIONS(6188), 14, + ACTIONS(2441), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330858,7 +329852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6186), 33, + ACTIONS(2443), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -330892,68 +329886,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106708] = 6, + [106586] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6190), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6192), 1, - aux_sym__immediate_decimal_token2, - STATE(3173), 1, - sym_comment, - ACTIONS(1757), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [106770] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3174), 1, + STATE(3158), 1, sym_comment, - ACTIONS(1018), 14, + ACTIONS(2433), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -330968,7 +329906,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1020), 33, + ACTIONS(2435), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331002,13 +329940,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106828] = 4, + [106644] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3175), 1, + STATE(3159), 1, sym_comment, - ACTIONS(1270), 15, - anon_sym__, + ACTIONS(1875), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331022,12 +329959,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - aux_sym_unquoted_token1, - ACTIONS(1268), 32, + aux_sym__unquoted_in_list_token1, + ACTIONS(1877), 33, sym_raw_string_begin, - sym__newline, anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_LPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ, @@ -331056,12 +329994,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106886] = 4, + [106702] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3176), 1, + STATE(3160), 1, sym_comment, - ACTIONS(1981), 14, + ACTIONS(2437), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331076,7 +330014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1983), 33, + ACTIONS(2439), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331110,12 +330048,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [106944] = 4, + [106760] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3177), 1, + ACTIONS(6169), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6171), 1, + aux_sym__immediate_decimal_token2, + STATE(3161), 1, + sym_comment, + ACTIONS(1731), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [106822] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3162), 1, sym_comment, - ACTIONS(2144), 14, + ACTIONS(2373), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331130,7 +330124,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2150), 33, + ACTIONS(2375), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331164,12 +330158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107002] = 4, + [106880] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3178), 1, + STATE(3163), 1, sym_comment, - ACTIONS(968), 14, + ACTIONS(1018), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331184,7 +330178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(970), 33, + ACTIONS(1020), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331218,12 +330212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107060] = 4, + [106938] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3179), 1, + STATE(3164), 1, sym_comment, - ACTIONS(2385), 14, + ACTIONS(5743), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331238,7 +330232,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2387), 33, + ACTIONS(5750), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331272,12 +330266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107118] = 4, + [106996] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3180), 1, + STATE(3165), 1, sym_comment, - ACTIONS(2009), 14, + ACTIONS(2461), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331292,7 +330286,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2011), 33, + ACTIONS(2463), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331326,12 +330320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107176] = 4, + [107054] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3181), 1, + STATE(3166), 1, sym_comment, - ACTIONS(2116), 14, + ACTIONS(2377), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331346,7 +330340,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2118), 33, + ACTIONS(2379), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331380,12 +330374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107234] = 4, + [107112] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3182), 1, + STATE(3167), 1, sym_comment, - ACTIONS(1757), 14, + ACTIONS(1879), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331400,7 +330394,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1759), 33, + ACTIONS(1881), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331434,12 +330428,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107292] = 4, + [107170] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3183), 1, + ACTIONS(6173), 1, + anon_sym_DOT, + ACTIONS(6175), 1, + aux_sym__immediate_decimal_token2, + STATE(3168), 1, + sym_comment, + ACTIONS(1749), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [107232] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3169), 1, sym_comment, - ACTIONS(2447), 14, + ACTIONS(5942), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331454,7 +330504,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2449), 33, + ACTIONS(5948), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331488,12 +330538,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [107350] = 4, + [107290] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3184), 1, + STATE(3170), 1, sym_comment, - ACTIONS(2389), 14, + ACTIONS(2381), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331508,7 +330558,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2391), 33, + ACTIONS(2383), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331542,12 +330592,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, + [107348] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6143), 1, + aux_sym__immediate_decimal_token2, + STATE(3171), 1, + sym_comment, + ACTIONS(1749), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 39, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, [107408] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3185), 1, + STATE(3172), 1, sym_comment, - ACTIONS(2160), 14, + ACTIONS(2059), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331562,7 +330667,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2166), 33, + ACTIONS(2065), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331599,9 +330704,9 @@ static const uint16_t ts_small_parse_table[] = { [107466] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3186), 1, + STATE(3173), 1, sym_comment, - ACTIONS(2357), 14, + ACTIONS(2334), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331616,7 +330721,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2359), 33, + ACTIONS(2336), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331653,9 +330758,9 @@ static const uint16_t ts_small_parse_table[] = { [107524] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3187), 1, + STATE(3174), 1, sym_comment, - ACTIONS(2341), 14, + ACTIONS(2385), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331670,7 +330775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2343), 33, + ACTIONS(2387), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331707,9 +330812,9 @@ static const uint16_t ts_small_parse_table[] = { [107582] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3188), 1, + STATE(3175), 1, sym_comment, - ACTIONS(1765), 14, + ACTIONS(2338), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331724,7 +330829,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(1767), 33, + ACTIONS(2340), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331761,9 +330866,9 @@ static const uint16_t ts_small_parse_table[] = { [107640] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3189), 1, + STATE(3176), 1, sym_comment, - ACTIONS(6196), 14, + ACTIONS(6031), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331778,7 +330883,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6194), 33, + ACTIONS(6033), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331815,9 +330920,9 @@ static const uint16_t ts_small_parse_table[] = { [107698] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3190), 1, + STATE(3177), 1, sym_comment, - ACTIONS(2467), 14, + ACTIONS(6179), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331832,7 +330937,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2469), 33, + ACTIONS(6177), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331869,9 +330974,9 @@ static const uint16_t ts_small_parse_table[] = { [107756] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3191), 1, + STATE(3178), 1, sym_comment, - ACTIONS(2152), 14, + ACTIONS(6183), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331886,7 +330991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2158), 33, + ACTIONS(6181), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331923,9 +331028,9 @@ static const uint16_t ts_small_parse_table[] = { [107814] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3192), 1, + STATE(3179), 1, sym_comment, - ACTIONS(976), 14, + ACTIONS(5847), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331940,7 +331045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(978), 33, + ACTIONS(5856), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -331977,9 +331082,9 @@ static const uint16_t ts_small_parse_table[] = { [107872] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3193), 1, + STATE(3180), 1, sym_comment, - ACTIONS(2439), 14, + ACTIONS(1835), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -331994,7 +331099,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(2441), 33, + ACTIONS(1837), 33, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332031,9 +331136,9 @@ static const uint16_t ts_small_parse_table[] = { [107930] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3194), 1, + STATE(3181), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -332042,7 +331147,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1735), 39, + ACTIONS(1607), 39, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -332082,65 +331187,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [107988] = 4, + [107988] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3195), 1, - sym_comment, - ACTIONS(1757), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 39, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [108045] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3196), 1, + ACTIONS(6185), 1, + aux_sym__immediate_decimal_token2, + STATE(3182), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -332148,7 +331202,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 39, + ACTIONS(1774), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332160,10 +331215,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332188,69 +331241,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108102] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(6198), 1, - anon_sym_DOT_DOT2, - STATE(3197), 1, - sym_comment, - ACTIONS(6200), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1873), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108167] = 4, + [108047] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3198), 1, + STATE(3183), 1, sym_comment, - ACTIONS(6204), 14, + ACTIONS(6189), 14, anon_sym_DOT_DOT, aux_sym__val_number_decimal_token1, anon_sym_0b, @@ -332265,7 +331261,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, aux_sym__unquoted_in_list_token1, - ACTIONS(6202), 32, + ACTIONS(6187), 32, sym_raw_string_begin, anon_sym_LBRACK, anon_sym_RBRACK, @@ -332298,71 +331294,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - [108224] = 8, + [108104] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(6206), 1, - anon_sym_DOT_DOT2, - STATE(3199), 1, - sym_comment, - ACTIONS(6208), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1794), 36, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108289] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6170), 1, + ACTIONS(6175), 1, aux_sym__immediate_decimal_token2, - STATE(3200), 1, + STATE(3184), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -332370,7 +331309,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 38, + ACTIONS(1751), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -332409,12 +331348,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108348] = 4, + [108163] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3201), 1, + STATE(3185), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(1731), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -332422,7 +331361,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 39, + ACTIONS(1733), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332462,20 +331401,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108405] = 4, + [108220] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3202), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(6191), 1, + anon_sym_DOT_DOT2, + STATE(3186), 1, sym_comment, - ACTIONS(1861), 7, + ACTIONS(6193), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1863), 39, + ACTIONS(1813), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332503,7 +331449,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -332513,16 +331458,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, - [108462] = 5, + [108285] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6210), 1, - aux_sym__immediate_decimal_token2, - STATE(3203), 1, + STATE(3187), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -332530,8 +331471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 38, - ts_builtin_sym_end, + ACTIONS(1751), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332543,8 +331483,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332569,23 +331511,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108521] = 6, + [108342] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6212), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6214), 1, - aux_sym__immediate_decimal_token2, - STATE(3204), 1, + STATE(3188), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 37, + ACTIONS(1774), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332623,74 +331562,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108581] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6216), 1, - anon_sym_COLON, - ACTIONS(6218), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(3205), 1, - sym_comment, - STATE(6876), 1, - sym_block, - STATE(7340), 1, - sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, - sym__type_annotation, - STATE(7643), 1, - sym__one_type, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [108657] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [108399] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3206), 1, + STATE(3189), 1, sym_comment, - ACTIONS(1861), 7, + ACTIONS(1817), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -332698,8 +331577,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1863), 38, - ts_builtin_sym_end, + ACTIONS(1819), 39, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332711,8 +331589,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332737,84 +331617,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [108713] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(6228), 1, - anon_sym_DOT_DOT2, - STATE(3207), 1, - sym_comment, - ACTIONS(6230), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1794), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [108777] = 8, + [108456] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - ACTIONS(6232), 1, + ACTIONS(6195), 1, anon_sym_DOT_DOT2, - STATE(3208), 1, + STATE(3190), 1, sym_comment, - ACTIONS(6234), 2, + ACTIONS(6197), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 5, + ACTIONS(1793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1873), 35, - ts_builtin_sym_end, + ACTIONS(1801), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -332826,8 +331649,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -332849,37 +331674,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [108841] = 14, + [108521] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3209), 1, + STATE(3191), 1, sym_comment, - STATE(6672), 1, + STATE(6762), 1, sym_block, - STATE(7219), 1, + STATE(7214), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -332911,37 +331736,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [108917] = 14, + [108597] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3210), 1, + STATE(3192), 1, sym_comment, - STATE(6675), 1, + STATE(6297), 1, sym_block, - STATE(7278), 1, + STATE(7329), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -332973,20 +331798,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [108993] = 4, + [108673] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3211), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(6213), 1, + anon_sym_DOT_DOT2, + STATE(3193), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(6215), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 38, + ACTIONS(1801), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -333013,7 +331845,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -333023,74 +331854,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, - [109049] = 4, + [108737] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3212), 1, - sym_comment, - ACTIONS(1757), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(1759), 38, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(1807), 1, anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(6217), 1, + anon_sym_DOT_DOT2, + STATE(3194), 1, + sym_comment, + ACTIONS(6219), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [109105] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3213), 1, - sym_comment, - ACTIONS(1765), 7, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 38, + ACTIONS(1813), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -333117,7 +331901,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -333127,39 +331910,37 @@ 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, - [109161] = 14, + [108801] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3214), 1, + STATE(3195), 1, sym_comment, - STATE(6686), 1, + STATE(7179), 1, sym_block, - STATE(7372), 1, + STATE(7344), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333191,37 +331972,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109237] = 14, + [108877] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3215), 1, + STATE(3196), 1, sym_comment, - STATE(6709), 1, + STATE(6719), 1, sym_block, - STATE(7255), 1, + STATE(7340), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333253,37 +332034,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109313] = 14, + [108953] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3216), 1, + STATE(3197), 1, sym_comment, - STATE(6787), 1, + STATE(6744), 1, sym_block, - STATE(7218), 1, + STATE(7315), 1, sym_returns, - STATE(7392), 1, + STATE(7443), 1, + sym__type_annotation, + STATE(7515), 1, + sym__one_type, + STATE(7560), 1, sym__multiple_types, - STATE(7642), 1, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [109029] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6199), 1, + anon_sym_COLON, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(3198), 1, + sym_comment, + STATE(6124), 1, + sym_block, + STATE(7299), 1, + sym_returns, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333315,23 +332158,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109389] = 6, + [109105] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6236), 1, - anon_sym_DOT, - ACTIONS(6238), 1, - aux_sym__immediate_decimal_token2, - STATE(3217), 1, + STATE(3199), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1817), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 37, + ACTIONS(1819), 38, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333343,10 +332184,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333369,93 +332208,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [109449] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3055), 1, - anon_sym_DOT_DOT2, - ACTIONS(6240), 1, - sym_filesize_unit, - ACTIONS(6242), 1, - sym_duration_unit, - STATE(3218), 1, - sym_comment, - ACTIONS(3057), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1693), 35, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [109513] = 14, + [109161] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3219), 1, + STATE(3200), 1, sym_comment, - STATE(6153), 1, + STATE(6125), 1, sym_block, - STATE(7273), 1, + STATE(7300), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333487,37 +332272,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109589] = 14, + [109237] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3220), 1, + STATE(3201), 1, sym_comment, - STATE(6158), 1, + STATE(6155), 1, sym_block, - STATE(7282), 1, + STATE(7333), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333549,37 +332334,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109665] = 14, + [109313] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3221), 1, + STATE(3202), 1, sym_comment, - STATE(6482), 1, + STATE(6157), 1, sym_block, - STATE(7361), 1, + STATE(7334), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333611,37 +332396,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109741] = 14, + [109389] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3222), 1, + STATE(3203), 1, sym_comment, - STATE(6492), 1, + STATE(6167), 1, sym_block, - STATE(7362), 1, + STATE(7351), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333673,37 +332458,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109817] = 14, + [109465] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3223), 1, + STATE(3204), 1, sym_comment, - STATE(6417), 1, + STATE(6729), 1, sym_block, - STATE(7321), 1, + STATE(7307), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333735,37 +332520,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109893] = 14, + [109541] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3224), 1, + STATE(3205), 1, sym_comment, - STATE(6430), 1, + STATE(7171), 1, sym_block, - STATE(7297), 1, + STATE(7324), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333797,99 +332582,148 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [109969] = 14, + [109617] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, - anon_sym_COLON, - ACTIONS(6218), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(3225), 1, + ACTIONS(6221), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6223), 1, + aux_sym__immediate_decimal_token2, + STATE(3206), 1, sym_comment, - STATE(6115), 1, - sym_block, - STATE(7242), 1, - sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, - sym__type_annotation, - STATE(7643), 1, - sym__one_type, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [110045] = 14, + ACTIONS(1731), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1733), 37, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109677] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_DOT2, + STATE(1403), 1, + aux_sym_cell_path_repeat1, + STATE(1531), 1, + sym_path, + STATE(2067), 1, + sym_cell_path, + STATE(3207), 1, + sym_comment, + ACTIONS(1976), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(6225), 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(1978), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [109743] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3226), 1, + STATE(3208), 1, sym_comment, - STATE(6119), 1, + STATE(6296), 1, sym_block, - STATE(7244), 1, + STATE(7326), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -333921,26 +332755,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110121] = 9, + [109819] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4816), 1, - anon_sym_DOT2, - STATE(1414), 1, - aux_sym_cell_path_repeat1, - STATE(1497), 1, - sym_path, - STATE(2135), 1, - sym_cell_path, - STATE(3227), 1, + STATE(3209), 1, + sym_comment, + ACTIONS(1772), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 38, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [109875] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6228), 1, + anon_sym_DOT, + ACTIONS(6230), 1, + aux_sym__immediate_decimal_token2, + STATE(3210), 1, sym_comment, - ACTIONS(1945), 5, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6246), 13, + aux_sym_unquoted_token2, + ACTIONS(1751), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -333953,10 +332836,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1947), 23, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -333969,6 +332851,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -333978,37 +332861,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110187] = 14, + [109935] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(3228), 1, + STATE(3211), 1, sym_comment, - STATE(6795), 1, + STATE(6169), 1, sym_block, - STATE(7250), 1, + STATE(7355), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334040,37 +332923,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110263] = 14, + [110011] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6216), 1, + ACTIONS(6199), 1, anon_sym_COLON, - ACTIONS(6218), 1, + ACTIONS(6201), 1, anon_sym_LBRACK, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6226), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(3229), 1, + STATE(3212), 1, sym_comment, - STATE(6875), 1, + STATE(6630), 1, sym_block, - STATE(7337), 1, + STATE(7197), 1, sym_returns, - STATE(7392), 1, - sym__multiple_types, - STATE(7642), 1, + STATE(7443), 1, sym__type_annotation, - STATE(7643), 1, + STATE(7515), 1, sym__one_type, - ACTIONS(6222), 2, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -334102,26 +332985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [110339] = 9, + [110087] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5178), 1, - anon_sym_DOT2, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(2462), 1, - sym_cell_path, - STATE(3230), 1, + STATE(3213), 1, sym_comment, - ACTIONS(1945), 5, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(6246), 12, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334134,7 +333011,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(1947), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -334149,6 +333025,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -334158,23 +333035,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110404] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110143] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6249), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6251), 1, - aux_sym__immediate_decimal_token2, - STATE(3231), 1, + ACTIONS(3042), 1, + anon_sym_DOT_DOT2, + ACTIONS(6232), 1, + sym_filesize_unit, + ACTIONS(6234), 1, + sym_duration_unit, + STATE(3214), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(3044), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1675), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [110207] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3215), 1, + sym_comment, + ACTIONS(1731), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 36, + ACTIONS(1733), 38, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334211,24 +333143,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110463] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [110263] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6253), 1, - anon_sym_DOT, - ACTIONS(6255), 1, + ACTIONS(6199), 1, + anon_sym_COLON, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(3216), 1, + sym_comment, + STATE(6743), 1, + sym_block, + STATE(7314), 1, + sym_returns, + STATE(7443), 1, + sym__type_annotation, + STATE(7515), 1, + sym__one_type, + STATE(7560), 1, + sym__multiple_types, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [110339] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6236), 1, aux_sym__immediate_decimal_token2, - STATE(3232), 1, + STATE(3217), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1727), 36, - ts_builtin_sym_end, + ACTIONS(1774), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334240,8 +333233,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334264,21 +333259,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110522] = 5, + [110396] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6238), 1, - aux_sym__immediate_decimal_token2, - STATE(3233), 1, + ACTIONS(5136), 1, + anon_sym_DOT2, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(2463), 1, + sym_cell_path, + STATE(3218), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1976), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 37, + ACTIONS(6225), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334290,10 +333291,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, + ACTIONS(1978), 23, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334306,7 +333306,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -334316,21 +333315,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110579] = 5, + [110461] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6257), 1, + ACTIONS(6230), 1, aux_sym__immediate_decimal_token2, - STATE(3234), 1, + STATE(3219), 1, sym_comment, - ACTIONS(1765), 6, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1767), 37, + ACTIONS(1751), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334368,16 +333367,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110636] = 6, - ACTIONS(3), 1, + [110518] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3235), 1, + ACTIONS(6238), 1, + anon_sym_DOT, + ACTIONS(6240), 1, + aux_sym__immediate_decimal_token2, + STATE(3220), 1, sym_comment, - ACTIONS(2247), 13, + ACTIONS(1749), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1751), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334389,13 +333396,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2245), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334404,35 +333406,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110694] = 4, + [110577] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3236), 1, + ACTIONS(6242), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6244), 1, + aux_sym__immediate_decimal_token2, + STATE(3221), 1, sym_comment, - ACTIONS(1861), 6, + ACTIONS(1731), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1863), 37, + ACTIONS(1733), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334444,10 +333449,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334470,22 +333473,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110748] = 6, + [110636] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(3237), 1, + ACTIONS(6246), 1, + aux_sym__immediate_decimal_token2, + STATE(3222), 1, sym_comment, - ACTIONS(1786), 5, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 36, + aux_sym_unquoted_token2, + ACTIONS(1774), 36, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334497,10 +333500,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334513,6 +333514,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -334522,22 +333524,80 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110806] = 6, + [110692] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6250), 1, + anon_sym_RBRACK, + STATE(3223), 1, + sym_comment, + STATE(3256), 1, + aux_sym_shebang_repeat1, + STATE(3406), 1, + aux_sym__multiple_types_repeat2, + STATE(6703), 1, + sym__one_type, + STATE(7743), 1, + sym__type_annotation, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [110762] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - STATE(3238), 1, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(3224), 1, sym_comment, - ACTIONS(2184), 5, + ACTIONS(2170), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2186), 36, + ACTIONS(2174), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334574,22 +333634,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110864] = 6, - ACTIONS(251), 1, + [110820] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(2208), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(3239), 1, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(3225), 1, sym_comment, - ACTIONS(1865), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1873), 36, + ACTIONS(1000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334602,9 +333656,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(1004), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334613,35 +333670,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_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, - [110922] = 6, + [110878] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(3240), 1, + STATE(3226), 1, sym_comment, - ACTIONS(2188), 5, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2192), 36, + aux_sym_unquoted_token2, + ACTIONS(1774), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334669,6 +333726,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -334678,22 +333736,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [110980] = 6, + [110932] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - STATE(3241), 1, + STATE(3227), 1, sym_comment, - ACTIONS(2194), 5, + ACTIONS(2188), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2198), 36, + ACTIONS(2190), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334730,22 +333788,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111038] = 5, + [110990] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6255), 1, - aux_sym__immediate_decimal_token2, - STATE(3242), 1, + STATE(3228), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1817), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1727), 36, - ts_builtin_sym_end, + ACTIONS(1819), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334757,8 +333812,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334781,21 +333838,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111094] = 5, + [111044] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3229), 1, + sym_comment, + ACTIONS(2218), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_LPAREN2, + ACTIONS(2216), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [111098] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6259), 1, + ACTIONS(6240), 1, aux_sym__immediate_decimal_token2, - STATE(3243), 1, + STATE(3230), 1, sym_comment, - ACTIONS(1765), 6, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1767), 36, + ACTIONS(1751), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -334832,18 +333939,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111150] = 4, - ACTIONS(251), 1, + [111154] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3244), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(3231), 1, sym_comment, - ACTIONS(2245), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2247), 38, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334856,11 +333961,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2226), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334869,31 +333975,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_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, - [111204] = 4, + [111212] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3245), 1, + STATE(3232), 1, sym_comment, - ACTIONS(2237), 5, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2241), 38, + aux_sym_unquoted_token2, + ACTIONS(1751), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334908,9 +334018,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -334923,6 +334031,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -334932,19 +334041,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111258] = 4, + [111266] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3246), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3233), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 37, + ACTIONS(1813), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -334972,7 +334084,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -334982,19 +334093,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111312] = 4, + [111324] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3247), 1, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(3234), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(2180), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1759), 37, + ACTIONS(2184), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335022,7 +334136,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -335032,77 +334145,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111366] = 12, + [111382] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6261), 1, - sym__newline, - ACTIONS(6263), 1, - anon_sym_RBRACK, - STATE(3248), 1, - sym_comment, - STATE(3255), 1, - aux_sym_shebang_repeat1, - STATE(3398), 1, - aux_sym__multiple_types_repeat2, - STATE(6870), 1, - sym__one_type, - STATE(7418), 1, - sym__type_annotation, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [111436] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3249), 1, + STATE(3235), 1, sym_comment, - ACTIONS(1765), 6, + ACTIONS(2192), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1767), 37, + ACTIONS(2196), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335117,7 +334171,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335130,7 +334186,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -335140,16 +334195,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111490] = 6, - ACTIONS(3), 1, + [111436] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3250), 1, + STATE(3236), 1, sym_comment, - ACTIONS(2241), 13, + ACTIONS(1731), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1733), 37, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335162,12 +334220,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(2237), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335176,32 +334231,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111548] = 6, - ACTIONS(3), 1, + [111490] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3251), 1, + STATE(3237), 1, sym_comment, - ACTIONS(1000), 13, + ACTIONS(2200), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2202), 38, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335214,12 +334269,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(1004), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335228,32 +334282,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111606] = 6, + [111544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(2194), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2198), 1, aux_sym_unquoted_token4, - STATE(3252), 1, + STATE(3238), 1, sym_comment, - ACTIONS(2233), 13, + ACTIONS(2196), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335267,7 +334318,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2229), 28, + ACTIONS(2192), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -335296,12 +334347,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111664] = 4, + [111602] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3253), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(3239), 1, sym_comment, - ACTIONS(2267), 14, + ACTIONS(2202), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335315,8 +334370,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - ACTIONS(2265), 29, + ACTIONS(2200), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -335345,24 +334399,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [111718] = 6, + [111660] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - STATE(3254), 1, + STATE(3240), 1, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1873), 35, - ts_builtin_sym_end, + ACTIONS(1801), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335374,8 +334426,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335397,72 +334451,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111775] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6261), 1, - sym__newline, - STATE(3255), 1, - sym_comment, - STATE(3408), 1, - aux_sym__multiple_types_repeat2, - STATE(3486), 1, - aux_sym_shebang_repeat1, - STATE(6857), 1, - sym__one_type, - STATE(7418), 1, - sym__type_annotation, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [111842] = 6, + [111718] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2232), 1, aux_sym_unquoted_token4, - STATE(3256), 1, + STATE(3241), 1, sym_comment, - ACTIONS(2233), 12, + ACTIONS(2230), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335475,7 +334473,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - ACTIONS(2229), 28, + ACTIONS(2226), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -335504,22 +334502,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111899] = 6, + [111775] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(3257), 1, + STATE(3242), 1, sym_comment, - ACTIONS(2184), 5, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2186), 35, + aux_sym_unquoted_token2, + ACTIONS(1751), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335546,6 +334541,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -335555,16 +334551,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [111956] = 6, - ACTIONS(3), 1, + [111828] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3258), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3243), 1, sym_comment, - ACTIONS(2241), 12, + ACTIONS(1793), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1801), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335577,11 +334579,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(2237), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335590,32 +334589,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_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, - [112013] = 6, - ACTIONS(3), 1, + [111885] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3259), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3244), 1, sym_comment, - ACTIONS(2247), 12, + ACTIONS(2188), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2190), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335628,11 +334630,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(2245), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335641,39 +334640,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112070] = 6, + [111942] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(3260), 1, + STATE(3245), 1, sym_comment, - ACTIONS(2188), 5, + ACTIONS(1663), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2192), 35, - ts_builtin_sym_end, + ACTIONS(1675), 36, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -335685,8 +334678,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335708,16 +334703,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112127] = 6, - ACTIONS(3), 1, + [111997] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3261), 1, + STATE(3246), 1, sym_comment, - ACTIONS(1000), 12, + ACTIONS(1731), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1733), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335730,11 +334728,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(1004), 28, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335743,35 +334738,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_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, - [112184] = 4, + [112050] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3262), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3247), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1759), 36, + ACTIONS(1813), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335798,7 +334794,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -335808,22 +334803,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112237] = 6, - ACTIONS(251), 1, + [112107] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(2194), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, - STATE(3263), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(3248), 1, sym_comment, - ACTIONS(2194), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2198), 35, + ACTIONS(2196), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335836,8 +334825,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, + ACTIONS(2192), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335846,35 +334838,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112294] = 6, + [112164] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(2182), 1, anon_sym_LPAREN2, - STATE(3264), 1, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(3249), 1, sym_comment, - ACTIONS(1786), 5, + ACTIONS(2180), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 35, + ACTIONS(2184), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335910,19 +334905,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112351] = 4, + [112221] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3265), 1, + STATE(3250), 1, sym_comment, - ACTIONS(1765), 6, + ACTIONS(1817), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1767), 36, + ACTIONS(1819), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335959,19 +334954,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112404] = 4, - ACTIONS(251), 1, + [112274] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3266), 1, + STATE(3251), 1, sym_comment, - ACTIONS(1861), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1863), 36, + ACTIONS(2218), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -335984,8 +334972,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_LPAREN2, + ACTIONS(2216), 29, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -335994,34 +334986,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_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, - [112457] = 5, + aux_sym_unquoted_token4, + [112327] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - STATE(3267), 1, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(3252), 1, sym_comment, - ACTIONS(1681), 5, + ACTIONS(2170), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1693), 36, + ACTIONS(2174), 35, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336033,10 +335031,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_DASH2, anon_sym_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336058,12 +335054,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112512] = 4, - ACTIONS(3), 1, + [112384] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3268), 1, + STATE(3253), 1, sym_comment, - ACTIONS(2267), 13, + ACTIONS(1772), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1774), 36, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336076,12 +335079,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_LPAREN2, - ACTIONS(2265), 29, - anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336090,36 +335089,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_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, - aux_sym_unquoted_token4, - [112565] = 4, - ACTIONS(251), 1, + [112437] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3269), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(3254), 1, sym_comment, - ACTIONS(1725), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 36, + ACTIONS(2202), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -336132,8 +335125,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, + ACTIONS(2200), 28, + anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -336142,55 +335138,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112618] = 12, - ACTIONS(251), 1, + [112494] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6267), 1, - anon_sym_DASH2, - ACTIONS(6279), 1, - anon_sym_PLUS2, - STATE(3270), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(3255), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6275), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5214), 21, + ACTIONS(1000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336202,58 +335176,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(1004), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112686] = 15, + [112551] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + STATE(3256), 1, + sym_comment, + STATE(3388), 1, + aux_sym__multiple_types_repeat2, + STATE(3472), 1, + aux_sym_shebang_repeat1, + STATE(6876), 1, + sym__one_type, + STATE(7743), 1, + sym__type_annotation, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [112618] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6285), 1, - anon_sym_bit_DASHand2, - ACTIONS(6287), 1, - anon_sym_bit_DASHxor2, - STATE(3271), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3257), 1, sym_comment, - ACTIONS(6265), 2, + ACTIONS(5267), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5214), 17, + ACTIONS(5265), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -336266,34 +335297,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, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [112760] = 10, + [112682] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6289), 1, - anon_sym_GT2, - ACTIONS(6291), 1, - anon_sym_AT, - STATE(3272), 1, + STATE(3258), 1, sym_comment, - STATE(6933), 1, - sym__all_type, - STATE(7631), 1, - sym_param_cmd, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(7256), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6262), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336323,14 +335355,19 @@ 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, - [112824] = 3, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112732] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3273), 1, + STATE(3259), 1, sym_comment, - ACTIONS(6293), 41, + ACTIONS(6264), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336372,78 +335409,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [112874] = 5, + [112782] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, - STATE(3274), 1, + STATE(3260), 1, sym_comment, - ACTIONS(1681), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1693), 35, - ts_builtin_sym_end, + ACTIONS(6266), 41, sym__newline, anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [112928] = 10, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [112832] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, + ACTIONS(6201), 1, + anon_sym_LBRACK, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(6295), 1, - anon_sym_GT2, - STATE(3275), 1, + STATE(3261), 1, sym_comment, - STATE(6977), 1, - sym__all_type, - STATE(7623), 1, - sym_param_cmd, - ACTIONS(6222), 2, + STATE(7443), 1, + sym__type_annotation, + STATE(7510), 1, + sym__one_type, + STATE(7600), 1, + sym__multiple_types, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(7256), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336475,12 +335510,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [112992] = 3, + [112896] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3276), 1, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, + STATE(3262), 1, + sym_comment, + ACTIONS(1663), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1675), 35, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [112950] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3263), 1, sym_comment, - ACTIONS(6297), 41, + ACTIONS(6268), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336522,12 +335606,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [113042] = 3, + [113000] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3277), 1, + STATE(3264), 1, sym_comment, - ACTIONS(6299), 41, + ACTIONS(6270), 41, sym__newline, anon_sym_SEMI, anon_sym_COLON, @@ -336569,17 +335653,86 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_list, anon_sym_LBRACE, anon_sym_RBRACE, - [113092] = 3, + [113050] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3278), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(6272), 1, + anon_sym_DOT, + ACTIONS(6276), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6278), 1, + aux_sym__immediate_decimal_token5, + STATE(3265), 1, sym_comment, - ACTIONS(6301), 41, + STATE(3487), 1, + sym__immediate_decimal, + ACTIONS(6274), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1932), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1543), 24, sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [113120] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6280), 1, + anon_sym_GT2, + ACTIONS(6282), 1, + anon_sym_AT, + STATE(3266), 1, + sym_comment, + STATE(6874), 1, + sym__all_type, + STATE(7625), 1, + sym_param_cmd, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(7272), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -336609,42 +335762,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [113142] = 12, + [113184] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3279), 1, + STATE(3267), 1, sym_comment, - STATE(3293), 1, + STATE(3280), 1, aux_sym_shebang_repeat1, - ACTIONS(5262), 2, + ACTIONS(5291), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5260), 27, + ACTIONS(5289), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336672,29 +335820,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113210] = 9, + [113252] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - STATE(3280), 1, + STATE(3268), 1, sym_comment, - STATE(3295), 1, + STATE(3282), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5262), 3, + ACTIONS(5291), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5260), 30, + ACTIONS(5289), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336725,40 +335873,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113272] = 13, + [113314] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3281), 1, + STATE(3269), 1, sym_comment, - STATE(3297), 1, + STATE(3284), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5260), 23, + ACTIONS(5289), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336782,25 +335930,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113342] = 7, + [113384] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - STATE(3282), 1, + STATE(3270), 1, sym_comment, - STATE(3299), 1, + STATE(3286), 1, aux_sym_shebang_repeat1, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5262), 5, + ACTIONS(5291), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5260), 32, + ACTIONS(5289), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336833,54 +335981,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113400] = 18, + [113442] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - STATE(3283), 1, + STATE(3271), 1, sym_comment, - STATE(3301), 1, + STATE(3288), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 14, + ACTIONS(5289), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336895,56 +336043,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [113480] = 19, + [113522] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - STATE(3284), 1, + STATE(3272), 1, sym_comment, - STATE(3303), 1, + STATE(3290), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 13, + ACTIONS(5289), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -336958,58 +336106,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [113562] = 20, + [113604] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - ACTIONS(6331), 1, + ACTIONS(6312), 1, anon_sym_xor2, - STATE(3285), 1, + STATE(3273), 1, sym_comment, - STATE(3305), 1, + STATE(3292), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 12, + ACTIONS(5289), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337022,45 +336170,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [113646] = 14, + [113688] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3286), 1, + STATE(3274), 1, sym_comment, - STATE(3307), 1, + STATE(3294), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 19, + ACTIONS(5289), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337080,32 +336228,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113718] = 11, + [113760] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3287), 1, + STATE(3275), 1, sym_comment, - STATE(3309), 1, + STATE(3296), 1, aux_sym_shebang_repeat1, - ACTIONS(5262), 2, + ACTIONS(5291), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5260), 29, + ACTIONS(5289), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337135,48 +336283,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113784] = 15, + [113826] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3288), 1, + STATE(3276), 1, sym_comment, - STATE(3311), 1, + STATE(3298), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 17, + ACTIONS(5289), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337194,50 +336342,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113858] = 16, + [113900] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - STATE(3289), 1, + STATE(3277), 1, sym_comment, - STATE(3313), 1, + STATE(3300), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 16, + ACTIONS(5289), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337254,52 +336402,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [113934] = 17, + [113976] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - STATE(3290), 1, + STATE(3278), 1, sym_comment, - STATE(3315), 1, + STATE(3302), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5260), 15, + ACTIONS(5289), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337315,78 +336463,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [114012] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3291), 1, - sym_comment, - ACTIONS(2337), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5085), 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(2339), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [114066] = 10, + [114054] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6291), 1, + ACTIONS(6282), 1, anon_sym_AT, - ACTIONS(6333), 1, + ACTIONS(6314), 1, anon_sym_GT2, - STATE(3292), 1, + STATE(3279), 1, sym_comment, - STATE(6892), 1, + STATE(6724), 1, sym__all_type, - STATE(7675), 1, + STATE(7557), 1, sym_param_cmd, - ACTIONS(6222), 2, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(7256), 3, + STATE(7272), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -337418,33 +336517,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [114130] = 11, + [114118] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3293), 1, + STATE(3280), 1, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5233), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5292), 28, + ACTIONS(5231), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337473,35 +336572,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114196] = 12, + [114184] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3294), 1, + STATE(3281), 1, sym_comment, - STATE(3390), 1, + STATE(3315), 1, aux_sym_shebang_repeat1, - ACTIONS(5298), 2, + ACTIONS(5251), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5296), 27, + ACTIONS(5249), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337529,27 +336628,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114264] = 8, + [114252] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3295), 1, + STATE(3282), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5294), 3, + ACTIONS(5233), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5292), 31, + ACTIONS(5231), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337581,29 +336680,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114324] = 9, + [114312] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - STATE(3296), 1, + STATE(3283), 1, sym_comment, - STATE(3330), 1, + STATE(3316), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5298), 3, + ACTIONS(5251), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5296), 30, + ACTIONS(5249), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337634,38 +336733,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114386] = 12, + [114374] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3297), 1, + STATE(3284), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5292), 24, + ACTIONS(5231), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337690,40 +336789,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114454] = 13, + [114442] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3298), 1, + STATE(3285), 1, sym_comment, - STATE(3331), 1, + STATE(3317), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 23, + ACTIONS(5249), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337747,23 +336846,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114524] = 6, + [114512] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3299), 1, + STATE(3286), 1, sym_comment, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5294), 5, + ACTIONS(5233), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5292), 33, + ACTIONS(5231), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337797,25 +336896,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114580] = 7, + [114568] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - STATE(3300), 1, + STATE(3287), 1, sym_comment, - STATE(3332), 1, + STATE(3318), 1, aux_sym_shebang_repeat1, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5298), 5, + ACTIONS(5251), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5296), 32, + ACTIONS(5249), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337848,52 +336947,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [114638] = 17, + [114626] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3301), 1, + STATE(3288), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 15, + ACTIONS(5231), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -337909,54 +337008,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [114716] = 18, + [114704] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - STATE(3302), 1, + STATE(3289), 1, sym_comment, - STATE(3333), 1, + STATE(3319), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 14, + ACTIONS(5249), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -337971,54 +337070,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [114796] = 18, + [114784] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3303), 1, + STATE(3290), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 14, + ACTIONS(5231), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338033,56 +337132,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [114876] = 19, + [114864] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - STATE(3304), 1, + STATE(3291), 1, sym_comment, - STATE(3334), 1, + STATE(3320), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 13, + ACTIONS(5249), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338096,56 +337195,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [114958] = 19, + [114946] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3305), 1, + STATE(3292), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 13, + ACTIONS(5231), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338159,58 +337258,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [115040] = 20, + [115028] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - ACTIONS(6331), 1, + ACTIONS(6312), 1, anon_sym_xor2, - STATE(3306), 1, + STATE(3293), 1, sym_comment, - STATE(3335), 1, + STATE(3321), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 12, + ACTIONS(5249), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338223,43 +337322,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [115124] = 13, + [115112] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3307), 1, + STATE(3294), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 20, + ACTIONS(5231), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338280,45 +337379,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115194] = 14, + [115182] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3308), 1, + STATE(3295), 1, sym_comment, - STATE(3336), 1, + STATE(3322), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 19, + ACTIONS(5249), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338338,30 +337437,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115266] = 10, + [115254] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3309), 1, + STATE(3296), 1, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5233), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5292), 30, + ACTIONS(5231), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338392,32 +337491,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115330] = 11, + [115318] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3310), 1, + STATE(3297), 1, sym_comment, - STATE(3337), 1, + STATE(3323), 1, aux_sym_shebang_repeat1, - ACTIONS(5298), 2, + ACTIONS(5251), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5296), 29, + ACTIONS(5249), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338447,46 +337546,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115396] = 14, + [115384] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3311), 1, + STATE(3298), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 18, + ACTIONS(5231), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338505,48 +337604,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115468] = 15, + [115456] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3312), 1, + STATE(3299), 1, sym_comment, - STATE(3338), 1, + STATE(3324), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 17, + ACTIONS(5249), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338564,48 +337663,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115542] = 15, + [115530] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3313), 1, + STATE(3300), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 17, + ACTIONS(5231), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338623,50 +337722,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115616] = 16, + [115604] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - STATE(3314), 1, + STATE(3301), 1, sym_comment, - STATE(3339), 1, + STATE(3325), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 16, + ACTIONS(5249), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338683,50 +337782,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115692] = 16, + [115680] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3315), 1, + STATE(3302), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5292), 16, + ACTIONS(5231), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -338743,52 +337842,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [115768] = 17, + [115756] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - STATE(3316), 1, + STATE(3303), 1, sym_comment, - STATE(3340), 1, + STATE(3326), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5296), 15, + ACTIONS(5249), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338804,35 +337903,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [115846] = 12, + [115834] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3317), 1, + STATE(3304), 1, sym_comment, - STATE(3341), 1, + STATE(3327), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(5299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 27, + ACTIONS(5297), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338860,29 +337959,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115914] = 9, + [115902] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - STATE(3318), 1, + STATE(3305), 1, sym_comment, - STATE(3343), 1, + STATE(3329), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 3, + ACTIONS(5299), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5306), 30, + ACTIONS(5297), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338913,40 +338012,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [115976] = 13, + [115964] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3319), 1, + STATE(3306), 1, sym_comment, - STATE(3345), 1, + STATE(3331), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 23, + ACTIONS(5297), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -338970,25 +338069,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116046] = 7, + [116034] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - STATE(3320), 1, + STATE(3307), 1, sym_comment, - STATE(3347), 1, + STATE(3333), 1, aux_sym_shebang_repeat1, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5308), 5, + ACTIONS(5299), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5306), 32, + ACTIONS(5297), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339021,54 +338120,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116104] = 18, + [116092] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - STATE(3321), 1, + STATE(3308), 1, sym_comment, - STATE(3349), 1, + STATE(3335), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 14, + ACTIONS(5297), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339083,56 +338182,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [116184] = 19, + [116172] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - STATE(3322), 1, + STATE(3309), 1, sym_comment, - STATE(3351), 1, + STATE(3337), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 13, + ACTIONS(5297), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339146,58 +338245,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [116266] = 20, + [116254] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - ACTIONS(6331), 1, + ACTIONS(6312), 1, anon_sym_xor2, - STATE(3323), 1, + STATE(3310), 1, sym_comment, - STATE(3353), 1, + STATE(3339), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 12, + ACTIONS(5297), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339210,90 +338309,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [116350] = 14, + [116338] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3324), 1, + STATE(3311), 1, sym_comment, - STATE(3355), 1, + STATE(3341), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 19, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [116422] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6303), 1, - anon_sym_DASH2, - ACTIONS(6311), 1, - anon_sym_PLUS2, - STATE(3325), 1, - sym_comment, - STATE(3357), 1, - aux_sym_shebang_repeat1, - ACTIONS(5308), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6305), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6307), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5306), 29, + ACTIONS(5297), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339305,66 +338359,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116488] = 15, + [116410] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3326), 1, + STATE(3312), 1, sym_comment, - STATE(3359), 1, + STATE(3345), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 17, + ACTIONS(5297), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339382,50 +338426,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116562] = 16, + [116484] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - STATE(3327), 1, + STATE(3313), 1, sym_comment, - STATE(3361), 1, + STATE(3347), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 16, + ACTIONS(5297), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339442,52 +338486,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116638] = 17, + [116560] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - STATE(3328), 1, + STATE(3314), 1, sym_comment, - STATE(3363), 1, + STATE(3349), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5306), 15, + ACTIONS(5297), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -339503,74 +338547,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [116716] = 3, + [116638] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3329), 1, + ACTIONS(6252), 1, + anon_sym_DASH2, + ACTIONS(6260), 1, + anon_sym_PLUS2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3315), 1, sym_comment, - ACTIONS(6365), 41, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6254), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6256), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6258), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6316), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 28, sym__newline, anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [116766] = 8, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [116704] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3330), 1, + STATE(3316), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5302), 3, + ACTIONS(5239), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5300), 31, + ACTIONS(5237), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339602,38 +338654,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116826] = 12, + [116764] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3331), 1, + STATE(3317), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 24, + ACTIONS(5237), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339658,23 +338710,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116894] = 6, + [116832] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3332), 1, + STATE(3318), 1, sym_comment, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5302), 5, + ACTIONS(5239), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5300), 33, + ACTIONS(5237), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339708,52 +338760,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [116950] = 17, + [116888] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3333), 1, + STATE(3319), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 15, + ACTIONS(5237), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339769,54 +338821,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [117028] = 18, + [116966] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3334), 1, + STATE(3320), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 14, + ACTIONS(5237), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339831,56 +338883,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [117108] = 19, + [117046] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3335), 1, + STATE(3321), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 13, + ACTIONS(5237), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339894,43 +338946,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [117190] = 13, + [117128] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3336), 1, + STATE(3322), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 20, + ACTIONS(5237), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -339951,30 +339003,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117260] = 10, + [117198] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3337), 1, + STATE(3323), 1, sym_comment, - ACTIONS(5302), 2, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5300), 30, + ACTIONS(5237), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340005,46 +339057,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117324] = 14, + [117262] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3338), 1, + STATE(3324), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 18, + ACTIONS(5237), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340063,48 +339115,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117396] = 15, + [117334] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3339), 1, + STATE(3325), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 17, + ACTIONS(5237), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340122,50 +339174,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117470] = 16, + [117408] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3340), 1, + STATE(3326), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5300), 16, + ACTIONS(5237), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340182,33 +339234,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [117546] = 11, + [117484] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3341), 1, + STATE(3327), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5255), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5310), 28, + ACTIONS(5253), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340237,35 +339289,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117612] = 12, + [117550] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3342), 1, + STATE(3328), 1, sym_comment, - STATE(3366), 1, + STATE(3351), 1, aux_sym_shebang_repeat1, - ACTIONS(5242), 2, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5240), 27, + ACTIONS(5257), 27, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340293,27 +339345,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117680] = 8, + [117618] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3343), 1, + STATE(3329), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5312), 3, + ACTIONS(5255), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5310), 31, + ACTIONS(5253), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340345,29 +339397,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117740] = 9, + [117678] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - STATE(3344), 1, + STATE(3330), 1, sym_comment, - STATE(3367), 1, + STATE(3352), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5242), 3, + ACTIONS(5259), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5240), 30, + ACTIONS(5257), 30, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340398,38 +339450,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117802] = 12, + [117740] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3345), 1, + STATE(3331), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 24, + ACTIONS(5253), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340454,40 +339506,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117870] = 13, + [117808] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3346), 1, + STATE(3332), 1, sym_comment, - STATE(3368), 1, + STATE(3353), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5240), 23, + ACTIONS(5257), 23, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340511,23 +339563,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117940] = 6, + [117878] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3347), 1, + STATE(3333), 1, sym_comment, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 5, + ACTIONS(5255), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5310), 33, + ACTIONS(5253), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340561,25 +339613,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [117996] = 7, + [117934] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - STATE(3348), 1, + STATE(3334), 1, sym_comment, - STATE(3369), 1, + STATE(3354), 1, aux_sym_shebang_repeat1, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5242), 5, + ACTIONS(5259), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5240), 32, + ACTIONS(5257), 32, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340612,52 +339664,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118054] = 17, + [117992] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3349), 1, + STATE(3335), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 15, + ACTIONS(5253), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340673,54 +339725,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [118132] = 18, + [118070] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - STATE(3350), 1, + STATE(3336), 1, sym_comment, - STATE(3370), 1, + STATE(3355), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 14, + ACTIONS(5257), 14, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340735,54 +339787,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [118212] = 18, + [118150] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3351), 1, + STATE(3337), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 14, + ACTIONS(5253), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340797,56 +339849,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [118292] = 19, + [118230] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - STATE(3352), 1, + STATE(3338), 1, sym_comment, - STATE(3371), 1, + STATE(3356), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 13, + ACTIONS(5257), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340860,56 +339912,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [118374] = 19, + [118312] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3353), 1, + STATE(3339), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 13, + ACTIONS(5253), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -340923,58 +339975,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [118456] = 20, + [118394] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - ACTIONS(6329), 1, + ACTIONS(6310), 1, anon_sym_and2, - ACTIONS(6331), 1, + ACTIONS(6312), 1, anon_sym_xor2, - STATE(3354), 1, + STATE(3340), 1, sym_comment, - STATE(3372), 1, + STATE(3357), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 12, + ACTIONS(5257), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -340987,43 +340039,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [118540] = 13, + [118478] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3355), 1, + STATE(3341), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 20, + ACTIONS(5253), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341044,45 +340096,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118610] = 14, + [118548] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3356), 1, + STATE(3342), 1, sym_comment, - STATE(3373), 1, + STATE(3358), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 19, + ACTIONS(5257), 19, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341102,30 +340154,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118682] = 10, + [118620] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3357), 1, + STATE(3343), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5255), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5310), 30, + ACTIONS(5253), 30, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341156,32 +340208,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118746] = 11, + [118684] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3358), 1, - sym_comment, - STATE(3374), 1, + STATE(3257), 1, aux_sym_shebang_repeat1, - ACTIONS(5242), 2, + STATE(3344), 1, + sym_comment, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5240), 29, + ACTIONS(5257), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341211,46 +340263,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118812] = 14, + [118750] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3359), 1, + STATE(3345), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 18, + ACTIONS(5253), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341269,48 +340321,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118884] = 15, + [118822] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - STATE(3360), 1, + STATE(3346), 1, sym_comment, - STATE(3375), 1, + STATE(3359), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 17, + ACTIONS(5257), 17, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341328,48 +340380,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [118958] = 15, + [118896] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3361), 1, + STATE(3347), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 17, + ACTIONS(5253), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341387,50 +340439,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119032] = 16, + [118970] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - STATE(3362), 1, + STATE(3348), 1, sym_comment, - STATE(3376), 1, + STATE(3360), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 16, + ACTIONS(5257), 16, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341447,50 +340499,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119108] = 16, + [119046] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3363), 1, + STATE(3349), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5310), 16, + ACTIONS(5253), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341507,52 +340559,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [119184] = 17, + [119122] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6303), 1, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6311), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6323), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6325), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - STATE(3364), 1, + STATE(3350), 1, sym_comment, - STATE(3377), 1, + STATE(3361), 1, aux_sym_shebang_repeat1, - ACTIONS(6305), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6307), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, + ACTIONS(6296), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6321), 2, + ACTIONS(6302), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6319), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5240), 15, + ACTIONS(5257), 15, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -341568,80 +340620,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [119262] = 3, + [119200] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(3365), 1, - sym_comment, - ACTIONS(6367), 41, - sym__newline, - anon_sym_SEMI, - anon_sym_COLON, - anon_sym_LBRACK, - anon_sym_RPAREN, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - anon_sym_LBRACE, - anon_sym_RBRACE, - [119312] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3366), 1, + STATE(3351), 1, sym_comment, - ACTIONS(5272), 2, + ACTIONS(5267), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5270), 28, + ACTIONS(5265), 28, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341670,27 +340675,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119378] = 8, + [119266] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3367), 1, + STATE(3352), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5272), 3, + ACTIONS(5267), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5270), 31, + ACTIONS(5265), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341722,38 +340727,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119438] = 12, + [119326] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3368), 1, + STATE(3353), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 24, + ACTIONS(5265), 24, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341778,23 +340783,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119506] = 6, + [119394] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3369), 1, + STATE(3354), 1, sym_comment, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5272), 5, + ACTIONS(5267), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5270), 33, + ACTIONS(5265), 33, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341828,52 +340833,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119562] = 17, + [119450] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3370), 1, + STATE(3355), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 15, + ACTIONS(5265), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341889,54 +340894,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [119640] = 18, + [119528] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3371), 1, + STATE(3356), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 14, + ACTIONS(5265), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -341951,56 +340956,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [119720] = 19, + [119608] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3372), 1, + STATE(3357), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 13, + ACTIONS(5265), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342014,43 +341019,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [119802] = 13, + [119690] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3373), 1, + STATE(3358), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 20, + ACTIONS(5265), 20, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342071,100 +341076,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [119872] = 10, + [119760] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3374), 1, - sym_comment, - ACTIONS(5272), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6337), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6339), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5270), 30, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [119936] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6335), 1, - anon_sym_DASH2, - ACTIONS(6343), 1, - anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3375), 1, + STATE(3359), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 18, + ACTIONS(5265), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342183,48 +341134,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120008] = 15, + [119832] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3376), 1, + STATE(3360), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 17, + ACTIONS(5265), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342242,50 +341193,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120082] = 16, + [119906] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3377), 1, + STATE(3361), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5270), 16, + ACTIONS(5265), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342302,142 +341253,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [120158] = 10, + [119982] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6218), 1, - anon_sym_LBRACK, - ACTIONS(6224), 1, - anon_sym_list, - STATE(3378), 1, - sym_comment, - STATE(7600), 1, - sym__one_type, - STATE(7602), 1, - sym__multiple_types, - STATE(7642), 1, - sym__type_annotation, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [120222] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6369), 1, - anon_sym_DOT, - ACTIONS(6373), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6375), 1, - aux_sym__immediate_decimal_token5, - STATE(3379), 1, - sym_comment, - STATE(3502), 1, - sym__immediate_decimal, - ACTIONS(6371), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1820), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1553), 24, - sym__newline, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [120292] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - STATE(3380), 1, + STATE(3362), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5205), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 29, + ACTIONS(5203), 29, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342467,25 +341307,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120356] = 7, + [120046] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3381), 1, + STATE(3363), 1, sym_comment, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 3, + ACTIONS(5205), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5214), 32, + ACTIONS(5203), 32, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342518,36 +341358,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120414] = 11, + [120104] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - STATE(3382), 1, + STATE(3364), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6273), 4, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 25, + ACTIONS(5203), 25, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342573,21 +341413,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120480] = 5, + [120170] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3383), 1, + STATE(3365), 1, sym_comment, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5216), 5, + ACTIONS(5205), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5214), 34, + ACTIONS(5203), 34, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342622,50 +341462,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120534] = 16, + [120224] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - ACTIONS(6285), 1, + ACTIONS(6356), 1, anon_sym_bit_DASHand2, - ACTIONS(6287), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHxor2, - ACTIONS(6377), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHor2, - STATE(3384), 1, + STATE(3366), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6354), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 16, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342682,52 +341522,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [120610] = 17, + [120300] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - ACTIONS(6285), 1, + ACTIONS(6356), 1, anon_sym_bit_DASHand2, - ACTIONS(6287), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHxor2, - ACTIONS(6377), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHor2, - ACTIONS(6379), 1, + ACTIONS(6362), 1, anon_sym_and2, - STATE(3385), 1, + STATE(3367), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6354), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 15, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342743,54 +341583,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [120688] = 18, + [120378] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - ACTIONS(6285), 1, + ACTIONS(6356), 1, anon_sym_bit_DASHand2, - ACTIONS(6287), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHxor2, - ACTIONS(6377), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHor2, - ACTIONS(6379), 1, + ACTIONS(6362), 1, anon_sym_and2, - ACTIONS(6381), 1, + ACTIONS(6364), 1, anon_sym_xor2, - STATE(3386), 1, + STATE(3368), 1, + sym_comment, + ACTIONS(6338), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6340), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6342), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6346), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6354), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6350), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_or2, + [120458] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6336), 1, + anon_sym_DASH2, + ACTIONS(6344), 1, + anon_sym_PLUS2, + STATE(3369), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 14, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342804,29 +341693,36 @@ 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, - [120768] = 9, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [120526] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - STATE(3387), 1, + STATE(3370), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5205), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5214), 31, + ACTIONS(5203), 31, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342858,44 +341754,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120830] = 13, + [120588] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - STATE(3388), 1, + STATE(3371), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6354), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 19, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342915,46 +341811,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120900] = 14, + [120658] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6267), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6279), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - ACTIONS(6285), 1, + ACTIONS(6356), 1, anon_sym_bit_DASHand2, - STATE(3389), 1, + STATE(3372), 1, sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6275), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6354), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 18, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 18, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -342973,106 +341869,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [120972] = 11, + [120730] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6335), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3390), 1, + ACTIONS(6356), 1, + anon_sym_bit_DASHand2, + ACTIONS(6358), 1, + anon_sym_bit_DASHxor2, + STATE(3373), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6337), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5300), 28, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [121038] = 16, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DASH2, - ACTIONS(6399), 1, - anon_sym_PLUS2, - ACTIONS(6403), 1, - anon_sym_bit_DASHand2, - ACTIONS(6405), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6407), 1, - anon_sym_bit_DASHor2, - STATE(3391), 1, - sym_comment, - ACTIONS(6383), 2, + ACTIONS(6348), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6393), 2, + ACTIONS(6354), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 15, - ts_builtin_sym_end, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343084,25 +341922,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, - [121113] = 5, + anon_sym_bit_DASHor2, + [120804] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3392), 1, + STATE(3374), 1, sym_comment, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5216), 5, + ACTIONS(2403), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5214), 33, - ts_builtin_sym_end, + ACTIONS(5007), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -343114,6 +341951,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2405), 23, anon_sym_DASH2, anon_sym_in2, anon_sym_and2, @@ -343128,6 +341968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, anon_sym_mod2, anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, @@ -343135,50 +341977,133 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121166] = 15, + [120858] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(6366), 1, + anon_sym_GT2, + STATE(3375), 1, + sym_comment, + STATE(6999), 1, + sym__all_type, + STATE(7484), 1, + sym_param_cmd, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(7272), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [120922] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3376), 1, + sym_comment, + ACTIONS(6368), 41, + sym__newline, + anon_sym_SEMI, + anon_sym_COLON, + anon_sym_LBRACK, + anon_sym_RPAREN, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + anon_sym_LBRACE, + anon_sym_RBRACE, + [120972] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6399), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6403), 1, - anon_sym_bit_DASHand2, - ACTIONS(6405), 1, - anon_sym_bit_DASHxor2, - STATE(3393), 1, + STATE(3343), 1, + aux_sym_shebang_repeat1, + STATE(3377), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(5299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6393), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5214), 16, - ts_builtin_sym_end, - sym__newline, + ACTIONS(5297), 29, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -343189,44 +342114,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [121239] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6411), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6413), 1, - aux_sym__immediate_decimal_token5, - STATE(3394), 1, - sym_comment, - STATE(3527), 1, - sym__immediate_decimal, - ACTIONS(6409), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1627), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1629), 24, - sym__newline, + anon_sym_RPAREN, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343239,61 +342128,105 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121306] = 17, + [121038] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6374), 1, + anon_sym_list, + STATE(3378), 1, + sym_comment, + STATE(3472), 1, + aux_sym_shebang_repeat1, + STATE(4395), 1, + sym__type_annotation, + ACTIONS(6372), 2, + anon_sym_table, + anon_sym_record, + STATE(4760), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6370), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [121099] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(6399), 1, + ACTIONS(6392), 1, anon_sym_PLUS2, - ACTIONS(6403), 1, + ACTIONS(6396), 1, anon_sym_bit_DASHand2, - ACTIONS(6405), 1, + ACTIONS(6398), 1, anon_sym_bit_DASHxor2, - ACTIONS(6407), 1, - anon_sym_bit_DASHor2, - ACTIONS(6415), 1, - anon_sym_and2, - STATE(3395), 1, + STATE(3379), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(6376), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, + ACTIONS(6382), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6393), 2, + ACTIONS(6386), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, + ACTIONS(6394), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, + ACTIONS(6380), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, + ACTIONS(6384), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 14, + ACTIONS(5203), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343306,56 +342239,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, - [121383] = 18, + anon_sym_bit_DASHor2, + [121172] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DASH2, - ACTIONS(6399), 1, - anon_sym_PLUS2, - ACTIONS(6403), 1, - anon_sym_bit_DASHand2, - ACTIONS(6405), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6407), 1, - anon_sym_bit_DASHor2, - ACTIONS(6415), 1, - anon_sym_and2, - ACTIONS(6417), 1, - anon_sym_xor2, - STATE(3396), 1, + STATE(3380), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(2403), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6389), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6393), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5214), 13, + anon_sym_PLUS2, + ACTIONS(5007), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343368,28 +342267,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, + ACTIONS(2405), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [121462] = 9, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [121225] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6261), 1, + ACTIONS(6248), 1, sym__newline, - STATE(3397), 1, + STATE(3381), 1, sym_comment, - STATE(3409), 1, + STATE(3390), 1, aux_sym_shebang_repeat1, - STATE(6843), 1, + STATE(7053), 1, sym__type_annotation, - ACTIONS(6222), 2, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343421,27 +342343,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121523] = 9, + [121286] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6374), 1, anon_sym_list, - STATE(3398), 1, + STATE(3382), 1, sym_comment, - STATE(3410), 1, - aux_sym__multiple_types_repeat2, - STATE(6909), 1, - sym__one_type, - STATE(7418), 1, + STATE(3472), 1, + aux_sym_shebang_repeat1, + STATE(4528), 1, sym__type_annotation, - ACTIONS(6222), 2, + ACTIONS(6372), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(4760), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6370), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343473,27 +342395,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121584] = 9, + [121347] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6261), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(6402), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6404), 1, + aux_sym__immediate_decimal_token5, + STATE(3383), 1, + sym_comment, + STATE(3521), 1, + sym__immediate_decimal, + ACTIONS(6400), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1589), 24, sym__newline, - ACTIONS(6423), 1, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [121414] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6248), 1, + sym__newline, + ACTIONS(6374), 1, anon_sym_list, - STATE(3399), 1, - sym_comment, - STATE(3486), 1, + STATE(3378), 1, aux_sym_shebang_repeat1, - STATE(4451), 1, + STATE(3384), 1, + sym_comment, + STATE(4530), 1, sym__type_annotation, - ACTIONS(6421), 2, + ACTIONS(6372), 2, anon_sym_table, anon_sym_record, - STATE(4606), 3, + STATE(4760), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6419), 31, + ACTIONS(6370), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343525,27 +342502,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121645] = 9, + [121475] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6261), 1, - sym__newline, - ACTIONS(6423), 1, + ACTIONS(6207), 1, anon_sym_list, - STATE(3400), 1, + ACTIONS(6248), 1, + sym__newline, + STATE(3385), 1, sym_comment, - STATE(3419), 1, + STATE(3403), 1, aux_sym_shebang_repeat1, - STATE(4452), 1, + STATE(6661), 1, sym__type_annotation, - ACTIONS(6421), 2, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(4606), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6419), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343577,41 +342554,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121706] = 12, + [121536] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DASH2, - ACTIONS(6399), 1, - anon_sym_PLUS2, - STATE(3401), 1, + STATE(3386), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(2192), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6389), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5214), 20, + anon_sym_PLUS2, + ACTIONS(2196), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343624,36 +342578,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_DASH2, + anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121773] = 9, + [121587] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DASH2, - ACTIONS(6399), 1, - anon_sym_PLUS2, - STATE(3402), 1, + STATE(3387), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(2200), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6389), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5214), 30, + anon_sym_PLUS2, + ACTIONS(2202), 35, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343666,6 +342625,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -343679,46 +342639,204 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121834] = 13, + [121638] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6207), 1, + anon_sym_list, + STATE(3388), 1, + sym_comment, + STATE(3389), 1, + aux_sym__multiple_types_repeat2, + STATE(7065), 1, + sym__one_type, + STATE(7743), 1, + sym__type_annotation, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [121699] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6412), 1, + anon_sym_list, + STATE(7316), 1, + sym__one_type, + STATE(7743), 1, + sym__type_annotation, + ACTIONS(6409), 2, + anon_sym_table, + anon_sym_record, + STATE(3389), 2, + sym_comment, + aux_sym__multiple_types_repeat2, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6406), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [121758] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6207), 1, + anon_sym_list, + ACTIONS(6248), 1, + sym__newline, + STATE(3390), 1, + sym_comment, + STATE(3472), 1, + aux_sym_shebang_repeat1, + STATE(6648), 1, + sym__type_annotation, + ACTIONS(6205), 2, + anon_sym_table, + anon_sym_record, + STATE(6200), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6203), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [121819] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6425), 1, - anon_sym_DOT, - ACTIONS(6429), 1, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6404), 1, aux_sym__immediate_decimal_token5, - STATE(3403), 1, + STATE(3391), 1, sym_comment, - STATE(3513), 1, + STATE(3517), 1, sym__immediate_decimal, - ACTIONS(6427), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3553), 2, + STATE(2016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1539), 6, + ACTIONS(1529), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1553), 23, + ACTIONS(1543), 24, + sym__newline, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343740,27 +342858,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [121903] = 9, + [121886] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6261), 1, + ACTIONS(6248), 1, sym__newline, - ACTIONS(6423), 1, + ACTIONS(6374), 1, anon_sym_list, - STATE(3399), 1, + STATE(3382), 1, aux_sym_shebang_repeat1, - STATE(3404), 1, + STATE(3392), 1, sym_comment, - STATE(4515), 1, + STATE(4491), 1, sym__type_annotation, - ACTIONS(6421), 2, + ACTIONS(6372), 2, anon_sym_table, anon_sym_record, - STATE(4606), 3, + STATE(4760), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6419), 31, + ACTIONS(6370), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -343792,40 +342910,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [121964] = 12, + [121947] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6411), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6413), 1, - aux_sym__immediate_decimal_token5, - STATE(3405), 1, + ACTIONS(6378), 1, + anon_sym_DASH2, + ACTIONS(6392), 1, + anon_sym_PLUS2, + STATE(3393), 1, sym_comment, - STATE(3536), 1, - sym__immediate_decimal, - ACTIONS(6409), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2035), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 6, + ACTIONS(5205), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6382), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1553), 24, + ACTIONS(6388), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6390), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6394), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5203), 28, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_in2, - anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -343838,53 +342960,128 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122010] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3394), 1, + sym_comment, + ACTIONS(6382), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(5205), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5203), 31, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122031] = 13, + [122067] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(6399), 1, + ACTIONS(6392), 1, anon_sym_PLUS2, - STATE(3406), 1, + STATE(3395), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(6376), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, + ACTIONS(6382), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6393), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, + ACTIONS(6394), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, + ACTIONS(6384), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 18, + ACTIONS(5203), 24, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122132] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3396), 1, + sym_comment, + ACTIONS(6388), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5205), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5203), 33, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343897,52 +343094,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_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [122185] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(6415), 1, + anon_sym_DOT, + ACTIONS(6419), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6421), 1, + aux_sym__immediate_decimal_token5, + STATE(3397), 1, + sym_comment, + STATE(3492), 1, + sym__immediate_decimal, + ACTIONS(6417), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3541), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1529), 6, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1543), 23, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122100] = 14, + [122254] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(6399), 1, + ACTIONS(6392), 1, anon_sym_PLUS2, - ACTIONS(6403), 1, + ACTIONS(6396), 1, anon_sym_bit_DASHand2, - STATE(3407), 1, + ACTIONS(6398), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6423), 1, + anon_sym_bit_DASHor2, + STATE(3398), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(6376), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, + ACTIONS(6382), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6393), 2, + ACTIONS(6386), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, + ACTIONS(6394), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, + ACTIONS(6380), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, + ACTIONS(6384), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 17, + ACTIONS(5203), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -343958,175 +343230,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122171] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_list, - STATE(3408), 1, - sym_comment, - STATE(3410), 1, - aux_sym__multiple_types_repeat2, - STATE(6751), 1, - sym__one_type, - STATE(7418), 1, - sym__type_annotation, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122232] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6261), 1, - sym__newline, - STATE(3409), 1, - sym_comment, - STATE(3486), 1, - aux_sym_shebang_repeat1, - STATE(6676), 1, - sym__type_annotation, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122293] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6439), 1, - anon_sym_list, - STATE(7359), 1, - sym__one_type, - STATE(7418), 1, - sym__type_annotation, - ACTIONS(6436), 2, - anon_sym_table, - anon_sym_record, - STATE(3410), 2, - sym_comment, - aux_sym__multiple_types_repeat2, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6433), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122352] = 4, + [122329] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(3411), 1, + ACTIONS(6378), 1, + anon_sym_DASH2, + ACTIONS(6392), 1, + anon_sym_PLUS2, + ACTIONS(6396), 1, + anon_sym_bit_DASHand2, + ACTIONS(6398), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6423), 1, + anon_sym_bit_DASHor2, + ACTIONS(6425), 1, + anon_sym_and2, + STATE(3399), 1, sym_comment, - ACTIONS(2237), 5, + ACTIONS(6376), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6382), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2241), 35, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6388), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6390), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6394), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6384), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344139,41 +343288,161 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_xor2, + anon_sym_or2, + [122406] = 18, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6378), 1, anon_sym_DASH2, - anon_sym_in2, + ACTIONS(6392), 1, + anon_sym_PLUS2, + ACTIONS(6396), 1, + anon_sym_bit_DASHand2, + ACTIONS(6398), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6423), 1, + anon_sym_bit_DASHor2, + ACTIONS(6425), 1, anon_sym_and2, + ACTIONS(6427), 1, anon_sym_xor2, - anon_sym_or2, + STATE(3400), 1, + sym_comment, + ACTIONS(6376), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6388), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6390), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6394), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6384), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5203), 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, + [122485] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6378), 1, + anon_sym_DASH2, + ACTIONS(6392), 1, + anon_sym_PLUS2, + ACTIONS(6396), 1, + anon_sym_bit_DASHand2, + STATE(3401), 1, + sym_comment, + ACTIONS(6376), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6382), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6386), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6394), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(6380), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6384), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 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, - [122403] = 4, + [122556] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3412), 1, + ACTIONS(6378), 1, + anon_sym_DASH2, + ACTIONS(6392), 1, + anon_sym_PLUS2, + STATE(3402), 1, sym_comment, - ACTIONS(2245), 5, + ACTIONS(6376), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6382), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2247), 35, + ACTIONS(6388), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6390), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6394), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6380), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6384), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344186,102 +343455,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_DASH2, - anon_sym_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122454] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6224), 1, - anon_sym_list, - ACTIONS(6261), 1, - sym__newline, - STATE(3413), 1, - sym_comment, - STATE(3414), 1, - aux_sym_shebang_repeat1, - STATE(7058), 1, - sym__type_annotation, - ACTIONS(6222), 2, - anon_sym_table, - anon_sym_record, - STATE(6414), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6220), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [122515] = 9, + [122623] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, + ACTIONS(6207), 1, anon_sym_list, - ACTIONS(6261), 1, + ACTIONS(6248), 1, sym__newline, - STATE(3414), 1, + STATE(3403), 1, sym_comment, - STATE(3486), 1, + STATE(3472), 1, aux_sym_shebang_repeat1, - STATE(6829), 1, + STATE(7086), 1, sym__type_annotation, - ACTIONS(6222), 2, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344313,126 +343515,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [122576] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3415), 1, - sym_comment, - ACTIONS(2337), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5085), 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(2339), 23, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122629] = 10, + [122684] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(6399), 1, + ACTIONS(6392), 1, anon_sym_PLUS2, - STATE(3416), 1, + STATE(3404), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5205), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5214), 28, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_in2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [122692] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3417), 1, - sym_comment, - ACTIONS(6389), 2, + ACTIONS(6382), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6395), 2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5214), 31, + ACTIONS(5203), 30, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344445,7 +343549,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DASH2, anon_sym_in2, anon_sym_and2, anon_sym_xor2, @@ -344464,36 +343567,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122749] = 11, + [122745] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6385), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(6399), 1, + ACTIONS(6392), 1, anon_sym_PLUS2, - STATE(3418), 1, + STATE(3405), 1, sym_comment, - ACTIONS(6383), 2, + ACTIONS(6376), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6389), 2, + ACTIONS(6382), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6395), 2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, + ACTIONS(6394), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6391), 4, + ACTIONS(6380), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6384), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 24, + ACTIONS(5203), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -344506,39 +343617,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_in2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, [122814] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6261), 1, - sym__newline, - ACTIONS(6423), 1, + ACTIONS(6207), 1, anon_sym_list, - STATE(3419), 1, + STATE(3389), 1, + aux_sym__multiple_types_repeat2, + STATE(3406), 1, sym_comment, - STATE(3486), 1, - aux_sym_shebang_repeat1, - STATE(4517), 1, + STATE(6700), 1, + sym__one_type, + STATE(7743), 1, sym__type_annotation, - ACTIONS(6421), 2, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(4606), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6419), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -344570,39 +343675,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [122875] = 12, + [122875] = 22, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, + ACTIONS(3206), 1, + aux_sym_unquoted_token1, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4048), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6444), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6446), 1, - aux_sym__immediate_decimal_token5, - STATE(3420), 1, + STATE(3407), 1, sym_comment, - STATE(3608), 1, - sym__immediate_decimal, - ACTIONS(6442), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2035), 2, - sym__expr_parenthesized_immediate, + STATE(5597), 1, + sym__val_number_decimal, + STATE(5722), 1, sym_val_variable, - ACTIONS(1539), 6, + STATE(5726), 1, + sym_unquoted, + STATE(7646), 1, + sym__val_range, + STATE(7648), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4050), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5664), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2644), 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(2646), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [122961] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6431), 1, + anon_sym_DOT, + ACTIONS(6433), 1, + aux_sym__immediate_decimal_token2, + STATE(3408), 1, + sym_comment, + ACTIONS(1605), 8, anon_sym_GT2, - anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1553), 23, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1607), 29, + sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344615,6 +343774,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -344624,16 +343784,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [122941] = 6, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [123015] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6448), 1, - anon_sym_DOT, - ACTIONS(6450), 1, + ACTIONS(6435), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6437), 1, aux_sym__immediate_decimal_token2, - STATE(3421), 1, + STATE(3409), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1597), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -344642,7 +343805,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 29, + ACTIONS(1599), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -344672,37 +343835,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [122995] = 12, + [123069] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6444), 1, + ACTIONS(4556), 1, + anon_sym_DOT, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6446), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(3422), 1, + STATE(3410), 1, sym_comment, - STATE(3621), 1, + STATE(3540), 1, sym__immediate_decimal, - ACTIONS(6442), 2, + ACTIONS(6417), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2050), 2, + STATE(3539), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1627), 6, + ACTIONS(1547), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1629), 23, + ACTIONS(1557), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -344726,165 +343889,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123061] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(3873), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - STATE(3423), 1, - sym_comment, - STATE(5674), 1, - sym__val_number_decimal, - STATE(5682), 1, - sym_val_variable, - STATE(5693), 1, - sym_unquoted, - STATE(7439), 1, - sym__val_range, - STATE(7445), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5697), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2741), 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(2743), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [123147] = 22, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(3873), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - STATE(3424), 1, - sym_comment, - STATE(5674), 1, - sym__val_number_decimal, - STATE(5682), 1, - sym_val_variable, - STATE(5693), 1, - sym_unquoted, - STATE(7439), 1, - sym__val_range, - STATE(7445), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5697), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2741), 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(2743), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [123233] = 12, + [123135] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4574), 1, + ACTIONS(4540), 1, anon_sym_DOT, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(3425), 1, + STATE(3411), 1, sym_comment, - STATE(3541), 1, + STATE(3530), 1, sym__immediate_decimal, - ACTIONS(6427), 2, + ACTIONS(6417), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3553), 2, + STATE(3541), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1539), 6, + ACTIONS(1529), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1553), 23, + ACTIONS(1543), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -344908,29 +343943,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123299] = 6, + [123201] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6454), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6456), 1, - aux_sym__immediate_decimal_token2, - STATE(3426), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(6441), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6443), 1, + aux_sym__immediate_decimal_token5, + STATE(3412), 1, sym_comment, - ACTIONS(1595), 8, + STATE(3555), 1, + sym__immediate_decimal, + ACTIONS(6439), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1597), 29, - sym__newline, - anon_sym_DASH2, + ACTIONS(1589), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -344943,7 +343988,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -344953,40 +343997,101 @@ 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, + [123267] = 22, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3206), 1, + aux_sym_unquoted_token1, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4048), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + STATE(3413), 1, + sym_comment, + STATE(5597), 1, + sym__val_number_decimal, + STATE(5722), 1, + sym_val_variable, + STATE(5726), 1, + sym_unquoted, + STATE(7646), 1, + sym__val_range, + STATE(7648), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4050), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5664), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2644), 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(2646), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, [123353] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4553), 1, - anon_sym_DOT, - ACTIONS(6429), 1, + ACTIONS(6441), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6443), 1, aux_sym__immediate_decimal_token5, - STATE(3427), 1, + STATE(3414), 1, sym_comment, - STATE(3552), 1, + STATE(3631), 1, sym__immediate_decimal, - ACTIONS(6427), 2, + ACTIONS(6439), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3551), 2, + STATE(2016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1529), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 23, + ACTIONS(1543), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -345013,62 +344118,20 @@ static const uint16_t ts_small_parse_table[] = { [123419] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3428), 1, + STATE(3415), 1, sym_comment, - STATE(5832), 1, + STATE(5974), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [123474] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6464), 1, - sym__entry_separator, - STATE(3429), 2, - sym_comment, - aux_sym__multiple_types_repeat1, - ACTIONS(2287), 36, - anon_sym_LBRACK, - anon_sym_RBRACK, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345098,42 +344161,39 @@ 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, - [123523] = 11, + [123474] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(6467), 1, - anon_sym_DOT_DOT2, - ACTIONS(6471), 1, - sym_filesize_unit, - ACTIONS(6473), 1, - sym_duration_unit, - STATE(3430), 1, + ACTIONS(6419), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6421), 1, + aux_sym__immediate_decimal_token5, + STATE(2113), 1, + sym__immediate_decimal, + STATE(3416), 1, sym_comment, - STATE(7276), 1, + ACTIONS(6451), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2016), 2, sym__expr_parenthesized_immediate, - ACTIONS(6469), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, + sym_val_variable, + ACTIONS(1529), 6, anon_sym_GT2, + anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1693), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(1543), 23, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -345155,83 +344215,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123586] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6462), 1, - anon_sym_list, - STATE(3431), 1, - sym_comment, - STATE(6069), 1, - sym__all_type, - ACTIONS(6460), 2, - anon_sym_table, - anon_sym_record, - STATE(6865), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6458), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [123641] = 11, + [123537] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(2120), 1, + STATE(2128), 1, sym__immediate_decimal, - STATE(3432), 1, + STATE(3417), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2035), 2, + STATE(2033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1539), 6, + ACTIONS(1587), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1553), 23, + ACTIONS(1589), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -345255,119 +344267,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [123704] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6462), 1, - anon_sym_list, - STATE(3433), 1, - sym_comment, - STATE(6618), 1, - sym__all_type, - ACTIONS(6460), 2, - anon_sym_table, - anon_sym_record, - STATE(6865), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6458), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [123759] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6462), 1, - anon_sym_list, - STATE(3434), 1, - sym_comment, - STATE(6620), 1, - sym__all_type, - ACTIONS(6460), 2, - anon_sym_table, - anon_sym_record, - STATE(6865), 3, - sym_flat_type, - sym_collection_type, - sym_list_type, - ACTIONS(6458), 31, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - [123814] = 7, + [123600] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3435), 1, + STATE(3418), 1, sym_comment, - STATE(7213), 1, + STATE(7286), 1, sym__type_annotation, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(7233), 3, + STATE(7265), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345399,75 +344315,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [123869] = 11, + [123655] = 21, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3354), 1, + aux_sym_unquoted_token1, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(5784), 1, + anon_sym_DOT_DOT, + ACTIONS(6453), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, - aux_sym__immediate_decimal_token5, - STATE(2130), 1, - sym__immediate_decimal, - STATE(3436), 1, + STATE(3419), 1, sym_comment, - ACTIONS(6475), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2050), 2, - sym__expr_parenthesized_immediate, + STATE(5601), 1, + sym__val_number_decimal, + STATE(5810), 1, + sym_unquoted, + STATE(6058), 1, sym_val_variable, - ACTIONS(1627), 6, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1629), 23, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [123932] = 7, + STATE(7453), 1, + sym__unquoted_anonymous_prefix, + STATE(7615), 1, + sym__val_range, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(5786), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5788), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2644), 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(2646), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [123738] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3437), 1, + STATE(3420), 1, sym_comment, - STATE(5849), 1, + STATE(5921), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345499,23 +344425,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [123987] = 7, + [123793] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6224), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3438), 1, + STATE(3421), 1, sym_comment, - STATE(7605), 1, - sym__type_annotation, - ACTIONS(6222), 2, + STATE(5935), 1, + sym__all_type, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6414), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6220), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345547,14 +344473,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124042] = 5, + [123848] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6450), 1, + ACTIONS(6433), 1, aux_sym__immediate_decimal_token2, - STATE(3439), 1, + STATE(3422), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -345563,7 +344489,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 29, + ACTIONS(1607), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -345593,14 +344519,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [124093] = 5, + [123899] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6477), 1, + ACTIONS(6455), 1, aux_sym__immediate_decimal_token2, - STATE(3440), 1, + STATE(3423), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1685), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -345609,7 +344535,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1669), 29, + ACTIONS(1687), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -345639,16 +344565,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [124144] = 6, + [123950] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6479), 1, + ACTIONS(6457), 1, anon_sym_DOT, - ACTIONS(6481), 1, + ACTIONS(6459), 1, aux_sym__immediate_decimal_token2, - STATE(3441), 1, + STATE(3424), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -345657,7 +344583,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 28, + ACTIONS(1607), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -345686,16 +344612,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [124197] = 6, + [124003] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6483), 1, + ACTIONS(6461), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6485), 1, + ACTIONS(6463), 1, aux_sym__immediate_decimal_token2, - STATE(3442), 1, + STATE(3425), 1, sym_comment, - ACTIONS(1595), 8, + ACTIONS(1597), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -345704,7 +344630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1597), 28, + ACTIONS(1599), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -345733,23 +344659,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [124250] = 7, + [124056] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3443), 1, + STATE(3426), 1, sym_comment, - STATE(5851), 1, + STATE(6053), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345781,85 +344707,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124305] = 21, + [124111] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3219), 1, - aux_sym_unquoted_token1, - ACTIONS(3873), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(4139), 1, - anon_sym_DOT_DOT, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - STATE(3444), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3427), 1, sym_comment, - STATE(5674), 1, - sym__val_number_decimal, - STATE(5682), 1, - sym_val_variable, - STATE(5693), 1, - sym_unquoted, - STATE(7439), 1, - sym__val_range, - STATE(7445), 1, - sym__unquoted_anonymous_prefix, - STATE(7527), 1, - sym_val_bool, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(4141), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5697), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2741), 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(2743), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124388] = 7, + STATE(5922), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6803), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [124166] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3445), 1, + STATE(3428), 1, sym_comment, - STATE(5959), 1, + STATE(6127), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345891,23 +344803,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124443] = 7, + [124221] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3446), 1, + STATE(3429), 1, sym_comment, - STATE(5961), 1, + STATE(6136), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345939,23 +344851,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124498] = 7, + [124276] = 21, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3206), 1, + aux_sym_unquoted_token1, + ACTIONS(3936), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(3938), 1, + aux_sym__val_number_decimal_token2, + ACTIONS(3940), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3942), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(4048), 1, + anon_sym_DOT_DOT, + ACTIONS(5666), 1, + sym_val_date, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + STATE(3430), 1, + sym_comment, + STATE(5597), 1, + sym__val_number_decimal, + STATE(5722), 1, + sym_val_variable, + STATE(5726), 1, + sym_unquoted, + STATE(7646), 1, + sym__val_range, + STATE(7648), 1, + sym__unquoted_anonymous_prefix, + STATE(7730), 1, + sym_val_bool, + ACTIONS(3934), 2, + anon_sym_true, + anon_sym_false, + ACTIONS(4050), 2, + anon_sym_DOT_DOT_EQ, + anon_sym_DOT_DOT_LT, + ACTIONS(5664), 3, + aux_sym__val_number_token4, + aux_sym__val_number_token5, + aux_sym__val_number_token6, + ACTIONS(2644), 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(2646), 9, + anon_sym_null, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + [124359] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3447), 1, + STATE(3431), 1, sym_comment, - STATE(5971), 1, + STATE(5961), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -345987,23 +344961,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124553] = 7, + [124414] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(6465), 1, + anon_sym_DOT_DOT2, + ACTIONS(6469), 1, + sym_filesize_unit, + ACTIONS(6471), 1, + sym_duration_unit, + STATE(3432), 1, + sym_comment, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6467), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1675), 25, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [124477] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6449), 1, anon_sym_list, - STATE(3448), 1, + STATE(3433), 1, sym_comment, - STATE(5975), 1, + STATE(6033), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346035,97 +345061,83 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124608] = 21, + [124532] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3367), 1, - aux_sym_unquoted_token1, - ACTIONS(3873), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(3875), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(3877), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3879), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(5699), 1, - sym_val_date, - ACTIONS(5835), 1, - anon_sym_DOT_DOT, - ACTIONS(6487), 1, - anon_sym_DOLLAR, - STATE(3449), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3434), 1, sym_comment, - STATE(5714), 1, - sym__val_number_decimal, - STATE(5900), 1, - sym_val_variable, - STATE(6075), 1, - sym_unquoted, - STATE(7527), 1, - sym_val_bool, - STATE(7581), 1, - sym__val_range, - STATE(7587), 1, - sym__unquoted_anonymous_prefix, - ACTIONS(3871), 2, - anon_sym_true, - anon_sym_false, - ACTIONS(5837), 2, - anon_sym_DOT_DOT_EQ, - anon_sym_DOT_DOT_LT, - ACTIONS(5839), 3, - aux_sym__val_number_token4, - aux_sym__val_number_token5, - aux_sym__val_number_token6, - ACTIONS(2741), 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(2743), 9, - anon_sym_null, - anon_sym_err_GT_GT, - anon_sym_out_GT_GT, - anon_sym_e_GT_GT, - anon_sym_o_GT_GT, - anon_sym_err_PLUSout_GT_GT, - anon_sym_out_PLUSerr_GT_GT, - anon_sym_o_PLUSe_GT_GT, - anon_sym_e_PLUSo_GT_GT, - [124691] = 11, + STATE(6042), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6803), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 31, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + [124587] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(2034), 1, + STATE(2015), 1, sym__immediate_decimal, - STATE(3450), 1, + STATE(3435), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(2014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 6, + ACTIONS(1547), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1643), 23, + ACTIONS(1557), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -346149,35 +345161,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124754] = 11, + [124650] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(2045), 1, + STATE(2028), 1, sym__immediate_decimal, - STATE(3451), 1, + STATE(3436), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2044), 2, + STATE(2027), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1707), 6, + ACTIONS(1701), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1709), 23, + ACTIONS(1703), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -346201,35 +345213,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124817] = 11, + [124713] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(2047), 1, + STATE(2030), 1, sym__immediate_decimal, - STATE(3452), 1, + STATE(3437), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2046), 2, + STATE(2029), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1711), 6, + ACTIONS(1705), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1713), 23, + ACTIONS(1707), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -346253,35 +345265,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124880] = 11, + [124776] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(2049), 1, + STATE(2032), 1, sym__immediate_decimal, - STATE(3453), 1, + STATE(3438), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2048), 2, + STATE(2031), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1657), 6, + ACTIONS(1709), 6, anon_sym_GT2, anon_sym_DASH2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1665), 23, + ACTIONS(1711), 23, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -346305,23 +345317,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [124943] = 7, + [124839] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6473), 1, + sym__entry_separator, + STATE(3439), 2, + sym_comment, + aux_sym__multiple_types_repeat1, + ACTIONS(2366), 36, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, + [124888] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6207), 1, anon_sym_list, - STATE(3454), 1, + STATE(3440), 1, sym_comment, - STATE(5879), 1, - sym__all_type, - ACTIONS(6460), 2, + STATE(7464), 1, + sym__type_annotation, + ACTIONS(6205), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6200), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6203), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346353,23 +345410,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [124998] = 7, + [124943] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3455), 1, + STATE(3441), 1, sym_comment, - STATE(5880), 1, + STATE(5868), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346401,23 +345458,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125053] = 7, + [124998] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3456), 1, + STATE(3442), 1, sym_comment, - STATE(5888), 1, + STATE(5880), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346449,23 +345506,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125108] = 7, + [125053] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3457), 1, + STATE(3443), 1, sym_comment, - STATE(5889), 1, + STATE(5969), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346497,23 +345554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125163] = 7, + [125108] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3458), 1, + STATE(3444), 1, sym_comment, - STATE(5891), 1, + STATE(5970), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346545,23 +345602,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125218] = 7, + [125163] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3459), 1, + STATE(3445), 1, sym_comment, - STATE(5892), 1, + STATE(5975), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346593,23 +345650,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125273] = 7, + [125218] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3460), 1, + STATE(3446), 1, sym_comment, - STATE(5898), 1, + STATE(5986), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346641,23 +345698,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125328] = 7, + [125273] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3461), 1, + STATE(3447), 1, sym_comment, - STATE(5899), 1, + STATE(6034), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346689,23 +345746,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125383] = 7, + [125328] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3462), 1, + STATE(3448), 1, sym_comment, - STATE(5822), 1, + STATE(6057), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346737,23 +345794,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125438] = 7, + [125383] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3463), 1, + STATE(3449), 1, sym_comment, - STATE(5823), 1, + STATE(5857), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346785,23 +345842,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125493] = 7, + [125438] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3464), 1, + STATE(3450), 1, sym_comment, - STATE(5833), 1, + STATE(5889), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346833,23 +345890,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125548] = 7, + [125493] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3465), 1, + STATE(3451), 1, sym_comment, - STATE(5834), 1, + STATE(5864), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346881,23 +345938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125603] = 7, + [125548] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3466), 1, + STATE(3452), 1, sym_comment, - STATE(5835), 1, + STATE(5867), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346929,23 +345986,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125658] = 7, + [125603] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3467), 1, + STATE(3453), 1, sym_comment, - STATE(5838), 1, + STATE(5872), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -346977,23 +346034,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125713] = 7, + [125658] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3468), 1, + STATE(3454), 1, sym_comment, - STATE(5839), 1, + STATE(5886), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347025,23 +346082,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125768] = 7, + [125713] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6462), 1, + ACTIONS(6449), 1, anon_sym_list, - STATE(3469), 1, + STATE(3455), 1, sym_comment, - STATE(6066), 1, + STATE(5979), 1, sym__all_type, - ACTIONS(6460), 2, + ACTIONS(6447), 2, anon_sym_table, anon_sym_record, - STATE(6865), 3, + STATE(6803), 3, sym_flat_type, sym_collection_type, sym_list_type, - ACTIONS(6458), 31, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347073,18 +346130,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_string, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - [125823] = 6, - ACTIONS(3), 1, + [125768] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6489), 1, - anon_sym_RBRACK, - ACTIONS(6493), 1, - sym__entry_separator, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(3470), 1, + ACTIONS(6449), 1, + anon_sym_list, + STATE(3456), 1, sym_comment, - ACTIONS(6491), 34, + STATE(5895), 1, + sym__all_type, + ACTIONS(6447), 2, + anon_sym_table, + anon_sym_record, + STATE(6803), 3, + sym_flat_type, + sym_collection_type, + sym_list_type, + ACTIONS(6445), 31, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347114,26 +346176,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, anon_sym_signature, anon_sym_string, - anon_sym_table, anon_sym_variable, anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [125875] = 4, + [125823] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3471), 1, + ACTIONS(6476), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6478), 1, + aux_sym__immediate_decimal_token2, + STATE(3457), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1731), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, - sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1669), 29, + ACTIONS(1733), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -347162,59 +346224,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, - [125923] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(6495), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(3472), 1, - sym_comment, - ACTIONS(6491), 34, - anon_sym_any, - anon_sym_binary, - anon_sym_block, - anon_sym_bool, - anon_sym_cell_DASHpath, - anon_sym_closure, - anon_sym_cond, - anon_sym_datetime, - anon_sym_directory, - anon_sym_duration, - anon_sym_error, - anon_sym_expr, - anon_sym_float, - anon_sym_decimal, - anon_sym_filesize, - anon_sym_full_DASHcell_DASHpath, - anon_sym_glob, - anon_sym_int, - anon_sym_import_DASHpattern, - anon_sym_keyword, - anon_sym_math, - anon_sym_nothing, - anon_sym_number, - anon_sym_one_DASHof, - anon_sym_operator, - anon_sym_path, - anon_sym_range, - anon_sym_signature, - anon_sym_string, - anon_sym_table, - anon_sym_variable, - anon_sym_var_DASHwith_DASHopt_DASHtype, - anon_sym_record, - anon_sym_list, - [125975] = 4, + [125875] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3473), 1, + STATE(3458), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(1597), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347223,7 +346238,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1735), 29, + ACTIONS(1599), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -347253,36 +346268,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126023] = 11, + [125923] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(6497), 1, - anon_sym_DOT_DOT2, - ACTIONS(6501), 1, - sym_filesize_unit, - ACTIONS(6503), 1, - sym_duration_unit, - STATE(3474), 1, + ACTIONS(6480), 1, + anon_sym_DOT, + ACTIONS(6482), 1, + aux_sym__immediate_decimal_token2, + STATE(3459), 1, sym_comment, - STATE(7276), 1, - sym__expr_parenthesized_immediate, - ACTIONS(6499), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1693), 24, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347295,6 +346302,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347304,14 +346312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [126085] = 5, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [125975] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6481), 1, - aux_sym__immediate_decimal_token2, - STATE(3475), 1, + STATE(3460), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1685), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347320,10 +346328,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 28, + ACTIONS(1687), 29, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347349,24 +346358,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126135] = 6, + [126023] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6505), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6507), 1, - aux_sym__immediate_decimal_token2, - STATE(3476), 1, + STATE(3461), 1, sym_comment, - ACTIONS(1757), 7, + ACTIONS(1727), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, anon_sym_DOT_DOT2, + sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1759), 28, + ACTIONS(1729), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -347395,14 +346401,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [126187] = 4, + sym_duration_unit, + [126071] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(6484), 1, + anon_sym_DOT_DOT2, + ACTIONS(6488), 1, + sym_filesize_unit, + ACTIONS(6490), 1, + sym_duration_unit, + STATE(3462), 1, + sym_comment, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6486), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1675), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [126133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2485), 1, + ACTIONS(2491), 1, sym__entry_separator, - STATE(3477), 1, + STATE(3463), 1, sym_comment, - ACTIONS(2483), 36, + ACTIONS(2489), 36, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_any, @@ -347439,12 +346497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [126235] = 4, + [126181] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3478), 1, + ACTIONS(6459), 1, + aux_sym__immediate_decimal_token2, + STATE(3464), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347453,11 +346513,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 29, - sym__newline, + ACTIONS(1607), 28, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -347483,14 +346542,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, + [126231] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6492), 1, + anon_sym_RBRACK, + ACTIONS(6496), 1, + sym__entry_separator, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(3465), 1, + sym_comment, + ACTIONS(6494), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, [126283] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6509), 1, + ACTIONS(6498), 1, aux_sym__immediate_decimal_token2, - STATE(3479), 1, + STATE(3466), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1685), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347499,7 +346604,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1669), 28, + ACTIONS(1687), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -347527,65 +346632,65 @@ 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, - [126333] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6511), 1, - anon_sym_DOT, - ACTIONS(6513), 1, - aux_sym__immediate_decimal_token2, - STATE(3480), 1, - sym_comment, - ACTIONS(1725), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 28, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [126333] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(6500), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(3467), 1, + sym_comment, + ACTIONS(6494), 34, + anon_sym_any, + anon_sym_binary, + anon_sym_block, + anon_sym_bool, + anon_sym_cell_DASHpath, + anon_sym_closure, + anon_sym_cond, + anon_sym_datetime, + anon_sym_directory, + anon_sym_duration, + anon_sym_error, + anon_sym_expr, + anon_sym_float, + anon_sym_decimal, + anon_sym_filesize, + anon_sym_full_DASHcell_DASHpath, + anon_sym_glob, + anon_sym_int, + anon_sym_import_DASHpattern, + anon_sym_keyword, + anon_sym_math, + anon_sym_nothing, + anon_sym_number, + anon_sym_one_DASHof, + anon_sym_operator, + anon_sym_path, + anon_sym_range, + anon_sym_signature, + anon_sym_string, + anon_sym_table, + anon_sym_variable, + anon_sym_var_DASHwith_DASHopt_DASHtype, + anon_sym_record, + anon_sym_list, [126385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(6515), 1, + ACTIONS(6502), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(3481), 1, + STATE(3468), 1, sym_comment, - ACTIONS(6491), 34, + ACTIONS(6494), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347623,15 +346728,15 @@ static const uint16_t ts_small_parse_table[] = { [126437] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(6517), 1, + ACTIONS(6504), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(3482), 1, + STATE(3469), 1, sym_comment, - ACTIONS(6491), 34, + ACTIONS(6494), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347669,9 +346774,9 @@ static const uint16_t ts_small_parse_table[] = { [126489] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3483), 1, + STATE(3470), 1, sym_comment, - ACTIONS(1595), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347680,7 +346785,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1597), 29, + ACTIONS(1607), 29, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -347710,56 +346815,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126537] = 5, + [126537] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6519), 1, + ACTIONS(5862), 1, aux_sym__immediate_decimal_token2, - STATE(3484), 1, - sym_comment, - ACTIONS(1765), 7, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 28, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [126586] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3485), 1, + ACTIONS(6104), 1, + anon_sym_DOT, + STATE(3471), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1605), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347767,8 +346832,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym_filesize_unit, - aux_sym_unquoted_token2, - ACTIONS(1669), 28, + ACTIONS(1607), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -347784,7 +346848,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -347797,12 +346860,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126633] = 4, + [126588] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6521), 1, + ACTIONS(6506), 1, sym__newline, - STATE(3486), 2, + STATE(3472), 2, sym_comment, aux_sym_shebang_repeat1, ACTIONS(1276), 34, @@ -347840,21 +346903,68 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [126680] = 4, + [126635] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3487), 1, + ACTIONS(6509), 1, + aux_sym__immediate_decimal_token2, + STATE(3473), 1, sym_comment, - ACTIONS(1595), 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, aux_sym_unquoted_token2, - ACTIONS(1597), 28, + ACTIONS(1774), 28, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126684] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6511), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6513), 1, + aux_sym__immediate_decimal_token2, + STATE(3474), 1, + sym_comment, + ACTIONS(1731), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -347882,13 +346992,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, - [126727] = 4, + [126735] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3488), 1, + STATE(3475), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(1605), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347897,7 +347006,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1735), 28, + ACTIONS(1607), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -347926,16 +347035,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126774] = 5, + [126782] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(3489), 1, + STATE(3476), 1, sym_comment, - ACTIONS(6491), 34, + ACTIONS(6494), 34, anon_sym_any, anon_sym_binary, anon_sym_block, @@ -347970,12 +347079,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [126823] = 4, + [126831] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3490), 1, + STATE(3477), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1597), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -347984,7 +347093,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT2, sym_filesize_unit, aux_sym_unquoted_token2, - ACTIONS(1589), 28, + ACTIONS(1599), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348013,16 +347122,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126870] = 6, + [126878] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5951), 1, + ACTIONS(6482), 1, aux_sym__immediate_decimal_token2, - ACTIONS(6044), 1, - anon_sym_DOT, - STATE(3491), 1, + STATE(3478), 1, + sym_comment, + ACTIONS(1749), 7, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 28, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [126927] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3479), 1, sym_comment, - ACTIONS(1587), 7, + ACTIONS(1685), 8, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348030,7 +347179,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, sym_filesize_unit, - ACTIONS(1589), 27, + aux_sym_unquoted_token2, + ACTIONS(1687), 28, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348046,6 +347196,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348058,14 +347209,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_duration_unit, - [126921] = 5, + [126974] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6513), 1, + STATE(3480), 1, + sym_comment, + ACTIONS(1727), 8, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + aux_sym_unquoted_token2, + ACTIONS(1729), 28, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_duration_unit, + [127021] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6515), 1, + anon_sym_DOT, + ACTIONS(6517), 1, aux_sym__immediate_decimal_token2, - STATE(3492), 1, + STATE(3481), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348073,11 +347269,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 28, - sym__newline, + ACTIONS(1751), 27, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348102,16 +347297,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [126970] = 6, + [127072] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6524), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6526), 1, + ACTIONS(6517), 1, aux_sym__immediate_decimal_token2, - STATE(3493), 1, + STATE(3482), 1, sym_comment, - ACTIONS(1757), 7, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348119,7 +347312,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 27, + ACTIONS(1751), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348147,16 +347340,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127021] = 6, + [127120] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6528), 1, - anon_sym_DOT, - ACTIONS(6530), 1, + ACTIONS(6519), 1, aux_sym__immediate_decimal_token2, - STATE(3494), 1, + STATE(3483), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348164,7 +347355,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 27, + ACTIONS(1774), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348192,12 +347383,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127072] = 4, + [127168] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3495), 1, + STATE(3484), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(1817), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348205,7 +347396,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 28, + ACTIONS(1819), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -348234,12 +347425,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127118] = 4, + [127214] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3496), 1, + STATE(3485), 1, sym_comment, - ACTIONS(1757), 7, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348247,7 +347438,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 28, + ACTIONS(1774), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -348276,12 +347467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127164] = 4, + [127260] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3497), 1, + STATE(3486), 1, sym_comment, - ACTIONS(1861), 7, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348289,7 +347480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1863), 28, + ACTIONS(1751), 28, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -348318,25 +347509,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127210] = 5, + [127306] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6530), 1, - aux_sym__immediate_decimal_token2, - STATE(3498), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(6521), 1, + anon_sym_DOT_DOT2, + STATE(3487), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(6523), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 27, + ACTIONS(1801), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348349,7 +347546,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348359,22 +347555,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, - [127258] = 4, + [127360] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3499), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(6525), 1, + anon_sym_DOT_DOT2, + STATE(3488), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(6527), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 28, + ACTIONS(1813), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -348391,7 +347592,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348401,16 +347601,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, - [127304] = 5, + [127414] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6532), 1, - aux_sym__immediate_decimal_token2, - STATE(3500), 1, + STATE(3489), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(1731), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348418,10 +347614,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 27, + ACTIONS(1733), 28, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348446,10 +347643,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127352] = 3, + [127460] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(3501), 1, + STATE(3490), 1, sym_comment, ACTIONS(1268), 35, sym__newline, @@ -348487,31 +347684,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var_DASHwith_DASHopt_DASHtype, anon_sym_record, anon_sym_list, - [127396] = 8, + [127504] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(6534), 1, - anon_sym_DOT_DOT2, - STATE(3502), 1, + STATE(3491), 1, sym_comment, - ACTIONS(6536), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 5, + ACTIONS(1772), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1873), 25, - sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 27, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348524,6 +347713,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348533,31 +347723,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127450] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127549] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(6538), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(6529), 1, anon_sym_DOT_DOT2, - STATE(3503), 1, + STATE(3492), 1, sym_comment, - ACTIONS(6540), 2, + ACTIONS(6531), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 5, + ACTIONS(1793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 25, - sym__newline, + ACTIONS(1801), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348579,23 +347770,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127504] = 6, + [127602] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6542), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6544), 1, + ACTIONS(6533), 1, + anon_sym_DOT, + ACTIONS(6535), 1, aux_sym__immediate_decimal_token2, - STATE(3504), 1, + STATE(3493), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1759), 26, + ACTIONS(1751), 26, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -348622,12 +347813,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127553] = 4, + [127651] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3505), 1, + STATE(3494), 1, sym_comment, - ACTIONS(1765), 7, + ACTIONS(1749), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348635,7 +347826,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 27, + ACTIONS(1751), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348663,16 +347854,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127598] = 6, + [127696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6546), 1, + ACTIONS(6537), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6548), 1, + ACTIONS(6539), 1, aux_sym__immediate_decimal_token2, - STATE(3506), 1, + STATE(3495), 1, sym_comment, - ACTIONS(1595), 8, + ACTIONS(1597), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -348681,7 +347872,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1597), 24, + ACTIONS(1599), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -348706,30 +347897,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [127647] = 8, + [127745] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(6550), 1, - anon_sym_DOT_DOT2, - STATE(3507), 1, + ACTIONS(6541), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6543), 1, + aux_sym__immediate_decimal_token2, + STATE(3496), 1, sym_comment, - ACTIONS(6552), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 5, + ACTIONS(1731), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 24, + aux_sym_unquoted_token2, + ACTIONS(1733), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -348742,6 +347930,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348751,20 +347940,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127700] = 4, + [127794] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3508), 1, + ACTIONS(6165), 1, + sym_filesize_unit, + ACTIONS(6167), 1, + sym_duration_unit, + ACTIONS(6545), 1, + anon_sym_DOT_DOT2, + STATE(3497), 1, sym_comment, - ACTIONS(1757), 7, + ACTIONS(6547), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 27, + ACTIONS(1675), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348780,7 +347976,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348790,29 +347985,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [127745] = 8, + [127847] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6162), 1, - sym_filesize_unit, - ACTIONS(6164), 1, - sym_duration_unit, - ACTIONS(6554), 1, - anon_sym_DOT_DOT2, - STATE(3509), 1, + STATE(3498), 1, sym_comment, - ACTIONS(6556), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 5, + ACTIONS(1731), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1693), 24, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348828,6 +348014,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348837,20 +348024,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [127798] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [127892] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3510), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(6549), 1, + anon_sym_DOT_DOT2, + STATE(3499), 1, sym_comment, - ACTIONS(1725), 7, + ACTIONS(6551), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 27, + ACTIONS(1813), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348866,7 +348062,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -348876,14 +348071,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, - [127843] = 4, + [127945] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3511), 1, + STATE(3500), 1, sym_comment, - ACTIONS(1861), 7, + ACTIONS(1817), 7, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, @@ -348891,7 +348084,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_PLUS2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1863), 27, + ACTIONS(1819), 27, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -348919,16 +348112,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHor2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [127888] = 6, + [127990] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6558), 1, + ACTIONS(6553), 1, anon_sym_DOT, - ACTIONS(6560), 1, + ACTIONS(6555), 1, aux_sym__immediate_decimal_token2, - STATE(3512), 1, + STATE(3501), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1605), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -348937,7 +348130,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1589), 24, + ACTIONS(1607), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -348962,144 +348155,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [127937] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(6562), 1, - anon_sym_DOT_DOT2, - STATE(3513), 1, - sym_comment, - ACTIONS(6564), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1873), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [127990] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6566), 1, - anon_sym_DOT, - ACTIONS(6568), 1, - aux_sym__immediate_decimal_token2, - STATE(3514), 1, - sym_comment, - ACTIONS(1725), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, [128039] = 6, - ACTIONS(251), 1, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6570), 1, - anon_sym_DOT, - ACTIONS(6572), 1, + ACTIONS(6557), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6559), 1, aux_sym__immediate_decimal_token2, - STATE(3515), 1, + STATE(3502), 1, sym_comment, - ACTIONS(1725), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, + ACTIONS(1597), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1599), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, [128087] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6560), 1, + ACTIONS(6555), 1, aux_sym__immediate_decimal_token2, - STATE(3516), 1, + STATE(3503), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(1605), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -349108,7 +348213,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1589), 24, + ACTIONS(1607), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349133,16 +348238,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [128133] = 6, + [128133] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6535), 1, + aux_sym__immediate_decimal_token2, + STATE(3504), 1, + sym_comment, + ACTIONS(1749), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1751), 26, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128179] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6574), 1, + ACTIONS(6561), 1, anon_sym_DOT, - ACTIONS(6576), 1, + ACTIONS(6563), 1, aux_sym__immediate_decimal_token2, - STATE(3517), 1, + STATE(3505), 1, sym_comment, - ACTIONS(1587), 7, + ACTIONS(1605), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -349150,7 +348296,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1589), 24, + ACTIONS(1607), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349175,21 +348321,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [128181] = 5, + [128227] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6578), 1, + ACTIONS(6565), 1, aux_sym__immediate_decimal_token2, - STATE(3518), 1, + STATE(3506), 1, sym_comment, - ACTIONS(1765), 6, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1767), 26, + ACTIONS(1774), 26, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -349216,14 +348362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128227] = 5, + [128273] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6580), 1, + ACTIONS(6567), 1, aux_sym__immediate_decimal_token2, - STATE(3519), 1, + STATE(3507), 1, sym_comment, - ACTIONS(1667), 8, + ACTIONS(1685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -349232,7 +348378,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1669), 24, + ACTIONS(1687), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349257,16 +348403,135 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [128273] = 6, + [128319] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6569), 1, + anon_sym_DOT, + ACTIONS(6571), 1, + aux_sym__immediate_decimal_token2, + STATE(3508), 1, + sym_comment, + ACTIONS(1749), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1751), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128367] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6573), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6575), 1, + aux_sym__immediate_decimal_token2, + STATE(3509), 1, + sym_comment, + ACTIONS(1731), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1733), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128415] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3510), 1, + sym_comment, + ACTIONS(2218), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_LPAREN2, + ACTIONS(2216), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + aux_sym_unquoted_token4, + [128458] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6582), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6584), 1, - aux_sym__immediate_decimal_token2, - STATE(3520), 1, + STATE(3511), 1, sym_comment, - ACTIONS(1595), 7, + ACTIONS(1605), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -349274,7 +348539,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1597), 24, + anon_sym_COLON2, + ACTIONS(1607), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349299,26 +348565,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [128321] = 6, + [128501] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6586), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6588), 1, - aux_sym__immediate_decimal_token2, - STATE(3521), 1, + STATE(3512), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(1731), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1759), 25, + ACTIONS(1733), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349341,21 +348604,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128369] = 5, + [128544] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6568), 1, - aux_sym__immediate_decimal_token2, - STATE(3522), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3513), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 26, + ACTIONS(1813), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -349372,7 +348636,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349382,62 +348645,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128415] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3523), 1, - sym_comment, - ACTIONS(1667), 8, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1669), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [128458] = 6, - ACTIONS(3), 1, + [128591] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3524), 1, + STATE(3514), 1, sym_comment, - ACTIONS(2247), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2245), 28, + ACTIONS(1772), 6, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1774), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349446,76 +348670,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128505] = 27, + [128634] = 27, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6598), 1, + ACTIONS(6585), 1, anon_sym_LBRACE, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3525), 1, + STATE(3515), 1, sym_comment, - STATE(3549), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3814), 1, + aux_sym_shebang_repeat1, + STATE(4022), 1, sym_val_number, - STATE(4167), 1, + STATE(4259), 1, sym__binary_predicate_parenthesized, - STATE(4193), 1, + STATE(4269), 1, sym__predicate, - STATE(4673), 1, + STATE(4662), 1, sym_val_closure, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -349524,65 +348746,19 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [128594] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_COLON2, - ACTIONS(3029), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6604), 1, - sym_filesize_unit, - ACTIONS(6606), 1, - sym_duration_unit, - STATE(3526), 1, - sym_comment, - ACTIONS(3027), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3025), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [128645] = 6, + [128723] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, - STATE(3527), 1, + STATE(3516), 1, sym_comment, - ACTIONS(2194), 5, + ACTIONS(1817), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2198), 25, + aux_sym_unquoted_token2, + ACTIONS(1819), 26, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -349599,6 +348775,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349608,19 +348785,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128692] = 4, + [128766] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3528), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3517), 1, sym_comment, - ACTIONS(1861), 6, + ACTIONS(1793), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1863), 26, + ACTIONS(1801), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -349637,7 +348817,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349647,24 +348826,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128735] = 5, + [128813] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6572), 1, - aux_sym__immediate_decimal_token2, - STATE(3529), 1, + STATE(3518), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1727), 25, + ACTIONS(1751), 26, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349687,12 +348865,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128780] = 4, + [128856] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3530), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(3519), 1, + sym_comment, + ACTIONS(2196), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(2192), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [128903] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3520), 1, sym_comment, - ACTIONS(1733), 8, + ACTIONS(1685), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -349701,7 +348920,7 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_cmd_identifier_token41, sym_filesize_unit, anon_sym_COLON2, - ACTIONS(1735), 24, + ACTIONS(1687), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349726,24 +348945,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [128823] = 5, + [128946] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6608), 1, - aux_sym__immediate_decimal_token2, - STATE(3531), 1, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(3521), 1, sym_comment, - ACTIONS(1765), 6, + ACTIONS(2180), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1767), 25, + ACTIONS(2184), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349756,7 +348977,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349766,16 +348986,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [128868] = 4, + [128993] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3532), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(3522), 1, sym_comment, - ACTIONS(2267), 3, + ACTIONS(2202), 2, sym__newline, anon_sym_LBRACE, - anon_sym_LPAREN2, - ACTIONS(2265), 29, + ACTIONS(2200), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -349804,61 +349027,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [128911] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(3533), 1, - sym_comment, - ACTIONS(2188), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2192), 25, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [128958] = 6, + [129040] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, + ACTIONS(2232), 1, aux_sym_unquoted_token4, - STATE(3534), 1, + STATE(3523), 1, sym_comment, - ACTIONS(2233), 2, + ACTIONS(2230), 2, sym__newline, anon_sym_LBRACE, - ACTIONS(2229), 28, + ACTIONS(2226), 28, anon_sym_GT2, anon_sym_DASH2, anon_sym_in2, @@ -349887,14 +349068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129005] = 5, + [129087] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6610), 1, - aux_sym__immediate_decimal_token2, - STATE(3535), 1, + STATE(3524), 1, sym_comment, - ACTIONS(1667), 7, + ACTIONS(1597), 8, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -349902,7 +349081,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1669), 24, + anon_sym_COLON2, + ACTIONS(1599), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -349927,26 +349107,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [129050] = 6, + [129130] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(3536), 1, + ACTIONS(6571), 1, + aux_sym__immediate_decimal_token2, + STATE(3525), 1, sym_comment, - ACTIONS(1865), 5, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1873), 25, - sym__newline, + aux_sym_unquoted_token2, + ACTIONS(1751), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -349959,6 +349137,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -349968,27 +349147,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129097] = 7, + [129175] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5115), 1, - anon_sym_EQ_GT, - ACTIONS(6612), 1, - anon_sym_DOT_DOT2, - STATE(3537), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3526), 1, sym_comment, - ACTIONS(6614), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 5, + ACTIONS(2188), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5119), 23, + ACTIONS(2190), 25, + sym__newline, anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350010,14 +349188,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129146] = 6, + [129222] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6612), 1, + ACTIONS(6591), 1, anon_sym_DOT_DOT2, - STATE(3538), 1, + STATE(3527), 1, sym_comment, - ACTIONS(6614), 2, + ACTIONS(6593), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, ACTIONS(1004), 5, @@ -350051,64 +349229,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129193] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3539), 1, - sym_comment, - ACTIONS(2241), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(2237), 28, - anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129240] = 6, + [129269] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6612), 1, + ACTIONS(6595), 1, anon_sym_DOT_DOT2, - STATE(3540), 1, + STATE(3528), 1, sym_comment, - ACTIONS(6614), 2, + ACTIONS(6597), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5117), 5, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5119), 24, + ACTIONS(1813), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350133,23 +349270,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129287] = 6, + [129316] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6616), 1, + ACTIONS(6591), 1, anon_sym_DOT_DOT2, - STATE(3541), 1, + STATE(3529), 1, sym_comment, - ACTIONS(6618), 2, + ACTIONS(6593), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 5, + ACTIONS(5092), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1873), 24, + ACTIONS(5094), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350174,23 +349311,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129334] = 6, - ACTIONS(3), 1, + [129363] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3542), 1, + ACTIONS(6599), 1, + anon_sym_DOT_DOT2, + STATE(3530), 1, sym_comment, - ACTIONS(1000), 2, - sym__newline, - anon_sym_LBRACE, - ACTIONS(1004), 28, + ACTIONS(6601), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1793), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1801), 24, anon_sym_DASH2, anon_sym_in2, - anon_sym_STAR2, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350199,28 +349339,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129381] = 4, + [129410] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3543), 1, + ACTIONS(6563), 1, + aux_sym__immediate_decimal_token2, + STATE(3531), 1, sym_comment, - ACTIONS(1595), 8, + ACTIONS(1605), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -350228,8 +349367,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1597), 24, + ACTIONS(1607), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -350254,23 +349392,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [129424] = 4, + [129455] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3544), 1, + ACTIONS(6603), 1, + aux_sym__immediate_decimal_token2, + STATE(3532), 1, sym_comment, - ACTIONS(1757), 6, + ACTIONS(1772), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1759), 26, - sym__newline, + ACTIONS(1774), 25, anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -350293,22 +349432,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129467] = 6, + [129500] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - STATE(3545), 1, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(3533), 1, sym_comment, - ACTIONS(2184), 5, + ACTIONS(2170), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2186), 25, + ACTIONS(2174), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -350334,21 +349473,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129514] = 4, + [129547] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3546), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(3534), 1, + sym_comment, + ACTIONS(1000), 2, + sym__newline, + anon_sym_LBRACE, + ACTIONS(1004), 28, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129594] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + anon_sym_COLON2, + ACTIONS(3008), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6605), 1, + sym_filesize_unit, + ACTIONS(6607), 1, + sym_duration_unit, + STATE(3535), 1, sym_comment, - ACTIONS(1587), 8, + ACTIONS(3006), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - anon_sym_COLON2, - ACTIONS(1589), 24, + ACTIONS(3004), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -350372,15 +349557,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - sym_duration_unit, - [129557] = 5, + [129645] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6576), 1, + ACTIONS(6609), 1, aux_sym__immediate_decimal_token2, - STATE(3547), 1, + STATE(3536), 1, sym_comment, - ACTIONS(1587), 7, + ACTIONS(1685), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -350388,7 +349572,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1589), 24, + ACTIONS(1687), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -350413,99 +349597,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [129602] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3548), 1, - sym_comment, - ACTIONS(1765), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1767), 26, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [129645] = 27, + [129690] = 27, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6598), 1, + ACTIONS(6585), 1, anon_sym_LBRACE, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3549), 1, + STATE(3515), 1, + aux_sym_shebang_repeat1, + STATE(3537), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, - aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4237), 1, - sym__binary_predicate_parenthesized, - STATE(4238), 1, + STATE(4112), 1, sym__predicate, - STATE(4604), 1, + STATE(4232), 1, + sym__binary_predicate_parenthesized, + STATE(4613), 1, sym_val_closure, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -350514,23 +349659,23 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [129734] = 6, + [129779] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6620), 1, + ACTIONS(6611), 1, anon_sym_DOT_DOT2, - STATE(3550), 1, + STATE(3538), 1, sym_comment, - ACTIONS(6622), 2, + ACTIONS(6613), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 5, + ACTIONS(2059), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2176), 24, + ACTIONS(2065), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350555,23 +349700,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129781] = 6, + [129826] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6624), 1, + ACTIONS(6615), 1, anon_sym_DOT_DOT2, - STATE(3551), 1, + STATE(3539), 1, sym_comment, - ACTIONS(6626), 2, + ACTIONS(6617), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 5, + ACTIONS(2047), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2150), 24, + ACTIONS(2053), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350596,23 +349741,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129828] = 6, + [129873] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6628), 1, + ACTIONS(6619), 1, anon_sym_DOT_DOT2, - STATE(3552), 1, + STATE(3540), 1, sym_comment, - ACTIONS(6630), 2, + ACTIONS(6621), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 5, + ACTIONS(2080), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2158), 24, + ACTIONS(2086), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350637,23 +349782,180 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129875] = 6, + [129920] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6632), 1, + ACTIONS(6623), 1, anon_sym_DOT_DOT2, - STATE(3553), 1, + STATE(3541), 1, + sym_comment, + ACTIONS(6625), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2078), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [129967] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3542), 1, + sym_comment, + ACTIONS(1727), 8, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + anon_sym_COLON2, + ACTIONS(1729), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [130010] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5090), 1, + anon_sym_EQ_GT, + ACTIONS(6591), 1, + anon_sym_DOT_DOT2, + STATE(3543), 1, sym_comment, - ACTIONS(6634), 2, + ACTIONS(6593), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 5, + ACTIONS(5092), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5094), 23, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130059] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(3544), 1, + sym_comment, + ACTIONS(1004), 29, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130103] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3545), 1, + sym_comment, + ACTIONS(1749), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2166), 24, + aux_sym_unquoted_token2, + ACTIONS(1751), 25, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350669,6 +349971,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, anon_sym_mod2, @@ -350678,19 +349981,446 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129922] = 4, + [130145] = 20, ACTIONS(251), 1, anon_sym_POUND, - STATE(3554), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6637), 1, + anon_sym_xor2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, + STATE(3546), 1, + sym_comment, + STATE(3629), 1, + aux_sym_shebang_repeat1, + ACTIONS(5297), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6627), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6645), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6631), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [130219] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3547), 1, + sym_comment, + ACTIONS(5239), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5237), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130275] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3548), 1, + sym_comment, + ACTIONS(1731), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1733), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130317] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3549), 1, + sym_comment, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5239), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5237), 21, + sym__newline, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130367] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3550), 1, + sym_comment, + ACTIONS(1772), 6, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + aux_sym_unquoted_token2, + ACTIONS(1774), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130409] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3551), 1, sym_comment, - ACTIONS(1725), 6, + ACTIONS(1817), 6, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, aux_sym_unquoted_token2, - ACTIONS(1727), 26, + ACTIONS(1819), 25, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_LPAREN2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130451] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3552), 1, + sym_comment, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5237), 14, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130509] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6677), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6679), 1, + sym_filesize_unit, + ACTIONS(6681), 1, + sym_duration_unit, + STATE(3553), 1, + sym_comment, + ACTIONS(6675), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6673), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [130557] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6687), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6689), 1, + sym_filesize_unit, + ACTIONS(6691), 1, + sym_duration_unit, + STATE(3554), 1, + sym_comment, + ACTIONS(6685), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6683), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [130605] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(3555), 1, + sym_comment, + ACTIONS(2180), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2184), 24, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130651] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3556), 1, + sym_comment, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5239), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(5237), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -350707,32 +350437,103 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [130697] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2218), 1, anon_sym_LPAREN2, + STATE(3557), 1, + sym_comment, + ACTIONS(2216), 30, + anon_sym_GT2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [129965] = 6, + aux_sym_unquoted_token4, + [130739] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3558), 1, + sym_comment, + ACTIONS(1685), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1687), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [130781] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(3555), 1, + STATE(3559), 1, sym_comment, - ACTIONS(1786), 5, + ACTIONS(1663), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 25, + ACTIONS(1675), 25, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -350758,23 +350559,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130012] = 6, + [130825] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6636), 1, - anon_sym_DOT_DOT2, - STATE(3556), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3560), 1, sym_comment, - ACTIONS(6638), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 5, + ACTIONS(2188), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 24, + ACTIONS(2190), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -350799,24 +350599,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130059] = 7, + [130871] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6644), 1, + ACTIONS(6697), 1, aux_sym_cmd_identifier_token41, - ACTIONS(6646), 1, + ACTIONS(6699), 1, sym_filesize_unit, - ACTIONS(6648), 1, + ACTIONS(6701), 1, sym_duration_unit, - STATE(3557), 1, + STATE(3561), 1, sym_comment, - ACTIONS(6642), 5, + ACTIONS(6695), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(6640), 23, + ACTIONS(6693), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -350840,276 +350640,115 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [130107] = 18, + [130919] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - STATE(3558), 1, - sym_comment, - STATE(3595), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3562), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5296), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [130177] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, - anon_sym_bit_DASHor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3559), 1, - sym_comment, - ACTIONS(6676), 2, + ACTIONS(6669), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6705), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5292), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [130247] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5401), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - STATE(3560), 1, - sym_comment, - STATE(3596), 1, - aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5296), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6654), 4, + ACTIONS(6703), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [130319] = 19, + ACTIONS(5237), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [130987] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - ACTIONS(6706), 1, - anon_sym_xor2, - STATE(1706), 1, + ACTIONS(6713), 1, + anon_sym_and2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3561), 1, + STATE(3563), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5292), 3, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5237), 4, sym__newline, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [130391] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - ACTIONS(6708), 1, - anon_sym_xor2, - STATE(3562), 1, - sym_comment, - STATE(3597), 1, - aux_sym_shebang_repeat1, - ACTIONS(5296), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6703), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [130465] = 4, + [131057] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3563), 1, + STATE(3564), 1, sym_comment, - ACTIONS(1595), 7, + ACTIONS(1597), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -351117,7 +350756,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1597), 24, + ACTIONS(1599), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -351142,128 +350781,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [130507] = 13, - ACTIONS(251), 1, + [131099] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3564), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(3565), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(2226), 29, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_STAR2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5292), 10, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [130567] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5401), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - STATE(3565), 1, - sym_comment, - STATE(3599), 1, - aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6662), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5296), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130629] = 10, - ACTIONS(251), 1, + [131143] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(3566), 1, sym_comment, - ACTIONS(5294), 2, + ACTIONS(2192), 29, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5292), 20, - sym__newline, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, + anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -351272,31 +350843,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, + anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_SLASH2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130683] = 5, + [131187] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, + ACTIONS(5376), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, STATE(3567), 1, sym_comment, - ACTIONS(1681), 5, + STATE(3588), 1, + aux_sym_shebang_repeat1, + ACTIONS(5291), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6633), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1693), 25, - sym__newline, - anon_sym_DASH2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6645), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5289), 17, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351311,41 +350902,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130727] = 11, + [131245] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, STATE(3568), 1, sym_comment, - STATE(3600), 1, + STATE(3590), 1, aux_sym_shebang_repeat1, - ACTIONS(5298), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5296), 19, + ACTIONS(5291), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5289), 20, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351365,373 +350948,366 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130783] = 14, + [131297] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5376), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, STATE(3569), 1, sym_comment, - ACTIONS(6676), 2, + STATE(3592), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5292), 8, - sym__newline, + ACTIONS(5289), 13, + anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130845] = 15, + [131357] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, STATE(3570), 1, sym_comment, - STATE(3602), 1, + STATE(3595), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5291), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + anon_sym_PLUS2, + ACTIONS(5289), 22, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 7, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [130909] = 15, + [131405] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5376), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, STATE(3571), 1, sym_comment, - ACTIONS(6676), 2, + STATE(3597), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(5289), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5292), 7, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [130973] = 16, + [131475] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, STATE(3572), 1, sym_comment, - STATE(3605), 1, + STATE(3599), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(5289), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 6, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131039] = 16, - ACTIONS(251), 1, + [131547] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(3573), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(2200), 29, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + anon_sym_DASH2, + anon_sym_in2, + anon_sym_EQ_GT, anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6688), 2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5292), 6, - 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, - [131105] = 17, + [131591] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6637), 1, + anon_sym_xor2, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, STATE(3574), 1, sym_comment, - STATE(3606), 1, + STATE(3601), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(5289), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [131173] = 12, + [131665] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, STATE(3575), 1, sym_comment, - STATE(3607), 1, + STATE(3603), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 17, + ACTIONS(6631), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(5289), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131231] = 9, + [131727] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5376), 1, sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, STATE(3576), 1, sym_comment, - STATE(3611), 1, + STATE(3605), 1, aux_sym_shebang_repeat1, - ACTIONS(6656), 2, + ACTIONS(5291), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5308), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5306), 20, - anon_sym_DASH2, + ACTIONS(5289), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -351751,292 +351327,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131283] = 13, + [131783] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, STATE(3577), 1, sym_comment, STATE(3613), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5306), 13, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [131343] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - STATE(3578), 1, - sym_comment, - STATE(3615), 1, - aux_sym_shebang_repeat1, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5308), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5306), 22, - anon_sym_DASH2, + ACTIONS(6631), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5289), 7, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131391] = 18, + [131847] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - STATE(3579), 1, - sym_comment, - STATE(3618), 1, + ACTIONS(6713), 1, + anon_sym_and2, + ACTIONS(6715), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3578), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5237), 3, + sym__newline, anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [131461] = 19, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [131919] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - STATE(3580), 1, + STATE(3579), 1, sym_comment, - STATE(3620), 1, + STATE(3619), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5306), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [131533] = 20, + ACTIONS(5289), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [131985] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(5376), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - ACTIONS(6708), 1, - anon_sym_xor2, - STATE(3581), 1, + STATE(3580), 1, sym_comment, STATE(3623), 1, aux_sym_shebang_repeat1, - ACTIONS(5306), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [131607] = 14, + ACTIONS(5289), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [132053] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3582), 1, - sym_comment, - STATE(3625), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3581), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 9, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352046,32 +351577,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131669] = 11, + [132113] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3583), 1, - sym_comment, - STATE(3627), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5308), 2, + STATE(3582), 1, + sym_comment, + ACTIONS(5239), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5306), 19, + ACTIONS(5237), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -352091,48 +351621,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131725] = 15, + [132167] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3584), 1, - sym_comment, - STATE(3629), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3583), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 7, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -352140,173 +351669,226 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131789] = 16, + [132229] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - STATE(3585), 1, - sym_comment, - STATE(3634), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3584), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6703), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(5237), 7, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132293] = 16, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6709), 1, + anon_sym_bit_DASHxor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3585), 1, + sym_comment, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 6, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5237), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131855] = 17, + [132359] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5347), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(3586), 1, sym_comment, - STATE(3636), 1, - aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(5255), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(5253), 18, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5306), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131923] = 17, + [132415] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - STATE(3573), 1, - aux_sym_shebang_repeat1, STATE(3587), 1, sym_comment, - ACTIONS(6650), 2, + STATE(3643), 1, + aux_sym_shebang_repeat1, + ACTIONS(5259), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(5257), 17, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5260), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [131991] = 5, - ACTIONS(3), 1, + [132473] = 11, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(3588), 1, sym_comment, - ACTIONS(2237), 29, + ACTIONS(5233), 2, anon_sym_GT2, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LT2, + ACTIONS(6659), 2, anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5231), 18, + sym__newline, + anon_sym_in2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352315,37 +351897,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132529] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + STATE(3547), 1, + aux_sym_shebang_repeat1, + STATE(3589), 1, + sym_comment, + ACTIONS(5251), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, + ACTIONS(5249), 17, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132035] = 5, - ACTIONS(3), 1, + [132587] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3589), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3590), 1, sym_comment, - ACTIONS(2245), 29, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5233), 3, anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5231), 21, + sym__newline, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352354,41 +351983,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132079] = 6, + [132637] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6530), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(6710), 1, - anon_sym_DOT, - STATE(3590), 1, + ACTIONS(5348), 1, + sym__newline, + STATE(3549), 1, + aux_sym_shebang_repeat1, + STATE(3591), 1, sym_comment, - ACTIONS(1725), 5, - anon_sym_GT2, + ACTIONS(6633), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6645), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5251), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1727), 24, + ACTIONS(5249), 20, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -352401,42 +352030,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132125] = 11, + [132689] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3591), 1, + STATE(3592), 1, sym_comment, - ACTIONS(5302), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5300), 18, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5231), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -352446,36 +352076,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132181] = 8, + [132747] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3592), 1, + STATE(3593), 1, sym_comment, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5302), 3, + ACTIONS(5255), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5300), 21, + ACTIONS(5253), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -352497,39 +352123,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132231] = 12, + [132797] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(3552), 1, aux_sym_shebang_repeat1, - STATE(3593), 1, + STATE(3594), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 14, - sym__newline, + ACTIONS(5249), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -352543,23 +352170,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132289] = 6, + [132857] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3594), 1, + STATE(3595), 1, sym_comment, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5302), 5, + ACTIONS(5233), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5300), 23, + ACTIONS(5231), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -352583,580 +352210,527 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132335] = 17, + [132903] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, - anon_sym_bit_DASHor2, - STATE(1706), 1, + ACTIONS(5348), 1, + sym__newline, + STATE(3556), 1, aux_sym_shebang_repeat1, - STATE(3595), 1, + STATE(3596), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5251), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + anon_sym_PLUS2, + ACTIONS(5249), 22, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [132403] = 18, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [132951] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3596), 1, + STATE(3597), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5300), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [132473] = 19, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 5, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [133019] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6655), 1, anon_sym_bit_DASHor2, - ACTIONS(6706), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(3562), 1, aux_sym_shebang_repeat1, - STATE(3597), 1, + STATE(3598), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5300), 3, - sym__newline, + ACTIONS(5249), 4, anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [132545] = 4, + [133089] = 18, ACTIONS(251), 1, anon_sym_POUND, - STATE(3598), 1, - sym_comment, - ACTIONS(1725), 6, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1727), 25, + ACTIONS(6657), 1, anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - [132587] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(6713), 1, + anon_sym_and2, + STATE(1711), 1, aux_sym_shebang_repeat1, STATE(3599), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5231), 4, + sym__newline, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 10, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [133159] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5348), 1, sym__newline, - anon_sym_LBRACE, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6635), 1, anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, anon_sym_bit_DASHor2, - [132647] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - STATE(1706), 1, + STATE(3563), 1, aux_sym_shebang_repeat1, STATE(3600), 1, sym_comment, - ACTIONS(5302), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5300), 20, - sym__newline, - anon_sym_in2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5249), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6631), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + [133231] = 19, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - [132701] = 4, - ACTIONS(251), 1, - anon_sym_POUND, + ACTIONS(6713), 1, + anon_sym_and2, + ACTIONS(6715), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(3601), 1, sym_comment, - ACTIONS(1757), 6, - anon_sym_GT2, + ACTIONS(6659), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1759), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [132743] = 14, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5231), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [133303] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6637), 1, + anon_sym_xor2, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, + STATE(3578), 1, aux_sym_shebang_repeat1, STATE(3602), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(5249), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 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, - [132805] = 4, + [133377] = 13, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(3603), 1, sym_comment, - ACTIONS(1765), 6, - anon_sym_GT2, + ACTIONS(6659), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1767), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [132847] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3604), 1, - sym_comment, - ACTIONS(1861), 6, + ACTIONS(6669), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - aux_sym_unquoted_token2, - ACTIONS(1863), 25, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 10, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_LPAREN2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132889] = 15, + [133437] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - STATE(1706), 1, + STATE(3581), 1, aux_sym_shebang_repeat1, - STATE(3605), 1, + STATE(3604), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 7, - sym__newline, + ACTIONS(5249), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [132953] = 16, + [133499] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3606), 1, + STATE(3605), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(5233), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(5231), 20, + sym__newline, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5300), 6, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133019] = 11, + [133553] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(3582), 1, aux_sym_shebang_repeat1, - STATE(3607), 1, + STATE(3606), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(5251), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5310), 18, - sym__newline, + ACTIONS(5249), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353171,28 +352745,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133075] = 6, + [133609] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(3608), 1, + ACTIONS(5321), 1, + sym__newline, + STATE(3607), 1, sym_comment, - ACTIONS(1865), 5, - anon_sym_GT2, + STATE(3644), 1, + aux_sym_shebang_repeat1, + ACTIONS(6633), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6645), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5259), 3, + anon_sym_GT2, + anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(1873), 24, + ACTIONS(5257), 20, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -353205,44 +352788,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133121] = 12, + [133661] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - STATE(3609), 1, + STATE(3608), 1, sym_comment, - STATE(3642), 1, + STATE(3612), 1, aux_sym_shebang_repeat1, - ACTIONS(5242), 2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5299), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5240), 17, + anon_sym_PLUS2, + ACTIONS(5297), 22, + anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353257,15 +352827,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133179] = 4, + [133709] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3610), 1, + STATE(3609), 1, sym_comment, - ACTIONS(1667), 7, + ACTIONS(1727), 7, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, @@ -353273,7 +352847,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, aux_sym_cmd_identifier_token41, sym_filesize_unit, - ACTIONS(1669), 24, + ACTIONS(1729), 24, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -353298,29 +352872,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, sym_duration_unit, - [133221] = 8, + [133751] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3611), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + STATE(3610), 1, sym_comment, - ACTIONS(6682), 2, + STATE(3645), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5312), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5310), 21, - sym__newline, - anon_sym_DASH2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6639), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5257), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -353329,40 +352914,70 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133271] = 9, + [133811] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3040), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6717), 1, + sym_filesize_unit, + ACTIONS(6719), 1, + sym_duration_unit, + STATE(3611), 1, + sym_comment, + ACTIONS(3038), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3036), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [133859] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(3612), 1, sym_comment, - STATE(3643), 1, - aux_sym_shebang_repeat1, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5242), 3, + ACTIONS(5255), 5, anon_sym_GT2, + anon_sym_STAR2, anon_sym_LT2, + anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5240), 20, + ACTIONS(5253), 23, + sym__newline, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -353378,122 +352993,170 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133323] = 12, + [133905] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, STATE(3613), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 14, - sym__newline, + ACTIONS(6703), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133381] = 13, + [133967] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5348), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, + STATE(3583), 1, + aux_sym_shebang_repeat1, STATE(3614), 1, sym_comment, - STATE(3646), 1, - aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6658), 4, + ACTIONS(6631), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5240), 13, - anon_sym_in2, + ACTIONS(5249), 7, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133441] = 6, - ACTIONS(251), 1, + [134031] = 7, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(6725), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6727), 1, + sym_filesize_unit, + ACTIONS(6729), 1, + sym_duration_unit, STATE(3615), 1, sym_comment, - ACTIONS(6690), 2, + ACTIONS(6723), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6721), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [134079] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5321), 1, + sym__newline, + STATE(3616), 1, + sym_comment, + STATE(3646), 1, + aux_sym_shebang_repeat1, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5312), 5, + ACTIONS(5259), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5310), 23, - sym__newline, + ACTIONS(5257), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -353516,564 +353179,706 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133487] = 6, + [134127] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(3616), 1, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6709), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6711), 1, + anon_sym_bit_DASHor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3617), 1, sym_comment, - ACTIONS(2188), 5, - anon_sym_GT2, + ACTIONS(6659), 2, anon_sym_STAR2, - anon_sym_LT2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2192), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [133533] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 5, sym__newline, - STATE(3617), 1, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [134195] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3060), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6731), 1, + sym_filesize_unit, + ACTIONS(6733), 1, + sym_duration_unit, + STATE(3618), 1, sym_comment, - STATE(3647), 1, + ACTIONS(3058), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3056), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [134243] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6662), 2, + STATE(3619), 1, + sym_comment, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5242), 5, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5240), 22, - anon_sym_DASH2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6703), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [133581] = 17, + [134307] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, - anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(3584), 1, aux_sym_shebang_repeat1, - STATE(3618), 1, + STATE(3620), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 5, - sym__newline, + ACTIONS(5249), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [133649] = 18, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134373] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6739), 1, + aux_sym_cmd_identifier_token41, + ACTIONS(6741), 1, + sym_filesize_unit, + ACTIONS(6743), 1, + sym_duration_unit, + STATE(3621), 1, + sym_comment, + ACTIONS(6737), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6735), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [134421] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, + ACTIONS(6655), 1, anon_sym_bit_DASHor2, - STATE(3619), 1, + STATE(3622), 1, sym_comment, - STATE(3648), 1, + STATE(3647), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5240), 4, + ACTIONS(5257), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [133719] = 18, + [134491] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, - anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3620), 1, + STATE(3623), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5310), 4, - sym__newline, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [133789] = 6, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5231), 6, + sym__newline, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [134557] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, - STATE(3621), 1, + ACTIONS(5348), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + STATE(3585), 1, + aux_sym_shebang_repeat1, + STATE(3624), 1, sym_comment, - ACTIONS(2194), 5, + ACTIONS(6627), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, + ACTIONS(6633), 2, + anon_sym_STAR2, anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(2198), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, + ACTIONS(6631), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5249), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHor2, - [133835] = 19, + [134625] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3625), 1, + sym_comment, + ACTIONS(1605), 7, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + aux_sym_cmd_identifier_token41, + sym_filesize_unit, + ACTIONS(1607), 24, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + sym_duration_unit, + [134667] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - STATE(3622), 1, - sym_comment, - STATE(3650), 1, + STATE(3586), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + STATE(3626), 1, + sym_comment, + ACTIONS(5299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5240), 3, + ACTIONS(5297), 17, + anon_sym_in2, anon_sym_LBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6654), 4, - anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [133907] = 19, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [134725] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - ACTIONS(6706), 1, - anon_sym_xor2, - STATE(1706), 1, + ACTIONS(6713), 1, + anon_sym_and2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3623), 1, + STATE(3627), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5310), 3, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5253), 4, sym__newline, anon_sym_LBRACE, + anon_sym_xor2, anon_sym_or2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [133979] = 20, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134795] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, + ACTIONS(6655), 1, anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - ACTIONS(6708), 1, - anon_sym_xor2, - STATE(3624), 1, + STATE(3628), 1, sym_comment, - STATE(3651), 1, + STATE(3648), 1, aux_sym_shebang_repeat1, - ACTIONS(5240), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(5257), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [134053] = 13, + [134867] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6709), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6711), 1, + anon_sym_bit_DASHor2, + ACTIONS(6713), 1, + anon_sym_and2, + ACTIONS(6715), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3625), 1, + STATE(3629), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5253), 3, + sym__newline, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 10, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [134939] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, sym__newline, - anon_sym_LBRACE, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6635), 1, anon_sym_and2, + ACTIONS(6637), 1, anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, anon_sym_bit_DASHor2, - [134113] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - STATE(3626), 1, + STATE(3630), 1, sym_comment, - STATE(3652), 1, + STATE(3649), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(5257), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5240), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [134175] = 10, + [135013] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3627), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3631), 1, sym_comment, - ACTIONS(5312), 2, + ACTIONS(1793), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5310), 20, - sym__newline, + anon_sym_PLUS2, + ACTIONS(1801), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354086,119 +353891,129 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134229] = 11, + [135059] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3566), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3628), 1, + STATE(3632), 1, sym_comment, - ACTIONS(5262), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5260), 19, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6703), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 10, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134285] = 14, + [135119] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3629), 1, + STATE(3633), 1, sym_comment, - ACTIONS(6676), 2, + STATE(3651), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 8, - sym__newline, + ACTIONS(5257), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134347] = 5, - ACTIONS(3), 1, + [135181] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2231), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(3630), 1, + STATE(3634), 1, sym_comment, - ACTIONS(2229), 29, + ACTIONS(2170), 5, anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(2174), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -354207,51 +354022,44 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134391] = 12, + [135227] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3631), 1, - sym_comment, - STATE(3663), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(5262), 2, + STATE(3635), 1, + sym_comment, + ACTIONS(5255), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5260), 17, + ACTIONS(5253), 20, + sym__newline, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354266,33 +354074,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134449] = 9, + [135281] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5321), 1, sym__newline, - STATE(3632), 1, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + STATE(3636), 1, sym_comment, - STATE(3665), 1, + STATE(3652), 1, aux_sym_shebang_repeat1, - ACTIONS(6656), 2, + ACTIONS(5259), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5262), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5260), 20, - anon_sym_DASH2, + ACTIONS(5257), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -354312,48 +354124,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134501] = 15, + [135337] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3633), 1, - sym_comment, - STATE(3654), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3637), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5240), 7, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 8, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, @@ -354361,403 +354172,282 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134565] = 15, + [135399] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3634), 1, + STATE(3638), 1, sym_comment, - ACTIONS(6676), 2, + STATE(3653), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 7, - sym__newline, + ACTIONS(5257), 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, - [134629] = 16, + [135463] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - STATE(3635), 1, - sym_comment, - STATE(3657), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3639), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5240), 6, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 7, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134695] = 16, + [135527] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5321), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3636), 1, + STATE(3640), 1, sym_comment, - ACTIONS(6676), 2, + STATE(3654), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5310), 6, - sym__newline, + ACTIONS(5257), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134761] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3053), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6712), 1, - sym_filesize_unit, - ACTIONS(6714), 1, - sym_duration_unit, - STATE(3637), 1, - sym_comment, - ACTIONS(3051), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3049), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [134809] = 13, + [135593] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(3638), 1, - sym_comment, - STATE(3669), 1, + ACTIONS(6707), 1, + anon_sym_bit_DASHand2, + ACTIONS(6709), 1, + anon_sym_bit_DASHxor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3641), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6658), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5260), 13, + ACTIONS(6703), 4, anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5253), 6, + sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [134869] = 17, + [135659] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, + ACTIONS(5321), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, - STATE(3639), 1, + STATE(3642), 1, sym_comment, - STATE(3658), 1, + STATE(3655), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5240), 5, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_bit_DASHor2, - [134937] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6720), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6722), 1, - sym_filesize_unit, - ACTIONS(6724), 1, - sym_duration_unit, - STATE(3640), 1, - sym_comment, - ACTIONS(6718), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6716), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [134985] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - STATE(3641), 1, - sym_comment, - STATE(3674), 1, - aux_sym_shebang_repeat1, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5262), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5260), 22, - anon_sym_DASH2, - anon_sym_in2, + ACTIONS(5257), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135033] = 11, + [135727] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3642), 1, + STATE(3643), 1, sym_comment, - ACTIONS(5272), 2, + ACTIONS(5267), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5270), 18, + ACTIONS(5265), 18, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -354776,27 +354466,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135089] = 8, + [135783] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3643), 1, + STATE(3644), 1, sym_comment, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5272), 3, + ACTIONS(5267), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5270), 21, + ACTIONS(5265), 21, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -354818,120 +354508,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135139] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3069), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6726), 1, - sym_filesize_unit, - ACTIONS(6728), 1, - sym_duration_unit, - STATE(3644), 1, - sym_comment, - ACTIONS(3067), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3065), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [135187] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6734), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6736), 1, - sym_filesize_unit, - ACTIONS(6738), 1, - sym_duration_unit, - STATE(3645), 1, - sym_comment, - ACTIONS(6732), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6730), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [135235] = 12, + [135833] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3646), 1, + STATE(3645), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 14, + ACTIONS(5265), 14, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -354946,23 +354554,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135293] = 6, + [135891] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3647), 1, + STATE(3646), 1, sym_comment, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5272), 5, + ACTIONS(5267), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5270), 23, + ACTIONS(5265), 23, sym__newline, anon_sym_DASH2, anon_sym_in2, @@ -354986,240 +354594,239 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135339] = 17, + [135937] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3648), 1, + STATE(3647), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 5, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5265), 5, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [135407] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6744), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6746), 1, - sym_filesize_unit, - ACTIONS(6748), 1, - sym_duration_unit, - STATE(3649), 1, - sym_comment, - ACTIONS(6742), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6740), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [135455] = 18, + [136005] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, + ACTIONS(6713), 1, + anon_sym_and2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3650), 1, + STATE(3648), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5270), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 4, sym__newline, anon_sym_LBRACE, anon_sym_xor2, anon_sym_or2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [135525] = 19, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136075] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - ACTIONS(6706), 1, + ACTIONS(6713), 1, + anon_sym_and2, + ACTIONS(6715), 1, anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3651), 1, + STATE(3649), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5270), 3, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5265), 3, sym__newline, anon_sym_LBRACE, anon_sym_or2, - ACTIONS(6680), 4, + ACTIONS(6671), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [136147] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6517), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(6745), 1, + anon_sym_DOT, + STATE(3650), 1, + sym_comment, + ACTIONS(1749), 5, + anon_sym_GT2, + anon_sym_STAR2, + anon_sym_LT2, + anon_sym_SLASH2, + anon_sym_PLUS2, + ACTIONS(1751), 24, + anon_sym_DASH2, anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [135597] = 13, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [136193] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3652), 1, + STATE(3651), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 10, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5265), 10, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355230,30 +354837,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135657] = 10, + [136253] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3653), 1, + STATE(3652), 1, sym_comment, - ACTIONS(5272), 2, + ACTIONS(5267), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5270), 20, + ACTIONS(5265), 20, sym__newline, anon_sym_in2, anon_sym_LBRACE, @@ -355274,46 +354881,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135711] = 14, + [136307] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3654), 1, + STATE(3653), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 8, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5265), 8, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355322,153 +354929,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135773] = 18, + [136369] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - STATE(3655), 1, - sym_comment, - STATE(3677), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + STATE(3654), 1, + sym_comment, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5260), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [135843] = 19, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - STATE(3559), 1, - aux_sym_shebang_repeat1, - STATE(3656), 1, - sym_comment, - ACTIONS(6650), 2, + ACTIONS(6669), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6705), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5260), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [135915] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3657), 1, - sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, + ACTIONS(6703), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5270), 7, + ACTIONS(5265), 7, sym__newline, anon_sym_LBRACE, anon_sym_and2, @@ -355476,162 +354978,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [135979] = 16, + [136433] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3658), 1, + STATE(3655), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6669), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6705), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5270), 6, + ACTIONS(6703), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5265), 6, sym__newline, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_bit_DASHor2, - [136045] = 15, + [136499] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - STATE(3569), 1, + STATE(3593), 1, aux_sym_shebang_repeat1, - STATE(3659), 1, + STATE(3656), 1, sym_comment, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5260), 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, - [136109] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3660), 1, - sym_comment, - ACTIONS(1733), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1735), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [136151] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(3661), 1, - sym_comment, - ACTIONS(1786), 5, + ACTIONS(5299), 3, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(1794), 24, + ACTIONS(5297), 20, anon_sym_DASH2, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -355644,93 +355066,85 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136197] = 16, + [136551] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5314), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - STATE(3571), 1, + STATE(3632), 1, aux_sym_shebang_repeat1, - STATE(3662), 1, + STATE(3657), 1, sym_comment, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5260), 6, + ACTIONS(5297), 9, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136263] = 11, + [136613] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, + STATE(3635), 1, aux_sym_shebang_repeat1, - STATE(3663), 1, + STATE(3658), 1, sym_comment, - ACTIONS(5294), 2, + ACTIONS(5299), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5292), 18, - sym__newline, + ACTIONS(5297), 19, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -355745,373 +355159,285 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136319] = 12, + [136669] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(3591), 1, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, + STATE(3617), 1, aux_sym_shebang_repeat1, - STATE(3664), 1, + STATE(3659), 1, sym_comment, - ACTIONS(5298), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5296), 17, - anon_sym_in2, + ACTIONS(5297), 4, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, + ACTIONS(6631), 4, + anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136377] = 8, + [136739] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + STATE(3637), 1, aux_sym_shebang_repeat1, - STATE(3665), 1, + STATE(3660), 1, sym_comment, - ACTIONS(6682), 2, + ACTIONS(6627), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5294), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5292), 21, - sym__newline, - anon_sym_DASH2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6631), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(5297), 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, - [136427] = 9, + [136803] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5365), 1, sym__newline, - STATE(3592), 1, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + STATE(3639), 1, aux_sym_shebang_repeat1, - STATE(3666), 1, + STATE(3661), 1, sym_comment, - ACTIONS(6656), 2, + ACTIONS(6627), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5298), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5296), 20, - anon_sym_DASH2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6631), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, + ACTIONS(5297), 6, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136479] = 20, + [136869] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - ACTIONS(6670), 1, + ACTIONS(6651), 1, anon_sym_bit_DASHand2, - ACTIONS(6672), 1, + ACTIONS(6653), 1, anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - ACTIONS(6708), 1, - anon_sym_xor2, - STATE(3561), 1, + STATE(3641), 1, aux_sym_shebang_repeat1, - STATE(3667), 1, + STATE(3662), 1, sym_comment, - ACTIONS(5260), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6650), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6660), 2, + ACTIONS(6641), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6631), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [136553] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6754), 1, - aux_sym_cmd_identifier_token41, - ACTIONS(6756), 1, - sym_filesize_unit, - ACTIONS(6758), 1, - sym_duration_unit, - STATE(3668), 1, - sym_comment, - ACTIONS(6752), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6750), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [136601] = 12, + ACTIONS(5297), 5, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_bit_DASHor2, + [136937] = 19, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(5365), 1, + sym__newline, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(1706), 1, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, + STATE(3627), 1, aux_sym_shebang_repeat1, - STATE(3669), 1, + STATE(3663), 1, sym_comment, - ACTIONS(6676), 2, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6682), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6690), 2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6686), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5292), 14, - sym__newline, - anon_sym_in2, + ACTIONS(5297), 3, anon_sym_LBRACE, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136659] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(3670), 1, - sym_comment, - ACTIONS(1004), 29, - anon_sym_GT2, - anon_sym_DASH2, + ACTIONS(6631), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_STAR2, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136703] = 6, + [137009] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - STATE(3671), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3664), 1, sym_comment, - ACTIONS(2184), 5, + ACTIONS(1805), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(2186), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136749] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2267), 1, - anon_sym_LPAREN2, - STATE(3672), 1, - sym_comment, - ACTIONS(2265), 30, - anon_sym_GT2, + ACTIONS(1813), 24, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, - anon_sym_STAR2, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356120,57 +355446,53 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_ends_DASHwith2, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, - anon_sym_LT2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - anon_sym_SLASH2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - anon_sym_PLUS2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - aux_sym_unquoted_token4, - [136791] = 13, + [137055] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5365), 1, sym__newline, - ACTIONS(6652), 1, + ACTIONS(6629), 1, anon_sym_DASH2, - ACTIONS(6666), 1, + ACTIONS(6647), 1, anon_sym_PLUS2, - STATE(3593), 1, - aux_sym_shebang_repeat1, - STATE(3673), 1, + STATE(3665), 1, sym_comment, - ACTIONS(6650), 2, + STATE(3666), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6656), 2, + ACTIONS(6633), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6662), 2, + ACTIONS(6643), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, + ACTIONS(6645), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, + ACTIONS(6649), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6658), 4, + ACTIONS(6639), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5296), 13, + ACTIONS(5297), 13, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356184,104 +355506,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136851] = 6, + [137115] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(6657), 1, + anon_sym_DASH2, + ACTIONS(6665), 1, + anon_sym_PLUS2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3674), 1, + STATE(3666), 1, sym_comment, - ACTIONS(6690), 2, + ACTIONS(6659), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5294), 5, + ACTIONS(6663), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6667), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6669), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5292), 23, - sym__newline, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [136897] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3675), 1, - sym_comment, - ACTIONS(1587), 7, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - aux_sym_cmd_identifier_token41, - sym_filesize_unit, - ACTIONS(1589), 24, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - sym_duration_unit, - [136939] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5401), 1, + ACTIONS(5253), 14, sym__newline, - STATE(3594), 1, - aux_sym_shebang_repeat1, - STATE(3676), 1, - sym_comment, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5298), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5296), 22, - anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, anon_sym_and2, @@ -356290,146 +355547,81 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [136987] = 17, + [137173] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6678), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6284), 1, anon_sym_DASH2, - ACTIONS(6694), 1, + ACTIONS(6292), 1, anon_sym_PLUS2, - ACTIONS(6698), 1, + ACTIONS(6304), 1, anon_sym_bit_DASHand2, - ACTIONS(6700), 1, + ACTIONS(6306), 1, anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, + ACTIONS(6308), 1, anon_sym_bit_DASHor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(3677), 1, + ACTIONS(6310), 1, + anon_sym_and2, + ACTIONS(6312), 1, + anon_sym_xor2, + ACTIONS(6747), 1, + anon_sym_or2, + STATE(3667), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, + STATE(3696), 1, + aux_sym_shebang_repeat1, + ACTIONS(6286), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, + ACTIONS(6288), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, + ACTIONS(6290), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, + ACTIONS(6294), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, + ACTIONS(6296), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6302), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6298), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5292), 5, - sym__newline, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [137055] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5314), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - STATE(3564), 1, - aux_sym_shebang_repeat1, - STATE(3678), 1, - sym_comment, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, + ACTIONS(6300), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5260), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [137117] = 11, + [137246] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5394), 1, - sym__newline, - ACTIONS(6652), 1, - anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - STATE(3653), 1, - aux_sym_shebang_repeat1, - STATE(3679), 1, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + STATE(3668), 1, sym_comment, - ACTIONS(5242), 2, + ACTIONS(1663), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5240), 19, + anon_sym_PLUS2, + ACTIONS(1675), 24, + anon_sym_DASH2, anon_sym_in2, - anon_sym_LBRACE, + anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -356442,61 +355634,181 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [137173] = 25, + [137289] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3440), 1, + aux_sym_expr_unary_token1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6585), 1, + anon_sym_LBRACE, + ACTIONS(6587), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6589), 1, + aux_sym__val_number_decimal_token2, + STATE(1662), 1, + sym__val_number, + STATE(1682), 1, + sym__val_number_decimal, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(3669), 1, + sym_comment, + STATE(3743), 1, + sym_expr_parenthesized, + STATE(4022), 1, + sym_val_number, + STATE(4146), 1, + sym__predicate, + STATE(4250), 1, + sym__binary_predicate, + STATE(4723), 1, + sym_val_closure, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4172), 2, + sym_expr_unary, + sym_val_bool, + STATE(4861), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137372] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3680), 1, + STATE(3670), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, + sym_val_number, + STATE(4186), 1, + sym__binary_predicate_parenthesized, + STATE(4253), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4172), 2, + sym_expr_unary, + sym_val_bool, + STATE(4861), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [137455] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3440), 1, + aux_sym_expr_unary_token1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6579), 1, + sym__newline, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6587), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6589), 1, + aux_sym__val_number_decimal_token2, + STATE(1662), 1, + sym__val_number, + STATE(1682), 1, + sym__val_number_decimal, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(3671), 1, + sym_comment, + STATE(3743), 1, + sym_expr_parenthesized, + STATE(3814), 1, + aux_sym_shebang_repeat1, + STATE(4022), 1, sym_val_number, - STATE(4179), 1, + STATE(4116), 1, sym__binary_predicate_parenthesized, - STATE(4181), 1, + STATE(4127), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356505,56 +355817,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137256] = 25, + [137538] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3681), 1, + STATE(3672), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4166), 1, + STATE(4149), 1, sym__binary_predicate_parenthesized, - STATE(4169), 1, + STATE(4158), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356563,109 +355875,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137339] = 20, + [137621] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(5325), 1, + ACTIONS(5328), 1, anon_sym_DASH2, - ACTIONS(5329), 1, - anon_sym_and2, - ACTIONS(5331), 1, - anon_sym_xor2, - ACTIONS(5337), 1, + ACTIONS(5340), 1, anon_sym_PLUS2, - ACTIONS(5341), 1, + ACTIONS(5351), 1, anon_sym_bit_DASHand2, - ACTIONS(5343), 1, + ACTIONS(5353), 1, anon_sym_bit_DASHxor2, - ACTIONS(5345), 1, + ACTIONS(5355), 1, anon_sym_bit_DASHor2, - ACTIONS(6760), 1, + ACTIONS(5381), 1, + anon_sym_and2, + ACTIONS(5383), 1, + anon_sym_xor2, + ACTIONS(6749), 1, anon_sym_or2, - STATE(3682), 1, + STATE(3673), 1, sym_comment, - STATE(3700), 1, + STATE(3685), 1, aux_sym_shebang_repeat1, - ACTIONS(5317), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5319), 2, + ACTIONS(5324), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5321), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5323), 2, + ACTIONS(5326), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5335), 2, + ACTIONS(5332), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5336), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5339), 2, + ACTIONS(5338), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5342), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5327), 4, + ACTIONS(5330), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(5333), 4, + ACTIONS(5334), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [137412] = 25, + [137694] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3683), 1, + STATE(3674), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4109), 1, - sym__predicate, STATE(4208), 1, sym__binary_predicate_parenthesized, + STATE(4224), 1, + sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356674,56 +355986,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137495] = 25, + [137777] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3684), 1, + STATE(3675), 1, sym_comment, - STATE(3711), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3814), 1, + aux_sym_shebang_repeat1, + STATE(4022), 1, sym_val_number, - STATE(4110), 1, + STATE(4237), 1, sym__binary_predicate_parenthesized, - STATE(4111), 1, + STATE(4240), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356732,56 +356044,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137578] = 25, + [137860] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3685), 1, + STATE(3676), 1, sym_comment, - STATE(3704), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3814), 1, + aux_sym_shebang_repeat1, + STATE(4022), 1, sym_val_number, - STATE(4124), 1, - sym__binary_predicate_parenthesized, - STATE(4125), 1, + STATE(4162), 1, sym__predicate, + STATE(4272), 1, + sym__binary_predicate_parenthesized, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356790,56 +356102,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137661] = 25, + [137943] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3686), 1, + STATE(3677), 1, sym_comment, - STATE(3708), 1, + STATE(3686), 1, aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4142), 1, + STATE(4197), 1, sym__binary_predicate_parenthesized, - STATE(4143), 1, + STATE(4199), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356848,56 +356160,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137744] = 25, + [138026] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3687), 1, + STATE(3678), 1, sym_comment, - STATE(3764), 1, - sym_expr_parenthesized, - STATE(3837), 1, + STATE(3688), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(3743), 1, + sym_expr_parenthesized, + STATE(4022), 1, sym_val_number, - STATE(4282), 1, + STATE(4201), 1, sym__binary_predicate_parenthesized, - STATE(4289), 1, + STATE(4202), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -356906,95 +356218,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137827] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3688), 1, - sym_comment, - STATE(4628), 1, - sym_redirection, - ACTIONS(6764), 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(6766), 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(6762), 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, - [137872] = 25, + [138109] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3689), 1, + STATE(3679), 1, sym_comment, - STATE(3713), 1, + STATE(3690), 1, aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4247), 1, + STATE(4206), 1, sym__binary_predicate_parenthesized, - STATE(4287), 1, + STATE(4207), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357003,56 +356276,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [137955] = 25, + [138192] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3687), 1, - aux_sym_shebang_repeat1, - STATE(3690), 1, + STATE(3680), 1, sym_comment, - STATE(3764), 1, + STATE(3695), 1, + aux_sym_shebang_repeat1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4141), 1, + STATE(4222), 1, sym__binary_predicate_parenthesized, - STATE(4146), 1, + STATE(4223), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357061,56 +356334,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138038] = 25, + [138275] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3683), 1, - aux_sym_shebang_repeat1, - STATE(3691), 1, + STATE(3681), 1, sym_comment, - STATE(3764), 1, + STATE(3697), 1, + aux_sym_shebang_repeat1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4180), 1, + STATE(4242), 1, sym__binary_predicate_parenthesized, - STATE(4204), 1, + STATE(4248), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357119,56 +356392,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138121] = 25, + [138358] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3692), 1, + STATE(3682), 1, sym_comment, - STATE(3764), 1, - sym_expr_parenthesized, - STATE(3837), 1, + STATE(3698), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(3743), 1, + sym_expr_parenthesized, + STATE(4022), 1, sym_val_number, - STATE(4148), 1, + STATE(4257), 1, sym__binary_predicate_parenthesized, - STATE(4165), 1, + STATE(4258), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357177,56 +356450,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138204] = 25, + [138441] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3692), 1, + STATE(3676), 1, aux_sym_shebang_repeat1, - STATE(3693), 1, + STATE(3683), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4216), 1, + STATE(4163), 1, sym__binary_predicate_parenthesized, - STATE(4217), 1, + STATE(4164), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357235,56 +356508,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138287] = 25, + [138524] = 25, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6592), 1, - sym__newline, - ACTIONS(6594), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + ACTIONS(6751), 1, + anon_sym_LBRACE, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3694), 1, + STATE(3684), 1, sym_comment, - STATE(3696), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4227), 1, - sym__binary_predicate_parenthesized, - STATE(4233), 1, + STATE(4310), 1, + sym__binary_predicate, + STATE(4361), 1, sym__predicate, - ACTIONS(215), 2, + STATE(4851), 1, + sym_val_closure, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357293,56 +356566,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138370] = 25, + [138607] = 20, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(5303), 1, + anon_sym_DASH2, + ACTIONS(5317), 1, + anon_sym_PLUS2, + ACTIONS(5344), 1, + anon_sym_bit_DASHand2, + ACTIONS(5346), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5359), 1, + anon_sym_and2, + ACTIONS(5361), 1, + anon_sym_xor2, + ACTIONS(5363), 1, + anon_sym_bit_DASHor2, + ACTIONS(6753), 1, + anon_sym_or2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(3685), 1, + sym_comment, + ACTIONS(5301), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5307), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(5311), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5313), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5315), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5319), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5305), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5309), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138680] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3695), 1, + STATE(3686), 1, sym_comment, - STATE(3698), 1, - aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3814), 1, + aux_sym_shebang_repeat1, + STATE(4022), 1, sym_val_number, - STATE(4236), 1, + STATE(4271), 1, sym__binary_predicate_parenthesized, - STATE(4240), 1, + STATE(4282), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357351,56 +356677,95 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138453] = 25, + [138763] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3687), 1, + sym_comment, + STATE(4586), 1, + sym_redirection, + ACTIONS(6757), 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(6759), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6755), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [138808] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3696), 1, + STATE(3688), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4182), 1, - sym__binary_predicate_parenthesized, - STATE(4183), 1, + STATE(4196), 1, sym__predicate, + STATE(4209), 1, + sym__binary_predicate_parenthesized, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357409,114 +356774,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138536] = 25, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, - aux_sym__val_number_token5, + [138891] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, - aux_sym_expr_unary_token1, - ACTIONS(5833), 1, - anon_sym_LPAREN, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6596), 1, - anon_sym_DOLLAR, - ACTIONS(6600), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, - aux_sym__val_number_decimal_token2, - ACTIONS(6768), 1, - anon_sym_LBRACE, - STATE(1638), 1, - sym__val_number, - STATE(1703), 1, - sym__val_number_decimal, - STATE(2545), 1, - sym__expr_unary_minus, - STATE(3697), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6629), 1, + anon_sym_DASH2, + ACTIONS(6635), 1, + anon_sym_and2, + ACTIONS(6637), 1, + anon_sym_xor2, + ACTIONS(6647), 1, + anon_sym_PLUS2, + ACTIONS(6651), 1, + anon_sym_bit_DASHand2, + ACTIONS(6653), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6655), 1, + anon_sym_bit_DASHor2, + ACTIONS(6761), 1, + anon_sym_or2, + STATE(3689), 1, sym_comment, - STATE(3771), 1, - sym_expr_parenthesized, - STATE(4070), 1, - sym_val_number, - STATE(4308), 1, - sym__predicate, - STATE(4346), 1, - sym__binary_predicate, - STATE(4864), 1, - sym_val_closure, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4317), 2, - sym_expr_unary, - sym_val_bool, - STATE(4860), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [138619] = 25, + STATE(3692), 1, + aux_sym_shebang_repeat1, + ACTIONS(6627), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6633), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6641), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6643), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6645), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6649), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6631), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6639), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + [138964] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3698), 1, + STATE(3690), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4186), 1, + STATE(4142), 1, sym__binary_predicate_parenthesized, - STATE(4187), 1, + STATE(4261), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357525,56 +356885,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138702] = 25, + [139047] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3699), 1, - sym_comment, - STATE(3709), 1, + STATE(3670), 1, aux_sym_shebang_repeat1, - STATE(3764), 1, + STATE(3691), 1, + sym_comment, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4188), 1, + STATE(4124), 1, sym__binary_predicate_parenthesized, - STATE(4189), 1, + STATE(4151), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357583,109 +356943,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138785] = 20, + [139130] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(5350), 1, + ACTIONS(6657), 1, anon_sym_DASH2, - ACTIONS(5358), 1, + ACTIONS(6665), 1, anon_sym_PLUS2, - ACTIONS(5374), 1, + ACTIONS(6707), 1, anon_sym_bit_DASHand2, - ACTIONS(5376), 1, + ACTIONS(6709), 1, anon_sym_bit_DASHxor2, - ACTIONS(5378), 1, + ACTIONS(6711), 1, anon_sym_bit_DASHor2, - ACTIONS(5380), 1, + ACTIONS(6713), 1, anon_sym_and2, - ACTIONS(5392), 1, + ACTIONS(6715), 1, anon_sym_xor2, - ACTIONS(6770), 1, + ACTIONS(6763), 1, anon_sym_or2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3700), 1, + STATE(3692), 1, sym_comment, - ACTIONS(5352), 2, + ACTIONS(6659), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5354), 2, + ACTIONS(6661), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5356), 2, + ACTIONS(6663), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5360), 2, + ACTIONS(6667), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5362), 2, + ACTIONS(6669), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5372), 2, + ACTIONS(6705), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5364), 4, + ACTIONS(6671), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5370), 4, + ACTIONS(6703), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [138858] = 25, + [139203] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3680), 1, + STATE(3671), 1, aux_sym_shebang_repeat1, - STATE(3701), 1, + STATE(3693), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4199), 1, + STATE(4214), 1, sym__binary_predicate_parenthesized, - STATE(4200), 1, + STATE(4238), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357694,162 +357054,114 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [138941] = 20, + [139286] = 25, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6652), 1, + ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(6666), 1, - anon_sym_PLUS2, - ACTIONS(6670), 1, - anon_sym_bit_DASHand2, - ACTIONS(6672), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6674), 1, - anon_sym_bit_DASHor2, - ACTIONS(6704), 1, - anon_sym_and2, - ACTIONS(6708), 1, - anon_sym_xor2, - ACTIONS(6772), 1, - anon_sym_or2, - STATE(3702), 1, - sym_comment, - STATE(3703), 1, - aux_sym_shebang_repeat1, - ACTIONS(6650), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6656), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6660), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6662), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6664), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6668), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6654), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6658), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [139014] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3440), 1, + aux_sym_expr_unary_token1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6678), 1, - anon_sym_DASH2, - ACTIONS(6684), 1, - anon_sym_and2, - ACTIONS(6694), 1, - anon_sym_PLUS2, - ACTIONS(6698), 1, - anon_sym_bit_DASHand2, - ACTIONS(6700), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6702), 1, - anon_sym_bit_DASHor2, - ACTIONS(6706), 1, - anon_sym_xor2, - ACTIONS(6774), 1, - anon_sym_or2, - STATE(1706), 1, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6587), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6589), 1, + aux_sym__val_number_decimal_token2, + STATE(1662), 1, + sym__val_number, + STATE(1682), 1, + sym__val_number_decimal, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(3672), 1, aux_sym_shebang_repeat1, - STATE(3703), 1, + STATE(3694), 1, sym_comment, - ACTIONS(6676), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6682), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6688), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6690), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6692), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6696), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6680), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6686), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [139087] = 25, + STATE(3743), 1, + sym_expr_parenthesized, + STATE(4022), 1, + sym_val_number, + STATE(4122), 1, + sym__binary_predicate_parenthesized, + STATE(4143), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4172), 2, + sym_expr_unary, + sym_val_bool, + STATE(4861), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [139369] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3704), 1, + STATE(3695), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4115), 1, + STATE(4169), 1, sym__binary_predicate_parenthesized, - STATE(4121), 1, + STATE(4171), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -357858,200 +357170,109 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [139170] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - STATE(3705), 1, - sym_comment, - ACTIONS(1681), 5, - anon_sym_GT2, - anon_sym_STAR2, - anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(1693), 24, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [139213] = 20, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6303), 1, - anon_sym_DASH2, - ACTIONS(6311), 1, - anon_sym_PLUS2, - ACTIONS(6323), 1, - anon_sym_bit_DASHand2, - ACTIONS(6325), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6327), 1, - anon_sym_bit_DASHor2, - ACTIONS(6329), 1, - anon_sym_and2, - ACTIONS(6331), 1, - anon_sym_xor2, - ACTIONS(6776), 1, - anon_sym_or2, - STATE(3706), 1, - sym_comment, - STATE(3707), 1, - aux_sym_shebang_repeat1, - ACTIONS(6305), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6307), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6309), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6313), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6315), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6321), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6317), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6319), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [139286] = 20, + [139452] = 20, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6335), 1, + ACTIONS(6252), 1, anon_sym_DASH2, - ACTIONS(6343), 1, + ACTIONS(6260), 1, anon_sym_PLUS2, - ACTIONS(6355), 1, + ACTIONS(6326), 1, anon_sym_bit_DASHand2, - ACTIONS(6357), 1, + ACTIONS(6328), 1, anon_sym_bit_DASHxor2, - ACTIONS(6359), 1, + ACTIONS(6330), 1, anon_sym_bit_DASHor2, - ACTIONS(6361), 1, + ACTIONS(6332), 1, anon_sym_and2, - ACTIONS(6363), 1, + ACTIONS(6334), 1, anon_sym_xor2, - ACTIONS(6778), 1, + ACTIONS(6765), 1, anon_sym_or2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(3707), 1, + STATE(3696), 1, sym_comment, - ACTIONS(6337), 2, + ACTIONS(6254), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6339), 2, + ACTIONS(6256), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6341), 2, + ACTIONS(6258), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6345), 2, + ACTIONS(6316), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6347), 2, + ACTIONS(6318), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6353), 2, + ACTIONS(6324), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6349), 4, + ACTIONS(6320), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(6351), 4, + ACTIONS(6322), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [139359] = 25, + [139525] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3708), 1, + STATE(3697), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4138), 1, + STATE(4183), 1, sym__binary_predicate_parenthesized, - STATE(4147), 1, + STATE(4184), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -358060,56 +357281,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [139442] = 25, + [139608] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3709), 1, + STATE(3698), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, + STATE(3814), 1, aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4159), 1, - sym__binary_predicate_parenthesized, - STATE(4161), 1, + STATE(4130), 1, sym__predicate, + STATE(4233), 1, + sym__binary_predicate_parenthesized, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -358118,56 +357339,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [139525] = 25, + [139691] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6594), 1, + ACTIONS(6579), 1, + sym__newline, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6598), 1, - anon_sym_LBRACE, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3710), 1, + STATE(3674), 1, + aux_sym_shebang_repeat1, + STATE(3699), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4263), 1, - sym__binary_predicate, - STATE(4272), 1, + STATE(4147), 1, + sym__binary_predicate_parenthesized, + STATE(4148), 1, sym__predicate, - STATE(4681), 1, - sym_val_closure, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -358176,56 +357397,56 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [139608] = 25, + [139774] = 25, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6592), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3711), 1, + STATE(3675), 1, + aux_sym_shebang_repeat1, + STATE(3700), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(3837), 1, - aux_sym_shebang_repeat1, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4264), 1, + STATE(4159), 1, sym__binary_predicate_parenthesized, - STATE(4267), 1, + STATE(4161), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -358234,14 +357455,14 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [139691] = 6, + [139857] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3712), 1, + STATE(3701), 1, sym_comment, - STATE(4733), 1, + STATE(4719), 1, sym_redirection, - ACTIONS(6764), 8, + ACTIONS(6757), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -358250,7 +357471,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6766), 8, + ACTIONS(6759), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -358259,7 +357480,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6780), 13, + ACTIONS(6767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -358273,136 +357494,247 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [139736] = 25, - ACTIONS(227), 1, - aux_sym__val_number_token5, + [139902] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(381), 1, + STATE(3702), 1, + sym_comment, + ACTIONS(6769), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5205), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_PLUS2, + ACTIONS(5203), 20, anon_sym_DASH2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, - aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6592), 1, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [139948] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3703), 1, + sym_comment, + STATE(4880), 1, + sym_redirection, + ACTIONS(6775), 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(6777), 8, + anon_sym_err_GT_GT, + anon_sym_out_GT_GT, + anon_sym_e_GT_GT, + anon_sym_o_GT_GT, + anon_sym_err_PLUSout_GT_GT, + anon_sym_out_PLUSerr_GT_GT, + anon_sym_o_PLUSe_GT_GT, + anon_sym_e_PLUSo_GT_GT, + ACTIONS(6755), 12, + ts_builtin_sym_end, sym__newline, - ACTIONS(6594), 1, - anon_sym_LPAREN, - ACTIONS(6596), 1, - anon_sym_DOLLAR, - ACTIONS(6600), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, - aux_sym__val_number_decimal_token2, - STATE(1638), 1, - sym__val_number, - STATE(1703), 1, - sym__val_number_decimal, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(3713), 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, + [139992] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6783), 1, + aux_sym_cmd_identifier_token41, + STATE(3704), 1, sym_comment, - STATE(3764), 1, - sym_expr_parenthesized, - STATE(3837), 1, - aux_sym_shebang_repeat1, - STATE(4070), 1, - sym_val_number, - STATE(4258), 1, - sym__binary_predicate_parenthesized, - STATE(4266), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4273), 2, - sym_expr_unary, - sym_val_bool, - STATE(4875), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [139819] = 25, - ACTIONS(227), 1, - aux_sym__val_number_token5, + ACTIONS(6781), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6779), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140034] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6789), 1, + aux_sym_cmd_identifier_token41, + STATE(3705), 1, + sym_comment, + ACTIONS(6787), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6785), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140076] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, - aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6592), 1, + STATE(3706), 1, + sym_comment, + STATE(4796), 1, + sym_redirection, + ACTIONS(6757), 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(6759), 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(6791), 12, sym__newline, - ACTIONS(6594), 1, - anon_sym_LPAREN, - ACTIONS(6596), 1, - anon_sym_DOLLAR, - ACTIONS(6600), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, - aux_sym__val_number_decimal_token2, - STATE(1638), 1, - sym__val_number, - STATE(1703), 1, - sym__val_number_decimal, - STATE(2090), 1, - sym__expr_unary_minus, - STATE(3681), 1, - aux_sym_shebang_repeat1, - STATE(3714), 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, + [140120] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3707), 1, sym_comment, - STATE(3764), 1, - sym_expr_parenthesized, - STATE(4070), 1, - sym_val_number, - STATE(4196), 1, - sym__binary_predicate_parenthesized, - STATE(4197), 1, - sym__predicate, - ACTIONS(215), 2, - anon_sym_true, - anon_sym_false, - STATE(4273), 2, - sym_expr_unary, - sym_val_bool, - STATE(4875), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [139902] = 5, + STATE(4924), 1, + sym_redirection, + ACTIONS(6775), 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(6777), 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(6767), 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, + [140164] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3187), 1, + ACTIONS(3174), 1, aux_sym_cmd_identifier_token41, - STATE(3715), 1, + STATE(3708), 1, sym_comment, - ACTIONS(3185), 5, + ACTIONS(3172), 5, anon_sym_STAR, anon_sym_SLASH, anon_sym_PLUS, anon_sym_LT, anon_sym_GT, - ACTIONS(3183), 23, + ACTIONS(3170), 23, anon_sym_STAR_STAR, anon_sym_PLUS_PLUS, anon_sym_mod, @@ -358426,21 +357758,106 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [139944] = 5, + [140206] = 10, ACTIONS(251), 1, anon_sym_POUND, - STATE(3716), 1, + ACTIONS(6793), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3709), 1, + sym_comment, + ACTIONS(5205), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6769), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5203), 17, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140258] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6793), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3710), 1, + sym_comment, + ACTIONS(6769), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6801), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(5203), 13, + anon_sym_in2, + anon_sym_EQ_GT, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [140312] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3711), 1, sym_comment, - ACTIONS(6782), 2, + ACTIONS(6771), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5216), 5, + ACTIONS(5205), 5, anon_sym_GT2, anon_sym_STAR2, anon_sym_LT2, anon_sym_SLASH2, anon_sym_PLUS2, - ACTIONS(5214), 22, + ACTIONS(5203), 22, anon_sym_DASH2, anon_sym_in2, anon_sym_EQ_GT, @@ -358463,225 +357880,188 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [139986] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6788), 1, - aux_sym_cmd_identifier_token41, - STATE(3717), 1, - sym_comment, - ACTIONS(6786), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6784), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [140028] = 16, + [140354] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - ACTIONS(6808), 1, + ACTIONS(6807), 1, anon_sym_bit_DASHand2, - ACTIONS(6810), 1, + ACTIONS(6809), 1, anon_sym_bit_DASHxor2, - ACTIONS(6812), 1, + ACTIONS(6811), 1, anon_sym_bit_DASHor2, - STATE(3718), 1, + STATE(3712), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6800), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 4, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5203), 4, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140092] = 17, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140418] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - ACTIONS(6808), 1, + ACTIONS(6807), 1, anon_sym_bit_DASHand2, - ACTIONS(6810), 1, + ACTIONS(6809), 1, anon_sym_bit_DASHxor2, - ACTIONS(6812), 1, + ACTIONS(6811), 1, anon_sym_bit_DASHor2, - ACTIONS(6814), 1, + ACTIONS(6813), 1, anon_sym_and2, - STATE(3719), 1, + STATE(3713), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6800), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 3, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5203), 3, anon_sym_EQ_GT, anon_sym_xor2, anon_sym_or2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140158] = 18, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140484] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - ACTIONS(6808), 1, + ACTIONS(6807), 1, anon_sym_bit_DASHand2, - ACTIONS(6810), 1, + ACTIONS(6809), 1, anon_sym_bit_DASHxor2, - ACTIONS(6812), 1, + ACTIONS(6811), 1, anon_sym_bit_DASHor2, - ACTIONS(6814), 1, + ACTIONS(6813), 1, anon_sym_and2, - ACTIONS(6816), 1, + ACTIONS(6815), 1, anon_sym_xor2, - STATE(3720), 1, + STATE(3714), 1, sym_comment, - ACTIONS(5214), 2, + ACTIONS(5203), 2, anon_sym_EQ_GT, anon_sym_or2, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6800), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140226] = 12, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [140552] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - STATE(3721), 1, + STATE(3715), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6802), 2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 9, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 9, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, @@ -358691,28 +358071,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140282] = 9, + [140608] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - STATE(3722), 1, + STATE(3716), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5205), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6796), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6802), 2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5214), 19, + ACTIONS(5203), 19, anon_sym_in2, anon_sym_EQ_GT, anon_sym_and2, @@ -358732,212 +358112,345 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140332] = 17, + [140658] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6826), 1, - anon_sym_and2, - ACTIONS(6836), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - ACTIONS(6840), 1, + ACTIONS(6807), 1, anon_sym_bit_DASHand2, - ACTIONS(6842), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6844), 1, - anon_sym_bit_DASHor2, - STATE(3723), 1, + STATE(3717), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6771), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 3, - anon_sym_LBRACE, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [140398] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6792), 1, - anon_sym_DASH2, - ACTIONS(6804), 1, - anon_sym_PLUS2, - STATE(3724), 1, - sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, + ACTIONS(6799), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6796), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6800), 2, + ACTIONS(6805), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 7, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 6, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140456] = 14, + [140718] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - ACTIONS(6808), 1, + ACTIONS(6807), 1, anon_sym_bit_DASHand2, - STATE(3725), 1, + ACTIONS(6809), 1, + anon_sym_bit_DASHxor2, + STATE(3718), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6800), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, + ACTIONS(6771), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, + ACTIONS(6799), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 6, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 5, anon_sym_EQ_GT, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140516] = 15, + [140780] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6821), 1, + aux_sym_cmd_identifier_token41, + STATE(3719), 1, + sym_comment, + ACTIONS(6819), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6817), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140822] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3180), 1, + aux_sym_cmd_identifier_token41, + STATE(3720), 1, + sym_comment, + ACTIONS(3178), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3176), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140864] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3168), 1, + aux_sym_cmd_identifier_token41, + STATE(3721), 1, + sym_comment, + ACTIONS(3166), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(3164), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140906] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6827), 1, + aux_sym_cmd_identifier_token41, + STATE(3722), 1, + sym_comment, + ACTIONS(6825), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6823), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140948] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6833), 1, + aux_sym_cmd_identifier_token41, + STATE(3723), 1, + sym_comment, + ACTIONS(6831), 5, + anon_sym_STAR, + anon_sym_SLASH, + anon_sym_PLUS, + anon_sym_LT, + anon_sym_GT, + ACTIONS(6829), 23, + anon_sym_STAR_STAR, + anon_sym_PLUS_PLUS, + anon_sym_mod, + anon_sym_SLASH_SLASH, + anon_sym_DASH, + anon_sym_bit_DASHshl, + anon_sym_bit_DASHshr, + anon_sym_EQ_TILDE, + anon_sym_BANG_TILDE, + anon_sym_bit_DASHand, + anon_sym_bit_DASHxor, + anon_sym_bit_DASHor, + anon_sym_and, + anon_sym_xor, + anon_sym_or, + anon_sym_in, + anon_sym_not_DASHin, + anon_sym_starts_DASHwith, + anon_sym_ends_DASHwith, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [140990] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - ACTIONS(6808), 1, - anon_sym_bit_DASHand2, - ACTIONS(6810), 1, - anon_sym_bit_DASHxor2, - STATE(3726), 1, + STATE(3724), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, + ACTIONS(5205), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6800), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6794), 4, + ACTIONS(5203), 17, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 5, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140578] = 7, + [141042] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(3727), 1, + STATE(3725), 1, sym_comment, - ACTIONS(6824), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 3, + ACTIONS(5205), 3, anon_sym_GT2, anon_sym_LT2, anon_sym_PLUS2, - ACTIONS(5214), 20, + ACTIONS(5203), 20, anon_sym_DASH2, anon_sym_in2, anon_sym_LBRACE, @@ -358958,231 +358471,241 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140624] = 18, + [141088] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6826), 1, - anon_sym_and2, - ACTIONS(6836), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - ACTIONS(6840), 1, - anon_sym_bit_DASHand2, - ACTIONS(6842), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6844), 1, - anon_sym_bit_DASHor2, - ACTIONS(6846), 1, - anon_sym_xor2, - STATE(3728), 1, + STATE(3726), 1, sym_comment, - ACTIONS(5214), 2, - anon_sym_LBRACE, - anon_sym_or2, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [140692] = 12, + ACTIONS(5203), 13, + anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141142] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, - anon_sym_DASH2, - ACTIONS(6836), 1, - anon_sym_PLUS2, - STATE(3729), 1, + STATE(3727), 1, sym_comment, - ACTIONS(6818), 2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5205), 5, anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, anon_sym_STAR2, + anon_sym_LT2, anon_sym_SLASH2, - ACTIONS(6832), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6822), 4, + anon_sym_PLUS2, + ACTIONS(5203), 22, + anon_sym_DASH2, anon_sym_in2, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 9, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140748] = 11, + [141184] = 16, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - STATE(3730), 1, + ACTIONS(6855), 1, + anon_sym_bit_DASHand2, + ACTIONS(6857), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6859), 1, + anon_sym_bit_DASHor2, + STATE(3728), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6802), 2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6798), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5203), 4, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 13, + ACTIONS(6851), 4, anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, + [141248] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6835), 1, + anon_sym_DASH2, + ACTIONS(6843), 1, + anon_sym_PLUS2, + ACTIONS(6855), 1, anon_sym_bit_DASHand2, + ACTIONS(6857), 1, anon_sym_bit_DASHxor2, + ACTIONS(6859), 1, anon_sym_bit_DASHor2, - [140802] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3193), 1, - aux_sym_cmd_identifier_token41, - STATE(3731), 1, + ACTIONS(6861), 1, + anon_sym_and2, + STATE(3729), 1, sym_comment, - ACTIONS(3191), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3189), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [140844] = 11, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6845), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5203), 3, + anon_sym_LBRACE, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(6849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6851), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141314] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - STATE(3732), 1, + ACTIONS(6855), 1, + anon_sym_bit_DASHand2, + ACTIONS(6857), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6859), 1, + anon_sym_bit_DASHor2, + ACTIONS(6861), 1, + anon_sym_and2, + ACTIONS(6863), 1, + anon_sym_xor2, + STATE(3730), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(5203), 2, + anon_sym_LBRACE, + anon_sym_or2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6828), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 13, + ACTIONS(6851), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [140898] = 6, + [141382] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3733), 1, + STATE(3731), 1, sym_comment, - STATE(4893), 1, + STATE(4807), 1, sym_redirection, - ACTIONS(6848), 8, + ACTIONS(6757), 8, anon_sym_err_GT, anon_sym_out_GT, anon_sym_e_GT, @@ -359191,7 +358714,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT, anon_sym_o_PLUSe_GT, anon_sym_e_PLUSo_GT, - ACTIONS(6850), 8, + ACTIONS(6759), 8, anon_sym_err_GT_GT, anon_sym_out_GT_GT, anon_sym_e_GT_GT, @@ -359200,8 +358723,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_GT, anon_sym_o_PLUSe_GT_GT, anon_sym_e_PLUSo_GT_GT, - ACTIONS(6780), 12, - ts_builtin_sym_end, + ACTIONS(6865), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -359213,28 +358735,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, - [140942] = 7, + anon_sym_RPAREN, + [141426] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(3734), 1, + ACTIONS(6835), 1, + anon_sym_DASH2, + ACTIONS(6843), 1, + anon_sym_PLUS2, + STATE(3732), 1, sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6796), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6802), 2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5216), 3, + ACTIONS(6845), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6847), 2, anon_sym_GT2, anon_sym_LT2, - anon_sym_PLUS2, - ACTIONS(5214), 20, + ACTIONS(6849), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6851), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 9, + anon_sym_LBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + anon_sym_bit_DASHand2, + anon_sym_bit_DASHxor2, + anon_sym_bit_DASHor2, + [141482] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6835), 1, anon_sym_DASH2, + ACTIONS(6843), 1, + anon_sym_PLUS2, + STATE(3733), 1, + sym_comment, + ACTIONS(5205), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6837), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6839), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(6841), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(5203), 19, anon_sym_in2, - anon_sym_EQ_GT, + anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -359252,753 +358821,431 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [140988] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6856), 1, - aux_sym_cmd_identifier_token41, - STATE(3735), 1, - sym_comment, - ACTIONS(6854), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6852), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [141030] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3736), 1, - sym_comment, - STATE(4820), 1, - sym_redirection, - ACTIONS(6764), 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(6766), 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(6858), 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, - [141074] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3737), 1, - sym_comment, - STATE(4937), 1, - sym_redirection, - ACTIONS(6848), 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(6850), 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(6762), 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, - [141118] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3738), 1, - sym_comment, - STATE(4808), 1, - sym_redirection, - ACTIONS(6764), 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(6766), 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(6860), 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, - [141162] = 15, + [141532] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - ACTIONS(6840), 1, - anon_sym_bit_DASHand2, - ACTIONS(6842), 1, - anon_sym_bit_DASHxor2, - STATE(3739), 1, + STATE(3734), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 5, + ACTIONS(6851), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 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, - [141224] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6866), 1, - aux_sym_cmd_identifier_token41, - STATE(3740), 1, - sym_comment, - ACTIONS(6864), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6862), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [141266] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6872), 1, - aux_sym_cmd_identifier_token41, - STATE(3741), 1, - sym_comment, - ACTIONS(6870), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6868), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [141308] = 13, + [141590] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - STATE(3742), 1, + ACTIONS(6855), 1, + anon_sym_bit_DASHand2, + STATE(3735), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 7, + ACTIONS(6851), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 6, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHand2, anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141366] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6878), 1, - aux_sym_cmd_identifier_token41, - STATE(3743), 1, - sym_comment, - ACTIONS(6876), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(6874), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [141408] = 14, + [141650] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - ACTIONS(6840), 1, + ACTIONS(6855), 1, anon_sym_bit_DASHand2, - STATE(3744), 1, + ACTIONS(6857), 1, + anon_sym_bit_DASHxor2, + STATE(3736), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5214), 6, + ACTIONS(6851), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 5, anon_sym_LBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_bit_DASHxor2, anon_sym_bit_DASHor2, - [141468] = 5, + [141712] = 13, ACTIONS(251), 1, anon_sym_POUND, - STATE(3745), 1, + ACTIONS(6793), 1, + anon_sym_DASH2, + ACTIONS(6795), 1, + anon_sym_PLUS2, + STATE(3737), 1, sym_comment, - ACTIONS(6832), 2, + ACTIONS(6769), 2, + anon_sym_STAR2, + anon_sym_SLASH2, + ACTIONS(6771), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5216), 5, + ACTIONS(6773), 2, + anon_sym_mod2, + anon_sym_SLASH_SLASH2, + ACTIONS(6797), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(6799), 2, anon_sym_GT2, - anon_sym_STAR2, anon_sym_LT2, - anon_sym_SLASH2, - anon_sym_PLUS2, - ACTIONS(5214), 22, - anon_sym_DASH2, - anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(6805), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, + ACTIONS(6803), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(5203), 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, - [141510] = 10, + [141770] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6792), 1, + ACTIONS(5404), 1, anon_sym_DASH2, - ACTIONS(6804), 1, + ACTIONS(5412), 1, anon_sym_PLUS2, - STATE(3746), 1, + ACTIONS(5424), 1, + anon_sym_bit_DASHand2, + ACTIONS(5426), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5428), 1, + anon_sym_bit_DASHor2, + ACTIONS(5430), 1, + anon_sym_and2, + ACTIONS(5432), 1, + anon_sym_xor2, + ACTIONS(6867), 1, + anon_sym_or2, + STATE(3738), 1, sym_comment, - ACTIONS(5216), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6796), 2, + ACTIONS(5406), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6802), 2, + ACTIONS(5408), 2, + anon_sym_STAR_STAR2, + anon_sym_PLUS_PLUS2, + ACTIONS(5410), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, + ACTIONS(5414), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 17, - anon_sym_in2, - anon_sym_EQ_GT, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, + ACTIONS(5416), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(5422), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5418), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141562] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3181), 1, - aux_sym_cmd_identifier_token41, - STATE(3747), 1, - sym_comment, - ACTIONS(3179), 5, - anon_sym_STAR, - anon_sym_SLASH, - anon_sym_PLUS, - anon_sym_LT, - anon_sym_GT, - ACTIONS(3177), 23, - anon_sym_STAR_STAR, - anon_sym_PLUS_PLUS, - anon_sym_mod, - anon_sym_SLASH_SLASH, - anon_sym_DASH, - anon_sym_bit_DASHshl, - anon_sym_bit_DASHshr, - anon_sym_EQ_TILDE, - anon_sym_BANG_TILDE, - anon_sym_bit_DASHand, - anon_sym_bit_DASHxor, - anon_sym_bit_DASHor, - anon_sym_and, - anon_sym_xor, - anon_sym_or, - anon_sym_in, - anon_sym_not_DASHin, - anon_sym_starts_DASHwith, - anon_sym_ends_DASHwith, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [141604] = 16, + ACTIONS(5420), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141837] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6835), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(6843), 1, anon_sym_PLUS2, - ACTIONS(6840), 1, + ACTIONS(6855), 1, anon_sym_bit_DASHand2, - ACTIONS(6842), 1, + ACTIONS(6857), 1, anon_sym_bit_DASHxor2, - ACTIONS(6844), 1, + ACTIONS(6859), 1, anon_sym_bit_DASHor2, - STATE(3748), 1, + ACTIONS(6861), 1, + anon_sym_and2, + ACTIONS(6863), 1, + anon_sym_xor2, + ACTIONS(6869), 1, + anon_sym_or2, + STATE(3739), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6837), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6839), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6841), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6845), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 4, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, + ACTIONS(6847), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6853), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6849), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [141668] = 10, + ACTIONS(6851), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [141904] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6378), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(6392), 1, anon_sym_PLUS2, - STATE(3749), 1, + ACTIONS(6396), 1, + anon_sym_bit_DASHand2, + ACTIONS(6398), 1, + anon_sym_bit_DASHxor2, + ACTIONS(6423), 1, + anon_sym_bit_DASHor2, + ACTIONS(6425), 1, + anon_sym_and2, + ACTIONS(6427), 1, + anon_sym_xor2, + ACTIONS(6871), 1, + anon_sym_or2, + STATE(3740), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(6376), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6382), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6832), 2, + ACTIONS(6386), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6388), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6390), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6394), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5214), 17, + ACTIONS(6380), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(6384), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141720] = 9, + [141971] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(5458), 1, anon_sym_DASH2, - ACTIONS(6836), 1, + ACTIONS(5472), 1, anon_sym_PLUS2, - STATE(3750), 1, + ACTIONS(5476), 1, + anon_sym_bit_DASHand2, + ACTIONS(5478), 1, + anon_sym_bit_DASHxor2, + ACTIONS(5528), 1, + anon_sym_bit_DASHor2, + ACTIONS(5530), 1, + anon_sym_and2, + ACTIONS(5532), 1, + anon_sym_xor2, + ACTIONS(6873), 1, + anon_sym_or2, + STATE(3741), 1, sym_comment, - ACTIONS(5216), 2, + ACTIONS(5456), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(5462), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6832), 2, + ACTIONS(5466), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(5468), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(5470), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5214), 19, + ACTIONS(5474), 2, + anon_sym_bit_DASHshl2, + anon_sym_bit_DASHshr2, + ACTIONS(5460), 4, anon_sym_in2, - anon_sym_LBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, + ACTIONS(5464), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - anon_sym_bit_DASHand2, - anon_sym_bit_DASHxor2, - anon_sym_bit_DASHor2, - [141770] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, - ACTIONS(227), 1, - aux_sym__val_number_token5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3427), 1, - aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, - aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, - aux_sym_expr_unary_token1, - ACTIONS(5833), 1, - anon_sym_LPAREN, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6596), 1, - anon_sym_DOLLAR, - ACTIONS(6600), 1, - aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, - aux_sym__val_number_decimal_token2, - STATE(1638), 1, - sym__val_number, - STATE(1703), 1, - sym__val_number_decimal, - STATE(2545), 1, - sym__expr_unary_minus, - STATE(3751), 1, - sym_comment, - STATE(3771), 1, - sym_expr_parenthesized, - STATE(4070), 1, - sym_val_number, - STATE(4366), 1, - sym__predicate, - STATE(4376), 1, - sym__binary_predicate, - ACTIONS(89), 2, - anon_sym_true, - anon_sym_false, - STATE(4317), 2, - sym_expr_unary, - sym_val_bool, - STATE(4860), 2, - sym__where_predicate_lhs, - sym_val_variable, - ACTIONS(229), 5, - aux_sym__val_number_token1, - aux_sym__val_number_token2, - aux_sym__val_number_token3, - aux_sym__val_number_token4, - aux_sym__val_number_token6, - [141847] = 23, + [142038] = 23, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3752), 1, + STATE(3742), 1, sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4207), 1, + STATE(4138), 1, sym__binary_predicate, - STATE(4211), 1, + STATE(4139), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360007,52 +359254,90 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [141924] = 23, + [142115] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3743), 1, + sym_comment, + ACTIONS(6877), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6883), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6879), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6881), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6875), 16, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [142160] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6594), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3753), 1, + STATE(3744), 1, sym_comment, - STATE(3764), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4212), 1, - sym__binary_predicate, - STATE(4213), 1, + STATE(4331), 1, sym__predicate, - ACTIONS(215), 2, + STATE(4370), 1, + sym__binary_predicate, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360061,52 +359346,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142001] = 23, + [142237] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6594), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3754), 1, + STATE(3745), 1, sym_comment, - STATE(3764), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4215), 1, + STATE(4304), 1, sym__binary_predicate, - STATE(4222), 1, + STATE(4307), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360115,150 +359400,101 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142078] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6385), 1, - anon_sym_DASH2, - ACTIONS(6399), 1, - anon_sym_PLUS2, - ACTIONS(6403), 1, - anon_sym_bit_DASHand2, - ACTIONS(6405), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6407), 1, - anon_sym_bit_DASHor2, - ACTIONS(6415), 1, - anon_sym_and2, - ACTIONS(6417), 1, - anon_sym_xor2, - ACTIONS(6880), 1, - anon_sym_or2, - STATE(3755), 1, - sym_comment, - ACTIONS(6383), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6389), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6393), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6395), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6397), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6401), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6387), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6391), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [142145] = 18, + [142314] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5416), 1, + ACTIONS(6793), 1, anon_sym_DASH2, - ACTIONS(5424), 1, + ACTIONS(6795), 1, anon_sym_PLUS2, - ACTIONS(5436), 1, + ACTIONS(6807), 1, anon_sym_bit_DASHand2, - ACTIONS(5438), 1, + ACTIONS(6809), 1, anon_sym_bit_DASHxor2, - ACTIONS(5440), 1, + ACTIONS(6811), 1, anon_sym_bit_DASHor2, - ACTIONS(5442), 1, + ACTIONS(6813), 1, anon_sym_and2, - ACTIONS(5444), 1, + ACTIONS(6815), 1, anon_sym_xor2, - ACTIONS(6882), 1, + ACTIONS(6885), 1, anon_sym_or2, - STATE(3756), 1, + STATE(3746), 1, sym_comment, - ACTIONS(5418), 2, + ACTIONS(6769), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(5420), 2, + ACTIONS(6771), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(5422), 2, + ACTIONS(6773), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(5426), 2, + ACTIONS(6797), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(5428), 2, + ACTIONS(6799), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(5434), 2, + ACTIONS(6805), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(5430), 4, + ACTIONS(6801), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - ACTIONS(5432), 4, + ACTIONS(6803), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - [142212] = 23, + [142381] = 23, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3757), 1, - sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3747), 1, + sym_comment, + STATE(4022), 1, sym_val_number, - STATE(4226), 1, + STATE(4119), 1, sym__binary_predicate, - STATE(4228), 1, + STATE(4121), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360267,101 +359503,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142289] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6267), 1, - anon_sym_DASH2, - ACTIONS(6279), 1, - anon_sym_PLUS2, - ACTIONS(6285), 1, - anon_sym_bit_DASHand2, - ACTIONS(6287), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6377), 1, - anon_sym_bit_DASHor2, - ACTIONS(6379), 1, - anon_sym_and2, - ACTIONS(6381), 1, - anon_sym_xor2, - ACTIONS(6884), 1, - anon_sym_or2, - STATE(3758), 1, - sym_comment, - ACTIONS(6265), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6271), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6275), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6277), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6281), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6283), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6269), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6273), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - [142356] = 23, + [142458] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(5833), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2545), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3759), 1, + STATE(3748), 1, sym_comment, - STATE(3771), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4301), 1, + STATE(4336), 1, sym__binary_predicate, - STATE(4307), 1, + STATE(4339), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4317), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4860), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360370,52 +359557,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142433] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, + [142535] = 23, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(5833), 1, - anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6596), 1, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2545), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3760), 1, - sym_comment, - STATE(3771), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3749), 1, + sym_comment, + STATE(4022), 1, sym_val_number, - STATE(4300), 1, + STATE(4126), 1, sym__binary_predicate, - STATE(4345), 1, + STATE(4133), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4317), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4860), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360424,52 +359611,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142510] = 23, - ACTIONS(45), 1, - anon_sym_DASH2, + [142612] = 23, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(5833), 1, - anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6596), 1, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2545), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3761), 1, - sym_comment, - STATE(3771), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3750), 1, + sym_comment, + STATE(4022), 1, sym_val_number, - STATE(4365), 1, + STATE(4134), 1, sym__binary_predicate, - STATE(4382), 1, + STATE(4135), 1, sym__predicate, - ACTIONS(89), 2, + ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4317), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4860), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360478,52 +359665,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142587] = 23, + [142689] = 23, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(381), 1, anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(3762), 1, - sym_comment, - STATE(3764), 1, + STATE(3743), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(3751), 1, + sym_comment, + STATE(4022), 1, sym_val_number, - STATE(4190), 1, + STATE(4136), 1, sym__binary_predicate, - STATE(4194), 1, + STATE(4137), 1, sym__predicate, ACTIONS(215), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4172), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4861), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360532,52 +359719,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142664] = 23, + [142766] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(5833), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2545), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3763), 1, + STATE(3752), 1, sym_comment, - STATE(3771), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4355), 1, + STATE(4295), 1, sym__binary_predicate, - STATE(4356), 1, + STATE(4303), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4317), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4860), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360586,139 +359773,155 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142741] = 7, + [142843] = 23, + ACTIONS(227), 1, + aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3764), 1, + ACTIONS(381), 1, + anon_sym_DASH2, + ACTIONS(3394), 1, + aux_sym__val_number_decimal_token3, + ACTIONS(3396), 1, + aux_sym__val_number_decimal_token4, + ACTIONS(3440), 1, + aux_sym_expr_unary_token1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(6583), 1, + anon_sym_DOLLAR, + ACTIONS(6587), 1, + aux_sym__val_number_decimal_token1, + ACTIONS(6589), 1, + aux_sym__val_number_decimal_token2, + STATE(1662), 1, + sym__val_number, + STATE(1682), 1, + sym__val_number_decimal, + STATE(2085), 1, + sym__expr_unary_minus, + STATE(3743), 1, + sym_expr_parenthesized, + STATE(3753), 1, sym_comment, - ACTIONS(6888), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6894), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6890), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6892), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6886), 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, - [142786] = 18, + STATE(4022), 1, + sym_val_number, + STATE(4140), 1, + sym__binary_predicate, + STATE(4141), 1, + sym__predicate, + ACTIONS(215), 2, + anon_sym_true, + anon_sym_false, + STATE(4172), 2, + sym_expr_unary, + sym_val_bool, + STATE(4861), 2, + sym__where_predicate_lhs, + sym_val_variable, + ACTIONS(229), 5, + aux_sym__val_number_token1, + aux_sym__val_number_token2, + aux_sym__val_number_token3, + aux_sym__val_number_token4, + aux_sym__val_number_token6, + [142920] = 18, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6820), 1, + ACTIONS(6336), 1, anon_sym_DASH2, - ACTIONS(6826), 1, - anon_sym_and2, - ACTIONS(6836), 1, + ACTIONS(6344), 1, anon_sym_PLUS2, - ACTIONS(6840), 1, + ACTIONS(6356), 1, anon_sym_bit_DASHand2, - ACTIONS(6842), 1, + ACTIONS(6358), 1, anon_sym_bit_DASHxor2, - ACTIONS(6844), 1, + ACTIONS(6360), 1, anon_sym_bit_DASHor2, - ACTIONS(6846), 1, + ACTIONS(6362), 1, + anon_sym_and2, + ACTIONS(6364), 1, anon_sym_xor2, - ACTIONS(6896), 1, + ACTIONS(6887), 1, anon_sym_or2, - STATE(3765), 1, + STATE(3754), 1, sym_comment, - ACTIONS(6818), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6824), 2, + ACTIONS(6338), 2, anon_sym_STAR2, anon_sym_SLASH2, - ACTIONS(6830), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6832), 2, + ACTIONS(6340), 2, anon_sym_STAR_STAR2, anon_sym_PLUS_PLUS2, - ACTIONS(6834), 2, + ACTIONS(6342), 2, anon_sym_mod2, anon_sym_SLASH_SLASH2, - ACTIONS(6838), 2, + ACTIONS(6346), 2, anon_sym_bit_DASHshl2, anon_sym_bit_DASHshr2, - ACTIONS(6822), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6828), 4, + ACTIONS(6348), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6354), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6350), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [142853] = 23, + ACTIONS(6352), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + [142987] = 23, + ACTIONS(45), 1, + anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(381), 1, - anon_sym_DASH2, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3453), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(6590), 1, - sym_identifier, - ACTIONS(6594), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6596), 1, + ACTIONS(6577), 1, + sym_identifier, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2090), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3764), 1, - sym_expr_parenthesized, - STATE(3766), 1, + STATE(3755), 1, sym_comment, - STATE(4070), 1, + STATE(3759), 1, + sym_expr_parenthesized, + STATE(4022), 1, sym_val_number, - STATE(4201), 1, + STATE(4350), 1, sym__binary_predicate, - STATE(4205), 1, + STATE(4352), 1, sym__predicate, - ACTIONS(215), 2, + ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4273), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4875), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360727,52 +359930,52 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [142930] = 23, + [143064] = 23, ACTIONS(45), 1, anon_sym_DASH2, ACTIONS(227), 1, aux_sym__val_number_token5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3427), 1, + ACTIONS(3394), 1, aux_sym__val_number_decimal_token3, - ACTIONS(3429), 1, + ACTIONS(3396), 1, aux_sym__val_number_decimal_token4, - ACTIONS(3485), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(5833), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6590), 1, + ACTIONS(6577), 1, sym_identifier, - ACTIONS(6596), 1, + ACTIONS(6583), 1, anon_sym_DOLLAR, - ACTIONS(6600), 1, + ACTIONS(6587), 1, aux_sym__val_number_decimal_token1, - ACTIONS(6602), 1, + ACTIONS(6589), 1, aux_sym__val_number_decimal_token2, - STATE(1638), 1, + STATE(1662), 1, sym__val_number, - STATE(1703), 1, + STATE(1682), 1, sym__val_number_decimal, - STATE(2545), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(3767), 1, + STATE(3756), 1, sym_comment, - STATE(3771), 1, + STATE(3759), 1, sym_expr_parenthesized, - STATE(4070), 1, + STATE(4022), 1, sym_val_number, - STATE(4328), 1, + STATE(4368), 1, sym__binary_predicate, - STATE(4333), 1, + STATE(4369), 1, sym__predicate, ACTIONS(89), 2, anon_sym_true, anon_sym_false, - STATE(4317), 2, + STATE(4362), 2, sym_expr_unary, sym_val_bool, - STATE(4860), 2, + STATE(4847), 2, sym__where_predicate_lhs, sym_val_variable, ACTIONS(229), 5, @@ -360781,108 +359984,10 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_token3, aux_sym__val_number_token4, aux_sym__val_number_token6, - [143007] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5488), 1, - anon_sym_DASH2, - ACTIONS(5496), 1, - anon_sym_PLUS2, - ACTIONS(5508), 1, - anon_sym_bit_DASHand2, - ACTIONS(5510), 1, - anon_sym_bit_DASHxor2, - ACTIONS(5512), 1, - anon_sym_bit_DASHor2, - ACTIONS(5514), 1, - anon_sym_and2, - ACTIONS(5520), 1, - anon_sym_xor2, - ACTIONS(6898), 1, - anon_sym_or2, - STATE(3768), 1, - sym_comment, - ACTIONS(5490), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(5492), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(5494), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(5498), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(5500), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(5506), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(5502), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(5504), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - [143074] = 18, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6792), 1, - anon_sym_DASH2, - ACTIONS(6804), 1, - anon_sym_PLUS2, - ACTIONS(6808), 1, - anon_sym_bit_DASHand2, - ACTIONS(6810), 1, - anon_sym_bit_DASHxor2, - ACTIONS(6812), 1, - anon_sym_bit_DASHor2, - ACTIONS(6814), 1, - anon_sym_and2, - ACTIONS(6816), 1, - anon_sym_xor2, - ACTIONS(6900), 1, - anon_sym_or2, - STATE(3769), 1, - sym_comment, - ACTIONS(6782), 2, - anon_sym_STAR_STAR2, - anon_sym_PLUS_PLUS2, - ACTIONS(6790), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6796), 2, - anon_sym_STAR2, - anon_sym_SLASH2, - ACTIONS(6800), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6802), 2, - anon_sym_mod2, - anon_sym_SLASH_SLASH2, - ACTIONS(6806), 2, - anon_sym_bit_DASHshl2, - anon_sym_bit_DASHshr2, - ACTIONS(6794), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6798), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, [143141] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3770), 1, + STATE(3757), 1, sym_comment, ACTIONS(1018), 2, anon_sym_DASH2, @@ -360913,109 +360018,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_or2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [143179] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3771), 1, - sym_comment, - ACTIONS(6902), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(6908), 2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - ACTIONS(6904), 4, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - ACTIONS(6906), 4, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - ACTIONS(6886), 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, - [143223] = 12, + [143179] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6910), 1, + ACTIONS(6889), 1, anon_sym_DOLLAR, - ACTIONS(6912), 1, - anon_sym_DOT, - ACTIONS(6916), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6918), 1, - aux_sym__immediate_decimal_token5, - STATE(3772), 1, - sym_comment, - STATE(3859), 1, - sym__immediate_decimal, - ACTIONS(6914), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(3935), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1553), 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, - [143277] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(4553), 1, + ACTIONS(6891), 1, anon_sym_DOT, - ACTIONS(4557), 1, + ACTIONS(6895), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(6897), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - STATE(3773), 1, + STATE(3758), 1, sym_comment, - STATE(3934), 1, + STATE(3848), 1, sym__immediate_decimal, - ACTIONS(4555), 2, + ACTIONS(6893), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3933), 2, + STATE(3919), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 16, + ACTIONS(1543), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361032,30 +360060,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143328] = 11, + [143233] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(6922), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6924), 1, - aux_sym__immediate_decimal_token5, - STATE(3774), 1, + STATE(3759), 1, sym_comment, - STATE(3979), 1, - sym__immediate_decimal, - ACTIONS(6920), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1629), 16, + ACTIONS(6899), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(6905), 2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + ACTIONS(6901), 4, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + ACTIONS(6903), 4, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + ACTIONS(6875), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361067,35 +360094,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143379] = 11, + [143277] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6910), 1, + ACTIONS(6889), 1, anon_sym_DOLLAR, - ACTIONS(6922), 1, + ACTIONS(6909), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6924), 1, + ACTIONS(6911), 1, aux_sym__immediate_decimal_token5, - STATE(3775), 1, + STATE(3760), 1, sym_comment, - STATE(3977), 1, + STATE(3988), 1, sym__immediate_decimal, - ACTIONS(6920), 2, + ACTIONS(6907), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2035), 2, + STATE(2033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1553), 16, + ACTIONS(1589), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361112,32 +360137,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143430] = 12, + [143328] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - ACTIONS(6926), 1, + ACTIONS(6913), 1, anon_sym_DOT, - ACTIONS(6930), 1, + ACTIONS(6917), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6932), 1, + ACTIONS(6919), 1, aux_sym__immediate_decimal_token5, - STATE(3776), 1, + STATE(3761), 1, sym_comment, - STATE(3869), 1, + STATE(3853), 1, sym__immediate_decimal, - ACTIONS(6928), 2, + ACTIONS(6915), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3993), 2, + STATE(3991), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1553), 15, + ACTIONS(1543), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361153,28 +360178,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143483] = 10, + [143381] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, + ACTIONS(4556), 1, + anon_sym_DOT, + ACTIONS(6889), 1, anon_sym_DOLLAR, - STATE(2034), 1, - sym__immediate_decimal, - STATE(3777), 1, + STATE(3762), 1, sym_comment, - ACTIONS(4630), 2, + STATE(3918), 1, + sym__immediate_decimal, + ACTIONS(4542), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(3917), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 16, + ACTIONS(1557), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361191,28 +360218,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143531] = 10, + [143432] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + ACTIONS(6909), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(6911), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - STATE(2049), 1, - sym__immediate_decimal, - STATE(3778), 1, + STATE(3763), 1, sym_comment, - ACTIONS(4630), 2, + STATE(3978), 1, + sym__immediate_decimal, + ACTIONS(6907), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2048), 2, + STATE(2016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1665), 16, + ACTIONS(1543), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361229,30 +360258,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143579] = 11, + [143483] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - ACTIONS(4727), 1, + ACTIONS(4686), 1, anon_sym_DOT, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - STATE(3779), 1, + STATE(3764), 1, sym_comment, - STATE(3992), 1, + STATE(3990), 1, sym__immediate_decimal, - ACTIONS(4663), 2, + ACTIONS(4629), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3991), 2, + STATE(3989), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 15, + ACTIONS(1557), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361268,95 +360297,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143629] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1553), 1, - sym__space, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1807), 1, - anon_sym_DOLLAR, - ACTIONS(6934), 1, - anon_sym_LPAREN2, - ACTIONS(6936), 1, - anon_sym_DOT, - ACTIONS(6938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token5, - STATE(3780), 1, - sym_comment, - STATE(3917), 1, - sym__immediate_decimal, - STATE(4080), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 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, - [143685] = 6, + [143533] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6946), 1, + ACTIONS(6921), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6948), 1, - aux_sym__immediate_decimal_token2, - STATE(3781), 1, - sym_comment, - ACTIONS(1595), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 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, - [143725] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6950), 1, - anon_sym_DOT, - ACTIONS(6952), 1, + ACTIONS(6923), 1, aux_sym__immediate_decimal_token2, - STATE(3782), 1, + STATE(3765), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1597), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 21, + ACTIONS(1599), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361378,30 +360331,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [143765] = 11, + [143573] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - ACTIONS(6956), 1, + ACTIONS(6927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6958), 1, + ACTIONS(6929), 1, aux_sym__immediate_decimal_token5, - STATE(3783), 1, + STATE(3766), 1, sym_comment, - STATE(4050), 1, + STATE(4031), 1, sym__immediate_decimal, - ACTIONS(6954), 2, + ACTIONS(6925), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2527), 2, + STATE(2446), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1553), 15, + ACTIONS(1543), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361417,31 +360370,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143815] = 11, + [143623] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(4659), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6487), 1, - anon_sym_DOLLAR, - ACTIONS(6956), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6958), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - STATE(3784), 1, - sym_comment, - STATE(4066), 1, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + STATE(2030), 1, sym__immediate_decimal, - ACTIONS(6954), 2, + STATE(3767), 1, + sym_comment, + ACTIONS(4621), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2494), 2, + STATE(2029), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1629), 15, - ts_builtin_sym_end, + ACTIONS(1707), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361453,31 +360403,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143865] = 10, + [143671] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, + ACTIONS(6889), 1, anon_sym_DOLLAR, - STATE(2045), 1, + STATE(2032), 1, sym__immediate_decimal, - STATE(3785), 1, + STATE(3768), 1, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4621), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2044), 2, + STATE(2031), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1709), 16, + ACTIONS(1711), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361494,28 +360446,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143913] = 10, + [143719] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(4557), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - STATE(2047), 1, - sym__immediate_decimal, - STATE(3786), 1, + ACTIONS(6931), 1, + anon_sym_DOT, + ACTIONS(6933), 1, + aux_sym__immediate_decimal_token2, + STATE(3769), 1, sym_comment, - ACTIONS(4630), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2046), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1713), 16, + ACTIONS(1605), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361532,33 +360475,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [143961] = 13, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [143759] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(1543), 1, sym__space, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(1807), 1, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6960), 1, + ACTIONS(6937), 1, + anon_sym_DOT, + ACTIONS(6939), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6962), 1, + ACTIONS(6941), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6964), 1, + ACTIONS(6943), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6966), 1, + ACTIONS(6945), 1, aux_sym__immediate_decimal_token5, - STATE(3787), 1, + STATE(3770), 1, sym_comment, - STATE(4265), 1, + STATE(3920), 1, sym__immediate_decimal, - STATE(4510), 2, + STATE(4050), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1539), 13, + ACTIONS(1529), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361572,73 +360522,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144014] = 13, - ACTIONS(3), 1, + [143815] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__space, - ACTIONS(1807), 1, - anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6938), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6942), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6968), 1, - anon_sym_DOT, - STATE(3788), 1, - sym_comment, - STATE(4069), 1, - sym__immediate_decimal, - STATE(4068), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [144067] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1629), 1, - sym__space, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(1807), 1, + ACTIONS(6889), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, - anon_sym_LPAREN2, - ACTIONS(6960), 1, + STATE(2028), 1, + sym__immediate_decimal, + STATE(3771), 1, + sym_comment, + ACTIONS(4621), 2, aux_sym__immediate_decimal_token1, - ACTIONS(6962), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6964), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6966), 1, - aux_sym__immediate_decimal_token5, - STATE(3789), 1, - sym_comment, - STATE(4214), 1, - sym__immediate_decimal, - STATE(4495), 2, + STATE(2027), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1627), 13, + ACTIONS(1703), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361652,62 +360557,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144120] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6970), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6972), 1, - aux_sym__immediate_decimal_token2, - STATE(3790), 1, - sym_comment, - ACTIONS(1595), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 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, - [144159] = 10, + [143863] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6487), 1, + ACTIONS(6889), 1, anon_sym_DOLLAR, - STATE(2522), 1, + STATE(2015), 1, sym__immediate_decimal, - STATE(3791), 1, + STATE(3772), 1, sym_comment, - ACTIONS(4729), 2, + ACTIONS(4621), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2521), 2, + STATE(2014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 15, - ts_builtin_sym_end, + ACTIONS(1557), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361719,53 +360593,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_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144206] = 6, + [143911] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6974), 1, - anon_sym_DOT, - ACTIONS(6976), 1, - aux_sym__immediate_decimal_token2, - STATE(3792), 1, - sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - ACTIONS(1589), 20, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + ACTIONS(4625), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [144245] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6952), 1, - aux_sym__immediate_decimal_token2, - STATE(3793), 1, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(6927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6929), 1, + aux_sym__immediate_decimal_token5, + STATE(3773), 1, sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 21, + STATE(4081), 1, + sym__immediate_decimal, + ACTIONS(6925), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2484), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1589), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361777,27 +360634,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, - [144282] = 5, + [143961] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6978), 1, + ACTIONS(6947), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6949), 1, aux_sym__immediate_decimal_token2, - STATE(3794), 1, + STATE(3774), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1597), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 21, + ACTIONS(1599), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361809,8 +360662,6 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -361819,28 +360670,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [144319] = 10, + [144000] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - STATE(2476), 1, + STATE(2444), 1, sym__immediate_decimal, - STATE(3795), 1, + STATE(3775), 1, sym_comment, - ACTIONS(4729), 2, + ACTIONS(4716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2474), 2, + STATE(2443), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1713), 15, + ACTIONS(1557), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361856,29 +360707,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144366] = 10, + [144047] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, - anon_sym_LPAREN2, - ACTIONS(4665), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6487), 1, - anon_sym_DOLLAR, - STATE(2471), 1, - sym__immediate_decimal, - STATE(3796), 1, + ACTIONS(935), 1, + anon_sym_DOT_DOT2, + ACTIONS(4593), 1, + anon_sym_DOT2, + STATE(1403), 1, + aux_sym_cell_path_repeat1, + STATE(1531), 1, + sym_path, + STATE(3757), 1, + sym_cell_path, + STATE(3776), 1, sym_comment, - ACTIONS(4729), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2467), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1709), 15, - ts_builtin_sym_end, + ACTIONS(937), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361890,31 +360734,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_RPAREN, + anon_sym_in2, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144413] = 10, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144090] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - STATE(2492), 1, + STATE(2467), 1, sym__immediate_decimal, - STATE(3797), 1, + STATE(3777), 1, sym_comment, - ACTIONS(4729), 2, + ACTIONS(4716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2478), 2, + STATE(2466), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1665), 15, + ACTIONS(1703), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -361930,22 +360779,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144460] = 8, + [144137] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(935), 1, - anon_sym_DOT_DOT2, - ACTIONS(4572), 1, - anon_sym_DOT2, - STATE(1414), 1, - aux_sym_cell_path_repeat1, - STATE(1497), 1, - sym_path, - STATE(3770), 1, - sym_cell_path, - STATE(3798), 1, + ACTIONS(4625), 1, + anon_sym_LPAREN2, + ACTIONS(4631), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4633), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2473), 1, + sym__immediate_decimal, + STATE(3778), 1, sym_comment, - ACTIONS(937), 19, + ACTIONS(4716), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2468), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1707), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361957,35 +360813,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_in2, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [144503] = 10, + [144184] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(6980), 1, - anon_sym_DOT_DOT2, - ACTIONS(6984), 1, - sym_filesize_unit, - ACTIONS(6986), 1, - sym_duration_unit, - STATE(3799), 1, + ACTIONS(4631), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4633), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2480), 1, + sym__immediate_decimal, + STATE(3779), 1, sym_comment, - STATE(7276), 1, + ACTIONS(4716), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2477), 2, sym__expr_parenthesized_immediate, - ACTIONS(6982), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 16, + sym_val_variable, + ACTIONS(1711), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -361997,61 +360850,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_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [144550] = 14, + [144231] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(2033), 1, + ACTIONS(1557), 1, + sym__space, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6988), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6990), 1, - anon_sym_DOT, - ACTIONS(6992), 1, + ACTIONS(6939), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6994), 1, + ACTIONS(6941), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6996), 1, + ACTIONS(6943), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, + ACTIONS(6945), 1, aux_sym__immediate_decimal_token5, - STATE(3800), 1, + ACTIONS(6951), 1, + anon_sym_DOT, + STATE(3780), 1, sym_comment, - STATE(3972), 1, + STATE(4013), 1, sym__immediate_decimal, - ACTIONS(1553), 2, - ts_builtin_sym_end, - sym__space, - STATE(4290), 2, + STATE(4093), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1539), 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, - [144605] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3801), 1, - sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 21, + ACTIONS(1547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362065,31 +360893,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, + [144284] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(6953), 1, + anon_sym_DOT_DOT2, + ACTIONS(6957), 1, sym_filesize_unit, + ACTIONS(6959), 1, sym_duration_unit, - [144639] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7000), 1, - anon_sym_DOT, - ACTIONS(7002), 1, - aux_sym__immediate_decimal_token2, - STATE(3802), 1, + STATE(3781), 1, sym_comment, - ACTIONS(1589), 6, - sym__space, - anon_sym_LPAREN2, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + ACTIONS(6955), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1587), 15, + ACTIONS(1675), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362103,25 +360927,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, - aux_sym_unquoted_token2, - [144677] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [144331] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(935), 1, - anon_sym_DOT_DOT2, - ACTIONS(4919), 1, - anon_sym_DOT2, - STATE(1421), 1, - sym_cell_path, - STATE(1684), 1, - aux_sym_cell_path_repeat1, - STATE(1861), 1, - sym_path, - STATE(3803), 1, + ACTIONS(6961), 1, + aux_sym__immediate_decimal_token2, + STATE(3782), 1, sym_comment, - ACTIONS(937), 18, - ts_builtin_sym_end, + ACTIONS(1685), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362133,37 +360952,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_LBRACE, + 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, - [144719] = 12, + sym_filesize_unit, + sym_duration_unit, + [144368] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(1543), 1, sym__space, - ACTIONS(1807), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7004), 1, + ACTIONS(6963), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7006), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token3, - STATE(3804), 1, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6969), 1, + aux_sym__immediate_decimal_token5, + STATE(3783), 1, sym_comment, - STATE(4419), 1, + STATE(4280), 1, sym__immediate_decimal, - STATE(4416), 2, + STATE(4478), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1707), 13, + ACTIONS(1529), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362177,31 +361002,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144769] = 12, + [144421] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1713), 1, + ACTIONS(1589), 1, sym__space, - ACTIONS(1807), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7004), 1, + ACTIONS(6963), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7006), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token3, - STATE(3805), 1, + ACTIONS(6967), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6969), 1, + aux_sym__immediate_decimal_token5, + STATE(3784), 1, sym_comment, - STATE(4516), 1, + STATE(4256), 1, sym__immediate_decimal, - STATE(4523), 2, + STATE(4532), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1711), 13, + ACTIONS(1587), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362215,31 +361042,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144819] = 12, + [144474] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1665), 1, - sym__space, - ACTIONS(1807), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(2104), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7004), 1, + ACTIONS(6973), 1, + anon_sym_DOT, + ACTIONS(6975), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7006), 1, + ACTIONS(6977), 1, aux_sym__immediate_decimal_token3, - STATE(3806), 1, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token5, + STATE(3785), 1, sym_comment, - STATE(4477), 1, + STATE(3960), 1, sym__immediate_decimal, - STATE(4433), 2, + ACTIONS(1543), 2, + ts_builtin_sym_end, + sym__space, + STATE(4266), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1657), 13, + ACTIONS(1529), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362251,19 +361083,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, - [144869] = 5, + [144529] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7008), 1, + ACTIONS(6983), 1, + anon_sym_DOT, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token2, - STATE(3807), 1, + STATE(3786), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 20, + ACTIONS(1607), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362284,15 +361116,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [144905] = 4, + [144568] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3808), 1, + ACTIONS(6933), 1, + aux_sym__immediate_decimal_token2, + STATE(3787), 1, sym_comment, - ACTIONS(1595), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1597), 21, + ACTIONS(1607), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362314,31 +361148,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [144939] = 12, - ACTIONS(3), 1, + [144605] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__space, - ACTIONS(1807), 1, - anon_sym_DOLLAR, - ACTIONS(6934), 1, - anon_sym_LPAREN2, - ACTIONS(6942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7004), 1, + ACTIONS(6987), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7006), 1, - aux_sym__immediate_decimal_token3, - STATE(3809), 1, + ACTIONS(6989), 1, + aux_sym__immediate_decimal_token2, + STATE(3788), 1, sym_comment, - STATE(4496), 1, - sym__immediate_decimal, - STATE(4494), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 13, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362352,19 +361174,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [144989] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [144643] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7010), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7012), 1, + ACTIONS(6985), 1, aux_sym__immediate_decimal_token2, - STATE(3810), 1, + STATE(3789), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 19, + ACTIONS(1607), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362376,31 +361203,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, - [145027] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7014), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7016), 1, - aux_sym__immediate_decimal_token2, - STATE(3811), 1, - sym_comment, - ACTIONS(1597), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1595), 15, + [144679] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3790), 1, + sym_comment, + ACTIONS(1597), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362414,56 +361233,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [145065] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7020), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7022), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3812), 1, - sym_comment, - STATE(4381), 1, - sym__immediate_decimal, - ACTIONS(1553), 2, - ts_builtin_sym_end, - sym__space, - STATE(4801), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1539), 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, - [145117] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144713] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3813), 1, + STATE(3791), 1, sym_comment, - ACTIONS(1733), 2, + ACTIONS(1685), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1735), 21, + ACTIONS(1687), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362485,19 +361271,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [145151] = 6, + [144747] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7026), 1, + ACTIONS(6991), 1, anon_sym_DOT, - ACTIONS(7028), 1, + ACTIONS(6993), 1, aux_sym__immediate_decimal_token2, - STATE(3814), 1, + STATE(3792), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1749), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 19, + ACTIONS(1751), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362517,67 +361303,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [145189] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, - anon_sym_LPAREN2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7020), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7022), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - STATE(3815), 1, - sym_comment, - STATE(4367), 1, - sym__immediate_decimal, - ACTIONS(1629), 2, - ts_builtin_sym_end, - sym__space, - STATE(4591), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1627), 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, - [145241] = 10, + [144785] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, - ACTIONS(7030), 1, - anon_sym_DOT_DOT2, - ACTIONS(7034), 1, - sym_filesize_unit, - ACTIONS(7036), 1, - sym_duration_unit, - STATE(3816), 1, + STATE(3793), 1, sym_comment, - STATE(7290), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7032), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 15, - ts_builtin_sym_end, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362589,21 +361323,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, - [145287] = 5, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [144819] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6976), 1, - aux_sym__immediate_decimal_token2, - STATE(3817), 1, + STATE(3794), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 20, - ts_builtin_sym_end, + ACTIONS(1607), 21, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362615,6 +361353,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, @@ -362623,34 +361363,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [145323] = 13, + [144853] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(2104), 1, anon_sym_DOLLAR, - ACTIONS(6988), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(6992), 1, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6994), 1, + ACTIONS(6997), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6996), 1, + ACTIONS(6999), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, + ACTIONS(7001), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7038), 1, - anon_sym_DOT, - STATE(3818), 1, + STATE(3795), 1, sym_comment, - STATE(4268), 1, + STATE(4372), 1, sym__immediate_decimal, - ACTIONS(1643), 2, + ACTIONS(1543), 2, ts_builtin_sym_end, sym__space, - STATE(4260), 2, + STATE(4751), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1633), 11, + ACTIONS(1529), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362662,15 +361402,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, - [145375] = 4, + [144905] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3819), 1, - sym_comment, - ACTIONS(1587), 2, + ACTIONS(935), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 21, + ACTIONS(4949), 1, + anon_sym_DOT2, + STATE(1408), 1, + sym_cell_path, + STATE(1668), 1, + aux_sym_cell_path_repeat1, + STATE(1811), 1, + sym_path, + STATE(3796), 1, + sym_comment, + ACTIONS(937), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362682,42 +361430,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_LBRACE, 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, - [145409] = 12, + [144947] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(1557), 1, + sym__space, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6988), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6996), 1, + ACTIONS(6943), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, + ACTIONS(6945), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7040), 1, + ACTIONS(7003), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7042), 1, + ACTIONS(7005), 1, aux_sym__immediate_decimal_token3, - STATE(3820), 1, + STATE(3797), 1, sym_comment, - STATE(4581), 1, + STATE(4429), 1, sym__immediate_decimal, - ACTIONS(1713), 2, - ts_builtin_sym_end, - sym__space, - STATE(4576), 2, + STATE(4476), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1711), 11, + ACTIONS(1547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362729,24 +361472,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, - [145458] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [144997] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7044), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2104), 1, + anon_sym_DOLLAR, + ACTIONS(6971), 1, + anon_sym_LPAREN2, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7046), 1, - aux_sym__immediate_decimal_token2, - STATE(3821), 1, + ACTIONS(6997), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6999), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7001), 1, + aux_sym__immediate_decimal_token5, + STATE(3798), 1, sym_comment, - ACTIONS(1597), 7, + STATE(4291), 1, + sym__immediate_decimal, + ACTIONS(1589), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1595), 13, + STATE(4592), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1587), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362758,18 +361513,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_DOT_DOT2, - aux_sym_unquoted_token2, - [145495] = 4, - ACTIONS(251), 1, + [145049] = 13, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3822), 1, + ACTIONS(2104), 1, + anon_sym_DOLLAR, + ACTIONS(6971), 1, + anon_sym_LPAREN2, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7007), 1, + anon_sym_DOT, + STATE(3799), 1, sym_comment, - ACTIONS(1733), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1735), 20, + STATE(4265), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, ts_builtin_sym_end, + sym__space, + STATE(4264), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1547), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362781,23 +361552,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, - sym_filesize_unit, - sym_duration_unit, - [145528] = 4, + [145101] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3823), 1, + ACTIONS(7009), 1, + aux_sym__immediate_decimal_token2, + STATE(3800), 1, sym_comment, - ACTIONS(1595), 2, + ACTIONS(1685), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1597), 20, + ACTIONS(1687), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362818,19 +361583,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [145561] = 6, - ACTIONS(251), 1, + [145137] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7048), 1, - anon_sym_DOT, - ACTIONS(7050), 1, + ACTIONS(7011), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7013), 1, aux_sym__immediate_decimal_token2, - STATE(3824), 1, + STATE(3801), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1599), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1597), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 18, + [145175] = 10, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, + ACTIONS(7015), 1, + anon_sym_DOT_DOT2, + ACTIONS(7019), 1, + sym_filesize_unit, + ACTIONS(7021), 1, + sym_duration_unit, + STATE(3802), 1, + sym_comment, + STATE(7346), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7017), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1675), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -362846,20 +361651,31 @@ 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, - [145598] = 5, - ACTIONS(251), 1, + [145221] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7028), 1, - aux_sym__immediate_decimal_token2, - STATE(3825), 1, + ACTIONS(1703), 1, + sym__space, + ACTIONS(1914), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token3, + STATE(3803), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 19, + STATE(4445), 1, + sym__immediate_decimal, + STATE(4424), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1701), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362873,35 +361689,31 @@ 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, - [145633] = 11, + [145271] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1707), 1, sym__space, - ACTIONS(4412), 1, + ACTIONS(1914), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(7052), 1, - anon_sym_DOT_DOT2, - ACTIONS(7056), 1, - sym_filesize_unit, - ACTIONS(7058), 1, - sym_duration_unit, - ACTIONS(7060), 1, - aux_sym_unquoted_token2, - STATE(3826), 1, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token3, + STATE(3804), 1, sym_comment, - STATE(7307), 1, + STATE(4481), 1, + sym__immediate_decimal, + STATE(4477), 2, sym__expr_parenthesized_immediate, - ACTIONS(7054), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 13, + sym_val_variable, + ACTIONS(1705), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362915,17 +361727,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [145680] = 5, - ACTIONS(251), 1, + [145321] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7062), 1, - aux_sym__immediate_decimal_token2, - STATE(3827), 1, + ACTIONS(1711), 1, + sym__space, + ACTIONS(1914), 1, + anon_sym_DOLLAR, + ACTIONS(6935), 1, + anon_sym_LPAREN2, + ACTIONS(6943), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6945), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7005), 1, + aux_sym__immediate_decimal_token3, + STATE(3805), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 19, + STATE(4503), 1, + sym__immediate_decimal, + STATE(4483), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1709), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362939,30 +361765,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, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [145715] = 6, + [145371] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7064), 1, + ACTIONS(7023), 1, anon_sym_DOT, - ACTIONS(7066), 1, + ACTIONS(7025), 1, aux_sym__immediate_decimal_token2, - STATE(3828), 1, + STATE(3806), 1, sym_comment, - ACTIONS(1589), 7, - ts_builtin_sym_end, + ACTIONS(1607), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1587), 13, + ACTIONS(1605), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -362974,17 +361793,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [145752] = 4, + [145409] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(3829), 1, + ACTIONS(7027), 1, + anon_sym_DOT, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token2, + STATE(3807), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1749), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 20, + ACTIONS(1751), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363003,34 +361828,32 @@ 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, - [145785] = 12, + [145446] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, + ACTIONS(2104), 1, anon_sym_DOLLAR, - ACTIONS(6988), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(6996), 1, + ACTIONS(6979), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7040), 1, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7042), 1, + ACTIONS(7033), 1, aux_sym__immediate_decimal_token3, - STATE(3830), 1, + STATE(3808), 1, sym_comment, - STATE(4588), 1, + STATE(4559), 1, sym__immediate_decimal, - ACTIONS(1665), 2, + ACTIONS(1703), 2, ts_builtin_sym_end, sym__space, - STATE(4587), 2, + STATE(4750), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1657), 11, + ACTIONS(1701), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363042,32 +361865,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, - [145834] = 12, - ACTIONS(3), 1, + [145495] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, - anon_sym_LPAREN2, - ACTIONS(6996), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7040), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token3, - STATE(3831), 1, + STATE(3809), 1, sym_comment, - STATE(4569), 1, - sym__immediate_decimal, - ACTIONS(1709), 2, + ACTIONS(1597), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 20, ts_builtin_sym_end, - sym__space, - STATE(4568), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1707), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363079,15 +361886,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, - [145883] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [145528] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3832), 1, + STATE(3810), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1727), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 20, + ACTIONS(1729), 20, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363108,21 +361923,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [145916] = 5, + [145561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7068), 1, + ACTIONS(7035), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7037), 1, aux_sym__immediate_decimal_token2, - STATE(3833), 1, + STATE(3811), 1, sym_comment, - ACTIONS(1669), 6, + ACTIONS(1599), 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(1667), 15, + ACTIONS(1597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363134,25 +361952,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [145951] = 5, + [145598] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7002), 1, - aux_sym__immediate_decimal_token2, - STATE(3834), 1, - sym_comment, - ACTIONS(1589), 6, + ACTIONS(1675), 1, sym__space, + ACTIONS(4052), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(7039), 1, + anon_sym_DOT_DOT2, + ACTIONS(7043), 1, sym_filesize_unit, + ACTIONS(7045), 1, sym_duration_unit, - ACTIONS(1587), 15, + ACTIONS(7047), 1, + aux_sym_unquoted_token2, + STATE(3812), 1, + sym_comment, + STATE(7252), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7041), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363166,34 +361990,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, - aux_sym_unquoted_token2, - [145986] = 12, + [145645] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, - anon_sym_LPAREN2, - ACTIONS(6996), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7040), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7042), 1, - aux_sym__immediate_decimal_token3, - STATE(3835), 1, + ACTIONS(7025), 1, + aux_sym__immediate_decimal_token2, + STATE(3813), 1, sym_comment, - STATE(4686), 1, - sym__immediate_decimal, - ACTIONS(1643), 2, - ts_builtin_sym_end, + ACTIONS(1607), 6, sym__space, - STATE(4671), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1633), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1605), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363205,43 +362016,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, - [146035] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7070), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7072), 1, - aux_sym__immediate_decimal_token2, - STATE(3836), 1, - sym_comment, - ACTIONS(1757), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 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, - [146072] = 5, + [145680] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7074), 1, + ACTIONS(7049), 1, sym__newline, - STATE(3837), 2, + STATE(3814), 2, sym_comment, aux_sym_shebang_repeat1, ACTIONS(1274), 10, @@ -363266,58 +362050,16 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token5, - [146107] = 14, + [145715] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7077), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, - anon_sym_LPAREN2, - ACTIONS(7081), 1, - anon_sym_DOT, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token5, - STATE(3838), 1, - sym_comment, - STATE(4048), 1, - sym__immediate_decimal, - ACTIONS(1539), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4327), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1553), 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, - [146160] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3839), 1, + STATE(3815), 1, sym_comment, - ACTIONS(1669), 6, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1667), 15, + ACTIONS(1685), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363329,23 +362071,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [146192] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [145748] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3840), 1, + ACTIONS(7052), 1, + aux_sym__immediate_decimal_token2, + STATE(3816), 1, sym_comment, - ACTIONS(1597), 6, + ACTIONS(1687), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1595), 15, + ACTIONS(1685), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363361,17 +362109,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [146224] = 5, + [145783] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7050), 1, + ACTIONS(7054), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7056), 1, aux_sym__immediate_decimal_token2, - STATE(3841), 1, + STATE(3817), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1731), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 18, + ACTIONS(1733), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -363390,48 +362140,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [146258] = 6, - ACTIONS(251), 1, + [145820] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7091), 1, + ACTIONS(2104), 1, + anon_sym_DOLLAR, + ACTIONS(6971), 1, + anon_sym_LPAREN2, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7031), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7093), 1, - aux_sym__immediate_decimal_token2, - STATE(3842), 1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3818), 1, sym_comment, - ACTIONS(1595), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1597), 13, - anon_sym_EQ, + STATE(4748), 1, + sym__immediate_decimal, + ACTIONS(1557), 2, + ts_builtin_sym_end, + sym__space, + STATE(4747), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1547), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [146294] = 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, + [145869] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7095), 1, + ACTIONS(7058), 1, aux_sym__immediate_decimal_token2, - STATE(3843), 1, + STATE(3819), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 18, - ts_builtin_sym_end, + ACTIONS(1774), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363443,60 +362199,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [146328] = 6, + [145904] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7097), 1, - anon_sym_DOT, - ACTIONS(7099), 1, + ACTIONS(6993), 1, aux_sym__immediate_decimal_token2, - STATE(3844), 1, + STATE(3820), 1, sym_comment, - ACTIONS(1587), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(1749), 2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1589), 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, - [146364] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3845), 1, - sym_comment, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(4090), 1, - sym_cell_path, - ACTIONS(1719), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 14, + aux_sym_unquoted_token2, + ACTIONS(1751), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363510,72 +362231,79 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [146404] = 13, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [145939] = 12, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7077), 1, + ACTIONS(2104), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(7103), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7105), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7107), 1, + ACTIONS(6979), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7109), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token5, - STATE(3846), 1, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3821), 1, sym_comment, - STATE(4387), 1, + STATE(4574), 1, sym__immediate_decimal, - ACTIONS(1539), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4846), 2, + ACTIONS(1707), 2, + ts_builtin_sym_end, + sym__space, + STATE(4768), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1553), 9, - anon_sym_EQ, + ACTIONS(1705), 11, 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, - [146454] = 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, + [145988] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7077), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(7083), 1, + ACTIONS(7064), 1, + anon_sym_DOT, + ACTIONS(7066), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7085), 1, + ACTIONS(7068), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7087), 1, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7111), 1, - anon_sym_DOT, - STATE(3847), 1, + STATE(3822), 1, sym_comment, - STATE(4324), 1, + STATE(4028), 1, sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(1529), 2, sym_identifier, anon_sym_DASH2, - STATE(4323), 2, + STATE(4327), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 9, + ACTIONS(1543), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -363585,15 +362313,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [146504] = 4, + [146041] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3848), 1, + STATE(3823), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 19, + ACTIONS(1607), 20, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363605,23 +362334,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, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [146536] = 4, - ACTIONS(251), 1, + sym_filesize_unit, + sym_duration_unit, + [146074] = 12, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3849), 1, + ACTIONS(2104), 1, + anon_sym_DOLLAR, + ACTIONS(6971), 1, + anon_sym_LPAREN2, + ACTIONS(6979), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(6981), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7031), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7033), 1, + aux_sym__immediate_decimal_token3, + STATE(3824), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 19, + STATE(4711), 1, + sym__immediate_decimal, + ACTIONS(1711), 2, + ts_builtin_sym_end, + sym__space, + STATE(4545), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1709), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363633,23 +362379,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + [146123] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7074), 1, + anon_sym_DOT, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token2, + STATE(3825), 1, + sym_comment, + ACTIONS(1607), 7, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [146568] = 4, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1605), 13, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [146160] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3850), 1, + STATE(3826), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1731), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 19, + ACTIONS(1733), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363669,15 +362438,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [146600] = 4, + [146192] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3851), 1, + STATE(3827), 1, sym_comment, - ACTIONS(1861), 2, + ACTIONS(1817), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1863), 19, + ACTIONS(1819), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363697,21 +362466,78 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [146632] = 7, - ACTIONS(251), 1, + [146224] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, + STATE(3828), 1, + sym_comment, + ACTIONS(1607), 6, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1605), 15, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1788), 1, + [146256] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, anon_sym_LPAREN2, - ACTIONS(7113), 1, + ACTIONS(7078), 1, anon_sym_DOT_DOT2, - STATE(3852), 1, + ACTIONS(7082), 1, + sym_filesize_unit, + ACTIONS(7084), 1, + sym_duration_unit, + ACTIONS(7086), 1, + aux_sym_unquoted_token2, + STATE(3829), 1, sym_comment, - ACTIONS(7115), 2, + STATE(7224), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1675), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7080), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 16, + 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, + [146302] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3830), 1, + sym_comment, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363728,18 +362554,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [146670] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146334] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_LPAREN2, + ACTIONS(7088), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7090), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7092), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7094), 1, + aux_sym__immediate_decimal_token5, + STATE(3831), 1, + sym_comment, + STATE(4517), 1, + sym__immediate_decimal, + ACTIONS(1529), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4833), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 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, + [146384] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3853), 1, + STATE(3832), 1, sym_comment, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4033), 1, + STATE(4019), 1, sym_cell_path, ACTIONS(1723), 3, sym__space, @@ -363760,34 +362626,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [146710] = 13, + [146424] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1591), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(7077), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(7103), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7105), 1, + ACTIONS(7090), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7107), 1, + ACTIONS(7092), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7109), 1, + ACTIONS(7094), 1, aux_sym__immediate_decimal_token5, - STATE(3854), 1, + STATE(3833), 1, sym_comment, - STATE(4436), 1, + STATE(4391), 1, sym__immediate_decimal, - ACTIONS(1627), 2, + ACTIONS(1587), 2, sym_identifier, anon_sym_DASH2, - STATE(4857), 2, + STATE(4844), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1629), 9, + ACTIONS(1589), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -363797,21 +362663,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [146760] = 6, + [146474] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7098), 1, + anon_sym_DOT_DOT2, + STATE(3834), 1, + sym_comment, + ACTIONS(7100), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1813), 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, + [146512] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7117), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7119), 1, + ACTIONS(7102), 1, + anon_sym_DOT, + ACTIONS(7104), 1, aux_sym__immediate_decimal_token2, - STATE(3855), 1, + STATE(3835), 1, sym_comment, - ACTIONS(1759), 4, + ACTIONS(1751), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1757), 15, + ACTIONS(1749), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363827,19 +362724,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [146796] = 4, + [146548] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3856), 1, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3836), 1, + sym_comment, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3980), 1, + sym_path, + STATE(4084), 1, + sym_cell_path, + ACTIONS(1759), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1757), 14, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [146588] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3837), 1, sym_comment, - ACTIONS(1735), 6, + ACTIONS(1599), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1733), 15, + ACTIONS(1597), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363855,22 +362784,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [146828] = 5, + [146620] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7121), 1, + ACTIONS(7106), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7108), 1, aux_sym__immediate_decimal_token2, - STATE(3857), 1, + STATE(3838), 1, sym_comment, - ACTIONS(1669), 7, - ts_builtin_sym_end, + ACTIONS(1733), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1667), 13, + ACTIONS(1731), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363882,21 +362810,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, aux_sym_unquoted_token2, - [146862] = 4, + [146656] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(3858), 1, + ACTIONS(7110), 1, + aux_sym__immediate_decimal_token2, + STATE(3839), 1, sym_comment, - ACTIONS(1589), 6, + ACTIONS(1687), 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(1587), 15, + ACTIONS(1685), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363908,25 +362841,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [146894] = 7, + [146690] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(7123), 1, - anon_sym_DOT_DOT2, - STATE(3859), 1, + ACTIONS(7029), 1, + aux_sym__immediate_decimal_token2, + STATE(3840), 1, sym_comment, - ACTIONS(7125), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1873), 16, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363938,29 +362866,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, - [146932] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146724] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3860), 1, + STATE(3841), 1, sym_comment, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(4044), 1, - sym_cell_path, - ACTIONS(937), 3, + ACTIONS(1687), 6, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(935), 14, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1685), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -363975,21 +362899,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [146972] = 6, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [146756] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7127), 1, - anon_sym_DOT, - ACTIONS(7129), 1, + ACTIONS(7112), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7114), 1, aux_sym__immediate_decimal_token2, - STATE(3861), 1, + STATE(3842), 1, sym_comment, - ACTIONS(1727), 4, + ACTIONS(1597), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1599), 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, + [146792] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3843), 1, + sym_comment, + ACTIONS(1729), 6, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1725), 15, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1727), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364005,22 +362958,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [147008] = 5, - ACTIONS(3), 1, + [146824] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7066), 1, + ACTIONS(7116), 1, aux_sym__immediate_decimal_token2, - STATE(3862), 1, + STATE(3844), 1, sym_comment, - ACTIONS(1589), 7, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 18, ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - ACTIONS(1587), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364032,12 +362981,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, - aux_sym_unquoted_token2, - [147042] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [146858] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3863), 1, + STATE(3845), 1, sym_comment, ACTIONS(1270), 10, sym_identifier, @@ -364062,30 +363015,54 @@ static const uint16_t ts_small_parse_table[] = { aux_sym__val_number_decimal_token3, aux_sym__val_number_decimal_token4, aux_sym__val_number_token5, - [147074] = 11, - ACTIONS(3), 1, + [146890] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(7131), 1, + ACTIONS(7118), 1, + anon_sym_DOT, + ACTIONS(7120), 1, + aux_sym__immediate_decimal_token2, + STATE(3846), 1, + sym_comment, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(7135), 1, sym_filesize_unit, - ACTIONS(7137), 1, sym_duration_unit, - ACTIONS(7139), 1, - aux_sym_unquoted_token2, - STATE(3864), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1607), 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, + [146926] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3847), 1, sym_comment, - STATE(7343), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1693), 2, - ts_builtin_sym_end, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3980), 1, + sym_path, + STATE(4065), 1, + sym_cell_path, + ACTIONS(937), 3, sym__space, - ACTIONS(7133), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 11, + ACTIONS(935), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364097,32 +363074,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, - [147120] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [146966] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(7122), 1, + anon_sym_DOT_DOT2, + STATE(3848), 1, + sym_comment, + ACTIONS(7124), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1801), 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, + [147004] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7077), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7141), 1, + ACTIONS(7066), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7143), 1, + ACTIONS(7068), 1, aux_sym__immediate_decimal_token3, - STATE(3865), 1, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7126), 1, + anon_sym_DOT, + STATE(3849), 1, sym_comment, - STATE(4856), 1, + STATE(4325), 1, sym__immediate_decimal, - ACTIONS(1657), 2, + ACTIONS(1547), 2, sym_identifier, anon_sym_DASH2, - STATE(4855), 2, + STATE(4324), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1665), 9, + ACTIONS(1557), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -364132,25 +363145,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147167] = 8, - ACTIONS(3), 1, + [147054] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3866), 1, + STATE(3850), 1, sym_comment, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4202), 1, - sym_cell_path, - ACTIONS(1723), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1721), 12, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 19, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364162,17 +363165,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_DOT_DOT2, - [147206] = 4, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147086] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(3867), 1, + ACTIONS(7076), 1, + aux_sym__immediate_decimal_token2, + STATE(3851), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 18, + ACTIONS(1607), 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(1605), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364184,27 +363200,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_DOT_DOT2, + aux_sym_unquoted_token2, + [147120] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [147237] = 7, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7130), 1, + aux_sym__immediate_decimal_token3, + STATE(3852), 1, + sym_comment, + STATE(4839), 1, + sym__immediate_decimal, + ACTIONS(1701), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4838), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1703), 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, + [147167] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(7147), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(7132), 1, anon_sym_DOT_DOT2, - STATE(3868), 1, + STATE(3853), 1, sym_comment, - ACTIONS(7149), 2, + ACTIONS(7134), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 15, + ACTIONS(1801), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364220,22 +363267,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [147274] = 7, - ACTIONS(251), 1, + [147204] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(7151), 1, - anon_sym_DOT_DOT2, - STATE(3869), 1, + STATE(3854), 1, sym_comment, - ACTIONS(7153), 2, + ACTIONS(1687), 7, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1873), 15, - ts_builtin_sym_end, + sym_filesize_unit, + sym_duration_unit, + ACTIONS(1685), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364247,21 +363292,18 @@ static const uint16_t 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, - [147311] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147235] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - ACTIONS(7155), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7157), 1, - aux_sym__immediate_decimal_token2, - STATE(3870), 1, + STATE(3855), 1, sym_comment, - ACTIONS(1759), 17, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 18, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364273,22 +363315,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [147346] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [147266] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(3871), 1, + ACTIONS(7136), 1, + aux_sym__immediate_decimal_token2, + STATE(3856), 1, sym_comment, - ACTIONS(1861), 2, + ACTIONS(1685), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1863), 18, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1687), 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, + [147299] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3857), 1, + sym_comment, + ACTIONS(1599), 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(1597), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364300,22 +363374,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147330] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7120), 1, + aux_sym__immediate_decimal_token2, + STATE(3858), 1, + sym_comment, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1607), 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, + [147363] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7138), 1, + aux_sym__immediate_decimal_token2, + STATE(3859), 1, + sym_comment, + ACTIONS(1774), 4, + sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [147377] = 7, + 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, + aux_sym_unquoted_token2, + [147396] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, sym_comment, - STATE(3887), 1, + STATE(3871), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, + STATE(3980), 1, sym_path, ACTIONS(950), 3, sym__space, @@ -364336,15 +363462,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [147414] = 4, + [147433] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3873), 1, + STATE(3861), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 18, + ACTIONS(1774), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364363,22 +363489,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [147445] = 6, - ACTIONS(3), 1, + [147464] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7159), 1, - anon_sym_DOT, - ACTIONS(7161), 1, - aux_sym__immediate_decimal_token2, - STATE(3874), 1, + STATE(3862), 1, sym_comment, - ACTIONS(1727), 5, + ACTIONS(1817), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1819), 18, ts_builtin_sym_end, - sym__space, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1725), 13, + [147495] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, + ACTIONS(7140), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7142), 1, + aux_sym__immediate_decimal_token2, + STATE(3863), 1, + sym_comment, + ACTIONS(1733), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364390,17 +363539,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [147480] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [147530] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3875), 1, + STATE(3864), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1749), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 18, + ACTIONS(1751), 18, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -364419,18 +363572,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [147511] = 8, + [147561] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3876), 1, + STATE(3865), 1, sym_comment, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4249), 1, + STATE(4212), 1, sym_cell_path, ACTIONS(937), 4, ts_builtin_sym_end, @@ -364450,18 +363603,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - [147550] = 6, - ACTIONS(251), 1, + [147600] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(7163), 1, - anon_sym_DOT, - ACTIONS(7165), 1, + ACTIONS(7146), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7148), 1, aux_sym__immediate_decimal_token2, - STATE(3877), 1, + STATE(3866), 1, sym_comment, - ACTIONS(1727), 17, + ACTIONS(1733), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1731), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364473,25 +363630,84 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [147635] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(7150), 1, + anon_sym_DOT_DOT2, + ACTIONS(7154), 1, + sym_filesize_unit, + ACTIONS(7156), 1, + sym_duration_unit, + ACTIONS(7158), 1, + aux_sym__unquoted_in_record_token2, + STATE(3867), 1, + sym_comment, + STATE(7322), 1, + sym__expr_parenthesized_immediate, + ACTIONS(1663), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(7152), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1675), 10, + anon_sym_EQ, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [147680] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7160), 1, + anon_sym_DOT_DOT2, + STATE(3868), 1, + sym_comment, + ACTIONS(7162), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1813), 15, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [147585] = 5, - ACTIONS(3), 1, + [147717] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7167), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(7164), 1, + anon_sym_DOT, + ACTIONS(7166), 1, aux_sym__immediate_decimal_token2, - STATE(3878), 1, + STATE(3869), 1, sym_comment, - ACTIONS(1767), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 15, + ACTIONS(1751), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364505,14 +363721,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [147618] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [147752] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3879), 1, + STATE(3870), 1, sym_comment, - ACTIONS(1735), 7, + ACTIONS(1607), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -364520,7 +363738,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1733), 13, + ACTIONS(1605), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364534,22 +363752,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [147649] = 6, + [147783] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7169), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7171), 1, - aux_sym__immediate_decimal_token2, - STATE(3880), 1, + ACTIONS(7168), 1, + anon_sym_DOT2, + STATE(3980), 1, + sym_path, + STATE(3871), 2, sym_comment, - ACTIONS(1759), 5, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(943), 3, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1757), 13, + ACTIONS(941), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364561,27 +363778,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_DOT_DOT2, - aux_sym_unquoted_token2, - [147684] = 9, + [147818] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(1675), 1, sym__space, - ACTIONS(4605), 1, + ACTIONS(4580), 1, anon_sym_DOT_DOT2, - ACTIONS(7056), 1, + ACTIONS(7043), 1, sym_filesize_unit, - ACTIONS(7058), 1, + ACTIONS(7045), 1, sym_duration_unit, - ACTIONS(7060), 1, + ACTIONS(7047), 1, aux_sym_unquoted_token2, - STATE(3881), 1, + STATE(3872), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(4582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 13, + ACTIONS(1663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364595,60 +363813,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [147725] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7173), 1, - aux_sym__immediate_decimal_token2, - STATE(3882), 1, - sym_comment, - ACTIONS(1667), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 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, - [147758] = 12, + [147859] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7077), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7141), 1, + ACTIONS(7128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7143), 1, + ACTIONS(7130), 1, aux_sym__immediate_decimal_token3, - STATE(3883), 1, + STATE(3873), 1, sym_comment, - STATE(4845), 1, + STATE(4841), 1, sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(1705), 2, sym_identifier, anon_sym_DASH2, - STATE(4844), 2, + STATE(4840), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 9, + ACTIONS(1707), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -364658,32 +363848,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147805] = 12, + [147906] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7077), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7141), 1, + ACTIONS(7128), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7143), 1, + ACTIONS(7130), 1, aux_sym__immediate_decimal_token3, - STATE(3884), 1, + STATE(3874), 1, sym_comment, - STATE(4852), 1, + STATE(4843), 1, sym__immediate_decimal, - ACTIONS(1707), 2, + ACTIONS(1709), 2, sym_identifier, anon_sym_DASH2, - STATE(4851), 2, + STATE(4842), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1709), 9, + ACTIONS(1711), 9, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -364693,12 +363883,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_COMMA, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [147852] = 4, + [147953] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3885), 1, + STATE(3875), 1, sym_comment, - ACTIONS(1669), 7, + ACTIONS(1729), 7, ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, @@ -364706,7 +363896,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - ACTIONS(1667), 13, + ACTIONS(1727), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364720,20 +363910,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [147883] = 4, + [147984] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7060), 1, + anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7072), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(7128), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7130), 1, + aux_sym__immediate_decimal_token3, + STATE(3876), 1, + sym_comment, + STATE(4832), 1, + sym__immediate_decimal, + ACTIONS(1547), 2, + sym_identifier, + anon_sym_DASH2, + STATE(4831), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 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, + [148031] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3886), 1, + ACTIONS(7171), 1, + anon_sym_DOT, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token2, + STATE(3877), 1, sym_comment, - ACTIONS(1597), 7, + ACTIONS(1751), 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(1595), 13, + ACTIONS(1749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364747,21 +363974,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [147914] = 6, + [148066] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7175), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3975), 1, - sym_path, - STATE(3887), 2, + STATE(3878), 1, sym_comment, + STATE(3893), 1, aux_sym_cell_path_repeat1, - ACTIONS(943), 3, + STATE(4034), 1, + sym_path, + STATE(4255), 1, + sym_cell_path, + ACTIONS(1723), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(941), 14, + ACTIONS(1721), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364773,23 +364004,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, - [147949] = 4, + [148105] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3888), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3879), 1, sym_comment, - ACTIONS(1589), 7, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4284), 1, + sym_cell_path, + ACTIONS(1759), 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(1587), 13, + ACTIONS(1757), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364802,55 +364036,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [147980] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7077), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, - anon_sym_LPAREN2, - ACTIONS(7087), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7141), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7143), 1, - aux_sym__immediate_decimal_token3, - STATE(3889), 1, - sym_comment, - STATE(4854), 1, - sym__immediate_decimal, - ACTIONS(1711), 2, - sym_identifier, - anon_sym_DASH2, - STATE(4853), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1713), 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, - [148027] = 5, + [148144] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7129), 1, + ACTIONS(7104), 1, aux_sym__immediate_decimal_token2, - STATE(3890), 1, + STATE(3880), 1, sym_comment, - ACTIONS(1727), 4, + ACTIONS(1751), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1725), 15, + ACTIONS(1749), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364866,30 +364064,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [148060] = 11, + [148177] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(7178), 1, + STATE(3881), 1, + sym_comment, + ACTIONS(1685), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(7182), 1, sym_filesize_unit, - ACTIONS(7184), 1, sym_duration_unit, - ACTIONS(7186), 1, aux_sym__unquoted_in_record_token2, - STATE(3891), 1, - sym_comment, - STATE(7240), 1, - sym__expr_parenthesized_immediate, - ACTIONS(1681), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(7180), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 10, + ACTIONS(1687), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -364900,25 +364087,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [148105] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148207] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3892), 1, + ACTIONS(7175), 1, + anon_sym_QMARK2, + STATE(3882), 1, sym_comment, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4294), 1, - sym_cell_path, - ACTIONS(1719), 4, - ts_builtin_sym_end, + ACTIONS(960), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 12, + ACTIONS(958), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -364930,129 +364113,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, - [148144] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7099), 1, - aux_sym__immediate_decimal_token2, - STATE(3893), 1, - sym_comment, - ACTIONS(1587), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1589), 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, - [148177] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3894), 1, - sym_comment, - ACTIONS(1595), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1597), 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, - [148207] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_DOT, - ACTIONS(7190), 1, - aux_sym__immediate_decimal_token2, - STATE(3895), 1, - sym_comment, - ACTIONS(1725), 4, - sym_identifier, - anon_sym_DASH2, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 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, - [148241] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7192), 1, anon_sym_DOT2, - STATE(3896), 1, - sym_comment, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4325), 1, - sym_cell_path, - ACTIONS(1717), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1719), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [148279] = 4, + [148239] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3897), 1, + STATE(3883), 1, sym_comment, - ACTIONS(976), 3, + ACTIONS(972), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(978), 16, + ACTIONS(974), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -365069,19 +364143,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [148309] = 4, + [148269] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3898), 1, + STATE(3884), 1, sym_comment, - ACTIONS(1667), 6, + ACTIONS(1727), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 13, + ACTIONS(1729), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365095,17 +364169,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [148339] = 5, - ACTIONS(251), 1, + [148299] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7196), 1, - anon_sym_DOT_DOT2, - STATE(3899), 1, + STATE(3885), 1, sym_comment, - ACTIONS(7198), 2, + ACTIONS(1819), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7194), 16, + ACTIONS(1817), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365119,20 +364193,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, - [148371] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7196), 1, anon_sym_DOT_DOT2, - STATE(3900), 1, + aux_sym_unquoted_token2, + [148329] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7177), 1, + aux_sym__immediate_decimal_token2, + STATE(3886), 1, sym_comment, - ACTIONS(7198), 2, + ACTIONS(1774), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7194), 16, + ACTIONS(1772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365144,22 +364220,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, - [148403] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7196), 1, anon_sym_DOT_DOT2, - STATE(3901), 1, + aux_sym_unquoted_token2, + [148361] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(3887), 1, sym_comment, - ACTIONS(7198), 2, + ACTIONS(1733), 4, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(7194), 16, + ACTIONS(1731), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365173,45 +364246,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, - [148435] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3902), 1, - sym_comment, - ACTIONS(1733), 6, - sym_identifier, - anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1735), 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, - [148465] = 4, + aux_sym_unquoted_token2, + [148391] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3903), 1, + STATE(3888), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(978), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 16, + ACTIONS(976), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365228,84 +364274,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [148495] = 14, + [148421] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2545), 1, + ACTIONS(2535), 1, anon_sym_COMMA, - ACTIONS(7202), 1, + ACTIONS(7181), 1, anon_sym_EQ, - ACTIONS(7204), 1, + ACTIONS(7183), 1, sym__newline, - ACTIONS(7206), 1, + ACTIONS(7185), 1, anon_sym_COLON, - ACTIONS(7208), 1, + ACTIONS(7187), 1, anon_sym_LPAREN, - ACTIONS(7210), 1, + ACTIONS(7189), 1, anon_sym_DASH2, - STATE(3904), 1, + STATE(3889), 1, sym_comment, - STATE(4094), 1, + STATE(4041), 1, sym_flag_capsule, - STATE(4095), 1, + STATE(4076), 1, aux_sym_parameter_repeat1, - STATE(4993), 1, + STATE(4983), 1, aux_sym_parameter_repeat2, - STATE(6402), 1, + STATE(6524), 1, aux_sym_shebang_repeat1, - STATE(4839), 2, + STATE(4826), 2, sym_param_type, sym_param_value, - ACTIONS(7200), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [148545] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(3905), 1, - sym_comment, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4344), 1, - sym_cell_path, - ACTIONS(935), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(937), 13, - anon_sym_EQ, + ACTIONS(7179), 7, sym_identifier, - sym__newline, anon_sym_PIPE, - anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [148583] = 6, + [148471] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1757), 1, + ACTIONS(1731), 1, aux_sym_unquoted_token2, - ACTIONS(7212), 1, + ACTIONS(7191), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7214), 1, + ACTIONS(7193), 1, aux_sym__immediate_decimal_token2, - STATE(3906), 1, + STATE(3890), 1, sym_comment, - ACTIONS(1759), 16, + ACTIONS(1733), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -365322,22 +364338,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [148617] = 6, + [148505] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7216), 1, - anon_sym_DOT2, - STATE(4073), 1, - sym_path, - STATE(3907), 2, + STATE(3891), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(943), 4, - ts_builtin_sym_end, + ACTIONS(966), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(941), 12, + ACTIONS(964), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365349,17 +364359,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_QMARK2, anon_sym_DOT_DOT2, - [148651] = 4, + anon_sym_DOT2, + [148535] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3908), 1, + STATE(3892), 1, sym_comment, - ACTIONS(974), 3, + ACTIONS(970), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(972), 16, + ACTIONS(968), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365376,18 +364390,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_QMARK2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [148681] = 5, + [148565] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7219), 1, - anon_sym_QMARK2, - STATE(3909), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, sym_comment, - ACTIONS(960), 3, + STATE(3922), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + ACTIONS(950), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(958), 15, + ACTIONS(948), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365399,22 +364418,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, - anon_sym_DOT2, - [148713] = 5, + [148601] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7221), 1, - anon_sym_QMARK2, - STATE(3910), 1, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(7082), 1, + sym_filesize_unit, + ACTIONS(7084), 1, + sym_duration_unit, + ACTIONS(7086), 1, + aux_sym_unquoted_token2, + STATE(3894), 1, sym_comment, - ACTIONS(954), 3, + ACTIONS(1675), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(4582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(952), 15, + ACTIONS(1663), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365426,30 +364450,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, + [148641] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3895), 1, + sym_comment, + ACTIONS(964), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [148745] = 9, + ACTIONS(966), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [148671] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(7135), 1, - sym_filesize_unit, - ACTIONS(7137), 1, - sym_duration_unit, - ACTIONS(7139), 1, - aux_sym_unquoted_token2, - STATE(3911), 1, + ACTIONS(7195), 1, + anon_sym_QMARK2, + STATE(3896), 1, sym_comment, - ACTIONS(1693), 2, - ts_builtin_sym_end, + ACTIONS(954), 3, sym__space, - ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1681), 11, + ACTIONS(952), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365461,23 +364499,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, - [148785] = 7, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [148703] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3907), 1, - aux_sym_cell_path_repeat1, - STATE(3912), 1, + STATE(3897), 1, sym_comment, - STATE(4073), 1, - sym_path, - ACTIONS(950), 4, - ts_builtin_sym_end, + ACTIONS(974), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(948), 12, + ACTIONS(972), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365489,45 +364524,56 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - [148821] = 6, + anon_sym_DOT2, + [148733] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(7223), 1, + ACTIONS(7197), 1, anon_sym_DOT, - ACTIONS(7225), 1, + ACTIONS(7199), 1, aux_sym__immediate_decimal_token2, - STATE(3913), 1, + STATE(3898), 1, sym_comment, - ACTIONS(1727), 16, - ts_builtin_sym_end, + ACTIONS(1749), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 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, - [148855] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [148767] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1725), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(7165), 1, - aux_sym__immediate_decimal_token2, - STATE(3914), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__space, + ACTIONS(7201), 1, + anon_sym_DOT_DOT2, + STATE(3899), 1, sym_comment, - ACTIONS(1727), 17, + ACTIONS(7203), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365541,20 +364587,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, - [148887] = 5, + [148805] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(7227), 1, - aux_sym__immediate_decimal_token2, - STATE(3915), 1, + ACTIONS(7207), 1, + anon_sym_DOT_DOT2, + STATE(3900), 1, sym_comment, - ACTIONS(1767), 17, + ACTIONS(7209), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365571,50 +364614,50 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [148919] = 4, + [148837] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3916), 1, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3901), 1, sym_comment, - ACTIONS(964), 3, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4306), 1, + sym_cell_path, + ACTIONS(1757), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(966), 16, + ACTIONS(1759), 13, anon_sym_EQ, sym_identifier, sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, + 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, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [148949] = 8, + [148875] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1873), 1, - sym__space, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(7229), 1, - anon_sym_DOT_DOT2, - STATE(3917), 1, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token2, + STATE(3902), 1, sym_comment, - ACTIONS(7231), 2, + ACTIONS(1751), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 13, + ACTIONS(1749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365626,23 +364669,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, - [148987] = 6, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [148907] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7233), 1, + ACTIONS(7213), 1, aux_sym__immediate_decimal_token1, - ACTIONS(7235), 1, + ACTIONS(7215), 1, aux_sym__immediate_decimal_token2, - STATE(3918), 1, + STATE(3903), 1, sym_comment, - ACTIONS(1757), 4, + ACTIONS(1731), 4, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 13, + ACTIONS(1733), 13, anon_sym_EQ, sym__newline, anon_sym_PIPE, @@ -365656,23 +364699,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [149021] = 8, - ACTIONS(3), 1, + [148941] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1749), 1, aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__space, - ACTIONS(7237), 1, - anon_sym_DOT_DOT2, - STATE(3919), 1, + ACTIONS(7217), 1, + anon_sym_DOT, + ACTIONS(7219), 1, + aux_sym__immediate_decimal_token2, + STATE(3904), 1, sym_comment, - ACTIONS(7239), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 13, + ACTIONS(1751), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365684,22 +364723,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, - [149059] = 5, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [148975] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7161), 1, - aux_sym__immediate_decimal_token2, - STATE(3920), 1, + ACTIONS(7207), 1, + anon_sym_DOT_DOT2, + STATE(3905), 1, sym_comment, - ACTIONS(1727), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7209), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1725), 13, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365711,18 +364749,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_and2, + anon_sym_xor2, + anon_sym_or2, + [149007] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3906), 1, + sym_comment, + ACTIONS(1597), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [149091] = 4, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1599), 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, + [149037] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3921), 1, + STATE(3907), 1, sym_comment, - ACTIONS(978), 3, - sym__space, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym__unquoted_in_record_token2, + ACTIONS(1607), 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(976), 16, + [149067] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, + ACTIONS(7221), 1, + aux_sym__immediate_decimal_token2, + STATE(3908), 1, + sym_comment, + ACTIONS(1774), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365736,19 +364829,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [149121] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [149099] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3922), 1, + ACTIONS(7207), 1, + anon_sym_DOT_DOT2, + STATE(3909), 1, sym_comment, - ACTIONS(966), 3, - sym__space, + ACTIONS(7209), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(964), 16, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365762,20 +364857,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_QMARK2, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149131] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(3910), 1, + sym_comment, + ACTIONS(968), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - [149151] = 4, + ACTIONS(970), 16, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACK, + anon_sym_LPAREN, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_GT2, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [149161] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3923), 1, + STATE(3911), 1, sym_comment, - ACTIONS(1863), 4, + ACTIONS(1774), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1861), 15, + ACTIONS(1772), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365791,20 +364912,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [149181] = 4, + [149191] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(3924), 1, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3912), 1, sym_comment, - ACTIONS(1587), 6, - sym_identifier, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4328), 1, + sym_cell_path, + ACTIONS(935), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym__unquoted_in_record_token2, - ACTIONS(1589), 13, + ACTIONS(937), 13, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -365814,47 +364940,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, - [149211] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(3925), 1, - sym_comment, - ACTIONS(972), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(974), 16, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACK, - anon_sym_LPAREN, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_GT2, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_RBRACE, - anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [149241] = 8, + [149229] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(3926), 1, + STATE(3913), 1, sym_comment, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4368), 1, + STATE(4290), 1, sym_cell_path, ACTIONS(1721), 2, anon_sym_DASH2, @@ -365873,16 +364972,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [149279] = 4, + [149267] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(3927), 1, + STATE(3914), 1, sym_comment, - ACTIONS(968), 3, + ACTIONS(976), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(970), 16, + ACTIONS(978), 16, anon_sym_EQ, sym_identifier, sym__newline, @@ -365899,43 +364998,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [149309] = 4, - ACTIONS(3), 1, + [149297] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3928), 1, - sym_comment, - ACTIONS(1759), 4, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1757), 15, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, + ACTIONS(7207), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [149339] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3929), 1, + STATE(3915), 1, sym_comment, - ACTIONS(1767), 4, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7209), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 15, + ACTIONS(1000), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -365949,46 +365022,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, - aux_sym_unquoted_token2, - [149369] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7241), 1, - aux_sym__immediate_decimal_token2, - STATE(3930), 1, - sym_comment, - ACTIONS(1767), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [149401] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [149329] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7196), 1, + ACTIONS(7223), 1, anon_sym_DOT_DOT2, - STATE(3931), 1, + STATE(3916), 1, sym_comment, - ACTIONS(7198), 2, + ACTIONS(7225), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 16, + ACTIONS(2065), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366005,17 +365052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149433] = 5, + [149361] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7243), 1, + ACTIONS(7227), 1, anon_sym_DOT_DOT2, - STATE(3932), 1, + STATE(3917), 1, sym_comment, - ACTIONS(7245), 2, + ACTIONS(7229), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 16, + ACTIONS(2053), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366032,17 +365079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149465] = 5, + [149393] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7247), 1, + ACTIONS(7231), 1, anon_sym_DOT_DOT2, - STATE(3933), 1, + STATE(3918), 1, sym_comment, - ACTIONS(7249), 2, + ACTIONS(7233), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2150), 16, + ACTIONS(2086), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366059,17 +365106,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149497] = 5, + [149425] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7251), 1, + ACTIONS(7235), 1, anon_sym_DOT_DOT2, - STATE(3934), 1, + STATE(3919), 1, sym_comment, - ACTIONS(7253), 2, + ACTIONS(7237), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2158), 16, + ACTIONS(2078), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366086,17 +365133,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149529] = 5, - ACTIONS(251), 1, + [149457] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7255), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + sym__space, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(7239), 1, anon_sym_DOT_DOT2, - STATE(3935), 1, + STATE(3920), 1, sym_comment, - ACTIONS(7257), 2, + ACTIONS(7241), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 16, + ACTIONS(1793), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366110,20 +365163,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, - [149561] = 4, + [149495] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3936), 1, + STATE(3921), 1, sym_comment, - ACTIONS(1727), 4, + ACTIONS(1751), 4, sym__space, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1725), 15, + ACTIONS(1749), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366139,46 +365189,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - [149591] = 8, + [149525] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__space, - ACTIONS(7101), 1, + ACTIONS(7243), 1, anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3937), 1, - sym_comment, - STATE(3975), 1, + STATE(4034), 1, sym_path, - STATE(4417), 1, - sym_cell_path, - ACTIONS(1981), 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, - [149628] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3938), 1, + STATE(3922), 2, sym_comment, - ACTIONS(970), 4, + aux_sym_cell_path_repeat1, + ACTIONS(943), 4, ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(968), 14, + ACTIONS(941), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366190,48 +365216,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_QMARK2, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [149657] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1967), 1, - sym__space, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3939), 1, - sym_comment, - STATE(3975), 1, - sym_path, - STATE(4395), 1, - sym_cell_path, - ACTIONS(1965), 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, - [149694] = 5, + [149559] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(3940), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(7166), 1, + aux_sym__immediate_decimal_token2, + STATE(3923), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7259), 16, + ACTIONS(1751), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366248,22 +365243,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [149725] = 8, + anon_sym_LPAREN2, + [149591] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(1881), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3941), 1, + STATE(3924), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4538), 1, + STATE(4526), 1, sym_cell_path, - ACTIONS(1949), 13, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366277,22 +365273,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149762] = 8, + [149628] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, + ACTIONS(1841), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3942), 1, + STATE(3925), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4410), 1, + STATE(4488), 1, sym_cell_path, - ACTIONS(2093), 13, + ACTIONS(1839), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366306,48 +365302,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149799] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7261), 1, - anon_sym_QMARK2, - STATE(3943), 1, - sym_comment, - ACTIONS(958), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(960), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [149830] = 8, + [149665] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(2022), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3944), 1, + STATE(3926), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4407), 1, + STATE(4453), 1, sym_cell_path, - ACTIONS(1969), 13, + ACTIONS(2020), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366361,22 +365331,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149867] = 8, + [149702] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(2026), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3945), 1, + STATE(3927), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4541), 1, + STATE(4455), 1, sym_cell_path, - ACTIONS(1953), 13, + ACTIONS(2024), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366390,20 +365360,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149904] = 6, + [149739] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3946), 1, + ACTIONS(7096), 1, + anon_sym_DOT2, + ACTIONS(7248), 1, + sym__space, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3928), 1, sym_comment, - ACTIONS(2237), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2241), 13, + STATE(3980), 1, + sym_path, + STATE(4456), 1, + sym_cell_path, + ACTIONS(7246), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366417,43 +365389,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [149937] = 8, + [149776] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1999), 1, + ACTIONS(1845), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3947), 1, + STATE(3929), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4445), 1, + STATE(4489), 1, sym_cell_path, - ACTIONS(1997), 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, - [149974] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - STATE(3948), 1, - sym_comment, - ACTIONS(1727), 17, + ACTIONS(1843), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366467,26 +365418,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, - [150003] = 8, + [149813] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(1887), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3949), 1, + STATE(3930), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4449), 1, + STATE(4460), 1, sym_cell_path, - ACTIONS(2001), 13, + ACTIONS(1885), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366500,41 +365447,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150040] = 6, + [149850] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(3950), 1, - sym_comment, - ACTIONS(2245), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2247), 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, - [150073] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - STATE(3951), 1, + ACTIONS(1849), 1, + sym__space, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3931), 1, sym_comment, - ACTIONS(1759), 17, + STATE(3980), 1, + sym_path, + STATE(4492), 1, + sym_cell_path, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366548,18 +365476,14 @@ 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, - [150102] = 4, + [149887] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5649), 1, + ACTIONS(5607), 1, anon_sym_DASH2, - STATE(3952), 1, + STATE(3932), 1, sym_comment, - ACTIONS(5651), 17, + ACTIONS(5609), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -366577,92 +365501,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [150131] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - STATE(3953), 1, - sym_comment, - ACTIONS(1767), 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, - [150160] = 4, + [149916] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1749), 1, aux_sym_unquoted_token2, - STATE(3954), 1, - sym_comment, - ACTIONS(1863), 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, - [150189] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5655), 1, - anon_sym_DASH2, - STATE(3955), 1, - sym_comment, - ACTIONS(5657), 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, - [150218] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7263), 1, - anon_sym_DOT_DOT2, - STATE(3956), 1, + ACTIONS(7219), 1, + aux_sym__immediate_decimal_token2, + STATE(3933), 1, sym_comment, - ACTIONS(7265), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7194), 15, + ACTIONS(1751), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -366678,45 +365526,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150249] = 8, + anon_sym_LPAREN2, + [149947] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2007), 1, + ACTIONS(1853), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3957), 1, + STATE(3934), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4450), 1, + STATE(4495), 1, sym_cell_path, - ACTIONS(2005), 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, - [150286] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3958), 1, - sym_comment, - ACTIONS(986), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(984), 15, + ACTIONS(1851), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366730,53 +365556,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [150315] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(7267), 1, - anon_sym_DOT_DOT2, - STATE(3959), 1, - sym_comment, - ACTIONS(1794), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7269), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1786), 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, - [150352] = 8, + [149984] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, + ACTIONS(1857), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3960), 1, + STATE(3935), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4454), 1, + STATE(4500), 1, sym_cell_path, - ACTIONS(2017), 13, + ACTIONS(1855), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366790,51 +365585,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150389] = 8, - ACTIONS(3), 1, + [150021] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__space, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3961), 1, + ACTIONS(5611), 1, + anon_sym_DASH2, + STATE(3936), 1, sym_comment, - STATE(3975), 1, - sym_path, - STATE(4455), 1, - sym_cell_path, - ACTIONS(2021), 13, + ACTIONS(5613), 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, - [150426] = 8, - ACTIONS(3), 1, + [150050] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7101), 1, - anon_sym_DOT2, - ACTIONS(7273), 1, - sym__space, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3962), 1, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, + ACTIONS(7250), 1, + aux_sym__immediate_decimal_token2, + STATE(3937), 1, sym_comment, - STATE(3975), 1, - sym_path, - STATE(4456), 1, - sym_cell_path, - ACTIONS(7271), 13, + ACTIONS(1774), 16, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366846,24 +365632,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, - [150463] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [150081] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1975), 1, + ACTIONS(1861), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3963), 1, + STATE(3938), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4409), 1, + STATE(4509), 1, sym_cell_path, - ACTIONS(1973), 13, + ACTIONS(1859), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366877,22 +365665,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150500] = 8, + [150118] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, - sym__space, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3964), 1, + STATE(3939), 1, sym_comment, - STATE(3975), 1, - sym_path, - STATE(4481), 1, - sym_cell_path, - ACTIONS(2009), 13, + ACTIONS(966), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(964), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366904,18 +365687,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, - [150537] = 4, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150147] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(3965), 1, + STATE(3940), 1, sym_comment, - ACTIONS(982), 3, + ACTIONS(1819), 5, + ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(980), 15, + ACTIONS(1817), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366927,26 +365713,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_DOT2, - [150566] = 8, + aux_sym_unquoted_token2, + [150176] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1979), 1, + ACTIONS(1865), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3966), 1, + STATE(3941), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4415), 1, + STATE(4512), 1, sym_cell_path, - ACTIONS(1977), 13, + ACTIONS(1863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366960,16 +365744,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150603] = 5, + [150213] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(3967), 1, + ACTIONS(7252), 1, + anon_sym_DOT_DOT2, + STATE(3942), 1, sym_comment, - ACTIONS(2186), 16, + ACTIONS(7254), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1000), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -366981,78 +365767,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, - [150634] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7190), 1, - aux_sym__immediate_decimal_token2, - STATE(3968), 1, - sym_comment, - ACTIONS(1725), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 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, - [150665] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5641), 1, - anon_sym_DASH2, - STATE(3969), 1, - sym_comment, - ACTIONS(5643), 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, - [150694] = 8, + [150244] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2027), 1, + ACTIONS(1869), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3970), 1, + STATE(3943), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4491), 1, + STATE(4373), 1, sym_cell_path, - ACTIONS(2025), 13, + ACTIONS(1867), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367066,22 +365799,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150731] = 8, + [150281] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7101), 1, - anon_sym_DOT2, - ACTIONS(7277), 1, + ACTIONS(1877), 1, sym__space, - STATE(3872), 1, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3971), 1, + STATE(3944), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4492), 1, + STATE(4525), 1, sym_cell_path, - ACTIONS(7275), 13, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367095,24 +365828,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150768] = 8, + [150318] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(7279), 1, - anon_sym_DOT_DOT2, - STATE(3972), 1, + STATE(3945), 1, sym_comment, - ACTIONS(1873), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7281), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1865), 11, + ACTIONS(2216), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2218), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367124,48 +365850,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, - [150805] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7283), 1, - aux_sym__immediate_decimal_token2, - STATE(3973), 1, - sym_comment, - ACTIONS(1765), 4, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 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_RBRACE, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [150836] = 8, + [150347] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(2014), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3974), 1, + STATE(3946), 1, sym_comment, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4471), 1, + STATE(4383), 1, sym_cell_path, - ACTIONS(1925), 13, + ACTIONS(2012), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367179,16 +365882,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [150873] = 4, - ACTIONS(3), 1, + [150384] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3975), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + STATE(3947), 1, sym_comment, - ACTIONS(990), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(988), 15, + ACTIONS(1751), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367202,19 +365903,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [150902] = 4, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [150413] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3976), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(3948), 1, sym_comment, - ACTIONS(978), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(976), 14, + ACTIONS(1813), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367226,19 +365928,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [150931] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [150444] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1731), 1, aux_sym_unquoted_token2, - STATE(3977), 1, + STATE(3949), 1, sym_comment, - ACTIONS(1873), 16, + ACTIONS(1733), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367255,41 +365957,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [150962] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(3978), 1, - sym_comment, - ACTIONS(1727), 5, - ts_builtin_sym_end, - sym__space, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1725), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [150991] = 5, + [150473] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(1772), 1, aux_sym_unquoted_token2, - STATE(3979), 1, + STATE(3950), 1, sym_comment, - ACTIONS(2198), 16, + ACTIONS(1774), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367306,19 +365982,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151022] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [150502] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7285), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7287), 1, - aux_sym__immediate_decimal_token2, - STATE(3980), 1, + ACTIONS(1817), 1, + aux_sym_unquoted_token2, + STATE(3951), 1, sym_comment, - ACTIONS(1759), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1757), 14, + ACTIONS(1819), 17, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367332,23 +366004,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [151055] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [150531] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1947), 1, + ACTIONS(1978), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(3981), 1, + STATE(3952), 1, sym_comment, - STATE(4469), 1, + STATE(3980), 1, + sym_path, + STATE(4398), 1, sym_cell_path, - ACTIONS(1945), 13, + ACTIONS(1976), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367362,17 +366037,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151092] = 4, + [150568] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(3982), 1, + ACTIONS(7256), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7258), 1, + aux_sym__immediate_decimal_token2, + STATE(3953), 1, sym_comment, - ACTIONS(2265), 4, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2267), 14, + ACTIONS(1733), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1731), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367386,15 +366063,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_LPAREN2, - [151121] = 4, + aux_sym_unquoted_token2, + [150601] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5663), 1, + ACTIONS(5617), 1, anon_sym_DASH2, - STATE(3983), 1, + STATE(3954), 1, sym_comment, - ACTIONS(5665), 17, + ACTIONS(5619), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367412,14 +366089,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [151150] = 4, + [150630] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5625), 1, + ACTIONS(5633), 1, anon_sym_DASH2, - STATE(3984), 1, + STATE(3955), 1, sym_comment, - ACTIONS(5627), 17, + ACTIONS(5635), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367437,22 +366114,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [151179] = 8, + [150659] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, - sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + ACTIONS(7262), 1, + sym__space, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(3985), 1, + STATE(3956), 1, sym_comment, - STATE(4401), 1, + STATE(3980), 1, + sym_path, + STATE(4384), 1, sym_cell_path, - ACTIONS(1937), 13, + ACTIONS(7260), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367466,43 +366143,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151216] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5659), 1, - anon_sym_DASH2, - STATE(3986), 1, - sym_comment, - ACTIONS(5661), 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, - [151245] = 5, - ACTIONS(251), 1, + [150696] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7263), 1, - anon_sym_DOT_DOT2, - STATE(3987), 1, + ACTIONS(2010), 1, + sym__space, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3957), 1, sym_comment, - ACTIONS(7265), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7194), 15, - ts_builtin_sym_end, + STATE(3980), 1, + sym_path, + STATE(4385), 1, + sym_cell_path, + ACTIONS(2008), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367514,21 +366170,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, - [151276] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150733] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(3988), 1, - sym_comment, - ACTIONS(1759), 5, - ts_builtin_sym_end, + ACTIONS(1873), 1, sym__space, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1757), 13, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3958), 1, + sym_comment, + STATE(3980), 1, + sym_path, + STATE(4394), 1, + sym_cell_path, + ACTIONS(1871), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367540,20 +366199,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, - aux_sym_unquoted_token2, - [151305] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [150770] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7289), 1, - anon_sym_DOT_DOT2, - STATE(3989), 1, + STATE(3959), 1, sym_comment, - ACTIONS(7291), 2, + ACTIONS(978), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 15, - ts_builtin_sym_end, + ACTIONS(976), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367565,21 +366223,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, - [151336] = 5, - ACTIONS(251), 1, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [150799] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7263), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(7264), 1, anon_sym_DOT_DOT2, - STATE(3990), 1, + STATE(3960), 1, sym_comment, - ACTIONS(7265), 2, + ACTIONS(1801), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7266), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 15, - ts_builtin_sym_end, + ACTIONS(1793), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367591,21 +366255,18 @@ static const uint16_t 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, - [151367] = 5, - ACTIONS(251), 1, + [150836] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7293), 1, - anon_sym_DOT_DOT2, - STATE(3991), 1, + STATE(3961), 1, sym_comment, - ACTIONS(7295), 2, + ACTIONS(1751), 5, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2150), 15, - ts_builtin_sym_end, + ACTIONS(1749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367617,47 +366278,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_and2, - anon_sym_xor2, - anon_sym_or2, - [151398] = 5, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [150865] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7297), 1, - anon_sym_DOT_DOT2, - STATE(3992), 1, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token2, + STATE(3962), 1, sym_comment, - ACTIONS(7299), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2158), 15, - ts_builtin_sym_end, + ACTIONS(1749), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 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, - [151429] = 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, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [150896] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7301), 1, - anon_sym_DOT_DOT2, - STATE(3993), 1, + ACTIONS(7268), 1, + aux_sym__immediate_decimal_token2, + STATE(3963), 1, sym_comment, - ACTIONS(7303), 2, + ACTIONS(1772), 4, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 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(2166), 15, - ts_builtin_sym_end, + [150927] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(3964), 1, + sym_comment, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367669,22 +366353,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, - [151460] = 5, + [150958] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7305), 1, - anon_sym_QMARK2, - STATE(3994), 1, + STATE(3965), 1, sym_comment, - ACTIONS(960), 4, + ACTIONS(1774), 5, ts_builtin_sym_end, sym__space, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(958), 13, + ACTIONS(1772), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367697,20 +366382,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_DOT_DOT2, - anon_sym_DOT2, - [151491] = 5, - ACTIONS(3), 1, + aux_sym_unquoted_token2, + [150987] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7307), 1, - anon_sym_QMARK2, - STATE(3995), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(3966), 1, sym_comment, - ACTIONS(954), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(952), 13, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367722,46 +366404,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [151522] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7309), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - ACTIONS(941), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - STATE(3996), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(943), 13, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [151555] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151018] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(3997), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(3967), 1, sym_comment, - ACTIONS(966), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(964), 14, + STATE(7235), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367773,17 +366430,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [151584] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151049] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5645), 1, + ACTIONS(5647), 1, anon_sym_DASH2, - STATE(3998), 1, + STATE(3968), 1, sym_comment, - ACTIONS(5647), 17, + ACTIONS(5649), 17, anon_sym_EQ, sym_identifier, sym__newline, @@ -367801,42 +366460,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_LBRACE, anon_sym_RBRACE, - [151613] = 5, + [151078] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(3999), 1, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7259), 16, + STATE(3977), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + ACTIONS(948), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(950), 13, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [151644] = 5, + 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, + [151113] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(7225), 1, - aux_sym__immediate_decimal_token2, - STATE(4000), 1, + ACTIONS(7252), 1, + anon_sym_DOT_DOT2, + STATE(3970), 1, sym_comment, - ACTIONS(1727), 16, + ACTIONS(7254), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7205), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -367852,23 +366514,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [151675] = 8, - ACTIONS(3), 1, + [151144] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2091), 1, - sym__space, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(4001), 1, + ACTIONS(7252), 1, + anon_sym_DOT_DOT2, + STATE(3971), 1, sym_comment, - STATE(4490), 1, - sym_cell_path, - ACTIONS(2089), 13, + ACTIONS(7254), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7205), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367880,47 +366537,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, - [151712] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4002), 1, - sym_comment, - ACTIONS(1004), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(1000), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [151745] = 4, - ACTIONS(3), 1, + [151175] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4003), 1, + ACTIONS(7252), 1, + anon_sym_DOT_DOT2, + STATE(3972), 1, sym_comment, - ACTIONS(1863), 5, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, + ACTIONS(7254), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1861), 13, + ACTIONS(7205), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -367932,97 +366563,96 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [151774] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151206] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7312), 1, - anon_sym_DOT, - ACTIONS(7314), 1, - aux_sym__immediate_decimal_token2, - STATE(4004), 1, + ACTIONS(5623), 1, + anon_sym_DASH2, + STATE(3973), 1, sym_comment, - ACTIONS(1727), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1725), 14, + ACTIONS(5625), 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, - aux_sym_unquoted_token2, - [151807] = 5, + [151235] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(7316), 1, - aux_sym__immediate_decimal_token2, - STATE(4005), 1, + ACTIONS(7272), 1, + anon_sym_QMARK2, + STATE(3974), 1, sym_comment, - ACTIONS(1767), 16, - ts_builtin_sym_end, + ACTIONS(958), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(960), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [151838] = 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, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151266] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(4006), 1, + ACTIONS(7274), 1, + anon_sym_QMARK2, + STATE(3975), 1, sym_comment, - STATE(7336), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7259), 16, + ACTIONS(952), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(954), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [151869] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151297] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - STATE(4007), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3976), 1, sym_comment, - ACTIONS(1794), 16, + ACTIONS(2190), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368039,51 +366669,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [151900] = 8, - ACTIONS(3), 1, + [151328] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1987), 1, - sym__space, - ACTIONS(7101), 1, + ACTIONS(7276), 1, anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, + STATE(4091), 1, sym_path, - STATE(4008), 1, + ACTIONS(941), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + STATE(3977), 2, sym_comment, - STATE(4418), 1, - sym_cell_path, - ACTIONS(1985), 13, + aux_sym_cell_path_repeat1, + ACTIONS(943), 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, - [151937] = 8, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [151361] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1991), 1, - sym__space, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(4009), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(3978), 1, sym_comment, - STATE(4420), 1, - sym_cell_path, - ACTIONS(1989), 13, + ACTIONS(1801), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368097,22 +366719,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [151974] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151392] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1995), 1, - sym__space, - ACTIONS(7101), 1, - anon_sym_DOT2, - STATE(3872), 1, - aux_sym_cell_path_repeat1, - STATE(3975), 1, - sym_path, - STATE(4010), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(3979), 1, sym_comment, - STATE(4443), 1, - sym_cell_path, - ACTIONS(1993), 13, + ACTIONS(1004), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1000), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368126,20 +366749,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152011] = 6, + [151425] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4011), 1, + STATE(3980), 1, sym_comment, - ACTIONS(2229), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2233), 13, + ACTIONS(986), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(984), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368153,18 +366772,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152044] = 4, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151454] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4012), 1, + STATE(3981), 1, sym_comment, - ACTIONS(1767), 5, + ACTIONS(974), 4, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1765), 13, + ACTIONS(972), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368176,48 +366796,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_QMARK2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - [152073] = 7, + anon_sym_DOT2, + [151483] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(3996), 1, - aux_sym_cell_path_repeat1, - STATE(4013), 1, - sym_comment, - STATE(4101), 1, - sym_path, - ACTIONS(948), 2, + ACTIONS(5629), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(950), 13, + STATE(3982), 1, + sym_comment, + ACTIONS(5631), 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_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [152108] = 5, + anon_sym_LBRACE, + anon_sym_RBRACE, + [151512] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7263), 1, - anon_sym_DOT_DOT2, - STATE(4014), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(3983), 1, sym_comment, - ACTIONS(7265), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7194), 15, - ts_builtin_sym_end, + ACTIONS(2174), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368229,25 +366845,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, - [152139] = 8, + [151543] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(2030), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4015), 1, + STATE(3984), 1, sym_comment, - STATE(4522), 1, + STATE(4397), 1, sym_cell_path, - ACTIONS(1933), 13, + ACTIONS(2028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368261,22 +366879,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152176] = 8, + [151580] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1895), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4016), 1, + STATE(3985), 1, sym_comment, - STATE(4388), 1, + STATE(4396), 1, sym_cell_path, - ACTIONS(1957), 13, + ACTIONS(1893), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368290,22 +366908,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152213] = 8, + [151617] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1963), 1, + ACTIONS(1903), 1, sym__space, - ACTIONS(7101), 1, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3872), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(3975), 1, + STATE(3980), 1, sym_path, - STATE(4017), 1, + STATE(3986), 1, sym_comment, - STATE(4390), 1, + STATE(4535), 1, sym_cell_path, - ACTIONS(1961), 13, + ACTIONS(1901), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368319,17 +366937,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152250] = 4, - ACTIONS(3), 1, + [151654] = 5, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4018), 1, + ACTIONS(7279), 1, + anon_sym_DOT_DOT2, + STATE(3987), 1, sym_comment, - ACTIONS(974), 4, - ts_builtin_sym_end, - sym__space, + ACTIONS(7281), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(972), 14, + ACTIONS(2065), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368341,19 +366960,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [152279] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151685] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, + ACTIONS(2182), 1, anon_sym_LPAREN2, - STATE(4019), 1, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(3988), 1, sym_comment, - ACTIONS(2192), 16, + ACTIONS(2184), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368370,40 +366989,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [152310] = 5, + [151716] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7318), 1, - anon_sym_QMARK2, - STATE(4020), 1, - sym_comment, - ACTIONS(952), 3, - anon_sym_DASH2, + ACTIONS(7283), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(954), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + STATE(3989), 1, + sym_comment, + ACTIONS(7285), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [152341] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - STATE(4021), 1, - sym_comment, - ACTIONS(1693), 16, + ACTIONS(2053), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368415,28 +367012,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, - [152369] = 8, - ACTIONS(3), 1, + [151747] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4022), 1, + ACTIONS(7287), 1, + anon_sym_DOT_DOT2, + STATE(3990), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4620), 1, - sym_cell_path, - ACTIONS(1967), 2, + ACTIONS(7289), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2086), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1965), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368448,23 +367038,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, - [152405] = 8, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151778] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4023), 1, + ACTIONS(7291), 1, + anon_sym_DOT_DOT2, + STATE(3991), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4730), 1, - sym_cell_path, - ACTIONS(2019), 2, + ACTIONS(7293), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2017), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368476,23 +367064,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, - [152441] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [151809] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4024), 1, + STATE(3992), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4781), 1, - sym_cell_path, - ACTIONS(2023), 2, - ts_builtin_sym_end, + ACTIONS(990), 3, sym__space, - ACTIONS(2021), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(988), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368504,23 +367088,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, - [152477] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151838] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4025), 1, + STATE(3993), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4694), 1, - sym_cell_path, - ACTIONS(1971), 2, - ts_builtin_sym_end, + ACTIONS(982), 3, sym__space, - ACTIONS(1969), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(980), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368532,23 +367113,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, - [152513] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151867] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4026), 1, + STATE(3994), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4552), 1, - sym_cell_path, - ACTIONS(2007), 2, + ACTIONS(1733), 5, ts_builtin_sym_end, sym__space, - ACTIONS(2005), 11, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1731), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368560,23 +367140,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, - [152549] = 8, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + [151896] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4027), 1, + STATE(3995), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4680), 1, - sym_cell_path, - ACTIONS(1963), 2, + ACTIONS(970), 4, ts_builtin_sym_end, sym__space, - ACTIONS(1961), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(968), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368588,17 +367164,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, - [152585] = 5, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [151925] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7314), 1, - aux_sym__immediate_decimal_token2, - STATE(4028), 1, - sym_comment, - ACTIONS(1727), 2, - sym__space, + ACTIONS(2194), 1, anon_sym_LPAREN2, - ACTIONS(1725), 14, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(3996), 1, + sym_comment, + ACTIONS(2200), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2202), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368612,20 +367194,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [152615] = 6, + [151958] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(1970), 1, sym__space, - ACTIONS(7320), 1, - anon_sym_DOT_DOT2, - STATE(4029), 1, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3980), 1, + sym_path, + STATE(3997), 1, sym_comment, - ACTIONS(7322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 13, + STATE(4466), 1, + sym_cell_path, + ACTIONS(1968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368639,23 +367223,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [152647] = 8, + [151995] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(1988), 1, + sym__space, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(4030), 1, - sym_comment, - STATE(4073), 1, + STATE(3980), 1, sym_path, - STATE(4676), 1, + STATE(3998), 1, + sym_comment, + STATE(4474), 1, sym_cell_path, - ACTIONS(1939), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1937), 11, + ACTIONS(1986), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368667,23 +367250,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, - [152683] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [152032] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(2000), 1, + sym__space, + ACTIONS(7096), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3860), 1, aux_sym_cell_path_repeat1, - STATE(4031), 1, - sym_comment, - STATE(4073), 1, + STATE(3980), 1, sym_path, - STATE(4791), 1, + STATE(3999), 1, + sym_comment, + STATE(4480), 1, sym_cell_path, - ACTIONS(7273), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7271), 11, + ACTIONS(1998), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368695,50 +367279,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, - [152719] = 14, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [152069] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(2083), 1, - sym_raw_string_begin, - ACTIONS(4051), 1, - anon_sym_DQUOTE, - ACTIONS(4055), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4057), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5035), 1, - anon_sym_LPAREN, - ACTIONS(7324), 1, - sym__unquoted_naive, - STATE(4032), 1, + ACTIONS(7295), 1, + anon_sym_QMARK2, + STATE(4000), 1, sym_comment, - STATE(4562), 1, - sym__inter_single_quotes, - STATE(4658), 1, - sym__inter_double_quotes, - ACTIONS(4053), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3997), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4561), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [152767] = 4, + ACTIONS(960), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(958), 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, + [152100] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4033), 1, + ACTIONS(7297), 1, + anon_sym_QMARK2, + STATE(4001), 1, sym_comment, - ACTIONS(1719), 3, + ACTIONS(954), 4, + ts_builtin_sym_end, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 14, + ACTIONS(952), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368750,56 +367331,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_DOT_DOT2, - [152795] = 12, - ACTIONS(251), 1, + anon_sym_DOT2, + [152131] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2545), 1, - anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7204), 1, - sym__newline, - ACTIONS(7206), 1, - anon_sym_COLON, - ACTIONS(7328), 1, - anon_sym_DASH2, - STATE(4034), 1, + ACTIONS(1833), 1, + sym__space, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3980), 1, + sym_path, + STATE(4002), 1, sym_comment, - STATE(4092), 1, - aux_sym_parameter_repeat1, - STATE(4990), 1, - aux_sym_parameter_repeat2, - STATE(6402), 1, - aux_sym_shebang_repeat1, - STATE(4839), 2, - sym_param_type, - sym_param_value, - ACTIONS(7326), 7, - sym_identifier, + STATE(4482), 1, + sym_cell_path, + ACTIONS(1831), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [152839] = 6, + anon_sym_RBRACE, + [152168] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - ACTIONS(2204), 1, + ACTIONS(2232), 1, aux_sym_unquoted_token4, - STATE(4035), 1, + STATE(4003), 1, sym_comment, - ACTIONS(1004), 3, + ACTIONS(2226), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - ACTIONS(1000), 12, - ts_builtin_sym_end, + ACTIONS(2230), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368811,17 +367387,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, - [152871] = 5, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [152201] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(1788), 1, + ACTIONS(1807), 1, anon_sym_LPAREN2, - STATE(4036), 1, + ACTIONS(7299), 1, + anon_sym_DOT_DOT2, + STATE(4004), 1, sym_comment, - ACTIONS(1794), 15, + ACTIONS(1813), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7301), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1805), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368833,23 +367418,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, - [152901] = 6, + [152238] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7330), 1, + ACTIONS(7303), 1, anon_sym_DOT, - ACTIONS(7332), 1, + ACTIONS(7305), 1, aux_sym__immediate_decimal_token2, - STATE(4037), 1, + STATE(4005), 1, sym_comment, - ACTIONS(1727), 3, - ts_builtin_sym_end, + ACTIONS(1751), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1725), 12, + ACTIONS(1749), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368861,16 +367442,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, aux_sym_unquoted_token2, - [152933] = 4, - ACTIONS(251), 1, + [152271] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - STATE(4038), 1, + ACTIONS(1837), 1, + sym__space, + ACTIONS(7096), 1, + anon_sym_DOT2, + STATE(3860), 1, + aux_sym_cell_path_repeat1, + STATE(3980), 1, + sym_path, + STATE(4006), 1, sym_comment, - ACTIONS(1727), 16, - ts_builtin_sym_end, + STATE(4485), 1, + sym_cell_path, + ACTIONS(1835), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368882,19 +367472,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [152308] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(4007), 1, + sym_comment, + ACTIONS(2192), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [152961] = 4, - ACTIONS(251), 1, + ACTIONS(2196), 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, + [152341] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - STATE(4039), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4008), 1, sym_comment, - ACTIONS(1759), 16, + STATE(4034), 1, + sym_path, + STATE(4714), 1, + sym_cell_path, + ACTIONS(1837), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1835), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -368906,46 +367529,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - anon_sym_LPAREN2, - [152989] = 8, - ACTIONS(251), 1, + [152377] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1786), 1, - anon_sym_DASH2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(7334), 1, - anon_sym_DOT_DOT2, - STATE(4040), 1, + STATE(4009), 1, sym_comment, - ACTIONS(7336), 2, + ACTIONS(990), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(988), 13, 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, - [153025] = 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_DOT_DOT2, + anon_sym_DOT2, + [152405] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - STATE(4041), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4010), 1, sym_comment, - ACTIONS(1767), 16, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7270), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368961,15 +367578,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - anon_sym_LPAREN2, - [153053] = 4, + [152435] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1861), 1, + ACTIONS(1731), 1, aux_sym_unquoted_token2, - STATE(4042), 1, + STATE(4011), 1, sym_comment, - ACTIONS(1863), 16, + ACTIONS(1733), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -368986,23 +367602,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_xor2, anon_sym_or2, anon_sym_LPAREN2, - [153081] = 8, - ACTIONS(3), 1, + [152463] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4043), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4012), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4564), 1, - sym_cell_path, - ACTIONS(2011), 2, + STATE(7348), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7270), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2009), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369014,16 +367624,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, - [153117] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [152493] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4044), 1, - sym_comment, - ACTIONS(1020), 3, + ACTIONS(2086), 1, sym__space, + ACTIONS(7307), 1, + anon_sym_DOT_DOT2, + STATE(4013), 1, + sym_comment, + ACTIONS(7309), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 14, + ACTIONS(2080), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369037,45 +367653,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [153145] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4045), 1, - sym_comment, - STATE(4073), 1, - sym_path, - STATE(4729), 1, - sym_cell_path, - ACTIONS(2091), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2089), 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, - [153181] = 5, + [152525] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - STATE(4046), 1, + STATE(4014), 1, sym_comment, - STATE(7291), 1, + STATE(7348), 1, sym__expr_parenthesized_immediate, - ACTIONS(7259), 15, + ACTIONS(7270), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369091,31 +367678,65 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153211] = 12, + [152555] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1914), 1, + anon_sym_DOLLAR, + ACTIONS(1966), 1, + sym_raw_string_begin, + ACTIONS(4267), 1, + anon_sym_DQUOTE, + ACTIONS(4271), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4273), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(4995), 1, + anon_sym_LPAREN, + ACTIONS(7311), 1, + sym__unquoted_naive, + STATE(4015), 1, + sym_comment, + STATE(4378), 1, + sym__inter_double_quotes, + STATE(4505), 1, + sym__inter_single_quotes, + ACTIONS(4269), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3891), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4443), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [152603] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2545), 1, + ACTIONS(2535), 1, anon_sym_COMMA, - ACTIONS(7202), 1, + ACTIONS(7181), 1, anon_sym_EQ, - ACTIONS(7204), 1, + ACTIONS(7183), 1, sym__newline, - ACTIONS(7206), 1, + ACTIONS(7185), 1, anon_sym_COLON, - ACTIONS(7340), 1, + ACTIONS(7315), 1, anon_sym_DASH2, - STATE(4047), 1, + STATE(4016), 1, sym_comment, - STATE(4126), 1, + STATE(4040), 1, aux_sym_parameter_repeat1, - STATE(4992), 1, + STATE(4981), 1, aux_sym_parameter_repeat2, - STATE(6402), 1, + STATE(6524), 1, aux_sym_shebang_repeat1, - STATE(4839), 2, + STATE(4826), 2, sym_param_type, sym_param_value, - ACTIONS(7338), 7, + ACTIONS(7313), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -369123,45 +367744,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [153255] = 8, + [152647] = 14, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_DASH2, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(7342), 1, - anon_sym_DOT_DOT2, - STATE(4048), 1, - sym_comment, - ACTIONS(7344), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1873), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(2104), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [153291] = 5, - ACTIONS(251), 1, + ACTIONS(2154), 1, + sym_raw_string_begin, + ACTIONS(4231), 1, + anon_sym_DQUOTE, + ACTIONS(4235), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(4237), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(5024), 1, + anon_sym_LPAREN, + ACTIONS(7317), 1, + sym__unquoted_naive, + STATE(4017), 1, + sym_comment, + STATE(4597), 1, + sym__inter_single_quotes, + STATE(4598), 1, + sym__inter_double_quotes, + ACTIONS(4233), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3939), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4739), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [152695] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(4049), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4018), 1, sym_comment, - ACTIONS(2186), 15, + STATE(4034), 1, + sym_path, + STATE(4639), 1, + sym_cell_path, + ACTIONS(2030), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2028), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369173,20 +367806,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, - [153321] = 5, - ACTIONS(251), 1, + [152731] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(4050), 1, + STATE(4019), 1, sym_comment, - ACTIONS(1873), 15, - ts_builtin_sym_end, + ACTIONS(1759), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1757), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369198,26 +367827,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_DOT_DOT2, + [152759] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(4020), 1, + sym_comment, + ACTIONS(2192), 3, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153351] = 8, + ACTIONS(2196), 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, + [152791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4051), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(4021), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4551), 1, - sym_cell_path, - ACTIONS(1947), 2, + ACTIONS(2200), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2202), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(1945), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369229,25 +367882,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, - [153387] = 9, + [152823] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4816), 1, + ACTIONS(4831), 1, anon_sym_DOT2, - ACTIONS(7350), 1, + ACTIONS(7323), 1, anon_sym_QMARK2, - STATE(1414), 1, + STATE(1403), 1, aux_sym_cell_path_repeat1, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(4052), 1, + STATE(4022), 1, sym_comment, - STATE(4866), 1, + STATE(4865), 1, sym_cell_path, - ACTIONS(7346), 2, + ACTIONS(7319), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7348), 10, + ACTIONS(7321), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -369258,48 +367911,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [153425] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(4053), 1, - sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7259), 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, - [153455] = 8, + [152861] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4054), 1, + STATE(4023), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4550), 1, - sym_cell_path, - ACTIONS(2027), 2, + ACTIONS(982), 4, ts_builtin_sym_end, sym__space, - ACTIONS(2025), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(980), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369311,23 +367933,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, - [153491] = 8, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [152889] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4055), 1, + STATE(4024), 1, sym_comment, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4553), 1, + STATE(4734), 1, sym_cell_path, - ACTIONS(7277), 2, + ACTIONS(1978), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7275), 11, + ACTIONS(1976), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369339,23 +367963,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [153527] = 8, - ACTIONS(3), 1, + [152925] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4056), 1, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, + STATE(4025), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4700), 1, - sym_cell_path, - ACTIONS(1935), 2, + ACTIONS(1774), 16, ts_builtin_sym_end, - sym__space, - ACTIONS(1933), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369367,17 +367983,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [153563] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4057), 1, - sym_comment, - ACTIONS(2265), 4, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - aux_sym_unquoted_token4, - ACTIONS(2267), 13, + anon_sym_LPAREN2, + [152953] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1817), 1, + aux_sym_unquoted_token2, + STATE(4026), 1, + sym_comment, + ACTIONS(1819), 16, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369390,18 +368007,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, - [153591] = 5, - ACTIONS(251), 1, + [152981] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(4058), 1, + ACTIONS(7325), 1, + aux_sym__immediate_decimal_token2, + STATE(4027), 1, sym_comment, - ACTIONS(2192), 15, - ts_builtin_sym_end, + ACTIONS(1774), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369413,125 +368033,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, - [153621] = 14, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1807), 1, - anon_sym_DOLLAR, - ACTIONS(1859), 1, - sym_raw_string_begin, - ACTIONS(4212), 1, - anon_sym_DQUOTE, - ACTIONS(4216), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(4218), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(5025), 1, - anon_sym_LPAREN, - ACTIONS(7352), 1, - sym__unquoted_naive, - STATE(4059), 1, - sym_comment, - STATE(4525), 1, - sym__inter_single_quotes, - STATE(4526), 1, - sym__inter_double_quotes, - ACTIONS(4214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3922), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4524), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [153669] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4060), 1, - sym_comment, - ACTIONS(1725), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 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, - [153697] = 4, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [153011] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4061), 1, - sym_comment, - ACTIONS(1757), 3, + ACTIONS(1793), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, + ACTIONS(1795), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [153725] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4062), 1, - sym_comment, - ACTIONS(1765), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, + ACTIONS(1803), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 14, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LPAREN2, + ACTIONS(7327), 1, + anon_sym_DOT_DOT2, + STATE(4028), 1, + sym_comment, + ACTIONS(7329), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153753] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4063), 1, - sym_comment, - ACTIONS(1861), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1863), 14, + ACTIONS(1801), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -369543,26 +368064,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, - [153781] = 8, + [153047] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4064), 1, + STATE(4029), 1, sym_comment, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4717), 1, + STATE(4746), 1, sym_cell_path, - ACTIONS(1975), 2, + ACTIONS(2000), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1973), 11, + ACTIONS(1998), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369574,23 +368092,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, - [153817] = 8, - ACTIONS(3), 1, + [153083] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4065), 1, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + STATE(4030), 1, sym_comment, - STATE(4073), 1, - sym_path, - STATE(4771), 1, - sym_cell_path, - ACTIONS(2003), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2001), 11, + ACTIONS(1675), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369602,16 +368111,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, - [153853] = 5, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153111] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2196), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - STATE(4066), 1, + STATE(4031), 1, sym_comment, - ACTIONS(2198), 15, + ACTIONS(1801), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -369627,16 +368141,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [153883] = 4, + [153141] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4067), 1, + STATE(4032), 1, sym_comment, - ACTIONS(984), 3, + ACTIONS(988), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(986), 14, + ACTIONS(990), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -369651,19 +368165,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [153911] = 6, - ACTIONS(3), 1, + [153169] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2150), 1, - sym__space, - ACTIONS(7354), 1, + STATE(4033), 1, + sym_comment, + ACTIONS(980), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, - STATE(4068), 1, + anon_sym_DOT2, + ACTIONS(982), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [153197] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4034), 1, sym_comment, - ACTIONS(7356), 2, + ACTIONS(986), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 13, + ACTIONS(984), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369675,21 +368211,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, - [153943] = 6, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [153225] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2158), 1, + ACTIONS(7333), 1, sym__space, - ACTIONS(7358), 1, + ACTIONS(7335), 1, anon_sym_DOT_DOT2, - STATE(4069), 1, + STATE(4035), 1, sym_comment, - ACTIONS(7360), 2, + ACTIONS(7337), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 13, + ACTIONS(7331), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369703,25 +368239,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [153975] = 9, + [153257] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4816), 1, + ACTIONS(4831), 1, anon_sym_DOT2, - ACTIONS(7366), 1, + ACTIONS(7343), 1, anon_sym_QMARK2, - STATE(1414), 1, + STATE(1403), 1, aux_sym_cell_path_repeat1, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(4070), 1, + STATE(4036), 1, sym_comment, - STATE(4878), 1, + STATE(4853), 1, sym_cell_path, - ACTIONS(7362), 2, + ACTIONS(7339), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7364), 10, + ACTIONS(7341), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -369732,47 +368268,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [154013] = 6, - ACTIONS(3), 1, + [153295] = 14, + ACTIONS(237), 1, + anon_sym_DQUOTE, + ACTIONS(241), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(243), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4071), 1, + ACTIONS(253), 1, + sym_raw_string_begin, + ACTIONS(3436), 1, + anon_sym_DOLLAR, + ACTIONS(6581), 1, + anon_sym_LPAREN, + ACTIONS(7345), 1, + sym__unquoted_naive, + STATE(2119), 1, + sym__inter_single_quotes, + STATE(2120), 1, + sym__inter_double_quotes, + STATE(4037), 1, sym_comment, - ACTIONS(2237), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2241), 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, - [154045] = 6, + ACTIONS(239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1410), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4599), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [153343] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4072), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4038), 1, sym_comment, - ACTIONS(2245), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2247), 12, + STATE(4781), 1, + sym_cell_path, + ACTIONS(1833), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1831), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369784,17 +368330,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, - [154077] = 4, + [153379] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(4073), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4039), 1, sym_comment, - ACTIONS(990), 4, + STATE(4615), 1, + sym_cell_path, + ACTIONS(2010), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(988), 13, + ACTIONS(2008), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369806,46 +368358,87 @@ static const uint16_t 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, - [154105] = 4, + [153415] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(4074), 1, - sym_comment, - ACTIONS(964), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(966), 14, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(7181), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7183), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7185), 1, anon_sym_COLON, + ACTIONS(7349), 1, + anon_sym_DASH2, + STATE(4040), 1, + sym_comment, + STATE(4246), 1, + aux_sym_parameter_repeat1, + STATE(5013), 1, + aux_sym_parameter_repeat2, + STATE(6524), 1, + aux_sym_shebang_repeat1, + STATE(4826), 2, + sym_param_type, + sym_param_value, + ACTIONS(7347), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [153459] = 12, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2535), 1, anon_sym_COMMA, + ACTIONS(7181), 1, + anon_sym_EQ, + ACTIONS(7183), 1, + sym__newline, + ACTIONS(7185), 1, + anon_sym_COLON, + ACTIONS(7353), 1, + anon_sym_DASH2, + STATE(4041), 1, + sym_comment, + STATE(4051), 1, + aux_sym_parameter_repeat1, + STATE(5014), 1, + aux_sym_parameter_repeat2, + STATE(6524), 1, + aux_sym_shebang_repeat1, + STATE(4826), 2, + sym_param_type, + sym_param_value, + ACTIONS(7351), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154133] = 6, + [153503] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7368), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7370), 1, - aux_sym__immediate_decimal_token2, - STATE(4075), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4042), 1, sym_comment, - ACTIONS(1759), 3, + STATE(4769), 1, + sym_cell_path, + ACTIONS(1877), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1757), 12, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369857,72 +368450,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, - aux_sym_unquoted_token2, - [154165] = 4, - ACTIONS(251), 1, + [153539] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4076), 1, - sym_comment, - ACTIONS(968), 3, - anon_sym_DASH2, + ACTIONS(2065), 1, + sym__space, + ACTIONS(7355), 1, anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(970), 14, - anon_sym_EQ, - sym_identifier, + STATE(4043), 1, + sym_comment, + ACTIONS(7357), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2059), 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_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154193] = 4, + anon_sym_RBRACE, + [153571] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4077), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + STATE(4044), 1, sym_comment, - ACTIONS(972), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(974), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(1751), 16, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154221] = 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_and2, + anon_sym_xor2, + anon_sym_or2, + anon_sym_LPAREN2, + [153599] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4078), 1, + STATE(4045), 1, sym_comment, - STATE(4775), 1, + STATE(4634), 1, sym_cell_path, - ACTIONS(1979), 2, + ACTIONS(1865), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1977), 11, + ACTIONS(1863), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369934,43 +368528,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, - [154257] = 4, - ACTIONS(251), 1, + [153635] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4079), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(4046), 1, sym_comment, - ACTIONS(980), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(982), 14, - anon_sym_EQ, - sym_identifier, + ACTIONS(2226), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(2230), 12, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154285] = 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, + [153667] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2166), 1, - sym__space, - ACTIONS(7372), 1, - anon_sym_DOT_DOT2, - STATE(4080), 1, + STATE(4047), 1, sym_comment, - ACTIONS(7374), 2, + ACTIONS(2041), 3, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 13, + ACTIONS(2039), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -369984,16 +368577,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154317] = 4, + anon_sym_DOT_DOT2, + [153695] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4081), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(4048), 1, sym_comment, - ACTIONS(2118), 3, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 14, + ACTIONS(1004), 3, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + ACTIONS(1000), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370005,26 +368604,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, - [154345] = 8, - ACTIONS(3), 1, + [153727] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4082), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(4049), 1, sym_comment, - STATE(4798), 1, - sym_cell_path, - ACTIONS(1959), 2, + ACTIONS(1813), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1957), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370036,19 +368626,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, - [154381] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [153757] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2176), 1, + ACTIONS(2078), 1, sym__space, - ACTIONS(7376), 1, + ACTIONS(7359), 1, anon_sym_DOT_DOT2, - STATE(4083), 1, + STATE(4050), 1, sym_comment, - ACTIONS(7378), 2, + ACTIONS(7361), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 13, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370062,47 +368655,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [154413] = 4, + [153789] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(4084), 1, - sym_comment, - ACTIONS(976), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - ACTIONS(978), 14, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(7181), 1, anon_sym_EQ, - sym_identifier, + ACTIONS(7183), 1, sym__newline, - anon_sym_PIPE, + ACTIONS(7185), 1, anon_sym_COLON, + ACTIONS(7365), 1, + anon_sym_DASH2, + STATE(4051), 1, + sym_comment, + STATE(4246), 1, + aux_sym_parameter_repeat1, + STATE(4978), 1, + aux_sym_parameter_repeat2, + STATE(6524), 1, + aux_sym_shebang_repeat1, + STATE(4826), 2, + sym_param_type, + sym_param_value, + ACTIONS(7363), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_QMARK2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [154441] = 8, + [153833] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4085), 1, + ACTIONS(7367), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7369), 1, + aux_sym__immediate_decimal_token2, + STATE(4052), 1, sym_comment, - STATE(4779), 1, - sym_cell_path, - ACTIONS(1983), 2, + ACTIONS(1733), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1981), 11, + anon_sym_LPAREN2, + ACTIONS(1731), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370114,19 +368712,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, - [154477] = 6, + aux_sym_unquoted_token2, + [153865] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7320), 1, - anon_sym_DOT_DOT2, - ACTIONS(7382), 1, - sym__space, - STATE(4086), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4053), 1, sym_comment, - ACTIONS(7322), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7380), 13, + STATE(4563), 1, + sym_cell_path, + ACTIONS(1841), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1839), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370138,25 +368741,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, + [153901] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, + anon_sym_DASH2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(7371), 1, + anon_sym_DOT_DOT2, + STATE(4054), 1, + sym_comment, + ACTIONS(7373), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1813), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [154509] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [153937] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4087), 1, + STATE(4055), 1, sym_comment, - STATE(4793), 1, + STATE(4547), 1, sym_cell_path, - ACTIONS(1987), 2, + ACTIONS(2014), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1985), 11, + ACTIONS(2012), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370168,23 +368797,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, - [154545] = 8, + [153973] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4088), 1, + STATE(4056), 1, sym_comment, - STATE(4692), 1, + STATE(4731), 1, sym_cell_path, - ACTIONS(2095), 2, + ACTIONS(1845), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2093), 11, + ACTIONS(1843), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370196,23 +368825,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, - [154581] = 8, + [154009] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4089), 1, + STATE(4057), 1, sym_comment, - STATE(4554), 1, + STATE(4548), 1, sym_cell_path, - ACTIONS(1991), 2, + ACTIONS(7262), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1989), 11, + ACTIONS(7260), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370224,16 +368853,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, - [154617] = 4, - ACTIONS(3), 1, + [154045] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4090), 1, + STATE(4058), 1, sym_comment, - ACTIONS(2104), 3, - sym__space, + ACTIONS(1749), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 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(2102), 14, + [154073] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4059), 1, + sym_comment, + STATE(4584), 1, + sym_cell_path, + ACTIONS(1881), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370245,20 +368905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - [154645] = 5, + [154109] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7384), 1, + ACTIONS(7375), 1, + anon_sym_DOT, + ACTIONS(7377), 1, aux_sym__immediate_decimal_token2, - STATE(4091), 1, + STATE(4060), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(1751), 3, + ts_builtin_sym_end, sym__space, anon_sym_LPAREN2, - ACTIONS(1765), 14, + ACTIONS(1749), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370270,58 +368930,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, aux_sym_unquoted_token2, - [154675] = 12, + [154141] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2545), 1, - anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7204), 1, - sym__newline, - ACTIONS(7206), 1, - anon_sym_COLON, - ACTIONS(7388), 1, - anon_sym_DASH2, - STATE(4092), 1, + STATE(4061), 1, sym_comment, - STATE(4126), 1, - aux_sym_parameter_repeat1, - STATE(5023), 1, - aux_sym_parameter_repeat2, - STATE(6402), 1, - aux_sym_shebang_repeat1, - STATE(4839), 2, - sym_param_type, - sym_param_value, - ACTIONS(7386), 7, + ACTIONS(1731), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1733), 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, - [154719] = 8, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154169] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4093), 1, + ACTIONS(7305), 1, + aux_sym__immediate_decimal_token2, + STATE(4062), 1, sym_comment, - STATE(4566), 1, - sym_cell_path, - ACTIONS(1995), 2, - ts_builtin_sym_end, + ACTIONS(1751), 2, sym__space, - ACTIONS(1993), 11, + anon_sym_LPAREN2, + ACTIONS(1749), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370333,148 +368977,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, - [154755] = 12, + anon_sym_RPAREN, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [154199] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2545), 1, - anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7204), 1, - sym__newline, - ACTIONS(7206), 1, - anon_sym_COLON, - ACTIONS(7392), 1, - anon_sym_DASH2, - STATE(4047), 1, - aux_sym_parameter_repeat1, - STATE(4094), 1, + STATE(4063), 1, sym_comment, - STATE(4981), 1, - aux_sym_parameter_repeat2, - STATE(6402), 1, - aux_sym_shebang_repeat1, - STATE(4839), 2, - sym_param_type, - sym_param_value, - ACTIONS(7390), 7, + ACTIONS(1772), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 14, + anon_sym_EQ, sym_identifier, + sym__newline, anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [154799] = 12, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154227] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2545), 1, - anon_sym_COMMA, - ACTIONS(7202), 1, - anon_sym_EQ, - ACTIONS(7204), 1, - sym__newline, - ACTIONS(7206), 1, - anon_sym_COLON, - ACTIONS(7396), 1, - anon_sym_DASH2, - STATE(4095), 1, + STATE(4064), 1, sym_comment, - STATE(4126), 1, - aux_sym_parameter_repeat1, - STATE(4996), 1, - aux_sym_parameter_repeat2, - STATE(6402), 1, - aux_sym_shebang_repeat1, - STATE(4839), 2, - sym_param_type, - sym_param_value, - ACTIONS(7394), 7, + ACTIONS(1817), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 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, - [154843] = 14, - ACTIONS(237), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(243), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(3449), 1, - anon_sym_DOLLAR, - ACTIONS(6594), 1, - anon_sym_LPAREN, - ACTIONS(7398), 1, - sym__unquoted_naive, - STATE(2143), 1, - sym__inter_double_quotes, - STATE(2149), 1, - sym__inter_single_quotes, - STATE(4096), 1, - sym_comment, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4608), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [154891] = 14, - ACTIONS(109), 1, - anon_sym_DQUOTE, - ACTIONS(113), 1, - anon_sym_DOLLAR_SQUOTE, - ACTIONS(115), 1, - anon_sym_DOLLAR_DQUOTE, - ACTIONS(123), 1, - sym_raw_string_begin, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - ACTIONS(5833), 1, - anon_sym_LPAREN, - ACTIONS(7400), 1, - sym__unquoted_naive, - STATE(2550), 1, - sym__inter_single_quotes, - STATE(2552), 1, - sym__inter_double_quotes, - STATE(4097), 1, - sym_comment, - ACTIONS(111), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1720), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(4872), 4, - sym_expr_parenthesized, - sym_val_variable, - sym_val_string, - sym_val_interpolated, - [154939] = 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154255] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4098), 1, + STATE(4065), 1, sym_comment, - ACTIONS(2122), 3, + ACTIONS(1020), 3, sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 14, + ACTIONS(1018), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370489,23 +369052,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_DOT_DOT2, - [154967] = 8, - ACTIONS(3), 1, + [154283] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4099), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(4066), 1, sym_comment, - STATE(4642), 1, - sym_cell_path, - ACTIONS(1999), 2, + ACTIONS(2174), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(1997), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370517,23 +369074,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, - [155003] = 8, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [154313] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, - anon_sym_DOT2, - STATE(3912), 1, - aux_sym_cell_path_repeat1, - STATE(4073), 1, - sym_path, - STATE(4100), 1, + STATE(4067), 1, sym_comment, - STATE(4799), 1, - sym_cell_path, - ACTIONS(1927), 2, - ts_builtin_sym_end, + ACTIONS(2037), 3, sym__space, - ACTIONS(1925), 11, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370545,16 +369098,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, - [155039] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [154341] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4101), 1, + STATE(4068), 1, sym_comment, - ACTIONS(988), 3, + ACTIONS(964), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, anon_sym_DOT2, - ACTIONS(990), 14, + ACTIONS(966), 14, anon_sym_EQ, sym_identifier, sym__newline, @@ -370566,72 +369122,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [155067] = 8, + [154369] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4102), 1, + STATE(4069), 1, sym_comment, - STATE(4655), 1, + STATE(4549), 1, sym_cell_path, - ACTIONS(1951), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1949), 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, - [155103] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4103), 1, - sym_comment, - ACTIONS(986), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(984), 13, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [155131] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4104), 1, - sym_comment, - ACTIONS(982), 4, + ACTIONS(2022), 2, ts_builtin_sym_end, sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(980), 13, + ACTIONS(2020), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370643,18 +369153,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, - [155159] = 5, + [154405] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - STATE(4105), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(4070), 1, sym_comment, - STATE(7291), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7259), 15, + ACTIONS(2190), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -370670,23 +369178,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155189] = 8, + [154435] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7145), 1, + ACTIONS(7144), 1, anon_sym_DOT2, - STATE(3912), 1, + STATE(3893), 1, aux_sym_cell_path_repeat1, - STATE(4073), 1, + STATE(4034), 1, sym_path, - STATE(4106), 1, + STATE(4071), 1, sym_comment, - STATE(4696), 1, + STATE(4562), 1, sym_cell_path, - ACTIONS(1955), 2, + ACTIONS(2026), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1953), 11, + ACTIONS(2024), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370698,21 +369206,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, - [155225] = 6, + [154471] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4107), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4072), 1, sym_comment, - ACTIONS(2229), 3, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - ACTIONS(2233), 12, + STATE(4732), 1, + sym_cell_path, + ACTIONS(1849), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(1847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370724,20 +369234,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, - [155257] = 6, + [154507] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7402), 1, - anon_sym_DOT_DOT2, - STATE(4108), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4073), 1, sym_comment, - ACTIONS(2176), 2, + STATE(4601), 1, + sym_cell_path, + ACTIONS(1853), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7404), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2170), 11, + ACTIONS(1851), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370749,90 +369262,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, - [155288] = 7, + [154543] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - STATE(4109), 1, + STATE(4074), 1, sym_comment, - STATE(4239), 1, - aux_sym_shebang_repeat1, - ACTIONS(7406), 12, - anon_sym_SEMI, + ACTIONS(968), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(970), 14, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_or2, - [155321] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154571] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4110), 1, + STATE(4075), 1, sym_comment, - STATE(4241), 1, - aux_sym_shebang_repeat1, - ACTIONS(7412), 15, + ACTIONS(972), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(974), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_and2, - anon_sym_xor2, - anon_sym_or2, - [155348] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154599] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(4111), 1, + ACTIONS(2535), 1, + anon_sym_COMMA, + ACTIONS(7181), 1, + anon_sym_EQ, + ACTIONS(7183), 1, + sym__newline, + ACTIONS(7185), 1, + anon_sym_COLON, + ACTIONS(7381), 1, + anon_sym_DASH2, + STATE(4076), 1, sym_comment, - STATE(4245), 1, + STATE(4246), 1, + aux_sym_parameter_repeat1, + STATE(4971), 1, + aux_sym_parameter_repeat2, + STATE(6524), 1, aux_sym_shebang_repeat1, - ACTIONS(7412), 15, - sym__newline, - anon_sym_SEMI, + STATE(4826), 2, + sym_param_type, + sym_param_value, + ACTIONS(7379), 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_and2, - anon_sym_xor2, - anon_sym_or2, - [155375] = 5, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [154643] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7332), 1, - aux_sym__immediate_decimal_token2, - STATE(4112), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4077), 1, sym_comment, - ACTIONS(1727), 3, + STATE(4587), 1, + sym_cell_path, + ACTIONS(7248), 2, ts_builtin_sym_end, sym__space, - anon_sym_LPAREN2, - ACTIONS(1725), 12, + ACTIONS(7246), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370844,15 +369370,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, - aux_sym_unquoted_token2, - [155404] = 4, - ACTIONS(251), 1, + [154679] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4113), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4078), 1, sym_comment, - ACTIONS(7414), 15, + STATE(4725), 1, + sym_cell_path, + ACTIONS(1970), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1968), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370864,18 +369398,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, - [155431] = 4, - ACTIONS(251), 1, + [154715] = 8, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4114), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4079), 1, sym_comment, - ACTIONS(7414), 15, + STATE(4772), 1, + sym_cell_path, + ACTIONS(1988), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1986), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370887,22 +369426,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, - [155458] = 6, - ACTIONS(251), 1, + [154751] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7416), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_and2, - STATE(4115), 1, + ACTIONS(1000), 1, + sym__space, + ACTIONS(7335), 1, + anon_sym_DOT_DOT2, + STATE(4080), 1, sym_comment, - STATE(4116), 1, - aux_sym_shebang_repeat1, - ACTIONS(7419), 13, + ACTIONS(7337), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1004), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -370914,18 +369451,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, - [155489] = 5, + anon_sym_RBRACE, + [154783] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4116), 1, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(4081), 1, sym_comment, - ACTIONS(7414), 14, + ACTIONS(2184), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370937,45 +369474,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155518] = 5, + [154813] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4117), 1, + STATE(4082), 1, sym_comment, - ACTIONS(7414), 14, + ACTIONS(976), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(978), 14, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [155547] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_QMARK2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [154841] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - sym__space, - STATE(4118), 1, + STATE(4083), 1, sym_comment, - ACTIONS(2188), 13, + ACTIONS(2216), 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + aux_sym_unquoted_token4, + ACTIONS(2218), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -370987,18 +369524,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, - [155578] = 5, - ACTIONS(251), 1, + anon_sym_LPAREN2, + [154869] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4119), 1, + STATE(4084), 1, sym_comment, - ACTIONS(7427), 14, + ACTIONS(2045), 3, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371011,18 +369547,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [155607] = 5, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + [154897] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4120), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4085), 1, sym_comment, - ACTIONS(7427), 14, + STATE(4583), 1, + sym_cell_path, + ACTIONS(1887), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1885), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371034,21 +369577,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_xor2, - anon_sym_or2, - [155636] = 6, - ACTIONS(251), 1, + [154933] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7416), 1, - sym__newline, - STATE(4117), 1, - aux_sym_shebang_repeat1, - STATE(4121), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4086), 1, sym_comment, - ACTIONS(7419), 13, + STATE(4626), 1, + sym_cell_path, + ACTIONS(1895), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1893), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371059,21 +369605,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_xor2, - anon_sym_or2, - [155667] = 6, - ACTIONS(251), 1, + [154969] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4122), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4087), 1, sym_comment, - ACTIONS(7429), 13, + STATE(4606), 1, + sym_cell_path, + ACTIONS(1903), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1901), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371085,20 +369633,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [155698] = 6, - ACTIONS(251), 1, + [155005] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4123), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4088), 1, sym_comment, - ACTIONS(7414), 13, + STATE(4783), 1, + sym_cell_path, + ACTIONS(1873), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371110,20 +369661,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_or2, - [155729] = 6, - ACTIONS(251), 1, + [155041] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7433), 1, - sym__newline, - STATE(4124), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4089), 1, sym_comment, - STATE(4269), 1, - aux_sym_shebang_repeat1, - ACTIONS(7412), 13, + STATE(4672), 1, + sym_cell_path, + ACTIONS(1857), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1855), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371134,21 +369689,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_xor2, - anon_sym_or2, - [155760] = 6, - ACTIONS(251), 1, + [155077] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7433), 1, - sym__newline, - STATE(4125), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4090), 1, sym_comment, - STATE(4278), 1, - aux_sym_shebang_repeat1, - ACTIONS(7412), 13, + STATE(4673), 1, + sym_cell_path, + ACTIONS(1869), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1867), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371159,49 +369717,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_xor2, - anon_sym_or2, - [155791] = 9, + [155113] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7438), 1, - anon_sym_EQ, - ACTIONS(7441), 1, - sym__newline, - ACTIONS(7444), 1, - anon_sym_COLON, - ACTIONS(7447), 1, - anon_sym_DASH2, - STATE(6402), 1, - aux_sym_shebang_repeat1, - STATE(4126), 2, + STATE(4091), 1, sym_comment, - aux_sym_parameter_repeat1, - STATE(4839), 2, - sym_param_type, - sym_param_value, - ACTIONS(7436), 8, + ACTIONS(984), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + ACTIONS(986), 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, - [155828] = 6, - ACTIONS(251), 1, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [155141] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4127), 1, + ACTIONS(7144), 1, + anon_sym_DOT2, + STATE(3893), 1, + aux_sym_cell_path_repeat1, + STATE(4034), 1, + sym_path, + STATE(4092), 1, sym_comment, - ACTIONS(7414), 13, + STATE(4617), 1, + sym_cell_path, + ACTIONS(1861), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371213,17 +369769,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, - [155859] = 4, + [155177] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4128), 1, - sym_comment, - ACTIONS(2267), 2, + ACTIONS(2053), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2265), 14, + ACTIONS(7383), 1, + anon_sym_DOT_DOT2, + STATE(4093), 1, + sym_comment, + ACTIONS(7385), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2047), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371237,15 +369795,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token4, - [155886] = 4, + [155209] = 14, + ACTIONS(109), 1, + anon_sym_DQUOTE, + ACTIONS(113), 1, + anon_sym_DOLLAR_SQUOTE, + ACTIONS(115), 1, + anon_sym_DOLLAR_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(3460), 1, + anon_sym_DOLLAR, + ACTIONS(5782), 1, + anon_sym_LPAREN, + ACTIONS(7387), 1, + sym__unquoted_naive, + STATE(2461), 1, + sym__inter_single_quotes, + STATE(2465), 1, + sym__inter_double_quotes, + STATE(4094), 1, + sym_comment, + ACTIONS(111), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1780), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(4860), 4, + sym_expr_parenthesized, + sym_val_variable, + sym_val_string, + sym_val_interpolated, + [155257] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4129), 1, + STATE(4095), 1, sym_comment, - ACTIONS(7414), 15, + ACTIONS(7389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371258,42 +369853,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, - [155913] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5951), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7451), 1, - anon_sym_DOT, - STATE(4130), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_GT2, - anon_sym_LT2, - anon_sym_DOT2, - ACTIONS(1589), 11, - anon_sym_in2, - anon_sym_QMARK2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [155944] = 4, + [155288] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4131), 1, + STATE(4096), 1, sym_comment, - ACTIONS(7414), 15, + ACTIONS(7395), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371309,18 +369877,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [155971] = 6, + [155315] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(4862), 1, sym__space, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4132), 1, + ACTIONS(7397), 1, + sym_long_flag_identifier, + ACTIONS(7399), 1, + anon_sym_EQ2, + STATE(4097), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(4864), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371334,40 +369902,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [156002] = 5, + [155346] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4133), 1, + ACTIONS(7401), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7403), 1, + aux_sym__immediate_decimal_token2, + STATE(4098), 1, sym_comment, - ACTIONS(7414), 14, + ACTIONS(1731), 3, + sym_identifier, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1733), 11, + 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_xor2, - anon_sym_or2, - [156031] = 5, - ACTIONS(251), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [155377] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4134), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + sym__space, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(4099), 1, sym_comment, - ACTIONS(7414), 14, + ACTIONS(2192), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371380,20 +369951,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, - [156060] = 6, + anon_sym_RBRACE, + [155408] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4135), 1, + STATE(4100), 1, sym_comment, - ACTIONS(7414), 13, + ACTIONS(7405), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371406,44 +369974,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [156091] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - ACTIONS(7449), 1, anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4136), 1, - sym_comment, - ACTIONS(7414), 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, - [156122] = 6, + [155437] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4137), 1, + STATE(4101), 1, sym_comment, - ACTIONS(7429), 13, + ACTIONS(7409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371456,42 +369998,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, - [156153] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7453), 1, anon_sym_xor2, - STATE(4123), 1, - aux_sym_shebang_repeat1, - STATE(4138), 1, - sym_comment, - ACTIONS(7419), 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, - [156186] = 4, + [155466] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4139), 1, - sym_comment, - ACTIONS(1727), 2, - sym__space, + ACTIONS(2194), 1, anon_sym_LPAREN2, - ACTIONS(1725), 14, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + ACTIONS(2202), 1, + sym__space, + STATE(4102), 1, + sym_comment, + ACTIONS(2200), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371505,13 +370025,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym_unquoted_token2, - [156213] = 3, + [155497] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4140), 1, + STATE(4103), 1, sym_comment, - ACTIONS(7194), 16, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371528,71 +370047,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156238] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7455), 1, - sym__newline, - STATE(4141), 1, - sym_comment, - STATE(4270), 1, - aux_sym_shebang_repeat1, - ACTIONS(7458), 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, - [156269] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7453), 1, - anon_sym_xor2, - STATE(4122), 1, - aux_sym_shebang_repeat1, - STATE(4142), 1, - sym_comment, - ACTIONS(7412), 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, - [156302] = 7, - ACTIONS(251), 1, + [155522] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - STATE(4137), 1, - aux_sym_shebang_repeat1, - STATE(4143), 1, + ACTIONS(4819), 1, + sym__space, + ACTIONS(7411), 1, + anon_sym_EQ2, + ACTIONS(7413), 1, + sym_short_flag_identifier, + STATE(4104), 1, sym_comment, - ACTIONS(7412), 12, + ACTIONS(4821), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371604,15 +370071,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, - [156335] = 4, + anon_sym_RBRACE, + [155553] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4105), 1, + sym_comment, + STATE(4721), 1, + sym_cell_path, + ACTIONS(1978), 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, + [155588] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4144), 1, + STATE(4106), 1, sym_comment, - ACTIONS(7460), 15, + ACTIONS(7405), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371628,14 +370122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156362] = 4, + [155615] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4145), 1, + STATE(4107), 1, sym_comment, - ACTIONS(7460), 15, + ACTIONS(7270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371648,21 +370140,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, - [156389] = 6, + [155640] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7408), 1, + ACTIONS(7391), 1, anon_sym_and2, - ACTIONS(7455), 1, - sym__newline, - STATE(4146), 1, - sym_comment, - STATE(4280), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(7458), 13, + STATE(4108), 1, + sym_comment, + ACTIONS(7395), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371676,20 +370168,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [156420] = 7, + [155669] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - STATE(4127), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4147), 1, + STATE(4109), 1, sym_comment, - ACTIONS(7419), 12, + ACTIONS(7395), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371701,15 +370190,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, - [156453] = 4, + [155698] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4148), 1, + STATE(4110), 1, sym_comment, - STATE(4149), 1, - aux_sym_shebang_repeat1, - ACTIONS(7406), 15, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371722,18 +370210,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, - [156480] = 4, + [155723] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4149), 1, + ACTIONS(4831), 1, + anon_sym_DOT2, + STATE(1395), 1, + sym_cell_path, + STATE(1403), 1, + aux_sym_cell_path_repeat1, + STATE(1531), 1, + sym_path, + STATE(4111), 1, sym_comment, - ACTIONS(7427), 15, + ACTIONS(935), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(937), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [155758] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, sym__newline, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7419), 1, + anon_sym_xor2, + ACTIONS(7421), 1, + anon_sym_or2, + STATE(4112), 1, + sym_comment, + STATE(4254), 1, + aux_sym_shebang_repeat1, + ACTIONS(7415), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371745,17 +370268,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, - [156507] = 4, - ACTIONS(251), 1, + [155793] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4150), 1, + ACTIONS(7423), 1, + anon_sym_DOT_DOT2, + STATE(4113), 1, sym_comment, - ACTIONS(7427), 15, + ACTIONS(2065), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7425), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2059), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371767,20 +370293,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_and2, - anon_sym_xor2, - anon_sym_or2, - [156534] = 5, + [155824] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4151), 1, + STATE(4114), 1, sym_comment, - ACTIONS(7427), 14, + ACTIONS(7270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371793,18 +370311,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, - [156563] = 5, + [155849] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4152), 1, + STATE(4115), 1, sym_comment, - ACTIONS(7427), 14, + ACTIONS(7205), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371817,21 +370333,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156592] = 6, + [155874] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7427), 1, + sym__newline, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4153), 1, + STATE(4116), 1, sym_comment, - ACTIONS(7427), 13, - sym__newline, + STATE(4215), 1, + aux_sym_shebang_repeat1, + ACTIONS(7430), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371843,13 +370360,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, - [156623] = 3, + [155905] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4154), 1, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4117), 1, sym_comment, - ACTIONS(7259), 16, + ACTIONS(7395), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371862,22 +370386,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, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [156648] = 6, + [155936] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4155), 1, + STATE(4118), 1, sym_comment, - ACTIONS(7427), 13, + ACTIONS(7270), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371890,15 +370405,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, - [156679] = 4, + [155961] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4156), 1, + STATE(4119), 1, sym_comment, - ACTIONS(7429), 15, + ACTIONS(7434), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371911,15 +370427,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156706] = 3, - ACTIONS(251), 1, + [155986] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4157), 1, + ACTIONS(1751), 1, + sym__space, + ACTIONS(7104), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7436), 1, + anon_sym_DOT, + STATE(4120), 1, sym_comment, - ACTIONS(7194), 16, + ACTIONS(1749), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371933,17 +370456,12 @@ 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, - [156731] = 4, + [156017] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4158), 1, + STATE(4121), 1, sym_comment, - ACTIONS(7429), 15, + ACTIONS(7434), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -371956,18 +370474,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, - [156758] = 4, + [156042] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + STATE(4122), 1, + sym_comment, STATE(4129), 1, aux_sym_shebang_repeat1, - STATE(4159), 1, - sym_comment, - ACTIONS(7419), 15, - sym__newline, + ACTIONS(7438), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -371979,25 +370503,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, - [156785] = 8, + [156075] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4160), 1, + STATE(4123), 1, sym_comment, - STATE(4688), 1, + STATE(4661), 1, sym_cell_path, - ACTIONS(2095), 11, + ACTIONS(1873), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -372009,14 +370531,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [156820] = 4, + [156110] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4131), 1, - aux_sym_shebang_repeat1, - STATE(4161), 1, + STATE(4124), 1, sym_comment, - ACTIONS(7419), 15, + STATE(4155), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372032,16 +370554,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156847] = 5, + [156137] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7407), 1, anon_sym_and2, - STATE(1706), 1, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4162), 1, + STATE(4125), 1, sym_comment, - ACTIONS(7429), 14, + ACTIONS(7395), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372054,18 +370578,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, - [156876] = 5, + [156168] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, + ACTIONS(7444), 1, anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4163), 1, + STATE(4126), 1, sym_comment, - ACTIONS(7429), 14, + ACTIONS(7434), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372078,42 +370599,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, - [156905] = 6, + [156195] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7462), 1, - anon_sym_DOT, - ACTIONS(7464), 1, - aux_sym__immediate_decimal_token2, - STATE(4164), 1, - sym_comment, - ACTIONS(1725), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 11, - anon_sym_EQ, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7427), 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, - [156936] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4150), 1, - aux_sym_shebang_repeat1, - STATE(4165), 1, + STATE(4127), 1, sym_comment, - ACTIONS(7406), 15, - sym__newline, + STATE(4217), 1, + aux_sym_shebang_repeat1, + ACTIONS(7430), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372125,21 +370625,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [156963] = 6, + [156226] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7416), 1, + ACTIONS(1847), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4128), 1, + sym_comment, + STATE(4671), 1, + sym_cell_path, + ACTIONS(1849), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7421), 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, + [156261] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7391), 1, anon_sym_and2, - STATE(4133), 1, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4166), 1, + STATE(4129), 1, sym_comment, - ACTIONS(7419), 13, + ACTIONS(7409), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372151,24 +370678,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, - [156994] = 8, + [156292] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7421), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7453), 1, + ACTIONS(7419), 1, anon_sym_xor2, - ACTIONS(7468), 1, - anon_sym_or2, - STATE(4167), 1, + STATE(4130), 1, sym_comment, - STATE(4224), 1, + STATE(4179), 1, aux_sym_shebang_repeat1, - ACTIONS(7466), 11, + ACTIONS(7446), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372180,59 +370704,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [157029] = 3, + anon_sym_or2, + [156325] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4168), 1, + ACTIONS(1851), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4131), 1, sym_comment, - ACTIONS(7259), 16, + STATE(4682), 1, + sym_cell_path, + ACTIONS(1853), 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, - [157054] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [156360] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7416), 1, - sym__newline, - STATE(4134), 1, - aux_sym_shebang_repeat1, - STATE(4169), 1, + ACTIONS(1855), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4132), 1, sym_comment, - ACTIONS(7419), 13, - anon_sym_SEMI, + STATE(4779), 1, + sym_cell_path, + ACTIONS(1857), 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, - [157085] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [156395] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4170), 1, + ACTIONS(7448), 1, + anon_sym_and2, + STATE(4133), 1, sym_comment, - ACTIONS(7194), 16, + ACTIONS(7434), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372246,21 +370780,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, - [157110] = 6, + [156422] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7444), 1, anon_sym_and2, - ACTIONS(7431), 1, + ACTIONS(7450), 1, anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4171), 1, + STATE(4134), 1, sym_comment, - ACTIONS(7429), 13, + ACTIONS(7434), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372273,19 +370804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_or2, - [157141] = 6, - ACTIONS(3), 1, + [156451] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2241), 1, - sym__space, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4172), 1, + ACTIONS(7448), 1, + anon_sym_and2, + ACTIONS(7452), 1, + anon_sym_xor2, + STATE(4135), 1, sym_comment, - ACTIONS(2237), 13, + ACTIONS(7434), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372299,36 +370829,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157172] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7470), 1, - aux_sym__immediate_decimal_token2, - STATE(4173), 1, - sym_comment, - ACTIONS(1767), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1765), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [157201] = 3, + anon_sym_or2, + [156480] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4174), 1, + STATE(4136), 1, sym_comment, - ACTIONS(7259), 16, + ACTIONS(7434), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372345,18 +370852,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157226] = 6, + [156505] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4175), 1, + STATE(4137), 1, sym_comment, - ACTIONS(7429), 13, + ACTIONS(7434), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372369,19 +370870,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [157257] = 6, + [156530] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7444), 1, anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4176), 1, + STATE(4138), 1, sym_comment, - ACTIONS(7427), 13, + ACTIONS(7434), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372394,17 +370894,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_xor2, anon_sym_or2, - [157288] = 5, + [156557] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7448), 1, anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4177), 1, + STATE(4139), 1, sym_comment, - ACTIONS(7460), 14, + ACTIONS(7434), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372417,18 +370917,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, - [157317] = 5, + [156584] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, + ACTIONS(7444), 1, anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4178), 1, + ACTIONS(7450), 1, + anon_sym_xor2, + STATE(4140), 1, sym_comment, - ACTIONS(7460), 14, + ACTIONS(7434), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372441,22 +370942,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_RBRACE, anon_sym_or2, - [157346] = 7, + [156613] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7421), 1, + ACTIONS(7448), 1, anon_sym_and2, - ACTIONS(7453), 1, + ACTIONS(7452), 1, anon_sym_xor2, - STATE(4135), 1, - aux_sym_shebang_repeat1, - STATE(4179), 1, + STATE(4141), 1, sym_comment, - ACTIONS(7419), 12, + ACTIONS(7434), 14, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372468,21 +370966,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, - [157379] = 7, + [156642] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7421), 1, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7453), 1, + ACTIONS(7440), 1, anon_sym_xor2, - STATE(4180), 1, + STATE(4142), 1, sym_comment, - STATE(4293), 1, + STATE(4210), 1, aux_sym_shebang_repeat1, - ACTIONS(7458), 12, + ACTIONS(7446), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372495,20 +370994,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [157412] = 7, + [156675] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7408), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7410), 1, + ACTIONS(7419), 1, anon_sym_xor2, - STATE(4136), 1, - aux_sym_shebang_repeat1, - STATE(4181), 1, + STATE(4143), 1, sym_comment, - ACTIONS(7419), 12, + STATE(4145), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372521,43 +371020,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [157445] = 6, + [156708] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7472), 1, - sym__newline, - STATE(4151), 1, - aux_sym_shebang_repeat1, - STATE(4182), 1, + ACTIONS(1863), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4144), 1, sym_comment, - ACTIONS(7406), 13, - anon_sym_SEMI, + STATE(4564), 1, + sym_cell_path, + ACTIONS(1865), 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, - [157476] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [156743] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7408), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7472), 1, - sym__newline, - STATE(4152), 1, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4183), 1, + STATE(4145), 1, sym_comment, - ACTIONS(7406), 13, + ACTIONS(7409), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372569,20 +371071,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, - [157507] = 6, + [156774] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7448), 1, anon_sym_and2, - ACTIONS(7431), 1, + ACTIONS(7452), 1, anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4184), 1, + ACTIONS(7456), 1, + anon_sym_or2, + STATE(4146), 1, sym_comment, - ACTIONS(7460), 13, + ACTIONS(7454), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372595,19 +371096,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_or2, - [157538] = 6, + anon_sym_RBRACE, + [156805] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4185), 1, + STATE(4147), 1, sym_comment, - ACTIONS(7460), 13, + STATE(4191), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372620,21 +371117,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, - [157569] = 7, + [156832] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7453), 1, - anon_sym_xor2, - STATE(4153), 1, - aux_sym_shebang_repeat1, - STATE(4186), 1, + STATE(4148), 1, sym_comment, - ACTIONS(7406), 12, + STATE(4195), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372646,21 +371140,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, - [157602] = 7, + [156859] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7410), 1, + ACTIONS(7440), 1, anon_sym_xor2, - STATE(4155), 1, - aux_sym_shebang_repeat1, - STATE(4187), 1, + STATE(4149), 1, sym_comment, - ACTIONS(7406), 12, + STATE(4221), 1, + aux_sym_shebang_repeat1, + ACTIONS(7430), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372673,14 +371169,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [157635] = 4, + [156892] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4156), 1, - aux_sym_shebang_repeat1, - STATE(4188), 1, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, + STATE(4150), 1, sym_comment, - ACTIONS(7412), 15, + ACTIONS(1675), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372692,18 +371189,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, - [157662] = 4, + [156919] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4158), 1, - aux_sym_shebang_repeat1, - STATE(4189), 1, + STATE(4151), 1, sym_comment, - ACTIONS(7412), 15, + STATE(4285), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372719,12 +371215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157689] = 3, + [156946] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4190), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4152), 1, sym_comment, - ACTIONS(7475), 16, + ACTIONS(7389), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372737,53 +371235,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157714] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4191), 1, - sym_comment, - STATE(4594), 1, - sym_cell_path, - ACTIONS(1951), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [157749] = 8, + [156973] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4192), 1, + STATE(4153), 1, sym_comment, - STATE(4600), 1, + STATE(4618), 1, sym_cell_path, - ACTIONS(1955), 11, + ACTIONS(1869), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -372795,39 +371265,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [157784] = 8, + [157008] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - ACTIONS(7477), 1, - anon_sym_or2, - STATE(4193), 1, - sym_comment, - STATE(4230), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(7466), 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, - [157819] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4194), 1, + STATE(4154), 1, sym_comment, - ACTIONS(7475), 16, + ACTIONS(7389), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372840,47 +371285,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [157844] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7479), 1, - anon_sym_DOT_DOT2, - STATE(4195), 1, - sym_comment, - ACTIONS(7382), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7481), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7380), 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, - [157875] = 6, + [157035] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7433), 1, - sym__newline, - STATE(4162), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4196), 1, + STATE(4155), 1, sym_comment, - ACTIONS(7412), 13, + ACTIONS(7409), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372892,45 +371308,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, - [157906] = 6, + [157062] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7433), 1, - sym__newline, - STATE(4163), 1, - aux_sym_shebang_repeat1, - STATE(4197), 1, + ACTIONS(1875), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4156), 1, sym_comment, - ACTIONS(7412), 13, - anon_sym_SEMI, + STATE(4641), 1, + sym_cell_path, + ACTIONS(1877), 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, - [157937] = 6, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [157097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__space, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4198), 1, + STATE(4157), 1, sym_comment, - ACTIONS(2229), 13, + ACTIONS(2218), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(2216), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -372944,20 +371360,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [157968] = 7, + aux_sym_unquoted_token4, + [157124] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7421), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7453), 1, + ACTIONS(7419), 1, anon_sym_xor2, - STATE(4171), 1, - aux_sym_shebang_repeat1, - STATE(4199), 1, + STATE(4158), 1, sym_comment, - ACTIONS(7412), 12, + STATE(4277), 1, + aux_sym_shebang_repeat1, + ACTIONS(7430), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372970,20 +371387,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [158001] = 7, + [157157] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - STATE(4175), 1, - aux_sym_shebang_repeat1, - STATE(4200), 1, + ACTIONS(7458), 1, + sym__newline, + STATE(4159), 1, sym_comment, - ACTIONS(7412), 12, + STATE(4228), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -372995,15 +371410,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, - [158034] = 4, + [157188] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7483), 1, - anon_sym_and2, - STATE(4201), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4160), 1, sym_comment, - ACTIONS(7475), 15, + ACTIONS(7405), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373016,69 +371432,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, - [158061] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4202), 1, - sym_comment, - ACTIONS(1719), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1717), 12, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [158088] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4203), 1, - sym_comment, - ACTIONS(1759), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1757), 14, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - aux_sym_unquoted_token2, - [158115] = 7, + [157215] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - STATE(4204), 1, + ACTIONS(7458), 1, + sym__newline, + STATE(4161), 1, sym_comment, - STATE(4296), 1, + STATE(4236), 1, aux_sym_shebang_repeat1, - ACTIONS(7458), 12, + ACTIONS(7438), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373090,16 +371458,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, - [158148] = 4, + [157246] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7485), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(7417), 1, anon_sym_and2, - STATE(4205), 1, + ACTIONS(7419), 1, + anon_sym_xor2, + STATE(4125), 1, + aux_sym_shebang_repeat1, + STATE(4162), 1, sym_comment, - ACTIONS(7475), 15, - sym__newline, + ACTIONS(7430), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373111,45 +371485,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, - [158175] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7479), 1, - anon_sym_DOT_DOT2, - STATE(4206), 1, - sym_comment, - ACTIONS(1000), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7481), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1004), 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, - [158206] = 5, + [157279] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7483), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7487), 1, + ACTIONS(7440), 1, anon_sym_xor2, - STATE(4207), 1, + STATE(4163), 1, sym_comment, - ACTIONS(7475), 14, - sym__newline, + STATE(4245), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373161,22 +371511,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_or2, - [158235] = 7, + [157312] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7421), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7453), 1, + ACTIONS(7419), 1, anon_sym_xor2, - STATE(4176), 1, - aux_sym_shebang_repeat1, - STATE(4208), 1, + STATE(4164), 1, sym_comment, - ACTIONS(7406), 12, + STATE(4247), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373189,48 +371538,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_or2, - [158268] = 8, + [157345] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4816), 1, + ACTIONS(1859), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(1414), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(1497), 1, + STATE(4091), 1, sym_path, - STATE(4209), 1, + STATE(4165), 1, sym_comment, - STATE(4863), 1, + STATE(4544), 1, sym_cell_path, - ACTIONS(7489), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7491), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [158303] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7493), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7495), 1, - aux_sym__immediate_decimal_token2, - STATE(4210), 1, - sym_comment, - ACTIONS(1757), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 11, + ACTIONS(1861), 11, anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -373240,17 +371565,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [158334] = 5, - ACTIONS(251), 1, + [157380] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7485), 1, - anon_sym_and2, - ACTIONS(7497), 1, - anon_sym_xor2, - STATE(4211), 1, + STATE(4166), 1, sym_comment, - ACTIONS(7475), 14, + ACTIONS(1774), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373264,13 +371587,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_or2, - [158363] = 3, + aux_sym_unquoted_token2, + [157407] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4212), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4167), 1, sym_comment, - ACTIONS(7475), 16, + ACTIONS(7405), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373283,16 +371608,42 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158388] = 3, + [157434] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4213), 1, + ACTIONS(5862), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7461), 1, + anon_sym_DOT, + STATE(4168), 1, + sym_comment, + ACTIONS(1605), 3, + anon_sym_GT2, + anon_sym_LT2, + anon_sym_DOT2, + ACTIONS(1607), 11, + anon_sym_in2, + anon_sym_QMARK2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [157465] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4160), 1, + aux_sym_shebang_repeat1, + STATE(4169), 1, sym_comment, - ACTIONS(7475), 16, + ACTIONS(7446), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373305,43 +371656,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, - [158413] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2198), 1, - sym__space, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, - STATE(4214), 1, - sym_comment, - ACTIONS(2194), 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, - [158444] = 4, + [157492] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7483), 1, - anon_sym_and2, - STATE(4215), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4170), 1, sym_comment, - ACTIONS(7475), 15, + ACTIONS(7395), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373354,17 +371679,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, - [158471] = 4, + [157519] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4144), 1, + STATE(4167), 1, aux_sym_shebang_repeat1, - STATE(4216), 1, + STATE(4171), 1, sym_comment, - ACTIONS(7458), 15, + ACTIONS(7446), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373380,14 +371705,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158498] = 4, + [157546] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4145), 1, - aux_sym_shebang_repeat1, - STATE(4217), 1, + STATE(4172), 1, sym_comment, - ACTIONS(7458), 15, + ACTIONS(6875), 16, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373400,99 +371723,26 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, + anon_sym_RBRACE, anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [158525] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4218), 1, - sym_comment, - STATE(4605), 1, - sym_cell_path, - ACTIONS(1959), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [158560] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4219), 1, - sym_comment, - STATE(4609), 1, - sym_cell_path, - ACTIONS(1963), 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, - [158595] = 8, - ACTIONS(251), 1, + [157571] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1965), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4220), 1, - sym_comment, - STATE(4630), 1, - sym_cell_path, - ACTIONS(1967), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7463), 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, - [158630] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4221), 1, + ACTIONS(7465), 1, + sym__space, + ACTIONS(7469), 1, + anon_sym_COLON2, + STATE(4173), 1, sym_comment, - ACTIONS(7427), 15, - sym__newline, + STATE(4411), 1, + aux_sym_command_repeat1, + STATE(6091), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7467), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373503,18 +371753,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, - [158657] = 4, + anon_sym_RBRACE, + [157606] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7485), 1, + ACTIONS(7391), 1, anon_sym_and2, - STATE(4222), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4174), 1, sym_comment, - ACTIONS(7475), 15, + ACTIONS(7405), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373527,50 +371776,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, anon_sym_xor2, anon_sym_or2, - [158684] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4223), 1, - sym_comment, - STATE(4687), 1, - sym_cell_path, - ACTIONS(1971), 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, - [158719] = 7, + [157635] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7391), 1, anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - ACTIONS(7501), 1, - anon_sym_or2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4224), 1, + STATE(4175), 1, sym_comment, - ACTIONS(7499), 12, + ACTIONS(7389), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373583,18 +371800,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [158752] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4858), 1, - sym__space, - STATE(4225), 1, + anon_sym_xor2, + anon_sym_or2, + [157664] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7407), 1, + anon_sym_and2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4176), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4860), 13, + ACTIONS(7389), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373607,17 +371824,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, - [158783] = 5, + anon_sym_xor2, + anon_sym_or2, + [157693] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7483), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7487), 1, - anon_sym_xor2, - STATE(4226), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4177), 1, sym_comment, - ACTIONS(7475), 14, + ACTIONS(7405), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373630,20 +371848,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, - [158812] = 6, + [157722] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7421), 1, + ACTIONS(7391), 1, anon_sym_and2, - ACTIONS(7455), 1, - sym__newline, - STATE(4177), 1, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4227), 1, + STATE(4178), 1, sym_comment, - ACTIONS(7458), 13, + ACTIONS(7405), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373655,18 +371874,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, - [158843] = 5, + [157753] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7485), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7497), 1, + ACTIONS(7442), 1, anon_sym_xor2, - STATE(4228), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4179), 1, sym_comment, - ACTIONS(7475), 14, + ACTIONS(7405), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373679,24 +371899,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_or2, - [158872] = 8, + [157784] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1885), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4229), 1, + STATE(4180), 1, sym_comment, - STATE(4704), 1, + STATE(4557), 1, sym_cell_path, - ACTIONS(1975), 11, + ACTIONS(1887), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -373708,20 +371927,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [158907] = 7, - ACTIONS(251), 1, + [157819] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - ACTIONS(7503), 1, - anon_sym_or2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4230), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4898), 1, + sym__space, + STATE(4181), 1, sym_comment, - ACTIONS(7499), 12, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4900), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373734,18 +371951,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [158940] = 6, + anon_sym_RBRACE, + [157850] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, + ACTIONS(4811), 1, sym__space, - STATE(4231), 1, + STATE(4182), 1, sym_comment, - ACTIONS(2245), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4813), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373759,45 +371977,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [158971] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4232), 1, - sym_comment, - STATE(4951), 1, - sym_cell_path, - ACTIONS(1939), 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, - [159006] = 6, + [157881] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7408), 1, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7455), 1, + ACTIONS(7471), 1, sym__newline, - STATE(4178), 1, + STATE(4174), 1, aux_sym_shebang_repeat1, - STATE(4233), 1, + STATE(4183), 1, sym_comment, - ACTIONS(7458), 13, + ACTIONS(7446), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373811,74 +372002,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [159037] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4234), 1, - sym_comment, - STATE(4597), 1, - sym_cell_path, - ACTIONS(1979), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [159072] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4235), 1, - sym_comment, - STATE(4666), 1, - sym_cell_path, - ACTIONS(1935), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [159107] = 7, + [157912] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7421), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7453), 1, - anon_sym_xor2, - STATE(4184), 1, + ACTIONS(7471), 1, + sym__newline, + STATE(4177), 1, aux_sym_shebang_repeat1, - STATE(4236), 1, + STATE(4184), 1, sym_comment, - ACTIONS(7458), 12, + ACTIONS(7446), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373890,23 +372025,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, - [159140] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7453), 1, anon_sym_xor2, - ACTIONS(7468), 1, anon_sym_or2, - STATE(4237), 1, + [157943] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(7476), 1, + sym__space, + STATE(4185), 1, sym_comment, - STATE(4248), 1, - aux_sym_shebang_repeat1, - ACTIONS(7505), 11, + STATE(7253), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7474), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373918,22 +372051,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159175] = 8, + anon_sym_RBRACE, + [157974] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - ACTIONS(7477), 1, - anon_sym_or2, - STATE(4238), 1, - sym_comment, - STATE(4252), 1, + STATE(4170), 1, aux_sym_shebang_repeat1, - ACTIONS(7505), 11, + STATE(4186), 1, + sym_comment, + ACTIONS(7430), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373945,18 +372072,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159210] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7425), 1, anon_sym_and2, - ACTIONS(7449), 1, anon_sym_xor2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4239), 1, + anon_sym_or2, + [158001] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4815), 1, + sym__space, + STATE(4187), 1, sym_comment, - ACTIONS(7427), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4817), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -373969,21 +372099,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, - [159241] = 7, - ACTIONS(251), 1, + anon_sym_RBRACE, + [158032] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7410), 1, - anon_sym_xor2, - STATE(4185), 1, - aux_sym_shebang_repeat1, - STATE(4240), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4827), 1, + sym__space, + STATE(4188), 1, sym_comment, - ACTIONS(7458), 12, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4829), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -373995,15 +372124,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, - [159274] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [158063] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4241), 1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + sym__space, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(4189), 1, sym_comment, - ACTIONS(7429), 15, + ACTIONS(2226), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374016,21 +372149,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, - [159301] = 6, + anon_sym_RBRACE, + [158094] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1727), 1, + ACTIONS(1000), 1, sym__space, - ACTIONS(7129), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7507), 1, - anon_sym_DOT, - STATE(4242), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(4190), 1, sym_comment, - ACTIONS(1725), 13, + ACTIONS(1004), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374044,22 +372175,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159332] = 8, + [158125] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1981), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4191), 1, + sym_comment, + ACTIONS(7409), 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, + [158152] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2028), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4243), 1, + STATE(4192), 1, sym_comment, - STATE(4602), 1, + STATE(4938), 1, sym_cell_path, - ACTIONS(1983), 11, + ACTIONS(2030), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -374071,18 +372225,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [159367] = 6, - ACTIONS(3), 1, + [158187] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__space, - STATE(4244), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4193), 1, sym_comment, - ACTIONS(1786), 13, + ACTIONS(7395), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374095,15 +372245,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, - [159398] = 4, - ACTIONS(251), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158214] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4245), 1, + ACTIONS(7377), 1, + aux_sym__immediate_decimal_token2, + STATE(4194), 1, sym_comment, - ACTIONS(7429), 15, + ACTIONS(1751), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1749), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374115,18 +372271,15 @@ static const uint16_t ts_small_parse_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, - [159425] = 4, + aux_sym_unquoted_token2, + [158243] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4246), 1, + STATE(4195), 1, sym_comment, - ACTIONS(7427), 15, + ACTIONS(7409), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374142,15 +372295,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [159452] = 4, + [158270] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4247), 1, - sym_comment, - STATE(4254), 1, - aux_sym_shebang_repeat1, - ACTIONS(7458), 15, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7471), 1, sym__newline, + STATE(4100), 1, + aux_sym_shebang_repeat1, + STATE(4196), 1, + sym_comment, + ACTIONS(7446), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374162,23 +372318,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, - [159479] = 7, + [158301] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - ACTIONS(7501), 1, - anon_sym_or2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4248), 1, + STATE(4197), 1, sym_comment, - ACTIONS(7509), 12, + STATE(4230), 1, + aux_sym_shebang_repeat1, + ACTIONS(7478), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374191,17 +372340,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159512] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158328] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4249), 1, + ACTIONS(7480), 1, + anon_sym_DOT_DOT2, + STATE(4198), 1, sym_comment, - ACTIONS(1020), 4, + ACTIONS(1000), 2, ts_builtin_sym_end, sym__space, + ACTIONS(7482), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1018), 12, + ACTIONS(1004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374213,23 +372368,15 @@ static const uint16_t 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, - [159539] = 8, - ACTIONS(3), 1, + [158359] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7511), 1, - sym__newline, - ACTIONS(7513), 1, - sym__space, - ACTIONS(7517), 1, - anon_sym_COLON2, - STATE(4250), 1, + STATE(4199), 1, sym_comment, - STATE(4405), 1, - aux_sym_command_repeat1, - STATE(6583), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7515), 11, + STATE(4231), 1, + aux_sym_shebang_repeat1, + ACTIONS(7478), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374240,16 +372387,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, - [159574] = 4, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158386] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4251), 1, + STATE(4200), 1, sym_comment, - ACTIONS(1863), 2, + ACTIONS(1751), 2, sym__space, anon_sym_LPAREN2, - ACTIONS(1861), 14, + ACTIONS(1749), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374264,21 +372414,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_RBRACE, aux_sym_unquoted_token2, - [159601] = 7, + [158413] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, + ACTIONS(7432), 1, anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - ACTIONS(7503), 1, - anon_sym_or2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4252), 1, - sym_comment, - ACTIONS(7509), 12, + ACTIONS(7484), 1, sym__newline, + STATE(4201), 1, + sym_comment, + STATE(4283), 1, + aux_sym_shebang_repeat1, + ACTIONS(7478), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374290,42 +372437,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [159634] = 8, + anon_sym_xor2, + anon_sym_or2, + [158444] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1985), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4253), 1, - sym_comment, - STATE(4622), 1, - sym_cell_path, - ACTIONS(1987), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7484), 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, - [159669] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4254), 1, + STATE(4202), 1, sym_comment, - ACTIONS(7460), 15, - sym__newline, + STATE(4205), 1, + aux_sym_shebang_repeat1, + ACTIONS(7478), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374337,71 +372462,70 @@ static 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, - [159696] = 8, + [158475] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1989), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4255), 1, + ACTIONS(7407), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4203), 1, sym_comment, - STATE(4773), 1, - sym_cell_path, - ACTIONS(1991), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7389), 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, - [159731] = 8, + anon_sym_or2, + [158506] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(4831), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(1403), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(1531), 1, sym_path, - STATE(4256), 1, + STATE(4204), 1, sym_comment, - STATE(4660), 1, + STATE(4854), 1, sym_cell_path, - ACTIONS(1995), 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, - [159766] = 4, + ACTIONS(7487), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7489), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [158541] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, + ACTIONS(7407), 1, + anon_sym_and2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4257), 1, + STATE(4205), 1, sym_comment, - ACTIONS(7460), 15, + ACTIONS(7389), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374414,18 +372538,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, - [159793] = 4, + [158570] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4221), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + STATE(4095), 1, aux_sym_shebang_repeat1, - STATE(4258), 1, + STATE(4206), 1, sym_comment, - ACTIONS(7406), 15, - sym__newline, + ACTIONS(7478), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374437,21 +372565,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, - [159820] = 4, - ACTIONS(3), 1, + [158603] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4259), 1, - sym_comment, - ACTIONS(2118), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2116), 12, + ACTIONS(3800), 1, sym__newline, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7419), 1, + anon_sym_xor2, + STATE(4203), 1, + aux_sym_shebang_repeat1, + STATE(4207), 1, + sym_comment, + ACTIONS(7478), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374462,21 +372590,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, - [159847] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_or2, + [158636] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7519), 1, - anon_sym_DOT_DOT2, - STATE(4260), 1, + STATE(4208), 1, sym_comment, - ACTIONS(2150), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7521), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2144), 11, + STATE(4279), 1, + aux_sym_shebang_repeat1, + ACTIONS(7430), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374488,22 +372611,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, - [159878] = 8, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [158663] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7511), 1, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7471), 1, sym__newline, - ACTIONS(7513), 1, - sym__space, - ACTIONS(7523), 1, - anon_sym_COLON2, - STATE(4261), 1, + STATE(4209), 1, sym_comment, - STATE(4405), 1, - aux_sym_command_repeat1, - STATE(6336), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7515), 11, + STATE(4249), 1, + aux_sym_shebang_repeat1, + ACTIONS(7446), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374514,18 +372637,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, - [159913] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [158694] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4262), 1, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4210), 1, sym_comment, - ACTIONS(2122), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2120), 12, + ACTIONS(7405), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374537,19 +372663,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, - [159940] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7483), 1, - anon_sym_and2, - ACTIONS(7487), 1, - anon_sym_xor2, - ACTIONS(7527), 1, + anon_sym_RPAREN, anon_sym_or2, - STATE(4263), 1, + [158725] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4211), 1, sym_comment, - ACTIONS(7525), 13, + ACTIONS(1819), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1817), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374563,14 +372687,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [159971] = 4, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [158752] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4113), 1, - aux_sym_shebang_repeat1, - STATE(4264), 1, + STATE(4212), 1, sym_comment, - ACTIONS(7419), 15, + ACTIONS(1020), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1018), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374582,23 +372710,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, - [159998] = 6, + anon_sym_DOT_DOT2, + [158779] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1873), 1, + ACTIONS(7463), 1, + sym__newline, + ACTIONS(7465), 1, sym__space, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(4265), 1, + ACTIONS(7491), 1, + anon_sym_COLON2, + STATE(4213), 1, sym_comment, - ACTIONS(1865), 13, - sym__newline, + STATE(4411), 1, + aux_sym_command_repeat1, + STATE(6089), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7467), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374609,17 +372737,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, - [160029] = 4, + [158814] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4246), 1, - aux_sym_shebang_repeat1, - STATE(4266), 1, - sym_comment, - ACTIONS(7406), 15, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7458), 1, sym__newline, + STATE(4214), 1, + sym_comment, + STATE(4260), 1, + aux_sym_shebang_repeat1, + ACTIONS(7438), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -374631,17 +372761,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, - [160056] = 4, + [158845] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4114), 1, + ACTIONS(7391), 1, + anon_sym_and2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4267), 1, + STATE(4215), 1, sym_comment, - ACTIONS(7419), 15, + ACTIONS(7395), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374654,23 +372785,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, - [160083] = 6, - ACTIONS(3), 1, + [158874] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7529), 1, - anon_sym_DOT_DOT2, - STATE(4268), 1, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + ACTIONS(7495), 1, + anon_sym_or2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4216), 1, sym_comment, - ACTIONS(2158), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7531), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2152), 11, + ACTIONS(7493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374682,16 +372812,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, - [160114] = 5, + anon_sym_RPAREN, + [158907] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7407), 1, anon_sym_and2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4269), 1, + STATE(4217), 1, sym_comment, - ACTIONS(7429), 14, + ACTIONS(7395), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374706,16 +372837,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [160143] = 5, - ACTIONS(251), 1, + [158936] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7423), 1, - anon_sym_and2, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4270), 1, + STATE(4218), 1, sym_comment, - ACTIONS(7460), 14, + ACTIONS(1733), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1731), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374728,47 +372858,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, - [160172] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4816), 1, - anon_sym_DOT2, - STATE(1400), 1, - sym_cell_path, - STATE(1414), 1, - aux_sym_cell_path_repeat1, - STATE(1497), 1, - sym_path, - STATE(4271), 1, - sym_comment, - ACTIONS(935), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(937), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [160207] = 6, + anon_sym_RBRACE, + aux_sym_unquoted_token2, + [158963] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7485), 1, + ACTIONS(7391), 1, anon_sym_and2, - ACTIONS(7497), 1, + ACTIONS(7393), 1, anon_sym_xor2, - ACTIONS(7533), 1, - anon_sym_or2, - STATE(4272), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4219), 1, sym_comment, - ACTIONS(7525), 13, + ACTIONS(7389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374781,13 +372884,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, - [160238] = 3, - ACTIONS(251), 1, + anon_sym_or2, + [158994] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4273), 1, + ACTIONS(7497), 1, + aux_sym__immediate_decimal_token2, + STATE(4220), 1, sym_comment, - ACTIONS(6886), 16, + ACTIONS(1774), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374799,50 +372908,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, - [160263] = 8, + aux_sym_unquoted_token2, + [159023] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4274), 1, - sym_comment, - STATE(4593), 1, - sym_cell_path, - ACTIONS(1999), 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, - [160298] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(7537), 1, - sym__space, - STATE(4275), 1, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4221), 1, sym_comment, - STATE(7308), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7535), 13, + ACTIONS(7395), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374855,71 +372933,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, - [160329] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4276), 1, - sym_comment, - STATE(4595), 1, - sym_cell_path, - ACTIONS(2003), 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, - [160364] = 8, + anon_sym_or2, + [159054] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4277), 1, + STATE(4152), 1, + aux_sym_shebang_repeat1, + STATE(4222), 1, sym_comment, - STATE(4607), 1, - sym_cell_path, - ACTIONS(2007), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7478), 15, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [160399] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159081] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, - anon_sym_and2, - STATE(1706), 1, + STATE(4154), 1, aux_sym_shebang_repeat1, - STATE(4278), 1, + STATE(4223), 1, sym_comment, - ACTIONS(7429), 14, + ACTIONS(7478), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374932,17 +372977,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, - [160428] = 4, - ACTIONS(3), 1, + [159108] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4279), 1, + STATE(4096), 1, + aux_sym_shebang_repeat1, + STATE(4224), 1, sym_comment, - ACTIONS(1767), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1765), 14, + ACTIONS(7430), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374955,18 +373000,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, - aux_sym_unquoted_token2, - [160455] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159135] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, + ACTIONS(7407), 1, anon_sym_and2, - STATE(1706), 1, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4280), 1, + STATE(4225), 1, sym_comment, - ACTIONS(7460), 14, + ACTIONS(7389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -374979,24 +373027,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, - [160484] = 8, + [159166] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2009), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4281), 1, + STATE(4226), 1, sym_comment, - STATE(4627), 1, + STATE(4722), 1, sym_cell_path, - ACTIONS(2011), 11, + ACTIONS(1881), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375008,49 +373055,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160519] = 6, + [159201] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7421), 1, - anon_sym_and2, - ACTIONS(7472), 1, - sym__newline, - STATE(4119), 1, - aux_sym_shebang_repeat1, - STATE(4282), 1, + ACTIONS(7499), 1, + anon_sym_DOT, + ACTIONS(7501), 1, + aux_sym__immediate_decimal_token2, + STATE(4227), 1, sym_comment, - ACTIONS(7406), 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, - [160550] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(1749), 3, + sym_identifier, anon_sym_DASH2, - ACTIONS(7192), 1, - anon_sym_DOT2, - STATE(4013), 1, - aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(4283), 1, - sym_comment, - STATE(4950), 1, - sym_cell_path, - ACTIONS(1927), 11, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 11, anon_sym_EQ, - sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, @@ -375060,18 +373079,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160585] = 6, - ACTIONS(3), 1, + anon_sym_LPAREN2, + [159232] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4888), 1, - sym__space, - ACTIONS(7539), 1, - sym_long_flag_identifier, - ACTIONS(7541), 1, - anon_sym_EQ2, - STATE(4284), 1, + ACTIONS(7391), 1, + anon_sym_and2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4228), 1, sym_comment, - ACTIONS(4890), 13, + ACTIONS(7409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375084,23 +373102,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, - [160616] = 8, + anon_sym_xor2, + anon_sym_or2, + [159261] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(2008), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4285), 1, + STATE(4229), 1, sym_comment, - STATE(4665), 1, + STATE(4937), 1, sym_cell_path, - ACTIONS(2091), 11, + ACTIONS(2010), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375112,18 +373131,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160651] = 6, - ACTIONS(3), 1, + [159296] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4846), 1, - sym__space, - STATE(4286), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4230), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4848), 13, + ACTIONS(7389), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375136,15 +373151,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, - [160682] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [159323] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4257), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4287), 1, + STATE(4231), 1, sym_comment, - ACTIONS(7458), 15, + ACTIONS(7389), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375160,19 +373177,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_and2, anon_sym_xor2, anon_sym_or2, - [160709] = 6, - ACTIONS(3), 1, + [159350] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4850), 1, - sym__space, - STATE(4288), 1, - sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4852), 13, + ACTIONS(3800), 1, sym__newline, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + ACTIONS(7503), 1, + anon_sym_or2, + STATE(4216), 1, + aux_sym_shebang_repeat1, + STATE(4232), 1, + sym_comment, + ACTIONS(7415), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375184,19 +373204,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, - [160740] = 6, + [159385] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7408), 1, - anon_sym_and2, - ACTIONS(7472), 1, + ACTIONS(3800), 1, sym__newline, - STATE(4120), 1, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + STATE(4178), 1, aux_sym_shebang_repeat1, - STATE(4289), 1, + STATE(4233), 1, sym_comment, - ACTIONS(7406), 13, + ACTIONS(7446), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375208,74 +373229,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_xor2, anon_sym_or2, - [160771] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7543), 1, - anon_sym_DOT_DOT2, - STATE(4290), 1, - sym_comment, - ACTIONS(2166), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7545), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2160), 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, - [160802] = 6, - ACTIONS(3), 1, + [159418] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4862), 1, - sym__space, - STATE(4291), 1, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4234), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4864), 13, + STATE(4660), 1, + sym_cell_path, + ACTIONS(1895), 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, - [160833] = 8, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [159453] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1901), 1, anon_sym_DASH2, - ACTIONS(7192), 1, + ACTIONS(7211), 1, anon_sym_DOT2, - STATE(4013), 1, + STATE(3969), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4292), 1, + STATE(4235), 1, sym_comment, - STATE(4563), 1, + STATE(4555), 1, sym_cell_path, - ACTIONS(1947), 11, + ACTIONS(1903), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375287,18 +373284,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [160868] = 6, + [159488] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7423), 1, + ACTIONS(7407), 1, anon_sym_and2, - ACTIONS(7431), 1, - anon_sym_xor2, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4293), 1, + STATE(4236), 1, sym_comment, - ACTIONS(7460), 13, + ACTIONS(7409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375311,19 +373306,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, - [160899] = 4, - ACTIONS(3), 1, + [159517] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4294), 1, - sym_comment, - ACTIONS(2104), 4, - ts_builtin_sym_end, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2102), 12, + ACTIONS(7427), 1, sym__newline, + ACTIONS(7432), 1, + anon_sym_and2, + STATE(4108), 1, + aux_sym_shebang_repeat1, + STATE(4237), 1, + sym_comment, + ACTIONS(7430), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375334,17 +373330,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, - [160926] = 4, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [159548] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, - STATE(4295), 1, - sym_comment, - ACTIONS(1693), 15, - ts_builtin_sym_end, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7458), 1, sym__newline, + STATE(4101), 1, + aux_sym_shebang_repeat1, + STATE(4238), 1, + sym_comment, + ACTIONS(7438), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375355,22 +373355,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, + anon_sym_RPAREN, anon_sym_xor2, anon_sym_or2, - [160953] = 6, + [159579] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4831), 1, + anon_sym_DOT2, + STATE(1403), 1, + aux_sym_cell_path_repeat1, + STATE(1531), 1, + sym_path, + STATE(4239), 1, + sym_comment, + STATE(4850), 1, + sym_cell_path, + ACTIONS(7505), 2, + anon_sym_GT2, + anon_sym_LT2, + ACTIONS(7507), 10, + anon_sym_in2, + anon_sym_not_DASHin2, + anon_sym_starts_DASHwith2, + anon_sym_ends_DASHwith2, + anon_sym_EQ_EQ2, + anon_sym_BANG_EQ2, + anon_sym_LT_EQ2, + anon_sym_GT_EQ2, + anon_sym_EQ_TILDE2, + anon_sym_BANG_TILDE2, + [159614] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7425), 1, + ACTIONS(7417), 1, anon_sym_and2, - ACTIONS(7449), 1, - anon_sym_xor2, - STATE(1706), 1, + ACTIONS(7427), 1, + sym__newline, + STATE(4109), 1, aux_sym_shebang_repeat1, - STATE(4296), 1, + STATE(4240), 1, sym_comment, - ACTIONS(7460), 13, - sym__newline, + ACTIONS(7430), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375382,19 +373408,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, - [160984] = 6, + [159645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4878), 1, - sym__space, - ACTIONS(7547), 1, - anon_sym_EQ2, - ACTIONS(7549), 1, - sym_short_flag_identifier, - STATE(4297), 1, + STATE(4241), 1, sym_comment, - ACTIONS(4880), 13, + ACTIONS(2037), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2035), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375406,48 +373432,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, - [161015] = 8, + anon_sym_DOT_DOT2, + [159672] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4816), 1, - anon_sym_DOT2, - STATE(1414), 1, - aux_sym_cell_path_repeat1, - STATE(1497), 1, - sym_path, - STATE(4298), 1, - sym_comment, - STATE(4867), 1, - sym_cell_path, - ACTIONS(7551), 2, - anon_sym_GT2, - anon_sym_LT2, - ACTIONS(7553), 10, - anon_sym_in2, - anon_sym_not_DASHin2, - anon_sym_starts_DASHwith2, - anon_sym_ends_DASHwith2, - anon_sym_EQ_EQ2, - anon_sym_BANG_EQ2, - anon_sym_LT_EQ2, - anon_sym_GT_EQ2, - anon_sym_EQ_TILDE2, - anon_sym_BANG_TILDE2, - [161050] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(2186), 1, - sym__space, - STATE(4299), 1, - sym_comment, - ACTIONS(2184), 13, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7484), 1, sym__newline, + STATE(4175), 1, + aux_sym_shebang_repeat1, + STATE(4242), 1, + sym_comment, + ACTIONS(7478), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375459,18 +373456,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, - [161081] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7555), 1, - anon_sym_and2, - ACTIONS(7557), 1, anon_sym_xor2, - STATE(4300), 1, + anon_sym_or2, + [159703] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__space, + STATE(4243), 1, sym_comment, - ACTIONS(7475), 13, - ts_builtin_sym_end, + ACTIONS(1805), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375482,16 +373481,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, - [161109] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159734] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7555), 1, - anon_sym_and2, - STATE(4301), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4244), 1, sym_comment, - ACTIONS(7475), 14, - ts_builtin_sym_end, + ACTIONS(7405), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375503,18 +373502,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, - [161135] = 5, - ACTIONS(3), 1, + [159761] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7561), 1, - sym__space, - STATE(4302), 1, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4245), 1, sym_comment, - STATE(4361), 1, - aux_sym_command_repeat1, - ACTIONS(7559), 13, + ACTIONS(7409), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375527,77 +373530,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, - [161163] = 17, + anon_sym_or2, + [159792] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, + ACTIONS(7511), 1, + anon_sym_EQ, + ACTIONS(7514), 1, sym__newline, - ACTIONS(7567), 1, - anon_sym_RBRACK, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, + ACTIONS(7517), 1, + anon_sym_COLON, + ACTIONS(7520), 1, anon_sym_DASH2, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4303), 1, - sym_comment, - STATE(4340), 1, + STATE(6524), 1, aux_sym_shebang_repeat1, - STATE(4558), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [161215] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4304), 1, + STATE(4246), 2, sym_comment, - ACTIONS(2120), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2122), 13, - anon_sym_EQ, + aux_sym_parameter_repeat1, + STATE(4826), 2, + sym_param_type, + sym_param_value, + ACTIONS(7509), 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, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [161241] = 6, - ACTIONS(3), 1, + [159829] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7577), 1, - sym_long_flag_identifier, - ACTIONS(7579), 1, - anon_sym_EQ2, - STATE(4305), 1, + ACTIONS(7407), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4247), 1, sym_comment, - ACTIONS(4888), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4890), 11, + ACTIONS(7409), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375609,14 +373582,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, - [161271] = 3, + anon_sym_RPAREN, + anon_sym_or2, + [159860] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4306), 1, - sym_comment, - ACTIONS(7194), 15, - ts_builtin_sym_end, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7484), 1, sym__newline, + STATE(4176), 1, + aux_sym_shebang_repeat1, + STATE(4248), 1, + sym_comment, + ACTIONS(7478), 13, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375627,18 +373606,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, - [161295] = 4, + [159891] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7581), 1, + ACTIONS(7391), 1, anon_sym_and2, - STATE(4307), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4249), 1, sym_comment, - ACTIONS(7475), 14, - ts_builtin_sym_end, + ACTIONS(7405), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375650,21 +373630,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, - [161321] = 6, + [159920] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7581), 1, + ACTIONS(7444), 1, anon_sym_and2, - ACTIONS(7583), 1, + ACTIONS(7450), 1, anon_sym_xor2, - ACTIONS(7585), 1, + ACTIONS(7522), 1, anon_sym_or2, - STATE(4308), 1, + STATE(4250), 1, sym_comment, - ACTIONS(7525), 12, - ts_builtin_sym_end, + ACTIONS(7454), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375676,19 +373656,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, - [161351] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [159951] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2170), 1, + ACTIONS(1968), 1, anon_sym_DASH2, - ACTIONS(7587), 1, - anon_sym_DOT_DOT2, - STATE(4309), 1, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4251), 1, sym_comment, - ACTIONS(7589), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 11, + STATE(4540), 1, + sym_cell_path, + ACTIONS(1970), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -375700,19 +373685,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161381] = 6, - ACTIONS(3), 1, + [159986] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4310), 1, + ACTIONS(1986), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4252), 1, sym_comment, - ACTIONS(2247), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2245), 11, + STATE(4556), 1, + sym_cell_path, + ACTIONS(1988), 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, + [160021] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4193), 1, + aux_sym_shebang_repeat1, + STATE(4253), 1, + sym_comment, + ACTIONS(7430), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375724,16 +373731,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, - [161411] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160048] = 7, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4311), 1, + ACTIONS(7407), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + ACTIONS(7524), 1, + anon_sym_or2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4254), 1, sym_comment, - ACTIONS(1759), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1757), 12, + ACTIONS(7493), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375745,61 +373760,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [161437] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7464), 1, - aux_sym__immediate_decimal_token2, - STATE(4312), 1, - sym_comment, - ACTIONS(1725), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 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, - [161465] = 6, - ACTIONS(251), 1, + [160081] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7591), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7593), 1, - aux_sym__immediate_decimal_token2, - STATE(4313), 1, + STATE(4255), 1, sym_comment, - ACTIONS(1595), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, + ACTIONS(1759), 4, + ts_builtin_sym_end, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161495] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4314), 1, - sym_comment, - ACTIONS(7259), 15, - ts_builtin_sym_end, + ACTIONS(1757), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375811,18 +373783,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, - [161519] = 4, + anon_sym_DOT_DOT2, + [160108] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4315), 1, - sym_comment, - ACTIONS(4996), 2, - sym__space, + ACTIONS(2182), 1, anon_sym_LPAREN2, - ACTIONS(4998), 13, + ACTIONS(2184), 1, + sym__space, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(4256), 1, + sym_comment, + ACTIONS(2180), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375836,14 +373809,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [161545] = 3, + [160139] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4316), 1, - sym_comment, - ACTIONS(7194), 15, - ts_builtin_sym_end, + ACTIONS(3800), 1, sym__newline, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + STATE(4219), 1, + aux_sym_shebang_repeat1, + STATE(4257), 1, + sym_comment, + ACTIONS(7478), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375854,17 +373833,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, - [161569] = 3, + [160172] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4317), 1, - sym_comment, - ACTIONS(6886), 15, - ts_builtin_sym_end, + ACTIONS(3800), 1, sym__newline, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7419), 1, + anon_sym_xor2, + STATE(4225), 1, + aux_sym_shebang_repeat1, + STATE(4258), 1, + sym_comment, + ACTIONS(7478), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375875,43 +373859,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_RPAREN, anon_sym_or2, - [161593] = 5, + [160205] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7595), 1, - aux_sym__immediate_decimal_token2, - STATE(4318), 1, - sym_comment, - ACTIONS(1765), 3, - sym_identifier, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 11, - anon_sym_EQ, + ACTIONS(3800), 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, - [161621] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4319), 1, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + ACTIONS(7503), 1, + anon_sym_or2, + STATE(4259), 1, sym_comment, - ACTIONS(1727), 3, - ts_builtin_sym_end, - sym__space, - anon_sym_LPAREN2, - ACTIONS(1725), 12, - sym__newline, + STATE(4263), 1, + aux_sym_shebang_repeat1, + ACTIONS(7526), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -375922,20 +373887,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, - aux_sym_unquoted_token2, - [161647] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + [160240] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(4320), 1, + ACTIONS(7391), 1, + anon_sym_and2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4260), 1, sym_comment, - STATE(7344), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7537), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7535), 11, + ACTIONS(7409), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -375947,46 +373909,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, - [161677] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7597), 1, - anon_sym_DOT, - ACTIONS(7599), 1, - aux_sym__immediate_decimal_token2, - STATE(4321), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 10, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [161707] = 7, + anon_sym_xor2, + anon_sym_or2, + [160269] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7601), 1, + ACTIONS(3800), 1, sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4322), 1, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7419), 1, + anon_sym_xor2, + STATE(4261), 1, sym_comment, - STATE(5022), 1, + STATE(4274), 1, aux_sym_shebang_repeat1, - ACTIONS(7604), 3, + ACTIONS(7446), 12, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2519), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -375996,43 +373936,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, - [161739] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2144), 1, - anon_sym_DASH2, - ACTIONS(7606), 1, - anon_sym_DOT_DOT2, - STATE(4323), 1, - sym_comment, - ACTIONS(7608), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2150), 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, - [161769] = 6, + anon_sym_or2, + [160302] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(1998), 1, anon_sym_DASH2, - ACTIONS(7610), 1, - anon_sym_DOT_DOT2, - STATE(4324), 1, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4262), 1, sym_comment, - ACTIONS(7612), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(2158), 11, + STATE(4539), 1, + sym_cell_path, + ACTIONS(2000), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376044,96 +373965,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [161799] = 4, + [160337] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(4325), 1, + ACTIONS(7391), 1, + anon_sym_and2, + ACTIONS(7393), 1, + anon_sym_xor2, + ACTIONS(7495), 1, + anon_sym_or2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4263), 1, sym_comment, - ACTIONS(2102), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2104), 13, - anon_sym_EQ, - sym_identifier, + ACTIONS(7528), 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, - [161825] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, - sym__newline, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7614), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4326), 1, - sym_comment, - STATE(4383), 1, - aux_sym_shebang_repeat1, - STATE(4675), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [161877] = 6, - ACTIONS(251), 1, + [160370] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2160), 1, - anon_sym_DASH2, - ACTIONS(7616), 1, + ACTIONS(7530), 1, anon_sym_DOT_DOT2, - STATE(4327), 1, + STATE(4264), 1, sym_comment, - ACTIONS(7618), 2, + ACTIONS(2053), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7532), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 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, - [161907] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7555), 1, - anon_sym_and2, - STATE(4328), 1, - sym_comment, - ACTIONS(7475), 14, - ts_builtin_sym_end, + ACTIONS(2047), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376145,18 +374016,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, - [161933] = 5, + [160401] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7561), 1, - sym__space, - STATE(4329), 1, + ACTIONS(7534), 1, + anon_sym_DOT_DOT2, + STATE(4265), 1, sym_comment, - STATE(4359), 1, - aux_sym_command_repeat1, - ACTIONS(7515), 13, + ACTIONS(2086), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7536), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2080), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376168,56 +374041,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, - [161961] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, - sym__newline, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7620), 1, - anon_sym_RPAREN, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4330), 1, - sym_comment, - STATE(4350), 1, - aux_sym_shebang_repeat1, - STATE(4632), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [162013] = 6, + [160432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(4331), 1, + ACTIONS(7538), 1, + anon_sym_DOT_DOT2, + STATE(4266), 1, sym_comment, - ACTIONS(2233), 2, + ACTIONS(2078), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2229), 11, + ACTIONS(7540), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2072), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376229,16 +374066,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, - [162043] = 5, - ACTIONS(3), 1, + [160463] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1693), 1, - sym__space, - ACTIONS(7060), 1, - aux_sym_unquoted_token2, - STATE(4332), 1, + ACTIONS(7407), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + ACTIONS(7524), 1, + anon_sym_or2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4267), 1, sym_comment, - ACTIONS(1681), 13, + ACTIONS(7528), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376251,16 +374092,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, - [162071] = 4, - ACTIONS(251), 1, + [160496] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7581), 1, - anon_sym_and2, - STATE(4333), 1, + ACTIONS(7480), 1, + anon_sym_DOT_DOT2, + STATE(4268), 1, sym_comment, - ACTIONS(7475), 14, + ACTIONS(7333), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(7482), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7331), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376272,49 +374117,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_xor2, - anon_sym_or2, - [162097] = 17, + [160527] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7622), 1, - anon_sym_PIPE, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4334), 1, - sym_comment, - STATE(4352), 1, + ACTIONS(7417), 1, + anon_sym_and2, + ACTIONS(7419), 1, + anon_sym_xor2, + ACTIONS(7421), 1, + anon_sym_or2, + STATE(4267), 1, aux_sym_shebang_repeat1, - STATE(4560), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [162149] = 3, - ACTIONS(251), 1, + STATE(4269), 1, + sym_comment, + ACTIONS(7526), 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, + [160562] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4335), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + ACTIONS(2174), 1, + sym__space, + STATE(4270), 1, sym_comment, - ACTIONS(7624), 15, + ACTIONS(2170), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376327,22 +374168,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_else, anon_sym_RBRACE, - anon_sym_catch, - [162173] = 6, - ACTIONS(3), 1, + [160593] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7161), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(7626), 1, - anon_sym_DOT, - STATE(4336), 1, + STATE(4106), 1, + aux_sym_shebang_repeat1, + STATE(4271), 1, sym_comment, - ACTIONS(1727), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1725), 11, + ACTIONS(7446), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376354,20 +374188,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, - [162203] = 6, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [160620] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - STATE(4337), 1, - sym_comment, - ACTIONS(2192), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2188), 11, + ACTIONS(3800), 1, sym__newline, + ACTIONS(7432), 1, + anon_sym_and2, + ACTIONS(7440), 1, + anon_sym_xor2, + STATE(4117), 1, + aux_sym_shebang_repeat1, + STATE(4272), 1, + sym_comment, + ACTIONS(7430), 12, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -376378,51 +374216,76 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [162233] = 14, + anon_sym_RPAREN, + anon_sym_or2, + [160653] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7628), 1, + ACTIONS(1831), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4273), 1, + sym_comment, + STATE(4665), 1, + sym_cell_path, + ACTIONS(1833), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7633), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7636), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7639), 1, anon_sym_DASH_DASH, - ACTIONS(7642), 1, - anon_sym_DASH2, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - STATE(4338), 2, + [160688] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7407), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4274), 1, sym_comment, - aux_sym_parameter_parens_repeat1, - ACTIONS(7631), 3, + ACTIONS(7405), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [162279] = 6, + anon_sym_or2, + [160719] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7647), 1, + ACTIONS(1835), 1, anon_sym_DASH2, - ACTIONS(7649), 1, - anon_sym_DOT_DOT2, - STATE(4339), 1, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4275), 1, sym_comment, - ACTIONS(7651), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7645), 11, + STATE(4609), 1, + sym_cell_path, + ACTIONS(1837), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376434,57 +374297,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162309] = 17, + [160754] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(1839), 1, + anon_sym_DASH2, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4276), 1, + sym_comment, + STATE(4637), 1, + sym_cell_path, + ACTIONS(1841), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7565), 1, sym__newline, - ACTIONS(7569), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7653), 1, - anon_sym_RBRACK, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4340), 1, - sym_comment, - STATE(4794), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5059), 1, - aux_sym_shebang_repeat1, - STATE(5284), 1, - sym_parameter, - [162361] = 7, + [160789] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4341), 1, - sym_comment, - STATE(5022), 1, + ACTIONS(7407), 1, + anon_sym_and2, + ACTIONS(7442), 1, + anon_sym_xor2, + STATE(1711), 1, aux_sym_shebang_repeat1, - ACTIONS(7658), 3, + STATE(4277), 1, + sym_comment, + ACTIONS(7395), 13, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - ACTIONS(2519), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -376494,12 +374347,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, - [162393] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_or2, + [160820] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4342), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(2190), 1, + sym__space, + STATE(4278), 1, sym_comment, - ACTIONS(5009), 15, + ACTIONS(2188), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376512,53 +374373,71 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_else, anon_sym_RBRACE, - anon_sym_catch, - [162417] = 17, + [160851] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4279), 1, + sym_comment, + ACTIONS(7395), 15, sym__newline, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7660), 1, - anon_sym_RBRACK, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4343), 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, + [160878] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + sym__space, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(4280), 1, sym_comment, - STATE(4362), 1, - aux_sym_shebang_repeat1, - STATE(4691), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [162469] = 4, + ACTIONS(1793), 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, + [160909] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(4344), 1, - sym_comment, - ACTIONS(1018), 2, + ACTIONS(1843), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(1020), 13, + ACTIONS(7211), 1, + anon_sym_DOT2, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(4281), 1, + sym_comment, + STATE(4659), 1, + sym_cell_path, + ACTIONS(1845), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -376570,19 +374449,14 @@ 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, - [162495] = 5, + [160944] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7581), 1, - anon_sym_and2, - ACTIONS(7583), 1, - anon_sym_xor2, - STATE(4345), 1, + STATE(4244), 1, + aux_sym_shebang_repeat1, + STATE(4282), 1, sym_comment, - ACTIONS(7475), 13, - ts_builtin_sym_end, + ACTIONS(7446), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376594,20 +374468,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, - [162523] = 6, + [160971] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7555), 1, + ACTIONS(7391), 1, anon_sym_and2, - ACTIONS(7557), 1, - anon_sym_xor2, - ACTIONS(7662), 1, - anon_sym_or2, - STATE(4346), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4283), 1, sym_comment, - ACTIONS(7525), 12, - ts_builtin_sym_end, + ACTIONS(7389), 14, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376619,16 +374493,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, - [162553] = 5, + anon_sym_RPAREN, + anon_sym_xor2, + anon_sym_or2, + [161000] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4943), 1, - sym__space, - ACTIONS(7664), 1, - anon_sym_EQ2, - STATE(4347), 1, + STATE(4284), 1, sym_comment, - ACTIONS(4945), 13, + ACTIONS(2045), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2043), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376640,18 +374518,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [162581] = 5, - ACTIONS(3), 1, + anon_sym_DOT_DOT2, + [161027] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4925), 1, - sym__space, - ACTIONS(7666), 1, - anon_sym_EQ2, - STATE(4348), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4285), 1, sym_comment, - ACTIONS(4927), 13, + ACTIONS(7409), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376664,17 +374539,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, - [162609] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [161054] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2322), 1, - sym__space, - ACTIONS(7668), 1, - anon_sym_LBRACK2, - STATE(4349), 1, + STATE(4286), 1, sym_comment, - ACTIONS(2318), 13, + ACTIONS(2041), 4, + ts_builtin_sym_end, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2039), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376686,53 +374564,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, - [162637] = 17, + anon_sym_DOT_DOT2, + [161081] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, + ACTIONS(7542), 1, sym__newline, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7670), 1, - anon_sym_RPAREN, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4350), 1, + STATE(749), 1, + aux_sym__pipe_separator, + STATE(4287), 1, sym_comment, - STATE(4586), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5059), 1, + STATE(5010), 1, aux_sym_shebang_repeat1, - STATE(5284), 1, - sym_parameter, - [162689] = 4, + ACTIONS(7545), 3, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2506), 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, + [161113] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4351), 1, - sym_comment, - ACTIONS(2267), 3, - ts_builtin_sym_end, + ACTIONS(7549), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(2265), 12, + STATE(4288), 1, + sym_comment, + STATE(4296), 1, + aux_sym_command_repeat1, + ACTIONS(7547), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376744,49 +374611,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token4, - [162715] = 17, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7565), 1, - sym__newline, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7672), 1, - anon_sym_PIPE, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4352), 1, - sym_comment, - STATE(4567), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5059), 1, - aux_sym_shebang_repeat1, - STATE(5284), 1, - sym_parameter, - [162767] = 3, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161141] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4353), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4289), 1, sym_comment, - ACTIONS(7259), 15, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4811), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(4813), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376798,22 +374637,15 @@ static const uint16_t 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, - [162791] = 6, + [161171] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7649), 1, - anon_sym_DOT_DOT2, - ACTIONS(7676), 1, - anon_sym_DASH2, - STATE(4354), 1, + STATE(4290), 1, sym_comment, - ACTIONS(7651), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7674), 11, + ACTIONS(1757), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1759), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -376825,17 +374657,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [162821] = 5, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [161197] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7555), 1, - anon_sym_and2, - ACTIONS(7557), 1, - anon_sym_xor2, - STATE(4355), 1, + ACTIONS(2182), 1, + anon_sym_LPAREN2, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, + STATE(4291), 1, sym_comment, - ACTIONS(7475), 13, + ACTIONS(2184), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2180), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376847,17 +374683,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_or2, - [162849] = 5, + [161227] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7581), 1, - anon_sym_and2, - ACTIONS(7583), 1, - anon_sym_xor2, - STATE(4356), 1, + STATE(4292), 1, sym_comment, - ACTIONS(7475), 13, + ACTIONS(7205), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -376870,39 +374701,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_and2, + anon_sym_xor2, anon_sym_or2, - [162877] = 5, - ACTIONS(3), 1, + [161251] = 17, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7553), 1, + sym__newline, + ACTIONS(7555), 1, + anon_sym_RBRACK, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, ACTIONS(7561), 1, - sym__space, - STATE(4302), 1, - aux_sym_command_repeat1, - STATE(4357), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4293), 1, sym_comment, - ACTIONS(7678), 13, + STATE(4766), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5109), 1, + aux_sym_shebang_repeat1, + STATE(5323), 1, + sym_parameter, + [161303] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7553), 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(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7565), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [162905] = 4, - ACTIONS(3), 1, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4294), 1, + sym_comment, + STATE(4767), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5109), 1, + aux_sym_shebang_repeat1, + STATE(5323), 1, + sym_parameter, + [161355] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4358), 1, + ACTIONS(7567), 1, + anon_sym_and2, + STATE(4295), 1, sym_comment, - ACTIONS(4939), 2, - sym__space, - anon_sym_LPAREN2, - ACTIONS(4941), 13, + ACTIONS(7434), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376914,18 +374794,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, - [162931] = 5, + anon_sym_xor2, + anon_sym_or2, + [161381] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7561), 1, + ACTIONS(7571), 1, sym__space, - STATE(4359), 1, + STATE(4296), 2, sym_comment, - STATE(4361), 1, aux_sym_command_repeat1, - ACTIONS(7680), 13, + ACTIONS(7569), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -376939,98 +374818,143 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [162959] = 4, + [161407] = 17, ACTIONS(251), 1, anon_sym_POUND, - STATE(4360), 1, - sym_comment, - ACTIONS(2116), 2, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - ACTIONS(2118), 13, - anon_sym_EQ, + ACTIONS(7551), 1, sym_identifier, + ACTIONS(7553), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7557), 1, anon_sym_DOLLAR, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [162985] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7684), 1, - sym__space, - STATE(4361), 2, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7574), 1, + anon_sym_RBRACK, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4297), 1, sym_comment, - aux_sym_command_repeat1, - ACTIONS(7682), 13, + STATE(4319), 1, + aux_sym_shebang_repeat1, + STATE(4716), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [161459] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7553), 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(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7576), 1, anon_sym_RPAREN, - anon_sym_RBRACE, - [163011] = 17, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4298), 1, + sym_comment, + STATE(4349), 1, + aux_sym_shebang_repeat1, + STATE(4561), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [161511] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(7551), 1, sym_identifier, - ACTIONS(7565), 1, + ACTIONS(7553), 1, sym__newline, - ACTIONS(7569), 1, + ACTIONS(7557), 1, anon_sym_DOLLAR, - ACTIONS(7571), 1, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + ACTIONS(7563), 1, anon_sym_DASH2, - ACTIONS(7687), 1, - anon_sym_RBRACK, - STATE(3904), 1, + ACTIONS(7578), 1, + anon_sym_RPAREN, + STATE(3889), 1, sym_param_long_flag, - STATE(4034), 1, + STATE(4016), 1, sym__param_name, - STATE(4362), 1, + STATE(4294), 1, + aux_sym_shebang_repeat1, + STATE(4299), 1, sym_comment, - STATE(4625), 1, + STATE(4607), 1, aux_sym_parameter_parens_repeat1, - STATE(4828), 1, + STATE(4815), 1, sym_param_rest, - STATE(4833), 1, + STATE(4822), 1, sym_param_opt, - STATE(4840), 1, + STATE(4827), 1, sym_param_short_flag, - STATE(5059), 1, - aux_sym_shebang_repeat1, - STATE(5284), 1, + STATE(5323), 1, sym_parameter, - [163063] = 6, + [161563] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, + STATE(4300), 1, + sym_comment, + ACTIONS(2218), 3, + ts_builtin_sym_end, + sym__space, anon_sym_LPAREN2, - STATE(4363), 1, + ACTIONS(2216), 12, + sym__newline, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + aux_sym_unquoted_token4, + [161589] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4301), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4846), 2, + ACTIONS(1751), 3, ts_builtin_sym_end, sym__space, - ACTIONS(4848), 11, + anon_sym_LPAREN2, + ACTIONS(1749), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377042,19 +374966,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, - [163093] = 6, + aux_sym_unquoted_token2, + [161615] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(4364), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(4302), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4850), 2, + ACTIONS(2230), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4852), 11, + ACTIONS(2226), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377066,12 +374991,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, - [163123] = 3, + [161645] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4365), 1, + ACTIONS(7580), 1, + anon_sym_and2, + STATE(4303), 1, sym_comment, - ACTIONS(7475), 15, + ACTIONS(7434), 14, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377084,15 +375011,18 @@ static const uint16_t 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, - [163147] = 3, + [161671] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4366), 1, + ACTIONS(7567), 1, + anon_sym_and2, + ACTIONS(7582), 1, + anon_sym_xor2, + STATE(4304), 1, sym_comment, - ACTIONS(7475), 15, + ACTIONS(7434), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377105,22 +375035,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_and2, - anon_sym_xor2, anon_sym_or2, - [163171] = 6, + [161699] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - STATE(4367), 1, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(4305), 1, sym_comment, - ACTIONS(2198), 2, + ACTIONS(2174), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2194), 11, + ACTIONS(2170), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377132,15 +375060,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163201] = 4, + [161729] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4368), 1, + STATE(4306), 1, sym_comment, - ACTIONS(1717), 2, + ACTIONS(2043), 2, anon_sym_DASH2, anon_sym_DOT_DOT2, - ACTIONS(1719), 13, + ACTIONS(2045), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -377154,12 +375082,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [163227] = 3, + [161755] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(4369), 1, + ACTIONS(7580), 1, + anon_sym_and2, + ACTIONS(7584), 1, + anon_sym_xor2, + STATE(4307), 1, sym_comment, - ACTIONS(7259), 15, + ACTIONS(7434), 13, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377172,43 +375104,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, - [163251] = 6, - ACTIONS(251), 1, + [161783] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7649), 1, - anon_sym_DOT_DOT2, - ACTIONS(7691), 1, - anon_sym_DASH2, - STATE(4370), 1, + ACTIONS(4920), 1, + sym__space, + ACTIONS(7586), 1, + anon_sym_EQ2, + STATE(4308), 1, sym_comment, - ACTIONS(7651), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(7689), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(4922), 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, - [163281] = 4, + anon_sym_RBRACE, + [161811] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4371), 1, - sym_comment, - ACTIONS(1863), 3, - ts_builtin_sym_end, + ACTIONS(4914), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1861), 12, + ACTIONS(7588), 1, + anon_sym_EQ2, + STATE(4309), 1, + sym_comment, + ACTIONS(4916), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377220,13 +375149,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, - aux_sym_unquoted_token2, - [163307] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [161839] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4372), 1, + ACTIONS(7567), 1, + anon_sym_and2, + ACTIONS(7582), 1, + anon_sym_xor2, + ACTIONS(7590), 1, + anon_sym_or2, + STATE(4310), 1, sym_comment, - ACTIONS(7194), 15, + ACTIONS(7454), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377239,22 +375175,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, - [163331] = 6, + [161869] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7693), 1, - anon_sym_EQ2, - ACTIONS(7695), 1, - sym_short_flag_identifier, - STATE(4373), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(4311), 1, sym_comment, - ACTIONS(4878), 2, + ACTIONS(1000), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4880), 11, + ACTIONS(1004), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377266,21 +375199,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, - [163361] = 6, - ACTIONS(3), 1, + [161899] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(4374), 1, - sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4862), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(4864), 11, + ACTIONS(7592), 1, sym__newline, + STATE(749), 1, + aux_sym__pipe_separator, + STATE(4312), 1, + sym_comment, + STATE(5010), 1, + aux_sym_shebang_repeat1, + ACTIONS(7595), 3, anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + ACTIONS(2506), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -377290,19 +375224,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, - [163391] = 6, + [161931] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(4375), 1, + STATE(4313), 1, sym_comment, - ACTIONS(1794), 2, + ACTIONS(1733), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1786), 11, + anon_sym_LPAREN2, + ACTIONS(1731), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377314,13 +375245,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, - [163421] = 3, - ACTIONS(251), 1, + aux_sym_unquoted_token2, + [161957] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4376), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(4314), 1, sym_comment, - ACTIONS(7475), 15, + ACTIONS(2196), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2192), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377332,19 +375270,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, - [163445] = 4, + [161987] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4377), 1, - sym_comment, - ACTIONS(1767), 3, - ts_builtin_sym_end, + ACTIONS(7549), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(1765), 12, + STATE(4315), 1, + sym_comment, + STATE(4360), 1, + aux_sym_command_repeat1, + ACTIONS(7467), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377356,20 +375291,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - aux_sym_unquoted_token2, - [163471] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162015] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(2194), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - STATE(4378), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(4316), 1, sym_comment, - ACTIONS(2186), 2, + ACTIONS(2202), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2184), 11, + ACTIONS(2200), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377381,19 +375317,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [163501] = 6, + [162045] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(4379), 1, + STATE(4317), 1, sym_comment, - ACTIONS(1000), 2, - ts_builtin_sym_end, + ACTIONS(4975), 2, sym__space, - ACTIONS(1004), 11, + anon_sym_LPAREN2, + ACTIONS(4977), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377405,43 +375337,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, - [163531] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162071] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7553), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, anon_sym_DASH2, - ACTIONS(7649), 1, - anon_sym_DOT_DOT2, - STATE(4380), 1, + ACTIONS(7597), 1, + anon_sym_PIPE, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4318), 1, sym_comment, - ACTIONS(7651), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1000), 11, - anon_sym_EQ, + STATE(4758), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5109), 1, + aux_sym_shebang_repeat1, + STATE(5323), 1, + sym_parameter, + [162123] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, sym_identifier, + ACTIONS(7553), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7557), 1, anon_sym_DOLLAR, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - [163561] = 6, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7599), 1, + anon_sym_RBRACK, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4319), 1, + sym_comment, + STATE(4558), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5109), 1, + aux_sym_shebang_repeat1, + STATE(5323), 1, + sym_parameter, + [162175] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4320), 1, + sym_comment, + ACTIONS(7270), 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, + [162199] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - STATE(4381), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(4321), 1, sym_comment, - ACTIONS(1873), 2, + ACTIONS(1813), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1865), 11, + ACTIONS(1805), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377453,13 +375454,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, - [163591] = 3, - ACTIONS(251), 1, + [162229] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4382), 1, + ACTIONS(7549), 1, + sym__space, + STATE(4288), 1, + aux_sym_command_repeat1, + STATE(4322), 1, sym_comment, - ACTIONS(7475), 15, - ts_builtin_sym_end, + ACTIONS(7601), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377471,57 +375475,87 @@ static const uint16_t 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, - [163615] = 17, + anon_sym_RPAREN, + anon_sym_RBRACE, + [162257] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(2059), 1, + anon_sym_DASH2, + ACTIONS(7603), 1, + anon_sym_DOT_DOT2, + STATE(4323), 1, + sym_comment, + ACTIONS(7605), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2065), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7565), 1, sym__newline, - ACTIONS(7569), 1, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + [162287] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2047), 1, anon_sym_DASH2, - ACTIONS(7697), 1, + ACTIONS(7607), 1, + anon_sym_DOT_DOT2, + STATE(4324), 1, + sym_comment, + ACTIONS(7609), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2053), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4383), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162317] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2080), 1, + anon_sym_DASH2, + ACTIONS(7611), 1, + anon_sym_DOT_DOT2, + STATE(4325), 1, sym_comment, - STATE(4626), 1, - aux_sym_parameter_parens_repeat1, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5059), 1, - aux_sym_shebang_repeat1, - STATE(5284), 1, - sym_parameter, - [163667] = 6, - ACTIONS(3), 1, + ACTIONS(7613), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2086), 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, + [162347] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(4384), 1, + STATE(4326), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - ACTIONS(4858), 2, + ACTIONS(7205), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(4860), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377533,19 +375567,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, - [163697] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162371] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2072), 1, + anon_sym_DASH2, + ACTIONS(7615), 1, + anon_sym_DOT_DOT2, + STATE(4327), 1, + sym_comment, + ACTIONS(7617), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(2078), 11, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162401] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4328), 1, + sym_comment, + ACTIONS(1018), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(1020), 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, + [162427] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(4385), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(4329), 1, sym_comment, - ACTIONS(2241), 2, + ACTIONS(2190), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2237), 11, + ACTIONS(2188), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377557,14 +375640,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, - [163727] = 4, - ACTIONS(3), 1, + [162457] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2363), 1, - sym__space, - STATE(4386), 1, + STATE(4330), 1, + sym_comment, + ACTIONS(2035), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2037), 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, + [162483] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4331), 1, sym_comment, - ACTIONS(2361), 13, + ACTIONS(7434), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377576,20 +375680,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, - [163752] = 6, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162507] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1865), 1, + ACTIONS(7501), 1, + aux_sym__immediate_decimal_token2, + STATE(4332), 1, + sym_comment, + ACTIONS(1749), 3, + sym_identifier, anon_sym_DASH2, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, aux_sym__unquoted_in_record_token2, - STATE(4387), 1, + ACTIONS(1751), 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, + [162535] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4333), 1, sym_comment, - ACTIONS(1873), 11, + ACTIONS(2039), 2, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + ACTIONS(2041), 13, anon_sym_EQ, sym_identifier, sym__newline, @@ -377601,14 +375726,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [163781] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [162561] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, - sym__space, - STATE(4388), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4334), 1, sym_comment, - ACTIONS(2451), 13, + STATE(7225), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7476), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7474), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377620,47 +375752,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, - [163806] = 14, + [162591] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3995), 1, - anon_sym_DOLLAR, - ACTIONS(7699), 1, - sym__newline, - ACTIONS(7701), 1, - sym__space, - ACTIONS(7703), 1, - anon_sym_DASH_DASH, - ACTIONS(7705), 1, - anon_sym_DASH2, - ACTIONS(7707), 1, - anon_sym_LBRACE, - STATE(1803), 1, - sym_block, - STATE(1804), 1, - sym_val_closure, - STATE(4389), 1, + ACTIONS(7619), 1, + anon_sym_EQ2, + ACTIONS(7621), 1, + sym_short_flag_identifier, + STATE(4335), 1, sym_comment, - STATE(5519), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7266), 1, - sym__flag, - STATE(784), 2, - sym__blosure, - sym_val_variable, - STATE(4399), 2, - sym_short_flag, - sym_long_flag, - [163851] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1975), 1, + ACTIONS(4819), 2, + ts_builtin_sym_end, sym__space, - STATE(4390), 1, - sym_comment, - ACTIONS(1973), 13, + ACTIONS(4821), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377672,14 +375776,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, - [163876] = 3, + [162621] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4391), 1, + STATE(4336), 1, sym_comment, - ACTIONS(5009), 14, + ACTIONS(7434), 15, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -377692,19 +375794,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_else, - anon_sym_catch, - [163899] = 5, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162645] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7709), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4337), 1, + sym_comment, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4815), 2, ts_builtin_sym_end, - ACTIONS(7711), 1, sym__space, - STATE(4392), 2, - sym_comment, - aux_sym_command_repeat1, - ACTIONS(7682), 11, + ACTIONS(4817), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377716,17 +375821,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, - [163926] = 5, + [162675] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7714), 1, + ACTIONS(7623), 1, + sym_long_flag_identifier, + ACTIONS(7625), 1, anon_sym_EQ2, - STATE(4393), 1, + STATE(4338), 1, sym_comment, - ACTIONS(4925), 2, + ACTIONS(4862), 2, ts_builtin_sym_end, sym__space, - ACTIONS(4927), 11, + ACTIONS(4864), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377738,17 +375845,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, - [163953] = 5, - ACTIONS(3), 1, + [162705] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7716), 1, - anon_sym_LBRACK2, - STATE(4394), 1, + STATE(4339), 1, sym_comment, - ACTIONS(2322), 2, + ACTIONS(7434), 15, ts_builtin_sym_end, - sym__space, - ACTIONS(2318), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377760,14 +375863,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, - [163980] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162729] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__space, - STATE(4395), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4340), 1, sym_comment, - ACTIONS(1981), 13, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4827), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4829), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377779,20 +375890,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, - [164005] = 6, + [162759] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7718), 1, + ACTIONS(7629), 1, + anon_sym_DASH2, + ACTIONS(7631), 1, + anon_sym_DOT_DOT2, + STATE(4341), 1, + sym_comment, + ACTIONS(7633), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7627), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7723), 1, - anon_sym_else, - STATE(4396), 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, + [162789] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4342), 1, sym_comment, - STATE(4503), 1, - aux_sym_shebang_repeat1, - ACTIONS(7721), 11, + ACTIONS(7270), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377803,59 +375932,202 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [164034] = 6, - ACTIONS(3), 1, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [162813] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_record_token4, - STATE(4397), 1, + ACTIONS(7631), 1, + anon_sym_DOT_DOT2, + ACTIONS(7637), 1, + anon_sym_DASH2, + STATE(4343), 1, sym_comment, - ACTIONS(1000), 6, + ACTIONS(7633), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7635), 11, + anon_sym_EQ, + sym_identifier, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - ACTIONS(1004), 6, - anon_sym_EQ, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [162843] = 17, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, sym_identifier, + ACTIONS(7553), 1, + sym__newline, + ACTIONS(7557), 1, anon_sym_DOLLAR, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, anon_sym_DASH_DASH, + ACTIONS(7563), 1, anon_sym_DASH2, - [164063] = 4, - ACTIONS(3), 1, + ACTIONS(7639), 1, + anon_sym_PIPE, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4318), 1, + aux_sym_shebang_repeat1, + STATE(4344), 1, + sym_comment, + STATE(4655), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [162895] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4398), 1, + ACTIONS(1004), 1, + anon_sym_DASH2, + ACTIONS(7631), 1, + anon_sym_DOT_DOT2, + STATE(4345), 1, sym_comment, - ACTIONS(2265), 7, + ACTIONS(7633), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1000), 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, + [162925] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4346), 1, + sym_comment, + ACTIONS(7205), 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, + [162949] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4347), 1, + sym_comment, + ACTIONS(4971), 2, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4973), 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, + [162975] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7641), 1, + aux_sym__immediate_decimal_token2, + STATE(4348), 1, + sym_comment, + ACTIONS(1772), 3, + sym_identifier, anon_sym_DASH2, - aux_sym__unquoted_in_record_token4, - ACTIONS(2267), 7, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 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, - [164088] = 4, - ACTIONS(3), 1, + [163003] = 17, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5021), 1, - sym__space, - STATE(4399), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7553), 1, + sym__newline, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, + anon_sym_RPAREN, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4349), 1, + sym_comment, + STATE(4560), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5109), 1, + aux_sym_shebang_repeat1, + STATE(5323), 1, + sym_parameter, + [163055] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7567), 1, + anon_sym_and2, + STATE(4350), 1, sym_comment, - ACTIONS(5023), 13, + ACTIONS(7434), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377867,16 +376139,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, - [164113] = 4, + anon_sym_xor2, + anon_sym_or2, + [163081] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5643), 1, - sym__space, - STATE(4400), 1, + ACTIONS(7173), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(7645), 1, + anon_sym_DOT, + STATE(4351), 1, sym_comment, - ACTIONS(5641), 13, + ACTIONS(1751), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1749), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377888,16 +376165,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164138] = 4, - ACTIONS(3), 1, + [163111] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2405), 1, - sym__space, - STATE(4401), 1, + ACTIONS(7580), 1, + anon_sym_and2, + STATE(4352), 1, sym_comment, - ACTIONS(2403), 13, + ACTIONS(7434), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377909,20 +376185,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [164163] = 6, + anon_sym_xor2, + anon_sym_or2, + [163137] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7725), 1, - sym__newline, - ACTIONS(7730), 1, - anon_sym_else, - STATE(4402), 1, + STATE(4353), 1, sym_comment, - STATE(4458), 1, - aux_sym_shebang_repeat1, - ACTIONS(7728), 11, + ACTIONS(7647), 15, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -377934,14 +376205,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [164192] = 4, + anon_sym_else, + anon_sym_RBRACE, + anon_sym_catch, + [163161] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, + ACTIONS(1675), 1, sym__space, - STATE(4403), 1, + ACTIONS(7047), 1, + aux_sym_unquoted_token2, + STATE(4354), 1, sym_comment, - ACTIONS(2369), 13, + ACTIONS(1663), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377955,14 +376231,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164217] = 4, + [163189] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2347), 1, - sym__space, - STATE(4404), 1, + STATE(4355), 1, sym_comment, - ACTIONS(2345), 13, + ACTIONS(1819), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1817), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377974,18 +376252,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, - [164242] = 5, + aux_sym_unquoted_token2, + [163215] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7561), 1, + ACTIONS(2284), 1, sym__space, - STATE(4361), 1, - aux_sym_command_repeat1, - STATE(4405), 1, + ACTIONS(7649), 1, + anon_sym_LBRACK2, + STATE(4356), 1, sym_comment, - ACTIONS(7680), 12, + ACTIONS(2280), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -377997,19 +376274,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, - [164269] = 6, + [163243] = 17, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7732), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7553), 1, sym__newline, - ACTIONS(7737), 1, - anon_sym_catch, - STATE(4406), 1, - sym_comment, - STATE(4486), 1, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7651), 1, + anon_sym_RBRACK, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4293), 1, aux_sym_shebang_repeat1, - ACTIONS(7735), 11, + STATE(4357), 1, + sym_comment, + STATE(4603), 1, + aux_sym_parameter_parens_repeat1, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [163295] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4358), 1, + sym_comment, + ACTIONS(7270), 15, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378020,15 +376329,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_and2, + anon_sym_xor2, + anon_sym_or2, + [163319] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7653), 1, + anon_sym_DOT, + ACTIONS(7655), 1, + aux_sym__immediate_decimal_token2, + STATE(4359), 1, + sym_comment, + ACTIONS(1605), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 10, + sym__newline, + anon_sym_SEMI, anon_sym_RPAREN, - [164298] = 4, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163349] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1987), 1, + ACTIONS(7549), 1, sym__space, - STATE(4407), 1, + STATE(4296), 1, + aux_sym_command_repeat1, + STATE(4360), 1, sym_comment, - ACTIONS(1985), 13, + ACTIONS(7657), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378042,18 +376379,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164323] = 6, - ACTIONS(3), 1, + [163377] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7739), 1, - sym__newline, - ACTIONS(7741), 1, - sym__space, - STATE(4408), 1, + ACTIONS(7580), 1, + anon_sym_and2, + ACTIONS(7584), 1, + anon_sym_xor2, + ACTIONS(7659), 1, + anon_sym_or2, + STATE(4361), 1, sym_comment, - STATE(4499), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7743), 11, + ACTIONS(7454), 12, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378064,15 +376403,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, - [164352] = 4, - ACTIONS(3), 1, + [163407] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2507), 1, - sym__space, - STATE(4409), 1, + STATE(4362), 1, sym_comment, - ACTIONS(2505), 13, + ACTIONS(6875), 15, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378084,16 +376421,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_and2, + anon_sym_xor2, + anon_sym_or2, + [163431] = 14, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7661), 1, + sym_identifier, + ACTIONS(7666), 1, + anon_sym_DOLLAR, + ACTIONS(7669), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7672), 1, + anon_sym_DASH_DASH, + ACTIONS(7675), 1, + anon_sym_DASH2, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + STATE(4363), 2, + sym_comment, + aux_sym_parameter_parens_repeat1, + ACTIONS(7664), 3, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [164377] = 4, - ACTIONS(3), 1, + [163477] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2445), 1, - sym__space, - STATE(4410), 1, + ACTIONS(7631), 1, + anon_sym_DOT_DOT2, + ACTIONS(7680), 1, + anon_sym_DASH2, + STATE(4364), 1, + sym_comment, + ACTIONS(7633), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(7678), 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, + [163507] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4365), 1, sym_comment, - ACTIONS(2443), 13, + ACTIONS(5020), 15, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378106,19 +376498,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_else, anon_sym_RBRACE, - [164402] = 6, + anon_sym_catch, + [163531] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7745), 1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(4366), 1, + sym_comment, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + ACTIONS(4898), 2, ts_builtin_sym_end, - ACTIONS(7747), 1, sym__space, - STATE(4392), 1, - aux_sym_command_repeat1, - STATE(4411), 1, - sym_comment, - ACTIONS(7559), 11, + ACTIONS(4900), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378130,14 +376525,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, - [164431] = 4, - ACTIONS(3), 1, + [163561] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2355), 1, - sym__space, - STATE(4412), 1, + ACTIONS(7682), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7684), 1, + aux_sym__immediate_decimal_token2, + STATE(4367), 1, + sym_comment, + ACTIONS(1597), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [163591] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7567), 1, + anon_sym_and2, + ACTIONS(7582), 1, + anon_sym_xor2, + STATE(4368), 1, sym_comment, - ACTIONS(2353), 13, + ACTIONS(7434), 13, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378149,23 +376571,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, - [164456] = 7, + anon_sym_or2, + [163619] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7749), 1, - sym__newline, - STATE(725), 1, - aux_sym__pipe_separator, - STATE(4413), 1, + ACTIONS(7580), 1, + anon_sym_and2, + ACTIONS(7584), 1, + anon_sym_xor2, + STATE(4369), 1, sym_comment, - STATE(5022), 1, - aux_sym_shebang_repeat1, - ACTIONS(7752), 2, + ACTIONS(7434), 13, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2519), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378175,21 +376594,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, - [164487] = 7, + anon_sym_or2, + [163647] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7601), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4414), 1, + STATE(4370), 1, sym_comment, - STATE(5022), 1, - aux_sym_shebang_repeat1, - ACTIONS(7604), 2, + ACTIONS(7434), 15, ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - ACTIONS(2519), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378199,14 +376613,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, - [164518] = 4, + anon_sym_and2, + anon_sym_xor2, + anon_sym_or2, + [163671] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1999), 1, - sym__space, - STATE(4415), 1, + STATE(4371), 1, sym_comment, - ACTIONS(1997), 13, + ACTIONS(1774), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(1772), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378218,16 +376637,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, - [164543] = 4, + aux_sym_unquoted_token2, + [163697] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2375), 1, - sym__space, - STATE(4416), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + STATE(4372), 1, sym_comment, - ACTIONS(2373), 13, + ACTIONS(1801), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1793), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378239,16 +376662,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, - [164568] = 4, + [163727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(1881), 1, sym__space, - STATE(4417), 1, + STATE(4373), 1, sym_comment, - ACTIONS(2459), 13, + ACTIONS(1879), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378262,14 +376683,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164593] = 4, + [163752] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, + ACTIONS(5062), 1, sym__space, - STATE(4418), 1, + STATE(4374), 1, sym_comment, - ACTIONS(2463), 13, + ACTIONS(5064), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378283,15 +376704,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164618] = 4, + [163777] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2379), 1, + ACTIONS(7686), 1, + sym__newline, + ACTIONS(7688), 1, sym__space, - STATE(4419), 1, + STATE(4375), 1, sym_comment, - ACTIONS(2377), 13, - sym__newline, + STATE(4392), 1, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7690), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378303,15 +376727,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [164643] = 4, + [163806] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4376), 1, + sym_comment, + ACTIONS(2216), 7, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token4, + ACTIONS(2218), 7, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_LPAREN2, + [163831] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym__unquoted_in_record_token4, + STATE(4377), 1, + sym_comment, + ACTIONS(2226), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2230), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + [163860] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(2455), 1, sym__space, - STATE(4420), 1, + STATE(4378), 1, sym_comment, - ACTIONS(2001), 13, + ACTIONS(2453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378325,14 +376792,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164668] = 3, - ACTIONS(3), 1, + [163885] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4421), 1, + ACTIONS(7197), 1, + anon_sym_DOT, + ACTIONS(7199), 1, + aux_sym__immediate_decimal_token2, + STATE(4379), 1, + sym_comment, + ACTIONS(1749), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1751), 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, + [163914] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1591), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2170), 1, + anon_sym_DASH2, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + STATE(4380), 1, sym_comment, - ACTIONS(5649), 14, + ACTIONS(2174), 11, + anon_sym_EQ, + sym_identifier, sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [163943] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5066), 1, sym__space, + STATE(4381), 1, + sym_comment, + ACTIONS(5068), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378343,23 +376857,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_COLON2, - [164691] = 7, + [163968] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7754), 1, - sym__newline, - STATE(725), 1, - aux_sym__pipe_separator, - STATE(4422), 1, + STATE(4382), 1, sym_comment, - STATE(5022), 1, - aux_sym_shebang_repeat1, - ACTIONS(7757), 2, + ACTIONS(7647), 14, + ts_builtin_sym_end, + sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - ACTIONS(2519), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378369,18 +376877,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, - [164722] = 6, + anon_sym_else, + anon_sym_catch, + [163991] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7739), 1, - sym__newline, - ACTIONS(7741), 1, + ACTIONS(2477), 1, sym__space, - STATE(4423), 1, + STATE(4383), 1, sym_comment, - STATE(4501), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7759), 11, + ACTIONS(2475), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378392,14 +376899,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [164751] = 4, + anon_sym_RBRACE, + [164016] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7763), 1, + ACTIONS(7694), 1, sym__space, - STATE(4424), 1, + STATE(4384), 1, sym_comment, - ACTIONS(7761), 13, + ACTIONS(7692), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378413,14 +376921,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164776] = 4, + [164041] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7382), 1, + ACTIONS(2030), 1, sym__space, - STATE(4425), 1, + STATE(4385), 1, sym_comment, - ACTIONS(7380), 13, + ACTIONS(2028), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378434,14 +376942,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164801] = 4, + [164066] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7767), 1, - sym__space, - STATE(4426), 1, + ACTIONS(2208), 1, + anon_sym_LPAREN2, + ACTIONS(2210), 1, + aux_sym__unquoted_in_record_token4, + STATE(4386), 1, + sym_comment, + ACTIONS(1000), 6, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + ACTIONS(1004), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [164095] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4387), 1, sym_comment, - ACTIONS(7765), 13, + ACTIONS(5020), 14, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378453,16 +376983,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, - [164826] = 4, + anon_sym_else, + anon_sym_catch, + [164118] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7771), 1, - sym__space, - STATE(4427), 1, + ACTIONS(7086), 1, + aux_sym_unquoted_token2, + STATE(4388), 1, sym_comment, - ACTIONS(7769), 13, + ACTIONS(1675), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1663), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378474,19 +377007,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, - [164851] = 5, + [164145] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7773), 1, - anon_sym_EQ2, - STATE(4428), 1, - sym_comment, - ACTIONS(4943), 2, - ts_builtin_sym_end, + ACTIONS(5070), 1, sym__space, - ACTIONS(4945), 11, + STATE(4389), 1, + sym_comment, + ACTIONS(5072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378498,14 +377026,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, - [164878] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164170] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7777), 1, + ACTIONS(5619), 1, sym__space, - STATE(4429), 1, + STATE(4390), 1, sym_comment, - ACTIONS(7775), 13, + ACTIONS(5617), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378519,41 +377049,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [164903] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(7691), 1, - anon_sym_DASH2, - STATE(4430), 1, - sym_comment, - STATE(7241), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7689), 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, - [164932] = 6, + [164195] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2188), 1, + ACTIONS(2180), 1, anon_sym_DASH2, - ACTIONS(2190), 1, + ACTIONS(2182), 1, anon_sym_LPAREN2, - STATE(4431), 1, + ACTIONS(2186), 1, + aux_sym__unquoted_in_record_token2, + STATE(4391), 1, sym_comment, - ACTIONS(2192), 11, + ACTIONS(2184), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378565,15 +377072,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [164961] = 4, + [164224] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7781), 1, + ACTIONS(7696), 1, + sym__newline, + ACTIONS(7699), 1, sym__space, - STATE(4432), 1, + STATE(4392), 2, sym_comment, - ACTIONS(7779), 13, - sym__newline, + aux_sym__command_parenthesized_repeat1, + ACTIONS(7702), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378585,36 +377094,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [164986] = 4, + [164251] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, - sym__space, - STATE(4433), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym__unquoted_in_record_token4, + STATE(4393), 1, sym_comment, - ACTIONS(2389), 13, + ACTIONS(2192), 6, + anon_sym_EQ, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_DASH2, + ACTIONS(2196), 6, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_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, - [165011] = 4, + anon_sym_COMMA, + [164280] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7537), 1, + ACTIONS(2413), 1, sym__space, - STATE(4434), 1, + STATE(4394), 1, sym_comment, - ACTIONS(7535), 13, + ACTIONS(2411), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378628,38 +377138,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165036] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4435), 1, - sym_comment, - ACTIONS(7624), 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_else, - anon_sym_catch, - [165059] = 6, + [164305] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2194), 1, + ACTIONS(7706), 1, + anon_sym_AT, + ACTIONS(7708), 1, anon_sym_DASH2, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2200), 1, - aux_sym__unquoted_in_record_token2, - STATE(4436), 1, + STATE(4395), 1, sym_comment, - ACTIONS(2198), 11, + STATE(4864), 1, + sym_param_cmd, + ACTIONS(7704), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378671,14 +377161,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165088] = 4, + [164334] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5647), 1, + ACTIONS(1970), 1, sym__space, - STATE(4437), 1, + STATE(4396), 1, sym_comment, - ACTIONS(5645), 13, + ACTIONS(1968), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378692,21 +377182,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165113] = 7, - ACTIONS(251), 1, + [164359] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7655), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4438), 1, + ACTIONS(2431), 1, + sym__space, + STATE(4397), 1, sym_comment, - STATE(5022), 1, - aux_sym_shebang_repeat1, - ACTIONS(7658), 2, - ts_builtin_sym_end, + ACTIONS(2429), 13, + sym__newline, anon_sym_SEMI, - ACTIONS(2519), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -378716,18 +377201,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, - [165144] = 6, - ACTIONS(251), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [164384] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7783), 1, - sym__newline, - ACTIONS(7788), 1, - anon_sym_else, - STATE(4439), 1, + ACTIONS(1873), 1, + sym__space, + STATE(4398), 1, sym_comment, - STATE(4459), 1, - aux_sym_shebang_repeat1, - ACTIONS(7786), 11, + ACTIONS(1871), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378739,18 +377223,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165173] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [164409] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7790), 1, - sym__newline, - ACTIONS(7795), 1, - anon_sym_else, - STATE(4440), 1, + ACTIONS(7710), 1, + ts_builtin_sym_end, + ACTIONS(7712), 1, + sym__space, + STATE(4399), 2, sym_comment, - STATE(4461), 1, - aux_sym_shebang_repeat1, - ACTIONS(7793), 11, + aux_sym_command_repeat1, + ACTIONS(7569), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -378761,15 +377246,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, - [165202] = 4, + [164436] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(7717), 1, sym__space, - STATE(4441), 1, + STATE(4400), 1, sym_comment, - ACTIONS(1681), 13, + ACTIONS(7715), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378783,14 +377267,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165227] = 4, + [164461] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7592), 1, + sym__newline, + STATE(749), 1, + aux_sym__pipe_separator, + STATE(4401), 1, + sym_comment, + STATE(5010), 1, + aux_sym_shebang_repeat1, + ACTIONS(7595), 2, + ts_builtin_sym_end, + anon_sym_SEMI, + ACTIONS(2506), 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, + [164492] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5063), 1, + ACTIONS(2405), 1, sym__space, - STATE(4442), 1, + STATE(4402), 1, sym_comment, - ACTIONS(5065), 13, + ACTIONS(2403), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378804,14 +377312,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165252] = 4, + [164517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, + ACTIONS(7333), 1, sym__space, - STATE(4443), 1, + STATE(4403), 1, sym_comment, - ACTIONS(2009), 13, + ACTIONS(7331), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378825,14 +377333,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165277] = 4, + [164542] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5067), 1, + ACTIONS(7721), 1, sym__space, - STATE(4444), 1, + STATE(4404), 1, sym_comment, - ACTIONS(5069), 13, + ACTIONS(7719), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378846,14 +377354,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165302] = 4, + [164567] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(7725), 1, sym__space, - STATE(4445), 1, + STATE(4405), 1, sym_comment, - ACTIONS(2467), 13, + ACTIONS(7723), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378867,61 +377375,49 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165327] = 5, - ACTIONS(251), 1, + [164592] = 14, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7799), 1, - anon_sym_LT, - ACTIONS(7801), 1, - anon_sym_DASH2, - STATE(4446), 1, - sym_comment, - ACTIONS(7797), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(3968), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165354] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7803), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7805), 1, - aux_sym__immediate_decimal_token2, - STATE(4447), 1, - sym_comment, - ACTIONS(1595), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 9, - ts_builtin_sym_end, + ACTIONS(7727), 1, sym__newline, - anon_sym_SEMI, + ACTIONS(7729), 1, + sym__space, + ACTIONS(7731), 1, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [165383] = 5, + ACTIONS(7733), 1, + anon_sym_DASH2, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym_block, + STATE(1734), 1, + sym_val_closure, + STATE(4406), 1, + sym_comment, + STATE(5542), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7255), 1, + sym__flag, + STATE(758), 2, + sym__blosure, + sym_val_variable, + STATE(4389), 2, + sym_short_flag, + sym_long_flag, + [164637] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7801), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(7637), 1, anon_sym_DASH2, - ACTIONS(7807), 1, - anon_sym_LT, - STATE(4448), 1, + STATE(4407), 1, sym_comment, - ACTIONS(7797), 12, + STATE(7325), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7635), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -378931,17 +377427,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165410] = 4, + [164666] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(7739), 1, sym__space, - STATE(4449), 1, + STATE(4408), 1, sym_comment, - ACTIONS(2471), 13, + ACTIONS(7737), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378955,14 +377450,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165435] = 4, + [164691] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(7743), 1, sym__space, - STATE(4450), 1, + STATE(4409), 1, sym_comment, - ACTIONS(2089), 13, + ACTIONS(7741), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -378976,62 +377471,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165460] = 6, - ACTIONS(251), 1, + [164716] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7811), 1, - anon_sym_AT, - ACTIONS(7813), 1, - anon_sym_DASH2, - STATE(4451), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym__unquoted_in_record_token4, + STATE(4410), 1, sym_comment, - STATE(4811), 1, - sym_param_cmd, - ACTIONS(7809), 11, + ACTIONS(2200), 6, anon_sym_EQ, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [165489] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7811), 1, - anon_sym_AT, - ACTIONS(7813), 1, anon_sym_DASH2, - STATE(4452), 1, - sym_comment, - STATE(4812), 1, - sym_param_cmd, - ACTIONS(7809), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2202), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [165518] = 4, + [164745] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(4453), 1, - sym_comment, - ACTIONS(4939), 3, - ts_builtin_sym_end, + ACTIONS(7549), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4941), 11, + STATE(4296), 1, + aux_sym_command_repeat1, + STATE(4411), 1, + sym_comment, + ACTIONS(7657), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379043,15 +377515,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, - [165543] = 4, - ACTIONS(3), 1, + anon_sym_RBRACE, + [164772] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2027), 1, - sym__space, - STATE(4454), 1, - sym_comment, - ACTIONS(2025), 13, + ACTIONS(7745), 1, sym__newline, + ACTIONS(7750), 1, + anon_sym_else, + STATE(4412), 1, + sym_comment, + STATE(4467), 1, + aux_sym_shebang_repeat1, + ACTIONS(7748), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379063,15 +377539,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, - [165568] = 4, + [164801] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, + ACTIONS(7752), 1, + ts_builtin_sym_end, + ACTIONS(7754), 1, sym__space, - STATE(4455), 1, + STATE(4413), 1, sym_comment, - ACTIONS(2501), 13, + STATE(4425), 1, + aux_sym_command_repeat1, + ACTIONS(7601), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379083,16 +377562,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, - [165593] = 4, + [164830] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7277), 1, + ACTIONS(7476), 1, sym__space, - STATE(4456), 1, + STATE(4414), 1, sym_comment, - ACTIONS(7275), 13, + ACTIONS(7474), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379106,14 +377583,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165618] = 3, + [164855] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4457), 1, + ACTIONS(1675), 1, + sym__space, + STATE(4415), 1, sym_comment, - ACTIONS(5655), 14, + ACTIONS(1663), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379124,20 +377602,43 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_COLON2, - [165641] = 6, + [164880] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(7680), 1, + anon_sym_DASH2, + STATE(4416), 1, + sym_comment, + STATE(7325), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7678), 11, + anon_sym_EQ, + sym_identifier, sym__newline, - ACTIONS(7815), 1, - anon_sym_else, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4458), 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, + [164909] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7756), 1, + sym__newline, + ACTIONS(7761), 1, + anon_sym_catch, + STATE(4417), 1, sym_comment, - ACTIONS(1276), 11, + STATE(4471), 1, + aux_sym_shebang_repeat1, + ACTIONS(7759), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379149,18 +377650,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165670] = 6, + [164938] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(7763), 1, sym__newline, - ACTIONS(7823), 1, - anon_sym_else, - STATE(4459), 1, + ACTIONS(7768), 1, + anon_sym_catch, + STATE(4418), 1, sym_comment, - STATE(4489), 1, + STATE(4472), 1, aux_sym_shebang_repeat1, - ACTIONS(7821), 11, + ACTIONS(7766), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379172,14 +377673,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165699] = 4, + [164967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2421), 1, - sym__space, - STATE(4460), 1, + ACTIONS(7770), 1, + anon_sym_EQ2, + STATE(4419), 1, sym_comment, - ACTIONS(2419), 13, + ACTIONS(4920), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(4922), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379191,20 +377695,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [165724] = 6, - ACTIONS(251), 1, + [164994] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7825), 1, - sym__newline, - ACTIONS(7830), 1, - anon_sym_else, - STATE(4461), 1, + ACTIONS(2427), 1, + sym__space, + STATE(4420), 1, sym_comment, - STATE(4513), 1, - aux_sym_shebang_repeat1, - ACTIONS(7828), 11, + ACTIONS(2425), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379216,18 +377715,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165753] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [165019] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7832), 1, - sym__newline, - ACTIONS(7837), 1, - anon_sym_else, - STATE(4396), 1, - aux_sym_shebang_repeat1, - STATE(4462), 1, + ACTIONS(7754), 1, + sym__space, + ACTIONS(7772), 1, + ts_builtin_sym_end, + STATE(4399), 1, + aux_sym_command_repeat1, + STATE(4421), 1, sym_comment, - ACTIONS(7835), 11, + ACTIONS(7657), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379238,19 +377739,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - [165782] = 6, - ACTIONS(251), 1, + [165048] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5004), 1, - sym__newline, - ACTIONS(7839), 1, - anon_sym_catch, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4463), 1, + ACTIONS(5609), 1, + sym__space, + STATE(4422), 1, sym_comment, - ACTIONS(1276), 11, + ACTIONS(5607), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379262,18 +377759,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [165811] = 6, + anon_sym_RBRACE, + [165073] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7747), 1, + ACTIONS(7754), 1, sym__space, - ACTIONS(7842), 1, + ACTIONS(7774), 1, ts_builtin_sym_end, - STATE(4392), 1, + STATE(4421), 1, aux_sym_command_repeat1, - STATE(4464), 1, + STATE(4423), 1, sym_comment, - ACTIONS(7680), 11, + ACTIONS(7467), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379285,59 +377783,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, - [165840] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7844), 1, - anon_sym_DOT, - ACTIONS(7846), 1, - aux_sym__immediate_decimal_token2, - STATE(4465), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [165869] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7599), 1, - aux_sym__immediate_decimal_token2, - STATE(4466), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [165896] = 4, + [165102] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, + ACTIONS(2459), 1, sym__space, - STATE(4467), 1, + STATE(4424), 1, sym_comment, - ACTIONS(2423), 13, + ACTIONS(2457), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379351,35 +377804,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165921] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4468), 1, - sym_comment, - ACTIONS(1725), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 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, - [165946] = 4, + [165127] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1935), 1, + ACTIONS(7754), 1, sym__space, - STATE(4469), 1, + ACTIONS(7776), 1, + ts_builtin_sym_end, + STATE(4399), 1, + aux_sym_command_repeat1, + STATE(4425), 1, sym_comment, - ACTIONS(1933), 13, + ACTIONS(7547), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379391,16 +377827,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, - [165971] = 4, + [165156] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2339), 1, + ACTIONS(2314), 1, sym__space, - STATE(4470), 1, + STATE(4426), 1, sym_comment, - ACTIONS(2337), 13, + ACTIONS(2312), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379414,14 +377848,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [165996] = 4, + [165181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(5613), 1, sym__space, - STATE(4471), 1, + STATE(4427), 1, sym_comment, - ACTIONS(1937), 13, + ACTIONS(5611), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379435,84 +377869,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166021] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4472), 1, - sym_comment, - ACTIONS(1757), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 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, - [166046] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7848), 1, - aux_sym__immediate_decimal_token2, - STATE(4473), 1, - sym_comment, - ACTIONS(1667), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 10, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [166073] = 6, - ACTIONS(251), 1, + [165206] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2184), 1, - anon_sym_DASH2, - STATE(4474), 1, + ACTIONS(2409), 1, + sym__space, + STATE(4428), 1, sym_comment, - ACTIONS(2186), 11, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [166102] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(2407), 13, sym__newline, - ACTIONS(7850), 1, - anon_sym_catch, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4475), 1, - sym_comment, - ACTIONS(1276), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379524,35 +377889,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166131] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4476), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 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, - [166156] = 4, + anon_sym_RBRACE, + [165231] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2395), 1, + ACTIONS(2086), 1, sym__space, - STATE(4477), 1, + STATE(4429), 1, sym_comment, - ACTIONS(2393), 13, + ACTIONS(2080), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379560,72 +377905,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_GT_PIPE, anon_sym_e_GT_PIPE, anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [166181] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4478), 1, - sym_comment, - ACTIONS(1861), 2, - anon_sym_DASH2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1863), 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, - [166206] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3995), 1, - anon_sym_DOLLAR, - ACTIONS(7699), 1, - sym__newline, - ACTIONS(7701), 1, - sym__space, - ACTIONS(7703), 1, - anon_sym_DASH_DASH, - ACTIONS(7705), 1, - anon_sym_DASH2, - ACTIONS(7707), 1, - anon_sym_LBRACE, - STATE(1803), 1, - sym_block, - STATE(1804), 1, - sym_val_closure, - STATE(4479), 1, - sym_comment, - STATE(5519), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7266), 1, - sym__flag, - STATE(777), 2, - sym__blosure, - sym_val_variable, - STATE(4399), 2, - sym_short_flag, - sym_long_flag, - [166251] = 4, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [165256] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2429), 1, + ACTIONS(2423), 1, sym__space, - STATE(4480), 1, + STATE(4430), 1, sym_comment, - ACTIONS(2427), 13, + ACTIONS(2421), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379639,14 +377932,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166276] = 4, + [165281] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5013), 1, + sym__newline, + ACTIONS(7778), 1, + anon_sym_else, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4431), 1, + sym_comment, + ACTIONS(1276), 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, + [165310] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2477), 1, + ACTIONS(5076), 1, sym__space, - STATE(4481), 1, + STATE(4432), 1, sym_comment, - ACTIONS(2475), 13, + ACTIONS(5078), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379660,14 +377976,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166301] = 4, + [165335] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, + ACTIONS(4991), 1, sym__space, - STATE(4482), 1, + STATE(4433), 1, sym_comment, - ACTIONS(2431), 13, + ACTIONS(4993), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379681,14 +377997,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166326] = 4, + [165360] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2437), 1, + ACTIONS(2435), 1, sym__space, - STATE(4483), 1, + STATE(4434), 1, sym_comment, - ACTIONS(2435), 13, + ACTIONS(2433), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379702,14 +378018,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166351] = 4, + [165385] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, + ACTIONS(2336), 1, sym__space, - STATE(4484), 1, + STATE(4435), 1, sym_comment, - ACTIONS(1004), 13, + ACTIONS(2334), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379723,18 +378039,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166376] = 6, + [165410] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7853), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(7858), 1, + ACTIONS(7781), 1, anon_sym_else, - STATE(4402), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4485), 1, + STATE(4436), 1, sym_comment, - ACTIONS(7856), 11, + ACTIONS(1276), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379746,18 +378062,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166405] = 6, - ACTIONS(251), 1, + [165439] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7860), 1, - sym__newline, - ACTIONS(7865), 1, - anon_sym_catch, - STATE(4475), 1, - aux_sym_shebang_repeat1, - STATE(4486), 1, + ACTIONS(1000), 1, + sym__space, + STATE(4437), 1, sym_comment, - ACTIONS(7863), 11, + ACTIONS(1004), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379769,18 +378082,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166434] = 6, + anon_sym_RBRACE, + [165464] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7867), 1, + ACTIONS(7784), 1, sym__newline, - ACTIONS(7872), 1, - anon_sym_catch, - STATE(4487), 1, + ACTIONS(7789), 1, + anon_sym_else, + STATE(4438), 1, sym_comment, STATE(4497), 1, aux_sym_shebang_repeat1, - ACTIONS(7870), 11, + ACTIONS(7787), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379792,14 +378106,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166463] = 4, + [165493] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2343), 1, + ACTIONS(2324), 1, sym__space, - STATE(4488), 1, + STATE(4439), 1, sym_comment, - ACTIONS(2341), 13, + ACTIONS(2322), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379813,18 +378127,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166488] = 6, + [165518] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(7791), 1, sym__newline, - ACTIONS(7874), 1, + ACTIONS(7796), 1, anon_sym_else, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4489), 1, + STATE(4440), 1, sym_comment, - ACTIONS(1276), 11, + STATE(4499), 1, + aux_sym_shebang_repeat1, + ACTIONS(7794), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379836,14 +378150,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166517] = 4, + [165547] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7800), 1, + anon_sym_LT, + ACTIONS(7802), 1, + anon_sym_DASH2, + STATE(4441), 1, + sym_comment, + ACTIONS(7798), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [165574] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7802), 1, + anon_sym_DASH2, + ACTIONS(7804), 1, + anon_sym_LT, + STATE(4442), 1, + sym_comment, + ACTIONS(7798), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [165601] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(7808), 1, sym__space, - STATE(4490), 1, + STATE(4443), 1, sym_comment, - ACTIONS(2479), 13, + ACTIONS(7806), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379857,14 +378215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166542] = 4, + [165626] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(5625), 1, sym__space, - STATE(4491), 1, + STATE(4444), 1, sym_comment, - ACTIONS(2455), 13, + ACTIONS(5623), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379878,14 +378236,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166567] = 4, + [165651] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7879), 1, + ACTIONS(2467), 1, sym__space, - STATE(4492), 1, + STATE(4445), 1, sym_comment, - ACTIONS(7877), 13, + ACTIONS(2465), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379899,15 +378257,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166592] = 4, + [165676] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5051), 1, + ACTIONS(7686), 1, + sym__newline, + ACTIONS(7688), 1, sym__space, - STATE(4493), 1, + STATE(4375), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4446), 1, sym_comment, - ACTIONS(5053), 13, - sym__newline, + ACTIONS(7810), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -379919,15 +378280,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, - [166617] = 4, + [165705] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2150), 1, + ACTIONS(2443), 1, sym__space, - STATE(4494), 1, + STATE(4447), 1, sym_comment, - ACTIONS(2144), 13, + ACTIONS(2441), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379941,14 +378301,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166642] = 4, + [165730] = 14, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2399), 1, + ACTIONS(3968), 1, + anon_sym_DOLLAR, + ACTIONS(7727), 1, + sym__newline, + ACTIONS(7729), 1, sym__space, - STATE(4495), 1, + ACTIONS(7731), 1, + anon_sym_DASH_DASH, + ACTIONS(7733), 1, + anon_sym_DASH2, + ACTIONS(7735), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym_block, + STATE(1734), 1, + sym_val_closure, + STATE(4448), 1, + sym_comment, + STATE(5542), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7255), 1, + sym__flag, + STATE(757), 2, + sym__blosure, + sym_val_variable, + STATE(4389), 2, + sym_short_flag, + sym_long_flag, + [165775] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5042), 1, + sym__space, + STATE(4449), 1, sym_comment, - ACTIONS(2397), 13, + ACTIONS(5044), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379962,14 +378353,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166667] = 4, + [165800] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2158), 1, + ACTIONS(5046), 1, sym__space, - STATE(4496), 1, + STATE(4450), 1, sym_comment, - ACTIONS(2152), 13, + ACTIONS(5048), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -379983,18 +378374,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166692] = 6, + [165825] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7881), 1, + ACTIONS(7812), 1, sym__newline, - ACTIONS(7886), 1, + ACTIONS(7817), 1, anon_sym_catch, - STATE(4463), 1, + STATE(4417), 1, aux_sym_shebang_repeat1, - STATE(4497), 1, + STATE(4451), 1, + sym_comment, + ACTIONS(7815), 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, + [165854] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7819), 1, + sym__newline, + ACTIONS(7824), 1, + anon_sym_else, + STATE(4452), 1, sym_comment, - ACTIONS(7884), 11, + STATE(4502), 1, + aux_sym_shebang_repeat1, + ACTIONS(7822), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380006,14 +378420,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166721] = 4, + [165883] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, + ACTIONS(2014), 1, sym__space, - STATE(4498), 1, + STATE(4453), 1, sym_comment, - ACTIONS(2415), 13, + ACTIONS(2012), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380027,18 +378441,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166746] = 6, - ACTIONS(3), 1, + [165908] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7739), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(7741), 1, - sym__space, - STATE(4499), 1, + ACTIONS(7826), 1, + anon_sym_catch, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4454), 1, sym_comment, - STATE(4501), 1, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7888), 11, + ACTIONS(1276), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380050,14 +378464,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166775] = 4, + [165937] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5037), 1, + ACTIONS(2473), 1, sym__space, - STATE(4500), 1, + STATE(4455), 1, sym_comment, - ACTIONS(5039), 13, + ACTIONS(2471), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380071,17 +378485,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166800] = 5, + [165962] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7890), 1, - sym__newline, - ACTIONS(7893), 1, + ACTIONS(7262), 1, sym__space, - STATE(4501), 2, + STATE(4456), 1, sym_comment, - aux_sym__command_parenthesized_repeat1, - ACTIONS(7896), 11, + ACTIONS(7260), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380093,14 +378505,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166827] = 4, + anon_sym_RBRACE, + [165987] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7900), 1, - anon_sym_catch, - STATE(4502), 1, + ACTIONS(7829), 1, + sym__newline, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(4457), 1, + sym_comment, + STATE(5010), 1, + aux_sym_shebang_repeat1, + ACTIONS(7832), 2, + anon_sym_SEMI, + anon_sym_RPAREN, + ACTIONS(2506), 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, + [166018] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2328), 1, + sym__space, + STATE(4458), 1, sym_comment, - ACTIONS(7898), 13, + ACTIONS(2326), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380114,19 +378551,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [166852] = 6, + [166043] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(7542), 1, sym__newline, - ACTIONS(7902), 1, - anon_sym_else, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4503), 1, + STATE(749), 1, + aux_sym__pipe_separator, + STATE(4459), 1, sym_comment, - ACTIONS(1276), 11, + STATE(5010), 1, + aux_sym_shebang_repeat1, + ACTIONS(7545), 2, + ts_builtin_sym_end, anon_sym_SEMI, + ACTIONS(2506), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -380136,42 +378575,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, - [166881] = 6, - ACTIONS(251), 1, + [166074] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2273), 1, - anon_sym_DASH2, - STATE(4504), 1, + ACTIONS(2340), 1, + sym__space, + STATE(4460), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2275), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2338), 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, - [166910] = 6, + anon_sym_RBRACE, + [166099] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2217), 1, + ACTIONS(2280), 1, anon_sym_DASH2, - STATE(4505), 1, + ACTIONS(7834), 1, + anon_sym_LBRACK2, + STATE(4461), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2219), 11, + ACTIONS(2284), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -380183,14 +378617,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [166939] = 3, + anon_sym_LBRACE, + [166126] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4506), 1, + ACTIONS(2439), 1, + sym__space, + STATE(4462), 1, sym_comment, - ACTIONS(5659), 14, + ACTIONS(2437), 13, sym__newline, - sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380201,20 +378637,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_COLON2, - [166962] = 6, + [166151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7739), 1, - sym__newline, - ACTIONS(7741), 1, + ACTIONS(2451), 1, sym__space, - STATE(4423), 1, - aux_sym__command_parenthesized_repeat1, - STATE(4507), 1, + STATE(4463), 1, sym_comment, - ACTIONS(7905), 11, + ACTIONS(2449), 13, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380226,60 +378659,59 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [166991] = 6, - ACTIONS(251), 1, + anon_sym_RBRACE, + [166176] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1786), 1, - anon_sym_DASH2, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - STATE(4508), 1, + STATE(4464), 1, sym_comment, - ACTIONS(1794), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(5647), 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, - [167020] = 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_RBRACE, + anon_sym_COLON2, + [166199] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2221), 1, - anon_sym_DASH2, - STATE(4509), 1, - sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2223), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7836), 1, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + STATE(751), 1, + aux_sym__pipe_separator, + STATE(4465), 1, + sym_comment, + STATE(5010), 1, + aux_sym_shebang_repeat1, + ACTIONS(7839), 2, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [167049] = 4, + ACTIONS(2506), 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, + [166230] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2166), 1, + ACTIONS(2348), 1, sym__space, - STATE(4510), 1, + STATE(4466), 1, sym_comment, - ACTIONS(2160), 13, + ACTIONS(2346), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380293,64 +378725,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167074] = 6, + [166255] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2225), 1, - anon_sym_DASH2, - STATE(4511), 1, - sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - ACTIONS(2227), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7841), 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, - [167103] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7188), 1, - anon_sym_DOT, - ACTIONS(7190), 1, - aux_sym__immediate_decimal_token2, - STATE(4512), 1, + ACTIONS(7846), 1, + anon_sym_else, + STATE(4431), 1, + aux_sym_shebang_repeat1, + STATE(4467), 1, sym_comment, - ACTIONS(1725), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1727), 10, - anon_sym_EQ, - sym__newline, + ACTIONS(7844), 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, - [167132] = 6, + [166284] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(7848), 1, sym__newline, - ACTIONS(7907), 1, + ACTIONS(7853), 1, anon_sym_else, - STATE(1706), 1, + STATE(4438), 1, aux_sym_shebang_repeat1, - STATE(4513), 1, + STATE(4468), 1, sym_comment, - ACTIONS(1276), 11, + ACTIONS(7851), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380362,61 +378771,63 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [167161] = 6, - ACTIONS(251), 1, + [166313] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(7647), 1, - anon_sym_DASH2, - STATE(4514), 1, + ACTIONS(7855), 1, + anon_sym_LBRACK2, + STATE(4469), 1, sym_comment, - STATE(7241), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7645), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(2284), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2280), 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, - [167190] = 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, + [166340] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7811), 1, - anon_sym_AT, - ACTIONS(7912), 1, - anon_sym_DASH2, - STATE(4515), 1, - sym_comment, - STATE(4880), 1, - sym_param_cmd, - ACTIONS(7910), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7857), 1, sym__newline, + ACTIONS(7862), 1, + anon_sym_else, + STATE(4440), 1, + aux_sym_shebang_repeat1, + STATE(4470), 1, + sym_comment, + ACTIONS(7860), 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, - [167219] = 4, - ACTIONS(3), 1, + [166369] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2387), 1, - sym__space, - STATE(4516), 1, - sym_comment, - ACTIONS(2385), 13, + ACTIONS(5013), 1, sym__newline, + ACTIONS(7864), 1, + anon_sym_catch, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4471), 1, + sym_comment, + ACTIONS(1276), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380428,42 +378839,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167244] = 6, + [166398] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7811), 1, - anon_sym_AT, - ACTIONS(7916), 1, - anon_sym_DASH2, - STATE(4517), 1, - sym_comment, - STATE(4877), 1, - sym_param_cmd, - ACTIONS(7914), 11, - anon_sym_EQ, - sym_identifier, + ACTIONS(7867), 1, sym__newline, + ACTIONS(7872), 1, + anon_sym_catch, + STATE(4454), 1, + aux_sym_shebang_repeat1, + STATE(4472), 1, + sym_comment, + ACTIONS(7870), 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, - [167273] = 6, + [166427] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7747), 1, + ACTIONS(2447), 1, sym__space, - ACTIONS(7918), 1, - ts_builtin_sym_end, - STATE(4411), 1, - aux_sym_command_repeat1, - STATE(4518), 1, + STATE(4473), 1, sym_comment, - ACTIONS(7678), 11, + ACTIONS(2445), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380475,59 +378881,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, - [167302] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166452] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym__unquoted_in_record_token4, - STATE(4519), 1, + ACTIONS(1837), 1, + sym__space, + STATE(4474), 1, sym_comment, - ACTIONS(2229), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2233), 6, + ACTIONS(1835), 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, - [167331] = 5, + anon_sym_RBRACE, + [166477] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2318), 1, - anon_sym_DASH2, - ACTIONS(7920), 1, - anon_sym_LBRACK2, - STATE(4520), 1, + ACTIONS(7876), 1, + anon_sym_catch, + STATE(4475), 1, sym_comment, - ACTIONS(2322), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7874), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [167358] = 4, + anon_sym_RBRACE, + [166502] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2409), 1, + ACTIONS(2053), 1, sym__space, - STATE(4521), 1, + STATE(4476), 1, sym_comment, - ACTIONS(2407), 13, + ACTIONS(2047), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380541,14 +378946,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167383] = 4, + [166527] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(2302), 1, sym__space, - STATE(4522), 1, + STATE(4477), 1, sym_comment, - ACTIONS(2349), 13, + ACTIONS(2300), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380562,14 +378967,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167408] = 4, + [166552] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(2078), 1, sym__space, - STATE(4523), 1, + STATE(4478), 1, sym_comment, - ACTIONS(2381), 13, + ACTIONS(2072), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380583,14 +378988,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167433] = 4, + [166577] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7924), 1, - sym__space, - STATE(4524), 1, + STATE(4479), 1, sym_comment, - ACTIONS(7922), 13, + ACTIONS(4975), 3, + ts_builtin_sym_end, + sym__space, + anon_sym_LPAREN2, + ACTIONS(4977), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380602,16 +379009,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, - [167458] = 4, + [166602] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2413), 1, + ACTIONS(1845), 1, sym__space, - STATE(4525), 1, + STATE(4480), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(1843), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380625,14 +379030,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167483] = 4, + [166627] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2413), 1, + ACTIONS(2306), 1, sym__space, - STATE(4526), 1, + STATE(4481), 1, sym_comment, - ACTIONS(2411), 13, + ACTIONS(2304), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380646,14 +379051,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167508] = 4, + [166652] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5027), 1, + ACTIONS(1849), 1, sym__space, - STATE(4527), 1, + STATE(4482), 1, sym_comment, - ACTIONS(5029), 13, + ACTIONS(1847), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380667,14 +379072,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167533] = 4, + [166677] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5651), 1, + ACTIONS(2310), 1, sym__space, - STATE(4528), 1, + STATE(4483), 1, sym_comment, - ACTIONS(5649), 13, + ACTIONS(2308), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380688,14 +379093,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167558] = 4, + [166702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5031), 1, + ACTIONS(2483), 1, sym__space, - STATE(4529), 1, + STATE(4484), 1, sym_comment, - ACTIONS(5033), 13, + ACTIONS(2481), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380709,41 +379114,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167583] = 6, + [166727] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_record_token4, - STATE(4530), 1, + ACTIONS(2352), 1, + sym__space, + STATE(4485), 1, sym_comment, - ACTIONS(2237), 6, - anon_sym_EQ, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2241), 6, + ACTIONS(2350), 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, - [167612] = 6, + anon_sym_RBRACE, + [166752] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(7676), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, anon_sym_DASH2, - STATE(4531), 1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + STATE(4486), 1, sym_comment, - STATE(7241), 1, - sym__expr_parenthesized_immediate, - ACTIONS(7674), 11, + ACTIONS(1813), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -380755,14 +379158,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [167641] = 4, + [166781] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5661), 1, + ACTIONS(2487), 1, sym__space, - STATE(4532), 1, + STATE(4487), 1, sym_comment, - ACTIONS(5659), 13, + ACTIONS(2485), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380776,14 +379179,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167666] = 4, + [166806] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5055), 1, + ACTIONS(1861), 1, sym__space, - STATE(4533), 1, + STATE(4488), 1, sym_comment, - ACTIONS(5057), 13, + ACTIONS(1859), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380797,14 +379200,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167691] = 4, + [166831] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2176), 1, + ACTIONS(2360), 1, sym__space, - STATE(4534), 1, + STATE(4489), 1, sym_comment, - ACTIONS(2170), 13, + ACTIONS(2358), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380818,41 +379221,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167716] = 6, + [166856] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_record_token4, - STATE(4535), 1, + STATE(4490), 1, + sym_comment, + ACTIONS(5617), 14, + sym__newline, + sym__space, + anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + anon_sym_COLON2, + [166879] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7706), 1, + anon_sym_AT, + ACTIONS(7880), 1, + anon_sym_DASH2, + STATE(4491), 1, sym_comment, - ACTIONS(2245), 6, + STATE(4867), 1, + sym_param_cmd, + ACTIONS(7878), 11, anon_sym_EQ, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_DASH2, - ACTIONS(2247), 6, sym__newline, anon_sym_PIPE, anon_sym_COLON, anon_sym_RBRACK, anon_sym_RPAREN, anon_sym_COMMA, - [167745] = 6, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [166908] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7747), 1, + ACTIONS(2364), 1, sym__space, - ACTIONS(7926), 1, - ts_builtin_sym_end, - STATE(4464), 1, - aux_sym_command_repeat1, - STATE(4536), 1, + STATE(4492), 1, sym_comment, - ACTIONS(7515), 11, + ACTIONS(2362), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380864,14 +379283,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, - [167774] = 3, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [166933] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4537), 1, + ACTIONS(7882), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7884), 1, + aux_sym__immediate_decimal_token2, + STATE(4493), 1, sym_comment, - ACTIONS(5641), 14, + ACTIONS(1597), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 9, + ts_builtin_sym_end, sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [166962] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7886), 1, + anon_sym_EQ2, + STATE(4494), 1, + sym_comment, + ACTIONS(4914), 2, + ts_builtin_sym_end, sym__space, + ACTIONS(4916), 11, + sym__newline, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380882,16 +379330,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, - [167797] = 4, + [166989] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(1865), 1, sym__space, - STATE(4538), 1, + STATE(4495), 1, sym_comment, - ACTIONS(1957), 13, + ACTIONS(1863), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380905,16 +379351,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167822] = 4, + [167014] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4539), 1, - sym_comment, - ACTIONS(4996), 3, - ts_builtin_sym_end, + ACTIONS(2463), 1, sym__space, - anon_sym_LPAREN2, - ACTIONS(4998), 11, + STATE(4496), 1, + sym_comment, + ACTIONS(2461), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -380926,18 +379370,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, - [167847] = 5, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167039] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym_unquoted_token2, - STATE(4540), 1, - sym_comment, - ACTIONS(1693), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1681), 11, + ACTIONS(5013), 1, sym__newline, + ACTIONS(7888), 1, + anon_sym_else, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4497), 1, + sym_comment, + ACTIONS(1276), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380948,15 +379394,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, - [167874] = 4, + anon_sym_RPAREN, + [167068] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2449), 1, + ACTIONS(7686), 1, + sym__newline, + ACTIONS(7688), 1, sym__space, - STATE(4541), 1, + STATE(4392), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4498), 1, sym_comment, - ACTIONS(2447), 13, - sym__newline, + ACTIONS(7891), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -380968,44 +379418,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_RBRACE, - [167899] = 12, + [167097] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(7928), 1, - anon_sym_DOT, - ACTIONS(7932), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, - aux_sym__immediate_decimal_token5, - STATE(4542), 1, + ACTIONS(5013), 1, + sym__newline, + ACTIONS(7893), 1, + anon_sym_else, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4499), 1, sym_comment, - STATE(5535), 1, - sym__immediate_decimal, - ACTIONS(7930), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1553), 3, + ACTIONS(1276), 11, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [167940] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + [167126] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5657), 1, + ACTIONS(1877), 1, sym__space, - STATE(4543), 1, + STATE(4500), 1, sym_comment, - ACTIONS(5655), 13, + ACTIONS(1875), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381019,14 +379462,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167965] = 4, + [167151] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(5649), 1, sym__space, - STATE(4544), 1, + STATE(4501), 1, sym_comment, - ACTIONS(2439), 13, + ACTIONS(5647), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381040,15 +379483,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [167990] = 4, - ACTIONS(3), 1, + [167176] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2359), 1, - sym__space, - STATE(4545), 1, - sym_comment, - ACTIONS(2357), 13, + ACTIONS(7896), 1, sym__newline, + ACTIONS(7901), 1, + anon_sym_else, + STATE(4436), 1, + aux_sym_shebang_repeat1, + STATE(4502), 1, + sym_comment, + ACTIONS(7899), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381060,15 +379506,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, - [168015] = 4, + [167205] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2367), 1, + ACTIONS(2332), 1, sym__space, - STATE(4546), 1, + STATE(4503), 1, sym_comment, - ACTIONS(2365), 13, + ACTIONS(2330), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381082,12 +379527,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168040] = 3, + [167230] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4547), 1, + STATE(4504), 1, sym_comment, - ACTIONS(5645), 14, + ACTIONS(5623), 14, sym__newline, sym__space, anon_sym_SEMI, @@ -381102,14 +379547,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, anon_sym_COLON2, - [168063] = 4, + [167253] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5041), 1, + ACTIONS(2455), 1, sym__space, - STATE(4548), 1, + STATE(4505), 1, sym_comment, - ACTIONS(5043), 13, + ACTIONS(2453), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381123,14 +379568,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168088] = 4, + [167278] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7938), 1, + ACTIONS(7903), 1, + anon_sym_DOT, + ACTIONS(7905), 1, + aux_sym__immediate_decimal_token2, + STATE(4506), 1, + sym_comment, + ACTIONS(1605), 3, anon_sym_DASH2, - STATE(4549), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [167307] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7655), 1, + aux_sym__immediate_decimal_token2, + STATE(4507), 1, + sym_comment, + ACTIONS(1605), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [167334] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4508), 1, sym_comment, - ACTIONS(7936), 12, + ACTIONS(1749), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381140,18 +379631,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168112] = 4, + anon_sym_LPAREN2, + [167359] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4550), 1, - sym_comment, - ACTIONS(2457), 2, - ts_builtin_sym_end, + ACTIONS(2375), 1, sym__space, - ACTIONS(2455), 11, + STATE(4509), 1, + sym_comment, + ACTIONS(2373), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381163,15 +379653,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168136] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167384] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4551), 1, + STATE(4510), 1, sym_comment, - ACTIONS(1935), 2, + ACTIONS(4971), 3, ts_builtin_sym_end, sym__space, - ACTIONS(1933), 11, + anon_sym_LPAREN2, + ACTIONS(4973), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381183,15 +379676,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, - [168160] = 4, - ACTIONS(3), 1, + [167409] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4552), 1, + STATE(4511), 1, sym_comment, - ACTIONS(2091), 2, - ts_builtin_sym_end, + ACTIONS(1731), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1733), 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, + [167434] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2379), 1, sym__space, - ACTIONS(2089), 11, + STATE(4512), 1, + sym_comment, + ACTIONS(2377), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381203,15 +379716,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, - [168184] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167459] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4553), 1, - sym_comment, - ACTIONS(7879), 2, - ts_builtin_sym_end, + ACTIONS(2065), 1, sym__space, - ACTIONS(7877), 11, + STATE(4513), 1, + sym_comment, + ACTIONS(2059), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381223,16 +379737,130 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168208] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167484] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7907), 1, + aux_sym__immediate_decimal_token2, + STATE(4514), 1, + sym_comment, + ACTIONS(1685), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [167511] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(7629), 1, + anon_sym_DASH2, + STATE(4515), 1, + sym_comment, + STATE(7325), 1, + sym__expr_parenthesized_immediate, + ACTIONS(7627), 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, + [167540] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2188), 1, + anon_sym_DASH2, + STATE(4516), 1, + sym_comment, + ACTIONS(2190), 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, + [167569] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1793), 1, + anon_sym_DASH2, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym__unquoted_in_record_token2, + STATE(4517), 1, + sym_comment, + ACTIONS(1801), 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, + [167598] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + anon_sym_DASH2, + STATE(4518), 1, + sym_comment, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2242), 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, + [167627] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4554), 1, + STATE(4519), 1, sym_comment, - ACTIONS(2003), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2001), 11, + ACTIONS(5607), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381243,16 +379871,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, - [168232] = 4, + anon_sym_RBRACE, + anon_sym_COLON2, + [167650] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + anon_sym_DASH2, + STATE(4520), 1, + sym_comment, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2246), 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, + [167679] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(4555), 1, + STATE(4521), 1, sym_comment, - ACTIONS(2417), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2415), 11, + ACTIONS(5611), 14, sym__newline, + sym__space, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381263,12 +379914,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, - [168256] = 3, - ACTIONS(251), 1, + anon_sym_RBRACE, + anon_sym_COLON2, + [167702] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4556), 1, + ACTIONS(5050), 1, + sym__space, + STATE(4522), 1, sym_comment, - ACTIONS(6780), 13, + ACTIONS(5052), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381282,15 +379937,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [168278] = 4, - ACTIONS(251), 1, + [167727] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7942), 1, - anon_sym_else, - STATE(4557), 1, + ACTIONS(5054), 1, + sym__space, + STATE(4523), 1, sym_comment, - ACTIONS(7940), 12, - ts_builtin_sym_end, + ACTIONS(5056), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381302,46 +379956,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, - [168302] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167752] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + STATE(4524), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7569), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7653), 1, - anon_sym_RBRACK, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4558), 1, - sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [168348] = 4, + anon_sym_LPAREN2, + [167777] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4559), 1, - sym_comment, - ACTIONS(5051), 2, - ts_builtin_sym_end, + ACTIONS(2383), 1, sym__space, - ACTIONS(5053), 11, + STATE(4525), 1, + sym_comment, + ACTIONS(2381), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381353,46 +379998,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, - [168372] = 15, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7672), 1, - anon_sym_PIPE, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4560), 1, - sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [168418] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167802] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4561), 1, - sym_comment, - ACTIONS(7924), 2, - ts_builtin_sym_end, + ACTIONS(2387), 1, sym__space, - ACTIONS(7922), 11, + STATE(4526), 1, + sym_comment, + ACTIONS(2385), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381404,34 +380019,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, - [168442] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [167827] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4562), 1, + STATE(4527), 1, sym_comment, - ACTIONS(2413), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2411), 11, + ACTIONS(1817), 2, + anon_sym_DASH2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 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, - [168466] = 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, + anon_sym_LPAREN2, + [167852] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(7706), 1, + anon_sym_AT, + ACTIONS(7911), 1, anon_sym_DASH2, - STATE(4563), 1, + STATE(4528), 1, sym_comment, - ACTIONS(1935), 12, + STATE(4798), 1, + sym_param_cmd, + ACTIONS(7909), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -381443,17 +380065,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [168490] = 4, + [167881] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(4564), 1, - sym_comment, - ACTIONS(2477), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2475), 11, + ACTIONS(7686), 1, sym__newline, + ACTIONS(7688), 1, + sym__space, + STATE(4498), 1, + aux_sym__command_parenthesized_repeat1, + STATE(4529), 1, + sym_comment, + ACTIONS(7913), 11, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -381464,35 +380087,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, - [168514] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + [167910] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4565), 1, + ACTIONS(7706), 1, + anon_sym_AT, + ACTIONS(7911), 1, + anon_sym_DASH2, + STATE(4530), 1, sym_comment, - ACTIONS(2429), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2427), 11, + STATE(4799), 1, + sym_param_cmd, + ACTIONS(7909), 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, - [168538] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [167939] = 12, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4566), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(7915), 1, + anon_sym_DOT, + ACTIONS(7919), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7921), 1, + aux_sym__immediate_decimal_token5, + STATE(4531), 1, sym_comment, - ACTIONS(2011), 2, - ts_builtin_sym_end, + STATE(5455), 1, + sym__immediate_decimal, + ACTIONS(7917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5750), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [167980] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2391), 1, sym__space, - ACTIONS(2009), 11, + STATE(4532), 1, + sym_comment, + ACTIONS(2389), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381504,46 +380159,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, - [168562] = 15, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168005] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2248), 1, + anon_sym_DASH2, + STATE(4533), 1, + sym_comment, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2250), 11, + anon_sym_EQ, sym_identifier, - ACTIONS(7569), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + [168034] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2252), 1, anon_sym_DASH2, - ACTIONS(7944), 1, - anon_sym_PIPE, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4567), 1, + STATE(4534), 1, sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [168608] = 4, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + ACTIONS(2254), 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, + [168063] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4568), 1, - sym_comment, - ACTIONS(2375), 2, - ts_builtin_sym_end, + ACTIONS(2344), 1, sym__space, - ACTIONS(2373), 11, + STATE(4535), 1, + sym_comment, + ACTIONS(2342), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381555,15 +380226,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, - [168632] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [168088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4569), 1, + STATE(4536), 1, sym_comment, - ACTIONS(2379), 2, + ACTIONS(2463), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2377), 11, + ACTIONS(2461), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381575,33 +380248,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, - [168656] = 5, - ACTIONS(251), 1, + [168112] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7846), 1, - aux_sym__immediate_decimal_token2, - STATE(4570), 1, + STATE(4537), 1, sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 9, + ACTIONS(5066), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(5068), 11, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [168682] = 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, + [168136] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4571), 1, + ACTIONS(3398), 1, + anon_sym_COLON2, + STATE(4538), 1, sym_comment, - ACTIONS(7946), 13, + ACTIONS(7923), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381613,16 +380287,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, anon_sym_RBRACE, - [168704] = 4, + [168160] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7801), 1, + ACTIONS(1843), 1, anon_sym_DASH2, - STATE(4572), 1, + STATE(4539), 1, sym_comment, - ACTIONS(7797), 12, + ACTIONS(1845), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381632,17 +380305,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [168728] = 4, + anon_sym_LBRACE, + [168184] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(2346), 1, anon_sym_DASH2, - STATE(4573), 1, + STATE(4540), 1, sym_comment, - ACTIONS(2339), 12, + ACTIONS(2348), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381655,54 +380328,55 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [168752] = 3, + [168208] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4574), 1, + ACTIONS(2481), 1, + anon_sym_DASH2, + STATE(4541), 1, sym_comment, - ACTIONS(7948), 13, + ACTIONS(2483), 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, - [168774] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [168232] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - STATE(4575), 1, + ACTIONS(2485), 1, + anon_sym_DASH2, + STATE(4542), 1, sym_comment, - ACTIONS(7950), 12, + ACTIONS(2487), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [168798] = 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, + anon_sym_LBRACE, + [168256] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4576), 1, + STATE(4543), 1, sym_comment, - ACTIONS(2383), 2, + ACTIONS(5619), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2381), 11, + ACTIONS(5617), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381714,34 +380388,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, - [168822] = 3, + [168280] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4577), 1, + ACTIONS(2373), 1, + anon_sym_DASH2, + STATE(4544), 1, sym_comment, - ACTIONS(7952), 13, + ACTIONS(2375), 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, - [168844] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [168304] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4578), 1, + STATE(4545), 1, sym_comment, - ACTIONS(5037), 2, + ACTIONS(2310), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5039), 11, + ACTIONS(2308), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381753,15 +380428,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, - [168868] = 4, + [168328] = 13, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(7925), 1, + anon_sym_DOLLAR, + ACTIONS(7927), 1, + anon_sym_DASH_DASH, + ACTIONS(7929), 1, + anon_sym_DASH2, + ACTIONS(7931), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym_block, + STATE(1734), 1, + sym_val_closure, + STATE(4546), 1, + sym_comment, + STATE(4858), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, + sym__flag, + STATE(767), 2, + sym__blosure, + sym_val_variable, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [168370] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4579), 1, + STATE(4547), 1, sym_comment, - ACTIONS(2409), 2, + ACTIONS(2477), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2407), 11, + ACTIONS(2475), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381773,15 +380477,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168892] = 4, + [168394] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4580), 1, + STATE(4548), 1, sym_comment, - ACTIONS(5041), 2, + ACTIONS(7694), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5043), 11, + ACTIONS(7692), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381793,15 +380497,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168916] = 4, + [168418] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4581), 1, + STATE(4549), 1, sym_comment, - ACTIONS(2387), 2, + ACTIONS(2014), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2385), 11, + ACTIONS(2012), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381813,80 +380517,122 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [168940] = 11, + [168442] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2461), 1, + anon_sym_DASH2, + STATE(4550), 1, + sym_comment, + ACTIONS(2463), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [168466] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7956), 1, + ACTIONS(7933), 1, + anon_sym_DOT, + ACTIONS(7937), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7958), 1, + ACTIONS(7939), 1, aux_sym__immediate_decimal_token5, - STATE(4582), 1, + STATE(4551), 1, sym_comment, - STATE(6197), 1, + STATE(5581), 1, sym__immediate_decimal, - ACTIONS(7954), 2, + ACTIONS(1543), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(7935), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2050), 2, + STATE(5750), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1629), 3, + [168506] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7943), 1, + anon_sym_DASH2, + STATE(4552), 1, + sym_comment, + ACTIONS(7941), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [168978] = 4, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168530] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - STATE(4583), 1, + ACTIONS(7947), 1, + anon_sym_DASH2, + STATE(4553), 1, sym_comment, - ACTIONS(7960), 12, + ACTIONS(7945), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RBRACE, - [169002] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168554] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4584), 1, + ACTIONS(7951), 1, + anon_sym_DASH2, + STATE(4554), 1, sym_comment, - ACTIONS(7962), 13, + ACTIONS(7949), 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, - [169024] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [168578] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2281), 1, + ACTIONS(2342), 1, anon_sym_DASH2, - STATE(4585), 1, + STATE(4555), 1, sym_comment, - ACTIONS(2283), 12, + ACTIONS(2344), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -381898,47 +380644,87 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [169048] = 15, + anon_sym_LBRACE, + [168602] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(1835), 1, + anon_sym_DASH2, + STATE(4556), 1, + sym_comment, + ACTIONS(1837), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7569), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + anon_sym_LBRACE, + [168626] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2338), 1, anon_sym_DASH2, - ACTIONS(7964), 1, + STATE(4557), 1, + sym_comment, + ACTIONS(2340), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(3904), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [168650] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7953), 1, + anon_sym_RBRACK, + STATE(3889), 1, sym_param_long_flag, - STATE(4034), 1, + STATE(4016), 1, sym__param_name, - STATE(4338), 1, + STATE(4363), 1, aux_sym_parameter_parens_repeat1, - STATE(4586), 1, + STATE(4558), 1, sym_comment, - STATE(4828), 1, + STATE(4815), 1, sym_param_rest, - STATE(4833), 1, + STATE(4822), 1, sym_param_opt, - STATE(4840), 1, + STATE(4827), 1, sym_param_short_flag, - STATE(5284), 1, + STATE(5323), 1, sym_parameter, - [169094] = 4, + [168696] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4587), 1, + STATE(4559), 1, sym_comment, - ACTIONS(2391), 2, + ACTIONS(2467), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2389), 11, + ACTIONS(2465), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -381950,75 +380736,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, - [169118] = 4, - ACTIONS(3), 1, + [168720] = 15, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4588), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7955), 1, + anon_sym_RPAREN, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4560), 1, sym_comment, - ACTIONS(2395), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2393), 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, - [169142] = 4, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [168766] = 15, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4589), 1, - sym_comment, - ACTIONS(7966), 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(7551), 1, + sym_identifier, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(7643), 1, anon_sym_RPAREN, - [169166] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4590), 1, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4561), 1, sym_comment, - ACTIONS(5647), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5645), 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, - [169190] = 4, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [168812] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4591), 1, + STATE(4562), 1, sym_comment, - ACTIONS(2399), 2, + ACTIONS(2473), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2397), 11, + ACTIONS(2471), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382030,15 +380818,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169214] = 4, + [168836] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4592), 1, + STATE(4563), 1, sym_comment, - ACTIONS(5657), 2, + ACTIONS(1861), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5655), 11, + ACTIONS(1859), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382050,14 +380838,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, - [169238] = 4, + [168860] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(2377), 1, anon_sym_DASH2, - STATE(4593), 1, + STATE(4564), 1, sym_comment, - ACTIONS(2469), 12, + ACTIONS(2379), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382070,34 +380858,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [169262] = 4, + [168884] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - STATE(4594), 1, + STATE(4565), 1, sym_comment, - ACTIONS(1959), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7957), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169286] = 4, + anon_sym_RBRACE, + [168906] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(1663), 1, anon_sym_DASH2, - STATE(4595), 1, + ACTIONS(7158), 1, + aux_sym__unquoted_in_record_token2, + STATE(4566), 1, sym_comment, - ACTIONS(2473), 12, + ACTIONS(1675), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382109,15 +380898,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169310] = 4, + [168932] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(2286), 1, anon_sym_DASH2, - STATE(4596), 1, + STATE(4567), 1, sym_comment, - ACTIONS(2441), 12, + ACTIONS(2288), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382129,35 +380917,60 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169334] = 4, + anon_sym_LPAREN2, + [168956] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(1663), 1, anon_sym_DASH2, - STATE(4597), 1, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(7959), 1, + sym_filesize_unit, + ACTIONS(7961), 1, + sym_duration_unit, + ACTIONS(7963), 1, + aux_sym_unquoted_token2, + STATE(4568), 1, sym_comment, - ACTIONS(1999), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1675), 6, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169358] = 4, + anon_sym_RBRACE, + anon_sym_as, + [168990] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4569), 1, + sym_comment, + ACTIONS(5070), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5072), 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, + [169014] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7970), 1, + ACTIONS(7967), 1, anon_sym_DASH2, - STATE(4598), 1, + STATE(4570), 1, sym_comment, - ACTIONS(7968), 12, + ACTIONS(7965), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382170,14 +380983,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169382] = 4, + [169038] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7974), 1, + ACTIONS(7971), 1, anon_sym_DASH2, - STATE(4599), 1, + STATE(4571), 1, sym_comment, - ACTIONS(7972), 12, + ACTIONS(7969), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382190,62 +381003,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169406] = 4, + [169062] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4572), 1, + sym_comment, + ACTIONS(5649), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5647), 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, + [169086] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2447), 1, - anon_sym_DASH2, - STATE(4600), 1, + STATE(4573), 1, sym_comment, - ACTIONS(2449), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7973), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169430] = 12, - ACTIONS(251), 1, + anon_sym_RBRACE, + [169108] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(7976), 1, - anon_sym_DOT, - ACTIONS(7980), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7982), 1, - aux_sym__immediate_decimal_token5, - STATE(4601), 1, + STATE(4574), 1, sym_comment, - STATE(5612), 1, - sym__immediate_decimal, - ACTIONS(1553), 2, + ACTIONS(2306), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2304), 11, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(7978), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5740), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [169470] = 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, + [169132] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2459), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - STATE(4602), 1, + STATE(4575), 1, sym_comment, - ACTIONS(2461), 12, + ACTIONS(2324), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382258,43 +381082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [169494] = 13, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(7984), 1, - anon_sym_DOLLAR, - ACTIONS(7986), 1, - anon_sym_DASH_DASH, - ACTIONS(7988), 1, - anon_sym_DASH2, - ACTIONS(7990), 1, - anon_sym_LBRACE, - STATE(1803), 1, - sym_block, - STATE(1804), 1, - sym_val_closure, - STATE(4603), 1, - sym_comment, - STATE(4874), 1, - aux_sym_ctrl_do_repeat1, - STATE(5967), 1, - sym__flag, - STATE(772), 2, - sym__blosure, - sym_val_variable, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [169536] = 4, + [169156] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4604), 1, + STATE(4576), 1, sym_comment, - STATE(4641), 1, - aux_sym_shebang_repeat1, - ACTIONS(7992), 12, + ACTIONS(7975), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382307,14 +381100,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169560] = 4, + anon_sym_RBRACE, + [169178] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2451), 1, + ACTIONS(2326), 1, anon_sym_DASH2, - STATE(4605), 1, + STATE(4577), 1, sym_comment, - ACTIONS(2453), 12, + ACTIONS(2328), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382327,14 +381121,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [169584] = 4, + [169202] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7996), 1, + ACTIONS(7979), 1, anon_sym_DASH2, - STATE(4606), 1, + STATE(4578), 1, sym_comment, - ACTIONS(7994), 12, + ACTIONS(7977), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382347,14 +381141,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169608] = 4, + [169226] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(7983), 1, anon_sym_DASH2, - STATE(4607), 1, + STATE(4579), 1, sym_comment, - ACTIONS(2091), 12, + ACTIONS(7981), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382364,15 +381158,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169632] = 3, + [169250] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4608), 1, + ACTIONS(7987), 1, + anon_sym_else, + STATE(4580), 1, sym_comment, - ACTIONS(7924), 13, + ACTIONS(7985), 12, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382384,16 +381181,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, - [169654] = 4, + [169274] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(7991), 1, + anon_sym_QMARK, + ACTIONS(7993), 1, anon_sym_DASH2, - STATE(4609), 1, + STATE(4581), 1, sym_comment, - ACTIONS(1975), 12, + ACTIONS(7989), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -382405,15 +381202,99 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169678] = 4, + [169300] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4556), 1, + anon_sym_DOT, + ACTIONS(7919), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(7921), 1, + aux_sym__immediate_decimal_token5, + STATE(4582), 1, + sym_comment, + STATE(5749), 1, + sym__immediate_decimal, + ACTIONS(7917), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(5748), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1557), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [169338] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8000), 1, + STATE(4583), 1, + sym_comment, + ACTIONS(2340), 2, + ts_builtin_sym_end, sym__space, - STATE(4610), 1, + ACTIONS(2338), 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, + [169362] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4584), 1, + sym_comment, + ACTIONS(2387), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2385), 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, + [169386] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4585), 1, + sym_comment, + ACTIONS(5042), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5044), 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, + [169410] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4586), 1, sym_comment, - ACTIONS(7998), 12, + ACTIONS(6767), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382426,12 +381307,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [169702] = 3, + anon_sym_RBRACE, + [169432] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4587), 1, + sym_comment, + ACTIONS(7262), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7260), 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, + [169456] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4611), 1, + STATE(4588), 1, sym_comment, - ACTIONS(5079), 13, + ACTIONS(7995), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382445,34 +381347,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169724] = 4, + [169478] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8004), 1, - anon_sym_DASH2, - STATE(4612), 1, + STATE(4589), 1, sym_comment, - ACTIONS(8002), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7997), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [169748] = 4, + anon_sym_RBRACE, + [169500] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8008), 1, + ACTIONS(2312), 1, anon_sym_DASH2, - STATE(4613), 1, + STATE(4590), 1, sym_comment, - ACTIONS(8006), 12, + ACTIONS(2314), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382482,57 +381383,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [169772] = 4, - ACTIONS(251), 1, + anon_sym_LBRACE, + [169524] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8012), 1, - anon_sym_DASH2, - STATE(4614), 1, + STATE(4591), 1, sym_comment, - ACTIONS(8010), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1675), 2, + ts_builtin_sym_end, + sym__space, + 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, + [169548] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4592), 1, + sym_comment, + ACTIONS(2391), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2389), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [169796] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [169572] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8016), 1, - anon_sym_DASH2, - STATE(4615), 1, + STATE(4593), 1, sym_comment, - ACTIONS(8014), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1000), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1004), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [169820] = 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, + [169596] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2415), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(4616), 1, + STATE(4594), 1, sym_comment, - ACTIONS(2417), 12, + ACTIONS(2336), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382545,12 +381466,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [169844] = 3, - ACTIONS(251), 1, + [169620] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4617), 1, + STATE(4595), 1, sym_comment, - ACTIONS(8018), 13, + ACTIONS(5046), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(5048), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382562,17 +381486,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169866] = 4, - ACTIONS(251), 1, + [169644] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8020), 1, - anon_sym_catch, - STATE(4618), 1, + STATE(4596), 1, sym_comment, - ACTIONS(7898), 12, + ACTIONS(2451), 2, ts_builtin_sym_end, + sym__space, + ACTIONS(2449), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382584,12 +381506,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [169890] = 3, - ACTIONS(251), 1, + [169668] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4619), 1, + STATE(4597), 1, sym_comment, - ACTIONS(8022), 13, + ACTIONS(2455), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382601,17 +381526,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [169912] = 4, + [169692] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4620), 1, + STATE(4598), 1, sym_comment, - ACTIONS(1983), 2, + ACTIONS(2455), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1981), 11, + ACTIONS(2453), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382623,12 +381546,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, - [169936] = 3, + [169716] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4621), 1, + STATE(4599), 1, sym_comment, - ACTIONS(8024), 13, + ACTIONS(7808), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382642,32 +381565,51 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [169958] = 4, + [169738] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2463), 1, - anon_sym_DASH2, - STATE(4622), 1, + STATE(4600), 1, sym_comment, - ACTIONS(2465), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7999), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [169982] = 3, + anon_sym_RBRACE, + [169760] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4601), 1, + sym_comment, + ACTIONS(1865), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1863), 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, + [169784] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4623), 1, + STATE(4602), 1, sym_comment, - ACTIONS(8026), 13, + ACTIONS(6755), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382681,106 +381623,167 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170004] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1539), 1, - anon_sym_RBRACE, - ACTIONS(1553), 1, - sym__entry_separator, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8030), 1, - anon_sym_DOT, - ACTIONS(8032), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8034), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8036), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8038), 1, - aux_sym__immediate_decimal_token5, - STATE(4624), 1, - sym_comment, - STATE(5489), 1, - sym__immediate_decimal, - STATE(5750), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [170048] = 15, + [169806] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(7551), 1, sym_identifier, - ACTIONS(7569), 1, + ACTIONS(7555), 1, + anon_sym_RBRACK, + ACTIONS(7557), 1, anon_sym_DOLLAR, - ACTIONS(7571), 1, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + ACTIONS(7563), 1, anon_sym_DASH2, - ACTIONS(8040), 1, - anon_sym_RBRACK, - STATE(3904), 1, + STATE(3889), 1, sym_param_long_flag, - STATE(4034), 1, + STATE(4016), 1, sym__param_name, - STATE(4338), 1, + STATE(4363), 1, aux_sym_parameter_parens_repeat1, - STATE(4625), 1, + STATE(4603), 1, sym_comment, - STATE(4828), 1, + STATE(4815), 1, sym_param_rest, - STATE(4833), 1, + STATE(4822), 1, sym_param_opt, - STATE(4840), 1, + STATE(4827), 1, sym_param_short_flag, - STATE(5284), 1, + STATE(5323), 1, sym_parameter, - [170094] = 15, + [169852] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(1721), 1, + anon_sym_DOT_DOT2, + ACTIONS(8001), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(1537), 1, + sym_cell_path, + STATE(4604), 1, + sym_comment, + STATE(4829), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1723), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [169884] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4605), 1, + sym_comment, + ACTIONS(7721), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7719), 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, + [169908] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4606), 1, + sym_comment, + ACTIONS(2344), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2342), 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, + [169932] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, sym_identifier, - ACTIONS(7569), 1, + ACTIONS(7557), 1, anon_sym_DOLLAR, - ACTIONS(7571), 1, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + ACTIONS(7563), 1, anon_sym_DASH2, - ACTIONS(8042), 1, + ACTIONS(7565), 1, anon_sym_RPAREN, - STATE(3904), 1, + STATE(3889), 1, sym_param_long_flag, - STATE(4034), 1, + STATE(4016), 1, sym__param_name, - STATE(4338), 1, + STATE(4363), 1, aux_sym_parameter_parens_repeat1, - STATE(4626), 1, + STATE(4607), 1, sym_comment, - STATE(4828), 1, + STATE(4815), 1, sym_param_rest, - STATE(4833), 1, + STATE(4822), 1, sym_param_opt, - STATE(4840), 1, + STATE(4827), 1, sym_param_short_flag, - STATE(5284), 1, + STATE(5323), 1, sym_parameter, - [170140] = 4, + [169978] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(8005), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8007), 1, + aux_sym__immediate_decimal_token5, + STATE(4608), 1, + sym_comment, + STATE(6476), 1, + sym__immediate_decimal, + ACTIONS(8003), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1589), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [170016] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(2350), 1, anon_sym_DASH2, - STATE(4627), 1, + STATE(4609), 1, sym_comment, - ACTIONS(2477), 12, + ACTIONS(2352), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382793,12 +381796,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [170164] = 3, + [170040] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4628), 1, + STATE(4610), 1, sym_comment, - ACTIONS(8044), 13, + ACTIONS(8009), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382812,15 +381815,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170186] = 4, + [170062] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8013), 1, + anon_sym_DASH2, + STATE(4611), 1, + sym_comment, + ACTIONS(8011), 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, + [170086] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4629), 1, + STATE(4612), 1, sym_comment, - ACTIONS(5055), 2, + ACTIONS(2065), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5057), 11, + ACTIONS(2059), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382832,32 +381855,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, - [170210] = 4, + [170110] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1981), 1, - anon_sym_DASH2, - STATE(4630), 1, + STATE(4613), 1, sym_comment, - ACTIONS(1983), 12, - anon_sym_EQ, - sym_identifier, + STATE(4619), 1, + aux_sym_shebang_repeat1, + ACTIONS(8015), 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, - anon_sym_LBRACE, - [170234] = 3, + [170134] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4631), 1, + STATE(4614), 1, sym_comment, - ACTIONS(8046), 13, + ACTIONS(5030), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382871,46 +381894,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170256] = 15, - ACTIONS(251), 1, + [170156] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7563), 1, - sym_identifier, - ACTIONS(7569), 1, - anon_sym_DOLLAR, - ACTIONS(7571), 1, - anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, - anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7670), 1, - anon_sym_RPAREN, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4632), 1, + STATE(4615), 1, sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [170302] = 4, + ACTIONS(2030), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2028), 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, + [170180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4633), 1, + STATE(4616), 1, sym_comment, - ACTIONS(7382), 2, + ACTIONS(2447), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7380), 11, + ACTIONS(2445), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382922,12 +381934,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170326] = 3, - ACTIONS(251), 1, + [170204] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4634), 1, + STATE(4617), 1, sym_comment, - ACTIONS(8048), 13, + ACTIONS(2375), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2373), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382939,16 +381954,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, - [170348] = 4, + [170228] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8052), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - STATE(4635), 1, + STATE(4618), 1, sym_comment, - ACTIONS(8050), 12, + ACTIONS(1881), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -382958,18 +381971,17 @@ 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, - [170372] = 4, - ACTIONS(3), 1, + anon_sym_LBRACE, + [170252] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4636), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4619), 1, sym_comment, - ACTIONS(5063), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5065), 11, + ACTIONS(8017), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -382981,35 +381993,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, - [170396] = 3, + anon_sym_RPAREN, + [170276] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4637), 1, + ACTIONS(8021), 1, + anon_sym_DASH2, + STATE(4620), 1, sym_comment, - ACTIONS(8054), 13, + ACTIONS(8019), 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, - [170418] = 5, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170300] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8058), 1, - anon_sym_QMARK, - ACTIONS(8060), 1, + ACTIONS(8025), 1, anon_sym_DASH2, - STATE(4638), 1, + STATE(4621), 1, sym_comment, - ACTIONS(8056), 11, + ACTIONS(8023), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383019,40 +382031,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170444] = 8, + [170324] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1717), 1, - anon_sym_DOT_DOT2, - ACTIONS(8062), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(1585), 1, - sym_cell_path, - STATE(4639), 1, + ACTIONS(8029), 1, + anon_sym_DASH2, + STATE(4622), 1, sym_comment, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1719), 8, + ACTIONS(8027), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170348] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7905), 1, + aux_sym__immediate_decimal_token2, + STATE(4623), 1, + sym_comment, + ACTIONS(1605), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [170476] = 4, + sym_filesize_unit, + sym_duration_unit, + [170374] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(8033), 1, anon_sym_DASH2, - STATE(4640), 1, + STATE(4624), 1, sym_comment, - ACTIONS(2429), 12, + ACTIONS(8031), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383062,38 +382092,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [170500] = 4, + [170398] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4641), 1, + ACTIONS(8037), 1, + anon_sym_DASH2, + STATE(4625), 1, sym_comment, - ACTIONS(8064), 12, + ACTIONS(8035), 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, - [170524] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170422] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4642), 1, + STATE(4626), 1, sym_comment, - ACTIONS(2469), 2, + ACTIONS(1970), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2467), 11, + ACTIONS(1968), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383105,14 +382135,74 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170548] = 4, + [170446] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8041), 1, + anon_sym_DASH2, + STATE(4627), 1, + sym_comment, + ACTIONS(8039), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170470] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8045), 1, + anon_sym_DASH2, + STATE(4628), 1, + sym_comment, + ACTIONS(8043), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170494] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8049), 1, + anon_sym_DASH2, + STATE(4629), 1, + sym_comment, + ACTIONS(8047), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170518] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - STATE(4643), 1, + STATE(4630), 1, sym_comment, - ACTIONS(7950), 12, + ACTIONS(8051), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383125,14 +382215,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [170572] = 4, + [170542] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - STATE(4644), 1, + STATE(4631), 1, sym_comment, - ACTIONS(7960), 12, + ACTIONS(7923), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383145,15 +382235,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RBRACE, - [170596] = 4, + [170566] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4645), 1, + STATE(4632), 1, sym_comment, - ACTIONS(2433), 2, + ACTIONS(5613), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2431), 11, + ACTIONS(5611), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383165,44 +382255,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, - [170620] = 13, + [170590] = 13, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(7984), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR, - ACTIONS(7986), 1, + ACTIONS(7927), 1, anon_sym_DASH_DASH, - ACTIONS(7988), 1, + ACTIONS(7929), 1, anon_sym_DASH2, - ACTIONS(7990), 1, + ACTIONS(7931), 1, anon_sym_LBRACE, - STATE(1803), 1, + STATE(1730), 1, sym_block, - STATE(1804), 1, + STATE(1734), 1, sym_val_closure, - STATE(4646), 1, + STATE(4633), 1, sym_comment, - STATE(4874), 1, + STATE(4858), 1, aux_sym_ctrl_do_repeat1, - STATE(5967), 1, + STATE(5905), 1, sym__flag, - STATE(772), 2, + STATE(767), 2, sym__blosure, sym_val_variable, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [170662] = 4, + [170632] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4647), 1, + STATE(4634), 1, sym_comment, - ACTIONS(2437), 2, + ACTIONS(2379), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2435), 11, + ACTIONS(2377), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383214,55 +382304,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170686] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8068), 1, - anon_sym_DASH2, - STATE(4648), 1, - sym_comment, - ACTIONS(8066), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170710] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8072), 1, - anon_sym_DASH2, - STATE(4649), 1, - sym_comment, - ACTIONS(8070), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170734] = 4, + [170656] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4650), 1, + STATE(4635), 1, sym_comment, - ACTIONS(2343), 2, + ACTIONS(2483), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2341), 11, + ACTIONS(2481), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383274,15 +382324,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170758] = 4, + [170680] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4651), 1, + STATE(4636), 1, sym_comment, - ACTIONS(7763), 2, + ACTIONS(2487), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7761), 11, + ACTIONS(2485), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383294,31 +382344,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, - [170782] = 3, + [170704] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4652), 1, + ACTIONS(1859), 1, + anon_sym_DASH2, + STATE(4637), 1, sym_comment, - ACTIONS(8074), 13, + ACTIONS(1861), 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, - [170804] = 3, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [170728] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4653), 1, + STATE(4638), 1, sym_comment, - ACTIONS(8076), 13, + ACTIONS(5038), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383332,35 +382383,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, anon_sym_RBRACE, - [170826] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8080), 1, - anon_sym_DASH2, - STATE(4654), 1, - sym_comment, - ACTIONS(8078), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [170850] = 4, + [170750] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4655), 1, + STATE(4639), 1, sym_comment, - ACTIONS(1959), 2, + ACTIONS(2431), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1957), 11, + ACTIONS(2429), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383372,15 +382403,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [170874] = 4, + [170774] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4656), 1, + STATE(4640), 1, sym_comment, - ACTIONS(7767), 2, + ACTIONS(7717), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7765), 11, + ACTIONS(7715), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383392,14 +382423,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, - [170898] = 4, + [170798] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8084), 1, + ACTIONS(2381), 1, anon_sym_DASH2, - STATE(4657), 1, + STATE(4641), 1, sym_comment, - ACTIONS(8082), 12, + ACTIONS(2383), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383409,18 +382440,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170922] = 4, + anon_sym_LBRACE, + [170822] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4658), 1, + STATE(4642), 1, sym_comment, - ACTIONS(2413), 2, + ACTIONS(7333), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2411), 11, + ACTIONS(7331), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383432,14 +382463,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, - [170946] = 4, + [170846] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8088), 1, + ACTIONS(8055), 1, anon_sym_DASH2, - STATE(4659), 1, + STATE(4643), 1, sym_comment, - ACTIONS(8086), 12, + ACTIONS(8053), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383452,14 +382483,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [170970] = 4, + [170870] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2009), 1, + ACTIONS(8059), 1, anon_sym_DASH2, - STATE(4660), 1, + STATE(4644), 1, sym_comment, - ACTIONS(2011), 12, + ACTIONS(8057), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383469,46 +382500,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [170994] = 13, - ACTIONS(3), 1, + [170894] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1643), 1, - sym__entry_separator, - ACTIONS(3095), 1, + ACTIONS(8063), 1, + anon_sym_DASH2, + STATE(4645), 1, + sym_comment, + ACTIONS(8061), 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, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8090), 1, - anon_sym_DOT, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, - aux_sym__immediate_decimal_token5, - STATE(4661), 1, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170918] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8067), 1, + anon_sym_DASH2, + STATE(4646), 1, sym_comment, - STATE(5764), 1, - sym__immediate_decimal, - ACTIONS(1633), 2, + ACTIONS(8065), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(5660), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [171036] = 4, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [170942] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8102), 1, + ACTIONS(8071), 1, anon_sym_DASH2, - STATE(4662), 1, + STATE(4647), 1, sym_comment, - ACTIONS(8100), 12, + ACTIONS(8069), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383521,35 +382563,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171060] = 4, - ACTIONS(3), 1, + [170966] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4663), 1, + ACTIONS(2445), 1, + anon_sym_DASH2, + STATE(4648), 1, sym_comment, - ACTIONS(1000), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1004), 11, + ACTIONS(2447), 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, - [171084] = 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, + anon_sym_LBRACE, + [170990] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4664), 1, + STATE(4649), 1, sym_comment, - ACTIONS(7771), 2, + ACTIONS(5050), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7769), 11, + ACTIONS(5052), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383561,14 +382603,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, - [171108] = 4, + [171014] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(8075), 1, anon_sym_DASH2, - STATE(4665), 1, + STATE(4650), 1, sym_comment, - ACTIONS(2481), 12, + ACTIONS(8073), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383578,17 +382620,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171132] = 4, + [171038] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(8079), 1, anon_sym_DASH2, - STATE(4666), 1, + STATE(4651), 1, sym_comment, - ACTIONS(2351), 12, + ACTIONS(8077), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383598,83 +382640,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171156] = 9, + [171062] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(8083), 1, anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(8104), 1, - sym_filesize_unit, - ACTIONS(8106), 1, - sym_duration_unit, - ACTIONS(8108), 1, - aux_sym_unquoted_token2, - STATE(4667), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [171190] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4668), 1, + STATE(4652), 1, sym_comment, - ACTIONS(8110), 13, + ACTIONS(8081), 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, - [171212] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8112), 1, - aux_sym__immediate_decimal_token2, - STATE(4669), 1, - sym_comment, - ACTIONS(1667), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171238] = 4, + [171086] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4670), 1, + STATE(4653), 1, sym_comment, - ACTIONS(7777), 2, + ACTIONS(5609), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7775), 11, + ACTIONS(5607), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383686,15 +382683,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [171262] = 4, + [171110] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4671), 1, + STATE(4654), 1, sym_comment, - ACTIONS(2150), 2, + ACTIONS(5054), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2144), 11, + ACTIONS(5056), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383706,14 +382703,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, - [171286] = 4, + [171134] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, anon_sym_DASH2, - STATE(4672), 1, + ACTIONS(7597), 1, + anon_sym_PIPE, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4655), 1, + sym_comment, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [171180] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8087), 1, + anon_sym_DASH2, + STATE(4656), 1, sym_comment, - ACTIONS(1693), 12, + ACTIONS(8085), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383723,89 +382751,117 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171310] = 4, + [171204] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4589), 1, - aux_sym_shebang_repeat1, - STATE(4673), 1, + ACTIONS(2290), 1, + anon_sym_DASH2, + STATE(4657), 1, sym_comment, - ACTIONS(8114), 12, + ACTIONS(2292), 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, - [171334] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LPAREN2, + [171228] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4674), 1, + ACTIONS(8091), 1, + anon_sym_DASH2, + STATE(4658), 1, sym_comment, - ACTIONS(7781), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7779), 11, + ACTIONS(8089), 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, - [171358] = 15, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171252] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(2358), 1, + anon_sym_DASH2, + STATE(4659), 1, + sym_comment, + ACTIONS(2360), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7569), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, + anon_sym_LBRACE, + [171276] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1968), 1, anon_sym_DASH2, - ACTIONS(7697), 1, + STATE(4660), 1, + sym_comment, + ACTIONS(1970), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4675), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [171300] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2411), 1, + anon_sym_DASH2, + STATE(4661), 1, sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [171404] = 4, - ACTIONS(3), 1, + ACTIONS(2413), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [171324] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4676), 1, + STATE(4662), 1, sym_comment, - ACTIONS(2405), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2403), 11, + STATE(4770), 1, + aux_sym_shebang_repeat1, + ACTIONS(8093), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383817,15 +382873,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, - [171428] = 4, + anon_sym_RPAREN, + [171348] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4677), 1, + STATE(4663), 1, sym_comment, - ACTIONS(5027), 2, + ACTIONS(5076), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5029), 11, + ACTIONS(5078), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383837,36 +382894,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, - [171452] = 4, - ACTIONS(3), 1, + [171372] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4678), 1, + ACTIONS(8097), 1, + anon_sym_DASH2, + STATE(4664), 1, sym_comment, - ACTIONS(5031), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5033), 11, + ACTIONS(8095), 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, - [171476] = 5, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171396] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - ACTIONS(7186), 1, - aux_sym__unquoted_in_record_token2, - STATE(4679), 1, + STATE(4665), 1, + sym_comment, + ACTIONS(1849), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [171420] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8101), 1, + anon_sym_DASH2, + STATE(4666), 1, sym_comment, - ACTIONS(1693), 11, + ACTIONS(8099), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383876,17 +382951,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [171502] = 4, + [171444] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4680), 1, + STATE(4667), 1, sym_comment, - ACTIONS(1975), 2, + ACTIONS(4991), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1973), 11, + ACTIONS(4993), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383898,12 +382974,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, - [171526] = 3, + [171468] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4681), 1, + ACTIONS(8105), 1, + anon_sym_DASH2, + STATE(4668), 1, + sym_comment, + ACTIONS(8103), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171492] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4669), 1, sym_comment, - ACTIONS(8116), 13, + ACTIONS(2409), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2407), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383915,16 +383014,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, - [171548] = 4, + [171516] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2277), 1, + ACTIONS(8109), 1, anon_sym_DASH2, - STATE(4682), 1, + STATE(4670), 1, sym_comment, - ACTIONS(2279), 12, + ACTIONS(8107), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383934,17 +383031,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LPAREN2, - [171572] = 4, + [171540] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(2362), 1, anon_sym_DASH2, - STATE(4683), 1, + STATE(4671), 1, sym_comment, - ACTIONS(1000), 12, + ACTIONS(2364), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -383957,31 +383054,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [171596] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4684), 1, - sym_comment, - ACTIONS(7950), 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, - [171618] = 3, - ACTIONS(251), 1, + [171564] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(4685), 1, + STATE(4672), 1, sym_comment, - ACTIONS(8118), 13, + ACTIONS(1877), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1875), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -383993,17 +383074,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - anon_sym_RPAREN, - anon_sym_RBRACE, - [171640] = 4, + [171588] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4686), 1, + STATE(4673), 1, sym_comment, - ACTIONS(2158), 2, + ACTIONS(1881), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2152), 11, + ACTIONS(1879), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384015,14 +383094,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, - [171664] = 4, + [171612] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(8113), 1, anon_sym_DASH2, - STATE(4687), 1, + STATE(4674), 1, sym_comment, - ACTIONS(1987), 12, + ACTIONS(8111), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384032,37 +383111,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171688] = 4, + [171636] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_DASH2, - STATE(4688), 1, + ACTIONS(8115), 1, + aux_sym__immediate_decimal_token2, + STATE(4675), 1, sym_comment, - ACTIONS(2445), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1685), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 9, + ts_builtin_sym_end, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171712] = 4, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [171662] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8120), 1, + ACTIONS(8117), 1, anon_sym_else, - STATE(4689), 1, + STATE(4676), 1, sym_comment, - ACTIONS(7940), 12, + ACTIONS(7985), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384075,14 +383155,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [171736] = 4, + [171686] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(8121), 1, anon_sym_DASH2, - STATE(4690), 1, + STATE(4677), 1, sym_comment, - ACTIONS(2409), 12, + ACTIONS(8119), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384092,49 +383172,64 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171760] = 15, + [171710] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(3082), 1, + anon_sym_DOLLAR, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8125), 1, + anon_sym_DOT, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8129), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token5, + STATE(4678), 1, + sym_comment, + STATE(5676), 1, + sym__immediate_decimal, + ACTIONS(1547), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(5793), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [171752] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(8137), 1, + anon_sym_DASH2, + STATE(4679), 1, + sym_comment, + ACTIONS(8135), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7569), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, + anon_sym_AT, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(7687), 1, - anon_sym_RBRACK, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4691), 1, - sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [171806] = 4, - ACTIONS(3), 1, + [171776] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4692), 1, + STATE(4680), 1, sym_comment, - ACTIONS(2445), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2443), 11, + ACTIONS(8051), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384146,14 +383241,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, - [171830] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [171798] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(8141), 1, anon_sym_DASH2, - STATE(4693), 1, + STATE(4681), 1, sym_comment, - ACTIONS(2371), 12, + ACTIONS(8139), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384163,147 +383260,118 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [171854] = 4, - ACTIONS(3), 1, + [171822] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4694), 1, + ACTIONS(1863), 1, + anon_sym_DASH2, + STATE(4682), 1, sym_comment, - ACTIONS(1987), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(1985), 11, + ACTIONS(1865), 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, - [171878] = 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, + anon_sym_LBRACE, + [171846] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4695), 1, - sym_comment, - ACTIONS(1587), 3, + ACTIONS(8145), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 10, + STATE(4683), 1, + sym_comment, + ACTIONS(8143), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [171902] = 4, - ACTIONS(3), 1, + [171870] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4696), 1, + ACTIONS(8149), 1, + anon_sym_DASH2, + STATE(4684), 1, sym_comment, - ACTIONS(2449), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2447), 11, + ACTIONS(8147), 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, - [171926] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171894] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4697), 1, + ACTIONS(8153), 1, + anon_sym_DASH2, + STATE(4685), 1, sym_comment, - ACTIONS(2176), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2170), 11, + ACTIONS(8151), 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, - [171950] = 3, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171918] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4698), 1, + ACTIONS(8157), 1, + anon_sym_DASH2, + STATE(4686), 1, sym_comment, - ACTIONS(8122), 13, + ACTIONS(8155), 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_RPAREN, - anon_sym_RBRACE, - [171972] = 14, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1539), 1, + anon_sym_COLON, anon_sym_RBRACK, - ACTIONS(1553), 1, - sym__entry_separator, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(3095), 1, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8124), 1, - anon_sym_DOT, - STATE(4699), 1, - sym_comment, - STATE(5516), 1, - sym__immediate_decimal, - STATE(5750), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [172016] = 4, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [171942] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4700), 1, + STATE(4687), 1, sym_comment, - ACTIONS(2351), 2, + ACTIONS(7725), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2349), 11, + ACTIONS(7723), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384315,14 +383383,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, - [172040] = 4, + [171966] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(8161), 1, anon_sym_DASH2, - STATE(4701), 1, + STATE(4688), 1, sym_comment, - ACTIONS(2347), 12, + ACTIONS(8159), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384332,17 +383400,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [172064] = 4, + [171990] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(8165), 1, anon_sym_DASH2, - STATE(4702), 1, + STATE(4689), 1, sym_comment, - ACTIONS(2421), 12, + ACTIONS(8163), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384352,17 +383420,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [172088] = 4, + [172014] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(8169), 1, anon_sym_DASH2, - STATE(4703), 1, + STATE(4690), 1, sym_comment, - ACTIONS(2425), 12, + ACTIONS(8167), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384372,17 +383440,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [172112] = 4, + [172038] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(8173), 1, anon_sym_DASH2, - STATE(4704), 1, + STATE(4691), 1, sym_comment, - ACTIONS(2507), 12, + ACTIONS(8171), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384392,36 +383460,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, + anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [172136] = 3, + [172062] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4705), 1, + ACTIONS(8177), 1, + anon_sym_DASH2, + STATE(4692), 1, sym_comment, - ACTIONS(7960), 13, + ACTIONS(8175), 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, - [172158] = 4, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172086] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8128), 1, + ACTIONS(8181), 1, anon_sym_DASH2, - STATE(4706), 1, + STATE(4693), 1, sym_comment, - ACTIONS(8126), 12, + ACTIONS(8179), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384434,14 +383503,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172182] = 4, + [172110] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8132), 1, + ACTIONS(8185), 1, anon_sym_DASH2, - STATE(4707), 1, + STATE(4694), 1, sym_comment, - ACTIONS(8130), 12, + ACTIONS(8183), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384454,18 +383523,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172206] = 6, + [172134] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7853), 1, + ACTIONS(7745), 1, sym__newline, - ACTIONS(8134), 1, + ACTIONS(8187), 1, anon_sym_else, - STATE(4708), 1, + STATE(4695), 1, sym_comment, - STATE(4709), 1, + STATE(4696), 1, aux_sym_shebang_repeat1, - ACTIONS(7856), 10, + ACTIONS(7748), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384476,18 +383545,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172234] = 6, + [172162] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7725), 1, + ACTIONS(7841), 1, sym__newline, - ACTIONS(8136), 1, + ACTIONS(8189), 1, anon_sym_else, - STATE(4709), 1, + STATE(4696), 1, sym_comment, - STATE(4712), 1, + STATE(4699), 1, aux_sym_shebang_repeat1, - ACTIONS(7728), 10, + ACTIONS(7844), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384498,18 +383567,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172262] = 6, + [172190] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7783), 1, + ACTIONS(7848), 1, sym__newline, - ACTIONS(8138), 1, + ACTIONS(8191), 1, anon_sym_else, - STATE(4710), 1, + STATE(4697), 1, sym_comment, - STATE(4713), 1, + STATE(4700), 1, aux_sym_shebang_repeat1, - ACTIONS(7786), 10, + ACTIONS(7851), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384520,18 +383589,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172290] = 6, + [172218] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7790), 1, + ACTIONS(7857), 1, sym__newline, - ACTIONS(8140), 1, + ACTIONS(8193), 1, anon_sym_else, - STATE(4711), 1, + STATE(4698), 1, sym_comment, - STATE(4714), 1, + STATE(4701), 1, aux_sym_shebang_repeat1, - ACTIONS(7793), 10, + ACTIONS(7860), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384542,16 +383611,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, - [172318] = 6, + [172246] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8142), 1, + ACTIONS(8195), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4712), 1, + STATE(4699), 1, sym_comment, ACTIONS(1276), 10, anon_sym_SEMI, @@ -384564,18 +383633,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172346] = 6, + [172274] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(7784), 1, sym__newline, - ACTIONS(8145), 1, + ACTIONS(8198), 1, anon_sym_else, - STATE(4713), 1, + STATE(4700), 1, sym_comment, - STATE(4718), 1, + STATE(4705), 1, aux_sym_shebang_repeat1, - ACTIONS(7821), 10, + ACTIONS(7787), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384586,18 +383655,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172374] = 6, + [172302] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(7791), 1, sym__newline, - ACTIONS(8147), 1, + ACTIONS(8200), 1, anon_sym_else, - STATE(4714), 1, + STATE(4701), 1, sym_comment, - STATE(4719), 1, + STATE(4706), 1, aux_sym_shebang_repeat1, - ACTIONS(7828), 10, + ACTIONS(7794), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384608,18 +383677,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172402] = 6, + [172330] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7832), 1, + ACTIONS(7819), 1, sym__newline, - ACTIONS(8149), 1, + ACTIONS(8202), 1, anon_sym_else, - STATE(4715), 1, + STATE(4702), 1, sym_comment, - STATE(4720), 1, + STATE(4707), 1, aux_sym_shebang_repeat1, - ACTIONS(7835), 10, + ACTIONS(7822), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384630,56 +383699,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, - [172430] = 4, - ACTIONS(3), 1, + [172358] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4716), 1, + ACTIONS(8206), 1, + anon_sym_DASH2, + STATE(4703), 1, sym_comment, - ACTIONS(2421), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2419), 11, + ACTIONS(8204), 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, - [172454] = 4, - ACTIONS(3), 1, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172382] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4717), 1, + ACTIONS(8210), 1, + anon_sym_DASH2, + STATE(4704), 1, sym_comment, - ACTIONS(2507), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2505), 11, + ACTIONS(8208), 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, - [172478] = 6, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [172406] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8151), 1, + ACTIONS(8212), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4718), 1, + STATE(4705), 1, sym_comment, ACTIONS(1276), 10, anon_sym_SEMI, @@ -384692,16 +383761,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, - [172506] = 6, + [172434] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8154), 1, + ACTIONS(8215), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4719), 1, + STATE(4706), 1, sym_comment, ACTIONS(1276), 10, anon_sym_SEMI, @@ -384714,18 +383783,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [172534] = 6, + [172462] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7718), 1, + ACTIONS(7896), 1, sym__newline, - ACTIONS(8157), 1, + ACTIONS(8218), 1, anon_sym_else, - STATE(4720), 1, + STATE(4707), 1, sym_comment, - STATE(4725), 1, + STATE(4712), 1, aux_sym_shebang_repeat1, - ACTIONS(7721), 10, + ACTIONS(7899), 10, anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -384736,15 +383805,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, - [172562] = 4, - ACTIONS(3), 1, + [172490] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4721), 1, + STATE(4708), 1, sym_comment, - ACTIONS(7537), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(7535), 11, + ACTIONS(7923), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384756,55 +383822,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, - [172586] = 4, - ACTIONS(3), 1, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172512] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4722), 1, + ACTIONS(2407), 1, + anon_sym_DASH2, + STATE(4709), 1, sym_comment, - ACTIONS(5651), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(5649), 11, + ACTIONS(2409), 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, - [172610] = 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, + anon_sym_LBRACE, + [172536] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4723), 1, - sym_comment, - ACTIONS(1595), 3, + ACTIONS(2453), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 10, + STATE(4710), 1, + sym_comment, + ACTIONS(2455), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [172634] = 4, + anon_sym_LBRACE, + [172560] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4724), 1, + STATE(4711), 1, sym_comment, - ACTIONS(2425), 2, + ACTIONS(2332), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2423), 11, + ACTIONS(2330), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384816,16 +383884,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, - [172658] = 6, + [172584] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8159), 1, + ACTIONS(8220), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4725), 1, + STATE(4712), 1, sym_comment, ACTIONS(1276), 10, anon_sym_SEMI, @@ -384838,15 +383906,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, - [172686] = 4, + [172612] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2453), 1, + anon_sym_DASH2, + STATE(4713), 1, + sym_comment, + ACTIONS(2455), 12, + anon_sym_EQ, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [172636] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4726), 1, + STATE(4714), 1, sym_comment, - ACTIONS(2441), 2, + ACTIONS(2352), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2439), 11, + ACTIONS(2350), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384858,14 +383946,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, - [172710] = 4, + [172660] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(2421), 1, anon_sym_DASH2, - STATE(4727), 1, + STATE(4715), 1, sym_comment, - ACTIONS(2433), 12, + ACTIONS(2423), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384878,35 +383966,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [172734] = 4, + [172684] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8164), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, anon_sym_DASH2, - STATE(4728), 1, + ACTIONS(7599), 1, + anon_sym_RBRACK, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4716), 1, sym_comment, - ACTIONS(8162), 12, - anon_sym_EQ, - sym_identifier, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [172730] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4717), 1, + sym_comment, + ACTIONS(1605), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172758] = 4, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [172754] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4729), 1, + STATE(4718), 1, sym_comment, - ACTIONS(2481), 2, + ACTIONS(7739), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2479), 11, + ACTIONS(7737), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384918,15 +384037,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, - [172782] = 4, - ACTIONS(3), 1, + [172778] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4730), 1, + STATE(4719), 1, sym_comment, - ACTIONS(2027), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2025), 11, + ACTIONS(8223), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384938,15 +384054,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, - [172806] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172800] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4731), 1, + STATE(4720), 1, sym_comment, - ACTIONS(2371), 2, + ACTIONS(7743), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2369), 11, + ACTIONS(7741), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -384958,14 +384076,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, - [172830] = 4, + [172824] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - STATE(4732), 1, + STATE(4721), 1, sym_comment, - ACTIONS(2437), 12, + ACTIONS(1873), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -384978,34 +384096,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, anon_sym_LBRACE, - [172854] = 3, + [172848] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4733), 1, + ACTIONS(2385), 1, + anon_sym_DASH2, + STATE(4722), 1, sym_comment, - ACTIONS(6762), 13, + ACTIONS(2387), 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, - [172876] = 4, - ACTIONS(3), 1, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [172872] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4734), 1, + STATE(4723), 1, sym_comment, - ACTIONS(2359), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2357), 11, + ACTIONS(8225), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385017,12 +384133,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, - [172900] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [172894] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4735), 1, + STATE(4724), 1, + sym_comment, + ACTIONS(1597), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 10, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [172918] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4725), 1, sym_comment, - ACTIONS(5075), 13, + ACTIONS(2348), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2346), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385034,16 +384175,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, - [172922] = 4, + [172942] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8168), 1, + ACTIONS(8229), 1, anon_sym_DASH2, - STATE(4736), 1, + STATE(4726), 1, sym_comment, - ACTIONS(8166), 12, + ACTIONS(8227), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385056,14 +384195,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172946] = 4, + [172966] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8172), 1, + ACTIONS(8233), 1, anon_sym_DASH2, - STATE(4737), 1, + STATE(4727), 1, sym_comment, - ACTIONS(8170), 12, + ACTIONS(8231), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385076,55 +384215,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [172970] = 4, + [172990] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8176), 1, - anon_sym_DASH2, - STATE(4738), 1, + STATE(4728), 1, sym_comment, - ACTIONS(8174), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8235), 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_RBRACE, + [173012] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1529), 1, + anon_sym_RBRACE, + ACTIONS(1543), 1, + sym__entry_separator, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(3082), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [172994] = 4, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8237), 1, + anon_sym_DOT, + ACTIONS(8239), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8241), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8243), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8245), 1, + aux_sym__immediate_decimal_token5, + STATE(4729), 1, + sym_comment, + STATE(5439), 1, + sym__immediate_decimal, + STATE(5684), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173056] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8180), 1, - anon_sym_DASH2, - STATE(4739), 1, + ACTIONS(1757), 1, + anon_sym_DOT_DOT2, + ACTIONS(8001), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(1558), 1, + sym_cell_path, + STATE(4730), 1, sym_comment, - ACTIONS(8178), 12, - anon_sym_EQ, - sym_identifier, + STATE(4829), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1759), 8, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173018] = 4, + anon_sym_LBRACE, + anon_sym_RBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + anon_sym_COLON2, + [173088] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4740), 1, + STATE(4731), 1, sym_comment, - ACTIONS(2363), 2, + ACTIONS(2360), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2361), 11, + ACTIONS(2358), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385136,35 +384308,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, - [173042] = 4, - ACTIONS(251), 1, + [173112] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8184), 1, - anon_sym_DASH2, - STATE(4741), 1, + STATE(4732), 1, sym_comment, - ACTIONS(8182), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2364), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2362), 11, 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, + [173136] = 14, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1529), 1, anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1543), 1, + sym__entry_separator, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(3082), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173066] = 4, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8129), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8247), 1, + anon_sym_DOT, + STATE(4733), 1, + sym_comment, + STATE(5538), 1, + sym__immediate_decimal, + STATE(5684), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [173180] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4742), 1, + STATE(4734), 1, sym_comment, - ACTIONS(2347), 2, + ACTIONS(1873), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2345), 11, + ACTIONS(1871), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385176,34 +384378,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, - [173090] = 4, - ACTIONS(251), 1, + [173204] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2353), 1, - anon_sym_DASH2, - STATE(4743), 1, + STATE(4735), 1, sym_comment, - ACTIONS(2355), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2405), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2403), 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_LBRACE, - [173114] = 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, + [173228] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8186), 1, - anon_sym_else, - STATE(4744), 1, + STATE(4736), 1, sym_comment, - ACTIONS(7940), 12, + ACTIONS(8249), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385215,256 +384415,315 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, anon_sym_RBRACE, - [173138] = 4, + [173250] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_DASH2, - STATE(4745), 1, + STATE(4737), 1, sym_comment, - ACTIONS(2413), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1685), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [173162] = 4, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173274] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_DASH2, - STATE(4746), 1, + ACTIONS(3398), 1, + anon_sym_COLON2, + STATE(4738), 1, sym_comment, - ACTIONS(2413), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8051), 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_LBRACE, - [173186] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [173298] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8190), 1, - anon_sym_DASH2, - STATE(4747), 1, + STATE(4739), 1, sym_comment, - ACTIONS(8188), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7808), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7806), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173210] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173322] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8194), 1, - anon_sym_DASH2, - STATE(4748), 1, + STATE(4740), 1, sym_comment, - ACTIONS(8192), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2314), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2312), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173234] = 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, + [173346] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8198), 1, - anon_sym_DASH2, - STATE(4749), 1, + STATE(4741), 1, sym_comment, - ACTIONS(8196), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8251), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173258] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [173368] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8202), 1, - anon_sym_DASH2, - STATE(4750), 1, + STATE(4742), 1, sym_comment, - ACTIONS(8200), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2324), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2322), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173282] = 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, + [173392] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4743), 1, + sym_comment, + ACTIONS(2328), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2326), 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, + [173416] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4744), 1, + sym_comment, + ACTIONS(2443), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2441), 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, + [173440] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8206), 1, - anon_sym_DASH2, - STATE(4751), 1, + STATE(4745), 1, sym_comment, - ACTIONS(8204), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8253), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173306] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [173462] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8210), 1, - anon_sym_DASH2, - STATE(4752), 1, + STATE(4746), 1, sym_comment, - ACTIONS(8208), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1845), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(1843), 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, + [173486] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(4747), 1, + sym_comment, + ACTIONS(2053), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2047), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173330] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173510] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8214), 1, - anon_sym_DASH2, - STATE(4753), 1, + STATE(4748), 1, sym_comment, - ACTIONS(8212), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2086), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2080), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173354] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173534] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8218), 1, - anon_sym_DASH2, - STATE(4754), 1, + STATE(4749), 1, sym_comment, - ACTIONS(8216), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7476), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(7474), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173378] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173558] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8222), 1, - anon_sym_DASH2, - STATE(4755), 1, + STATE(4750), 1, sym_comment, - ACTIONS(8220), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2459), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2457), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173402] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + [173582] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8226), 1, - anon_sym_DASH2, - STATE(4756), 1, + STATE(4751), 1, sym_comment, - ACTIONS(8224), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2078), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2072), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173426] = 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, + [173606] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4757), 1, + STATE(4752), 1, sym_comment, - ACTIONS(5643), 2, + ACTIONS(2423), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5641), 11, + ACTIONS(2421), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385476,14 +384735,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, - [173450] = 4, + [173630] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8230), 1, + ACTIONS(7802), 1, anon_sym_DASH2, - STATE(4758), 1, + STATE(4753), 1, sym_comment, - ACTIONS(8228), 12, + ACTIONS(7798), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385496,54 +384755,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173474] = 4, + [173654] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8234), 1, - anon_sym_DASH2, - STATE(4759), 1, + ACTIONS(8255), 1, + anon_sym_else, + STATE(4754), 1, sym_comment, - ACTIONS(8232), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(7985), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173498] = 4, - ACTIONS(251), 1, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RBRACE, + [173678] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8238), 1, - anon_sym_DASH2, - STATE(4760), 1, + STATE(4755), 1, sym_comment, - ACTIONS(8236), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(2336), 2, + ts_builtin_sym_end, + sym__space, + ACTIONS(2334), 11, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173522] = 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, + [173702] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8242), 1, + ACTIONS(2449), 1, anon_sym_DASH2, - STATE(4761), 1, + STATE(4756), 1, sym_comment, - ACTIONS(8240), 12, + ACTIONS(2451), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385553,17 +384812,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173546] = 4, + anon_sym_LBRACE, + [173726] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8246), 1, + ACTIONS(2403), 1, anon_sym_DASH2, - STATE(4762), 1, + STATE(4757), 1, sym_comment, - ACTIONS(8244), 12, + ACTIONS(2405), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385573,37 +384832,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173570] = 4, + anon_sym_LBRACE, + [173750] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8250), 1, - anon_sym_DASH2, - STATE(4763), 1, - sym_comment, - ACTIONS(8248), 12, - anon_sym_EQ, + ACTIONS(7551), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7557), 1, anon_sym_DOLLAR, - anon_sym_AT, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - [173594] = 4, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(8257), 1, + anon_sym_PIPE, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4758), 1, + sym_comment, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [173796] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8254), 1, + ACTIONS(8261), 1, anon_sym_DASH2, - STATE(4764), 1, + STATE(4759), 1, sym_comment, - ACTIONS(8252), 12, + ACTIONS(8259), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385616,14 +384886,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173618] = 4, + [173820] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8258), 1, + ACTIONS(8265), 1, anon_sym_DASH2, - STATE(4765), 1, + STATE(4760), 1, sym_comment, - ACTIONS(8256), 12, + ACTIONS(8263), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385636,34 +384906,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173642] = 4, + [173844] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8262), 1, - anon_sym_DASH2, - STATE(4766), 1, + STATE(4761), 1, sym_comment, - ACTIONS(8260), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(1727), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 10, sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173666] = 4, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [173868] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8266), 1, + ACTIONS(8269), 1, anon_sym_DASH2, - STATE(4767), 1, + STATE(4762), 1, sym_comment, - ACTIONS(8264), 12, + ACTIONS(8267), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385676,15 +384946,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173690] = 4, + [173892] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4768), 1, + STATE(4763), 1, sym_comment, - ACTIONS(2355), 2, + ACTIONS(5625), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2353), 11, + ACTIONS(5623), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385696,14 +384966,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, - [173714] = 4, + [173916] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8270), 1, + ACTIONS(8273), 1, anon_sym_DASH2, - STATE(4769), 1, + STATE(4764), 1, sym_comment, - ACTIONS(8268), 12, + ACTIONS(8271), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385716,54 +384986,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173738] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4770), 1, - sym_comment, - ACTIONS(2367), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2365), 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, - [173762] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4771), 1, - sym_comment, - ACTIONS(2473), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2471), 11, - sym__newline, - anon_sym_SEMI, - anon_sym_PIPE, - anon_sym_err_GT_PIPE, - anon_sym_out_GT_PIPE, - anon_sym_e_GT_PIPE, - anon_sym_o_GT_PIPE, - anon_sym_err_PLUSout_GT_PIPE, - anon_sym_out_PLUSerr_GT_PIPE, - anon_sym_o_PLUSe_GT_PIPE, - anon_sym_e_PLUSo_GT_PIPE, - [173786] = 4, + [173940] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8274), 1, + ACTIONS(8277), 1, anon_sym_DASH2, - STATE(4772), 1, + STATE(4765), 1, sym_comment, - ACTIONS(8272), 12, + ACTIONS(8275), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -385776,35 +385006,77 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [173810] = 4, + [173964] = 15, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2001), 1, + ACTIONS(7551), 1, + sym_identifier, + ACTIONS(7557), 1, + anon_sym_DOLLAR, + ACTIONS(7559), 1, + anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, + anon_sym_DASH_DASH, + ACTIONS(7563), 1, anon_sym_DASH2, - STATE(4773), 1, + ACTIONS(8279), 1, + anon_sym_RBRACK, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4766), 1, sym_comment, - ACTIONS(2003), 12, - anon_sym_EQ, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [174010] = 15, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7551), 1, sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(7557), 1, anon_sym_DOLLAR, + ACTIONS(7559), 1, anon_sym_DOT_DOT_DOT, + ACTIONS(7561), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [173834] = 4, + ACTIONS(7563), 1, + anon_sym_DASH2, + ACTIONS(8281), 1, + anon_sym_RPAREN, + STATE(3889), 1, + sym_param_long_flag, + STATE(4016), 1, + sym__param_name, + STATE(4363), 1, + aux_sym_parameter_parens_repeat1, + STATE(4767), 1, + sym_comment, + STATE(4815), 1, + sym_param_rest, + STATE(4822), 1, + sym_param_opt, + STATE(4827), 1, + sym_param_short_flag, + STATE(5323), 1, + sym_parameter, + [174056] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4774), 1, + STATE(4768), 1, sym_comment, - ACTIONS(5021), 2, + ACTIONS(2302), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5023), 11, + ACTIONS(2300), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385816,15 +385088,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [173858] = 4, + [174080] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4775), 1, + STATE(4769), 1, sym_comment, - ACTIONS(1999), 2, + ACTIONS(2383), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1997), 11, + ACTIONS(2381), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385836,55 +385108,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, - [173882] = 4, + [174104] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8278), 1, - anon_sym_DASH2, - STATE(4776), 1, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4770), 1, sym_comment, - ACTIONS(8276), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8283), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [173906] = 4, + [174128] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4777), 1, + STATE(4771), 1, sym_comment, - ACTIONS(1667), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 10, + ACTIONS(8285), 13, sym__newline, anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [173930] = 4, + [174150] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4778), 1, + STATE(4772), 1, sym_comment, - ACTIONS(5661), 2, + ACTIONS(1837), 2, ts_builtin_sym_end, sym__space, - ACTIONS(5659), 11, + ACTIONS(1835), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385896,15 +385167,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, - [173954] = 4, - ACTIONS(3), 1, + [174174] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4779), 1, + STATE(4773), 1, sym_comment, - ACTIONS(2461), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2459), 11, + ACTIONS(8287), 13, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385916,39 +385184,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, - [173978] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1721), 1, - anon_sym_DOT_DOT2, - ACTIONS(8062), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(1576), 1, - sym_cell_path, - STATE(4780), 1, - sym_comment, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1723), 8, - sym__newline, - anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - anon_sym_COLON2, - [174010] = 4, - ACTIONS(3), 1, + [174196] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4781), 1, + ACTIONS(8289), 1, + anon_sym_catch, + STATE(4774), 1, sym_comment, - ACTIONS(2503), 2, + ACTIONS(7874), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(2501), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -385960,54 +385206,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, - [174034] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8282), 1, - anon_sym_DASH2, - STATE(4782), 1, - sym_comment, - ACTIONS(8280), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174058] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8286), 1, - anon_sym_DASH2, - STATE(4783), 1, - sym_comment, - ACTIONS(8284), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174082] = 4, + [174220] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8290), 1, + ACTIONS(8293), 1, anon_sym_DASH2, - STATE(4784), 1, + STATE(4775), 1, sym_comment, - ACTIONS(8288), 12, + ACTIONS(8291), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386017,77 +385223,75 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, + anon_sym_GT2, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174106] = 4, + [174244] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8294), 1, - anon_sym_DASH2, - STATE(4785), 1, + STATE(4776), 1, sym_comment, - ACTIONS(8292), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8295), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174130] = 4, + anon_sym_RBRACE, + [174266] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8298), 1, - anon_sym_DASH2, - STATE(4786), 1, + STATE(4777), 1, sym_comment, - ACTIONS(8296), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8297), 13, sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174154] = 4, - ACTIONS(251), 1, + anon_sym_RBRACE, + [174288] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8302), 1, - anon_sym_DASH2, - STATE(4787), 1, + ACTIONS(8301), 1, + sym__space, + STATE(4778), 1, sym_comment, - ACTIONS(8300), 12, - anon_sym_EQ, - sym_identifier, + ACTIONS(8299), 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_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174178] = 4, + [174312] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8306), 1, + ACTIONS(1875), 1, anon_sym_DASH2, - STATE(4788), 1, + STATE(4779), 1, sym_comment, - ACTIONS(8304), 12, + ACTIONS(1877), 12, anon_sym_EQ, sym_identifier, sym__newline, @@ -386097,58 +385301,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RPAREN, anon_sym_COMMA, anon_sym_DOLLAR, - anon_sym_AT, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174202] = 4, + anon_sym_LBRACE, + [174336] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8310), 1, - anon_sym_DASH2, - STATE(4789), 1, - sym_comment, - ACTIONS(8308), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, - anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174226] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8314), 1, - anon_sym_DASH2, - STATE(4790), 1, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(8005), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8007), 1, + aux_sym__immediate_decimal_token5, + STATE(4780), 1, sym_comment, - ACTIONS(8312), 12, - anon_sym_EQ, - sym_identifier, - sym__newline, + STATE(6556), 1, + sym__immediate_decimal, + ACTIONS(8003), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2016), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + ACTIONS(1543), 3, anon_sym_PIPE, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_COMMA, - anon_sym_DOLLAR, - anon_sym_AT, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [174250] = 4, + anon_sym_if, + anon_sym_EQ_GT, + [174374] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4791), 1, + STATE(4781), 1, sym_comment, - ACTIONS(7277), 2, + ACTIONS(1849), 2, ts_builtin_sym_end, sym__space, - ACTIONS(7275), 11, + ACTIONS(1847), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386160,42 +385351,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, - [174274] = 11, + [174398] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(7956), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7958), 1, - aux_sym__immediate_decimal_token5, - STATE(4792), 1, + STATE(4782), 1, sym_comment, - STATE(6532), 1, - sym__immediate_decimal, - ACTIONS(7954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2035), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1553), 3, + ACTIONS(8303), 13, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174312] = 4, + anon_sym_err_GT_PIPE, + anon_sym_out_GT_PIPE, + anon_sym_e_GT_PIPE, + anon_sym_o_GT_PIPE, + anon_sym_err_PLUSout_GT_PIPE, + anon_sym_out_PLUSerr_GT_PIPE, + anon_sym_o_PLUSe_GT_PIPE, + anon_sym_e_PLUSo_GT_PIPE, + anon_sym_RPAREN, + anon_sym_RBRACE, + [174420] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4793), 1, + STATE(4783), 1, sym_comment, - ACTIONS(2465), 2, + ACTIONS(2413), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2463), 11, + ACTIONS(2411), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386207,73 +385390,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, - [174336] = 15, + [174444] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7563), 1, + ACTIONS(1663), 1, + anon_sym_DASH2, + STATE(4784), 1, + sym_comment, + ACTIONS(1675), 12, + anon_sym_EQ, sym_identifier, - ACTIONS(7569), 1, + sym__newline, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_COMMA, anon_sym_DOLLAR, - ACTIONS(7571), 1, anon_sym_DOT_DOT_DOT, - ACTIONS(7573), 1, anon_sym_DASH_DASH, - ACTIONS(7575), 1, - anon_sym_DASH2, - ACTIONS(8316), 1, - anon_sym_RBRACK, - STATE(3904), 1, - sym_param_long_flag, - STATE(4034), 1, - sym__param_name, - STATE(4338), 1, - aux_sym_parameter_parens_repeat1, - STATE(4794), 1, - sym_comment, - STATE(4828), 1, - sym_param_rest, - STATE(4833), 1, - sym_param_opt, - STATE(4840), 1, - sym_param_short_flag, - STATE(5284), 1, - sym_parameter, - [174382] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(4553), 1, - anon_sym_DOT, - ACTIONS(7932), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, - aux_sym__immediate_decimal_token5, - STATE(4795), 1, - sym_comment, - STATE(5739), 1, - sym__immediate_decimal, - ACTIONS(7930), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(5738), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - ACTIONS(1643), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [174420] = 4, + anon_sym_LBRACE, + [174468] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4796), 1, + STATE(4785), 1, sym_comment, - ACTIONS(2339), 2, + ACTIONS(5062), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2337), 11, + ACTIONS(5064), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386285,15 +385430,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174444] = 4, + [174492] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4797), 1, + STATE(4786), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(2427), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1681), 11, + ACTIONS(2425), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386305,15 +385450,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174468] = 4, + [174516] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4798), 1, + STATE(4787), 1, sym_comment, - ACTIONS(2453), 2, + ACTIONS(2435), 2, ts_builtin_sym_end, sym__space, - ACTIONS(2451), 11, + ACTIONS(2433), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386325,15 +385470,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [174492] = 4, + [174540] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(4799), 1, + STATE(4788), 1, sym_comment, - ACTIONS(1939), 2, + ACTIONS(2439), 2, ts_builtin_sym_end, sym__space, - ACTIONS(1937), 11, + ACTIONS(2437), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386345,75 +385490,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, - [174516] = 4, + [174564] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8320), 1, + ACTIONS(1004), 1, anon_sym_DASH2, - STATE(4800), 1, + STATE(4789), 1, sym_comment, - ACTIONS(8318), 12, + ACTIONS(1000), 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, - [174540] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(4801), 1, - sym_comment, - ACTIONS(2166), 2, - ts_builtin_sym_end, - sym__space, - ACTIONS(2160), 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, - [174564] = 4, + anon_sym_LBRACE, + [174588] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4802), 1, - sym_comment, - ACTIONS(1733), 3, + ACTIONS(8307), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1735), 10, + STATE(4790), 1, + sym_comment, + ACTIONS(8305), 12, + anon_sym_EQ, + sym_identifier, sym__newline, - anon_sym_SEMI, + anon_sym_PIPE, + anon_sym_COLON, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_COMMA, + anon_sym_DOLLAR, + anon_sym_AT, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [174588] = 4, - ACTIONS(3), 1, + [174612] = 3, + ACTIONS(251), 1, anon_sym_POUND, - STATE(4803), 1, + STATE(4791), 1, sym_comment, - ACTIONS(5067), 2, + ACTIONS(7973), 12, ts_builtin_sym_end, - sym__space, - ACTIONS(5069), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386425,12 +385548,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, - [174612] = 3, + [174633] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4804), 1, + STATE(4792), 1, sym_comment, - ACTIONS(8122), 12, + ACTIONS(8009), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386443,14 +385566,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, - [174633] = 4, + [174654] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8324), 1, + ACTIONS(8311), 1, anon_sym_DASH2, - STATE(4805), 1, + STATE(4793), 1, sym_comment, - ACTIONS(8322), 11, + ACTIONS(8309), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386462,14 +385585,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174656] = 4, + [174677] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7647), 1, + ACTIONS(7680), 1, anon_sym_DASH2, - STATE(4806), 1, + STATE(4794), 1, sym_comment, - ACTIONS(7645), 11, + ACTIONS(7678), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386481,39 +385604,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174679] = 12, + [174700] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7986), 1, + ACTIONS(7927), 1, anon_sym_DASH_DASH, - ACTIONS(7988), 1, + ACTIONS(7929), 1, anon_sym_DASH2, - ACTIONS(8326), 1, + ACTIONS(8313), 1, anon_sym_DOLLAR, - ACTIONS(8328), 1, + ACTIONS(8315), 1, anon_sym_LBRACE, - STATE(1865), 1, - sym_block, - STATE(1867), 1, + STATE(1812), 1, sym_val_closure, - STATE(4807), 1, + STATE(1821), 1, + sym_block, + STATE(4795), 1, sym_comment, - STATE(4954), 1, + STATE(4942), 1, aux_sym_ctrl_do_repeat1, - STATE(5967), 1, + STATE(5905), 1, sym__flag, - STATE(790), 2, + STATE(780), 2, sym__blosure, sym_val_variable, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [174718] = 3, + [174739] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4808), 1, + STATE(4796), 1, sym_comment, - ACTIONS(6858), 12, + ACTIONS(6865), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386526,56 +385649,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174739] = 6, + [174760] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8330), 1, + ACTIONS(8317), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8332), 1, - aux_sym__immediate_decimal_token2, - STATE(4809), 1, - sym_comment, - ACTIONS(1597), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [174766] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8334), 1, - anon_sym_DOT, - ACTIONS(8336), 1, + ACTIONS(8319), 1, aux_sym__immediate_decimal_token2, - STATE(4810), 1, + STATE(4797), 1, sym_comment, - ACTIONS(1589), 4, + ACTIONS(1599), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, + ACTIONS(1597), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [174793] = 4, + [174787] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8340), 1, + ACTIONS(8323), 1, anon_sym_DASH2, - STATE(4811), 1, + STATE(4798), 1, sym_comment, - ACTIONS(8338), 11, + ACTIONS(8321), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386587,14 +385689,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174816] = 4, + [174810] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8340), 1, + ACTIONS(8323), 1, anon_sym_DASH2, - STATE(4812), 1, + STATE(4799), 1, sym_comment, - ACTIONS(8338), 11, + ACTIONS(8321), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386606,12 +385708,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [174839] = 3, + [174833] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4813), 1, + STATE(4800), 1, sym_comment, - ACTIONS(8342), 12, + ACTIONS(8325), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386624,12 +385726,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174860] = 3, + [174854] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4814), 1, + STATE(4801), 1, sym_comment, - ACTIONS(8344), 12, + ACTIONS(8327), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386642,12 +385744,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174881] = 3, + [174875] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4815), 1, + STATE(4802), 1, sym_comment, - ACTIONS(8346), 12, + ACTIONS(8329), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386660,12 +385762,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174902] = 3, + [174896] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4816), 1, + STATE(4803), 1, sym_comment, - ACTIONS(8348), 12, + ACTIONS(8331), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386678,12 +385780,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174923] = 3, + [174917] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4817), 1, + STATE(4804), 1, sym_comment, - ACTIONS(8350), 12, + ACTIONS(8333), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386696,45 +385798,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [174944] = 12, + [174938] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1553), 1, + ACTIONS(1543), 1, anon_sym_LBRACE, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(8352), 1, + ACTIONS(8335), 1, anon_sym_DOT, - ACTIONS(8356), 1, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - STATE(4818), 1, + STATE(4805), 1, sym_comment, - STATE(5896), 1, + STATE(5992), 1, sym__immediate_decimal, - ACTIONS(8354), 2, + ACTIONS(8337), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6156), 2, + STATE(6611), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [174983] = 6, + [174977] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - STATE(725), 1, + STATE(751), 1, aux_sym__pipe_separator, - STATE(4819), 1, + STATE(4806), 1, sym_comment, - STATE(5022), 1, + STATE(5010), 1, aux_sym_shebang_repeat1, - ACTIONS(2519), 9, + ACTIONS(2506), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -386744,12 +385846,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, - [175010] = 3, + [175004] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4820), 1, + STATE(4807), 1, sym_comment, - ACTIONS(8360), 12, + ACTIONS(8343), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -386762,12 +385864,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [175031] = 3, + [175025] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4821), 1, + STATE(4808), 1, sym_comment, - ACTIONS(8026), 12, + ACTIONS(8249), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386780,93 +385882,93 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [175052] = 12, + [175046] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1709), 1, + ACTIONS(1703), 1, sym__entry_separator, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8096), 1, + ACTIONS(8131), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8362), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8364), 1, + ACTIONS(8347), 1, aux_sym__immediate_decimal_token3, - STATE(4822), 1, + STATE(4809), 1, sym_comment, - STATE(6816), 1, + STATE(6697), 1, sym__immediate_decimal, - ACTIONS(1707), 2, + ACTIONS(1701), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6805), 2, + STATE(6695), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [175091] = 12, + [175085] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1713), 1, + ACTIONS(1707), 1, sym__entry_separator, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8096), 1, + ACTIONS(8131), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8362), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8364), 1, + ACTIONS(8347), 1, aux_sym__immediate_decimal_token3, - STATE(4823), 1, + STATE(4810), 1, sym_comment, - STATE(6823), 1, + STATE(6701), 1, sym__immediate_decimal, - ACTIONS(1711), 2, + ACTIONS(1705), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6820), 2, + STATE(6698), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [175130] = 12, + [175124] = 12, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1665), 1, + ACTIONS(1711), 1, sym__entry_separator, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8096), 1, + ACTIONS(8131), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8362), 1, + ACTIONS(8345), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8364), 1, + ACTIONS(8347), 1, aux_sym__immediate_decimal_token3, - STATE(4824), 1, + STATE(4811), 1, sym_comment, - STATE(6847), 1, + STATE(6718), 1, sym__immediate_decimal, - ACTIONS(1657), 2, + ACTIONS(1709), 2, anon_sym_RBRACK, anon_sym_RBRACE, - STATE(6840), 2, + STATE(6717), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [175169] = 3, + [175163] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4825), 1, + STATE(4812), 1, sym_comment, - ACTIONS(8046), 12, + ACTIONS(8235), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386879,40 +385981,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, - [175190] = 13, + [175184] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1539), 1, + ACTIONS(1529), 1, anon_sym_RBRACE, - ACTIONS(1553), 1, + ACTIONS(1543), 1, sym__entry_separator, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8366), 1, + ACTIONS(8349), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8368), 1, + ACTIONS(8351), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8370), 1, + ACTIONS(8353), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8372), 1, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token5, - STATE(4826), 1, + STATE(4813), 1, sym_comment, - STATE(6089), 1, + STATE(6262), 1, sym__immediate_decimal, - STATE(7059), 2, + STATE(7181), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [175231] = 3, + [175225] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4827), 1, + STATE(4814), 1, sym_comment, - ACTIONS(8110), 12, + ACTIONS(7957), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -386925,14 +386027,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, - [175252] = 4, + [175246] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8376), 1, + ACTIONS(8359), 1, anon_sym_DASH2, - STATE(4828), 1, + STATE(4815), 1, sym_comment, - ACTIONS(8374), 11, + ACTIONS(8357), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386944,42 +386046,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175275] = 13, + [175269] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1587), 1, anon_sym_RBRACE, - ACTIONS(1629), 1, + ACTIONS(1589), 1, sym__entry_separator, - ACTIONS(1631), 1, + ACTIONS(1591), 1, aux_sym__unquoted_in_record_token2, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8366), 1, + ACTIONS(8349), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8368), 1, + ACTIONS(8351), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8370), 1, + ACTIONS(8353), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8372), 1, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token5, - STATE(4829), 1, + STATE(4816), 1, sym_comment, - STATE(6168), 1, + STATE(6387), 1, sym__immediate_decimal, - STATE(6848), 2, + STATE(6721), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [175316] = 4, + [175310] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8380), 1, + STATE(4817), 1, + sym_comment, + ACTIONS(1605), 3, anon_sym_DASH2, - STATE(4830), 1, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [175333] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8363), 1, + anon_sym_DASH2, + STATE(4818), 1, sym_comment, - ACTIONS(8378), 11, + ACTIONS(8361), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -386991,14 +386112,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175339] = 4, + [175356] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8384), 1, + ACTIONS(8367), 1, anon_sym_DASH2, - STATE(4831), 1, + STATE(4819), 1, sym_comment, - ACTIONS(8382), 11, + ACTIONS(8365), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387010,14 +386131,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175362] = 4, + [175379] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4820), 1, + sym_comment, + ACTIONS(1597), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 9, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [175402] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8388), 1, + ACTIONS(8371), 1, anon_sym_DASH2, - STATE(4832), 1, + STATE(4821), 1, sym_comment, - ACTIONS(8386), 11, + ACTIONS(8369), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387029,14 +386169,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175385] = 4, + [175425] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8392), 1, + ACTIONS(8375), 1, anon_sym_DASH2, - STATE(4833), 1, + STATE(4822), 1, sym_comment, - ACTIONS(8390), 11, + ACTIONS(8373), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387048,16 +386188,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175408] = 4, + [175448] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4834), 1, + STATE(4823), 1, sym_comment, - ACTIONS(1587), 3, + ACTIONS(1685), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 9, + ACTIONS(1687), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387067,14 +386207,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [175431] = 4, + [175471] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8396), 1, + ACTIONS(8379), 1, anon_sym_DASH2, - STATE(4835), 1, + STATE(4824), 1, sym_comment, - ACTIONS(8394), 11, + ACTIONS(8377), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387086,54 +386226,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175454] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4836), 1, - sym_comment, - ACTIONS(1595), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [175477] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4837), 1, - sym_comment, - ACTIONS(1667), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 9, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [175500] = 4, + [175494] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4838), 1, + STATE(4825), 1, sym_comment, - ACTIONS(1733), 3, + ACTIONS(1727), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1735), 9, + ACTIONS(1729), 9, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387143,14 +386245,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [175523] = 4, + [175517] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8400), 1, + ACTIONS(8383), 1, anon_sym_DASH2, - STATE(4839), 1, + STATE(4826), 1, sym_comment, - ACTIONS(8398), 11, + ACTIONS(8381), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387162,14 +386264,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175546] = 4, + [175540] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8404), 1, + ACTIONS(8387), 1, anon_sym_DASH2, - STATE(4840), 1, + STATE(4827), 1, sym_comment, - ACTIONS(8402), 11, + ACTIONS(8385), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387181,14 +386283,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175569] = 4, + [175563] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2170), 1, + ACTIONS(2059), 1, anon_sym_DASH2, - STATE(4841), 1, + STATE(4828), 1, sym_comment, - ACTIONS(2176), 11, + ACTIONS(2065), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387200,18 +386302,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175592] = 7, + [175586] = 7, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(948), 1, anon_sym_DOT_DOT2, - ACTIONS(8062), 1, + ACTIONS(8001), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(4842), 1, + STATE(4829), 1, sym_comment, - STATE(4847), 1, + STATE(4834), 1, aux_sym_cell_path_repeat1, ACTIONS(950), 8, sym__newline, @@ -387222,14 +386324,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [175621] = 4, + [175615] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2341), 1, + ACTIONS(2441), 1, anon_sym_DASH2, - STATE(4843), 1, + STATE(4830), 1, sym_comment, - ACTIONS(2343), 11, + ACTIONS(2443), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387241,14 +386343,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175644] = 4, + [175638] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2144), 1, + ACTIONS(2047), 1, anon_sym_DASH2, - STATE(4844), 1, + STATE(4831), 1, sym_comment, - ACTIONS(2150), 11, + ACTIONS(2053), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387260,14 +386362,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175667] = 4, + [175661] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2152), 1, + ACTIONS(2080), 1, anon_sym_DASH2, - STATE(4845), 1, + STATE(4832), 1, sym_comment, - ACTIONS(2158), 11, + ACTIONS(2086), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387279,14 +386381,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175690] = 4, + [175684] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2160), 1, + ACTIONS(2072), 1, anon_sym_DASH2, - STATE(4846), 1, + STATE(4833), 1, sym_comment, - ACTIONS(2166), 11, + ACTIONS(2078), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387298,16 +386400,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175713] = 6, + [175707] = 6, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(941), 1, anon_sym_DOT_DOT2, - ACTIONS(8406), 1, + ACTIONS(8389), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(4847), 2, + STATE(4834), 2, sym_comment, aux_sym_cell_path_repeat1, ACTIONS(943), 8, @@ -387319,14 +386421,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, anon_sym_COLON2, - [175740] = 4, + [175734] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2357), 1, + ACTIONS(2425), 1, anon_sym_DASH2, - STATE(4848), 1, + STATE(4835), 1, sym_comment, - ACTIONS(2359), 11, + ACTIONS(2427), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387338,14 +386440,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175763] = 4, + [175757] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2361), 1, + ACTIONS(2433), 1, anon_sym_DASH2, - STATE(4849), 1, + STATE(4836), 1, sym_comment, - ACTIONS(2363), 11, + ACTIONS(2435), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387357,14 +386459,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175786] = 4, + [175780] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2365), 1, + ACTIONS(2437), 1, anon_sym_DASH2, - STATE(4850), 1, + STATE(4837), 1, sym_comment, - ACTIONS(2367), 11, + ACTIONS(2439), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387376,14 +386478,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175809] = 4, + [175803] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2373), 1, + ACTIONS(2457), 1, anon_sym_DASH2, - STATE(4851), 1, + STATE(4838), 1, sym_comment, - ACTIONS(2375), 11, + ACTIONS(2459), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387395,14 +386497,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175832] = 4, + [175826] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2377), 1, + ACTIONS(2465), 1, anon_sym_DASH2, - STATE(4852), 1, + STATE(4839), 1, sym_comment, - ACTIONS(2379), 11, + ACTIONS(2467), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387414,14 +386516,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175855] = 4, + [175849] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2381), 1, + ACTIONS(2300), 1, anon_sym_DASH2, - STATE(4853), 1, + STATE(4840), 1, sym_comment, - ACTIONS(2383), 11, + ACTIONS(2302), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387433,14 +386535,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175878] = 4, + [175872] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2385), 1, + ACTIONS(2304), 1, anon_sym_DASH2, - STATE(4854), 1, + STATE(4841), 1, sym_comment, - ACTIONS(2387), 11, + ACTIONS(2306), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387452,14 +386554,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175901] = 4, + [175895] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2389), 1, + ACTIONS(2308), 1, anon_sym_DASH2, - STATE(4855), 1, + STATE(4842), 1, sym_comment, - ACTIONS(2391), 11, + ACTIONS(2310), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387471,14 +386573,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175924] = 4, + [175918] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2393), 1, + ACTIONS(2330), 1, anon_sym_DASH2, - STATE(4856), 1, + STATE(4843), 1, sym_comment, - ACTIONS(2395), 11, + ACTIONS(2332), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387490,14 +386592,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175947] = 4, + [175941] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2397), 1, + ACTIONS(2389), 1, anon_sym_DASH2, - STATE(4857), 1, + STATE(4844), 1, sym_comment, - ACTIONS(2399), 11, + ACTIONS(2391), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387509,12 +386611,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [175970] = 3, + [175964] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4858), 1, + STATE(4845), 1, sym_comment, - ACTIONS(5075), 12, + ACTIONS(5030), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387527,12 +386629,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, - [175991] = 3, + [175985] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4859), 1, + STATE(4846), 1, sym_comment, - ACTIONS(5079), 12, + ACTIONS(5038), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387545,33 +386647,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, - [176012] = 6, + [176006] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4860), 1, + STATE(4847), 1, sym_comment, - ACTIONS(6902), 2, + ACTIONS(6899), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6908), 2, + ACTIONS(6905), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6904), 4, + ACTIONS(6901), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6906), 4, + ACTIONS(6903), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [176039] = 3, + [176033] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4861), 1, + STATE(4848), 1, sym_comment, - ACTIONS(8024), 12, + ACTIONS(8303), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387584,43 +386686,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, - [176060] = 13, + [176054] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1539), 1, + ACTIONS(1529), 1, anon_sym_RBRACE, - ACTIONS(1553), 1, + ACTIONS(1543), 1, sym__entry_separator, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8092), 1, + ACTIONS(8127), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8094), 1, + ACTIONS(8129), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8096), 1, + ACTIONS(8131), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8133), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8409), 1, + ACTIONS(8392), 1, anon_sym_DOT, - STATE(4862), 1, + STATE(4849), 1, sym_comment, - STATE(5921), 1, + STATE(5960), 1, sym__immediate_decimal, - STATE(5750), 2, + STATE(5684), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [176101] = 4, + [176095] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4863), 1, + STATE(4850), 1, sym_comment, - ACTIONS(8411), 2, + ACTIONS(8394), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(8413), 10, + ACTIONS(8396), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387631,12 +386733,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [176124] = 3, + [176118] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4864), 1, + STATE(4851), 1, sym_comment, - ACTIONS(8116), 12, + ACTIONS(8225), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387649,43 +386751,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, - [176145] = 13, + [176139] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2547), 1, + ACTIONS(2537), 1, anon_sym_DOLLAR, - ACTIONS(5282), 1, + ACTIONS(5269), 1, anon_sym_LPAREN2, - ACTIONS(5286), 1, + ACTIONS(5273), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5288), 1, + ACTIONS(5275), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5290), 1, + ACTIONS(5277), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5483), 1, + ACTIONS(5526), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8415), 1, + ACTIONS(8398), 1, anon_sym_RBRACK, - ACTIONS(8417), 1, + ACTIONS(8400), 1, anon_sym_DOLLAR2, - ACTIONS(8419), 1, + ACTIONS(8402), 1, aux_sym__immediate_decimal_token1, - STATE(2673), 1, + STATE(2701), 1, sym__immediate_decimal, - STATE(4865), 1, + STATE(4852), 1, sym_comment, - STATE(2835), 2, + STATE(2825), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [176186] = 4, + [176180] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4866), 1, + STATE(4853), 1, sym_comment, - ACTIONS(7489), 2, + ACTIONS(7505), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7491), 10, + ACTIONS(7507), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387696,15 +386798,15 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [176209] = 4, + [176203] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4867), 1, + STATE(4854), 1, sym_comment, - ACTIONS(8421), 2, + ACTIONS(8404), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(8423), 10, + ACTIONS(8406), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387715,40 +386817,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [176232] = 13, + [176226] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5446), 1, + ACTIONS(5385), 1, anon_sym_LPAREN2, - ACTIONS(5450), 1, + ACTIONS(5389), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5452), 1, + ACTIONS(5391), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, + ACTIONS(5741), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8417), 1, + ACTIONS(8400), 1, anon_sym_DOLLAR2, - ACTIONS(8425), 1, + ACTIONS(8408), 1, anon_sym_RBRACK, - ACTIONS(8427), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR, - ACTIONS(8429), 1, + ACTIONS(8412), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8431), 1, + ACTIONS(8414), 1, aux_sym__immediate_decimal_token5, - STATE(2828), 1, + STATE(2821), 1, sym__immediate_decimal, - STATE(4868), 1, + STATE(4855), 1, sym_comment, - STATE(2884), 2, + STATE(2907), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [176273] = 3, + [176267] = 12, ACTIONS(251), 1, anon_sym_POUND, - STATE(4869), 1, + ACTIONS(7925), 1, + anon_sym_DOLLAR, + ACTIONS(7927), 1, + anon_sym_DASH_DASH, + ACTIONS(7929), 1, + anon_sym_DASH2, + ACTIONS(7931), 1, + anon_sym_LBRACE, + STATE(1730), 1, + sym_block, + STATE(1734), 1, + sym_val_closure, + STATE(4856), 1, + sym_comment, + STATE(4858), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, + sym__flag, + STATE(767), 2, + sym__blosure, + sym_val_variable, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [176306] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4857), 1, sym_comment, - ACTIONS(8018), 12, + ACTIONS(8251), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387761,39 +386890,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, - [176294] = 12, + [176327] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7984), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR, - ACTIONS(7986), 1, + ACTIONS(7927), 1, anon_sym_DASH_DASH, - ACTIONS(7988), 1, + ACTIONS(7929), 1, anon_sym_DASH2, - ACTIONS(7990), 1, + ACTIONS(7931), 1, anon_sym_LBRACE, - STATE(1803), 1, + STATE(1730), 1, sym_block, - STATE(1804), 1, + STATE(1734), 1, sym_val_closure, - STATE(4870), 1, + STATE(4858), 1, sym_comment, - STATE(4874), 1, + STATE(5368), 1, aux_sym_ctrl_do_repeat1, - STATE(5967), 1, + STATE(5905), 1, sym__flag, - STATE(772), 2, + STATE(759), 2, sym__blosure, sym_val_variable, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [176333] = 3, + [176366] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4871), 1, + STATE(4859), 1, sym_comment, - ACTIONS(8022), 12, + ACTIONS(8253), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387806,12 +386935,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, - [176354] = 3, + [176387] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4872), 1, + STATE(4860), 1, sym_comment, - ACTIONS(7924), 12, + ACTIONS(7808), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -387824,81 +386953,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, - [176375] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7691), 1, - anon_sym_DASH2, - STATE(4873), 1, - sym_comment, - ACTIONS(7689), 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, - [176398] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7984), 1, - anon_sym_DOLLAR, - ACTIONS(7986), 1, - anon_sym_DASH_DASH, - ACTIONS(7988), 1, - anon_sym_DASH2, - ACTIONS(7990), 1, - anon_sym_LBRACE, - STATE(1803), 1, - sym_block, - STATE(1804), 1, - sym_val_closure, - STATE(4874), 1, - sym_comment, - STATE(5366), 1, - aux_sym_ctrl_do_repeat1, - STATE(5967), 1, - sym__flag, - STATE(774), 2, - sym__blosure, - sym_val_variable, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [176437] = 6, + [176408] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4875), 1, + STATE(4861), 1, sym_comment, - ACTIONS(6888), 2, + ACTIONS(6877), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(6894), 2, + ACTIONS(6883), 2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - ACTIONS(6890), 4, + ACTIONS(6879), 4, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, anon_sym_ends_DASHwith2, - ACTIONS(6892), 4, + ACTIONS(6881), 4, anon_sym_EQ_EQ2, anon_sym_BANG_EQ2, anon_sym_LT_EQ2, anon_sym_GT_EQ2, - [176464] = 4, + [176435] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8435), 1, + ACTIONS(7637), 1, anon_sym_DASH2, - STATE(4876), 1, + STATE(4862), 1, sym_comment, - ACTIONS(8433), 11, + ACTIONS(7635), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387910,14 +386993,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176487] = 4, + [176458] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8439), 1, + ACTIONS(8418), 1, anon_sym_DASH2, - STATE(4877), 1, + STATE(4863), 1, sym_comment, - ACTIONS(8437), 11, + ACTIONS(8416), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387929,15 +387012,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176510] = 4, + [176481] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(4878), 1, + ACTIONS(8422), 1, + anon_sym_DASH2, + STATE(4864), 1, + sym_comment, + ACTIONS(8420), 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, + [176504] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4865), 1, sym_comment, - ACTIONS(7551), 2, + ACTIONS(7487), 2, anon_sym_GT2, anon_sym_LT2, - ACTIONS(7553), 10, + ACTIONS(7489), 10, anon_sym_in2, anon_sym_not_DASHin2, anon_sym_starts_DASHwith2, @@ -387948,41 +387050,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ2, anon_sym_EQ_TILDE2, anon_sym_BANG_TILDE2, - [176533] = 12, + [176527] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(8441), 1, + ACTIONS(8424), 1, sym_identifier, - ACTIONS(8443), 1, + ACTIONS(8426), 1, sym__newline, - ACTIONS(8445), 1, + ACTIONS(8428), 1, anon_sym_GT2, - STATE(4879), 1, + STATE(4866), 1, sym_comment, - STATE(4991), 1, + STATE(5012), 1, aux_sym_shebang_repeat1, - STATE(5246), 1, + STATE(5220), 1, aux_sym_collection_type_repeat1, - STATE(6476), 1, + STATE(6242), 1, sym_val_string, - ACTIONS(3127), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [176572] = 4, + [176566] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8449), 1, + ACTIONS(8432), 1, anon_sym_DASH2, - STATE(4880), 1, + STATE(4867), 1, sym_comment, - ACTIONS(8447), 11, + ACTIONS(8430), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -387994,12 +387096,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [176595] = 3, + [176589] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4881), 1, + STATE(4868), 1, sym_comment, - ACTIONS(8451), 12, + ACTIONS(8434), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388012,12 +387114,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176616] = 3, + [176610] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4882), 1, + STATE(4869), 1, sym_comment, - ACTIONS(8453), 12, + ACTIONS(8436), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388030,12 +387132,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176637] = 3, + [176631] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4883), 1, + STATE(4870), 1, sym_comment, - ACTIONS(8455), 12, + ACTIONS(8438), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388048,12 +387150,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176658] = 3, + [176652] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4884), 1, + STATE(4871), 1, sym_comment, - ACTIONS(8457), 12, + ACTIONS(8440), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388066,12 +387168,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176679] = 3, + [176673] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4885), 1, + STATE(4872), 1, sym_comment, - ACTIONS(8459), 12, + ACTIONS(8442), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388084,12 +387186,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176700] = 3, + [176694] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4886), 1, + STATE(4873), 1, sym_comment, - ACTIONS(8461), 12, + ACTIONS(8444), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388102,12 +387204,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176721] = 3, + [176715] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4887), 1, + STATE(4874), 1, sym_comment, - ACTIONS(8463), 12, + ACTIONS(8446), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388120,12 +387222,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176742] = 3, + [176736] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4888), 1, + STATE(4875), 1, sym_comment, - ACTIONS(8465), 12, + ACTIONS(8448), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388138,91 +387240,91 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176763] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(8467), 1, - sym_filesize_unit, - ACTIONS(8469), 1, - sym_duration_unit, - ACTIONS(8471), 1, - aux_sym_unquoted_token2, - STATE(4889), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [176796] = 12, + [176757] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(8443), 1, + ACTIONS(8426), 1, sym__newline, - ACTIONS(8473), 1, + ACTIONS(8450), 1, sym_identifier, - ACTIONS(8475), 1, + ACTIONS(8452), 1, anon_sym_GT2, - STATE(4890), 1, + STATE(4876), 1, sym_comment, - STATE(5024), 1, + STATE(5011), 1, aux_sym_shebang_repeat1, - STATE(5247), 1, + STATE(5224), 1, aux_sym_collection_type_repeat1, - STATE(6471), 1, + STATE(6374), 1, sym_val_string, - ACTIONS(3127), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [176835] = 13, + [176796] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1663), 1, + anon_sym_DASH2, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(8454), 1, + sym_filesize_unit, + ACTIONS(8456), 1, + sym_duration_unit, + ACTIONS(8458), 1, + aux_sym_unquoted_token2, + STATE(4877), 1, + sym_comment, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1675), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [176829] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1627), 1, + ACTIONS(1587), 1, anon_sym_RBRACK, - ACTIONS(1629), 1, + ACTIONS(1589), 1, sym__entry_separator, - ACTIONS(1631), 1, + ACTIONS(1591), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8477), 1, + ACTIONS(8460), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8479), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8481), 1, + ACTIONS(8464), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8483), 1, + ACTIONS(8466), 1, aux_sym__immediate_decimal_token5, - STATE(4891), 1, + STATE(4878), 1, sym_comment, - STATE(6091), 1, + STATE(6138), 1, sym__immediate_decimal, - STATE(6848), 2, + STATE(6721), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [176876] = 3, + [176870] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4892), 1, + STATE(4879), 1, sym_comment, - ACTIONS(8118), 12, + ACTIONS(7975), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388235,12 +387337,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, - [176897] = 3, + [176891] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4893), 1, + STATE(4880), 1, sym_comment, - ACTIONS(6762), 12, + ACTIONS(6767), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388253,12 +387355,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, - [176918] = 3, + [176912] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4894), 1, + STATE(4881), 1, sym_comment, - ACTIONS(8485), 12, + ACTIONS(8468), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388271,12 +387373,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176939] = 3, + [176933] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4895), 1, + STATE(4882), 1, sym_comment, - ACTIONS(8487), 12, + ACTIONS(8470), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388289,12 +387391,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [176960] = 3, + [176954] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4896), 1, + STATE(4883), 1, sym_comment, - ACTIONS(7962), 12, + ACTIONS(6755), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388307,12 +387409,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, - [176981] = 3, + [176975] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4897), 1, + STATE(4884), 1, sym_comment, - ACTIONS(8489), 12, + ACTIONS(8472), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388325,12 +387427,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177002] = 3, + [176996] = 13, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5385), 1, + anon_sym_LPAREN2, + ACTIONS(5389), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8398), 1, + anon_sym_RBRACK, + ACTIONS(8400), 1, + anon_sym_DOLLAR2, + ACTIONS(8410), 1, + anon_sym_DOLLAR, + ACTIONS(8412), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8414), 1, + aux_sym__immediate_decimal_token5, + STATE(2821), 1, + sym__immediate_decimal, + STATE(4885), 1, + sym_comment, + STATE(2907), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [177037] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4898), 1, + STATE(4886), 1, sym_comment, - ACTIONS(8048), 12, + ACTIONS(8285), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388343,12 +387473,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, - [177023] = 3, + [177058] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4899), 1, + STATE(4887), 1, sym_comment, - ACTIONS(8054), 12, + ACTIONS(8287), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388361,63 +387491,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, - [177044] = 6, + [177079] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8491), 1, + ACTIONS(8474), 1, anon_sym_DOT, - ACTIONS(8493), 1, + ACTIONS(8476), 1, aux_sym__immediate_decimal_token2, - STATE(4900), 1, + STATE(4888), 1, sym_comment, - ACTIONS(1587), 4, + ACTIONS(1605), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1589), 6, + ACTIONS(1607), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [177071] = 13, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5446), 1, - anon_sym_LPAREN2, - ACTIONS(5450), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8415), 1, - anon_sym_RBRACK, - ACTIONS(8417), 1, - anon_sym_DOLLAR2, - ACTIONS(8427), 1, - anon_sym_DOLLAR, - ACTIONS(8429), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8431), 1, - aux_sym__immediate_decimal_token5, - STATE(2828), 1, - sym__immediate_decimal, - STATE(4901), 1, - sym_comment, - STATE(2884), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [177112] = 4, + [177106] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7676), 1, + ACTIONS(7629), 1, anon_sym_DASH2, - STATE(4902), 1, + STATE(4889), 1, sym_comment, - ACTIONS(7674), 11, + ACTIONS(7627), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -388429,61 +387531,61 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [177135] = 13, + [177129] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5446), 1, + ACTIONS(5385), 1, anon_sym_LPAREN2, - ACTIONS(5450), 1, + ACTIONS(5389), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5452), 1, + ACTIONS(5391), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, + ACTIONS(5741), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8417), 1, + ACTIONS(8400), 1, anon_sym_DOLLAR2, - ACTIONS(8427), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR, - ACTIONS(8429), 1, + ACTIONS(8412), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8431), 1, + ACTIONS(8414), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8495), 1, + ACTIONS(8478), 1, anon_sym_RBRACK, - STATE(2828), 1, + STATE(2821), 1, sym__immediate_decimal, - STATE(4903), 1, + STATE(4890), 1, sym_comment, - STATE(2884), 2, + STATE(2907), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [177176] = 6, + [177170] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8497), 1, + ACTIONS(8480), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8499), 1, + ACTIONS(8482), 1, aux_sym__immediate_decimal_token2, - STATE(4904), 1, + STATE(4891), 1, sym_comment, - ACTIONS(1595), 4, + ACTIONS(1597), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1597), 6, + ACTIONS(1599), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [177203] = 3, + [177197] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4905), 1, + STATE(4892), 1, sym_comment, - ACTIONS(8501), 12, + ACTIONS(8484), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388496,12 +387598,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177224] = 3, + [177218] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4906), 1, + STATE(4893), 1, sym_comment, - ACTIONS(8503), 12, + ACTIONS(8486), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388514,12 +387616,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177245] = 3, + [177239] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4907), 1, + STATE(4894), 1, sym_comment, - ACTIONS(6860), 12, + ACTIONS(6791), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388532,12 +387634,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177266] = 3, + [177260] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4908), 1, + STATE(4895), 1, sym_comment, - ACTIONS(8505), 12, + ACTIONS(8488), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388550,12 +387652,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177287] = 3, + [177281] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4909), 1, + STATE(4896), 1, sym_comment, - ACTIONS(8507), 12, + ACTIONS(8490), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388568,74 +387670,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177308] = 11, + [177302] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(8511), 1, + ACTIONS(8494), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8513), 1, + ACTIONS(8496), 1, aux_sym__immediate_decimal_token5, - STATE(4910), 1, + STATE(4897), 1, sym_comment, - STATE(6762), 1, + STATE(6947), 1, sym__immediate_decimal, - ACTIONS(1553), 2, + ACTIONS(1543), 2, anon_sym_PIPE, anon_sym_EQ_GT, - ACTIONS(8509), 2, + ACTIONS(8492), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2035), 2, + STATE(2016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [177345] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4911), 1, - sym_comment, - ACTIONS(8515), 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, - [177366] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(4912), 1, - sym_comment, - ACTIONS(8517), 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, - [177387] = 3, + [177339] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4913), 1, + STATE(4898), 1, sym_comment, - ACTIONS(8519), 12, + ACTIONS(8498), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388648,12 +387714,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177408] = 3, + [177360] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4914), 1, + STATE(4899), 1, sym_comment, - ACTIONS(8521), 12, + ACTIONS(8500), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388666,12 +387732,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177429] = 3, + [177381] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4915), 1, + STATE(4900), 1, sym_comment, - ACTIONS(8523), 12, + ACTIONS(8502), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388684,12 +387750,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177450] = 3, + [177402] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4916), 1, + STATE(4901), 1, sym_comment, - ACTIONS(8525), 12, + ACTIONS(8504), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388702,12 +387768,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177471] = 3, + [177423] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4917), 1, + STATE(4902), 1, sym_comment, - ACTIONS(8527), 12, + ACTIONS(8506), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388720,12 +387786,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177492] = 3, + [177444] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4918), 1, + STATE(4903), 1, sym_comment, - ACTIONS(8529), 12, + ACTIONS(8508), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388738,12 +387804,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177513] = 3, + [177465] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4919), 1, + STATE(4904), 1, sym_comment, - ACTIONS(8531), 12, + ACTIONS(8510), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388756,38 +387822,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177534] = 10, + [177486] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7932), 1, + ACTIONS(7919), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, + ACTIONS(7921), 1, aux_sym__immediate_decimal_token5, - STATE(2034), 1, + STATE(2015), 1, sym__immediate_decimal, - STATE(4920), 1, + STATE(4905), 1, sym_comment, - ACTIONS(8533), 2, + ACTIONS(8512), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(2014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1643), 3, + ACTIONS(1557), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [177569] = 3, + [177521] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4921), 1, + STATE(4906), 1, sym_comment, - ACTIONS(7950), 12, - ts_builtin_sym_end, + ACTIONS(8514), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388799,88 +387864,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [177590] = 10, + anon_sym_RPAREN, + [177542] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7932), 1, + ACTIONS(7919), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, + ACTIONS(7921), 1, aux_sym__immediate_decimal_token5, - STATE(2045), 1, + STATE(2028), 1, sym__immediate_decimal, - STATE(4922), 1, + STATE(4907), 1, sym_comment, - ACTIONS(8533), 2, + ACTIONS(8512), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2044), 2, + STATE(2027), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1709), 3, + ACTIONS(1703), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [177625] = 10, + [177577] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7932), 1, + ACTIONS(7919), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, + ACTIONS(7921), 1, aux_sym__immediate_decimal_token5, - STATE(2047), 1, + STATE(2030), 1, sym__immediate_decimal, - STATE(4923), 1, + STATE(4908), 1, sym_comment, - ACTIONS(8533), 2, + ACTIONS(8512), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2046), 2, + STATE(2029), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1713), 3, + ACTIONS(1707), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [177660] = 10, + [177612] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7932), 1, + ACTIONS(7919), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, + ACTIONS(7921), 1, aux_sym__immediate_decimal_token5, - STATE(2049), 1, + STATE(2032), 1, sym__immediate_decimal, - STATE(4924), 1, + STATE(4909), 1, sym_comment, - ACTIONS(8533), 2, + ACTIONS(8512), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2048), 2, + STATE(2031), 2, sym__expr_parenthesized_immediate, sym_val_variable, - ACTIONS(1665), 3, + ACTIONS(1711), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [177695] = 3, + [177647] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4925), 1, + STATE(4910), 1, sym_comment, - ACTIONS(7960), 12, - ts_builtin_sym_end, + ACTIONS(8516), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -388892,12 +387957,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, - [177716] = 3, + anon_sym_RPAREN, + [177668] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4926), 1, + STATE(4911), 1, sym_comment, - ACTIONS(8074), 12, + ACTIONS(8051), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388910,12 +387976,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, - [177737] = 3, + [177689] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4927), 1, + STATE(4912), 1, sym_comment, - ACTIONS(8076), 12, + ACTIONS(7923), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -388928,44 +387994,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, - [177758] = 11, + [177710] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(8511), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8513), 1, - aux_sym__immediate_decimal_token5, - STATE(4928), 1, + STATE(4913), 1, sym_comment, - STATE(6851), 1, - sym__immediate_decimal, - ACTIONS(1629), 2, + ACTIONS(8295), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(8509), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2050), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [177795] = 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, + [177731] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - STATE(743), 1, - aux_sym__pipe_separator, - STATE(4929), 1, + STATE(4914), 1, sym_comment, - STATE(5022), 1, - aux_sym_shebang_repeat1, - ACTIONS(2519), 9, + ACTIONS(8297), 12, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -388975,39 +388030,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, - [177822] = 12, + [177752] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(8443), 1, + ACTIONS(8426), 1, sym__newline, - ACTIONS(8535), 1, + ACTIONS(8518), 1, sym_identifier, - ACTIONS(8537), 1, + ACTIONS(8520), 1, anon_sym_GT2, - STATE(4930), 1, + STATE(4915), 1, sym_comment, - STATE(5031), 1, + STATE(5018), 1, aux_sym_shebang_repeat1, - STATE(5257), 1, + STATE(5240), 1, aux_sym_collection_type_repeat1, - STATE(6555), 1, + STATE(6112), 1, sym_val_string, - ACTIONS(3127), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [177861] = 3, + [177791] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(4931), 1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(8494), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8496), 1, + aux_sym__immediate_decimal_token5, + STATE(4916), 1, + sym_comment, + STATE(6672), 1, + sym__immediate_decimal, + ACTIONS(1589), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(8492), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2033), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [177828] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + STATE(749), 1, + aux_sym__pipe_separator, + STATE(4917), 1, + sym_comment, + STATE(5010), 1, + aux_sym_shebang_repeat1, + ACTIONS(2506), 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, + [177855] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(4918), 1, sym_comment, - ACTIONS(8539), 12, + ACTIONS(8522), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389020,12 +388122,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177882] = 3, + [177876] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4932), 1, + STATE(4919), 1, sym_comment, - ACTIONS(8541), 12, + ACTIONS(8524), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389038,12 +388140,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177903] = 3, + [177897] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4933), 1, + STATE(4920), 1, sym_comment, - ACTIONS(8543), 12, + ACTIONS(8526), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389056,12 +388158,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177924] = 3, + [177918] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4934), 1, + STATE(4921), 1, sym_comment, - ACTIONS(8545), 12, + ACTIONS(8528), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389074,12 +388176,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177945] = 3, + [177939] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4935), 1, + STATE(4922), 1, sym_comment, - ACTIONS(8547), 12, + ACTIONS(8530), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389092,12 +388194,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177966] = 3, + [177960] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4936), 1, + STATE(4923), 1, sym_comment, - ACTIONS(8549), 12, + ACTIONS(8532), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389110,12 +388212,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [177987] = 3, + [177981] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4937), 1, + STATE(4924), 1, sym_comment, - ACTIONS(8044), 12, + ACTIONS(8223), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389128,12 +388230,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, - [178008] = 3, + [178002] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4938), 1, + STATE(4925), 1, sym_comment, - ACTIONS(8551), 12, + ACTIONS(8534), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389146,12 +388248,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178029] = 3, + [178023] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4939), 1, + STATE(4926), 1, sym_comment, - ACTIONS(8553), 12, + ACTIONS(8536), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389164,12 +388266,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178050] = 3, + [178044] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4940), 1, + STATE(4927), 1, sym_comment, - ACTIONS(8555), 12, + ACTIONS(8538), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389182,12 +388284,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178071] = 3, + [178065] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4941), 1, + STATE(4928), 1, sym_comment, - ACTIONS(8557), 12, + ACTIONS(8540), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389200,12 +388302,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178092] = 3, + [178086] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4942), 1, + STATE(4929), 1, sym_comment, - ACTIONS(8559), 12, + ACTIONS(8542), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389218,12 +388320,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178113] = 3, + [178107] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4943), 1, + STATE(4930), 1, sym_comment, - ACTIONS(8561), 12, + ACTIONS(8544), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389236,12 +388338,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178134] = 3, + [178128] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4944), 1, + STATE(4931), 1, sym_comment, - ACTIONS(8563), 12, + ACTIONS(8546), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389254,12 +388356,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178155] = 3, + [178149] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4945), 1, + STATE(4932), 1, sym_comment, - ACTIONS(8565), 12, + ACTIONS(8548), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389272,12 +388374,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178176] = 3, + [178170] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4946), 1, + STATE(4933), 1, sym_comment, - ACTIONS(8567), 12, + ACTIONS(8550), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389290,20 +388392,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178197] = 8, + [178191] = 8, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(935), 1, anon_sym_DOT_DOT2, - ACTIONS(8062), 1, + ACTIONS(8001), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(3770), 1, + STATE(3757), 1, sym_cell_path, - STATE(4842), 1, + STATE(4829), 1, aux_sym_cell_path_repeat1, - STATE(4947), 1, + STATE(4934), 1, sym_comment, ACTIONS(937), 7, sym__newline, @@ -389313,12 +388415,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [178228] = 3, + [178222] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4948), 1, + STATE(4935), 1, sym_comment, - ACTIONS(8569), 12, + ACTIONS(8552), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389331,12 +388433,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178249] = 3, + [178243] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4949), 1, + STATE(4936), 1, sym_comment, - ACTIONS(8571), 12, + ACTIONS(8554), 12, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389349,14 +388451,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, anon_sym_RPAREN, - [178270] = 4, + [178264] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(2028), 1, anon_sym_DASH2, - STATE(4950), 1, + STATE(4937), 1, sym_comment, - ACTIONS(1939), 11, + ACTIONS(2030), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389368,14 +388470,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178293] = 4, + [178287] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, + ACTIONS(2429), 1, anon_sym_DASH2, - STATE(4951), 1, + STATE(4938), 1, sym_comment, - ACTIONS(2405), 11, + ACTIONS(2431), 11, anon_sym_EQ, sym_identifier, sym__newline, @@ -389387,19 +388489,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178316] = 6, + [178310] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5752), 1, + ACTIONS(5659), 1, sym__newline, - ACTIONS(8573), 1, + ACTIONS(8556), 1, anon_sym_DASH2, - STATE(4952), 1, + STATE(4939), 1, sym_comment, ACTIONS(1268), 2, anon_sym_EQ, anon_sym_COLON, - ACTIONS(5755), 8, + ACTIONS(5662), 8, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -389408,100 +388510,46 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [178343] = 13, + [178337] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1539), 1, + ACTIONS(1529), 1, anon_sym_RBRACK, - ACTIONS(1553), 1, + ACTIONS(1543), 1, sym__entry_separator, - ACTIONS(1555), 1, + ACTIONS(1545), 1, aux_sym__unquoted_in_list_token2, - ACTIONS(3095), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(8477), 1, + ACTIONS(8460), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8479), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8483), 1, - aux_sym__immediate_decimal_token5, - STATE(4953), 1, - sym_comment, - STATE(6415), 1, - sym__immediate_decimal, - STATE(7059), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [178384] = 12, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(7986), 1, - anon_sym_DASH_DASH, - ACTIONS(7988), 1, - anon_sym_DASH2, - ACTIONS(8326), 1, - anon_sym_DOLLAR, - ACTIONS(8328), 1, - anon_sym_LBRACE, - STATE(1865), 1, - sym_block, - STATE(1867), 1, - sym_val_closure, - STATE(4954), 1, - sym_comment, - STATE(5366), 1, - aux_sym_ctrl_do_repeat1, - STATE(5967), 1, - sym__flag, - STATE(793), 2, - sym__blosure, - sym_val_variable, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [178423] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1643), 1, - sym__entry_separator, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8096), 1, + ACTIONS(8464), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8466), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8362), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8364), 1, - aux_sym__immediate_decimal_token3, - STATE(4955), 1, + STATE(4940), 1, sym_comment, - STATE(7016), 1, + STATE(6492), 1, sym__immediate_decimal, - ACTIONS(1633), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - STATE(7010), 2, + STATE(7181), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [178462] = 6, + [178378] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7853), 1, + ACTIONS(7745), 1, sym__newline, - ACTIONS(8575), 1, + ACTIONS(8558), 1, anon_sym_else, - STATE(4956), 1, + STATE(4941), 1, sym_comment, - STATE(4957), 1, + STATE(4943), 1, aux_sym_shebang_repeat1, - ACTIONS(7856), 9, + ACTIONS(7748), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389511,18 +388559,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, - [178489] = 6, + [178405] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7725), 1, + ACTIONS(7927), 1, + anon_sym_DASH_DASH, + ACTIONS(7929), 1, + anon_sym_DASH2, + ACTIONS(8313), 1, + anon_sym_DOLLAR, + ACTIONS(8315), 1, + anon_sym_LBRACE, + STATE(1812), 1, + sym_val_closure, + STATE(1821), 1, + sym_block, + STATE(4942), 1, + sym_comment, + STATE(5368), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, + sym__flag, + STATE(783), 2, + sym__blosure, + sym_val_variable, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [178444] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(7841), 1, sym__newline, - ACTIONS(8577), 1, + ACTIONS(8560), 1, anon_sym_else, - STATE(4957), 1, + STATE(4943), 1, sym_comment, - STATE(4960), 1, + STATE(4946), 1, aux_sym_shebang_repeat1, - ACTIONS(7728), 9, + ACTIONS(7844), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389532,18 +388607,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178516] = 6, + [178471] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7783), 1, + ACTIONS(7848), 1, sym__newline, - ACTIONS(8579), 1, + ACTIONS(8562), 1, anon_sym_else, - STATE(4958), 1, + STATE(4944), 1, sym_comment, - STATE(4961), 1, + STATE(4947), 1, aux_sym_shebang_repeat1, - ACTIONS(7786), 9, + ACTIONS(7851), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389553,18 +388628,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178543] = 6, + [178498] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7790), 1, + ACTIONS(7857), 1, sym__newline, - ACTIONS(8581), 1, + ACTIONS(8564), 1, anon_sym_else, - STATE(4959), 1, + STATE(4945), 1, sym_comment, - STATE(4962), 1, + STATE(4948), 1, aux_sym_shebang_repeat1, - ACTIONS(7793), 9, + ACTIONS(7860), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389574,16 +388649,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, - [178570] = 6, + [178525] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8583), 1, + ACTIONS(8566), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4960), 1, + STATE(4946), 1, sym_comment, ACTIONS(1276), 9, anon_sym_PIPE, @@ -389595,18 +388670,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178597] = 6, + [178552] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7818), 1, + ACTIONS(7784), 1, sym__newline, - ACTIONS(8586), 1, + ACTIONS(8569), 1, anon_sym_else, - STATE(4961), 1, + STATE(4947), 1, sym_comment, - STATE(4964), 1, + STATE(4950), 1, aux_sym_shebang_repeat1, - ACTIONS(7821), 9, + ACTIONS(7787), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389616,18 +388691,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178624] = 6, + [178579] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7825), 1, + ACTIONS(7791), 1, sym__newline, - ACTIONS(8588), 1, + ACTIONS(8571), 1, anon_sym_else, - STATE(4962), 1, + STATE(4948), 1, sym_comment, - STATE(4965), 1, + STATE(4951), 1, aux_sym_shebang_repeat1, - ACTIONS(7828), 9, + ACTIONS(7794), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389637,18 +388712,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178651] = 6, + [178606] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7832), 1, + ACTIONS(7819), 1, sym__newline, - ACTIONS(8590), 1, + ACTIONS(8573), 1, anon_sym_else, - STATE(4963), 1, + STATE(4949), 1, sym_comment, - STATE(4966), 1, + STATE(4952), 1, aux_sym_shebang_repeat1, - ACTIONS(7835), 9, + ACTIONS(7822), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389658,16 +388733,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, - [178678] = 6, + [178633] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8592), 1, + ACTIONS(8575), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4964), 1, + STATE(4950), 1, sym_comment, ACTIONS(1276), 9, anon_sym_PIPE, @@ -389679,16 +388754,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, - [178705] = 6, + [178660] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8595), 1, + ACTIONS(8578), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4965), 1, + STATE(4951), 1, sym_comment, ACTIONS(1276), 9, anon_sym_PIPE, @@ -389700,18 +388775,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178732] = 6, + [178687] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7718), 1, + ACTIONS(7896), 1, sym__newline, - ACTIONS(8598), 1, + ACTIONS(8581), 1, anon_sym_else, - STATE(4966), 1, + STATE(4952), 1, sym_comment, - STATE(4967), 1, + STATE(4954), 1, aux_sym_shebang_repeat1, - ACTIONS(7721), 9, + ACTIONS(7899), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -389721,16 +388796,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, - [178759] = 6, + [178714] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1557), 1, + sym__entry_separator, + ACTIONS(3082), 1, + anon_sym_DOLLAR, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8347), 1, + aux_sym__immediate_decimal_token3, + STATE(4953), 1, + sym_comment, + STATE(7032), 1, + sym__immediate_decimal, + ACTIONS(1547), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + STATE(7002), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [178753] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5004), 1, + ACTIONS(5013), 1, sym__newline, - ACTIONS(8600), 1, + ACTIONS(8583), 1, anon_sym_else, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4967), 1, + STATE(4954), 1, sym_comment, ACTIONS(1276), 9, anon_sym_PIPE, @@ -389742,20 +388844,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, - [178786] = 6, + [178780] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8603), 1, + ACTIONS(8586), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8605), 1, + ACTIONS(8588), 1, aux_sym__immediate_decimal_token2, - STATE(4968), 1, + STATE(4955), 1, sym_comment, - ACTIONS(1595), 3, + ACTIONS(1597), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1597), 7, + ACTIONS(1599), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -389763,12 +388865,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [178813] = 3, + [178807] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4969), 1, + STATE(4956), 1, sym_comment, - ACTIONS(7946), 12, + ACTIONS(7995), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389781,12 +388883,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, - [178834] = 3, + [178828] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4970), 1, + STATE(4957), 1, sym_comment, - ACTIONS(7948), 12, + ACTIONS(7997), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389799,63 +388901,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, - [178855] = 13, + [178849] = 13, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5446), 1, + ACTIONS(5385), 1, anon_sym_LPAREN2, - ACTIONS(5450), 1, + ACTIONS(5389), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5452), 1, + ACTIONS(5391), 1, aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, + ACTIONS(5741), 1, aux_sym__unquoted_in_list_token3, - ACTIONS(8417), 1, + ACTIONS(8400), 1, anon_sym_DOLLAR2, - ACTIONS(8427), 1, + ACTIONS(8410), 1, anon_sym_DOLLAR, - ACTIONS(8429), 1, + ACTIONS(8412), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8431), 1, + ACTIONS(8414), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8607), 1, + ACTIONS(8590), 1, anon_sym_RBRACK, - STATE(2828), 1, + STATE(2821), 1, sym__immediate_decimal, - STATE(4971), 1, + STATE(4958), 1, sym_comment, - STATE(2884), 2, + STATE(2907), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [178896] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8609), 1, - anon_sym_DOT, - ACTIONS(8611), 1, - aux_sym__immediate_decimal_token2, - STATE(4972), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [178923] = 4, + [178890] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8613), 1, + ACTIONS(8592), 1, anon_sym_else, - STATE(4973), 1, + STATE(4959), 1, sym_comment, - ACTIONS(7940), 11, + ACTIONS(7985), 11, sym__newline, anon_sym_SEMI, anon_sym_PIPE, @@ -389867,30 +388948,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, - [178946] = 3, + [178913] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(4974), 1, + ACTIONS(8594), 1, + anon_sym_DOT, + ACTIONS(8596), 1, + aux_sym__immediate_decimal_token2, + STATE(4960), 1, sym_comment, - ACTIONS(7952), 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, - [178967] = 3, + ACTIONS(1605), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [178940] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(4975), 1, + STATE(4961), 1, sym_comment, - ACTIONS(6780), 12, + ACTIONS(7999), 12, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, @@ -389903,330 +388987,376 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [178988] = 5, + [178961] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8620), 1, - anon_sym_DASH2, - ACTIONS(8617), 2, - sym__newline, - anon_sym_COMMA, - STATE(4976), 2, + ACTIONS(8598), 1, + anon_sym_DOT, + ACTIONS(8600), 1, + aux_sym__immediate_decimal_token2, + STATE(4962), 1, sym_comment, - aux_sym_parameter_repeat2, - ACTIONS(8615), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1607), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179012] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [178988] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(1893), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(4977), 1, + STATE(4963), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5498), 1, + STATE(5503), 1, sym_cell_path, - ACTIONS(1935), 6, + ACTIONS(1895), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179042] = 11, + [179018] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1643), 1, + ACTIONS(1557), 1, anon_sym_LBRACE, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4553), 1, + ACTIONS(4556), 1, anon_sym_DOT, - ACTIONS(6452), 1, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(8356), 1, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - STATE(4978), 1, + STATE(4964), 1, sym_comment, - STATE(6155), 1, + STATE(6610), 1, sym__immediate_decimal, - ACTIONS(8354), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6154), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [179078] = 12, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1539), 1, - anon_sym_RBRACE, - ACTIONS(1553), 1, - sym__entry_separator, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8362), 1, + ACTIONS(8337), 2, aux_sym__immediate_decimal_token1, - ACTIONS(8364), 1, aux_sym__immediate_decimal_token3, - STATE(4979), 1, - sym_comment, - STATE(7363), 1, - sym__immediate_decimal, - STATE(7059), 2, + STATE(6609), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [179116] = 9, + [179054] = 9, ACTIONS(83), 1, aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(5833), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(8624), 1, + ACTIONS(8604), 1, anon_sym_DASH2, - STATE(2545), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(4980), 1, + STATE(4965), 1, sym_comment, - ACTIONS(3445), 2, + ACTIONS(3432), 2, anon_sym_true, anon_sym_false, - STATE(2479), 4, + STATE(2441), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [179148] = 6, + [179086] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7340), 1, + ACTIONS(8608), 1, + anon_sym_DASH_DASH, + ACTIONS(8611), 1, anon_sym_DASH2, - STATE(4976), 1, - aux_sym_parameter_repeat2, - STATE(4981), 1, + STATE(5520), 1, + sym__flag, + STATE(4966), 2, sym_comment, - ACTIONS(2545), 2, + aux_sym_ctrl_do_repeat1, + STATE(5498), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8606), 5, sym__newline, - anon_sym_COMMA, - ACTIONS(7338), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, + anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_RBRACE, + anon_sym_as, + [179114] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1529), 1, + anon_sym_RBRACE, + ACTIONS(1543), 1, + sym__entry_separator, + ACTIONS(3082), 1, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179174] = 7, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8347), 1, + aux_sym__immediate_decimal_token3, + STATE(4967), 1, + sym_comment, + STATE(7243), 1, + sym__immediate_decimal, + STATE(7181), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179152] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8628), 1, + ACTIONS(8616), 1, anon_sym_DASH_DASH, - ACTIONS(8631), 1, + ACTIONS(8618), 1, anon_sym_DASH2, - STATE(5553), 1, - sym__flag, - STATE(4982), 2, - sym_comment, + ACTIONS(8620), 1, + anon_sym_as, + STATE(4966), 1, aux_sym_ctrl_do_repeat1, - STATE(5462), 2, + STATE(4968), 1, + sym_comment, + STATE(5520), 1, + sym__flag, + STATE(5498), 2, sym_short_flag, sym_long_flag, - ACTIONS(8626), 5, + ACTIONS(8614), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - anon_sym_as, - [179202] = 5, + [179184] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8634), 1, + ACTIONS(8622), 1, aux_sym__immediate_decimal_token2, - STATE(4983), 1, + STATE(4969), 1, sym_comment, - ACTIONS(1667), 4, + ACTIONS(1685), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 6, + ACTIONS(1687), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [179226] = 9, + [179208] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8638), 1, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(8626), 1, anon_sym_DASH_DASH, - ACTIONS(8640), 1, + ACTIONS(8628), 1, anon_sym_DASH2, - ACTIONS(8642), 1, - anon_sym_as, - STATE(4982), 1, - aux_sym_ctrl_do_repeat1, - STATE(4984), 1, + STATE(4970), 1, sym_comment, - STATE(5553), 1, + STATE(5097), 1, + aux_sym_ctrl_do_repeat1, + STATE(5508), 1, + sym_val_variable, + STATE(5905), 1, sym__flag, - STATE(5462), 2, + STATE(6485), 1, + sym__variable_name, + STATE(5908), 2, sym_short_flag, sym_long_flag, - ACTIONS(8636), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [179258] = 9, + [179246] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8638), 1, - anon_sym_DASH_DASH, - ACTIONS(8640), 1, + ACTIONS(8632), 1, anon_sym_DASH2, - ACTIONS(8646), 1, - anon_sym_as, - STATE(4985), 1, + STATE(4971), 1, sym_comment, - STATE(5025), 1, - aux_sym_ctrl_do_repeat1, - STATE(5553), 1, - sym__flag, - STATE(5462), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8644), 4, + STATE(5017), 1, + aux_sym_parameter_repeat2, + ACTIONS(2535), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(8630), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [179290] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8648), 1, - aux_sym__immediate_decimal_token2, - STATE(4986), 1, - sym_comment, - ACTIONS(1669), 4, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [179314] = 9, + [179272] = 9, ACTIONS(205), 1, aux_sym_expr_unary_token1, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(8650), 1, + ACTIONS(8634), 1, anon_sym_DASH2, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(4987), 1, + STATE(4972), 1, sym_comment, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(2097), 4, + STATE(2087), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [179346] = 11, + [179304] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1553), 1, - anon_sym_LBRACE, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - ACTIONS(8654), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8656), 1, - aux_sym__immediate_decimal_token5, - STATE(4988), 1, + ACTIONS(8600), 1, + aux_sym__immediate_decimal_token2, + STATE(4973), 1, sym_comment, - STATE(7330), 1, - sym__immediate_decimal, - ACTIONS(8652), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2035), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [179382] = 9, + ACTIONS(1607), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [179328] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3485), 1, + ACTIONS(3464), 1, aux_sym_expr_unary_token1, - ACTIONS(5833), 1, + ACTIONS(5782), 1, anon_sym_LPAREN, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - ACTIONS(8624), 1, + ACTIONS(8604), 1, anon_sym_DASH2, - STATE(2545), 1, + STATE(2455), 1, sym__expr_unary_minus, - STATE(4989), 1, + STATE(4974), 1, sym_comment, - ACTIONS(3445), 2, + ACTIONS(3432), 2, anon_sym_true, anon_sym_false, - STATE(2479), 4, + STATE(2441), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [179414] = 6, + [179360] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8636), 1, + anon_sym_DOT, + ACTIONS(8638), 1, + aux_sym__immediate_decimal_token2, + STATE(4975), 1, + sym_comment, + ACTIONS(1605), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1607), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [179386] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7388), 1, + ACTIONS(8616), 1, + anon_sym_DASH_DASH, + ACTIONS(8618), 1, anon_sym_DASH2, + ACTIONS(8642), 1, + anon_sym_as, + STATE(4966), 1, + aux_sym_ctrl_do_repeat1, STATE(4976), 1, - aux_sym_parameter_repeat2, - STATE(4990), 1, sym_comment, - ACTIONS(2545), 2, + STATE(5520), 1, + sym__flag, + STATE(5498), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8640), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179418] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8616), 1, + anon_sym_DASH_DASH, + ACTIONS(8618), 1, + anon_sym_DASH2, + ACTIONS(8646), 1, + anon_sym_as, + STATE(4968), 1, + aux_sym_ctrl_do_repeat1, + STATE(4977), 1, + sym_comment, + STATE(5520), 1, + sym__flag, + STATE(5498), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8644), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179450] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8650), 1, + anon_sym_DASH2, + STATE(4978), 1, + sym_comment, + STATE(5017), 1, + aux_sym_parameter_repeat2, + ACTIONS(2535), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7386), 7, + ACTIONS(8648), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390234,64 +389364,110 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179440] = 11, + [179476] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(8443), 1, + ACTIONS(8616), 1, + anon_sym_DASH_DASH, + ACTIONS(8618), 1, + anon_sym_DASH2, + ACTIONS(8654), 1, + anon_sym_as, + STATE(4976), 1, + aux_sym_ctrl_do_repeat1, + STATE(4979), 1, + sym_comment, + STATE(5520), 1, + sym__flag, + STATE(5498), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8652), 4, sym__newline, - ACTIONS(8658), 1, - sym_identifier, - STATE(4991), 1, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [179508] = 12, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1587), 1, + anon_sym_RBRACE, + ACTIONS(1589), 1, + sym__entry_separator, + ACTIONS(3082), 1, + anon_sym_DOLLAR, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8345), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8347), 1, + aux_sym__immediate_decimal_token3, + STATE(4980), 1, sym_comment, - STATE(5252), 1, - aux_sym_collection_type_repeat1, - STATE(5503), 1, - aux_sym_shebang_repeat1, - STATE(6345), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - [179476] = 6, + STATE(7339), 1, + sym__immediate_decimal, + STATE(6721), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [179546] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8662), 1, + ACTIONS(7349), 1, anon_sym_DASH2, - STATE(4976), 1, - aux_sym_parameter_repeat2, - STATE(4992), 1, + STATE(4981), 1, sym_comment, - ACTIONS(2545), 2, + STATE(5017), 1, + aux_sym_parameter_repeat2, + ACTIONS(2535), 2, sym__newline, anon_sym_COMMA, - ACTIONS(8660), 7, + ACTIONS(7347), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [179572] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2008), 1, + anon_sym_DASH2, + ACTIONS(8602), 1, + anon_sym_DOT2, + STATE(4982), 1, + sym_comment, + STATE(5103), 1, + aux_sym_cell_path_repeat1, + STATE(5348), 1, + sym_path, + STATE(5462), 1, + sym_cell_path, + ACTIONS(2010), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [179502] = 6, + anon_sym_RBRACE, + anon_sym_as, + [179602] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7396), 1, + ACTIONS(7381), 1, anon_sym_DASH2, - STATE(4976), 1, - aux_sym_parameter_repeat2, - STATE(4993), 1, + STATE(4983), 1, sym_comment, - ACTIONS(2545), 2, + STATE(5017), 1, + aux_sym_parameter_repeat2, + ACTIONS(2535), 2, sym__newline, anon_sym_COMMA, - ACTIONS(7394), 7, + ACTIONS(7379), 7, sym_identifier, anon_sym_PIPE, anon_sym_RBRACK, @@ -390299,570 +389475,520 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOLLAR, anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [179528] = 12, - ACTIONS(3), 1, + [179628] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1627), 1, - anon_sym_RBRACE, - ACTIONS(1629), 1, - sym__entry_separator, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, + ACTIONS(8656), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8658), 1, + aux_sym__immediate_decimal_token2, + STATE(4984), 1, + sym_comment, + ACTIONS(1599), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1597), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [179654] = 11, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1543), 1, + anon_sym_LBRACE, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(8096), 1, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8662), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, + ACTIONS(8664), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8362), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8364), 1, - aux_sym__immediate_decimal_token3, - STATE(4994), 1, + STATE(4985), 1, sym_comment, - STATE(7301), 1, + STATE(7234), 1, sym__immediate_decimal, - STATE(6848), 2, + ACTIONS(8660), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2016), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [179566] = 6, + [179690] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8664), 1, - aux_sym__immediate_decimal_token1, ACTIONS(8666), 1, aux_sym__immediate_decimal_token2, - STATE(4995), 1, + STATE(4986), 1, sym_comment, - ACTIONS(1597), 3, + ACTIONS(1687), 4, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 6, + ACTIONS(1685), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [179592] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8670), 1, - anon_sym_DASH2, - STATE(4976), 1, - aux_sym_parameter_repeat2, - STATE(4996), 1, - sym_comment, - ACTIONS(2545), 2, - sym__newline, - anon_sym_COMMA, - ACTIONS(8668), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [179618] = 8, + [179714] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, + ACTIONS(2028), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(4997), 1, + STATE(4987), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5435), 1, + STATE(5471), 1, sym_cell_path, - ACTIONS(1927), 6, + ACTIONS(2030), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179648] = 6, + [179744] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8672), 1, + ACTIONS(8668), 1, anon_sym_DOT, - ACTIONS(8674), 1, + ACTIONS(8670), 1, aux_sym__immediate_decimal_token2, - STATE(4998), 1, + STATE(4988), 1, sym_comment, - ACTIONS(1589), 3, + ACTIONS(1607), 3, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, + ACTIONS(1605), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [179674] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(8622), 1, - anon_sym_DOT2, - STATE(4999), 1, - sym_comment, - STATE(5098), 1, - aux_sym_cell_path_repeat1, - STATE(5426), 1, - sym_path, - STATE(5488), 1, - sym_cell_path, - ACTIONS(1939), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [179704] = 8, + [179770] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(1885), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5000), 1, + STATE(4989), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5444), 1, + STATE(5501), 1, sym_cell_path, - ACTIONS(2095), 6, + ACTIONS(1887), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179734] = 12, + [179800] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_DASH_DASH, - ACTIONS(8680), 1, - anon_sym_DASH2, - STATE(5001), 1, + ACTIONS(8672), 1, + anon_sym_DOT, + ACTIONS(8674), 1, + aux_sym__immediate_decimal_token2, + STATE(4990), 1, sym_comment, - STATE(5108), 1, - aux_sym_ctrl_do_repeat1, - STATE(5492), 1, - sym_val_variable, - STATE(5967), 1, - sym__flag, - STATE(6401), 1, - sym__variable_name, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [179772] = 8, + ACTIONS(1605), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [179826] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1949), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5002), 1, + STATE(4991), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5450), 1, + STATE(5441), 1, sym_cell_path, - ACTIONS(1951), 6, + ACTIONS(1873), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179802] = 8, + [179856] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1953), 1, + ACTIONS(1968), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5003), 1, + STATE(4992), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5451), 1, + STATE(5506), 1, sym_cell_path, - ACTIONS(1955), 6, + ACTIONS(1970), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179832] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8682), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8684), 1, - aux_sym__immediate_decimal_token2, - STATE(5004), 1, - sym_comment, - ACTIONS(1595), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1597), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [179858] = 8, + [179886] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1986), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5005), 1, + STATE(4993), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5434), 1, + STATE(5507), 1, sym_cell_path, - ACTIONS(1963), 6, + ACTIONS(1988), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179888] = 8, + [179916] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1998), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5006), 1, + STATE(4994), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5457), 1, + STATE(5512), 1, sym_cell_path, - ACTIONS(1967), 6, + ACTIONS(2000), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179918] = 8, + [179946] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1831), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5007), 1, + STATE(4995), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5458), 1, + STATE(5513), 1, sym_cell_path, - ACTIONS(1971), 6, + ACTIONS(1833), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179948] = 8, + [179976] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1835), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5008), 1, + STATE(4996), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5463), 1, + STATE(5517), 1, sym_cell_path, - ACTIONS(1975), 6, + ACTIONS(1837), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [179978] = 8, + [180006] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1977), 1, + ACTIONS(1839), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5009), 1, + STATE(4997), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5464), 1, + STATE(5518), 1, sym_cell_path, - ACTIONS(1979), 6, + ACTIONS(1841), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180008] = 8, + [180036] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1981), 1, + ACTIONS(1843), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5010), 1, + STATE(4998), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5465), 1, + STATE(5519), 1, sym_cell_path, - ACTIONS(1983), 6, + ACTIONS(1845), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180038] = 8, + [180066] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5011), 1, + STATE(4999), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5466), 1, + STATE(5522), 1, sym_cell_path, - ACTIONS(1987), 6, + ACTIONS(1849), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180068] = 8, + [180096] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1989), 1, + ACTIONS(1851), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5012), 1, + STATE(5000), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5468), 1, + STATE(5523), 1, sym_cell_path, - ACTIONS(1991), 6, + ACTIONS(1853), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180098] = 8, + [180126] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1993), 1, + ACTIONS(1855), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5013), 1, + STATE(5001), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5472), 1, + STATE(5526), 1, sym_cell_path, - ACTIONS(1995), 6, + ACTIONS(1857), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180128] = 8, + [180156] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(1859), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5014), 1, + STATE(5002), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5473), 1, + STATE(5527), 1, sym_cell_path, - ACTIONS(1999), 6, + ACTIONS(1861), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180158] = 8, + [180186] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2001), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5015), 1, + STATE(5003), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5474), 1, + STATE(5528), 1, sym_cell_path, - ACTIONS(2003), 6, + ACTIONS(1865), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180188] = 8, + [180216] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2005), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5016), 1, + STATE(5004), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5476), 1, + STATE(5529), 1, sym_cell_path, - ACTIONS(2007), 6, + ACTIONS(1869), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180218] = 8, + [180246] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2009), 1, + ACTIONS(1875), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5017), 1, + STATE(5005), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5480), 1, + STATE(5530), 1, sym_cell_path, - ACTIONS(2011), 6, + ACTIONS(1877), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180248] = 8, + [180276] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5018), 1, + STATE(5006), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5481), 1, + STATE(5531), 1, sym_cell_path, - ACTIONS(2091), 6, + ACTIONS(1881), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180278] = 8, + [180306] = 8, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(935), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(3770), 1, + STATE(3757), 1, sym_cell_path, - STATE(5019), 1, + STATE(5007), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, ACTIONS(937), 6, sym__newline, @@ -390871,61 +389997,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180308] = 12, + [180336] = 12, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(6452), 1, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(8676), 1, + ACTIONS(8624), 1, sym_identifier, - ACTIONS(8678), 1, + ACTIONS(8626), 1, anon_sym_DASH_DASH, - ACTIONS(8680), 1, + ACTIONS(8628), 1, anon_sym_DASH2, - STATE(5020), 1, + STATE(5008), 1, sym_comment, - STATE(5108), 1, + STATE(5097), 1, aux_sym_ctrl_do_repeat1, - STATE(5492), 1, + STATE(5508), 1, sym_val_variable, - STATE(5967), 1, + STATE(5905), 1, sym__flag, - STATE(6401), 1, + STATE(6485), 1, sym__variable_name, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [180346] = 5, - ACTIONS(251), 1, + [180374] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8336), 1, + ACTIONS(8676), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8678), 1, aux_sym__immediate_decimal_token2, - STATE(5021), 1, + STATE(5009), 1, sym_comment, - ACTIONS(1589), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1597), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1599), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [180370] = 5, + sym__entry_separator, + [180400] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(5022), 1, + STATE(5010), 1, sym_comment, - ACTIONS(2601), 9, + ACTIONS(2591), 9, anon_sym_PIPE, anon_sym_err_GT_PIPE, anon_sym_out_GT_PIPE, @@ -390935,105 +390062,108 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_out_PLUSerr_GT_PIPE, anon_sym_o_PLUSe_GT_PIPE, anon_sym_e_PLUSo_GT_PIPE, - [180394] = 6, + [180424] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8688), 1, - anon_sym_DASH2, - STATE(4976), 1, - aux_sym_parameter_repeat2, - STATE(5023), 1, - sym_comment, - ACTIONS(2545), 2, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(8426), 1, sym__newline, - anon_sym_COMMA, - ACTIONS(8686), 7, + ACTIONS(8680), 1, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [180420] = 11, + STATE(5011), 1, + sym_comment, + STATE(5227), 1, + aux_sym_collection_type_repeat1, + STATE(5536), 1, + aux_sym_shebang_repeat1, + STATE(6507), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + [180460] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(8443), 1, + ACTIONS(8426), 1, sym__newline, - ACTIONS(8690), 1, + ACTIONS(8682), 1, sym_identifier, - STATE(5024), 1, + STATE(5012), 1, sym_comment, - STATE(5249), 1, + STATE(5147), 1, aux_sym_collection_type_repeat1, - STATE(5503), 1, + STATE(5536), 1, aux_sym_shebang_repeat1, - STATE(6279), 1, + STATE(6175), 1, sym_val_string, - ACTIONS(3127), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [180456] = 9, + [180496] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8638), 1, - anon_sym_DASH_DASH, - ACTIONS(8640), 1, + ACTIONS(8686), 1, anon_sym_DASH2, - ACTIONS(8694), 1, - anon_sym_as, - STATE(4982), 1, - aux_sym_ctrl_do_repeat1, - STATE(5025), 1, + STATE(5013), 1, sym_comment, - STATE(5553), 1, - sym__flag, - STATE(5462), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8692), 4, + STATE(5017), 1, + aux_sym_parameter_repeat2, + ACTIONS(2535), 2, sym__newline, - anon_sym_SEMI, + anon_sym_COMMA, + ACTIONS(8684), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, - anon_sym_RBRACE, - [180488] = 5, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180522] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8493), 1, - aux_sym__immediate_decimal_token2, - STATE(5026), 1, + ACTIONS(7365), 1, + anon_sym_DASH2, + STATE(5014), 1, sym_comment, - ACTIONS(1587), 4, + STATE(5017), 1, + aux_sym_parameter_repeat2, + ACTIONS(2535), 2, + sym__newline, + anon_sym_COMMA, + ACTIONS(7363), 7, + sym_identifier, + anon_sym_PIPE, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1589), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [180512] = 5, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [180548] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8611), 1, + ACTIONS(8596), 1, aux_sym__immediate_decimal_token2, - STATE(5027), 1, + STATE(5015), 1, sym_comment, - ACTIONS(1587), 3, + ACTIONS(1605), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 7, + ACTIONS(1607), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, @@ -391041,103 +390171,119 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [180536] = 9, + [180572] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3453), 1, + ACTIONS(3440), 1, aux_sym_expr_unary_token1, - ACTIONS(6594), 1, + ACTIONS(6581), 1, anon_sym_LPAREN, - ACTIONS(6910), 1, + ACTIONS(6889), 1, anon_sym_DOLLAR, - ACTIONS(8650), 1, + ACTIONS(8634), 1, anon_sym_DASH2, - STATE(2090), 1, + STATE(2085), 1, sym__expr_unary_minus, - STATE(5028), 1, + STATE(5016), 1, sym_comment, - ACTIONS(3421), 2, + ACTIONS(3388), 2, anon_sym_true, anon_sym_false, - STATE(2097), 4, + STATE(2087), 4, sym_expr_unary, sym_expr_parenthesized, sym_val_bool, sym_val_variable, - [180568] = 8, + [180604] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(8693), 1, anon_sym_DASH2, - ACTIONS(8622), 1, - anon_sym_DOT2, - STATE(5029), 1, - sym_comment, - STATE(5098), 1, - aux_sym_cell_path_repeat1, - STATE(5426), 1, - sym_path, - STATE(5471), 1, - sym_cell_path, - ACTIONS(1947), 6, + ACTIONS(8690), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [180598] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8696), 1, - aux_sym__immediate_decimal_token2, - STATE(5030), 1, + anon_sym_COMMA, + STATE(5017), 2, sym_comment, - ACTIONS(1667), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 7, + aux_sym_parameter_repeat2, + ACTIONS(8688), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [180622] = 11, + [180628] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(8443), 1, + ACTIONS(8426), 1, sym__newline, - ACTIONS(8698), 1, + ACTIONS(8695), 1, sym_identifier, - STATE(5031), 1, + STATE(5018), 1, sym_comment, - STATE(5258), 1, + STATE(5243), 1, aux_sym_collection_type_repeat1, - STATE(5503), 1, + STATE(5536), 1, aux_sym_shebang_repeat1, - STATE(6088), 1, + STATE(6130), 1, sym_val_string, - ACTIONS(3127), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [180658] = 4, + [180664] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8476), 1, + aux_sym__immediate_decimal_token2, + STATE(5019), 1, + sym_comment, + ACTIONS(1605), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1607), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [180688] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8697), 1, + aux_sym__immediate_decimal_token2, + STATE(5020), 1, + sym_comment, + ACTIONS(1685), 3, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [180712] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8700), 1, + ACTIONS(8699), 1, anon_sym_else, - STATE(5032), 1, + STATE(5021), 1, sym_comment, - ACTIONS(7940), 10, + ACTIONS(7985), 10, sym__newline, anon_sym_PIPE, anon_sym_err_GT_PIPE, @@ -391148,39 +390294,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, - [180680] = 6, - ACTIONS(3), 1, + [180734] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8702), 1, - anon_sym_DOT, - ACTIONS(8704), 1, - aux_sym__immediate_decimal_token2, - STATE(5033), 1, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(8602), 1, + anon_sym_DOT2, + STATE(5022), 1, sym_comment, - ACTIONS(1587), 3, + STATE(5103), 1, + aux_sym_cell_path_repeat1, + STATE(5348), 1, + sym_path, + STATE(5432), 1, + sym_cell_path, + ACTIONS(1978), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1589), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [180706] = 6, + anon_sym_as, + [180764] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8706), 1, + ACTIONS(8701), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8708), 1, + ACTIONS(8703), 1, aux_sym__immediate_decimal_token2, - STATE(5034), 1, + STATE(5023), 1, sym_comment, - ACTIONS(1595), 2, + ACTIONS(1597), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1597), 7, + ACTIONS(1599), 7, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, @@ -391188,3441 +390336,2808 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [180732] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8638), 1, - anon_sym_DASH_DASH, - ACTIONS(8640), 1, - anon_sym_DASH2, - ACTIONS(8712), 1, - anon_sym_as, - STATE(4984), 1, - aux_sym_ctrl_do_repeat1, - STATE(5035), 1, - sym_comment, - STATE(5553), 1, - sym__flag, - STATE(5462), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8710), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [180764] = 11, + [180790] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1629), 1, + ACTIONS(1589), 1, anon_sym_LBRACE, - ACTIONS(1631), 1, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(8654), 1, + ACTIONS(8662), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8656), 1, + ACTIONS(8664), 1, aux_sym__immediate_decimal_token5, - STATE(5036), 1, + STATE(5024), 1, sym_comment, - STATE(7212), 1, + STATE(7195), 1, sym__immediate_decimal, - ACTIONS(8652), 2, + ACTIONS(8660), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2050), 2, + STATE(2033), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [180800] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8714), 1, - anon_sym_DOT, - ACTIONS(8716), 1, - aux_sym__immediate_decimal_token2, - STATE(5037), 1, - sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, [180826] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1901), 1, anon_sym_DASH2, - ACTIONS(8622), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5038), 1, + STATE(5025), 1, sym_comment, - STATE(5098), 1, + STATE(5103), 1, aux_sym_cell_path_repeat1, - STATE(5426), 1, + STATE(5348), 1, sym_path, - STATE(5452), 1, + STATE(5505), 1, sym_cell_path, - ACTIONS(1959), 6, + ACTIONS(1903), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [180856] = 5, - ACTIONS(251), 1, + [180856] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8716), 1, - aux_sym__immediate_decimal_token2, - STATE(5039), 1, + STATE(5026), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1605), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1607), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [180879] = 8, + sym__entry_separator, + [180877] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(1901), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5040), 1, + STATE(5027), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5686), 1, + STATE(5733), 1, sym_cell_path, - ACTIONS(1959), 5, + ACTIONS(1903), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [180908] = 8, + [180906] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8670), 1, + aux_sym__immediate_decimal_token2, + STATE(5028), 1, + sym_comment, + ACTIONS(1607), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [180929] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1961), 1, + ACTIONS(1968), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5041), 1, + STATE(5029), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5582), 1, + STATE(5734), 1, sym_cell_path, - ACTIONS(1963), 5, + ACTIONS(1970), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [180937] = 8, + [180958] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1986), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5042), 1, + STATE(5030), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5648), 1, + STATE(5761), 1, sym_cell_path, - ACTIONS(1967), 5, + ACTIONS(1988), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [180966] = 8, + [180987] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1969), 1, + ACTIONS(1998), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5043), 1, + STATE(5031), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5658), 1, + STATE(5767), 1, sym_cell_path, - ACTIONS(1971), 5, + ACTIONS(2000), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [180995] = 8, + [181016] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(1831), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5044), 1, + STATE(5032), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5696), 1, + STATE(5768), 1, sym_cell_path, - ACTIONS(1975), 5, + ACTIONS(1833), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181024] = 8, + [181045] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1977), 1, + ACTIONS(1835), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5045), 1, + STATE(5033), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5718), 1, + STATE(5779), 1, sym_cell_path, - ACTIONS(1979), 5, + ACTIONS(1837), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181053] = 8, + [181074] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1981), 1, + ACTIONS(1839), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5046), 1, + STATE(5034), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5743), 1, + STATE(5781), 1, sym_cell_path, - ACTIONS(1983), 5, + ACTIONS(1841), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181082] = 8, + [181103] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(1843), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5047), 1, + STATE(5035), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5698), 1, + STATE(5783), 1, sym_cell_path, - ACTIONS(1987), 5, + ACTIONS(1845), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181111] = 8, + [181132] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1989), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5048), 1, + STATE(5036), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5807), 1, + STATE(5786), 1, sym_cell_path, - ACTIONS(1991), 5, + ACTIONS(1849), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181140] = 8, + [181161] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1993), 1, + ACTIONS(1851), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5049), 1, + STATE(5037), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5732), 1, + STATE(5787), 1, sym_cell_path, - ACTIONS(1995), 5, + ACTIONS(1853), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181169] = 8, + [181190] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(1855), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5050), 1, + STATE(5038), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5758), 1, + STATE(5674), 1, sym_cell_path, - ACTIONS(1999), 5, + ACTIONS(1857), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181198] = 8, + [181219] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2001), 1, + ACTIONS(1859), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5051), 1, + STATE(5039), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5759), 1, + STATE(5573), 1, sym_cell_path, - ACTIONS(2003), 5, + ACTIONS(1861), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181227] = 8, + [181248] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2005), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5052), 1, + STATE(5040), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5769), 1, + STATE(5561), 1, sym_cell_path, - ACTIONS(2007), 5, + ACTIONS(1865), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181256] = 8, + [181277] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2009), 1, + ACTIONS(1867), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5053), 1, + STATE(5041), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5787), 1, + STATE(5611), 1, sym_cell_path, - ACTIONS(2011), 5, + ACTIONS(1869), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181285] = 8, + [181306] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1875), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5054), 1, + STATE(5042), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5581), 1, + STATE(5619), 1, sym_cell_path, - ACTIONS(2091), 5, + ACTIONS(1877), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181314] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5055), 1, - sym_comment, - ACTIONS(974), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(972), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, [181335] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(935), 1, + ACTIONS(1879), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5056), 1, + STATE(5043), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5760), 1, + STATE(5633), 1, sym_cell_path, - ACTIONS(937), 5, + ACTIONS(1881), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [181364] = 6, + [181364] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8720), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8722), 1, - aux_sym__immediate_decimal_token2, - STATE(5057), 1, + STATE(5044), 1, sym_comment, - ACTIONS(1595), 3, - sym__newline, + ACTIONS(1685), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 5, - sym__space, + aux_sym__unquoted_in_list_token2, + ACTIONS(1687), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [181389] = 9, - ACTIONS(251), 1, + sym__entry_separator, + [181385] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(8724), 1, - sym_filesize_unit, - ACTIONS(8726), 1, - sym_duration_unit, - ACTIONS(8728), 1, - aux_sym_unquoted_token2, - STATE(5058), 1, + STATE(5045), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(978), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [181420] = 5, + sym__entry_separator, + ACTIONS(976), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [181406] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1274), 1, - anon_sym_DASH2, - ACTIONS(8730), 1, - sym__newline, - STATE(5059), 2, + STATE(5046), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1276), 7, - sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, + ACTIONS(1599), 4, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [181443] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1933), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1597), 6, + sym_identifier, anon_sym_DASH2, - ACTIONS(8718), 1, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [181427] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5060), 1, + STATE(5047), 1, sym_comment, - STATE(5157), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5521), 1, sym_path, - STATE(5577), 1, + STATE(5565), 1, sym_cell_path, - ACTIONS(1935), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [181472] = 11, - ACTIONS(251), 1, + ACTIONS(1757), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1759), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [181456] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6487), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(8678), 1, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8239), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8241), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8243), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8245), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8709), 1, + aux_sym__unquoted_in_record_token3, + STATE(5048), 1, + sym_comment, + STATE(5544), 1, + sym__immediate_decimal, + STATE(5720), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [181491] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8711), 1, anon_sym_DASH_DASH, - ACTIONS(8680), 1, + ACTIONS(8714), 1, anon_sym_DASH2, - ACTIONS(8733), 1, - sym_identifier, - STATE(5061), 1, + STATE(5708), 1, + sym__flag, + STATE(5049), 2, sym_comment, - STATE(5429), 1, aux_sym_ctrl_do_repeat1, - STATE(5967), 1, - sym__flag, - STATE(6662), 1, - sym_val_variable, - STATE(7028), 1, - sym__variable_name, - STATE(5970), 2, + STATE(5739), 2, sym_short_flag, sym_long_flag, - [181507] = 9, + ACTIONS(8606), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_as, + [181518] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(8728), 1, - aux_sym_unquoted_token2, - ACTIONS(8735), 1, - sym_filesize_unit, - ACTIONS(8737), 1, - sym_duration_unit, - STATE(5062), 1, + ACTIONS(8717), 1, + aux_sym__immediate_decimal_token2, + STATE(5050), 1, sym_comment, - ACTIONS(1681), 2, - sym_identifier, - anon_sym_DASH2, - ACTIONS(1693), 2, - anon_sym_DOLLAR, + ACTIONS(1687), 3, anon_sym_DASH_DASH, - ACTIONS(4607), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [181538] = 6, + ACTIONS(1685), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [181541] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8719), 1, + anon_sym_DASH_DASH, + ACTIONS(8721), 1, + anon_sym_DASH2, + ACTIONS(8723), 1, + anon_sym_as, + STATE(5049), 1, + aux_sym_ctrl_do_repeat1, + STATE(5051), 1, + sym_comment, + STATE(5708), 1, + sym__flag, + STATE(5739), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8640), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [181572] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8739), 1, + ACTIONS(8725), 1, anon_sym_DOT, - ACTIONS(8741), 1, + ACTIONS(8727), 1, aux_sym__immediate_decimal_token2, - STATE(5063), 1, + STATE(5052), 1, sym_comment, - ACTIONS(1725), 4, + ACTIONS(1749), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 4, + ACTIONS(1751), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [181563] = 10, - ACTIONS(251), 1, + [181597] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1643), 1, - anon_sym_LBRACE, - ACTIONS(4551), 1, + ACTIONS(1663), 1, + anon_sym_RBRACE, + ACTIONS(1665), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - ACTIONS(8356), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, - aux_sym__immediate_decimal_token5, - STATE(2034), 1, - sym__immediate_decimal, - STATE(5064), 1, + ACTIONS(1675), 1, + sym__entry_separator, + ACTIONS(8709), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(8729), 1, + anon_sym_DOT_DOT2, + ACTIONS(8733), 1, + sym_filesize_unit, + ACTIONS(8735), 1, + sym_duration_unit, + STATE(5053), 1, sym_comment, - ACTIONS(8743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2033), 2, + STATE(7236), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [181596] = 6, - ACTIONS(3), 1, + ACTIONS(8731), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [181632] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8745), 1, - anon_sym_DOT, - ACTIONS(8747), 1, - aux_sym__immediate_decimal_token2, - STATE(5065), 1, + ACTIONS(8719), 1, + anon_sym_DASH_DASH, + ACTIONS(8721), 1, + anon_sym_DASH2, + ACTIONS(8737), 1, + anon_sym_as, + STATE(5049), 1, + aux_sym_ctrl_do_repeat1, + STATE(5054), 1, sym_comment, - ACTIONS(1587), 3, + STATE(5708), 1, + sym__flag, + STATE(5739), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8614), 3, + ts_builtin_sym_end, sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [181621] = 11, + anon_sym_SEMI, + [181663] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(8705), 1, + anon_sym_DOT2, + STATE(5055), 1, + sym_comment, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, + sym_path, + STATE(5756), 1, + sym_cell_path, + ACTIONS(1873), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [181692] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6452), 1, + STATE(5056), 1, + sym_comment, + ACTIONS(1687), 4, anon_sym_DOLLAR, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, anon_sym_DASH_DASH, - ACTIONS(8680), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1685), 6, + sym_identifier, anon_sym_DASH2, - STATE(5066), 1, - sym_comment, - STATE(5108), 1, - aux_sym_ctrl_do_repeat1, - STATE(5492), 1, - sym_val_variable, - STATE(5967), 1, - sym__flag, - STATE(6401), 1, - sym__variable_name, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [181656] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_RBRACK, - ACTIONS(1693), 1, - sym__entry_separator, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(8749), 1, anon_sym_DOT_DOT2, - ACTIONS(8753), 1, sym_filesize_unit, - ACTIONS(8755), 1, sym_duration_unit, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_token2, - STATE(5067), 1, - sym_comment, - STATE(7254), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8751), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [181691] = 4, + aux_sym_unquoted_token2, + [181713] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5068), 1, + STATE(5057), 1, sym_comment, - ACTIONS(1669), 4, + ACTIONS(1607), 4, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 6, + ACTIONS(1605), 6, sym_identifier, anon_sym_DASH2, anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, aux_sym_unquoted_token2, - [181712] = 9, + [181734] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8759), 1, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(8626), 1, anon_sym_DASH_DASH, - ACTIONS(8761), 1, + ACTIONS(8628), 1, anon_sym_DASH2, - ACTIONS(8763), 1, - anon_sym_as, - STATE(5069), 1, + STATE(5058), 1, sym_comment, - STATE(5146), 1, + STATE(5097), 1, aux_sym_ctrl_do_repeat1, - STATE(5638), 1, + STATE(5508), 1, + sym_val_variable, + STATE(5905), 1, + sym__flag, + STATE(6485), 1, + sym__variable_name, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [181769] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8719), 1, + anon_sym_DASH_DASH, + ACTIONS(8721), 1, + anon_sym_DASH2, + ACTIONS(8739), 1, + anon_sym_as, + STATE(5054), 1, + aux_sym_ctrl_do_repeat1, + STATE(5059), 1, + sym_comment, + STATE(5708), 1, sym__flag, - STATE(5709), 2, + STATE(5739), 2, sym_short_flag, sym_long_flag, - ACTIONS(8710), 3, + ACTIONS(8644), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [181743] = 4, - ACTIONS(251), 1, + [181800] = 4, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5070), 1, + STATE(5060), 1, sym_comment, - ACTIONS(1735), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(970), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1733), 6, - sym_identifier, - anon_sym_DASH2, + sym__entry_separator, + ACTIONS(968), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [181764] = 11, + anon_sym_DOT2, + [181821] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5382), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(5384), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(5386), 1, + ACTIONS(8349), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8351), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5388), 1, + ACTIONS(8353), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5390), 1, + ACTIONS(8355), 1, aux_sym__immediate_decimal_token5, - ACTIONS(5483), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8765), 1, - aux_sym__immediate_decimal_token1, - STATE(2892), 1, - sym__immediate_decimal, - STATE(5071), 1, + ACTIONS(8709), 1, + aux_sym__unquoted_in_record_token3, + STATE(5061), 1, sym_comment, - STATE(3072), 2, + STATE(6160), 1, + sym__immediate_decimal, + STATE(6969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181799] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5072), 1, - sym_comment, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5716), 1, - sym_cell_path, - ACTIONS(1717), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1719), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [181828] = 5, + [181856] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8674), 1, - aux_sym__immediate_decimal_token2, - STATE(5073), 1, - sym_comment, - ACTIONS(1589), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(4580), 1, anon_sym_DOT_DOT2, + ACTIONS(8741), 1, sym_filesize_unit, + ACTIONS(8743), 1, sym_duration_unit, + ACTIONS(8745), 1, aux_sym_unquoted_token2, - [181851] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5074), 1, + STATE(5062), 1, sym_comment, - ACTIONS(1597), 4, + ACTIONS(1663), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(1675), 2, anon_sym_DOLLAR, anon_sym_DASH_DASH, + ACTIONS(4582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [181872] = 11, + [181887] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(5434), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token3, - ACTIONS(7978), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8769), 1, + ACTIONS(5438), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8771), 1, + ACTIONS(5440), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8773), 1, + ACTIONS(5442), 1, aux_sym__immediate_decimal_token5, - STATE(5075), 1, - sym_comment, - STATE(5754), 1, + ACTIONS(5526), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8747), 1, + aux_sym__immediate_decimal_token1, + STATE(2899), 1, sym__immediate_decimal, - STATE(5736), 2, + STATE(5063), 1, + sym_comment, + STATE(3035), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181907] = 11, + [181922] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(8509), 1, + ACTIONS(7935), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8775), 1, + ACTIONS(8749), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8777), 1, + ACTIONS(8751), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8779), 1, + ACTIONS(8753), 1, aux_sym__immediate_decimal_token5, - STATE(5076), 1, + STATE(5064), 1, sym_comment, - STATE(6648), 1, + STATE(5703), 1, sym__immediate_decimal, - STATE(2029), 2, + STATE(5746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181942] = 11, + [181957] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(7930), 1, + ACTIONS(8492), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8781), 1, + ACTIONS(8755), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8783), 1, + ACTIONS(8757), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8785), 1, + ACTIONS(8759), 1, aux_sym__immediate_decimal_token5, - STATE(5077), 1, + STATE(5065), 1, sym_comment, - STATE(5561), 1, + STATE(7136), 1, sym__immediate_decimal, - STATE(5736), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [181977] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT2, - STATE(5078), 1, - sym_comment, - STATE(5157), 1, - aux_sym_cell_path_repeat1, - STATE(5539), 1, - sym_path, - STATE(5775), 1, - sym_cell_path, - ACTIONS(1927), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [182006] = 11, + [181992] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(3082), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token3, - ACTIONS(7954), 1, + ACTIONS(8460), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8787), 1, + ACTIONS(8462), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8789), 1, + ACTIONS(8464), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8791), 1, + ACTIONS(8466), 1, aux_sym__immediate_decimal_token5, - STATE(5079), 1, + ACTIONS(8761), 1, + aux_sym__unquoted_in_list_token3, + STATE(5066), 1, sym_comment, - STATE(6584), 1, + STATE(6473), 1, sym__immediate_decimal, - STATE(2029), 2, + STATE(6969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182041] = 11, + [182027] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1807), 1, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6938), 1, + ACTIONS(6939), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6940), 1, + ACTIONS(6941), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6942), 1, + ACTIONS(6943), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6944), 1, + ACTIONS(6945), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7060), 1, + ACTIONS(7047), 1, aux_sym_unquoted_token3, - STATE(3919), 1, + STATE(3899), 1, sym__immediate_decimal, - STATE(5080), 1, + STATE(5067), 1, sym_comment, - STATE(4083), 2, + STATE(4043), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182076] = 11, + [182062] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4703), 1, + ACTIONS(4698), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4913), 1, + ACTIONS(4892), 1, aux_sym_unquoted_token3, - ACTIONS(8793), 1, + ACTIONS(8763), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8795), 1, + ACTIONS(8765), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8797), 1, + ACTIONS(8767), 1, aux_sym__immediate_decimal_token5, - STATE(2166), 1, + STATE(2283), 1, sym__immediate_decimal, - STATE(5081), 1, + STATE(5068), 1, sym_comment, - STATE(2480), 2, + STATE(2545), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182111] = 4, + [182097] = 11, ACTIONS(3), 1, anon_sym_POUND, - STATE(5082), 1, - sym_comment, - ACTIONS(1733), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1735), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [182132] = 10, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1709), 1, - anon_sym_LBRACE, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(8356), 1, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4754), 1, + aux_sym_unquoted_token3, + ACTIONS(7917), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8769), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8771), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(8773), 1, aux_sym__immediate_decimal_token5, - STATE(2045), 1, - sym__immediate_decimal, - STATE(5083), 1, + STATE(5069), 1, sym_comment, - ACTIONS(8743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2044), 2, + STATE(5556), 1, + sym__immediate_decimal, + STATE(5746), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182165] = 10, + [182132] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1713), 1, - anon_sym_LBRACE, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(2008), 1, + anon_sym_DASH2, + ACTIONS(8705), 1, + anon_sym_DOT2, + STATE(5070), 1, + sym_comment, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, + sym_path, + STATE(5678), 1, + sym_cell_path, + ACTIONS(2010), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [182161] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(8356), 1, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4754), 1, + aux_sym_unquoted_token3, + ACTIONS(8003), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8775), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8777), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(8779), 1, aux_sym__immediate_decimal_token5, - STATE(2047), 1, - sym__immediate_decimal, - STATE(5084), 1, + STATE(5071), 1, sym_comment, - ACTIONS(8743), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2046), 2, + STATE(6598), 1, + sym__immediate_decimal, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182198] = 11, + [182196] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4555), 1, + ACTIONS(4542), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(8799), 1, + ACTIONS(8781), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8801), 1, + ACTIONS(8783), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8803), 1, + ACTIONS(8785), 1, aux_sym__immediate_decimal_token5, - STATE(1726), 1, + STATE(1732), 1, sym__immediate_decimal, - STATE(5085), 1, + STATE(5072), 1, sym_comment, - STATE(1933), 2, + STATE(1874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182233] = 11, + [182231] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1807), 1, + ACTIONS(1914), 1, anon_sym_DOLLAR, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(6960), 1, + ACTIONS(6963), 1, aux_sym__immediate_decimal_token1, - ACTIONS(6962), 1, + ACTIONS(6965), 1, aux_sym__immediate_decimal_token3, - ACTIONS(6964), 1, + ACTIONS(6967), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6966), 1, + ACTIONS(6969), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7060), 1, + ACTIONS(7047), 1, aux_sym_unquoted_token3, - STATE(4244), 1, + STATE(4243), 1, sym__immediate_decimal, - STATE(5086), 1, + STATE(5073), 1, sym_comment, - STATE(4534), 2, + STATE(4513), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182268] = 11, + [182266] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1541), 1, + STATE(5074), 1, + sym_comment, + ACTIONS(1727), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1729), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [182287] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1531), 1, anon_sym_DOLLAR, - ACTIONS(1543), 1, + ACTIONS(1533), 1, anon_sym_LPAREN2, - ACTIONS(1547), 1, + ACTIONS(1537), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1549), 1, + ACTIONS(1539), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1551), 1, + ACTIONS(1541), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1695), 1, + ACTIONS(1677), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8805), 1, + ACTIONS(8787), 1, aux_sym__immediate_decimal_token1, - STATE(367), 1, + STATE(371), 1, sym__immediate_decimal, - STATE(5087), 1, + STATE(5075), 1, sym_comment, - STATE(493), 2, + STATE(454), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182303] = 11, + [182322] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1617), 1, + ACTIONS(1577), 1, anon_sym_DOLLAR, - ACTIONS(1619), 1, + ACTIONS(1579), 1, anon_sym_LPAREN2, - ACTIONS(1621), 1, + ACTIONS(1581), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1623), 1, + ACTIONS(1583), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1625), 1, + ACTIONS(1585), 1, aux_sym__immediate_decimal_token5, - ACTIONS(1695), 1, + ACTIONS(1677), 1, aux_sym__unquoted_in_record_token3, - ACTIONS(8807), 1, + ACTIONS(8789), 1, aux_sym__immediate_decimal_token1, - STATE(521), 1, + STATE(533), 1, sym__immediate_decimal, - STATE(5088), 1, + STATE(5076), 1, sym_comment, - STATE(603), 2, + STATE(669), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182338] = 11, - ACTIONS(3), 1, + [182357] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3591), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(1703), 1, + anon_sym_LBRACE, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7083), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7085), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7186), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8809), 1, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8811), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - STATE(4040), 1, + STATE(2028), 1, sym__immediate_decimal, - STATE(5089), 1, + STATE(5077), 1, sym_comment, - STATE(4309), 2, + ACTIONS(8791), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2027), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182373] = 11, + [182390] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5078), 1, + sym_comment, + ACTIONS(1729), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1727), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [182411] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(6371), 1, + ACTIONS(6274), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8813), 1, + ACTIONS(8793), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8815), 1, + ACTIONS(8795), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8817), 1, + ACTIONS(8797), 1, aux_sym__immediate_decimal_token5, - STATE(3503), 1, + STATE(3488), 1, sym__immediate_decimal, - STATE(5090), 1, + STATE(5079), 1, sym_comment, - STATE(1933), 2, + STATE(1874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182408] = 11, + [182446] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4618), 1, + ACTIONS(4602), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(8819), 1, + ACTIONS(8799), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8821), 1, + ACTIONS(8801), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8823), 1, + ACTIONS(8803), 1, aux_sym__immediate_decimal_token5, - STATE(2079), 1, + STATE(2078), 1, sym__immediate_decimal, - STATE(5091), 1, + STATE(5080), 1, sym_comment, - STATE(2029), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182443] = 10, + [182481] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1665), 1, + ACTIONS(1707), 1, anon_sym_LBRACE, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(6429), 1, anon_sym_DOLLAR, - ACTIONS(8356), 1, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - STATE(2049), 1, + STATE(2030), 1, sym__immediate_decimal, - STATE(5092), 1, + STATE(5081), 1, sym_comment, - ACTIONS(8743), 2, + ACTIONS(8791), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2048), 2, + STATE(2029), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182476] = 11, + [182514] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2699), 1, + ACTIONS(2602), 1, anon_sym_DOLLAR, - ACTIONS(3969), 1, + ACTIONS(3952), 1, anon_sym_LPAREN2, - ACTIONS(3973), 1, + ACTIONS(3956), 1, aux_sym__immediate_decimal_token3, - ACTIONS(3975), 1, + ACTIONS(3958), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4422), 1, + ACTIONS(4062), 1, aux_sym_unquoted_token3, - ACTIONS(8825), 1, + ACTIONS(8805), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8827), 1, + ACTIONS(8807), 1, aux_sym__immediate_decimal_token5, - STATE(1382), 1, + STATE(1374), 1, sym__immediate_decimal, - STATE(5093), 1, + STATE(5082), 1, sym_comment, - STATE(1530), 2, + STATE(1492), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182511] = 11, + [182549] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(6409), 1, + ACTIONS(6400), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8829), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8831), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8833), 1, - aux_sym__immediate_decimal_token5, - STATE(3555), 1, - sym__immediate_decimal, - STATE(5094), 1, - sym_comment, - STATE(2029), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [182546] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3591), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, - anon_sym_LPAREN2, - ACTIONS(7103), 1, + ACTIONS(8809), 1, aux_sym__immediate_decimal_token3, - ACTIONS(7105), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7186), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8835), 1, + ACTIONS(8811), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8837), 1, + ACTIONS(8813), 1, aux_sym__immediate_decimal_token5, - STATE(4508), 1, + STATE(3513), 1, sym__immediate_decimal, - STATE(5095), 1, + STATE(5083), 1, sym_comment, - STATE(4841), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182581] = 11, + [182584] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, + ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4913), 1, + ACTIONS(4892), 1, aux_sym_unquoted_token3, - ACTIONS(5927), 1, + ACTIONS(5914), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8839), 1, + ACTIONS(8815), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8841), 1, + ACTIONS(8817), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8843), 1, + ACTIONS(8819), 1, aux_sym__immediate_decimal_token5, - STATE(3207), 1, + STATE(3194), 1, sym__immediate_decimal, - STATE(5096), 1, + STATE(5084), 1, sym_comment, - STATE(2083), 2, + STATE(2130), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182616] = 11, + [182619] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3995), 1, + ACTIONS(3968), 1, anon_sym_DOLLAR, - ACTIONS(3997), 1, + ACTIONS(3970), 1, anon_sym_LPAREN2, - ACTIONS(3999), 1, + ACTIONS(3972), 1, aux_sym__immediate_decimal_token3, - ACTIONS(4001), 1, + ACTIONS(3974), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4422), 1, + ACTIONS(4062), 1, aux_sym_unquoted_token3, - ACTIONS(8845), 1, + ACTIONS(8821), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8847), 1, + ACTIONS(8823), 1, aux_sym__immediate_decimal_token5, - STATE(1588), 1, + STATE(1576), 1, sym__immediate_decimal, - STATE(5097), 1, + STATE(5085), 1, sym_comment, - STATE(1732), 2, + STATE(1804), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182651] = 7, + [182654] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(948), 1, - anon_sym_DASH2, - ACTIONS(8622), 1, - anon_sym_DOT2, - STATE(5098), 1, - sym_comment, - STATE(5109), 1, - aux_sym_cell_path_repeat1, - STATE(5426), 1, - sym_path, - ACTIONS(950), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [182678] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5099), 1, + ACTIONS(8825), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8827), 1, + aux_sym__immediate_decimal_token2, + STATE(5086), 1, sym_comment, - ACTIONS(970), 3, + ACTIONS(1597), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(968), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [182699] = 11, + sym_filesize_unit, + sym_duration_unit, + [182679] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, + ACTIONS(3460), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4913), 1, + ACTIONS(4892), 1, aux_sym_unquoted_token3, - ACTIONS(5970), 1, + ACTIONS(6915), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8849), 1, + ACTIONS(8829), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8851), 1, + ACTIONS(8831), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8853), 1, + ACTIONS(8833), 1, aux_sym__immediate_decimal_token5, - STATE(3264), 1, + STATE(3868), 1, sym__immediate_decimal, - STATE(5100), 1, + STATE(5087), 1, sym_comment, - STATE(2480), 2, + STATE(3987), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182734] = 11, + [182714] = 11, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1022), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4892), 1, aux_sym_unquoted_token3, - ACTIONS(5777), 1, + ACTIONS(6010), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8855), 1, + ACTIONS(8835), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8857), 1, + ACTIONS(8837), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8859), 1, + ACTIONS(8839), 1, aux_sym__immediate_decimal_token5, - STATE(3199), 1, + STATE(3247), 1, sym__immediate_decimal, - STATE(5101), 1, + STATE(5088), 1, sym_comment, - STATE(1933), 2, + STATE(2545), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182769] = 11, + [182749] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3481), 1, + ACTIONS(3600), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(4913), 1, - aux_sym_unquoted_token3, - ACTIONS(6954), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8861), 1, + ACTIONS(7088), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8863), 1, + ACTIONS(7090), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7158), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8841), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8865), 1, + ACTIONS(8843), 1, aux_sym__immediate_decimal_token5, - STATE(4036), 1, + STATE(4486), 1, sym__immediate_decimal, - STATE(5102), 1, + STATE(5089), 1, sym_comment, - STATE(2480), 2, + STATE(4828), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182804] = 11, + [182784] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3449), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(6914), 1, + ACTIONS(5831), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8867), 1, + ACTIONS(8845), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8869), 1, + ACTIONS(8847), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8871), 1, + ACTIONS(8849), 1, aux_sym__immediate_decimal_token5, - STATE(3852), 1, + STATE(3186), 1, sym__immediate_decimal, - STATE(5103), 1, + STATE(5090), 1, sym_comment, - STATE(3932), 2, + STATE(1874), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182839] = 11, + [182819] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(3460), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4892), 1, aux_sym_unquoted_token3, - ACTIONS(5935), 1, + ACTIONS(6925), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8873), 1, + ACTIONS(8851), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8875), 1, + ACTIONS(8853), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8877), 1, + ACTIONS(8855), 1, aux_sym__immediate_decimal_token5, - STATE(3237), 1, + STATE(4049), 1, sym__immediate_decimal, - STATE(5104), 1, + STATE(5091), 1, sym_comment, - STATE(2029), 2, + STATE(2545), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182874] = 11, + [182854] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(3436), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(6427), 1, + ACTIONS(6893), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8879), 1, + ACTIONS(8857), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8881), 1, + ACTIONS(8859), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8883), 1, + ACTIONS(8861), 1, aux_sym__immediate_decimal_token5, - STATE(3507), 1, + STATE(3834), 1, sym__immediate_decimal, - STATE(5105), 1, + STATE(5092), 1, sym_comment, - STATE(3550), 2, + STATE(3916), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182909] = 11, + [182889] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3449), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(6920), 1, + ACTIONS(5841), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8885), 1, + ACTIONS(8863), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8887), 1, + ACTIONS(8865), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8889), 1, + ACTIONS(8867), 1, aux_sym__immediate_decimal_token5, - STATE(4007), 1, + STATE(3233), 1, sym__immediate_decimal, - STATE(5106), 1, + STATE(5093), 1, sym_comment, - STATE(2029), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182944] = 11, + [182924] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1022), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(6442), 1, + ACTIONS(6417), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8891), 1, + ACTIONS(8869), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8893), 1, + ACTIONS(8871), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8895), 1, + ACTIONS(8873), 1, aux_sym__immediate_decimal_token5, - STATE(3661), 1, + STATE(3499), 1, sym__immediate_decimal, - STATE(5107), 1, + STATE(5094), 1, sym_comment, - STATE(2029), 2, + STATE(3538), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [182979] = 11, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6452), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(8678), 1, - anon_sym_DASH_DASH, - ACTIONS(8680), 1, - anon_sym_DASH2, - STATE(5108), 1, - sym_comment, - STATE(5429), 1, - aux_sym_ctrl_do_repeat1, - STATE(5492), 1, - sym_val_variable, - STATE(5967), 1, - sym__flag, - STATE(6628), 1, - sym__variable_name, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [183014] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(941), 1, - anon_sym_DASH2, - ACTIONS(8897), 1, - anon_sym_DOT2, - STATE(5426), 1, - sym_path, - STATE(5109), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(943), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [183039] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT2, - STATE(5110), 1, - sym_comment, - STATE(5157), 1, - aux_sym_cell_path_repeat1, - STATE(5539), 1, - sym_path, - STATE(5802), 1, - sym_cell_path, - ACTIONS(1939), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [183068] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8900), 1, - anon_sym_DASH_DASH, - ACTIONS(8903), 1, - anon_sym_DASH2, - STATE(5638), 1, - sym__flag, - STATE(5111), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5709), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8626), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_as, - [183095] = 11, + [182959] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3861), 1, + ACTIONS(3436), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - STATE(5112), 1, - sym_comment, - STATE(5916), 1, - sym__immediate_decimal, - STATE(6234), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183130] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8912), 1, + ACTIONS(6907), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8914), 1, - aux_sym__immediate_decimal_token2, - STATE(5113), 1, - sym_comment, - ACTIONS(1757), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [183155] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1605), 1, - anon_sym_LPAREN2, - ACTIONS(1609), 1, + ACTIONS(8875), 1, aux_sym__immediate_decimal_token3, - ACTIONS(1611), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(1745), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(3749), 1, - anon_sym_DOLLAR, - ACTIONS(8916), 1, + ACTIONS(8877), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8918), 1, + ACTIONS(8879), 1, aux_sym__immediate_decimal_token5, - STATE(399), 1, + STATE(3948), 1, sym__immediate_decimal, - STATE(5114), 1, - sym_comment, - STATE(538), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183190] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8032), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8034), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8036), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8038), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8920), 1, - aux_sym__unquoted_in_record_token3, - STATE(5115), 1, + STATE(5095), 1, sym_comment, - STATE(5493), 1, - sym__immediate_decimal, - STATE(5663), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [183225] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5116), 1, - sym_comment, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5651), 1, - sym_cell_path, - ACTIONS(1721), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1723), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [183254] = 11, + [182994] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3095), 1, + ACTIONS(1024), 1, anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8366), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8368), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8370), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8372), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8920), 1, - aux_sym__unquoted_in_record_token3, - STATE(5117), 1, - sym_comment, - STATE(6450), 1, - sym__immediate_decimal, - STATE(6981), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183289] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1647), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(1649), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(1651), 1, + ACTIONS(4754), 1, + aux_sym_unquoted_token3, + ACTIONS(6439), 1, aux_sym__immediate_decimal_token1, - ACTIONS(1745), 1, - aux_sym__unquoted_in_record_token3, - ACTIONS(8922), 1, - anon_sym_DOLLAR, - ACTIONS(8924), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8926), 1, - aux_sym__immediate_decimal_token5, - STATE(569), 1, - sym__immediate_decimal, - STATE(5118), 1, - sym_comment, - STATE(737), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183324] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_RBRACE, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(1693), 1, - sym__entry_separator, - ACTIONS(8920), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(8928), 1, - anon_sym_DOT_DOT2, - ACTIONS(8932), 1, - sym_filesize_unit, - ACTIONS(8934), 1, - sym_duration_unit, - STATE(5119), 1, - sym_comment, - STATE(7328), 1, - sym__expr_parenthesized_immediate, - ACTIONS(8930), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [183359] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5446), 1, - anon_sym_LPAREN2, - ACTIONS(5450), 1, + ACTIONS(8881), 1, aux_sym__immediate_decimal_token3, - ACTIONS(5452), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8427), 1, - anon_sym_DOLLAR, - ACTIONS(8429), 1, + ACTIONS(8883), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8431), 1, + ACTIONS(8885), 1, aux_sym__immediate_decimal_token5, - STATE(2828), 1, + STATE(3664), 1, sym__immediate_decimal, - STATE(5120), 1, - sym_comment, - STATE(2884), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183394] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8573), 1, - anon_sym_DASH2, - STATE(5121), 1, - sym_comment, - ACTIONS(5755), 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, - [183415] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8092), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8094), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8096), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8098), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_token3, - STATE(5122), 1, + STATE(5096), 1, sym_comment, - STATE(5455), 1, - sym__immediate_decimal, - STATE(5663), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [183450] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8936), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8938), 1, - aux_sym__immediate_decimal_token2, - STATE(5123), 1, - sym_comment, - ACTIONS(1595), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183475] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5124), 1, - sym_comment, - ACTIONS(1587), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1589), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [183496] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5125), 1, - sym_comment, - ACTIONS(1667), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1669), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [183517] = 4, + [183029] = 11, ACTIONS(251), 1, anon_sym_POUND, - STATE(5126), 1, - sym_comment, - ACTIONS(1587), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 7, + ACTIONS(6429), 1, anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(8626), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183538] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5127), 1, - sym_comment, - ACTIONS(978), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(976), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [183559] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3095), 1, - anon_sym_DOLLAR, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(8477), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8479), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8481), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8483), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_token3, - STATE(5128), 1, - sym_comment, - STATE(6246), 1, - sym__immediate_decimal, - STATE(6981), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183594] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5129), 1, - sym_comment, - ACTIONS(966), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(964), 7, - anon_sym_COLON, - anon_sym_RBRACK, - anon_sym_GT2, - anon_sym_RBRACE, - anon_sym_QMARK2, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [183615] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5130), 1, - sym_comment, - ACTIONS(1595), 3, + ACTIONS(8628), 1, anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183636] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3861), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token3, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5131), 1, - sym_comment, - STATE(7329), 1, - sym__immediate_decimal, - STATE(2029), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183671] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8946), 1, - aux_sym__immediate_decimal_token2, - STATE(5132), 1, - sym_comment, - ACTIONS(1667), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [183694] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2945), 1, - anon_sym_DOLLAR, - ACTIONS(3981), 1, - anon_sym_LPAREN2, - ACTIONS(3985), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(3987), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4543), 1, - aux_sym_unquoted_token3, - ACTIONS(8948), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8950), 1, - aux_sym__immediate_decimal_token5, - STATE(1431), 1, - sym__immediate_decimal, - STATE(5133), 1, + STATE(5097), 1, sym_comment, - STATE(1554), 2, - sym__expr_parenthesized_immediate, + STATE(5411), 1, + aux_sym_ctrl_do_repeat1, + STATE(5508), 1, sym_val_variable, - [183729] = 6, + STATE(5905), 1, + sym__flag, + STATE(6554), 1, + sym__variable_name, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [183064] = 10, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8952), 1, - anon_sym_DOT, - ACTIONS(8954), 1, - aux_sym__immediate_decimal_token2, - STATE(5134), 1, - sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183754] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, + ACTIONS(1711), 1, + anon_sym_LBRACE, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6992), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(6994), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(6996), 1, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6998), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7139), 1, - aux_sym_unquoted_token3, - STATE(3959), 1, + STATE(2032), 1, sym__immediate_decimal, - STATE(5135), 1, + STATE(5098), 1, sym_comment, - STATE(4108), 2, + ACTIONS(8791), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2031), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [183789] = 8, + [183097] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2093), 1, + ACTIONS(2028), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5136), 1, + STATE(5099), 1, sym_comment, - STATE(5157), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - STATE(5776), 1, + STATE(5563), 1, sym_cell_path, - ACTIONS(2095), 5, + ACTIONS(2030), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [183818] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5137), 1, - sym_comment, - ACTIONS(1667), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183839] = 11, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2033), 1, - anon_sym_DOLLAR, - ACTIONS(6988), 1, - anon_sym_LPAREN2, - ACTIONS(7018), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(7020), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(7022), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7024), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7139), 1, - aux_sym_unquoted_token3, - STATE(4375), 1, - sym__immediate_decimal, - STATE(5138), 1, - sym_comment, - STATE(4697), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [183874] = 11, + [183126] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6487), 1, + ACTIONS(6453), 1, anon_sym_DOLLAR, - ACTIONS(8678), 1, + ACTIONS(8626), 1, anon_sym_DASH_DASH, - ACTIONS(8680), 1, + ACTIONS(8628), 1, anon_sym_DASH2, - ACTIONS(8733), 1, + ACTIONS(8887), 1, sym_identifier, - STATE(5061), 1, - aux_sym_ctrl_do_repeat1, - STATE(5139), 1, + STATE(5100), 1, sym_comment, - STATE(5967), 1, + STATE(5411), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, sym__flag, - STATE(6656), 1, + STATE(6681), 1, sym__variable_name, - STATE(6662), 1, + STATE(6693), 1, sym_val_variable, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [183909] = 11, + [183161] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5534), 1, + ACTIONS(1663), 1, + anon_sym_RBRACK, + ACTIONS(1675), 1, + sym__entry_separator, + ACTIONS(5516), 1, anon_sym_LPAREN2, - ACTIONS(5536), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(5538), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token3, - ACTIONS(8956), 1, - anon_sym_DOLLAR, - ACTIONS(8958), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8960), 1, - aux_sym__immediate_decimal_token5, - STATE(3046), 1, - sym__immediate_decimal, - STATE(5140), 1, + ACTIONS(8761), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(8889), 1, + anon_sym_DOT_DOT2, + ACTIONS(8893), 1, + sym_filesize_unit, + ACTIONS(8895), 1, + sym_duration_unit, + STATE(5101), 1, sym_comment, - STATE(3147), 2, + STATE(7233), 1, sym__expr_parenthesized_immediate, - sym_val_variable, - [183944] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5141), 1, - sym_comment, - ACTIONS(1733), 3, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1735), 7, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, + ACTIONS(8891), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [183965] = 8, + [183196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5142), 1, + ACTIONS(8897), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8899), 1, + aux_sym__immediate_decimal_token2, + STATE(5102), 1, sym_comment, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5715), 1, - sym_cell_path, - ACTIONS(935), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1597), 3, + sym__newline, anon_sym_DOT_DOT2, - ACTIONS(937), 3, + aux_sym_unquoted_token2, + ACTIONS(1599), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [183994] = 8, + sym_filesize_unit, + sym_duration_unit, + [183221] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(948), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8602), 1, anon_sym_DOT2, - STATE(5143), 1, + STATE(5103), 1, sym_comment, - STATE(5157), 1, + STATE(5106), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5348), 1, sym_path, - STATE(5729), 1, - sym_cell_path, - ACTIONS(1947), 5, - ts_builtin_sym_end, + ACTIONS(950), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - [184023] = 11, + [183248] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4091), 1, - anon_sym_DOLLAR, - ACTIONS(4146), 1, + ACTIONS(1561), 1, anon_sym_LPAREN2, - ACTIONS(4148), 1, + ACTIONS(1565), 1, aux_sym__immediate_decimal_token3, - ACTIONS(4150), 1, + ACTIONS(1567), 1, aux_sym__immediate_decimal_token1, - ACTIONS(4543), 1, - aux_sym_unquoted_token3, - ACTIONS(8962), 1, + ACTIONS(1747), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(3674), 1, + anon_sym_DOLLAR, + ACTIONS(8901), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8964), 1, + ACTIONS(8903), 1, aux_sym__immediate_decimal_token5, - STATE(1694), 1, + STATE(430), 1, sym__immediate_decimal, - STATE(5144), 1, + STATE(5104), 1, sym_comment, - STATE(1830), 2, + STATE(524), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184058] = 9, - ACTIONS(251), 1, + [183283] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8759), 1, - anon_sym_DASH_DASH, - ACTIONS(8761), 1, - anon_sym_DASH2, - ACTIONS(8966), 1, - anon_sym_as, - STATE(5111), 1, - aux_sym_ctrl_do_repeat1, - STATE(5145), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1693), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(1695), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(1747), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8905), 1, + anon_sym_DOLLAR, + ACTIONS(8907), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8909), 1, + aux_sym__immediate_decimal_token5, + STATE(560), 1, + sym__immediate_decimal, + STATE(5105), 1, sym_comment, - STATE(5638), 1, - sym__flag, - STATE(5709), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8692), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184089] = 9, + STATE(726), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183318] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8759), 1, - anon_sym_DASH_DASH, - ACTIONS(8761), 1, + ACTIONS(941), 1, anon_sym_DASH2, - ACTIONS(8968), 1, - anon_sym_as, - STATE(5111), 1, - aux_sym_ctrl_do_repeat1, - STATE(5146), 1, + ACTIONS(8911), 1, + anon_sym_DOT2, + STATE(5348), 1, + sym_path, + STATE(5106), 2, sym_comment, - STATE(5638), 1, - sym__flag, - STATE(5709), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8636), 3, - ts_builtin_sym_end, + aux_sym_cell_path_repeat1, + ACTIONS(943), 6, sym__newline, anon_sym_SEMI, - [184120] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8759), 1, + anon_sym_RPAREN, anon_sym_DASH_DASH, - ACTIONS(8761), 1, - anon_sym_DASH2, - ACTIONS(8970), 1, + anon_sym_RBRACE, anon_sym_as, - STATE(5145), 1, - aux_sym_ctrl_do_repeat1, - STATE(5147), 1, - sym_comment, - STATE(5638), 1, - sym__flag, - STATE(5709), 2, - sym_short_flag, - sym_long_flag, - ACTIONS(8644), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [184151] = 5, - ACTIONS(251), 1, + [183343] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8972), 1, + ACTIONS(8914), 1, + anon_sym_DOT, + ACTIONS(8916), 1, aux_sym__immediate_decimal_token2, - STATE(5148), 1, + STATE(5107), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1605), 3, + sym__newline, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1607), 5, + sym__space, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [184174] = 5, + [183368] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2857), 1, + anon_sym_DOLLAR, + ACTIONS(3984), 1, + anon_sym_LPAREN2, + ACTIONS(3988), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(3990), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4534), 1, + aux_sym_unquoted_token3, + ACTIONS(8918), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8920), 1, + aux_sym__immediate_decimal_token5, + STATE(1425), 1, + sym__immediate_decimal, + STATE(5108), 1, + sym_comment, + STATE(1551), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183403] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8974), 1, - aux_sym__immediate_decimal_token2, - STATE(5149), 1, + ACTIONS(1274), 1, + anon_sym_DASH2, + ACTIONS(8922), 1, + sym__newline, + STATE(5109), 2, sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 6, + aux_sym_shebang_repeat1, + ACTIONS(1276), 7, sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [184197] = 11, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [183426] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1024), 1, + ACTIONS(3924), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4663), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(4913), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token3, - ACTIONS(8976), 1, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8978), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8980), 1, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token5, - STATE(1822), 1, + STATE(5110), 1, + sym_comment, + STATE(5806), 1, sym__immediate_decimal, - STATE(5150), 1, + STATE(6520), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183461] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4014), 1, + anon_sym_DOLLAR, + ACTIONS(4154), 1, + anon_sym_LPAREN2, + ACTIONS(4156), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(4158), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4534), 1, + aux_sym_unquoted_token3, + ACTIONS(8931), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8933), 1, + aux_sym__immediate_decimal_token5, + STATE(1683), 1, + sym__immediate_decimal, + STATE(5111), 1, sym_comment, - STATE(2083), 2, + STATE(1913), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184232] = 8, - ACTIONS(251), 1, + [183496] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5151), 1, + STATE(5112), 1, sym_comment, - STATE(5157), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5521), 1, sym_path, - STATE(5806), 1, + STATE(5735), 1, sym_cell_path, - ACTIONS(1951), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [184261] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5152), 1, - sym_comment, - ACTIONS(1595), 4, + ACTIONS(1721), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1597), 6, - anon_sym_LPAREN2, + ACTIONS(1723), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [184282] = 8, - ACTIONS(251), 1, + [183525] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(8718), 1, - anon_sym_DOT2, - STATE(5153), 1, + ACTIONS(5385), 1, + anon_sym_LPAREN2, + ACTIONS(5389), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5391), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8410), 1, + anon_sym_DOLLAR, + ACTIONS(8412), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8414), 1, + aux_sym__immediate_decimal_token5, + STATE(2821), 1, + sym__immediate_decimal, + STATE(5113), 1, sym_comment, - STATE(5157), 1, - aux_sym_cell_path_repeat1, - STATE(5539), 1, - sym_path, - STATE(5622), 1, - sym_cell_path, - ACTIONS(1955), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [184311] = 5, + STATE(2907), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183560] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8704), 1, - aux_sym__immediate_decimal_token2, - STATE(5154), 1, + STATE(5114), 1, sym_comment, - ACTIONS(1587), 3, + ACTIONS(1597), 4, + anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1589), 6, + aux_sym__unquoted_in_list_token2, + ACTIONS(1599), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, sym__entry_separator, - [184334] = 4, + [183581] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5155), 1, + ACTIONS(1663), 1, + anon_sym_DASH2, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(8745), 1, + aux_sym_unquoted_token2, + ACTIONS(8935), 1, + sym_filesize_unit, + ACTIONS(8937), 1, + sym_duration_unit, + STATE(5115), 1, sym_comment, - ACTIONS(1589), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(4582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, - sym_identifier, + ACTIONS(1675), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [183612] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5116), 1, + sym_comment, + ACTIONS(1605), 3, anon_sym_DASH2, anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - aux_sym_unquoted_token2, - [184355] = 11, - ACTIONS(3), 1, + [183633] = 10, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3481), 1, - anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(1557), 1, + anon_sym_LBRACE, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4913), 1, - aux_sym_unquoted_token3, - ACTIONS(6928), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8982), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8984), 1, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8986), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - STATE(3868), 1, + STATE(2015), 1, sym__immediate_decimal, - STATE(5156), 1, + STATE(5117), 1, sym_comment, - STATE(3989), 2, + ACTIONS(8791), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2014), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184390] = 7, + [183666] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(948), 1, + ACTIONS(935), 1, anon_sym_DASH2, - ACTIONS(8718), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(5157), 1, + STATE(5118), 1, sym_comment, - STATE(5165), 1, + STATE(5226), 1, aux_sym_cell_path_repeat1, - STATE(5539), 1, + STATE(5491), 1, sym_path, - ACTIONS(950), 5, + STATE(5698), 1, + sym_cell_path, + ACTIONS(937), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [184416] = 9, + [183695] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(7956), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7958), 1, - aux_sym__immediate_decimal_token5, - STATE(5158), 1, + ACTIONS(8556), 1, + anon_sym_DASH2, + STATE(5119), 1, sym_comment, - STATE(6540), 1, - sym__immediate_decimal, - ACTIONS(7954), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2040), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184446] = 5, + ACTIONS(5662), 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, + [183716] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8954), 1, - aux_sym__immediate_decimal_token2, - STATE(5159), 1, + STATE(5120), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1597), 3, + anon_sym_DASH2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1599), 7, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [184468] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8988), 1, - anon_sym_DOT, - ACTIONS(8990), 1, - aux_sym__immediate_decimal_token2, - STATE(5160), 1, - sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [184492] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2135), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - STATE(5161), 1, - sym_comment, - ACTIONS(1947), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184518] = 5, + [183737] = 11, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8741), 1, - aux_sym__immediate_decimal_token2, - STATE(5162), 1, - sym_comment, - ACTIONS(1725), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 4, + ACTIONS(3924), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [184540] = 5, + ACTIONS(4754), 1, + aux_sym_unquoted_token3, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + STATE(5121), 1, + sym_comment, + STATE(7304), 1, + sym__immediate_decimal, + STATE(2007), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [183772] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8994), 1, + ACTIONS(8945), 1, + anon_sym_DOT, + ACTIONS(8947), 1, aux_sym__immediate_decimal_token2, - STATE(5163), 1, + STATE(5122), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 6, + ACTIONS(1607), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [184562] = 9, - ACTIONS(251), 1, + [183797] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(2104), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(6975), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(6977), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(6979), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(6981), 1, aux_sym__immediate_decimal_token5, - STATE(2484), 1, + ACTIONS(7086), 1, + aux_sym_unquoted_token3, + STATE(4004), 1, sym__immediate_decimal, - STATE(5164), 1, + STATE(5123), 1, sym_comment, - ACTIONS(4729), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2480), 2, + STATE(4113), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184592] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(941), 1, - anon_sym_DASH2, - ACTIONS(8996), 1, - anon_sym_DOT2, - STATE(5539), 1, - sym_path, - STATE(5165), 2, - sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(943), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [184616] = 7, + [183832] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, + ACTIONS(8949), 1, + aux_sym__immediate_decimal_token2, + STATE(5124), 1, sym_comment, - STATE(5194), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - ACTIONS(948), 3, - anon_sym_RBRACK, + ACTIONS(1685), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(950), 3, + aux_sym__unquoted_in_record_token2, + ACTIONS(1687), 6, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [184642] = 7, + [183855] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8992), 1, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(5125), 1, + sym_comment, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, sym_path, - STATE(2140), 1, + STATE(5716), 1, sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - STATE(5167), 1, - sym_comment, - ACTIONS(1935), 5, + ACTIONS(1887), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_LBRACE, - anon_sym_RBRACE, - [184668] = 9, - ACTIONS(251), 1, + anon_sym_DASH_DASH, + anon_sym_as, + [183884] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(2104), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, - aux_sym__immediate_decimal_token5, - STATE(2039), 1, - sym__immediate_decimal, - STATE(5168), 1, - sym_comment, - ACTIONS(4630), 2, + ACTIONS(6995), 1, aux_sym__immediate_decimal_token1, + ACTIONS(6997), 1, aux_sym__immediate_decimal_token3, - STATE(2038), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [184698] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6999), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(7001), 1, aux_sym__immediate_decimal_token5, - STATE(2126), 1, + ACTIONS(7086), 1, + aux_sym_unquoted_token3, + STATE(4321), 1, sym__immediate_decimal, - STATE(5169), 1, + STATE(5126), 1, sym_comment, - ACTIONS(6475), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(4612), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [184728] = 8, + [183919] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1925), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(5170), 1, + STATE(5127), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - STATE(5626), 1, - sym_cell_path, - ACTIONS(1927), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184756] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1945), 1, + ACTIONS(1685), 3, anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4563), 1, - sym_cell_path, - STATE(5171), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1947), 4, - sym_identifier, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [184784] = 8, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [183940] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(5172), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - STATE(5756), 1, - sym_cell_path, - ACTIONS(1939), 4, - sym_identifier, - anon_sym_DOLLAR, + ACTIONS(8719), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184812] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(8721), 1, anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4666), 1, - sym_cell_path, - STATE(5173), 1, + ACTIONS(8951), 1, + anon_sym_as, + STATE(5051), 1, + aux_sym_ctrl_do_repeat1, + STATE(5128), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1935), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184840] = 8, - ACTIONS(251), 1, + STATE(5708), 1, + sym__flag, + STATE(5739), 2, + sym_short_flag, + sym_long_flag, + ACTIONS(8652), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [183971] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2093), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4688), 1, - sym_cell_path, - STATE(5174), 1, + STATE(5129), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2095), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184868] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1949), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, + ACTIONS(966), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(964), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4594), 1, - sym_cell_path, - STATE(5175), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1951), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184896] = 8, - ACTIONS(251), 1, + [183992] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1953), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4600), 1, - sym_cell_path, - STATE(5176), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1955), 4, - sym_identifier, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + ACTIONS(5496), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(5498), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token3, + ACTIONS(8953), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184924] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4605), 1, - sym_cell_path, - STATE(5177), 1, + ACTIONS(8955), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8957), 1, + aux_sym__immediate_decimal_token5, + STATE(3027), 1, + sym__immediate_decimal, + STATE(5130), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1959), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184952] = 8, + STATE(3172), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184027] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1961), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4609), 1, - sym_cell_path, - STATE(5178), 1, + STATE(5131), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1963), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [184980] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1965), 1, + ACTIONS(1727), 3, anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4630), 1, - sym_cell_path, - STATE(5179), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1967), 4, - sym_identifier, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 7, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [185008] = 8, - ACTIONS(251), 1, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [184048] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1969), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4687), 1, - sym_cell_path, - STATE(5180), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1971), 4, - sym_identifier, + ACTIONS(3082), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185036] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1973), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4704), 1, - sym_cell_path, - STATE(5181), 1, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(8127), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8129), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8131), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8133), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8761), 1, + aux_sym__unquoted_in_list_token3, + STATE(5132), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1975), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185064] = 8, - ACTIONS(251), 1, + STATE(5509), 1, + sym__immediate_decimal, + STATE(5720), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184083] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1977), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4597), 1, - sym_cell_path, - STATE(5182), 1, + ACTIONS(8959), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8961), 1, + aux_sym__immediate_decimal_token2, + STATE(5133), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1979), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185092] = 8, + ACTIONS(1731), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [184108] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1981), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4602), 1, - sym_cell_path, - STATE(5183), 1, + ACTIONS(8674), 1, + aux_sym__immediate_decimal_token2, + STATE(5134), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1983), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185120] = 8, - ACTIONS(251), 1, + ACTIONS(1605), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [184131] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1985), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4622), 1, - sym_cell_path, - STATE(5184), 1, + STATE(5135), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1987), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185148] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1989), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, + ACTIONS(974), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(972), 7, + anon_sym_COLON, + anon_sym_RBRACK, + anon_sym_GT2, + anon_sym_RBRACE, + anon_sym_QMARK2, + anon_sym_DOT_DOT2, anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4773), 1, - sym_cell_path, - STATE(5185), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1991), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185176] = 8, + [184152] = 11, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1993), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4660), 1, - sym_cell_path, - STATE(5186), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1995), 4, - sym_identifier, + ACTIONS(6453), 1, anon_sym_DOLLAR, + ACTIONS(8626), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185204] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(8628), 1, anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4593), 1, - sym_cell_path, - STATE(5187), 1, - sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(1999), 4, + ACTIONS(8887), 1, sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185232] = 8, + STATE(5100), 1, + aux_sym_ctrl_do_repeat1, + STATE(5136), 1, + sym_comment, + STATE(5905), 1, + sym__flag, + STATE(6693), 1, + sym_val_variable, + STATE(7083), 1, + sym__variable_name, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [184187] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2001), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4595), 1, - sym_cell_path, - STATE(5188), 1, + ACTIONS(8963), 1, + aux_sym__immediate_decimal_token2, + STATE(5137), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2003), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185260] = 8, - ACTIONS(251), 1, + ACTIONS(1685), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [184210] = 11, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2005), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(4101), 1, - sym_path, - STATE(4607), 1, - sym_cell_path, - STATE(5189), 1, + ACTIONS(1022), 1, + anon_sym_DOLLAR, + ACTIONS(4625), 1, + anon_sym_LPAREN2, + ACTIONS(4629), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(4892), 1, + aux_sym_unquoted_token3, + ACTIONS(8965), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8967), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8969), 1, + aux_sym__immediate_decimal_token5, + STATE(1820), 1, + sym__immediate_decimal, + STATE(5138), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2007), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185288] = 8, + STATE(2130), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184245] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2009), 1, + ACTIONS(1976), 1, anon_sym_DASH2, - ACTIONS(8999), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(4101), 1, + STATE(5139), 1, + sym_comment, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, sym_path, - STATE(4627), 1, + STATE(5740), 1, sym_cell_path, - STATE(5190), 1, + ACTIONS(1978), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [184274] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5140), 1, sym_comment, - STATE(5286), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - ACTIONS(2011), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185316] = 8, + STATE(5521), 1, + sym_path, + STATE(5696), 1, + sym_cell_path, + ACTIONS(935), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(937), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [184303] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(1893), 1, anon_sym_DASH2, - ACTIONS(8999), 1, + ACTIONS(8705), 1, anon_sym_DOT2, - STATE(4101), 1, + STATE(5141), 1, + sym_comment, + STATE(5226), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, sym_path, - STATE(4665), 1, + STATE(5729), 1, sym_cell_path, - STATE(5191), 1, + ACTIONS(1895), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [184332] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8638), 1, + aux_sym__immediate_decimal_token2, + STATE(5142), 1, sym_comment, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - ACTIONS(2091), 4, - sym_identifier, + ACTIONS(1605), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1607), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [184355] = 11, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(3600), 1, anon_sym_DOLLAR, + ACTIONS(7062), 1, + anon_sym_LPAREN2, + ACTIONS(7066), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(7068), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(7158), 1, + aux_sym__unquoted_in_record_token3, + ACTIONS(8971), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8973), 1, + aux_sym__immediate_decimal_token5, + STATE(4054), 1, + sym__immediate_decimal, + STATE(5143), 1, + sym_comment, + STATE(4323), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184390] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1675), 1, anon_sym_DASH_DASH, - anon_sym_LBRACE, - [185344] = 9, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(8745), 1, + aux_sym_unquoted_token2, + ACTIONS(8975), 1, + sym_filesize_unit, + ACTIONS(8977), 1, + sym_duration_unit, + STATE(5144), 1, + sym_comment, + ACTIONS(1663), 2, + sym_identifier, + anon_sym_DASH2, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [184420] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(3556), 1, + STATE(3528), 1, sym__immediate_decimal, - STATE(5192), 1, + STATE(5145), 1, sym_comment, - ACTIONS(6427), 2, + ACTIONS(6417), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3550), 2, + STATE(3538), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185374] = 9, + [184450] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6429), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(2098), 1, + STATE(2088), 1, sym__immediate_decimal, - STATE(5193), 1, + STATE(5146), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2029), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185404] = 6, - ACTIONS(3), 1, + [184480] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9001), 1, - anon_sym_DOT2, - STATE(5546), 1, - sym_path, - STATE(5194), 2, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(8979), 1, + sym_identifier, + STATE(5147), 1, sym_comment, - aux_sym_cell_path_repeat1, - ACTIONS(941), 3, - anon_sym_RBRACK, + STATE(5148), 1, + aux_sym_collection_type_repeat1, + STATE(6510), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + [184510] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8981), 1, + sym_identifier, + ACTIONS(8984), 1, + anon_sym_DQUOTE, + ACTIONS(8990), 1, + sym_raw_string_begin, + STATE(7014), 1, + sym_val_string, + ACTIONS(8987), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + STATE(5148), 2, + sym_comment, + aux_sym_collection_type_repeat1, + [184538] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(964), 1, + anon_sym_DASH2, + STATE(5149), 1, + sym_comment, + ACTIONS(966), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(943), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [185428] = 6, - ACTIONS(3), 1, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [184558] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9004), 1, + ACTIONS(8993), 1, anon_sym_DOT, - ACTIONS(9006), 1, + ACTIONS(8995), 1, aux_sym__immediate_decimal_token2, - STATE(5195), 1, + STATE(5150), 1, sym_comment, - ACTIONS(1725), 3, - anon_sym_RBRACE, + ACTIONS(1749), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1751), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [185452] = 9, + [184582] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(9008), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(9010), 1, + ACTIONS(8999), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9012), 1, + ACTIONS(9001), 1, aux_sym__immediate_decimal_token5, - STATE(4337), 1, + STATE(4305), 1, sym__immediate_decimal, - STATE(5196), 1, + STATE(5151), 1, + sym_comment, + ACTIONS(6995), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(4788), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184612] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(968), 1, + anon_sym_DASH2, + STATE(5152), 1, + sym_comment, + ACTIONS(970), 8, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [184632] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4625), 1, + anon_sym_LPAREN2, + ACTIONS(4631), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4633), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + STATE(2516), 1, + sym__immediate_decimal, + STATE(5153), 1, sym_comment, - ACTIONS(7018), 2, + ACTIONS(4716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4770), 2, + STATE(2515), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185482] = 5, + [184662] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9014), 1, + ACTIONS(9003), 1, aux_sym__immediate_decimal_token2, - STATE(5197), 1, + STATE(5154), 1, sym_comment, - ACTIONS(1765), 4, + ACTIONS(1772), 4, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 4, + ACTIONS(1774), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [185504] = 4, + [184684] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(964), 1, + ACTIONS(972), 1, anon_sym_DASH2, - STATE(5198), 1, + STATE(5155), 1, sym_comment, - ACTIONS(966), 8, + ACTIONS(974), 8, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -394631,14 +393146,69 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT2, - [185524] = 4, + [184704] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(968), 1, + ACTIONS(9005), 1, + sym_long_flag_identifier, + ACTIONS(9007), 1, + anon_sym_EQ2, + STATE(5156), 1, + sym_comment, + ACTIONS(4864), 2, anon_sym_DASH2, - STATE(5199), 1, + anon_sym_as, + ACTIONS(4862), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + [184728] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4154), 1, + anon_sym_LPAREN2, + ACTIONS(4160), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4162), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(8313), 1, + anon_sym_DOLLAR, + STATE(1677), 1, + sym__immediate_decimal, + STATE(5157), 1, sym_comment, - ACTIONS(970), 8, + ACTIONS(4158), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1920), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184758] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5158), 1, + sym_comment, + ACTIONS(1687), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1685), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184778] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(976), 1, + anon_sym_DASH2, + STATE(5159), 1, + sym_comment, + ACTIONS(978), 8, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, @@ -394647,5294 +393217,6352 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_as, anon_sym_QMARK2, anon_sym_DOT2, - [185544] = 4, + [184798] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(972), 1, + ACTIONS(5492), 1, + anon_sym_DOLLAR, + ACTIONS(5494), 1, + anon_sym_LPAREN2, + ACTIONS(5500), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(5502), 1, + aux_sym__immediate_decimal_token5, + STATE(3093), 1, + sym__immediate_decimal, + STATE(5160), 1, + sym_comment, + ACTIONS(5498), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(3160), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184828] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(958), 1, anon_sym_DASH2, - STATE(5200), 1, + ACTIONS(9009), 1, + anon_sym_QMARK2, + STATE(5161), 1, sym_comment, - ACTIONS(974), 8, + ACTIONS(960), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, anon_sym_DOT2, - [185564] = 4, + [184850] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(976), 1, + ACTIONS(952), 1, anon_sym_DASH2, - STATE(5201), 1, + ACTIONS(9011), 1, + anon_sym_QMARK2, + STATE(5162), 1, sym_comment, - ACTIONS(978), 8, + ACTIONS(954), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, anon_sym_DOT2, - [185584] = 9, + [184872] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5532), 1, + STATE(5163), 1, + sym_comment, + ACTIONS(1729), 3, + anon_sym_DASH_DASH, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1727), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, + sym_filesize_unit, + sym_duration_unit, + aux_sym_unquoted_token2, + [184892] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + sym_comment, + STATE(5171), 1, + aux_sym_cell_path_repeat1, + STATE(5521), 1, + sym_path, + ACTIONS(948), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(950), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [184918] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8916), 1, + aux_sym__immediate_decimal_token2, + STATE(5165), 1, + sym_comment, + ACTIONS(1605), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [184940] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(5534), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(5540), 1, + ACTIONS(8005), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5542), 1, + ACTIONS(8007), 1, aux_sym__immediate_decimal_token5, - STATE(3067), 1, + STATE(5166), 1, + sym_comment, + STATE(6180), 1, sym__immediate_decimal, - STATE(5202), 1, + ACTIONS(8003), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2023), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [184970] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9013), 1, + anon_sym_DOT, + ACTIONS(9015), 1, + aux_sym__immediate_decimal_token2, + STATE(5167), 1, + sym_comment, + ACTIONS(1605), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [184994] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5168), 1, + sym_comment, + ACTIONS(1727), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1729), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + sym__entry_separator, + [185014] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8662), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8664), 1, + aux_sym__immediate_decimal_token5, + STATE(5169), 1, sym_comment, - ACTIONS(5538), 2, + STATE(7289), 1, + sym__immediate_decimal, + ACTIONS(8660), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3126), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185614] = 9, + [185044] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9017), 1, + aux_sym__immediate_decimal_token2, + STATE(5170), 1, + sym_comment, + ACTIONS(1685), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185066] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9019), 1, + anon_sym_DOT2, + STATE(5521), 1, + sym_path, + STATE(5171), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(941), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(943), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [185090] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9022), 1, + anon_sym_DOT, + ACTIONS(9024), 1, + aux_sym__immediate_decimal_token2, + STATE(5172), 1, + sym_comment, + ACTIONS(1749), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [185114] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - STATE(2084), 1, + STATE(2131), 1, sym__immediate_decimal, - STATE(5203), 1, + STATE(5173), 1, sym_comment, - ACTIONS(4663), 2, + ACTIONS(4629), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2083), 2, + STATE(2130), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185644] = 6, + [185144] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9016), 1, - anon_sym_DOT, - ACTIONS(9018), 1, + ACTIONS(9026), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9028), 1, aux_sym__immediate_decimal_token2, - STATE(5204), 1, + STATE(5174), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1597), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 5, + ACTIONS(1599), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [185668] = 6, + [185168] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9020), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9022), 1, - aux_sym__immediate_decimal_token2, - STATE(5205), 1, + STATE(5175), 1, sym_comment, - ACTIONS(1757), 3, + ACTIONS(1685), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 4, + ACTIONS(1687), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [185692] = 6, + [185188] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9024), 1, + ACTIONS(8123), 1, + anon_sym_LPAREN2, + ACTIONS(9030), 1, + anon_sym_DOLLAR, + ACTIONS(9032), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9034), 1, + aux_sym__immediate_decimal_token5, + STATE(5176), 1, + sym_comment, + STATE(6976), 1, + sym__immediate_decimal, + ACTIONS(8345), 2, aux_sym__immediate_decimal_token1, - ACTIONS(9026), 1, + aux_sym__immediate_decimal_token3, + STATE(6972), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [185218] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8947), 1, aux_sym__immediate_decimal_token2, - STATE(5206), 1, + STATE(5177), 1, sym_comment, - ACTIONS(1595), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1597), 5, - anon_sym_LBRACE, + ACTIONS(1607), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [185716] = 9, + [185240] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2067), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, + STATE(5178), 1, + sym_comment, + ACTIONS(1978), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [185266] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8727), 1, + aux_sym__immediate_decimal_token2, + STATE(5179), 1, + sym_comment, + ACTIONS(1749), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [185288] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4146), 1, + ACTIONS(4154), 1, anon_sym_LPAREN2, - ACTIONS(4440), 1, + ACTIONS(4433), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4442), 1, + ACTIONS(4435), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8326), 1, + ACTIONS(8313), 1, anon_sym_DOLLAR, - STATE(1845), 1, + STATE(1918), 1, sym__immediate_decimal, - STATE(5207), 1, + STATE(5180), 1, sym_comment, - ACTIONS(4438), 2, + ACTIONS(4431), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1842), 2, + STATE(1915), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185746] = 9, + [185318] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(9028), 1, - anon_sym_DOLLAR, ACTIONS(9030), 1, - aux_sym__immediate_decimal_token4, + anon_sym_DOLLAR, ACTIONS(9032), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9034), 1, aux_sym__immediate_decimal_token5, - STATE(5208), 1, + STATE(5181), 1, sym_comment, - STATE(7312), 1, + STATE(7219), 1, sym__immediate_decimal, - ACTIONS(8362), 2, + ACTIONS(8345), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6784), 2, + STATE(7035), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185776] = 6, + [185348] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9034), 1, + ACTIONS(9038), 1, anon_sym_EQ2, - ACTIONS(9036), 1, + ACTIONS(9040), 1, sym_short_flag_identifier, - STATE(5209), 1, + STATE(5182), 1, sym_comment, - ACTIONS(4880), 3, + ACTIONS(4821), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - ACTIONS(4878), 4, + ACTIONS(4819), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [185800] = 9, + [185372] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - STATE(2452), 1, + STATE(2516), 1, sym__immediate_decimal, - STATE(5210), 1, + STATE(5183), 1, sym_comment, - ACTIONS(4729), 2, + ACTIONS(4716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2542), 2, + STATE(2515), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185830] = 9, + [185402] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - STATE(2473), 1, + STATE(2518), 1, sym__immediate_decimal, - STATE(5211), 1, + STATE(5184), 1, sym_comment, - ACTIONS(4729), 2, + ACTIONS(4716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2454), 2, + STATE(2517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185860] = 9, + [185432] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(9028), 1, - anon_sym_DOLLAR, ACTIONS(9030), 1, - aux_sym__immediate_decimal_token4, + anon_sym_DOLLAR, ACTIONS(9032), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9034), 1, aux_sym__immediate_decimal_token5, - STATE(5212), 1, + STATE(5185), 1, sym_comment, - STATE(5904), 1, + STATE(5858), 1, sym__immediate_decimal, - ACTIONS(8092), 2, + ACTIONS(8127), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(5663), 2, + STATE(5720), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185890] = 9, + [185462] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(9028), 1, - anon_sym_DOLLAR, ACTIONS(9030), 1, - aux_sym__immediate_decimal_token4, + anon_sym_DOLLAR, ACTIONS(9032), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(9034), 1, aux_sym__immediate_decimal_token5, - STATE(5213), 1, + STATE(5186), 1, sym_comment, - STATE(7238), 1, + STATE(7290), 1, sym__immediate_decimal, - ACTIONS(8362), 2, + ACTIONS(8345), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6981), 2, + STATE(6969), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185920] = 9, + [185492] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4657), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4705), 1, + ACTIONS(4700), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4707), 1, + ACTIONS(4702), 1, aux_sym__immediate_decimal_token5, - STATE(2181), 1, + STATE(2286), 1, sym__immediate_decimal, - STATE(5214), 1, + STATE(5187), 1, sym_comment, - ACTIONS(4703), 2, + ACTIONS(4698), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2454), 2, + STATE(2517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185950] = 9, + [185522] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(8511), 1, + ACTIONS(8494), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8513), 1, + ACTIONS(8496), 1, aux_sym__immediate_decimal_token5, - STATE(5215), 1, + STATE(5188), 1, sym_comment, - STATE(6811), 1, + STATE(6642), 1, sym__immediate_decimal, - ACTIONS(8509), 2, + ACTIONS(8492), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [185980] = 9, + [185552] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6988), 1, + ACTIONS(6971), 1, anon_sym_LPAREN2, - ACTIONS(9008), 1, + ACTIONS(8997), 1, anon_sym_DOLLAR, - ACTIONS(9038), 1, + ACTIONS(9042), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9040), 1, + ACTIONS(9044), 1, aux_sym__immediate_decimal_token5, - STATE(4740), 1, + STATE(4787), 1, sym__immediate_decimal, - STATE(5216), 1, + STATE(5189), 1, sym_comment, - ACTIONS(7040), 2, + ACTIONS(7031), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4734), 2, + STATE(4786), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186010] = 9, + [185582] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(9042), 1, + ACTIONS(9046), 1, anon_sym_DOLLAR, - ACTIONS(9044), 1, + ACTIONS(9048), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9046), 1, + ACTIONS(9050), 1, aux_sym__immediate_decimal_token5, - STATE(4118), 1, + STATE(4270), 1, sym__immediate_decimal, - STATE(5217), 1, + STATE(5190), 1, sym_comment, - ACTIONS(6960), 2, + ACTIONS(6963), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4546), 2, + STATE(4462), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186040] = 9, + [185612] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6934), 1, + ACTIONS(6935), 1, anon_sym_LPAREN2, - ACTIONS(9042), 1, + ACTIONS(9046), 1, anon_sym_DOLLAR, - ACTIONS(9048), 1, + ACTIONS(9052), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9050), 1, + ACTIONS(9054), 1, aux_sym__immediate_decimal_token5, - STATE(4386), 1, + STATE(4434), 1, sym__immediate_decimal, - STATE(5218), 1, + STATE(5191), 1, sym_comment, - ACTIONS(7004), 2, + ACTIONS(7003), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4545), 2, + STATE(4420), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186070] = 9, + [185642] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(8356), 1, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4604), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(4606), 1, aux_sym__immediate_decimal_token5, - STATE(2039), 1, + STATE(2105), 1, sym__immediate_decimal, - STATE(5219), 1, + STATE(5192), 1, sym_comment, - ACTIONS(8743), 2, + ACTIONS(4602), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2038), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186100] = 9, + [185672] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4620), 1, + ACTIONS(7919), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4622), 1, + ACTIONS(7921), 1, aux_sym__immediate_decimal_token5, - STATE(2093), 1, + STATE(2022), 1, sym__immediate_decimal, - STATE(5220), 1, + STATE(5193), 1, sym_comment, - ACTIONS(4618), 2, + ACTIONS(8512), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(2021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186130] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5221), 1, - sym_comment, - ACTIONS(1667), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1669), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [186150] = 9, + [185702] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(6411), 1, + ACTIONS(6402), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6413), 1, + ACTIONS(6404), 1, aux_sym__immediate_decimal_token5, STATE(3533), 1, sym__immediate_decimal, - STATE(5222), 1, + STATE(5194), 1, sym_comment, - ACTIONS(6409), 2, + ACTIONS(6400), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186180] = 9, + [185732] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3997), 1, + ACTIONS(3970), 1, anon_sym_LPAREN2, - ACTIONS(4408), 1, + ACTIONS(4177), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4410), 1, + ACTIONS(4179), 1, aux_sym__immediate_decimal_token5, - ACTIONS(7984), 1, + ACTIONS(7925), 1, anon_sym_DOLLAR, - STATE(1738), 1, + STATE(1741), 1, sym__immediate_decimal, - STATE(5223), 1, + STATE(5195), 1, sym_comment, - ACTIONS(4406), 2, + ACTIONS(4175), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1737), 2, + STATE(1740), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186210] = 9, + [185762] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8028), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(9028), 1, + ACTIONS(9030), 1, anon_sym_DOLLAR, - ACTIONS(9052), 1, + ACTIONS(9056), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9054), 1, + ACTIONS(9058), 1, aux_sym__immediate_decimal_token5, - STATE(5224), 1, + STATE(5196), 1, sym_comment, - STATE(6137), 1, + STATE(6340), 1, sym__immediate_decimal, - ACTIONS(8366), 2, + ACTIONS(8349), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6784), 2, + STATE(7035), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186240] = 9, + [185792] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5532), 1, + ACTIONS(5492), 1, anon_sym_DOLLAR, - ACTIONS(5534), 1, + ACTIONS(5494), 1, anon_sym_LPAREN2, - ACTIONS(5568), 1, + ACTIONS(5547), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5570), 1, + ACTIONS(5549), 1, aux_sym__immediate_decimal_token5, - STATE(3141), 1, + STATE(3158), 1, sym__immediate_decimal, - STATE(5225), 1, + STATE(5197), 1, sym_comment, - ACTIONS(5566), 2, + ACTIONS(5545), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3186), 2, + STATE(3125), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186270] = 9, + [185822] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3997), 1, - anon_sym_LPAREN2, - ACTIONS(4003), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4005), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(7984), 1, - anon_sym_DOLLAR, - STATE(1599), 1, - sym__immediate_decimal, - STATE(5226), 1, - sym_comment, - ACTIONS(4001), 2, + ACTIONS(9060), 1, aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(1739), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [186300] = 9, + ACTIONS(9062), 1, + aux_sym__immediate_decimal_token2, + STATE(5198), 1, + sym_comment, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [185846] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9064), 1, + aux_sym__immediate_decimal_token2, + STATE(5199), 1, + sym_comment, + ACTIONS(1685), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [185868] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7077), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(7087), 1, + ACTIONS(4631), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7089), 1, + ACTIONS(4633), 1, aux_sym__immediate_decimal_token5, - STATE(4849), 1, + STATE(2460), 1, sym__immediate_decimal, - STATE(5227), 1, + STATE(5200), 1, sym_comment, - ACTIONS(7143), 2, + ACTIONS(4716), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4848), 2, + STATE(2545), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186330] = 9, + [185898] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4657), 1, - anon_sym_DOLLAR, - ACTIONS(4659), 1, + ACTIONS(3970), 1, anon_sym_LPAREN2, - ACTIONS(5972), 1, + ACTIONS(3976), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5974), 1, + ACTIONS(3978), 1, aux_sym__immediate_decimal_token5, - STATE(3260), 1, + ACTIONS(7925), 1, + anon_sym_DOLLAR, + STATE(1589), 1, sym__immediate_decimal, - STATE(5228), 1, + STATE(5201), 1, sym_comment, - ACTIONS(5970), 2, + ACTIONS(3974), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2454), 2, + STATE(1742), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186360] = 9, + [185928] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5384), 1, - anon_sym_LPAREN2, - ACTIONS(9056), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(9060), 1, + ACTIONS(7062), 1, + anon_sym_LPAREN2, + ACTIONS(7070), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9062), 1, + ACTIONS(7072), 1, aux_sym__immediate_decimal_token5, - STATE(3063), 1, + STATE(4836), 1, sym__immediate_decimal, - STATE(5229), 1, + STATE(5202), 1, sym_comment, - ACTIONS(9058), 2, + ACTIONS(7130), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3059), 2, + STATE(4835), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186390] = 9, + [185958] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(4623), 1, anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, + ACTIONS(6012), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(6014), 1, aux_sym__immediate_decimal_token5, - STATE(1900), 1, + STATE(3252), 1, sym__immediate_decimal, - STATE(5230), 1, + STATE(5203), 1, sym_comment, - ACTIONS(4555), 2, + ACTIONS(6010), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1933), 2, + STATE(2517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186420] = 9, + [185988] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(6487), 1, + ACTIONS(9066), 1, anon_sym_DOLLAR, - ACTIONS(6956), 1, + ACTIONS(9070), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6958), 1, + ACTIONS(9072), 1, aux_sym__immediate_decimal_token5, - STATE(4058), 1, + STATE(3076), 1, sym__immediate_decimal, - STATE(5231), 1, + STATE(5204), 1, sym_comment, - ACTIONS(6954), 2, + ACTIONS(9068), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2454), 2, + STATE(3075), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186450] = 9, + [186018] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, ACTIONS(6429), 1, + anon_sym_DOLLAR, + ACTIONS(8339), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6431), 1, + ACTIONS(8341), 1, aux_sym__immediate_decimal_token5, - STATE(2039), 1, + STATE(2022), 1, sym__immediate_decimal, - STATE(5232), 1, + STATE(5205), 1, sym_comment, - ACTIONS(6475), 2, + ACTIONS(8791), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2038), 2, + STATE(2021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186480] = 9, + [186048] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(4625), 1, anon_sym_LPAREN2, - ACTIONS(5937), 1, + ACTIONS(6453), 1, + anon_sym_DOLLAR, + ACTIONS(6927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(5939), 1, + ACTIONS(6929), 1, aux_sym__immediate_decimal_token5, - STATE(3240), 1, + STATE(4066), 1, sym__immediate_decimal, - STATE(5233), 1, + STATE(5206), 1, sym_comment, - ACTIONS(5935), 2, + ACTIONS(6925), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(2517), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186510] = 9, + [186078] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1645), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(1647), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(1753), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1755), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - STATE(713), 1, + STATE(2022), 1, sym__immediate_decimal, - STATE(5234), 1, + STATE(5207), 1, sym_comment, - ACTIONS(1751), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(712), 2, + STATE(2021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186540] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(9064), 1, - anon_sym_DOT_DOT2, - ACTIONS(9068), 1, - sym_filesize_unit, - ACTIONS(9070), 1, - sym_duration_unit, - STATE(5235), 1, - sym_comment, - ACTIONS(9066), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1693), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [186568] = 9, + [186108] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(6910), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(6922), 1, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(5843), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6924), 1, + ACTIONS(5845), 1, aux_sym__immediate_decimal_token5, - STATE(4019), 1, + STATE(3224), 1, sym__immediate_decimal, - STATE(5236), 1, + STATE(5208), 1, sym_comment, - ACTIONS(6920), 2, + ACTIONS(5841), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186598] = 9, + [186138] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_LPAREN2, - ACTIONS(9072), 1, + ACTIONS(1365), 1, anon_sym_DOLLAR, - ACTIONS(9076), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1717), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9078), 1, + ACTIONS(1719), 1, aux_sym__immediate_decimal_token5, - STATE(614), 1, + STATE(739), 1, sym__immediate_decimal, - STATE(5237), 1, + STATE(5209), 1, sym_comment, - ACTIONS(9074), 2, + ACTIONS(1715), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(613), 2, + STATE(738), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186628] = 9, + [186168] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7077), 1, - anon_sym_DOLLAR, - ACTIONS(7079), 1, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(7107), 1, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + ACTIONS(6909), 1, aux_sym__immediate_decimal_token4, - ACTIONS(7109), 1, + ACTIONS(6911), 1, aux_sym__immediate_decimal_token5, - STATE(4431), 1, + STATE(3983), 1, sym__immediate_decimal, - STATE(5238), 1, + STATE(5210), 1, sym_comment, - ACTIONS(7105), 2, + ACTIONS(6907), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(4850), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186658] = 9, + [186198] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5384), 1, + ACTIONS(1579), 1, anon_sym_LPAREN2, - ACTIONS(9056), 1, + ACTIONS(9074), 1, anon_sym_DOLLAR, - ACTIONS(9080), 1, + ACTIONS(9078), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9082), 1, + ACTIONS(9080), 1, aux_sym__immediate_decimal_token5, - STATE(2912), 1, + STATE(642), 1, sym__immediate_decimal, - STATE(5239), 1, + STATE(5211), 1, sym_comment, - ACTIONS(8765), 2, + ACTIONS(9076), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(3064), 2, + STATE(638), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186688] = 9, + [186228] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1645), 1, + ACTIONS(7060), 1, anon_sym_DOLLAR, - ACTIONS(1647), 1, + ACTIONS(7062), 1, anon_sym_LPAREN2, - ACTIONS(1653), 1, + ACTIONS(7092), 1, aux_sym__immediate_decimal_token4, - ACTIONS(1655), 1, + ACTIONS(7094), 1, aux_sym__immediate_decimal_token5, - STATE(565), 1, + STATE(4380), 1, sym__immediate_decimal, - STATE(5240), 1, + STATE(5212), 1, sym_comment, - ACTIONS(1651), 2, + ACTIONS(7090), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(714), 2, + STATE(4837), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186718] = 9, + [186258] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(5436), 1, anon_sym_LPAREN2, - ACTIONS(6444), 1, + ACTIONS(9066), 1, + anon_sym_DOLLAR, + ACTIONS(9082), 1, aux_sym__immediate_decimal_token4, - ACTIONS(6446), 1, + ACTIONS(9084), 1, aux_sym__immediate_decimal_token5, - STATE(3616), 1, + STATE(2904), 1, sym__immediate_decimal, - STATE(5241), 1, + STATE(5213), 1, sym_comment, - ACTIONS(6442), 2, + ACTIONS(8747), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(3078), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186748] = 9, + [186288] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1619), 1, - anon_sym_LPAREN2, - ACTIONS(9072), 1, + ACTIONS(1365), 1, anon_sym_DOLLAR, - ACTIONS(9084), 1, + ACTIONS(1691), 1, + anon_sym_LPAREN2, + ACTIONS(1697), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9086), 1, + ACTIONS(1699), 1, aux_sym__immediate_decimal_token5, - STATE(508), 1, + STATE(553), 1, sym__immediate_decimal, - STATE(5242), 1, + STATE(5214), 1, sym_comment, - ACTIONS(8807), 2, + ACTIONS(1695), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(615), 2, + STATE(740), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186778] = 9, + [186318] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(9028), 1, + ACTIONS(3534), 1, anon_sym_DOLLAR, - ACTIONS(9088), 1, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(6441), 1, aux_sym__immediate_decimal_token4, - ACTIONS(9090), 1, + ACTIONS(6443), 1, aux_sym__immediate_decimal_token5, - STATE(5243), 1, - sym_comment, - STATE(6625), 1, + STATE(3634), 1, sym__immediate_decimal, - ACTIONS(8477), 2, + STATE(5215), 1, + sym_comment, + ACTIONS(6439), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(6784), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186808] = 9, + [186348] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, - anon_sym_DOLLAR, - ACTIONS(4551), 1, + ACTIONS(1579), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, + ACTIONS(9074), 1, + anon_sym_DOLLAR, + ACTIONS(9086), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(9088), 1, aux_sym__immediate_decimal_token5, - STATE(2098), 1, + STATE(501), 1, sym__immediate_decimal, - STATE(5244), 1, + STATE(5216), 1, sym_comment, - ACTIONS(4630), 2, + ACTIONS(8789), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2029), 2, + STATE(644), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [186838] = 4, + [186378] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5245), 1, - sym_comment, - ACTIONS(1589), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1587), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, + ACTIONS(4754), 1, aux_sym_unquoted_token2, - [186858] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(9092), 1, - sym_identifier, - STATE(5246), 1, - sym_comment, - STATE(5253), 1, - aux_sym_collection_type_repeat1, - STATE(6369), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - [186888] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(9094), 1, - sym_identifier, - STATE(5247), 1, - sym_comment, - STATE(5253), 1, - aux_sym_collection_type_repeat1, - STATE(6296), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - [186918] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5248), 1, - sym_comment, - ACTIONS(1597), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1595), 6, - sym_identifier, - anon_sym_DASH2, + ACTIONS(9090), 1, anon_sym_DOT_DOT2, + ACTIONS(9094), 1, sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186938] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, ACTIONS(9096), 1, - sym_identifier, - STATE(5249), 1, - sym_comment, - STATE(5253), 1, - aux_sym_collection_type_repeat1, - STATE(6481), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - [186968] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5250), 1, + sym_duration_unit, + STATE(5217), 1, sym_comment, - ACTIONS(1669), 3, - anon_sym_DASH_DASH, + ACTIONS(9092), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1667), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [186988] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1270), 1, - anon_sym_DASH2, - STATE(5251), 1, - sym_comment, - ACTIONS(1268), 8, - sym_identifier, - sym__newline, + ACTIONS(1675), 3, anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, - anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, - anon_sym_DASH_DASH, - [187008] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(9098), 1, - sym_identifier, - STATE(5252), 1, - sym_comment, - STATE(5253), 1, - aux_sym_collection_type_repeat1, - STATE(6184), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - [187038] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9100), 1, - sym_identifier, - ACTIONS(9103), 1, - anon_sym_DQUOTE, - ACTIONS(9109), 1, - sym_raw_string_begin, - STATE(7070), 1, - sym_val_string, - ACTIONS(9106), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - STATE(5253), 2, - sym_comment, - aux_sym_collection_type_repeat1, - [187066] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(4557), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - STATE(2039), 1, - sym__immediate_decimal, - STATE(5254), 1, - sym_comment, - ACTIONS(4630), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2038), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187096] = 9, + anon_sym_if, + anon_sym_EQ_GT, + [186406] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4551), 1, + ACTIONS(8123), 1, anon_sym_LPAREN2, - ACTIONS(6452), 1, + ACTIONS(9030), 1, anon_sym_DOLLAR, - ACTIONS(8654), 1, + ACTIONS(9098), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8656), 1, + ACTIONS(9100), 1, aux_sym__immediate_decimal_token5, - STATE(5255), 1, + STATE(5218), 1, sym_comment, - STATE(7210), 1, + STATE(6306), 1, sym__immediate_decimal, - ACTIONS(8652), 2, + ACTIONS(8460), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(7035), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187126] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5256), 1, - sym_comment, - ACTIONS(1735), 3, - anon_sym_DASH_DASH, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1733), 6, - sym_identifier, - anon_sym_DASH2, - anon_sym_DOT_DOT2, - sym_filesize_unit, - sym_duration_unit, - aux_sym_unquoted_token2, - [187146] = 9, + [186436] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, - anon_sym_DQUOTE, - ACTIONS(3131), 1, - sym_raw_string_begin, - ACTIONS(9112), 1, - sym_identifier, - STATE(5253), 1, - aux_sym_collection_type_repeat1, - STATE(5257), 1, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2081), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, + STATE(5219), 1, sym_comment, - STATE(6148), 1, - sym_val_string, - ACTIONS(3127), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(5129), 2, - sym__raw_str, - sym__str_double_quotes, - [187176] = 9, + ACTIONS(1873), 5, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_LBRACE, + anon_sym_RBRACE, + [186462] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(9114), 1, + ACTIONS(9102), 1, sym_identifier, - STATE(5253), 1, + STATE(5148), 1, aux_sym_collection_type_repeat1, - STATE(5258), 1, + STATE(5220), 1, sym_comment, - STATE(6565), 1, + STATE(6179), 1, sym_val_string, - ACTIONS(3127), 2, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [187206] = 6, + [186492] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9116), 1, - sym_long_flag_identifier, - ACTIONS(9118), 1, - anon_sym_EQ2, - STATE(5259), 1, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4544), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4546), 1, + aux_sym__immediate_decimal_token5, + STATE(2022), 1, + sym__immediate_decimal, + STATE(5221), 1, sym_comment, - ACTIONS(4890), 2, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(4888), 5, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - [187230] = 9, + ACTIONS(4621), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2021), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186522] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4659), 1, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4665), 1, + ACTIONS(6419), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4667), 1, + ACTIONS(6421), 1, aux_sym__immediate_decimal_token5, - ACTIONS(6487), 1, - anon_sym_DOLLAR, - STATE(2452), 1, + STATE(2116), 1, sym__immediate_decimal, - STATE(5260), 1, + STATE(5222), 1, sym_comment, - ACTIONS(4729), 2, + ACTIONS(6451), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2542), 2, + STATE(2023), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187260] = 5, - ACTIONS(3), 1, + [186552] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8747), 1, - aux_sym__immediate_decimal_token2, - STATE(5261), 1, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4544), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4546), 1, + aux_sym__immediate_decimal_token5, + STATE(1917), 1, + sym__immediate_decimal, + STATE(5223), 1, sym_comment, - ACTIONS(1587), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187282] = 4, + ACTIONS(4542), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(1874), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [186582] = 9, ACTIONS(251), 1, anon_sym_POUND, - STATE(5262), 1, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(9104), 1, + sym_identifier, + STATE(5148), 1, + aux_sym_collection_type_repeat1, + STATE(5224), 1, sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187302] = 9, + STATE(6509), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + [186612] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4146), 1, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4152), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4154), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - ACTIONS(8326), 1, - anon_sym_DOLLAR, - STATE(1692), 1, + STATE(2088), 1, sym__immediate_decimal, - STATE(5263), 1, + STATE(5225), 1, sym_comment, - ACTIONS(4150), 2, + ACTIONS(4621), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(1848), 2, + STATE(2007), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187332] = 4, + [186642] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5264), 1, + ACTIONS(948), 1, + anon_sym_DASH2, + ACTIONS(8705), 1, + anon_sym_DOT2, + STATE(5226), 1, sym_comment, - ACTIONS(1595), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187352] = 9, + STATE(5229), 1, + aux_sym_cell_path_repeat1, + STATE(5491), 1, + sym_path, + ACTIONS(950), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [186668] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_DASH_DASH, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(8728), 1, - aux_sym_unquoted_token2, - ACTIONS(9120), 1, - sym_filesize_unit, - ACTIONS(9122), 1, - sym_duration_unit, - STATE(5265), 1, - sym_comment, - ACTIONS(1681), 2, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(9106), 1, sym_identifier, - anon_sym_DASH2, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [187382] = 4, + STATE(5148), 1, + aux_sym_collection_type_repeat1, + STATE(5227), 1, + sym_comment, + STATE(6526), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + [186698] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5266), 1, + STATE(5228), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, + ACTIONS(1607), 3, + anon_sym_DASH_DASH, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187402] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9124), 1, - aux_sym__immediate_decimal_token2, - STATE(5267), 1, - sym_comment, - ACTIONS(1667), 3, - sym__newline, + ACTIONS(1605), 6, + sym_identifier, + anon_sym_DASH2, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [187424] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5268), 1, - sym_comment, - ACTIONS(1733), 2, - anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1735), 7, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [187444] = 5, + [186718] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(941), 1, anon_sym_DASH2, - ACTIONS(9126), 1, - anon_sym_QMARK2, - STATE(5269), 1, + ACTIONS(9108), 1, + anon_sym_DOT2, + STATE(5491), 1, + sym_path, + STATE(5229), 2, sym_comment, - ACTIONS(960), 7, + aux_sym_cell_path_repeat1, + ACTIONS(943), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT2, - [187466] = 4, + [186742] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5270), 1, + ACTIONS(9111), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9113), 1, + aux_sym__immediate_decimal_token2, + STATE(5230), 1, sym_comment, - ACTIONS(1587), 3, + ACTIONS(1731), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1589), 6, + ACTIONS(1733), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, sym__entry_separator, - [187486] = 5, + [186766] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(952), 1, - anon_sym_DASH2, - ACTIONS(9128), 1, - anon_sym_QMARK2, - STATE(5271), 1, + STATE(5231), 1, sym_comment, - ACTIONS(954), 7, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1599), 3, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [187508] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5272), 1, - sym_comment, - ACTIONS(1595), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1597), 6, - anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + ACTIONS(1597), 6, + sym_identifier, + anon_sym_DASH2, + anon_sym_DOT_DOT2, sym_filesize_unit, sym_duration_unit, - sym__entry_separator, - [187528] = 9, + aux_sym_unquoted_token2, + [186786] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8028), 1, - anon_sym_LPAREN2, - ACTIONS(9028), 1, - anon_sym_DOLLAR, - ACTIONS(9030), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(9032), 1, - aux_sym__immediate_decimal_token5, - STATE(5273), 1, + ACTIONS(1270), 1, + anon_sym_DASH2, + STATE(5232), 1, sym_comment, - STATE(6782), 1, - sym__immediate_decimal, - ACTIONS(8362), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(6781), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187558] = 9, + ACTIONS(1268), 8, + sym_identifier, + sym__newline, + anon_sym_PIPE, + anon_sym_RBRACK, + anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, + anon_sym_DASH_DASH, + [186806] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(2008), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(5233), 1, + sym_comment, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + STATE(5590), 1, + sym_cell_path, + ACTIONS(2010), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(4551), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186834] = 9, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4538), 1, anon_sym_LPAREN2, - ACTIONS(4557), 1, + ACTIONS(4544), 1, aux_sym__immediate_decimal_token4, - ACTIONS(4559), 1, + ACTIONS(4546), 1, aux_sym__immediate_decimal_token5, - STATE(2126), 1, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + STATE(2022), 1, sym__immediate_decimal, - STATE(5274), 1, + STATE(5234), 1, sym_comment, - ACTIONS(4630), 2, + ACTIONS(4621), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - STATE(2040), 2, + STATE(2021), 2, sym__expr_parenthesized_immediate, sym_val_variable, - [187588] = 6, + [186864] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9130), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9132), 1, - aux_sym__immediate_decimal_token2, - STATE(5275), 1, + ACTIONS(1976), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4721), 1, + sym_cell_path, + STATE(5235), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [187612] = 4, - ACTIONS(3), 1, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1978), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186892] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5276), 1, + ACTIONS(2028), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(5236), 1, sym_comment, - ACTIONS(1733), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1735), 6, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - sym__entry_separator, - [187632] = 9, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + STATE(5607), 1, + sym_cell_path, + ACTIONS(2030), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186920] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3547), 1, + ACTIONS(1871), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4661), 1, + sym_cell_path, + STATE(5237), 1, + sym_comment, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1873), 4, + sym_identifier, anon_sym_DOLLAR, - ACTIONS(4551), 1, - anon_sym_LPAREN2, - ACTIONS(7932), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(7934), 1, - aux_sym__immediate_decimal_token5, - STATE(2039), 1, - sym__immediate_decimal, - STATE(5277), 1, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186948] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1885), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4557), 1, + sym_cell_path, + STATE(5238), 1, sym_comment, - ACTIONS(8533), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - STATE(2038), 2, - sym__expr_parenthesized_immediate, - sym_val_variable, - [187662] = 8, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1887), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [186976] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, - anon_sym_DQUOTE, - ACTIONS(1299), 1, - sym_raw_string_begin, - ACTIONS(9134), 1, - aux_sym_path_token1, - STATE(1445), 1, - sym_val_string, - STATE(5278), 1, + ACTIONS(1893), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4660), 1, + sym_cell_path, + STATE(5239), 1, sym_comment, - ACTIONS(1297), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3916), 2, - sym__raw_str, - sym__str_double_quotes, - [187689] = 8, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1895), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187004] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1295), 1, + ACTIONS(3112), 1, anon_sym_DQUOTE, - ACTIONS(1299), 1, + ACTIONS(3118), 1, sym_raw_string_begin, - ACTIONS(9136), 1, - aux_sym_path_token1, - STATE(4020), 1, - sym_val_string, - STATE(5279), 1, + ACTIONS(9117), 1, + sym_identifier, + STATE(5148), 1, + aux_sym_collection_type_repeat1, + STATE(5240), 1, sym_comment, - ACTIONS(1297), 2, + STATE(6132), 1, + sym_val_string, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3916), 2, + STATE(5129), 2, sym__raw_str, sym__str_double_quotes, - [187716] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9138), 1, - anon_sym_QMARK2, - STATE(5280), 1, - sym_comment, - ACTIONS(960), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(958), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [187737] = 6, + [187034] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9140), 1, - anon_sym_EQ2, - ACTIONS(9142), 1, - sym_short_flag_identifier, - STATE(5281), 1, + ACTIONS(1901), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4555), 1, + sym_cell_path, + STATE(5241), 1, sym_comment, - ACTIONS(4878), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(4880), 3, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1903), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - [187760] = 5, + anon_sym_LBRACE, + [187062] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(952), 1, + ACTIONS(1968), 1, anon_sym_DASH2, - ACTIONS(9144), 1, - anon_sym_QMARK2, - STATE(5282), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4540), 1, + sym_cell_path, + STATE(5242), 1, sym_comment, - ACTIONS(954), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1970), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_DOT2, - [187781] = 9, - ACTIONS(3), 1, + anon_sym_LBRACE, + [187090] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7699), 1, - sym__newline, - ACTIONS(7701), 1, - sym__space, - ACTIONS(7703), 1, - anon_sym_DASH_DASH, - ACTIONS(7705), 1, - anon_sym_DASH2, - STATE(5283), 1, + ACTIONS(3112), 1, + anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(9119), 1, + sym_identifier, + STATE(5148), 1, + aux_sym_collection_type_repeat1, + STATE(5243), 1, sym_comment, - STATE(5519), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7266), 1, - sym__flag, - STATE(4399), 2, - sym_short_flag, - sym_long_flag, - [187810] = 4, + STATE(6147), 1, + sym_val_string, + ACTIONS(3114), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + [187120] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9148), 1, + ACTIONS(1986), 1, anon_sym_DASH2, - STATE(5284), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4556), 1, + sym_cell_path, + STATE(5244), 1, sym_comment, - ACTIONS(9146), 7, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1988), 4, sym_identifier, - anon_sym_PIPE, - anon_sym_RBRACK, - anon_sym_RPAREN, anon_sym_DOLLAR, - anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - [187829] = 9, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__newline, - ACTIONS(1693), 1, - sym__space, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(7060), 1, - aux_sym_unquoted_token2, - ACTIONS(9150), 1, - sym_filesize_unit, - ACTIONS(9152), 1, - sym_duration_unit, - STATE(5285), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [187858] = 7, + anon_sym_LBRACE, + [187148] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(948), 1, + ACTIONS(1998), 1, anon_sym_DASH2, - ACTIONS(8999), 1, + ACTIONS(9115), 1, anon_sym_DOT2, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(5286), 1, + STATE(4539), 1, + sym_cell_path, + STATE(5245), 1, sym_comment, - STATE(5287), 1, + STATE(5413), 1, aux_sym_cell_path_repeat1, - ACTIONS(950), 4, + ACTIONS(2000), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187883] = 6, + [187176] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(941), 1, + ACTIONS(1831), 1, anon_sym_DASH2, - ACTIONS(9154), 1, + ACTIONS(9115), 1, anon_sym_DOT2, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(5287), 2, + STATE(4665), 1, + sym_cell_path, + STATE(5246), 1, sym_comment, + STATE(5413), 1, aux_sym_cell_path_repeat1, - ACTIONS(943), 4, + ACTIONS(1833), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [187906] = 8, + [187204] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(935), 1, + ACTIONS(1835), 1, anon_sym_DASH2, - ACTIONS(8999), 1, + ACTIONS(9115), 1, anon_sym_DOT2, - STATE(4101), 1, + STATE(4091), 1, sym_path, - STATE(4344), 1, + STATE(4609), 1, sym_cell_path, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - STATE(5288), 1, + STATE(5247), 1, sym_comment, - ACTIONS(937), 3, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1837), 4, sym_identifier, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [187933] = 5, - ACTIONS(3), 1, + anon_sym_LBRACE, + [187232] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9157), 1, - anon_sym_QMARK2, - STATE(5289), 1, - sym_comment, - ACTIONS(954), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(952), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, + ACTIONS(1839), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, anon_sym_DOT2, - [187954] = 5, + STATE(4091), 1, + sym_path, + STATE(4637), 1, + sym_cell_path, + STATE(5248), 1, + sym_comment, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1841), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187260] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(1843), 1, anon_sym_DASH2, - ACTIONS(9159), 1, - anon_sym_EQ2, - STATE(5290), 1, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4659), 1, + sym_cell_path, + STATE(5249), 1, sym_comment, - ACTIONS(4925), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1845), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [187975] = 5, - ACTIONS(3), 1, + anon_sym_LBRACE, + [187288] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(5291), 1, + ACTIONS(1847), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4671), 1, + sym_cell_path, + STATE(5250), 1, sym_comment, - ACTIONS(1004), 3, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1849), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(1000), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [187996] = 7, - ACTIONS(3), 1, + anon_sym_LBRACE, + [187316] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9163), 1, - anon_sym_GT2, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9167), 1, - sym_raw_string_begin, - STATE(5292), 1, + ACTIONS(1851), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4682), 1, + sym_cell_path, + STATE(5251), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1853), 4, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188021] = 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187344] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5293), 1, + STATE(5252), 1, sym_comment, - ACTIONS(1587), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 6, + ACTIONS(1607), 7, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [188040] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5294), 1, - sym_comment, - ACTIONS(1765), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [188059] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9171), 1, - anon_sym_GT2, - ACTIONS(9173), 1, - sym_raw_string_begin, - STATE(5295), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188084] = 7, - ACTIONS(3), 1, + [187364] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9177), 1, - anon_sym_GT2, - ACTIONS(9179), 1, - sym_raw_string_begin, - STATE(5296), 1, + ACTIONS(1855), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4779), 1, + sym_cell_path, + STATE(5253), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1857), 4, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188109] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187392] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9183), 1, - anon_sym_GT2, - ACTIONS(9185), 1, - sym_raw_string_begin, - STATE(5297), 1, + ACTIONS(1859), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4544), 1, + sym_cell_path, + STATE(5254), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1861), 4, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188134] = 4, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187420] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5298), 1, + STATE(5255), 1, sym_comment, - ACTIONS(1861), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(1597), 2, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1863), 4, - anon_sym_LPAREN2, + aux_sym_unquoted_token2, + ACTIONS(1599), 7, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [188153] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9179), 1, - sym_raw_string_begin, - ACTIONS(9187), 1, - anon_sym_GT2, - STATE(5299), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188178] = 5, + sym_filesize_unit, + sym_duration_unit, + [187440] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9006), 1, - aux_sym__immediate_decimal_token2, - STATE(5300), 1, + STATE(5256), 1, sym_comment, - ACTIONS(1725), 3, + ACTIONS(1597), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 4, + ACTIONS(1599), 6, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - [188199] = 5, + [187460] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9018), 1, - aux_sym__immediate_decimal_token2, - STATE(5301), 1, + ACTIONS(1863), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4564), 1, + sym_cell_path, + STATE(5257), 1, sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 5, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1865), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [188220] = 7, - ACTIONS(3), 1, + [187488] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9191), 1, - anon_sym_GT2, - ACTIONS(9193), 1, - sym_raw_string_begin, - STATE(5302), 1, + ACTIONS(1867), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4618), 1, + sym_cell_path, + STATE(5258), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1869), 4, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188245] = 6, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187516] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9195), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9197), 1, - aux_sym__immediate_decimal_token2, - STATE(5303), 1, + STATE(5259), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1685), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 4, + ACTIONS(1687), 7, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [188268] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9201), 1, - anon_sym_GT2, - ACTIONS(9203), 1, - sym_raw_string_begin, - STATE(5304), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188293] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9167), 1, - sym_raw_string_begin, - ACTIONS(9205), 1, - anon_sym_GT2, - STATE(5305), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188318] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9173), 1, - sym_raw_string_begin, - ACTIONS(9207), 1, - anon_sym_GT2, - STATE(5306), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188343] = 7, - ACTIONS(3), 1, + sym_filesize_unit, + sym_duration_unit, + [187536] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9167), 1, - sym_raw_string_begin, - ACTIONS(9209), 1, - anon_sym_GT2, - STATE(5307), 1, + ACTIONS(1875), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4641), 1, + sym_cell_path, + STATE(5260), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1877), 4, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188368] = 7, - ACTIONS(3), 1, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187564] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9173), 1, - sym_raw_string_begin, - ACTIONS(9211), 1, - anon_sym_GT2, - STATE(5308), 1, + ACTIONS(1879), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4722), 1, + sym_cell_path, + STATE(5261), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(1881), 4, sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188393] = 8, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [187592] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(9213), 1, - anon_sym_DOT_DOT2, - ACTIONS(9217), 1, - sym_filesize_unit, - ACTIONS(9219), 1, - sym_duration_unit, - STATE(5309), 1, + STATE(5262), 1, sym_comment, - ACTIONS(1693), 2, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 7, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - ACTIONS(9215), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [188420] = 7, + sym_filesize_unit, + sym_duration_unit, + [187612] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9179), 1, - sym_raw_string_begin, - ACTIONS(9221), 1, - anon_sym_GT2, - STATE(5310), 1, + STATE(5263), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188445] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(1605), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1607), 6, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, sym__entry_separator, - ACTIONS(9185), 1, - sym_raw_string_begin, - ACTIONS(9223), 1, - anon_sym_GT2, - STATE(5311), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188470] = 7, - ACTIONS(3), 1, + [187632] = 9, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9193), 1, - sym_raw_string_begin, - ACTIONS(9225), 1, - anon_sym_GT2, - STATE(5312), 1, + ACTIONS(3534), 1, + anon_sym_DOLLAR, + ACTIONS(4538), 1, + anon_sym_LPAREN2, + ACTIONS(4544), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(4546), 1, + aux_sym__immediate_decimal_token5, + STATE(2116), 1, + sym__immediate_decimal, + STATE(5264), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188495] = 7, - ACTIONS(3), 1, + ACTIONS(4621), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + STATE(2023), 2, + sym__expr_parenthesized_immediate, + sym_val_variable, + [187662] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9203), 1, - sym_raw_string_begin, - ACTIONS(9227), 1, - anon_sym_GT2, - STATE(5313), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, - sym_identifier, + ACTIONS(9121), 1, anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [188520] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9167), 1, + ACTIONS(9125), 1, + aux_sym_path_token1, + ACTIONS(9127), 1, sym_raw_string_begin, - ACTIONS(9229), 1, - anon_sym_GT2, - STATE(5314), 1, - sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, - sym_identifier, - anon_sym_DQUOTE, + STATE(2928), 1, + sym_val_string, + STATE(5265), 1, + sym_comment, + ACTIONS(9123), 2, sym__str_single_quotes, sym__str_back_ticks, - [188545] = 7, + STATE(2909), 2, + sym__raw_str, + sym__str_double_quotes, + [187689] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9131), 1, + anon_sym_GT2, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9231), 1, - anon_sym_GT2, - STATE(5315), 1, + STATE(5266), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188570] = 7, + [187714] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, - sym_raw_string_begin, - ACTIONS(9233), 1, + ACTIONS(9139), 1, anon_sym_GT2, - STATE(5316), 1, + ACTIONS(9141), 1, + sym_raw_string_begin, + STATE(5267), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188595] = 7, + [187739] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9235), 1, + ACTIONS(9143), 1, anon_sym_GT2, - STATE(5317), 1, + STATE(5268), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188620] = 7, + [187764] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9237), 1, + ACTIONS(9145), 1, anon_sym_GT2, - STATE(5318), 1, + STATE(5269), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188645] = 7, + [187789] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9147), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9149), 1, + aux_sym__immediate_decimal_token2, + STATE(5270), 1, + sym_comment, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187812] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(958), 1, + anon_sym_DASH2, + ACTIONS(9151), 1, + anon_sym_QMARK2, + STATE(5271), 1, + sym_comment, + ACTIONS(960), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [187833] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9153), 1, + anon_sym_DOT, + ACTIONS(9155), 1, + aux_sym__immediate_decimal_token2, + STATE(5272), 1, + sym_comment, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [187856] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, - sym_raw_string_begin, - ACTIONS(9239), 1, + ACTIONS(9159), 1, anon_sym_GT2, - STATE(5319), 1, + ACTIONS(9161), 1, + sym_raw_string_begin, + STATE(5273), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9157), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188670] = 7, + [187881] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, - sym_raw_string_begin, - ACTIONS(9241), 1, + ACTIONS(9165), 1, anon_sym_GT2, - STATE(5320), 1, + ACTIONS(9167), 1, + sym_raw_string_begin, + STATE(5274), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188695] = 7, + [187906] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9167), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9243), 1, + ACTIONS(9169), 1, anon_sym_GT2, - STATE(5321), 1, + STATE(5275), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188720] = 7, + [187931] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9245), 1, + ACTIONS(9171), 1, anon_sym_GT2, - STATE(5322), 1, + STATE(5276), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188745] = 7, + [187956] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, - sym_raw_string_begin, - ACTIONS(9247), 1, + ACTIONS(9175), 1, anon_sym_GT2, - STATE(5323), 1, + ACTIONS(9177), 1, + sym_raw_string_begin, + STATE(5277), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188770] = 7, + [187981] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9179), 1, + anon_sym_QMARK2, + STATE(5278), 1, + sym_comment, + ACTIONS(960), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, + ACTIONS(958), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [188002] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9183), 1, + anon_sym_GT2, ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9249), 1, - anon_sym_GT2, - STATE(5324), 1, + STATE(5279), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188795] = 7, + [188027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + STATE(5280), 1, + sym_comment, + ACTIONS(1597), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188046] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - ACTIONS(9251), 1, + ACTIONS(9187), 1, anon_sym_GT2, - STATE(5325), 1, + STATE(5281), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9157), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188820] = 7, + [188071] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9253), 1, + ACTIONS(9189), 1, anon_sym_GT2, - STATE(5326), 1, + STATE(5282), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188845] = 7, + [188096] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(935), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(3757), 1, + sym_cell_path, + STATE(4091), 1, + sym_path, + STATE(5283), 1, + sym_comment, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + ACTIONS(937), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [188123] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - ACTIONS(9255), 1, + ACTIONS(9191), 1, anon_sym_GT2, - STATE(5327), 1, + STATE(5284), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9157), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188870] = 7, + [188148] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2280), 1, + anon_sym_DASH2, + ACTIONS(9193), 1, + anon_sym_LBRACK2, + STATE(5285), 1, + sym_comment, + ACTIONS(2284), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [188169] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9195), 1, + anon_sym_DQUOTE, + ACTIONS(9199), 1, + aux_sym_path_token1, + ACTIONS(9201), 1, + sym_raw_string_begin, + STATE(2565), 1, + sym_val_string, + STATE(5286), 1, + sym_comment, + ACTIONS(9197), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2581), 2, + sym__raw_str, + sym__str_double_quotes, + [188196] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + STATE(5287), 1, + sym_comment, + ACTIONS(1772), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [188215] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9257), 1, + ACTIONS(9203), 1, anon_sym_GT2, - STATE(5328), 1, + STATE(5288), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188895] = 7, + [188240] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9259), 1, + ACTIONS(9205), 1, anon_sym_GT2, - STATE(5329), 1, + STATE(5289), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188920] = 7, + [188265] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9167), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9261), 1, + ACTIONS(9207), 1, anon_sym_GT2, - STATE(5330), 1, + STATE(5290), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188945] = 7, + [188290] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9209), 1, + anon_sym_QMARK2, + STATE(5291), 1, + sym_comment, + ACTIONS(954), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(952), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [188311] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - ACTIONS(9263), 1, + ACTIONS(9211), 1, anon_sym_GT2, - STATE(5331), 1, + STATE(5292), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9157), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [188970] = 7, - ACTIONS(3), 1, + [188336] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9213), 1, + anon_sym_DQUOTE, + ACTIONS(9217), 1, + aux_sym_path_token1, + ACTIONS(9219), 1, sym_raw_string_begin, - ACTIONS(9265), 1, - anon_sym_GT2, - STATE(5332), 1, + STATE(5293), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, - sym_identifier, - anon_sym_DQUOTE, + STATE(6011), 1, + sym_val_string, + ACTIONS(9215), 2, sym__str_single_quotes, sym__str_back_ticks, - [188995] = 7, + STATE(5904), 2, + sym__raw_str, + sym__str_double_quotes, + [188363] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9203), 1, - sym_raw_string_begin, - ACTIONS(9267), 1, - anon_sym_GT2, - STATE(5333), 1, + ACTIONS(7727), 1, + sym__newline, + ACTIONS(7729), 1, + sym__space, + ACTIONS(7731), 1, + anon_sym_DASH_DASH, + ACTIONS(7733), 1, + anon_sym_DASH2, + STATE(5294), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, - sym_identifier, + STATE(5542), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7255), 1, + sym__flag, + STATE(4389), 2, + sym_short_flag, + sym_long_flag, + [188392] = 8, + ACTIONS(109), 1, anon_sym_DQUOTE, + ACTIONS(123), 1, + sym_raw_string_begin, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9221), 1, + aux_sym_path_token1, + STATE(1726), 1, + sym_val_string, + STATE(5295), 1, + sym_comment, + ACTIONS(111), 2, sym__str_single_quotes, sym__str_back_ticks, - [189020] = 7, + STATE(1780), 2, + sym__raw_str, + sym__str_double_quotes, + [188419] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9269), 1, + ACTIONS(9223), 1, anon_sym_GT2, - STATE(5334), 1, + STATE(5296), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189045] = 7, + [188444] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9271), 1, + ACTIONS(9225), 1, anon_sym_GT2, - STATE(5335), 1, + STATE(5297), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189070] = 7, - ACTIONS(3), 1, + [188469] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9193), 1, - sym_raw_string_begin, - ACTIONS(9273), 1, - anon_sym_GT2, - STATE(5336), 1, + ACTIONS(4916), 1, + anon_sym_DASH2, + ACTIONS(9227), 1, + anon_sym_EQ2, + STATE(5298), 1, sym_comment, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, - sym_identifier, + ACTIONS(4914), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [188490] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3112), 1, anon_sym_DQUOTE, + ACTIONS(3118), 1, + sym_raw_string_begin, + ACTIONS(9229), 1, + aux_sym_path_token1, + STATE(5291), 1, + sym_val_string, + STATE(5299), 1, + sym_comment, + ACTIONS(3114), 2, sym__str_single_quotes, sym__str_back_ticks, - [189095] = 7, + STATE(5129), 2, + sym__raw_str, + sym__str_double_quotes, + [188517] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + STATE(5300), 1, + sym_comment, + ACTIONS(1685), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188536] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9275), 1, + ACTIONS(9231), 1, anon_sym_GT2, - STATE(5337), 1, + STATE(5301), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189120] = 7, + [188561] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9277), 1, + ACTIONS(9233), 1, anon_sym_GT2, - STATE(5338), 1, + STATE(5302), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189145] = 7, + [188586] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9279), 1, + ACTIONS(9235), 1, anon_sym_GT2, - STATE(5339), 1, + STATE(5303), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189170] = 7, + [188611] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9237), 1, + anon_sym_DQUOTE, + ACTIONS(9241), 1, + aux_sym_path_token1, + ACTIONS(9243), 1, + sym_raw_string_begin, + STATE(1317), 1, + sym_val_string, + STATE(5304), 1, + sym_comment, + ACTIONS(9239), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1297), 2, + sym__raw_str, + sym__str_double_quotes, + [188638] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9281), 1, + ACTIONS(9245), 1, anon_sym_GT2, - STATE(5340), 1, + STATE(5305), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189195] = 7, + [188663] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9283), 1, + ACTIONS(9247), 1, anon_sym_GT2, - STATE(5341), 1, + STATE(5306), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189220] = 6, + [188688] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9285), 1, - sym_long_flag_identifier, - ACTIONS(9287), 1, - anon_sym_EQ2, - STATE(5342), 1, + STATE(5307), 1, sym_comment, - ACTIONS(4890), 2, + ACTIONS(1597), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188707] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1663), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(4888), 4, - ts_builtin_sym_end, + ACTIONS(7963), 1, + aux_sym_unquoted_token2, + STATE(5308), 1, + sym_comment, + ACTIONS(1675), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, - [189243] = 8, + anon_sym_RBRACE, + anon_sym_as, + [188728] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5309), 1, + sym_comment, + ACTIONS(1727), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188747] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3621), 1, + ACTIONS(9249), 1, anon_sym_DQUOTE, - ACTIONS(3635), 1, - sym_raw_string_begin, - ACTIONS(9136), 1, + ACTIONS(9253), 1, aux_sym_path_token1, - STATE(4020), 1, + ACTIONS(9255), 1, + sym_raw_string_begin, + STATE(1656), 1, sym_val_string, - STATE(5343), 1, + STATE(5310), 1, sym_comment, - ACTIONS(3623), 2, + ACTIONS(9251), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(4074), 2, + STATE(1634), 2, sym__raw_str, sym__str_double_quotes, - [189270] = 4, - ACTIONS(251), 1, + [188774] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(984), 1, - anon_sym_DASH2, - STATE(5344), 1, + STATE(5311), 1, sym_comment, - ACTIONS(986), 7, + ACTIONS(2216), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + ACTIONS(2218), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, - anon_sym_DASH_DASH, anon_sym_RBRACE, - anon_sym_as, - anon_sym_DOT2, - [189289] = 7, + [188793] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9289), 1, + ACTIONS(9257), 1, anon_sym_GT2, - STATE(5345), 1, + STATE(5312), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189314] = 4, - ACTIONS(3), 1, + [188818] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5346), 1, - sym_comment, - ACTIONS(1725), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(9259), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 4, - anon_sym_LPAREN2, + ACTIONS(9263), 1, + sym_filesize_unit, + ACTIONS(9265), 1, + sym_duration_unit, + STATE(5313), 1, + sym_comment, + ACTIONS(1675), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9261), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [189333] = 5, - ACTIONS(3), 1, + [188845] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(5347), 1, + ACTIONS(9267), 1, + anon_sym_EQ2, + ACTIONS(9269), 1, + sym_short_flag_identifier, + STATE(5314), 1, sym_comment, - ACTIONS(2229), 3, + ACTIONS(4819), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + ACTIONS(4821), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - ACTIONS(2233), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [189354] = 7, + [188868] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9291), 1, + ACTIONS(9271), 1, anon_sym_GT2, - STATE(5348), 1, + STATE(5315), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189379] = 5, + [188893] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2154), 1, + sym_raw_string_begin, + ACTIONS(4231), 1, + anon_sym_DQUOTE, + ACTIONS(9273), 1, + aux_sym_path_token1, + STATE(4001), 1, + sym_val_string, + STATE(5316), 1, + sym_comment, + ACTIONS(4233), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3939), 2, + sym__raw_str, + sym__str_double_quotes, + [188920] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(952), 1, + anon_sym_DASH2, + ACTIONS(9275), 1, + anon_sym_QMARK2, + STATE(5317), 1, + sym_comment, + ACTIONS(954), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [188941] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5318), 1, + sym_comment, + ACTIONS(1685), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1687), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188960] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5319), 1, + sym_comment, + ACTIONS(1727), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1729), 6, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [188979] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9293), 1, + ACTIONS(9277), 1, aux_sym__immediate_decimal_token2, - STATE(5349), 1, + STATE(5320), 1, sym_comment, - ACTIONS(1765), 3, + ACTIONS(1772), 3, anon_sym_RBRACE, anon_sym_DOT_DOT2, aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 4, + ACTIONS(1774), 4, anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [189400] = 6, + [189000] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9295), 1, - anon_sym_DOT, - ACTIONS(9297), 1, - aux_sym__immediate_decimal_token2, - STATE(5350), 1, + ACTIONS(9279), 1, + anon_sym_DQUOTE, + ACTIONS(9283), 1, + aux_sym_path_token1, + ACTIONS(9285), 1, + sym_raw_string_begin, + STATE(2453), 1, + sym_val_string, + STATE(5321), 1, + sym_comment, + ACTIONS(9281), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2519), 2, + sym__raw_str, + sym__str_double_quotes, + [189027] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5322), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1817), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, + aux_sym__unquoted_in_list_token2, + ACTIONS(1819), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [189423] = 5, + sym__entry_separator, + [189046] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2318), 1, + ACTIONS(9289), 1, anon_sym_DASH2, - ACTIONS(9299), 1, - anon_sym_LBRACK2, - STATE(5351), 1, + STATE(5323), 1, sym_comment, - ACTIONS(2322), 6, - sym__newline, - anon_sym_SEMI, + ACTIONS(9287), 7, + sym_identifier, + anon_sym_PIPE, + anon_sym_RBRACK, anon_sym_RPAREN, + anon_sym_DOLLAR, + anon_sym_DOT_DOT_DOT, anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [189444] = 4, + [189065] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5352), 1, + ACTIONS(9291), 1, + aux_sym__immediate_decimal_token2, + STATE(5324), 1, sym_comment, - ACTIONS(1595), 2, + ACTIONS(1685), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1597), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, + ACTIONS(1687), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [189463] = 8, - ACTIONS(251), 1, + [189086] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(935), 1, - anon_sym_DASH2, - ACTIONS(8999), 1, - anon_sym_DOT2, - STATE(3770), 1, - sym_cell_path, - STATE(4101), 1, - sym_path, - STATE(5286), 1, - aux_sym_cell_path_repeat1, - STATE(5353), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + ACTIONS(9293), 1, + anon_sym_GT2, + STATE(5325), 1, sym_comment, - ACTIONS(937), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [189490] = 8, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189111] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9301), 1, + ACTIONS(1966), 1, + sym_raw_string_begin, + ACTIONS(4267), 1, anon_sym_DQUOTE, - ACTIONS(9305), 1, + ACTIONS(9295), 1, aux_sym_path_token1, - ACTIONS(9307), 1, - sym_raw_string_begin, - STATE(2564), 1, + STATE(3896), 1, sym_val_string, - STATE(5354), 1, + STATE(5326), 1, sym_comment, - ACTIONS(9303), 2, + ACTIONS(4269), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2583), 2, + STATE(3891), 2, sym__raw_str, sym__str_double_quotes, - [189517] = 7, + [189138] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9309), 1, + ACTIONS(9297), 1, anon_sym_GT2, - STATE(5355), 1, + STATE(5327), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189542] = 5, + [189163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, + ACTIONS(2232), 1, aux_sym_unquoted_token4, - STATE(5356), 1, + STATE(5328), 1, sym_comment, - ACTIONS(2237), 3, + ACTIONS(2226), 3, anon_sym_DASH_DASH, anon_sym_DASH2, anon_sym_as, - ACTIONS(2241), 4, + ACTIONS(2230), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [189563] = 8, - ACTIONS(109), 1, + [189184] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9024), 1, + aux_sym__immediate_decimal_token2, + STATE(5329), 1, + sym_comment, + ACTIONS(1749), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [189205] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9299), 1, anon_sym_DQUOTE, - ACTIONS(123), 1, + ACTIONS(9303), 1, + aux_sym_path_token1, + ACTIONS(9305), 1, + sym_raw_string_begin, + STATE(1406), 1, + sym_val_string, + STATE(5330), 1, + sym_comment, + ACTIONS(9301), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(1420), 2, + sym__raw_str, + sym__str_double_quotes, + [189232] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, sym_raw_string_begin, + ACTIONS(9307), 1, + anon_sym_GT2, + STATE(5331), 1, + sym_comment, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189257] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + ACTIONS(9309), 1, + anon_sym_GT2, + STATE(5332), 1, + sym_comment, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189282] = 8, ACTIONS(251), 1, anon_sym_POUND, ACTIONS(9311), 1, + anon_sym_DQUOTE, + ACTIONS(9315), 1, aux_sym_path_token1, - STATE(1818), 1, + ACTIONS(9317), 1, + sym_raw_string_begin, + STATE(1550), 1, sym_val_string, - STATE(5357), 1, + STATE(5333), 1, sym_comment, - ACTIONS(111), 2, + ACTIONS(9313), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1720), 2, + STATE(1557), 2, sym__raw_str, sym__str_double_quotes, - [189590] = 7, + [189309] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9313), 1, + ACTIONS(9319), 1, anon_sym_GT2, - STATE(5358), 1, + STATE(5334), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189615] = 5, + [189334] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5359), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9141), 1, + sym_raw_string_begin, + ACTIONS(9321), 1, + anon_sym_GT2, + STATE(5335), 1, sym_comment, - ACTIONS(2245), 3, - anon_sym_DASH_DASH, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9137), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189359] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9323), 1, + anon_sym_DQUOTE, + ACTIONS(9327), 1, + aux_sym_path_token1, + ACTIONS(9329), 1, + sym_raw_string_begin, + STATE(2823), 1, + sym_val_string, + STATE(5336), 1, + sym_comment, + ACTIONS(9325), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2831), 2, + sym__raw_str, + sym__str_double_quotes, + [189386] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(988), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2247), 4, + STATE(5337), 1, + sym_comment, + ACTIONS(990), 7, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [189636] = 8, + anon_sym_as, + anon_sym_DOT2, + [189405] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9315), 1, + ACTIONS(9331), 1, anon_sym_DQUOTE, - ACTIONS(9319), 1, + ACTIONS(9335), 1, aux_sym_path_token1, - ACTIONS(9321), 1, + ACTIONS(9337), 1, sym_raw_string_begin, - STATE(5360), 1, - sym_comment, - STATE(6028), 1, + STATE(1368), 1, sym_val_string, - ACTIONS(9317), 2, + STATE(5338), 1, + sym_comment, + ACTIONS(9333), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(6068), 2, + STATE(1382), 2, sym__raw_str, sym__str_double_quotes, - [189663] = 4, + [189432] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5361), 1, + STATE(5339), 1, sym_comment, - ACTIONS(1667), 2, + ACTIONS(1605), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 6, + ACTIONS(1607), 6, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [189682] = 5, + [189451] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(958), 1, + ACTIONS(9339), 1, + anon_sym_DQUOTE, + ACTIONS(9343), 1, + aux_sym_path_token1, + ACTIONS(9345), 1, + sym_raw_string_begin, + STATE(5340), 1, + sym_comment, + STATE(6833), 1, + sym_val_string, + ACTIONS(9341), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(6975), 2, + sym__raw_str, + sym__str_double_quotes, + [189478] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9135), 1, + sym_raw_string_begin, + ACTIONS(9347), 1, + anon_sym_GT2, + STATE(5341), 1, + sym_comment, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9129), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189503] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9349), 1, + anon_sym_DQUOTE, + ACTIONS(9353), 1, + aux_sym_path_token1, + ACTIONS(9355), 1, + sym_raw_string_begin, + STATE(2783), 1, + sym_val_string, + STATE(5342), 1, + sym_comment, + ACTIONS(9351), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2744), 2, + sym__raw_str, + sym__str_double_quotes, + [189530] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(980), 1, anon_sym_DASH2, - ACTIONS(9323), 1, - anon_sym_QMARK2, - STATE(5362), 1, + STATE(5343), 1, sym_comment, - ACTIONS(960), 6, - ts_builtin_sym_end, + ACTIONS(982), 7, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, anon_sym_DOT2, - [189703] = 5, + [189549] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9325), 1, - aux_sym__immediate_decimal_token2, - STATE(5363), 1, + ACTIONS(9357), 1, + anon_sym_DQUOTE, + ACTIONS(9361), 1, + aux_sym_path_token1, + ACTIONS(9363), 1, + sym_raw_string_begin, + STATE(2996), 1, + sym_val_string, + STATE(5344), 1, sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [189724] = 7, + ACTIONS(9359), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3005), 2, + sym__raw_str, + sym__str_double_quotes, + [189576] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9365), 1, + anon_sym_DQUOTE, + ACTIONS(9369), 1, + aux_sym_path_token1, + ACTIONS(9371), 1, + sym_raw_string_begin, + STATE(505), 1, + sym_val_string, + STATE(5345), 1, + sym_comment, + ACTIONS(9367), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(525), 2, + sym__raw_str, + sym__str_double_quotes, + [189603] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9327), 1, + ACTIONS(9373), 1, anon_sym_GT2, - STATE(5364), 1, + STATE(5346), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189749] = 8, + [189628] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3125), 1, + ACTIONS(9375), 1, anon_sym_DQUOTE, - ACTIONS(3131), 1, + ACTIONS(9379), 1, + aux_sym_path_token1, + ACTIONS(9381), 1, sym_raw_string_begin, - ACTIONS(9329), 1, + STATE(2736), 1, + sym_val_string, + STATE(5347), 1, + sym_comment, + ACTIONS(9377), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(2730), 2, + sym__raw_str, + sym__str_double_quotes, + [189655] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(984), 1, + anon_sym_DASH2, + STATE(5348), 1, + sym_comment, + ACTIONS(986), 7, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + anon_sym_DOT2, + [189674] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(5349), 1, + sym_comment, + ACTIONS(1004), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(1000), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [189695] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4393), 1, + anon_sym_DQUOTE, + ACTIONS(4403), 1, + sym_raw_string_begin, + ACTIONS(9383), 1, aux_sym_path_token1, - STATE(5289), 1, + STATE(5162), 1, + sym_val_string, + STATE(5350), 1, + sym_comment, + ACTIONS(4395), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(5149), 2, + sym__raw_str, + sym__str_double_quotes, + [189722] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9385), 1, + anon_sym_DQUOTE, + ACTIONS(9389), 1, + aux_sym_path_token1, + ACTIONS(9391), 1, + sym_raw_string_begin, + STATE(140), 1, sym_val_string, - STATE(5365), 1, + STATE(5351), 1, sym_comment, - ACTIONS(3127), 2, + ACTIONS(9387), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(5129), 2, + STATE(142), 2, sym__raw_str, sym__str_double_quotes, - [189776] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9331), 1, - anon_sym_DASH_DASH, - ACTIONS(9334), 1, - anon_sym_DASH2, - STATE(5967), 1, - sym__flag, - ACTIONS(8626), 2, - anon_sym_DOLLAR, - anon_sym_LBRACE, - STATE(5366), 2, - sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [189801] = 8, + [189749] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9337), 1, + ACTIONS(9393), 1, anon_sym_DQUOTE, - ACTIONS(9341), 1, + ACTIONS(9397), 1, aux_sym_path_token1, - ACTIONS(9343), 1, + ACTIONS(9399), 1, sym_raw_string_begin, - STATE(1335), 1, + STATE(543), 1, sym_val_string, - STATE(5367), 1, + STATE(5352), 1, sym_comment, - ACTIONS(9339), 2, + ACTIONS(9395), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1308), 2, + STATE(520), 2, sym__raw_str, sym__str_double_quotes, - [189828] = 8, + [189776] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9345), 1, + ACTIONS(9401), 1, anon_sym_DQUOTE, - ACTIONS(9349), 1, + ACTIONS(9405), 1, aux_sym_path_token1, - ACTIONS(9351), 1, + ACTIONS(9407), 1, sym_raw_string_begin, - STATE(1683), 1, + STATE(416), 1, sym_val_string, - STATE(5368), 1, + STATE(5353), 1, sym_comment, - ACTIONS(9347), 2, + ACTIONS(9403), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1702), 2, + STATE(391), 2, sym__raw_str, sym__str_double_quotes, - [189855] = 8, + [189803] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2083), 1, - sym_raw_string_begin, - ACTIONS(4051), 1, + ACTIONS(9409), 1, anon_sym_DQUOTE, - ACTIONS(9353), 1, + ACTIONS(9413), 1, aux_sym_path_token1, - STATE(3995), 1, + ACTIONS(9415), 1, + sym_raw_string_begin, + STATE(368), 1, sym_val_string, - STATE(5369), 1, + STATE(5354), 1, sym_comment, - ACTIONS(4053), 2, + ACTIONS(9411), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(3997), 2, + STATE(372), 2, sym__raw_str, sym__str_double_quotes, - [189882] = 5, + [189830] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9141), 1, + sym_raw_string_begin, + ACTIONS(9417), 1, + anon_sym_GT2, + STATE(5355), 1, + sym_comment, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9137), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [189855] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9355), 1, - aux_sym__immediate_decimal_token2, - STATE(5370), 1, + ACTIONS(9419), 1, + sym_long_flag_identifier, + ACTIONS(9421), 1, + anon_sym_EQ2, + STATE(5356), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [189903] = 7, + ACTIONS(4864), 2, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(4862), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + [189878] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9357), 1, + ACTIONS(9423), 1, anon_sym_GT2, - STATE(5371), 1, + STATE(5357), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189928] = 8, + [189903] = 8, + ACTIONS(237), 1, + anon_sym_DQUOTE, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9359), 1, - anon_sym_DQUOTE, - ACTIONS(9363), 1, - aux_sym_path_token1, - ACTIONS(9365), 1, + ACTIONS(253), 1, sym_raw_string_begin, - STATE(2503), 1, + ACTIONS(9425), 1, + aux_sym_path_token1, + STATE(1417), 1, sym_val_string, - STATE(5372), 1, + STATE(5358), 1, sym_comment, - ACTIONS(9361), 2, + ACTIONS(239), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(2534), 2, + STATE(1410), 2, sym__raw_str, sym__str_double_quotes, - [189955] = 7, + [189930] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9367), 1, + ACTIONS(9427), 1, anon_sym_GT2, - STATE(5373), 1, + STATE(5359), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [189980] = 7, + [189955] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9369), 1, + ACTIONS(9429), 1, anon_sym_GT2, - STATE(5374), 1, + STATE(5360), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190005] = 7, + [189980] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9371), 1, + ACTIONS(9431), 1, anon_sym_GT2, - STATE(5375), 1, + STATE(5361), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190030] = 8, - ACTIONS(251), 1, + [190005] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1859), 1, - sym_raw_string_begin, - ACTIONS(4212), 1, - anon_sym_DQUOTE, - ACTIONS(9373), 1, - aux_sym_path_token1, - STATE(3910), 1, - sym_val_string, - STATE(5376), 1, + STATE(5362), 1, sym_comment, - ACTIONS(4214), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(3922), 2, - sym__raw_str, - sym__str_double_quotes, - [190057] = 8, + ACTIONS(1731), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [190024] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9375), 1, - anon_sym_DQUOTE, - ACTIONS(9379), 1, - aux_sym_path_token1, - ACTIONS(9381), 1, - sym_raw_string_begin, - STATE(1453), 1, - sym_val_string, - STATE(5377), 1, + ACTIONS(968), 1, + anon_sym_DASH2, + STATE(5363), 1, sym_comment, - ACTIONS(9377), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1434), 2, - sym__raw_str, - sym__str_double_quotes, - [190084] = 7, + ACTIONS(970), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [190043] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(5364), 1, + sym_comment, + ACTIONS(2192), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2196), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190064] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9167), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9383), 1, + ACTIONS(9433), 1, anon_sym_GT2, - STATE(5378), 1, + STATE(5365), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190109] = 7, + [190089] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9385), 1, + ACTIONS(9435), 1, anon_sym_GT2, - STATE(5379), 1, + STATE(5366), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190134] = 7, + [190114] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(5367), 1, + sym_comment, + ACTIONS(2200), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2202), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [190135] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9437), 1, + anon_sym_DASH_DASH, + ACTIONS(9440), 1, + anon_sym_DASH2, + STATE(5905), 1, + sym__flag, + ACTIONS(8606), 2, + anon_sym_DOLLAR, + anon_sym_LBRACE, + STATE(5368), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [190160] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(972), 1, + anon_sym_DASH2, + STATE(5369), 1, + sym_comment, + ACTIONS(974), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [190179] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9387), 1, + ACTIONS(9443), 1, anon_sym_GT2, - STATE(5380), 1, + STATE(5370), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190159] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9389), 1, - anon_sym_DQUOTE, - ACTIONS(9393), 1, - aux_sym_path_token1, - ACTIONS(9395), 1, - sym_raw_string_begin, - STATE(1601), 1, - sym_val_string, - STATE(5381), 1, - sym_comment, - ACTIONS(9391), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1558), 2, - sym__raw_str, - sym__str_double_quotes, - [190186] = 7, + [190204] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - ACTIONS(9397), 1, + ACTIONS(9445), 1, anon_sym_GT2, - STATE(5382), 1, + STATE(5371), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + ACTIONS(9157), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190211] = 8, - ACTIONS(251), 1, + [190229] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9399), 1, - anon_sym_DQUOTE, - ACTIONS(9403), 1, - aux_sym_path_token1, - ACTIONS(9405), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9167), 1, sym_raw_string_begin, - STATE(2833), 1, - sym_val_string, - STATE(5383), 1, + ACTIONS(9447), 1, + anon_sym_GT2, + STATE(5372), 1, sym_comment, - ACTIONS(9401), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2871), 2, - sym__raw_str, - sym__str_double_quotes, - [190238] = 4, + [190254] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(980), 1, + ACTIONS(976), 1, anon_sym_DASH2, - STATE(5384), 1, + STATE(5373), 1, sym_comment, - ACTIONS(982), 7, + ACTIONS(978), 7, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, + anon_sym_QMARK2, anon_sym_DOT2, - [190257] = 8, + [190273] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9135), 1, + sym_raw_string_begin, + ACTIONS(9449), 1, + anon_sym_GT2, + STATE(5374), 1, + sym_comment, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9129), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [190298] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9407), 1, + ACTIONS(1297), 1, anon_sym_DQUOTE, - ACTIONS(9411), 1, - aux_sym_path_token1, - ACTIONS(9413), 1, + ACTIONS(1301), 1, sym_raw_string_begin, - STATE(1403), 1, + ACTIONS(9451), 1, + aux_sym_path_token1, + STATE(3975), 1, sym_val_string, - STATE(5385), 1, + STATE(5375), 1, sym_comment, - ACTIONS(9409), 2, + ACTIONS(1299), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(1413), 2, + STATE(3895), 2, sym__raw_str, sym__str_double_quotes, - [190284] = 7, + [190325] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9415), 1, + ACTIONS(9453), 1, anon_sym_GT2, - STATE(5386), 1, + STATE(5376), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190309] = 8, - ACTIONS(251), 1, + [190350] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9417), 1, - anon_sym_DQUOTE, - ACTIONS(9421), 1, - aux_sym_path_token1, - ACTIONS(9423), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9185), 1, sym_raw_string_begin, - STATE(5387), 1, + ACTIONS(9455), 1, + anon_sym_GT2, + STATE(5377), 1, sym_comment, - STATE(7004), 1, - sym_val_string, - ACTIONS(9419), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9181), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(7196), 2, - sym__raw_str, - sym__str_double_quotes, - [190336] = 7, + [190375] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9457), 1, + aux_sym__immediate_decimal_token2, + STATE(5378), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [190396] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9425), 1, + ACTIONS(9459), 1, anon_sym_GT2, - STATE(5388), 1, + STATE(5379), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190361] = 8, - ACTIONS(251), 1, + [190421] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9427), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9185), 1, + sym_raw_string_begin, + ACTIONS(9461), 1, + anon_sym_GT2, + STATE(5380), 1, + sym_comment, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9181), 4, + sym_identifier, anon_sym_DQUOTE, - ACTIONS(9431), 1, - aux_sym_path_token1, - ACTIONS(9433), 1, + sym__str_single_quotes, + sym__str_back_ticks, + [190446] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, sym_raw_string_begin, - STATE(2781), 1, - sym_val_string, - STATE(5389), 1, + ACTIONS(9463), 1, + anon_sym_GT2, + STATE(5381), 1, sym_comment, - ACTIONS(9429), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2768), 2, - sym__raw_str, - sym__str_double_quotes, - [190388] = 7, + [190471] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9435), 1, + ACTIONS(9465), 1, anon_sym_GT2, - STATE(5390), 1, + STATE(5382), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190413] = 8, - ACTIONS(251), 1, + [190496] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9437), 1, - anon_sym_DQUOTE, - ACTIONS(9441), 1, - aux_sym_path_token1, - ACTIONS(9443), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, sym_raw_string_begin, - STATE(2998), 1, - sym_val_string, - STATE(5391), 1, + ACTIONS(9467), 1, + anon_sym_GT2, + STATE(5383), 1, sym_comment, - ACTIONS(9439), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2980), 2, - sym__raw_str, - sym__str_double_quotes, - [190440] = 8, - ACTIONS(251), 1, + [190521] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9445), 1, - anon_sym_DQUOTE, - ACTIONS(9449), 1, - aux_sym_path_token1, - ACTIONS(9451), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9167), 1, sym_raw_string_begin, - STATE(468), 1, - sym_val_string, - STATE(5392), 1, + ACTIONS(9469), 1, + anon_sym_GT2, + STATE(5384), 1, sym_comment, - ACTIONS(9447), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(460), 2, - sym__raw_str, - sym__str_double_quotes, - [190467] = 8, - ACTIONS(251), 1, + [190546] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9453), 1, - anon_sym_DQUOTE, - ACTIONS(9457), 1, - aux_sym_path_token1, - ACTIONS(9459), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, sym_raw_string_begin, - STATE(585), 1, - sym_val_string, - STATE(5393), 1, + ACTIONS(9471), 1, + anon_sym_GT2, + STATE(5385), 1, sym_comment, - ACTIONS(9455), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(584), 2, - sym__raw_str, - sym__str_double_quotes, - [190494] = 8, - ACTIONS(251), 1, + [190571] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9461), 1, - anon_sym_DQUOTE, - ACTIONS(9465), 1, - aux_sym_path_token1, - ACTIONS(9467), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9177), 1, sym_raw_string_begin, - STATE(2742), 1, - sym_val_string, - STATE(5394), 1, + ACTIONS(9473), 1, + anon_sym_GT2, + STATE(5386), 1, sym_comment, - ACTIONS(9463), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9173), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2679), 2, - sym__raw_str, - sym__str_double_quotes, - [190521] = 8, - ACTIONS(251), 1, + [190596] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9469), 1, - anon_sym_DQUOTE, - ACTIONS(9473), 1, - aux_sym_path_token1, - ACTIONS(9475), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9185), 1, sym_raw_string_begin, - STATE(2938), 1, - sym_val_string, - STATE(5395), 1, + ACTIONS(9475), 1, + anon_sym_GT2, + STATE(5387), 1, sym_comment, - ACTIONS(9471), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9181), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(2885), 2, - sym__raw_str, - sym__str_double_quotes, - [190548] = 8, - ACTIONS(251), 1, + [190621] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4340), 1, - anon_sym_DQUOTE, - ACTIONS(4350), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, sym_raw_string_begin, ACTIONS(9477), 1, - aux_sym_path_token1, - STATE(5282), 1, - sym_val_string, - STATE(5396), 1, + anon_sym_GT2, + STATE(5388), 1, sym_comment, - ACTIONS(4342), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(5406), 2, - sym__raw_str, - sym__str_double_quotes, - [190575] = 8, - ACTIONS(251), 1, + [190646] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4386), 1, - anon_sym_DQUOTE, - ACTIONS(4396), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9167), 1, sym_raw_string_begin, ACTIONS(9479), 1, - aux_sym_path_token1, - STATE(5271), 1, - sym_val_string, - STATE(5397), 1, + anon_sym_GT2, + STATE(5389), 1, sym_comment, - ACTIONS(4388), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(5198), 2, - sym__raw_str, - sym__str_double_quotes, - [190602] = 8, - ACTIONS(251), 1, + [190671] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9481), 1, - anon_sym_DQUOTE, - ACTIONS(9485), 1, - aux_sym_path_token1, - ACTIONS(9487), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9177), 1, sym_raw_string_begin, - STATE(140), 1, - sym_val_string, - STATE(5398), 1, + ACTIONS(9481), 1, + anon_sym_GT2, + STATE(5390), 1, sym_comment, - ACTIONS(9483), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9173), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(142), 2, - sym__raw_str, - sym__str_double_quotes, - [190629] = 8, - ACTIONS(251), 1, + [190696] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9489), 1, - anon_sym_DQUOTE, - ACTIONS(9493), 1, - aux_sym_path_token1, - ACTIONS(9495), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9185), 1, sym_raw_string_begin, - STATE(518), 1, - sym_val_string, - STATE(5399), 1, + ACTIONS(9483), 1, + anon_sym_GT2, + STATE(5391), 1, sym_comment, - ACTIONS(9491), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9181), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(544), 2, - sym__raw_str, - sym__str_double_quotes, - [190656] = 8, - ACTIONS(251), 1, + [190721] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9497), 1, - anon_sym_DQUOTE, - ACTIONS(9501), 1, - aux_sym_path_token1, - ACTIONS(9503), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9177), 1, sym_raw_string_begin, - STATE(396), 1, - sym_val_string, - STATE(5400), 1, + ACTIONS(9485), 1, + anon_sym_GT2, + STATE(5392), 1, sym_comment, - ACTIONS(9499), 2, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + ACTIONS(9173), 4, + sym_identifier, + anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - STATE(405), 2, - sym__raw_str, - sym__str_double_quotes, - [190683] = 8, + [190746] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9505), 1, + ACTIONS(9487), 1, anon_sym_DQUOTE, - ACTIONS(9509), 1, + ACTIONS(9491), 1, aux_sym_path_token1, - ACTIONS(9511), 1, + ACTIONS(9493), 1, sym_raw_string_begin, - STATE(368), 1, + STATE(1384), 1, sym_val_string, - STATE(5401), 1, + STATE(5393), 1, sym_comment, - ACTIONS(9507), 2, + ACTIONS(9489), 2, sym__str_single_quotes, sym__str_back_ticks, - STATE(373), 2, + STATE(1404), 2, sym__raw_str, sym__str_double_quotes, - [190710] = 7, + [190773] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9513), 1, + ACTIONS(9495), 1, anon_sym_GT2, - STATE(5402), 1, + STATE(5394), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190735] = 7, + [190798] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + STATE(5395), 1, + sym_comment, + ACTIONS(1605), 3, + sym__newline, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 5, + sym__space, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [190817] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, ACTIONS(9167), 1, sym_raw_string_begin, - ACTIONS(9515), 1, + ACTIONS(9497), 1, anon_sym_GT2, - STATE(5403), 1, + STATE(5396), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9163), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190760] = 7, + [190842] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9517), 1, + ACTIONS(9499), 1, anon_sym_GT2, - STATE(5404), 1, + STATE(5397), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190785] = 7, + [190867] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9519), 1, + ACTIONS(9501), 1, anon_sym_GT2, - STATE(5405), 1, + STATE(5398), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190810] = 4, - ACTIONS(251), 1, + [190892] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(964), 1, - anon_sym_DASH2, - STATE(5406), 1, + STATE(5399), 1, sym_comment, - ACTIONS(966), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [190829] = 7, + ACTIONS(1749), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [190911] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9161), 1, sym_raw_string_begin, - ACTIONS(9521), 1, + ACTIONS(9503), 1, anon_sym_GT2, - STATE(5407), 1, + STATE(5400), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + ACTIONS(9157), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190854] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(8108), 1, - aux_sym_unquoted_token2, - STATE(5408), 1, - sym_comment, - ACTIONS(1693), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [190875] = 7, + [190936] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9167), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9523), 1, + ACTIONS(9505), 1, anon_sym_GT2, - STATE(5409), 1, + STATE(5401), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9161), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190900] = 4, + [190961] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(968), 1, - anon_sym_DASH2, - STATE(5410), 1, + ACTIONS(3630), 1, + anon_sym_DQUOTE, + ACTIONS(3644), 1, + sym_raw_string_begin, + ACTIONS(9451), 1, + aux_sym_path_token1, + STATE(3975), 1, + sym_val_string, + STATE(5402), 1, sym_comment, - ACTIONS(970), 7, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [190919] = 4, + ACTIONS(3632), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(4068), 2, + sym__raw_str, + sym__str_double_quotes, + [190988] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(972), 1, + ACTIONS(4922), 1, anon_sym_DASH2, - STATE(5411), 1, + ACTIONS(9507), 1, + anon_sym_EQ2, + STATE(5403), 1, sym_comment, - ACTIONS(974), 7, - ts_builtin_sym_end, + ACTIONS(4920), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [190938] = 7, + [191009] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9173), 1, + ACTIONS(9135), 1, sym_raw_string_begin, - ACTIONS(9525), 1, + ACTIONS(9509), 1, anon_sym_GT2, - STATE(5412), 1, + STATE(5404), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9169), 4, + ACTIONS(9129), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190963] = 7, + [191034] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9177), 1, sym_raw_string_begin, - ACTIONS(9527), 1, + ACTIONS(9511), 1, anon_sym_GT2, - STATE(5413), 1, + STATE(5405), 1, sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + ACTIONS(9173), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [190988] = 7, + [191059] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9179), 1, + ACTIONS(2371), 1, sym_raw_string_begin, - ACTIONS(9529), 1, - anon_sym_GT2, - STATE(5414), 1, + ACTIONS(9513), 1, + sym__entry_separator, + STATE(5406), 2, sym_comment, - STATE(5427), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9175), 4, + ACTIONS(2366), 5, sym_identifier, + anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [191013] = 7, + [191080] = 9, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(1663), 1, + sym__newline, + ACTIONS(1675), 1, + sym__space, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(7047), 1, + aux_sym_unquoted_token2, + ACTIONS(9516), 1, + sym_filesize_unit, + ACTIONS(9518), 1, + sym_duration_unit, + STATE(5407), 1, + sym_comment, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191109] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9185), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9531), 1, + ACTIONS(9520), 1, anon_sym_GT2, - STATE(5415), 1, - sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9181), 4, + STATE(5408), 1, + sym_comment, + ACTIONS(9137), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [191038] = 7, + [191134] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9203), 1, + ACTIONS(9185), 1, sym_raw_string_begin, - ACTIONS(9533), 1, + ACTIONS(9522), 1, anon_sym_GT2, - STATE(5416), 1, - sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, + STATE(5409), 1, + sym_comment, + ACTIONS(9181), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [191063] = 7, + [191159] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1297), 1, + anon_sym_DQUOTE, + ACTIONS(1301), 1, + sym_raw_string_begin, + ACTIONS(9425), 1, + aux_sym_path_token1, + STATE(1417), 1, + sym_val_string, + STATE(5410), 1, + sym_comment, + ACTIONS(1299), 2, + sym__str_single_quotes, + sym__str_back_ticks, + STATE(3895), 2, + sym__raw_str, + sym__str_double_quotes, + [191186] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9524), 1, + anon_sym_DASH_DASH, + ACTIONS(9527), 1, + anon_sym_DASH2, + STATE(5905), 1, + sym__flag, + ACTIONS(8606), 2, + sym_identifier, + anon_sym_DOLLAR, + STATE(5411), 2, + sym_comment, + aux_sym_ctrl_do_repeat1, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [191211] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(964), 1, + anon_sym_DASH2, + STATE(5412), 1, + sym_comment, + ACTIONS(966), 7, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_QMARK2, + anon_sym_DOT2, + [191230] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(948), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(5413), 1, + sym_comment, + STATE(5414), 1, + aux_sym_cell_path_repeat1, + ACTIONS(950), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191255] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(941), 1, + anon_sym_DASH2, + ACTIONS(9530), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(5414), 2, + sym_comment, + aux_sym_cell_path_repeat1, + ACTIONS(943), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [191278] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9193), 1, + ACTIONS(9141), 1, sym_raw_string_begin, - ACTIONS(9535), 1, + ACTIONS(9533), 1, anon_sym_GT2, - STATE(5417), 1, - sym_comment, - STATE(5427), 1, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(9189), 4, + STATE(5415), 1, + sym_comment, + ACTIONS(9137), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191303] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(935), 1, + anon_sym_DASH2, + ACTIONS(9115), 1, + anon_sym_DOT2, + STATE(4091), 1, + sym_path, + STATE(4328), 1, + sym_cell_path, + STATE(5413), 1, + aux_sym_cell_path_repeat1, + STATE(5416), 1, + sym_comment, + ACTIONS(937), 3, sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [191330] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8995), 1, + aux_sym__immediate_decimal_token2, + STATE(5417), 1, + sym_comment, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191351] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9015), 1, + aux_sym__immediate_decimal_token2, + STATE(5418), 1, + sym_comment, + ACTIONS(1605), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [191372] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4347), 1, anon_sym_DQUOTE, + ACTIONS(4357), 1, + sym_raw_string_begin, + ACTIONS(9535), 1, + aux_sym_path_token1, + STATE(5317), 1, + sym_val_string, + STATE(5419), 1, + sym_comment, + ACTIONS(4349), 2, sym__str_single_quotes, sym__str_back_ticks, - [191088] = 7, + STATE(5412), 2, + sym__raw_str, + sym__str_double_quotes, + [191399] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(2010), 1, sym__entry_separator, - ACTIONS(9203), 1, - sym_raw_string_begin, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5420), 1, + sym_comment, + STATE(5521), 1, + sym_path, + STATE(7043), 1, + sym_cell_path, + ACTIONS(2008), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191425] = 8, + ACTIONS(251), 1, + anon_sym_POUND, ACTIONS(9537), 1, - anon_sym_GT2, - STATE(5418), 1, + anon_sym_DASH_DASH, + ACTIONS(9539), 1, + anon_sym_DASH2, + ACTIONS(9541), 1, + anon_sym_LBRACE, + STATE(5421), 1, + sym_comment, + STATE(6956), 1, + sym_val_record, + STATE(7260), 1, + sym__flag, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [191451] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1004), 1, + anon_sym_DASH2, + STATE(5422), 1, + sym_comment, + ACTIONS(1000), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191469] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4993), 1, + anon_sym_DASH2, + STATE(5423), 1, + sym_comment, + ACTIONS(4991), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191487] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9537), 1, + anon_sym_DASH_DASH, + ACTIONS(9539), 1, + anon_sym_DASH2, + ACTIONS(9543), 1, + anon_sym_LBRACE, + STATE(5424), 1, + sym_comment, + STATE(6563), 1, + sym_val_record, + STATE(7327), 1, + sym__flag, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [191513] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1887), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5425), 1, + sym_comment, + STATE(5521), 1, + sym_path, + STATE(6929), 1, + sym_cell_path, + ACTIONS(1885), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [191539] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(980), 1, + anon_sym_DASH2, + STATE(5426), 1, sym_comment, + ACTIONS(982), 6, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + anon_sym_DOT2, + [191557] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5052), 1, + anon_sym_DASH2, STATE(5427), 1, - aux_sym__multiple_types_repeat1, - ACTIONS(9199), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [191113] = 8, + sym_comment, + ACTIONS(5050), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191575] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9539), 1, - anon_sym_DQUOTE, - ACTIONS(9543), 1, - aux_sym_path_token1, ACTIONS(9545), 1, - sym_raw_string_begin, - STATE(1391), 1, - sym_val_string, - STATE(5419), 1, + sym_identifier, + ACTIONS(9547), 1, + anon_sym_DASH_DASH, + ACTIONS(9549), 1, + anon_sym_DASH2, + STATE(5428), 1, sym_comment, - ACTIONS(9541), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1408), 2, - sym__raw_str, - sym__str_double_quotes, - [191140] = 4, + STATE(5448), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, + sym__flag, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [191601] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5420), 1, + STATE(5429), 1, sym_comment, - ACTIONS(1733), 3, - sym__newline, + ACTIONS(1817), 3, + anon_sym_RBRACE, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1735), 5, - sym__space, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191159] = 4, - ACTIONS(3), 1, + sym__entry_separator, + [191619] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5421), 1, + STATE(5430), 1, sym_comment, - ACTIONS(1587), 3, - sym__newline, + ACTIONS(1817), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1589), 5, - sym__space, + ACTIONS(1819), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191178] = 4, + [191637] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(976), 1, + ACTIONS(5056), 1, anon_sym_DASH2, - STATE(5422), 1, + STATE(5431), 1, sym_comment, - ACTIONS(978), 7, - ts_builtin_sym_end, + ACTIONS(5054), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_QMARK2, - anon_sym_DOT2, - [191197] = 4, - ACTIONS(3), 1, + [191655] = 4, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5423), 1, - sym_comment, - ACTIONS(2265), 4, - anon_sym_DASH_DASH, + ACTIONS(1871), 1, anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - ACTIONS(2267), 4, + STATE(5432), 1, + sym_comment, + ACTIONS(1873), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [191216] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5424), 1, - sym_comment, - ACTIONS(1595), 3, - sym__newline, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 5, - sym__space, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191235] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5425), 1, - sym_comment, - ACTIONS(1757), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191254] = 4, + anon_sym_as, + [191673] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(988), 1, + ACTIONS(2403), 1, anon_sym_DASH2, - STATE(5426), 1, + STATE(5433), 1, sym_comment, - ACTIONS(990), 7, + ACTIONS(2405), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT2, - [191273] = 5, + [191691] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2292), 1, - sym_raw_string_begin, - ACTIONS(9547), 1, + ACTIONS(9133), 1, sym__entry_separator, - STATE(5427), 2, + ACTIONS(9135), 1, + sym_raw_string_begin, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + STATE(5434), 1, sym_comment, + ACTIONS(9129), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [191713] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9141), 1, + sym_raw_string_begin, + STATE(5406), 1, aux_sym__multiple_types_repeat1, - ACTIONS(2287), 5, + STATE(5435), 1, + sym_comment, + ACTIONS(9137), 4, sym_identifier, - anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [191294] = 4, + [191735] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5428), 1, + STATE(5436), 1, sym_comment, - ACTIONS(1667), 3, - sym__newline, + ACTIONS(990), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(988), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [191753] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5437), 1, + sym_comment, + ACTIONS(982), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + ACTIONS(980), 4, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + anon_sym_DOT2, + [191771] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5438), 1, + sym_comment, + ACTIONS(1727), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1669), 5, - sym__space, + ACTIONS(1729), 5, + anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [191313] = 7, - ACTIONS(251), 1, + [191789] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9550), 1, - anon_sym_DASH_DASH, - ACTIONS(9553), 1, - anon_sym_DASH2, - STATE(5967), 1, - sym__flag, - ACTIONS(8626), 2, - sym_identifier, - anon_sym_DOLLAR, - STATE(5429), 2, + ACTIONS(1793), 1, + anon_sym_RBRACE, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(1803), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(9551), 1, + anon_sym_DOT_DOT2, + STATE(5439), 1, sym_comment, - aux_sym_ctrl_do_repeat1, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [191338] = 5, + ACTIONS(9553), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [191815] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4945), 1, + ACTIONS(2407), 1, anon_sym_DASH2, - ACTIONS(9556), 1, - anon_sym_EQ2, - STATE(5430), 1, + STATE(5440), 1, sym_comment, - ACTIONS(4943), 6, + ACTIONS(2409), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191359] = 5, + [191833] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8990), 1, - aux_sym__immediate_decimal_token2, - STATE(5431), 1, + ACTIONS(2411), 1, + anon_sym_DASH2, + STATE(5441), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191380] = 8, - ACTIONS(237), 1, - anon_sym_DQUOTE, + ACTIONS(2413), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191851] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(253), 1, - sym_raw_string_begin, - ACTIONS(9134), 1, - aux_sym_path_token1, - STATE(1445), 1, - sym_val_string, - STATE(5432), 1, + ACTIONS(2421), 1, + anon_sym_DASH2, + STATE(5442), 1, sym_comment, - ACTIONS(239), 2, - sym__str_single_quotes, - sym__str_back_ticks, - STATE(1420), 2, - sym__raw_str, - sym__str_double_quotes, - [191407] = 4, - ACTIONS(251), 1, + ACTIONS(2423), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [191869] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5433), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(5443), 1, sym_comment, - ACTIONS(1733), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1735), 6, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191426] = 4, + ACTIONS(2226), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2230), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [191889] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(5044), 1, anon_sym_DASH2, - STATE(5434), 1, + STATE(5444), 1, sym_comment, - ACTIONS(1975), 6, + ACTIONS(5042), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191444] = 4, + [191907] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, + ACTIONS(5064), 1, anon_sym_DASH2, - STATE(5435), 1, + STATE(5445), 1, sym_comment, - ACTIONS(1939), 6, + ACTIONS(5062), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191462] = 4, + [191925] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(5068), 1, anon_sym_DASH2, - STATE(5436), 1, + STATE(5446), 1, sym_comment, - ACTIONS(2433), 6, + ACTIONS(5066), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191480] = 4, + [191943] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2445), 1, anon_sym_DASH2, - STATE(5437), 1, + STATE(5447), 1, sym_comment, - ACTIONS(2437), 6, + ACTIONS(2447), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191498] = 8, + [191961] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_LBRACE, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(9558), 1, - sym_filesize_unit, - ACTIONS(9560), 1, - sym_duration_unit, - STATE(5438), 1, + ACTIONS(9547), 1, + anon_sym_DASH_DASH, + ACTIONS(9549), 1, + anon_sym_DASH2, + ACTIONS(9555), 1, + sym_identifier, + STATE(5448), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191524] = 8, + STATE(5543), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, + sym__flag, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [191987] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5048), 1, + anon_sym_DASH2, + STATE(5449), 1, + sym_comment, + ACTIONS(5046), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [192005] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, + ACTIONS(1970), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5439), 1, + STATE(5450), 1, sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6957), 1, + STATE(6987), 1, sym_cell_path, - ACTIONS(1953), 2, + ACTIONS(1968), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [191550] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5440), 1, - sym_comment, - ACTIONS(1667), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1669), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [191568] = 6, - ACTIONS(251), 1, + [192031] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9562), 1, - anon_sym_DOT, - ACTIONS(9564), 1, - aux_sym__immediate_decimal_token2, - STATE(5441), 1, + ACTIONS(1988), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5451), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191590] = 8, + STATE(5521), 1, + sym_path, + STATE(6988), 1, + sym_cell_path, + ACTIONS(1986), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192057] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, + ACTIONS(2000), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5442), 1, + STATE(5452), 1, sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6718), 1, + STATE(7003), 1, sym_cell_path, - ACTIONS(2089), 2, + ACTIONS(1998), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [191616] = 4, - ACTIONS(251), 1, + [192083] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2439), 1, - anon_sym_DASH2, - STATE(5443), 1, + ACTIONS(1833), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5453), 1, sym_comment, - ACTIONS(2441), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(5521), 1, + sym_path, + STATE(7008), 1, + sym_cell_path, + ACTIONS(1831), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [191634] = 4, - ACTIONS(251), 1, + [192109] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2443), 1, - anon_sym_DASH2, - STATE(5444), 1, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(5454), 1, sym_comment, - ACTIONS(2445), 6, + ACTIONS(1000), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(1004), 3, anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_DASH2, anon_sym_as, - [191652] = 4, - ACTIONS(3), 1, + [192129] = 6, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5445), 1, - sym_comment, - ACTIONS(1757), 3, - anon_sym_RBRACE, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(9557), 1, anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 4, - anon_sym_LPAREN2, + STATE(5455), 1, + sym_comment, + ACTIONS(9559), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [191670] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4816), 1, - anon_sym_DOT2, - STATE(1414), 1, - aux_sym_cell_path_repeat1, - STATE(1497), 1, - sym_path, - STATE(5446), 1, - sym_comment, - STATE(6962), 1, - sym_cell_path, - ACTIONS(5874), 3, + ACTIONS(1801), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [191694] = 4, - ACTIONS(251), 1, + [192151] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5065), 1, - anon_sym_DASH2, - STATE(5447), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(5456), 1, sym_comment, - ACTIONS(5063), 6, + ACTIONS(2192), 3, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + ACTIONS(2196), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, + [192171] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(5457), 1, + sym_comment, + ACTIONS(2200), 3, anon_sym_DASH_DASH, - anon_sym_RBRACE, + anon_sym_DASH2, anon_sym_as, - [191712] = 4, + ACTIONS(2202), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [192191] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(984), 1, + ACTIONS(4973), 1, anon_sym_DASH2, - STATE(5448), 1, + STATE(5458), 1, sym_comment, - ACTIONS(986), 6, - ts_builtin_sym_end, + ACTIONS(4971), 6, sym__newline, anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_DASH_DASH, + anon_sym_RBRACE, anon_sym_as, - anon_sym_DOT2, - [191730] = 7, + [192209] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(1837), 1, + sym__entry_separator, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5449), 1, - sym_comment, - STATE(5742), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(6483), 1, + STATE(5459), 1, + sym_comment, + STATE(5521), 1, sym_path, - STATE(7062), 1, + STATE(7033), 1, sym_cell_path, - ACTIONS(1925), 3, + ACTIONS(1835), 2, anon_sym_RBRACK, + anon_sym_RBRACE, + [192235] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1841), 1, sym__entry_separator, - sym__table_head_separator, - [191754] = 4, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5460), 1, + sym_comment, + STATE(5521), 1, + sym_path, + STATE(7038), 1, + sym_cell_path, + ACTIONS(1839), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192261] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, + ACTIONS(4977), 1, anon_sym_DASH2, - STATE(5450), 1, + STATE(5461), 1, sym_comment, - ACTIONS(1959), 6, + ACTIONS(4975), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191772] = 4, + [192279] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2447), 1, + ACTIONS(2028), 1, anon_sym_DASH2, - STATE(5451), 1, + STATE(5462), 1, sym_comment, - ACTIONS(2449), 6, + ACTIONS(2030), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191790] = 4, - ACTIONS(251), 1, + [192297] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2451), 1, - anon_sym_DASH2, - STATE(5452), 1, + ACTIONS(1845), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5463), 1, sym_comment, - ACTIONS(2453), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(5521), 1, + sym_path, + STATE(7048), 1, + sym_cell_path, + ACTIONS(1843), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [191808] = 8, + [192323] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1999), 1, + ACTIONS(1849), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5453), 1, + STATE(5464), 1, sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6682), 1, + STATE(7051), 1, sym_cell_path, - ACTIONS(1997), 2, + ACTIONS(1847), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [191834] = 8, + [192349] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1987), 1, + ACTIONS(1853), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5454), 1, + STATE(5465), 1, sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6645), 1, + STATE(7057), 1, sym_cell_path, - ACTIONS(1985), 2, + ACTIONS(1851), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [191860] = 8, + [192375] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1786), 1, + ACTIONS(1857), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5466), 1, + sym_comment, + STATE(5521), 1, + sym_path, + STATE(7074), 1, + sym_cell_path, + ACTIONS(1855), 2, anon_sym_RBRACK, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, + anon_sym_RBRACE, + [192401] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1861), 1, sym__entry_separator, - ACTIONS(9566), 1, - anon_sym_DOT_DOT2, - STATE(5455), 1, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5467), 1, sym_comment, - ACTIONS(9568), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [191886] = 8, + STATE(5521), 1, + sym_path, + STATE(7139), 1, + sym_cell_path, + ACTIONS(1859), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192427] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2019), 1, + ACTIONS(1865), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5456), 1, + STATE(5468), 1, sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6971), 1, + STATE(7144), 1, sym_cell_path, - ACTIONS(2017), 2, + ACTIONS(1863), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [191912] = 4, - ACTIONS(251), 1, + [192453] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, - anon_sym_DASH2, - STATE(5457), 1, + ACTIONS(1869), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5469), 1, sym_comment, - ACTIONS(1983), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(5521), 1, + sym_path, + STATE(7147), 1, + sym_cell_path, + ACTIONS(1867), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [191930] = 4, + [192479] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1877), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5470), 1, + sym_comment, + STATE(5521), 1, + sym_path, + STATE(7158), 1, + sym_cell_path, + ACTIONS(1875), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192505] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1985), 1, + ACTIONS(2429), 1, anon_sym_DASH2, - STATE(5458), 1, + STATE(5471), 1, sym_comment, - ACTIONS(1987), 6, + ACTIONS(2431), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [191948] = 4, + [192523] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9161), 1, + sym_raw_string_begin, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + STATE(5472), 1, + sym_comment, + ACTIONS(9157), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192545] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9167), 1, + sym_raw_string_begin, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + STATE(5473), 1, + sym_comment, + ACTIONS(9163), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192567] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5069), 1, + ACTIONS(2280), 1, anon_sym_DASH2, - STATE(5459), 1, + ACTIONS(9561), 1, + anon_sym_LBRACK2, + STATE(5474), 1, sym_comment, - ACTIONS(5067), 6, + ACTIONS(2284), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [191966] = 7, - ACTIONS(251), 1, + [192587] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9570), 1, + ACTIONS(2030), 1, + sym__entry_separator, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(3770), 1, - sym_cell_path, - STATE(4013), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(4101), 1, - sym_path, - STATE(5460), 1, + STATE(5475), 1, sym_comment, - ACTIONS(937), 3, - anon_sym_EQ, - sym__newline, - anon_sym_COLON, - [191990] = 4, + STATE(5521), 1, + sym_path, + STATE(6866), 1, + sym_cell_path, + ACTIONS(2028), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192613] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(980), 1, + ACTIONS(1663), 1, anon_sym_DASH2, - STATE(5461), 1, + ACTIONS(8458), 1, + aux_sym_unquoted_token2, + STATE(5476), 1, sym_comment, - ACTIONS(982), 6, + ACTIONS(1675), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, + [192633] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9177), 1, + sym_raw_string_begin, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + STATE(5477), 1, + sym_comment, + ACTIONS(9173), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192655] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(9185), 1, + sym_raw_string_begin, + STATE(5406), 1, + aux_sym__multiple_types_repeat1, + STATE(5478), 1, + sym_comment, + ACTIONS(9181), 4, + sym_identifier, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [192677] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5479), 1, + sym_comment, + ACTIONS(1749), 3, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [192695] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1881), 1, + sym__entry_separator, + ACTIONS(8707), 1, anon_sym_DOT2, - [192008] = 4, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5480), 1, + sym_comment, + STATE(5521), 1, + sym_path, + STATE(7175), 1, + sym_cell_path, + ACTIONS(1879), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [192721] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5481), 1, + sym_comment, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192739] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(1663), 1, anon_sym_DASH2, - STATE(5462), 1, + STATE(5482), 1, sym_comment, - ACTIONS(5021), 6, + ACTIONS(1675), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192026] = 4, + [192757] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2505), 1, + ACTIONS(2449), 1, anon_sym_DASH2, - STATE(5463), 1, + STATE(5483), 1, sym_comment, - ACTIONS(2507), 6, + ACTIONS(2451), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192044] = 4, + [192775] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5484), 1, + sym_comment, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 5, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192793] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1997), 1, + ACTIONS(2453), 1, anon_sym_DASH2, - STATE(5464), 1, + STATE(5485), 1, sym_comment, - ACTIONS(1999), 6, + ACTIONS(2455), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192062] = 4, + [192811] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2459), 1, + ACTIONS(2453), 1, anon_sym_DASH2, - STATE(5465), 1, + STATE(5486), 1, sym_comment, - ACTIONS(2461), 6, + ACTIONS(2455), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192080] = 4, + [192829] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2463), 1, + ACTIONS(2461), 1, anon_sym_DASH2, - STATE(5466), 1, + STATE(5487), 1, sym_comment, - ACTIONS(2465), 6, + ACTIONS(2463), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192098] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5467), 1, - sym_comment, - ACTIONS(1861), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1863), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [192116] = 4, + [192847] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2001), 1, + ACTIONS(2481), 1, anon_sym_DASH2, - STATE(5468), 1, + STATE(5488), 1, sym_comment, - ACTIONS(2003), 6, + ACTIONS(2483), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192134] = 4, + [192865] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5053), 1, + ACTIONS(2485), 1, anon_sym_DASH2, - STATE(5469), 1, + STATE(5489), 1, sym_comment, - ACTIONS(5051), 6, + ACTIONS(2487), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192152] = 5, + [192883] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5490), 1, + sym_comment, + ACTIONS(1605), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1607), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [192901] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(984), 1, anon_sym_DASH2, - ACTIONS(9572), 1, - anon_sym_EQ2, - STATE(5470), 1, + STATE(5491), 1, sym_comment, - ACTIONS(4925), 5, + ACTIONS(986), 6, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [192172] = 4, + anon_sym_DOT2, + [192919] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, - anon_sym_DASH2, - STATE(5471), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(8339), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8341), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9563), 1, + anon_sym_DOT, + STATE(5492), 1, sym_comment, - ACTIONS(1935), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [192190] = 4, + STATE(6475), 1, + sym__immediate_decimal, + ACTIONS(8337), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [192945] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH2, - STATE(5472), 1, + ACTIONS(9155), 1, + aux_sym__immediate_decimal_token2, + STATE(5493), 1, + sym_comment, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [192965] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5494), 1, sym_comment, - ACTIONS(2011), 6, + ACTIONS(9565), 7, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - [192208] = 4, + [192981] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(2312), 1, anon_sym_DASH2, - STATE(5473), 1, + STATE(5495), 1, sym_comment, - ACTIONS(2469), 6, + ACTIONS(2314), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192226] = 4, + [192999] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9567), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9569), 1, + aux_sym__immediate_decimal_token2, + STATE(5496), 1, + sym_comment, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193021] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2471), 1, + ACTIONS(2326), 1, anon_sym_DASH2, - STATE(5474), 1, + STATE(5497), 1, sym_comment, - ACTIONS(2473), 6, + ACTIONS(2328), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192244] = 4, + [193039] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(5072), 1, anon_sym_DASH2, - STATE(5475), 1, + STATE(5498), 1, sym_comment, - ACTIONS(2339), 6, + ACTIONS(5070), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192262] = 4, + [193057] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2089), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(5476), 1, + STATE(5499), 1, sym_comment, - ACTIONS(2091), 6, + ACTIONS(2336), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192280] = 6, - ACTIONS(3), 1, + [193075] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9179), 1, - sym_raw_string_begin, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - STATE(5477), 1, + ACTIONS(9571), 1, + aux_sym__immediate_decimal_token2, + STATE(5500), 1, sym_comment, - ACTIONS(9175), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192302] = 4, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 4, + anon_sym_PIPE, + anon_sym_EQ_GT, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193095] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5029), 1, + ACTIONS(2338), 1, anon_sym_DASH2, - STATE(5478), 1, + STATE(5501), 1, sym_comment, - ACTIONS(5027), 6, + ACTIONS(2340), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192320] = 8, + [193113] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, - sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(5748), 1, anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5479), 1, + STATE(5502), 1, sym_comment, - STATE(5546), 1, + STATE(5754), 1, + aux_sym_cell_path_repeat1, + STATE(6536), 1, sym_path, - STATE(7029), 1, + STATE(7041), 1, sym_cell_path, - ACTIONS(1957), 2, + ACTIONS(2008), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - [192346] = 4, + sym__entry_separator, + sym__table_head_separator, + [193137] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(1968), 1, anon_sym_DASH2, - STATE(5480), 1, + STATE(5503), 1, sym_comment, - ACTIONS(2477), 6, + ACTIONS(1970), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192364] = 4, + [193155] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(9573), 1, + anon_sym_alias, + ACTIONS(9575), 1, + anon_sym_const, + ACTIONS(9577), 1, + anon_sym_def, + ACTIONS(9579), 1, + anon_sym_extern, + ACTIONS(9581), 1, + anon_sym_module, + ACTIONS(9583), 1, + anon_sym_use, + STATE(5504), 1, + sym_comment, + [193183] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2342), 1, anon_sym_DASH2, - STATE(5481), 1, + STATE(5505), 1, sym_comment, - ACTIONS(2481), 6, + ACTIONS(2344), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192382] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1963), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5482), 1, - sym_comment, - STATE(5546), 1, - sym_path, - STATE(7030), 1, - sym_cell_path, - ACTIONS(1961), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [192408] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9185), 1, - sym_raw_string_begin, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - STATE(5483), 1, - sym_comment, - ACTIONS(9181), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192430] = 4, + [193201] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5057), 1, + ACTIONS(2346), 1, anon_sym_DASH2, - STATE(5484), 1, + STATE(5506), 1, sym_comment, - ACTIONS(5055), 6, + ACTIONS(2348), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192448] = 4, + [193219] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5033), 1, + ACTIONS(1835), 1, anon_sym_DASH2, - STATE(5485), 1, + STATE(5507), 1, sym_comment, - ACTIONS(5031), 6, + ACTIONS(1837), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192466] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1947), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5486), 1, - sym_comment, - STATE(5546), 1, - sym_path, - STATE(7192), 1, - sym_cell_path, - ACTIONS(1945), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [192492] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5487), 1, - sym_comment, - ACTIONS(1595), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1597), 5, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192510] = 4, + [193237] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, - STATE(5488), 1, + STATE(5508), 1, sym_comment, - ACTIONS(2405), 6, + ACTIONS(9585), 7, + anon_sym_EQ, sym__newline, anon_sym_SEMI, + anon_sym_COLON, anon_sym_RPAREN, - anon_sym_DASH_DASH, + anon_sym_in2, anon_sym_RBRACE, - anon_sym_as, - [192528] = 8, + [193253] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1867), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1805), 1, + anon_sym_RBRACK, + ACTIONS(1807), 1, anon_sym_LPAREN2, - ACTIONS(1873), 1, + ACTIONS(1813), 1, sym__entry_separator, - ACTIONS(1875), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(9574), 1, + ACTIONS(9587), 1, anon_sym_DOT_DOT2, - STATE(5489), 1, + STATE(5509), 1, sym_comment, - ACTIONS(9576), 2, + ACTIONS(9589), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [192554] = 8, + [193279] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1967), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5490), 1, + STATE(5510), 1, sym_comment, - STATE(5546), 1, - sym_path, - STATE(7040), 1, - sym_cell_path, - ACTIONS(1965), 2, - anon_sym_RBRACK, + ACTIONS(1731), 3, anon_sym_RBRACE, - [192580] = 8, + anon_sym_DOT_DOT2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1733), 4, + anon_sym_LPAREN2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [193297] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2095), 1, + ACTIONS(2022), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5491), 1, + STATE(5511), 1, sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6702), 1, + STATE(6964), 1, sym_cell_path, - ACTIONS(2093), 2, + ACTIONS(2020), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [192606] = 3, + [193323] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5492), 1, + ACTIONS(1843), 1, + anon_sym_DASH2, + STATE(5512), 1, + sym_comment, + ACTIONS(1845), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193341] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1847), 1, + anon_sym_DASH2, + STATE(5513), 1, + sym_comment, + ACTIONS(1849), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193359] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9591), 1, + anon_sym_DOT2, + STATE(3757), 1, + sym_cell_path, + STATE(3969), 1, + aux_sym_cell_path_repeat1, + STATE(4091), 1, + sym_path, + STATE(5514), 1, sym_comment, - ACTIONS(9578), 7, + ACTIONS(937), 3, anon_sym_EQ, sym__newline, - anon_sym_SEMI, anon_sym_COLON, - anon_sym_RPAREN, - anon_sym_in2, - anon_sym_RBRACE, - [192622] = 8, - ACTIONS(3), 1, + [193383] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(9580), 1, - anon_sym_DOT_DOT2, - STATE(5493), 1, + ACTIONS(9547), 1, + anon_sym_DASH_DASH, + ACTIONS(9549), 1, + anon_sym_DASH2, + ACTIONS(9593), 1, + sym_identifier, + STATE(5515), 1, sym_comment, - ACTIONS(9582), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [192648] = 8, + STATE(5539), 1, + aux_sym_ctrl_do_repeat1, + STATE(5905), 1, + sym__flag, + STATE(5908), 2, + sym_short_flag, + sym_long_flag, + [193409] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2023), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5494), 1, - sym_comment, - STATE(5546), 1, - sym_path, - STATE(6973), 1, - sym_cell_path, - ACTIONS(2021), 2, - anon_sym_RBRACK, + ACTIONS(1663), 1, anon_sym_RBRACE, - [192674] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5495), 1, - sym_comment, - ACTIONS(1861), 2, + ACTIONS(1675), 1, + sym__entry_separator, + ACTIONS(9595), 1, anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1863), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [192692] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5496), 1, + ACTIONS(9599), 1, + sym_filesize_unit, + ACTIONS(9601), 1, + sym_duration_unit, + STATE(5516), 1, sym_comment, - ACTIONS(1587), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1589), 5, - anon_sym_LBRACE, + ACTIONS(9597), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym_filesize_unit, - sym_duration_unit, - [192710] = 4, + [193435] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2345), 1, + ACTIONS(2350), 1, anon_sym_DASH2, - STATE(5497), 1, + STATE(5517), 1, sym_comment, - ACTIONS(2347), 6, + ACTIONS(2352), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192728] = 4, + [193453] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(1859), 1, anon_sym_DASH2, - STATE(5498), 1, + STATE(5518), 1, sym_comment, - ACTIONS(2351), 6, + ACTIONS(1861), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192746] = 4, + [193471] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2353), 1, + ACTIONS(2358), 1, anon_sym_DASH2, - STATE(5499), 1, + STATE(5519), 1, sym_comment, - ACTIONS(2355), 6, + ACTIONS(2360), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192764] = 8, - ACTIONS(3), 1, + [193489] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1995), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5500), 1, + ACTIONS(9605), 1, + anon_sym_DASH2, + STATE(5520), 1, sym_comment, - STATE(5546), 1, - sym_path, - STATE(6653), 1, - sym_cell_path, - ACTIONS(1993), 2, - anon_sym_RBRACK, + ACTIONS(9603), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [192790] = 4, + anon_sym_as, + [193507] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5501), 1, + STATE(5521), 1, sym_comment, ACTIONS(986), 3, anon_sym_DOT_DOT_EQ2, @@ -399945,17407 +399573,17002 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_DOT_DOT2, anon_sym_DOT2, - [192808] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5502), 1, - sym_comment, - ACTIONS(982), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(980), 4, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [192826] = 4, + [193525] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9584), 1, - sym__newline, - STATE(5503), 2, + ACTIONS(2362), 1, + anon_sym_DASH2, + STATE(5522), 1, sym_comment, - aux_sym_shebang_repeat1, - ACTIONS(1276), 5, - sym_raw_string_begin, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192844] = 4, + ACTIONS(2364), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193543] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - STATE(5504), 1, + STATE(5523), 1, sym_comment, - ACTIONS(2371), 6, + ACTIONS(1865), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192862] = 5, + [193561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(5505), 1, + STATE(5524), 1, sym_comment, - ACTIONS(2229), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - ACTIONS(2233), 3, + ACTIONS(2218), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [192882] = 6, - ACTIONS(3), 1, + ACTIONS(2216), 4, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_as, + aux_sym_unquoted_token4, + [193579] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9167), 1, - sym_raw_string_begin, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - STATE(5506), 1, + ACTIONS(9607), 1, + anon_sym_DOT, + ACTIONS(9609), 1, + aux_sym__immediate_decimal_token2, + STATE(5525), 1, sym_comment, - ACTIONS(9161), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192904] = 6, - ACTIONS(3), 1, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193601] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9173), 1, - sym_raw_string_begin, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - STATE(5507), 1, + ACTIONS(1875), 1, + anon_sym_DASH2, + STATE(5526), 1, sym_comment, - ACTIONS(9169), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [192926] = 4, + ACTIONS(1877), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193619] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5039), 1, + ACTIONS(2373), 1, anon_sym_DASH2, - STATE(5508), 1, + STATE(5527), 1, sym_comment, - ACTIONS(5037), 6, + ACTIONS(2375), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192944] = 4, + [193637] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5043), 1, + ACTIONS(2377), 1, anon_sym_DASH2, - STATE(5509), 1, + STATE(5528), 1, sym_comment, - ACTIONS(5041), 6, + ACTIONS(2379), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [192962] = 8, - ACTIONS(3), 1, + [193655] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1991), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5510), 1, + ACTIONS(1879), 1, + anon_sym_DASH2, + STATE(5529), 1, sym_comment, - STATE(5546), 1, - sym_path, - STATE(6650), 1, - sym_cell_path, - ACTIONS(1989), 2, - anon_sym_RBRACK, + ACTIONS(1881), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [192988] = 3, + anon_sym_as, + [193673] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5511), 1, + ACTIONS(2381), 1, + anon_sym_DASH2, + STATE(5530), 1, sym_comment, - ACTIONS(9587), 7, - anon_sym_EQ, + ACTIONS(2383), 6, sym__newline, anon_sym_SEMI, - anon_sym_COLON, anon_sym_RPAREN, - anon_sym_in2, + anon_sym_DASH_DASH, + anon_sym_RBRACE, + anon_sym_as, + [193691] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2385), 1, + anon_sym_DASH2, + STATE(5531), 1, + sym_comment, + ACTIONS(2387), 6, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_DASH_DASH, anon_sym_RBRACE, - [193004] = 8, + anon_sym_as, + [193709] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5532), 1, + sym_comment, + ACTIONS(1597), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1599), 5, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym_filesize_unit, + sym_duration_unit, + [193727] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(1978), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5512), 1, - sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6952), 1, + STATE(5533), 1, + sym_comment, + STATE(7184), 1, sym_cell_path, - ACTIONS(1949), 2, + ACTIONS(1976), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [193030] = 9, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(9589), 1, - anon_sym_alias, - ACTIONS(9591), 1, - anon_sym_const, - ACTIONS(9593), 1, - anon_sym_def, - ACTIONS(9595), 1, - anon_sym_extern, - ACTIONS(9597), 1, - anon_sym_module, - ACTIONS(9599), 1, - anon_sym_use, - STATE(5513), 1, - sym_comment, - [193058] = 8, + [193753] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2027), 1, + ACTIONS(2026), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5514), 1, - sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6918), 1, + STATE(5534), 1, + sym_comment, + STATE(6966), 1, sym_cell_path, - ACTIONS(2025), 2, + ACTIONS(2024), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [193084] = 9, + [193779] = 9, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(9589), 1, + ACTIONS(9573), 1, anon_sym_alias, - ACTIONS(9591), 1, + ACTIONS(9575), 1, anon_sym_const, - ACTIONS(9593), 1, + ACTIONS(9577), 1, anon_sym_def, - ACTIONS(9595), 1, + ACTIONS(9579), 1, anon_sym_extern, - ACTIONS(9597), 1, + ACTIONS(9581), 1, anon_sym_module, - ACTIONS(9599), 1, + ACTIONS(9583), 1, anon_sym_use, - STATE(5515), 1, - sym_comment, - [193112] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RBRACK, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(9601), 1, - anon_sym_DOT_DOT2, - STATE(5516), 1, + STATE(5535), 1, sym_comment, - ACTIONS(9603), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [193138] = 8, + [193807] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9605), 1, - sym_identifier, - ACTIONS(9607), 1, - anon_sym_DASH_DASH, - ACTIONS(9609), 1, - anon_sym_DASH2, - STATE(5517), 1, - sym_comment, - STATE(5528), 1, - aux_sym_ctrl_do_repeat1, - STATE(5967), 1, - sym__flag, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [193164] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1939), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5518), 1, - sym_comment, - STATE(5546), 1, - sym_path, - STATE(6749), 1, - sym_cell_path, - ACTIONS(1937), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [193190] = 5, - ACTIONS(3), 1, - anon_sym_POUND, ACTIONS(9611), 1, sym__newline, - ACTIONS(9614), 1, - sym__space, - STATE(5519), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(3505), 4, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [193210] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9617), 1, - anon_sym_DASH_DASH, - ACTIONS(9619), 1, - anon_sym_DASH2, - ACTIONS(9621), 1, - anon_sym_LBRACE, - STATE(5520), 1, - sym_comment, - STATE(6537), 1, - sym_val_record, - STATE(7327), 1, - sym__flag, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [193236] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9193), 1, - sym_raw_string_begin, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - STATE(5521), 1, - sym_comment, - ACTIONS(9189), 4, - sym_identifier, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [193258] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5522), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [193276] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(5523), 1, + STATE(5536), 2, sym_comment, - ACTIONS(1000), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(1004), 3, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - [193296] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9203), 1, + aux_sym_shebang_repeat1, + ACTIONS(1276), 5, sym_raw_string_begin, - STATE(5427), 1, - aux_sym__multiple_types_repeat1, - STATE(5524), 1, - sym_comment, - ACTIONS(9199), 4, sym_identifier, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [193318] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9623), 1, - aux_sym__immediate_decimal_token2, - STATE(5525), 1, - sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [193338] = 8, + [193825] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(2014), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5526), 1, - sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(6684), 1, + STATE(5537), 1, + sym_comment, + STATE(6774), 1, sym_cell_path, - ACTIONS(2001), 2, + ACTIONS(2012), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [193364] = 8, - ACTIONS(251), 1, + [193851] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9607), 1, - anon_sym_DASH_DASH, - ACTIONS(9609), 1, - anon_sym_DASH2, - ACTIONS(9625), 1, - sym_identifier, - STATE(5527), 1, + ACTIONS(1793), 1, + anon_sym_RBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(9614), 1, + anon_sym_DOT_DOT2, + STATE(5538), 1, sym_comment, - STATE(5547), 1, - aux_sym_ctrl_do_repeat1, - STATE(5967), 1, - sym__flag, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [193390] = 8, + ACTIONS(9616), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [193877] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9607), 1, + ACTIONS(9547), 1, anon_sym_DASH_DASH, - ACTIONS(9609), 1, + ACTIONS(9549), 1, anon_sym_DASH2, - ACTIONS(9627), 1, + ACTIONS(9618), 1, sym_identifier, - STATE(5528), 1, + STATE(5539), 1, sym_comment, - STATE(5533), 1, + STATE(5543), 1, aux_sym_ctrl_do_repeat1, - STATE(5967), 1, + STATE(5905), 1, sym__flag, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [193416] = 8, + [193903] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, + STATE(5540), 1, + sym_comment, + ACTIONS(1772), 3, anon_sym_RBRACE, - ACTIONS(1693), 1, - sym__entry_separator, - ACTIONS(9629), 1, anon_sym_DOT_DOT2, - ACTIONS(9633), 1, - sym_filesize_unit, - ACTIONS(9635), 1, - sym_duration_unit, - STATE(5529), 1, - sym_comment, - ACTIONS(9631), 2, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 4, + anon_sym_LPAREN2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [193442] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2007), 1, sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5530), 1, - sym_comment, - STATE(5546), 1, - sym_path, - STATE(6688), 1, - sym_cell_path, - ACTIONS(2005), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [193468] = 4, + [193921] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(4916), 1, anon_sym_DASH2, - STATE(5531), 1, + ACTIONS(9620), 1, + anon_sym_EQ2, + STATE(5541), 1, sym_comment, - ACTIONS(1693), 6, + ACTIONS(4914), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [193486] = 8, + [193941] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5532), 1, + ACTIONS(9622), 1, + sym__newline, + ACTIONS(9625), 1, + sym__space, + STATE(5542), 2, sym_comment, - STATE(5546), 1, - sym_path, - STATE(6692), 1, - sym_cell_path, - ACTIONS(2009), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [193512] = 7, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(3486), 4, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [193961] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8626), 1, + ACTIONS(8606), 1, sym_identifier, - ACTIONS(9637), 1, + ACTIONS(9628), 1, anon_sym_DASH_DASH, - ACTIONS(9640), 1, + ACTIONS(9631), 1, anon_sym_DASH2, - STATE(5967), 1, + STATE(5905), 1, sym__flag, - STATE(5533), 2, + STATE(5543), 2, sym_comment, aux_sym_ctrl_do_repeat1, - STATE(5970), 2, + STATE(5908), 2, sym_short_flag, sym_long_flag, - [193536] = 4, + [193985] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, + anon_sym_RBRACE, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__entry_separator, + ACTIONS(9634), 1, + anon_sym_DOT_DOT2, + STATE(5544), 1, + sym_comment, + ACTIONS(9636), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194011] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4941), 1, + ACTIONS(988), 1, anon_sym_DASH2, - STATE(5534), 1, + STATE(5545), 1, sym_comment, - ACTIONS(4939), 6, + ACTIONS(990), 6, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [193554] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(9643), 1, - anon_sym_DOT_DOT2, - STATE(5535), 1, - sym_comment, - ACTIONS(9645), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(1873), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [193576] = 4, + anon_sym_DOT2, + [194029] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5536), 1, + STATE(5546), 1, sym_comment, - ACTIONS(1733), 2, + ACTIONS(1685), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1735), 5, + ACTIONS(1687), 5, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym_filesize_unit, sym_duration_unit, - [193594] = 4, + [194047] = 8, ACTIONS(3), 1, anon_sym_POUND, - STATE(5537), 1, - sym_comment, - ACTIONS(1765), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, + ACTIONS(1895), 1, sym__entry_separator, - [193612] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2407), 1, - anon_sym_DASH2, - STATE(5538), 1, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5521), 1, + sym_path, + STATE(5547), 1, sym_comment, - ACTIONS(2409), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + STATE(6851), 1, + sym_cell_path, + ACTIONS(1893), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [193630] = 4, + [194073] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(988), 1, - anon_sym_DASH2, - STATE(5539), 1, - sym_comment, - ACTIONS(990), 6, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, + ACTIONS(4831), 1, anon_sym_DOT2, - [193648] = 8, + STATE(1403), 1, + aux_sym_cell_path_repeat1, + STATE(1531), 1, + sym_path, + STATE(5548), 1, + sym_comment, + STATE(6856), 1, + sym_cell_path, + ACTIONS(5858), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194097] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1903), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5540), 1, - sym_comment, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(7044), 1, + STATE(5549), 1, + sym_comment, + STATE(6889), 1, sym_cell_path, - ACTIONS(1969), 2, + ACTIONS(1901), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [193674] = 4, + [194123] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5541), 1, + STATE(5550), 1, sym_comment, - ACTIONS(2485), 2, + ACTIONS(2491), 2, sym_raw_string_begin, sym__entry_separator, - ACTIONS(2483), 5, + ACTIONS(2489), 5, sym_identifier, anon_sym_GT2, anon_sym_DQUOTE, sym__str_single_quotes, sym__str_back_ticks, - [193692] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5542), 1, - sym_comment, - ACTIONS(2267), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - ACTIONS(2265), 4, - anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_as, - aux_sym_unquoted_token4, - [193710] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4945), 1, - anon_sym_DASH2, - ACTIONS(9647), 1, - anon_sym_EQ2, - STATE(5543), 1, - sym_comment, - ACTIONS(4943), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [193730] = 8, + [194141] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9617), 1, - anon_sym_DASH_DASH, - ACTIONS(9619), 1, - anon_sym_DASH2, - ACTIONS(9649), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - STATE(5544), 1, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(9638), 1, + sym_filesize_unit, + ACTIONS(9640), 1, + sym_duration_unit, + STATE(5551), 1, sym_comment, - STATE(7126), 1, - sym_val_record, - STATE(7364), 1, - sym__flag, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [193756] = 4, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194167] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, + ACTIONS(4922), 1, anon_sym_DASH2, - STATE(5545), 1, + ACTIONS(9642), 1, + anon_sym_EQ2, + STATE(5552), 1, sym_comment, - ACTIONS(2413), 6, + ACTIONS(4920), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [193774] = 4, + [194187] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5546), 1, + ACTIONS(5748), 1, + anon_sym_DOT2, + STATE(5553), 1, sym_comment, - ACTIONS(990), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - ACTIONS(988), 4, + STATE(5754), 1, + aux_sym_cell_path_repeat1, + STATE(6536), 1, + sym_path, + STATE(6813), 1, + sym_cell_path, + ACTIONS(2028), 3, anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - anon_sym_DOT2, - [193792] = 8, + sym__entry_separator, + sym__table_head_separator, + [194211] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9607), 1, - anon_sym_DASH_DASH, - ACTIONS(9609), 1, - anon_sym_DASH2, - ACTIONS(9651), 1, - sym_identifier, - STATE(5533), 1, - aux_sym_ctrl_do_repeat1, - STATE(5547), 1, + ACTIONS(4831), 1, + anon_sym_DOT2, + STATE(1403), 1, + aux_sym_cell_path_repeat1, + STATE(1531), 1, + sym_path, + STATE(5554), 1, sym_comment, - STATE(5967), 1, - sym__flag, - STATE(5970), 2, - sym_short_flag, - sym_long_flag, - [193818] = 4, + STATE(6779), 1, + sym_cell_path, + ACTIONS(5813), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194235] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_DASH2, - STATE(5548), 1, + ACTIONS(1675), 1, + anon_sym_LBRACE, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + ACTIONS(9638), 1, + sym_filesize_unit, + ACTIONS(9640), 1, + sym_duration_unit, + ACTIONS(9644), 1, + anon_sym_DOT_DOT2, + STATE(5555), 1, sym_comment, - ACTIONS(2413), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [193836] = 4, + ACTIONS(9646), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194261] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2415), 1, - anon_sym_DASH2, - STATE(5549), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(9648), 1, + anon_sym_DOT_DOT2, + STATE(5556), 1, sym_comment, - ACTIONS(2417), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, - anon_sym_RBRACE, - anon_sym_as, - [193854] = 4, + ACTIONS(9650), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(1813), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [194283] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(5078), 1, anon_sym_DASH2, - STATE(5550), 1, + STATE(5557), 1, sym_comment, - ACTIONS(1000), 6, + ACTIONS(5076), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [193872] = 7, + [194301] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(1873), 1, + sym__entry_separator, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5551), 1, - sym_comment, - STATE(5742), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(6483), 1, + STATE(5521), 1, sym_path, - STATE(7021), 1, + STATE(5558), 1, + sym_comment, + STATE(6868), 1, sym_cell_path, - ACTIONS(1937), 3, + ACTIONS(1871), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [193896] = 7, + anon_sym_RBRACE, + [194327] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4816), 1, - anon_sym_DOT2, - STATE(1414), 1, - aux_sym_cell_path_repeat1, - STATE(1497), 1, - sym_path, - STATE(5552), 1, + STATE(5559), 1, sym_comment, - STATE(7152), 1, - sym_cell_path, - ACTIONS(5788), 3, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 5, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [193920] = 4, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [194345] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9655), 1, + ACTIONS(2322), 1, anon_sym_DASH2, - STATE(5553), 1, + STATE(5560), 1, sym_comment, - ACTIONS(9653), 6, + ACTIONS(2324), 6, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_DASH_DASH, anon_sym_RBRACE, anon_sym_as, - [193938] = 4, + [194363] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(2377), 1, anon_sym_DASH2, - STATE(5554), 1, + STATE(5561), 1, sym_comment, - ACTIONS(2421), 6, + ACTIONS(2379), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [193956] = 4, + [194380] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(2445), 1, anon_sym_DASH2, - STATE(5555), 1, + STATE(5562), 1, sym_comment, - ACTIONS(2425), 6, + ACTIONS(2447), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [193974] = 5, - ACTIONS(3), 1, + [194397] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5556), 1, - sym_comment, - ACTIONS(2237), 3, - anon_sym_DASH_DASH, + ACTIONS(2429), 1, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2241), 3, + STATE(5563), 1, + sym_comment, + ACTIONS(2431), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [193994] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1693), 1, - anon_sym_LBRACE, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, - ACTIONS(9558), 1, - sym_filesize_unit, - ACTIONS(9560), 1, - sym_duration_unit, - ACTIONS(9657), 1, - anon_sym_DOT_DOT2, - STATE(5557), 1, - sym_comment, - ACTIONS(9659), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194020] = 8, + anon_sym_DASH_DASH, + anon_sym_as, + [194414] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, + ACTIONS(1591), 1, aux_sym_unquoted_token2, - ACTIONS(8356), 1, + ACTIONS(8662), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8358), 1, + ACTIONS(8664), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9661), 1, - anon_sym_DOT, - STATE(5558), 1, + STATE(5564), 1, sym_comment, - STATE(6251), 1, + STATE(7676), 1, sym__immediate_decimal, - ACTIONS(8354), 2, + ACTIONS(8660), 2, aux_sym__immediate_decimal_token1, aux_sym__immediate_decimal_token3, - [194046] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2318), 1, - anon_sym_DASH2, - ACTIONS(9663), 1, - anon_sym_LBRACK2, - STATE(5559), 1, - sym_comment, - ACTIONS(2322), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [194066] = 4, - ACTIONS(251), 1, + [194437] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2427), 1, - anon_sym_DASH2, - STATE(5560), 1, + STATE(5565), 1, sym_comment, - ACTIONS(2429), 6, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_DASH_DASH, + ACTIONS(2043), 3, + anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_as, - [194084] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(9665), 1, anon_sym_DOT_DOT2, - STATE(5561), 1, - sym_comment, - ACTIONS(9667), 2, + ACTIONS(2045), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(1794), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194106] = 5, + sym__entry_separator, + [194454] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(8471), 1, - aux_sym_unquoted_token2, - STATE(5562), 1, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5566), 1, sym_comment, - ACTIONS(1693), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [194126] = 4, - ACTIONS(3), 1, + STATE(5942), 1, + sym__variable_name, + STATE(6253), 1, + sym__assignment_pattern, + [194479] = 8, + ACTIONS(251), 1, anon_sym_POUND, - STATE(5563), 1, + ACTIONS(9577), 1, + anon_sym_def, + ACTIONS(9579), 1, + anon_sym_extern, + ACTIONS(9581), 1, + anon_sym_module, + ACTIONS(9583), 1, + anon_sym_use, + ACTIONS(9654), 1, + anon_sym_alias, + ACTIONS(9656), 1, + anon_sym_const, + STATE(5567), 1, sym_comment, - ACTIONS(1725), 3, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 4, - anon_sym_LPAREN2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [194144] = 8, + [194504] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1975), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5564), 1, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9658), 1, + aux_sym_unquoted_token3, + STATE(5568), 1, sym_comment, - STATE(7200), 1, - sym_cell_path, - ACTIONS(1973), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [194170] = 8, - ACTIONS(3), 1, + STATE(6201), 1, + sym__immediate_decimal, + [194529] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5565), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4803), 1, + sym__blosure, + STATE(5569), 1, sym_comment, - STATE(6738), 1, - sym_cell_path, - ACTIONS(1933), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [194196] = 4, + [194554] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5566), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4803), 1, + sym__blosure, + STATE(5570), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 5, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194214] = 8, + STATE(5686), 1, + aux_sym_shebang_repeat1, + [194579] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1927), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5567), 1, + STATE(5571), 1, sym_comment, - STATE(7117), 1, - sym_cell_path, - ACTIONS(1925), 2, + ACTIONS(2039), 3, anon_sym_RBRACK, anon_sym_RBRACE, - [194240] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1979), 1, + anon_sym_DOT_DOT2, + ACTIONS(2041), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5568), 1, - sym_comment, - STATE(7203), 1, - sym_cell_path, - ACTIONS(1977), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [194266] = 6, + [194596] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9669), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9671), 1, + ACTIONS(9662), 1, aux_sym__immediate_decimal_token2, - STATE(5569), 1, + STATE(5572), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 3, + ACTIONS(1774), 3, anon_sym_LBRACE, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [194288] = 5, + [194615] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2373), 1, + anon_sym_DASH2, + STATE(5573), 1, + sym_comment, + ACTIONS(2375), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194632] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4804), 1, + sym__blosure, + STATE(5574), 1, + sym_comment, + STATE(5759), 1, + aux_sym_shebang_repeat1, + [194657] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5064), 1, + anon_sym_DASH2, + STATE(5575), 1, + sym_comment, + ACTIONS(5062), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [194674] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4892), 1, + aux_sym_unquoted_token3, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(5576), 1, + sym_comment, + STATE(6201), 1, + sym__immediate_decimal, + [194699] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5570), 1, + ACTIONS(2218), 1, + anon_sym_LBRACE, + STATE(5577), 1, sym_comment, - ACTIONS(2245), 3, + ACTIONS(2216), 5, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_DASH2, - anon_sym_as, - ACTIONS(2247), 3, - ts_builtin_sym_end, + aux_sym_unquoted_token4, + [194716] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4892), 1, + aux_sym_unquoted_token3, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + STATE(5578), 1, + sym_comment, + STATE(7597), 1, + sym__immediate_decimal, + [194741] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, sym__newline, - anon_sym_SEMI, - [194308] = 4, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9666), 1, + anon_sym_RBRACK, + STATE(5579), 1, + sym_comment, + STATE(5964), 1, + aux_sym_shebang_repeat1, + STATE(6634), 1, + sym_val_list, + STATE(7026), 1, + aux_sym_val_table_repeat1, + [194766] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4998), 1, + ACTIONS(1663), 1, anon_sym_DASH2, - STATE(5571), 1, + STATE(5580), 1, sym_comment, - ACTIONS(4996), 6, + ACTIONS(1675), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, anon_sym_DASH_DASH, - anon_sym_RBRACE, anon_sym_as, - [194326] = 4, + [194783] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5572), 1, - sym_comment, - ACTIONS(1757), 2, - anon_sym_DOT_DOT2, + ACTIONS(1803), 1, aux_sym_unquoted_token2, - ACTIONS(1759), 5, + ACTIONS(9668), 1, + anon_sym_DOT_DOT2, + STATE(5581), 1, + sym_comment, + ACTIONS(1801), 2, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, + ACTIONS(9670), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [194344] = 8, + [194804] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5573), 1, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9658), 1, + aux_sym_unquoted_token3, + STATE(5582), 1, sym_comment, - STATE(6643), 1, - sym_cell_path, - ACTIONS(1981), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [194370] = 5, + STATE(7597), 1, + sym__immediate_decimal, + [194829] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9297), 1, - aux_sym__immediate_decimal_token2, - STATE(5574), 1, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5583), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [194390] = 4, - ACTIONS(3), 1, + STATE(5942), 1, + sym__variable_name, + STATE(6265), 1, + sym__assignment_pattern, + [194854] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3541), 1, - sym__space, - STATE(5575), 1, + ACTIONS(2449), 1, + anon_sym_DASH2, + STATE(5584), 1, sym_comment, - ACTIONS(1853), 5, + ACTIONS(2451), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DOLLAR, + anon_sym_SEMI, anon_sym_DASH_DASH, - anon_sym_DASH2, - anon_sym_LBRACE, - [194407] = 4, + anon_sym_as, + [194871] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5069), 1, + ACTIONS(2453), 1, anon_sym_DASH2, - STATE(5576), 1, + STATE(5585), 1, sym_comment, - ACTIONS(5067), 5, + ACTIONS(2455), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194424] = 4, + [194888] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2349), 1, + ACTIONS(2453), 1, anon_sym_DASH2, - STATE(5577), 1, + STATE(5586), 1, sym_comment, - ACTIONS(2351), 5, + ACTIONS(2455), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194441] = 4, + [194905] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2353), 1, + ACTIONS(2461), 1, anon_sym_DASH2, - STATE(5578), 1, + STATE(5587), 1, sym_comment, - ACTIONS(2355), 5, + ACTIONS(2463), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194458] = 4, + [194922] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2431), 1, + ACTIONS(5068), 1, anon_sym_DASH2, - STATE(5579), 1, + STATE(5588), 1, sym_comment, - ACTIONS(2433), 5, + ACTIONS(5066), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194475] = 8, + [194939] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9675), 1, + ACTIONS(9672), 1, anon_sym_RBRACK, - STATE(5580), 1, + STATE(5589), 1, sym_comment, - STATE(6036), 1, + STATE(5912), 1, aux_sym_shebang_repeat1, - STATE(6721), 1, + STATE(6631), 1, sym_val_list, - STATE(7114), 1, + STATE(6981), 1, aux_sym_val_table_repeat1, - [194500] = 4, + [194964] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2479), 1, + ACTIONS(2028), 1, anon_sym_DASH2, - STATE(5581), 1, + STATE(5590), 1, + sym_comment, + ACTIONS(2030), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [194981] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4973), 1, + anon_sym_DASH2, + STATE(5591), 1, sym_comment, - ACTIONS(2481), 5, + ACTIONS(4971), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194517] = 4, + [194998] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1973), 1, + ACTIONS(2481), 1, anon_sym_DASH2, - STATE(5582), 1, + STATE(5592), 1, sym_comment, - ACTIONS(1975), 5, + ACTIONS(2483), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194534] = 4, + [195015] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9678), 1, + anon_sym_DQUOTE2, + STATE(5593), 1, + sym_comment, + STATE(5599), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195038] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2435), 1, + ACTIONS(2485), 1, anon_sym_DASH2, - STATE(5583), 1, + STATE(5594), 1, sym_comment, - ACTIONS(2437), 5, + ACTIONS(2487), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194551] = 5, + [195055] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4754), 1, + aux_sym_unquoted_token3, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(5595), 1, + sym_comment, + STATE(6201), 1, + sym__immediate_decimal, + [195080] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(4754), 1, + aux_sym_unquoted_token3, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + STATE(5596), 1, + sym_comment, + STATE(7597), 1, + sym__immediate_decimal, + [195105] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9677), 1, + ACTIONS(4580), 1, anon_sym_DOT_DOT2, - STATE(5584), 1, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, + STATE(5597), 1, sym_comment, - ACTIONS(9679), 2, + ACTIONS(4582), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(5893), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194570] = 7, + ACTIONS(9680), 2, + sym_filesize_unit, + sym_duration_unit, + [195126] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(595), 1, + anon_sym_RPAREN, + ACTIONS(9682), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_SEMI, + STATE(278), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5598), 1, + sym_comment, + STATE(6156), 1, + aux_sym__block_body_repeat1, + STATE(6789), 1, + aux_sym_shebang_repeat1, + [195151] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9685), 1, + ACTIONS(9686), 1, anon_sym_DQUOTE2, - STATE(5585), 1, + STATE(5599), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194593] = 6, + [195174] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9688), 1, + anon_sym_RBRACK, + STATE(5600), 1, + sym_comment, + STATE(5987), 1, + aux_sym_shebang_repeat1, + STATE(6992), 1, + sym_val_list, + STATE(7055), 1, + aux_sym_val_table_repeat1, + [195199] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, + STATE(5601), 1, + sym_comment, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9680), 2, + sym_filesize_unit, + sym_duration_unit, + [195220] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5044), 1, + anon_sym_DASH2, + STATE(5602), 1, + sym_comment, + ACTIONS(5042), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195237] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9690), 1, + anon_sym_RBRACK, + STATE(5603), 1, + sym_comment, + STATE(5988), 1, + aux_sym_shebang_repeat1, + STATE(7012), 1, + sym_val_list, + STATE(7058), 1, + aux_sym_val_table_repeat1, + [195262] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(9658), 1, + aux_sym_unquoted_token2, + STATE(5604), 1, + sym_comment, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9680), 2, + sym_filesize_unit, + sym_duration_unit, + [195283] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9687), 1, - anon_sym_DOT, - ACTIONS(9689), 1, + ACTIONS(9692), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9694), 1, aux_sym__immediate_decimal_token2, - STATE(5586), 1, + STATE(5605), 1, + sym_comment, + ACTIONS(1731), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [195304] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9696), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9698), 1, + aux_sym__immediate_decimal_token2, + STATE(5606), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1731), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 2, + ACTIONS(1733), 2, anon_sym_LPAREN2, sym__entry_separator, - [194614] = 7, + [195325] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2429), 1, + anon_sym_DASH2, + STATE(5607), 1, + sym_comment, + ACTIONS(2431), 5, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + sym__table_head_separator, + [195342] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9700), 1, + anon_sym_LT, + STATE(5608), 1, + sym_comment, + ACTIONS(7798), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [195359] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9702), 1, + anon_sym_LT, + STATE(5609), 1, + sym_comment, + ACTIONS(7798), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [195376] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5610), 1, + sym_comment, + STATE(5942), 1, + sym__variable_name, + STATE(6268), 1, + sym__assignment_pattern, + [195401] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1879), 1, + anon_sym_DASH2, + STATE(5611), 1, + sym_comment, + ACTIONS(1881), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195418] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9691), 1, + ACTIONS(9704), 1, anon_sym_DQUOTE2, - STATE(5587), 1, + STATE(5612), 1, sym_comment, - STATE(5591), 1, + STATE(5617), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194637] = 8, + [195441] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5613), 1, + sym_comment, + ACTIONS(1268), 6, + sym_raw_string_begin, + sym_identifier, + sym__newline, + anon_sym_DQUOTE, + sym__str_single_quotes, + sym__str_back_ticks, + [195456] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7060), 1, + ACTIONS(5565), 1, aux_sym_unquoted_token3, - ACTIONS(8354), 1, + ACTIONS(8337), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token5, - STATE(5588), 1, + STATE(5614), 1, sym_comment, - STATE(6416), 1, + STATE(6201), 1, sym__immediate_decimal, - [194662] = 8, + [195481] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7060), 1, + ACTIONS(5565), 1, aux_sym_unquoted_token3, - ACTIONS(8652), 1, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, + ACTIONS(8939), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, + ACTIONS(8941), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, + ACTIONS(8943), 1, aux_sym__immediate_decimal_token5, - STATE(5589), 1, + STATE(5615), 1, sym_comment, - STATE(7628), 1, + STATE(7597), 1, sym__immediate_decimal, - [194687] = 5, + [195506] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9677), 1, - anon_sym_DOT_DOT2, - STATE(5590), 1, + ACTIONS(9682), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_SEMI, + ACTIONS(9706), 1, + anon_sym_RPAREN, + STATE(278), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5616), 1, sym_comment, - ACTIONS(9679), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(5908), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [194706] = 7, + STATE(6521), 1, + aux_sym__block_body_repeat1, + STATE(6789), 1, + aux_sym_shebang_repeat1, + [195531] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9693), 1, + ACTIONS(9708), 1, anon_sym_DQUOTE2, - STATE(5591), 1, + STATE(5617), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [194729] = 8, + [195554] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9695), 1, + ACTIONS(9710), 1, anon_sym_RBRACK, - STATE(5592), 1, + STATE(5618), 1, sym_comment, - STATE(6037), 1, + STATE(5993), 1, aux_sym_shebang_repeat1, - STATE(6737), 1, + STATE(6615), 1, sym_val_list, - STATE(7121), 1, + STATE(7067), 1, aux_sym_val_table_repeat1, - [194754] = 8, + [195579] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2381), 1, + anon_sym_DASH2, + STATE(5619), 1, + sym_comment, + ACTIONS(2383), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195596] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9697), 1, + ACTIONS(9712), 1, anon_sym_RBRACK, - STATE(5593), 1, + STATE(5620), 1, sym_comment, - STATE(6007), 1, + STATE(5994), 1, aux_sym_shebang_repeat1, - STATE(6780), 1, + STATE(6620), 1, sym_val_list, - STATE(7054), 1, + STATE(7069), 1, aux_sym_val_table_repeat1, - [194779] = 6, + [195621] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2004), 1, + anon_sym_RBRACE, + ACTIONS(2006), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5521), 1, + sym_path, + STATE(5621), 1, + sym_comment, + STATE(7287), 1, + sym_cell_path, + [195646] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9714), 1, + anon_sym_DOT, + ACTIONS(9716), 1, + aux_sym__immediate_decimal_token2, + STATE(5622), 1, + sym_comment, + ACTIONS(1749), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [195667] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(9701), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - STATE(5594), 1, + ACTIONS(8662), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8664), 1, + aux_sym__immediate_decimal_token5, + STATE(5623), 1, sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9699), 2, - sym_filesize_unit, - sym_duration_unit, - [194800] = 8, - ACTIONS(251), 1, + STATE(7522), 1, + sym__immediate_decimal, + ACTIONS(8660), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [195690] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5595), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9718), 1, + anon_sym_DQUOTE2, + STATE(5624), 1, sym_comment, - STATE(5938), 1, - sym__variable_name, - STATE(6543), 1, - sym__assignment_pattern, - [194825] = 6, + STATE(5627), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195713] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8745), 1, + aux_sym_unquoted_token3, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(5625), 1, + sym_comment, + STATE(6201), 1, + sym__immediate_decimal, + [195738] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8745), 1, + aux_sym_unquoted_token3, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + STATE(5626), 1, + sym_comment, + STATE(7597), 1, + sym__immediate_decimal, + [195763] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9720), 1, + anon_sym_DQUOTE2, + STATE(5627), 1, + sym_comment, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [195786] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9705), 1, - sym_long_flag_identifier, - ACTIONS(9707), 1, - anon_sym_EQ2, - STATE(5596), 1, + ACTIONS(9722), 1, + anon_sym_alias, + ACTIONS(9724), 1, + anon_sym_const, + ACTIONS(9726), 1, + anon_sym_def, + ACTIONS(9728), 1, + anon_sym_extern, + ACTIONS(9730), 1, + anon_sym_module, + ACTIONS(9732), 1, + anon_sym_use, + STATE(5628), 1, sym_comment, - ACTIONS(4888), 2, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - ACTIONS(4890), 2, - sym_identifier, - anon_sym_DASH2, - [194846] = 8, + [195811] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9709), 1, + ACTIONS(9734), 1, anon_sym_RBRACK, - STATE(5597), 1, + STATE(5629), 1, sym_comment, - STATE(6038), 1, + STATE(5997), 1, aux_sym_shebang_repeat1, - STATE(6741), 1, + STATE(6649), 1, sym_val_list, - STATE(7123), 1, + STATE(7075), 1, aux_sym_val_table_repeat1, - [194871] = 4, + [195836] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1825), 1, + anon_sym_RBRACE, + ACTIONS(1827), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5521), 1, + sym_path, + STATE(5630), 1, + sym_comment, + STATE(7353), 1, + sym_cell_path, + [195861] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5598), 1, + STATE(5631), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(1749), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1727), 4, + ACTIONS(1751), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [194888] = 8, + [195878] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4888), 1, - sym__blosure, - STATE(5599), 1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9736), 1, + anon_sym_RBRACK, + STATE(5632), 1, sym_comment, - [194913] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(1706), 1, + STATE(5998), 1, aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4816), 1, - sym__blosure, - STATE(5600), 1, - sym_comment, - [194938] = 4, + STATE(6652), 1, + sym_val_list, + STATE(7078), 1, + aux_sym_val_table_repeat1, + [195903] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1004), 1, + ACTIONS(2385), 1, anon_sym_DASH2, - STATE(5601), 1, + STATE(5633), 1, sym_comment, - ACTIONS(1000), 5, + ACTIONS(2387), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [194955] = 8, + [195920] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4888), 1, - sym__blosure, - STATE(5602), 1, + ACTIONS(2312), 1, + anon_sym_DASH2, + STATE(5634), 1, sym_comment, - STATE(5631), 1, - aux_sym_shebang_repeat1, - [194980] = 7, + ACTIONS(2314), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [195937] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9713), 1, + ACTIONS(9738), 1, anon_sym_DQUOTE2, - STATE(5603), 1, + STATE(5635), 1, sym_comment, - STATE(5606), 1, + STATE(5638), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195003] = 8, + [195960] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4613), 1, + ACTIONS(4656), 1, aux_sym_unquoted_token3, - ACTIONS(8354), 1, + ACTIONS(8337), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token5, - STATE(5604), 1, + STATE(5636), 1, sym_comment, - STATE(6416), 1, + STATE(6201), 1, sym__immediate_decimal, - [195028] = 8, + [195985] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4613), 1, + ACTIONS(4656), 1, aux_sym_unquoted_token3, - ACTIONS(8652), 1, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, + ACTIONS(8939), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, + ACTIONS(8941), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, + ACTIONS(8943), 1, aux_sym__immediate_decimal_token5, - STATE(5605), 1, + STATE(5637), 1, sym_comment, - STATE(7628), 1, + STATE(7597), 1, sym__immediate_decimal, - [195053] = 7, + [196010] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9715), 1, + ACTIONS(9740), 1, anon_sym_DQUOTE2, - STATE(5606), 1, + STATE(5638), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195076] = 8, + [196033] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4816), 1, - sym__blosure, - STATE(5607), 1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9742), 1, + anon_sym_RBRACK, + STATE(5639), 1, sym_comment, - STATE(5644), 1, + STATE(6000), 1, aux_sym_shebang_repeat1, - [195101] = 8, + STATE(6676), 1, + sym_val_list, + STATE(7084), 1, + aux_sym_val_table_repeat1, + [196058] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(2322), 1, + anon_sym_DASH2, + STATE(5640), 1, + sym_comment, + ACTIONS(2324), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196075] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2326), 1, + anon_sym_DASH2, + STATE(5641), 1, + sym_comment, + ACTIONS(2328), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9673), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196092] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9717), 1, + ACTIONS(9744), 1, anon_sym_RBRACK, - STATE(5608), 1, + STATE(5642), 1, sym_comment, - STATE(6039), 1, + STATE(6001), 1, aux_sym_shebang_repeat1, - STATE(6759), 1, + STATE(6680), 1, sym_val_list, - STATE(7130), 1, + STATE(7087), 1, aux_sym_val_table_repeat1, - [195126] = 6, + [196117] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - ACTIONS(9719), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9721), 1, - aux_sym__immediate_decimal_token2, - STATE(5609), 1, + STATE(5643), 1, sym_comment, - ACTIONS(1759), 3, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 4, anon_sym_PIPE, - anon_sym_if, anon_sym_EQ_GT, - [195147] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9589), 1, - anon_sym_alias, - ACTIONS(9591), 1, - anon_sym_const, - ACTIONS(9593), 1, - anon_sym_def, - ACTIONS(9595), 1, - anon_sym_extern, - ACTIONS(9597), 1, - anon_sym_module, - ACTIONS(9599), 1, - anon_sym_use, - STATE(5610), 1, - sym_comment, - [195172] = 7, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196134] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9723), 1, + ACTIONS(9746), 1, anon_sym_DQUOTE2, - STATE(5611), 1, + STATE(5644), 1, sym_comment, - STATE(5779), 1, + STATE(5647), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195195] = 6, - ACTIONS(251), 1, + [196157] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(9725), 1, - anon_sym_DOT_DOT2, - STATE(5612), 1, + ACTIONS(7086), 1, + aux_sym_unquoted_token3, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(5645), 1, sym_comment, - ACTIONS(1873), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9727), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [195216] = 8, + STATE(6201), 1, + sym__immediate_decimal, + [196182] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8354), 1, + ACTIONS(7086), 1, + aux_sym_unquoted_token3, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, + ACTIONS(8939), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(8941), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(8943), 1, aux_sym__immediate_decimal_token5, - ACTIONS(9701), 1, - aux_sym_unquoted_token3, - STATE(5613), 1, + STATE(5646), 1, sym_comment, - STATE(6416), 1, + STATE(7597), 1, sym__immediate_decimal, - [195241] = 8, + [196207] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9748), 1, + anon_sym_DQUOTE2, + STATE(5647), 1, + sym_comment, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196230] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(4864), 1, + anon_sym_DASH2, + ACTIONS(9750), 1, + sym_long_flag_identifier, + ACTIONS(9752), 1, + anon_sym_EQ2, + STATE(5648), 1, + sym_comment, + ACTIONS(4862), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [196251] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9729), 1, + ACTIONS(9754), 1, anon_sym_RBRACK, - STATE(5614), 1, + STATE(5649), 1, sym_comment, - STATE(6040), 1, + STATE(6004), 1, aux_sym_shebang_repeat1, - STATE(6765), 1, + STATE(6705), 1, sym_val_list, - STATE(7133), 1, + STATE(7094), 1, aux_sym_val_table_repeat1, - [195266] = 6, + [196276] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4878), 1, - anon_sym_DOLLAR, - ACTIONS(9731), 1, - anon_sym_EQ2, - ACTIONS(9733), 1, - sym_short_flag_identifier, - STATE(5615), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(5650), 1, sym_comment, - ACTIONS(4880), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [195287] = 4, + STATE(6541), 1, + sym_block, + ACTIONS(9756), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [196295] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5616), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9758), 1, + anon_sym_RBRACK, + STATE(5651), 1, sym_comment, - ACTIONS(1757), 2, + STATE(6005), 1, + aux_sym_shebang_repeat1, + STATE(6710), 1, + sym_val_list, + STATE(7096), 1, + aux_sym_val_table_repeat1, + [196320] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5652), 1, + sym_comment, + ACTIONS(1772), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1759), 4, + ACTIONS(1774), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [195304] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(5617), 1, - sym_comment, - ACTIONS(2120), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2122), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [195321] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4941), 1, - anon_sym_DASH2, - STATE(5618), 1, - sym_comment, - ACTIONS(4939), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [195338] = 7, + [196337] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9735), 1, + ACTIONS(9760), 1, anon_sym_DQUOTE2, - STATE(5619), 1, + STATE(5653), 1, sym_comment, - STATE(5623), 1, + STATE(5656), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195361] = 8, + [196360] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8471), 1, + ACTIONS(7047), 1, aux_sym_unquoted_token3, - ACTIONS(8906), 1, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token5, - STATE(5620), 1, + STATE(5654), 1, sym_comment, - STATE(6416), 1, + STATE(6201), 1, sym__immediate_decimal, - [195386] = 8, + [196385] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8471), 1, + ACTIONS(7047), 1, aux_sym_unquoted_token3, - ACTIONS(8652), 1, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, + ACTIONS(8939), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, + ACTIONS(8941), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, + ACTIONS(8943), 1, aux_sym__immediate_decimal_token5, - STATE(5621), 1, + STATE(5655), 1, sym_comment, - STATE(7628), 1, + STATE(7597), 1, sym__immediate_decimal, - [195411] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2447), 1, - anon_sym_DASH2, - STATE(5622), 1, - sym_comment, - ACTIONS(2449), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [195428] = 7, + [196410] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9737), 1, + ACTIONS(9762), 1, anon_sym_DQUOTE2, - STATE(5623), 1, + STATE(5656), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195451] = 4, + [196433] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5624), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9764), 1, + anon_sym_RBRACK, + STATE(5657), 1, + sym_comment, + STATE(6008), 1, + aux_sym_shebang_repeat1, + STATE(6730), 1, + sym_val_list, + STATE(7104), 1, + aux_sym_val_table_repeat1, + [196458] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5658), 1, sym_comment, - ACTIONS(1765), 2, + ACTIONS(1817), 2, anon_sym_DOT_DOT2, aux_sym_unquoted_token2, - ACTIONS(1767), 4, + ACTIONS(1819), 4, anon_sym_PIPE, anon_sym_EQ_GT, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [195468] = 8, + [196475] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9739), 1, + ACTIONS(9766), 1, anon_sym_RBRACK, - STATE(5625), 1, + STATE(5659), 1, sym_comment, - STATE(6042), 1, + STATE(6009), 1, aux_sym_shebang_repeat1, - STATE(6786), 1, + STATE(6733), 1, sym_val_list, - STATE(7139), 1, + STATE(7107), 1, aux_sym_val_table_repeat1, - [195493] = 4, - ACTIONS(251), 1, + [196500] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - STATE(5626), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9768), 1, + anon_sym_DQUOTE2, + STATE(5660), 1, sym_comment, - ACTIONS(1939), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - sym__table_head_separator, - [195510] = 8, - ACTIONS(251), 1, + STATE(5663), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196523] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9741), 1, - sym__newline, - ACTIONS(9743), 1, - anon_sym_SEMI, - ACTIONS(9745), 1, - anon_sym_RPAREN, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5627), 1, + ACTIONS(4588), 1, + aux_sym_unquoted_token3, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(5661), 1, sym_comment, - STATE(6456), 1, - aux_sym__block_body_repeat1, - STATE(6678), 1, - aux_sym_shebang_repeat1, - [195535] = 5, + STATE(6201), 1, + sym__immediate_decimal, + [196548] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - STATE(5628), 1, + ACTIONS(4588), 1, + aux_sym_unquoted_token3, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + STATE(5662), 1, sym_comment, - ACTIONS(2229), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [195554] = 5, + STATE(7597), 1, + sym__immediate_decimal, + [196573] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_LBRACE, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - STATE(5629), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9770), 1, + anon_sym_DQUOTE2, + STATE(5663), 1, sym_comment, - ACTIONS(1004), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [195573] = 8, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [196596] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9747), 1, + ACTIONS(9772), 1, anon_sym_RBRACK, - STATE(5630), 1, + STATE(5664), 1, sym_comment, - STATE(6043), 1, + STATE(6012), 1, aux_sym_shebang_repeat1, - STATE(6790), 1, + STATE(6758), 1, sym_val_list, - STATE(7141), 1, + STATE(7113), 1, aux_sym_val_table_repeat1, - [195598] = 8, + [196621] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4918), 1, - sym__blosure, - STATE(5631), 1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9774), 1, + anon_sym_RBRACK, + STATE(5665), 1, sym_comment, - [195623] = 4, + STATE(6013), 1, + aux_sym_shebang_repeat1, + STATE(6761), 1, + sym_val_list, + STATE(7116), 1, + aux_sym_val_table_repeat1, + [196646] = 8, ACTIONS(251), 1, anon_sym_POUND, - STATE(5632), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9776), 1, + anon_sym_RBRACK, + STATE(5666), 1, sym_comment, - ACTIONS(1861), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1863), 4, - anon_sym_PIPE, - anon_sym_EQ_GT, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [195640] = 4, + STATE(5916), 1, + aux_sym_shebang_repeat1, + STATE(6753), 1, + sym_val_list, + STATE(6986), 1, + aux_sym_val_table_repeat1, + [196671] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2423), 1, + ACTIONS(5048), 1, anon_sym_DASH2, - STATE(5633), 1, + STATE(5667), 1, sym_comment, - ACTIONS(2425), 5, + ACTIONS(5046), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [195657] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4940), 1, - sym__blosure, - STATE(5634), 1, - sym_comment, - [195682] = 7, + [196688] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9749), 1, + ACTIONS(9778), 1, anon_sym_DQUOTE2, - STATE(5635), 1, + STATE(5668), 1, sym_comment, - STATE(5639), 1, + STATE(5671), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195705] = 8, + [196711] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8108), 1, - aux_sym_unquoted_token3, - ACTIONS(8354), 1, + ACTIONS(8337), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, + ACTIONS(8458), 1, + aux_sym_unquoted_token3, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token5, - STATE(5636), 1, + STATE(5669), 1, sym_comment, - STATE(6416), 1, + STATE(6201), 1, sym__immediate_decimal, - [195730] = 8, + [196736] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8108), 1, + ACTIONS(8458), 1, aux_sym_unquoted_token3, - ACTIONS(8652), 1, + ACTIONS(8660), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, + ACTIONS(8939), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, + ACTIONS(8941), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, + ACTIONS(8943), 1, aux_sym__immediate_decimal_token5, - STATE(5637), 1, - sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [195755] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9655), 1, - anon_sym_DASH2, - STATE(5638), 1, + STATE(5670), 1, sym_comment, - ACTIONS(9653), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [195772] = 7, + STATE(7597), 1, + sym__immediate_decimal, + [196761] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9751), 1, + ACTIONS(9780), 1, anon_sym_DQUOTE2, - STATE(5639), 1, + STATE(5671), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195795] = 8, + [196784] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9753), 1, + ACTIONS(9782), 1, anon_sym_RBRACK, - STATE(5640), 1, + STATE(5672), 1, sym_comment, - STATE(6045), 1, + STATE(6015), 1, aux_sym_shebang_repeat1, - STATE(6810), 1, + STATE(6787), 1, sym_val_list, - STATE(7146), 1, + STATE(7121), 1, aux_sym_val_table_repeat1, - [195820] = 8, + [196809] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5641), 1, + ACTIONS(9784), 1, + sym_long_flag_identifier, + ACTIONS(9786), 1, + anon_sym_EQ2, + STATE(5673), 1, sym_comment, - STATE(5938), 1, - sym__variable_name, - STATE(6568), 1, - sym__assignment_pattern, - [195845] = 5, + ACTIONS(4862), 2, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + ACTIONS(4864), 2, + sym_identifier, + anon_sym_DASH2, + [196830] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9755), 1, - aux_sym__immediate_decimal_token2, - STATE(5642), 1, + ACTIONS(1875), 1, + anon_sym_DASH2, + STATE(5674), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [195864] = 8, + ACTIONS(1877), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196847] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9757), 1, + ACTIONS(9788), 1, anon_sym_RBRACK, - STATE(5643), 1, + STATE(5675), 1, sym_comment, - STATE(6046), 1, + STATE(6016), 1, aux_sym_shebang_repeat1, - STATE(6814), 1, + STATE(6792), 1, sym_val_list, - STATE(7149), 1, + STATE(7123), 1, aux_sym_val_table_repeat1, - [195889] = 8, - ACTIONS(251), 1, + [196872] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4887), 1, - sym__blosure, - STATE(5644), 1, + ACTIONS(2086), 1, + sym__entry_separator, + ACTIONS(9790), 1, + anon_sym_DOT_DOT2, + STATE(5676), 1, sym_comment, - [195914] = 8, + ACTIONS(2080), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9792), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [196893] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4918), 1, - sym__blosure, - STATE(5634), 1, - aux_sym_shebang_repeat1, - STATE(5645), 1, + ACTIONS(4977), 1, + anon_sym_DASH2, + STATE(5677), 1, sym_comment, - [195939] = 8, + ACTIONS(4975), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196910] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4817), 1, - sym__blosure, - STATE(5599), 1, - aux_sym_shebang_repeat1, - STATE(5646), 1, + ACTIONS(2028), 1, + anon_sym_DASH2, + STATE(5678), 1, sym_comment, - [195964] = 7, + ACTIONS(2030), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [196927] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9759), 1, + ACTIONS(9794), 1, anon_sym_DQUOTE2, - STATE(5647), 1, + STATE(5679), 1, sym_comment, - STATE(5649), 1, + STATE(5682), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [195987] = 4, - ACTIONS(251), 1, + [196950] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1981), 1, - anon_sym_DASH2, - STATE(5648), 1, + ACTIONS(7963), 1, + aux_sym_unquoted_token3, + ACTIONS(8337), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8925), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8927), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8929), 1, + aux_sym__immediate_decimal_token5, + STATE(5680), 1, sym_comment, - ACTIONS(1983), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196004] = 7, + STATE(6201), 1, + sym__immediate_decimal, + [196975] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7963), 1, + aux_sym_unquoted_token3, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + STATE(5681), 1, + sym_comment, + STATE(7597), 1, + sym__immediate_decimal, + [197000] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9761), 1, + ACTIONS(9796), 1, anon_sym_DQUOTE2, - STATE(5649), 1, + STATE(5682), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [196027] = 8, + [197023] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9763), 1, + ACTIONS(9798), 1, anon_sym_RBRACK, - STATE(5650), 1, + STATE(5683), 1, sym_comment, - STATE(6050), 1, + STATE(6018), 1, aux_sym_shebang_repeat1, - STATE(6833), 1, + STATE(6815), 1, sym_val_list, - STATE(7155), 1, + STATE(7129), 1, aux_sym_val_table_repeat1, - [196052] = 4, + [197048] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(5651), 1, + ACTIONS(2078), 1, + sym__entry_separator, + ACTIONS(9800), 1, + anon_sym_DOT_DOT2, + STATE(5684), 1, sym_comment, - ACTIONS(1717), 3, + ACTIONS(2072), 2, anon_sym_RBRACK, anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(1719), 3, + ACTIONS(9802), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [196069] = 8, + [197069] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9765), 1, + ACTIONS(9804), 1, anon_sym_RBRACK, - STATE(5652), 1, + STATE(5685), 1, sym_comment, - STATE(6051), 1, + STATE(6019), 1, aux_sym_shebang_repeat1, - STATE(6838), 1, + STATE(6819), 1, sym_val_list, - STATE(7157), 1, + STATE(7132), 1, aux_sym_val_table_repeat1, - [196094] = 8, - ACTIONS(3), 1, + [197094] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9701), 1, - aux_sym_unquoted_token3, - STATE(5653), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4874), 1, + sym__blosure, + STATE(5686), 1, sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [196119] = 6, - ACTIONS(3), 1, + [197119] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9767), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9769), 1, - aux_sym__immediate_decimal_token2, - STATE(5654), 1, + ACTIONS(4819), 1, + anon_sym_DOLLAR, + ACTIONS(9806), 1, + anon_sym_EQ2, + ACTIONS(9808), 1, + sym_short_flag_identifier, + STATE(5687), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [196140] = 7, + ACTIONS(4821), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [197140] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9771), 1, + ACTIONS(9810), 1, anon_sym_DQUOTE2, - STATE(5655), 1, + STATE(5688), 1, sym_comment, - STATE(5656), 1, + STATE(5689), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [196163] = 7, + [197163] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9773), 1, + ACTIONS(9812), 1, anon_sym_DQUOTE2, - STATE(5656), 1, + STATE(5689), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [196186] = 8, + [197186] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9775), 1, + ACTIONS(9814), 1, anon_sym_RBRACK, - STATE(5657), 1, + STATE(5690), 1, sym_comment, - STATE(6052), 1, + STATE(6022), 1, aux_sym_shebang_repeat1, - STATE(6856), 1, + STATE(6836), 1, sym_val_list, - STATE(7161), 1, + STATE(7137), 1, aux_sym_val_table_repeat1, - [196211] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1985), 1, - anon_sym_DASH2, - STATE(5658), 1, - sym_comment, - ACTIONS(1987), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196228] = 8, + [197211] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9777), 1, + ACTIONS(9816), 1, anon_sym_RBRACK, - STATE(5659), 1, + STATE(5691), 1, sym_comment, - STATE(6053), 1, + STATE(6023), 1, aux_sym_shebang_repeat1, - STATE(6861), 1, + STATE(6840), 1, sym_val_list, - STATE(7164), 1, + STATE(7140), 1, aux_sym_val_table_repeat1, - [196253] = 6, + [197236] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2150), 1, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(9779), 1, + ACTIONS(9818), 1, anon_sym_DOT_DOT2, - STATE(5660), 1, + STATE(5692), 1, sym_comment, - ACTIONS(2144), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, anon_sym_RBRACE, - ACTIONS(9781), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196274] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9564), 1, - aux_sym__immediate_decimal_token2, - STATE(5661), 1, - sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 3, - anon_sym_LBRACE, + ACTIONS(9820), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [196293] = 7, + [197257] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9783), 1, + ACTIONS(9822), 1, anon_sym_DQUOTE2, - STATE(5662), 1, + STATE(5693), 1, sym_comment, - STATE(5664), 1, + STATE(5694), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [196316] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2176), 1, - sym__entry_separator, - ACTIONS(9785), 1, - anon_sym_DOT_DOT2, - STATE(5663), 1, - sym_comment, - ACTIONS(2170), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9787), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [196337] = 7, + [197280] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9789), 1, + ACTIONS(9824), 1, anon_sym_DQUOTE2, - STATE(5664), 1, + STATE(5694), 1, sym_comment, - STATE(5688), 1, + STATE(5792), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [196360] = 8, + [197303] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9791), 1, + ACTIONS(9826), 1, anon_sym_RBRACK, - STATE(5665), 1, + STATE(5695), 1, sym_comment, - STATE(6054), 1, + STATE(6024), 1, aux_sym_shebang_repeat1, - STATE(6878), 1, + STATE(6857), 1, sym_val_list, - STATE(7169), 1, + STATE(7145), 1, aux_sym_val_table_repeat1, - [196385] = 7, + [197328] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9793), 1, - anon_sym_DQUOTE2, - STATE(5666), 1, + STATE(5696), 1, sym_comment, - STATE(5678), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [196408] = 8, + ACTIONS(1018), 3, + anon_sym_RBRACK, + anon_sym_RBRACE, + anon_sym_DOT_DOT2, + ACTIONS(1020), 3, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + sym__entry_separator, + [197345] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9795), 1, + ACTIONS(9828), 1, anon_sym_RBRACK, - STATE(5667), 1, + STATE(5697), 1, sym_comment, - STATE(6055), 1, + STATE(6025), 1, aux_sym_shebang_repeat1, - STATE(6881), 1, + STATE(6861), 1, sym_val_list, - STATE(7171), 1, + STATE(7148), 1, aux_sym_val_table_repeat1, - [196433] = 8, + [197370] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9797), 1, - anon_sym_RBRACK, - STATE(5668), 1, + ACTIONS(1018), 1, + anon_sym_DASH2, + STATE(5698), 1, sym_comment, - STATE(6009), 1, - aux_sym_shebang_repeat1, - STATE(6835), 1, - sym_val_list, - STATE(7056), 1, - aux_sym_val_table_repeat1, - [196458] = 8, + ACTIONS(1020), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [197387] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token3, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - STATE(5669), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9830), 1, + anon_sym_DQUOTE2, + STATE(5699), 1, sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [196483] = 8, + STATE(5700), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197410] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7271), 1, - anon_sym_RBRACK, - ACTIONS(7273), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5670), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9832), 1, + anon_sym_DQUOTE2, + STATE(5700), 1, sym_comment, - STATE(7247), 1, - sym_cell_path, - [196508] = 8, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [197433] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9799), 1, + ACTIONS(9834), 1, anon_sym_RBRACK, - STATE(5671), 1, + STATE(5701), 1, sym_comment, - STATE(6056), 1, + STATE(6026), 1, aux_sym_shebang_repeat1, - STATE(6893), 1, + STATE(6875), 1, sym_val_list, - STATE(7175), 1, + STATE(7152), 1, aux_sym_val_table_repeat1, - [196533] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token3, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5672), 1, - sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [196558] = 8, + [197458] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9801), 1, + ACTIONS(9836), 1, anon_sym_RBRACK, - STATE(5673), 1, + STATE(5702), 1, sym_comment, - STATE(6057), 1, + STATE(6027), 1, aux_sym_shebang_repeat1, - STATE(6897), 1, + STATE(6879), 1, sym_val_list, - STATE(7178), 1, + STATE(7154), 1, aux_sym_val_table_repeat1, - [196583] = 6, + [197483] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(4810), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - STATE(5674), 1, + ACTIONS(9838), 1, + anon_sym_DOT_DOT2, + STATE(5703), 1, sym_comment, - ACTIONS(4607), 2, + ACTIONS(1813), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + ACTIONS(9840), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(9699), 2, - sym_filesize_unit, - sym_duration_unit, - [196604] = 8, + [197504] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9803), 1, + ACTIONS(9842), 1, anon_sym_RBRACK, - STATE(5675), 1, + STATE(5704), 1, sym_comment, - STATE(6058), 1, + STATE(6028), 1, aux_sym_shebang_repeat1, - STATE(6910), 1, + STATE(6891), 1, sym_val_list, - STATE(7183), 1, + STATE(7159), 1, aux_sym_val_table_repeat1, - [196629] = 4, + [197529] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9805), 1, - anon_sym_LT, - STATE(5676), 1, - sym_comment, - ACTIONS(7797), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(6211), 1, anon_sym_LBRACE, - [196646] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9807), 1, - anon_sym_RBRACK, - STATE(5677), 1, - sym_comment, - STATE(6059), 1, - aux_sym_shebang_repeat1, - STATE(6915), 1, - sym_val_list, - STATE(7186), 1, - aux_sym_val_table_repeat1, - [196671] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9809), 1, - anon_sym_DQUOTE2, - STATE(5678), 1, - sym_comment, - STATE(5688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [196694] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9811), 1, - anon_sym_LT, - STATE(5679), 1, + STATE(5705), 1, sym_comment, - ACTIONS(7797), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [196711] = 8, + STATE(6128), 1, + sym_block, + ACTIONS(9844), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197548] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9813), 1, + ACTIONS(9846), 1, anon_sym_RBRACK, - STATE(5680), 1, + STATE(5706), 1, sym_comment, - STATE(6023), 1, + STATE(6029), 1, aux_sym_shebang_repeat1, - STATE(7069), 1, + STATE(6895), 1, sym_val_list, - STATE(7077), 1, + STATE(7162), 1, aux_sym_val_table_repeat1, - [196736] = 4, + [197573] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2407), 1, + ACTIONS(2334), 1, anon_sym_DASH2, - STATE(5681), 1, + STATE(5707), 1, sym_comment, - ACTIONS(2409), 5, + ACTIONS(2336), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [196753] = 5, + [197590] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9621), 1, - anon_sym_LBRACE, - STATE(5682), 1, + ACTIONS(9605), 1, + anon_sym_DASH2, + STATE(5708), 1, sym_comment, - STATE(6619), 1, - sym_val_record, - ACTIONS(9815), 4, + ACTIONS(9603), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [196772] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LBRACE, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - STATE(5683), 1, - sym_comment, - ACTIONS(2237), 4, - sym_identifier, - anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_DASH2, - [196791] = 7, + anon_sym_as, + [197607] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(8654), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8656), 1, - aux_sym__immediate_decimal_token5, - STATE(5684), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9848), 1, + anon_sym_RBRACK, + STATE(5709), 1, sym_comment, - STATE(7429), 1, - sym__immediate_decimal, - ACTIONS(8652), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [196814] = 6, + STATE(6030), 1, + aux_sym_shebang_repeat1, + STATE(6911), 1, + sym_val_list, + STATE(7166), 1, + aux_sym_val_table_repeat1, + [197632] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9817), 1, - anon_sym_EQ2, - ACTIONS(9819), 1, - sym_short_flag_identifier, - STATE(5685), 1, - sym_comment, - ACTIONS(4878), 2, - anon_sym_DOLLAR, + ACTIONS(6211), 1, anon_sym_LBRACE, - ACTIONS(4880), 2, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [196835] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2451), 1, - anon_sym_DASH2, - STATE(5686), 1, + STATE(5710), 1, sym_comment, - ACTIONS(2453), 5, - ts_builtin_sym_end, + STATE(6139), 1, + sym_block, + ACTIONS(9844), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196852] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197651] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9821), 1, + ACTIONS(9850), 1, anon_sym_RBRACK, - STATE(5687), 1, + STATE(5711), 1, sym_comment, - STATE(5808), 1, + STATE(6031), 1, aux_sym_shebang_repeat1, - STATE(7080), 1, - aux_sym_val_table_repeat1, - STATE(7086), 1, + STATE(6914), 1, sym_val_list, - [196877] = 6, + STATE(7168), 1, + aux_sym_val_table_repeat1, + [197676] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9823), 1, - anon_sym_LPAREN, - ACTIONS(9829), 1, - anon_sym_DQUOTE2, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9826), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - STATE(5688), 2, + ACTIONS(6225), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + ACTIONS(9852), 1, + anon_sym_RBRACE, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5521), 1, + sym_path, + STATE(5712), 1, sym_comment, - aux_sym__inter_double_quotes_repeat1, - [196898] = 5, - ACTIONS(3), 1, + STATE(7184), 1, + sym_cell_path, + [197701] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, - anon_sym_LBRACE, - STATE(5689), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(9855), 1, + anon_sym_DOT, + ACTIONS(9857), 1, + aux_sym__immediate_decimal_token2, + STATE(5713), 1, sym_comment, - ACTIONS(2245), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [196917] = 4, + ACTIONS(1751), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [197722] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, + ACTIONS(1004), 1, anon_sym_DASH2, - STATE(5690), 1, + STATE(5714), 1, sym_comment, - ACTIONS(2413), 5, + ACTIONS(1000), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [196934] = 4, + [197739] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2411), 1, - anon_sym_DASH2, - STATE(5691), 1, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, + ACTIONS(9859), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9861), 1, + aux_sym__immediate_decimal_token2, + STATE(5715), 1, sym_comment, - ACTIONS(2413), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [196951] = 4, + ACTIONS(1733), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [197760] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2415), 1, + ACTIONS(2338), 1, anon_sym_DASH2, - STATE(5692), 1, + STATE(5716), 1, sym_comment, - ACTIONS(2417), 5, + ACTIONS(2340), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [196968] = 5, - ACTIONS(251), 1, + [197777] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9621), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, - STATE(5693), 1, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(5717), 1, sym_comment, - STATE(6626), 1, - sym_val_record, - ACTIONS(9831), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [196987] = 8, - ACTIONS(251), 1, + ACTIONS(2226), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [197796] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, + ACTIONS(1000), 1, anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4917), 1, - sym__blosure, - STATE(5694), 1, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + STATE(5718), 1, sym_comment, - [197012] = 4, + ACTIONS(1004), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [197815] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_DASH2, - STATE(5695), 1, + ACTIONS(9609), 1, + aux_sym__immediate_decimal_token2, + STATE(5719), 1, sym_comment, - ACTIONS(4996), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197029] = 4, - ACTIONS(251), 1, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197834] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2505), 1, - anon_sym_DASH2, - STATE(5696), 1, + ACTIONS(2065), 1, + sym__entry_separator, + ACTIONS(9863), 1, + anon_sym_DOT_DOT2, + STATE(5720), 1, sym_comment, - ACTIONS(2507), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197046] = 8, + ACTIONS(2059), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9865), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [197855] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7275), 1, + ACTIONS(7246), 1, anon_sym_RBRACK, - ACTIONS(7277), 1, + ACTIONS(7248), 1, sym__entry_separator, - ACTIONS(8767), 1, + ACTIONS(8707), 1, anon_sym_DOT2, - STATE(5166), 1, + STATE(5164), 1, aux_sym_cell_path_repeat1, - STATE(5546), 1, + STATE(5521), 1, sym_path, - STATE(5697), 1, + STATE(5721), 1, sym_comment, - STATE(7375), 1, + STATE(7229), 1, sym_cell_path, - [197071] = 4, + [197880] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2463), 1, - anon_sym_DASH2, - STATE(5698), 1, + ACTIONS(9543), 1, + anon_sym_LBRACE, + STATE(5722), 1, sym_comment, - ACTIONS(2465), 5, - ts_builtin_sym_end, + STATE(6230), 1, + sym_val_record, + ACTIONS(9867), 4, sym__newline, anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197088] = 8, + anon_sym_RPAREN, + anon_sym_RBRACE, + [197899] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(8676), 1, + ACTIONS(8624), 1, sym_identifier, - ACTIONS(9703), 1, + ACTIONS(9652), 1, anon_sym_DOLLAR, - STATE(5492), 1, + STATE(5508), 1, sym_val_variable, - STATE(5699), 1, + STATE(5723), 1, sym_comment, - STATE(5938), 1, + STATE(5942), 1, sym__variable_name, - STATE(6543), 1, + STATE(6253), 1, sym__assignment_pattern, - [197113] = 8, + [197924] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(8676), 1, + ACTIONS(8624), 1, sym_identifier, - ACTIONS(9703), 1, + ACTIONS(9652), 1, anon_sym_DOLLAR, - STATE(5492), 1, + STATE(5508), 1, sym_val_variable, - STATE(5700), 1, + STATE(5724), 1, sym_comment, - STATE(5938), 1, + STATE(5942), 1, sym__variable_name, - STATE(6568), 1, + STATE(6265), 1, sym__assignment_pattern, - [197138] = 8, + [197949] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, + ACTIONS(3420), 1, anon_sym_COLON2, - ACTIONS(8676), 1, + ACTIONS(8624), 1, sym_identifier, - ACTIONS(9703), 1, + ACTIONS(9652), 1, anon_sym_DOLLAR, - STATE(5492), 1, + STATE(5508), 1, sym_val_variable, - STATE(5701), 1, + STATE(5725), 1, sym_comment, - STATE(5938), 1, + STATE(5942), 1, sym__variable_name, - STATE(6569), 1, + STATE(6268), 1, sym__assignment_pattern, - [197163] = 8, + [197974] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9741), 1, + ACTIONS(9543), 1, + anon_sym_LBRACE, + STATE(5726), 1, + sym_comment, + STATE(6522), 1, + sym_val_record, + ACTIONS(9869), 4, sym__newline, - ACTIONS(9743), 1, anon_sym_SEMI, - ACTIONS(9833), 1, anon_sym_RPAREN, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5702), 1, - sym_comment, - STATE(6157), 1, - aux_sym__block_body_repeat1, - STATE(6678), 1, - aux_sym_shebang_repeat1, - [197188] = 8, + anon_sym_RBRACE, + [197993] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(5052), 1, + anon_sym_DASH2, + STATE(5727), 1, + sym_comment, + ACTIONS(5050), 5, + ts_builtin_sym_end, sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9835), 1, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198010] = 8, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(7260), 1, anon_sym_RBRACK, - STATE(5703), 1, + ACTIONS(7262), 1, + sym__entry_separator, + ACTIONS(8707), 1, + anon_sym_DOT2, + STATE(5164), 1, + aux_sym_cell_path_repeat1, + STATE(5521), 1, + sym_path, + STATE(5728), 1, sym_comment, - STATE(6035), 1, - aux_sym_shebang_repeat1, - STATE(6716), 1, - sym_val_list, - STATE(7111), 1, - aux_sym_val_table_repeat1, - [197213] = 7, - ACTIONS(3), 1, + STATE(7208), 1, + sym_cell_path, + [198035] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9837), 1, - anon_sym_DQUOTE2, - STATE(5704), 1, + ACTIONS(1968), 1, + anon_sym_DASH2, + STATE(5729), 1, sym_comment, - STATE(5727), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [197236] = 8, + ACTIONS(1970), 5, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198052] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9839), 1, + ACTIONS(9871), 1, anon_sym_RBRACK, - STATE(5705), 1, + STATE(5730), 1, sym_comment, - STATE(5810), 1, + STATE(5848), 1, aux_sym_shebang_repeat1, - STATE(6939), 1, + STATE(6802), 1, sym_val_list, - STATE(6941), 1, + STATE(6806), 1, aux_sym_val_table_repeat1, - [197261] = 8, + [198077] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - ACTIONS(9841), 1, + ACTIONS(9873), 1, anon_sym_RBRACK, - STATE(5706), 1, + STATE(5731), 1, sym_comment, - STATE(5969), 1, + STATE(5906), 1, aux_sym_shebang_repeat1, - STATE(6986), 1, + STATE(6971), 1, sym_val_list, - STATE(6987), 1, + STATE(6974), 1, aux_sym_val_table_repeat1, - [197286] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4887), 1, - sym__blosure, - STATE(5694), 1, - aux_sym_shebang_repeat1, - STATE(5707), 1, - sym_comment, - [197311] = 4, + [198102] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2369), 1, + ACTIONS(5056), 1, anon_sym_DASH2, - STATE(5708), 1, + STATE(5732), 1, sym_comment, - ACTIONS(2371), 5, + ACTIONS(5054), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [197328] = 4, + [198119] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5023), 1, + ACTIONS(2342), 1, anon_sym_DASH2, - STATE(5709), 1, + STATE(5733), 1, sym_comment, - ACTIONS(5021), 5, + ACTIONS(2344), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [197345] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token3, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - STATE(5710), 1, - sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [197370] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token3, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5711), 1, - sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [197395] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9843), 1, - anon_sym_DOT, - ACTIONS(9845), 1, - aux_sym__immediate_decimal_token2, - STATE(5712), 1, - sym_comment, - ACTIONS(1725), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [197416] = 3, + [198136] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(5713), 1, + ACTIONS(2346), 1, + anon_sym_DASH2, + STATE(5734), 1, sym_comment, - ACTIONS(1268), 6, - sym_raw_string_begin, - sym_identifier, + ACTIONS(2348), 5, + ts_builtin_sym_end, sym__newline, - anon_sym_DQUOTE, - sym__str_single_quotes, - sym__str_back_ticks, - [197431] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, - STATE(5714), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9699), 2, - sym_filesize_unit, - sym_duration_unit, - [197452] = 4, + anon_sym_SEMI, + anon_sym_DASH_DASH, + anon_sym_as, + [198153] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5715), 1, + STATE(5735), 1, sym_comment, - ACTIONS(1018), 3, + ACTIONS(1757), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(1020), 3, + ACTIONS(1759), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [197469] = 4, + [198170] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(5716), 1, - sym_comment, - ACTIONS(2102), 3, - anon_sym_RBRACK, - anon_sym_RBRACE, - anon_sym_DOT_DOT2, - ACTIONS(2104), 3, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - sym__entry_separator, - [197486] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9711), 1, + ACTIONS(2196), 1, anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4735), 1, - sym_block, - STATE(4897), 1, - sym__blosure, - STATE(5600), 1, - aux_sym_shebang_repeat1, - STATE(5717), 1, - sym_comment, - [197511] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1997), 1, - anon_sym_DASH2, - STATE(5718), 1, - sym_comment, - ACTIONS(1999), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197528] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH2, - STATE(5719), 1, - sym_comment, - ACTIONS(5051), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197545] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(8654), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8656), 1, - aux_sym__immediate_decimal_token5, - STATE(5720), 1, - sym_comment, - STATE(7546), 1, - sym__immediate_decimal, - ACTIONS(8652), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [197568] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9847), 1, - anon_sym_DQUOTE2, - STATE(5721), 1, - sym_comment, - STATE(5726), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [197591] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(583), 1, - anon_sym_RPAREN, - ACTIONS(9741), 1, - sym__newline, - ACTIONS(9743), 1, - anon_sym_SEMI, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, - STATE(5722), 1, - sym_comment, - STATE(6105), 1, - aux_sym__block_body_repeat1, - STATE(6678), 1, - aux_sym_shebang_repeat1, - [197616] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5586), 1, - aux_sym_unquoted_token3, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - STATE(5723), 1, - sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [197641] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5586), 1, - aux_sym_unquoted_token3, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5724), 1, - sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [197666] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(9849), 1, - anon_sym_alias, - ACTIONS(9851), 1, - anon_sym_const, - ACTIONS(9853), 1, - anon_sym_def, - ACTIONS(9855), 1, - anon_sym_extern, - ACTIONS(9857), 1, - anon_sym_module, - ACTIONS(9859), 1, - anon_sym_use, - STATE(5725), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + STATE(5736), 1, sym_comment, - [197691] = 7, + ACTIONS(2192), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [198189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9861), 1, - anon_sym_DQUOTE2, - STATE(5688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5726), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + ACTIONS(2202), 1, + anon_sym_LBRACE, + STATE(5737), 1, sym_comment, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [197714] = 7, + ACTIONS(2200), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [198208] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9863), 1, + ACTIONS(9875), 1, anon_sym_DQUOTE2, - STATE(5688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5727), 1, + STATE(5738), 1, sym_comment, - STATE(6518), 1, + STATE(5747), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [197737] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9865), 1, - anon_sym_RBRACK, - STATE(5728), 1, - sym_comment, - STATE(6025), 1, - aux_sym_shebang_repeat1, - STATE(7088), 1, - aux_sym_val_table_repeat1, - STATE(7208), 1, - sym_val_list, - [197762] = 4, + [198231] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1933), 1, + ACTIONS(5072), 1, anon_sym_DASH2, - STATE(5729), 1, + STATE(5739), 1, sym_comment, - ACTIONS(1935), 5, + ACTIONS(5070), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [197779] = 4, + [198248] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2337), 1, + ACTIONS(1871), 1, anon_sym_DASH2, - STATE(5730), 1, + STATE(5740), 1, sym_comment, - ACTIONS(2339), 5, + ACTIONS(1873), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [197796] = 4, + [198265] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5057), 1, + ACTIONS(2403), 1, anon_sym_DASH2, - STATE(5731), 1, + STATE(5741), 1, sym_comment, - ACTIONS(5055), 5, + ACTIONS(2405), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [197813] = 4, - ACTIONS(251), 1, + [198282] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2009), 1, - anon_sym_DASH2, - STATE(5732), 1, + ACTIONS(9877), 1, + anon_sym_DOT, + ACTIONS(9879), 1, + aux_sym__immediate_decimal_token2, + STATE(5742), 1, sym_comment, - ACTIONS(2011), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [197830] = 5, - ACTIONS(251), 1, + ACTIONS(1749), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [198303] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(5733), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9881), 1, + anon_sym_DQUOTE2, + STATE(5743), 1, sym_comment, - STATE(6574), 1, - sym_block, - ACTIONS(9867), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [197849] = 8, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [198326] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9869), 1, - anon_sym_RBRACK, - STATE(5734), 1, - sym_comment, - STATE(6026), 1, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4884), 1, + sym__blosure, + STATE(5569), 1, aux_sym_shebang_repeat1, - STATE(6634), 1, - sym_val_list, - STATE(7090), 1, - aux_sym_val_table_repeat1, - [197874] = 8, + STATE(5744), 1, + sym_comment, + [198351] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9593), 1, - anon_sym_def, - ACTIONS(9595), 1, - anon_sym_extern, - ACTIONS(9597), 1, - anon_sym_module, - ACTIONS(9599), 1, - anon_sym_use, - ACTIONS(9871), 1, - anon_sym_alias, - ACTIONS(9873), 1, - anon_sym_const, - STATE(5735), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4874), 1, + sym__blosure, + STATE(5745), 1, sym_comment, - [197899] = 5, + STATE(5752), 1, + aux_sym_shebang_repeat1, + [198376] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9875), 1, + ACTIONS(9883), 1, anon_sym_DOT_DOT2, - STATE(5736), 1, + STATE(5746), 1, sym_comment, - ACTIONS(9877), 2, + ACTIONS(9885), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2176), 3, + ACTIONS(2065), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197918] = 4, + [198395] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2267), 1, - anon_sym_LBRACE, - STATE(5737), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9887), 1, + anon_sym_DQUOTE2, + STATE(5747), 1, sym_comment, - ACTIONS(2265), 5, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [197935] = 5, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [198418] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9879), 1, + ACTIONS(9889), 1, anon_sym_DOT_DOT2, - STATE(5738), 1, + STATE(5748), 1, sym_comment, - ACTIONS(9881), 2, + ACTIONS(9891), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2150), 3, + ACTIONS(2053), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197954] = 5, + [198437] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9883), 1, + ACTIONS(9893), 1, anon_sym_DOT_DOT2, - STATE(5739), 1, + STATE(5749), 1, sym_comment, - ACTIONS(9885), 2, + ACTIONS(9895), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2158), 3, + ACTIONS(2086), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197973] = 5, + [198456] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9887), 1, + ACTIONS(9897), 1, anon_sym_DOT_DOT2, - STATE(5740), 1, + STATE(5750), 1, sym_comment, - ACTIONS(9889), 2, + ACTIONS(9899), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - ACTIONS(2166), 3, + ACTIONS(2078), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [197992] = 8, + [198475] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9891), 1, - anon_sym_RBRACK, - STATE(5741), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(5751), 1, sym_comment, - STATE(5981), 1, + STATE(6108), 1, + sym_block, + ACTIONS(9901), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [198494] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6825), 1, - sym_val_list, - STATE(7008), 1, - aux_sym_val_table_repeat1, - [198017] = 6, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4904), 1, + sym__blosure, + STATE(5752), 1, + sym_comment, + [198519] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9573), 1, + anon_sym_alias, + ACTIONS(9575), 1, + anon_sym_const, + ACTIONS(9577), 1, + anon_sym_def, + ACTIONS(9579), 1, + anon_sym_extern, + ACTIONS(9581), 1, + anon_sym_module, + ACTIONS(9583), 1, + anon_sym_use, + STATE(5753), 1, + sym_comment, + [198544] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5727), 1, + ACTIONS(5748), 1, anon_sym_DOT2, - STATE(5742), 1, + STATE(5754), 1, sym_comment, - STATE(5770), 1, + STATE(5773), 1, aux_sym_cell_path_repeat1, - STATE(6483), 1, + STATE(6536), 1, sym_path, ACTIONS(948), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [198038] = 4, + [198565] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2459), 1, + ACTIONS(2407), 1, anon_sym_DASH2, - STATE(5743), 1, + STATE(5755), 1, sym_comment, - ACTIONS(2461), 5, + ACTIONS(2409), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198055] = 4, + [198582] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, + ACTIONS(2411), 1, anon_sym_DASH2, - STATE(5744), 1, + STATE(5756), 1, sym_comment, - ACTIONS(1693), 5, + ACTIONS(2413), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198072] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9893), 1, - anon_sym_DQUOTE2, - STATE(5585), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5745), 1, - sym_comment, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [198095] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9895), 1, - anon_sym_DQUOTE2, - STATE(5746), 1, - sym_comment, - STATE(5752), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [198118] = 5, + [198599] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(5747), 1, + STATE(5757), 1, sym_comment, - STATE(6182), 1, + STATE(6177), 1, sym_block, - ACTIONS(9897), 4, + ACTIONS(9903), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [198137] = 5, + [198618] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(5748), 1, + STATE(5758), 1, sym_comment, - STATE(6183), 1, + STATE(6181), 1, sym_block, - ACTIONS(9897), 4, + ACTIONS(9903), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [198156] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8728), 1, - aux_sym_unquoted_token3, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - STATE(5749), 1, - sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [198181] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2166), 1, - sym__entry_separator, - ACTIONS(9899), 1, - anon_sym_DOT_DOT2, - STATE(5750), 1, - sym_comment, - ACTIONS(2160), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9901), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198202] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8728), 1, - aux_sym_unquoted_token3, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5751), 1, - sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [198227] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9903), 1, - anon_sym_DQUOTE2, - STATE(5688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5752), 1, - sym_comment, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [198250] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5753), 1, - sym_comment, - STATE(5938), 1, - sym__variable_name, - STATE(6569), 1, - sym__assignment_pattern, - [198275] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(9905), 1, - anon_sym_DOT_DOT2, - STATE(5754), 1, - sym_comment, - ACTIONS(1794), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - ACTIONS(9907), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198296] = 8, + [198637] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9909), 1, - anon_sym_RBRACK, - STATE(5755), 1, - sym_comment, - STATE(6030), 1, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6661), 1, - sym_val_list, - STATE(7095), 1, - aux_sym_val_table_repeat1, - [198321] = 4, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4875), 1, + sym__blosure, + STATE(5759), 1, + sym_comment, + [198662] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, - STATE(5756), 1, + ACTIONS(9905), 1, + anon_sym_EQ2, + ACTIONS(9907), 1, + sym_short_flag_identifier, + STATE(5760), 1, sym_comment, - ACTIONS(2405), 5, - sym_identifier, + ACTIONS(4819), 2, anon_sym_DOLLAR, - anon_sym_DASH_DASH, anon_sym_LBRACE, - sym__table_head_separator, - [198338] = 4, + ACTIONS(4821), 2, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [198683] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2439), 1, + ACTIONS(1835), 1, anon_sym_DASH2, - STATE(5757), 1, + STATE(5761), 1, sym_comment, - ACTIONS(2441), 5, + ACTIONS(1837), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198355] = 4, + [198700] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2467), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4906), 1, + sym__blosure, + STATE(5762), 1, + sym_comment, + [198725] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(2421), 1, anon_sym_DASH2, - STATE(5758), 1, + STATE(5763), 1, sym_comment, - ACTIONS(2469), 5, + ACTIONS(2423), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198372] = 4, + [198742] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2471), 1, - anon_sym_DASH2, - STATE(5759), 1, + ACTIONS(9909), 1, + anon_sym_DOT_DOT2, + STATE(5764), 1, sym_comment, - ACTIONS(2473), 5, - ts_builtin_sym_end, + ACTIONS(9911), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5948), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198761] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9909), 1, + anon_sym_DOT_DOT2, + STATE(5765), 1, + sym_comment, + ACTIONS(9911), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(5856), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [198780] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [198389] = 4, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4927), 1, + sym__blosure, + STATE(5766), 1, + sym_comment, + [198805] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1018), 1, + ACTIONS(1843), 1, anon_sym_DASH2, - STATE(5760), 1, + STATE(5767), 1, sym_comment, - ACTIONS(1020), 5, + ACTIONS(1845), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198406] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9911), 1, - anon_sym_RBRACK, - STATE(5761), 1, - sym_comment, - STATE(6031), 1, - aux_sym_shebang_repeat1, - STATE(6665), 1, - sym_val_list, - STATE(7097), 1, - aux_sym_val_table_repeat1, - [198431] = 4, + [198822] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2419), 1, + ACTIONS(1847), 1, anon_sym_DASH2, - STATE(5762), 1, + STATE(5768), 1, sym_comment, - ACTIONS(2421), 5, + ACTIONS(1849), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198448] = 6, - ACTIONS(3), 1, + [198839] = 8, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(9682), 1, + sym__newline, + ACTIONS(9684), 1, + anon_sym_SEMI, ACTIONS(9913), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(9915), 1, - aux_sym__immediate_decimal_token2, - STATE(5763), 1, + anon_sym_RPAREN, + STATE(278), 1, + aux_sym__parenthesized_body_repeat1, + STATE(5769), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [198469] = 6, - ACTIONS(3), 1, + STATE(6093), 1, + aux_sym__block_body_repeat1, + STATE(6789), 1, + aux_sym_shebang_repeat1, + [198864] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2158), 1, - sym__entry_separator, - ACTIONS(9917), 1, - anon_sym_DOT_DOT2, - STATE(5764), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4906), 1, + sym__blosure, + STATE(5766), 1, + aux_sym_shebang_repeat1, + STATE(5770), 1, sym_comment, - ACTIONS(2152), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9919), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198490] = 6, + [198889] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4890), 1, - anon_sym_DASH2, - ACTIONS(9921), 1, - sym_long_flag_identifier, - ACTIONS(9923), 1, - anon_sym_EQ2, - STATE(5765), 1, - sym_comment, - ACTIONS(4888), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9660), 1, anon_sym_LBRACE, - [198511] = 7, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4875), 1, + sym__blosure, + STATE(5762), 1, + aux_sym_shebang_repeat1, + STATE(5771), 1, + sym_comment, + [198914] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9925), 1, + ACTIONS(9915), 1, anon_sym_DQUOTE2, - STATE(5766), 1, + STATE(5772), 1, sym_comment, - STATE(5781), 1, + STATE(5789), 1, aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [198534] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(5767), 1, - sym_comment, - STATE(6493), 1, - sym_block, - ACTIONS(9927), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198553] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(5768), 1, - sym_comment, - STATE(6494), 1, - sym_block, - ACTIONS(9927), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198572] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2089), 1, - anon_sym_DASH2, - STATE(5769), 1, - sym_comment, - ACTIONS(2091), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [198589] = 5, + [198937] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9929), 1, + ACTIONS(9917), 1, anon_sym_DOT2, - STATE(6483), 1, + STATE(6536), 1, sym_path, - STATE(5770), 2, + STATE(5773), 2, sym_comment, aux_sym_cell_path_repeat1, ACTIONS(941), 3, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, - [198608] = 8, + [198956] = 8, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4640), 1, - aux_sym_unquoted_token3, - ACTIONS(8354), 1, + ACTIONS(8337), 1, aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, + ACTIONS(8925), 1, aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, + ACTIONS(8927), 1, aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, + ACTIONS(8929), 1, aux_sym__immediate_decimal_token5, - STATE(5771), 1, - sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [198633] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(4640), 1, + ACTIONS(9920), 1, aux_sym_unquoted_token3, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5772), 1, + STATE(5774), 1, sym_comment, - STATE(7628), 1, + STATE(6201), 1, sym__immediate_decimal, - [198658] = 4, + [198981] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5029), 1, + ACTIONS(5078), 1, anon_sym_DASH2, - STATE(5773), 1, + STATE(5775), 1, sym_comment, - ACTIONS(5027), 5, + ACTIONS(5076), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198675] = 8, - ACTIONS(251), 1, + [198998] = 8, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9932), 1, - anon_sym_RBRACK, - STATE(5774), 1, + ACTIONS(8660), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(8939), 1, + aux_sym__immediate_decimal_token3, + ACTIONS(8941), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8943), 1, + aux_sym__immediate_decimal_token5, + ACTIONS(9920), 1, + aux_sym_unquoted_token3, + STATE(5776), 1, sym_comment, - STATE(5982), 1, - aux_sym_shebang_repeat1, - STATE(6929), 1, - sym_val_list, - STATE(7015), 1, - aux_sym_val_table_repeat1, - [198700] = 4, + STATE(7597), 1, + sym__immediate_decimal, + [199023] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1937), 1, - anon_sym_DASH2, - STATE(5775), 1, + ACTIONS(4580), 1, + anon_sym_DOT_DOT2, + ACTIONS(9920), 1, + aux_sym_unquoted_token2, + STATE(5777), 1, sym_comment, - ACTIONS(1939), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [198717] = 4, + ACTIONS(4582), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + ACTIONS(9680), 2, + sym_filesize_unit, + sym_duration_unit, + [199044] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2443), 1, + ACTIONS(4993), 1, anon_sym_DASH2, - STATE(5776), 1, + STATE(5778), 1, sym_comment, - ACTIONS(2445), 5, + ACTIONS(4991), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198734] = 4, + [199061] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5033), 1, + ACTIONS(2350), 1, anon_sym_DASH2, - STATE(5777), 1, + STATE(5779), 1, sym_comment, - ACTIONS(5031), 5, + ACTIONS(2352), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198751] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(9934), 1, - anon_sym_DOT, - ACTIONS(9936), 1, - aux_sym__immediate_decimal_token2, - STATE(5778), 1, - sym_comment, - ACTIONS(1727), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [198772] = 7, + [199078] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, - anon_sym_LPAREN, - ACTIONS(9938), 1, - anon_sym_DQUOTE2, - STATE(5688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5779), 1, + ACTIONS(3521), 1, + sym__space, + STATE(5780), 1, sym_comment, - STATE(6518), 1, - sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [198795] = 5, + ACTIONS(1960), 5, + sym__newline, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_DASH2, + anon_sym_LBRACE, + [199095] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(5780), 1, + ACTIONS(1859), 1, + anon_sym_DASH2, + STATE(5781), 1, sym_comment, - STATE(6496), 1, - sym_block, - ACTIONS(9940), 4, + ACTIONS(1861), 5, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [198814] = 7, + anon_sym_DASH_DASH, + anon_sym_as, + [199112] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9674), 1, anon_sym_LPAREN, - ACTIONS(9942), 1, + ACTIONS(9922), 1, anon_sym_DQUOTE2, - STATE(5688), 1, + STATE(5743), 1, aux_sym__inter_double_quotes_repeat1, - STATE(5781), 1, + STATE(5782), 1, sym_comment, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9676), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [198837] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9944), 1, - anon_sym_RBRACK, - STATE(5782), 1, - sym_comment, - STATE(6032), 1, - aux_sym_shebang_repeat1, - STATE(6687), 1, - sym_val_list, - STATE(7104), 1, - aux_sym_val_table_repeat1, - [198862] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9946), 1, - aux_sym_unquoted_token3, - STATE(5783), 1, - sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [198887] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1000), 1, - sym__entry_separator, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, - STATE(5784), 1, - sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - ACTIONS(9950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [198908] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - ACTIONS(9946), 1, - aux_sym_unquoted_token3, - STATE(5785), 1, - sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [198933] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4605), 1, - anon_sym_DOT_DOT2, - ACTIONS(9946), 1, - aux_sym_unquoted_token2, - STATE(5786), 1, - sym_comment, - ACTIONS(4607), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - ACTIONS(9699), 2, - sym_filesize_unit, - sym_duration_unit, - [198954] = 4, + [199135] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2475), 1, + ACTIONS(2358), 1, anon_sym_DASH2, - STATE(5787), 1, + STATE(5783), 1, sym_comment, - ACTIONS(2477), 5, + ACTIONS(2360), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [198971] = 8, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - ACTIONS(9952), 1, - anon_sym_RBRACK, - STATE(5788), 1, - sym_comment, - STATE(6033), 1, - aux_sym_shebang_repeat1, - STATE(6691), 1, - sym_val_list, - STATE(7106), 1, - aux_sym_val_table_repeat1, - [198996] = 8, + [199152] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9593), 1, + ACTIONS(9577), 1, anon_sym_def, - ACTIONS(9595), 1, + ACTIONS(9579), 1, anon_sym_extern, - ACTIONS(9597), 1, + ACTIONS(9581), 1, anon_sym_module, - ACTIONS(9599), 1, + ACTIONS(9583), 1, anon_sym_use, - ACTIONS(9954), 1, + ACTIONS(9924), 1, anon_sym_alias, - ACTIONS(9956), 1, + ACTIONS(9926), 1, anon_sym_const, - STATE(5789), 1, - sym_comment, - [199021] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(2345), 1, - anon_sym_DASH2, - STATE(5790), 1, + STATE(5784), 1, sym_comment, - ACTIONS(2347), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [199038] = 8, + [199177] = 8, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9593), 1, + ACTIONS(9577), 1, anon_sym_def, - ACTIONS(9595), 1, + ACTIONS(9579), 1, anon_sym_extern, - ACTIONS(9597), 1, + ACTIONS(9581), 1, anon_sym_module, - ACTIONS(9599), 1, + ACTIONS(9583), 1, anon_sym_use, - ACTIONS(9958), 1, + ACTIONS(9928), 1, anon_sym_alias, - ACTIONS(9960), 1, + ACTIONS(9930), 1, anon_sym_const, - STATE(5791), 1, + STATE(5785), 1, sym_comment, - [199063] = 4, + [199202] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5065), 1, + ACTIONS(2362), 1, anon_sym_DASH2, - STATE(5792), 1, + STATE(5786), 1, sym_comment, - ACTIONS(5063), 5, + ACTIONS(2364), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [199080] = 4, + [199219] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2427), 1, + ACTIONS(1863), 1, anon_sym_DASH2, - STATE(5793), 1, + STATE(5787), 1, sym_comment, - ACTIONS(2429), 5, + ACTIONS(1865), 5, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_DASH_DASH, anon_sym_as, - [199097] = 8, - ACTIONS(3), 1, + [199236] = 8, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6246), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - ACTIONS(9962), 1, - anon_sym_RBRACE, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5794), 1, + ACTIONS(9577), 1, + anon_sym_def, + ACTIONS(9579), 1, + anon_sym_extern, + ACTIONS(9581), 1, + anon_sym_module, + ACTIONS(9583), 1, + anon_sym_use, + ACTIONS(9932), 1, + anon_sym_alias, + ACTIONS(9934), 1, + anon_sym_const, + STATE(5788), 1, sym_comment, - STATE(7192), 1, - sym_cell_path, - [199122] = 8, + [199261] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2013), 1, - anon_sym_RBRACE, - ACTIONS(2015), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5795), 1, + ACTIONS(9674), 1, + anon_sym_LPAREN, + ACTIONS(9936), 1, + anon_sym_DQUOTE2, + STATE(5789), 1, sym_comment, - STATE(7320), 1, - sym_cell_path, - [199147] = 4, + STATE(5792), 1, + aux_sym__inter_double_quotes_repeat1, + STATE(6251), 1, + sym_expr_interpolated, + ACTIONS(9676), 2, + sym_escaped_interpolated_content, + sym_inter_escape_sequence, + [199284] = 8, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + ACTIONS(9938), 1, + anon_sym_RBRACK, + STATE(5790), 1, + sym_comment, + STATE(5962), 1, + aux_sym_shebang_repeat1, + STATE(6933), 1, + sym_val_list, + STATE(7024), 1, + aux_sym_val_table_repeat1, + [199309] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(5796), 1, + STATE(5791), 1, sym_comment, - ACTIONS(2116), 3, + ACTIONS(2035), 3, anon_sym_RBRACK, anon_sym_RBRACE, anon_sym_DOT_DOT2, - ACTIONS(2118), 3, + ACTIONS(2037), 3, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, sym__entry_separator, - [199164] = 8, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1894), 1, - anon_sym_RBRACE, - ACTIONS(1896), 1, - sym__entry_separator, - ACTIONS(8767), 1, - anon_sym_DOT2, - STATE(5166), 1, - aux_sym_cell_path_repeat1, - STATE(5546), 1, - sym_path, - STATE(5797), 1, - sym_comment, - STATE(7283), 1, - sym_cell_path, - [199189] = 7, + [199326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9940), 1, anon_sym_LPAREN, - ACTIONS(9965), 1, + ACTIONS(9946), 1, anon_sym_DQUOTE2, - STATE(5798), 1, - sym_comment, - STATE(5804), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(6518), 1, + STATE(6251), 1, sym_expr_interpolated, - ACTIONS(9683), 2, + ACTIONS(9943), 2, sym_escaped_interpolated_content, sym_inter_escape_sequence, - [199212] = 4, - ACTIONS(251), 1, + STATE(5792), 2, + sym_comment, + aux_sym__inter_double_quotes_repeat1, + [199347] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5039), 1, - anon_sym_DASH2, - STATE(5799), 1, + ACTIONS(2053), 1, + sym__entry_separator, + ACTIONS(9948), 1, + anon_sym_DOT_DOT2, + STATE(5793), 1, sym_comment, - ACTIONS(5037), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [199229] = 4, + ACTIONS(2047), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + ACTIONS(9950), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199368] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5043), 1, + ACTIONS(4862), 1, + anon_sym_DASH_DASH, + ACTIONS(9952), 1, + sym_long_flag_identifier, + ACTIONS(9954), 1, + anon_sym_EQ2, + STATE(5794), 1, + sym_comment, + ACTIONS(4864), 2, + sym_identifier, anon_sym_DASH2, - STATE(5800), 1, + [199388] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, + ACTIONS(9956), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(9958), 1, + aux_sym__immediate_decimal_token2, + STATE(5795), 1, sym_comment, - ACTIONS(5041), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [199246] = 8, + ACTIONS(1733), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [199408] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym_unquoted_token3, - ACTIONS(8354), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8906), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8908), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8910), 1, - aux_sym__immediate_decimal_token5, - STATE(5801), 1, + ACTIONS(2160), 1, + anon_sym_RBRACE, + ACTIONS(2162), 1, + sym__entry_separator, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + STATE(5796), 1, sym_comment, - STATE(6416), 1, - sym__immediate_decimal, - [199271] = 4, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199428] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2403), 1, - anon_sym_DASH2, - STATE(5802), 1, + STATE(5797), 1, sym_comment, - ACTIONS(2405), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [199288] = 8, - ACTIONS(3), 1, + ACTIONS(8095), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199442] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym_unquoted_token3, - ACTIONS(8652), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(8940), 1, - aux_sym__immediate_decimal_token3, - ACTIONS(8942), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8944), 1, - aux_sym__immediate_decimal_token5, - STATE(5803), 1, + STATE(5798), 1, sym_comment, - STATE(7628), 1, - sym__immediate_decimal, - [199313] = 7, + ACTIONS(8099), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199456] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9681), 1, + ACTIONS(9960), 1, anon_sym_LPAREN, - ACTIONS(9967), 1, - anon_sym_DQUOTE2, - STATE(5688), 1, - aux_sym__inter_double_quotes_repeat1, - STATE(5804), 1, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9964), 1, + anon_sym_SQUOTE, + STATE(5799), 1, sym_comment, - STATE(6518), 1, + STATE(5803), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, sym_expr_interpolated, - ACTIONS(9683), 2, - sym_escaped_interpolated_content, - sym_inter_escape_sequence, - [199336] = 8, + [199478] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9593), 1, - anon_sym_def, - ACTIONS(9595), 1, - anon_sym_extern, - ACTIONS(9597), 1, - anon_sym_module, - ACTIONS(9599), 1, - anon_sym_use, - ACTIONS(9969), 1, - anon_sym_alias, - ACTIONS(9971), 1, - anon_sym_const, - STATE(5805), 1, + STATE(5800), 1, sym_comment, - [199361] = 4, + ACTIONS(8231), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199492] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1957), 1, - anon_sym_DASH2, - STATE(5806), 1, + STATE(5801), 1, sym_comment, - ACTIONS(1959), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_DASH_DASH, - anon_sym_as, - [199378] = 4, + ACTIONS(8103), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199506] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2001), 1, + ACTIONS(4977), 1, anon_sym_DASH2, - STATE(5807), 1, + STATE(5802), 1, sym_comment, - ACTIONS(2003), 5, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, + ACTIONS(4975), 4, + sym_identifier, + anon_sym_DOLLAR, anon_sym_DASH_DASH, - anon_sym_as, - [199395] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(5808), 1, - sym_comment, - STATE(7081), 1, - aux_sym_val_table_repeat1, - STATE(7100), 1, - sym_val_list, - [199417] = 3, + anon_sym_LBRACE, + [199522] = 7, ACTIONS(3), 1, anon_sym_POUND, - STATE(5809), 1, - sym_comment, - ACTIONS(972), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [199431] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(5810), 1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9966), 1, + anon_sym_SQUOTE, + STATE(5803), 1, sym_comment, - STATE(6998), 1, - sym_val_list, - STATE(7000), 1, - aux_sym_val_table_repeat1, - [199453] = 3, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [199544] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5811), 1, + STATE(5804), 1, sym_comment, - ACTIONS(8228), 5, + ACTIONS(8107), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199467] = 3, + [199558] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2156), 1, + anon_sym_RBRACE, + ACTIONS(2158), 1, + sym__entry_separator, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + STATE(5805), 1, + sym_comment, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199578] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(5812), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(1813), 1, + anon_sym_LBRACE, + ACTIONS(9968), 1, + anon_sym_DOT_DOT2, + STATE(5806), 1, + sym_comment, + ACTIONS(9970), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [199598] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8995), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(9972), 1, + anon_sym_DOT, + STATE(5807), 1, + sym_comment, + ACTIONS(1751), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [199616] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5808), 1, sym_comment, - ACTIONS(8232), 5, + ACTIONS(8057), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199481] = 3, + [199630] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5813), 1, + STATE(5809), 1, sym_comment, - ACTIONS(8236), 5, + ACTIONS(7969), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199495] = 4, + [199644] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5069), 1, - anon_sym_DASH2, - STATE(5814), 1, + ACTIONS(9541), 1, + anon_sym_LBRACE, + STATE(5810), 1, + sym_comment, + STATE(6671), 1, + sym_val_record, + ACTIONS(9869), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [199662] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(5811), 1, sym_comment, - ACTIONS(5067), 4, + STATE(6686), 1, + sym_block, + ACTIONS(9756), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [199680] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8624), 1, sym_identifier, + ACTIONS(9652), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [199511] = 3, + STATE(5508), 1, + sym_val_variable, + STATE(5812), 1, + sym_comment, + STATE(5938), 1, + sym__variable_name, + STATE(6626), 1, + sym__assignment_pattern, + [199702] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5815), 1, + STATE(5813), 1, sym_comment, - ACTIONS(8240), 5, + ACTIONS(8135), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199525] = 3, + [199716] = 3, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(5814), 1, + sym_comment, + ACTIONS(976), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [199730] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9974), 1, + anon_sym_SQUOTE, + STATE(5815), 1, + sym_comment, + STATE(5820), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [199752] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5816), 1, sym_comment, - ACTIONS(8244), 5, + ACTIONS(7798), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199539] = 5, - ACTIONS(3), 1, + [199766] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9845), 1, - aux_sym__immediate_decimal_token2, STATE(5817), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [199557] = 7, + ACTIONS(8305), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [199780] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(9857), 1, + aux_sym__immediate_decimal_token2, STATE(5818), 1, sym_comment, - STATE(5840), 1, - sym__variable_name, - STATE(6916), 1, - sym__assignment_pattern, - [199579] = 3, + ACTIONS(1751), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [199798] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5819), 1, sym_comment, - ACTIONS(8248), 5, + ACTIONS(8061), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199593] = 3, - ACTIONS(251), 1, + [199812] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9976), 1, + anon_sym_SQUOTE, STATE(5820), 1, sym_comment, - ACTIONS(8252), 5, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [199834] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5821), 1, + sym_comment, + ACTIONS(8019), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199607] = 3, + [199848] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5821), 1, + STATE(5822), 1, sym_comment, - ACTIONS(8256), 5, + ACTIONS(8139), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199621] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9973), 1, - anon_sym_GT2, - ACTIONS(9975), 1, - anon_sym_AT, - STATE(5321), 1, - aux_sym__multiple_types_repeat1, - STATE(5822), 1, - sym_comment, - STATE(6965), 1, - sym_param_cmd, - [199643] = 7, - ACTIONS(3), 1, + [199862] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9977), 1, - anon_sym_GT2, - STATE(5322), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1970), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2037), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5823), 1, sym_comment, - STATE(6966), 1, - sym_param_cmd, - [199665] = 7, + [199884] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + ACTIONS(1861), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2048), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5824), 1, sym_comment, - STATE(6021), 1, - sym__variable_name, - STATE(7074), 1, - sym__assignment_pattern_parenthesized, - [199687] = 7, + [199906] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + ACTIONS(1988), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2038), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5825), 1, sym_comment, - STATE(6021), 1, - sym__variable_name, - STATE(7085), 1, - sym__assignment_pattern_parenthesized, - [199709] = 7, + [199928] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + STATE(208), 1, + aux_sym__block_body_repeat1, STATE(5826), 1, sym_comment, - STATE(6021), 1, - sym__variable_name, - STATE(7102), 1, - sym__assignment_pattern_parenthesized, - [199731] = 3, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1441), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [199946] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9978), 1, + aux_sym__immediate_decimal_token2, STATE(5827), 1, sym_comment, - ACTIONS(976), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, + ACTIONS(1772), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 2, + anon_sym_LPAREN2, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [199745] = 3, + [199964] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5828), 1, sym_comment, - ACTIONS(8260), 5, + ACTIONS(8035), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199759] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(7699), 1, - sym__newline, - ACTIONS(7701), 1, - sym__space, - STATE(4389), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5829), 1, - sym_comment, - STATE(6044), 1, - aux_sym_ctrl_do_parenthesized_repeat1, - STATE(7341), 1, - sym__flags_parenthesized, - [199781] = 3, + [199978] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5830), 1, + STATE(5829), 1, sym_comment, - ACTIONS(8264), 5, + ACTIONS(8065), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [199795] = 3, + [199992] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(5831), 1, + ACTIONS(1663), 1, + anon_sym_DASH2, + ACTIONS(8745), 1, + aux_sym_unquoted_token2, + STATE(5830), 1, sym_comment, - ACTIONS(8268), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [199809] = 7, + ACTIONS(1675), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [200010] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9979), 1, - anon_sym_GT2, - STATE(5328), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9980), 1, + anon_sym_SQUOTE, + STATE(5831), 1, + sym_comment, + STATE(5833), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200032] = 4, + ACTIONS(251), 1, + anon_sym_POUND, STATE(5832), 1, sym_comment, - STATE(6974), 1, - sym_param_cmd, - [199831] = 7, + ACTIONS(1772), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1774), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200048] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9981), 1, - anon_sym_GT2, - STATE(5329), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9982), 1, + anon_sym_SQUOTE, STATE(5833), 1, sym_comment, - STATE(6976), 1, - sym_param_cmd, - [199853] = 7, - ACTIONS(3), 1, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200070] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9983), 1, - anon_sym_GT2, - STATE(5330), 1, - aux_sym__multiple_types_repeat1, STATE(5834), 1, sym_comment, - STATE(6979), 1, - sym_param_cmd, - [199875] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9985), 1, + ACTIONS(8023), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5331), 1, - aux_sym__multiple_types_repeat1, + anon_sym_AT, + anon_sym_LBRACE, + [200084] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(206), 1, + aux_sym__block_body_repeat1, STATE(5835), 1, sym_comment, - STATE(6982), 1, - sym_param_cmd, - [199897] = 3, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(597), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [200102] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(2030), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2077), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5836), 1, sym_comment, - ACTIONS(8272), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [199911] = 7, + [200124] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + ACTIONS(2000), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2040), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5837), 1, sym_comment, - STATE(5840), 1, - sym__variable_name, - STATE(7079), 1, - sym__assignment_pattern, - [199933] = 7, - ACTIONS(3), 1, + [200146] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9987), 1, - anon_sym_GT2, - STATE(5334), 1, - aux_sym__multiple_types_repeat1, STATE(5838), 1, sym_comment, - STATE(6988), 1, - sym_param_cmd, - [199955] = 7, + ACTIONS(8069), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200160] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9989), 1, - anon_sym_GT2, - STATE(5335), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9984), 1, + anon_sym_SQUOTE, STATE(5839), 1, sym_comment, - STATE(6991), 1, - sym_param_cmd, - [199977] = 7, - ACTIONS(251), 1, + STATE(5854), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200182] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9991), 1, - anon_sym_EQ, - ACTIONS(9993), 1, - anon_sym_COLON, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9986), 1, + anon_sym_SQUOTE, STATE(5840), 1, sym_comment, - STATE(6728), 1, - aux_sym_shebang_repeat1, - STATE(7494), 1, - sym_param_type, - [199999] = 3, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200204] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8662), 1, + aux_sym__immediate_decimal_token4, + ACTIONS(8664), 1, + aux_sym__immediate_decimal_token5, STATE(5841), 1, sym_comment, - ACTIONS(8276), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200013] = 3, - ACTIONS(251), 1, + STATE(7622), 1, + sym__immediate_decimal, + ACTIONS(8660), 2, + aux_sym__immediate_decimal_token1, + aux_sym__immediate_decimal_token3, + [200224] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9988), 1, + anon_sym_SQUOTE, STATE(5842), 1, sym_comment, - ACTIONS(8280), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200027] = 3, + STATE(5845), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200246] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5843), 1, sym_comment, - ACTIONS(8284), 5, + ACTIONS(8143), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200041] = 3, + [200260] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1865), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2049), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5844), 1, sym_comment, - ACTIONS(8288), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200055] = 3, - ACTIONS(251), 1, + [200282] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9990), 1, + anon_sym_SQUOTE, STATE(5845), 1, sym_comment, - ACTIONS(8292), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200069] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(5846), 1, - sym_comment, - ACTIONS(8296), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200083] = 4, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200304] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4941), 1, - anon_sym_DASH2, - STATE(5847), 1, - sym_comment, - ACTIONS(4939), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(1833), 1, anon_sym_LBRACE, - [200099] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1927), 1, - sym__table_head_separator, - ACTIONS(9995), 1, + ACTIONS(9036), 1, anon_sym_DOT2, - STATE(5626), 1, + STATE(1531), 1, + sym_path, + STATE(2041), 1, sym_cell_path, - STATE(5848), 1, - sym_comment, - STATE(6530), 1, + STATE(4829), 1, aux_sym_cell_path_repeat1, - STATE(7245), 1, - sym_path, - [200121] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9997), 1, - anon_sym_GT2, - STATE(5292), 1, - aux_sym__multiple_types_repeat1, - STATE(5849), 1, + STATE(5846), 1, sym_comment, - STATE(6770), 1, - sym_param_cmd, - [200143] = 3, + [200326] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5850), 1, + STATE(5847), 1, sym_comment, - ACTIONS(7936), 5, + ACTIONS(8147), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200157] = 7, - ACTIONS(3), 1, + [200340] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(9999), 1, - anon_sym_GT2, - STATE(5295), 1, - aux_sym__multiple_types_repeat1, - STATE(5851), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(5848), 1, sym_comment, - STATE(6779), 1, - sym_param_cmd, - [200179] = 3, + STATE(6668), 1, + sym_val_list, + STATE(6669), 1, + aux_sym_val_table_repeat1, + [200362] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5852), 1, + STATE(5849), 1, sym_comment, - ACTIONS(8300), 5, + ACTIONS(8151), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200193] = 3, - ACTIONS(251), 1, + [200376] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(5853), 1, + ACTIONS(9879), 1, + aux_sym__immediate_decimal_token2, + STATE(5850), 1, sym_comment, - ACTIONS(8304), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200207] = 3, + ACTIONS(1749), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [200394] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(5854), 1, + ACTIONS(2030), 1, + sym__table_head_separator, + ACTIONS(9992), 1, + anon_sym_DOT2, + STATE(5607), 1, + sym_cell_path, + STATE(5851), 1, sym_comment, - ACTIONS(8066), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200221] = 7, + STATE(6098), 1, + aux_sym_cell_path_repeat1, + STATE(7264), 1, + sym_path, + [200416] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1927), 1, + ACTIONS(1869), 1, anon_sym_LBRACE, - ACTIONS(8992), 1, + ACTIONS(9036), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(2134), 1, + STATE(2050), 1, sym_cell_path, - STATE(4842), 1, + STATE(4829), 1, aux_sym_cell_path_repeat1, + STATE(5852), 1, + sym_comment, + [200438] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9994), 1, + anon_sym_SQUOTE, + STATE(5853), 1, + sym_comment, + STATE(5855), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200460] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9996), 1, + anon_sym_SQUOTE, + STATE(5854), 1, + sym_comment, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200482] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(9998), 1, + anon_sym_SQUOTE, STATE(5855), 1, sym_comment, - [200243] = 3, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [200504] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4922), 1, + anon_sym_DASH2, + ACTIONS(10000), 1, + anon_sym_EQ2, STATE(5856), 1, sym_comment, - ACTIONS(8070), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(4920), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [200257] = 5, - ACTIONS(251), 1, + [200522] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8990), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10001), 1, - anon_sym_DOT, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10002), 1, + anon_sym_GT2, + ACTIONS(10004), 1, + anon_sym_AT, + STATE(5371), 1, + aux_sym__multiple_types_repeat1, STATE(5857), 1, sym_comment, - ACTIONS(1727), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [200275] = 3, - ACTIONS(251), 1, + STATE(6881), 1, + sym_param_cmd, + [200544] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1805), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + sym__entry_separator, + ACTIONS(10006), 1, + anon_sym_DOT_DOT2, STATE(5858), 1, sym_comment, - ACTIONS(8308), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200289] = 3, + ACTIONS(10008), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200564] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5859), 1, sym_comment, - ACTIONS(8312), 5, + ACTIONS(7977), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200303] = 3, + [200578] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5860), 1, sym_comment, - ACTIONS(8078), 5, + ACTIONS(8271), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200317] = 5, + [200592] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, + ACTIONS(1877), 1, anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2051), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5861), 1, sym_comment, - STATE(6801), 1, - sym_block, - ACTIONS(9927), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [200335] = 5, + [200614] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, STATE(5862), 1, sym_comment, - STATE(6802), 1, - sym_block, - ACTIONS(9927), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [200353] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4998), 1, - anon_sym_DASH2, - STATE(5863), 1, - sym_comment, - ACTIONS(4996), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8039), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [200369] = 3, + [200628] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5864), 1, + STATE(5863), 1, sym_comment, - ACTIONS(8082), 5, + ACTIONS(8259), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200383] = 7, + [200642] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10007), 1, - anon_sym_SQUOTE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10010), 1, + anon_sym_GT2, + STATE(5381), 1, + aux_sym__multiple_types_repeat1, + STATE(5864), 1, + sym_comment, + STATE(6901), 1, + sym_param_cmd, + [200664] = 4, + ACTIONS(251), 1, + anon_sym_POUND, STATE(5865), 1, sym_comment, - STATE(5868), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [200405] = 7, + ACTIONS(1731), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1733), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200680] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9993), 1, - anon_sym_COLON, - ACTIONS(10009), 1, - anon_sym_EQ, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + STATE(5508), 1, + sym_val_variable, STATE(5866), 1, sym_comment, - STATE(6728), 1, - aux_sym_shebang_repeat1, - STATE(7485), 1, - sym_param_type, - [200427] = 3, - ACTIONS(251), 1, + STATE(7712), 1, + sym__variable_name, + [200702] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10012), 1, + anon_sym_GT2, + STATE(5382), 1, + aux_sym__multiple_types_repeat1, STATE(5867), 1, sym_comment, - ACTIONS(7797), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200441] = 7, + STATE(6904), 1, + sym_param_cmd, + [200724] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10011), 1, - anon_sym_SQUOTE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10014), 1, + anon_sym_GT2, + STATE(5273), 1, + aux_sym__multiple_types_repeat1, STATE(5868), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [200463] = 6, + STATE(7028), 1, + sym_param_cmd, + [200746] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2140), 1, - anon_sym_RBRACE, - ACTIONS(2142), 1, - sym__entry_separator, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, + ACTIONS(9716), 1, + aux_sym__immediate_decimal_token2, STATE(5869), 1, sym_comment, - ACTIONS(9950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200483] = 3, + ACTIONS(1749), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1751), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [200764] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5870), 1, sym_comment, - ACTIONS(7972), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [200497] = 7, + STATE(5938), 1, + sym__variable_name, + STATE(6711), 1, + sym__assignment_pattern, + [200786] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(9960), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(9962), 1, sym_unescaped_interpolated_content, - ACTIONS(10013), 1, + ACTIONS(10016), 1, anon_sym_SQUOTE, STATE(5871), 1, sym_comment, - STATE(5984), 1, + STATE(5882), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, + STATE(7180), 1, sym_expr_interpolated, - [200519] = 3, - ACTIONS(251), 1, + [200808] = 7, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10018), 1, + anon_sym_GT2, + STATE(5383), 1, + aux_sym__multiple_types_repeat1, STATE(5872), 1, sym_comment, - ACTIONS(8086), 5, + STATE(6907), 1, + sym_param_cmd, + [200830] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5873), 1, + sym_comment, + ACTIONS(8155), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200533] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(204), 1, - aux_sym__block_body_repeat1, - STATE(5873), 1, - sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(597), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [200551] = 5, - ACTIONS(251), 1, + [200844] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(10015), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(10020), 1, + anon_sym_LT, STATE(5874), 1, sym_comment, - ACTIONS(1767), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [200569] = 3, + ACTIONS(7798), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7802), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [200862] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5875), 1, sym_comment, - ACTIONS(8100), 5, + ACTIONS(8159), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [200583] = 5, - ACTIONS(251), 1, + [200876] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, + ACTIONS(10022), 1, + anon_sym_LT, STATE(5876), 1, sym_comment, - STATE(6858), 1, - sym_block, - ACTIONS(9940), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [200601] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_RBRACE, - ACTIONS(2138), 1, + ACTIONS(7798), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, + ACTIONS(7802), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [200894] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(5877), 1, sym_comment, - ACTIONS(9950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [200621] = 7, - ACTIONS(3), 1, + ACTIONS(8073), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [200908] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10017), 1, - anon_sym_SQUOTE, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5878), 1, sym_comment, - STATE(5883), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [200643] = 7, - ACTIONS(3), 1, + STATE(5938), 1, + sym__variable_name, + STATE(7189), 1, + sym__assignment_pattern, + [200930] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10019), 1, - anon_sym_GT2, - STATE(5378), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5052), 1, + anon_sym_DASH2, STATE(5879), 1, sym_comment, - STATE(7163), 1, - sym_param_cmd, - [200665] = 7, + ACTIONS(5050), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [200946] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9975), 1, + ACTIONS(10004), 1, anon_sym_AT, - ACTIONS(10021), 1, + ACTIONS(10024), 1, anon_sym_GT2, - STATE(5379), 1, + STATE(5274), 1, aux_sym__multiple_types_repeat1, STATE(5880), 1, sym_comment, - STATE(7177), 1, + STATE(7031), 1, sym_param_cmd, - [200687] = 5, - ACTIONS(251), 1, + [200968] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(206), 1, - aux_sym__block_body_repeat1, - STATE(5881), 1, - sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1396), 2, - anon_sym_RPAREN, + ACTIONS(2164), 1, anon_sym_RBRACE, - [200705] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10023), 1, - anon_sym_PIPE, - ACTIONS(10025), 1, - anon_sym_if, - ACTIONS(10027), 1, - anon_sym_EQ_GT, - STATE(5882), 1, + ACTIONS(2166), 1, + sym__entry_separator, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + STATE(5881), 1, sym_comment, - STATE(7138), 1, - aux_sym_match_pattern_repeat1, - STATE(7585), 1, - sym_match_guard, - [200727] = 7, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [200988] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(9960), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(9962), 1, sym_unescaped_interpolated_content, - ACTIONS(10029), 1, + ACTIONS(10026), 1, anon_sym_SQUOTE, - STATE(5883), 1, + STATE(5882), 1, sym_comment, - STATE(6015), 1, + STATE(5890), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, + STATE(7180), 1, sym_expr_interpolated, - [200749] = 7, + [201010] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5840), 1, - sym__variable_name, + STATE(5883), 1, + sym_comment, + ACTIONS(8163), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201024] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5056), 1, + anon_sym_DASH2, STATE(5884), 1, sym_comment, - STATE(6668), 1, - sym__assignment_pattern, - [200771] = 5, - ACTIONS(3), 1, + ACTIONS(5054), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201040] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10031), 1, - aux_sym__immediate_decimal_token2, STATE(5885), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [200789] = 5, + ACTIONS(1749), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1751), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [201056] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9689), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10028), 1, + anon_sym_GT2, + STATE(5384), 1, + aux_sym__multiple_types_repeat1, STATE(5886), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [200807] = 7, - ACTIONS(3), 1, + STATE(6908), 1, + sym_param_cmd, + [201078] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10033), 1, - anon_sym_SQUOTE, STATE(5887), 1, sym_comment, - STATE(5890), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [200829] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10035), 1, + ACTIONS(8167), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5390), 1, - aux_sym__multiple_types_repeat1, + anon_sym_AT, + anon_sym_LBRACE, + [201092] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1881), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2052), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5888), 1, sym_comment, - STATE(7201), 1, - sym_param_cmd, - [200851] = 7, + [201114] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9975), 1, + ACTIONS(10004), 1, anon_sym_AT, - ACTIONS(10037), 1, + ACTIONS(10030), 1, anon_sym_GT2, - STATE(5402), 1, + STATE(5372), 1, aux_sym__multiple_types_repeat1, STATE(5889), 1, sym_comment, - STATE(7202), 1, + STATE(6885), 1, sym_param_cmd, - [200873] = 7, + [201136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(10032), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(10035), 1, sym_unescaped_interpolated_content, - ACTIONS(10039), 1, + ACTIONS(10038), 1, anon_sym_SQUOTE, - STATE(5890), 1, + STATE(7180), 1, + sym_expr_interpolated, + STATE(5890), 2, sym_comment, - STATE(6015), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [200895] = 7, - ACTIONS(3), 1, + [201156] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10041), 1, - anon_sym_GT2, - STATE(5403), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4973), 1, + anon_sym_DASH2, STATE(5891), 1, sym_comment, - STATE(7207), 1, - sym_param_cmd, - [200917] = 7, - ACTIONS(3), 1, + ACTIONS(4971), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201172] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10043), 1, - anon_sym_GT2, - STATE(5404), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5892), 1, sym_comment, - STATE(6631), 1, - sym_param_cmd, - [200939] = 7, + STATE(5938), 1, + sym__variable_name, + STATE(7176), 1, + sym__assignment_pattern, + [201194] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1939), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2138), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, STATE(5893), 1, sym_comment, - [200961] = 6, + ACTIONS(8275), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201208] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - ACTIONS(10045), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10047), 1, - aux_sym__immediate_decimal_token2, STATE(5894), 1, sym_comment, - ACTIONS(1759), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [200981] = 7, - ACTIONS(251), 1, + ACTIONS(8171), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201222] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, - sym_identifier, - STATE(5492), 1, - sym_val_variable, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10040), 1, + anon_sym_GT2, + STATE(5385), 1, + aux_sym__multiple_types_repeat1, STATE(5895), 1, sym_comment, - STATE(7730), 1, - sym__variable_name, - [201003] = 6, + STATE(6896), 1, + sym_param_cmd, + [201244] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1873), 1, - anon_sym_LBRACE, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(10049), 1, - anon_sym_DOT_DOT2, + ACTIONS(2010), 1, + sym__table_head_separator, + ACTIONS(9992), 1, + anon_sym_DOT2, + STATE(5590), 1, + sym_cell_path, STATE(5896), 1, sym_comment, - ACTIONS(10051), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201023] = 7, + STATE(6098), 1, + aux_sym_cell_path_repeat1, + STATE(7264), 1, + sym_path, + [201266] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(9960), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(9962), 1, sym_unescaped_interpolated_content, - ACTIONS(10053), 1, + ACTIONS(10042), 1, anon_sym_SQUOTE, STATE(5897), 1, sym_comment, - STATE(5901), 1, + STATE(6051), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, + STATE(7180), 1, sym_expr_interpolated, - [201045] = 7, - ACTIONS(3), 1, + [201288] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10055), 1, - anon_sym_GT2, - STATE(5409), 1, - aux_sym__multiple_types_repeat1, STATE(5898), 1, sym_comment, - STATE(6639), 1, - sym_param_cmd, - [201067] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10057), 1, + ACTIONS(8175), 5, + anon_sym_EQ, + anon_sym_DASH_GT, anon_sym_GT2, - STATE(5412), 1, - aux_sym__multiple_types_repeat1, + anon_sym_AT, + anon_sym_LBRACE, + [201302] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + STATE(5508), 1, + sym_val_variable, STATE(5899), 1, sym_comment, - STATE(6642), 1, - sym_param_cmd, - [201089] = 5, + STATE(7712), 1, + sym__variable_name, + [201324] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9649), 1, - anon_sym_LBRACE, STATE(5900), 1, sym_comment, - STATE(7023), 1, - sym_val_record, - ACTIONS(9815), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [201107] = 7, - ACTIONS(3), 1, + ACTIONS(8077), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201338] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10059), 1, - anon_sym_SQUOTE, + ACTIONS(6209), 1, + anon_sym_LBRACE, STATE(5901), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201129] = 4, + STATE(6829), 1, + sym_block, + ACTIONS(9903), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [201356] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(10044), 1, + anon_sym_use, + ACTIONS(10046), 1, + anon_sym_list, + ACTIONS(10048), 1, + anon_sym_hide, + ACTIONS(10050), 1, + anon_sym_new, STATE(5902), 1, sym_comment, - ACTIONS(1861), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1863), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201145] = 5, + [201378] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4945), 1, - anon_sym_DASH2, - ACTIONS(10061), 1, - anon_sym_EQ2, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(10044), 1, + anon_sym_use, + ACTIONS(10046), 1, + anon_sym_list, + ACTIONS(10048), 1, + anon_sym_hide, + ACTIONS(10050), 1, + anon_sym_new, STATE(5903), 1, sym_comment, - ACTIONS(4943), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [201163] = 6, + [201400] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1794), 1, - sym__entry_separator, - ACTIONS(10063), 1, - anon_sym_DOT_DOT2, STATE(5904), 1, sym_comment, - ACTIONS(10065), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201183] = 5, - ACTIONS(3), 1, + ACTIONS(964), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [201414] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10067), 1, - anon_sym_LT, + ACTIONS(9605), 1, + anon_sym_DASH2, STATE(5905), 1, sym_comment, - ACTIONS(7797), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7801), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [201201] = 7, - ACTIONS(3), 1, + ACTIONS(9603), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201430] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10069), 1, - anon_sym_SQUOTE, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5906), 1, sym_comment, - STATE(5908), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201223] = 5, - ACTIONS(3), 1, + STATE(6783), 1, + sym_val_list, + STATE(6784), 1, + aux_sym_val_table_repeat1, + [201452] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10071), 1, - anon_sym_LT, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(10052), 1, + anon_sym_EQ, + ACTIONS(10054), 1, + anon_sym_COLON, STATE(5907), 1, sym_comment, - ACTIONS(7797), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7801), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [201241] = 7, - ACTIONS(3), 1, + STATE(6825), 1, + aux_sym_shebang_repeat1, + STATE(7377), 1, + sym_param_type, + [201474] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10073), 1, - anon_sym_SQUOTE, + ACTIONS(5072), 1, + anon_sym_DASH2, STATE(5908), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201263] = 4, + ACTIONS(5070), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201490] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4922), 1, + anon_sym_DASH2, + ACTIONS(10056), 1, + anon_sym_EQ2, STATE(5909), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1767), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201279] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8676), 1, + ACTIONS(4920), 3, sym_identifier, - ACTIONS(9703), 1, anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5840), 1, - sym__variable_name, + anon_sym_DASH_DASH, + [201508] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10058), 1, + aux_sym__immediate_decimal_token2, STATE(5910), 1, sym_comment, - STATE(6792), 1, - sym__assignment_pattern, - [201301] = 4, + ACTIONS(1772), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [201526] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5053), 1, - anon_sym_DASH2, + ACTIONS(1837), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2042), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5911), 1, sym_comment, - ACTIONS(5051), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [201317] = 7, - ACTIONS(3), 1, + [201548] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10075), 1, - anon_sym_SQUOTE, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5912), 1, sym_comment, - STATE(5914), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201339] = 4, + STATE(6751), 1, + sym_val_list, + STATE(6985), 1, + aux_sym_val_table_repeat1, + [201570] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5057), 1, - anon_sym_DASH2, + ACTIONS(6209), 1, + anon_sym_LBRACE, STATE(5913), 1, sym_comment, - ACTIONS(5055), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [201355] = 7, + STATE(6970), 1, + sym_block, + ACTIONS(9901), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [201588] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(9960), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(9962), 1, sym_unescaped_interpolated_content, - ACTIONS(10077), 1, + ACTIONS(10060), 1, anon_sym_SQUOTE, STATE(5914), 1, sym_comment, - STATE(6015), 1, + STATE(5927), 1, aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, + STATE(7180), 1, sym_expr_interpolated, - [201377] = 5, + [201610] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, STATE(5915), 1, sym_comment, - STATE(7032), 1, - sym_block, - ACTIONS(9867), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [201395] = 6, + ACTIONS(8111), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201624] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1794), 1, - anon_sym_LBRACE, - ACTIONS(10079), 1, - anon_sym_DOT_DOT2, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5916), 1, sym_comment, - ACTIONS(10081), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201415] = 7, - ACTIONS(3), 1, + STATE(6909), 1, + sym_val_list, + STATE(6991), 1, + aux_sym_val_table_repeat1, + [201646] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10083), 1, - anon_sym_SQUOTE, + ACTIONS(1841), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2043), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5917), 1, sym_comment, - STATE(5920), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201437] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, - STATE(5918), 1, - sym_comment, - ACTIONS(9950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201457] = 6, + [201668] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, + ACTIONS(1772), 1, aux_sym_unquoted_token2, - ACTIONS(10085), 1, - anon_sym_DOT, - ACTIONS(10087), 1, + ACTIONS(10062), 1, aux_sym__immediate_decimal_token2, - STATE(5919), 1, + STATE(5918), 1, sym_comment, - ACTIONS(1727), 2, + ACTIONS(1774), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [201477] = 7, + [201686] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(5064), 1, + anon_sym_DASH2, + STATE(5919), 1, + sym_comment, + ACTIONS(5062), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201702] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10089), 1, - anon_sym_SQUOTE, - STATE(5920), 1, + ACTIONS(10064), 1, + sym__newline, + ACTIONS(10067), 1, + sym__space, + STATE(5294), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(7345), 1, + sym__flags_parenthesized, + STATE(5920), 2, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201499] = 6, + aux_sym_ctrl_do_parenthesized_repeat1, + [201722] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1873), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10091), 1, - anon_sym_DOT_DOT2, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10070), 1, + anon_sym_GT2, + STATE(5400), 1, + aux_sym__multiple_types_repeat1, STATE(5921), 1, sym_comment, - ACTIONS(10093), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201519] = 6, - ACTIONS(251), 1, + STATE(6950), 1, + sym_param_cmd, + [201744] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8654), 1, - aux_sym__immediate_decimal_token4, - ACTIONS(8656), 1, - aux_sym__immediate_decimal_token5, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10072), 1, + anon_sym_GT2, + STATE(5396), 1, + aux_sym__multiple_types_repeat1, STATE(5922), 1, sym_comment, - STATE(7632), 1, - sym__immediate_decimal, - ACTIONS(8652), 2, - aux_sym__immediate_decimal_token1, - aux_sym__immediate_decimal_token3, - [201539] = 7, - ACTIONS(3), 1, + STATE(6925), 1, + sym_param_cmd, + [201766] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10095), 1, - anon_sym_SQUOTE, STATE(5923), 1, sym_comment, - STATE(5925), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201561] = 6, - ACTIONS(3), 1, + ACTIONS(7941), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201780] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2124), 1, - anon_sym_RBRACE, - ACTIONS(2130), 1, - sym__entry_separator, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, + ACTIONS(5068), 1, + anon_sym_DASH2, STATE(5924), 1, sym_comment, - ACTIONS(9950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201581] = 7, - ACTIONS(3), 1, + ACTIONS(5066), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [201796] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10097), 1, - anon_sym_SQUOTE, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(10074), 1, + anon_sym_DOT, + ACTIONS(10076), 1, + aux_sym__immediate_decimal_token2, STATE(5925), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201603] = 6, - ACTIONS(3), 1, + ACTIONS(1751), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [201816] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, - ACTIONS(10099), 1, - anon_sym_RBRACE, - ACTIONS(10101), 1, - sym__entry_separator, STATE(5926), 1, sym_comment, - ACTIONS(9950), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [201623] = 7, - ACTIONS(251), 1, + ACTIONS(8081), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201830] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10078), 1, + anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(5927), 1, sym_comment, - STATE(5938), 1, - sym__variable_name, - STATE(6543), 1, - sym__assignment_pattern, - [201645] = 7, + STATE(7180), 1, + sym_expr_interpolated, + [201852] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, STATE(5928), 1, sym_comment, - STATE(5938), 1, - sym__variable_name, - STATE(6568), 1, - sym__assignment_pattern, - [201667] = 7, + ACTIONS(8119), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201866] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, + ACTIONS(8624), 1, sym_identifier, - ACTIONS(9703), 1, + ACTIONS(9652), 1, anon_sym_DOLLAR, - STATE(5492), 1, + STATE(5508), 1, sym_val_variable, STATE(5929), 1, sym_comment, - STATE(5938), 1, + STATE(6002), 1, sym__variable_name, - STATE(6569), 1, - sym__assignment_pattern, - [201689] = 6, + STATE(7090), 1, + sym__assignment_pattern_parenthesized, + [201888] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(5930), 1, + sym_comment, + ACTIONS(8085), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201902] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9948), 1, - anon_sym_DOT_DOT2, - ACTIONS(10103), 1, - anon_sym_RBRACE, - ACTIONS(10105), 1, + ACTIONS(5944), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, sym__entry_separator, - STATE(5930), 1, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + STATE(5931), 1, sym_comment, - ACTIONS(9950), 2, + ACTIONS(9820), 2, anon_sym_DOT_DOT_EQ2, anon_sym_DOT_DOT_LT2, - [201709] = 4, + [201922] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5029), 1, - anon_sym_DASH2, - STATE(5931), 1, - sym_comment, - ACTIONS(5027), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [201725] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10107), 1, - anon_sym_SQUOTE, STATE(5932), 1, sym_comment, - STATE(5934), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201747] = 4, + ACTIONS(7981), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201936] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5033), 1, - anon_sym_DASH2, STATE(5933), 1, sym_comment, - ACTIONS(5031), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, + ACTIONS(8179), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - [201763] = 7, - ACTIONS(3), 1, + [201950] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10109), 1, - anon_sym_SQUOTE, STATE(5934), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201785] = 7, + ACTIONS(8183), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [201964] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10111), 1, - anon_sym_SQUOTE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10080), 1, + anon_sym_GT2, + STATE(5303), 1, + aux_sym__multiple_types_repeat1, STATE(5935), 1, sym_comment, - STATE(5951), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201807] = 5, + STATE(6962), 1, + sym_param_cmd, + [201986] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(9936), 1, - aux_sym__immediate_decimal_token2, STATE(5936), 1, sym_comment, - ACTIONS(1727), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [201825] = 7, + ACTIONS(7945), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202000] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, + ACTIONS(10082), 1, + anon_sym_EQ2, + ACTIONS(10084), 1, + sym_short_flag_identifier, STATE(5937), 1, sym_comment, - STATE(5938), 1, - sym__variable_name, - STATE(6470), 1, - sym__assignment_pattern, - [201847] = 7, + ACTIONS(4821), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [202018] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9993), 1, + ACTIONS(10054), 1, anon_sym_COLON, - ACTIONS(10113), 1, + ACTIONS(10086), 1, anon_sym_EQ, STATE(5938), 1, sym_comment, - STATE(6728), 1, + STATE(6825), 1, aux_sym_shebang_repeat1, - STATE(7505), 1, + STATE(7455), 1, sym_param_type, - [201869] = 7, - ACTIONS(3), 1, + [202040] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10115), 1, - anon_sym_SQUOTE, + ACTIONS(4916), 1, + anon_sym_DASH2, + ACTIONS(10088), 1, + anon_sym_EQ2, STATE(5939), 1, sym_comment, - STATE(5940), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201891] = 7, - ACTIONS(3), 1, + ACTIONS(4914), 3, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + [202058] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10117), 1, - anon_sym_SQUOTE, STATE(5940), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201913] = 7, - ACTIONS(3), 1, + ACTIONS(1817), 2, + anon_sym_DOT_DOT2, + aux_sym_unquoted_token2, + ACTIONS(1819), 3, + anon_sym_LBRACE, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202074] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10119), 1, - anon_sym_SQUOTE, STATE(5941), 1, sym_comment, - STATE(5949), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201935] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10121), 1, - anon_sym_SQUOTE, - STATE(5942), 1, - sym_comment, - STATE(5944), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [201957] = 7, + ACTIONS(7965), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202088] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9993), 1, + ACTIONS(10054), 1, anon_sym_COLON, - ACTIONS(10123), 1, + ACTIONS(10090), 1, anon_sym_EQ, - STATE(5943), 1, + STATE(5942), 1, sym_comment, - STATE(6728), 1, + STATE(6825), 1, aux_sym_shebang_repeat1, - STATE(7685), 1, + STATE(7415), 1, sym_param_type, - [201979] = 7, - ACTIONS(3), 1, + [202110] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10125), 1, - anon_sym_SQUOTE, + STATE(207), 1, + aux_sym__block_body_repeat1, + STATE(5943), 1, + sym_comment, + ACTIONS(141), 2, + sym__newline, + anon_sym_SEMI, + ACTIONS(1439), 2, + anon_sym_RPAREN, + anon_sym_RBRACE, + [202128] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6209), 1, + anon_sym_LBRACE, STATE(5944), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [202001] = 4, + STATE(6804), 1, + sym_block, + ACTIONS(9903), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [202146] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(2010), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2064), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5945), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1727), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [202017] = 7, - ACTIONS(3), 1, + [202168] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10127), 1, - anon_sym_SQUOTE, STATE(5946), 1, sym_comment, - STATE(5947), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [202039] = 7, + ACTIONS(8267), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202182] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10003), 1, + ACTIONS(9960), 1, anon_sym_LPAREN, - ACTIONS(10005), 1, + ACTIONS(9962), 1, sym_unescaped_interpolated_content, - ACTIONS(10129), 1, + ACTIONS(10092), 1, anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(5947), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, + STATE(7180), 1, sym_expr_interpolated, - [202061] = 7, + [202204] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2095), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2043), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, STATE(5948), 1, sym_comment, - [202083] = 7, - ACTIONS(3), 1, + ACTIONS(8089), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [202218] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10131), 1, - anon_sym_SQUOTE, + ACTIONS(10094), 1, + anon_sym_PIPE, + ACTIONS(10096), 1, + anon_sym_if, + ACTIONS(10098), 1, + anon_sym_EQ_GT, STATE(5949), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [202105] = 7, + STATE(7173), 1, + aux_sym_match_pattern_repeat1, + STATE(7621), 1, + sym_match_guard, + [202240] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(10133), 1, - anon_sym_use, - ACTIONS(10135), 1, - anon_sym_list, - ACTIONS(10137), 1, - anon_sym_hide, - ACTIONS(10139), 1, - anon_sym_new, + ACTIONS(5044), 1, + anon_sym_DASH2, STATE(5950), 1, sym_comment, - [202127] = 7, - ACTIONS(3), 1, + ACTIONS(5042), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202256] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10141), 1, - anon_sym_SQUOTE, + ACTIONS(5048), 1, + anon_sym_DASH2, STATE(5951), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [202149] = 3, + ACTIONS(5046), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [202272] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5952), 1, sym_comment, - ACTIONS(8002), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202163] = 3, + STATE(6017), 1, + sym__variable_name, + STATE(6253), 1, + sym__assignment_pattern, + [202294] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5953), 1, sym_comment, - ACTIONS(8126), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202177] = 5, + STATE(6017), 1, + sym__variable_name, + STATE(6265), 1, + sym__assignment_pattern, + [202316] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(8728), 1, - aux_sym_unquoted_token2, - STATE(5954), 1, - sym_comment, - ACTIONS(1693), 3, + ACTIONS(8624), 1, sym_identifier, + ACTIONS(9652), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202195] = 3, + STATE(5508), 1, + sym_val_variable, + STATE(5954), 1, + sym_comment, + STATE(6017), 1, + sym__variable_name, + STATE(6268), 1, + sym__assignment_pattern, + [202338] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(937), 1, + anon_sym_COLON2, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1395), 1, + sym_cell_path, + STATE(1531), 1, + sym_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(5955), 1, sym_comment, - ACTIONS(8006), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202209] = 3, - ACTIONS(3), 1, + [202360] = 7, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5956), 1, sym_comment, - ACTIONS(968), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [202223] = 3, + STATE(6017), 1, + sym__variable_name, + STATE(6528), 1, + sym__assignment_pattern, + [202382] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5957), 1, sym_comment, - ACTIONS(8130), 5, + ACTIONS(8227), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [202237] = 5, - ACTIONS(3), 1, + [202396] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10143), 1, - aux_sym__immediate_decimal_token2, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5958), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [202255] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10145), 1, - anon_sym_GT2, - STATE(5305), 1, - aux_sym__multiple_types_repeat1, - STATE(5959), 1, - sym_comment, - STATE(6906), 1, - sym_param_cmd, - [202277] = 3, + STATE(6002), 1, + sym__variable_name, + STATE(7100), 1, + sym__assignment_pattern_parenthesized, + [202418] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5960), 1, + STATE(5959), 1, sym_comment, - ACTIONS(8162), 5, + ACTIONS(7949), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [202291] = 7, + [202432] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(1793), 1, + anon_sym_RBRACE, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(10100), 1, + anon_sym_DOT_DOT2, + STATE(5960), 1, + sym_comment, + ACTIONS(10102), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [202452] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9975), 1, + ACTIONS(10004), 1, anon_sym_AT, - ACTIONS(10147), 1, + ACTIONS(10104), 1, anon_sym_GT2, - STATE(5306), 1, + STATE(5325), 1, aux_sym__multiple_types_repeat1, STATE(5961), 1, sym_comment, - STATE(6911), 1, + STATE(6770), 1, sym_param_cmd, - [202313] = 3, + [202474] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5962), 1, sym_comment, - ACTIONS(8166), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202327] = 3, + STATE(6629), 1, + sym_val_list, + STATE(7025), 1, + aux_sym_val_table_repeat1, + [202496] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5942), 1, + sym__variable_name, STATE(5963), 1, sym_comment, - ACTIONS(8010), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202341] = 3, + STATE(6253), 1, + sym__assignment_pattern, + [202518] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5964), 1, sym_comment, - ACTIONS(8170), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202355] = 3, + STATE(6739), 1, + sym_val_list, + STATE(7030), 1, + aux_sym_val_table_repeat1, + [202540] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5965), 1, sym_comment, - ACTIONS(8014), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202369] = 3, + STATE(6002), 1, + sym__variable_name, + STATE(7126), 1, + sym__assignment_pattern_parenthesized, + [202562] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4916), 1, + anon_sym_DASH2, + ACTIONS(10106), 1, + anon_sym_EQ2, STATE(5966), 1, sym_comment, - ACTIONS(8174), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(4914), 3, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [202383] = 4, + [202580] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9655), 1, - anon_sym_DASH2, - STATE(5967), 1, - sym_comment, - ACTIONS(9653), 4, + ACTIONS(8624), 1, sym_identifier, + ACTIONS(9652), 1, anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202399] = 7, + STATE(5508), 1, + sym_val_variable, + STATE(5942), 1, + sym__variable_name, + STATE(5967), 1, + sym_comment, + STATE(6265), 1, + sym__assignment_pattern, + [202602] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, + ACTIONS(8624), 1, sym_identifier, - STATE(5492), 1, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, sym_val_variable, + STATE(5942), 1, + sym__variable_name, STATE(5968), 1, sym_comment, - STATE(7730), 1, - sym__variable_name, - [202421] = 7, - ACTIONS(251), 1, + STATE(6268), 1, + sym__assignment_pattern, + [202624] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10108), 1, + anon_sym_GT2, + STATE(5281), 1, + aux_sym__multiple_types_repeat1, STATE(5969), 1, sym_comment, - STATE(6934), 1, - sym_val_list, - STATE(6935), 1, - aux_sym_val_table_repeat1, - [202443] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5023), 1, - anon_sym_DASH2, - STATE(5970), 1, - sym_comment, - ACTIONS(5021), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202459] = 7, + STATE(7049), 1, + sym_param_cmd, + [202646] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9975), 1, + ACTIONS(10004), 1, anon_sym_AT, - ACTIONS(10149), 1, + ACTIONS(10110), 1, anon_sym_GT2, - STATE(5307), 1, + STATE(5282), 1, aux_sym__multiple_types_repeat1, - STATE(5971), 1, + STATE(5970), 1, sym_comment, - STATE(6925), 1, + STATE(7050), 1, sym_param_cmd, - [202481] = 7, + [202668] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(10133), 1, - anon_sym_use, - ACTIONS(10135), 1, - anon_sym_list, - ACTIONS(10137), 1, - anon_sym_hide, - ACTIONS(10139), 1, - anon_sym_new, - STATE(5972), 1, + ACTIONS(1903), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2036), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, + STATE(5971), 1, sym_comment, - [202503] = 3, + [202690] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(5973), 1, + STATE(5972), 1, sym_comment, - ACTIONS(8178), 5, + ACTIONS(8027), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [202517] = 7, - ACTIONS(251), 1, + [202704] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9993), 1, - anon_sym_COLON, - ACTIONS(10151), 1, - anon_sym_EQ, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10112), 1, + anon_sym_SQUOTE, + STATE(5973), 1, + sym_comment, + STATE(6049), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [202726] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10114), 1, + anon_sym_GT2, + STATE(5388), 1, + aux_sym__multiple_types_repeat1, STATE(5974), 1, sym_comment, - STATE(6728), 1, - aux_sym_shebang_repeat1, - STATE(7395), 1, - sym_param_type, - [202539] = 7, + STATE(6919), 1, + sym_param_cmd, + [202748] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(9975), 1, + ACTIONS(10004), 1, anon_sym_AT, - ACTIONS(10153), 1, + ACTIONS(10116), 1, anon_sym_GT2, - STATE(5308), 1, + STATE(5284), 1, aux_sym__multiple_types_repeat1, STATE(5975), 1, sym_comment, - STATE(6928), 1, + STATE(7060), 1, sym_param_cmd, - [202561] = 7, + [202770] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1951), 1, + ACTIONS(1845), 1, anon_sym_LBRACE, - ACTIONS(8992), 1, + ACTIONS(9036), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(2051), 1, + STATE(2044), 1, sym_cell_path, - STATE(4842), 1, + STATE(4829), 1, aux_sym_cell_path_repeat1, STATE(5976), 1, sym_comment, - [202583] = 5, - ACTIONS(251), 1, + [202792] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4945), 1, - anon_sym_DASH2, - ACTIONS(10155), 1, - anon_sym_EQ2, STATE(5977), 1, sym_comment, - ACTIONS(4943), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202601] = 6, + ACTIONS(968), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [202806] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10157), 1, - sym__newline, - ACTIONS(10160), 1, - sym__space, - STATE(5283), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - STATE(7341), 1, - sym__flags_parenthesized, - STATE(5978), 2, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10118), 1, + anon_sym_SQUOTE, + STATE(5978), 1, sym_comment, - aux_sym_ctrl_do_parenthesized_repeat1, - [202621] = 7, - ACTIONS(251), 1, + STATE(5989), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [202828] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1955), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2052), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10120), 1, + anon_sym_GT2, + STATE(5389), 1, + aux_sym__multiple_types_repeat1, STATE(5979), 1, sym_comment, - [202643] = 3, + STATE(6921), 1, + sym_param_cmd, + [202850] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(5980), 1, sym_comment, - ACTIONS(8182), 5, + ACTIONS(8204), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [202657] = 7, + [202864] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(10054), 1, + anon_sym_COLON, + ACTIONS(10122), 1, + anon_sym_EQ, STATE(5981), 1, sym_comment, - STATE(6926), 1, - sym_val_list, - STATE(7013), 1, - aux_sym_val_table_repeat1, - [202679] = 7, + STATE(6825), 1, + aux_sym_shebang_repeat1, + STATE(7725), 1, + sym_param_type, + [202886] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5981), 1, + sym__variable_name, STATE(5982), 1, sym_comment, - STATE(6993), 1, - sym_val_list, - STATE(7020), 1, - aux_sym_val_table_repeat1, - [202701] = 5, + STATE(6253), 1, + sym__assignment_pattern, + [202908] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5981), 1, + sym__variable_name, STATE(5983), 1, sym_comment, - STATE(6753), 1, - sym_block, - ACTIONS(9897), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [202719] = 7, - ACTIONS(3), 1, + STATE(6265), 1, + sym__assignment_pattern, + [202930] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10003), 1, - anon_sym_LPAREN, - ACTIONS(10005), 1, - sym_unescaped_interpolated_content, - ACTIONS(10163), 1, - anon_sym_SQUOTE, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5981), 1, + sym__variable_name, STATE(5984), 1, sym_comment, - STATE(6015), 1, - aux_sym__inter_single_quotes_repeat1, - STATE(6796), 1, - sym_expr_interpolated, - [202741] = 5, + STATE(6268), 1, + sym__assignment_pattern, + [202952] = 7, ACTIONS(251), 1, anon_sym_POUND, - STATE(208), 1, - aux_sym__block_body_repeat1, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5981), 1, + sym__variable_name, STATE(5985), 1, sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - ACTIONS(1385), 2, - anon_sym_RPAREN, - anon_sym_RBRACE, - [202759] = 7, - ACTIONS(251), 1, + STATE(6528), 1, + sym__assignment_pattern, + [202974] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(1952), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10124), 1, + anon_sym_GT2, + STATE(5288), 1, + aux_sym__multiple_types_repeat1, STATE(5986), 1, sym_comment, - [202781] = 7, + STATE(7063), 1, + sym_param_cmd, + [202996] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1963), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2053), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5987), 1, sym_comment, - [202803] = 4, + STATE(7005), 1, + sym_val_list, + STATE(7056), 1, + aux_sym_val_table_repeat1, + [203018] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5039), 1, - anon_sym_DASH2, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5988), 1, sym_comment, - ACTIONS(5037), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202819] = 4, - ACTIONS(251), 1, + STATE(7021), 1, + sym_val_list, + STATE(7059), 1, + aux_sym_val_table_repeat1, + [203040] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5043), 1, - anon_sym_DASH2, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10126), 1, + anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(5989), 1, sym_comment, - ACTIONS(5041), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202835] = 5, - ACTIONS(251), 1, + STATE(7180), 1, + sym_expr_interpolated, + [203062] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10165), 1, - anon_sym_EQ2, - ACTIONS(10167), 1, - sym_short_flag_identifier, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + ACTIONS(10128), 1, + anon_sym_RBRACE, + ACTIONS(10130), 1, + sym__entry_separator, STATE(5990), 1, sym_comment, - ACTIONS(4880), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [202853] = 5, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203082] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4927), 1, - anon_sym_DASH2, - ACTIONS(10169), 1, - anon_sym_EQ2, STATE(5991), 1, sym_comment, - ACTIONS(4925), 3, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [202871] = 5, + ACTIONS(8208), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [203096] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(8728), 1, + ACTIONS(1801), 1, + anon_sym_LBRACE, + ACTIONS(1803), 1, aux_sym_unquoted_token2, + ACTIONS(10132), 1, + anon_sym_DOT_DOT2, STATE(5992), 1, sym_comment, - ACTIONS(1693), 3, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [202889] = 7, + ACTIONS(10134), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [203116] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1967), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2054), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5993), 1, sym_comment, - [202911] = 6, + STATE(6618), 1, + sym_val_list, + STATE(7068), 1, + aux_sym_val_table_repeat1, + [203138] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_DASH_DASH, - ACTIONS(10171), 1, - sym_long_flag_identifier, - ACTIONS(10173), 1, - anon_sym_EQ2, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5994), 1, sym_comment, - ACTIONS(4890), 2, - sym_identifier, - anon_sym_DASH2, - [202931] = 7, + STATE(6623), 1, + sym_val_list, + STATE(7070), 1, + aux_sym_val_table_repeat1, + [203160] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1971), 1, + ACTIONS(1887), 1, anon_sym_LBRACE, - ACTIONS(8992), 1, + ACTIONS(9036), 1, anon_sym_DOT2, - STATE(1497), 1, + STATE(1531), 1, sym_path, - STATE(2055), 1, + STATE(2026), 1, sym_cell_path, - STATE(4842), 1, + STATE(4829), 1, aux_sym_cell_path_repeat1, STATE(5995), 1, sym_comment, - [202953] = 6, - ACTIONS(3), 1, + [203182] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1727), 1, - sym__entry_separator, - ACTIONS(8741), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(10175), 1, - anon_sym_DOT, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, STATE(5996), 1, sym_comment, - ACTIONS(1725), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [202973] = 3, + STATE(6002), 1, + sym__variable_name, + STATE(6983), 1, + sym__assignment_pattern_parenthesized, + [203204] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5997), 1, sym_comment, - ACTIONS(7968), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [202987] = 5, + STATE(6650), 1, + sym_val_list, + STATE(7076), 1, + aux_sym_val_table_repeat1, + [203226] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(5998), 1, sym_comment, - STATE(6775), 1, - sym_block, - ACTIONS(9897), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [203005] = 5, + STATE(6654), 1, + sym_val_list, + STATE(7079), 1, + aux_sym_val_table_repeat1, + [203248] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4927), 1, + ACTIONS(1663), 1, anon_sym_DASH2, - ACTIONS(10177), 1, - anon_sym_EQ2, + ACTIONS(8745), 1, + aux_sym_unquoted_token2, STATE(5999), 1, sym_comment, - ACTIONS(4925), 3, + ACTIONS(1675), 3, anon_sym_DOLLAR, anon_sym_DASH_DASH, anon_sym_LBRACE, - [203023] = 7, + [203266] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5943), 1, - sym__variable_name, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6000), 1, sym_comment, - STATE(6543), 1, - sym__assignment_pattern, - [203045] = 7, + STATE(6678), 1, + sym_val_list, + STATE(7085), 1, + aux_sym_val_table_repeat1, + [203288] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5943), 1, - sym__variable_name, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6001), 1, sym_comment, - STATE(6568), 1, - sym__assignment_pattern, - [203067] = 7, + STATE(6684), 1, + sym_val_list, + STATE(7088), 1, + aux_sym_val_table_repeat1, + [203310] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5943), 1, - sym__variable_name, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(10054), 1, + anon_sym_COLON, + ACTIONS(10136), 1, + anon_sym_EQ, STATE(6002), 1, sym_comment, - STATE(6569), 1, - sym__assignment_pattern, - [203089] = 7, - ACTIONS(251), 1, + STATE(6825), 1, + aux_sym_shebang_repeat1, + STATE(7392), 1, + sym_param_type, + [203332] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1975), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2060), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10138), 1, + anon_sym_SQUOTE, STATE(6003), 1, sym_comment, - [203111] = 7, + STATE(6055), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [203354] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5943), 1, - sym__variable_name, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6004), 1, sym_comment, - STATE(6470), 1, - sym__assignment_pattern, - [203133] = 7, + STATE(6708), 1, + sym_val_list, + STATE(7095), 1, + aux_sym_val_table_repeat1, + [203376] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1979), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2061), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6005), 1, sym_comment, - [203155] = 7, + STATE(6714), 1, + sym_val_list, + STATE(7097), 1, + aux_sym_val_table_repeat1, + [203398] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1983), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2063), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(5078), 1, + anon_sym_DASH2, STATE(6006), 1, sym_comment, - [203177] = 7, + ACTIONS(5076), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, + anon_sym_LBRACE, + [203414] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10140), 1, + anon_sym_SQUOTE, + STATE(5840), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(6007), 1, + sym_comment, + STATE(7180), 1, + sym_expr_interpolated, + [203436] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6007), 1, + STATE(6008), 1, sym_comment, - STATE(6832), 1, + STATE(6731), 1, sym_val_list, - STATE(7055), 1, + STATE(7105), 1, aux_sym_val_table_repeat1, - [203199] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1987), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2064), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - STATE(6008), 1, - sym_comment, - [203221] = 7, + [203458] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, STATE(6009), 1, sym_comment, - STATE(6900), 1, + STATE(6737), 1, sym_val_list, - STATE(7060), 1, + STATE(7108), 1, aux_sym_val_table_repeat1, - [203243] = 7, - ACTIONS(251), 1, + [203480] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1991), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2065), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(10142), 1, + anon_sym_QMARK2, STATE(6010), 1, sym_comment, - [203265] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1939), 1, + ACTIONS(958), 4, + anon_sym_RBRACK, + sym__entry_separator, sym__table_head_separator, - ACTIONS(9995), 1, anon_sym_DOT2, - STATE(5756), 1, - sym_cell_path, + [203496] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10144), 1, + anon_sym_QMARK2, STATE(6011), 1, sym_comment, - STATE(6530), 1, - aux_sym_cell_path_repeat1, - STATE(7245), 1, - sym_path, - [203287] = 7, + ACTIONS(952), 4, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [203512] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1995), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2066), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6012), 1, sym_comment, - [203309] = 3, + STATE(6759), 1, + sym_val_list, + STATE(7114), 1, + aux_sym_val_table_repeat1, + [203534] = 7, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6013), 1, sym_comment, - ACTIONS(8188), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [203323] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6014), 1, - sym_comment, - ACTIONS(8192), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [203337] = 6, + STATE(6765), 1, + sym_val_list, + STATE(7117), 1, + aux_sym_val_table_repeat1, + [203556] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10179), 1, - anon_sym_LPAREN, - ACTIONS(10182), 1, - sym_unescaped_interpolated_content, - ACTIONS(10185), 1, - anon_sym_SQUOTE, - STATE(6796), 1, - sym_expr_interpolated, - STATE(6015), 2, - sym_comment, - aux_sym__inter_single_quotes_repeat1, - [203357] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5866), 1, - sym__variable_name, - STATE(6016), 1, - sym_comment, - STATE(6543), 1, - sym__assignment_pattern, - [203379] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5866), 1, - sym__variable_name, - STATE(6017), 1, - sym_comment, - STATE(6568), 1, - sym__assignment_pattern, - [203401] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5866), 1, - sym__variable_name, - STATE(6018), 1, - sym_comment, - STATE(6569), 1, - sym__assignment_pattern, - [203423] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5866), 1, - sym__variable_name, - STATE(6019), 1, - sym_comment, - STATE(6470), 1, - sym__assignment_pattern, - [203445] = 7, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(6020), 1, + ACTIONS(7727), 1, + sym__newline, + ACTIONS(7729), 1, + sym__space, + STATE(4448), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6014), 1, sym_comment, - STATE(6021), 1, - sym__variable_name, - STATE(6997), 1, - sym__assignment_pattern_parenthesized, - [203467] = 7, + STATE(6041), 1, + aux_sym_ctrl_do_parenthesized_repeat1, + STATE(7345), 1, + sym__flags_parenthesized, + [203578] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9993), 1, - anon_sym_COLON, - ACTIONS(10187), 1, - anon_sym_EQ, - STATE(6021), 1, - sym_comment, - STATE(6728), 1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(7380), 1, - sym_param_type, - [203489] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6022), 1, + STATE(6015), 1, sym_comment, - ACTIONS(8196), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [203503] = 7, + STATE(6790), 1, + sym_val_list, + STATE(7122), 1, + aux_sym_val_table_repeat1, + [203600] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6023), 1, + STATE(6016), 1, sym_comment, - STATE(7078), 1, - aux_sym_val_table_repeat1, - STATE(7082), 1, + STATE(6795), 1, sym_val_list, - [203525] = 7, + STATE(7124), 1, + aux_sym_val_table_repeat1, + [203622] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1999), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2067), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - STATE(6024), 1, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(10054), 1, + anon_sym_COLON, + ACTIONS(10146), 1, + anon_sym_EQ, + STATE(6017), 1, sym_comment, - [203547] = 7, + STATE(6825), 1, + aux_sym_shebang_repeat1, + STATE(7461), 1, + sym_param_type, + [203644] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6025), 1, + STATE(6018), 1, sym_comment, - STATE(6632), 1, + STATE(6817), 1, sym_val_list, - STATE(7089), 1, + STATE(7130), 1, aux_sym_val_table_repeat1, - [203569] = 7, + [203666] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6026), 1, + STATE(6019), 1, sym_comment, - STATE(6637), 1, + STATE(6822), 1, sym_val_list, - STATE(7091), 1, + STATE(7133), 1, aux_sym_val_table_repeat1, - [203591] = 4, - ACTIONS(3), 1, + [203688] = 7, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10189), 1, - anon_sym_QMARK2, - STATE(6027), 1, - sym_comment, - ACTIONS(958), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, + ACTIONS(1849), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, anon_sym_DOT2, - [203607] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10191), 1, - anon_sym_QMARK2, - STATE(6028), 1, + STATE(1531), 1, + sym_path, + STATE(2045), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, + STATE(6020), 1, sym_comment, - ACTIONS(952), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [203623] = 3, + [203710] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6029), 1, + ACTIONS(4993), 1, + anon_sym_DASH2, + STATE(6021), 1, sym_comment, - ACTIONS(8200), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, + ACTIONS(4991), 4, + sym_identifier, + anon_sym_DOLLAR, + anon_sym_DASH_DASH, anon_sym_LBRACE, - [203637] = 7, + [203726] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6030), 1, + STATE(6022), 1, sym_comment, - STATE(6663), 1, + STATE(6838), 1, sym_val_list, - STATE(7096), 1, + STATE(7138), 1, aux_sym_val_table_repeat1, - [203659] = 7, + [203748] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6031), 1, + STATE(6023), 1, sym_comment, - STATE(6669), 1, + STATE(6842), 1, sym_val_list, - STATE(7098), 1, + STATE(7141), 1, aux_sym_val_table_repeat1, - [203681] = 7, + [203770] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6032), 1, + STATE(6024), 1, sym_comment, - STATE(6689), 1, + STATE(6859), 1, sym_val_list, - STATE(7105), 1, + STATE(7146), 1, aux_sym_val_table_repeat1, - [203703] = 7, + [203792] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6033), 1, + STATE(6025), 1, sym_comment, - STATE(6696), 1, + STATE(6863), 1, sym_val_list, - STATE(7107), 1, + STATE(7149), 1, aux_sym_val_table_repeat1, - [203725] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6034), 1, - sym_comment, - ACTIONS(8204), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, - anon_sym_AT, - anon_sym_LBRACE, - [203739] = 7, + [203814] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6035), 1, + STATE(6026), 1, sym_comment, - STATE(6719), 1, + STATE(6877), 1, sym_val_list, - STATE(7112), 1, + STATE(7153), 1, aux_sym_val_table_repeat1, - [203761] = 7, + [203836] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6036), 1, + STATE(6027), 1, sym_comment, - STATE(6724), 1, + STATE(6883), 1, sym_val_list, - STATE(7115), 1, + STATE(7155), 1, aux_sym_val_table_repeat1, - [203783] = 7, + [203858] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6037), 1, + STATE(6028), 1, sym_comment, - STATE(6630), 1, - aux_sym_val_table_repeat1, - STATE(6739), 1, + STATE(6893), 1, sym_val_list, - [203805] = 7, + STATE(7160), 1, + aux_sym_val_table_repeat1, + [203880] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6038), 1, + STATE(6029), 1, sym_comment, - STATE(6744), 1, + STATE(6899), 1, sym_val_list, - STATE(7124), 1, + STATE(7163), 1, aux_sym_val_table_repeat1, - [203827] = 7, + [203902] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6039), 1, + STATE(6030), 1, sym_comment, - STATE(6763), 1, + STATE(6912), 1, sym_val_list, - STATE(7131), 1, + STATE(7167), 1, aux_sym_val_table_repeat1, - [203849] = 7, + [203924] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(6040), 1, + STATE(6031), 1, sym_comment, - STATE(6768), 1, + STATE(6917), 1, sym_val_list, - STATE(7134), 1, + STATE(7169), 1, aux_sym_val_table_repeat1, - [203871] = 7, + [203946] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(1751), 1, + sym__entry_separator, + ACTIONS(8727), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(10148), 1, + anon_sym_DOT, + STATE(6032), 1, + sym_comment, + ACTIONS(1749), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [203966] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10150), 1, + anon_sym_GT2, + STATE(5327), 1, + aux_sym__multiple_types_repeat1, + STATE(6033), 1, + sym_comment, + STATE(6778), 1, + sym_param_cmd, + [203988] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10152), 1, + anon_sym_GT2, + STATE(5292), 1, + aux_sym__multiple_types_repeat1, + STATE(6034), 1, + sym_comment, + STATE(7073), 1, + sym_param_cmd, + [204010] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2003), 1, + STATE(6035), 1, + sym_comment, + ACTIONS(8031), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2068), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, - STATE(6041), 1, + [204024] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10154), 1, + anon_sym_SQUOTE, + STATE(6036), 1, sym_comment, - [203893] = 7, + STATE(6047), 1, + aux_sym__inter_single_quotes_repeat1, + STATE(7180), 1, + sym_expr_interpolated, + [204046] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(6042), 1, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5907), 1, + sym__variable_name, + STATE(6037), 1, sym_comment, - STATE(6788), 1, - sym_val_list, - STATE(7140), 1, - aux_sym_val_table_repeat1, - [203915] = 7, + STATE(7090), 1, + sym__assignment_pattern_parenthesized, + [204068] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(6043), 1, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5907), 1, + sym__variable_name, + STATE(6038), 1, sym_comment, - STATE(6793), 1, - sym_val_list, - STATE(7142), 1, - aux_sym_val_table_repeat1, - [203937] = 7, + STATE(7100), 1, + sym__assignment_pattern_parenthesized, + [204090] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5907), 1, + sym__variable_name, + STATE(6039), 1, + sym_comment, + STATE(7126), 1, + sym__assignment_pattern_parenthesized, + [204112] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5907), 1, + sym__variable_name, + STATE(6040), 1, + sym_comment, + STATE(6983), 1, + sym__assignment_pattern_parenthesized, + [204134] = 7, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7699), 1, + ACTIONS(7727), 1, sym__newline, - ACTIONS(7701), 1, + ACTIONS(7729), 1, sym__space, - STATE(4479), 1, + STATE(4406), 1, aux_sym_ctrl_do_parenthesized_repeat2, - STATE(5978), 1, + STATE(5920), 1, aux_sym_ctrl_do_parenthesized_repeat1, - STATE(6044), 1, + STATE(6041), 1, sym_comment, - STATE(7341), 1, + STATE(7345), 1, sym__flags_parenthesized, - [203959] = 7, + [204156] = 7, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10156), 1, + anon_sym_GT2, + STATE(5331), 1, + aux_sym__multiple_types_repeat1, + STATE(6042), 1, + sym_comment, + STATE(6799), 1, + sym_param_cmd, + [204178] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9818), 1, + anon_sym_DOT_DOT2, + ACTIONS(10158), 1, + anon_sym_RBRACE, + ACTIONS(10160), 1, + sym__entry_separator, + STATE(6043), 1, + sym_comment, + ACTIONS(9820), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [204198] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(6045), 1, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6044), 1, sym_comment, - STATE(6812), 1, - sym_val_list, - STATE(7147), 1, - aux_sym_val_table_repeat1, - [203981] = 7, + STATE(6635), 1, + sym_block, + ACTIONS(9844), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [204216] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6045), 1, + sym_comment, + STATE(6636), 1, + sym_block, + ACTIONS(9844), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + anon_sym_SEMI, + [204234] = 7, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(8624), 1, + sym_identifier, + ACTIONS(9652), 1, + anon_sym_DOLLAR, + STATE(5508), 1, + sym_val_variable, + STATE(5942), 1, + sym__variable_name, STATE(6046), 1, sym_comment, - STATE(6817), 1, - sym_val_list, - STATE(7150), 1, - aux_sym_val_table_repeat1, - [204003] = 7, - ACTIONS(251), 1, + STATE(6528), 1, + sym__assignment_pattern, + [204256] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2007), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2069), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10162), 1, + anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6047), 1, sym_comment, - [204025] = 7, + STATE(7180), 1, + sym_expr_interpolated, + [204278] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2011), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2071), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, STATE(6048), 1, sym_comment, - [204047] = 4, - ACTIONS(251), 1, + ACTIONS(8043), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [204292] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5065), 1, - anon_sym_DASH2, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10164), 1, + anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6049), 1, sym_comment, - ACTIONS(5063), 4, - sym_identifier, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - anon_sym_LBRACE, - [204063] = 7, - ACTIONS(251), 1, + STATE(7180), 1, + sym_expr_interpolated, + [204314] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, STATE(6050), 1, sym_comment, - STATE(6836), 1, - sym_val_list, - STATE(7156), 1, - aux_sym_val_table_repeat1, - [204085] = 7, - ACTIONS(251), 1, + ACTIONS(972), 5, + anon_sym_RBRACK, + anon_sym_QMARK2, + sym__entry_separator, + sym__table_head_separator, + anon_sym_DOT2, + [204328] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10166), 1, + anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6051), 1, sym_comment, - STATE(6841), 1, - sym_val_list, - STATE(7158), 1, - aux_sym_val_table_repeat1, - [204107] = 7, + STATE(7180), 1, + sym_expr_interpolated, + [204350] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, STATE(6052), 1, sym_comment, - STATE(6859), 1, - sym_val_list, - STATE(7162), 1, - aux_sym_val_table_repeat1, - [204129] = 7, - ACTIONS(251), 1, + ACTIONS(8047), 5, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_GT2, + anon_sym_AT, + anon_sym_LBRACE, + [204364] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10168), 1, + anon_sym_GT2, + STATE(5332), 1, + aux_sym__multiple_types_repeat1, STATE(6053), 1, sym_comment, - STATE(6866), 1, - sym_val_list, - STATE(7165), 1, - aux_sym_val_table_repeat1, - [204151] = 7, + STATE(6801), 1, + sym_param_cmd, + [204386] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1895), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2034), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(6054), 1, sym_comment, - STATE(6879), 1, - sym_val_list, - STATE(7170), 1, - aux_sym_val_table_repeat1, - [204173] = 7, - ACTIONS(251), 1, + [204408] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10170), 1, + anon_sym_SQUOTE, + STATE(5890), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6055), 1, sym_comment, - STATE(6886), 1, - sym_val_list, - STATE(7172), 1, - aux_sym_val_table_repeat1, - [204195] = 7, + STATE(7180), 1, + sym_expr_interpolated, + [204430] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1853), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2046), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(6056), 1, sym_comment, - STATE(6895), 1, - sym_val_list, - STATE(7176), 1, - aux_sym_val_table_repeat1, - [204217] = 7, - ACTIONS(251), 1, + [204452] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + ACTIONS(10172), 1, + anon_sym_GT2, + STATE(5296), 1, + aux_sym__multiple_types_repeat1, STATE(6057), 1, sym_comment, - STATE(6901), 1, - sym_val_list, - STATE(7179), 1, - aux_sym_val_table_repeat1, - [204239] = 7, + STATE(7077), 1, + sym_param_cmd, + [204474] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(9541), 1, + anon_sym_LBRACE, STATE(6058), 1, sym_comment, - STATE(6913), 1, - sym_val_list, - STATE(7184), 1, - aux_sym_val_table_repeat1, - [204261] = 7, + STATE(6670), 1, + sym_val_record, + ACTIONS(9867), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [204492] = 7, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(1857), 1, + anon_sym_LBRACE, + ACTIONS(9036), 1, + anon_sym_DOT2, + STATE(1531), 1, + sym_path, + STATE(2047), 1, + sym_cell_path, + STATE(4829), 1, + aux_sym_cell_path_repeat1, STATE(6059), 1, sym_comment, - STATE(6919), 1, - sym_val_list, - STATE(7187), 1, - aux_sym_val_table_repeat1, - [204283] = 3, + [204514] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6060), 1, sym_comment, - ACTIONS(8208), 5, + ACTIONS(8053), 5, anon_sym_EQ, anon_sym_DASH_GT, anon_sym_GT2, anon_sym_AT, anon_sym_LBRACE, - [204297] = 7, - ACTIONS(251), 1, + [204528] = 7, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5974), 1, - sym__variable_name, + ACTIONS(9960), 1, + anon_sym_LPAREN, + ACTIONS(9962), 1, + sym_unescaped_interpolated_content, + ACTIONS(10174), 1, + anon_sym_SQUOTE, + STATE(5947), 1, + aux_sym__inter_single_quotes_repeat1, STATE(6061), 1, sym_comment, - STATE(7074), 1, - sym__assignment_pattern_parenthesized, - [204319] = 7, - ACTIONS(251), 1, + STATE(7180), 1, + sym_expr_interpolated, + [204550] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5974), 1, - sym__variable_name, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10178), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6062), 1, sym_comment, - STATE(7085), 1, - sym__assignment_pattern_parenthesized, - [204341] = 7, - ACTIONS(251), 1, + [204569] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5974), 1, - sym__variable_name, STATE(6063), 1, sym_comment, - STATE(7102), 1, - sym__assignment_pattern_parenthesized, - [204363] = 7, - ACTIONS(251), 1, + ACTIONS(8143), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8145), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204584] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8676), 1, - sym_identifier, - ACTIONS(9703), 1, - anon_sym_DOLLAR, - STATE(5492), 1, - sym_val_variable, - STATE(5974), 1, - sym__variable_name, STATE(6064), 1, sym_comment, - STATE(6997), 1, - sym__assignment_pattern_parenthesized, - [204385] = 7, - ACTIONS(251), 1, + ACTIONS(8147), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8149), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204599] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - anon_sym_LBRACE, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1497), 1, - sym_path, - STATE(2072), 1, - sym_cell_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, STATE(6065), 1, sym_comment, - [204407] = 7, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, + ACTIONS(8151), 2, anon_sym_AT, - ACTIONS(10193), 1, + sym__entry_separator, + ACTIONS(8153), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5314), 1, - aux_sym__multiple_types_repeat1, + [204614] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(6066), 1, sym_comment, - STATE(6958), 1, - sym_param_cmd, - [204429] = 3, - ACTIONS(251), 1, + ACTIONS(8155), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8157), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204629] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6067), 1, sym_comment, - ACTIONS(8212), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(8159), 2, anon_sym_AT, - anon_sym_LBRACE, - [204443] = 3, + sym__entry_separator, + ACTIONS(8161), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204644] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6068), 1, sym_comment, - ACTIONS(964), 5, - anon_sym_RBRACK, - anon_sym_QMARK2, + ACTIONS(8163), 2, + anon_sym_AT, sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [204457] = 7, + ACTIONS(8165), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204659] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - ACTIONS(10195), 1, - anon_sym_GT2, - STATE(5319), 1, - aux_sym__multiple_types_repeat1, STATE(6069), 1, sym_comment, - STATE(6963), 1, - sym_param_cmd, - [204479] = 3, - ACTIONS(251), 1, + ACTIONS(8167), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8169), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204674] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6070), 1, sym_comment, - ACTIONS(8216), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(8171), 2, anon_sym_AT, - anon_sym_LBRACE, - [204493] = 3, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(8173), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204689] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6071), 1, sym_comment, - ACTIONS(8220), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(8175), 2, anon_sym_AT, - anon_sym_LBRACE, - [204507] = 4, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(8177), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204704] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6072), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_DOT_DOT2, - aux_sym_unquoted_token2, - ACTIONS(1759), 3, - anon_sym_LBRACE, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204523] = 3, - ACTIONS(251), 1, + ACTIONS(8179), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8181), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204719] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6073), 1, sym_comment, - ACTIONS(8224), 5, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_GT2, + ACTIONS(8183), 2, anon_sym_AT, - anon_sym_LBRACE, - [204537] = 7, - ACTIONS(251), 1, + sym__entry_separator, + ACTIONS(8185), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204734] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(937), 1, - anon_sym_COLON2, - ACTIONS(8992), 1, - anon_sym_DOT2, - STATE(1400), 1, - sym_cell_path, - STATE(1497), 1, - sym_path, - STATE(4842), 1, - aux_sym_cell_path_repeat1, STATE(6074), 1, sym_comment, - [204559] = 5, - ACTIONS(251), 1, + ACTIONS(8204), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8206), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204749] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9649), 1, - anon_sym_LBRACE, STATE(6075), 1, sym_comment, - STATE(7024), 1, - sym_val_record, - ACTIONS(9831), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [204577] = 3, + ACTIONS(8208), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8210), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [204764] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6076), 1, sym_comment, - ACTIONS(10197), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [204590] = 4, + ACTIONS(5649), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [204777] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6077), 1, sym_comment, - ACTIONS(7797), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7801), 2, + ACTIONS(2216), 2, anon_sym_RBRACK, - anon_sym_GT2, - [204605] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1867), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2218), 2, anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2184), 1, - anon_sym_RBRACE, - ACTIONS(2186), 1, sym__entry_separator, + [204792] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(6078), 1, sym_comment, - [204624] = 4, + ACTIONS(2192), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [204807] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(6079), 1, sym_comment, - ACTIONS(8220), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8222), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [204639] = 3, + ACTIONS(2200), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [204822] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6080), 1, sym_comment, - ACTIONS(10199), 4, + ACTIONS(10180), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [204652] = 4, + [204835] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(10182), 1, + anon_sym_DQUOTE, STATE(6081), 1, sym_comment, - ACTIONS(2245), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [204667] = 5, + STATE(6083), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204852] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10201), 1, - anon_sym_DQUOTE, + ACTIONS(7469), 1, + anon_sym_COLON2, STATE(6082), 1, sym_comment, - STATE(6087), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204684] = 6, + STATE(6091), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7463), 2, + sym__newline, + sym__space, + [204869] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10205), 1, - anon_sym_COLON, - ACTIONS(10207), 1, - anon_sym_GT2, - STATE(5315), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10186), 1, + anon_sym_DQUOTE, STATE(6083), 1, sym_comment, - [204703] = 5, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [204886] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_LBRACE, - ACTIONS(10209), 1, - anon_sym_DOT_DOT2, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(10076), 1, + aux_sym__immediate_decimal_token2, STATE(6084), 1, sym_comment, - ACTIONS(10211), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [204720] = 5, + ACTIONS(1751), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [204903] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10213), 1, - anon_sym_RBRACK, - STATE(4976), 1, - aux_sym_parameter_repeat2, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, + ACTIONS(10188), 1, + aux_sym__immediate_decimal_token2, STATE(6085), 1, sym_comment, - ACTIONS(2545), 2, - sym__newline, - anon_sym_COMMA, - [204737] = 3, - ACTIONS(251), 1, + ACTIONS(1774), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [204920] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2218), 1, + anon_sym_PIPE, STATE(6086), 1, sym_comment, - ACTIONS(5661), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [204750] = 5, - ACTIONS(3), 1, + ACTIONS(2216), 3, + anon_sym_if, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [204935] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10215), 1, - anon_sym_DQUOTE, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + STATE(5508), 1, + sym_val_variable, STATE(6087), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [204767] = 6, + STATE(7383), 1, + sym__variable_name, + [204954] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2160), 1, + anon_sym_RBRACE, + ACTIONS(2162), 1, sym__entry_separator, - ACTIONS(10217), 1, - anon_sym_COLON, - ACTIONS(10219), 1, - anon_sym_GT2, - STATE(5316), 1, - aux_sym__multiple_types_repeat1, STATE(6088), 1, sym_comment, - [204786] = 6, + STATE(7221), 1, + sym__expr_parenthesized_immediate, + [204973] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(1875), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(10190), 1, + anon_sym_COLON2, STATE(6089), 1, sym_comment, - [204805] = 4, - ACTIONS(3), 1, + STATE(6166), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7463), 2, + sym__newline, + sym__space, + [204990] = 4, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, STATE(6090), 1, sym_comment, - ACTIONS(8236), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8238), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [204820] = 6, + ACTIONS(1733), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205005] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_RBRACK, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2198), 1, - sym__entry_separator, - ACTIONS(2200), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(10192), 1, + anon_sym_COLON2, STATE(6091), 1, sym_comment, - [204839] = 4, - ACTIONS(3), 1, + STATE(6166), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7463), 2, + sym__newline, + sym__space, + [205022] = 6, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4418), 1, + sym_block, STATE(6092), 1, sym_comment, - ACTIONS(8300), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8302), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [204854] = 6, - ACTIONS(3), 1, + [205041] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_RBRACK, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, - sym__entry_separator, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(9706), 1, + anon_sym_RPAREN, STATE(6093), 1, sym_comment, - [204873] = 6, + STATE(6101), 1, + aux_sym__block_body_repeat1, + ACTIONS(10194), 2, + sym__newline, + anon_sym_SEMI, + [205058] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3214), 1, - sym_parameter_parens, - STATE(3215), 1, - sym_parameter_bracks, STATE(6094), 1, sym_comment, - [204892] = 6, + ACTIONS(10196), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205071] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(1503), 1, + anon_sym_SEMI, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4462), 1, - sym_block, + STATE(278), 1, + aux_sym__parenthesized_body_repeat1, STATE(6095), 1, sym_comment, - [204911] = 4, + STATE(6789), 1, + aux_sym_shebang_repeat1, + [205090] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1389), 1, - anon_sym_RPAREN, - ACTIONS(10225), 2, - sym__newline, - anon_sym_SEMI, - STATE(6096), 2, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3204), 1, + sym_parameter_parens, + STATE(3216), 1, + sym_parameter_bracks, + STATE(6096), 1, sym_comment, - aux_sym__block_body_repeat1, - [204926] = 6, - ACTIONS(3), 1, + [205109] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10230), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6097), 1, sym_comment, - [204945] = 6, - ACTIONS(3), 1, + ACTIONS(5619), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [205122] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10232), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(950), 1, + sym__table_head_separator, + ACTIONS(9992), 1, + anon_sym_DOT2, STATE(6098), 1, sym_comment, - [204964] = 6, + STATE(6106), 1, + aux_sym_cell_path_repeat1, + STATE(7264), 1, + sym_path, + [205141] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10234), 1, + ACTIONS(2226), 1, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, + sym__entry_separator, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token4, STATE(6099), 1, sym_comment, - [204983] = 6, + [205160] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10236), 1, + ACTIONS(10202), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6100), 1, sym_comment, - [205002] = 6, - ACTIONS(3), 1, + [205179] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10238), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6101), 1, + ACTIONS(1447), 1, + anon_sym_RPAREN, + ACTIONS(10204), 2, + sym__newline, + anon_sym_SEMI, + STATE(6101), 2, sym_comment, - [205021] = 6, + aux_sym__block_body_repeat1, + [205194] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2164), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10240), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6102), 1, sym_comment, - [205040] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10242), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6103), 1, - sym_comment, - [205059] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10244), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6104), 1, - sym_comment, - [205078] = 5, + STATE(7221), 1, + sym__expr_parenthesized_immediate, + [205213] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9833), 1, - anon_sym_RPAREN, - STATE(6096), 1, + ACTIONS(1441), 1, + ts_builtin_sym_end, + STATE(222), 1, aux_sym__block_body_repeat1, - STATE(6105), 1, + STATE(6103), 1, sym_comment, - ACTIONS(10246), 2, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - [205095] = 4, + [205230] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, + ACTIONS(4754), 1, aux_sym_unquoted_token2, - STATE(6106), 1, + STATE(6104), 1, sym_comment, - ACTIONS(1693), 3, + ACTIONS(1675), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [205110] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6107), 1, - sym_comment, - ACTIONS(10248), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205123] = 6, + [205245] = 6, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(1000), 1, sym__entry_separator, ACTIONS(1004), 1, anon_sym_RBRACK, - ACTIONS(2202), 1, + ACTIONS(2208), 1, anon_sym_LPAREN2, - ACTIONS(2204), 1, + ACTIONS(2210), 1, aux_sym__unquoted_in_list_token4, + STATE(6105), 1, + sym_comment, + [205264] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(943), 1, + sym__table_head_separator, + ACTIONS(10207), 1, + anon_sym_DOT2, + STATE(7264), 1, + sym_path, + STATE(6106), 2, + sym_comment, + aux_sym_cell_path_repeat1, + [205281] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10210), 1, + anon_sym_LBRACE, + STATE(4845), 1, + sym_block, + STATE(4846), 1, + sym_val_closure, + STATE(4848), 1, + sym__blosure, + STATE(6107), 1, + sym_comment, + [205300] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6108), 1, sym_comment, - [205142] = 3, + ACTIONS(10212), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205313] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6109), 1, sym_comment, - ACTIONS(10250), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [205155] = 6, - ACTIONS(251), 1, + ACTIONS(10214), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205326] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, + ACTIONS(10216), 1, anon_sym_LPAREN, - STATE(3216), 1, - sym_parameter_parens, - STATE(3228), 1, - sym_parameter_bracks, STATE(6110), 1, sym_comment, - [205174] = 5, + ACTIONS(10218), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [205341] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10252), 1, - anon_sym_DQUOTE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10220), 1, + anon_sym_COLON, + ACTIONS(10222), 1, + anon_sym_GT2, + STATE(5334), 1, + aux_sym__multiple_types_repeat1, STATE(6111), 1, sym_comment, - STATE(6117), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205191] = 4, + [205360] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10224), 1, + anon_sym_COLON, + ACTIONS(10226), 1, + anon_sym_GT2, + STATE(5335), 1, + aux_sym__multiple_types_repeat1, STATE(6112), 1, sym_comment, - ACTIONS(8224), 2, - anon_sym_AT, + [205379] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(8226), 2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10228), 1, anon_sym_RBRACK, - anon_sym_GT2, - [205206] = 3, - ACTIONS(251), 1, - anon_sym_POUND, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6113), 1, sym_comment, - ACTIONS(10248), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205219] = 4, + [205398] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10230), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6114), 1, sym_comment, - ACTIONS(8304), 2, - anon_sym_AT, + [205417] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(8306), 2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10232), 1, anon_sym_RBRACK, - anon_sym_GT2, - [205234] = 3, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6115), 1, + sym_comment, + [205436] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6115), 1, + STATE(6116), 1, sym_comment, - ACTIONS(10254), 4, + ACTIONS(10234), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [205247] = 6, + [205449] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10256), 1, - anon_sym_LBRACE, - STATE(4858), 1, - sym_block, - STATE(4859), 1, - sym_val_closure, - STATE(4861), 1, - sym__blosure, - STATE(6116), 1, + STATE(6117), 1, sym_comment, - [205266] = 5, - ACTIONS(3), 1, + ACTIONS(10236), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205462] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10258), 1, - anon_sym_DQUOTE, - STATE(6117), 1, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, + ACTIONS(1733), 1, + anon_sym_LBRACE, + ACTIONS(10238), 1, + aux_sym__immediate_decimal_token1, + ACTIONS(10240), 1, + aux_sym__immediate_decimal_token2, + STATE(6118), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205283] = 4, + [205481] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6118), 1, + STATE(6119), 1, sym_comment, - ACTIONS(8308), 2, + ACTIONS(7798), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8310), 2, + ACTIONS(7802), 2, anon_sym_RBRACK, anon_sym_GT2, - [205298] = 3, + [205496] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6119), 1, + STATE(6120), 1, sym_comment, - ACTIONS(10254), 4, + ACTIONS(10242), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [205311] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6120), 1, - sym_comment, - ACTIONS(1861), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1863), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [205326] = 4, + [205509] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6121), 1, sym_comment, - ACTIONS(7968), 2, - anon_sym_AT, + ACTIONS(2216), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token4, + ACTIONS(2218), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(7970), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [205341] = 6, + [205524] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10260), 1, - anon_sym_LBRACK, - ACTIONS(10262), 1, - anon_sym_LPAREN, - STATE(5861), 1, - sym_parameter_parens, - STATE(5862), 1, - sym_parameter_bracks, STATE(6122), 1, sym_comment, - [205360] = 4, - ACTIONS(3), 1, + ACTIONS(5609), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [205537] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6123), 1, sym_comment, - ACTIONS(8312), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8314), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [205375] = 4, - ACTIONS(3), 1, + ACTIONS(10244), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205550] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6124), 1, sym_comment, - ACTIONS(7972), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7974), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [205390] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6125), 1, - sym_comment, - ACTIONS(1725), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1727), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [205405] = 3, + ACTIONS(10246), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205563] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6126), 1, + STATE(6125), 1, sym_comment, - ACTIONS(6365), 4, - ts_builtin_sym_end, + ACTIONS(10246), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [205418] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205576] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6127), 1, + STATE(6126), 1, sym_comment, - ACTIONS(6297), 4, + ACTIONS(5613), 4, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, anon_sym_LBRACE, - [205431] = 6, + [205589] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10264), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10004), 1, + anon_sym_AT, + STATE(5472), 1, aux_sym__multiple_types_repeat1, + STATE(6127), 1, + sym_comment, + STATE(7203), 1, + sym_param_cmd, + [205608] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6128), 1, sym_comment, - [205450] = 6, + ACTIONS(10248), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10266), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10250), 1, + anon_sym_COLON, + ACTIONS(10252), 1, + anon_sym_GT2, + STATE(5357), 1, aux_sym__multiple_types_repeat1, STATE(6129), 1, sym_comment, - [205469] = 6, + [205640] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10268), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10254), 1, + anon_sym_COLON, + ACTIONS(10256), 1, + anon_sym_GT2, + STATE(5359), 1, aux_sym__multiple_types_repeat1, STATE(6130), 1, sym_comment, - [205488] = 6, + [205659] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10270), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10258), 1, + anon_sym_COLON, + ACTIONS(10260), 1, + anon_sym_GT2, + STATE(5360), 1, aux_sym__multiple_types_repeat1, STATE(6131), 1, sym_comment, - [205507] = 6, + [205678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10272), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10262), 1, + anon_sym_COLON, + ACTIONS(10264), 1, + anon_sym_GT2, + STATE(5361), 1, aux_sym__multiple_types_repeat1, STATE(6132), 1, sym_comment, - [205526] = 6, + [205697] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10274), 1, + ACTIONS(10266), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6133), 1, sym_comment, - [205545] = 6, + [205716] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10276), 1, + ACTIONS(10268), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6134), 1, sym_comment, - [205564] = 6, + [205735] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10278), 1, + ACTIONS(10270), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6135), 1, sym_comment, - [205583] = 3, - ACTIONS(251), 1, + [205754] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10004), 1, + anon_sym_AT, + STATE(5473), 1, + aux_sym__multiple_types_repeat1, STATE(6136), 1, sym_comment, - ACTIONS(6299), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [205596] = 6, - ACTIONS(3), 1, + STATE(7204), 1, + sym_param_cmd, + [205773] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(2188), 1, - anon_sym_RBRACE, - ACTIONS(2190), 1, + STATE(6137), 1, + sym_comment, + ACTIONS(10272), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [205786] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2180), 1, + anon_sym_RBRACK, + ACTIONS(2182), 1, anon_sym_LPAREN2, - ACTIONS(2192), 1, + ACTIONS(2184), 1, sym__entry_separator, - STATE(6137), 1, + ACTIONS(2186), 1, + aux_sym__unquoted_in_list_token2, + STATE(6138), 1, sym_comment, - [205615] = 3, + [205805] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6138), 1, + STATE(6139), 1, sym_comment, - ACTIONS(10280), 4, + ACTIONS(10248), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [205628] = 3, + [205818] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6139), 1, + STATE(6140), 1, sym_comment, - ACTIONS(6367), 4, - ts_builtin_sym_end, + ACTIONS(10274), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [205641] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6140), 1, - sym_comment, - ACTIONS(10282), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [205654] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [205831] = 4, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, STATE(6141), 1, sym_comment, - ACTIONS(10248), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205667] = 5, - ACTIONS(3), 1, + ACTIONS(1774), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [205846] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10284), 1, - anon_sym_DQUOTE, + ACTIONS(10044), 1, + anon_sym_use, + ACTIONS(10046), 1, + anon_sym_list, + ACTIONS(10048), 1, + anon_sym_hide, + ACTIONS(10050), 1, + anon_sym_new, STATE(6142), 1, sym_comment, - STATE(6147), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205684] = 4, - ACTIONS(3), 1, + [205865] = 6, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3191), 1, + sym_parameter_parens, + STATE(3212), 1, + sym_parameter_bracks, STATE(6143), 1, sym_comment, - ACTIONS(8240), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8242), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [205699] = 4, + [205884] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10276), 1, + anon_sym_DQUOTE, STATE(6144), 1, sym_comment, - ACTIONS(8244), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8246), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [205714] = 3, + STATE(6162), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [205901] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3196), 1, + sym_parameter_parens, + STATE(3197), 1, + sym_parameter_bracks, STATE(6145), 1, sym_comment, - ACTIONS(10248), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205727] = 6, + [205920] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10286), 1, + ACTIONS(10278), 1, anon_sym_COLON, - ACTIONS(10288), 1, + ACTIONS(10280), 1, anon_sym_GT2, - STATE(5317), 1, + STATE(5374), 1, aux_sym__multiple_types_repeat1, STATE(6146), 1, sym_comment, - [205746] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10290), 1, - anon_sym_DQUOTE, - STATE(6147), 1, - sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [205763] = 6, + [205939] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10292), 1, + ACTIONS(10282), 1, anon_sym_COLON, - ACTIONS(10294), 1, + ACTIONS(10284), 1, anon_sym_GT2, - STATE(5318), 1, + STATE(5376), 1, aux_sym__multiple_types_repeat1, - STATE(6148), 1, + STATE(6147), 1, sym_comment, - [205782] = 3, + [205958] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6149), 1, + STATE(6148), 1, sym_comment, - ACTIONS(10296), 4, + ACTIONS(6368), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205795] = 3, + anon_sym_LBRACE, + [205971] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6150), 1, + STATE(6149), 1, sym_comment, - ACTIONS(10298), 4, + ACTIONS(6262), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205808] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - ACTIONS(1759), 1, anon_sym_LBRACE, - ACTIONS(10300), 1, - aux_sym__immediate_decimal_token1, - ACTIONS(10302), 1, - aux_sym__immediate_decimal_token2, - STATE(6151), 1, + [205984] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10286), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6150), 1, sym_comment, - [205827] = 3, + [206003] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6152), 1, + STATE(6151), 1, sym_comment, - ACTIONS(10304), 4, + ACTIONS(10288), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [205840] = 3, + [206016] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(5757), 1, + sym_parameter_parens, + STATE(5758), 1, + sym_parameter_bracks, + STATE(6152), 1, + sym_comment, + [206035] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(6153), 1, sym_comment, - ACTIONS(10306), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [205853] = 5, + ACTIONS(1749), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1751), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206050] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2150), 1, - anon_sym_LBRACE, - ACTIONS(10308), 1, - anon_sym_DOT_DOT2, STATE(6154), 1, sym_comment, - ACTIONS(10310), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205870] = 5, + ACTIONS(10288), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206063] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2158), 1, - anon_sym_LBRACE, - ACTIONS(10312), 1, - anon_sym_DOT_DOT2, STATE(6155), 1, sym_comment, - ACTIONS(10314), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205887] = 5, + ACTIONS(10246), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206076] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2166), 1, - anon_sym_LBRACE, - ACTIONS(10316), 1, - anon_sym_DOT_DOT2, + ACTIONS(9913), 1, + anon_sym_RPAREN, + STATE(6101), 1, + aux_sym__block_body_repeat1, STATE(6156), 1, sym_comment, - ACTIONS(10318), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [205904] = 5, + ACTIONS(10194), 2, + sym__newline, + anon_sym_SEMI, + [206093] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9745), 1, - anon_sym_RPAREN, - STATE(6096), 1, - aux_sym__block_body_repeat1, STATE(6157), 1, sym_comment, - ACTIONS(10246), 2, + ACTIONS(10246), 4, sym__newline, anon_sym_SEMI, - [205921] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206106] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6158), 1, sym_comment, - ACTIONS(10306), 4, + ACTIONS(10290), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [205934] = 6, + [206119] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10320), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + ACTIONS(5856), 1, + anon_sym_PIPE, STATE(6159), 1, sym_comment, - [205953] = 6, + ACTIONS(5847), 2, + anon_sym_if, + anon_sym_EQ_GT, + [206136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(1805), 1, + anon_sym_RBRACE, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10322), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6160), 1, sym_comment, - [205972] = 6, - ACTIONS(3), 1, + [206155] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10324), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6161), 1, sym_comment, - [205991] = 6, + ACTIONS(6264), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [206168] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10326), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10292), 1, + anon_sym_DQUOTE, STATE(6162), 1, sym_comment, - [206010] = 6, - ACTIONS(3), 1, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206185] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10328), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6163), 1, sym_comment, - [206029] = 6, + ACTIONS(6266), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [206198] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2240), 1, + anon_sym_RBRACE, + ACTIONS(2242), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10330), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6164), 1, sym_comment, - [206048] = 6, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [206217] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2244), 1, + anon_sym_RBRACE, + ACTIONS(2246), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10332), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6165), 1, sym_comment, - [206067] = 6, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [206236] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10334), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6166), 1, + ACTIONS(3486), 1, + anon_sym_COLON2, + ACTIONS(10294), 2, + sym__newline, + sym__space, + STATE(6166), 2, sym_comment, - [206086] = 3, + aux_sym_ctrl_do_parenthesized_repeat2, + [206251] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6167), 1, sym_comment, - ACTIONS(5643), 4, - ts_builtin_sym_end, + ACTIONS(10297), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [206099] = 6, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206264] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_RBRACE, - ACTIONS(2196), 1, - anon_sym_LPAREN2, - ACTIONS(2198), 1, - sym__entry_separator, - ACTIONS(2200), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(10299), 1, + anon_sym_DQUOTE, STATE(6168), 1, sym_comment, - [206118] = 3, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206281] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6169), 1, sym_comment, - ACTIONS(5657), 4, - ts_builtin_sym_end, + ACTIONS(10297), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [206131] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206294] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6170), 1, sym_comment, - ACTIONS(10336), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [206144] = 5, + ACTIONS(10301), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206307] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(943), 1, - sym__table_head_separator, - ACTIONS(10338), 1, - anon_sym_DOT2, - STATE(7245), 1, - sym_path, - STATE(6171), 2, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(5705), 1, + sym_parameter_parens, + STATE(5710), 1, + sym_parameter_bracks, + STATE(6171), 1, sym_comment, - aux_sym_cell_path_repeat1, - [206161] = 5, + [206326] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10341), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10303), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6172), 1, sym_comment, - STATE(6178), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206178] = 6, + [206345] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10343), 1, + ACTIONS(10305), 1, anon_sym_COLON, - ACTIONS(10345), 1, + ACTIONS(10307), 1, anon_sym_GT2, - STATE(5296), 1, + STATE(5341), 1, aux_sym__multiple_types_repeat1, STATE(6173), 1, sym_comment, - [206197] = 3, + [206364] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6174), 1, sym_comment, - ACTIONS(5647), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [206210] = 6, + ACTIONS(10309), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [206377] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10347), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10311), 1, + anon_sym_COLON, + ACTIONS(10313), 1, + anon_sym_GT2, + STATE(5355), 1, aux_sym__multiple_types_repeat1, STATE(6175), 1, sym_comment, - [206229] = 4, + [206396] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10315), 1, + anon_sym_DQUOTE, STATE(6176), 1, sym_comment, - ACTIONS(8248), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8250), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [206244] = 6, + STATE(6182), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206413] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1506), 1, - anon_sym_SEMI, - ACTIONS(3811), 1, - sym__newline, - STATE(288), 1, - aux_sym__parenthesized_body_repeat1, STATE(6177), 1, sym_comment, - STATE(6678), 1, - aux_sym_shebang_repeat1, - [206263] = 5, + ACTIONS(10317), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206426] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10349), 1, - anon_sym_DQUOTE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10319), 1, + anon_sym_COLON, + ACTIONS(10321), 1, + anon_sym_GT2, + STATE(5401), 1, + aux_sym__multiple_types_repeat1, STATE(6178), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206280] = 3, - ACTIONS(251), 1, + [206445] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10323), 1, + anon_sym_COLON, + ACTIONS(10325), 1, + anon_sym_GT2, + STATE(5415), 1, + aux_sym__multiple_types_repeat1, STATE(6179), 1, sym_comment, - ACTIONS(10351), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [206293] = 4, - ACTIONS(3), 1, + [206464] = 4, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, STATE(6180), 1, sym_comment, - ACTIONS(1757), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1759), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [206308] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2124), 1, - anon_sym_RBRACE, - ACTIONS(2130), 1, - sym__entry_separator, - STATE(6181), 1, - sym_comment, - STATE(7370), 1, - sym__expr_parenthesized_immediate, - [206327] = 3, + ACTIONS(2174), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [206479] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6182), 1, + STATE(6181), 1, sym_comment, - ACTIONS(10353), 4, + ACTIONS(10317), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206340] = 3, + [206492] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10327), 1, + anon_sym_DQUOTE, + STATE(6182), 1, + sym_comment, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206509] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6183), 1, sym_comment, - ACTIONS(10353), 4, + ACTIONS(10329), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206353] = 6, + [206522] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10355), 1, - anon_sym_COLON, - ACTIONS(10357), 1, - anon_sym_GT2, - STATE(5297), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10331), 1, + anon_sym_COLON2, STATE(6184), 1, sym_comment, - [206372] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10359), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6185), 1, - sym_comment, - [206391] = 5, + aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(7463), 2, + sym__newline, + sym__space, + [206539] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10361), 1, - anon_sym_DQUOTE, - STATE(6186), 1, + ACTIONS(10333), 1, + anon_sym_COLON2, + STATE(6166), 1, + aux_sym_ctrl_do_parenthesized_repeat2, + STATE(6185), 1, sym_comment, - STATE(6227), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206408] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(7463), 2, sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4406), 1, - sym_block, - STATE(6187), 1, - sym_comment, - STATE(6326), 1, - aux_sym_shebang_repeat1, - [206427] = 6, + sym__space, + [206556] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10363), 1, + ACTIONS(10335), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6188), 1, + STATE(6186), 1, sym_comment, - [206446] = 6, + [206575] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10365), 1, + ACTIONS(10337), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6189), 1, + STATE(6187), 1, sym_comment, - [206465] = 6, + [206594] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10367), 1, + ACTIONS(10339), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6190), 1, + STATE(6188), 1, sym_comment, - [206484] = 6, + [206613] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10369), 1, + ACTIONS(10341), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6191), 1, + STATE(6189), 1, sym_comment, - [206503] = 6, + [206632] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10371), 1, + ACTIONS(10343), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6192), 1, + STATE(6190), 1, sym_comment, - [206522] = 6, + [206651] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10373), 1, + ACTIONS(10345), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6193), 1, + STATE(6191), 1, sym_comment, - [206541] = 6, + [206670] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10375), 1, + ACTIONS(10347), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6194), 1, + STATE(6192), 1, sym_comment, - [206560] = 6, + [206689] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10377), 1, + ACTIONS(10349), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6195), 1, + STATE(6193), 1, sym_comment, - [206579] = 3, + [206708] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6196), 1, + ACTIONS(9660), 1, + anon_sym_LBRACE, + STATE(4614), 1, + sym_block, + STATE(4638), 1, + sym_val_closure, + STATE(4782), 1, + sym__blosure, + STATE(6194), 1, sym_comment, - ACTIONS(10379), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [206592] = 4, + [206727] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2200), 1, + ACTIONS(1749), 1, aux_sym_unquoted_token2, - STATE(6197), 1, + STATE(6195), 1, sym_comment, - ACTIONS(2198), 3, + ACTIONS(1751), 3, anon_sym_PIPE, anon_sym_if, anon_sym_EQ_GT, - [206607] = 3, + [206742] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6196), 1, + sym_comment, + ACTIONS(1731), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1733), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [206757] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6198), 1, + STATE(6197), 1, sym_comment, - ACTIONS(10381), 4, + ACTIONS(5625), 4, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206620] = 3, - ACTIONS(251), 1, + anon_sym_LBRACE, + [206770] = 6, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6199), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10351), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6198), 1, sym_comment, - ACTIONS(10383), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [206633] = 4, + [206789] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, + ACTIONS(2284), 1, + sym__entry_separator, + ACTIONS(10353), 1, + anon_sym_LBRACK2, + STATE(6199), 1, + sym_comment, + ACTIONS(2280), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [206806] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6200), 1, sym_comment, - ACTIONS(2229), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [206648] = 5, - ACTIONS(3), 1, + ACTIONS(8263), 4, + anon_sym_EQ, + anon_sym_DASH_GT, + anon_sym_AT, + anon_sym_LBRACE, + [206819] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10385), 1, - anon_sym_DQUOTE, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + ACTIONS(10355), 1, + anon_sym_DOT_DOT2, STATE(6201), 1, sym_comment, - STATE(6207), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206665] = 6, + ACTIONS(10357), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [206836] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(10387), 1, - anon_sym_DOT, - ACTIONS(10389), 1, - aux_sym__immediate_decimal_token2, STATE(6202), 1, sym_comment, - [206684] = 6, + ACTIONS(10359), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206849] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10133), 1, - anon_sym_use, - ACTIONS(10135), 1, - anon_sym_list, - ACTIONS(10137), 1, - anon_sym_hide, - ACTIONS(10139), 1, - anon_sym_new, STATE(6203), 1, sym_comment, - [206703] = 3, + ACTIONS(10361), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206862] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6204), 1, sym_comment, - ACTIONS(6293), 4, - ts_builtin_sym_end, + ACTIONS(10363), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [206716] = 3, + anon_sym_RPAREN, + anon_sym_RBRACE, + [206875] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6205), 1, sym_comment, - ACTIONS(10391), 4, + ACTIONS(10365), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206729] = 3, + [206888] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6206), 1, sym_comment, - ACTIONS(10393), 4, + ACTIONS(10367), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206742] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10395), 1, - anon_sym_DQUOTE, - STATE(6207), 1, - sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [206759] = 3, + [206901] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6208), 1, + STATE(6207), 1, sym_comment, - ACTIONS(10397), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [206772] = 5, + ACTIONS(10369), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [206914] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10399), 1, + ACTIONS(10371), 1, anon_sym_DQUOTE, - STATE(6209), 1, + STATE(6208), 1, sym_comment, - STATE(6295), 1, + STATE(6211), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [206789] = 4, + [206931] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6210), 1, + ACTIONS(2230), 1, + anon_sym_PIPE, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + STATE(6209), 1, sym_comment, - ACTIONS(2265), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token4, - ACTIONS(2267), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [206804] = 6, + ACTIONS(2226), 2, + anon_sym_if, + anon_sym_EQ_GT, + [206948] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, + ACTIONS(1000), 1, + sym__entry_separator, + ACTIONS(1004), 1, anon_sym_RBRACE, - ACTIONS(2239), 1, + ACTIONS(2208), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, - sym__entry_separator, - ACTIONS(2243), 1, + ACTIONS(2210), 1, aux_sym__unquoted_in_record_token4, + STATE(6210), 1, + sym_comment, + [206967] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10373), 1, + anon_sym_DQUOTE, STATE(6211), 1, sym_comment, - [206823] = 3, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [206984] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6212), 1, sym_comment, - ACTIONS(10401), 4, + ACTIONS(10375), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [206836] = 4, - ACTIONS(3), 1, + [206997] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6213), 1, sym_comment, - ACTIONS(8252), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8254), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [206851] = 6, + ACTIONS(10377), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207010] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10403), 1, + ACTIONS(10379), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6214), 1, sym_comment, - [206870] = 6, + [207029] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10405), 1, + ACTIONS(10381), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6215), 1, sym_comment, - [206889] = 6, + [207048] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10407), 1, + ACTIONS(10383), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6216), 1, sym_comment, - [206908] = 6, + [207067] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10409), 1, + ACTIONS(10385), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6217), 1, sym_comment, - [206927] = 6, + [207086] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10411), 1, + ACTIONS(10387), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6218), 1, sym_comment, - [206946] = 6, + [207105] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10413), 1, + ACTIONS(10389), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6219), 1, sym_comment, - [206965] = 6, + [207124] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10415), 1, + ACTIONS(10391), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6220), 1, sym_comment, - [206984] = 6, + [207143] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10417), 1, + ACTIONS(10393), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6221), 1, sym_comment, - [207003] = 3, - ACTIONS(251), 1, + [207162] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10395), 1, + anon_sym_COLON, + ACTIONS(10397), 1, + anon_sym_GT2, + STATE(5312), 1, + aux_sym__multiple_types_repeat1, STATE(6222), 1, sym_comment, - ACTIONS(10401), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [207016] = 3, + [207181] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6223), 1, sym_comment, - ACTIONS(10419), 4, + ACTIONS(10399), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [207029] = 3, - ACTIONS(251), 1, + [207194] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10401), 1, + anon_sym_DQUOTE, STATE(6224), 1, sym_comment, - ACTIONS(10421), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [207042] = 6, + STATE(6226), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_record_token4, - ACTIONS(2245), 1, - anon_sym_RBRACE, - ACTIONS(2247), 1, - sym__entry_separator, + ACTIONS(10403), 1, + anon_sym_LPAREN, STATE(6225), 1, sym_comment, - [207061] = 5, + ACTIONS(10405), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [207226] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10423), 1, + ACTIONS(10407), 1, anon_sym_DQUOTE, STATE(6226), 1, sym_comment, - STATE(6230), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [207078] = 5, + [207243] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10425), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10409), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6227), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207095] = 6, - ACTIONS(3), 1, + [207262] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2273), 1, - anon_sym_RBRACE, - ACTIONS(2275), 1, - sym__entry_separator, + ACTIONS(1817), 1, + aux_sym_unquoted_token2, STATE(6228), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - [207114] = 6, - ACTIONS(251), 1, + ACTIONS(1819), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [207277] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(5747), 1, - sym_parameter_parens, - STATE(5748), 1, - sym_parameter_bracks, + ACTIONS(10411), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6229), 1, sym_comment, - [207133] = 5, - ACTIONS(3), 1, + [207296] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10427), 1, - anon_sym_DQUOTE, STATE(6230), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207150] = 4, + ACTIONS(10413), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207309] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6231), 1, - sym_comment, - ACTIONS(8256), 2, - anon_sym_AT, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(8258), 2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10415), 1, anon_sym_RBRACK, - anon_sym_GT2, - [207165] = 4, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6231), 1, + sym_comment, + [207328] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6232), 1, - sym_comment, - ACTIONS(8002), 2, - anon_sym_AT, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(8004), 2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10417), 1, anon_sym_RBRACK, - anon_sym_GT2, - [207180] = 5, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6232), 1, + sym_comment, + [207347] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10429), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10419), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6233), 1, sym_comment, - STATE(6278), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207197] = 5, - ACTIONS(251), 1, + [207366] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2176), 1, - anon_sym_LBRACE, - ACTIONS(10431), 1, - anon_sym_DOT_DOT2, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10421), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6234), 1, sym_comment, - ACTIONS(10433), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207214] = 6, + [207385] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10435), 1, + ACTIONS(10423), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6235), 1, sym_comment, - [207233] = 6, + [207404] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10437), 1, + ACTIONS(10425), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6236), 1, sym_comment, - [207252] = 6, + [207423] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10439), 1, + ACTIONS(10427), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6237), 1, sym_comment, - [207271] = 6, + [207442] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10441), 1, + ACTIONS(10429), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6238), 1, sym_comment, - [207290] = 6, - ACTIONS(3), 1, + [207461] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10443), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6239), 1, sym_comment, - [207309] = 6, - ACTIONS(3), 1, + ACTIONS(10431), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207474] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10445), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6240), 1, sym_comment, - [207328] = 6, + ACTIONS(10433), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207487] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10447), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10435), 1, + anon_sym_DQUOTE, STATE(6241), 1, sym_comment, - [207347] = 6, + STATE(6247), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [207504] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10449), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10437), 1, + anon_sym_COLON, + ACTIONS(10439), 1, + anon_sym_GT2, + STATE(5346), 1, aux_sym__multiple_types_repeat1, STATE(6242), 1, sym_comment, - [207366] = 6, + [207523] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10451), 1, + ACTIONS(10441), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6243), 1, sym_comment, - [207385] = 4, + [207542] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6244), 1, sym_comment, - ACTIONS(8006), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8008), 2, + ACTIONS(1772), 2, anon_sym_RBRACK, - anon_sym_GT2, - [207400] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1683), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1774), 2, anon_sym_LPAREN2, - ACTIONS(2217), 1, - anon_sym_RBRACE, - ACTIONS(2219), 1, sym__entry_separator, + [207557] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2196), 1, + anon_sym_PIPE, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(6245), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - [207419] = 6, + ACTIONS(2192), 2, + anon_sym_if, + anon_sym_EQ_GT, + [207574] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(1786), 1, - anon_sym_RBRACK, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + ACTIONS(2202), 1, + anon_sym_PIPE, STATE(6246), 1, sym_comment, - [207438] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6247), 1, - sym_comment, - ACTIONS(10453), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [207451] = 5, + ACTIONS(2200), 2, + anon_sym_if, + anon_sym_EQ_GT, + [207591] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10455), 1, + ACTIONS(10443), 1, anon_sym_DQUOTE, - STATE(6248), 1, + STATE(6247), 1, sym_comment, - STATE(6252), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [207468] = 4, + [207608] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - STATE(6249), 1, + STATE(6248), 1, sym_comment, - ACTIONS(1759), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [207483] = 6, + ACTIONS(5631), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [207621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10457), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6250), 1, + ACTIONS(10445), 1, + anon_sym_DQUOTE, + ACTIONS(10447), 2, + sym__escaped_str_content, + sym_escape_sequence, + STATE(6249), 2, sym_comment, - [207502] = 5, + aux_sym__str_double_quotes_repeat1, + [207636] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(10459), 1, - anon_sym_DOT_DOT2, - STATE(6251), 1, + STATE(6250), 1, sym_comment, - ACTIONS(10461), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [207519] = 5, + ACTIONS(5635), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [207649] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10463), 1, - anon_sym_DQUOTE, - STATE(6252), 1, + ACTIONS(10450), 1, + anon_sym_LPAREN, + STATE(6251), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207536] = 6, + ACTIONS(10452), 3, + sym_escaped_interpolated_content, + anon_sym_DQUOTE2, + sym_inter_escape_sequence, + [207664] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(1795), 1, anon_sym_LPAREN2, - ACTIONS(2140), 1, + ACTIONS(1803), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2188), 1, anon_sym_RBRACE, - ACTIONS(2142), 1, - sym__entry_separator, - STATE(6253), 1, - sym_comment, - STATE(7370), 1, - sym__expr_parenthesized_immediate, - [207555] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6254), 1, - sym_comment, - ACTIONS(8010), 2, - anon_sym_AT, + ACTIONS(2190), 1, sym__entry_separator, - ACTIONS(8012), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [207570] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(3505), 1, - anon_sym_COLON2, - ACTIONS(10465), 2, - sym__newline, - sym__space, - STATE(6255), 2, - sym_comment, - aux_sym_ctrl_do_parenthesized_repeat2, - [207585] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6256), 1, + STATE(6252), 1, sym_comment, - ACTIONS(8014), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8016), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [207600] = 3, + [207683] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6257), 1, + STATE(6253), 1, sym_comment, - ACTIONS(10468), 4, + ACTIONS(10454), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [207613] = 6, + [207696] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10470), 1, + ACTIONS(10456), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6258), 1, + STATE(6254), 1, sym_comment, - [207632] = 6, + [207715] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10472), 1, + ACTIONS(10458), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6259), 1, + STATE(6255), 1, sym_comment, - [207651] = 6, + [207734] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10474), 1, + ACTIONS(10460), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6260), 1, + STATE(6256), 1, sym_comment, - [207670] = 6, + [207753] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10476), 1, + ACTIONS(10462), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6261), 1, + STATE(6257), 1, sym_comment, - [207689] = 6, + [207772] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10478), 1, + ACTIONS(10464), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6262), 1, + STATE(6258), 1, sym_comment, - [207708] = 6, + [207791] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10480), 1, + ACTIONS(10466), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6263), 1, + STATE(6259), 1, sym_comment, - [207727] = 6, + [207810] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10482), 1, + ACTIONS(10468), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6264), 1, + STATE(6260), 1, sym_comment, - [207746] = 6, + [207829] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10484), 1, + ACTIONS(10470), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6265), 1, - sym_comment, - [207765] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6266), 1, - sym_comment, - ACTIONS(10486), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [207778] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6267), 1, + STATE(6261), 1, sym_comment, - ACTIONS(10397), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [207791] = 6, + [207848] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1793), 1, + anon_sym_RBRACE, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10488), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6268), 1, + ACTIONS(1803), 1, + aux_sym__unquoted_in_record_token2, + STATE(6262), 1, sym_comment, - [207810] = 4, + [207867] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6269), 1, + STATE(6263), 1, sym_comment, - ACTIONS(1757), 2, + ACTIONS(1749), 2, anon_sym_RBRACE, aux_sym__unquoted_in_record_token2, - ACTIONS(1759), 2, + ACTIONS(1751), 2, anon_sym_LPAREN2, sym__entry_separator, - [207825] = 5, + [207882] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6264), 1, + sym_comment, + ACTIONS(10472), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [207895] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6265), 1, + sym_comment, + ACTIONS(10474), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207908] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10490), 1, + ACTIONS(10476), 1, anon_sym_DQUOTE, - STATE(6270), 1, + STATE(6266), 1, sym_comment, - STATE(6274), 1, + STATE(6269), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [207842] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6271), 1, - sym_comment, - ACTIONS(8228), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8230), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [207857] = 4, - ACTIONS(3), 1, + [207925] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2267), 1, - anon_sym_PIPE, - STATE(6272), 1, + STATE(6267), 1, sym_comment, - ACTIONS(2265), 3, - anon_sym_if, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [207872] = 3, + ACTIONS(10478), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [207938] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6273), 1, + STATE(6268), 1, sym_comment, - ACTIONS(10492), 4, + ACTIONS(10480), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [207885] = 5, + [207951] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10494), 1, + ACTIONS(10482), 1, anon_sym_DQUOTE, - STATE(6274), 1, - sym_comment, - STATE(6515), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + STATE(6269), 1, + sym_comment, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [207902] = 3, + [207968] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6275), 1, + STATE(6270), 1, sym_comment, - ACTIONS(10496), 4, + ACTIONS(10484), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [207915] = 4, + [207981] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10498), 1, - anon_sym_LPAREN, - STATE(6276), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10486), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6271), 1, sym_comment, - ACTIONS(10500), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [207930] = 6, + [208000] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10502), 1, - anon_sym_COLON, - ACTIONS(10504), 1, - anon_sym_GT2, - STATE(5371), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10488), 1, + anon_sym_RBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6277), 1, + STATE(6272), 1, sym_comment, - [207949] = 5, + [208019] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10506), 1, - anon_sym_DQUOTE, - STATE(6278), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10490), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6273), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [207966] = 6, + [208038] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10508), 1, - anon_sym_COLON, - ACTIONS(10510), 1, - anon_sym_GT2, - STATE(5373), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10492), 1, + anon_sym_RBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6279), 1, + STATE(6274), 1, sym_comment, - [207985] = 6, + [208057] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10512), 1, + ACTIONS(10494), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6280), 1, + STATE(6275), 1, sym_comment, - [208004] = 6, + [208076] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10514), 1, + ACTIONS(10496), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6281), 1, + STATE(6276), 1, sym_comment, - [208023] = 6, + [208095] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10516), 1, + ACTIONS(10498), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6277), 1, + sym_comment, + [208114] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10500), 1, + anon_sym_RBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, + STATE(6278), 1, + sym_comment, + [208133] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6279), 1, + sym_comment, + ACTIONS(10502), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [208146] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10504), 1, + anon_sym_DQUOTE, + STATE(6280), 1, + sym_comment, + STATE(6281), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208163] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10506), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6281), 1, + sym_comment, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208180] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6282), 1, sym_comment, - [208042] = 6, + ACTIONS(10508), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208193] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10518), 1, + ACTIONS(10510), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6283), 1, sym_comment, - [208061] = 6, + [208212] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10520), 1, + ACTIONS(10512), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6284), 1, sym_comment, - [208080] = 6, + [208231] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10522), 1, + ACTIONS(10514), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6285), 1, sym_comment, - [208099] = 6, + [208250] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10524), 1, + ACTIONS(10516), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6286), 1, sym_comment, - [208118] = 6, + [208269] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10526), 1, + ACTIONS(10518), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6287), 1, sym_comment, - [208137] = 6, + [208288] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10528), 1, - anon_sym_COLON, - ACTIONS(10530), 1, - anon_sym_GT2, - STATE(5374), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10520), 1, + anon_sym_RBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6288), 1, sym_comment, - [208156] = 6, - ACTIONS(251), 1, + [208307] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, - sym_identifier, - STATE(5492), 1, - sym_val_variable, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10522), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6289), 1, sym_comment, - STATE(7752), 1, - sym__variable_name, - [208175] = 3, - ACTIONS(251), 1, + [208326] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10524), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6290), 1, sym_comment, - ACTIONS(10532), 4, + [208345] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6291), 1, + sym_comment, + ACTIONS(10526), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [208188] = 5, + [208358] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10534), 1, + ACTIONS(10528), 1, anon_sym_DQUOTE, - STATE(6291), 1, + STATE(6292), 1, sym_comment, STATE(6293), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [208205] = 5, + [208375] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10536), 1, + ACTIONS(10530), 1, anon_sym_DQUOTE, - STATE(6292), 1, - sym_comment, - STATE(6515), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208222] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10538), 1, - anon_sym_DQUOTE, STATE(6293), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [208239] = 4, - ACTIONS(251), 1, + [208392] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, - aux_sym_unquoted_token2, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10532), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6294), 1, sym_comment, - ACTIONS(1863), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [208254] = 5, - ACTIONS(3), 1, + [208411] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10540), 1, - anon_sym_DQUOTE, STATE(6295), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208271] = 6, - ACTIONS(3), 1, + ACTIONS(10508), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208424] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10542), 1, - anon_sym_COLON, - ACTIONS(10544), 1, - anon_sym_GT2, - STATE(5375), 1, - aux_sym__multiple_types_repeat1, STATE(6296), 1, sym_comment, - [208290] = 6, - ACTIONS(3), 1, + ACTIONS(10534), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208437] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10546), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6297), 1, sym_comment, - [208309] = 6, + ACTIONS(10534), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208450] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10548), 1, + ACTIONS(10536), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6298), 1, sym_comment, - [208328] = 6, + [208469] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10550), 1, + ACTIONS(10538), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6299), 1, sym_comment, - [208347] = 6, + [208488] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10552), 1, + ACTIONS(10540), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6300), 1, sym_comment, - [208366] = 6, + [208507] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10554), 1, + ACTIONS(10542), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6301), 1, sym_comment, - [208385] = 6, + [208526] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10556), 1, + ACTIONS(10544), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6302), 1, sym_comment, - [208404] = 6, + [208545] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10558), 1, + ACTIONS(10546), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6303), 1, sym_comment, - [208423] = 6, + [208564] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10560), 1, + ACTIONS(10548), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6304), 1, sym_comment, - [208442] = 3, - ACTIONS(251), 1, + [208583] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10550), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6305), 1, sym_comment, - ACTIONS(10562), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208455] = 3, - ACTIONS(251), 1, + [208602] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1591), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2170), 1, + anon_sym_RBRACK, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + ACTIONS(2174), 1, + sym__entry_separator, STATE(6306), 1, sym_comment, - ACTIONS(10564), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [208468] = 5, + [208621] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10566), 1, - anon_sym_DQUOTE, STATE(6307), 1, sym_comment, + ACTIONS(1817), 2, + anon_sym_RBRACK, + aux_sym__unquoted_in_list_token2, + ACTIONS(1819), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [208636] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6308), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208485] = 5, + sym_comment, + ACTIONS(10552), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [208649] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10568), 1, + ACTIONS(10554), 1, anon_sym_DQUOTE, - STATE(6308), 1, + STATE(6309), 1, sym_comment, - STATE(6515), 1, + STATE(6311), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [208502] = 6, + [208666] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(10556), 1, + anon_sym_RBRACK, + ACTIONS(10558), 1, sym__entry_separator, - ACTIONS(10570), 1, - anon_sym_COLON, - ACTIONS(10572), 1, - anon_sym_GT2, - STATE(5414), 1, - aux_sym__multiple_types_repeat1, - STATE(6309), 1, + STATE(6310), 1, sym_comment, - [208521] = 5, + STATE(7388), 1, + sym__expr_parenthesized_immediate, + [208685] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10574), 1, + ACTIONS(10560), 1, anon_sym_DQUOTE, - STATE(6292), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - STATE(6310), 1, + STATE(6311), 1, sym_comment, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [208538] = 5, + [208702] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7517), 1, - anon_sym_COLON2, - STATE(6311), 1, + STATE(6312), 1, sym_comment, - STATE(6583), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7511), 2, - sym__newline, - sym__space, - [208555] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(8227), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10576), 1, + ACTIONS(8229), 2, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6312), 1, - sym_comment, - [208574] = 6, + anon_sym_GT2, + [208717] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10578), 1, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(5944), 1, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5946), 1, + sym__entry_separator, STATE(6313), 1, sym_comment, - [208593] = 6, + STATE(7258), 1, + sym__expr_parenthesized_immediate, + [208736] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10580), 1, + ACTIONS(10562), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6314), 1, sym_comment, - [208612] = 6, - ACTIONS(3), 1, + [208755] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10582), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6315), 1, sym_comment, - [208631] = 6, + ACTIONS(10564), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [208768] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10584), 1, + ACTIONS(10566), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6316), 1, sym_comment, - [208650] = 6, + [208787] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10586), 1, + ACTIONS(10568), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6317), 1, sym_comment, - [208669] = 6, + [208806] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10588), 1, + ACTIONS(10570), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6318), 1, sym_comment, - [208688] = 6, + [208825] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10590), 1, + ACTIONS(10572), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6319), 1, sym_comment, - [208707] = 6, + [208844] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10592), 1, + ACTIONS(10574), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6320), 1, sym_comment, - [208726] = 3, - ACTIONS(251), 1, + [208863] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10576), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6321), 1, sym_comment, - ACTIONS(10594), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [208739] = 5, + [208882] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10596), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10578), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6322), 1, sym_comment, - STATE(6324), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208756] = 3, - ACTIONS(251), 1, + [208901] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10580), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6323), 1, sym_comment, - ACTIONS(10598), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208769] = 5, + [208920] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10600), 1, - anon_sym_DQUOTE, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(10582), 1, + anon_sym_RBRACK, + ACTIONS(10584), 1, + sym__entry_separator, STATE(6324), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208786] = 6, + STATE(7388), 1, + sym__expr_parenthesized_immediate, + [208939] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10602), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6325), 1, sym_comment, - [208805] = 6, + ACTIONS(8231), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8233), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [208954] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4487), 1, - sym_block, STATE(6326), 1, sym_comment, - [208824] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6327), 1, - sym_comment, - ACTIONS(10604), 4, + ACTIONS(10586), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [208837] = 5, + [208967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10606), 1, + ACTIONS(10588), 1, anon_sym_DQUOTE, - STATE(6328), 1, + STATE(6327), 1, sym_comment, - STATE(6330), 1, + STATE(6328), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [208984] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10590), 1, + anon_sym_DQUOTE, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + STATE(6328), 1, + sym_comment, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [208854] = 3, + [209001] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10592), 1, + anon_sym_RBRACK, + STATE(5017), 1, + aux_sym_parameter_repeat2, STATE(6329), 1, sym_comment, - ACTIONS(10608), 4, + ACTIONS(2535), 2, sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [208867] = 5, - ACTIONS(3), 1, + anon_sym_COMMA, + [209018] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10610), 1, - anon_sym_DQUOTE, STATE(6330), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208884] = 6, + ACTIONS(6268), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [209031] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10612), 1, + ACTIONS(10594), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6331), 1, sym_comment, - [208903] = 3, - ACTIONS(251), 1, + [209050] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10596), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6332), 1, sym_comment, - ACTIONS(10614), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [208916] = 5, + [209069] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10616), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10598), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6333), 1, sym_comment, - STATE(6335), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208933] = 6, + [209088] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10618), 1, + ACTIONS(10600), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6334), 1, sym_comment, - [208952] = 5, + [209107] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10620), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10602), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6335), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [208969] = 5, + [209126] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10622), 1, - anon_sym_COLON2, - STATE(6255), 1, - aux_sym_ctrl_do_parenthesized_repeat2, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10604), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6336), 1, sym_comment, - ACTIONS(7511), 2, - sym__newline, - sym__space, - [208986] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6337), 1, - sym_comment, - ACTIONS(10624), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [208999] = 5, + [209145] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10626), 1, - anon_sym_DQUOTE, - STATE(6338), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10606), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6337), 1, sym_comment, - STATE(6340), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209016] = 6, + [209164] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10628), 1, + ACTIONS(10608), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6339), 1, + STATE(6338), 1, sym_comment, - [209035] = 5, - ACTIONS(3), 1, + [209183] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10630), 1, - anon_sym_DQUOTE, - STATE(6340), 1, + STATE(6339), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209052] = 6, + ACTIONS(6270), 4, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + anon_sym_LBRACE, + [209196] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(1591), 1, + aux_sym__unquoted_in_record_token2, + ACTIONS(2170), 1, + anon_sym_RBRACE, + ACTIONS(2172), 1, + anon_sym_LPAREN2, + ACTIONS(2174), 1, sym__entry_separator, - ACTIONS(10632), 1, - anon_sym_COLON, - ACTIONS(10634), 1, - anon_sym_GT2, - STATE(5299), 1, - aux_sym__multiple_types_repeat1, - STATE(6341), 1, + STATE(6340), 1, sym_comment, - [209071] = 3, + [209215] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6342), 1, + STATE(6341), 1, sym_comment, - ACTIONS(10636), 4, + ACTIONS(10610), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [209084] = 5, + [209228] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10638), 1, + ACTIONS(10612), 1, anon_sym_DQUOTE, - STATE(6343), 1, + STATE(6342), 1, sym_comment, - STATE(6344), 1, + STATE(6345), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209101] = 5, - ACTIONS(3), 1, + [209245] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6343), 1, + sym_comment, + ACTIONS(10508), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209258] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10640), 1, - anon_sym_DQUOTE, STATE(6344), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209118] = 6, + ACTIONS(10508), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209271] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10642), 1, - anon_sym_COLON, - ACTIONS(10644), 1, - anon_sym_GT2, - STATE(5345), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10614), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6345), 1, sym_comment, - [209137] = 3, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [209288] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6346), 1, sym_comment, - ACTIONS(10646), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209150] = 5, - ACTIONS(3), 1, + ACTIONS(10616), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209301] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10648), 1, - anon_sym_DQUOTE, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4452), 1, + sym_block, STATE(6347), 1, sym_comment, - STATE(6348), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209167] = 5, - ACTIONS(3), 1, + [209320] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10650), 1, - anon_sym_DQUOTE, STATE(6348), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209184] = 6, + ACTIONS(10618), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209333] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(5767), 1, - sym_parameter_parens, - STATE(5768), 1, - sym_parameter_bracks, STATE(6349), 1, sym_comment, - [209203] = 3, - ACTIONS(251), 1, + ACTIONS(10620), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [209346] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10622), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6350), 1, sym_comment, - ACTIONS(10652), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209216] = 5, + [209365] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10654), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10624), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6351), 1, sym_comment, - STATE(6352), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209233] = 5, + [209384] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10656), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10626), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6352), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209250] = 6, + [209403] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10658), 1, + ACTIONS(10628), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6353), 1, sym_comment, - [209269] = 3, - ACTIONS(251), 1, + [209422] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10630), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6354), 1, sym_comment, - ACTIONS(10660), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209282] = 5, + [209441] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10662), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10632), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6355), 1, sym_comment, - STATE(6356), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209299] = 5, + [209460] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10664), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10634), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6356), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209316] = 6, + [209479] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10666), 1, - anon_sym_COLON, - ACTIONS(10668), 1, - anon_sym_GT2, - STATE(5348), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10636), 1, + anon_sym_RBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6357), 1, sym_comment, - [209335] = 3, + [209498] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4451), 1, + sym_block, + STATE(6092), 1, + aux_sym_shebang_repeat1, STATE(6358), 1, sym_comment, - ACTIONS(10670), 4, + [209517] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6359), 1, + sym_comment, + ACTIONS(10638), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [209348] = 5, + [209530] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10672), 1, + ACTIONS(10640), 1, anon_sym_DQUOTE, - STATE(6359), 1, - sym_comment, STATE(6360), 1, + sym_comment, + STATE(6361), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209365] = 5, + [209547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10674), 1, + ACTIONS(10642), 1, anon_sym_DQUOTE, - STATE(6360), 1, - sym_comment, - STATE(6515), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + STATE(6361), 1, + sym_comment, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209382] = 6, + [209564] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10676), 1, + ACTIONS(10644), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6361), 1, - sym_comment, - [209401] = 3, - ACTIONS(251), 1, - anon_sym_POUND, STATE(6362), 1, sym_comment, - ACTIONS(10678), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209414] = 5, + [209583] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10680), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10646), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6363), 1, sym_comment, - STATE(6364), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209431] = 5, + [209602] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10682), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10648), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6364), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209448] = 6, + [209621] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10684), 1, + ACTIONS(10650), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6365), 1, sym_comment, - [209467] = 3, - ACTIONS(251), 1, + [209640] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10652), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6366), 1, sym_comment, - ACTIONS(10686), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209480] = 5, + [209659] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10688), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10654), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6367), 1, sym_comment, - STATE(6368), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209497] = 5, + [209678] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10690), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10656), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6368), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209514] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10692), 1, - anon_sym_COLON, - ACTIONS(10694), 1, - anon_sym_GT2, - STATE(5364), 1, + [209697] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10658), 1, + anon_sym_RBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6369), 1, sym_comment, - [209533] = 3, - ACTIONS(251), 1, + [209716] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6370), 1, sym_comment, - ACTIONS(10696), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209546] = 5, + ACTIONS(8139), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8141), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [209731] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10698), 1, + ACTIONS(10660), 1, anon_sym_DQUOTE, STATE(6371), 1, sym_comment, STATE(6372), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209563] = 5, + [209748] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10700), 1, + ACTIONS(10662), 1, anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6372), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209580] = 3, - ACTIONS(251), 1, + [209765] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10664), 1, + anon_sym_COLON, + ACTIONS(10666), 1, + anon_sym_GT2, + STATE(5366), 1, + aux_sym__multiple_types_repeat1, STATE(6373), 1, sym_comment, - ACTIONS(10702), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209593] = 5, + [209784] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10704), 1, - anon_sym_DQUOTE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10668), 1, + anon_sym_COLON, + ACTIONS(10670), 1, + anon_sym_GT2, + STATE(5370), 1, + aux_sym__multiple_types_repeat1, STATE(6374), 1, sym_comment, - STATE(6375), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209610] = 5, + [209803] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10706), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10672), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6375), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209627] = 3, - ACTIONS(251), 1, + [209822] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10674), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6376), 1, sym_comment, - ACTIONS(10708), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209640] = 5, + [209841] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10710), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10676), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6377), 1, sym_comment, - STATE(6378), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209657] = 5, + [209860] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10712), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10678), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6378), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209674] = 3, - ACTIONS(251), 1, + [209879] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10680), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6379), 1, sym_comment, - ACTIONS(10714), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209687] = 5, + [209898] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10716), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10682), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6380), 1, sym_comment, - STATE(6381), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209704] = 5, + [209917] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10718), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10684), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6381), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209721] = 3, - ACTIONS(251), 1, + [209936] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10686), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6382), 1, sym_comment, - ACTIONS(10720), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [209734] = 5, + [209955] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10722), 1, - anon_sym_DQUOTE, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, STATE(6383), 1, sym_comment, - STATE(6384), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209751] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10724), 1, - anon_sym_DQUOTE, - STATE(6384), 1, - sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209768] = 3, + ACTIONS(2226), 3, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + [209970] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6385), 1, + STATE(6384), 1, sym_comment, - ACTIONS(10726), 4, + ACTIONS(10688), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [209781] = 5, + [209983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10728), 1, + ACTIONS(10690), 1, anon_sym_DQUOTE, - STATE(6386), 1, + STATE(6385), 1, sym_comment, - STATE(6387), 1, + STATE(6386), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209798] = 5, + [210000] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10730), 1, + ACTIONS(10692), 1, anon_sym_DQUOTE, - STATE(6387), 1, - sym_comment, - STATE(6515), 1, + STATE(6249), 1, aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + STATE(6386), 1, + sym_comment, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [209815] = 6, + [210017] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, + ACTIONS(2180), 1, + anon_sym_RBRACE, + ACTIONS(2182), 1, anon_sym_LPAREN2, - ACTIONS(10732), 1, - anon_sym_RBRACK, - ACTIONS(10734), 1, + ACTIONS(2184), 1, + sym__entry_separator, + ACTIONS(2186), 1, + aux_sym__unquoted_in_record_token2, + STATE(6387), 1, + sym_comment, + [210036] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10694), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6388), 1, sym_comment, - STATE(7687), 1, - sym__expr_parenthesized_immediate, - [209834] = 5, + [210055] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10736), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10696), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6389), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209851] = 5, + [210074] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10738), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10698), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6390), 1, sym_comment, - STATE(6391), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209868] = 5, + [210093] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10740), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10700), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6391), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209885] = 5, + [210112] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10742), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10702), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6392), 1, sym_comment, - STATE(6393), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209902] = 5, + [210131] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10744), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10704), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6393), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209919] = 5, + [210150] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10746), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10706), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6394), 1, sym_comment, - STATE(6395), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209936] = 5, + [210169] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10748), 1, - anon_sym_DQUOTE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10708), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6395), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209953] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10750), 1, - anon_sym_DQUOTE, - STATE(6396), 1, - sym_comment, - STATE(6397), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209970] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(10752), 1, - anon_sym_DQUOTE, - STATE(6397), 1, - sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [209987] = 6, + [210188] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10754), 1, + ACTIONS(10710), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6398), 1, + STATE(6396), 1, sym_comment, - [210006] = 6, + [210207] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10756), 1, + ACTIONS(10712), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6399), 1, + STATE(6397), 1, sym_comment, - [210025] = 3, + [210226] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6400), 1, + STATE(6398), 1, sym_comment, - ACTIONS(10758), 4, + ACTIONS(10714), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [210038] = 3, - ACTIONS(251), 1, + [210239] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10716), 1, + anon_sym_DQUOTE, + STATE(6399), 1, + sym_comment, + STATE(6401), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210256] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10718), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6400), 1, + sym_comment, + [210275] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10720), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6401), 1, sym_comment, - ACTIONS(10760), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210051] = 6, - ACTIONS(251), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210292] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6592), 1, - sym__newline, - ACTIONS(10762), 1, - anon_sym_EQ, - ACTIONS(10764), 1, - anon_sym_COLON, - STATE(3837), 1, - aux_sym_shebang_repeat1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10722), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6402), 1, sym_comment, - [210070] = 3, - ACTIONS(251), 1, + [210311] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10724), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6403), 1, sym_comment, - ACTIONS(10766), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210083] = 3, - ACTIONS(251), 1, + [210330] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10726), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6404), 1, sym_comment, - ACTIONS(10768), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210096] = 6, - ACTIONS(251), 1, + [210349] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3219), 1, - sym_parameter_parens, - STATE(3220), 1, - sym_parameter_bracks, + ACTIONS(10728), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6405), 1, sym_comment, - [210115] = 6, + [210368] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10770), 1, + ACTIONS(10730), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6406), 1, sym_comment, - [210134] = 6, + [210387] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(10772), 1, - anon_sym_RBRACK, - ACTIONS(10774), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10732), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6407), 1, sym_comment, - STATE(7687), 1, - sym__expr_parenthesized_immediate, - [210153] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10209), 1, - anon_sym_DOT_DOT2, - ACTIONS(10776), 1, - anon_sym_LBRACE, - STATE(6408), 1, - sym_comment, - ACTIONS(10211), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210170] = 6, + [210406] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10778), 1, + ACTIONS(10734), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6409), 1, + STATE(6408), 1, sym_comment, - [210189] = 6, + [210425] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10780), 1, + ACTIONS(10736), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, + STATE(6409), 1, + sym_comment, + [210444] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6410), 1, sym_comment, - [210208] = 5, + ACTIONS(10738), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210457] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2322), 1, - sym__entry_separator, - ACTIONS(10782), 1, - anon_sym_LBRACK2, + ACTIONS(10740), 1, + anon_sym_DQUOTE, STATE(6411), 1, sym_comment, - ACTIONS(2318), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [210225] = 6, - ACTIONS(251), 1, + STATE(6412), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210474] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3205), 1, - sym_parameter_bracks, - STATE(3229), 1, - sym_parameter_parens, + ACTIONS(10742), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6412), 1, sym_comment, - [210244] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210491] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1867), 1, + ACTIONS(1665), 1, anon_sym_LPAREN2, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2184), 1, - anon_sym_RBRACK, - ACTIONS(2186), 1, + ACTIONS(2248), 1, + anon_sym_RBRACE, + ACTIONS(2250), 1, sym__entry_separator, STATE(6413), 1, sym_comment, - [210263] = 3, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [210510] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6414), 1, sym_comment, - ACTIONS(7994), 4, - anon_sym_EQ, - anon_sym_DASH_GT, - anon_sym_AT, - anon_sym_LBRACE, - [210276] = 6, - ACTIONS(3), 1, + ACTIONS(10744), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [210523] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RBRACK, - ACTIONS(1867), 1, - anon_sym_LPAREN2, - ACTIONS(1873), 1, - sym__entry_separator, - ACTIONS(1875), 1, - aux_sym__unquoted_in_list_token2, STATE(6415), 1, sym_comment, - [210295] = 5, - ACTIONS(251), 1, + ACTIONS(10746), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210536] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(10784), 1, - anon_sym_DOT_DOT2, + ACTIONS(10748), 1, + anon_sym_DQUOTE, STATE(6416), 1, sym_comment, - ACTIONS(10786), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [210312] = 3, - ACTIONS(251), 1, + STATE(6417), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210553] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10750), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6417), 1, sym_comment, - ACTIONS(10788), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210325] = 6, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210570] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2221), 1, - anon_sym_RBRACE, - ACTIONS(2223), 1, - sym__entry_separator, STATE(6418), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - [210344] = 3, - ACTIONS(251), 1, + ACTIONS(10752), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210583] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10754), 1, + anon_sym_DQUOTE, STATE(6419), 1, sym_comment, - ACTIONS(10790), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210357] = 3, - ACTIONS(251), 1, + STATE(6420), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210600] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10756), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6420), 1, sym_comment, - ACTIONS(10792), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210370] = 6, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210617] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(10794), 1, - anon_sym_RBRACK, - ACTIONS(10796), 1, - sym__entry_separator, STATE(6421), 1, sym_comment, - STATE(7687), 1, - sym__expr_parenthesized_immediate, - [210389] = 3, - ACTIONS(251), 1, + ACTIONS(10758), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210630] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10760), 1, + anon_sym_DQUOTE, STATE(6422), 1, sym_comment, - ACTIONS(10798), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210402] = 3, - ACTIONS(251), 1, - anon_sym_POUND, STATE(6423), 1, - sym_comment, - ACTIONS(10800), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210415] = 3, - ACTIONS(251), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210647] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6424), 1, + ACTIONS(10762), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6423), 1, sym_comment, - ACTIONS(10802), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210428] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210664] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_RBRACK, - ACTIONS(2239), 1, + ACTIONS(1665), 1, anon_sym_LPAREN2, - ACTIONS(2241), 1, + ACTIONS(2252), 1, + anon_sym_RBRACE, + ACTIONS(2254), 1, sym__entry_separator, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, + STATE(6424), 1, + sym_comment, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [210683] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6425), 1, sym_comment, - [210447] = 6, + ACTIONS(10764), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210696] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2239), 1, - anon_sym_LPAREN2, - ACTIONS(2243), 1, - aux_sym__unquoted_in_list_token4, - ACTIONS(2245), 1, - anon_sym_RBRACK, - ACTIONS(2247), 1, - sym__entry_separator, + ACTIONS(10766), 1, + anon_sym_DQUOTE, STATE(6426), 1, sym_comment, - [210466] = 6, - ACTIONS(251), 1, + STATE(6427), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210713] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3221), 1, - sym_parameter_parens, - STATE(3222), 1, - sym_parameter_bracks, + ACTIONS(10768), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6427), 1, sym_comment, - [210485] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210730] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3223), 1, - sym_parameter_parens, - STATE(3224), 1, - sym_parameter_bracks, STATE(6428), 1, sym_comment, - [210504] = 5, - ACTIONS(251), 1, + ACTIONS(10770), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210743] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(597), 1, - ts_builtin_sym_end, - STATE(283), 1, - aux_sym__block_body_repeat1, + ACTIONS(10772), 1, + anon_sym_DQUOTE, STATE(6429), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [210521] = 3, - ACTIONS(251), 1, + STATE(6430), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210760] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10774), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6430), 1, sym_comment, - ACTIONS(10788), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210534] = 3, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210777] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6431), 1, sym_comment, - ACTIONS(10804), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210547] = 3, - ACTIONS(251), 1, + ACTIONS(10776), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210790] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10778), 1, + anon_sym_DQUOTE, STATE(6432), 1, sym_comment, - ACTIONS(10806), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210560] = 5, + STATE(6433), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210807] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - ACTIONS(5908), 1, - anon_sym_PIPE, + ACTIONS(10780), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6433), 1, sym_comment, - ACTIONS(5903), 2, - anon_sym_if, - anon_sym_EQ_GT, - [210577] = 4, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210824] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6434), 1, sym_comment, - ACTIONS(7936), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(7938), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210592] = 6, + ACTIONS(10782), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210837] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4878), 1, - sym__space, - ACTIONS(4880), 1, - sym__newline, - ACTIONS(10808), 1, - anon_sym_EQ2, - ACTIONS(10810), 1, - sym_short_flag_identifier, + ACTIONS(10784), 1, + anon_sym_DQUOTE, STATE(6435), 1, sym_comment, - [210611] = 6, - ACTIONS(251), 1, + STATE(6436), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210854] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3225), 1, - sym_parameter_parens, - STATE(3226), 1, - sym_parameter_bracks, + ACTIONS(10786), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6436), 1, sym_comment, - [210630] = 4, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210871] = 5, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(597), 1, + ts_builtin_sym_end, + STATE(287), 1, + aux_sym__block_body_repeat1, STATE(6437), 1, sym_comment, - ACTIONS(8260), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8262), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210645] = 4, - ACTIONS(3), 1, + ACTIONS(25), 2, + sym__newline, + anon_sym_SEMI, + [210888] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6438), 1, sym_comment, - ACTIONS(8216), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8218), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210660] = 3, - ACTIONS(251), 1, + ACTIONS(10788), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210901] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10790), 1, + anon_sym_DQUOTE, STATE(6439), 1, sym_comment, - ACTIONS(10812), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210673] = 3, - ACTIONS(251), 1, + STATE(6440), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210918] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10792), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6440), 1, sym_comment, - ACTIONS(5651), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [210686] = 4, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210935] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(2156), 1, + anon_sym_RBRACE, + ACTIONS(2158), 1, + sym__entry_separator, STATE(6441), 1, sym_comment, - ACTIONS(8066), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8068), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210701] = 4, - ACTIONS(3), 1, + STATE(7221), 1, + sym__expr_parenthesized_immediate, + [210954] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6442), 1, sym_comment, - ACTIONS(8070), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8072), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210716] = 6, - ACTIONS(251), 1, + ACTIONS(10794), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [210967] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4439), 1, - sym_block, + ACTIONS(10796), 1, + anon_sym_DQUOTE, STATE(6443), 1, sym_comment, - [210735] = 6, - ACTIONS(251), 1, + STATE(6444), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [210984] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4440), 1, - sym_block, - STATE(6095), 1, - aux_sym_shebang_repeat1, + ACTIONS(10798), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6444), 1, sym_comment, - [210754] = 3, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211001] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6445), 1, sym_comment, - ACTIONS(10814), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [210767] = 4, + ACTIONS(10800), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211014] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10802), 1, + anon_sym_DQUOTE, STATE(6446), 1, sym_comment, - ACTIONS(8078), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8080), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210782] = 5, + STATE(6447), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211031] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10816), 1, - anon_sym_COLON2, + ACTIONS(10804), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6447), 1, sym_comment, - STATE(6448), 1, - aux_sym_ctrl_do_parenthesized_repeat2, - ACTIONS(7511), 2, - sym__newline, - sym__space, - [210799] = 5, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211048] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10818), 1, - anon_sym_COLON2, - STATE(6255), 1, - aux_sym_ctrl_do_parenthesized_repeat2, STATE(6448), 1, sym_comment, - ACTIONS(7511), 2, - sym__newline, - sym__space, - [210816] = 4, + ACTIONS(10806), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211061] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10808), 1, + anon_sym_DQUOTE, STATE(6449), 1, sym_comment, - ACTIONS(8082), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8084), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210831] = 6, + STATE(6450), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211078] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym__unquoted_in_record_token2, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1788), 1, - anon_sym_LPAREN2, - ACTIONS(1794), 1, - sym__entry_separator, + ACTIONS(10810), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6450), 1, sym_comment, - [210850] = 4, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211095] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6451), 1, sym_comment, - ACTIONS(8086), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8088), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210865] = 6, - ACTIONS(251), 1, + ACTIONS(10812), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211108] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9711), 1, - anon_sym_LBRACE, - STATE(4611), 1, - sym_val_closure, - STATE(4621), 1, - sym__blosure, - STATE(4735), 1, - sym_block, + ACTIONS(10814), 1, + anon_sym_DQUOTE, STATE(6452), 1, sym_comment, - [210884] = 4, + STATE(6453), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211125] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10816), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6453), 1, sym_comment, - ACTIONS(8100), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8102), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [210899] = 5, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211142] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_PIPE, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, STATE(6454), 1, sym_comment, - ACTIONS(2229), 2, - anon_sym_if, - anon_sym_EQ_GT, - [210916] = 5, - ACTIONS(251), 1, + ACTIONS(10818), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211155] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1396), 1, - ts_builtin_sym_end, - STATE(285), 1, - aux_sym__block_body_repeat1, + ACTIONS(10820), 1, + anon_sym_DQUOTE, STATE(6455), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [210933] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10820), 1, - anon_sym_RPAREN, - STATE(6096), 1, - aux_sym__block_body_repeat1, STATE(6456), 1, - sym_comment, - ACTIONS(10246), 2, - sym__newline, - anon_sym_SEMI, - [210950] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1000), 1, - sym__entry_separator, - ACTIONS(1004), 1, - anon_sym_RBRACE, - ACTIONS(2202), 1, - anon_sym_LPAREN2, - ACTIONS(2204), 1, - aux_sym__unquoted_in_record_token4, - STATE(6457), 1, - sym_comment, - [210969] = 6, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211172] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, ACTIONS(10822), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6458), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6456), 1, sym_comment, - [210988] = 3, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211189] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6459), 1, + STATE(6457), 1, sym_comment, ACTIONS(10824), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [211001] = 6, + [211202] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, ACTIONS(10826), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6460), 1, + anon_sym_DQUOTE, + STATE(6458), 1, sym_comment, - [211020] = 4, + STATE(6459), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211219] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6461), 1, + ACTIONS(10828), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, + STATE(6459), 1, sym_comment, - ACTIONS(8264), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8266), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [211035] = 3, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211236] = 3, ACTIONS(251), 1, anon_sym_POUND, + STATE(6460), 1, + sym_comment, + ACTIONS(10830), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211249] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10832), 1, + anon_sym_DQUOTE, + STATE(6461), 1, + sym_comment, + STATE(6462), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211266] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(10834), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6462), 1, sym_comment, - ACTIONS(10828), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211048] = 4, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211283] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10836), 1, + anon_sym_DQUOTE, STATE(6463), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [211063] = 5, + STATE(6464), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211300] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10830), 1, + ACTIONS(10838), 1, anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6464), 1, sym_comment, - STATE(6475), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, + ACTIONS(10184), 2, sym__escaped_str_content, sym_escape_sequence, - [211080] = 4, + [211317] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10840), 1, + anon_sym_DQUOTE, STATE(6465), 1, sym_comment, - ACTIONS(8268), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8270), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [211095] = 4, - ACTIONS(251), 1, + STATE(6466), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211334] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, + ACTIONS(10842), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6466), 1, sym_comment, - ACTIONS(1767), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211110] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2225), 1, - anon_sym_RBRACE, - ACTIONS(2227), 1, - sym__entry_separator, + ACTIONS(10844), 1, + anon_sym_DQUOTE, STATE(6467), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - [211129] = 5, - ACTIONS(251), 1, + STATE(6468), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211368] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_DASH2, - ACTIONS(8728), 1, - aux_sym_unquoted_token2, + ACTIONS(10846), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6468), 1, sym_comment, - ACTIONS(1693), 2, - sym_identifier, - anon_sym_DASH_DASH, - [211146] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10832), 1, - anon_sym_COLON, - ACTIONS(10834), 1, - anon_sym_GT2, - STATE(5355), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10848), 1, + anon_sym_DQUOTE, STATE(6469), 1, sym_comment, - [211165] = 3, - ACTIONS(251), 1, + STATE(6470), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211402] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(10850), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6470), 1, sym_comment, - ACTIONS(10836), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211178] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211419] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10838), 1, - anon_sym_COLON, - ACTIONS(10840), 1, - anon_sym_GT2, - STATE(5358), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10852), 1, + anon_sym_DQUOTE, STATE(6471), 1, sym_comment, - [211197] = 4, + STATE(6472), 1, + aux_sym__str_double_quotes_repeat1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211436] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10842), 1, - anon_sym_LPAREN, + ACTIONS(10854), 1, + anon_sym_DQUOTE, + STATE(6249), 1, + aux_sym__str_double_quotes_repeat1, STATE(6472), 1, sym_comment, - ACTIONS(10844), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [211212] = 6, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [211453] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10846), 1, + ACTIONS(1545), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(1805), 1, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1807), 1, + anon_sym_LPAREN2, + ACTIONS(1813), 1, + sym__entry_separator, STATE(6473), 1, sym_comment, - [211231] = 4, - ACTIONS(3), 1, + [211472] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6474), 1, sym_comment, - ACTIONS(8272), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8274), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [211246] = 5, - ACTIONS(3), 1, + ACTIONS(10856), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [211485] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10848), 1, - anon_sym_DQUOTE, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(10858), 1, + anon_sym_DOT_DOT2, STATE(6475), 1, sym_comment, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [211263] = 6, - ACTIONS(3), 1, + ACTIONS(10860), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211502] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10850), 1, - anon_sym_COLON, - ACTIONS(10852), 1, - anon_sym_GT2, - STATE(5415), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, STATE(6476), 1, sym_comment, - [211282] = 6, - ACTIONS(3), 1, + ACTIONS(2184), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [211517] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10854), 1, - anon_sym_COLON, - ACTIONS(10856), 1, - anon_sym_GT2, - STATE(5380), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3203), 1, + sym_parameter_parens, + STATE(3211), 1, + sym_parameter_bracks, STATE(6477), 1, sym_comment, - [211301] = 6, + [211536] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2226), 1, + anon_sym_RBRACE, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2230), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10858), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2232), 1, + aux_sym__unquoted_in_record_token4, STATE(6478), 1, sym_comment, - [211320] = 4, - ACTIONS(3), 1, + [211555] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6479), 1, sym_comment, - ACTIONS(8276), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8278), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [211335] = 4, + ACTIONS(10862), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211568] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, STATE(6480), 1, sym_comment, - ACTIONS(1727), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211350] = 6, - ACTIONS(3), 1, + ACTIONS(10864), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211581] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10860), 1, - anon_sym_COLON, - ACTIONS(10862), 1, - anon_sym_GT2, - STATE(5382), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10866), 1, + anon_sym_LBRACE, + ACTIONS(10868), 1, + anon_sym_DOT_DOT2, STATE(6481), 1, sym_comment, - [211369] = 3, + ACTIONS(10870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [211598] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10872), 1, + anon_sym_LBRACK, + ACTIONS(10874), 1, + anon_sym_LPAREN, + STATE(5901), 1, + sym_parameter_bracks, + STATE(5944), 1, + sym_parameter_parens, STATE(6482), 1, sym_comment, - ACTIONS(10788), 4, + [211617] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6483), 1, + sym_comment, + ACTIONS(10876), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211382] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - STATE(6483), 1, - sym_comment, - ACTIONS(988), 4, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - anon_sym_DOT2, - [211395] = 4, + [211630] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, STATE(6484), 1, sym_comment, - ACTIONS(2186), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [211410] = 4, - ACTIONS(3), 1, + ACTIONS(10878), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211643] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6485), 1, sym_comment, - ACTIONS(1725), 2, + ACTIONS(10880), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1727), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [211425] = 6, - ACTIONS(3), 1, + [211656] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10864), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6486), 1, sym_comment, - [211444] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(2136), 1, + ACTIONS(10882), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, anon_sym_RBRACE, - ACTIONS(2138), 1, - sym__entry_separator, + [211669] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6487), 1, sym_comment, - STATE(7370), 1, - sym__expr_parenthesized_immediate, - [211463] = 6, - ACTIONS(251), 1, + ACTIONS(10884), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211682] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10866), 1, - anon_sym_use, - ACTIONS(10868), 1, - anon_sym_list, - ACTIONS(10870), 1, - anon_sym_hide, - ACTIONS(10872), 1, - anon_sym_new, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(10886), 1, + anon_sym_RBRACK, + ACTIONS(10888), 1, + sym__entry_separator, STATE(6488), 1, sym_comment, - [211482] = 6, + STATE(7388), 1, + sym__expr_parenthesized_immediate, + [211701] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10874), 1, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, + ACTIONS(2188), 1, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2190), 1, + sym__entry_separator, STATE(6489), 1, sym_comment, - [211501] = 6, - ACTIONS(3), 1, + [211720] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10876), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6490), 1, sym_comment, - [211520] = 6, + ACTIONS(10884), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [211733] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10878), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6491), 1, sym_comment, - [211539] = 3, - ACTIONS(251), 1, + ACTIONS(8259), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8261), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [211748] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1793), 1, + anon_sym_RBRACK, + ACTIONS(1795), 1, + anon_sym_LPAREN2, + ACTIONS(1801), 1, + sym__entry_separator, + ACTIONS(1803), 1, + aux_sym__unquoted_in_list_token2, STATE(6492), 1, sym_comment, - ACTIONS(10788), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211552] = 3, - ACTIONS(251), 1, + [211767] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6493), 1, sym_comment, - ACTIONS(10880), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211565] = 3, - ACTIONS(251), 1, + ACTIONS(8267), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8269), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [211782] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6494), 1, sym_comment, - ACTIONS(10880), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211578] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(8271), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10882), 1, + ACTIONS(8273), 2, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [211797] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3198), 1, + sym_parameter_parens, + STATE(3200), 1, + sym_parameter_bracks, STATE(6495), 1, sym_comment, - [211597] = 3, + [211816] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3201), 1, + sym_parameter_parens, + STATE(3202), 1, + sym_parameter_bracks, STATE(6496), 1, sym_comment, - ACTIONS(10884), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211610] = 4, + [211835] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6497), 1, sym_comment, - ACTIONS(8126), 2, + ACTIONS(8275), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8128), 2, + ACTIONS(8277), 2, anon_sym_RBRACK, anon_sym_GT2, - [211625] = 5, + [211850] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4945), 1, - anon_sym_DASH2, - ACTIONS(10886), 1, - anon_sym_EQ2, STATE(6498), 1, sym_comment, - ACTIONS(4943), 2, - sym_identifier, - anon_sym_DASH_DASH, - [211642] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6499), 1, - sym_comment, - ACTIONS(10888), 4, + ACTIONS(10890), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211655] = 3, + [211863] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6500), 1, + STATE(6499), 1, sym_comment, - ACTIONS(10890), 4, + ACTIONS(10892), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211668] = 6, + [211876] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(10894), 1, + anon_sym_RBRACK, + ACTIONS(10896), 1, sym__entry_separator, - ACTIONS(10228), 1, + STATE(6500), 1, + sym_comment, + STATE(7388), 1, + sym__expr_parenthesized_immediate, + [211895] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10198), 1, anon_sym_LBRACK, - ACTIONS(10892), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3192), 1, + sym_parameter_bracks, + STATE(3208), 1, + sym_parameter_parens, STATE(6501), 1, sym_comment, - [211687] = 6, + [211914] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10894), 1, + ACTIONS(2192), 1, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + sym__entry_separator, + ACTIONS(2198), 1, + aux_sym__unquoted_in_list_token4, STATE(6502), 1, sym_comment, - [211706] = 6, + [211933] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10896), 1, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym__unquoted_in_list_token4, + ACTIONS(2200), 1, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2202), 1, + sym__entry_separator, STATE(6503), 1, sym_comment, - [211725] = 4, + [211952] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6504), 1, - sym_comment, - ACTIONS(8130), 2, - anon_sym_AT, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(8132), 2, - anon_sym_RBRACK, + ACTIONS(10898), 1, + anon_sym_COLON, + ACTIONS(10900), 1, anon_sym_GT2, - [211740] = 3, + STATE(5404), 1, + aux_sym__multiple_types_repeat1, + STATE(6504), 1, + sym_comment, + [211971] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6505), 1, sym_comment, - ACTIONS(10898), 4, + ACTIONS(10902), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [211753] = 5, + [211984] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_PIPE, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10904), 1, + anon_sym_COLON, + ACTIONS(10906), 1, + anon_sym_GT2, + STATE(5266), 1, + aux_sym__multiple_types_repeat1, STATE(6506), 1, sym_comment, - ACTIONS(2237), 2, - anon_sym_if, - anon_sym_EQ_GT, - [211770] = 5, + [212003] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, - anon_sym_PIPE, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10908), 1, + anon_sym_COLON, + ACTIONS(10910), 1, + anon_sym_GT2, + STATE(5267), 1, + aux_sym__multiple_types_repeat1, STATE(6507), 1, sym_comment, - ACTIONS(2245), 2, - anon_sym_if, - anon_sym_EQ_GT, - [211787] = 6, + [212022] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10900), 1, - anon_sym_RBRACK, - STATE(3429), 1, + ACTIONS(10912), 1, + anon_sym_COLON, + ACTIONS(10914), 1, + anon_sym_GT2, + STATE(5268), 1, aux_sym__multiple_types_repeat1, STATE(6508), 1, sym_comment, - [211806] = 3, - ACTIONS(251), 1, + [212041] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10916), 1, + anon_sym_COLON, + ACTIONS(10918), 1, + anon_sym_GT2, + STATE(5269), 1, + aux_sym__multiple_types_repeat1, STATE(6509), 1, sym_comment, - ACTIONS(10902), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211819] = 3, - ACTIONS(251), 1, + [212060] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10920), 1, + anon_sym_COLON, + ACTIONS(10922), 1, + anon_sym_GT2, + STATE(5408), 1, + aux_sym__multiple_types_repeat1, STATE(6510), 1, sym_comment, - ACTIONS(10904), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211832] = 6, + [212079] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(10906), 1, + ACTIONS(10924), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6511), 1, sym_comment, - [211851] = 5, - ACTIONS(251), 1, + [212098] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1385), 1, - ts_builtin_sym_end, - STATE(289), 1, - aux_sym__block_body_repeat1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10926), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6512), 1, sym_comment, - ACTIONS(25), 2, - sym__newline, - anon_sym_SEMI, - [211868] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6513), 1, - sym_comment, - ACTIONS(10908), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [211881] = 4, + [212117] = 6, ACTIONS(3), 1, anon_sym_POUND, - STATE(6514), 1, - sym_comment, - ACTIONS(8162), 2, - anon_sym_AT, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(8164), 2, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10928), 1, anon_sym_RBRACK, - anon_sym_GT2, - [211896] = 4, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, + STATE(6513), 1, + sym_comment, + [212136] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10910), 1, - anon_sym_DQUOTE, - ACTIONS(10912), 2, - sym__escaped_str_content, - sym_escape_sequence, - STATE(6515), 2, + ACTIONS(4819), 1, + sym__space, + ACTIONS(4821), 1, + sym__newline, + ACTIONS(10930), 1, + anon_sym_EQ2, + ACTIONS(10932), 1, + sym_short_flag_identifier, + STATE(6514), 1, sym_comment, - aux_sym__str_double_quotes_repeat1, - [211911] = 5, + [212155] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10209), 1, - anon_sym_DOT_DOT2, - ACTIONS(10915), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(1751), 1, anon_sym_LBRACE, + ACTIONS(10934), 1, + anon_sym_DOT, + ACTIONS(10936), 1, + aux_sym__immediate_decimal_token2, + STATE(6515), 1, + sym_comment, + [212174] = 6, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2192), 1, + anon_sym_RBRACE, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2196), 1, + sym__entry_separator, + ACTIONS(2198), 1, + aux_sym__unquoted_in_record_token4, STATE(6516), 1, sym_comment, - ACTIONS(10211), 2, - anon_sym_DOT_DOT_EQ2, - anon_sym_DOT_DOT_LT2, - [211928] = 6, + [212193] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(10917), 1, - anon_sym_LBRACK, - STATE(1706), 1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(1711), 1, aux_sym_shebang_repeat1, + STATE(4468), 1, + sym_block, STATE(6517), 1, sym_comment, - STATE(7612), 1, - sym_val_list, - [211947] = 4, - ACTIONS(3), 1, + [212212] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10919), 1, - anon_sym_LPAREN, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4470), 1, + sym_block, + STATE(6347), 1, + aux_sym_shebang_repeat1, STATE(6518), 1, sym_comment, - ACTIONS(10921), 3, - sym_escaped_interpolated_content, - anon_sym_DQUOTE2, - sym_inter_escape_sequence, - [211962] = 5, - ACTIONS(251), 1, + [212231] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4927), 1, - anon_sym_DASH2, - ACTIONS(10923), 1, - anon_sym_EQ2, + ACTIONS(2194), 1, + anon_sym_LPAREN2, + ACTIONS(2198), 1, + aux_sym__unquoted_in_record_token4, + ACTIONS(2200), 1, + anon_sym_RBRACE, + ACTIONS(2202), 1, + sym__entry_separator, STATE(6519), 1, sym_comment, - ACTIONS(4925), 2, - sym_identifier, - anon_sym_DASH_DASH, - [211979] = 4, - ACTIONS(3), 1, + [212250] = 5, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(2065), 1, + anon_sym_LBRACE, + ACTIONS(10938), 1, + anon_sym_DOT_DOT2, STATE(6520), 1, sym_comment, - ACTIONS(8166), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8168), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [211994] = 3, + ACTIONS(10940), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212267] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10942), 1, + anon_sym_RPAREN, + STATE(6101), 1, + aux_sym__block_body_repeat1, STATE(6521), 1, sym_comment, - ACTIONS(10925), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [212007] = 6, - ACTIONS(3), 1, + ACTIONS(10194), 2, + sym__newline, + anon_sym_SEMI, + [212284] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10927), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6522), 1, sym_comment, - [212026] = 4, + ACTIONS(10944), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212297] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6523), 1, sym_comment, - ACTIONS(8170), 2, - anon_sym_AT, + ACTIONS(1731), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1733), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(8172), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [212041] = 6, - ACTIONS(3), 1, + [212312] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4888), 1, - sym__space, - ACTIONS(4890), 1, + ACTIONS(6579), 1, sym__newline, - ACTIONS(10929), 1, - sym_long_flag_identifier, - ACTIONS(10931), 1, - anon_sym_EQ2, + ACTIONS(10946), 1, + anon_sym_EQ, + ACTIONS(10948), 1, + anon_sym_COLON, + STATE(3814), 1, + aux_sym_shebang_repeat1, STATE(6524), 1, sym_comment, - [212060] = 3, - ACTIONS(251), 1, + [212331] = 6, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10950), 1, + anon_sym_COLON, + ACTIONS(10952), 1, + anon_sym_GT2, + STATE(5275), 1, + aux_sym__multiple_types_repeat1, STATE(6525), 1, sym_comment, - ACTIONS(10933), 4, - sym_identifier, - anon_sym_in2, - anon_sym_nu, - anon_sym_env, - [212073] = 4, + [212350] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(10954), 1, + anon_sym_COLON, + ACTIONS(10956), 1, + anon_sym_GT2, + STATE(5276), 1, + aux_sym__multiple_types_repeat1, STATE(6526), 1, sym_comment, - ACTIONS(1765), 2, - anon_sym_RBRACK, - aux_sym__unquoted_in_list_token2, - ACTIONS(1767), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [212088] = 5, - ACTIONS(3), 1, + [212369] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10935), 1, - anon_sym_DQUOTE, + ACTIONS(1663), 1, + anon_sym_DASH2, + ACTIONS(8745), 1, + aux_sym_unquoted_token2, STATE(6527), 1, sym_comment, - STATE(6538), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212105] = 6, - ACTIONS(3), 1, + ACTIONS(1675), 2, + sym_identifier, + anon_sym_DASH_DASH, + [212386] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10937), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6528), 1, sym_comment, - [212124] = 3, + ACTIONS(10958), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212399] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6529), 1, sym_comment, - ACTIONS(10939), 4, + ACTIONS(10960), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212137] = 6, - ACTIONS(251), 1, + [212412] = 6, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(950), 1, - sym__table_head_separator, - ACTIONS(9995), 1, - anon_sym_DOT2, - STATE(6171), 1, - aux_sym_cell_path_repeat1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(10176), 1, + anon_sym_LBRACK, + ACTIONS(10962), 1, + anon_sym_RBRACK, + STATE(3439), 1, + aux_sym__multiple_types_repeat1, STATE(6530), 1, sym_comment, - STATE(7245), 1, - sym_path, - [212156] = 6, - ACTIONS(251), 1, + [212431] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10221), 1, - anon_sym_LBRACK, - ACTIONS(10223), 1, - anon_sym_LPAREN, - STATE(3209), 1, - sym_parameter_parens, - STATE(3210), 1, - sym_parameter_bracks, STATE(6531), 1, sym_comment, - [212175] = 4, - ACTIONS(251), 1, + ACTIONS(7941), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7943), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212446] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, STATE(6532), 1, sym_comment, - ACTIONS(1873), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212190] = 3, + ACTIONS(7945), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7947), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212461] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4922), 1, + anon_sym_DASH2, + ACTIONS(10964), 1, + anon_sym_EQ2, STATE(6533), 1, sym_comment, - ACTIONS(10941), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212203] = 3, - ACTIONS(251), 1, + ACTIONS(4920), 2, + sym_identifier, + anon_sym_DASH_DASH, + [212478] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6534), 1, sym_comment, - ACTIONS(5665), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [212216] = 4, + ACTIONS(7949), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7951), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212493] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6535), 1, sym_comment, - ACTIONS(8174), 2, + ACTIONS(7965), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8176), 2, + ACTIONS(7967), 2, anon_sym_RBRACK, anon_sym_GT2, - [212231] = 4, + [212508] = 3, ACTIONS(3), 1, anon_sym_POUND, STATE(6536), 1, sym_comment, - ACTIONS(1861), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token2, - ACTIONS(1863), 2, - anon_sym_LPAREN2, + ACTIONS(984), 4, + anon_sym_RBRACK, sym__entry_separator, - [212246] = 3, - ACTIONS(251), 1, + sym__table_head_separator, + anon_sym_DOT2, + [212521] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6537), 1, sym_comment, - ACTIONS(10943), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212259] = 5, + ACTIONS(7969), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7971), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212536] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10945), 1, - anon_sym_DQUOTE, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, STATE(6538), 1, sym_comment, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212276] = 6, + ACTIONS(7977), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7979), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, STATE(6539), 1, sym_comment, - STATE(7269), 1, - sym__expr_parenthesized_immediate, - [212295] = 4, + ACTIONS(7981), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(7983), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212566] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, STATE(6540), 1, sym_comment, - ACTIONS(2192), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [212310] = 3, + ACTIONS(10966), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212579] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6541), 1, sym_comment, - ACTIONS(5627), 4, - ts_builtin_sym_end, + ACTIONS(10968), 4, sym__newline, anon_sym_SEMI, - anon_sym_LBRACE, - [212323] = 4, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212592] = 6, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4862), 1, + sym__space, + ACTIONS(4864), 1, + sym__newline, + ACTIONS(10970), 1, + sym_long_flag_identifier, + ACTIONS(10972), 1, + anon_sym_EQ2, STATE(6542), 1, sym_comment, - ACTIONS(8280), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8282), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [212338] = 3, + [212611] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6543), 1, sym_comment, - ACTIONS(10947), 4, + ACTIONS(10974), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212351] = 6, - ACTIONS(3), 1, + [212624] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10949), 1, - anon_sym_COLON, - ACTIONS(10951), 1, - anon_sym_GT2, - STATE(5323), 1, - aux_sym__multiple_types_repeat1, STATE(6544), 1, sym_comment, - [212370] = 3, + ACTIONS(10976), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212637] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6545), 1, sym_comment, - ACTIONS(10953), 4, + ACTIONS(10978), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212383] = 4, - ACTIONS(3), 1, + [212650] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6546), 1, sym_comment, - ACTIONS(8284), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8286), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [212398] = 6, - ACTIONS(3), 1, + ACTIONS(10980), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212663] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10955), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6547), 1, sym_comment, - [212417] = 5, + ACTIONS(10982), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212676] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(10087), 1, - aux_sym__immediate_decimal_token2, STATE(6548), 1, sym_comment, - ACTIONS(1727), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [212434] = 4, - ACTIONS(3), 1, + ACTIONS(10984), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212689] = 5, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4916), 1, + anon_sym_DASH2, + ACTIONS(10986), 1, + anon_sym_EQ2, STATE(6549), 1, sym_comment, - ACTIONS(8178), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8180), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [212449] = 4, - ACTIONS(3), 1, + ACTIONS(4914), 2, + sym_identifier, + anon_sym_DASH_DASH, + [212706] = 4, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, STATE(6550), 1, sym_comment, - ACTIONS(8288), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8290), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [212464] = 6, - ACTIONS(3), 1, + ACTIONS(2190), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212721] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10957), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10868), 1, + anon_sym_DOT_DOT2, + ACTIONS(10988), 1, + anon_sym_LBRACE, STATE(6551), 1, sym_comment, - [212483] = 3, + ACTIONS(10870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212738] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(10990), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6552), 1, sym_comment, - ACTIONS(10959), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212496] = 6, + STATE(7386), 1, + sym_val_list, + [212757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10961), 1, - anon_sym_COLON, - ACTIONS(10963), 1, - anon_sym_GT2, - STATE(5310), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10992), 1, + anon_sym_DQUOTE, + STATE(6168), 1, + aux_sym__str_double_quotes_repeat1, STATE(6553), 1, sym_comment, - [212515] = 6, - ACTIONS(3), 1, + ACTIONS(10184), 2, + sym__escaped_str_content, + sym_escape_sequence, + [212774] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10965), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6554), 1, sym_comment, - [212534] = 6, + ACTIONS(10994), 4, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + anon_sym_RBRACE, + [212787] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(10967), 1, - anon_sym_COLON, - ACTIONS(10969), 1, - anon_sym_GT2, - STATE(5311), 1, - aux_sym__multiple_types_repeat1, STATE(6555), 1, sym_comment, - [212553] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1772), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1774), 2, + anon_sym_LPAREN2, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10971), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + [212802] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, STATE(6556), 1, sym_comment, - [212572] = 6, + ACTIONS(1801), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [212817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10973), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6557), 1, sym_comment, - [212591] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10975), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6558), 1, - sym_comment, - [212610] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10977), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6559), 1, - sym_comment, - [212629] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10979), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6560), 1, - sym_comment, - [212648] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10981), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6561), 1, - sym_comment, - [212667] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10983), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6562), 1, - sym_comment, - [212686] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10985), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6563), 1, - sym_comment, - [212705] = 6, + ACTIONS(1817), 2, + anon_sym_RBRACE, + aux_sym__unquoted_in_record_token2, + ACTIONS(1819), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [212832] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + STATE(6558), 1, + sym_comment, + ACTIONS(8019), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(10987), 1, + ACTIONS(8021), 2, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6564), 1, - sym_comment, - [212724] = 6, + anon_sym_GT2, + [212847] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + STATE(6559), 1, + sym_comment, + ACTIONS(8023), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10989), 1, - anon_sym_COLON, - ACTIONS(10991), 1, + ACTIONS(8025), 2, + anon_sym_RBRACK, anon_sym_GT2, - STATE(5324), 1, - aux_sym__multiple_types_repeat1, - STATE(6565), 1, - sym_comment, - [212743] = 4, + [212862] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6566), 1, + STATE(6560), 1, sym_comment, - ACTIONS(8182), 2, + ACTIONS(8027), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8184), 2, + ACTIONS(8029), 2, anon_sym_RBRACK, anon_sym_GT2, - [212758] = 5, + [212877] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(10993), 1, - aux_sym__immediate_decimal_token2, - STATE(6567), 1, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(10868), 1, + anon_sym_DOT_DOT2, + STATE(6561), 1, sym_comment, - ACTIONS(1767), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [212775] = 3, + ACTIONS(10870), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [212894] = 6, ACTIONS(251), 1, anon_sym_POUND, - STATE(6568), 1, + ACTIONS(10996), 1, + anon_sym_use, + ACTIONS(10998), 1, + anon_sym_list, + ACTIONS(11000), 1, + anon_sym_hide, + ACTIONS(11002), 1, + anon_sym_new, + STATE(6562), 1, + sym_comment, + [212913] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6563), 1, sym_comment, - ACTIONS(10995), 4, + ACTIONS(11004), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212788] = 3, + [212926] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(6569), 1, + ACTIONS(1439), 1, + ts_builtin_sym_end, + STATE(214), 1, + aux_sym__block_body_repeat1, + STATE(6564), 1, sym_comment, - ACTIONS(10997), 4, + ACTIONS(25), 2, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212801] = 3, + [212943] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6565), 1, + sym_comment, + ACTIONS(8031), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8033), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212958] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6570), 1, + STATE(6566), 1, sym_comment, - ACTIONS(10999), 4, + ACTIONS(11006), 4, sym_identifier, anon_sym_in2, anon_sym_nu, anon_sym_env, - [212814] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(10260), 1, - anon_sym_LBRACK, - ACTIONS(10262), 1, - anon_sym_LPAREN, - STATE(5983), 1, - sym_parameter_parens, - STATE(5998), 1, - sym_parameter_bracks, - STATE(6571), 1, - sym_comment, - [212833] = 5, + [212971] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11001), 1, - anon_sym_DQUOTE, - STATE(6572), 1, + STATE(6567), 1, sym_comment, - STATE(6580), 1, - aux_sym__str_double_quotes_repeat1, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212850] = 6, + ACTIONS(8035), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8037), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [212986] = 6, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, + ACTIONS(10176), 1, anon_sym_LBRACK, - ACTIONS(11003), 1, + ACTIONS(11008), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(3439), 1, aux_sym__multiple_types_repeat1, - STATE(6573), 1, + STATE(6568), 1, sym_comment, - [212869] = 3, + [213005] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6574), 1, + STATE(6569), 1, sym_comment, - ACTIONS(11005), 4, + ACTIONS(11010), 4, sym__newline, anon_sym_SEMI, anon_sym_RPAREN, anon_sym_RBRACE, - [212882] = 4, + [213018] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6575), 1, + STATE(6570), 1, sym_comment, - ACTIONS(8232), 2, + ACTIONS(8039), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8234), 2, + ACTIONS(8041), 2, anon_sym_RBRACK, anon_sym_GT2, - [212897] = 3, - ACTIONS(251), 1, + [213033] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(6576), 1, + STATE(6571), 1, sym_comment, - ACTIONS(11007), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212910] = 6, + ACTIONS(2216), 4, + sym_identifier, + anon_sym_DASH_DASH, + anon_sym_DASH2, + aux_sym_unquoted_token4, + [213046] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + STATE(6572), 1, + sym_comment, + ACTIONS(8043), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11009), 1, + ACTIONS(8045), 2, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6577), 1, + anon_sym_GT2, + [213061] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6573), 1, sym_comment, - [212929] = 6, + ACTIONS(8047), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8049), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213076] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_RBRACE, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2233), 1, + STATE(6574), 1, + sym_comment, + ACTIONS(8053), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(2235), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(8055), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213091] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6575), 1, + sym_comment, + ACTIONS(8057), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8059), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213106] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6576), 1, + sym_comment, + ACTIONS(8061), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8063), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213121] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6577), 1, + sym_comment, + ACTIONS(8065), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8067), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213136] = 4, + ACTIONS(3), 1, + anon_sym_POUND, STATE(6578), 1, sym_comment, - [212948] = 3, - ACTIONS(251), 1, + ACTIONS(8069), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8071), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213151] = 4, + ACTIONS(3), 1, anon_sym_POUND, STATE(6579), 1, sym_comment, - ACTIONS(11011), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [212961] = 5, + ACTIONS(8073), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8075), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213166] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11013), 1, - anon_sym_DQUOTE, - STATE(6515), 1, - aux_sym__str_double_quotes_repeat1, STATE(6580), 1, sym_comment, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [212978] = 4, + ACTIONS(8077), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8079), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213181] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6581), 1, sym_comment, - ACTIONS(8292), 2, + ACTIONS(8081), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8294), 2, + ACTIONS(8083), 2, anon_sym_RBRACK, anon_sym_GT2, - [212993] = 4, + [213196] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6582), 1, sym_comment, - ACTIONS(8188), 2, + ACTIONS(8085), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8190), 2, + ACTIONS(8087), 2, anon_sym_RBRACK, anon_sym_GT2, - [213008] = 5, + [213211] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11015), 1, - anon_sym_COLON2, - STATE(6255), 1, - aux_sym_ctrl_do_parenthesized_repeat2, STATE(6583), 1, sym_comment, - ACTIONS(7511), 2, - sym__newline, - sym__space, - [213025] = 4, + ACTIONS(8089), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8091), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213226] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4941), 1, + sym_block, STATE(6584), 1, sym_comment, - ACTIONS(1794), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [213040] = 6, + STATE(6585), 1, + aux_sym_shebang_repeat1, + [213245] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(4485), 1, - sym_block, - STATE(6443), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, + STATE(4944), 1, + sym_block, STATE(6585), 1, sym_comment, - [213059] = 6, - ACTIONS(3), 1, + [213264] = 6, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(11017), 1, - anon_sym_RBRACK, - ACTIONS(11019), 1, - sym__entry_separator, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4945), 1, + sym_block, STATE(6586), 1, sym_comment, - STATE(7687), 1, - sym__expr_parenthesized_immediate, - [213078] = 3, + STATE(6587), 1, + aux_sym_shebang_repeat1, + [213283] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(4949), 1, + sym_block, STATE(6587), 1, sym_comment, - ACTIONS(11021), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213091] = 3, + [213302] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(10990), 1, + anon_sym_LBRACK, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6588), 1, sym_comment, - ACTIONS(6301), 4, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - anon_sym_LBRACE, - [213104] = 4, + STATE(7401), 1, + sym_val_list, + [213321] = 4, ACTIONS(3), 1, anon_sym_POUND, STATE(6589), 1, sym_comment, - ACTIONS(2265), 2, - anon_sym_RBRACE, - aux_sym__unquoted_in_record_token4, - ACTIONS(2267), 2, - anon_sym_LPAREN2, + ACTIONS(8095), 2, + anon_sym_AT, sym__entry_separator, - [213119] = 3, + ACTIONS(8097), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213336] = 6, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10198), 1, + anon_sym_LBRACK, + ACTIONS(10200), 1, + anon_sym_LPAREN, + STATE(3195), 1, + sym_parameter_bracks, + STATE(3205), 1, + sym_parameter_parens, STATE(6590), 1, sym_comment, - ACTIONS(11023), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213132] = 6, + [213355] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6591), 1, + sym_comment, + ACTIONS(8099), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8101), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213370] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6592), 1, + sym_comment, + ACTIONS(8103), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8105), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213385] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + STATE(6593), 1, + sym_comment, + ACTIONS(8107), 2, + anon_sym_AT, + sym__entry_separator, + ACTIONS(8109), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [213400] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(4956), 1, + STATE(4695), 1, sym_block, - STATE(6591), 1, + STATE(6594), 1, sym_comment, - STATE(6592), 1, + STATE(6595), 1, aux_sym_shebang_repeat1, - [213151] = 6, + [213419] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4958), 1, + STATE(4697), 1, sym_block, - STATE(6592), 1, + STATE(6595), 1, sym_comment, - [213170] = 6, + [213438] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(4959), 1, + STATE(4698), 1, sym_block, - STATE(6593), 1, + STATE(6596), 1, sym_comment, - STATE(6594), 1, + STATE(6597), 1, aux_sym_shebang_repeat1, - [213189] = 6, + [213457] = 6, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, + ACTIONS(3800), 1, sym__newline, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(1706), 1, + STATE(1711), 1, aux_sym_shebang_repeat1, - STATE(4963), 1, + STATE(4702), 1, sym_block, - STATE(6594), 1, + STATE(6597), 1, sym_comment, - [213208] = 6, + [213476] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(10917), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + STATE(6598), 1, + sym_comment, + ACTIONS(1813), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [213491] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(10872), 1, anon_sym_LBRACK, - STATE(1706), 1, + ACTIONS(10874), 1, + anon_sym_LPAREN, + STATE(6044), 1, + sym_parameter_parens, + STATE(6045), 1, + sym_parameter_bracks, + STATE(6599), 1, + sym_comment, + [213510] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4412), 1, + sym_block, + STATE(6517), 1, aux_sym_shebang_repeat1, - STATE(6595), 1, + STATE(6600), 1, sym_comment, - STATE(7419), 1, - sym_val_list, - [213227] = 4, + [213529] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6596), 1, + STATE(6601), 1, sym_comment, - ACTIONS(8296), 2, + ACTIONS(8305), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8298), 2, + ACTIONS(8307), 2, anon_sym_RBRACK, anon_sym_GT2, - [213242] = 4, + [213544] = 4, ACTIONS(3), 1, anon_sym_POUND, - STATE(6597), 1, + STATE(6602), 1, sym_comment, - ACTIONS(8192), 2, + ACTIONS(8111), 2, anon_sym_AT, sym__entry_separator, - ACTIONS(8194), 2, + ACTIONS(8113), 2, anon_sym_RBRACK, anon_sym_GT2, - [213257] = 3, + [213559] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6598), 1, + STATE(6603), 1, sym_comment, - ACTIONS(984), 4, + ACTIONS(988), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [213270] = 4, + [213572] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, + ACTIONS(2210), 1, aux_sym_unquoted_token4, - STATE(6599), 1, + STATE(6604), 1, sym_comment, ACTIONS(1004), 3, sym_identifier, anon_sym_DASH_DASH, anon_sym_DASH2, - [213285] = 3, + [213587] = 3, ACTIONS(3), 1, anon_sym_POUND, - STATE(6600), 1, + STATE(6605), 1, sym_comment, ACTIONS(980), 4, anon_sym_RBRACK, sym__entry_separator, sym__table_head_separator, anon_sym_DOT2, - [213298] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6601), 1, - sym_comment, - ACTIONS(11025), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213311] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4708), 1, - sym_block, - STATE(6602), 1, - sym_comment, - STATE(6603), 1, - aux_sym_shebang_repeat1, - [213330] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4710), 1, - sym_block, - STATE(6603), 1, - sym_comment, - [213349] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4711), 1, - sym_block, - STATE(6604), 1, - sym_comment, - STATE(6605), 1, - aux_sym_shebang_repeat1, - [213368] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(1706), 1, - aux_sym_shebang_repeat1, - STATE(4715), 1, - sym_block, - STATE(6605), 1, - sym_comment, - [213387] = 4, + [213600] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, STATE(6606), 1, sym_comment, - ACTIONS(2237), 3, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - [213402] = 6, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(8119), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11027), 1, + ACTIONS(8121), 2, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, - STATE(6607), 1, - sym_comment, - [213421] = 6, + anon_sym_GT2, + [213615] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + STATE(6607), 1, + sym_comment, + ACTIONS(8135), 2, + anon_sym_AT, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11029), 1, + ACTIONS(8137), 2, anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [213630] = 6, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6889), 1, + anon_sym_DOLLAR, + ACTIONS(8624), 1, + sym_identifier, + STATE(5508), 1, + sym_val_variable, STATE(6608), 1, sym_comment, - [213440] = 6, - ACTIONS(3), 1, + STATE(7712), 1, + sym__variable_name, + [213649] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11031), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2053), 1, + anon_sym_LBRACE, + ACTIONS(11012), 1, + anon_sym_DOT_DOT2, STATE(6609), 1, sym_comment, - [213459] = 6, - ACTIONS(3), 1, + ACTIONS(11014), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213666] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11033), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2086), 1, + anon_sym_LBRACE, + ACTIONS(11016), 1, + anon_sym_DOT_DOT2, STATE(6610), 1, sym_comment, - [213478] = 4, - ACTIONS(3), 1, + ACTIONS(11018), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213683] = 5, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(2078), 1, + anon_sym_LBRACE, + ACTIONS(11020), 1, + anon_sym_DOT_DOT2, STATE(6611), 1, sym_comment, - ACTIONS(8196), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8198), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213493] = 4, - ACTIONS(3), 1, + ACTIONS(11022), 2, + anon_sym_DOT_DOT_EQ2, + anon_sym_DOT_DOT_LT2, + [213700] = 3, + ACTIONS(251), 1, anon_sym_POUND, STATE(6612), 1, sym_comment, - ACTIONS(8200), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8202), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213508] = 3, - ACTIONS(3), 1, + ACTIONS(11024), 4, + sym_identifier, + anon_sym_in2, + anon_sym_nu, + anon_sym_env, + [213713] = 5, + ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4819), 1, + anon_sym_LBRACE, + ACTIONS(11026), 1, + anon_sym_EQ2, + ACTIONS(11028), 1, + sym_short_flag_identifier, STATE(6613), 1, sym_comment, - ACTIONS(2265), 4, - sym_identifier, - anon_sym_DASH_DASH, - anon_sym_DASH2, - aux_sym_unquoted_token4, - [213521] = 6, + [213729] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2447), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11035), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6614), 1, sym_comment, - [213540] = 6, + ACTIONS(2445), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [213743] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11037), 1, + ACTIONS(11030), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(6215), 1, aux_sym__multiple_types_repeat1, STATE(6615), 1, sym_comment, - [213559] = 6, - ACTIONS(3), 1, + [213759] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11039), 1, - anon_sym_RBRACK, - STATE(3429), 1, - aux_sym__multiple_types_repeat1, STATE(6616), 1, sym_comment, - [213578] = 4, + ACTIONS(10982), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213771] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(1747), 1, + aux_sym__unquoted_in_record_token4, STATE(6617), 1, sym_comment, - ACTIONS(8204), 2, - anon_sym_AT, - sym__entry_separator, - ACTIONS(8206), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [213593] = 6, + STATE(7267), 1, + sym__expr_parenthesized_immediate, + [213787] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - STATE(5506), 1, + ACTIONS(11032), 1, + anon_sym_RBRACK, + STATE(6062), 1, aux_sym__multiple_types_repeat1, STATE(6618), 1, sym_comment, - STATE(7253), 1, - sym_param_cmd, - [213612] = 3, - ACTIONS(251), 1, + [213803] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11034), 1, + anon_sym_RBRACK, + STATE(6216), 1, + aux_sym__multiple_types_repeat1, STATE(6619), 1, sym_comment, - ACTIONS(11041), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213625] = 6, + [213819] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(9975), 1, - anon_sym_AT, - STATE(5507), 1, + ACTIONS(11036), 1, + anon_sym_RBRACK, + STATE(6217), 1, aux_sym__multiple_types_repeat1, STATE(6620), 1, sym_comment, - STATE(7263), 1, - sym_param_cmd, - [213644] = 4, + [213835] = 5, ACTIONS(3), 1, anon_sym_POUND, - STATE(6621), 1, - sym_comment, - ACTIONS(8208), 2, - anon_sym_AT, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(8210), 2, + ACTIONS(11038), 1, anon_sym_RBRACK, - anon_sym_GT2, - [213659] = 4, + STATE(2829), 1, + aux_sym__multiple_types_repeat1, + STATE(6621), 1, + sym_comment, + [213851] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11040), 1, + anon_sym_RBRACK, + STATE(6218), 1, + aux_sym__multiple_types_repeat1, STATE(6622), 1, sym_comment, - ACTIONS(8212), 2, - anon_sym_AT, + [213867] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(8214), 2, + ACTIONS(11042), 1, anon_sym_RBRACK, - anon_sym_GT2, - [213674] = 6, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(6910), 1, - anon_sym_DOLLAR, - ACTIONS(8676), 1, - sym_identifier, - STATE(5492), 1, - sym_val_variable, + STATE(6219), 1, + aux_sym__multiple_types_repeat1, STATE(6623), 1, sym_comment, - STATE(7730), 1, - sym__variable_name, - [213693] = 6, + [213883] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - ACTIONS(11043), 1, + ACTIONS(11044), 1, anon_sym_RBRACK, - STATE(3429), 1, + STATE(6220), 1, aux_sym__multiple_types_repeat1, STATE(6624), 1, sym_comment, - [213712] = 6, - ACTIONS(3), 1, + [213899] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym__unquoted_in_list_token2, - ACTIONS(2188), 1, - anon_sym_RBRACK, - ACTIONS(2190), 1, - anon_sym_LPAREN2, - ACTIONS(2192), 1, - sym__entry_separator, + ACTIONS(1272), 1, + anon_sym_RPAREN, STATE(6625), 1, sym_comment, - [213731] = 3, + ACTIONS(1265), 2, + sym__newline, + anon_sym_SEMI, + [213913] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6626), 1, sym_comment, - ACTIONS(11045), 4, + ACTIONS(10480), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213744] = 3, - ACTIONS(251), 1, + [213925] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11046), 1, + anon_sym_RBRACK, + STATE(6221), 1, + aux_sym__multiple_types_repeat1, STATE(6627), 1, sym_comment, - ACTIONS(11047), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - anon_sym_RBRACE, - [213757] = 3, - ACTIONS(251), 1, + [213941] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2455), 1, + sym__entry_separator, STATE(6628), 1, sym_comment, - ACTIONS(11049), 4, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, + ACTIONS(2453), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - [213770] = 5, + [213955] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11051), 1, - anon_sym_DQUOTE, - STATE(6389), 1, - aux_sym__str_double_quotes_repeat1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11048), 1, + anon_sym_RBRACK, + STATE(6113), 1, + aux_sym__multiple_types_repeat1, STATE(6629), 1, sym_comment, - ACTIONS(10203), 2, - sym__escaped_str_content, - sym_escape_sequence, - [213787] = 5, + [213971] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, STATE(6630), 1, sym_comment, - STATE(6742), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, - [213803] = 5, + ACTIONS(10534), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [213983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11053), 1, - anon_sym_GT2, - STATE(5416), 1, + ACTIONS(11050), 1, + anon_sym_RBRACK, + STATE(6294), 1, aux_sym__multiple_types_repeat1, STATE(6631), 1, sym_comment, - [213819] = 5, - ACTIONS(3), 1, + [213999] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11055), 1, - anon_sym_RBRACK, - STATE(6491), 1, - aux_sym__multiple_types_repeat1, STATE(6632), 1, sym_comment, - [213835] = 5, + ACTIONS(10984), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11057), 1, + ACTIONS(11052), 1, anon_sym_RBRACK, - STATE(6495), 1, + STATE(6114), 1, aux_sym__multiple_types_repeat1, STATE(6633), 1, sym_comment, - [213851] = 5, + [214027] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11059), 1, + ACTIONS(11054), 1, anon_sym_RBRACK, - STATE(6501), 1, + STATE(6115), 1, aux_sym__multiple_types_repeat1, STATE(6634), 1, sym_comment, - [213867] = 3, + [214043] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6635), 1, sym_comment, - ACTIONS(974), 3, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [213879] = 5, - ACTIONS(3), 1, + ACTIONS(10248), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214055] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11061), 1, - anon_sym_RBRACK, - STATE(6502), 1, - aux_sym__multiple_types_repeat1, STATE(6636), 1, sym_comment, - [213895] = 5, + ACTIONS(10248), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214067] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11063), 1, - anon_sym_RBRACK, - STATE(6503), 1, + ACTIONS(10176), 1, + anon_sym_LBRACK, + STATE(3439), 1, aux_sym__multiple_types_repeat1, STATE(6637), 1, sym_comment, - [213911] = 5, + [214083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2451), 1, sym__entry_separator, - ACTIONS(11065), 1, - anon_sym_RBRACK, - STATE(6508), 1, - aux_sym__multiple_types_repeat1, STATE(6638), 1, sym_comment, - [213927] = 5, + ACTIONS(2449), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214097] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(5613), 1, sym__entry_separator, - ACTIONS(11067), 1, - anon_sym_GT2, - STATE(5417), 1, - aux_sym__multiple_types_repeat1, STATE(6639), 1, sym_comment, - [213943] = 4, + ACTIONS(5611), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [214111] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11069), 1, - anon_sym_PIPE, - ACTIONS(11072), 1, - anon_sym_EQ_GT, - STATE(6640), 2, + ACTIONS(11058), 1, + anon_sym_COMMA, + STATE(6640), 1, sym_comment, - aux_sym_match_pattern_repeat1, - [213957] = 5, - ACTIONS(3), 1, + ACTIONS(11056), 2, + anon_sym_RBRACK, + sym_hex_digit, + [214125] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11074), 1, + ACTIONS(11060), 1, anon_sym_RBRACK, - STATE(6511), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11062), 1, + sym_hex_digit, STATE(6641), 1, sym_comment, - [213973] = 5, - ACTIONS(3), 1, + STATE(6647), 1, + aux_sym_val_binary_repeat1, + [214141] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11076), 1, - anon_sym_GT2, - STATE(5418), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, STATE(6642), 1, sym_comment, - [213989] = 4, + ACTIONS(2174), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [214155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2461), 1, + ACTIONS(2278), 1, sym__entry_separator, + ACTIONS(11064), 1, + anon_sym_RBRACE, + STATE(602), 1, + aux_sym__multiple_types_repeat1, STATE(6643), 1, sym_comment, - ACTIONS(2459), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214003] = 4, + [214171] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(10498), 1, - anon_sym_LPAREN, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11066), 1, + anon_sym_RBRACK, + STATE(6568), 1, + aux_sym__multiple_types_repeat1, STATE(6644), 1, sym_comment, - ACTIONS(10500), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [214017] = 4, + [214187] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2465), 1, - sym__entry_separator, + ACTIONS(2226), 1, + sym__newline, + ACTIONS(2230), 1, + sym__space, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, STATE(6645), 1, sym_comment, - ACTIONS(2463), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214031] = 5, + [214203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4943), 1, - sym__space, - ACTIONS(4945), 1, - sym__newline, - ACTIONS(11078), 1, - anon_sym_EQ2, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4062), 1, + aux_sym_unquoted_token4, STATE(6646), 1, sym_comment, - [214047] = 5, - ACTIONS(3), 1, + STATE(7341), 1, + sym__expr_parenthesized_immediate, + [214219] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6077), 1, - anon_sym_RBRACE, - STATE(3010), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11068), 1, + anon_sym_RBRACK, STATE(6647), 1, sym_comment, - [214063] = 4, + STATE(6794), 1, + aux_sym_val_binary_repeat1, + [214235] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(7909), 1, + anon_sym_EQ, + STATE(4798), 1, + sym_param_cmd, STATE(6648), 1, sym_comment, - ACTIONS(1794), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [214077] = 3, - ACTIONS(251), 1, + [214251] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11070), 1, + anon_sym_RBRACK, + STATE(6231), 1, + aux_sym__multiple_types_repeat1, STATE(6649), 1, sym_comment, - ACTIONS(978), 3, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [214089] = 4, + [214267] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2003), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11072), 1, + anon_sym_RBRACK, + STATE(6232), 1, + aux_sym__multiple_types_repeat1, STATE(6650), 1, sym_comment, - ACTIONS(2001), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214103] = 5, - ACTIONS(251), 1, + [214283] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11080), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11074), 1, anon_sym_RBRACK, - ACTIONS(11082), 1, - sym_hex_digit, + STATE(6233), 1, + aux_sym__multiple_types_repeat1, STATE(6651), 1, sym_comment, - STATE(6659), 1, - aux_sym_val_binary_repeat1, - [214119] = 4, + [214299] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2267), 1, - sym__space, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11076), 1, + anon_sym_RBRACK, + STATE(6234), 1, + aux_sym__multiple_types_repeat1, STATE(6652), 1, sym_comment, - ACTIONS(2265), 2, - sym__newline, - aux_sym_unquoted_token4, - [214133] = 4, + [214315] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2011), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11078), 1, + anon_sym_RBRACK, + STATE(6235), 1, + aux_sym__multiple_types_repeat1, STATE(6653), 1, sym_comment, - ACTIONS(2009), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214147] = 3, - ACTIONS(251), 1, + [214331] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11080), 1, + anon_sym_RBRACK, + STATE(6236), 1, + aux_sym__multiple_types_repeat1, STATE(6654), 1, sym_comment, - ACTIONS(9587), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214159] = 5, - ACTIONS(251), 1, + [214347] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6138), 1, - sym_block, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11082), 1, + anon_sym_RBRACK, + STATE(6237), 1, + aux_sym__multiple_types_repeat1, STATE(6655), 1, sym_comment, - [214175] = 3, - ACTIONS(251), 1, + [214363] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11084), 1, + anon_sym_RBRACK, + STATE(6238), 1, + aux_sym__multiple_types_repeat1, STATE(6656), 1, sym_comment, - ACTIONS(10760), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214187] = 5, + [214379] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, - sym__newline, - ACTIONS(2241), 1, - sym__space, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(2278), 1, + sym__entry_separator, + ACTIONS(11086), 1, + anon_sym_RBRACE, + STATE(603), 1, + aux_sym__multiple_types_repeat1, STATE(6657), 1, sym_comment, - [214203] = 5, + [214395] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4422), 1, - aux_sym_unquoted_token4, + ACTIONS(1663), 1, + anon_sym_RBRACK, + ACTIONS(1675), 1, + sym__entry_separator, + ACTIONS(8761), 1, + aux_sym__unquoted_in_list_token2, STATE(6658), 1, sym_comment, - STATE(7220), 1, - sym__expr_parenthesized_immediate, - [214219] = 5, + [214411] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11084), 1, - anon_sym_RBRACK, STATE(6659), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [214235] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2245), 1, + ACTIONS(10274), 3, + ts_builtin_sym_end, sym__newline, - ACTIONS(2247), 1, - sym__space, + anon_sym_SEMI, + [214423] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6660), 1, sym_comment, - [214251] = 5, - ACTIONS(3), 1, + ACTIONS(10508), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214435] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11086), 1, - anon_sym_RBRACK, - STATE(6551), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(7909), 1, + anon_sym_EQ, + STATE(4799), 1, + sym_param_cmd, STATE(6661), 1, sym_comment, - [214267] = 3, + [214451] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11088), 1, + anon_sym_RBRACK, STATE(6662), 1, sym_comment, - ACTIONS(9578), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214279] = 5, - ACTIONS(3), 1, + STATE(6794), 1, + aux_sym_val_binary_repeat1, + [214467] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11088), 1, - anon_sym_RBRACK, - STATE(6554), 1, - aux_sym__multiple_types_repeat1, STATE(6663), 1, sym_comment, - [214295] = 5, - ACTIONS(3), 1, + ACTIONS(10508), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214479] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11090), 1, - anon_sym_RBRACK, - STATE(6556), 1, - aux_sym__multiple_types_repeat1, STATE(6664), 1, sym_comment, - [214311] = 5, + ACTIONS(10367), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214491] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, + ACTIONS(11090), 1, + anon_sym_POUND_BANG, ACTIONS(11092), 1, - anon_sym_RBRACK, - STATE(6560), 1, - aux_sym__multiple_types_repeat1, + sym__newline, STATE(6665), 1, sym_comment, - [214327] = 5, - ACTIONS(3), 1, + STATE(7099), 1, + aux_sym_shebang_repeat1, + [214507] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, + ACTIONS(11062), 1, + sym_hex_digit, ACTIONS(11094), 1, anon_sym_RBRACK, - STATE(6561), 1, - aux_sym__multiple_types_repeat1, STATE(6666), 1, sym_comment, - [214343] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6079), 1, - anon_sym_RBRACE, - STATE(3020), 1, - aux_sym__multiple_types_repeat1, - STATE(6667), 1, - sym_comment, - [214359] = 3, + STATE(6673), 1, + aux_sym_val_binary_repeat1, + [214523] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6668), 1, + STATE(296), 1, + aux_sym__block_body_repeat1, + STATE(6667), 1, sym_comment, - ACTIONS(10836), 3, - ts_builtin_sym_end, + ACTIONS(141), 2, sym__newline, anon_sym_SEMI, - [214371] = 5, + [214537] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, ACTIONS(11096), 1, anon_sym_RBRACK, - STATE(6562), 1, + STATE(6227), 1, aux_sym__multiple_types_repeat1, + STATE(6668), 1, + sym_comment, + [214553] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6644), 1, + sym_val_list, STATE(6669), 1, sym_comment, - [214387] = 5, - ACTIONS(3), 1, + STATE(6788), 1, + aux_sym_val_table_repeat1, + [214569] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11098), 1, - anon_sym_RBRACK, - STATE(6563), 1, - aux_sym__multiple_types_repeat1, STATE(6670), 1, sym_comment, - [214403] = 5, - ACTIONS(3), 1, + ACTIONS(10413), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214581] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_EQ_GT, - ACTIONS(2233), 1, - anon_sym_PIPE, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, STATE(6671), 1, sym_comment, - [214419] = 3, + ACTIONS(10944), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214593] = 4, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, STATE(6672), 1, sym_comment, - ACTIONS(10254), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214431] = 5, - ACTIONS(3), 1, + ACTIONS(2184), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [214607] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11100), 1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11098), 1, anon_sym_RBRACK, - STATE(6564), 1, - aux_sym__multiple_types_repeat1, STATE(6673), 1, sym_comment, - [214447] = 5, + STATE(6794), 1, + aux_sym_val_binary_repeat1, + [214623] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10025), 1, - anon_sym_if, - ACTIONS(11102), 1, - anon_sym_EQ_GT, STATE(6674), 1, sym_comment, - STATE(7585), 1, - sym_match_guard, - [214463] = 3, + ACTIONS(9565), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214635] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6675), 1, sym_comment, - ACTIONS(10254), 3, + ACTIONS(10974), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [214475] = 5, - ACTIONS(251), 1, + [214647] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(7914), 1, - anon_sym_EQ, - STATE(4877), 1, - sym_param_cmd, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11100), 1, + anon_sym_RBRACK, + STATE(6254), 1, + aux_sym__multiple_types_repeat1, STATE(6676), 1, sym_comment, - [214491] = 5, + [214663] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11104), 1, - anon_sym_RBRACE, - STATE(2975), 1, + ACTIONS(11102), 1, + anon_sym_RBRACK, + STATE(6229), 1, aux_sym__multiple_types_repeat1, STATE(6677), 1, sym_comment, - [214507] = 5, - ACTIONS(251), 1, + [214679] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1523), 1, - anon_sym_SEMI, - ACTIONS(3811), 1, - sym__newline, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11104), 1, + anon_sym_RBRACK, + STATE(6255), 1, + aux_sym__multiple_types_repeat1, STATE(6678), 1, sym_comment, - [214523] = 5, + [214695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(5483), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11106), 1, + anon_sym_RBRACK, + STATE(6256), 1, + aux_sym__multiple_types_repeat1, STATE(6679), 1, sym_comment, - STATE(7254), 1, - sym__expr_parenthesized_immediate, - [214539] = 5, - ACTIONS(251), 1, + [214711] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11106), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11108), 1, anon_sym_RBRACK, + STATE(6257), 1, + aux_sym__multiple_types_repeat1, STATE(6680), 1, sym_comment, - STATE(6685), 1, - aux_sym_val_binary_repeat1, - [214555] = 5, - ACTIONS(3), 1, + [214727] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3475), 1, - sym__newline, - ACTIONS(3477), 1, - sym__space, - STATE(1139), 1, - aux_sym_ctrl_do_parenthesized_repeat2, STATE(6681), 1, sym_comment, - [214571] = 4, + ACTIONS(10994), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214739] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2469), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11110), 1, + anon_sym_RBRACK, + STATE(6258), 1, + aux_sym__multiple_types_repeat1, STATE(6682), 1, sym_comment, - ACTIONS(2467), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214585] = 5, - ACTIONS(3), 1, + [214755] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11108), 1, - anon_sym_POUND_BANG, - ACTIONS(11110), 1, - sym__newline, STATE(6683), 1, sym_comment, - STATE(7148), 1, - aux_sym_shebang_repeat1, - [214601] = 4, + ACTIONS(10862), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2473), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11112), 1, + anon_sym_RBRACK, + STATE(6259), 1, + aux_sym__multiple_types_repeat1, STATE(6684), 1, sym_comment, - ACTIONS(2471), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214615] = 5, - ACTIONS(251), 1, + [214783] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11112), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11114), 1, anon_sym_RBRACK, + STATE(6260), 1, + aux_sym__multiple_types_repeat1, STATE(6685), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [214631] = 3, + [214799] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6686), 1, sym_comment, - ACTIONS(10306), 3, + ACTIONS(10968), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [214643] = 5, + [214811] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11114), 1, + ACTIONS(11116), 1, anon_sym_RBRACK, - STATE(6607), 1, + STATE(6261), 1, aux_sym__multiple_types_repeat1, STATE(6687), 1, sym_comment, - [214659] = 4, + [214827] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2091), 1, - sym__entry_separator, STATE(6688), 1, sym_comment, - ACTIONS(2089), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214673] = 5, + ACTIONS(1960), 3, + sym__newline, + sym__space, + anon_sym_COLON2, + [214839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11116), 1, - anon_sym_RBRACK, - STATE(6608), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2218), 1, + sym__space, STATE(6689), 1, sym_comment, - [214689] = 5, + ACTIONS(2216), 2, + sym__newline, + aux_sym_unquoted_token4, + [214853] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2336), 1, sym__entry_separator, - ACTIONS(11118), 1, - anon_sym_RBRACK, - STATE(6609), 1, - aux_sym__multiple_types_repeat1, STATE(6690), 1, sym_comment, - [214705] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11120), 1, + ACTIONS(2334), 2, anon_sym_RBRACK, - STATE(6610), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [214867] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6691), 1, sym_comment, - [214721] = 4, - ACTIONS(3), 1, + ACTIONS(11118), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [214879] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2477), 1, - sym__entry_separator, STATE(6692), 1, sym_comment, - ACTIONS(2475), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214735] = 5, - ACTIONS(3), 1, + ACTIONS(10478), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214891] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11122), 1, - anon_sym_RBRACK, - STATE(6614), 1, - aux_sym__multiple_types_repeat1, STATE(6693), 1, sym_comment, - [214751] = 4, - ACTIONS(3), 1, + ACTIONS(9585), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214903] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2429), 1, - sym__entry_separator, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6270), 1, + sym_block, STATE(6694), 1, sym_comment, - ACTIONS(2427), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [214765] = 5, + [214919] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, - ACTIONS(5903), 1, - anon_sym_EQ_GT, - ACTIONS(5908), 1, - anon_sym_PIPE, + ACTIONS(2459), 1, + sym__entry_separator, STATE(6695), 1, sym_comment, - [214781] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11124), 1, + ACTIONS(2457), 2, anon_sym_RBRACK, - STATE(6615), 1, - aux_sym__multiple_types_repeat1, + anon_sym_RBRACE, + [214933] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6696), 1, sym_comment, - [214797] = 5, + ACTIONS(10242), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [214945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2467), 1, sym__entry_separator, - ACTIONS(11126), 1, - anon_sym_RBRACK, - STATE(6616), 1, - aux_sym__multiple_types_repeat1, STATE(6697), 1, sym_comment, - [214813] = 5, + ACTIONS(2465), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2302), 1, sym__entry_separator, - ACTIONS(11128), 1, - anon_sym_RBRACK, - STATE(6624), 1, - aux_sym__multiple_types_repeat1, STATE(6698), 1, sym_comment, - [214829] = 4, - ACTIONS(3), 1, + ACTIONS(2300), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [214973] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11130), 1, - anon_sym_DQUOTE, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11120), 1, + anon_sym_RBRACK, STATE(6699), 1, sym_comment, - ACTIONS(11132), 2, - sym__escaped_str_content, - sym_escape_sequence, - [214843] = 3, - ACTIONS(251), 1, + STATE(6702), 1, + aux_sym_val_binary_repeat1, + [214989] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11122), 1, + anon_sym_RBRACK, + STATE(3469), 1, + aux_sym__multiple_types_repeat1, STATE(6700), 1, sym_comment, - ACTIONS(10790), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214855] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6701), 1, - sym_comment, - ACTIONS(11134), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214867] = 4, + [215005] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2445), 1, + ACTIONS(2306), 1, sym__entry_separator, - STATE(6702), 1, + STATE(6701), 1, sym_comment, - ACTIONS(2443), 2, + ACTIONS(2304), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [214881] = 5, + [215019] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11136), 1, + ACTIONS(11124), 1, anon_sym_RBRACK, - STATE(6703), 1, + STATE(6702), 1, sym_comment, - STATE(6785), 1, + STATE(6794), 1, aux_sym_val_binary_repeat1, - [214897] = 3, - ACTIONS(251), 1, + [215035] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11126), 1, + anon_sym_RBRACK, + STATE(3465), 1, + aux_sym__multiple_types_repeat1, + STATE(6703), 1, + sym_comment, + [215051] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(11128), 1, + anon_sym_RBRACE, + STATE(2967), 1, + aux_sym__multiple_types_repeat1, STATE(6704), 1, sym_comment, - ACTIONS(5893), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [214909] = 3, - ACTIONS(251), 1, + [215067] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11130), 1, + anon_sym_RBRACK, + STATE(6271), 1, + aux_sym__multiple_types_repeat1, STATE(6705), 1, sym_comment, - ACTIONS(10391), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214921] = 5, - ACTIONS(251), 1, + [215083] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11138), 1, - anon_sym_RBRACK, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(11132), 1, + anon_sym_RBRACE, + STATE(2968), 1, + aux_sym__multiple_types_repeat1, STATE(6706), 1, sym_comment, - STATE(6714), 1, - aux_sym_val_binary_repeat1, - [214937] = 3, - ACTIONS(251), 1, + [215099] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6027), 1, + anon_sym_RBRACK, STATE(6707), 1, sym_comment, - ACTIONS(10393), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214949] = 3, - ACTIONS(251), 1, + ACTIONS(6029), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [215113] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11134), 1, + anon_sym_RBRACK, + STATE(6272), 1, + aux_sym__multiple_types_repeat1, STATE(6708), 1, sym_comment, - ACTIONS(10401), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214961] = 3, - ACTIONS(251), 1, + [215129] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11136), 1, + anon_sym_RBRACK, + STATE(6273), 1, + aux_sym__multiple_types_repeat1, STATE(6709), 1, sym_comment, - ACTIONS(10306), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [214973] = 3, - ACTIONS(251), 1, + [215145] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11138), 1, + anon_sym_RBRACK, + STATE(6274), 1, + aux_sym__multiple_types_repeat1, STATE(6710), 1, sym_comment, - ACTIONS(10401), 3, + [215161] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6711), 1, + sym_comment, + ACTIONS(10474), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [214985] = 4, + [215173] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, ACTIONS(11140), 1, - anon_sym_LPAREN, - STATE(6711), 1, - sym_comment, - ACTIONS(11142), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [214999] = 3, - ACTIONS(251), 1, - anon_sym_POUND, + anon_sym_RBRACK, + STATE(6275), 1, + aux_sym__multiple_types_repeat1, STATE(6712), 1, sym_comment, - ACTIONS(6174), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215011] = 3, + [215189] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6713), 1, sym_comment, - ACTIONS(6178), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215023] = 5, - ACTIONS(251), 1, + ACTIONS(10864), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215201] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11144), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11142), 1, anon_sym_RBRACK, + STATE(6276), 1, + aux_sym__multiple_types_repeat1, STATE(6714), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [215039] = 4, + [215217] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6052), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11144), 1, anon_sym_RBRACK, + STATE(6277), 1, + aux_sym__multiple_types_repeat1, STATE(6715), 1, sym_comment, - ACTIONS(6054), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [215053] = 5, + [215233] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, ACTIONS(11146), 1, anon_sym_RBRACK, - STATE(6097), 1, + STATE(6278), 1, aux_sym__multiple_types_repeat1, STATE(6716), 1, sym_comment, - [215069] = 3, - ACTIONS(251), 1, + [215249] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2310), 1, + sym__entry_separator, STATE(6717), 1, sym_comment, - ACTIONS(5908), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215081] = 4, + ACTIONS(2308), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215263] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2481), 1, + ACTIONS(2332), 1, sym__entry_separator, STATE(6718), 1, sym_comment, - ACTIONS(2479), 2, + ACTIONS(2330), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [215095] = 5, - ACTIONS(3), 1, + [215277] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11148), 1, - anon_sym_RBRACK, - STATE(6098), 1, - aux_sym__multiple_types_repeat1, STATE(6719), 1, sym_comment, - [215111] = 5, + ACTIONS(10297), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215289] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11150), 1, - anon_sym_RBRACK, - STATE(6099), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(7158), 1, + aux_sym__unquoted_in_record_token4, STATE(6720), 1, sym_comment, - [215127] = 5, + STATE(7322), 1, + sym__expr_parenthesized_immediate, + [215305] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2391), 1, sym__entry_separator, - ACTIONS(11152), 1, - anon_sym_RBRACK, - STATE(6100), 1, - aux_sym__multiple_types_repeat1, STATE(6721), 1, sym_comment, - [215143] = 4, - ACTIONS(3), 1, + ACTIONS(2389), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [215319] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2347), 1, - sym__entry_separator, STATE(6722), 1, sym_comment, - ACTIONS(2345), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215157] = 5, - ACTIONS(3), 1, + ACTIONS(10288), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215331] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11154), 1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11148), 1, anon_sym_RBRACK, - STATE(6101), 1, - aux_sym__multiple_types_repeat1, STATE(6723), 1, sym_comment, - [215173] = 5, - ACTIONS(3), 1, + STATE(6728), 1, + aux_sym_val_binary_repeat1, + [215347] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11156), 1, - anon_sym_RBRACK, - STATE(6102), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(11150), 1, + anon_sym_GT2, STATE(6724), 1, sym_comment, - [215189] = 5, + STATE(7457), 1, + sym_param_cmd, + [215363] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11158), 1, - anon_sym_RBRACK, - STATE(6103), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + ACTIONS(11152), 1, + sym__space, STATE(6725), 1, sym_comment, - [215205] = 5, - ACTIONS(3), 1, + [215379] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2298), 1, - sym__entry_separator, - ACTIONS(2326), 1, - anon_sym_RBRACE, - STATE(573), 1, - aux_sym__multiple_types_repeat1, STATE(6726), 1, sym_comment, - [215221] = 5, + ACTIONS(10288), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215391] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1663), 1, + anon_sym_RBRACE, + ACTIONS(1675), 1, sym__entry_separator, - ACTIONS(11160), 1, - anon_sym_RBRACK, - STATE(6104), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(8709), 1, + aux_sym__unquoted_in_record_token2, STATE(6727), 1, sym_comment, - [215237] = 5, + [215407] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3811), 1, - sym__newline, - ACTIONS(11162), 1, - anon_sym_COLON, - STATE(1706), 1, - aux_sym_shebang_repeat1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11154), 1, + anon_sym_RBRACK, STATE(6728), 1, sym_comment, - [215253] = 5, + STATE(6794), 1, + aux_sym_val_binary_repeat1, + [215423] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - ACTIONS(1767), 1, - anon_sym_LBRACE, - ACTIONS(11164), 1, - aux_sym__immediate_decimal_token2, STATE(6729), 1, sym_comment, - [215269] = 3, - ACTIONS(251), 1, + ACTIONS(10246), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215435] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11156), 1, + anon_sym_RBRACK, + STATE(6283), 1, + aux_sym__multiple_types_repeat1, STATE(6730), 1, sym_comment, - ACTIONS(11166), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [215281] = 5, - ACTIONS(251), 1, + [215451] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11168), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11158), 1, anon_sym_RBRACK, + STATE(6284), 1, + aux_sym__multiple_types_repeat1, STATE(6731), 1, sym_comment, - STATE(6734), 1, - aux_sym_val_binary_repeat1, - [215297] = 4, + [215467] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2267), 1, - anon_sym_PIPE, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11160), 1, + anon_sym_RBRACK, + STATE(6285), 1, + aux_sym__multiple_types_repeat1, STATE(6732), 1, sym_comment, - ACTIONS(2265), 2, - anon_sym_EQ_GT, - aux_sym_unquoted_token4, - [215311] = 5, + [215483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11170), 1, - anon_sym_RBRACE, - STATE(3029), 1, + ACTIONS(11162), 1, + anon_sym_RBRACK, + STATE(6286), 1, aux_sym__multiple_types_repeat1, STATE(6733), 1, sym_comment, - [215327] = 5, - ACTIONS(251), 1, + [215499] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11172), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11164), 1, anon_sym_RBRACK, + STATE(6133), 1, + aux_sym__multiple_types_repeat1, STATE(6734), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [215343] = 4, + [215515] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2417), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11166), 1, + anon_sym_RBRACK, + STATE(6287), 1, + aux_sym__multiple_types_repeat1, STATE(6735), 1, sym_comment, - ACTIONS(2415), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215357] = 3, - ACTIONS(251), 1, + [215531] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4534), 1, + aux_sym_unquoted_token4, STATE(6736), 1, sym_comment, - ACTIONS(10496), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215369] = 5, + STATE(7239), 1, + sym__expr_parenthesized_immediate, + [215547] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11174), 1, + ACTIONS(11168), 1, anon_sym_RBRACK, - STATE(6128), 1, + STATE(6288), 1, aux_sym__multiple_types_repeat1, STATE(6737), 1, sym_comment, - [215385] = 4, + [215563] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2351), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11170), 1, + anon_sym_RBRACK, + STATE(6289), 1, + aux_sym__multiple_types_repeat1, STATE(6738), 1, sym_comment, - ACTIONS(2349), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215399] = 5, + [215579] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11176), 1, + ACTIONS(11172), 1, anon_sym_RBRACK, - STATE(6129), 1, + STATE(6134), 1, aux_sym__multiple_types_repeat1, STATE(6739), 1, sym_comment, - [215415] = 5, + [215595] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11178), 1, + ACTIONS(11174), 1, anon_sym_RBRACK, - STATE(6130), 1, + STATE(6135), 1, aux_sym__multiple_types_repeat1, STATE(6740), 1, sym_comment, - [215431] = 5, + [215611] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11180), 1, + ACTIONS(11176), 1, anon_sym_RBRACK, - STATE(6131), 1, + STATE(6290), 1, aux_sym__multiple_types_repeat1, STATE(6741), 1, sym_comment, - [215447] = 5, + [215627] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11182), 1, - anon_sym_RBRACK, - STATE(6132), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2226), 1, + anon_sym_EQ_GT, + ACTIONS(2230), 1, + anon_sym_PIPE, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, STATE(6742), 1, sym_comment, - [215463] = 4, - ACTIONS(3), 1, + [215643] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2355), 1, - sym__entry_separator, STATE(6743), 1, sym_comment, - ACTIONS(2353), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215477] = 5, - ACTIONS(3), 1, + ACTIONS(10246), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215655] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11184), 1, - anon_sym_RBRACK, - STATE(6133), 1, - aux_sym__multiple_types_repeat1, STATE(6744), 1, sym_comment, - [215493] = 5, - ACTIONS(3), 1, + ACTIONS(10297), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215667] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11186), 1, - anon_sym_RBRACK, - STATE(6134), 1, - aux_sym__multiple_types_repeat1, STATE(6745), 1, sym_comment, - [215509] = 4, + ACTIONS(10290), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215679] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5643), 1, + ACTIONS(5871), 1, sym__entry_separator, + ACTIONS(11178), 1, + anon_sym_RBRACK, + STATE(2832), 1, + aux_sym__multiple_types_repeat1, STATE(6746), 1, sym_comment, - ACTIONS(5641), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215523] = 5, + [215695] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(11188), 1, + ACTIONS(11180), 1, anon_sym_RBRACK, - STATE(6135), 1, + STATE(2833), 1, aux_sym__multiple_types_repeat1, STATE(6747), 1, sym_comment, - [215539] = 4, + [215711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2371), 1, - sym__entry_separator, + ACTIONS(6031), 1, + anon_sym_RBRACK, STATE(6748), 1, sym_comment, - ACTIONS(2369), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215553] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2405), 1, + ACTIONS(6033), 2, + anon_sym_LPAREN2, sym__entry_separator, - STATE(6749), 1, - sym_comment, - ACTIONS(2403), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [215567] = 5, + [215725] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11190), 1, + ACTIONS(11182), 1, anon_sym_RBRACK, - STATE(6750), 1, + STATE(6749), 1, sym_comment, - STATE(6777), 1, + STATE(6755), 1, aux_sym_val_binary_repeat1, - [215583] = 5, + [215741] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(6750), 1, + sym_comment, + ACTIONS(6149), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [215753] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11192), 1, + ACTIONS(11184), 1, anon_sym_RBRACK, - STATE(3472), 1, + STATE(6388), 1, aux_sym__multiple_types_repeat1, STATE(6751), 1, sym_comment, - [215599] = 3, - ACTIONS(251), 1, + [215769] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11186), 1, + anon_sym_RBRACK, + STATE(6397), 1, + aux_sym__multiple_types_repeat1, STATE(6752), 1, sym_comment, - ACTIONS(10768), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215611] = 3, - ACTIONS(251), 1, + [215785] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11188), 1, + anon_sym_RBRACK, + STATE(6400), 1, + aux_sym__multiple_types_repeat1, STATE(6753), 1, sym_comment, - ACTIONS(10353), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215623] = 5, - ACTIONS(251), 1, + [215801] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11194), 1, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(11190), 1, anon_sym_RBRACK, + STATE(2835), 1, + aux_sym__multiple_types_repeat1, STATE(6754), 1, sym_comment, - STATE(6756), 1, - aux_sym_val_binary_repeat1, - [215639] = 3, + [215817] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11192), 1, + anon_sym_RBRACK, STATE(6755), 1, sym_comment, - ACTIONS(10468), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215651] = 5, - ACTIONS(251), 1, + STATE(6794), 1, + aux_sym_val_binary_repeat1, + [215833] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11196), 1, - anon_sym_RBRACK, + ACTIONS(11194), 1, + sym__table_head_separator, STATE(6756), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [215667] = 4, - ACTIONS(251), 1, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [215847] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, + ACTIONS(5871), 1, + sym__entry_separator, + ACTIONS(11196), 1, + anon_sym_RBRACK, + STATE(2836), 1, + aux_sym__multiple_types_repeat1, STATE(6757), 1, sym_comment, - ACTIONS(2186), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [215681] = 5, + [215863] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_EQ_GT, - ACTIONS(2241), 1, - anon_sym_PIPE, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11198), 1, + anon_sym_RBRACK, + STATE(6298), 1, + aux_sym__multiple_types_repeat1, STATE(6758), 1, sym_comment, - [215697] = 5, + [215879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11198), 1, + ACTIONS(11200), 1, anon_sym_RBRACK, - STATE(6159), 1, + STATE(6299), 1, aux_sym__multiple_types_repeat1, STATE(6759), 1, sym_comment, - [215713] = 4, + [215895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5647), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11202), 1, + anon_sym_RBRACK, + STATE(6300), 1, + aux_sym__multiple_types_repeat1, STATE(6760), 1, sym_comment, - ACTIONS(5645), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [215727] = 5, + [215911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(7139), 1, - aux_sym_unquoted_token4, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11204), 1, + anon_sym_RBRACK, + STATE(6301), 1, + aux_sym__multiple_types_repeat1, STATE(6761), 1, sym_comment, - STATE(7343), 1, - sym__expr_parenthesized_immediate, - [215743] = 4, + [215927] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, STATE(6762), 1, sym_comment, - ACTIONS(1873), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [215757] = 5, + ACTIONS(10534), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215939] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11200), 1, + ACTIONS(11206), 1, anon_sym_RBRACK, - STATE(6160), 1, + STATE(6302), 1, aux_sym__multiple_types_repeat1, STATE(6763), 1, sym_comment, - [215773] = 5, - ACTIONS(3), 1, + [215955] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11202), 1, - anon_sym_RBRACK, - STATE(6161), 1, - aux_sym__multiple_types_repeat1, STATE(6764), 1, sym_comment, - [215789] = 5, + ACTIONS(10361), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [215967] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11204), 1, + ACTIONS(11208), 1, anon_sym_RBRACK, - STATE(6162), 1, + STATE(6303), 1, aux_sym__multiple_types_repeat1, STATE(6765), 1, sym_comment, - [215805] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6766), 1, - sym_comment, - ACTIONS(10486), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215817] = 5, + [215983] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11206), 1, + ACTIONS(11210), 1, anon_sym_RBRACK, - STATE(6163), 1, + STATE(6304), 1, aux_sym__multiple_types_repeat1, + STATE(6766), 1, + sym_comment, + [215999] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6767), 1, sym_comment, - [215833] = 5, + ACTIONS(6153), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216011] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11208), 1, + ACTIONS(11212), 1, anon_sym_RBRACK, - STATE(6164), 1, + STATE(6305), 1, aux_sym__multiple_types_repeat1, STATE(6768), 1, sym_comment, - [215849] = 5, + [216027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2324), 1, sym__entry_separator, - ACTIONS(11210), 1, - anon_sym_RBRACK, - STATE(6165), 1, - aux_sym__multiple_types_repeat1, STATE(6769), 1, sym_comment, - [215865] = 5, + ACTIONS(2322), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216041] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11212), 1, + ACTIONS(11214), 1, anon_sym_GT2, - STATE(5302), 1, + STATE(5365), 1, aux_sym__multiple_types_repeat1, STATE(6770), 1, sym_comment, - [215881] = 3, - ACTIONS(251), 1, + [216057] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(11216), 1, + anon_sym_RBRACK, + STATE(2708), 1, + aux_sym__multiple_types_repeat1, STATE(6771), 1, sym_comment, - ACTIONS(10492), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215893] = 5, + [216073] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2328), 1, sym__entry_separator, - ACTIONS(11214), 1, - anon_sym_RBRACK, - STATE(6166), 1, - aux_sym__multiple_types_repeat1, STATE(6772), 1, sym_comment, - [215909] = 5, - ACTIONS(3), 1, + ACTIONS(2326), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216087] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2245), 1, - anon_sym_EQ_GT, - ACTIONS(2247), 1, - anon_sym_PIPE, STATE(6773), 1, sym_comment, - [215925] = 5, + ACTIONS(10508), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216099] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4913), 1, - aux_sym_unquoted_token4, + ACTIONS(2477), 1, + sym__entry_separator, STATE(6774), 1, sym_comment, - STATE(7290), 1, - sym__expr_parenthesized_immediate, - [215941] = 3, + ACTIONS(2475), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216113] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6775), 1, sym_comment, - ACTIONS(10353), 3, + ACTIONS(10363), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [215953] = 3, - ACTIONS(251), 1, + [216125] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2463), 1, + sym__entry_separator, STATE(6776), 1, sym_comment, - ACTIONS(11025), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [215965] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11216), 1, + ACTIONS(2461), 2, anon_sym_RBRACK, - STATE(6777), 1, - sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [215981] = 5, + anon_sym_RBRACE, + [216139] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, ACTIONS(11218), 1, anon_sym_RBRACK, - STATE(6778), 1, + STATE(6777), 1, sym_comment, - STATE(6783), 1, + STATE(6785), 1, aux_sym_val_binary_repeat1, - [215997] = 5, + [216155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, ACTIONS(11220), 1, anon_sym_GT2, - STATE(5304), 1, + STATE(5377), 1, aux_sym__multiple_types_repeat1, + STATE(6778), 1, + sym_comment, + [216171] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6779), 1, sym_comment, - [216013] = 5, - ACTIONS(3), 1, + ACTIONS(6129), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [216183] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, + ACTIONS(11062), 1, + sym_hex_digit, ACTIONS(11222), 1, anon_sym_RBRACK, - STATE(6458), 1, - aux_sym__multiple_types_repeat1, + STATE(6662), 1, + aux_sym_val_binary_repeat1, STATE(6780), 1, sym_comment, - [216029] = 4, + [216199] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2359), 1, - sym__entry_separator, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(8761), 1, + aux_sym__unquoted_in_list_token4, STATE(6781), 1, sym_comment, - ACTIONS(2357), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216043] = 4, - ACTIONS(3), 1, + STATE(7233), 1, + sym__expr_parenthesized_immediate, + [216215] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2363), 1, - sym__entry_separator, + ACTIONS(11224), 1, + anon_sym_QMARK2, STATE(6782), 1, sym_comment, - ACTIONS(2361), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216057] = 5, - ACTIONS(251), 1, + ACTIONS(960), 2, + sym__table_head_separator, + anon_sym_DOT2, + [216229] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11224), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11226), 1, anon_sym_RBRACK, + STATE(6172), 1, + aux_sym__multiple_types_repeat1, STATE(6783), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [216073] = 4, - ACTIONS(3), 1, + [216245] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2367), 1, - sym__entry_separator, + ACTIONS(9664), 1, + anon_sym_LBRACK, STATE(6784), 1, sym_comment, - ACTIONS(2365), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216087] = 5, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6993), 1, + sym_val_list, + [216261] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11226), 1, + ACTIONS(11228), 1, anon_sym_RBRACK, STATE(6785), 1, sym_comment, - STATE(7182), 1, + STATE(6794), 1, aux_sym_val_binary_repeat1, - [216103] = 5, + [216277] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11228), 1, + ACTIONS(11230), 1, anon_sym_RBRACK, - STATE(6188), 1, + STATE(6198), 1, aux_sym__multiple_types_repeat1, STATE(6786), 1, sym_comment, - [216119] = 3, - ACTIONS(251), 1, + [216293] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11232), 1, + anon_sym_RBRACK, + STATE(6316), 1, + aux_sym__multiple_types_repeat1, STATE(6787), 1, sym_comment, - ACTIONS(10788), 3, - ts_builtin_sym_end, - sym__newline, + [216309] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11234), 1, + anon_sym_LBRACK, + STATE(7354), 1, + sym_val_list, + STATE(6788), 2, + sym_comment, + aux_sym_val_table_repeat1, + [216323] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(1527), 1, anon_sym_SEMI, - [216131] = 5, + ACTIONS(3800), 1, + sym__newline, + STATE(1711), 1, + aux_sym_shebang_repeat1, + STATE(6789), 1, + sym_comment, + [216339] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11230), 1, + ACTIONS(11237), 1, anon_sym_RBRACK, - STATE(6189), 1, + STATE(6317), 1, aux_sym__multiple_types_repeat1, - STATE(6788), 1, + STATE(6790), 1, sym_comment, - [216147] = 5, + [216355] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11232), 1, + ACTIONS(11239), 1, anon_sym_RBRACK, - STATE(6190), 1, + STATE(6318), 1, aux_sym__multiple_types_repeat1, - STATE(6789), 1, + STATE(6791), 1, sym_comment, - [216163] = 5, + [216371] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11234), 1, + ACTIONS(11241), 1, anon_sym_RBRACK, - STATE(6191), 1, + STATE(6319), 1, aux_sym__multiple_types_repeat1, - STATE(6790), 1, + STATE(6792), 1, sym_comment, - [216179] = 5, + [216387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11236), 1, + ACTIONS(11243), 1, anon_sym_RBRACK, - STATE(6192), 1, + STATE(6320), 1, aux_sym__multiple_types_repeat1, - STATE(6791), 1, + STATE(6793), 1, sym_comment, - [216195] = 3, + [216403] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6792), 1, + ACTIONS(11245), 1, + anon_sym_RBRACK, + ACTIONS(11247), 1, + sym_hex_digit, + STATE(6794), 2, sym_comment, - ACTIONS(10947), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216207] = 5, + aux_sym_val_binary_repeat1, + [216417] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11238), 1, + ACTIONS(11250), 1, anon_sym_RBRACK, - STATE(6193), 1, + STATE(6321), 1, aux_sym__multiple_types_repeat1, - STATE(6793), 1, + STATE(6795), 1, sym_comment, - [216223] = 5, + [216433] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11240), 1, + ACTIONS(11252), 1, anon_sym_RBRACK, - STATE(6194), 1, + STATE(6322), 1, aux_sym__multiple_types_repeat1, - STATE(6794), 1, + STATE(6796), 1, sym_comment, - [216239] = 3, + [216449] = 4, ACTIONS(251), 1, anon_sym_POUND, - STATE(6795), 1, - sym_comment, - ACTIONS(10788), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216251] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11242), 1, - anon_sym_LPAREN, - STATE(6796), 1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + STATE(6797), 1, sym_comment, - ACTIONS(11244), 2, - sym_unescaped_interpolated_content, - anon_sym_SQUOTE, - [216265] = 5, + ACTIONS(1751), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [216463] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11246), 1, + ACTIONS(11254), 1, anon_sym_RBRACK, - STATE(6195), 1, + STATE(6323), 1, aux_sym__multiple_types_repeat1, - STATE(6797), 1, - sym_comment, - [216281] = 3, - ACTIONS(251), 1, - anon_sym_POUND, STATE(6798), 1, sym_comment, - ACTIONS(10280), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216293] = 5, + [216479] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - sym__space, - ACTIONS(1004), 1, - sym__newline, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11256), 1, + anon_sym_GT2, + STATE(5397), 1, + aux_sym__multiple_types_repeat1, STATE(6799), 1, sym_comment, - [216309] = 3, - ACTIONS(251), 1, + [216495] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2290), 1, + anon_sym_RBRACE, STATE(6800), 1, sym_comment, - ACTIONS(10381), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216321] = 3, - ACTIONS(251), 1, + ACTIONS(2292), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [216509] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11258), 1, + anon_sym_GT2, + STATE(5398), 1, + aux_sym__multiple_types_repeat1, STATE(6801), 1, sym_comment, - ACTIONS(10880), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216333] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6802), 1, - sym_comment, - ACTIONS(10880), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [216345] = 5, + [216525] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(10228), 1, - anon_sym_LBRACK, - STATE(3429), 1, + ACTIONS(11260), 1, + anon_sym_RBRACK, + STATE(6243), 1, aux_sym__multiple_types_repeat1, - STATE(6803), 1, + STATE(6802), 1, sym_comment, - [216361] = 5, + [216541] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4543), 1, - aux_sym_unquoted_token4, - STATE(6804), 1, + ACTIONS(11262), 1, + anon_sym_GT2, + STATE(6803), 1, sym_comment, - STATE(7227), 1, - sym__expr_parenthesized_immediate, - [216377] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2375), 1, + ACTIONS(11264), 2, + anon_sym_AT, sym__entry_separator, - STATE(6805), 1, - sym_comment, - ACTIONS(2373), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216391] = 4, + [216555] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11250), 1, - anon_sym_COMMA, - STATE(6806), 1, + STATE(6804), 1, sym_comment, - ACTIONS(11248), 2, - anon_sym_RBRACK, - sym_hex_digit, - [216405] = 5, + ACTIONS(10317), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216567] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11252), 1, + ACTIONS(11266), 1, anon_sym_RBRACK, - STATE(6807), 1, + STATE(6805), 1, sym_comment, - STATE(6809), 1, + STATE(6926), 1, aux_sym_val_binary_repeat1, - [216421] = 5, + [216583] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6677), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6806), 1, + sym_comment, + [216599] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(5625), 1, sym__entry_separator, - ACTIONS(11254), 1, + STATE(6807), 1, + sym_comment, + ACTIONS(5623), 2, anon_sym_RBRACK, - STATE(6547), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [216613] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6808), 1, sym_comment, - [216437] = 5, + ACTIONS(11268), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [216625] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11256), 1, + ACTIONS(11270), 1, anon_sym_RBRACK, STATE(6809), 1, sym_comment, - STATE(7182), 1, + STATE(6814), 1, aux_sym_val_binary_repeat1, - [216453] = 5, - ACTIONS(3), 1, + [216641] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11258), 1, - anon_sym_RBRACK, - STATE(6214), 1, - aux_sym__multiple_types_repeat1, STATE(6810), 1, sym_comment, - [216469] = 4, + ACTIONS(1272), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [216653] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, STATE(6811), 1, sym_comment, - ACTIONS(2192), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [216483] = 5, + ACTIONS(11272), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [216665] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2314), 1, sym__entry_separator, - ACTIONS(11260), 1, - anon_sym_RBRACK, - STATE(6215), 1, - aux_sym__multiple_types_repeat1, STATE(6812), 1, sym_comment, - [216499] = 5, + ACTIONS(2312), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216679] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11262), 1, - anon_sym_RBRACK, - STATE(6216), 1, - aux_sym__multiple_types_repeat1, STATE(6813), 1, sym_comment, - [216515] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2429), 3, + anon_sym_RBRACK, sym__entry_separator, - ACTIONS(11264), 1, + sym__table_head_separator, + [216691] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11274), 1, anon_sym_RBRACK, - STATE(6217), 1, - aux_sym__multiple_types_repeat1, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(6814), 1, sym_comment, - [216531] = 5, + [216707] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11266), 1, + ACTIONS(11276), 1, anon_sym_RBRACK, - STATE(6218), 1, + STATE(6331), 1, aux_sym__multiple_types_repeat1, STATE(6815), 1, sym_comment, - [216547] = 4, - ACTIONS(3), 1, + [216723] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2379), 1, - sym__entry_separator, STATE(6816), 1, sym_comment, - ACTIONS(2377), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216561] = 5, + ACTIONS(10375), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [216735] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11268), 1, + ACTIONS(11278), 1, anon_sym_RBRACK, - STATE(6219), 1, + STATE(6332), 1, aux_sym__multiple_types_repeat1, STATE(6817), 1, sym_comment, - [216577] = 5, + [216751] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11270), 1, + ACTIONS(11280), 1, anon_sym_RBRACK, - STATE(6220), 1, + STATE(6333), 1, aux_sym__multiple_types_repeat1, STATE(6818), 1, sym_comment, - [216593] = 5, + [216767] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11272), 1, + ACTIONS(11282), 1, anon_sym_RBRACK, - STATE(6221), 1, + STATE(6334), 1, aux_sym__multiple_types_repeat1, STATE(6819), 1, sym_comment, - [216609] = 4, + [216783] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2383), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11284), 1, + anon_sym_RBRACK, + STATE(6335), 1, + aux_sym__multiple_types_repeat1, STATE(6820), 1, sym_comment, - ACTIONS(2381), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216623] = 5, + [216799] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(2455), 1, sym__entry_separator, - ACTIONS(11274), 1, - anon_sym_RBRACK, - STATE(2804), 1, - aux_sym__multiple_types_repeat1, STATE(6821), 1, sym_comment, - [216639] = 5, + ACTIONS(2453), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [216813] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11276), 1, + ACTIONS(11286), 1, anon_sym_RBRACK, - STATE(2877), 1, + STATE(6336), 1, aux_sym__multiple_types_repeat1, STATE(6822), 1, sym_comment, - [216655] = 4, + [216829] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2387), 1, + ACTIONS(6496), 1, sym__entry_separator, - STATE(6823), 1, - sym_comment, - ACTIONS(2385), 2, + ACTIONS(11288), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [216669] = 4, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(1272), 1, - anon_sym_RPAREN, - STATE(6824), 1, + STATE(6337), 1, + aux_sym__multiple_types_repeat1, + STATE(6823), 1, sym_comment, - ACTIONS(1265), 2, - sym__newline, - anon_sym_SEMI, - [216683] = 5, + [216845] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11278), 1, + ACTIONS(11290), 1, anon_sym_RBRACK, - STATE(6268), 1, + STATE(6338), 1, aux_sym__multiple_types_repeat1, + STATE(6824), 1, + sym_comment, + [216861] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3800), 1, + sym__newline, + ACTIONS(11292), 1, + anon_sym_COLON, + STATE(1711), 1, + aux_sym_shebang_repeat1, STATE(6825), 1, sym_comment, - [216699] = 5, + [216877] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(1745), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11294), 1, + anon_sym_RBRACK, + STATE(6150), 1, + aux_sym__multiple_types_repeat1, STATE(6826), 1, sym_comment, - STATE(7356), 1, - sym__expr_parenthesized_immediate, - [216715] = 5, + [216893] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11280), 1, - anon_sym_RBRACK, STATE(6827), 1, sym_comment, - STATE(6831), 1, - aux_sym_val_binary_repeat1, - [216731] = 3, + ACTIONS(11296), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [216905] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6828), 1, sym_comment, - ACTIONS(1272), 3, + ACTIONS(10377), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [216743] = 5, + [216917] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(7809), 1, - anon_sym_EQ, - STATE(4811), 1, - sym_param_cmd, STATE(6829), 1, sym_comment, - [216759] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6830), 1, - sym_comment, - ACTIONS(10939), 3, + ACTIONS(10317), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [216771] = 5, + [216929] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11282), 1, + ACTIONS(11298), 1, anon_sym_RBRACK, - STATE(6831), 1, + STATE(6830), 1, sym_comment, - STATE(7182), 1, + STATE(6835), 1, aux_sym_val_binary_repeat1, - [216787] = 5, + [216945] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(5631), 1, sym__entry_separator, - ACTIONS(11284), 1, - anon_sym_RBRACK, - STATE(6557), 1, - aux_sym__multiple_types_repeat1, - STATE(6832), 1, + STATE(6831), 1, sym_comment, - [216803] = 5, + ACTIONS(5629), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [216959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(5635), 1, sym__entry_separator, - ACTIONS(11286), 1, + STATE(6832), 1, + sym_comment, + ACTIONS(5633), 2, anon_sym_RBRACK, - STATE(6236), 1, - aux_sym__multiple_types_repeat1, + anon_sym_GT2, + [216973] = 4, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11300), 1, + anon_sym_QMARK2, STATE(6833), 1, sym_comment, - [216819] = 5, - ACTIONS(3), 1, + ACTIONS(954), 2, + sym__table_head_separator, + anon_sym_DOT2, + [216987] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11288), 1, - anon_sym_RBRACK, - STATE(6558), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, STATE(6834), 1, sym_comment, - [216835] = 5, - ACTIONS(3), 1, + ACTIONS(1733), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217001] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11290), 1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11302), 1, anon_sym_RBRACK, - STATE(6559), 1, - aux_sym__multiple_types_repeat1, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(6835), 1, sym_comment, - [216851] = 5, + [217017] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11292), 1, + ACTIONS(11304), 1, anon_sym_RBRACK, - STATE(6237), 1, + STATE(6350), 1, aux_sym__multiple_types_repeat1, STATE(6836), 1, sym_comment, - [216867] = 5, - ACTIONS(3), 1, + [217033] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11294), 1, - anon_sym_RBRACK, - STATE(6238), 1, - aux_sym__multiple_types_repeat1, STATE(6837), 1, sym_comment, - [216883] = 5, + ACTIONS(10508), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [217045] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11296), 1, + ACTIONS(11306), 1, anon_sym_RBRACK, - STATE(6239), 1, + STATE(6351), 1, aux_sym__multiple_types_repeat1, STATE(6838), 1, sym_comment, - [216899] = 5, + [217061] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11298), 1, + ACTIONS(11308), 1, anon_sym_RBRACK, - STATE(6240), 1, + STATE(6352), 1, aux_sym__multiple_types_repeat1, STATE(6839), 1, sym_comment, - [216915] = 4, + [217077] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2391), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11310), 1, + anon_sym_RBRACK, + STATE(6353), 1, + aux_sym__multiple_types_repeat1, STATE(6840), 1, sym_comment, - ACTIONS(2389), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [216929] = 5, + [217093] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11300), 1, + ACTIONS(11312), 1, anon_sym_RBRACK, - STATE(6241), 1, + STATE(6354), 1, aux_sym__multiple_types_repeat1, STATE(6841), 1, sym_comment, - [216945] = 5, + [217109] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11302), 1, + ACTIONS(11314), 1, anon_sym_RBRACK, - STATE(6242), 1, + STATE(6355), 1, aux_sym__multiple_types_repeat1, STATE(6842), 1, sym_comment, - [216961] = 5, - ACTIONS(251), 1, + [217125] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(7809), 1, - anon_sym_EQ, - STATE(4812), 1, - sym_param_cmd, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11316), 1, + anon_sym_RBRACK, + STATE(6356), 1, + aux_sym__multiple_types_repeat1, STATE(6843), 1, sym_comment, - [216977] = 5, - ACTIONS(251), 1, + [217141] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11304), 1, - anon_sym_RBRACK, + ACTIONS(2218), 1, + anon_sym_PIPE, STATE(6844), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [216993] = 5, + ACTIONS(2216), 2, + anon_sym_EQ_GT, + aux_sym_unquoted_token4, + [217155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11306), 1, + ACTIONS(11318), 1, anon_sym_RBRACK, - STATE(6243), 1, + STATE(6357), 1, aux_sym__multiple_types_repeat1, STATE(6845), 1, sym_comment, - [217009] = 3, + [217171] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6846), 1, sym_comment, - ACTIONS(10798), 3, + ACTIONS(10196), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [217021] = 4, + [217183] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2395), 1, - sym__entry_separator, + ACTIONS(2286), 1, + anon_sym_RBRACE, STATE(6847), 1, sym_comment, - ACTIONS(2393), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [217035] = 4, + ACTIONS(2288), 2, + anon_sym_LPAREN2, + sym__entry_separator, + [217197] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2399), 1, - sym__entry_separator, + ACTIONS(2192), 1, + anon_sym_EQ_GT, + ACTIONS(2196), 1, + anon_sym_PIPE, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(6848), 1, sym_comment, - ACTIONS(2397), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [217049] = 5, - ACTIONS(3), 1, + [217213] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_RBRACE, - ACTIONS(1693), 1, - sym__entry_separator, - ACTIONS(8920), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, STATE(6849), 1, sym_comment, - [217065] = 4, + ACTIONS(1774), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217227] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(296), 1, - aux_sym__block_body_repeat1, STATE(6850), 1, sym_comment, - ACTIONS(141), 2, - sym__newline, - anon_sym_SEMI, - [217079] = 4, - ACTIONS(251), 1, + ACTIONS(6157), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217239] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, + ACTIONS(1970), 1, + sym__entry_separator, STATE(6851), 1, sym_comment, - ACTIONS(2198), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [217093] = 5, + ACTIONS(1968), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [217253] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11308), 1, + ACTIONS(11320), 1, anon_sym_RBRACK, STATE(6852), 1, sym_comment, STATE(6855), 1, aux_sym_val_binary_repeat1, - [217109] = 3, - ACTIONS(251), 1, + [217269] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + ACTIONS(2200), 1, + anon_sym_EQ_GT, + ACTIONS(2202), 1, + anon_sym_PIPE, STATE(6853), 1, sym_comment, - ACTIONS(10800), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217121] = 4, - ACTIONS(3), 1, + [217285] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2413), 1, - sym__entry_separator, STATE(6854), 1, sym_comment, - ACTIONS(2411), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [217135] = 5, + ACTIONS(6157), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217297] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, + ACTIONS(11062), 1, sym_hex_digit, - ACTIONS(11310), 1, + ACTIONS(11322), 1, anon_sym_RBRACK, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(6855), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [217151] = 5, - ACTIONS(3), 1, + [217313] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11312), 1, - anon_sym_RBRACK, - STATE(6258), 1, - aux_sym__multiple_types_repeat1, STATE(6856), 1, sym_comment, - [217167] = 5, + ACTIONS(6161), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [217325] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11314), 1, + ACTIONS(11324), 1, anon_sym_RBRACK, - STATE(3481), 1, + STATE(6362), 1, aux_sym__multiple_types_repeat1, STATE(6857), 1, sym_comment, - [217183] = 3, - ACTIONS(251), 1, + [217341] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6062), 1, + anon_sym_RBRACE, + STATE(2971), 1, + aux_sym__multiple_types_repeat1, STATE(6858), 1, sym_comment, - ACTIONS(10884), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217195] = 5, + [217357] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11316), 1, + ACTIONS(11326), 1, anon_sym_RBRACK, - STATE(6259), 1, + STATE(6363), 1, aux_sym__multiple_types_repeat1, STATE(6859), 1, sym_comment, - [217211] = 5, + [217373] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11318), 1, + ACTIONS(11328), 1, anon_sym_RBRACK, - STATE(6260), 1, + STATE(6364), 1, aux_sym__multiple_types_repeat1, STATE(6860), 1, sym_comment, - [217227] = 5, + [217389] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11320), 1, + ACTIONS(11330), 1, anon_sym_RBRACK, - STATE(6261), 1, + STATE(6365), 1, aux_sym__multiple_types_repeat1, STATE(6861), 1, sym_comment, - [217243] = 4, + [217405] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5657), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11332), 1, + anon_sym_RBRACK, + STATE(6366), 1, + aux_sym__multiple_types_repeat1, STATE(6862), 1, sym_comment, - ACTIONS(5655), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217257] = 5, + [217421] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11322), 1, + ACTIONS(11334), 1, anon_sym_RBRACK, - STATE(6262), 1, + STATE(6367), 1, aux_sym__multiple_types_repeat1, STATE(6863), 1, sym_comment, - [217273] = 3, - ACTIONS(251), 1, + [217437] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11336), 1, + anon_sym_RBRACK, + STATE(6368), 1, + aux_sym__multiple_types_repeat1, STATE(6864), 1, sym_comment, - ACTIONS(11324), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [217285] = 4, - ACTIONS(3), 1, + [217453] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11326), 1, - anon_sym_GT2, + ACTIONS(1817), 1, + aux_sym_unquoted_token2, STATE(6865), 1, sym_comment, - ACTIONS(11328), 2, - anon_sym_AT, - sym__entry_separator, - [217299] = 5, + ACTIONS(1819), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [217467] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2431), 1, sym__entry_separator, - ACTIONS(11330), 1, - anon_sym_RBRACK, - STATE(6263), 1, - aux_sym__multiple_types_repeat1, STATE(6866), 1, sym_comment, - [217315] = 5, + ACTIONS(2429), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [217481] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11332), 1, + ACTIONS(11338), 1, anon_sym_RBRACK, - STATE(6264), 1, + STATE(6369), 1, aux_sym__multiple_types_repeat1, STATE(6867), 1, sym_comment, - [217331] = 4, + [217497] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(2413), 1, @@ -417355,14322 +416578,14131 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(2411), 2, anon_sym_RBRACK, anon_sym_RBRACE, - [217345] = 5, + [217511] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(11334), 1, - anon_sym_RBRACK, - STATE(6265), 1, + ACTIONS(6064), 1, + anon_sym_RBRACE, + STATE(2972), 1, aux_sym__multiple_types_repeat1, STATE(6869), 1, sym_comment, - [217361] = 5, - ACTIONS(3), 1, + [217527] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11336), 1, - anon_sym_RBRACK, - STATE(3470), 1, - aux_sym__multiple_types_repeat1, STATE(6870), 1, sym_comment, - [217377] = 3, + ACTIONS(10329), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [217539] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11340), 1, + anon_sym_RBRACK, STATE(6871), 1, sym_comment, - ACTIONS(10397), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217389] = 5, + STATE(6873), 1, + aux_sym_val_binary_repeat1, + [217555] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - ACTIONS(11338), 1, - sym__space, + ACTIONS(5619), 1, + sym__entry_separator, STATE(6872), 1, sym_comment, - [217405] = 3, + ACTIONS(5617), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [217569] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11342), 1, + anon_sym_RBRACK, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(6873), 1, sym_comment, - ACTIONS(10397), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217417] = 5, + [217585] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11340), 1, - anon_sym_RBRACK, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(11344), 1, + anon_sym_GT2, STATE(6874), 1, sym_comment, - STATE(6877), 1, - aux_sym_val_binary_repeat1, - [217433] = 3, - ACTIONS(251), 1, + STATE(7398), 1, + sym_param_cmd, + [217601] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11346), 1, + anon_sym_RBRACK, + STATE(6375), 1, + aux_sym__multiple_types_repeat1, STATE(6875), 1, sym_comment, - ACTIONS(10788), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217445] = 3, - ACTIONS(251), 1, + [217617] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11348), 1, + anon_sym_RBRACK, + STATE(3467), 1, + aux_sym__multiple_types_repeat1, STATE(6876), 1, sym_comment, - ACTIONS(10788), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217457] = 5, - ACTIONS(251), 1, + [217633] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11342), 1, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11350), 1, anon_sym_RBRACK, + STATE(6376), 1, + aux_sym__multiple_types_repeat1, STATE(6877), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [217473] = 5, + [217649] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11344), 1, + ACTIONS(11352), 1, anon_sym_RBRACK, - STATE(6280), 1, + STATE(6377), 1, aux_sym__multiple_types_repeat1, STATE(6878), 1, sym_comment, - [217489] = 5, + [217665] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11346), 1, + ACTIONS(11354), 1, anon_sym_RBRACK, - STATE(6281), 1, + STATE(6378), 1, aux_sym__multiple_types_repeat1, STATE(6879), 1, sym_comment, - [217505] = 5, + [217681] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11348), 1, + ACTIONS(11356), 1, anon_sym_RBRACK, - STATE(6282), 1, + STATE(6379), 1, aux_sym__multiple_types_repeat1, STATE(6880), 1, sym_comment, - [217521] = 5, + [217697] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11350), 1, - anon_sym_RBRACK, - STATE(6283), 1, + ACTIONS(11358), 1, + anon_sym_GT2, + STATE(5379), 1, aux_sym__multiple_types_repeat1, STATE(6881), 1, sym_comment, - [217537] = 4, - ACTIONS(3), 1, + [217713] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5651), 1, - sym__entry_separator, STATE(6882), 1, sym_comment, - ACTIONS(5649), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [217551] = 5, + ACTIONS(10616), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [217725] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11352), 1, + ACTIONS(11360), 1, anon_sym_RBRACK, - STATE(6284), 1, + STATE(6380), 1, aux_sym__multiple_types_repeat1, STATE(6883), 1, sym_comment, - [217567] = 3, - ACTIONS(251), 1, + [217741] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11362), 1, + anon_sym_RBRACK, + STATE(6381), 1, + aux_sym__multiple_types_repeat1, STATE(6884), 1, sym_comment, - ACTIONS(10806), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [217579] = 5, + [217757] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - sym__newline, - ACTIONS(2233), 1, - sym__space, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11364), 1, + anon_sym_GT2, + STATE(5380), 1, + aux_sym__multiple_types_repeat1, STATE(6885), 1, sym_comment, - [217595] = 5, - ACTIONS(3), 1, + [217773] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11354), 1, - anon_sym_RBRACK, - STATE(6285), 1, - aux_sym__multiple_types_repeat1, STATE(6886), 1, sym_comment, - [217611] = 5, + ACTIONS(10431), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [217785] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11356), 1, + ACTIONS(11366), 1, anon_sym_RBRACK, - STATE(6286), 1, + STATE(6382), 1, aux_sym__multiple_types_repeat1, STATE(6887), 1, sym_comment, - [217627] = 5, + [217801] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(11358), 1, - anon_sym_RBRACE, - STATE(2995), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4892), 1, + aux_sym_unquoted_token4, STATE(6888), 1, sym_comment, - [217643] = 5, + STATE(7346), 1, + sym__expr_parenthesized_immediate, + [217817] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(2344), 1, sym__entry_separator, - ACTIONS(11360), 1, - anon_sym_RBRACE, - STATE(2996), 1, - aux_sym__multiple_types_repeat1, STATE(6889), 1, sym_comment, - [217659] = 5, + ACTIONS(2342), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [217831] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(11362), 1, + ACTIONS(11368), 1, anon_sym_RBRACK, - STATE(6287), 1, + STATE(2834), 1, aux_sym__multiple_types_repeat1, STATE(6890), 1, sym_comment, - [217675] = 5, + [217847] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(7186), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11370), 1, + anon_sym_RBRACK, + STATE(6389), 1, + aux_sym__multiple_types_repeat1, STATE(6891), 1, sym_comment, - STATE(7240), 1, - sym__expr_parenthesized_immediate, - [217691] = 5, - ACTIONS(251), 1, + [217863] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(11364), 1, - anon_sym_GT2, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11372), 1, + anon_sym_RBRACK, + STATE(6511), 1, + aux_sym__multiple_types_repeat1, STATE(6892), 1, sym_comment, - STATE(7644), 1, - sym_param_cmd, - [217707] = 5, + [217879] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11366), 1, + ACTIONS(11374), 1, anon_sym_RBRACK, - STATE(6297), 1, + STATE(6390), 1, aux_sym__multiple_types_repeat1, STATE(6893), 1, sym_comment, - [217723] = 5, + [217895] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11368), 1, + ACTIONS(11376), 1, anon_sym_RBRACK, - STATE(6185), 1, + STATE(6391), 1, aux_sym__multiple_types_repeat1, STATE(6894), 1, sym_comment, - [217739] = 5, + [217911] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11370), 1, + ACTIONS(11378), 1, anon_sym_RBRACK, - STATE(6298), 1, + STATE(6392), 1, aux_sym__multiple_types_repeat1, STATE(6895), 1, sym_comment, - [217755] = 5, + [217927] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11372), 1, - anon_sym_RBRACK, - STATE(6299), 1, + ACTIONS(11380), 1, + anon_sym_GT2, + STATE(5405), 1, aux_sym__multiple_types_repeat1, STATE(6896), 1, sym_comment, - [217771] = 5, + [217943] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11374), 1, + ACTIONS(11382), 1, anon_sym_RBRACK, - STATE(6300), 1, + STATE(6393), 1, aux_sym__multiple_types_repeat1, STATE(6897), 1, sym_comment, - [217787] = 5, + [217959] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(11376), 1, - anon_sym_RBRACK, - STATE(2815), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(5516), 1, + anon_sym_LPAREN2, + ACTIONS(5526), 1, + aux_sym__unquoted_in_list_token4, STATE(6898), 1, sym_comment, - [217803] = 5, + STATE(7233), 1, + sym__expr_parenthesized_immediate, + [217975] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11378), 1, + ACTIONS(11384), 1, anon_sym_RBRACK, - STATE(6301), 1, + STATE(6394), 1, aux_sym__multiple_types_repeat1, STATE(6899), 1, sym_comment, - [217819] = 5, + [217991] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11380), 1, + ACTIONS(11386), 1, anon_sym_RBRACK, - STATE(6250), 1, + STATE(6395), 1, aux_sym__multiple_types_repeat1, STATE(6900), 1, sym_comment, - [217835] = 5, + [218007] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11382), 1, - anon_sym_RBRACK, - STATE(6302), 1, + ACTIONS(11388), 1, + anon_sym_GT2, + STATE(5386), 1, aux_sym__multiple_types_repeat1, STATE(6901), 1, sym_comment, - [217851] = 5, - ACTIONS(3), 1, + [218023] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11384), 1, - anon_sym_RBRACK, - STATE(6303), 1, - aux_sym__multiple_types_repeat1, - STATE(6902), 1, + ACTIONS(11390), 1, + anon_sym_PIPE, + ACTIONS(11393), 1, + anon_sym_EQ_GT, + STATE(6902), 2, sym_comment, - [217867] = 5, + aux_sym_match_pattern_repeat1, + [218037] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11386), 1, + ACTIONS(11395), 1, anon_sym_RBRACK, - STATE(6410), 1, + STATE(6396), 1, aux_sym__multiple_types_repeat1, STATE(6903), 1, sym_comment, - [217883] = 4, + [218053] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11388), 1, - sym__table_head_separator, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11397), 1, + anon_sym_GT2, + STATE(5387), 1, + aux_sym__multiple_types_repeat1, STATE(6904), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - sym__entry_separator, - [217897] = 5, + [218069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11390), 1, - anon_sym_RBRACK, - STATE(6304), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(10216), 1, + anon_sym_LPAREN, STATE(6905), 1, sym_comment, - [217913] = 5, + ACTIONS(10218), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [218083] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(11392), 1, - anon_sym_GT2, - STATE(5312), 1, + ACTIONS(6100), 1, + anon_sym_RBRACE, + STATE(2949), 1, aux_sym__multiple_types_repeat1, STATE(6906), 1, sym_comment, - [217929] = 5, + [218099] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11394), 1, - anon_sym_RBRACK, - STATE(2832), 1, + ACTIONS(11399), 1, + anon_sym_GT2, + STATE(5390), 1, aux_sym__multiple_types_repeat1, STATE(6907), 1, sym_comment, - [217945] = 5, + [218115] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11396), 1, - anon_sym_RBRACK, - STATE(6460), 1, + ACTIONS(11401), 1, + anon_sym_GT2, + STATE(5391), 1, aux_sym__multiple_types_repeat1, STATE(6908), 1, sym_comment, - [217961] = 5, + [218131] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11398), 1, + ACTIONS(11403), 1, anon_sym_RBRACK, - STATE(3482), 1, + STATE(6512), 1, aux_sym__multiple_types_repeat1, STATE(6909), 1, sym_comment, - [217977] = 5, + [218147] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11400), 1, + ACTIONS(11405), 1, anon_sym_RBRACK, - STATE(6312), 1, + STATE(6513), 1, aux_sym__multiple_types_repeat1, STATE(6910), 1, sym_comment, - [217993] = 5, + [218163] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11402), 1, - anon_sym_GT2, - STATE(5313), 1, + ACTIONS(11407), 1, + anon_sym_RBRACK, + STATE(6402), 1, aux_sym__multiple_types_repeat1, STATE(6911), 1, sym_comment, - [218009] = 5, + [218179] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11404), 1, + ACTIONS(11409), 1, anon_sym_RBRACK, - STATE(2720), 1, + STATE(6403), 1, aux_sym__multiple_types_repeat1, STATE(6912), 1, sym_comment, - [218025] = 5, + [218195] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11406), 1, + ACTIONS(11411), 1, anon_sym_RBRACK, - STATE(6313), 1, + STATE(6404), 1, aux_sym__multiple_types_repeat1, STATE(6913), 1, sym_comment, - [218041] = 5, + [218211] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11408), 1, + ACTIONS(11413), 1, anon_sym_RBRACK, - STATE(6314), 1, + STATE(6405), 1, aux_sym__multiple_types_repeat1, STATE(6914), 1, sym_comment, - [218057] = 5, + [218227] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11410), 1, + ACTIONS(11415), 1, anon_sym_RBRACK, - STATE(6315), 1, + STATE(6406), 1, aux_sym__multiple_types_repeat1, STATE(6915), 1, sym_comment, - [218073] = 3, + [218243] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(10096), 1, + anon_sym_if, + ACTIONS(11417), 1, + anon_sym_EQ_GT, STATE(6916), 1, sym_comment, - ACTIONS(10995), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218085] = 5, + STATE(7621), 1, + sym_match_guard, + [218259] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11412), 1, + ACTIONS(11419), 1, anon_sym_RBRACK, - STATE(6316), 1, + STATE(6407), 1, aux_sym__multiple_types_repeat1, STATE(6917), 1, sym_comment, - [218101] = 4, + [218275] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2457), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11421), 1, + anon_sym_RBRACK, + STATE(6408), 1, + aux_sym__multiple_types_repeat1, STATE(6918), 1, sym_comment, - ACTIONS(2455), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218115] = 5, + [218291] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11414), 1, - anon_sym_RBRACK, - STATE(6317), 1, + ACTIONS(11423), 1, + anon_sym_GT2, + STATE(5392), 1, aux_sym__multiple_types_repeat1, STATE(6919), 1, sym_comment, - [218131] = 5, + [218307] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11416), 1, + ACTIONS(11425), 1, anon_sym_RBRACK, - STATE(6318), 1, + STATE(6409), 1, aux_sym__multiple_types_repeat1, STATE(6920), 1, sym_comment, - [218147] = 5, + [218323] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11418), 1, - anon_sym_RBRACK, - STATE(6319), 1, + ACTIONS(11427), 1, + anon_sym_GT2, + STATE(5394), 1, aux_sym__multiple_types_repeat1, STATE(6921), 1, sym_comment, - [218163] = 5, + [218339] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(5871), 1, sym__entry_separator, - ACTIONS(11420), 1, + ACTIONS(11429), 1, anon_sym_RBRACK, - STATE(2853), 1, + STATE(2850), 1, aux_sym__multiple_types_repeat1, STATE(6922), 1, sym_comment, - [218179] = 5, + [218355] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(11422), 1, - anon_sym_RBRACK, - STATE(2856), 1, + ACTIONS(11431), 1, + anon_sym_RBRACE, + STATE(2992), 1, aux_sym__multiple_types_repeat1, STATE(6923), 1, sym_comment, - [218195] = 3, + [218371] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11433), 1, + anon_sym_RBRACK, STATE(6924), 1, sym_comment, - ACTIONS(10959), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218207] = 5, + STATE(7037), 1, + aux_sym_val_binary_repeat1, + [218387] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11424), 1, + ACTIONS(11435), 1, anon_sym_GT2, - STATE(5320), 1, + STATE(5409), 1, aux_sym__multiple_types_repeat1, STATE(6925), 1, sym_comment, - [218223] = 5, - ACTIONS(3), 1, + [218403] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11426), 1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11437), 1, anon_sym_RBRACK, - STATE(6489), 1, - aux_sym__multiple_types_repeat1, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(6926), 1, sym_comment, - [218239] = 5, - ACTIONS(3), 1, + [218419] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11428), 1, - anon_sym_RBRACK, - STATE(6522), 1, - aux_sym__multiple_types_repeat1, STATE(6927), 1, sym_comment, - [218255] = 5, + ACTIONS(11439), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218431] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(11430), 1, - anon_sym_GT2, - STATE(5325), 1, + ACTIONS(6102), 1, + anon_sym_RBRACE, + STATE(2950), 1, aux_sym__multiple_types_repeat1, STATE(6928), 1, sym_comment, - [218271] = 5, + [218447] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2340), 1, sym__entry_separator, - ACTIONS(11432), 1, - anon_sym_RBRACK, - STATE(6528), 1, - aux_sym__multiple_types_repeat1, STATE(6929), 1, sym_comment, - [218287] = 5, - ACTIONS(3), 1, + ACTIONS(2338), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218461] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_token4, STATE(6930), 1, sym_comment, - STATE(7254), 1, - sym__expr_parenthesized_immediate, - [218303] = 4, + ACTIONS(10882), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218473] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5665), 1, - sym__entry_separator, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, + ACTIONS(5847), 1, + anon_sym_EQ_GT, + ACTIONS(5856), 1, + anon_sym_PIPE, STATE(6931), 1, sym_comment, - ACTIONS(5663), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [218317] = 4, + [218489] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5627), 1, - sym__entry_separator, + ACTIONS(11441), 1, + anon_sym_DQUOTE, STATE(6932), 1, sym_comment, - ACTIONS(5625), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [218331] = 5, - ACTIONS(251), 1, + ACTIONS(11443), 2, + sym__escaped_str_content, + sym_escape_sequence, + [218503] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(11434), 1, - anon_sym_GT2, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11445), 1, + anon_sym_RBRACK, + STATE(6100), 1, + aux_sym__multiple_types_repeat1, STATE(6933), 1, sym_comment, - STATE(7580), 1, - sym_param_cmd, - [218347] = 5, + [218519] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2278), 1, sym__entry_separator, - ACTIONS(11436), 1, - anon_sym_RBRACK, - STATE(6175), 1, + ACTIONS(11447), 1, + anon_sym_RBRACE, + STATE(657), 1, aux_sym__multiple_types_repeat1, STATE(6934), 1, sym_comment, - [218363] = 5, + [218535] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6908), 1, - sym_val_list, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, STATE(6935), 1, sym_comment, - STATE(6937), 1, - aux_sym_val_table_repeat1, - [218379] = 5, + ACTIONS(2190), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [218549] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2443), 1, sym__entry_separator, - ACTIONS(11438), 1, - anon_sym_RBRACK, - STATE(6235), 1, - aux_sym__multiple_types_repeat1, STATE(6936), 1, sym_comment, - [218395] = 4, + ACTIONS(2441), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218563] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11440), 1, - anon_sym_LBRACK, - STATE(7215), 1, - sym_val_list, - STATE(6937), 2, + STATE(6937), 1, sym_comment, - aux_sym_val_table_repeat1, - [218409] = 3, + ACTIONS(10876), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218575] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6938), 1, sym_comment, - ACTIONS(10766), 3, + ACTIONS(10878), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [218421] = 5, + [218587] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11443), 1, - anon_sym_RBRACK, - STATE(6406), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(8709), 1, + aux_sym__unquoted_in_record_token4, STATE(6939), 1, sym_comment, - [218437] = 5, - ACTIONS(3), 1, + STATE(7236), 1, + sym__expr_parenthesized_immediate, + [218603] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2298), 1, - sym__entry_separator, - ACTIONS(11445), 1, - anon_sym_RBRACE, - STATE(570), 1, - aux_sym__multiple_types_repeat1, STATE(6940), 1, sym_comment, - [218453] = 5, + ACTIONS(10884), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218615] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6937), 1, - aux_sym_val_table_repeat1, STATE(6941), 1, sym_comment, - STATE(7001), 1, - sym_val_list, - [218469] = 4, - ACTIONS(251), 1, + ACTIONS(10980), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218627] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, + ACTIONS(11449), 1, + anon_sym_LPAREN, STATE(6942), 1, sym_comment, - ACTIONS(1727), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [218483] = 3, + ACTIONS(11451), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [218641] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6943), 1, sym_comment, - ACTIONS(11447), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [218495] = 3, + ACTIONS(5948), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218653] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6944), 1, sym_comment, - ACTIONS(11449), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [218507] = 5, - ACTIONS(3), 1, + ACTIONS(6177), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218665] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11451), 1, - anon_sym_RBRACK, - STATE(6577), 1, - aux_sym__multiple_types_repeat1, STATE(6945), 1, sym_comment, - [218523] = 3, + ACTIONS(6181), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218677] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6946), 1, sym_comment, - ACTIONS(10248), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218535] = 3, + ACTIONS(5856), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [218689] = 4, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, STATE(6947), 1, sym_comment, - ACTIONS(10812), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218547] = 4, + ACTIONS(1801), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [218703] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1757), 1, + ACTIONS(1772), 1, aux_sym_unquoted_token2, + ACTIONS(1774), 1, + anon_sym_LBRACE, + ACTIONS(11453), 1, + aux_sym__immediate_decimal_token2, STATE(6948), 1, sym_comment, - ACTIONS(1759), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [218561] = 4, + [218719] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2277), 1, + ACTIONS(2276), 1, anon_sym_RBRACE, + ACTIONS(2278), 1, + sym__entry_separator, + STATE(589), 1, + aux_sym__multiple_types_repeat1, STATE(6949), 1, sym_comment, - ACTIONS(2279), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [218575] = 5, - ACTIONS(251), 1, + [218735] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4878), 1, - anon_sym_LBRACE, - ACTIONS(11453), 1, - anon_sym_EQ2, + ACTIONS(9133), 1, + sym__entry_separator, ACTIONS(11455), 1, - sym_short_flag_identifier, + anon_sym_GT2, + STATE(5305), 1, + aux_sym__multiple_types_repeat1, STATE(6950), 1, sym_comment, - [218591] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6951), 1, - sym_comment, - ACTIONS(10814), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218603] = 4, + [218751] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1959), 1, + ACTIONS(5649), 1, sym__entry_separator, - STATE(6952), 1, + STATE(6951), 1, sym_comment, - ACTIONS(1957), 2, + ACTIONS(5647), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [218617] = 4, + anon_sym_GT2, + [218765] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, - aux_sym_unquoted_token2, - STATE(6953), 1, + STATE(6952), 1, sym_comment, - ACTIONS(1767), 2, + ACTIONS(11457), 3, anon_sym_PIPE, + anon_sym_if, anon_sym_EQ_GT, - [218631] = 3, + [218777] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(6954), 1, + STATE(6953), 1, sym_comment, - ACTIONS(10248), 3, + ACTIONS(10484), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [218643] = 4, + [218789] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11459), 1, + sym__table_head_separator, + STATE(6954), 1, + sym_comment, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [218803] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1861), 1, - aux_sym_unquoted_token2, STATE(6955), 1, sym_comment, - ACTIONS(1863), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [218657] = 3, + ACTIONS(10960), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [218815] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6956), 1, sym_comment, - ACTIONS(10296), 3, + ACTIONS(11004), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [218669] = 4, - ACTIONS(3), 1, + [218827] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2449), 1, - sym__entry_separator, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6270), 1, + sym_block, STATE(6957), 1, sym_comment, - ACTIONS(2447), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218683] = 5, - ACTIONS(3), 1, + [218843] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11457), 1, - anon_sym_GT2, - STATE(5340), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(9609), 1, + aux_sym__immediate_decimal_token2, + ACTIONS(11461), 1, + anon_sym_DOT, STATE(6958), 1, sym_comment, - [218699] = 4, - ACTIONS(3), 1, + [218859] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2343), 1, - sym__entry_separator, STATE(6959), 1, sym_comment, - ACTIONS(2341), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218713] = 3, + ACTIONS(11463), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [218871] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11465), 1, + anon_sym_RBRACK, STATE(6960), 1, sym_comment, - ACTIONS(6182), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218725] = 3, + STATE(6980), 1, + aux_sym_val_binary_repeat1, + [218887] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(4862), 1, + anon_sym_LBRACE, + ACTIONS(11467), 1, + sym_long_flag_identifier, + ACTIONS(11469), 1, + anon_sym_EQ2, STATE(6961), 1, sym_comment, - ACTIONS(6182), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218737] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(6962), 1, - sym_comment, - ACTIONS(6186), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [218749] = 5, + [218903] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11459), 1, + ACTIONS(11471), 1, anon_sym_GT2, - STATE(5341), 1, + STATE(5315), 1, aux_sym__multiple_types_repeat1, - STATE(6963), 1, + STATE(6962), 1, sym_comment, - [218765] = 5, + [218919] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(1727), 1, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(6211), 1, anon_sym_LBRACE, - ACTIONS(10389), 1, - aux_sym__immediate_decimal_token2, - STATE(6964), 1, + STATE(6315), 1, + sym_block, + STATE(6963), 1, sym_comment, - [218781] = 5, + [218935] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(2014), 1, sym__entry_separator, - ACTIONS(11461), 1, - anon_sym_GT2, - STATE(5326), 1, - aux_sym__multiple_types_repeat1, + STATE(6964), 1, + sym_comment, + ACTIONS(2012), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218949] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2192), 1, + sym__newline, + ACTIONS(2196), 1, + sym__space, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(6965), 1, sym_comment, - [218797] = 5, + [218965] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(2473), 1, sym__entry_separator, - ACTIONS(11463), 1, - anon_sym_GT2, - STATE(5327), 1, - aux_sym__multiple_types_repeat1, STATE(6966), 1, sym_comment, - [218813] = 3, + ACTIONS(2471), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [218979] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4475), 1, + sym_block, STATE(6967), 1, sym_comment, - ACTIONS(10598), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [218825] = 5, + [218995] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, + ACTIONS(4052), 1, anon_sym_LPAREN2, - ACTIONS(8920), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(7086), 1, + aux_sym_unquoted_token4, STATE(6968), 1, sym_comment, - STATE(7328), 1, + STATE(7224), 1, sym__expr_parenthesized_immediate, - [218841] = 5, + [219011] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(2065), 1, sym__entry_separator, - ACTIONS(6087), 1, - anon_sym_RBRACE, - STATE(3002), 1, - aux_sym__multiple_types_repeat1, STATE(6969), 1, sym_comment, - [218857] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6060), 1, - sym__entry_separator, - ACTIONS(6089), 1, + ACTIONS(2059), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(3007), 1, - aux_sym__multiple_types_repeat1, + [219025] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(6970), 1, sym_comment, - [218873] = 4, + ACTIONS(10212), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219037] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2027), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11473), 1, + anon_sym_RBRACK, + STATE(6314), 1, + aux_sym__multiple_types_repeat1, STATE(6971), 1, sym_comment, - ACTIONS(2025), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218887] = 4, + [219053] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11465), 1, - sym__table_head_separator, + ACTIONS(2427), 1, + sym__entry_separator, STATE(6972), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(2425), 2, anon_sym_RBRACK, - sym__entry_separator, - [218901] = 4, + anon_sym_RBRACE, + [219067] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2503), 1, - sym__entry_separator, + ACTIONS(11475), 1, + sym__table_head_separator, STATE(6973), 1, sym_comment, - ACTIONS(2501), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [218915] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(9165), 1, sym__entry_separator, - ACTIONS(11467), 1, - anon_sym_GT2, - STATE(5332), 1, - aux_sym__multiple_types_repeat1, + [219081] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6786), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(6974), 1, sym_comment, - [218931] = 4, - ACTIONS(3), 1, + [219097] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2421), 1, - sym__entry_separator, STATE(6975), 1, sym_comment, - ACTIONS(2419), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218945] = 5, + ACTIONS(966), 3, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [219109] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(2435), 1, sym__entry_separator, - ACTIONS(11469), 1, - anon_sym_GT2, - STATE(5333), 1, - aux_sym__multiple_types_repeat1, STATE(6976), 1, sym_comment, - [218961] = 5, - ACTIONS(251), 1, + ACTIONS(2433), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219123] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(11471), 1, - anon_sym_GT2, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(7047), 1, + aux_sym_unquoted_token4, STATE(6977), 1, sym_comment, - STATE(7456), 1, - sym_param_cmd, - [218977] = 4, + STATE(7252), 1, + sym__expr_parenthesized_immediate, + [219139] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2425), 1, - sym__entry_separator, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, + ACTIONS(11477), 1, + sym__space, STATE(6978), 1, sym_comment, - ACTIONS(2423), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [218991] = 5, + [219155] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(5672), 1, sym__entry_separator, - ACTIONS(11473), 1, - anon_sym_GT2, - STATE(5336), 1, + ACTIONS(11479), 1, + anon_sym_RBRACK, + STATE(2683), 1, aux_sym__multiple_types_repeat1, STATE(6979), 1, sym_comment, - [219007] = 5, + [219171] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6576), 1, - sym_block, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11481), 1, + anon_sym_RBRACK, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(6980), 1, sym_comment, - [219023] = 4, - ACTIONS(3), 1, + [219187] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2176), 1, - sym__entry_separator, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6752), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(6981), 1, sym_comment, - ACTIONS(2170), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219037] = 5, + [219203] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6041), 1, sym__entry_separator, - ACTIONS(11475), 1, - anon_sym_GT2, - STATE(5337), 1, + ACTIONS(6066), 1, + anon_sym_RBRACE, + STATE(2975), 1, aux_sym__multiple_types_repeat1, STATE(6982), 1, sym_comment, - [219053] = 5, - ACTIONS(3), 1, + [219219] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - ACTIONS(11477), 1, - anon_sym_RBRACK, - STATE(2858), 1, - aux_sym__multiple_types_repeat1, STATE(6983), 1, sym_comment, - [219069] = 4, + ACTIONS(11483), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219231] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2441), 1, + ACTIONS(6041), 1, sym__entry_separator, + ACTIONS(6068), 1, + anon_sym_RBRACE, + STATE(2976), 1, + aux_sym__multiple_types_repeat1, STATE(6984), 1, sym_comment, - ACTIONS(2439), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219083] = 5, + [219247] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6138), 1, - sym_block, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6892), 1, + sym_val_list, STATE(6985), 1, sym_comment, - [219099] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11479), 1, - anon_sym_RBRACK, - STATE(6573), 1, - aux_sym__multiple_types_repeat1, - STATE(6986), 1, - sym_comment, - [219115] = 5, + [219263] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6936), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6910), 1, + sym_val_list, + STATE(6986), 1, + sym_comment, + [219279] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2348), 1, + sym__entry_separator, STATE(6987), 1, sym_comment, - [219131] = 5, + ACTIONS(2346), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219293] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(1837), 1, sym__entry_separator, - ACTIONS(11481), 1, - anon_sym_GT2, - STATE(5338), 1, - aux_sym__multiple_types_repeat1, STATE(6988), 1, sym_comment, - [219147] = 5, + ACTIONS(1835), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219307] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4502), 1, - sym_block, STATE(6989), 1, sym_comment, - [219163] = 5, + ACTIONS(10214), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219319] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11483), 1, - anon_sym_RBRACK, - STATE(6398), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(3498), 1, + sym__newline, + ACTIONS(3500), 1, + sym__space, + STATE(1132), 1, + aux_sym_ctrl_do_parenthesized_repeat2, STATE(6990), 1, sym_comment, - [219179] = 5, + [219335] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6991), 1, + sym_comment, + STATE(6994), 1, + sym_val_list, + [219351] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(6496), 1, sym__entry_separator, ACTIONS(11485), 1, - anon_sym_GT2, - STATE(5339), 1, + anon_sym_RBRACK, + STATE(6186), 1, aux_sym__multiple_types_repeat1, - STATE(6991), 1, - sym_comment, - [219195] = 3, - ACTIONS(251), 1, - anon_sym_POUND, STATE(6992), 1, sym_comment, - ACTIONS(10608), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219207] = 5, + [219367] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, ACTIONS(11487), 1, anon_sym_RBRACK, - STATE(6399), 1, + STATE(6214), 1, aux_sym__multiple_types_repeat1, STATE(6993), 1, sym_comment, - [219223] = 5, + [219383] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(6496), 1, sym__entry_separator, ACTIONS(11489), 1, anon_sym_RBRACK, - STATE(6409), 1, + STATE(6530), 1, aux_sym__multiple_types_repeat1, STATE(6994), 1, sym_comment, - [219239] = 5, - ACTIONS(3), 1, + [219399] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5716), 1, - sym__entry_separator, - ACTIONS(11491), 1, - anon_sym_RBRACK, - STATE(2719), 1, - aux_sym__multiple_types_repeat1, STATE(6995), 1, sym_comment, - [219255] = 3, + ACTIONS(11491), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219411] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6996), 1, sym_comment, - ACTIONS(10248), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219267] = 3, + ACTIONS(970), 3, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [219423] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(6997), 1, sym_comment, - ACTIONS(11493), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [219279] = 5, + ACTIONS(974), 3, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [219435] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11495), 1, - anon_sym_RBRACK, - STATE(6473), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + ACTIONS(2200), 1, + sym__newline, + ACTIONS(2202), 1, + sym__space, STATE(6998), 1, sym_comment, - [219295] = 4, - ACTIONS(3), 1, + [219451] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11497), 1, - sym__table_head_separator, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(11493), 1, + anon_sym_GT2, STATE(6999), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - sym__entry_separator, - [219309] = 5, - ACTIONS(251), 1, + STATE(7728), 1, + sym_param_cmd, + [219467] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6808), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(11495), 1, + anon_sym_RBRACE, + STATE(2963), 1, + aux_sym__multiple_types_repeat1, STATE(7000), 1, sym_comment, - [219325] = 5, + [219483] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11499), 1, - anon_sym_RBRACK, - STATE(6478), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + ACTIONS(1677), 1, + aux_sym__unquoted_in_record_token4, STATE(7001), 1, sym_comment, - [219341] = 3, - ACTIONS(251), 1, + STATE(7275), 1, + sym__expr_parenthesized_immediate, + [219499] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2053), 1, + sym__entry_separator, STATE(7002), 1, sym_comment, - ACTIONS(11501), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [219353] = 4, - ACTIONS(251), 1, + ACTIONS(2047), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219513] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11503), 1, - anon_sym_QMARK2, + ACTIONS(1845), 1, + sym__entry_separator, STATE(7003), 1, sym_comment, - ACTIONS(960), 2, - sym__table_head_separator, - anon_sym_DOT2, - [219367] = 4, - ACTIONS(251), 1, + ACTIONS(1843), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219527] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11505), 1, - anon_sym_QMARK2, + ACTIONS(11497), 1, + sym__table_head_separator, STATE(7004), 1, sym_comment, - ACTIONS(954), 2, - sym__table_head_separator, - anon_sym_DOT2, - [219381] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [219541] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, - ACTIONS(11507), 1, - sym__space, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11499), 1, + anon_sym_RBRACK, + STATE(6187), 1, + aux_sym__multiple_types_repeat1, STATE(7005), 1, sym_comment, - [219397] = 3, + [219557] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7006), 1, sym_comment, - ACTIONS(10792), 3, + ACTIONS(10301), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219409] = 5, - ACTIONS(3), 1, + [219569] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2298), 1, - sym__entry_separator, - ACTIONS(11509), 1, - anon_sym_RBRACE, - STATE(578), 1, - aux_sym__multiple_types_repeat1, STATE(7007), 1, sym_comment, - [219425] = 5, - ACTIONS(251), 1, + ACTIONS(978), 3, + anon_sym_QMARK2, + sym__table_head_separator, + anon_sym_DOT2, + [219581] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6927), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(1849), 1, + sym__entry_separator, STATE(7008), 1, sym_comment, - [219441] = 5, + ACTIONS(1847), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219595] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1727), 1, - anon_sym_LBRACE, - ACTIONS(9564), 1, - aux_sym__immediate_decimal_token2, - ACTIONS(11511), 1, - anon_sym_DOT, STATE(7009), 1, sym_comment, - [219457] = 4, + ACTIONS(11501), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [219607] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2150), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11503), 1, + anon_sym_RBRACK, + STATE(6188), 1, + aux_sym__multiple_types_repeat1, STATE(7010), 1, sym_comment, - ACTIONS(2144), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219471] = 5, + [219623] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4888), 1, - anon_sym_LBRACE, - ACTIONS(11513), 1, - sym_long_flag_identifier, - ACTIONS(11515), 1, - anon_sym_EQ2, STATE(7011), 1, sym_comment, - [219487] = 5, + ACTIONS(11010), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219635] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2298), 1, + ACTIONS(6496), 1, sym__entry_separator, - ACTIONS(11517), 1, - anon_sym_RBRACE, - STATE(579), 1, + ACTIONS(11505), 1, + anon_sym_RBRACK, + STATE(6189), 1, aux_sym__multiple_types_repeat1, STATE(7012), 1, sym_comment, - [219503] = 5, - ACTIONS(251), 1, + [219651] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6937), 1, - aux_sym_val_table_repeat1, - STATE(6990), 1, - sym_val_list, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11507), 1, + anon_sym_COLON, + STATE(5434), 1, + aux_sym__multiple_types_repeat1, STATE(7013), 1, sym_comment, - [219519] = 5, + [219667] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1681), 1, - anon_sym_RBRACK, - ACTIONS(1693), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(11509), 1, + anon_sym_COLON, + STATE(5435), 1, + aux_sym__multiple_types_repeat1, STATE(7014), 1, sym_comment, - [219535] = 5, - ACTIONS(251), 1, + [219683] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6937), 1, - aux_sym_val_table_repeat1, - STATE(6994), 1, - sym_val_list, + ACTIONS(5672), 1, + sym__entry_separator, + ACTIONS(11511), 1, + anon_sym_RBRACK, + STATE(2697), 1, + aux_sym__multiple_types_repeat1, STATE(7015), 1, sym_comment, - [219551] = 4, - ACTIONS(3), 1, + [219699] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2158), 1, - sym__entry_separator, STATE(7016), 1, sym_comment, - ACTIONS(2152), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219565] = 4, + ACTIONS(10365), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [219711] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11519), 1, + ACTIONS(11513), 1, sym__table_head_separator, STATE(7017), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [219579] = 3, - ACTIONS(251), 1, + [219725] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11515), 1, + anon_sym_RBRACK, + STATE(6190), 1, + aux_sym__multiple_types_repeat1, STATE(7018), 1, sym_comment, - ACTIONS(10804), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219591] = 3, - ACTIONS(251), 1, + [219741] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2423), 1, + sym__entry_separator, STATE(7019), 1, sym_comment, - ACTIONS(10248), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219603] = 5, - ACTIONS(251), 1, + ACTIONS(2421), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219755] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(11517), 1, + sym__table_head_separator, STATE(7020), 1, sym_comment, - STATE(7052), 1, - sym_val_list, - [219619] = 3, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [219769] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11519), 1, + anon_sym_RBRACK, + STATE(6191), 1, + aux_sym__multiple_types_repeat1, STATE(7021), 1, sym_comment, - ACTIONS(2403), 3, - anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [219631] = 3, - ACTIONS(251), 1, + [219785] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11521), 1, + anon_sym_RBRACK, + STATE(6192), 1, + aux_sym__multiple_types_repeat1, STATE(7022), 1, sym_comment, - ACTIONS(11521), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [219643] = 3, - ACTIONS(251), 1, + [219801] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4914), 1, + sym__space, + ACTIONS(4916), 1, + sym__newline, + ACTIONS(11523), 1, + anon_sym_EQ2, STATE(7023), 1, sym_comment, - ACTIONS(11041), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219655] = 3, + [219817] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6633), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7024), 1, sym_comment, - ACTIONS(11045), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219667] = 3, + [219833] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6734), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7025), 1, sym_comment, - ACTIONS(10908), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219679] = 3, + [219849] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6740), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7026), 1, sym_comment, - ACTIONS(11523), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [219691] = 3, + [219865] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(1751), 1, + anon_sym_LBRACE, + ACTIONS(10936), 1, + aux_sym__immediate_decimal_token2, STATE(7027), 1, sym_comment, - ACTIONS(11047), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219703] = 3, - ACTIONS(251), 1, + [219881] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11525), 1, + anon_sym_GT2, + STATE(5277), 1, + aux_sym__multiple_types_repeat1, STATE(7028), 1, sym_comment, - ACTIONS(11049), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219715] = 4, + [219897] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2453), 1, + ACTIONS(6496), 1, sym__entry_separator, + ACTIONS(11527), 1, + anon_sym_RBRACK, + STATE(6193), 1, + aux_sym__multiple_types_repeat1, STATE(7029), 1, sym_comment, - ACTIONS(2451), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219729] = 4, - ACTIONS(3), 1, + [219913] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1975), 1, - sym__entry_separator, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6826), 1, + sym_val_list, STATE(7030), 1, sym_comment, - ACTIONS(1973), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219743] = 3, + [219929] = 5, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11529), 1, + anon_sym_GT2, + STATE(5279), 1, + aux_sym__multiple_types_repeat1, STATE(7031), 1, sym_comment, - ACTIONS(1853), 3, - sym__newline, - sym__space, - anon_sym_COLON2, - [219755] = 3, - ACTIONS(251), 1, + [219945] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2086), 1, + sym__entry_separator, STATE(7032), 1, sym_comment, - ACTIONS(11005), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219767] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7033), 1, - sym_comment, - ACTIONS(10941), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219779] = 5, + ACTIONS(2080), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219959] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, + ACTIONS(2352), 1, sym__entry_separator, - ACTIONS(11525), 1, - anon_sym_RBRACK, - STATE(2734), 1, - aux_sym__multiple_types_repeat1, - STATE(7034), 1, + STATE(7033), 1, sym_comment, - [219795] = 3, + ACTIONS(2350), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219973] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7035), 1, + STATE(7034), 1, sym_comment, - ACTIONS(11011), 3, + ACTIONS(10564), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219807] = 5, + [219985] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(2439), 1, sym__entry_separator, - ACTIONS(6093), 1, - anon_sym_RBRACE, - STATE(3017), 1, - aux_sym__multiple_types_repeat1, - STATE(7036), 1, + STATE(7035), 1, sym_comment, - [219823] = 3, + ACTIONS(2437), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [219999] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7037), 1, + STATE(7036), 1, sym_comment, - ACTIONS(10298), 3, + ACTIONS(10234), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219835] = 5, + [220011] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11531), 1, + anon_sym_RBRACK, + STATE(6794), 1, + aux_sym_val_binary_repeat1, + STATE(7037), 1, + sym_comment, + [220027] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(1861), 1, sym__entry_separator, - ACTIONS(6101), 1, - anon_sym_RBRACE, - STATE(3018), 1, - aux_sym__multiple_types_repeat1, STATE(7038), 1, sym_comment, - [219851] = 3, + ACTIONS(1859), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220041] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7039), 1, sym_comment, - ACTIONS(10562), 3, + ACTIONS(10236), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219863] = 4, - ACTIONS(3), 1, + [220053] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1983), 1, - sym__entry_separator, STATE(7040), 1, sym_comment, - ACTIONS(1981), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219877] = 5, + ACTIONS(11533), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220065] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4925), 1, - sym__space, - ACTIONS(4927), 1, - sym__newline, - ACTIONS(11527), 1, - anon_sym_EQ2, STATE(7041), 1, sym_comment, - [219893] = 3, + ACTIONS(2028), 3, + anon_sym_RBRACK, + sym__entry_separator, + sym__table_head_separator, + [220077] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7042), 1, sym_comment, - ACTIONS(11021), 3, + ACTIONS(10744), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [219905] = 5, - ACTIONS(251), 1, + [220089] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4502), 1, - sym_block, + ACTIONS(2030), 1, + sym__entry_separator, STATE(7043), 1, sym_comment, - [219921] = 4, + ACTIONS(2028), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220103] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1987), 1, + ACTIONS(5672), 1, sym__entry_separator, + ACTIONS(11535), 1, + anon_sym_RBRACK, + STATE(2671), 1, + aux_sym__multiple_types_repeat1, STATE(7044), 1, sym_comment, - ACTIONS(1985), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [219935] = 3, + [220119] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7045), 1, sym_comment, - ACTIONS(11023), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [219947] = 4, - ACTIONS(3), 1, + ACTIONS(5750), 3, + anon_sym_PIPE, + anon_sym_if, + anon_sym_EQ_GT, + [220131] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2281), 1, - anon_sym_RBRACE, STATE(7046), 1, sym_comment, - ACTIONS(2283), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [219961] = 4, - ACTIONS(3), 1, + ACTIONS(11537), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220143] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6046), 1, - anon_sym_RBRACK, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6315), 1, + sym_block, STATE(7047), 1, sym_comment, - ACTIONS(6048), 2, - anon_sym_LPAREN2, - sym__entry_separator, - [219975] = 4, + [220159] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11529), 1, - sym__table_head_separator, + ACTIONS(2360), 1, + sym__entry_separator, STATE(7048), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(2358), 2, anon_sym_RBRACK, - sym__entry_separator, - [219989] = 4, + anon_sym_RBRACE, + [220173] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11531), 1, - sym__table_head_separator, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11539), 1, + anon_sym_GT2, + STATE(5289), 1, + aux_sym__multiple_types_repeat1, STATE(7049), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - sym__entry_separator, - [220003] = 5, + [220189] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5854), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11533), 1, - anon_sym_RBRACK, - STATE(2879), 1, + ACTIONS(11541), 1, + anon_sym_GT2, + STATE(5290), 1, aux_sym__multiple_types_repeat1, STATE(7050), 1, sym_comment, - [220019] = 5, - ACTIONS(251), 1, + [220205] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11535), 1, - anon_sym_RBRACK, + ACTIONS(2364), 1, + sym__entry_separator, STATE(7051), 1, sym_comment, - STATE(7066), 1, - aux_sym_val_binary_repeat1, - [220035] = 5, + ACTIONS(2362), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220219] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11537), 1, - anon_sym_RBRACK, - STATE(6486), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11543), 1, + sym__table_head_separator, STATE(7052), 1, sym_comment, - [220051] = 3, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [220233] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(7878), 1, + anon_sym_EQ, + STATE(4867), 1, + sym_param_cmd, STATE(7053), 1, sym_comment, - ACTIONS(11007), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [220063] = 5, - ACTIONS(251), 1, + [220249] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6834), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(11545), 1, + sym__table_head_separator, STATE(7054), 1, sym_comment, - [220079] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [220263] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6894), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(7010), 1, + sym_val_list, STATE(7055), 1, sym_comment, - [220095] = 5, + [220279] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6903), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(7018), 1, + sym_val_list, STATE(7056), 1, sym_comment, - [220111] = 3, - ACTIONS(251), 1, + [220295] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1865), 1, + sym__entry_separator, STATE(7057), 1, sym_comment, - ACTIONS(11539), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [220123] = 5, + ACTIONS(1863), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220309] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6291), 1, - anon_sym_AT, - ACTIONS(7910), 1, - anon_sym_EQ, - STATE(4880), 1, - sym_param_cmd, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(7022), 1, + sym_val_list, STATE(7058), 1, sym_comment, - [220139] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2166), 1, - sym__entry_separator, - STATE(7059), 1, - sym_comment, - ACTIONS(2160), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [220153] = 5, + [220325] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(6945), 1, + STATE(7029), 1, sym_val_list, + STATE(7059), 1, + sym_comment, + [220341] = 5, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11547), 1, + anon_sym_GT2, + STATE(5297), 1, + aux_sym__multiple_types_repeat1, STATE(7060), 1, sym_comment, - [220169] = 3, - ACTIONS(251), 1, + [220357] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11549), 1, + sym__table_head_separator, STATE(7061), 1, sym_comment, - ACTIONS(10304), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [220181] = 3, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [220371] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(1675), 1, + sym__entry_separator, STATE(7062), 1, sym_comment, - ACTIONS(1937), 3, + ACTIONS(1663), 2, anon_sym_RBRACK, - sym__entry_separator, - sym__table_head_separator, - [220193] = 5, + anon_sym_RBRACE, + [220385] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, + ACTIONS(9133), 1, sym__entry_separator, - ACTIONS(11541), 1, - anon_sym_RBRACK, - STATE(2735), 1, + ACTIONS(11551), 1, + anon_sym_GT2, + STATE(5301), 1, aux_sym__multiple_types_repeat1, STATE(7063), 1, sym_comment, - [220209] = 3, - ACTIONS(251), 1, + [220401] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11553), 1, + sym__table_head_separator, STATE(7064), 1, sym_comment, - ACTIONS(5729), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220221] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [220415] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(7060), 1, - aux_sym_unquoted_token4, + ACTIONS(6496), 1, + sym__entry_separator, + ACTIONS(11555), 1, + anon_sym_RBRACK, + STATE(3468), 1, + aux_sym__multiple_types_repeat1, STATE(7065), 1, sym_comment, - STATE(7307), 1, - sym__expr_parenthesized_immediate, - [220237] = 5, + [220431] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11543), 1, - anon_sym_RBRACK, STATE(7066), 1, sym_comment, - STATE(7182), 1, - aux_sym_val_binary_repeat1, - [220253] = 3, + ACTIONS(10966), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220443] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6619), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7067), 1, sym_comment, - ACTIONS(6194), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [220265] = 5, - ACTIONS(3), 1, + [220459] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11545), 1, - anon_sym_COLON, - STATE(5477), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6622), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7068), 1, sym_comment, - [220281] = 5, - ACTIONS(3), 1, + [220475] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11547), 1, - anon_sym_RBRACK, - STATE(6320), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6624), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7069), 1, sym_comment, - [220297] = 5, - ACTIONS(3), 1, + [220491] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11549), 1, - anon_sym_COLON, - STATE(5483), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6627), 1, + sym_val_list, + STATE(6788), 1, + aux_sym_val_table_repeat1, STATE(7070), 1, sym_comment, - [220313] = 4, + [220507] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, - sym__entry_separator, + ACTIONS(11557), 1, + sym__table_head_separator, STATE(7071), 1, sym_comment, - ACTIONS(1681), 2, + ACTIONS(1004), 2, anon_sym_RBRACK, - anon_sym_RBRACE, - [220327] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1681), 1, - sym__newline, - ACTIONS(1693), 1, - sym__space, - ACTIONS(7060), 1, - aux_sym_unquoted_token2, - STATE(7072), 1, - sym_comment, - [220343] = 4, + sym__entry_separator, + [220521] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11551), 1, + ACTIONS(11559), 1, sym__table_head_separator, - STATE(7073), 1, + STATE(7072), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220357] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7074), 1, - sym_comment, - ACTIONS(11553), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [220369] = 4, + [220535] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11555), 1, - sym__table_head_separator, - STATE(7075), 1, - sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, + ACTIONS(9133), 1, sym__entry_separator, - [220383] = 5, + ACTIONS(11561), 1, + anon_sym_GT2, + STATE(5302), 1, + aux_sym__multiple_types_repeat1, + STATE(7073), 1, + sym_comment, + [220551] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - ACTIONS(1695), 1, - aux_sym__unquoted_in_record_token4, - STATE(7076), 1, + ACTIONS(1877), 1, + sym__entry_separator, + STATE(7074), 1, sym_comment, - STATE(7322), 1, - sym__expr_parenthesized_immediate, - [220399] = 5, + ACTIONS(1875), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220565] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6937), 1, + STATE(6651), 1, + sym_val_list, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7077), 1, + STATE(7075), 1, sym_comment, - STATE(7083), 1, - sym_val_list, - [220415] = 5, + [220581] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6937), 1, + STATE(6653), 1, + sym_val_list, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7078), 1, + STATE(7076), 1, sym_comment, - STATE(7094), 1, - sym_val_list, - [220431] = 3, - ACTIONS(251), 1, + [220597] = 5, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7079), 1, + ACTIONS(9133), 1, + sym__entry_separator, + ACTIONS(11563), 1, + anon_sym_GT2, + STATE(5306), 1, + aux_sym__multiple_types_repeat1, + STATE(7077), 1, sym_comment, - ACTIONS(10997), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [220443] = 5, + [220613] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6937), 1, + STATE(6655), 1, + sym_val_list, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7080), 1, + STATE(7078), 1, sym_comment, - STATE(7103), 1, - sym_val_list, - [220459] = 5, + [220629] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6937), 1, - aux_sym_val_table_repeat1, - STATE(7081), 1, - sym_comment, - STATE(7113), 1, + STATE(6656), 1, sym_val_list, - [220475] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11557), 1, - anon_sym_RBRACK, - STATE(6325), 1, - aux_sym__multiple_types_repeat1, - STATE(7082), 1, - sym_comment, - [220491] = 5, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11559), 1, - anon_sym_RBRACK, - STATE(6331), 1, - aux_sym__multiple_types_repeat1, - STATE(7083), 1, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(7079), 1, sym_comment, - [220507] = 4, + [220645] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11561), 1, + ACTIONS(11565), 1, sym__table_head_separator, - STATE(7084), 1, + STATE(7080), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220521] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7085), 1, - sym_comment, - ACTIONS(11563), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [220533] = 5, + [220659] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11565), 1, - anon_sym_RBRACK, - STATE(6334), 1, - aux_sym__multiple_types_repeat1, - STATE(7086), 1, + ACTIONS(1663), 1, + sym__newline, + ACTIONS(1675), 1, + sym__space, + ACTIONS(7047), 1, + aux_sym_unquoted_token2, + STATE(7081), 1, sym_comment, - [220549] = 4, + [220675] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11567), 1, sym__table_head_separator, - STATE(7087), 1, + STATE(7082), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220563] = 5, + [220689] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7083), 1, + sym_comment, + ACTIONS(10880), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220701] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6633), 1, + STATE(6679), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7088), 1, + STATE(7084), 1, sym_comment, - [220579] = 5, + [220717] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6636), 1, + STATE(6682), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7089), 1, + STATE(7085), 1, + sym_comment, + [220733] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(6282), 1, + anon_sym_AT, + ACTIONS(7704), 1, + anon_sym_EQ, + STATE(4864), 1, + sym_param_cmd, + STATE(7086), 1, sym_comment, - [220595] = 5, + [220749] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6638), 1, + STATE(6685), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7090), 1, + STATE(7087), 1, sym_comment, - [220611] = 5, + [220765] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6641), 1, + STATE(6687), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7091), 1, + STATE(7088), 1, sym_comment, - [220627] = 4, + [220781] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11569), 1, sym__table_head_separator, - STATE(7092), 1, + STATE(7089), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220641] = 4, + [220795] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7090), 1, + sym_comment, + ACTIONS(11571), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220807] = 3, + ACTIONS(251), 1, + anon_sym_POUND, + STATE(7091), 1, + sym_comment, + ACTIONS(10244), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220819] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11571), 1, + ACTIONS(11573), 1, sym__table_head_separator, - STATE(7093), 1, + STATE(7092), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220655] = 5, - ACTIONS(3), 1, + [220833] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11573), 1, - anon_sym_RBRACK, - STATE(6339), 1, - aux_sym__multiple_types_repeat1, - STATE(7094), 1, + STATE(7093), 1, sym_comment, - [220671] = 5, + ACTIONS(10890), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [220845] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6664), 1, + STATE(6709), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7095), 1, + STATE(7094), 1, sym_comment, - [220687] = 5, + [220861] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6666), 1, + STATE(6712), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7096), 1, + STATE(7095), 1, sym_comment, - [220703] = 5, + [220877] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6670), 1, + STATE(6715), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7097), 1, + STATE(7096), 1, sym_comment, - [220719] = 5, + [220893] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6673), 1, + STATE(6716), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7098), 1, + STATE(7097), 1, sym_comment, - [220735] = 4, + [220909] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11575), 1, sym__table_head_separator, - STATE(7099), 1, + STATE(7098), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220749] = 5, + [220923] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, + ACTIONS(1276), 1, + anon_sym_POUND_BANG, ACTIONS(11577), 1, - anon_sym_RBRACK, - STATE(6353), 1, - aux_sym__multiple_types_repeat1, + sym__newline, + STATE(7099), 2, + sym_comment, + aux_sym_shebang_repeat1, + [220937] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(7100), 1, sym_comment, - [220765] = 4, + ACTIONS(11580), 3, + sym__newline, + anon_sym_SEMI, + anon_sym_RPAREN, + [220949] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11579), 1, + ACTIONS(11582), 1, sym__table_head_separator, STATE(7101), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220779] = 3, + [220963] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7102), 1, sym_comment, - ACTIONS(11581), 3, + ACTIONS(10618), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [220791] = 5, + [220975] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(1000), 1, sym__entry_separator, - ACTIONS(11583), 1, - anon_sym_RBRACK, - STATE(6361), 1, - aux_sym__multiple_types_repeat1, STATE(7103), 1, sym_comment, - [220807] = 5, + ACTIONS(1004), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [220989] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6690), 1, + STATE(6732), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, STATE(7104), 1, sym_comment, - [220823] = 5, + [221005] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6693), 1, + STATE(6735), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, STATE(7105), 1, sym_comment, - [220839] = 5, + [221021] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4475), 1, + sym_block, + STATE(7106), 1, + sym_comment, + [221037] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6697), 1, + STATE(6738), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7106), 1, + STATE(7107), 1, sym_comment, - [220855] = 5, + [221053] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6698), 1, + STATE(6741), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7107), 1, + STATE(7108), 1, sym_comment, - [220871] = 4, + [221069] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11585), 1, + ACTIONS(11584), 1, sym__table_head_separator, - STATE(7108), 1, + STATE(7109), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [220885] = 4, + [221083] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11587), 1, - sym__table_head_separator, - STATE(7109), 1, + ACTIONS(2483), 1, + sym__entry_separator, + STATE(7110), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(2481), 2, anon_sym_RBRACK, - sym__entry_separator, - [220899] = 3, + anon_sym_RBRACE, + [221097] = 3, ACTIONS(251), 1, anon_sym_POUND, - STATE(7110), 1, + STATE(7111), 1, sym_comment, - ACTIONS(11589), 3, + ACTIONS(10892), 3, + ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - anon_sym_RPAREN, - [220911] = 5, + [221109] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11586), 1, + sym__table_head_separator, + STATE(7112), 1, + sym_comment, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221123] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6720), 1, + STATE(6760), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7111), 1, + STATE(7113), 1, sym_comment, - [220927] = 5, + [221139] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6723), 1, + STATE(6763), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7112), 1, + STATE(7114), 1, sym_comment, - [220943] = 5, + [221155] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, + ACTIONS(2487), 1, sym__entry_separator, - ACTIONS(11591), 1, - anon_sym_RBRACK, - STATE(6365), 1, - aux_sym__multiple_types_repeat1, - STATE(7113), 1, + STATE(7115), 1, sym_comment, - [220959] = 5, + ACTIONS(2485), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221169] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6725), 1, + STATE(6766), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7114), 1, + STATE(7116), 1, sym_comment, - [220975] = 5, + [221185] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6727), 1, + STATE(6768), 1, sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7115), 1, + STATE(7117), 1, sym_comment, - [220991] = 4, + [221201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11593), 1, + ACTIONS(11588), 1, sym__table_head_separator, - STATE(7116), 1, + STATE(7118), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221005] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(1939), 1, - sym__entry_separator, - STATE(7117), 1, - sym_comment, - ACTIONS(1937), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221019] = 4, + [221215] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11595), 1, + ACTIONS(11590), 1, sym__table_head_separator, - STATE(7118), 1, + STATE(7119), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221033] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7119), 1, - sym_comment, - ACTIONS(11597), 3, - sym__newline, - anon_sym_SEMI, - anon_sym_RPAREN, - [221045] = 3, + [221229] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7120), 1, sym_comment, - ACTIONS(10828), 3, + ACTIONS(10359), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [221057] = 5, + [221241] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6740), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6791), 1, + sym_val_list, STATE(7121), 1, sym_comment, - [221073] = 3, + [221257] = 5, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6793), 1, + sym_val_list, STATE(7122), 1, sym_comment, - ACTIONS(10802), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221085] = 5, + [221273] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6745), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6796), 1, + sym_val_list, STATE(7123), 1, sym_comment, - [221101] = 5, + [221289] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6747), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6798), 1, + sym_val_list, STATE(7124), 1, sym_comment, - [221117] = 4, + [221305] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11599), 1, + ACTIONS(11592), 1, sym__table_head_separator, STATE(7125), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221131] = 3, + [221319] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7126), 1, sym_comment, - ACTIONS(10943), 3, - ts_builtin_sym_end, + ACTIONS(11594), 3, sym__newline, anon_sym_SEMI, - [221143] = 4, + anon_sym_RPAREN, + [221331] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11601), 1, + ACTIONS(11596), 1, sym__table_head_separator, STATE(7127), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221157] = 4, + [221345] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - sym__entry_separator, + ACTIONS(4920), 1, + sym__space, + ACTIONS(4922), 1, + sym__newline, + ACTIONS(11598), 1, + anon_sym_EQ2, STATE(7128), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221171] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7129), 1, - sym_comment, - ACTIONS(6158), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221183] = 5, + [221361] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6764), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7130), 1, + STATE(6818), 1, + sym_val_list, + STATE(7129), 1, sym_comment, - [221199] = 5, + [221377] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6767), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7131), 1, + STATE(6820), 1, + sym_val_list, + STATE(7130), 1, sym_comment, - [221215] = 4, + [221393] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2433), 1, + ACTIONS(5871), 1, sym__entry_separator, - STATE(7132), 1, - sym_comment, - ACTIONS(2431), 2, + ACTIONS(11600), 1, anon_sym_RBRACK, - anon_sym_RBRACE, - [221229] = 5, + STATE(2819), 1, + aux_sym__multiple_types_repeat1, + STATE(7131), 1, + sym_comment, + [221409] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6769), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7133), 1, + STATE(6823), 1, + sym_val_list, + STATE(7132), 1, sym_comment, - [221245] = 5, + [221425] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6772), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7134), 1, + STATE(6824), 1, + sym_val_list, + STATE(7133), 1, sym_comment, - [221261] = 4, + [221441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11603), 1, + ACTIONS(11602), 1, sym__table_head_separator, - STATE(7135), 1, + STATE(7134), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221275] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(2437), 1, - sym__entry_separator, - STATE(7136), 1, - sym_comment, - ACTIONS(2435), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [221289] = 4, + [221455] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11605), 1, + ACTIONS(11604), 1, sym__table_head_separator, - STATE(7137), 1, + STATE(7135), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221303] = 5, + [221469] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10023), 1, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, + STATE(7136), 1, + sym_comment, + ACTIONS(1813), 2, anon_sym_PIPE, - ACTIONS(11607), 1, anon_sym_EQ_GT, - STATE(6640), 1, - aux_sym_match_pattern_repeat1, - STATE(7138), 1, - sym_comment, - [221319] = 5, + [221483] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6789), 1, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6839), 1, sym_val_list, - STATE(6937), 1, + STATE(7137), 1, + sym_comment, + [221499] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6841), 1, + sym_val_list, + STATE(7138), 1, + sym_comment, + [221515] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2375), 1, + sym__entry_separator, STATE(7139), 1, sym_comment, - [221335] = 5, + ACTIONS(2373), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221529] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6791), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6843), 1, + sym_val_list, STATE(7140), 1, sym_comment, - [221351] = 5, + [221545] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6794), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6845), 1, + sym_val_list, STATE(7141), 1, sym_comment, - [221367] = 5, - ACTIONS(251), 1, + [221561] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6797), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(11606), 1, + sym__table_head_separator, STATE(7142), 1, sym_comment, - [221383] = 4, + ACTIONS(1004), 2, + anon_sym_RBRACK, + sym__entry_separator, + [221575] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11609), 1, + ACTIONS(11608), 1, sym__table_head_separator, STATE(7143), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221397] = 5, + [221589] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6058), 1, - anon_sym_RBRACE, - ACTIONS(6060), 1, + ACTIONS(2379), 1, sym__entry_separator, - STATE(2986), 1, - aux_sym__multiple_types_repeat1, STATE(7144), 1, sym_comment, - [221413] = 4, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(11611), 1, - sym__table_head_separator, - STATE(7145), 1, - sym_comment, - ACTIONS(1004), 2, + ACTIONS(2377), 2, anon_sym_RBRACK, - sym__entry_separator, - [221427] = 5, + anon_sym_RBRACE, + [221603] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6813), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7146), 1, + STATE(6860), 1, + sym_val_list, + STATE(7145), 1, sym_comment, - [221443] = 5, + [221619] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6815), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7147), 1, + STATE(6862), 1, + sym_val_list, + STATE(7146), 1, sym_comment, - [221459] = 4, + [221635] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1276), 1, - anon_sym_POUND_BANG, - ACTIONS(11613), 1, - sym__newline, - STATE(7148), 2, + ACTIONS(1881), 1, + sym__entry_separator, + STATE(7147), 1, sym_comment, - aux_sym_shebang_repeat1, - [221473] = 5, + ACTIONS(1879), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221649] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6818), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7149), 1, + STATE(6864), 1, + sym_val_list, + STATE(7148), 1, sym_comment, - [221489] = 5, + [221665] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6819), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7150), 1, + STATE(6867), 1, + sym_val_list, + STATE(7149), 1, sym_comment, - [221505] = 4, + [221681] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11616), 1, + ACTIONS(11610), 1, sym__table_head_separator, - STATE(7151), 1, + STATE(7150), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221519] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7152), 1, - sym_comment, - ACTIONS(6135), 3, - anon_sym_PIPE, - anon_sym_if, - anon_sym_EQ_GT, - [221531] = 5, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11618), 1, - anon_sym_RBRACK, - STATE(6844), 1, - aux_sym_val_binary_repeat1, - STATE(7153), 1, - sym_comment, - [221547] = 4, + [221695] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11620), 1, + ACTIONS(11612), 1, sym__table_head_separator, - STATE(7154), 1, + STATE(7151), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221561] = 5, + [221709] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6837), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7155), 1, + STATE(6878), 1, + sym_val_list, + STATE(7152), 1, sym_comment, - [221577] = 5, + [221725] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6839), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7156), 1, + STATE(6880), 1, + sym_val_list, + STATE(7153), 1, sym_comment, - [221593] = 5, + [221741] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6842), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7157), 1, + STATE(6884), 1, + sym_val_list, + STATE(7154), 1, sym_comment, - [221609] = 5, + [221757] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6845), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7158), 1, + STATE(6887), 1, + sym_val_list, + STATE(7155), 1, sym_comment, - [221625] = 4, + [221773] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11622), 1, + ACTIONS(11614), 1, sym__table_head_separator, - STATE(7159), 1, + STATE(7156), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221639] = 4, + [221787] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11624), 1, + ACTIONS(11616), 1, sym__table_head_separator, - STATE(7160), 1, + STATE(7157), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221653] = 5, + [221801] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(2383), 1, + sym__entry_separator, + STATE(7158), 1, + sym_comment, + ACTIONS(2381), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [221815] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6860), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7161), 1, + STATE(6894), 1, + sym_val_list, + STATE(7159), 1, sym_comment, - [221669] = 5, + [221831] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6863), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7162), 1, + STATE(6897), 1, + sym_val_list, + STATE(7160), 1, sym_comment, - [221685] = 5, - ACTIONS(3), 1, + [221847] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11626), 1, - anon_sym_GT2, - STATE(5386), 1, - aux_sym__multiple_types_repeat1, - STATE(7163), 1, + STATE(7161), 1, sym_comment, - [221701] = 5, + ACTIONS(10902), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [221859] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6867), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7164), 1, + STATE(6900), 1, + sym_val_list, + STATE(7162), 1, sym_comment, - [221717] = 5, + [221875] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6869), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7165), 1, + STATE(6903), 1, + sym_val_list, + STATE(7163), 1, sym_comment, - [221733] = 4, + [221891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11628), 1, + ACTIONS(11618), 1, sym__table_head_separator, - STATE(7166), 1, + STATE(7164), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221747] = 4, + [221905] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11630), 1, + ACTIONS(11620), 1, sym__table_head_separator, - STATE(7167), 1, + STATE(7165), 1, sym_comment, ACTIONS(1004), 2, anon_sym_RBRACK, sym__entry_separator, - [221761] = 3, + [221919] = 5, ACTIONS(251), 1, anon_sym_POUND, - STATE(7168), 1, + ACTIONS(9664), 1, + anon_sym_LBRACK, + STATE(6788), 1, + aux_sym_val_table_repeat1, + STATE(6913), 1, + sym_val_list, + STATE(7166), 1, sym_comment, - ACTIONS(10888), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [221773] = 5, + [221935] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6880), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7169), 1, + STATE(6915), 1, + sym_val_list, + STATE(7167), 1, sym_comment, - [221789] = 5, + [221951] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6883), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, - STATE(7170), 1, + STATE(6918), 1, + sym_val_list, + STATE(7168), 1, sym_comment, - [221805] = 5, + [221967] = 5, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, + ACTIONS(9664), 1, anon_sym_LBRACK, - STATE(6887), 1, - sym_val_list, - STATE(6937), 1, + STATE(6788), 1, aux_sym_val_table_repeat1, + STATE(6920), 1, + sym_val_list, + STATE(7169), 1, + sym_comment, + [221983] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(5609), 1, + sym__entry_separator, + STATE(7170), 1, + sym_comment, + ACTIONS(5607), 2, + anon_sym_RBRACK, + anon_sym_GT2, + [221997] = 3, + ACTIONS(251), 1, + anon_sym_POUND, STATE(7171), 1, sym_comment, - [221821] = 5, + ACTIONS(10246), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222009] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6890), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, STATE(7172), 1, sym_comment, - [221837] = 4, - ACTIONS(3), 1, + ACTIONS(10976), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222021] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11632), 1, - sym__table_head_separator, + ACTIONS(10094), 1, + anon_sym_PIPE, + ACTIONS(11622), 1, + anon_sym_EQ_GT, + STATE(6902), 1, + aux_sym_match_pattern_repeat1, STATE(7173), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - sym__entry_separator, - [221851] = 4, + [222037] = 5, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11634), 1, - sym__table_head_separator, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6090), 1, + anon_sym_RBRACE, + STATE(3007), 1, + aux_sym__multiple_types_repeat1, STATE(7174), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - sym__entry_separator, - [221865] = 5, - ACTIONS(251), 1, + [222053] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6896), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(2387), 1, + sym__entry_separator, STATE(7175), 1, sym_comment, - [221881] = 5, + ACTIONS(2385), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222067] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6899), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, STATE(7176), 1, sym_comment, - [221897] = 5, - ACTIONS(3), 1, + ACTIONS(10958), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222079] = 5, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11636), 1, - anon_sym_GT2, - STATE(5388), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11624), 1, + anon_sym_RBRACK, STATE(7177), 1, sym_comment, - [221913] = 5, - ACTIONS(251), 1, + STATE(7191), 1, + aux_sym_val_binary_repeat1, + [222095] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6902), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(1000), 1, + sym__space, + ACTIONS(1004), 1, + sym__newline, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, STATE(7178), 1, sym_comment, - [221929] = 5, + [222111] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6905), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, STATE(7179), 1, sym_comment, - [221945] = 4, + ACTIONS(10246), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222123] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11638), 1, - sym__table_head_separator, + ACTIONS(11626), 1, + anon_sym_LPAREN, STATE(7180), 1, sym_comment, - ACTIONS(1004), 2, - anon_sym_RBRACK, - sym__entry_separator, - [221959] = 4, + ACTIONS(11628), 2, + sym_unescaped_interpolated_content, + anon_sym_SQUOTE, + [222137] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11640), 1, - sym__table_head_separator, + ACTIONS(2078), 1, + sym__entry_separator, STATE(7181), 1, sym_comment, - ACTIONS(1004), 2, + ACTIONS(2072), 2, anon_sym_RBRACK, - sym__entry_separator, - [221973] = 4, + anon_sym_RBRACE, + [222151] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11642), 1, - anon_sym_RBRACK, - ACTIONS(11644), 1, - sym_hex_digit, - STATE(7182), 2, + STATE(7182), 1, sym_comment, - aux_sym_val_binary_repeat1, - [221987] = 5, - ACTIONS(251), 1, + ACTIONS(10620), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222163] = 5, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6914), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(6041), 1, + sym__entry_separator, + ACTIONS(6058), 1, + anon_sym_RBRACE, + STATE(3008), 1, + aux_sym__multiple_types_repeat1, STATE(7183), 1, sym_comment, - [222003] = 5, - ACTIONS(251), 1, + [222179] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6917), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(1873), 1, + sym__entry_separator, STATE(7184), 1, sym_comment, - [222019] = 3, + ACTIONS(1871), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222193] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7185), 1, sym_comment, - ACTIONS(10890), 3, + ACTIONS(10978), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222031] = 5, - ACTIONS(251), 1, + [222205] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6920), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(2405), 1, + sym__entry_separator, STATE(7186), 1, sym_comment, - [222047] = 5, + ACTIONS(2403), 2, + anon_sym_RBRACK, + anon_sym_RBRACE, + [222219] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9673), 1, - anon_sym_LBRACK, - STATE(6921), 1, - sym_val_list, - STATE(6937), 1, - aux_sym_val_table_repeat1, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, STATE(7187), 1, sym_comment, - [222063] = 3, - ACTIONS(251), 1, + ACTIONS(1675), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [222233] = 5, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + ACTIONS(4754), 1, + aux_sym_unquoted_token4, STATE(7188), 1, sym_comment, - ACTIONS(10898), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222075] = 3, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + [222249] = 3, ACTIONS(251), 1, anon_sym_POUND, STATE(7189), 1, sym_comment, - ACTIONS(10902), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222087] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7190), 1, - sym_comment, - ACTIONS(10904), 3, + ACTIONS(10454), 3, ts_builtin_sym_end, sym__newline, anon_sym_SEMI, - [222099] = 5, + [222261] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(2409), 1, sym__entry_separator, - ACTIONS(6119), 1, + STATE(7190), 1, + sym_comment, + ACTIONS(2407), 2, + anon_sym_RBRACK, anon_sym_RBRACE, - STATE(2987), 1, - aux_sym__multiple_types_repeat1, + [222275] = 5, + ACTIONS(251), 1, + anon_sym_POUND, + ACTIONS(11062), 1, + sym_hex_digit, + ACTIONS(11630), 1, + anon_sym_RBRACK, + STATE(6794), 1, + aux_sym_val_binary_repeat1, STATE(7191), 1, sym_comment, - [222115] = 4, - ACTIONS(3), 1, + [222291] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1935), 1, - sym__entry_separator, STATE(7192), 1, sym_comment, - ACTIONS(1933), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222129] = 5, - ACTIONS(251), 1, + ACTIONS(10884), 3, + ts_builtin_sym_end, + sym__newline, + anon_sym_SEMI, + [222303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6576), 1, - sym_block, + ACTIONS(11632), 1, + aux_sym__unquoted_with_expr_token1, STATE(7193), 1, sym_comment, - [222145] = 4, + STATE(7359), 1, + aux_sym__unquoted_with_expr_repeat1, + [222316] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5661), 1, + ACTIONS(2192), 1, + anon_sym_RBRACE, + ACTIONS(2196), 1, sym__entry_separator, STATE(7194), 1, sym_comment, - ACTIONS(5659), 2, - anon_sym_RBRACK, - anon_sym_GT2, - [222159] = 4, - ACTIONS(3), 1, + [222329] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2409), 1, - sym__entry_separator, + ACTIONS(2184), 1, + anon_sym_LBRACE, + ACTIONS(2186), 1, + aux_sym_unquoted_token2, STATE(7195), 1, sym_comment, - ACTIONS(2407), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222173] = 3, - ACTIONS(251), 1, + [222342] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(2200), 1, + anon_sym_RBRACE, + ACTIONS(2202), 1, + sym__entry_separator, STATE(7196), 1, sym_comment, - ACTIONS(966), 3, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [222185] = 4, - ACTIONS(3), 1, + [222355] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2339), 1, - sym__entry_separator, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(7192), 1, + sym_block, STATE(7197), 1, sym_comment, - ACTIONS(2337), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222199] = 4, + [222368] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, + ACTIONS(4914), 1, + anon_sym_LBRACE, + ACTIONS(11634), 1, + anon_sym_EQ2, STATE(7198), 1, sym_comment, - ACTIONS(1693), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [222213] = 5, + [222381] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11647), 1, - anon_sym_RBRACK, + ACTIONS(3398), 1, + anon_sym_COLON2, + ACTIONS(11636), 1, + anon_sym_make, STATE(7199), 1, sym_comment, - STATE(7205), 1, - aux_sym_val_binary_repeat1, - [222229] = 4, + [222394] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2507), 1, + ACTIONS(2156), 1, + anon_sym_RBRACE, + ACTIONS(2158), 1, sym__entry_separator, STATE(7200), 1, sym_comment, - ACTIONS(2505), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222243] = 5, + [222407] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11649), 1, - anon_sym_GT2, - STATE(5405), 1, - aux_sym__multiple_types_repeat1, - STATE(7201), 1, + ACTIONS(11638), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 2, sym_comment, - [222259] = 5, + aux_sym__unquoted_in_record_with_expr_repeat1, + [222418] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11651), 1, - anon_sym_GT2, - STATE(5407), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11641), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7202), 1, sym_comment, - [222275] = 4, + [222431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1999), 1, + ACTIONS(9133), 1, sym__entry_separator, + STATE(5477), 1, + aux_sym__multiple_types_repeat1, STATE(7203), 1, sym_comment, - ACTIONS(1997), 2, - anon_sym_RBRACK, - anon_sym_RBRACE, - [222289] = 5, + [222444] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - ACTIONS(4810), 1, - aux_sym_unquoted_token4, + ACTIONS(9133), 1, + sym__entry_separator, + STATE(5478), 1, + aux_sym__multiple_types_repeat1, STATE(7204), 1, sym_comment, - STATE(7276), 1, - sym__expr_parenthesized_immediate, - [222305] = 5, + [222457] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11082), 1, - sym_hex_digit, - ACTIONS(11653), 1, - anon_sym_RBRACK, - STATE(7182), 1, - aux_sym_val_binary_repeat1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, STATE(7205), 1, sym_comment, - [222321] = 3, - ACTIONS(251), 1, + STATE(7236), 1, + sym__expr_parenthesized_immediate, + [222470] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11643), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7206), 1, sym_comment, - ACTIONS(10953), 3, - ts_builtin_sym_end, - sym__newline, - anon_sym_SEMI, - [222333] = 5, - ACTIONS(3), 1, + [222483] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - ACTIONS(11655), 1, - anon_sym_GT2, - STATE(5413), 1, - aux_sym__multiple_types_repeat1, STATE(7207), 1, sym_comment, - [222349] = 5, + ACTIONS(11645), 2, + anon_sym_RBRACK, + sym_hex_digit, + [222494] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - ACTIONS(11657), 1, + ACTIONS(7692), 1, anon_sym_RBRACK, - STATE(6490), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(7694), 1, + sym__entry_separator, STATE(7208), 1, sym_comment, - [222365] = 3, - ACTIONS(251), 1, + [222507] = 3, + ACTIONS(3), 1, anon_sym_POUND, - STATE(7209), 1, - sym_comment, - ACTIONS(970), 3, - anon_sym_QMARK2, - sym__table_head_separator, - anon_sym_DOT2, - [222377] = 4, + ACTIONS(11647), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7209), 2, + sym_comment, + aux_sym__unquoted_in_list_with_expr_repeat1, + [222518] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, - ACTIONS(2192), 1, - anon_sym_LBRACE, + ACTIONS(5516), 1, + anon_sym_LPAREN2, STATE(7210), 1, sym_comment, - [222390] = 4, + STATE(7233), 1, + sym__expr_parenthesized_immediate, + [222531] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6060), 1, + ACTIONS(11650), 1, + anon_sym_RBRACK, + ACTIONS(11652), 1, sym__entry_separator, - STATE(3090), 1, - aux_sym__multiple_types_repeat1, STATE(7211), 1, sym_comment, - [222403] = 4, - ACTIONS(251), 1, + [222544] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2198), 1, - anon_sym_LBRACE, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, + ACTIONS(2278), 1, + sym__entry_separator, + STATE(701), 1, + aux_sym__multiple_types_repeat1, STATE(7212), 1, sym_comment, - [222416] = 4, - ACTIONS(3), 1, + [222557] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11659), 1, - anon_sym_RBRACK, - ACTIONS(11661), 1, - sym__entry_separator, STATE(7213), 1, sym_comment, - [222429] = 3, - ACTIONS(3), 1, + ACTIONS(990), 2, + sym__table_head_separator, + anon_sym_DOT2, + [222568] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11663), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7214), 2, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6940), 1, + sym_block, + STATE(7214), 1, sym_comment, - aux_sym__unquoted_in_list_with_expr_repeat1, - [222440] = 4, - ACTIONS(3), 1, + [222581] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - STATE(6803), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(1665), 1, + anon_sym_LPAREN2, STATE(7215), 1, sym_comment, - [222453] = 4, - ACTIONS(3), 1, + STATE(7504), 1, + sym__expr_parenthesized_immediate, + [222594] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11666), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1772), 1, + aux_sym_unquoted_token2, + ACTIONS(1774), 1, + anon_sym_LBRACE, STATE(7216), 1, sym_comment, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, - [222466] = 4, - ACTIONS(251), 1, + [222607] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, + ACTIONS(3523), 1, + sym__space, + STATE(1137), 1, + aux_sym_pipe_element_repeat1, STATE(7217), 1, sym_comment, - STATE(7459), 1, - sym__expr_parenthesized_immediate, - [222479] = 4, + [222620] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6996), 1, - sym_block, STATE(7218), 1, sym_comment, - [222492] = 4, - ACTIONS(251), 1, + ACTIONS(982), 2, + sym__table_head_separator, + anon_sym_DOT2, + [222631] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6708), 1, - sym_block, + ACTIONS(2170), 1, + anon_sym_RBRACE, + ACTIONS(2174), 1, + sym__entry_separator, STATE(7219), 1, sym_comment, - [222505] = 4, - ACTIONS(3), 1, + [222644] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11668), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6170), 1, + sym_block, STATE(7220), 1, sym_comment, - STATE(7243), 1, - aux_sym__unquoted_with_expr_repeat1, - [222518] = 4, + [222657] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11670), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11654), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7206), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7221), 1, sym_comment, - STATE(7248), 1, - aux_sym__unquoted_with_expr_repeat1, - [222531] = 4, - ACTIONS(3), 1, + [222670] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11672), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(4920), 1, + anon_sym_LBRACE, + ACTIONS(11656), 1, + anon_sym_EQ2, STATE(7222), 1, sym_comment, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [222544] = 4, + [222683] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11674), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2188), 1, + anon_sym_RBRACE, + ACTIONS(2190), 1, + sym__entry_separator, STATE(7223), 1, sym_comment, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [222557] = 4, - ACTIONS(251), 1, + [222696] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(7025), 1, - sym_block, + ACTIONS(11658), 1, + aux_sym__unquoted_with_expr_token1, STATE(7224), 1, sym_comment, - [222570] = 4, + STATE(7308), 1, + aux_sym__unquoted_with_expr_repeat1, + [222709] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2298), 1, - sym__entry_separator, - STATE(655), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11660), 1, + aux_sym__unquoted_with_expr_token1, STATE(7225), 1, sym_comment, - [222583] = 4, + STATE(7311), 1, + aux_sym__unquoted_with_expr_repeat1, + [222722] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, + ACTIONS(3420), 1, + anon_sym_COLON2, + ACTIONS(11636), 1, + anon_sym_make, STATE(7226), 1, sym_comment, - STATE(7420), 1, - sym__expr_parenthesized_immediate, - [222596] = 4, + [222735] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11676), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11662), 1, + anon_sym_LPAREN2, + ACTIONS(11664), 1, + aux_sym__record_key_token1, STATE(7227), 1, sym_comment, - STATE(7285), 1, - aux_sym__unquoted_with_expr_repeat1, - [222609] = 4, - ACTIONS(3), 1, + [222748] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2491), 1, - anon_sym_RBRACE, - ACTIONS(2493), 1, - sym__entry_separator, + ACTIONS(11666), 1, + sym_identifier, + ACTIONS(11668), 1, + anon_sym_DOLLAR, STATE(7228), 1, sym_comment, - [222622] = 4, + [222761] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2233), 1, - anon_sym_LBRACE, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, + ACTIONS(7260), 1, + anon_sym_RBRACK, + ACTIONS(7262), 1, + sym__entry_separator, STATE(7229), 1, sym_comment, - [222635] = 4, + [222774] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, + ACTIONS(2190), 1, anon_sym_LBRACE, - STATE(4618), 1, - sym_block, STATE(7230), 1, sym_comment, - [222648] = 4, + [222787] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2124), 1, - anon_sym_RBRACE, - ACTIONS(2130), 1, - sym__entry_separator, + ACTIONS(11670), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7209), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7231), 1, sym_comment, - [222661] = 4, - ACTIONS(251), 1, + [222800] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1725), 1, - aux_sym_unquoted_token2, - ACTIONS(1727), 1, - anon_sym_LBRACE, + ACTIONS(2216), 1, + anon_sym_RBRACE, + ACTIONS(2218), 1, + sym__entry_separator, STATE(7232), 1, sym_comment, - [222674] = 4, + [222813] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7994), 1, - sym__entry_separator, - ACTIONS(7996), 1, - anon_sym_RBRACK, + ACTIONS(11672), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7231), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7233), 1, sym_comment, - [222687] = 4, - ACTIONS(3), 1, + [222826] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11678), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1801), 1, + anon_sym_LBRACE, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, STATE(7234), 1, sym_comment, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, - [222700] = 4, + [222839] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11680), 1, + ACTIONS(11674), 1, aux_sym__unquoted_with_expr_token1, STATE(7235), 1, sym_comment, - STATE(7281), 1, + STATE(7254), 1, aux_sym__unquoted_with_expr_repeat1, - [222713] = 4, - ACTIONS(251), 1, + [222852] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, + ACTIONS(11676), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7202), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7236), 1, sym_comment, - STATE(7328), 1, - sym__expr_parenthesized_immediate, - [222726] = 4, - ACTIONS(3), 1, + [222865] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11682), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(7224), 1, + sym__expr_parenthesized_immediate, STATE(7237), 1, sym_comment, - STATE(7292), 1, - aux_sym__unquoted_with_expr_repeat1, - [222739] = 4, - ACTIONS(3), 1, + [222878] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1786), 1, - anon_sym_RBRACE, - ACTIONS(1794), 1, - sym__entry_separator, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6270), 1, + sym_block, STATE(7238), 1, sym_comment, - [222752] = 3, + [222891] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11684), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 2, + ACTIONS(11678), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7239), 1, sym_comment, - aux_sym__unquoted_in_record_with_expr_repeat1, - [222763] = 4, + STATE(7278), 1, + aux_sym__unquoted_with_expr_repeat1, + [222904] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11687), 1, - aux_sym__unquoted_in_record_with_expr_token1, STATE(7240), 1, sym_comment, - STATE(7288), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [222776] = 4, + ACTIONS(1268), 2, + anon_sym_POUND_BANG, + sym__newline, + [222915] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11689), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(11680), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7209), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7241), 1, sym_comment, - STATE(7289), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [222789] = 4, - ACTIONS(251), 1, + [222928] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6212), 1, - sym_block, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym__unquoted_in_list_token4, STATE(7242), 1, sym_comment, - [222802] = 4, + [222941] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11691), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1793), 1, + anon_sym_RBRACE, + ACTIONS(1801), 1, + sym__entry_separator, STATE(7243), 1, sym_comment, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, - [222815] = 4, - ACTIONS(251), 1, + [222954] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6222), 1, - sym_block, + ACTIONS(5672), 1, + sym__entry_separator, + STATE(2740), 1, + aux_sym__multiple_types_repeat1, STATE(7244), 1, sym_comment, - [222828] = 3, - ACTIONS(251), 1, + [222967] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11682), 1, + aux_sym__unquoted_with_expr_token1, STATE(7245), 1, sym_comment, - ACTIONS(990), 2, - sym__table_head_separator, - anon_sym_DOT2, - [222839] = 4, - ACTIONS(3), 1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [222980] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11693), 1, + ACTIONS(1665), 1, anon_sym_LPAREN2, - ACTIONS(11695), 1, - aux_sym__record_key_token1, STATE(7246), 1, sym_comment, - [222852] = 4, + STATE(7322), 1, + sym__expr_parenthesized_immediate, + [222993] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7275), 1, - anon_sym_RBRACK, - ACTIONS(7277), 1, + ACTIONS(8291), 1, sym__entry_separator, + ACTIONS(8293), 1, + anon_sym_GT2, STATE(7247), 1, sym_comment, - [222865] = 4, + [223006] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11697), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11684), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7248), 1, sym_comment, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, - [222878] = 4, + [223019] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11699), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7214), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(11686), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7249), 1, sym_comment, - [222891] = 4, + [223032] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, + ACTIONS(1817), 1, + aux_sym_unquoted_token2, + ACTIONS(1819), 1, anon_sym_LBRACE, - STATE(7019), 1, - sym_block, STATE(7250), 1, sym_comment, - [222904] = 4, - ACTIONS(3), 1, + [223045] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym_unquoted_token4, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(4580), 1, + sym_block, STATE(7251), 1, sym_comment, - [222917] = 4, - ACTIONS(251), 1, + [223058] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, - ACTIONS(11701), 1, - anon_sym_make, + ACTIONS(11688), 1, + aux_sym__unquoted_with_expr_token1, STATE(7252), 1, sym_comment, - [222930] = 4, + STATE(7270), 1, + aux_sym__unquoted_with_expr_repeat1, + [223071] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, - sym__entry_separator, - STATE(5521), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11690), 1, + aux_sym__unquoted_with_expr_token1, STATE(7253), 1, sym_comment, - [222943] = 4, + STATE(7274), 1, + aux_sym__unquoted_with_expr_repeat1, + [223084] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11703), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7249), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(11692), 1, + aux_sym__unquoted_with_expr_token1, STATE(7254), 1, sym_comment, - [222956] = 4, - ACTIONS(251), 1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223097] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6873), 1, - sym_block, + ACTIONS(11694), 1, + sym__newline, + ACTIONS(11696), 1, + sym__space, STATE(7255), 1, sym_comment, - [222969] = 3, - ACTIONS(251), 1, + [223110] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11698), 1, + aux_sym__unquoted_with_expr_token1, STATE(7256), 1, sym_comment, - ACTIONS(11328), 2, - anon_sym_GT2, - anon_sym_AT, - [222980] = 4, - ACTIONS(251), 1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223123] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6576), 1, - sym_block, + ACTIONS(11700), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7257), 1, sym_comment, - [222993] = 4, - ACTIONS(251), 1, + [223136] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, - STATE(7254), 1, - sym__expr_parenthesized_immediate, + ACTIONS(11702), 1, + aux_sym__unquoted_in_list_with_expr_token1, + STATE(7241), 1, + aux_sym__unquoted_in_list_with_expr_repeat1, STATE(7258), 1, sym_comment, - [223006] = 3, + [223149] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(5007), 1, + sym__entry_separator, + ACTIONS(5010), 1, + anon_sym_RBRACE, STATE(7259), 1, sym_comment, - ACTIONS(1268), 2, - anon_sym_POUND_BANG, - sym__newline, - [223017] = 4, - ACTIONS(3), 1, + [223162] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11705), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7214), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(9541), 1, + anon_sym_LBRACE, + STATE(7042), 1, + sym_val_record, STATE(7260), 1, sym_comment, - [223030] = 4, + [223175] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1000), 1, - anon_sym_LBRACE, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, + ACTIONS(11704), 1, + aux_sym__unquoted_with_expr_token1, STATE(7261), 1, sym_comment, - [223043] = 4, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223188] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5716), 1, - sym__entry_separator, - STATE(2770), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11706), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7262), 1, sym_comment, - [223056] = 4, + [223201] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9165), 1, + ACTIONS(11708), 1, + anon_sym_RBRACK, + ACTIONS(11710), 1, sym__entry_separator, - STATE(5524), 1, - aux_sym__multiple_types_repeat1, STATE(7263), 1, sym_comment, - [223069] = 4, + [223214] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, STATE(7264), 1, sym_comment, - STATE(7343), 1, - sym__expr_parenthesized_immediate, - [223082] = 4, - ACTIONS(251), 1, + ACTIONS(986), 2, + sym__table_head_separator, + anon_sym_DOT2, + [223225] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(4557), 1, - sym_block, + ACTIONS(8263), 1, + sym__entry_separator, + ACTIONS(8265), 1, + anon_sym_RBRACK, STATE(7265), 1, sym_comment, - [223095] = 4, + [223238] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11707), 1, - sym__newline, - ACTIONS(11709), 1, - sym__space, + ACTIONS(2393), 1, + anon_sym_RBRACE, + ACTIONS(2395), 1, + sym__entry_separator, STATE(7266), 1, sym_comment, - [223108] = 4, - ACTIONS(251), 1, + [223251] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4925), 1, - anon_sym_LBRACE, - ACTIONS(11711), 1, - anon_sym_EQ2, + ACTIONS(11712), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7257), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7267), 1, sym_comment, - [223121] = 4, - ACTIONS(251), 1, + [223264] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1861), 1, - aux_sym_unquoted_token2, - ACTIONS(1863), 1, - anon_sym_LBRACE, + ACTIONS(11714), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7262), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7268), 1, sym_comment, - [223134] = 4, + [223277] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11713), 1, - aux_sym__unquoted_in_list_with_expr_token1, - STATE(7260), 1, - aux_sym__unquoted_in_list_with_expr_repeat1, + ACTIONS(2226), 1, + anon_sym_RBRACE, + ACTIONS(2230), 1, + sym__entry_separator, STATE(7269), 1, sym_comment, - [223147] = 4, - ACTIONS(251), 1, + [223290] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11715), 1, - sym_identifier, - ACTIONS(11717), 1, - anon_sym_DOLLAR, + ACTIONS(11716), 1, + aux_sym__unquoted_with_expr_token1, STATE(7270), 1, sym_comment, - [223160] = 4, - ACTIONS(251), 1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223303] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, - STATE(7240), 1, - sym__expr_parenthesized_immediate, + ACTIONS(2397), 1, + anon_sym_RBRACE, + ACTIONS(2399), 1, + sym__entry_separator, STATE(7271), 1, sym_comment, - [223173] = 4, + [223316] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(7053), 1, - sym_block, STATE(7272), 1, sym_comment, - [223186] = 4, + ACTIONS(11264), 2, + anon_sym_GT2, + anon_sym_AT, + [223327] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6267), 1, - sym_block, + ACTIONS(11718), 1, + anon_sym_DASH2, STATE(7273), 1, sym_comment, - [223199] = 3, - ACTIONS(251), 1, + STATE(7534), 1, + sym_param_short_flag, + [223340] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11720), 1, + aux_sym__unquoted_with_expr_token1, STATE(7274), 1, sym_comment, - ACTIONS(986), 2, - sym__table_head_separator, - anon_sym_DOT2, - [223210] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - STATE(7275), 1, - sym_comment, - ACTIONS(982), 2, - sym__table_head_separator, - anon_sym_DOT2, - [223221] = 4, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223353] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11719), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7276), 1, + ACTIONS(11722), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7275), 1, sym_comment, - STATE(7358), 1, - aux_sym__unquoted_with_expr_repeat1, - [223234] = 4, + STATE(7282), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [223366] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(7206), 1, + STATE(4676), 1, sym_block, + STATE(7276), 1, + sym_comment, + [223379] = 4, + ACTIONS(3), 1, + anon_sym_POUND, + ACTIONS(11724), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7277), 1, sym_comment, - [223247] = 4, - ACTIONS(251), 1, + STATE(7283), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, + [223392] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6710), 1, - sym_block, + ACTIONS(11726), 1, + aux_sym__unquoted_with_expr_token1, STATE(7278), 1, sym_comment, - [223260] = 4, - ACTIONS(3), 1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223405] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11721), 1, - anon_sym_RBRACK, - ACTIONS(11723), 1, - sym__entry_separator, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(4774), 1, + sym_block, STATE(7279), 1, sym_comment, - [223273] = 4, - ACTIONS(3), 1, + [223418] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11725), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(4052), 1, + anon_sym_LPAREN2, STATE(7280), 1, sym_comment, - [223286] = 3, + STATE(7346), 1, + sym__expr_parenthesized_immediate, + [223431] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11727), 1, + ACTIONS(11728), 1, aux_sym__unquoted_with_expr_token1, - STATE(7281), 2, + STATE(7281), 1, sym_comment, + STATE(7336), 1, aux_sym__unquoted_with_expr_repeat1, - [223297] = 4, - ACTIONS(251), 1, + [223444] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6208), 1, - sym_block, + ACTIONS(11730), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7282), 1, sym_comment, - [223310] = 4, + [223457] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2497), 1, - anon_sym_RBRACE, - ACTIONS(2499), 1, - sym__entry_separator, + ACTIONS(11732), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7201), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7283), 1, sym_comment, - [223323] = 4, - ACTIONS(3), 1, + [223470] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2237), 1, - anon_sym_RBRACE, - ACTIONS(2241), 1, - sym__entry_separator, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + STATE(7267), 1, + sym__expr_parenthesized_immediate, STATE(7284), 1, sym_comment, - [223336] = 4, - ACTIONS(3), 1, + [223483] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11730), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(1749), 1, + aux_sym_unquoted_token2, + ACTIONS(1751), 1, + anon_sym_LBRACE, STATE(7285), 1, sym_comment, - [223349] = 4, + [223496] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2245), 1, - anon_sym_RBRACE, - ACTIONS(2247), 1, + ACTIONS(11734), 1, + anon_sym_RBRACK, + ACTIONS(11736), 1, sym__entry_separator, STATE(7286), 1, sym_comment, - [223362] = 4, - ACTIONS(251), 1, + [223509] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5473), 1, - anon_sym_LPAREN2, + ACTIONS(1825), 1, + anon_sym_RBRACE, + ACTIONS(1827), 1, + sym__entry_separator, STATE(7287), 1, sym_comment, - STATE(7687), 1, - sym__expr_parenthesized_immediate, - [223375] = 4, - ACTIONS(3), 1, + [223522] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11732), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6315), 1, + sym_block, STATE(7288), 1, sym_comment, - [223388] = 4, - ACTIONS(3), 1, + [223535] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11734), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, + ACTIONS(2174), 1, + anon_sym_LBRACE, STATE(7289), 1, sym_comment, - [223401] = 4, + [223548] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11736), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(1805), 1, + anon_sym_RBRACE, + ACTIONS(1813), 1, + sym__entry_separator, STATE(7290), 1, sym_comment, - STATE(7352), 1, - aux_sym__unquoted_with_expr_repeat1, - [223414] = 4, + [223561] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11738), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(2216), 1, + aux_sym_unquoted_token4, + ACTIONS(2218), 1, + anon_sym_LBRACE, STATE(7291), 1, sym_comment, - STATE(7353), 1, - aux_sym__unquoted_with_expr_repeat1, - [223427] = 4, + [223574] = 4, ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11738), 1, + sym__newline, ACTIONS(11740), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, + sym__space, STATE(7292), 1, sym_comment, - [223440] = 4, + [223587] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, - ACTIONS(11701), 1, - anon_sym_make, + ACTIONS(4052), 1, + anon_sym_LPAREN2, STATE(7293), 1, sym_comment, - [223453] = 4, + STATE(7574), 1, + sym__expr_parenthesized_immediate, + [223600] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, - STATE(6138), 1, + STATE(5021), 1, sym_block, STATE(7294), 1, sym_comment, - [223466] = 4, + [223613] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(1675), 1, anon_sym_LBRACE, - STATE(4689), 1, - sym_block, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, STATE(7295), 1, sym_comment, - [223479] = 4, - ACTIONS(3), 1, + [223626] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2265), 1, - aux_sym_unquoted_token4, - ACTIONS(2267), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, + STATE(4475), 1, + sym_block, STATE(7296), 1, sym_comment, - [223492] = 4, + [223639] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6145), 1, - sym_block, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(7252), 1, + sym__expr_parenthesized_immediate, STATE(7297), 1, sym_comment, - [223505] = 4, + [223652] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4744), 1, - sym_block, + ACTIONS(1665), 1, + anon_sym_LPAREN2, + STATE(7275), 1, + sym__expr_parenthesized_immediate, STATE(7298), 1, sym_comment, - [223518] = 4, + [223665] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(7290), 1, - sym__expr_parenthesized_immediate, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6282), 1, + sym_block, STATE(7299), 1, sym_comment, - [223531] = 4, + [223678] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6295), 1, + sym_block, STATE(7300), 1, sym_comment, - STATE(7356), 1, - sym__expr_parenthesized_immediate, - [223544] = 4, - ACTIONS(3), 1, + [223691] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2194), 1, - anon_sym_RBRACE, - ACTIONS(2198), 1, - sym__entry_separator, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4959), 1, + sym_block, STATE(7301), 1, sym_comment, - [223557] = 4, - ACTIONS(251), 1, + [223704] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1693), 1, + ACTIONS(2196), 1, anon_sym_LBRACE, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(7302), 1, sym_comment, - [223570] = 4, + [223717] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2241), 1, - anon_sym_LBRACE, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(11742), 1, + anon_sym_RBRACE, + ACTIONS(11744), 1, + sym__entry_separator, STATE(7303), 1, sym_comment, - [223583] = 4, + [223730] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1765), 1, + ACTIONS(1545), 1, aux_sym_unquoted_token2, - ACTIONS(1767), 1, + ACTIONS(1813), 1, anon_sym_LBRACE, STATE(7304), 1, sym_comment, - [223596] = 4, - ACTIONS(3), 1, + [223743] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10103), 1, - anon_sym_RBRACE, - ACTIONS(10105), 1, - sym__entry_separator, + ACTIONS(4052), 1, + anon_sym_LPAREN2, STATE(7305), 1, sym_comment, - [223609] = 4, + STATE(7318), 1, + sym__expr_parenthesized_immediate, + [223756] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, - ACTIONS(2247), 1, + ACTIONS(2230), 1, anon_sym_LBRACE, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, STATE(7306), 1, sym_comment, - [223622] = 4, - ACTIONS(3), 1, + [223769] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11742), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6773), 1, + sym_block, STATE(7307), 1, sym_comment, - STATE(7318), 1, - aux_sym__unquoted_with_expr_repeat1, - [223635] = 4, + [223782] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11744), 1, + ACTIONS(11746), 1, aux_sym__unquoted_with_expr_token1, STATE(7308), 1, sym_comment, - STATE(7319), 1, + STATE(7336), 1, aux_sym__unquoted_with_expr_repeat1, - [223648] = 4, - ACTIONS(251), 1, + [223795] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, + ACTIONS(2202), 1, anon_sym_LBRACE, - STATE(5032), 1, - sym_block, STATE(7309), 1, sym_comment, - [223661] = 4, - ACTIONS(3), 1, + [223808] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5885), 1, - anon_sym_RBRACK, - ACTIONS(5891), 1, - sym__entry_separator, + ACTIONS(4052), 1, + anon_sym_LPAREN2, STATE(7310), 1, sym_comment, - [223674] = 4, + STATE(7341), 1, + sym__expr_parenthesized_immediate, + [223821] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2229), 1, - anon_sym_RBRACE, - ACTIONS(2233), 1, - sym__entry_separator, + ACTIONS(11748), 1, + aux_sym__unquoted_with_expr_token1, STATE(7311), 1, sym_comment, - [223687] = 4, - ACTIONS(3), 1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, + [223834] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2188), 1, - anon_sym_RBRACE, - ACTIONS(2192), 1, - sym__entry_separator, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6953), 1, + sym_block, STATE(7312), 1, sym_comment, - [223700] = 4, - ACTIONS(251), 1, + [223847] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(7307), 1, - sym__expr_parenthesized_immediate, + ACTIONS(5871), 1, + sym__entry_separator, + STATE(2886), 1, + aux_sym__multiple_types_repeat1, STATE(7313), 1, sym_comment, - [223713] = 4, + [223860] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, - ACTIONS(2186), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, + STATE(6837), 1, + sym_block, STATE(7314), 1, sym_comment, - [223726] = 4, + [223873] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1683), 1, - anon_sym_LPAREN2, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6726), 1, + sym_block, STATE(7315), 1, sym_comment, - STATE(7322), 1, - sym__expr_parenthesized_immediate, - [223739] = 4, - ACTIONS(251), 1, + [223886] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4973), 1, - sym_block, + ACTIONS(6496), 1, + sym__entry_separator, + STATE(3476), 1, + aux_sym__multiple_types_repeat1, STATE(7316), 1, sym_comment, - [223752] = 4, - ACTIONS(251), 1, + [223899] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(4412), 1, + ACTIONS(2228), 1, anon_sym_LPAREN2, - STATE(7276), 1, - sym__expr_parenthesized_immediate, + ACTIONS(2232), 1, + aux_sym__unquoted_in_record_token4, STATE(7317), 1, sym_comment, - [223765] = 4, + [223912] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11746), 1, + ACTIONS(11750), 1, aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, + STATE(7245), 1, aux_sym__unquoted_with_expr_repeat1, STATE(7318), 1, sym_comment, - [223778] = 4, + [223925] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11748), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(10128), 1, + anon_sym_RBRACE, + ACTIONS(10130), 1, + sym__entry_separator, STATE(7319), 1, sym_comment, - [223791] = 4, - ACTIONS(3), 1, + [223938] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1894), 1, - anon_sym_RBRACE, - ACTIONS(1896), 1, - sym__entry_separator, + ACTIONS(4052), 1, + anon_sym_LPAREN2, + STATE(7239), 1, + sym__expr_parenthesized_immediate, STATE(7320), 1, sym_comment, - [223804] = 4, - ACTIONS(251), 1, + [223951] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6141), 1, - sym_block, + ACTIONS(2160), 1, + anon_sym_RBRACE, + ACTIONS(2162), 1, + sym__entry_separator, STATE(7321), 1, sym_comment, - [223817] = 4, + [223964] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11750), 1, + ACTIONS(11752), 1, aux_sym__unquoted_in_record_with_expr_token1, + STATE(7248), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7322), 1, sym_comment, - STATE(7331), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [223830] = 4, - ACTIONS(3), 1, + [223977] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11752), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(7034), 1, + sym_block, STATE(7323), 1, sym_comment, - STATE(7332), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, - [223843] = 4, + [223990] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(7220), 1, - sym__expr_parenthesized_immediate, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6660), 1, + sym_block, STATE(7324), 1, sym_comment, - [223856] = 4, - ACTIONS(251), 1, + [224003] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1757), 1, - aux_sym_unquoted_token2, - ACTIONS(1759), 1, - anon_sym_LBRACE, + ACTIONS(11754), 1, + aux_sym__unquoted_in_record_with_expr_token1, + STATE(7249), 1, + aux_sym__unquoted_in_record_with_expr_repeat1, STATE(7325), 1, sym_comment, - [223869] = 4, + [224016] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4412), 1, - anon_sym_LPAREN2, - STATE(7227), 1, - sym__expr_parenthesized_immediate, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6487), 1, + sym_block, STATE(7326), 1, sym_comment, - [223882] = 4, + [224029] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9621), 1, + ACTIONS(9543), 1, anon_sym_LBRACE, - STATE(6552), 1, + STATE(6414), 1, sym_val_record, STATE(7327), 1, sym_comment, - [223895] = 4, + [224042] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11754), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7280), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(2164), 1, + anon_sym_RBRACE, + ACTIONS(2166), 1, + sym__entry_separator, STATE(7328), 1, sym_comment, - [223908] = 4, + [224055] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, - ACTIONS(1794), 1, + ACTIONS(6211), 1, anon_sym_LBRACE, + STATE(6490), 1, + sym_block, STATE(7329), 1, sym_comment, - [223921] = 4, + [224068] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1873), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, + STATE(7006), 1, + sym_block, STATE(7330), 1, sym_comment, - [223934] = 4, + [224081] = 4, ACTIONS(3), 1, anon_sym_POUND, ACTIONS(11756), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + anon_sym_RBRACE, + ACTIONS(11758), 1, + sym__entry_separator, STATE(7331), 1, sym_comment, - [223947] = 4, + [224094] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11758), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(1000), 1, + anon_sym_LBRACE, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, STATE(7332), 1, sym_comment, - [223960] = 4, + [224107] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11760), 1, - anon_sym_DASH2, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6343), 1, + sym_block, STATE(7333), 1, sym_comment, - STATE(7684), 1, - sym_param_short_flag, - [223973] = 3, + [224120] = 4, ACTIONS(251), 1, anon_sym_POUND, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6344), 1, + sym_block, STATE(7334), 1, sym_comment, - ACTIONS(11072), 2, - anon_sym_PIPE, - anon_sym_EQ_GT, - [223984] = 4, + [224133] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11762), 1, - sym__newline, - ACTIONS(11764), 1, - sym__space, + ACTIONS(2228), 1, + anon_sym_LPAREN2, + ACTIONS(2232), 1, + aux_sym_unquoted_token4, STATE(7335), 1, sym_comment, - [223997] = 4, + [224146] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11766), 1, + ACTIONS(11760), 1, aux_sym__unquoted_with_expr_token1, - STATE(7216), 1, - aux_sym__unquoted_with_expr_repeat1, - STATE(7336), 1, + STATE(7336), 2, sym_comment, - [224010] = 4, - ACTIONS(251), 1, + aux_sym__unquoted_with_expr_repeat1, + [224157] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6946), 1, - sym_block, + ACTIONS(10158), 1, + anon_sym_RBRACE, + ACTIONS(10160), 1, + sym__entry_separator, STATE(7337), 1, sym_comment, - [224023] = 4, - ACTIONS(3), 1, + [224170] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8050), 1, - sym__entry_separator, - ACTIONS(8052), 1, - anon_sym_GT2, STATE(7338), 1, sym_comment, - [224036] = 4, + ACTIONS(11393), 2, + anon_sym_PIPE, + anon_sym_EQ_GT, + [224181] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11768), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7239), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(2180), 1, + anon_sym_RBRACE, + ACTIONS(2184), 1, + sym__entry_separator, STATE(7339), 1, sym_comment, - [224049] = 4, + [224194] = 4, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, + ACTIONS(6209), 1, anon_sym_LBRACE, - STATE(6954), 1, + STATE(6722), 1, sym_block, STATE(7340), 1, sym_comment, - [224062] = 4, + [224207] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11770), 1, - sym__newline, - ACTIONS(11772), 1, - sym__space, + ACTIONS(11763), 1, + aux_sym__unquoted_with_expr_token1, STATE(7341), 1, sym_comment, - [224075] = 4, - ACTIONS(251), 1, + STATE(7357), 1, + aux_sym__unquoted_with_expr_repeat1, + [224220] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6513), 1, - sym_block, + ACTIONS(5944), 1, + anon_sym_RBRACK, + ACTIONS(5946), 1, + sym__entry_separator, STATE(7342), 1, sym_comment, - [224088] = 4, + [224233] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11774), 1, + ACTIONS(11765), 1, aux_sym__unquoted_with_expr_token1, - STATE(7234), 1, + STATE(7281), 1, aux_sym__unquoted_with_expr_repeat1, STATE(7343), 1, sym_comment, - [224101] = 4, - ACTIONS(3), 1, + [224246] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11776), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7235), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(6663), 1, + sym_block, STATE(7344), 1, sym_comment, - [224114] = 4, + [224259] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(11767), 1, + sym__newline, + ACTIONS(11769), 1, + sym__space, STATE(7345), 1, sym_comment, - [224127] = 3, - ACTIONS(251), 1, + [224272] = 4, + ACTIONS(3), 1, anon_sym_POUND, + ACTIONS(11771), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7256), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7346), 1, sym_comment, - ACTIONS(11778), 2, - anon_sym_RBRACK, - sym_hex_digit, - [224138] = 4, - ACTIONS(3), 1, + [224285] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3519), 1, - sym__space, - STATE(1146), 1, - aux_sym_pipe_element_repeat1, + ACTIONS(5516), 1, + anon_sym_LPAREN2, STATE(7347), 1, sym_comment, - [224151] = 4, - ACTIONS(251), 1, + STATE(7388), 1, + sym__expr_parenthesized_immediate, + [224298] = 4, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(4502), 1, - sym_block, + ACTIONS(11773), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7261), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7348), 1, sym_comment, - [224164] = 4, - ACTIONS(3), 1, + [224311] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5854), 1, - sym__entry_separator, - STATE(2930), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6569), 1, + sym_block, STATE(7349), 1, sym_comment, - [224177] = 4, - ACTIONS(3), 1, + [224324] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2184), 1, - anon_sym_RBRACE, - ACTIONS(2186), 1, - sym__entry_separator, + ACTIONS(1731), 1, + aux_sym_unquoted_token2, + ACTIONS(1733), 1, + anon_sym_LBRACE, STATE(7350), 1, sym_comment, - [224190] = 4, - ACTIONS(3), 1, + [224337] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2140), 1, - anon_sym_RBRACE, - ACTIONS(2142), 1, - sym__entry_separator, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6151), 1, + sym_block, STATE(7351), 1, sym_comment, - [224203] = 4, + [224350] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11780), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6041), 1, + sym__entry_separator, + STATE(3090), 1, + aux_sym__multiple_types_repeat1, STATE(7352), 1, sym_comment, - [224216] = 4, + [224363] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11782), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(2417), 1, + anon_sym_RBRACE, + ACTIONS(2419), 1, + sym__entry_separator, STATE(7353), 1, sym_comment, - [224229] = 4, + [224376] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2231), 1, - anon_sym_LPAREN2, - ACTIONS(2235), 1, - aux_sym__unquoted_in_record_token4, + ACTIONS(6496), 1, + sym__entry_separator, + STATE(6637), 1, + aux_sym__multiple_types_repeat1, STATE(7354), 1, sym_comment, - [224242] = 4, - ACTIONS(3), 1, + [224389] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2265), 1, - anon_sym_RBRACE, - ACTIONS(2267), 1, - sym__entry_separator, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(6154), 1, + sym_block, STATE(7355), 1, sym_comment, - [224255] = 4, - ACTIONS(3), 1, + [224402] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11784), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7222), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(6209), 1, + anon_sym_LBRACE, + STATE(7011), 1, + sym_block, STATE(7356), 1, sym_comment, - [224268] = 4, + [224415] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11786), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7223), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(11775), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7357), 1, sym_comment, - [224281] = 4, - ACTIONS(3), 1, + [224428] = 4, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11788), 1, - aux_sym__unquoted_with_expr_token1, - STATE(7281), 1, - aux_sym__unquoted_with_expr_repeat1, + ACTIONS(6211), 1, + anon_sym_LBRACE, + STATE(4754), 1, + sym_block, STATE(7358), 1, sym_comment, - [224294] = 4, + [224441] = 4, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(6493), 1, - sym__entry_separator, - STATE(3489), 1, - aux_sym__multiple_types_repeat1, + ACTIONS(11777), 1, + aux_sym__unquoted_with_expr_token1, + STATE(7336), 1, + aux_sym__unquoted_with_expr_repeat1, STATE(7359), 1, sym_comment, - [224307] = 4, - ACTIONS(3), 1, + [224454] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2136), 1, - anon_sym_RBRACE, - ACTIONS(2138), 1, - sym__entry_separator, + ACTIONS(11779), 1, + sym__table_head_separator, STATE(7360), 1, sym_comment, - [224320] = 4, + [224464] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6107), 1, - sym_block, + ACTIONS(11781), 1, + anon_sym_RBRACE, STATE(7361), 1, sym_comment, - [224333] = 4, + [224474] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6113), 1, - sym_block, + ACTIONS(11783), 1, + anon_sym_RBRACE, STATE(7362), 1, sym_comment, - [224346] = 4, - ACTIONS(3), 1, + [224484] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1865), 1, - anon_sym_RBRACE, - ACTIONS(1873), 1, - sym__entry_separator, + ACTIONS(11785), 1, + sym_raw_string_end, STATE(7363), 1, sym_comment, - [224359] = 4, + [224494] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9649), 1, - anon_sym_LBRACE, - STATE(6924), 1, - sym_val_record, + ACTIONS(2479), 1, + anon_sym_COLON2, STATE(7364), 1, sym_comment, - [224372] = 4, - ACTIONS(3), 1, + [224504] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11790), 1, - anon_sym_RBRACE, - ACTIONS(11792), 1, - sym__entry_separator, + ACTIONS(11787), 1, + anon_sym_EQ, STATE(7365), 1, sym_comment, - [224385] = 4, - ACTIONS(3), 1, + [224514] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5085), 1, - sym__entry_separator, - ACTIONS(5088), 1, - anon_sym_RBRACE, + ACTIONS(11789), 1, + sym_identifier, STATE(7366), 1, sym_comment, - [224398] = 4, + [224524] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6798), 1, - sym_block, + ACTIONS(11791), 1, + anon_sym_RPAREN, STATE(7367), 1, sym_comment, - [224411] = 4, - ACTIONS(3), 1, + [224534] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10099), 1, - anon_sym_RBRACE, - ACTIONS(10101), 1, - sym__entry_separator, + ACTIONS(8761), 1, + aux_sym__unquoted_in_list_token2, STATE(7368), 1, sym_comment, - [224424] = 4, + [224544] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4943), 1, - anon_sym_LBRACE, - ACTIONS(11794), 1, - anon_sym_EQ2, + ACTIONS(11793), 1, + anon_sym_RBRACK, STATE(7369), 1, sym_comment, - [224437] = 4, - ACTIONS(3), 1, + [224554] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11796), 1, - aux_sym__unquoted_in_record_with_expr_token1, - STATE(7339), 1, - aux_sym__unquoted_in_record_with_expr_repeat1, + ACTIONS(11795), 1, + anon_sym_RBRACE, STATE(7370), 1, sym_comment, - [224450] = 4, - ACTIONS(3), 1, + [224564] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11798), 1, + ACTIONS(11797), 1, anon_sym_RBRACE, - ACTIONS(11800), 1, - sym__entry_separator, STATE(7371), 1, sym_comment, - [224463] = 4, + [224574] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6226), 1, - anon_sym_LBRACE, - STATE(6871), 1, - sym_block, + ACTIONS(11799), 1, + sym_raw_string_end, STATE(7372), 1, sym_comment, - [224476] = 4, - ACTIONS(3), 1, + [224584] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2487), 1, - anon_sym_RBRACE, - ACTIONS(2489), 1, - sym__entry_separator, + ACTIONS(11801), 1, + anon_sym_RPAREN, STATE(7373), 1, sym_comment, - [224489] = 4, + [224594] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6244), 1, - anon_sym_LBRACE, - STATE(6545), 1, - sym_block, + ACTIONS(11803), 1, + anon_sym_RBRACE, STATE(7374), 1, sym_comment, - [224502] = 4, - ACTIONS(3), 1, + [224604] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7877), 1, + ACTIONS(11805), 1, anon_sym_RBRACK, - ACTIONS(7879), 1, - sym__entry_separator, STATE(7375), 1, sym_comment, - [224515] = 4, - ACTIONS(3), 1, + [224614] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11802), 1, - anon_sym_RBRACK, - ACTIONS(11804), 1, - sym__entry_separator, + ACTIONS(11807), 1, + anon_sym_EQ, STATE(7376), 1, sym_comment, - [224528] = 3, + [224624] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11806), 1, - anon_sym_LBRACE, + ACTIONS(11809), 1, + anon_sym_EQ, STATE(7377), 1, sym_comment, - [224538] = 3, + [224634] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(483), 1, - anon_sym_RPAREN2, + ACTIONS(11811), 1, + anon_sym_RBRACE, STATE(7378), 1, sym_comment, - [224548] = 3, + [224644] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4613), 1, - aux_sym_unquoted_token2, + ACTIONS(11813), 1, + anon_sym_RBRACE, STATE(7379), 1, sym_comment, - [224558] = 3, + [224654] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11808), 1, + ACTIONS(11815), 1, anon_sym_EQ, STATE(7380), 1, sym_comment, - [224568] = 3, + [224664] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11810), 1, - sym_raw_string_end, + ACTIONS(7047), 1, + aux_sym_unquoted_token2, STATE(7381), 1, sym_comment, - [224578] = 3, - ACTIONS(251), 1, + [224674] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(2285), 1, - anon_sym_COLON2, + ACTIONS(11817), 1, + aux_sym_cmd_identifier_token41, STATE(7382), 1, sym_comment, - [224588] = 3, - ACTIONS(3), 1, + [224684] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8108), 1, - aux_sym_unquoted_token4, + ACTIONS(11819), 1, + anon_sym_in2, STATE(7383), 1, sym_comment, - [224598] = 3, + [224694] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11812), 1, - anon_sym_RBRACK, + ACTIONS(11821), 1, + anon_sym_RPAREN, STATE(7384), 1, sym_comment, - [224608] = 3, + [224704] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11814), 1, + ACTIONS(11823), 1, sym_raw_string_end, STATE(7385), 1, sym_comment, - [224618] = 3, - ACTIONS(3), 1, + [224714] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11816), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11825), 1, + sym__table_head_separator, STATE(7386), 1, sym_comment, - [224628] = 3, + [224724] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11818), 1, - anon_sym_RPAREN, + ACTIONS(11827), 1, + sym_raw_string_end, STATE(7387), 1, sym_comment, - [224638] = 3, - ACTIONS(251), 1, + [224734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11820), 1, - anon_sym_RBRACE, + ACTIONS(11829), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7388), 1, sym_comment, - [224648] = 3, - ACTIONS(251), 1, + [224744] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11822), 1, - sym_identifier, + ACTIONS(11831), 1, + sym__space, STATE(7389), 1, sym_comment, - [224658] = 3, + [224754] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11824), 1, - anon_sym_RPAREN, + ACTIONS(11833), 1, + sym_raw_string_end, STATE(7390), 1, sym_comment, - [224668] = 3, + [224764] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11826), 1, - sym_identifier, + ACTIONS(11835), 1, + sym__table_head_separator, STATE(7391), 1, sym_comment, - [224678] = 3, + [224774] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11828), 1, - anon_sym_LBRACE, + ACTIONS(11837), 1, + anon_sym_EQ, STATE(7392), 1, sym_comment, - [224688] = 3, + [224784] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11830), 1, - anon_sym_RBRACE, + ACTIONS(4588), 1, + aux_sym_unquoted_token2, STATE(7393), 1, sym_comment, - [224698] = 3, + [224794] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11832), 1, - anon_sym_EQ, + ACTIONS(487), 1, + anon_sym_RPAREN2, STATE(7394), 1, sym_comment, - [224708] = 3, - ACTIONS(251), 1, + [224804] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11834), 1, - anon_sym_EQ, + ACTIONS(7963), 1, + aux_sym_unquoted_token4, STATE(7395), 1, sym_comment, - [224718] = 3, + [224814] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4640), 1, - aux_sym_unquoted_token2, + ACTIONS(11839), 1, + anon_sym_RBRACK, STATE(7396), 1, sym_comment, - [224728] = 3, + [224824] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11836), 1, - anon_sym_RBRACE, + ACTIONS(11841), 1, + anon_sym_RPAREN, STATE(7397), 1, sym_comment, - [224738] = 3, + [224834] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11838), 1, - aux_sym_env_var_token2, + ACTIONS(11843), 1, + anon_sym_GT2, STATE(7398), 1, sym_comment, - [224748] = 3, - ACTIONS(3), 1, + [224844] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8471), 1, - aux_sym_unquoted_token4, + ACTIONS(11845), 1, + anon_sym_RBRACE, STATE(7399), 1, sym_comment, - [224758] = 3, + [224854] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11840), 1, - sym_raw_string_end, + ACTIONS(11847), 1, + anon_sym_RBRACE, STATE(7400), 1, sym_comment, - [224768] = 3, + [224864] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11842), 1, - anon_sym_RBRACK, + ACTIONS(11849), 1, + sym__table_head_separator, STATE(7401), 1, sym_comment, - [224778] = 3, + [224874] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11844), 1, + ACTIONS(11851), 1, aux_sym_cmd_identifier_token41, STATE(7402), 1, sym_comment, - [224788] = 3, + [224884] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11846), 1, - anon_sym_RPAREN, + ACTIONS(11853), 1, + sym_raw_string_end, STATE(7403), 1, sym_comment, - [224798] = 3, + [224894] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11848), 1, - anon_sym_RPAREN, + ACTIONS(11855), 1, + anon_sym_RBRACE, STATE(7404), 1, sym_comment, - [224808] = 3, - ACTIONS(3), 1, + [224904] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9701), 1, - aux_sym_unquoted_token4, + ACTIONS(11857), 1, + anon_sym_EQ, STATE(7405), 1, sym_comment, - [224818] = 3, - ACTIONS(251), 1, + [224914] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11850), 1, - anon_sym_RBRACE, + ACTIONS(7086), 1, + aux_sym_unquoted_token4, STATE(7406), 1, sym_comment, - [224828] = 3, + [224924] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11852), 1, - anon_sym_RBRACE, + ACTIONS(11859), 1, + sym_raw_string_end, STATE(7407), 1, sym_comment, - [224838] = 3, + [224934] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11854), 1, - anon_sym_RPAREN, + ACTIONS(11861), 1, + anon_sym_RBRACE, STATE(7408), 1, sym_comment, - [224848] = 3, - ACTIONS(251), 1, + [224944] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11856), 1, - sym__table_head_separator, + ACTIONS(11863), 1, + aux_sym_cmd_identifier_token41, STATE(7409), 1, sym_comment, - [224858] = 3, + [224954] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11858), 1, - sym_raw_string_end, + ACTIONS(11865), 1, + anon_sym_RBRACE, STATE(7410), 1, sym_comment, - [224868] = 3, + [224964] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11860), 1, - anon_sym_RBRACE, + ACTIONS(11867), 1, + anon_sym_RPAREN, STATE(7411), 1, sym_comment, - [224878] = 3, + [224974] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11862), 1, - anon_sym_RPAREN, + ACTIONS(4656), 1, + aux_sym_unquoted_token2, STATE(7412), 1, sym_comment, - [224888] = 3, + [224984] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11864), 1, - anon_sym_RBRACE, + ACTIONS(11869), 1, + sym_raw_string_end, STATE(7413), 1, sym_comment, - [224898] = 3, - ACTIONS(251), 1, + [224994] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11866), 1, - anon_sym_RBRACE, + ACTIONS(11871), 1, + aux_sym_comment_token1, STATE(7414), 1, sym_comment, - [224908] = 3, - ACTIONS(3), 1, + [225004] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11868), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11873), 1, + anon_sym_EQ, STATE(7415), 1, sym_comment, - [224918] = 3, + [225014] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11870), 1, - anon_sym_RPAREN, + ACTIONS(1677), 1, + aux_sym__unquoted_in_record_token2, STATE(7416), 1, sym_comment, - [224928] = 3, - ACTIONS(251), 1, + [225024] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11872), 1, - anon_sym_RBRACE, + ACTIONS(8458), 1, + aux_sym_unquoted_token4, STATE(7417), 1, sym_comment, - [224938] = 3, + [225034] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11874), 1, - anon_sym_DASH_GT, + ACTIONS(11875), 1, + anon_sym_RBRACE, STATE(7418), 1, sym_comment, - [224948] = 3, + [225044] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11876), 1, - sym__table_head_separator, + ACTIONS(11877), 1, + anon_sym_RBRACE, STATE(7419), 1, sym_comment, - [224958] = 3, - ACTIONS(3), 1, + [225054] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11878), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11879), 1, + anon_sym_RBRACE, STATE(7420), 1, sym_comment, - [224968] = 3, + [225064] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11880), 1, - anon_sym_RPAREN2, + ACTIONS(11881), 1, + sym_raw_string_end, STATE(7421), 1, sym_comment, - [224978] = 3, - ACTIONS(3), 1, + [225074] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11882), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11883), 1, + anon_sym_RPAREN, STATE(7422), 1, sym_comment, - [224988] = 3, + [225084] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11884), 1, - sym_raw_string_end, + ACTIONS(11885), 1, + anon_sym_RBRACK, STATE(7423), 1, sym_comment, - [224998] = 3, + [225094] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11886), 1, + ACTIONS(11887), 1, sym_raw_string_end, STATE(7424), 1, sym_comment, - [225008] = 3, + [225104] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11888), 1, - anon_sym_RBRACK, + ACTIONS(11889), 1, + anon_sym_RPAREN, STATE(7425), 1, sym_comment, - [225018] = 3, - ACTIONS(3), 1, + [225114] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11890), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11891), 1, + anon_sym_RBRACE, STATE(7426), 1, sym_comment, - [225028] = 3, + [225124] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11892), 1, - anon_sym_LBRACE, + ACTIONS(11893), 1, + anon_sym_RBRACE, STATE(7427), 1, sym_comment, - [225038] = 3, - ACTIONS(3), 1, + [225134] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2120), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(11895), 1, + anon_sym_RPAREN, STATE(7428), 1, sym_comment, - [225048] = 3, + [225144] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2200), 1, - aux_sym_unquoted_token2, + ACTIONS(11897), 1, + anon_sym_RBRACE, STATE(7429), 1, sym_comment, - [225058] = 3, - ACTIONS(3), 1, + [225154] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11695), 1, - aux_sym__record_key_token1, + ACTIONS(11899), 1, + sym_raw_string_end, STATE(7430), 1, sym_comment, - [225068] = 3, + [225164] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11894), 1, + ACTIONS(11901), 1, anon_sym_RBRACE, STATE(7431), 1, sym_comment, - [225078] = 3, + [225174] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11896), 1, - anon_sym_make, + ACTIONS(11903), 1, + anon_sym_RBRACK, STATE(7432), 1, sym_comment, - [225088] = 3, + [225184] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11898), 1, - sym_raw_string_end, + ACTIONS(5565), 1, + aux_sym_unquoted_token2, STATE(7433), 1, sym_comment, - [225098] = 3, + [225194] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(487), 1, - anon_sym_RPAREN2, + ACTIONS(11905), 1, + anon_sym_RPAREN, STATE(7434), 1, sym_comment, - [225108] = 3, + [225204] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11900), 1, - anon_sym_RBRACE, + ACTIONS(11907), 1, + sym_raw_string_end, STATE(7435), 1, sym_comment, - [225118] = 3, - ACTIONS(251), 1, + [225214] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11902), 1, - anon_sym_RBRACK, + ACTIONS(4656), 1, + aux_sym_unquoted_token4, STATE(7436), 1, sym_comment, - [225128] = 3, + [225224] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11904), 1, - anon_sym_EQ, + ACTIONS(11909), 1, + anon_sym_RBRACK, STATE(7437), 1, sym_comment, - [225138] = 3, + [225234] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11906), 1, - anon_sym_LPAREN2, + ACTIONS(11911), 1, + anon_sym_RPAREN, STATE(7438), 1, sym_comment, - [225148] = 3, + [225244] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token2, + ACTIONS(11913), 1, + sym_raw_string_end, STATE(7439), 1, sym_comment, - [225158] = 3, + [225254] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11908), 1, - anon_sym_RBRACE, + ACTIONS(11915), 1, + sym_raw_string_end, STATE(7440), 1, sym_comment, - [225168] = 3, + [225264] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11910), 1, - sym_raw_string_end, + ACTIONS(581), 1, + ts_builtin_sym_end, STATE(7441), 1, sym_comment, - [225178] = 3, + [225274] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11912), 1, + ACTIONS(11917), 1, anon_sym_RBRACE, STATE(7442), 1, sym_comment, - [225188] = 3, + [225284] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11914), 1, - anon_sym_RBRACE, + ACTIONS(11919), 1, + anon_sym_DASH_GT, STATE(7443), 1, sym_comment, - [225198] = 3, + [225294] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11916), 1, - sym_raw_string_end, + ACTIONS(11921), 1, + sym_raw_string_content, STATE(7444), 1, sym_comment, - [225208] = 3, - ACTIONS(3), 1, + [225304] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4810), 1, - aux_sym_unquoted_token4, + ACTIONS(11923), 1, + anon_sym_RPAREN, STATE(7445), 1, sym_comment, - [225218] = 3, + [225314] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11918), 1, - anon_sym_RPAREN, + ACTIONS(11925), 1, + sym_raw_string_end, STATE(7446), 1, sym_comment, - [225228] = 3, + [225324] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11920), 1, - sym_raw_string_end, + ACTIONS(5130), 1, + anon_sym_LBRACK2, STATE(7447), 1, sym_comment, - [225238] = 3, + [225334] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11922), 1, - anon_sym_EQ, + ACTIONS(11927), 1, + anon_sym_RBRACE, STATE(7448), 1, sym_comment, - [225248] = 3, - ACTIONS(251), 1, + [225344] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11924), 1, - sym_raw_string_end, + ACTIONS(11929), 1, + aux_sym_cmd_identifier_token41, STATE(7449), 1, sym_comment, - [225258] = 3, + [225354] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11926), 1, - anon_sym_RPAREN, + ACTIONS(7158), 1, + aux_sym__unquoted_in_record_token2, STATE(7450), 1, sym_comment, - [225268] = 3, - ACTIONS(3), 1, + [225364] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11928), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(3420), 1, + anon_sym_COLON2, STATE(7451), 1, sym_comment, - [225278] = 3, + [225374] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11930), 1, - anon_sym_EQ, + ACTIONS(11931), 1, + anon_sym_RBRACE, STATE(7452), 1, sym_comment, - [225288] = 3, - ACTIONS(251), 1, + [225384] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(1745), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(4892), 1, + aux_sym_unquoted_token4, STATE(7453), 1, sym_comment, - [225298] = 3, + [225394] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11932), 1, - sym_raw_string_content, + ACTIONS(11933), 1, + anon_sym_EQ, STATE(7454), 1, sym_comment, - [225308] = 3, + [225404] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9946), 1, - aux_sym_unquoted_token2, + ACTIONS(11935), 1, + anon_sym_EQ, STATE(7455), 1, sym_comment, - [225318] = 3, + [225414] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11934), 1, - anon_sym_GT2, + ACTIONS(11937), 1, + anon_sym_RBRACK, STATE(7456), 1, sym_comment, - [225328] = 3, - ACTIONS(3), 1, + [225424] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9946), 1, - aux_sym_unquoted_token4, + ACTIONS(11939), 1, + anon_sym_GT2, STATE(7457), 1, sym_comment, - [225338] = 3, - ACTIONS(251), 1, + [225434] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11936), 1, - anon_sym_RBRACE, + ACTIONS(8745), 1, + aux_sym_unquoted_token4, STATE(7458), 1, sym_comment, - [225348] = 3, + [225444] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11938), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(2039), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7459), 1, sym_comment, - [225358] = 3, + [225454] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11940), 1, - sym_identifier, + ACTIONS(11941), 1, + sym_raw_string_end, STATE(7460), 1, sym_comment, - [225368] = 3, + [225464] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11942), 1, - sym_raw_string_content, + ACTIONS(11943), 1, + anon_sym_EQ, STATE(7461), 1, sym_comment, - [225378] = 3, + [225474] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11944), 1, - anon_sym_RBRACK, + ACTIONS(11945), 1, + anon_sym_RPAREN, STATE(7462), 1, sym_comment, - [225388] = 3, + [225484] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11946), 1, - anon_sym_RPAREN, + ACTIONS(7086), 1, + aux_sym_unquoted_token2, STATE(7463), 1, sym_comment, - [225398] = 3, + [225494] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5135), 1, - anon_sym_LBRACK2, + ACTIONS(11736), 1, + anon_sym_LBRACE, STATE(7464), 1, sym_comment, - [225408] = 3, + [225504] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11948), 1, - sym_raw_string_end, + ACTIONS(11947), 1, + anon_sym_LBRACE, STATE(7465), 1, sym_comment, - [225418] = 3, + [225514] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11950), 1, - sym_raw_string_end, + ACTIONS(11949), 1, + anon_sym_RPAREN, STATE(7466), 1, sym_comment, - [225428] = 3, + [225524] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11952), 1, - anon_sym_RBRACE, + ACTIONS(11951), 1, + sym_raw_string_end, STATE(7467), 1, sym_comment, - [225438] = 3, + [225534] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(3431), 1, - anon_sym_COLON2, + ACTIONS(11953), 1, + anon_sym_RBRACE, STATE(7468), 1, sym_comment, - [225448] = 3, + [225544] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11954), 1, - anon_sym_RBRACE, + ACTIONS(11955), 1, + anon_sym_LBRACE, STATE(7469), 1, sym_comment, - [225458] = 3, + [225554] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11956), 1, + ACTIONS(11957), 1, sym_raw_string_end, STATE(7470), 1, sym_comment, - [225468] = 3, + [225564] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8471), 1, - aux_sym_unquoted_token2, + ACTIONS(11959), 1, + anon_sym_RPAREN, STATE(7471), 1, sym_comment, - [225478] = 3, + [225574] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11958), 1, - anon_sym_RBRACK, + ACTIONS(11961), 1, + anon_sym_RPAREN, STATE(7472), 1, sym_comment, - [225488] = 3, + [225584] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11960), 1, - anon_sym_RPAREN, + ACTIONS(11963), 1, + anon_sym_RBRACK, STATE(7473), 1, sym_comment, - [225498] = 3, + [225594] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11962), 1, - anon_sym_RPAREN, + ACTIONS(4676), 1, + anon_sym_COLON2, STATE(7474), 1, sym_comment, - [225508] = 3, + [225604] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8920), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(11965), 1, + anon_sym_EQ_GT, STATE(7475), 1, sym_comment, - [225518] = 3, + [225614] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11964), 1, - anon_sym_RBRACE, + ACTIONS(11967), 1, + sym_raw_string_end, STATE(7476), 1, sym_comment, - [225528] = 3, + [225624] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11966), 1, - anon_sym_RBRACE, + ACTIONS(11969), 1, + sym_raw_string_end, STATE(7477), 1, sym_comment, - [225538] = 3, + [225634] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11968), 1, - anon_sym_RBRACE, + ACTIONS(11971), 1, + anon_sym_RPAREN, STATE(7478), 1, sym_comment, - [225548] = 3, - ACTIONS(3), 1, + [225644] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11970), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(8458), 1, + aux_sym_unquoted_token2, STATE(7479), 1, sym_comment, - [225558] = 3, + [225654] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11972), 1, + ACTIONS(11973), 1, sym_raw_string_end, STATE(7480), 1, sym_comment, - [225568] = 3, + [225664] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11974), 1, - sym_identifier, + ACTIONS(11975), 1, + anon_sym_RBRACK, STATE(7481), 1, sym_comment, - [225578] = 3, + [225674] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11976), 1, - anon_sym_EQ, + ACTIONS(11977), 1, + anon_sym_RPAREN, STATE(7482), 1, sym_comment, - [225588] = 3, + [225684] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11978), 1, - sym_raw_string_end, + ACTIONS(11979), 1, + anon_sym_RBRACE, STATE(7483), 1, sym_comment, - [225598] = 3, - ACTIONS(3), 1, + [225694] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2120), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(11981), 1, + anon_sym_GT2, STATE(7484), 1, sym_comment, - [225608] = 3, + [225704] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11980), 1, - anon_sym_EQ, + ACTIONS(11983), 1, + anon_sym_RBRACE, STATE(7485), 1, sym_comment, - [225618] = 3, + [225714] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11982), 1, - anon_sym_RPAREN, + ACTIONS(11985), 1, + anon_sym_RBRACE, STATE(7486), 1, sym_comment, - [225628] = 3, + [225724] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11984), 1, + ACTIONS(11987), 1, anon_sym_RPAREN, STATE(7487), 1, sym_comment, - [225638] = 3, - ACTIONS(3), 1, + [225734] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11986), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(11989), 1, + sym_raw_string_end, STATE(7488), 1, sym_comment, - [225648] = 3, + [225744] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11988), 1, - anon_sym_RBRACE, + ACTIONS(11991), 1, + anon_sym_LBRACE, STATE(7489), 1, sym_comment, - [225658] = 3, + [225754] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11990), 1, - sym_long_flag_identifier, + ACTIONS(11993), 1, + anon_sym_EQ, STATE(7490), 1, sym_comment, - [225668] = 3, + [225764] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11992), 1, - anon_sym_RBRACE, + ACTIONS(8745), 1, + aux_sym_unquoted_token2, STATE(7491), 1, sym_comment, - [225678] = 3, - ACTIONS(251), 1, + [225774] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(11994), 1, - anon_sym_RBRACE, + ACTIONS(7047), 1, + aux_sym_unquoted_token4, STATE(7492), 1, sym_comment, - [225688] = 3, + [225784] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11996), 1, - anon_sym_RPAREN, + ACTIONS(11995), 1, + anon_sym_RBRACK, STATE(7493), 1, sym_comment, - [225698] = 3, + [225794] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11998), 1, - anon_sym_EQ, + ACTIONS(11997), 1, + anon_sym_RPAREN, STATE(7494), 1, sym_comment, - [225708] = 3, + [225804] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(11999), 1, + anon_sym_RBRACE, STATE(7495), 1, sym_comment, - [225718] = 3, - ACTIONS(3), 1, + [225814] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2116), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(12001), 1, + anon_sym_RBRACE, STATE(7496), 1, sym_comment, - [225728] = 3, + [225824] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12000), 1, - anon_sym_RBRACK, + ACTIONS(12003), 1, + anon_sym_RPAREN, STATE(7497), 1, sym_comment, - [225738] = 3, + [225834] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12002), 1, + ACTIONS(12005), 1, anon_sym_RBRACE, STATE(7498), 1, sym_comment, - [225748] = 3, + [225844] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12004), 1, - anon_sym_RBRACE, + ACTIONS(12007), 1, + anon_sym_LBRACE, STATE(7499), 1, sym_comment, - [225758] = 3, + [225854] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(471), 1, - anon_sym_RPAREN2, + ACTIONS(12009), 1, + sym_raw_string_end, STATE(7500), 1, sym_comment, - [225768] = 3, + [225864] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12006), 1, - anon_sym_RBRACK, + ACTIONS(12011), 1, + sym_raw_string_end, STATE(7501), 1, sym_comment, - [225778] = 3, + [225874] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12008), 1, - anon_sym_RPAREN, + ACTIONS(12013), 1, + sym_raw_string_content, STATE(7502), 1, sym_comment, - [225788] = 3, + [225884] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12010), 1, - sym__table_head_separator, + ACTIONS(12015), 1, + anon_sym_RBRACE, STATE(7503), 1, sym_comment, - [225798] = 3, + [225894] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(5750), 1, - aux_sym__unquoted_in_list_token4, + ACTIONS(12017), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7504), 1, sym_comment, - [225808] = 3, + [225904] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12012), 1, - anon_sym_EQ, + ACTIONS(5074), 1, + anon_sym_LBRACK2, STATE(7505), 1, sym_comment, - [225818] = 3, + [225914] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12014), 1, - sym_raw_string_end, + ACTIONS(12019), 1, + anon_sym_RBRACK, STATE(7506), 1, sym_comment, - [225828] = 3, - ACTIONS(3), 1, + [225924] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12016), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12021), 1, + anon_sym_RBRACE, STATE(7507), 1, sym_comment, - [225838] = 3, + [225934] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12018), 1, + ACTIONS(12023), 1, anon_sym_RBRACE, STATE(7508), 1, sym_comment, - [225848] = 3, + [225944] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(509), 1, + ACTIONS(503), 1, anon_sym_RPAREN2, STATE(7509), 1, sym_comment, - [225858] = 3, + [225954] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12020), 1, - anon_sym_RBRACE, + ACTIONS(12025), 1, + anon_sym_LBRACE, STATE(7510), 1, sym_comment, - [225868] = 3, - ACTIONS(251), 1, + [225964] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12022), 1, - anon_sym_RBRACE, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token4, STATE(7511), 1, sym_comment, - [225878] = 3, + [225974] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12024), 1, + ACTIONS(12027), 1, sym_raw_string_end, STATE(7512), 1, sym_comment, - [225888] = 3, + [225984] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12026), 1, - sym_param_short_flag_identifier, + ACTIONS(12029), 1, + anon_sym_LBRACE, STATE(7513), 1, sym_comment, - [225898] = 3, - ACTIONS(3), 1, + [225994] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2116), 1, - aux_sym__unquoted_with_expr_token1, + ACTIONS(3398), 1, + anon_sym_COLON2, STATE(7514), 1, sym_comment, - [225908] = 3, + [226004] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12028), 1, - anon_sym_RBRACE, + ACTIONS(12031), 1, + anon_sym_LBRACE, STATE(7515), 1, sym_comment, - [225918] = 3, + [226014] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12030), 1, - anon_sym_RBRACE, + ACTIONS(12033), 1, + ts_builtin_sym_end, STATE(7516), 1, sym_comment, - [225928] = 3, + [226024] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12032), 1, - sym_identifier, + ACTIONS(1747), 1, + aux_sym__unquoted_in_record_token2, STATE(7517), 1, sym_comment, - [225938] = 3, + [226034] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12034), 1, - sym_raw_string_end, + ACTIONS(12035), 1, + sym_raw_string_content, STATE(7518), 1, sym_comment, - [225948] = 3, - ACTIONS(251), 1, + [226044] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12036), 1, - sym_raw_string_content, + ACTIONS(2039), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7519), 1, sym_comment, - [225958] = 3, + [226054] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12038), 1, - sym_raw_string_end, + ACTIONS(12037), 1, + anon_sym_RPAREN, STATE(7520), 1, sym_comment, - [225968] = 3, - ACTIONS(3), 1, + [226064] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2116), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12039), 1, + anon_sym_EQ_GT, STATE(7521), 1, sym_comment, - [225978] = 3, + [226074] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5071), 1, - anon_sym_LBRACK2, + ACTIONS(1803), 1, + aux_sym_unquoted_token2, STATE(7522), 1, sym_comment, - [225988] = 3, + [226084] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12040), 1, - anon_sym_RBRACK, + ACTIONS(12041), 1, + sym_raw_string_content, STATE(7523), 1, sym_comment, - [225998] = 3, + [226094] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12042), 1, - sym_raw_string_end, + ACTIONS(9920), 1, + aux_sym_unquoted_token2, STATE(7524), 1, sym_comment, - [226008] = 3, + [226104] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12044), 1, - anon_sym_EQ, + ACTIONS(7855), 1, + anon_sym_LBRACK2, STATE(7525), 1, sym_comment, - [226018] = 3, + [226114] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12046), 1, - anon_sym_RBRACE, + ACTIONS(11636), 1, + anon_sym_make, STATE(7526), 1, sym_comment, - [226028] = 3, - ACTIONS(3), 1, + [226124] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2204), 1, - aux_sym_unquoted_token4, + ACTIONS(9658), 1, + aux_sym_unquoted_token2, STATE(7527), 1, sym_comment, - [226038] = 3, + [226134] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1695), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(5379), 1, + anon_sym_LBRACK2, STATE(7528), 1, sym_comment, - [226048] = 3, + [226144] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12048), 1, - anon_sym_RBRACE, + ACTIONS(12043), 1, + sym_param_short_flag_identifier, STATE(7529), 1, sym_comment, - [226058] = 3, + [226154] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12050), 1, + ACTIONS(12045), 1, anon_sym_RBRACE, STATE(7530), 1, sym_comment, - [226068] = 3, + [226164] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12052), 1, - anon_sym_RBRACE, + ACTIONS(10353), 1, + anon_sym_LBRACK2, STATE(7531), 1, sym_comment, - [226078] = 3, + [226174] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12054), 1, - sym_raw_string_end, + ACTIONS(12047), 1, + anon_sym_LBRACE, STATE(7532), 1, sym_comment, - [226088] = 3, + [226184] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12056), 1, - sym_raw_string_end, + ACTIONS(12049), 1, + sym_long_flag_identifier, STATE(7533), 1, sym_comment, - [226098] = 3, + [226194] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12058), 1, + ACTIONS(12051), 1, anon_sym_RPAREN, STATE(7534), 1, sym_comment, - [226108] = 3, + [226204] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12060), 1, - sym_raw_string_end, + ACTIONS(12053), 1, + anon_sym_LBRACE, STATE(7535), 1, sym_comment, - [226118] = 3, + [226214] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8728), 1, - aux_sym_unquoted_token2, + ACTIONS(12055), 1, + anon_sym_RBRACE, STATE(7536), 1, sym_comment, - [226128] = 3, + [226224] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(7060), 1, - aux_sym_unquoted_token4, + ACTIONS(2035), 1, + aux_sym__unquoted_with_expr_token1, STATE(7537), 1, sym_comment, - [226138] = 3, + [226234] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12062), 1, - anon_sym_RBRACK, + ACTIONS(12057), 1, + sym_raw_string_content, STATE(7538), 1, sym_comment, - [226148] = 3, + [226244] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12064), 1, - anon_sym_RBRACE, + ACTIONS(5991), 1, + anon_sym_LBRACK2, STATE(7539), 1, sym_comment, - [226158] = 3, - ACTIONS(251), 1, + [226254] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12066), 1, - sym_raw_string_content, + ACTIONS(9920), 1, + aux_sym_unquoted_token4, STATE(7540), 1, sym_comment, - [226168] = 3, + [226264] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12068), 1, - anon_sym_COLON2, + ACTIONS(12059), 1, + anon_sym_RPAREN, STATE(7541), 1, sym_comment, - [226178] = 3, + [226274] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7716), 1, - anon_sym_LBRACK2, + ACTIONS(12061), 1, + aux_sym_env_var_token2, STATE(7542), 1, sym_comment, - [226188] = 3, + [226284] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12070), 1, - anon_sym_RPAREN, + ACTIONS(12063), 1, + anon_sym_RBRACE, STATE(7543), 1, sym_comment, - [226198] = 3, + [226294] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12072), 1, - anon_sym_RBRACE, + ACTIONS(8709), 1, + aux_sym__unquoted_in_record_token2, STATE(7544), 1, sym_comment, - [226208] = 3, + [226304] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12074), 1, + ACTIONS(12065), 1, anon_sym_RBRACE, STATE(7545), 1, sym_comment, - [226218] = 3, + [226314] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1875), 1, - aux_sym_unquoted_token2, + ACTIONS(12067), 1, + anon_sym_RPAREN, STATE(7546), 1, sym_comment, - [226228] = 3, + [226324] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12076), 1, - sym_raw_string_content, + ACTIONS(12069), 1, + anon_sym_RBRACK, STATE(7547), 1, sym_comment, - [226238] = 3, - ACTIONS(251), 1, + [226334] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12078), 1, - anon_sym_RPAREN, + ACTIONS(12071), 1, + aux_sym_cmd_identifier_token41, STATE(7548), 1, sym_comment, - [226248] = 3, - ACTIONS(3), 1, + [226344] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12080), 1, - aux_sym_shebang_token1, + ACTIONS(12073), 1, + sym_raw_string_end, STATE(7549), 1, sym_comment, - [226258] = 3, - ACTIONS(3), 1, + [226354] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12082), 1, - sym__space, + ACTIONS(7963), 1, + aux_sym_unquoted_token2, STATE(7550), 1, sym_comment, - [226268] = 3, + [226364] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11701), 1, - anon_sym_make, + ACTIONS(12075), 1, + anon_sym_RBRACK, STATE(7551), 1, sym_comment, - [226278] = 3, + [226374] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12084), 1, - anon_sym_RBRACE, + ACTIONS(12077), 1, + sym_raw_string_content, STATE(7552), 1, sym_comment, - [226288] = 3, + [226384] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12086), 1, - anon_sym_RPAREN, + ACTIONS(7649), 1, + anon_sym_LBRACK2, STATE(7553), 1, sym_comment, - [226298] = 3, + [226394] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12088), 1, - sym_raw_string_end, + ACTIONS(12079), 1, + anon_sym_RPAREN, STATE(7554), 1, sym_comment, - [226308] = 3, + [226404] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12090), 1, - sym_raw_string_content, + ACTIONS(12081), 1, + sym_identifier, STATE(7555), 1, sym_comment, - [226318] = 3, + [226414] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6000), 1, - anon_sym_LBRACK2, + ACTIONS(12083), 1, + anon_sym_RBRACE, STATE(7556), 1, sym_comment, - [226328] = 3, + [226424] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8108), 1, - aux_sym_unquoted_token2, + ACTIONS(12085), 1, + anon_sym_GT2, STATE(7557), 1, sym_comment, - [226338] = 3, + [226434] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12092), 1, - anon_sym_RPAREN, + ACTIONS(12087), 1, + anon_sym_EQ, STATE(7558), 1, sym_comment, - [226348] = 3, + [226444] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12094), 1, - anon_sym_LBRACE, + ACTIONS(12089), 1, + anon_sym_RPAREN2, STATE(7559), 1, sym_comment, - [226358] = 3, + [226454] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12096), 1, - anon_sym_RBRACK, + ACTIONS(12031), 1, + anon_sym_LBRACE, STATE(7560), 1, sym_comment, - [226368] = 3, + [226464] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10782), 1, - anon_sym_LBRACK2, + ACTIONS(12091), 1, + anon_sym_RBRACK, STATE(7561), 1, sym_comment, - [226378] = 3, + [226474] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12098), 1, - anon_sym_RPAREN, + ACTIONS(12093), 1, + anon_sym_RBRACK, STATE(7562), 1, sym_comment, - [226388] = 3, - ACTIONS(251), 1, + [226484] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12100), 1, - anon_sym_RPAREN, + ACTIONS(2039), 1, + aux_sym__unquoted_with_expr_token1, STATE(7563), 1, sym_comment, - [226398] = 3, + [226494] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12102), 1, - anon_sym_RBRACE, + ACTIONS(12095), 1, + anon_sym_RPAREN, STATE(7564), 1, sym_comment, - [226408] = 3, + [226504] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12104), 1, - anon_sym_EQ, + ACTIONS(12097), 1, + sym_raw_string_content, STATE(7565), 1, sym_comment, - [226418] = 3, + [226514] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12106), 1, - anon_sym_LBRACE, + ACTIONS(7834), 1, + anon_sym_LBRACK2, STATE(7566), 1, sym_comment, - [226428] = 3, + [226524] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5586), 1, - aux_sym_unquoted_token2, + ACTIONS(12099), 1, + anon_sym_RBRACK, STATE(7567), 1, sym_comment, - [226438] = 3, + [226534] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12108), 1, - anon_sym_RBRACK, + ACTIONS(12101), 1, + anon_sym_RPAREN, STATE(7568), 1, sym_comment, - [226448] = 3, + [226544] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12110), 1, - sym_raw_string_content, + ACTIONS(12103), 1, + anon_sym_RBRACE, STATE(7569), 1, sym_comment, - [226458] = 3, + [226554] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7668), 1, - anon_sym_LBRACK2, + ACTIONS(12105), 1, + sym_identifier, STATE(7570), 1, sym_comment, - [226468] = 3, + [226564] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12112), 1, - anon_sym_EQ_GT, + ACTIONS(12107), 1, + anon_sym_RBRACE, STATE(7571), 1, sym_comment, - [226478] = 3, + [226574] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12114), 1, - anon_sym_RBRACE, + ACTIONS(10866), 1, + anon_sym_LBRACE, STATE(7572), 1, sym_comment, - [226488] = 3, + [226584] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12116), 1, - sym_raw_string_end, + ACTIONS(12109), 1, + anon_sym_LBRACE, STATE(7573), 1, sym_comment, - [226498] = 3, - ACTIONS(251), 1, + [226594] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12118), 1, - sym_raw_string_end, + ACTIONS(12111), 1, + aux_sym__unquoted_with_expr_token1, STATE(7574), 1, sym_comment, - [226508] = 3, - ACTIONS(251), 1, + [226604] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12120), 1, - anon_sym_RPAREN, + ACTIONS(12113), 1, + aux_sym_shebang_token1, STATE(7575), 1, sym_comment, - [226518] = 3, + [226614] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12122), 1, - anon_sym_RBRACE, + ACTIONS(12115), 1, + anon_sym_RPAREN, STATE(7576), 1, sym_comment, - [226528] = 3, - ACTIONS(251), 1, + [226624] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(3433), 1, - anon_sym_COLON2, + ACTIONS(12117), 1, + aux_sym_cmd_identifier_token41, STATE(7577), 1, sym_comment, - [226538] = 3, - ACTIONS(3), 1, + [226634] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4640), 1, - aux_sym_unquoted_token4, + ACTIONS(12119), 1, + sym_raw_string_content, STATE(7578), 1, sym_comment, - [226548] = 3, + [226644] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12124), 1, - anon_sym_RBRACE, + ACTIONS(4969), 1, + anon_sym_LBRACK2, STATE(7579), 1, sym_comment, - [226558] = 3, + [226654] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12126), 1, - anon_sym_GT2, + ACTIONS(12121), 1, + anon_sym_RBRACE, STATE(7580), 1, sym_comment, - [226568] = 3, + [226664] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token2, + ACTIONS(12123), 1, + sym_raw_string_end, STATE(7581), 1, sym_comment, - [226578] = 3, + [226674] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12128), 1, - sym_raw_string_content, + ACTIONS(12125), 1, + anon_sym_RPAREN, STATE(7582), 1, sym_comment, - [226588] = 3, + [226684] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7920), 1, - anon_sym_LBRACK2, + ACTIONS(12127), 1, + anon_sym_RBRACE, STATE(7583), 1, sym_comment, - [226598] = 3, + [226694] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12130), 1, - anon_sym_RBRACK, + ACTIONS(12129), 1, + anon_sym_RBRACE, STATE(7584), 1, sym_comment, - [226608] = 3, + [226704] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11607), 1, - anon_sym_EQ_GT, + ACTIONS(5526), 1, + aux_sym__unquoted_in_list_token2, STATE(7585), 1, sym_comment, - [226618] = 3, + [226714] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12132), 1, + ACTIONS(12131), 1, anon_sym_RPAREN, STATE(7586), 1, sym_comment, - [226628] = 3, - ACTIONS(3), 1, + [226724] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4913), 1, - aux_sym_unquoted_token4, + ACTIONS(12133), 1, + anon_sym_RBRACE, STATE(7587), 1, sym_comment, - [226638] = 3, - ACTIONS(251), 1, + [226734] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12134), 1, - anon_sym_RBRACE, + ACTIONS(12135), 1, + aux_sym_cmd_identifier_token41, STATE(7588), 1, sym_comment, - [226648] = 3, + [226744] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12136), 1, - anon_sym_LBRACE, + ACTIONS(12137), 1, + anon_sym_RBRACE, STATE(7589), 1, sym_comment, - [226658] = 3, - ACTIONS(251), 1, + [226754] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12138), 1, - anon_sym_RBRACE, + ACTIONS(11664), 1, + aux_sym__record_key_token1, STATE(7590), 1, sym_comment, - [226668] = 3, + [226764] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12140), 1, - anon_sym_RPAREN, + ACTIONS(12139), 1, + sym_raw_string_content, STATE(7591), 1, sym_comment, - [226678] = 3, + [226774] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12142), 1, - anon_sym_RPAREN, + ACTIONS(6113), 1, + anon_sym_LBRACK2, STATE(7592), 1, sym_comment, - [226688] = 3, + [226784] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12144), 1, - anon_sym_RBRACE, + ACTIONS(12141), 1, + anon_sym_RPAREN, STATE(7593), 1, sym_comment, - [226698] = 3, + [226794] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12146), 1, - anon_sym_RPAREN2, + ACTIONS(12143), 1, + anon_sym_EQ, STATE(7594), 1, sym_comment, - [226708] = 3, + [226804] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12148), 1, - sym_raw_string_content, + ACTIONS(12145), 1, + sym_identifier, STATE(7595), 1, sym_comment, - [226718] = 3, - ACTIONS(251), 1, + [226814] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12150), 1, - anon_sym_RBRACE, + ACTIONS(12147), 1, + aux_sym_cmd_identifier_token41, STATE(7596), 1, sym_comment, - [226728] = 3, + [226824] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12152), 1, - anon_sym_RBRACE, + ACTIONS(1545), 1, + aux_sym_unquoted_token2, STATE(7597), 1, sym_comment, - [226738] = 3, + [226834] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10915), 1, - anon_sym_LBRACE, + ACTIONS(12149), 1, + anon_sym_RBRACE, STATE(7598), 1, sym_comment, - [226748] = 3, - ACTIONS(251), 1, + [226844] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12154), 1, - anon_sym_RPAREN, + ACTIONS(12151), 1, + sym__space, STATE(7599), 1, sym_comment, - [226758] = 3, + [226854] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12156), 1, + ACTIONS(12025), 1, anon_sym_LBRACE, STATE(7600), 1, sym_comment, - [226768] = 3, + [226864] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12158), 1, - sym_identifier, + ACTIONS(12153), 1, + sym_raw_string_end, STATE(7601), 1, sym_comment, - [226778] = 3, + [226874] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12156), 1, - anon_sym_LBRACE, + ACTIONS(12155), 1, + anon_sym_RBRACK, STATE(7602), 1, sym_comment, - [226788] = 3, + [226884] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12160), 1, - anon_sym_LBRACE, + ACTIONS(12157), 1, + anon_sym_RPAREN, STATE(7603), 1, sym_comment, - [226798] = 3, + [226894] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12162), 1, - anon_sym_RBRACE, + ACTIONS(12159), 1, + sym_raw_string_content, STATE(7604), 1, sym_comment, - [226808] = 3, + [226904] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11661), 1, - anon_sym_LBRACE, + ACTIONS(6035), 1, + anon_sym_LBRACK2, STATE(7605), 1, sym_comment, - [226818] = 3, + [226914] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4701), 1, - anon_sym_COLON2, + ACTIONS(12161), 1, + anon_sym_RBRACE, STATE(7606), 1, sym_comment, - [226828] = 3, + [226924] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(10776), 1, - anon_sym_LBRACE, + ACTIONS(12163), 1, + anon_sym_RBRACE, STATE(7607), 1, sym_comment, - [226838] = 3, + [226934] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12164), 1, - sym_raw_string_content, + ACTIONS(12165), 1, + sym_raw_string_end, STATE(7608), 1, sym_comment, - [226848] = 3, + [226944] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6137), 1, - anon_sym_LBRACK2, + ACTIONS(483), 1, + anon_sym_RPAREN2, STATE(7609), 1, sym_comment, - [226858] = 3, + [226954] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12166), 1, - anon_sym_RBRACE, + ACTIONS(12167), 1, + sym_raw_string_end, STATE(7610), 1, sym_comment, - [226868] = 3, + [226964] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5483), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(12169), 1, + anon_sym_RBRACE, STATE(7611), 1, sym_comment, - [226878] = 3, + [226974] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12168), 1, - sym__table_head_separator, + ACTIONS(12171), 1, + anon_sym_RBRACK, STATE(7612), 1, sym_comment, - [226888] = 3, + [226984] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12170), 1, - anon_sym_LBRACE, + ACTIONS(12173), 1, + anon_sym_RBRACE, STATE(7613), 1, sym_comment, - [226898] = 3, + [226994] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7060), 1, - aux_sym_unquoted_token2, + ACTIONS(12175), 1, + anon_sym_RBRACE, STATE(7614), 1, sym_comment, - [226908] = 3, + [227004] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12172), 1, - sym_raw_string_end, + ACTIONS(4892), 1, + aux_sym_unquoted_token2, STATE(7615), 1, sym_comment, - [226918] = 3, + [227014] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12174), 1, - anon_sym_RBRACK, + ACTIONS(12177), 1, + anon_sym_RBRACE, STATE(7616), 1, sym_comment, - [226928] = 3, + [227024] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12176), 1, - anon_sym_RPAREN, + ACTIONS(12179), 1, + sym_raw_string_content, STATE(7617), 1, sym_comment, - [226938] = 3, + [227034] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12178), 1, - anon_sym_RBRACE, + ACTIONS(9561), 1, + anon_sym_LBRACK2, STATE(7618), 1, sym_comment, - [226948] = 3, - ACTIONS(3), 1, + [227044] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12180), 1, - sym__space, + ACTIONS(12181), 1, + anon_sym_RPAREN, STATE(7619), 1, sym_comment, - [226958] = 3, - ACTIONS(251), 1, + [227054] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12182), 1, - anon_sym_RBRACE, + ACTIONS(12183), 1, + aux_sym_cmd_identifier_token41, STATE(7620), 1, sym_comment, - [226968] = 3, + [227064] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12184), 1, - sym_raw_string_content, + ACTIONS(11622), 1, + anon_sym_EQ_GT, STATE(7621), 1, sym_comment, - [226978] = 3, + [227074] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(6064), 1, - anon_sym_LBRACK2, + ACTIONS(1591), 1, + aux_sym_unquoted_token2, STATE(7622), 1, sym_comment, - [226988] = 3, + [227084] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12186), 1, - anon_sym_GT2, + ACTIONS(12185), 1, + sym_raw_string_end, STATE(7623), 1, sym_comment, - [226998] = 3, - ACTIONS(3), 1, + [227094] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym_unquoted_token4, + ACTIONS(12187), 1, + anon_sym_RBRACK, STATE(7624), 1, sym_comment, - [227008] = 3, + [227104] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12188), 1, - anon_sym_RBRACK, + ACTIONS(12189), 1, + anon_sym_GT2, STATE(7625), 1, sym_comment, - [227018] = 3, + [227114] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12190), 1, - anon_sym_RBRACK, + ACTIONS(12191), 1, + sym_identifier, STATE(7626), 1, sym_comment, - [227028] = 3, + [227124] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12192), 1, - anon_sym_RBRACE, + ACTIONS(12193), 1, + anon_sym_RPAREN, STATE(7627), 1, sym_comment, - [227038] = 3, + [227134] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1555), 1, - aux_sym_unquoted_token2, + ACTIONS(12195), 1, + anon_sym_COLON2, STATE(7628), 1, sym_comment, - [227048] = 3, - ACTIONS(251), 1, + [227144] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12194), 1, - anon_sym_RPAREN, + ACTIONS(2035), 1, + aux_sym__unquoted_in_record_with_expr_token1, STATE(7629), 1, sym_comment, - [227058] = 3, - ACTIONS(3), 1, + [227154] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12196), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12197), 1, + sym_raw_string_content, STATE(7630), 1, sym_comment, - [227068] = 3, + [227164] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12198), 1, - anon_sym_GT2, + ACTIONS(9193), 1, + anon_sym_LBRACK2, STATE(7631), 1, sym_comment, - [227078] = 3, + [227174] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(1631), 1, - aux_sym_unquoted_token2, + ACTIONS(12199), 1, + ts_builtin_sym_end, STATE(7632), 1, sym_comment, - [227088] = 3, + [227184] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12200), 1, - anon_sym_RPAREN, + ACTIONS(12201), 1, + anon_sym_RBRACE, STATE(7633), 1, sym_comment, - [227098] = 3, + [227194] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12202), 1, - sym_raw_string_content, + ACTIONS(10988), 1, + anon_sym_LBRACE, STATE(7634), 1, sym_comment, - [227108] = 3, + [227204] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9663), 1, - anon_sym_LBRACK2, + ACTIONS(12203), 1, + anon_sym_RBRACE, STATE(7635), 1, sym_comment, - [227118] = 3, + [227214] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12204), 1, - sym_raw_string_end, + ACTIONS(12205), 1, + anon_sym_LBRACE, STATE(7636), 1, sym_comment, - [227128] = 3, + [227224] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12206), 1, - anon_sym_RPAREN, + ACTIONS(12207), 1, + anon_sym_LBRACE, STATE(7637), 1, sym_comment, - [227138] = 3, + [227234] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12208), 1, - anon_sym_RBRACK, + ACTIONS(12209), 1, + sym_raw_string_end, STATE(7638), 1, sym_comment, - [227148] = 3, + [227244] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12210), 1, + ACTIONS(12211), 1, anon_sym_RBRACE, STATE(7639), 1, sym_comment, - [227158] = 3, + [227254] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12212), 1, - anon_sym_EQ, + ACTIONS(12213), 1, + anon_sym_RBRACE, STATE(7640), 1, sym_comment, - [227168] = 3, - ACTIONS(3), 1, + [227264] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12214), 1, - aux_sym_shebang_token1, + ACTIONS(4062), 1, + aux_sym_unquoted_token2, STATE(7641), 1, sym_comment, - [227178] = 3, - ACTIONS(251), 1, + [227274] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12216), 1, - anon_sym_DASH_GT, + ACTIONS(4588), 1, + aux_sym_unquoted_token4, STATE(7642), 1, sym_comment, - [227188] = 3, + [227284] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11828), 1, - anon_sym_LBRACE, + ACTIONS(12215), 1, + sym_raw_string_content, STATE(7643), 1, sym_comment, - [227198] = 3, + [227294] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12218), 1, - anon_sym_GT2, + ACTIONS(2401), 1, + anon_sym_LBRACK2, STATE(7644), 1, sym_comment, - [227208] = 3, + [227304] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12220), 1, - anon_sym_LBRACE, + ACTIONS(12217), 1, + anon_sym_RBRACK, STATE(7645), 1, sym_comment, - [227218] = 3, + [227314] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(8757), 1, - aux_sym__unquoted_in_list_token2, + ACTIONS(4754), 1, + aux_sym_unquoted_token2, STATE(7646), 1, sym_comment, - [227228] = 3, + [227324] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12222), 1, - sym_raw_string_content, + ACTIONS(12219), 1, + anon_sym_RPAREN, STATE(7647), 1, sym_comment, - [227238] = 3, - ACTIONS(251), 1, + [227334] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(9299), 1, - anon_sym_LBRACK2, + ACTIONS(4754), 1, + aux_sym_unquoted_token4, STATE(7648), 1, sym_comment, - [227248] = 3, + [227344] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12224), 1, - anon_sym_LBRACE, + ACTIONS(12221), 1, + anon_sym_RBRACE, STATE(7649), 1, sym_comment, - [227258] = 3, + [227354] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12226), 1, - sym_raw_string_end, + ACTIONS(12223), 1, + anon_sym_RPAREN, STATE(7650), 1, sym_comment, - [227268] = 3, + [227364] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12228), 1, + ACTIONS(12225), 1, anon_sym_RBRACE, STATE(7651), 1, sym_comment, - [227278] = 3, + [227374] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12230), 1, - anon_sym_RBRACE, + ACTIONS(12227), 1, + sym_raw_string_end, STATE(7652), 1, sym_comment, - [227288] = 3, + [227384] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12232), 1, - sym_raw_string_end, + ACTIONS(12229), 1, + sym_raw_string_content, STATE(7653), 1, sym_comment, - [227298] = 3, + [227394] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12234), 1, - anon_sym_RBRACE, + ACTIONS(2282), 1, + anon_sym_LBRACK2, STATE(7654), 1, sym_comment, - [227308] = 3, + [227404] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12236), 1, - anon_sym_RBRACE, + ACTIONS(12231), 1, + anon_sym_RBRACK, STATE(7655), 1, sym_comment, - [227318] = 3, + [227414] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12238), 1, + ACTIONS(12233), 1, anon_sym_RBRACE, STATE(7656), 1, sym_comment, - [227328] = 3, + [227424] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12240), 1, - anon_sym_RBRACE, + ACTIONS(12235), 1, + anon_sym_make, STATE(7657), 1, sym_comment, - [227338] = 3, + [227434] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12242), 1, - anon_sym_COLON2, + ACTIONS(12237), 1, + sym_identifier, STATE(7658), 1, sym_comment, - [227348] = 3, - ACTIONS(251), 1, + [227444] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12244), 1, - sym_raw_string_end, + ACTIONS(12239), 1, + aux_sym_cmd_identifier_token41, STATE(7659), 1, sym_comment, - [227358] = 3, + [227454] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12246), 1, - sym_raw_string_content, + ACTIONS(12241), 1, + anon_sym_RBRACE, STATE(7660), 1, sym_comment, - [227368] = 3, + [227464] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2401), 1, - anon_sym_LBRACK2, + ACTIONS(12243), 1, + anon_sym_RPAREN, STATE(7661), 1, sym_comment, - [227378] = 3, + [227474] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12248), 1, - anon_sym_EQ, + ACTIONS(5741), 1, + aux_sym__unquoted_in_list_token2, STATE(7662), 1, sym_comment, - [227388] = 3, + [227484] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12250), 1, - sym_raw_string_end, + ACTIONS(12245), 1, + sym_raw_string_content, STATE(7663), 1, sym_comment, - [227398] = 3, + [227494] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12252), 1, - anon_sym_RBRACE, + ACTIONS(491), 1, + anon_sym_RPAREN2, STATE(7664), 1, sym_comment, - [227408] = 3, + [227504] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(517), 1, - ts_builtin_sym_end, + ACTIONS(12247), 1, + sym_raw_string_end, STATE(7665), 1, sym_comment, - [227418] = 3, + [227514] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7139), 1, - aux_sym_unquoted_token2, + ACTIONS(12249), 1, + anon_sym_RBRACK, STATE(7666), 1, sym_comment, - [227428] = 3, - ACTIONS(251), 1, + [227524] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12254), 1, - sym_raw_string_end, + ACTIONS(2198), 1, + aux_sym_unquoted_token4, STATE(7667), 1, sym_comment, - [227438] = 3, + [227534] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12256), 1, - anon_sym_RBRACK, + ACTIONS(12251), 1, + sym_identifier, STATE(7668), 1, sym_comment, - [227448] = 3, + [227544] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(7186), 1, - aux_sym__unquoted_in_record_token2, + ACTIONS(12253), 1, + anon_sym_RBRACE, STATE(7669), 1, sym_comment, - [227458] = 3, + [227554] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12258), 1, - sym_raw_string_content, + ACTIONS(12255), 1, + anon_sym_RBRACE, STATE(7670), 1, sym_comment, - [227468] = 3, + [227564] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2320), 1, - anon_sym_LBRACK2, + ACTIONS(12257), 1, + anon_sym_RPAREN, STATE(7671), 1, sym_comment, - [227478] = 3, + [227574] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12260), 1, - anon_sym_RPAREN, + ACTIONS(12259), 1, + sym_raw_string_content, STATE(7672), 1, sym_comment, - [227488] = 3, + [227584] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12262), 1, - anon_sym_LBRACE, + ACTIONS(12261), 1, + anon_sym_RBRACE, STATE(7673), 1, sym_comment, - [227498] = 3, + [227594] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12264), 1, + ACTIONS(12263), 1, anon_sym_RPAREN, STATE(7674), 1, sym_comment, - [227508] = 3, - ACTIONS(251), 1, + [227604] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12266), 1, - anon_sym_GT2, + ACTIONS(12265), 1, + aux_sym_cmd_identifier_token41, STATE(7675), 1, sym_comment, - [227518] = 3, + [227614] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(9701), 1, + ACTIONS(2186), 1, aux_sym_unquoted_token2, STATE(7676), 1, sym_comment, - [227528] = 3, - ACTIONS(251), 1, + [227624] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12268), 1, - anon_sym_RPAREN2, + ACTIONS(2035), 1, + aux_sym__unquoted_in_list_with_expr_token1, STATE(7677), 1, sym_comment, - [227538] = 3, - ACTIONS(251), 1, + [227634] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12270), 1, - anon_sym_RBRACE, + ACTIONS(12267), 1, + aux_sym_cmd_identifier_token41, STATE(7678), 1, sym_comment, - [227548] = 3, - ACTIONS(3), 1, + [227644] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12272), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12269), 1, + anon_sym_RBRACE, STATE(7679), 1, sym_comment, - [227558] = 3, + [227654] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12274), 1, - sym_raw_string_content, + ACTIONS(12271), 1, + anon_sym_RBRACE, STATE(7680), 1, sym_comment, - [227568] = 3, + [227664] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12276), 1, - anon_sym_EQ, + ACTIONS(12273), 1, + sym_raw_string_content, STATE(7681), 1, sym_comment, - [227578] = 3, + [227674] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12278), 1, - sym_raw_string_end, + ACTIONS(12275), 1, + sym_raw_string_content, STATE(7682), 1, sym_comment, - [227588] = 3, - ACTIONS(3), 1, + [227684] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12280), 1, - aux_sym_comment_token1, + ACTIONS(12277), 1, + sym_raw_string_content, STATE(7683), 1, sym_comment, - [227598] = 3, + [227694] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12282), 1, - anon_sym_RPAREN, + ACTIONS(12279), 1, + sym_raw_string_content, STATE(7684), 1, sym_comment, - [227608] = 3, + [227704] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12284), 1, - anon_sym_EQ, + ACTIONS(12281), 1, + sym_raw_string_content, STATE(7685), 1, sym_comment, - [227618] = 3, + [227714] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4422), 1, - aux_sym_unquoted_token2, + ACTIONS(12283), 1, + sym_raw_string_content, STATE(7686), 1, sym_comment, - [227628] = 3, - ACTIONS(3), 1, + [227724] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12286), 1, - aux_sym__unquoted_in_list_with_expr_token1, + ACTIONS(12285), 1, + sym_raw_string_content, STATE(7687), 1, sym_comment, - [227638] = 3, - ACTIONS(3), 1, + [227734] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4613), 1, - aux_sym_unquoted_token4, + ACTIONS(12287), 1, + sym_raw_string_content, STATE(7688), 1, sym_comment, - [227648] = 3, + [227744] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12288), 1, + ACTIONS(12289), 1, sym_raw_string_content, STATE(7689), 1, sym_comment, - [227658] = 3, + [227754] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12290), 1, - anon_sym_RBRACK, + ACTIONS(12291), 1, + sym_raw_string_content, STATE(7690), 1, sym_comment, - [227668] = 3, + [227764] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12292), 1, - anon_sym_RPAREN, + ACTIONS(12293), 1, + sym_raw_string_content, STATE(7691), 1, sym_comment, - [227678] = 3, + [227774] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12294), 1, - anon_sym_RBRACE, + ACTIONS(12295), 1, + sym_raw_string_content, STATE(7692), 1, sym_comment, - [227688] = 3, + [227784] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12296), 1, - anon_sym_RBRACE, + ACTIONS(12297), 1, + sym_raw_string_content, STATE(7693), 1, sym_comment, - [227698] = 3, - ACTIONS(3), 1, + [227794] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12298), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12299), 1, + sym_raw_string_content, STATE(7694), 1, sym_comment, - [227708] = 3, + [227804] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12300), 1, - sym_raw_string_end, + ACTIONS(12301), 1, + sym_raw_string_content, STATE(7695), 1, sym_comment, - [227718] = 3, - ACTIONS(3), 1, + [227814] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12302), 1, - aux_sym_cmd_identifier_token41, + ACTIONS(12303), 1, + sym_raw_string_content, STATE(7696), 1, sym_comment, - [227728] = 3, + [227824] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12304), 1, - anon_sym_RBRACE, + ACTIONS(12305), 1, + sym_raw_string_content, STATE(7697), 1, sym_comment, - [227738] = 3, + [227834] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12306), 1, + ACTIONS(12307), 1, sym_raw_string_content, STATE(7698), 1, sym_comment, - [227748] = 3, + [227844] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12308), 1, + ACTIONS(12309), 1, sym_raw_string_content, STATE(7699), 1, sym_comment, - [227758] = 3, + [227854] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12310), 1, + ACTIONS(12311), 1, sym_raw_string_content, STATE(7700), 1, sym_comment, - [227768] = 3, + [227864] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12312), 1, + ACTIONS(12313), 1, sym_raw_string_content, STATE(7701), 1, sym_comment, - [227778] = 3, + [227874] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12314), 1, - sym_raw_string_content, + ACTIONS(12315), 1, + anon_sym_RPAREN, STATE(7702), 1, sym_comment, - [227788] = 3, + [227884] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12316), 1, - sym_raw_string_content, + ACTIONS(11662), 1, + anon_sym_LPAREN2, STATE(7703), 1, sym_comment, - [227798] = 3, - ACTIONS(251), 1, + [227894] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12318), 1, - sym_raw_string_content, + ACTIONS(12317), 1, + aux_sym_cmd_identifier_token41, STATE(7704), 1, sym_comment, - [227808] = 3, + [227904] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12320), 1, - sym_raw_string_content, + ACTIONS(12319), 1, + sym_raw_string_end, STATE(7705), 1, sym_comment, - [227818] = 3, + [227914] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12322), 1, - sym_raw_string_content, + ACTIONS(12321), 1, + anon_sym_EQ, STATE(7706), 1, sym_comment, - [227828] = 3, + [227924] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12324), 1, - sym_raw_string_content, + ACTIONS(12323), 1, + anon_sym_RBRACE, STATE(7707), 1, sym_comment, - [227838] = 3, + [227934] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12326), 1, - sym_raw_string_content, + ACTIONS(12325), 1, + sym_raw_string_end, STATE(7708), 1, sym_comment, - [227848] = 3, + [227944] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12328), 1, - sym_raw_string_content, + ACTIONS(507), 1, + anon_sym_RPAREN2, STATE(7709), 1, sym_comment, - [227858] = 3, + [227954] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12330), 1, - sym_raw_string_content, + ACTIONS(12327), 1, + anon_sym_RPAREN, STATE(7710), 1, sym_comment, - [227868] = 3, + [227964] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12332), 1, - sym_raw_string_content, + ACTIONS(12329), 1, + anon_sym_RBRACE, STATE(7711), 1, sym_comment, - [227878] = 3, + [227974] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12334), 1, - sym_raw_string_content, + ACTIONS(12331), 1, + anon_sym_in2, STATE(7712), 1, sym_comment, - [227888] = 3, + [227984] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12336), 1, - sym_raw_string_content, + ACTIONS(12333), 1, + anon_sym_RBRACE, STATE(7713), 1, sym_comment, - [227898] = 3, + [227994] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12338), 1, - sym_raw_string_content, + ACTIONS(12335), 1, + anon_sym_EQ, STATE(7714), 1, sym_comment, - [227908] = 3, + [228004] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12340), 1, - sym_raw_string_content, + ACTIONS(4534), 1, + aux_sym_unquoted_token2, STATE(7715), 1, sym_comment, - [227918] = 3, - ACTIONS(251), 1, + [228014] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12342), 1, - sym_raw_string_content, + ACTIONS(5565), 1, + aux_sym_unquoted_token4, STATE(7716), 1, sym_comment, - [227928] = 3, + [228024] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12344), 1, - sym_raw_string_content, + ACTIONS(12337), 1, + anon_sym_RPAREN2, STATE(7717), 1, sym_comment, - [227938] = 3, + [228034] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12346), 1, - sym_raw_string_content, + ACTIONS(12339), 1, + sym_identifier, STATE(7718), 1, sym_comment, - [227948] = 3, + [228044] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12348), 1, - sym_raw_string_content, + ACTIONS(12341), 1, + anon_sym_RBRACK, STATE(7719), 1, sym_comment, - [227958] = 3, + [228054] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12350), 1, - anon_sym_RPAREN, + ACTIONS(12343), 1, + anon_sym_RBRACE, STATE(7720), 1, sym_comment, - [227968] = 3, + [228064] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(11693), 1, - anon_sym_LPAREN2, + ACTIONS(12345), 1, + anon_sym_RPAREN, STATE(7721), 1, sym_comment, - [227978] = 3, + [228074] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12352), 1, - anon_sym_RBRACK, + ACTIONS(12347), 1, + sym_raw_string_end, STATE(7722), 1, sym_comment, - [227988] = 3, + [228084] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12354), 1, - sym_raw_string_end, + ACTIONS(12349), 1, + anon_sym_RBRACE, STATE(7723), 1, sym_comment, - [227998] = 3, + [228094] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12356), 1, - sym_identifier, + ACTIONS(12351), 1, + anon_sym_RBRACE, STATE(7724), 1, sym_comment, - [228008] = 3, + [228104] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12358), 1, - anon_sym_RBRACK, + ACTIONS(12353), 1, + anon_sym_EQ, STATE(7725), 1, sym_comment, - [228018] = 3, + [228114] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12360), 1, - anon_sym_RBRACK, + ACTIONS(12355), 1, + anon_sym_LPAREN2, STATE(7726), 1, sym_comment, - [228028] = 3, + [228124] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12362), 1, - anon_sym_RPAREN, + ACTIONS(12357), 1, + anon_sym_RBRACK, STATE(7727), 1, sym_comment, - [228038] = 3, + [228134] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12364), 1, - anon_sym_RBRACE, + ACTIONS(12359), 1, + anon_sym_GT2, STATE(7728), 1, sym_comment, - [228048] = 3, + [228144] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12366), 1, + ACTIONS(12361), 1, anon_sym_RBRACK, STATE(7729), 1, sym_comment, - [228058] = 3, - ACTIONS(251), 1, + [228154] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12368), 1, - anon_sym_in2, + ACTIONS(2210), 1, + aux_sym_unquoted_token4, STATE(7730), 1, sym_comment, - [228068] = 3, - ACTIONS(251), 1, + [228164] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12370), 1, - anon_sym_LBRACE, + ACTIONS(12363), 1, + aux_sym_cmd_identifier_token41, STATE(7731), 1, sym_comment, - [228078] = 3, + [228174] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12372), 1, + ACTIONS(12365), 1, anon_sym_RPAREN, STATE(7732), 1, sym_comment, - [228088] = 3, - ACTIONS(3), 1, + [228184] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2120), 1, - aux_sym__unquoted_in_record_with_expr_token1, + ACTIONS(12367), 1, + anon_sym_RBRACE, STATE(7733), 1, sym_comment, - [228098] = 3, - ACTIONS(3), 1, + [228194] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(2243), 1, - aux_sym_unquoted_token4, + ACTIONS(12369), 1, + anon_sym_RPAREN, STATE(7734), 1, sym_comment, - [228108] = 3, + [228204] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12374), 1, + ACTIONS(12371), 1, sym_raw_string_end, STATE(7735), 1, sym_comment, - [228118] = 3, + [228214] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12376), 1, - anon_sym_RPAREN, + ACTIONS(12373), 1, + sym_raw_string_content, STATE(7736), 1, sym_comment, - [228128] = 3, + [228224] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12378), 1, - anon_sym_EQ_GT, + ACTIONS(12375), 1, + anon_sym_LBRACE, STATE(7737), 1, sym_comment, - [228138] = 3, + [228234] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(8728), 1, - aux_sym_unquoted_token4, + ACTIONS(12377), 1, + aux_sym_cmd_identifier_token41, STATE(7738), 1, sym_comment, - [228148] = 3, + [228244] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12380), 1, - ts_builtin_sym_end, + ACTIONS(12379), 1, + anon_sym_RPAREN, STATE(7739), 1, sym_comment, - [228158] = 3, + [228254] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(4543), 1, - aux_sym_unquoted_token2, + ACTIONS(12381), 1, + anon_sym_RBRACE, STATE(7740), 1, sym_comment, - [228168] = 3, - ACTIONS(251), 1, + [228264] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(475), 1, - anon_sym_RPAREN2, + ACTIONS(12383), 1, + aux_sym_shebang_token1, STATE(7741), 1, sym_comment, - [228178] = 3, - ACTIONS(3), 1, + [228274] = 3, + ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(5586), 1, - aux_sym_unquoted_token4, + ACTIONS(12385), 1, + anon_sym_RBRACE, STATE(7742), 1, sym_comment, - [228188] = 3, + [228284] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12382), 1, - anon_sym_RBRACK, + ACTIONS(12387), 1, + anon_sym_DASH_GT, STATE(7743), 1, sym_comment, - [228198] = 3, + [228294] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12384), 1, - sym_identifier, + ACTIONS(495), 1, + anon_sym_RPAREN2, STATE(7744), 1, sym_comment, - [228208] = 3, - ACTIONS(251), 1, + [228304] = 3, + ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12386), 1, - anon_sym_RBRACK, + ACTIONS(9658), 1, + aux_sym_unquoted_token4, STATE(7745), 1, sym_comment, - [228218] = 3, + [228314] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12388), 1, - anon_sym_RPAREN, + ACTIONS(12389), 1, + anon_sym_EQ, STATE(7746), 1, sym_comment, - [228228] = 3, + [228324] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12390), 1, - anon_sym_RPAREN, + ACTIONS(12391), 1, + anon_sym_RBRACE, STATE(7747), 1, sym_comment, - [228238] = 3, + [228334] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12392), 1, - anon_sym_RBRACE, + ACTIONS(12393), 1, + anon_sym_COLON2, STATE(7748), 1, sym_comment, - [228248] = 3, + [228344] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12394), 1, + ACTIONS(12395), 1, anon_sym_RBRACE, STATE(7749), 1, sym_comment, - [228258] = 3, + [228354] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12396), 1, - ts_builtin_sym_end, + ACTIONS(12397), 1, + anon_sym_RBRACE, STATE(7750), 1, sym_comment, - [228268] = 3, + [228364] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12398), 1, - anon_sym_EQ, + ACTIONS(12399), 1, + anon_sym_RPAREN, STATE(7751), 1, sym_comment, - [228278] = 3, + [228374] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12400), 1, - anon_sym_in2, + ACTIONS(12401), 1, + anon_sym_RPAREN2, STATE(7752), 1, sym_comment, - [228288] = 3, + [228384] = 3, ACTIONS(3), 1, anon_sym_POUND, - ACTIONS(12402), 1, + ACTIONS(12403), 1, aux_sym_cmd_identifier_token41, STATE(7753), 1, sym_comment, - [228298] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12404), 1, - anon_sym_RBRACE, - STATE(7754), 1, - sym_comment, - [228308] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12406), 1, - aux_sym_cmd_identifier_token41, - STATE(7755), 1, - sym_comment, - [228318] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(5414), 1, - anon_sym_LBRACK2, - STATE(7756), 1, - sym_comment, - [228328] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12408), 1, - anon_sym_RBRACE, - STATE(7757), 1, - sym_comment, - [228338] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12410), 1, - anon_sym_RPAREN, - STATE(7758), 1, - sym_comment, - [228348] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12412), 1, - anon_sym_RBRACE, - STATE(7759), 1, - sym_comment, - [228358] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12414), 1, - anon_sym_RBRACE, - STATE(7760), 1, - sym_comment, - [228368] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12416), 1, - anon_sym_RBRACE, - STATE(7761), 1, - sym_comment, - [228378] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12418), 1, - anon_sym_RBRACE, - STATE(7762), 1, - sym_comment, - [228388] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12420), 1, - anon_sym_RBRACE, - STATE(7763), 1, - sym_comment, - [228398] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12422), 1, - anon_sym_RPAREN, - STATE(7764), 1, - sym_comment, - [228408] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12424), 1, - anon_sym_RBRACE, - STATE(7765), 1, - sym_comment, - [228418] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12426), 1, - anon_sym_RBRACE, - STATE(7766), 1, - sym_comment, - [228428] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12428), 1, - anon_sym_RPAREN, - STATE(7767), 1, - sym_comment, - [228438] = 3, + [228394] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12430), 1, + ACTIONS(12405), 1, anon_sym_EQ, - STATE(7768), 1, - sym_comment, - [228448] = 3, - ACTIONS(3), 1, - anon_sym_POUND, - ACTIONS(12432), 1, - aux_sym_cmd_identifier_token41, - STATE(7769), 1, - sym_comment, - [228458] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12434), 1, - sym_raw_string_end, - STATE(7770), 1, - sym_comment, - [228468] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(513), 1, - anon_sym_RPAREN2, - STATE(7771), 1, + STATE(7754), 1, sym_comment, - [228478] = 3, + [228404] = 3, ACTIONS(251), 1, anon_sym_POUND, - ACTIONS(12436), 1, + ACTIONS(12407), 1, anon_sym_RBRACE, - STATE(7772), 1, - sym_comment, - [228488] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(12438), 1, - anon_sym_RPAREN, - STATE(7773), 1, - sym_comment, - [228498] = 3, - ACTIONS(251), 1, - anon_sym_POUND, - ACTIONS(4949), 1, - anon_sym_LBRACK2, - STATE(7774), 1, + STATE(7755), 1, sym_comment, - [228508] = 1, - ACTIONS(12440), 1, + [228414] = 1, + ACTIONS(12409), 1, ts_builtin_sym_end, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(1705)] = 0, - [SMALL_STATE(1706)] = 73, - [SMALL_STATE(1707)] = 148, - [SMALL_STATE(1708)] = 223, - [SMALL_STATE(1709)] = 296, - [SMALL_STATE(1710)] = 403, - [SMALL_STATE(1711)] = 476, - [SMALL_STATE(1712)] = 549, - [SMALL_STATE(1713)] = 622, - [SMALL_STATE(1714)] = 725, - [SMALL_STATE(1715)] = 798, - [SMALL_STATE(1716)] = 905, - [SMALL_STATE(1717)] = 978, - [SMALL_STATE(1718)] = 1051, - [SMALL_STATE(1719)] = 1124, - [SMALL_STATE(1720)] = 1197, - [SMALL_STATE(1721)] = 1270, - [SMALL_STATE(1722)] = 1373, - [SMALL_STATE(1723)] = 1446, - [SMALL_STATE(1724)] = 1519, - [SMALL_STATE(1725)] = 1592, - [SMALL_STATE(1726)] = 1667, - [SMALL_STATE(1727)] = 1748, - [SMALL_STATE(1728)] = 1821, - [SMALL_STATE(1729)] = 1894, - [SMALL_STATE(1730)] = 1975, - [SMALL_STATE(1731)] = 2048, - [SMALL_STATE(1732)] = 2121, - [SMALL_STATE(1733)] = 2194, - [SMALL_STATE(1734)] = 2267, - [SMALL_STATE(1735)] = 2340, - [SMALL_STATE(1736)] = 2413, - [SMALL_STATE(1737)] = 2486, - [SMALL_STATE(1738)] = 2559, - [SMALL_STATE(1739)] = 2632, - [SMALL_STATE(1740)] = 2705, - [SMALL_STATE(1741)] = 2778, - [SMALL_STATE(1742)] = 2851, - [SMALL_STATE(1743)] = 2924, - [SMALL_STATE(1744)] = 2997, - [SMALL_STATE(1745)] = 3070, - [SMALL_STATE(1746)] = 3143, - [SMALL_STATE(1747)] = 3216, - [SMALL_STATE(1748)] = 3289, - [SMALL_STATE(1749)] = 3362, - [SMALL_STATE(1750)] = 3435, - [SMALL_STATE(1751)] = 3508, - [SMALL_STATE(1752)] = 3581, - [SMALL_STATE(1753)] = 3654, - [SMALL_STATE(1754)] = 3727, - [SMALL_STATE(1755)] = 3800, - [SMALL_STATE(1756)] = 3873, - [SMALL_STATE(1757)] = 3946, - [SMALL_STATE(1758)] = 4019, - [SMALL_STATE(1759)] = 4092, - [SMALL_STATE(1760)] = 4165, - [SMALL_STATE(1761)] = 4238, - [SMALL_STATE(1762)] = 4311, - [SMALL_STATE(1763)] = 4384, - [SMALL_STATE(1764)] = 4457, - [SMALL_STATE(1765)] = 4530, - [SMALL_STATE(1766)] = 4605, - [SMALL_STATE(1767)] = 4678, - [SMALL_STATE(1768)] = 4751, - [SMALL_STATE(1769)] = 4824, - [SMALL_STATE(1770)] = 4897, - [SMALL_STATE(1771)] = 4970, - [SMALL_STATE(1772)] = 5043, - [SMALL_STATE(1773)] = 5116, - [SMALL_STATE(1774)] = 5189, - [SMALL_STATE(1775)] = 5262, - [SMALL_STATE(1776)] = 5335, - [SMALL_STATE(1777)] = 5408, - [SMALL_STATE(1778)] = 5481, - [SMALL_STATE(1779)] = 5554, - [SMALL_STATE(1780)] = 5627, - [SMALL_STATE(1781)] = 5700, - [SMALL_STATE(1782)] = 5773, - [SMALL_STATE(1783)] = 5846, - [SMALL_STATE(1784)] = 5919, - [SMALL_STATE(1785)] = 5992, - [SMALL_STATE(1786)] = 6065, - [SMALL_STATE(1787)] = 6138, - [SMALL_STATE(1788)] = 6211, - [SMALL_STATE(1789)] = 6284, - [SMALL_STATE(1790)] = 6357, - [SMALL_STATE(1791)] = 6430, - [SMALL_STATE(1792)] = 6503, - [SMALL_STATE(1793)] = 6576, - [SMALL_STATE(1794)] = 6651, - [SMALL_STATE(1795)] = 6726, - [SMALL_STATE(1796)] = 6801, - [SMALL_STATE(1797)] = 6876, - [SMALL_STATE(1798)] = 6951, - [SMALL_STATE(1799)] = 7026, - [SMALL_STATE(1800)] = 7099, - [SMALL_STATE(1801)] = 7174, - [SMALL_STATE(1802)] = 7281, - [SMALL_STATE(1803)] = 7384, - [SMALL_STATE(1804)] = 7457, - [SMALL_STATE(1805)] = 7530, - [SMALL_STATE(1806)] = 7605, - [SMALL_STATE(1807)] = 7678, - [SMALL_STATE(1808)] = 7751, - [SMALL_STATE(1809)] = 7824, - [SMALL_STATE(1810)] = 7897, - [SMALL_STATE(1811)] = 7970, - [SMALL_STATE(1812)] = 8045, - [SMALL_STATE(1813)] = 8118, - [SMALL_STATE(1814)] = 8191, - [SMALL_STATE(1815)] = 8264, - [SMALL_STATE(1816)] = 8339, - [SMALL_STATE(1817)] = 8412, - [SMALL_STATE(1818)] = 8487, - [SMALL_STATE(1819)] = 8562, - [SMALL_STATE(1820)] = 8635, - [SMALL_STATE(1821)] = 8711, - [SMALL_STATE(1822)] = 8783, - [SMALL_STATE(1823)] = 8863, - [SMALL_STATE(1824)] = 8935, - [SMALL_STATE(1825)] = 9007, - [SMALL_STATE(1826)] = 9079, - [SMALL_STATE(1827)] = 9221, - [SMALL_STATE(1828)] = 9293, - [SMALL_STATE(1829)] = 9365, - [SMALL_STATE(1830)] = 9437, - [SMALL_STATE(1831)] = 9509, - [SMALL_STATE(1832)] = 9581, - [SMALL_STATE(1833)] = 9653, - [SMALL_STATE(1834)] = 9725, - [SMALL_STATE(1835)] = 9797, - [SMALL_STATE(1836)] = 9869, - [SMALL_STATE(1837)] = 9941, - [SMALL_STATE(1838)] = 10013, - [SMALL_STATE(1839)] = 10093, - [SMALL_STATE(1840)] = 10165, - [SMALL_STATE(1841)] = 10237, - [SMALL_STATE(1842)] = 10309, - [SMALL_STATE(1843)] = 10381, - [SMALL_STATE(1844)] = 10457, - [SMALL_STATE(1845)] = 10533, - [SMALL_STATE(1846)] = 10605, - [SMALL_STATE(1847)] = 10681, - [SMALL_STATE(1848)] = 10757, - [SMALL_STATE(1849)] = 10829, - [SMALL_STATE(1850)] = 10901, - [SMALL_STATE(1851)] = 10973, - [SMALL_STATE(1852)] = 11045, - [SMALL_STATE(1853)] = 11117, - [SMALL_STATE(1854)] = 11189, - [SMALL_STATE(1855)] = 11261, - [SMALL_STATE(1856)] = 11333, - [SMALL_STATE(1857)] = 11405, - [SMALL_STATE(1858)] = 11477, - [SMALL_STATE(1859)] = 11549, - [SMALL_STATE(1860)] = 11621, - [SMALL_STATE(1861)] = 11693, - [SMALL_STATE(1862)] = 11765, - [SMALL_STATE(1863)] = 11837, - [SMALL_STATE(1864)] = 11909, - [SMALL_STATE(1865)] = 11981, - [SMALL_STATE(1866)] = 12053, - [SMALL_STATE(1867)] = 12125, - [SMALL_STATE(1868)] = 12197, - [SMALL_STATE(1869)] = 12269, - [SMALL_STATE(1870)] = 12341, - [SMALL_STATE(1871)] = 12413, - [SMALL_STATE(1872)] = 12485, - [SMALL_STATE(1873)] = 12561, - [SMALL_STATE(1874)] = 12633, - [SMALL_STATE(1875)] = 12705, - [SMALL_STATE(1876)] = 12781, - [SMALL_STATE(1877)] = 12853, - [SMALL_STATE(1878)] = 12925, - [SMALL_STATE(1879)] = 12997, - [SMALL_STATE(1880)] = 13069, - [SMALL_STATE(1881)] = 13141, - [SMALL_STATE(1882)] = 13213, - [SMALL_STATE(1883)] = 13285, - [SMALL_STATE(1884)] = 13357, - [SMALL_STATE(1885)] = 13429, - [SMALL_STATE(1886)] = 13501, - [SMALL_STATE(1887)] = 13573, - [SMALL_STATE(1888)] = 13645, - [SMALL_STATE(1889)] = 13717, - [SMALL_STATE(1890)] = 13789, - [SMALL_STATE(1891)] = 13861, - [SMALL_STATE(1892)] = 13941, - [SMALL_STATE(1893)] = 14013, - [SMALL_STATE(1894)] = 14085, - [SMALL_STATE(1895)] = 14161, - [SMALL_STATE(1896)] = 14233, - [SMALL_STATE(1897)] = 14305, - [SMALL_STATE(1898)] = 14377, - [SMALL_STATE(1899)] = 14449, - [SMALL_STATE(1900)] = 14521, - [SMALL_STATE(1901)] = 14597, - [SMALL_STATE(1902)] = 14669, - [SMALL_STATE(1903)] = 14741, - [SMALL_STATE(1904)] = 14813, - [SMALL_STATE(1905)] = 14885, - [SMALL_STATE(1906)] = 14957, - [SMALL_STATE(1907)] = 15029, - [SMALL_STATE(1908)] = 15101, - [SMALL_STATE(1909)] = 15173, - [SMALL_STATE(1910)] = 15245, - [SMALL_STATE(1911)] = 15321, - [SMALL_STATE(1912)] = 15397, - [SMALL_STATE(1913)] = 15473, - [SMALL_STATE(1914)] = 15549, - [SMALL_STATE(1915)] = 15625, - [SMALL_STATE(1916)] = 15701, - [SMALL_STATE(1917)] = 15777, - [SMALL_STATE(1918)] = 15853, - [SMALL_STATE(1919)] = 15929, - [SMALL_STATE(1920)] = 16005, - [SMALL_STATE(1921)] = 16081, - [SMALL_STATE(1922)] = 16157, - [SMALL_STATE(1923)] = 16233, - [SMALL_STATE(1924)] = 16309, - [SMALL_STATE(1925)] = 16385, - [SMALL_STATE(1926)] = 16457, - [SMALL_STATE(1927)] = 16529, - [SMALL_STATE(1928)] = 16671, - [SMALL_STATE(1929)] = 16743, - [SMALL_STATE(1930)] = 16815, - [SMALL_STATE(1931)] = 16887, - [SMALL_STATE(1932)] = 16959, - [SMALL_STATE(1933)] = 17033, - [SMALL_STATE(1934)] = 17109, - [SMALL_STATE(1935)] = 17185, - [SMALL_STATE(1936)] = 17261, - [SMALL_STATE(1937)] = 17403, - [SMALL_STATE(1938)] = 17475, - [SMALL_STATE(1939)] = 17547, - [SMALL_STATE(1940)] = 17619, - [SMALL_STATE(1941)] = 17691, - [SMALL_STATE(1942)] = 17763, - [SMALL_STATE(1943)] = 17835, - [SMALL_STATE(1944)] = 17907, - [SMALL_STATE(1945)] = 17979, - [SMALL_STATE(1946)] = 18051, - [SMALL_STATE(1947)] = 18123, - [SMALL_STATE(1948)] = 18195, - [SMALL_STATE(1949)] = 18337, - [SMALL_STATE(1950)] = 18479, - [SMALL_STATE(1951)] = 18621, - [SMALL_STATE(1952)] = 18693, - [SMALL_STATE(1953)] = 18764, - [SMALL_STATE(1954)] = 18845, - [SMALL_STATE(1955)] = 18922, - [SMALL_STATE(1956)] = 18999, - [SMALL_STATE(1957)] = 19076, - [SMALL_STATE(1958)] = 19151, - [SMALL_STATE(1959)] = 19228, - [SMALL_STATE(1960)] = 19305, - [SMALL_STATE(1961)] = 19382, - [SMALL_STATE(1962)] = 19459, - [SMALL_STATE(1963)] = 19536, - [SMALL_STATE(1964)] = 19613, - [SMALL_STATE(1965)] = 19688, - [SMALL_STATE(1966)] = 19765, - [SMALL_STATE(1967)] = 19842, - [SMALL_STATE(1968)] = 19919, - [SMALL_STATE(1969)] = 19996, - [SMALL_STATE(1970)] = 20075, - [SMALL_STATE(1971)] = 20152, - [SMALL_STATE(1972)] = 20229, - [SMALL_STATE(1973)] = 20306, - [SMALL_STATE(1974)] = 20385, - [SMALL_STATE(1975)] = 20462, - [SMALL_STATE(1976)] = 20539, - [SMALL_STATE(1977)] = 20678, - [SMALL_STATE(1978)] = 20817, - [SMALL_STATE(1979)] = 20896, - [SMALL_STATE(1980)] = 20975, - [SMALL_STATE(1981)] = 21054, - [SMALL_STATE(1982)] = 21133, - [SMALL_STATE(1983)] = 21212, - [SMALL_STATE(1984)] = 21289, - [SMALL_STATE(1985)] = 21362, - [SMALL_STATE(1986)] = 21435, - [SMALL_STATE(1987)] = 21510, - [SMALL_STATE(1988)] = 21587, - [SMALL_STATE(1989)] = 21664, - [SMALL_STATE(1990)] = 21741, - [SMALL_STATE(1991)] = 21818, - [SMALL_STATE(1992)] = 21895, - [SMALL_STATE(1993)] = 21972, - [SMALL_STATE(1994)] = 22049, - [SMALL_STATE(1995)] = 22126, - [SMALL_STATE(1996)] = 22203, - [SMALL_STATE(1997)] = 22280, - [SMALL_STATE(1998)] = 22357, - [SMALL_STATE(1999)] = 22434, - [SMALL_STATE(2000)] = 22511, - [SMALL_STATE(2001)] = 22588, - [SMALL_STATE(2002)] = 22665, - [SMALL_STATE(2003)] = 22746, - [SMALL_STATE(2004)] = 22823, - [SMALL_STATE(2005)] = 22902, - [SMALL_STATE(2006)] = 22981, - [SMALL_STATE(2007)] = 23060, - [SMALL_STATE(2008)] = 23139, - [SMALL_STATE(2009)] = 23218, - [SMALL_STATE(2010)] = 23297, - [SMALL_STATE(2011)] = 23374, - [SMALL_STATE(2012)] = 23453, - [SMALL_STATE(2013)] = 23532, - [SMALL_STATE(2014)] = 23611, - [SMALL_STATE(2015)] = 23688, - [SMALL_STATE(2016)] = 23767, - [SMALL_STATE(2017)] = 23846, - [SMALL_STATE(2018)] = 23923, - [SMALL_STATE(2019)] = 24000, - [SMALL_STATE(2020)] = 24077, - [SMALL_STATE(2021)] = 24154, - [SMALL_STATE(2022)] = 24231, - [SMALL_STATE(2023)] = 24308, - [SMALL_STATE(2024)] = 24387, - [SMALL_STATE(2025)] = 24464, - [SMALL_STATE(2026)] = 24541, - [SMALL_STATE(2027)] = 24620, - [SMALL_STATE(2028)] = 24697, - [SMALL_STATE(2029)] = 24768, - [SMALL_STATE(2030)] = 24839, - [SMALL_STATE(2031)] = 24910, - [SMALL_STATE(2032)] = 24981, - [SMALL_STATE(2033)] = 25058, - [SMALL_STATE(2034)] = 25129, - [SMALL_STATE(2035)] = 25200, - [SMALL_STATE(2036)] = 25271, - [SMALL_STATE(2037)] = 25348, - [SMALL_STATE(2038)] = 25427, - [SMALL_STATE(2039)] = 25498, - [SMALL_STATE(2040)] = 25569, - [SMALL_STATE(2041)] = 25640, - [SMALL_STATE(2042)] = 25711, - [SMALL_STATE(2043)] = 25788, - [SMALL_STATE(2044)] = 25859, - [SMALL_STATE(2045)] = 25930, - [SMALL_STATE(2046)] = 26001, - [SMALL_STATE(2047)] = 26072, - [SMALL_STATE(2048)] = 26143, - [SMALL_STATE(2049)] = 26214, - [SMALL_STATE(2050)] = 26285, - [SMALL_STATE(2051)] = 26356, - [SMALL_STATE(2052)] = 26427, - [SMALL_STATE(2053)] = 26498, - [SMALL_STATE(2054)] = 26569, - [SMALL_STATE(2055)] = 26640, - [SMALL_STATE(2056)] = 26711, - [SMALL_STATE(2057)] = 26786, - [SMALL_STATE(2058)] = 26925, - [SMALL_STATE(2059)] = 27064, - [SMALL_STATE(2060)] = 27145, - [SMALL_STATE(2061)] = 27216, - [SMALL_STATE(2062)] = 27287, - [SMALL_STATE(2063)] = 27364, - [SMALL_STATE(2064)] = 27435, - [SMALL_STATE(2065)] = 27506, - [SMALL_STATE(2066)] = 27577, - [SMALL_STATE(2067)] = 27648, - [SMALL_STATE(2068)] = 27719, - [SMALL_STATE(2069)] = 27790, - [SMALL_STATE(2070)] = 27861, - [SMALL_STATE(2071)] = 27938, - [SMALL_STATE(2072)] = 28009, - [SMALL_STATE(2073)] = 28080, - [SMALL_STATE(2074)] = 28157, - [SMALL_STATE(2075)] = 28236, - [SMALL_STATE(2076)] = 28306, - [SMALL_STATE(2077)] = 28376, - [SMALL_STATE(2078)] = 28446, - [SMALL_STATE(2079)] = 28516, - [SMALL_STATE(2080)] = 28590, - [SMALL_STATE(2081)] = 28664, - [SMALL_STATE(2082)] = 28800, - [SMALL_STATE(2083)] = 28874, - [SMALL_STATE(2084)] = 28948, - [SMALL_STATE(2085)] = 29022, - [SMALL_STATE(2086)] = 29100, - [SMALL_STATE(2087)] = 29174, - [SMALL_STATE(2088)] = 29248, - [SMALL_STATE(2089)] = 29318, - [SMALL_STATE(2090)] = 29392, - [SMALL_STATE(2091)] = 29462, - [SMALL_STATE(2092)] = 29536, - [SMALL_STATE(2093)] = 29606, - [SMALL_STATE(2094)] = 29680, - [SMALL_STATE(2095)] = 29750, - [SMALL_STATE(2096)] = 29824, - [SMALL_STATE(2097)] = 29898, - [SMALL_STATE(2098)] = 29968, - [SMALL_STATE(2099)] = 30038, - [SMALL_STATE(2100)] = 30112, - [SMALL_STATE(2101)] = 30248, - [SMALL_STATE(2102)] = 30318, - [SMALL_STATE(2103)] = 30388, - [SMALL_STATE(2104)] = 30524, - [SMALL_STATE(2105)] = 30594, - [SMALL_STATE(2106)] = 30664, - [SMALL_STATE(2107)] = 30734, - [SMALL_STATE(2108)] = 30804, - [SMALL_STATE(2109)] = 30874, - [SMALL_STATE(2110)] = 30944, - [SMALL_STATE(2111)] = 31014, - [SMALL_STATE(2112)] = 31084, - [SMALL_STATE(2113)] = 31154, - [SMALL_STATE(2114)] = 31224, - [SMALL_STATE(2115)] = 31294, - [SMALL_STATE(2116)] = 31364, - [SMALL_STATE(2117)] = 31434, - [SMALL_STATE(2118)] = 31504, - [SMALL_STATE(2119)] = 31574, - [SMALL_STATE(2120)] = 31646, - [SMALL_STATE(2121)] = 31716, - [SMALL_STATE(2122)] = 31786, - [SMALL_STATE(2123)] = 31856, - [SMALL_STATE(2124)] = 31926, - [SMALL_STATE(2125)] = 32000, - [SMALL_STATE(2126)] = 32074, - [SMALL_STATE(2127)] = 32144, - [SMALL_STATE(2128)] = 32218, - [SMALL_STATE(2129)] = 32292, - [SMALL_STATE(2130)] = 32362, - [SMALL_STATE(2131)] = 32432, - [SMALL_STATE(2132)] = 32502, - [SMALL_STATE(2133)] = 32576, - [SMALL_STATE(2134)] = 32646, - [SMALL_STATE(2135)] = 32716, - [SMALL_STATE(2136)] = 32786, - [SMALL_STATE(2137)] = 32856, - [SMALL_STATE(2138)] = 32926, - [SMALL_STATE(2139)] = 32996, - [SMALL_STATE(2140)] = 33066, - [SMALL_STATE(2141)] = 33136, - [SMALL_STATE(2142)] = 33206, - [SMALL_STATE(2143)] = 33276, - [SMALL_STATE(2144)] = 33346, - [SMALL_STATE(2145)] = 33482, - [SMALL_STATE(2146)] = 33618, - [SMALL_STATE(2147)] = 33754, - [SMALL_STATE(2148)] = 33824, - [SMALL_STATE(2149)] = 33960, - [SMALL_STATE(2150)] = 34030, - [SMALL_STATE(2151)] = 34166, - [SMALL_STATE(2152)] = 34302, - [SMALL_STATE(2153)] = 34374, - [SMALL_STATE(2154)] = 34444, - [SMALL_STATE(2155)] = 34580, - [SMALL_STATE(2156)] = 34650, - [SMALL_STATE(2157)] = 34721, - [SMALL_STATE(2158)] = 34794, - [SMALL_STATE(2159)] = 34867, - [SMALL_STATE(2160)] = 34940, - [SMALL_STATE(2161)] = 35039, - [SMALL_STATE(2162)] = 35110, - [SMALL_STATE(2163)] = 35183, - [SMALL_STATE(2164)] = 35254, - [SMALL_STATE(2165)] = 35327, - [SMALL_STATE(2166)] = 35400, - [SMALL_STATE(2167)] = 35473, - [SMALL_STATE(2168)] = 35544, - [SMALL_STATE(2169)] = 35615, - [SMALL_STATE(2170)] = 35714, - [SMALL_STATE(2171)] = 35785, - [SMALL_STATE(2172)] = 35854, - [SMALL_STATE(2173)] = 35931, - [SMALL_STATE(2174)] = 36002, - [SMALL_STATE(2175)] = 36073, - [SMALL_STATE(2176)] = 36172, - [SMALL_STATE(2177)] = 36245, - [SMALL_STATE(2178)] = 36316, - [SMALL_STATE(2179)] = 36387, - [SMALL_STATE(2180)] = 36458, - [SMALL_STATE(2181)] = 36529, - [SMALL_STATE(2182)] = 36602, - [SMALL_STATE(2183)] = 36673, - [SMALL_STATE(2184)] = 36744, - [SMALL_STATE(2185)] = 36815, - [SMALL_STATE(2186)] = 36886, - [SMALL_STATE(2187)] = 36957, - [SMALL_STATE(2188)] = 37028, - [SMALL_STATE(2189)] = 37101, - [SMALL_STATE(2190)] = 37172, - [SMALL_STATE(2191)] = 37243, - [SMALL_STATE(2192)] = 37314, - [SMALL_STATE(2193)] = 37387, - [SMALL_STATE(2194)] = 37458, - [SMALL_STATE(2195)] = 37529, - [SMALL_STATE(2196)] = 37600, - [SMALL_STATE(2197)] = 37671, - [SMALL_STATE(2198)] = 37744, - [SMALL_STATE(2199)] = 37815, - [SMALL_STATE(2200)] = 37888, - [SMALL_STATE(2201)] = 37961, - [SMALL_STATE(2202)] = 38034, - [SMALL_STATE(2203)] = 38107, - [SMALL_STATE(2204)] = 38178, - [SMALL_STATE(2205)] = 38251, - [SMALL_STATE(2206)] = 38322, - [SMALL_STATE(2207)] = 38393, - [SMALL_STATE(2208)] = 38466, - [SMALL_STATE(2209)] = 38539, - [SMALL_STATE(2210)] = 38612, - [SMALL_STATE(2211)] = 38681, - [SMALL_STATE(2212)] = 38752, - [SMALL_STATE(2213)] = 38823, - [SMALL_STATE(2214)] = 38894, - [SMALL_STATE(2215)] = 38965, - [SMALL_STATE(2216)] = 39036, - [SMALL_STATE(2217)] = 39107, - [SMALL_STATE(2218)] = 39178, - [SMALL_STATE(2219)] = 39251, - [SMALL_STATE(2220)] = 39322, - [SMALL_STATE(2221)] = 39399, - [SMALL_STATE(2222)] = 39470, - [SMALL_STATE(2223)] = 39539, - [SMALL_STATE(2224)] = 39610, - [SMALL_STATE(2225)] = 39679, - [SMALL_STATE(2226)] = 39750, - [SMALL_STATE(2227)] = 39821, - [SMALL_STATE(2228)] = 39890, - [SMALL_STATE(2229)] = 39961, - [SMALL_STATE(2230)] = 40032, - [SMALL_STATE(2231)] = 40103, - [SMALL_STATE(2232)] = 40174, - [SMALL_STATE(2233)] = 40245, - [SMALL_STATE(2234)] = 40316, - [SMALL_STATE(2235)] = 40387, - [SMALL_STATE(2236)] = 40458, - [SMALL_STATE(2237)] = 40529, - [SMALL_STATE(2238)] = 40600, - [SMALL_STATE(2239)] = 40687, - [SMALL_STATE(2240)] = 40758, - [SMALL_STATE(2241)] = 40829, - [SMALL_STATE(2242)] = 40900, - [SMALL_STATE(2243)] = 40971, - [SMALL_STATE(2244)] = 41042, - [SMALL_STATE(2245)] = 41113, - [SMALL_STATE(2246)] = 41184, - [SMALL_STATE(2247)] = 41255, - [SMALL_STATE(2248)] = 41326, - [SMALL_STATE(2249)] = 41397, - [SMALL_STATE(2250)] = 41468, - [SMALL_STATE(2251)] = 41539, - [SMALL_STATE(2252)] = 41610, - [SMALL_STATE(2253)] = 41681, - [SMALL_STATE(2254)] = 41752, - [SMALL_STATE(2255)] = 41823, - [SMALL_STATE(2256)] = 41894, - [SMALL_STATE(2257)] = 41967, - [SMALL_STATE(2258)] = 42040, - [SMALL_STATE(2259)] = 42111, - [SMALL_STATE(2260)] = 42182, - [SMALL_STATE(2261)] = 42253, - [SMALL_STATE(2262)] = 42324, - [SMALL_STATE(2263)] = 42395, - [SMALL_STATE(2264)] = 42466, - [SMALL_STATE(2265)] = 42537, - [SMALL_STATE(2266)] = 42608, - [SMALL_STATE(2267)] = 42679, - [SMALL_STATE(2268)] = 42750, - [SMALL_STATE(2269)] = 42823, - [SMALL_STATE(2270)] = 42896, - [SMALL_STATE(2271)] = 42967, - [SMALL_STATE(2272)] = 43038, - [SMALL_STATE(2273)] = 43109, - [SMALL_STATE(2274)] = 43180, - [SMALL_STATE(2275)] = 43253, - [SMALL_STATE(2276)] = 43324, - [SMALL_STATE(2277)] = 43395, - [SMALL_STATE(2278)] = 43494, - [SMALL_STATE(2279)] = 43565, - [SMALL_STATE(2280)] = 43636, - [SMALL_STATE(2281)] = 43707, - [SMALL_STATE(2282)] = 43776, - [SMALL_STATE(2283)] = 43847, - [SMALL_STATE(2284)] = 43918, - [SMALL_STATE(2285)] = 43989, - [SMALL_STATE(2286)] = 44060, - [SMALL_STATE(2287)] = 44131, - [SMALL_STATE(2288)] = 44202, - [SMALL_STATE(2289)] = 44273, - [SMALL_STATE(2290)] = 44344, - [SMALL_STATE(2291)] = 44415, - [SMALL_STATE(2292)] = 44492, - [SMALL_STATE(2293)] = 44563, - [SMALL_STATE(2294)] = 44634, - [SMALL_STATE(2295)] = 44705, - [SMALL_STATE(2296)] = 44776, - [SMALL_STATE(2297)] = 44847, - [SMALL_STATE(2298)] = 44918, - [SMALL_STATE(2299)] = 44989, - [SMALL_STATE(2300)] = 45060, - [SMALL_STATE(2301)] = 45131, - [SMALL_STATE(2302)] = 45204, - [SMALL_STATE(2303)] = 45275, - [SMALL_STATE(2304)] = 45346, - [SMALL_STATE(2305)] = 45417, - [SMALL_STATE(2306)] = 45488, - [SMALL_STATE(2307)] = 45559, - [SMALL_STATE(2308)] = 45630, - [SMALL_STATE(2309)] = 45701, - [SMALL_STATE(2310)] = 45770, - [SMALL_STATE(2311)] = 45841, - [SMALL_STATE(2312)] = 45919, - [SMALL_STATE(2313)] = 46021, - [SMALL_STATE(2314)] = 46111, - [SMALL_STATE(2315)] = 46193, - [SMALL_STATE(2316)] = 46285, - [SMALL_STATE(2317)] = 46379, - [SMALL_STATE(2318)] = 46475, - [SMALL_STATE(2319)] = 46557, - [SMALL_STATE(2320)] = 46633, - [SMALL_STATE(2321)] = 46719, - [SMALL_STATE(2322)] = 46791, - [SMALL_STATE(2323)] = 46863, - [SMALL_STATE(2324)] = 46959, - [SMALL_STATE(2325)] = 47057, - [SMALL_STATE(2326)] = 47141, - [SMALL_STATE(2327)] = 47241, - [SMALL_STATE(2328)] = 47329, - [SMALL_STATE(2329)] = 47409, - [SMALL_STATE(2330)] = 47493, - [SMALL_STATE(2331)] = 47583, - [SMALL_STATE(2332)] = 47675, - [SMALL_STATE(2333)] = 47769, - [SMALL_STATE(2334)] = 47851, - [SMALL_STATE(2335)] = 47935, - [SMALL_STATE(2336)] = 48011, - [SMALL_STATE(2337)] = 48089, - [SMALL_STATE(2338)] = 48175, - [SMALL_STATE(2339)] = 48247, - [SMALL_STATE(2340)] = 48335, - [SMALL_STATE(2341)] = 48407, - [SMALL_STATE(2342)] = 48481, - [SMALL_STATE(2343)] = 48577, - [SMALL_STATE(2344)] = 48675, - [SMALL_STATE(2345)] = 48773, - [SMALL_STATE(2346)] = 48873, - [SMALL_STATE(2347)] = 48973, - [SMALL_STATE(2348)] = 49075, - [SMALL_STATE(2349)] = 49163, - [SMALL_STATE(2350)] = 49253, - [SMALL_STATE(2351)] = 49349, - [SMALL_STATE(2352)] = 49431, - [SMALL_STATE(2353)] = 49511, - [SMALL_STATE(2354)] = 49593, - [SMALL_STATE(2355)] = 49683, - [SMALL_STATE(2356)] = 49767, - [SMALL_STATE(2357)] = 49859, - [SMALL_STATE(2358)] = 49951, - [SMALL_STATE(2359)] = 50027, - [SMALL_STATE(2360)] = 50121, - [SMALL_STATE(2361)] = 50215, - [SMALL_STATE(2362)] = 50293, - [SMALL_STATE(2363)] = 50389, - [SMALL_STATE(2364)] = 50475, - [SMALL_STATE(2365)] = 50563, - [SMALL_STATE(2366)] = 50637, - [SMALL_STATE(2367)] = 50707, - [SMALL_STATE(2368)] = 50807, - [SMALL_STATE(2369)] = 50879, - [SMALL_STATE(2370)] = 50953, - [SMALL_STATE(2371)] = 51027, - [SMALL_STATE(2372)] = 51123, - [SMALL_STATE(2373)] = 51205, - [SMALL_STATE(2374)] = 51297, - [SMALL_STATE(2375)] = 51373, - [SMALL_STATE(2376)] = 51459, - [SMALL_STATE(2377)] = 51557, - [SMALL_STATE(2378)] = 51629, - [SMALL_STATE(2379)] = 51725, - [SMALL_STATE(2380)] = 51823, - [SMALL_STATE(2381)] = 51923, - [SMALL_STATE(2382)] = 52011, - [SMALL_STATE(2383)] = 52109, - [SMALL_STATE(2384)] = 52189, - [SMALL_STATE(2385)] = 52279, - [SMALL_STATE(2386)] = 52371, - [SMALL_STATE(2387)] = 52465, - [SMALL_STATE(2388)] = 52565, - [SMALL_STATE(2389)] = 52637, - [SMALL_STATE(2390)] = 52709, - [SMALL_STATE(2391)] = 52809, - [SMALL_STATE(2392)] = 52911, - [SMALL_STATE(2393)] = 52987, - [SMALL_STATE(2394)] = 53075, - [SMALL_STATE(2395)] = 53165, - [SMALL_STATE(2396)] = 53261, - [SMALL_STATE(2397)] = 53351, - [SMALL_STATE(2398)] = 53427, - [SMALL_STATE(2399)] = 53525, - [SMALL_STATE(2400)] = 53595, - [SMALL_STATE(2401)] = 53675, - [SMALL_STATE(2402)] = 53755, - [SMALL_STATE(2403)] = 53829, - [SMALL_STATE(2404)] = 53913, - [SMALL_STATE(2405)] = 53983, - [SMALL_STATE(2406)] = 54077, - [SMALL_STATE(2407)] = 54173, - [SMALL_STATE(2408)] = 54271, - [SMALL_STATE(2409)] = 54357, - [SMALL_STATE(2410)] = 54435, - [SMALL_STATE(2411)] = 54523, - [SMALL_STATE(2412)] = 54613, - [SMALL_STATE(2413)] = 54705, - [SMALL_STATE(2414)] = 54781, - [SMALL_STATE(2415)] = 54877, - [SMALL_STATE(2416)] = 54965, - [SMALL_STATE(2417)] = 55047, - [SMALL_STATE(2418)] = 55141, - [SMALL_STATE(2419)] = 55231, - [SMALL_STATE(2420)] = 55323, - [SMALL_STATE(2421)] = 55419, - [SMALL_STATE(2422)] = 55501, - [SMALL_STATE(2423)] = 55571, - [SMALL_STATE(2424)] = 55655, - [SMALL_STATE(2425)] = 55747, - [SMALL_STATE(2426)] = 55835, - [SMALL_STATE(2427)] = 55909, - [SMALL_STATE(2428)] = 56003, - [SMALL_STATE(2429)] = 56097, - [SMALL_STATE(2430)] = 56193, - [SMALL_STATE(2431)] = 56277, - [SMALL_STATE(2432)] = 56349, - [SMALL_STATE(2433)] = 56417, - [SMALL_STATE(2434)] = 56501, - [SMALL_STATE(2435)] = 56579, - [SMALL_STATE(2436)] = 56667, - [SMALL_STATE(2437)] = 56737, - [SMALL_STATE(2438)] = 56833, - [SMALL_STATE(2439)] = 56907, - [SMALL_STATE(2440)] = 57003, - [SMALL_STATE(2441)] = 57099, - [SMALL_STATE(2442)] = 57201, - [SMALL_STATE(2443)] = 57299, - [SMALL_STATE(2444)] = 57395, - [SMALL_STATE(2445)] = 57491, - [SMALL_STATE(2446)] = 57587, - [SMALL_STATE(2447)] = 57683, - [SMALL_STATE(2448)] = 57783, - [SMALL_STATE(2449)] = 57850, - [SMALL_STATE(2450)] = 57917, - [SMALL_STATE(2451)] = 57986, - [SMALL_STATE(2452)] = 58053, - [SMALL_STATE(2453)] = 58120, - [SMALL_STATE(2454)] = 58187, - [SMALL_STATE(2455)] = 58254, - [SMALL_STATE(2456)] = 58321, - [SMALL_STATE(2457)] = 58388, - [SMALL_STATE(2458)] = 58455, - [SMALL_STATE(2459)] = 58522, - [SMALL_STATE(2460)] = 58589, - [SMALL_STATE(2461)] = 58656, - [SMALL_STATE(2462)] = 58723, - [SMALL_STATE(2463)] = 58790, - [SMALL_STATE(2464)] = 58857, - [SMALL_STATE(2465)] = 58924, - [SMALL_STATE(2466)] = 58991, - [SMALL_STATE(2467)] = 59060, - [SMALL_STATE(2468)] = 59127, - [SMALL_STATE(2469)] = 59194, - [SMALL_STATE(2470)] = 59261, - [SMALL_STATE(2471)] = 59330, - [SMALL_STATE(2472)] = 59397, - [SMALL_STATE(2473)] = 59464, - [SMALL_STATE(2474)] = 59531, - [SMALL_STATE(2475)] = 59598, - [SMALL_STATE(2476)] = 59679, - [SMALL_STATE(2477)] = 59746, - [SMALL_STATE(2478)] = 59817, - [SMALL_STATE(2479)] = 59884, - [SMALL_STATE(2480)] = 59951, - [SMALL_STATE(2481)] = 60018, - [SMALL_STATE(2482)] = 60085, - [SMALL_STATE(2483)] = 60152, - [SMALL_STATE(2484)] = 60219, - [SMALL_STATE(2485)] = 60286, - [SMALL_STATE(2486)] = 60353, - [SMALL_STATE(2487)] = 60420, - [SMALL_STATE(2488)] = 60499, - [SMALL_STATE(2489)] = 60566, - [SMALL_STATE(2490)] = 60639, - [SMALL_STATE(2491)] = 60706, - [SMALL_STATE(2492)] = 60789, - [SMALL_STATE(2493)] = 60856, - [SMALL_STATE(2494)] = 60923, - [SMALL_STATE(2495)] = 60990, - [SMALL_STATE(2496)] = 61059, - [SMALL_STATE(2497)] = 61126, - [SMALL_STATE(2498)] = 61193, - [SMALL_STATE(2499)] = 61286, - [SMALL_STATE(2500)] = 61353, - [SMALL_STATE(2501)] = 61448, - [SMALL_STATE(2502)] = 61515, - [SMALL_STATE(2503)] = 61584, - [SMALL_STATE(2504)] = 61653, - [SMALL_STATE(2505)] = 61720, - [SMALL_STATE(2506)] = 61787, - [SMALL_STATE(2507)] = 61884, - [SMALL_STATE(2508)] = 61951, - [SMALL_STATE(2509)] = 62036, - [SMALL_STATE(2510)] = 62103, - [SMALL_STATE(2511)] = 62170, - [SMALL_STATE(2512)] = 62237, - [SMALL_STATE(2513)] = 62314, - [SMALL_STATE(2514)] = 62381, - [SMALL_STATE(2515)] = 62468, - [SMALL_STATE(2516)] = 62535, - [SMALL_STATE(2517)] = 62624, - [SMALL_STATE(2518)] = 62691, - [SMALL_STATE(2519)] = 62782, - [SMALL_STATE(2520)] = 62849, - [SMALL_STATE(2521)] = 62916, - [SMALL_STATE(2522)] = 62983, - [SMALL_STATE(2523)] = 63050, - [SMALL_STATE(2524)] = 63135, - [SMALL_STATE(2525)] = 63202, - [SMALL_STATE(2526)] = 63269, - [SMALL_STATE(2527)] = 63336, - [SMALL_STATE(2528)] = 63403, - [SMALL_STATE(2529)] = 63470, - [SMALL_STATE(2530)] = 63537, - [SMALL_STATE(2531)] = 63604, - [SMALL_STATE(2532)] = 63671, - [SMALL_STATE(2533)] = 63756, - [SMALL_STATE(2534)] = 63825, - [SMALL_STATE(2535)] = 63892, - [SMALL_STATE(2536)] = 63965, - [SMALL_STATE(2537)] = 64032, - [SMALL_STATE(2538)] = 64099, - [SMALL_STATE(2539)] = 64166, - [SMALL_STATE(2540)] = 64247, - [SMALL_STATE(2541)] = 64314, - [SMALL_STATE(2542)] = 64399, - [SMALL_STATE(2543)] = 64466, - [SMALL_STATE(2544)] = 64533, - [SMALL_STATE(2545)] = 64600, - [SMALL_STATE(2546)] = 64667, - [SMALL_STATE(2547)] = 64738, - [SMALL_STATE(2548)] = 64805, - [SMALL_STATE(2549)] = 64886, - [SMALL_STATE(2550)] = 64967, - [SMALL_STATE(2551)] = 65034, - [SMALL_STATE(2552)] = 65115, - [SMALL_STATE(2553)] = 65182, - [SMALL_STATE(2554)] = 65249, - [SMALL_STATE(2555)] = 65316, - [SMALL_STATE(2556)] = 65383, - [SMALL_STATE(2557)] = 65450, - [SMALL_STATE(2558)] = 65517, - [SMALL_STATE(2559)] = 65584, - [SMALL_STATE(2560)] = 65652, - [SMALL_STATE(2561)] = 65718, - [SMALL_STATE(2562)] = 65788, - [SMALL_STATE(2563)] = 65862, - [SMALL_STATE(2564)] = 65928, - [SMALL_STATE(2565)] = 65996, - [SMALL_STATE(2566)] = 66062, - [SMALL_STATE(2567)] = 66132, - [SMALL_STATE(2568)] = 66222, - [SMALL_STATE(2569)] = 66304, - [SMALL_STATE(2570)] = 66370, - [SMALL_STATE(2571)] = 66460, - [SMALL_STATE(2572)] = 66526, - [SMALL_STATE(2573)] = 66616, - [SMALL_STATE(2574)] = 66682, - [SMALL_STATE(2575)] = 66758, - [SMALL_STATE(2576)] = 66824, - [SMALL_STATE(2577)] = 66890, - [SMALL_STATE(2578)] = 66956, - [SMALL_STATE(2579)] = 67038, - [SMALL_STATE(2580)] = 67128, - [SMALL_STATE(2581)] = 67218, - [SMALL_STATE(2582)] = 67288, - [SMALL_STATE(2583)] = 67370, - [SMALL_STATE(2584)] = 67436, - [SMALL_STATE(2585)] = 67524, - [SMALL_STATE(2586)] = 67590, - [SMALL_STATE(2587)] = 67660, - [SMALL_STATE(2588)] = 67750, - [SMALL_STATE(2589)] = 67840, - [SMALL_STATE(2590)] = 67930, - [SMALL_STATE(2591)] = 68004, - [SMALL_STATE(2592)] = 68094, - [SMALL_STATE(2593)] = 68168, - [SMALL_STATE(2594)] = 68234, - [SMALL_STATE(2595)] = 68300, - [SMALL_STATE(2596)] = 68390, - [SMALL_STATE(2597)] = 68480, - [SMALL_STATE(2598)] = 68570, - [SMALL_STATE(2599)] = 68636, - [SMALL_STATE(2600)] = 68702, - [SMALL_STATE(2601)] = 68784, - [SMALL_STATE(2602)] = 68849, - [SMALL_STATE(2603)] = 68918, - [SMALL_STATE(2604)] = 68983, - [SMALL_STATE(2605)] = 69070, - [SMALL_STATE(2606)] = 69143, - [SMALL_STATE(2607)] = 69230, - [SMALL_STATE(2608)] = 69303, - [SMALL_STATE(2609)] = 69368, - [SMALL_STATE(2610)] = 69433, - [SMALL_STATE(2611)] = 69520, - [SMALL_STATE(2612)] = 69585, - [SMALL_STATE(2613)] = 69672, - [SMALL_STATE(2614)] = 69739, - [SMALL_STATE(2615)] = 69826, - [SMALL_STATE(2616)] = 69891, - [SMALL_STATE(2617)] = 69978, - [SMALL_STATE(2618)] = 70065, - [SMALL_STATE(2619)] = 70152, - [SMALL_STATE(2620)] = 70239, - [SMALL_STATE(2621)] = 70304, - [SMALL_STATE(2622)] = 70377, - [SMALL_STATE(2623)] = 70464, - [SMALL_STATE(2624)] = 70529, - [SMALL_STATE(2625)] = 70594, - [SMALL_STATE(2626)] = 70659, - [SMALL_STATE(2627)] = 70724, - [SMALL_STATE(2628)] = 70789, - [SMALL_STATE(2629)] = 70854, - [SMALL_STATE(2630)] = 70941, - [SMALL_STATE(2631)] = 71028, - [SMALL_STATE(2632)] = 71115, - [SMALL_STATE(2633)] = 71202, - [SMALL_STATE(2634)] = 71273, - [SMALL_STATE(2635)] = 71360, - [SMALL_STATE(2636)] = 71447, - [SMALL_STATE(2637)] = 71534, - [SMALL_STATE(2638)] = 71601, - [SMALL_STATE(2639)] = 71688, - [SMALL_STATE(2640)] = 71775, - [SMALL_STATE(2641)] = 71840, - [SMALL_STATE(2642)] = 71927, - [SMALL_STATE(2643)] = 72014, - [SMALL_STATE(2644)] = 72101, - [SMALL_STATE(2645)] = 72166, - [SMALL_STATE(2646)] = 72253, - [SMALL_STATE(2647)] = 72318, - [SMALL_STATE(2648)] = 72383, - [SMALL_STATE(2649)] = 72470, - [SMALL_STATE(2650)] = 72535, - [SMALL_STATE(2651)] = 72622, - [SMALL_STATE(2652)] = 72689, - [SMALL_STATE(2653)] = 72754, - [SMALL_STATE(2654)] = 72841, - [SMALL_STATE(2655)] = 72906, - [SMALL_STATE(2656)] = 72993, - [SMALL_STATE(2657)] = 73080, - [SMALL_STATE(2658)] = 73145, - [SMALL_STATE(2659)] = 73232, - [SMALL_STATE(2660)] = 73319, - [SMALL_STATE(2661)] = 73386, - [SMALL_STATE(2662)] = 73473, - [SMALL_STATE(2663)] = 73560, - [SMALL_STATE(2664)] = 73625, - [SMALL_STATE(2665)] = 73712, - [SMALL_STATE(2666)] = 73777, - [SMALL_STATE(2667)] = 73864, - [SMALL_STATE(2668)] = 73951, - [SMALL_STATE(2669)] = 74038, - [SMALL_STATE(2670)] = 74125, - [SMALL_STATE(2671)] = 74190, - [SMALL_STATE(2672)] = 74255, - [SMALL_STATE(2673)] = 74327, - [SMALL_STATE(2674)] = 74399, - [SMALL_STATE(2675)] = 74463, - [SMALL_STATE(2676)] = 74527, - [SMALL_STATE(2677)] = 74591, - [SMALL_STATE(2678)] = 74655, - [SMALL_STATE(2679)] = 74727, - [SMALL_STATE(2680)] = 74791, - [SMALL_STATE(2681)] = 74855, - [SMALL_STATE(2682)] = 74919, - [SMALL_STATE(2683)] = 74983, - [SMALL_STATE(2684)] = 75105, - [SMALL_STATE(2685)] = 75177, - [SMALL_STATE(2686)] = 75299, - [SMALL_STATE(2687)] = 75371, - [SMALL_STATE(2688)] = 75443, - [SMALL_STATE(2689)] = 75511, - [SMALL_STATE(2690)] = 75583, - [SMALL_STATE(2691)] = 75647, - [SMALL_STATE(2692)] = 75711, - [SMALL_STATE(2693)] = 75775, - [SMALL_STATE(2694)] = 75847, - [SMALL_STATE(2695)] = 75915, - [SMALL_STATE(2696)] = 75979, - [SMALL_STATE(2697)] = 76051, - [SMALL_STATE(2698)] = 76115, - [SMALL_STATE(2699)] = 76179, - [SMALL_STATE(2700)] = 76243, - [SMALL_STATE(2701)] = 76307, - [SMALL_STATE(2702)] = 76371, - [SMALL_STATE(2703)] = 76489, - [SMALL_STATE(2704)] = 76557, - [SMALL_STATE(2705)] = 76629, - [SMALL_STATE(2706)] = 76701, - [SMALL_STATE(2707)] = 76765, - [SMALL_STATE(2708)] = 76829, - [SMALL_STATE(2709)] = 76901, - [SMALL_STATE(2710)] = 76973, - [SMALL_STATE(2711)] = 77041, - [SMALL_STATE(2712)] = 77113, - [SMALL_STATE(2713)] = 77177, - [SMALL_STATE(2714)] = 77241, - [SMALL_STATE(2715)] = 77313, - [SMALL_STATE(2716)] = 77383, - [SMALL_STATE(2717)] = 77455, - [SMALL_STATE(2718)] = 77523, - [SMALL_STATE(2719)] = 77587, - [SMALL_STATE(2720)] = 77657, - [SMALL_STATE(2721)] = 77727, - [SMALL_STATE(2722)] = 77803, - [SMALL_STATE(2723)] = 77867, - [SMALL_STATE(2724)] = 77931, - [SMALL_STATE(2725)] = 77995, - [SMALL_STATE(2726)] = 78059, - [SMALL_STATE(2727)] = 78123, - [SMALL_STATE(2728)] = 78187, - [SMALL_STATE(2729)] = 78251, - [SMALL_STATE(2730)] = 78315, - [SMALL_STATE(2731)] = 78379, - [SMALL_STATE(2732)] = 78443, - [SMALL_STATE(2733)] = 78515, - [SMALL_STATE(2734)] = 78581, - [SMALL_STATE(2735)] = 78651, - [SMALL_STATE(2736)] = 78721, - [SMALL_STATE(2737)] = 78793, - [SMALL_STATE(2738)] = 78865, - [SMALL_STATE(2739)] = 78937, - [SMALL_STATE(2740)] = 79009, - [SMALL_STATE(2741)] = 79081, - [SMALL_STATE(2742)] = 79147, - [SMALL_STATE(2743)] = 79213, - [SMALL_STATE(2744)] = 79287, - [SMALL_STATE(2745)] = 79359, - [SMALL_STATE(2746)] = 79427, - [SMALL_STATE(2747)] = 79543, - [SMALL_STATE(2748)] = 79661, - [SMALL_STATE(2749)] = 79777, - [SMALL_STATE(2750)] = 79841, - [SMALL_STATE(2751)] = 79913, - [SMALL_STATE(2752)] = 79985, - [SMALL_STATE(2753)] = 80049, - [SMALL_STATE(2754)] = 80112, - [SMALL_STATE(2755)] = 80183, - [SMALL_STATE(2756)] = 80254, - [SMALL_STATE(2757)] = 80323, - [SMALL_STATE(2758)] = 80404, - [SMALL_STATE(2759)] = 80475, - [SMALL_STATE(2760)] = 80588, - [SMALL_STATE(2761)] = 80659, - [SMALL_STATE(2762)] = 80730, - [SMALL_STATE(2763)] = 80845, - [SMALL_STATE(2764)] = 80958, - [SMALL_STATE(2765)] = 81029, - [SMALL_STATE(2766)] = 81100, - [SMALL_STATE(2767)] = 81175, - [SMALL_STATE(2768)] = 81246, - [SMALL_STATE(2769)] = 81309, - [SMALL_STATE(2770)] = 81376, - [SMALL_STATE(2771)] = 81443, - [SMALL_STATE(2772)] = 81556, - [SMALL_STATE(2773)] = 81619, - [SMALL_STATE(2774)] = 81690, - [SMALL_STATE(2775)] = 81761, - [SMALL_STATE(2776)] = 81832, - [SMALL_STATE(2777)] = 81895, - [SMALL_STATE(2778)] = 81962, - [SMALL_STATE(2779)] = 82035, - [SMALL_STATE(2780)] = 82102, - [SMALL_STATE(2781)] = 82167, - [SMALL_STATE(2782)] = 82232, - [SMALL_STATE(2783)] = 82303, - [SMALL_STATE(2784)] = 82374, - [SMALL_STATE(2785)] = 82441, - [SMALL_STATE(2786)] = 82554, - [SMALL_STATE(2787)] = 82625, - [SMALL_STATE(2788)] = 82688, - [SMALL_STATE(2789)] = 82753, - [SMALL_STATE(2790)] = 82816, - [SMALL_STATE(2791)] = 82881, - [SMALL_STATE(2792)] = 82952, - [SMALL_STATE(2793)] = 83015, - [SMALL_STATE(2794)] = 83078, - [SMALL_STATE(2795)] = 83145, - [SMALL_STATE(2796)] = 83260, - [SMALL_STATE(2797)] = 83327, - [SMALL_STATE(2798)] = 83392, - [SMALL_STATE(2799)] = 83463, - [SMALL_STATE(2800)] = 83528, - [SMALL_STATE(2801)] = 83599, - [SMALL_STATE(2802)] = 83670, - [SMALL_STATE(2803)] = 83741, - [SMALL_STATE(2804)] = 83806, - [SMALL_STATE(2805)] = 83874, - [SMALL_STATE(2806)] = 83940, - [SMALL_STATE(2807)] = 84006, - [SMALL_STATE(2808)] = 84076, - [SMALL_STATE(2809)] = 84146, - [SMALL_STATE(2810)] = 84216, - [SMALL_STATE(2811)] = 84280, - [SMALL_STATE(2812)] = 84350, - [SMALL_STATE(2813)] = 84412, - [SMALL_STATE(2814)] = 84474, - [SMALL_STATE(2815)] = 84544, - [SMALL_STATE(2816)] = 84612, - [SMALL_STATE(2817)] = 84682, - [SMALL_STATE(2818)] = 84746, - [SMALL_STATE(2819)] = 84808, - [SMALL_STATE(2820)] = 84878, - [SMALL_STATE(2821)] = 84948, - [SMALL_STATE(2822)] = 85018, - [SMALL_STATE(2823)] = 85088, - [SMALL_STATE(2824)] = 85152, - [SMALL_STATE(2825)] = 85214, - [SMALL_STATE(2826)] = 85284, - [SMALL_STATE(2827)] = 85354, - [SMALL_STATE(2828)] = 85418, - [SMALL_STATE(2829)] = 85486, - [SMALL_STATE(2830)] = 85550, - [SMALL_STATE(2831)] = 85620, - [SMALL_STATE(2832)] = 85690, - [SMALL_STATE(2833)] = 85758, - [SMALL_STATE(2834)] = 85822, - [SMALL_STATE(2835)] = 85886, - [SMALL_STATE(2836)] = 85952, - [SMALL_STATE(2837)] = 86016, - [SMALL_STATE(2838)] = 86084, - [SMALL_STATE(2839)] = 86146, - [SMALL_STATE(2840)] = 86216, - [SMALL_STATE(2841)] = 86296, - [SMALL_STATE(2842)] = 86358, - [SMALL_STATE(2843)] = 86422, - [SMALL_STATE(2844)] = 86484, - [SMALL_STATE(2845)] = 86562, - [SMALL_STATE(2846)] = 86632, - [SMALL_STATE(2847)] = 86710, - [SMALL_STATE(2848)] = 86780, - [SMALL_STATE(2849)] = 86842, - [SMALL_STATE(2850)] = 86912, - [SMALL_STATE(2851)] = 86982, - [SMALL_STATE(2852)] = 87044, - [SMALL_STATE(2853)] = 87110, - [SMALL_STATE(2854)] = 87178, - [SMALL_STATE(2855)] = 87240, - [SMALL_STATE(2856)] = 87302, - [SMALL_STATE(2857)] = 87370, - [SMALL_STATE(2858)] = 87440, - [SMALL_STATE(2859)] = 87508, - [SMALL_STATE(2860)] = 87570, - [SMALL_STATE(2861)] = 87640, - [SMALL_STATE(2862)] = 87704, - [SMALL_STATE(2863)] = 87774, - [SMALL_STATE(2864)] = 87836, - [SMALL_STATE(2865)] = 87906, - [SMALL_STATE(2866)] = 87968, - [SMALL_STATE(2867)] = 88030, - [SMALL_STATE(2868)] = 88092, - [SMALL_STATE(2869)] = 88154, - [SMALL_STATE(2870)] = 88222, - [SMALL_STATE(2871)] = 88288, - [SMALL_STATE(2872)] = 88350, - [SMALL_STATE(2873)] = 88416, - [SMALL_STATE(2874)] = 88478, - [SMALL_STATE(2875)] = 88540, - [SMALL_STATE(2876)] = 88602, - [SMALL_STATE(2877)] = 88666, - [SMALL_STATE(2878)] = 88734, - [SMALL_STATE(2879)] = 88800, - [SMALL_STATE(2880)] = 88868, - [SMALL_STATE(2881)] = 88945, - [SMALL_STATE(2882)] = 89006, - [SMALL_STATE(2883)] = 89083, - [SMALL_STATE(2884)] = 89144, - [SMALL_STATE(2885)] = 89209, - [SMALL_STATE(2886)] = 89270, - [SMALL_STATE(2887)] = 89331, - [SMALL_STATE(2888)] = 89392, - [SMALL_STATE(2889)] = 89453, - [SMALL_STATE(2890)] = 89514, - [SMALL_STATE(2891)] = 89575, - [SMALL_STATE(2892)] = 89640, - [SMALL_STATE(2893)] = 89705, - [SMALL_STATE(2894)] = 89768, - [SMALL_STATE(2895)] = 89833, - [SMALL_STATE(2896)] = 89896, - [SMALL_STATE(2897)] = 89961, - [SMALL_STATE(2898)] = 90022, - [SMALL_STATE(2899)] = 90083, - [SMALL_STATE(2900)] = 90148, - [SMALL_STATE(2901)] = 90209, - [SMALL_STATE(2902)] = 90274, - [SMALL_STATE(2903)] = 90339, - [SMALL_STATE(2904)] = 90404, - [SMALL_STATE(2905)] = 90465, - [SMALL_STATE(2906)] = 90530, - [SMALL_STATE(2907)] = 90591, - [SMALL_STATE(2908)] = 90658, - [SMALL_STATE(2909)] = 90721, - [SMALL_STATE(2910)] = 90782, - [SMALL_STATE(2911)] = 90843, - [SMALL_STATE(2912)] = 90904, - [SMALL_STATE(2913)] = 90969, - [SMALL_STATE(2914)] = 91034, - [SMALL_STATE(2915)] = 91099, - [SMALL_STATE(2916)] = 91160, - [SMALL_STATE(2917)] = 91221, - [SMALL_STATE(2918)] = 91290, - [SMALL_STATE(2919)] = 91351, - [SMALL_STATE(2920)] = 91412, - [SMALL_STATE(2921)] = 91473, - [SMALL_STATE(2922)] = 91534, - [SMALL_STATE(2923)] = 91595, - [SMALL_STATE(2924)] = 91666, - [SMALL_STATE(2925)] = 91727, - [SMALL_STATE(2926)] = 91788, - [SMALL_STATE(2927)] = 91849, - [SMALL_STATE(2928)] = 91910, - [SMALL_STATE(2929)] = 91971, - [SMALL_STATE(2930)] = 92034, - [SMALL_STATE(2931)] = 92099, - [SMALL_STATE(2932)] = 92162, - [SMALL_STATE(2933)] = 92225, - [SMALL_STATE(2934)] = 92290, - [SMALL_STATE(2935)] = 92355, - [SMALL_STATE(2936)] = 92416, - [SMALL_STATE(2937)] = 92479, - [SMALL_STATE(2938)] = 92542, - [SMALL_STATE(2939)] = 92605, - [SMALL_STATE(2940)] = 92670, - [SMALL_STATE(2941)] = 92735, - [SMALL_STATE(2942)] = 92800, - [SMALL_STATE(2943)] = 92865, - [SMALL_STATE(2944)] = 92930, - [SMALL_STATE(2945)] = 92995, - [SMALL_STATE(2946)] = 93058, - [SMALL_STATE(2947)] = 93122, - [SMALL_STATE(2948)] = 93182, - [SMALL_STATE(2949)] = 93246, - [SMALL_STATE(2950)] = 93306, - [SMALL_STATE(2951)] = 93366, - [SMALL_STATE(2952)] = 93426, - [SMALL_STATE(2953)] = 93486, - [SMALL_STATE(2954)] = 93546, - [SMALL_STATE(2955)] = 93606, - [SMALL_STATE(2956)] = 93666, - [SMALL_STATE(2957)] = 93726, - [SMALL_STATE(2958)] = 93786, - [SMALL_STATE(2959)] = 93846, - [SMALL_STATE(2960)] = 93906, - [SMALL_STATE(2961)] = 93966, - [SMALL_STATE(2962)] = 94026, - [SMALL_STATE(2963)] = 94086, - [SMALL_STATE(2964)] = 94148, - [SMALL_STATE(2965)] = 94208, - [SMALL_STATE(2966)] = 94268, - [SMALL_STATE(2967)] = 94330, - [SMALL_STATE(2968)] = 94390, - [SMALL_STATE(2969)] = 94450, - [SMALL_STATE(2970)] = 94510, - [SMALL_STATE(2971)] = 94572, - [SMALL_STATE(2972)] = 94632, - [SMALL_STATE(2973)] = 94692, - [SMALL_STATE(2974)] = 94752, - [SMALL_STATE(2975)] = 94812, - [SMALL_STATE(2976)] = 94878, - [SMALL_STATE(2977)] = 94938, - [SMALL_STATE(2978)] = 95000, - [SMALL_STATE(2979)] = 95074, - [SMALL_STATE(2980)] = 95136, - [SMALL_STATE(2981)] = 95196, - [SMALL_STATE(2982)] = 95256, - [SMALL_STATE(2983)] = 95316, - [SMALL_STATE(2984)] = 95376, - [SMALL_STATE(2985)] = 95436, - [SMALL_STATE(2986)] = 95496, - [SMALL_STATE(2987)] = 95562, - [SMALL_STATE(2988)] = 95628, - [SMALL_STATE(2989)] = 95688, - [SMALL_STATE(2990)] = 95748, - [SMALL_STATE(2991)] = 95812, - [SMALL_STATE(2992)] = 95874, - [SMALL_STATE(2993)] = 95934, - [SMALL_STATE(2994)] = 95994, - [SMALL_STATE(2995)] = 96054, - [SMALL_STATE(2996)] = 96120, - [SMALL_STATE(2997)] = 96186, - [SMALL_STATE(2998)] = 96246, - [SMALL_STATE(2999)] = 96308, - [SMALL_STATE(3000)] = 96370, - [SMALL_STATE(3001)] = 96430, - [SMALL_STATE(3002)] = 96490, - [SMALL_STATE(3003)] = 96556, - [SMALL_STATE(3004)] = 96616, - [SMALL_STATE(3005)] = 96676, - [SMALL_STATE(3006)] = 96738, - [SMALL_STATE(3007)] = 96798, - [SMALL_STATE(3008)] = 96864, - [SMALL_STATE(3009)] = 96924, - [SMALL_STATE(3010)] = 96984, - [SMALL_STATE(3011)] = 97050, - [SMALL_STATE(3012)] = 97110, - [SMALL_STATE(3013)] = 97174, - [SMALL_STATE(3014)] = 97234, - [SMALL_STATE(3015)] = 97294, - [SMALL_STATE(3016)] = 97354, - [SMALL_STATE(3017)] = 97414, - [SMALL_STATE(3018)] = 97480, - [SMALL_STATE(3019)] = 97546, - [SMALL_STATE(3020)] = 97606, - [SMALL_STATE(3021)] = 97672, - [SMALL_STATE(3022)] = 97732, - [SMALL_STATE(3023)] = 97792, - [SMALL_STATE(3024)] = 97852, - [SMALL_STATE(3025)] = 97916, - [SMALL_STATE(3026)] = 97976, - [SMALL_STATE(3027)] = 98036, - [SMALL_STATE(3028)] = 98098, - [SMALL_STATE(3029)] = 98158, - [SMALL_STATE(3030)] = 98224, - [SMALL_STATE(3031)] = 98284, - [SMALL_STATE(3032)] = 98346, - [SMALL_STATE(3033)] = 98406, - [SMALL_STATE(3034)] = 98466, - [SMALL_STATE(3035)] = 98528, - [SMALL_STATE(3036)] = 98588, - [SMALL_STATE(3037)] = 98647, - [SMALL_STATE(3038)] = 98706, - [SMALL_STATE(3039)] = 98765, - [SMALL_STATE(3040)] = 98824, - [SMALL_STATE(3041)] = 98883, - [SMALL_STATE(3042)] = 98942, - [SMALL_STATE(3043)] = 99001, - [SMALL_STATE(3044)] = 99064, - [SMALL_STATE(3045)] = 99123, - [SMALL_STATE(3046)] = 99182, - [SMALL_STATE(3047)] = 99243, - [SMALL_STATE(3048)] = 99304, - [SMALL_STATE(3049)] = 99367, - [SMALL_STATE(3050)] = 99430, - [SMALL_STATE(3051)] = 99489, - [SMALL_STATE(3052)] = 99548, - [SMALL_STATE(3053)] = 99607, - [SMALL_STATE(3054)] = 99668, - [SMALL_STATE(3055)] = 99731, - [SMALL_STATE(3056)] = 99792, - [SMALL_STATE(3057)] = 99853, - [SMALL_STATE(3058)] = 99914, - [SMALL_STATE(3059)] = 99975, - [SMALL_STATE(3060)] = 100034, - [SMALL_STATE(3061)] = 100095, - [SMALL_STATE(3062)] = 100156, - [SMALL_STATE(3063)] = 100217, - [SMALL_STATE(3064)] = 100276, - [SMALL_STATE(3065)] = 100335, - [SMALL_STATE(3066)] = 100394, - [SMALL_STATE(3067)] = 100453, - [SMALL_STATE(3068)] = 100514, - [SMALL_STATE(3069)] = 100587, - [SMALL_STATE(3070)] = 100646, - [SMALL_STATE(3071)] = 100705, - [SMALL_STATE(3072)] = 100764, - [SMALL_STATE(3073)] = 100823, - [SMALL_STATE(3074)] = 100882, - [SMALL_STATE(3075)] = 100941, - [SMALL_STATE(3076)] = 101004, - [SMALL_STATE(3077)] = 101063, - [SMALL_STATE(3078)] = 101124, - [SMALL_STATE(3079)] = 101183, - [SMALL_STATE(3080)] = 101242, - [SMALL_STATE(3081)] = 101301, - [SMALL_STATE(3082)] = 101360, - [SMALL_STATE(3083)] = 101419, - [SMALL_STATE(3084)] = 101478, - [SMALL_STATE(3085)] = 101539, - [SMALL_STATE(3086)] = 101598, - [SMALL_STATE(3087)] = 101657, - [SMALL_STATE(3088)] = 101716, - [SMALL_STATE(3089)] = 101777, - [SMALL_STATE(3090)] = 101836, - [SMALL_STATE(3091)] = 101899, - [SMALL_STATE(3092)] = 101958, - [SMALL_STATE(3093)] = 102017, - [SMALL_STATE(3094)] = 102078, - [SMALL_STATE(3095)] = 102137, - [SMALL_STATE(3096)] = 102196, - [SMALL_STATE(3097)] = 102255, - [SMALL_STATE(3098)] = 102314, - [SMALL_STATE(3099)] = 102373, - [SMALL_STATE(3100)] = 102432, - [SMALL_STATE(3101)] = 102491, - [SMALL_STATE(3102)] = 102550, - [SMALL_STATE(3103)] = 102609, - [SMALL_STATE(3104)] = 102668, - [SMALL_STATE(3105)] = 102727, - [SMALL_STATE(3106)] = 102786, - [SMALL_STATE(3107)] = 102845, - [SMALL_STATE(3108)] = 102904, - [SMALL_STATE(3109)] = 102963, - [SMALL_STATE(3110)] = 103022, - [SMALL_STATE(3111)] = 103081, - [SMALL_STATE(3112)] = 103140, - [SMALL_STATE(3113)] = 103199, - [SMALL_STATE(3114)] = 103258, - [SMALL_STATE(3115)] = 103317, - [SMALL_STATE(3116)] = 103376, - [SMALL_STATE(3117)] = 103435, - [SMALL_STATE(3118)] = 103494, - [SMALL_STATE(3119)] = 103553, - [SMALL_STATE(3120)] = 103612, - [SMALL_STATE(3121)] = 103671, - [SMALL_STATE(3122)] = 103732, - [SMALL_STATE(3123)] = 103790, - [SMALL_STATE(3124)] = 103848, - [SMALL_STATE(3125)] = 103914, - [SMALL_STATE(3126)] = 103972, - [SMALL_STATE(3127)] = 104030, - [SMALL_STATE(3128)] = 104088, - [SMALL_STATE(3129)] = 104148, - [SMALL_STATE(3130)] = 104206, - [SMALL_STATE(3131)] = 104268, - [SMALL_STATE(3132)] = 104326, - [SMALL_STATE(3133)] = 104384, - [SMALL_STATE(3134)] = 104442, - [SMALL_STATE(3135)] = 104500, - [SMALL_STATE(3136)] = 104558, - [SMALL_STATE(3137)] = 104616, - [SMALL_STATE(3138)] = 104674, - [SMALL_STATE(3139)] = 104734, - [SMALL_STATE(3140)] = 104792, - [SMALL_STATE(3141)] = 104850, - [SMALL_STATE(3142)] = 104908, - [SMALL_STATE(3143)] = 104966, - [SMALL_STATE(3144)] = 105024, - [SMALL_STATE(3145)] = 105082, - [SMALL_STATE(3146)] = 105140, - [SMALL_STATE(3147)] = 105198, - [SMALL_STATE(3148)] = 105256, - [SMALL_STATE(3149)] = 105314, - [SMALL_STATE(3150)] = 105372, - [SMALL_STATE(3151)] = 105430, - [SMALL_STATE(3152)] = 105488, - [SMALL_STATE(3153)] = 105546, - [SMALL_STATE(3154)] = 105604, - [SMALL_STATE(3155)] = 105662, - [SMALL_STATE(3156)] = 105720, - [SMALL_STATE(3157)] = 105778, - [SMALL_STATE(3158)] = 105836, - [SMALL_STATE(3159)] = 105894, - [SMALL_STATE(3160)] = 105952, - [SMALL_STATE(3161)] = 106010, - [SMALL_STATE(3162)] = 106068, - [SMALL_STATE(3163)] = 106126, - [SMALL_STATE(3164)] = 106184, - [SMALL_STATE(3165)] = 106242, - [SMALL_STATE(3166)] = 106300, - [SMALL_STATE(3167)] = 106358, - [SMALL_STATE(3168)] = 106416, - [SMALL_STATE(3169)] = 106474, - [SMALL_STATE(3170)] = 106532, - [SMALL_STATE(3171)] = 106590, - [SMALL_STATE(3172)] = 106650, - [SMALL_STATE(3173)] = 106708, - [SMALL_STATE(3174)] = 106770, - [SMALL_STATE(3175)] = 106828, - [SMALL_STATE(3176)] = 106886, - [SMALL_STATE(3177)] = 106944, - [SMALL_STATE(3178)] = 107002, - [SMALL_STATE(3179)] = 107060, - [SMALL_STATE(3180)] = 107118, - [SMALL_STATE(3181)] = 107176, - [SMALL_STATE(3182)] = 107234, - [SMALL_STATE(3183)] = 107292, - [SMALL_STATE(3184)] = 107350, - [SMALL_STATE(3185)] = 107408, - [SMALL_STATE(3186)] = 107466, - [SMALL_STATE(3187)] = 107524, - [SMALL_STATE(3188)] = 107582, - [SMALL_STATE(3189)] = 107640, - [SMALL_STATE(3190)] = 107698, - [SMALL_STATE(3191)] = 107756, - [SMALL_STATE(3192)] = 107814, - [SMALL_STATE(3193)] = 107872, - [SMALL_STATE(3194)] = 107930, - [SMALL_STATE(3195)] = 107988, - [SMALL_STATE(3196)] = 108045, - [SMALL_STATE(3197)] = 108102, - [SMALL_STATE(3198)] = 108167, - [SMALL_STATE(3199)] = 108224, - [SMALL_STATE(3200)] = 108289, - [SMALL_STATE(3201)] = 108348, - [SMALL_STATE(3202)] = 108405, - [SMALL_STATE(3203)] = 108462, - [SMALL_STATE(3204)] = 108521, - [SMALL_STATE(3205)] = 108581, - [SMALL_STATE(3206)] = 108657, - [SMALL_STATE(3207)] = 108713, - [SMALL_STATE(3208)] = 108777, - [SMALL_STATE(3209)] = 108841, - [SMALL_STATE(3210)] = 108917, - [SMALL_STATE(3211)] = 108993, - [SMALL_STATE(3212)] = 109049, - [SMALL_STATE(3213)] = 109105, - [SMALL_STATE(3214)] = 109161, - [SMALL_STATE(3215)] = 109237, - [SMALL_STATE(3216)] = 109313, - [SMALL_STATE(3217)] = 109389, - [SMALL_STATE(3218)] = 109449, - [SMALL_STATE(3219)] = 109513, - [SMALL_STATE(3220)] = 109589, - [SMALL_STATE(3221)] = 109665, - [SMALL_STATE(3222)] = 109741, - [SMALL_STATE(3223)] = 109817, - [SMALL_STATE(3224)] = 109893, - [SMALL_STATE(3225)] = 109969, - [SMALL_STATE(3226)] = 110045, - [SMALL_STATE(3227)] = 110121, - [SMALL_STATE(3228)] = 110187, - [SMALL_STATE(3229)] = 110263, - [SMALL_STATE(3230)] = 110339, - [SMALL_STATE(3231)] = 110404, - [SMALL_STATE(3232)] = 110463, - [SMALL_STATE(3233)] = 110522, - [SMALL_STATE(3234)] = 110579, - [SMALL_STATE(3235)] = 110636, - [SMALL_STATE(3236)] = 110694, - [SMALL_STATE(3237)] = 110748, - [SMALL_STATE(3238)] = 110806, - [SMALL_STATE(3239)] = 110864, - [SMALL_STATE(3240)] = 110922, - [SMALL_STATE(3241)] = 110980, - [SMALL_STATE(3242)] = 111038, - [SMALL_STATE(3243)] = 111094, - [SMALL_STATE(3244)] = 111150, - [SMALL_STATE(3245)] = 111204, - [SMALL_STATE(3246)] = 111258, - [SMALL_STATE(3247)] = 111312, - [SMALL_STATE(3248)] = 111366, - [SMALL_STATE(3249)] = 111436, - [SMALL_STATE(3250)] = 111490, - [SMALL_STATE(3251)] = 111548, - [SMALL_STATE(3252)] = 111606, - [SMALL_STATE(3253)] = 111664, - [SMALL_STATE(3254)] = 111718, - [SMALL_STATE(3255)] = 111775, - [SMALL_STATE(3256)] = 111842, - [SMALL_STATE(3257)] = 111899, - [SMALL_STATE(3258)] = 111956, - [SMALL_STATE(3259)] = 112013, - [SMALL_STATE(3260)] = 112070, - [SMALL_STATE(3261)] = 112127, - [SMALL_STATE(3262)] = 112184, - [SMALL_STATE(3263)] = 112237, - [SMALL_STATE(3264)] = 112294, - [SMALL_STATE(3265)] = 112351, - [SMALL_STATE(3266)] = 112404, - [SMALL_STATE(3267)] = 112457, - [SMALL_STATE(3268)] = 112512, - [SMALL_STATE(3269)] = 112565, - [SMALL_STATE(3270)] = 112618, - [SMALL_STATE(3271)] = 112686, - [SMALL_STATE(3272)] = 112760, - [SMALL_STATE(3273)] = 112824, - [SMALL_STATE(3274)] = 112874, - [SMALL_STATE(3275)] = 112928, - [SMALL_STATE(3276)] = 112992, - [SMALL_STATE(3277)] = 113042, - [SMALL_STATE(3278)] = 113092, - [SMALL_STATE(3279)] = 113142, - [SMALL_STATE(3280)] = 113210, - [SMALL_STATE(3281)] = 113272, - [SMALL_STATE(3282)] = 113342, - [SMALL_STATE(3283)] = 113400, - [SMALL_STATE(3284)] = 113480, - [SMALL_STATE(3285)] = 113562, - [SMALL_STATE(3286)] = 113646, - [SMALL_STATE(3287)] = 113718, - [SMALL_STATE(3288)] = 113784, - [SMALL_STATE(3289)] = 113858, - [SMALL_STATE(3290)] = 113934, - [SMALL_STATE(3291)] = 114012, - [SMALL_STATE(3292)] = 114066, - [SMALL_STATE(3293)] = 114130, - [SMALL_STATE(3294)] = 114196, - [SMALL_STATE(3295)] = 114264, - [SMALL_STATE(3296)] = 114324, - [SMALL_STATE(3297)] = 114386, - [SMALL_STATE(3298)] = 114454, - [SMALL_STATE(3299)] = 114524, - [SMALL_STATE(3300)] = 114580, - [SMALL_STATE(3301)] = 114638, - [SMALL_STATE(3302)] = 114716, - [SMALL_STATE(3303)] = 114796, - [SMALL_STATE(3304)] = 114876, - [SMALL_STATE(3305)] = 114958, - [SMALL_STATE(3306)] = 115040, - [SMALL_STATE(3307)] = 115124, - [SMALL_STATE(3308)] = 115194, - [SMALL_STATE(3309)] = 115266, - [SMALL_STATE(3310)] = 115330, - [SMALL_STATE(3311)] = 115396, - [SMALL_STATE(3312)] = 115468, - [SMALL_STATE(3313)] = 115542, - [SMALL_STATE(3314)] = 115616, - [SMALL_STATE(3315)] = 115692, - [SMALL_STATE(3316)] = 115768, - [SMALL_STATE(3317)] = 115846, - [SMALL_STATE(3318)] = 115914, - [SMALL_STATE(3319)] = 115976, - [SMALL_STATE(3320)] = 116046, - [SMALL_STATE(3321)] = 116104, - [SMALL_STATE(3322)] = 116184, - [SMALL_STATE(3323)] = 116266, - [SMALL_STATE(3324)] = 116350, - [SMALL_STATE(3325)] = 116422, - [SMALL_STATE(3326)] = 116488, - [SMALL_STATE(3327)] = 116562, - [SMALL_STATE(3328)] = 116638, - [SMALL_STATE(3329)] = 116716, - [SMALL_STATE(3330)] = 116766, - [SMALL_STATE(3331)] = 116826, - [SMALL_STATE(3332)] = 116894, - [SMALL_STATE(3333)] = 116950, - [SMALL_STATE(3334)] = 117028, - [SMALL_STATE(3335)] = 117108, - [SMALL_STATE(3336)] = 117190, - [SMALL_STATE(3337)] = 117260, - [SMALL_STATE(3338)] = 117324, - [SMALL_STATE(3339)] = 117396, - [SMALL_STATE(3340)] = 117470, - [SMALL_STATE(3341)] = 117546, - [SMALL_STATE(3342)] = 117612, - [SMALL_STATE(3343)] = 117680, - [SMALL_STATE(3344)] = 117740, - [SMALL_STATE(3345)] = 117802, - [SMALL_STATE(3346)] = 117870, - [SMALL_STATE(3347)] = 117940, - [SMALL_STATE(3348)] = 117996, - [SMALL_STATE(3349)] = 118054, - [SMALL_STATE(3350)] = 118132, - [SMALL_STATE(3351)] = 118212, - [SMALL_STATE(3352)] = 118292, - [SMALL_STATE(3353)] = 118374, - [SMALL_STATE(3354)] = 118456, - [SMALL_STATE(3355)] = 118540, - [SMALL_STATE(3356)] = 118610, - [SMALL_STATE(3357)] = 118682, - [SMALL_STATE(3358)] = 118746, - [SMALL_STATE(3359)] = 118812, - [SMALL_STATE(3360)] = 118884, - [SMALL_STATE(3361)] = 118958, - [SMALL_STATE(3362)] = 119032, - [SMALL_STATE(3363)] = 119108, - [SMALL_STATE(3364)] = 119184, - [SMALL_STATE(3365)] = 119262, - [SMALL_STATE(3366)] = 119312, - [SMALL_STATE(3367)] = 119378, - [SMALL_STATE(3368)] = 119438, - [SMALL_STATE(3369)] = 119506, - [SMALL_STATE(3370)] = 119562, - [SMALL_STATE(3371)] = 119640, - [SMALL_STATE(3372)] = 119720, - [SMALL_STATE(3373)] = 119802, - [SMALL_STATE(3374)] = 119872, - [SMALL_STATE(3375)] = 119936, - [SMALL_STATE(3376)] = 120008, - [SMALL_STATE(3377)] = 120082, - [SMALL_STATE(3378)] = 120158, - [SMALL_STATE(3379)] = 120222, - [SMALL_STATE(3380)] = 120292, - [SMALL_STATE(3381)] = 120356, - [SMALL_STATE(3382)] = 120414, - [SMALL_STATE(3383)] = 120480, - [SMALL_STATE(3384)] = 120534, - [SMALL_STATE(3385)] = 120610, - [SMALL_STATE(3386)] = 120688, - [SMALL_STATE(3387)] = 120768, - [SMALL_STATE(3388)] = 120830, - [SMALL_STATE(3389)] = 120900, - [SMALL_STATE(3390)] = 120972, - [SMALL_STATE(3391)] = 121038, - [SMALL_STATE(3392)] = 121113, - [SMALL_STATE(3393)] = 121166, - [SMALL_STATE(3394)] = 121239, - [SMALL_STATE(3395)] = 121306, - [SMALL_STATE(3396)] = 121383, - [SMALL_STATE(3397)] = 121462, - [SMALL_STATE(3398)] = 121523, - [SMALL_STATE(3399)] = 121584, - [SMALL_STATE(3400)] = 121645, - [SMALL_STATE(3401)] = 121706, - [SMALL_STATE(3402)] = 121773, - [SMALL_STATE(3403)] = 121834, - [SMALL_STATE(3404)] = 121903, - [SMALL_STATE(3405)] = 121964, - [SMALL_STATE(3406)] = 122031, - [SMALL_STATE(3407)] = 122100, - [SMALL_STATE(3408)] = 122171, - [SMALL_STATE(3409)] = 122232, - [SMALL_STATE(3410)] = 122293, - [SMALL_STATE(3411)] = 122352, - [SMALL_STATE(3412)] = 122403, - [SMALL_STATE(3413)] = 122454, - [SMALL_STATE(3414)] = 122515, - [SMALL_STATE(3415)] = 122576, - [SMALL_STATE(3416)] = 122629, - [SMALL_STATE(3417)] = 122692, - [SMALL_STATE(3418)] = 122749, - [SMALL_STATE(3419)] = 122814, - [SMALL_STATE(3420)] = 122875, - [SMALL_STATE(3421)] = 122941, - [SMALL_STATE(3422)] = 122995, - [SMALL_STATE(3423)] = 123061, - [SMALL_STATE(3424)] = 123147, - [SMALL_STATE(3425)] = 123233, - [SMALL_STATE(3426)] = 123299, - [SMALL_STATE(3427)] = 123353, - [SMALL_STATE(3428)] = 123419, - [SMALL_STATE(3429)] = 123474, - [SMALL_STATE(3430)] = 123523, - [SMALL_STATE(3431)] = 123586, - [SMALL_STATE(3432)] = 123641, - [SMALL_STATE(3433)] = 123704, - [SMALL_STATE(3434)] = 123759, - [SMALL_STATE(3435)] = 123814, - [SMALL_STATE(3436)] = 123869, - [SMALL_STATE(3437)] = 123932, - [SMALL_STATE(3438)] = 123987, - [SMALL_STATE(3439)] = 124042, - [SMALL_STATE(3440)] = 124093, - [SMALL_STATE(3441)] = 124144, - [SMALL_STATE(3442)] = 124197, - [SMALL_STATE(3443)] = 124250, - [SMALL_STATE(3444)] = 124305, - [SMALL_STATE(3445)] = 124388, - [SMALL_STATE(3446)] = 124443, - [SMALL_STATE(3447)] = 124498, - [SMALL_STATE(3448)] = 124553, - [SMALL_STATE(3449)] = 124608, - [SMALL_STATE(3450)] = 124691, - [SMALL_STATE(3451)] = 124754, - [SMALL_STATE(3452)] = 124817, - [SMALL_STATE(3453)] = 124880, - [SMALL_STATE(3454)] = 124943, - [SMALL_STATE(3455)] = 124998, - [SMALL_STATE(3456)] = 125053, - [SMALL_STATE(3457)] = 125108, - [SMALL_STATE(3458)] = 125163, - [SMALL_STATE(3459)] = 125218, - [SMALL_STATE(3460)] = 125273, - [SMALL_STATE(3461)] = 125328, - [SMALL_STATE(3462)] = 125383, - [SMALL_STATE(3463)] = 125438, - [SMALL_STATE(3464)] = 125493, - [SMALL_STATE(3465)] = 125548, - [SMALL_STATE(3466)] = 125603, - [SMALL_STATE(3467)] = 125658, - [SMALL_STATE(3468)] = 125713, - [SMALL_STATE(3469)] = 125768, - [SMALL_STATE(3470)] = 125823, - [SMALL_STATE(3471)] = 125875, - [SMALL_STATE(3472)] = 125923, - [SMALL_STATE(3473)] = 125975, - [SMALL_STATE(3474)] = 126023, - [SMALL_STATE(3475)] = 126085, - [SMALL_STATE(3476)] = 126135, - [SMALL_STATE(3477)] = 126187, - [SMALL_STATE(3478)] = 126235, - [SMALL_STATE(3479)] = 126283, - [SMALL_STATE(3480)] = 126333, - [SMALL_STATE(3481)] = 126385, - [SMALL_STATE(3482)] = 126437, - [SMALL_STATE(3483)] = 126489, - [SMALL_STATE(3484)] = 126537, - [SMALL_STATE(3485)] = 126586, - [SMALL_STATE(3486)] = 126633, - [SMALL_STATE(3487)] = 126680, - [SMALL_STATE(3488)] = 126727, - [SMALL_STATE(3489)] = 126774, - [SMALL_STATE(3490)] = 126823, - [SMALL_STATE(3491)] = 126870, - [SMALL_STATE(3492)] = 126921, - [SMALL_STATE(3493)] = 126970, - [SMALL_STATE(3494)] = 127021, - [SMALL_STATE(3495)] = 127072, - [SMALL_STATE(3496)] = 127118, - [SMALL_STATE(3497)] = 127164, - [SMALL_STATE(3498)] = 127210, - [SMALL_STATE(3499)] = 127258, - [SMALL_STATE(3500)] = 127304, - [SMALL_STATE(3501)] = 127352, - [SMALL_STATE(3502)] = 127396, - [SMALL_STATE(3503)] = 127450, - [SMALL_STATE(3504)] = 127504, - [SMALL_STATE(3505)] = 127553, - [SMALL_STATE(3506)] = 127598, - [SMALL_STATE(3507)] = 127647, - [SMALL_STATE(3508)] = 127700, - [SMALL_STATE(3509)] = 127745, - [SMALL_STATE(3510)] = 127798, - [SMALL_STATE(3511)] = 127843, - [SMALL_STATE(3512)] = 127888, - [SMALL_STATE(3513)] = 127937, - [SMALL_STATE(3514)] = 127990, - [SMALL_STATE(3515)] = 128039, - [SMALL_STATE(3516)] = 128087, - [SMALL_STATE(3517)] = 128133, - [SMALL_STATE(3518)] = 128181, - [SMALL_STATE(3519)] = 128227, - [SMALL_STATE(3520)] = 128273, - [SMALL_STATE(3521)] = 128321, - [SMALL_STATE(3522)] = 128369, - [SMALL_STATE(3523)] = 128415, - [SMALL_STATE(3524)] = 128458, - [SMALL_STATE(3525)] = 128505, - [SMALL_STATE(3526)] = 128594, - [SMALL_STATE(3527)] = 128645, - [SMALL_STATE(3528)] = 128692, - [SMALL_STATE(3529)] = 128735, - [SMALL_STATE(3530)] = 128780, - [SMALL_STATE(3531)] = 128823, - [SMALL_STATE(3532)] = 128868, - [SMALL_STATE(3533)] = 128911, - [SMALL_STATE(3534)] = 128958, - [SMALL_STATE(3535)] = 129005, - [SMALL_STATE(3536)] = 129050, - [SMALL_STATE(3537)] = 129097, - [SMALL_STATE(3538)] = 129146, - [SMALL_STATE(3539)] = 129193, - [SMALL_STATE(3540)] = 129240, - [SMALL_STATE(3541)] = 129287, - [SMALL_STATE(3542)] = 129334, - [SMALL_STATE(3543)] = 129381, - [SMALL_STATE(3544)] = 129424, - [SMALL_STATE(3545)] = 129467, - [SMALL_STATE(3546)] = 129514, - [SMALL_STATE(3547)] = 129557, - [SMALL_STATE(3548)] = 129602, - [SMALL_STATE(3549)] = 129645, - [SMALL_STATE(3550)] = 129734, - [SMALL_STATE(3551)] = 129781, - [SMALL_STATE(3552)] = 129828, - [SMALL_STATE(3553)] = 129875, - [SMALL_STATE(3554)] = 129922, - [SMALL_STATE(3555)] = 129965, - [SMALL_STATE(3556)] = 130012, - [SMALL_STATE(3557)] = 130059, - [SMALL_STATE(3558)] = 130107, - [SMALL_STATE(3559)] = 130177, - [SMALL_STATE(3560)] = 130247, - [SMALL_STATE(3561)] = 130319, - [SMALL_STATE(3562)] = 130391, - [SMALL_STATE(3563)] = 130465, - [SMALL_STATE(3564)] = 130507, - [SMALL_STATE(3565)] = 130567, - [SMALL_STATE(3566)] = 130629, - [SMALL_STATE(3567)] = 130683, - [SMALL_STATE(3568)] = 130727, - [SMALL_STATE(3569)] = 130783, - [SMALL_STATE(3570)] = 130845, - [SMALL_STATE(3571)] = 130909, - [SMALL_STATE(3572)] = 130973, - [SMALL_STATE(3573)] = 131039, - [SMALL_STATE(3574)] = 131105, - [SMALL_STATE(3575)] = 131173, - [SMALL_STATE(3576)] = 131231, - [SMALL_STATE(3577)] = 131283, - [SMALL_STATE(3578)] = 131343, - [SMALL_STATE(3579)] = 131391, - [SMALL_STATE(3580)] = 131461, - [SMALL_STATE(3581)] = 131533, - [SMALL_STATE(3582)] = 131607, - [SMALL_STATE(3583)] = 131669, - [SMALL_STATE(3584)] = 131725, - [SMALL_STATE(3585)] = 131789, - [SMALL_STATE(3586)] = 131855, - [SMALL_STATE(3587)] = 131923, - [SMALL_STATE(3588)] = 131991, - [SMALL_STATE(3589)] = 132035, - [SMALL_STATE(3590)] = 132079, - [SMALL_STATE(3591)] = 132125, - [SMALL_STATE(3592)] = 132181, - [SMALL_STATE(3593)] = 132231, - [SMALL_STATE(3594)] = 132289, - [SMALL_STATE(3595)] = 132335, - [SMALL_STATE(3596)] = 132403, - [SMALL_STATE(3597)] = 132473, - [SMALL_STATE(3598)] = 132545, - [SMALL_STATE(3599)] = 132587, - [SMALL_STATE(3600)] = 132647, - [SMALL_STATE(3601)] = 132701, - [SMALL_STATE(3602)] = 132743, - [SMALL_STATE(3603)] = 132805, - [SMALL_STATE(3604)] = 132847, - [SMALL_STATE(3605)] = 132889, - [SMALL_STATE(3606)] = 132953, - [SMALL_STATE(3607)] = 133019, - [SMALL_STATE(3608)] = 133075, - [SMALL_STATE(3609)] = 133121, - [SMALL_STATE(3610)] = 133179, - [SMALL_STATE(3611)] = 133221, - [SMALL_STATE(3612)] = 133271, - [SMALL_STATE(3613)] = 133323, - [SMALL_STATE(3614)] = 133381, - [SMALL_STATE(3615)] = 133441, - [SMALL_STATE(3616)] = 133487, - [SMALL_STATE(3617)] = 133533, - [SMALL_STATE(3618)] = 133581, - [SMALL_STATE(3619)] = 133649, - [SMALL_STATE(3620)] = 133719, - [SMALL_STATE(3621)] = 133789, - [SMALL_STATE(3622)] = 133835, - [SMALL_STATE(3623)] = 133907, - [SMALL_STATE(3624)] = 133979, - [SMALL_STATE(3625)] = 134053, - [SMALL_STATE(3626)] = 134113, - [SMALL_STATE(3627)] = 134175, - [SMALL_STATE(3628)] = 134229, - [SMALL_STATE(3629)] = 134285, - [SMALL_STATE(3630)] = 134347, - [SMALL_STATE(3631)] = 134391, - [SMALL_STATE(3632)] = 134449, - [SMALL_STATE(3633)] = 134501, - [SMALL_STATE(3634)] = 134565, - [SMALL_STATE(3635)] = 134629, - [SMALL_STATE(3636)] = 134695, - [SMALL_STATE(3637)] = 134761, - [SMALL_STATE(3638)] = 134809, - [SMALL_STATE(3639)] = 134869, - [SMALL_STATE(3640)] = 134937, - [SMALL_STATE(3641)] = 134985, - [SMALL_STATE(3642)] = 135033, - [SMALL_STATE(3643)] = 135089, - [SMALL_STATE(3644)] = 135139, - [SMALL_STATE(3645)] = 135187, - [SMALL_STATE(3646)] = 135235, - [SMALL_STATE(3647)] = 135293, - [SMALL_STATE(3648)] = 135339, - [SMALL_STATE(3649)] = 135407, - [SMALL_STATE(3650)] = 135455, - [SMALL_STATE(3651)] = 135525, - [SMALL_STATE(3652)] = 135597, - [SMALL_STATE(3653)] = 135657, - [SMALL_STATE(3654)] = 135711, - [SMALL_STATE(3655)] = 135773, - [SMALL_STATE(3656)] = 135843, - [SMALL_STATE(3657)] = 135915, - [SMALL_STATE(3658)] = 135979, - [SMALL_STATE(3659)] = 136045, - [SMALL_STATE(3660)] = 136109, - [SMALL_STATE(3661)] = 136151, - [SMALL_STATE(3662)] = 136197, - [SMALL_STATE(3663)] = 136263, - [SMALL_STATE(3664)] = 136319, - [SMALL_STATE(3665)] = 136377, - [SMALL_STATE(3666)] = 136427, - [SMALL_STATE(3667)] = 136479, - [SMALL_STATE(3668)] = 136553, - [SMALL_STATE(3669)] = 136601, - [SMALL_STATE(3670)] = 136659, - [SMALL_STATE(3671)] = 136703, - [SMALL_STATE(3672)] = 136749, - [SMALL_STATE(3673)] = 136791, - [SMALL_STATE(3674)] = 136851, - [SMALL_STATE(3675)] = 136897, - [SMALL_STATE(3676)] = 136939, - [SMALL_STATE(3677)] = 136987, - [SMALL_STATE(3678)] = 137055, - [SMALL_STATE(3679)] = 137117, - [SMALL_STATE(3680)] = 137173, - [SMALL_STATE(3681)] = 137256, - [SMALL_STATE(3682)] = 137339, - [SMALL_STATE(3683)] = 137412, - [SMALL_STATE(3684)] = 137495, - [SMALL_STATE(3685)] = 137578, - [SMALL_STATE(3686)] = 137661, - [SMALL_STATE(3687)] = 137744, - [SMALL_STATE(3688)] = 137827, - [SMALL_STATE(3689)] = 137872, - [SMALL_STATE(3690)] = 137955, - [SMALL_STATE(3691)] = 138038, - [SMALL_STATE(3692)] = 138121, - [SMALL_STATE(3693)] = 138204, - [SMALL_STATE(3694)] = 138287, - [SMALL_STATE(3695)] = 138370, - [SMALL_STATE(3696)] = 138453, - [SMALL_STATE(3697)] = 138536, - [SMALL_STATE(3698)] = 138619, - [SMALL_STATE(3699)] = 138702, - [SMALL_STATE(3700)] = 138785, - [SMALL_STATE(3701)] = 138858, - [SMALL_STATE(3702)] = 138941, - [SMALL_STATE(3703)] = 139014, - [SMALL_STATE(3704)] = 139087, - [SMALL_STATE(3705)] = 139170, - [SMALL_STATE(3706)] = 139213, - [SMALL_STATE(3707)] = 139286, - [SMALL_STATE(3708)] = 139359, - [SMALL_STATE(3709)] = 139442, - [SMALL_STATE(3710)] = 139525, - [SMALL_STATE(3711)] = 139608, - [SMALL_STATE(3712)] = 139691, - [SMALL_STATE(3713)] = 139736, - [SMALL_STATE(3714)] = 139819, - [SMALL_STATE(3715)] = 139902, - [SMALL_STATE(3716)] = 139944, - [SMALL_STATE(3717)] = 139986, - [SMALL_STATE(3718)] = 140028, - [SMALL_STATE(3719)] = 140092, - [SMALL_STATE(3720)] = 140158, - [SMALL_STATE(3721)] = 140226, - [SMALL_STATE(3722)] = 140282, - [SMALL_STATE(3723)] = 140332, - [SMALL_STATE(3724)] = 140398, - [SMALL_STATE(3725)] = 140456, - [SMALL_STATE(3726)] = 140516, - [SMALL_STATE(3727)] = 140578, - [SMALL_STATE(3728)] = 140624, - [SMALL_STATE(3729)] = 140692, - [SMALL_STATE(3730)] = 140748, - [SMALL_STATE(3731)] = 140802, - [SMALL_STATE(3732)] = 140844, - [SMALL_STATE(3733)] = 140898, - [SMALL_STATE(3734)] = 140942, - [SMALL_STATE(3735)] = 140988, - [SMALL_STATE(3736)] = 141030, - [SMALL_STATE(3737)] = 141074, - [SMALL_STATE(3738)] = 141118, - [SMALL_STATE(3739)] = 141162, - [SMALL_STATE(3740)] = 141224, - [SMALL_STATE(3741)] = 141266, - [SMALL_STATE(3742)] = 141308, - [SMALL_STATE(3743)] = 141366, - [SMALL_STATE(3744)] = 141408, - [SMALL_STATE(3745)] = 141468, - [SMALL_STATE(3746)] = 141510, - [SMALL_STATE(3747)] = 141562, - [SMALL_STATE(3748)] = 141604, - [SMALL_STATE(3749)] = 141668, - [SMALL_STATE(3750)] = 141720, - [SMALL_STATE(3751)] = 141770, - [SMALL_STATE(3752)] = 141847, - [SMALL_STATE(3753)] = 141924, - [SMALL_STATE(3754)] = 142001, - [SMALL_STATE(3755)] = 142078, - [SMALL_STATE(3756)] = 142145, - [SMALL_STATE(3757)] = 142212, - [SMALL_STATE(3758)] = 142289, - [SMALL_STATE(3759)] = 142356, - [SMALL_STATE(3760)] = 142433, - [SMALL_STATE(3761)] = 142510, - [SMALL_STATE(3762)] = 142587, - [SMALL_STATE(3763)] = 142664, - [SMALL_STATE(3764)] = 142741, - [SMALL_STATE(3765)] = 142786, - [SMALL_STATE(3766)] = 142853, - [SMALL_STATE(3767)] = 142930, - [SMALL_STATE(3768)] = 143007, - [SMALL_STATE(3769)] = 143074, - [SMALL_STATE(3770)] = 143141, - [SMALL_STATE(3771)] = 143179, - [SMALL_STATE(3772)] = 143223, - [SMALL_STATE(3773)] = 143277, - [SMALL_STATE(3774)] = 143328, - [SMALL_STATE(3775)] = 143379, - [SMALL_STATE(3776)] = 143430, - [SMALL_STATE(3777)] = 143483, - [SMALL_STATE(3778)] = 143531, - [SMALL_STATE(3779)] = 143579, - [SMALL_STATE(3780)] = 143629, - [SMALL_STATE(3781)] = 143685, - [SMALL_STATE(3782)] = 143725, - [SMALL_STATE(3783)] = 143765, - [SMALL_STATE(3784)] = 143815, - [SMALL_STATE(3785)] = 143865, - [SMALL_STATE(3786)] = 143913, - [SMALL_STATE(3787)] = 143961, - [SMALL_STATE(3788)] = 144014, - [SMALL_STATE(3789)] = 144067, - [SMALL_STATE(3790)] = 144120, - [SMALL_STATE(3791)] = 144159, - [SMALL_STATE(3792)] = 144206, - [SMALL_STATE(3793)] = 144245, - [SMALL_STATE(3794)] = 144282, - [SMALL_STATE(3795)] = 144319, - [SMALL_STATE(3796)] = 144366, - [SMALL_STATE(3797)] = 144413, - [SMALL_STATE(3798)] = 144460, - [SMALL_STATE(3799)] = 144503, - [SMALL_STATE(3800)] = 144550, - [SMALL_STATE(3801)] = 144605, - [SMALL_STATE(3802)] = 144639, - [SMALL_STATE(3803)] = 144677, - [SMALL_STATE(3804)] = 144719, - [SMALL_STATE(3805)] = 144769, - [SMALL_STATE(3806)] = 144819, - [SMALL_STATE(3807)] = 144869, - [SMALL_STATE(3808)] = 144905, - [SMALL_STATE(3809)] = 144939, - [SMALL_STATE(3810)] = 144989, - [SMALL_STATE(3811)] = 145027, - [SMALL_STATE(3812)] = 145065, - [SMALL_STATE(3813)] = 145117, - [SMALL_STATE(3814)] = 145151, - [SMALL_STATE(3815)] = 145189, - [SMALL_STATE(3816)] = 145241, - [SMALL_STATE(3817)] = 145287, - [SMALL_STATE(3818)] = 145323, - [SMALL_STATE(3819)] = 145375, - [SMALL_STATE(3820)] = 145409, - [SMALL_STATE(3821)] = 145458, - [SMALL_STATE(3822)] = 145495, - [SMALL_STATE(3823)] = 145528, - [SMALL_STATE(3824)] = 145561, - [SMALL_STATE(3825)] = 145598, - [SMALL_STATE(3826)] = 145633, - [SMALL_STATE(3827)] = 145680, - [SMALL_STATE(3828)] = 145715, - [SMALL_STATE(3829)] = 145752, - [SMALL_STATE(3830)] = 145785, - [SMALL_STATE(3831)] = 145834, - [SMALL_STATE(3832)] = 145883, - [SMALL_STATE(3833)] = 145916, - [SMALL_STATE(3834)] = 145951, - [SMALL_STATE(3835)] = 145986, - [SMALL_STATE(3836)] = 146035, - [SMALL_STATE(3837)] = 146072, - [SMALL_STATE(3838)] = 146107, - [SMALL_STATE(3839)] = 146160, - [SMALL_STATE(3840)] = 146192, - [SMALL_STATE(3841)] = 146224, - [SMALL_STATE(3842)] = 146258, - [SMALL_STATE(3843)] = 146294, - [SMALL_STATE(3844)] = 146328, - [SMALL_STATE(3845)] = 146364, - [SMALL_STATE(3846)] = 146404, - [SMALL_STATE(3847)] = 146454, - [SMALL_STATE(3848)] = 146504, - [SMALL_STATE(3849)] = 146536, - [SMALL_STATE(3850)] = 146568, - [SMALL_STATE(3851)] = 146600, - [SMALL_STATE(3852)] = 146632, - [SMALL_STATE(3853)] = 146670, - [SMALL_STATE(3854)] = 146710, - [SMALL_STATE(3855)] = 146760, - [SMALL_STATE(3856)] = 146796, - [SMALL_STATE(3857)] = 146828, - [SMALL_STATE(3858)] = 146862, - [SMALL_STATE(3859)] = 146894, - [SMALL_STATE(3860)] = 146932, - [SMALL_STATE(3861)] = 146972, - [SMALL_STATE(3862)] = 147008, - [SMALL_STATE(3863)] = 147042, - [SMALL_STATE(3864)] = 147074, - [SMALL_STATE(3865)] = 147120, - [SMALL_STATE(3866)] = 147167, - [SMALL_STATE(3867)] = 147206, - [SMALL_STATE(3868)] = 147237, - [SMALL_STATE(3869)] = 147274, - [SMALL_STATE(3870)] = 147311, - [SMALL_STATE(3871)] = 147346, - [SMALL_STATE(3872)] = 147377, - [SMALL_STATE(3873)] = 147414, - [SMALL_STATE(3874)] = 147445, - [SMALL_STATE(3875)] = 147480, - [SMALL_STATE(3876)] = 147511, - [SMALL_STATE(3877)] = 147550, - [SMALL_STATE(3878)] = 147585, - [SMALL_STATE(3879)] = 147618, - [SMALL_STATE(3880)] = 147649, - [SMALL_STATE(3881)] = 147684, - [SMALL_STATE(3882)] = 147725, - [SMALL_STATE(3883)] = 147758, - [SMALL_STATE(3884)] = 147805, - [SMALL_STATE(3885)] = 147852, - [SMALL_STATE(3886)] = 147883, - [SMALL_STATE(3887)] = 147914, - [SMALL_STATE(3888)] = 147949, - [SMALL_STATE(3889)] = 147980, - [SMALL_STATE(3890)] = 148027, - [SMALL_STATE(3891)] = 148060, - [SMALL_STATE(3892)] = 148105, - [SMALL_STATE(3893)] = 148144, - [SMALL_STATE(3894)] = 148177, - [SMALL_STATE(3895)] = 148207, - [SMALL_STATE(3896)] = 148241, - [SMALL_STATE(3897)] = 148279, - [SMALL_STATE(3898)] = 148309, - [SMALL_STATE(3899)] = 148339, - [SMALL_STATE(3900)] = 148371, - [SMALL_STATE(3901)] = 148403, - [SMALL_STATE(3902)] = 148435, - [SMALL_STATE(3903)] = 148465, - [SMALL_STATE(3904)] = 148495, - [SMALL_STATE(3905)] = 148545, - [SMALL_STATE(3906)] = 148583, - [SMALL_STATE(3907)] = 148617, - [SMALL_STATE(3908)] = 148651, - [SMALL_STATE(3909)] = 148681, - [SMALL_STATE(3910)] = 148713, - [SMALL_STATE(3911)] = 148745, - [SMALL_STATE(3912)] = 148785, - [SMALL_STATE(3913)] = 148821, - [SMALL_STATE(3914)] = 148855, - [SMALL_STATE(3915)] = 148887, - [SMALL_STATE(3916)] = 148919, - [SMALL_STATE(3917)] = 148949, - [SMALL_STATE(3918)] = 148987, - [SMALL_STATE(3919)] = 149021, - [SMALL_STATE(3920)] = 149059, - [SMALL_STATE(3921)] = 149091, - [SMALL_STATE(3922)] = 149121, - [SMALL_STATE(3923)] = 149151, - [SMALL_STATE(3924)] = 149181, - [SMALL_STATE(3925)] = 149211, - [SMALL_STATE(3926)] = 149241, - [SMALL_STATE(3927)] = 149279, - [SMALL_STATE(3928)] = 149309, - [SMALL_STATE(3929)] = 149339, - [SMALL_STATE(3930)] = 149369, - [SMALL_STATE(3931)] = 149401, - [SMALL_STATE(3932)] = 149433, - [SMALL_STATE(3933)] = 149465, - [SMALL_STATE(3934)] = 149497, - [SMALL_STATE(3935)] = 149529, - [SMALL_STATE(3936)] = 149561, - [SMALL_STATE(3937)] = 149591, - [SMALL_STATE(3938)] = 149628, - [SMALL_STATE(3939)] = 149657, - [SMALL_STATE(3940)] = 149694, - [SMALL_STATE(3941)] = 149725, - [SMALL_STATE(3942)] = 149762, - [SMALL_STATE(3943)] = 149799, - [SMALL_STATE(3944)] = 149830, - [SMALL_STATE(3945)] = 149867, - [SMALL_STATE(3946)] = 149904, - [SMALL_STATE(3947)] = 149937, - [SMALL_STATE(3948)] = 149974, - [SMALL_STATE(3949)] = 150003, - [SMALL_STATE(3950)] = 150040, - [SMALL_STATE(3951)] = 150073, - [SMALL_STATE(3952)] = 150102, - [SMALL_STATE(3953)] = 150131, - [SMALL_STATE(3954)] = 150160, - [SMALL_STATE(3955)] = 150189, - [SMALL_STATE(3956)] = 150218, - [SMALL_STATE(3957)] = 150249, - [SMALL_STATE(3958)] = 150286, - [SMALL_STATE(3959)] = 150315, - [SMALL_STATE(3960)] = 150352, - [SMALL_STATE(3961)] = 150389, - [SMALL_STATE(3962)] = 150426, - [SMALL_STATE(3963)] = 150463, - [SMALL_STATE(3964)] = 150500, - [SMALL_STATE(3965)] = 150537, - [SMALL_STATE(3966)] = 150566, - [SMALL_STATE(3967)] = 150603, - [SMALL_STATE(3968)] = 150634, - [SMALL_STATE(3969)] = 150665, - [SMALL_STATE(3970)] = 150694, - [SMALL_STATE(3971)] = 150731, - [SMALL_STATE(3972)] = 150768, - [SMALL_STATE(3973)] = 150805, - [SMALL_STATE(3974)] = 150836, - [SMALL_STATE(3975)] = 150873, - [SMALL_STATE(3976)] = 150902, - [SMALL_STATE(3977)] = 150931, - [SMALL_STATE(3978)] = 150962, - [SMALL_STATE(3979)] = 150991, - [SMALL_STATE(3980)] = 151022, - [SMALL_STATE(3981)] = 151055, - [SMALL_STATE(3982)] = 151092, - [SMALL_STATE(3983)] = 151121, - [SMALL_STATE(3984)] = 151150, - [SMALL_STATE(3985)] = 151179, - [SMALL_STATE(3986)] = 151216, - [SMALL_STATE(3987)] = 151245, - [SMALL_STATE(3988)] = 151276, - [SMALL_STATE(3989)] = 151305, - [SMALL_STATE(3990)] = 151336, - [SMALL_STATE(3991)] = 151367, - [SMALL_STATE(3992)] = 151398, - [SMALL_STATE(3993)] = 151429, - [SMALL_STATE(3994)] = 151460, - [SMALL_STATE(3995)] = 151491, - [SMALL_STATE(3996)] = 151522, - [SMALL_STATE(3997)] = 151555, - [SMALL_STATE(3998)] = 151584, - [SMALL_STATE(3999)] = 151613, - [SMALL_STATE(4000)] = 151644, - [SMALL_STATE(4001)] = 151675, - [SMALL_STATE(4002)] = 151712, - [SMALL_STATE(4003)] = 151745, - [SMALL_STATE(4004)] = 151774, - [SMALL_STATE(4005)] = 151807, - [SMALL_STATE(4006)] = 151838, - [SMALL_STATE(4007)] = 151869, - [SMALL_STATE(4008)] = 151900, - [SMALL_STATE(4009)] = 151937, - [SMALL_STATE(4010)] = 151974, - [SMALL_STATE(4011)] = 152011, - [SMALL_STATE(4012)] = 152044, - [SMALL_STATE(4013)] = 152073, - [SMALL_STATE(4014)] = 152108, - [SMALL_STATE(4015)] = 152139, - [SMALL_STATE(4016)] = 152176, - [SMALL_STATE(4017)] = 152213, - [SMALL_STATE(4018)] = 152250, - [SMALL_STATE(4019)] = 152279, - [SMALL_STATE(4020)] = 152310, - [SMALL_STATE(4021)] = 152341, - [SMALL_STATE(4022)] = 152369, - [SMALL_STATE(4023)] = 152405, - [SMALL_STATE(4024)] = 152441, - [SMALL_STATE(4025)] = 152477, - [SMALL_STATE(4026)] = 152513, - [SMALL_STATE(4027)] = 152549, - [SMALL_STATE(4028)] = 152585, - [SMALL_STATE(4029)] = 152615, - [SMALL_STATE(4030)] = 152647, - [SMALL_STATE(4031)] = 152683, - [SMALL_STATE(4032)] = 152719, - [SMALL_STATE(4033)] = 152767, - [SMALL_STATE(4034)] = 152795, - [SMALL_STATE(4035)] = 152839, - [SMALL_STATE(4036)] = 152871, - [SMALL_STATE(4037)] = 152901, - [SMALL_STATE(4038)] = 152933, - [SMALL_STATE(4039)] = 152961, - [SMALL_STATE(4040)] = 152989, - [SMALL_STATE(4041)] = 153025, - [SMALL_STATE(4042)] = 153053, - [SMALL_STATE(4043)] = 153081, - [SMALL_STATE(4044)] = 153117, - [SMALL_STATE(4045)] = 153145, - [SMALL_STATE(4046)] = 153181, - [SMALL_STATE(4047)] = 153211, - [SMALL_STATE(4048)] = 153255, - [SMALL_STATE(4049)] = 153291, - [SMALL_STATE(4050)] = 153321, - [SMALL_STATE(4051)] = 153351, - [SMALL_STATE(4052)] = 153387, - [SMALL_STATE(4053)] = 153425, - [SMALL_STATE(4054)] = 153455, - [SMALL_STATE(4055)] = 153491, - [SMALL_STATE(4056)] = 153527, - [SMALL_STATE(4057)] = 153563, - [SMALL_STATE(4058)] = 153591, - [SMALL_STATE(4059)] = 153621, - [SMALL_STATE(4060)] = 153669, - [SMALL_STATE(4061)] = 153697, - [SMALL_STATE(4062)] = 153725, - [SMALL_STATE(4063)] = 153753, - [SMALL_STATE(4064)] = 153781, - [SMALL_STATE(4065)] = 153817, - [SMALL_STATE(4066)] = 153853, - [SMALL_STATE(4067)] = 153883, - [SMALL_STATE(4068)] = 153911, - [SMALL_STATE(4069)] = 153943, - [SMALL_STATE(4070)] = 153975, - [SMALL_STATE(4071)] = 154013, - [SMALL_STATE(4072)] = 154045, - [SMALL_STATE(4073)] = 154077, - [SMALL_STATE(4074)] = 154105, - [SMALL_STATE(4075)] = 154133, - [SMALL_STATE(4076)] = 154165, - [SMALL_STATE(4077)] = 154193, - [SMALL_STATE(4078)] = 154221, - [SMALL_STATE(4079)] = 154257, - [SMALL_STATE(4080)] = 154285, - [SMALL_STATE(4081)] = 154317, - [SMALL_STATE(4082)] = 154345, - [SMALL_STATE(4083)] = 154381, - [SMALL_STATE(4084)] = 154413, - [SMALL_STATE(4085)] = 154441, - [SMALL_STATE(4086)] = 154477, - [SMALL_STATE(4087)] = 154509, - [SMALL_STATE(4088)] = 154545, - [SMALL_STATE(4089)] = 154581, - [SMALL_STATE(4090)] = 154617, - [SMALL_STATE(4091)] = 154645, - [SMALL_STATE(4092)] = 154675, - [SMALL_STATE(4093)] = 154719, - [SMALL_STATE(4094)] = 154755, - [SMALL_STATE(4095)] = 154799, - [SMALL_STATE(4096)] = 154843, - [SMALL_STATE(4097)] = 154891, - [SMALL_STATE(4098)] = 154939, - [SMALL_STATE(4099)] = 154967, - [SMALL_STATE(4100)] = 155003, - [SMALL_STATE(4101)] = 155039, - [SMALL_STATE(4102)] = 155067, - [SMALL_STATE(4103)] = 155103, - [SMALL_STATE(4104)] = 155131, - [SMALL_STATE(4105)] = 155159, - [SMALL_STATE(4106)] = 155189, - [SMALL_STATE(4107)] = 155225, - [SMALL_STATE(4108)] = 155257, - [SMALL_STATE(4109)] = 155288, - [SMALL_STATE(4110)] = 155321, - [SMALL_STATE(4111)] = 155348, - [SMALL_STATE(4112)] = 155375, - [SMALL_STATE(4113)] = 155404, - [SMALL_STATE(4114)] = 155431, - [SMALL_STATE(4115)] = 155458, - [SMALL_STATE(4116)] = 155489, - [SMALL_STATE(4117)] = 155518, - [SMALL_STATE(4118)] = 155547, - [SMALL_STATE(4119)] = 155578, - [SMALL_STATE(4120)] = 155607, - [SMALL_STATE(4121)] = 155636, - [SMALL_STATE(4122)] = 155667, - [SMALL_STATE(4123)] = 155698, - [SMALL_STATE(4124)] = 155729, - [SMALL_STATE(4125)] = 155760, - [SMALL_STATE(4126)] = 155791, - [SMALL_STATE(4127)] = 155828, - [SMALL_STATE(4128)] = 155859, - [SMALL_STATE(4129)] = 155886, - [SMALL_STATE(4130)] = 155913, - [SMALL_STATE(4131)] = 155944, - [SMALL_STATE(4132)] = 155971, - [SMALL_STATE(4133)] = 156002, - [SMALL_STATE(4134)] = 156031, - [SMALL_STATE(4135)] = 156060, - [SMALL_STATE(4136)] = 156091, - [SMALL_STATE(4137)] = 156122, - [SMALL_STATE(4138)] = 156153, - [SMALL_STATE(4139)] = 156186, - [SMALL_STATE(4140)] = 156213, - [SMALL_STATE(4141)] = 156238, - [SMALL_STATE(4142)] = 156269, - [SMALL_STATE(4143)] = 156302, - [SMALL_STATE(4144)] = 156335, - [SMALL_STATE(4145)] = 156362, - [SMALL_STATE(4146)] = 156389, - [SMALL_STATE(4147)] = 156420, - [SMALL_STATE(4148)] = 156453, - [SMALL_STATE(4149)] = 156480, - [SMALL_STATE(4150)] = 156507, - [SMALL_STATE(4151)] = 156534, - [SMALL_STATE(4152)] = 156563, - [SMALL_STATE(4153)] = 156592, - [SMALL_STATE(4154)] = 156623, - [SMALL_STATE(4155)] = 156648, - [SMALL_STATE(4156)] = 156679, - [SMALL_STATE(4157)] = 156706, - [SMALL_STATE(4158)] = 156731, - [SMALL_STATE(4159)] = 156758, - [SMALL_STATE(4160)] = 156785, - [SMALL_STATE(4161)] = 156820, - [SMALL_STATE(4162)] = 156847, - [SMALL_STATE(4163)] = 156876, - [SMALL_STATE(4164)] = 156905, - [SMALL_STATE(4165)] = 156936, - [SMALL_STATE(4166)] = 156963, - [SMALL_STATE(4167)] = 156994, - [SMALL_STATE(4168)] = 157029, - [SMALL_STATE(4169)] = 157054, - [SMALL_STATE(4170)] = 157085, - [SMALL_STATE(4171)] = 157110, - [SMALL_STATE(4172)] = 157141, - [SMALL_STATE(4173)] = 157172, - [SMALL_STATE(4174)] = 157201, - [SMALL_STATE(4175)] = 157226, - [SMALL_STATE(4176)] = 157257, - [SMALL_STATE(4177)] = 157288, - [SMALL_STATE(4178)] = 157317, - [SMALL_STATE(4179)] = 157346, - [SMALL_STATE(4180)] = 157379, - [SMALL_STATE(4181)] = 157412, - [SMALL_STATE(4182)] = 157445, - [SMALL_STATE(4183)] = 157476, - [SMALL_STATE(4184)] = 157507, - [SMALL_STATE(4185)] = 157538, - [SMALL_STATE(4186)] = 157569, - [SMALL_STATE(4187)] = 157602, - [SMALL_STATE(4188)] = 157635, - [SMALL_STATE(4189)] = 157662, - [SMALL_STATE(4190)] = 157689, - [SMALL_STATE(4191)] = 157714, - [SMALL_STATE(4192)] = 157749, - [SMALL_STATE(4193)] = 157784, - [SMALL_STATE(4194)] = 157819, - [SMALL_STATE(4195)] = 157844, - [SMALL_STATE(4196)] = 157875, - [SMALL_STATE(4197)] = 157906, - [SMALL_STATE(4198)] = 157937, - [SMALL_STATE(4199)] = 157968, - [SMALL_STATE(4200)] = 158001, - [SMALL_STATE(4201)] = 158034, - [SMALL_STATE(4202)] = 158061, - [SMALL_STATE(4203)] = 158088, - [SMALL_STATE(4204)] = 158115, - [SMALL_STATE(4205)] = 158148, - [SMALL_STATE(4206)] = 158175, - [SMALL_STATE(4207)] = 158206, - [SMALL_STATE(4208)] = 158235, - [SMALL_STATE(4209)] = 158268, - [SMALL_STATE(4210)] = 158303, - [SMALL_STATE(4211)] = 158334, - [SMALL_STATE(4212)] = 158363, - [SMALL_STATE(4213)] = 158388, - [SMALL_STATE(4214)] = 158413, - [SMALL_STATE(4215)] = 158444, - [SMALL_STATE(4216)] = 158471, - [SMALL_STATE(4217)] = 158498, - [SMALL_STATE(4218)] = 158525, - [SMALL_STATE(4219)] = 158560, - [SMALL_STATE(4220)] = 158595, - [SMALL_STATE(4221)] = 158630, - [SMALL_STATE(4222)] = 158657, - [SMALL_STATE(4223)] = 158684, - [SMALL_STATE(4224)] = 158719, - [SMALL_STATE(4225)] = 158752, - [SMALL_STATE(4226)] = 158783, - [SMALL_STATE(4227)] = 158812, - [SMALL_STATE(4228)] = 158843, - [SMALL_STATE(4229)] = 158872, - [SMALL_STATE(4230)] = 158907, - [SMALL_STATE(4231)] = 158940, - [SMALL_STATE(4232)] = 158971, - [SMALL_STATE(4233)] = 159006, - [SMALL_STATE(4234)] = 159037, - [SMALL_STATE(4235)] = 159072, - [SMALL_STATE(4236)] = 159107, - [SMALL_STATE(4237)] = 159140, - [SMALL_STATE(4238)] = 159175, - [SMALL_STATE(4239)] = 159210, - [SMALL_STATE(4240)] = 159241, - [SMALL_STATE(4241)] = 159274, - [SMALL_STATE(4242)] = 159301, - [SMALL_STATE(4243)] = 159332, - [SMALL_STATE(4244)] = 159367, - [SMALL_STATE(4245)] = 159398, - [SMALL_STATE(4246)] = 159425, - [SMALL_STATE(4247)] = 159452, - [SMALL_STATE(4248)] = 159479, - [SMALL_STATE(4249)] = 159512, - [SMALL_STATE(4250)] = 159539, - [SMALL_STATE(4251)] = 159574, - [SMALL_STATE(4252)] = 159601, - [SMALL_STATE(4253)] = 159634, - [SMALL_STATE(4254)] = 159669, - [SMALL_STATE(4255)] = 159696, - [SMALL_STATE(4256)] = 159731, - [SMALL_STATE(4257)] = 159766, - [SMALL_STATE(4258)] = 159793, - [SMALL_STATE(4259)] = 159820, - [SMALL_STATE(4260)] = 159847, - [SMALL_STATE(4261)] = 159878, - [SMALL_STATE(4262)] = 159913, - [SMALL_STATE(4263)] = 159940, - [SMALL_STATE(4264)] = 159971, - [SMALL_STATE(4265)] = 159998, - [SMALL_STATE(4266)] = 160029, - [SMALL_STATE(4267)] = 160056, - [SMALL_STATE(4268)] = 160083, - [SMALL_STATE(4269)] = 160114, - [SMALL_STATE(4270)] = 160143, - [SMALL_STATE(4271)] = 160172, - [SMALL_STATE(4272)] = 160207, - [SMALL_STATE(4273)] = 160238, - [SMALL_STATE(4274)] = 160263, - [SMALL_STATE(4275)] = 160298, - [SMALL_STATE(4276)] = 160329, - [SMALL_STATE(4277)] = 160364, - [SMALL_STATE(4278)] = 160399, - [SMALL_STATE(4279)] = 160428, - [SMALL_STATE(4280)] = 160455, - [SMALL_STATE(4281)] = 160484, - [SMALL_STATE(4282)] = 160519, - [SMALL_STATE(4283)] = 160550, - [SMALL_STATE(4284)] = 160585, - [SMALL_STATE(4285)] = 160616, - [SMALL_STATE(4286)] = 160651, - [SMALL_STATE(4287)] = 160682, - [SMALL_STATE(4288)] = 160709, - [SMALL_STATE(4289)] = 160740, - [SMALL_STATE(4290)] = 160771, - [SMALL_STATE(4291)] = 160802, - [SMALL_STATE(4292)] = 160833, - [SMALL_STATE(4293)] = 160868, - [SMALL_STATE(4294)] = 160899, - [SMALL_STATE(4295)] = 160926, - [SMALL_STATE(4296)] = 160953, - [SMALL_STATE(4297)] = 160984, - [SMALL_STATE(4298)] = 161015, - [SMALL_STATE(4299)] = 161050, - [SMALL_STATE(4300)] = 161081, - [SMALL_STATE(4301)] = 161109, - [SMALL_STATE(4302)] = 161135, - [SMALL_STATE(4303)] = 161163, - [SMALL_STATE(4304)] = 161215, - [SMALL_STATE(4305)] = 161241, - [SMALL_STATE(4306)] = 161271, - [SMALL_STATE(4307)] = 161295, - [SMALL_STATE(4308)] = 161321, - [SMALL_STATE(4309)] = 161351, - [SMALL_STATE(4310)] = 161381, - [SMALL_STATE(4311)] = 161411, - [SMALL_STATE(4312)] = 161437, - [SMALL_STATE(4313)] = 161465, - [SMALL_STATE(4314)] = 161495, - [SMALL_STATE(4315)] = 161519, - [SMALL_STATE(4316)] = 161545, - [SMALL_STATE(4317)] = 161569, - [SMALL_STATE(4318)] = 161593, - [SMALL_STATE(4319)] = 161621, - [SMALL_STATE(4320)] = 161647, - [SMALL_STATE(4321)] = 161677, - [SMALL_STATE(4322)] = 161707, - [SMALL_STATE(4323)] = 161739, - [SMALL_STATE(4324)] = 161769, - [SMALL_STATE(4325)] = 161799, - [SMALL_STATE(4326)] = 161825, - [SMALL_STATE(4327)] = 161877, - [SMALL_STATE(4328)] = 161907, - [SMALL_STATE(4329)] = 161933, - [SMALL_STATE(4330)] = 161961, - [SMALL_STATE(4331)] = 162013, - [SMALL_STATE(4332)] = 162043, - [SMALL_STATE(4333)] = 162071, - [SMALL_STATE(4334)] = 162097, - [SMALL_STATE(4335)] = 162149, - [SMALL_STATE(4336)] = 162173, - [SMALL_STATE(4337)] = 162203, - [SMALL_STATE(4338)] = 162233, - [SMALL_STATE(4339)] = 162279, - [SMALL_STATE(4340)] = 162309, - [SMALL_STATE(4341)] = 162361, - [SMALL_STATE(4342)] = 162393, - [SMALL_STATE(4343)] = 162417, - [SMALL_STATE(4344)] = 162469, - [SMALL_STATE(4345)] = 162495, - [SMALL_STATE(4346)] = 162523, - [SMALL_STATE(4347)] = 162553, - [SMALL_STATE(4348)] = 162581, - [SMALL_STATE(4349)] = 162609, - [SMALL_STATE(4350)] = 162637, - [SMALL_STATE(4351)] = 162689, - [SMALL_STATE(4352)] = 162715, - [SMALL_STATE(4353)] = 162767, - [SMALL_STATE(4354)] = 162791, - [SMALL_STATE(4355)] = 162821, - [SMALL_STATE(4356)] = 162849, - [SMALL_STATE(4357)] = 162877, - [SMALL_STATE(4358)] = 162905, - [SMALL_STATE(4359)] = 162931, - [SMALL_STATE(4360)] = 162959, - [SMALL_STATE(4361)] = 162985, - [SMALL_STATE(4362)] = 163011, - [SMALL_STATE(4363)] = 163063, - [SMALL_STATE(4364)] = 163093, - [SMALL_STATE(4365)] = 163123, - [SMALL_STATE(4366)] = 163147, - [SMALL_STATE(4367)] = 163171, - [SMALL_STATE(4368)] = 163201, - [SMALL_STATE(4369)] = 163227, - [SMALL_STATE(4370)] = 163251, - [SMALL_STATE(4371)] = 163281, - [SMALL_STATE(4372)] = 163307, - [SMALL_STATE(4373)] = 163331, - [SMALL_STATE(4374)] = 163361, - [SMALL_STATE(4375)] = 163391, - [SMALL_STATE(4376)] = 163421, - [SMALL_STATE(4377)] = 163445, - [SMALL_STATE(4378)] = 163471, - [SMALL_STATE(4379)] = 163501, - [SMALL_STATE(4380)] = 163531, - [SMALL_STATE(4381)] = 163561, - [SMALL_STATE(4382)] = 163591, - [SMALL_STATE(4383)] = 163615, - [SMALL_STATE(4384)] = 163667, - [SMALL_STATE(4385)] = 163697, - [SMALL_STATE(4386)] = 163727, - [SMALL_STATE(4387)] = 163752, - [SMALL_STATE(4388)] = 163781, - [SMALL_STATE(4389)] = 163806, - [SMALL_STATE(4390)] = 163851, - [SMALL_STATE(4391)] = 163876, - [SMALL_STATE(4392)] = 163899, - [SMALL_STATE(4393)] = 163926, - [SMALL_STATE(4394)] = 163953, - [SMALL_STATE(4395)] = 163980, - [SMALL_STATE(4396)] = 164005, - [SMALL_STATE(4397)] = 164034, - [SMALL_STATE(4398)] = 164063, - [SMALL_STATE(4399)] = 164088, - [SMALL_STATE(4400)] = 164113, - [SMALL_STATE(4401)] = 164138, - [SMALL_STATE(4402)] = 164163, - [SMALL_STATE(4403)] = 164192, - [SMALL_STATE(4404)] = 164217, - [SMALL_STATE(4405)] = 164242, - [SMALL_STATE(4406)] = 164269, - [SMALL_STATE(4407)] = 164298, - [SMALL_STATE(4408)] = 164323, - [SMALL_STATE(4409)] = 164352, - [SMALL_STATE(4410)] = 164377, - [SMALL_STATE(4411)] = 164402, - [SMALL_STATE(4412)] = 164431, - [SMALL_STATE(4413)] = 164456, - [SMALL_STATE(4414)] = 164487, - [SMALL_STATE(4415)] = 164518, - [SMALL_STATE(4416)] = 164543, - [SMALL_STATE(4417)] = 164568, - [SMALL_STATE(4418)] = 164593, - [SMALL_STATE(4419)] = 164618, - [SMALL_STATE(4420)] = 164643, - [SMALL_STATE(4421)] = 164668, - [SMALL_STATE(4422)] = 164691, - [SMALL_STATE(4423)] = 164722, - [SMALL_STATE(4424)] = 164751, - [SMALL_STATE(4425)] = 164776, - [SMALL_STATE(4426)] = 164801, - [SMALL_STATE(4427)] = 164826, - [SMALL_STATE(4428)] = 164851, - [SMALL_STATE(4429)] = 164878, - [SMALL_STATE(4430)] = 164903, - [SMALL_STATE(4431)] = 164932, - [SMALL_STATE(4432)] = 164961, - [SMALL_STATE(4433)] = 164986, - [SMALL_STATE(4434)] = 165011, - [SMALL_STATE(4435)] = 165036, - [SMALL_STATE(4436)] = 165059, - [SMALL_STATE(4437)] = 165088, - [SMALL_STATE(4438)] = 165113, - [SMALL_STATE(4439)] = 165144, - [SMALL_STATE(4440)] = 165173, - [SMALL_STATE(4441)] = 165202, - [SMALL_STATE(4442)] = 165227, - [SMALL_STATE(4443)] = 165252, - [SMALL_STATE(4444)] = 165277, - [SMALL_STATE(4445)] = 165302, - [SMALL_STATE(4446)] = 165327, - [SMALL_STATE(4447)] = 165354, - [SMALL_STATE(4448)] = 165383, - [SMALL_STATE(4449)] = 165410, - [SMALL_STATE(4450)] = 165435, - [SMALL_STATE(4451)] = 165460, - [SMALL_STATE(4452)] = 165489, - [SMALL_STATE(4453)] = 165518, - [SMALL_STATE(4454)] = 165543, - [SMALL_STATE(4455)] = 165568, - [SMALL_STATE(4456)] = 165593, - [SMALL_STATE(4457)] = 165618, - [SMALL_STATE(4458)] = 165641, - [SMALL_STATE(4459)] = 165670, - [SMALL_STATE(4460)] = 165699, - [SMALL_STATE(4461)] = 165724, - [SMALL_STATE(4462)] = 165753, - [SMALL_STATE(4463)] = 165782, - [SMALL_STATE(4464)] = 165811, - [SMALL_STATE(4465)] = 165840, - [SMALL_STATE(4466)] = 165869, - [SMALL_STATE(4467)] = 165896, - [SMALL_STATE(4468)] = 165921, - [SMALL_STATE(4469)] = 165946, - [SMALL_STATE(4470)] = 165971, - [SMALL_STATE(4471)] = 165996, - [SMALL_STATE(4472)] = 166021, - [SMALL_STATE(4473)] = 166046, - [SMALL_STATE(4474)] = 166073, - [SMALL_STATE(4475)] = 166102, - [SMALL_STATE(4476)] = 166131, - [SMALL_STATE(4477)] = 166156, - [SMALL_STATE(4478)] = 166181, - [SMALL_STATE(4479)] = 166206, - [SMALL_STATE(4480)] = 166251, - [SMALL_STATE(4481)] = 166276, - [SMALL_STATE(4482)] = 166301, - [SMALL_STATE(4483)] = 166326, - [SMALL_STATE(4484)] = 166351, - [SMALL_STATE(4485)] = 166376, - [SMALL_STATE(4486)] = 166405, - [SMALL_STATE(4487)] = 166434, - [SMALL_STATE(4488)] = 166463, - [SMALL_STATE(4489)] = 166488, - [SMALL_STATE(4490)] = 166517, - [SMALL_STATE(4491)] = 166542, - [SMALL_STATE(4492)] = 166567, - [SMALL_STATE(4493)] = 166592, - [SMALL_STATE(4494)] = 166617, - [SMALL_STATE(4495)] = 166642, - [SMALL_STATE(4496)] = 166667, - [SMALL_STATE(4497)] = 166692, - [SMALL_STATE(4498)] = 166721, - [SMALL_STATE(4499)] = 166746, - [SMALL_STATE(4500)] = 166775, - [SMALL_STATE(4501)] = 166800, - [SMALL_STATE(4502)] = 166827, - [SMALL_STATE(4503)] = 166852, - [SMALL_STATE(4504)] = 166881, - [SMALL_STATE(4505)] = 166910, - [SMALL_STATE(4506)] = 166939, - [SMALL_STATE(4507)] = 166962, - [SMALL_STATE(4508)] = 166991, - [SMALL_STATE(4509)] = 167020, - [SMALL_STATE(4510)] = 167049, - [SMALL_STATE(4511)] = 167074, - [SMALL_STATE(4512)] = 167103, - [SMALL_STATE(4513)] = 167132, - [SMALL_STATE(4514)] = 167161, - [SMALL_STATE(4515)] = 167190, - [SMALL_STATE(4516)] = 167219, - [SMALL_STATE(4517)] = 167244, - [SMALL_STATE(4518)] = 167273, - [SMALL_STATE(4519)] = 167302, - [SMALL_STATE(4520)] = 167331, - [SMALL_STATE(4521)] = 167358, - [SMALL_STATE(4522)] = 167383, - [SMALL_STATE(4523)] = 167408, - [SMALL_STATE(4524)] = 167433, - [SMALL_STATE(4525)] = 167458, - [SMALL_STATE(4526)] = 167483, - [SMALL_STATE(4527)] = 167508, - [SMALL_STATE(4528)] = 167533, - [SMALL_STATE(4529)] = 167558, - [SMALL_STATE(4530)] = 167583, - [SMALL_STATE(4531)] = 167612, - [SMALL_STATE(4532)] = 167641, - [SMALL_STATE(4533)] = 167666, - [SMALL_STATE(4534)] = 167691, - [SMALL_STATE(4535)] = 167716, - [SMALL_STATE(4536)] = 167745, - [SMALL_STATE(4537)] = 167774, - [SMALL_STATE(4538)] = 167797, - [SMALL_STATE(4539)] = 167822, - [SMALL_STATE(4540)] = 167847, - [SMALL_STATE(4541)] = 167874, - [SMALL_STATE(4542)] = 167899, - [SMALL_STATE(4543)] = 167940, - [SMALL_STATE(4544)] = 167965, - [SMALL_STATE(4545)] = 167990, - [SMALL_STATE(4546)] = 168015, - [SMALL_STATE(4547)] = 168040, - [SMALL_STATE(4548)] = 168063, - [SMALL_STATE(4549)] = 168088, - [SMALL_STATE(4550)] = 168112, - [SMALL_STATE(4551)] = 168136, - [SMALL_STATE(4552)] = 168160, - [SMALL_STATE(4553)] = 168184, - [SMALL_STATE(4554)] = 168208, - [SMALL_STATE(4555)] = 168232, - [SMALL_STATE(4556)] = 168256, - [SMALL_STATE(4557)] = 168278, - [SMALL_STATE(4558)] = 168302, - [SMALL_STATE(4559)] = 168348, - [SMALL_STATE(4560)] = 168372, - [SMALL_STATE(4561)] = 168418, - [SMALL_STATE(4562)] = 168442, - [SMALL_STATE(4563)] = 168466, - [SMALL_STATE(4564)] = 168490, - [SMALL_STATE(4565)] = 168514, - [SMALL_STATE(4566)] = 168538, - [SMALL_STATE(4567)] = 168562, - [SMALL_STATE(4568)] = 168608, - [SMALL_STATE(4569)] = 168632, - [SMALL_STATE(4570)] = 168656, - [SMALL_STATE(4571)] = 168682, - [SMALL_STATE(4572)] = 168704, - [SMALL_STATE(4573)] = 168728, - [SMALL_STATE(4574)] = 168752, - [SMALL_STATE(4575)] = 168774, - [SMALL_STATE(4576)] = 168798, - [SMALL_STATE(4577)] = 168822, - [SMALL_STATE(4578)] = 168844, - [SMALL_STATE(4579)] = 168868, - [SMALL_STATE(4580)] = 168892, - [SMALL_STATE(4581)] = 168916, - [SMALL_STATE(4582)] = 168940, - [SMALL_STATE(4583)] = 168978, - [SMALL_STATE(4584)] = 169002, - [SMALL_STATE(4585)] = 169024, - [SMALL_STATE(4586)] = 169048, - [SMALL_STATE(4587)] = 169094, - [SMALL_STATE(4588)] = 169118, - [SMALL_STATE(4589)] = 169142, - [SMALL_STATE(4590)] = 169166, - [SMALL_STATE(4591)] = 169190, - [SMALL_STATE(4592)] = 169214, - [SMALL_STATE(4593)] = 169238, - [SMALL_STATE(4594)] = 169262, - [SMALL_STATE(4595)] = 169286, - [SMALL_STATE(4596)] = 169310, - [SMALL_STATE(4597)] = 169334, - [SMALL_STATE(4598)] = 169358, - [SMALL_STATE(4599)] = 169382, - [SMALL_STATE(4600)] = 169406, - [SMALL_STATE(4601)] = 169430, - [SMALL_STATE(4602)] = 169470, - [SMALL_STATE(4603)] = 169494, - [SMALL_STATE(4604)] = 169536, - [SMALL_STATE(4605)] = 169560, - [SMALL_STATE(4606)] = 169584, - [SMALL_STATE(4607)] = 169608, - [SMALL_STATE(4608)] = 169632, - [SMALL_STATE(4609)] = 169654, - [SMALL_STATE(4610)] = 169678, - [SMALL_STATE(4611)] = 169702, - [SMALL_STATE(4612)] = 169724, - [SMALL_STATE(4613)] = 169748, - [SMALL_STATE(4614)] = 169772, - [SMALL_STATE(4615)] = 169796, - [SMALL_STATE(4616)] = 169820, - [SMALL_STATE(4617)] = 169844, - [SMALL_STATE(4618)] = 169866, - [SMALL_STATE(4619)] = 169890, - [SMALL_STATE(4620)] = 169912, - [SMALL_STATE(4621)] = 169936, - [SMALL_STATE(4622)] = 169958, - [SMALL_STATE(4623)] = 169982, - [SMALL_STATE(4624)] = 170004, - [SMALL_STATE(4625)] = 170048, - [SMALL_STATE(4626)] = 170094, - [SMALL_STATE(4627)] = 170140, - [SMALL_STATE(4628)] = 170164, - [SMALL_STATE(4629)] = 170186, - [SMALL_STATE(4630)] = 170210, - [SMALL_STATE(4631)] = 170234, - [SMALL_STATE(4632)] = 170256, - [SMALL_STATE(4633)] = 170302, - [SMALL_STATE(4634)] = 170326, - [SMALL_STATE(4635)] = 170348, - [SMALL_STATE(4636)] = 170372, - [SMALL_STATE(4637)] = 170396, - [SMALL_STATE(4638)] = 170418, - [SMALL_STATE(4639)] = 170444, - [SMALL_STATE(4640)] = 170476, - [SMALL_STATE(4641)] = 170500, - [SMALL_STATE(4642)] = 170524, - [SMALL_STATE(4643)] = 170548, - [SMALL_STATE(4644)] = 170572, - [SMALL_STATE(4645)] = 170596, - [SMALL_STATE(4646)] = 170620, - [SMALL_STATE(4647)] = 170662, - [SMALL_STATE(4648)] = 170686, - [SMALL_STATE(4649)] = 170710, - [SMALL_STATE(4650)] = 170734, - [SMALL_STATE(4651)] = 170758, - [SMALL_STATE(4652)] = 170782, - [SMALL_STATE(4653)] = 170804, - [SMALL_STATE(4654)] = 170826, - [SMALL_STATE(4655)] = 170850, - [SMALL_STATE(4656)] = 170874, - [SMALL_STATE(4657)] = 170898, - [SMALL_STATE(4658)] = 170922, - [SMALL_STATE(4659)] = 170946, - [SMALL_STATE(4660)] = 170970, - [SMALL_STATE(4661)] = 170994, - [SMALL_STATE(4662)] = 171036, - [SMALL_STATE(4663)] = 171060, - [SMALL_STATE(4664)] = 171084, - [SMALL_STATE(4665)] = 171108, - [SMALL_STATE(4666)] = 171132, - [SMALL_STATE(4667)] = 171156, - [SMALL_STATE(4668)] = 171190, - [SMALL_STATE(4669)] = 171212, - [SMALL_STATE(4670)] = 171238, - [SMALL_STATE(4671)] = 171262, - [SMALL_STATE(4672)] = 171286, - [SMALL_STATE(4673)] = 171310, - [SMALL_STATE(4674)] = 171334, - [SMALL_STATE(4675)] = 171358, - [SMALL_STATE(4676)] = 171404, - [SMALL_STATE(4677)] = 171428, - [SMALL_STATE(4678)] = 171452, - [SMALL_STATE(4679)] = 171476, - [SMALL_STATE(4680)] = 171502, - [SMALL_STATE(4681)] = 171526, - [SMALL_STATE(4682)] = 171548, - [SMALL_STATE(4683)] = 171572, - [SMALL_STATE(4684)] = 171596, - [SMALL_STATE(4685)] = 171618, - [SMALL_STATE(4686)] = 171640, - [SMALL_STATE(4687)] = 171664, - [SMALL_STATE(4688)] = 171688, - [SMALL_STATE(4689)] = 171712, - [SMALL_STATE(4690)] = 171736, - [SMALL_STATE(4691)] = 171760, - [SMALL_STATE(4692)] = 171806, - [SMALL_STATE(4693)] = 171830, - [SMALL_STATE(4694)] = 171854, - [SMALL_STATE(4695)] = 171878, - [SMALL_STATE(4696)] = 171902, - [SMALL_STATE(4697)] = 171926, - [SMALL_STATE(4698)] = 171950, - [SMALL_STATE(4699)] = 171972, - [SMALL_STATE(4700)] = 172016, - [SMALL_STATE(4701)] = 172040, - [SMALL_STATE(4702)] = 172064, - [SMALL_STATE(4703)] = 172088, - [SMALL_STATE(4704)] = 172112, - [SMALL_STATE(4705)] = 172136, - [SMALL_STATE(4706)] = 172158, - [SMALL_STATE(4707)] = 172182, - [SMALL_STATE(4708)] = 172206, - [SMALL_STATE(4709)] = 172234, - [SMALL_STATE(4710)] = 172262, - [SMALL_STATE(4711)] = 172290, - [SMALL_STATE(4712)] = 172318, - [SMALL_STATE(4713)] = 172346, - [SMALL_STATE(4714)] = 172374, - [SMALL_STATE(4715)] = 172402, - [SMALL_STATE(4716)] = 172430, - [SMALL_STATE(4717)] = 172454, - [SMALL_STATE(4718)] = 172478, - [SMALL_STATE(4719)] = 172506, - [SMALL_STATE(4720)] = 172534, - [SMALL_STATE(4721)] = 172562, - [SMALL_STATE(4722)] = 172586, - [SMALL_STATE(4723)] = 172610, - [SMALL_STATE(4724)] = 172634, - [SMALL_STATE(4725)] = 172658, - [SMALL_STATE(4726)] = 172686, - [SMALL_STATE(4727)] = 172710, - [SMALL_STATE(4728)] = 172734, - [SMALL_STATE(4729)] = 172758, - [SMALL_STATE(4730)] = 172782, - [SMALL_STATE(4731)] = 172806, - [SMALL_STATE(4732)] = 172830, - [SMALL_STATE(4733)] = 172854, - [SMALL_STATE(4734)] = 172876, - [SMALL_STATE(4735)] = 172900, - [SMALL_STATE(4736)] = 172922, - [SMALL_STATE(4737)] = 172946, - [SMALL_STATE(4738)] = 172970, - [SMALL_STATE(4739)] = 172994, - [SMALL_STATE(4740)] = 173018, - [SMALL_STATE(4741)] = 173042, - [SMALL_STATE(4742)] = 173066, - [SMALL_STATE(4743)] = 173090, - [SMALL_STATE(4744)] = 173114, - [SMALL_STATE(4745)] = 173138, - [SMALL_STATE(4746)] = 173162, - [SMALL_STATE(4747)] = 173186, - [SMALL_STATE(4748)] = 173210, - [SMALL_STATE(4749)] = 173234, - [SMALL_STATE(4750)] = 173258, - [SMALL_STATE(4751)] = 173282, - [SMALL_STATE(4752)] = 173306, - [SMALL_STATE(4753)] = 173330, - [SMALL_STATE(4754)] = 173354, - [SMALL_STATE(4755)] = 173378, - [SMALL_STATE(4756)] = 173402, - [SMALL_STATE(4757)] = 173426, - [SMALL_STATE(4758)] = 173450, - [SMALL_STATE(4759)] = 173474, - [SMALL_STATE(4760)] = 173498, - [SMALL_STATE(4761)] = 173522, - [SMALL_STATE(4762)] = 173546, - [SMALL_STATE(4763)] = 173570, - [SMALL_STATE(4764)] = 173594, - [SMALL_STATE(4765)] = 173618, - [SMALL_STATE(4766)] = 173642, - [SMALL_STATE(4767)] = 173666, - [SMALL_STATE(4768)] = 173690, - [SMALL_STATE(4769)] = 173714, - [SMALL_STATE(4770)] = 173738, - [SMALL_STATE(4771)] = 173762, - [SMALL_STATE(4772)] = 173786, - [SMALL_STATE(4773)] = 173810, - [SMALL_STATE(4774)] = 173834, - [SMALL_STATE(4775)] = 173858, - [SMALL_STATE(4776)] = 173882, - [SMALL_STATE(4777)] = 173906, - [SMALL_STATE(4778)] = 173930, - [SMALL_STATE(4779)] = 173954, - [SMALL_STATE(4780)] = 173978, - [SMALL_STATE(4781)] = 174010, - [SMALL_STATE(4782)] = 174034, - [SMALL_STATE(4783)] = 174058, - [SMALL_STATE(4784)] = 174082, - [SMALL_STATE(4785)] = 174106, - [SMALL_STATE(4786)] = 174130, - [SMALL_STATE(4787)] = 174154, - [SMALL_STATE(4788)] = 174178, - [SMALL_STATE(4789)] = 174202, - [SMALL_STATE(4790)] = 174226, - [SMALL_STATE(4791)] = 174250, - [SMALL_STATE(4792)] = 174274, - [SMALL_STATE(4793)] = 174312, - [SMALL_STATE(4794)] = 174336, - [SMALL_STATE(4795)] = 174382, - [SMALL_STATE(4796)] = 174420, - [SMALL_STATE(4797)] = 174444, - [SMALL_STATE(4798)] = 174468, - [SMALL_STATE(4799)] = 174492, - [SMALL_STATE(4800)] = 174516, - [SMALL_STATE(4801)] = 174540, - [SMALL_STATE(4802)] = 174564, - [SMALL_STATE(4803)] = 174588, - [SMALL_STATE(4804)] = 174612, - [SMALL_STATE(4805)] = 174633, - [SMALL_STATE(4806)] = 174656, - [SMALL_STATE(4807)] = 174679, - [SMALL_STATE(4808)] = 174718, - [SMALL_STATE(4809)] = 174739, - [SMALL_STATE(4810)] = 174766, - [SMALL_STATE(4811)] = 174793, - [SMALL_STATE(4812)] = 174816, - [SMALL_STATE(4813)] = 174839, - [SMALL_STATE(4814)] = 174860, - [SMALL_STATE(4815)] = 174881, - [SMALL_STATE(4816)] = 174902, - [SMALL_STATE(4817)] = 174923, - [SMALL_STATE(4818)] = 174944, - [SMALL_STATE(4819)] = 174983, - [SMALL_STATE(4820)] = 175010, - [SMALL_STATE(4821)] = 175031, - [SMALL_STATE(4822)] = 175052, - [SMALL_STATE(4823)] = 175091, - [SMALL_STATE(4824)] = 175130, - [SMALL_STATE(4825)] = 175169, - [SMALL_STATE(4826)] = 175190, - [SMALL_STATE(4827)] = 175231, - [SMALL_STATE(4828)] = 175252, - [SMALL_STATE(4829)] = 175275, - [SMALL_STATE(4830)] = 175316, - [SMALL_STATE(4831)] = 175339, - [SMALL_STATE(4832)] = 175362, - [SMALL_STATE(4833)] = 175385, - [SMALL_STATE(4834)] = 175408, - [SMALL_STATE(4835)] = 175431, - [SMALL_STATE(4836)] = 175454, - [SMALL_STATE(4837)] = 175477, - [SMALL_STATE(4838)] = 175500, - [SMALL_STATE(4839)] = 175523, - [SMALL_STATE(4840)] = 175546, - [SMALL_STATE(4841)] = 175569, - [SMALL_STATE(4842)] = 175592, - [SMALL_STATE(4843)] = 175621, - [SMALL_STATE(4844)] = 175644, - [SMALL_STATE(4845)] = 175667, - [SMALL_STATE(4846)] = 175690, - [SMALL_STATE(4847)] = 175713, - [SMALL_STATE(4848)] = 175740, - [SMALL_STATE(4849)] = 175763, - [SMALL_STATE(4850)] = 175786, - [SMALL_STATE(4851)] = 175809, - [SMALL_STATE(4852)] = 175832, - [SMALL_STATE(4853)] = 175855, - [SMALL_STATE(4854)] = 175878, - [SMALL_STATE(4855)] = 175901, - [SMALL_STATE(4856)] = 175924, - [SMALL_STATE(4857)] = 175947, - [SMALL_STATE(4858)] = 175970, - [SMALL_STATE(4859)] = 175991, - [SMALL_STATE(4860)] = 176012, - [SMALL_STATE(4861)] = 176039, - [SMALL_STATE(4862)] = 176060, - [SMALL_STATE(4863)] = 176101, - [SMALL_STATE(4864)] = 176124, - [SMALL_STATE(4865)] = 176145, - [SMALL_STATE(4866)] = 176186, - [SMALL_STATE(4867)] = 176209, - [SMALL_STATE(4868)] = 176232, - [SMALL_STATE(4869)] = 176273, - [SMALL_STATE(4870)] = 176294, - [SMALL_STATE(4871)] = 176333, - [SMALL_STATE(4872)] = 176354, - [SMALL_STATE(4873)] = 176375, - [SMALL_STATE(4874)] = 176398, - [SMALL_STATE(4875)] = 176437, - [SMALL_STATE(4876)] = 176464, - [SMALL_STATE(4877)] = 176487, - [SMALL_STATE(4878)] = 176510, - [SMALL_STATE(4879)] = 176533, - [SMALL_STATE(4880)] = 176572, - [SMALL_STATE(4881)] = 176595, - [SMALL_STATE(4882)] = 176616, - [SMALL_STATE(4883)] = 176637, - [SMALL_STATE(4884)] = 176658, - [SMALL_STATE(4885)] = 176679, - [SMALL_STATE(4886)] = 176700, - [SMALL_STATE(4887)] = 176721, - [SMALL_STATE(4888)] = 176742, - [SMALL_STATE(4889)] = 176763, - [SMALL_STATE(4890)] = 176796, - [SMALL_STATE(4891)] = 176835, - [SMALL_STATE(4892)] = 176876, - [SMALL_STATE(4893)] = 176897, - [SMALL_STATE(4894)] = 176918, - [SMALL_STATE(4895)] = 176939, - [SMALL_STATE(4896)] = 176960, - [SMALL_STATE(4897)] = 176981, - [SMALL_STATE(4898)] = 177002, - [SMALL_STATE(4899)] = 177023, - [SMALL_STATE(4900)] = 177044, - [SMALL_STATE(4901)] = 177071, - [SMALL_STATE(4902)] = 177112, - [SMALL_STATE(4903)] = 177135, - [SMALL_STATE(4904)] = 177176, - [SMALL_STATE(4905)] = 177203, - [SMALL_STATE(4906)] = 177224, - [SMALL_STATE(4907)] = 177245, - [SMALL_STATE(4908)] = 177266, - [SMALL_STATE(4909)] = 177287, - [SMALL_STATE(4910)] = 177308, - [SMALL_STATE(4911)] = 177345, - [SMALL_STATE(4912)] = 177366, - [SMALL_STATE(4913)] = 177387, - [SMALL_STATE(4914)] = 177408, - [SMALL_STATE(4915)] = 177429, - [SMALL_STATE(4916)] = 177450, - [SMALL_STATE(4917)] = 177471, - [SMALL_STATE(4918)] = 177492, - [SMALL_STATE(4919)] = 177513, - [SMALL_STATE(4920)] = 177534, - [SMALL_STATE(4921)] = 177569, - [SMALL_STATE(4922)] = 177590, - [SMALL_STATE(4923)] = 177625, - [SMALL_STATE(4924)] = 177660, - [SMALL_STATE(4925)] = 177695, - [SMALL_STATE(4926)] = 177716, - [SMALL_STATE(4927)] = 177737, - [SMALL_STATE(4928)] = 177758, - [SMALL_STATE(4929)] = 177795, - [SMALL_STATE(4930)] = 177822, - [SMALL_STATE(4931)] = 177861, - [SMALL_STATE(4932)] = 177882, - [SMALL_STATE(4933)] = 177903, - [SMALL_STATE(4934)] = 177924, - [SMALL_STATE(4935)] = 177945, - [SMALL_STATE(4936)] = 177966, - [SMALL_STATE(4937)] = 177987, - [SMALL_STATE(4938)] = 178008, - [SMALL_STATE(4939)] = 178029, - [SMALL_STATE(4940)] = 178050, - [SMALL_STATE(4941)] = 178071, - [SMALL_STATE(4942)] = 178092, - [SMALL_STATE(4943)] = 178113, - [SMALL_STATE(4944)] = 178134, - [SMALL_STATE(4945)] = 178155, - [SMALL_STATE(4946)] = 178176, - [SMALL_STATE(4947)] = 178197, - [SMALL_STATE(4948)] = 178228, - [SMALL_STATE(4949)] = 178249, - [SMALL_STATE(4950)] = 178270, - [SMALL_STATE(4951)] = 178293, - [SMALL_STATE(4952)] = 178316, - [SMALL_STATE(4953)] = 178343, - [SMALL_STATE(4954)] = 178384, - [SMALL_STATE(4955)] = 178423, - [SMALL_STATE(4956)] = 178462, - [SMALL_STATE(4957)] = 178489, - [SMALL_STATE(4958)] = 178516, - [SMALL_STATE(4959)] = 178543, - [SMALL_STATE(4960)] = 178570, - [SMALL_STATE(4961)] = 178597, - [SMALL_STATE(4962)] = 178624, - [SMALL_STATE(4963)] = 178651, - [SMALL_STATE(4964)] = 178678, - [SMALL_STATE(4965)] = 178705, - [SMALL_STATE(4966)] = 178732, - [SMALL_STATE(4967)] = 178759, - [SMALL_STATE(4968)] = 178786, - [SMALL_STATE(4969)] = 178813, - [SMALL_STATE(4970)] = 178834, - [SMALL_STATE(4971)] = 178855, - [SMALL_STATE(4972)] = 178896, - [SMALL_STATE(4973)] = 178923, - [SMALL_STATE(4974)] = 178946, - [SMALL_STATE(4975)] = 178967, - [SMALL_STATE(4976)] = 178988, - [SMALL_STATE(4977)] = 179012, - [SMALL_STATE(4978)] = 179042, - [SMALL_STATE(4979)] = 179078, - [SMALL_STATE(4980)] = 179116, - [SMALL_STATE(4981)] = 179148, - [SMALL_STATE(4982)] = 179174, - [SMALL_STATE(4983)] = 179202, - [SMALL_STATE(4984)] = 179226, - [SMALL_STATE(4985)] = 179258, - [SMALL_STATE(4986)] = 179290, - [SMALL_STATE(4987)] = 179314, - [SMALL_STATE(4988)] = 179346, - [SMALL_STATE(4989)] = 179382, - [SMALL_STATE(4990)] = 179414, - [SMALL_STATE(4991)] = 179440, - [SMALL_STATE(4992)] = 179476, - [SMALL_STATE(4993)] = 179502, - [SMALL_STATE(4994)] = 179528, - [SMALL_STATE(4995)] = 179566, - [SMALL_STATE(4996)] = 179592, - [SMALL_STATE(4997)] = 179618, - [SMALL_STATE(4998)] = 179648, - [SMALL_STATE(4999)] = 179674, - [SMALL_STATE(5000)] = 179704, - [SMALL_STATE(5001)] = 179734, - [SMALL_STATE(5002)] = 179772, - [SMALL_STATE(5003)] = 179802, - [SMALL_STATE(5004)] = 179832, - [SMALL_STATE(5005)] = 179858, - [SMALL_STATE(5006)] = 179888, - [SMALL_STATE(5007)] = 179918, - [SMALL_STATE(5008)] = 179948, - [SMALL_STATE(5009)] = 179978, - [SMALL_STATE(5010)] = 180008, - [SMALL_STATE(5011)] = 180038, - [SMALL_STATE(5012)] = 180068, - [SMALL_STATE(5013)] = 180098, - [SMALL_STATE(5014)] = 180128, - [SMALL_STATE(5015)] = 180158, - [SMALL_STATE(5016)] = 180188, - [SMALL_STATE(5017)] = 180218, - [SMALL_STATE(5018)] = 180248, - [SMALL_STATE(5019)] = 180278, - [SMALL_STATE(5020)] = 180308, - [SMALL_STATE(5021)] = 180346, - [SMALL_STATE(5022)] = 180370, - [SMALL_STATE(5023)] = 180394, - [SMALL_STATE(5024)] = 180420, - [SMALL_STATE(5025)] = 180456, - [SMALL_STATE(5026)] = 180488, - [SMALL_STATE(5027)] = 180512, - [SMALL_STATE(5028)] = 180536, - [SMALL_STATE(5029)] = 180568, - [SMALL_STATE(5030)] = 180598, - [SMALL_STATE(5031)] = 180622, - [SMALL_STATE(5032)] = 180658, - [SMALL_STATE(5033)] = 180680, - [SMALL_STATE(5034)] = 180706, - [SMALL_STATE(5035)] = 180732, - [SMALL_STATE(5036)] = 180764, - [SMALL_STATE(5037)] = 180800, - [SMALL_STATE(5038)] = 180826, - [SMALL_STATE(5039)] = 180856, - [SMALL_STATE(5040)] = 180879, - [SMALL_STATE(5041)] = 180908, - [SMALL_STATE(5042)] = 180937, - [SMALL_STATE(5043)] = 180966, - [SMALL_STATE(5044)] = 180995, - [SMALL_STATE(5045)] = 181024, - [SMALL_STATE(5046)] = 181053, - [SMALL_STATE(5047)] = 181082, - [SMALL_STATE(5048)] = 181111, - [SMALL_STATE(5049)] = 181140, - [SMALL_STATE(5050)] = 181169, - [SMALL_STATE(5051)] = 181198, - [SMALL_STATE(5052)] = 181227, - [SMALL_STATE(5053)] = 181256, - [SMALL_STATE(5054)] = 181285, - [SMALL_STATE(5055)] = 181314, - [SMALL_STATE(5056)] = 181335, - [SMALL_STATE(5057)] = 181364, - [SMALL_STATE(5058)] = 181389, - [SMALL_STATE(5059)] = 181420, - [SMALL_STATE(5060)] = 181443, - [SMALL_STATE(5061)] = 181472, - [SMALL_STATE(5062)] = 181507, - [SMALL_STATE(5063)] = 181538, - [SMALL_STATE(5064)] = 181563, - [SMALL_STATE(5065)] = 181596, - [SMALL_STATE(5066)] = 181621, - [SMALL_STATE(5067)] = 181656, - [SMALL_STATE(5068)] = 181691, - [SMALL_STATE(5069)] = 181712, - [SMALL_STATE(5070)] = 181743, - [SMALL_STATE(5071)] = 181764, - [SMALL_STATE(5072)] = 181799, - [SMALL_STATE(5073)] = 181828, - [SMALL_STATE(5074)] = 181851, - [SMALL_STATE(5075)] = 181872, - [SMALL_STATE(5076)] = 181907, - [SMALL_STATE(5077)] = 181942, - [SMALL_STATE(5078)] = 181977, - [SMALL_STATE(5079)] = 182006, - [SMALL_STATE(5080)] = 182041, - [SMALL_STATE(5081)] = 182076, - [SMALL_STATE(5082)] = 182111, - [SMALL_STATE(5083)] = 182132, - [SMALL_STATE(5084)] = 182165, - [SMALL_STATE(5085)] = 182198, - [SMALL_STATE(5086)] = 182233, - [SMALL_STATE(5087)] = 182268, - [SMALL_STATE(5088)] = 182303, - [SMALL_STATE(5089)] = 182338, - [SMALL_STATE(5090)] = 182373, - [SMALL_STATE(5091)] = 182408, - [SMALL_STATE(5092)] = 182443, - [SMALL_STATE(5093)] = 182476, - [SMALL_STATE(5094)] = 182511, - [SMALL_STATE(5095)] = 182546, - [SMALL_STATE(5096)] = 182581, - [SMALL_STATE(5097)] = 182616, - [SMALL_STATE(5098)] = 182651, - [SMALL_STATE(5099)] = 182678, - [SMALL_STATE(5100)] = 182699, - [SMALL_STATE(5101)] = 182734, - [SMALL_STATE(5102)] = 182769, - [SMALL_STATE(5103)] = 182804, - [SMALL_STATE(5104)] = 182839, - [SMALL_STATE(5105)] = 182874, - [SMALL_STATE(5106)] = 182909, - [SMALL_STATE(5107)] = 182944, - [SMALL_STATE(5108)] = 182979, - [SMALL_STATE(5109)] = 183014, - [SMALL_STATE(5110)] = 183039, - [SMALL_STATE(5111)] = 183068, - [SMALL_STATE(5112)] = 183095, - [SMALL_STATE(5113)] = 183130, - [SMALL_STATE(5114)] = 183155, - [SMALL_STATE(5115)] = 183190, - [SMALL_STATE(5116)] = 183225, - [SMALL_STATE(5117)] = 183254, - [SMALL_STATE(5118)] = 183289, - [SMALL_STATE(5119)] = 183324, - [SMALL_STATE(5120)] = 183359, - [SMALL_STATE(5121)] = 183394, - [SMALL_STATE(5122)] = 183415, - [SMALL_STATE(5123)] = 183450, - [SMALL_STATE(5124)] = 183475, - [SMALL_STATE(5125)] = 183496, - [SMALL_STATE(5126)] = 183517, - [SMALL_STATE(5127)] = 183538, - [SMALL_STATE(5128)] = 183559, - [SMALL_STATE(5129)] = 183594, - [SMALL_STATE(5130)] = 183615, - [SMALL_STATE(5131)] = 183636, - [SMALL_STATE(5132)] = 183671, - [SMALL_STATE(5133)] = 183694, - [SMALL_STATE(5134)] = 183729, - [SMALL_STATE(5135)] = 183754, - [SMALL_STATE(5136)] = 183789, - [SMALL_STATE(5137)] = 183818, - [SMALL_STATE(5138)] = 183839, - [SMALL_STATE(5139)] = 183874, - [SMALL_STATE(5140)] = 183909, - [SMALL_STATE(5141)] = 183944, - [SMALL_STATE(5142)] = 183965, - [SMALL_STATE(5143)] = 183994, - [SMALL_STATE(5144)] = 184023, - [SMALL_STATE(5145)] = 184058, - [SMALL_STATE(5146)] = 184089, - [SMALL_STATE(5147)] = 184120, - [SMALL_STATE(5148)] = 184151, - [SMALL_STATE(5149)] = 184174, - [SMALL_STATE(5150)] = 184197, - [SMALL_STATE(5151)] = 184232, - [SMALL_STATE(5152)] = 184261, - [SMALL_STATE(5153)] = 184282, - [SMALL_STATE(5154)] = 184311, - [SMALL_STATE(5155)] = 184334, - [SMALL_STATE(5156)] = 184355, - [SMALL_STATE(5157)] = 184390, - [SMALL_STATE(5158)] = 184416, - [SMALL_STATE(5159)] = 184446, - [SMALL_STATE(5160)] = 184468, - [SMALL_STATE(5161)] = 184492, - [SMALL_STATE(5162)] = 184518, - [SMALL_STATE(5163)] = 184540, - [SMALL_STATE(5164)] = 184562, - [SMALL_STATE(5165)] = 184592, - [SMALL_STATE(5166)] = 184616, - [SMALL_STATE(5167)] = 184642, - [SMALL_STATE(5168)] = 184668, - [SMALL_STATE(5169)] = 184698, - [SMALL_STATE(5170)] = 184728, - [SMALL_STATE(5171)] = 184756, - [SMALL_STATE(5172)] = 184784, - [SMALL_STATE(5173)] = 184812, - [SMALL_STATE(5174)] = 184840, - [SMALL_STATE(5175)] = 184868, - [SMALL_STATE(5176)] = 184896, - [SMALL_STATE(5177)] = 184924, - [SMALL_STATE(5178)] = 184952, - [SMALL_STATE(5179)] = 184980, - [SMALL_STATE(5180)] = 185008, - [SMALL_STATE(5181)] = 185036, - [SMALL_STATE(5182)] = 185064, - [SMALL_STATE(5183)] = 185092, - [SMALL_STATE(5184)] = 185120, - [SMALL_STATE(5185)] = 185148, - [SMALL_STATE(5186)] = 185176, - [SMALL_STATE(5187)] = 185204, - [SMALL_STATE(5188)] = 185232, - [SMALL_STATE(5189)] = 185260, - [SMALL_STATE(5190)] = 185288, - [SMALL_STATE(5191)] = 185316, - [SMALL_STATE(5192)] = 185344, - [SMALL_STATE(5193)] = 185374, - [SMALL_STATE(5194)] = 185404, - [SMALL_STATE(5195)] = 185428, - [SMALL_STATE(5196)] = 185452, - [SMALL_STATE(5197)] = 185482, - [SMALL_STATE(5198)] = 185504, - [SMALL_STATE(5199)] = 185524, - [SMALL_STATE(5200)] = 185544, - [SMALL_STATE(5201)] = 185564, - [SMALL_STATE(5202)] = 185584, - [SMALL_STATE(5203)] = 185614, - [SMALL_STATE(5204)] = 185644, - [SMALL_STATE(5205)] = 185668, - [SMALL_STATE(5206)] = 185692, - [SMALL_STATE(5207)] = 185716, - [SMALL_STATE(5208)] = 185746, - [SMALL_STATE(5209)] = 185776, - [SMALL_STATE(5210)] = 185800, - [SMALL_STATE(5211)] = 185830, - [SMALL_STATE(5212)] = 185860, - [SMALL_STATE(5213)] = 185890, - [SMALL_STATE(5214)] = 185920, - [SMALL_STATE(5215)] = 185950, - [SMALL_STATE(5216)] = 185980, - [SMALL_STATE(5217)] = 186010, - [SMALL_STATE(5218)] = 186040, - [SMALL_STATE(5219)] = 186070, - [SMALL_STATE(5220)] = 186100, - [SMALL_STATE(5221)] = 186130, - [SMALL_STATE(5222)] = 186150, - [SMALL_STATE(5223)] = 186180, - [SMALL_STATE(5224)] = 186210, - [SMALL_STATE(5225)] = 186240, - [SMALL_STATE(5226)] = 186270, - [SMALL_STATE(5227)] = 186300, - [SMALL_STATE(5228)] = 186330, - [SMALL_STATE(5229)] = 186360, - [SMALL_STATE(5230)] = 186390, - [SMALL_STATE(5231)] = 186420, - [SMALL_STATE(5232)] = 186450, - [SMALL_STATE(5233)] = 186480, - [SMALL_STATE(5234)] = 186510, - [SMALL_STATE(5235)] = 186540, - [SMALL_STATE(5236)] = 186568, - [SMALL_STATE(5237)] = 186598, - [SMALL_STATE(5238)] = 186628, - [SMALL_STATE(5239)] = 186658, - [SMALL_STATE(5240)] = 186688, - [SMALL_STATE(5241)] = 186718, - [SMALL_STATE(5242)] = 186748, - [SMALL_STATE(5243)] = 186778, - [SMALL_STATE(5244)] = 186808, - [SMALL_STATE(5245)] = 186838, - [SMALL_STATE(5246)] = 186858, - [SMALL_STATE(5247)] = 186888, - [SMALL_STATE(5248)] = 186918, - [SMALL_STATE(5249)] = 186938, - [SMALL_STATE(5250)] = 186968, - [SMALL_STATE(5251)] = 186988, - [SMALL_STATE(5252)] = 187008, - [SMALL_STATE(5253)] = 187038, - [SMALL_STATE(5254)] = 187066, - [SMALL_STATE(5255)] = 187096, - [SMALL_STATE(5256)] = 187126, - [SMALL_STATE(5257)] = 187146, - [SMALL_STATE(5258)] = 187176, - [SMALL_STATE(5259)] = 187206, - [SMALL_STATE(5260)] = 187230, - [SMALL_STATE(5261)] = 187260, - [SMALL_STATE(5262)] = 187282, - [SMALL_STATE(5263)] = 187302, - [SMALL_STATE(5264)] = 187332, - [SMALL_STATE(5265)] = 187352, - [SMALL_STATE(5266)] = 187382, - [SMALL_STATE(5267)] = 187402, - [SMALL_STATE(5268)] = 187424, - [SMALL_STATE(5269)] = 187444, - [SMALL_STATE(5270)] = 187466, - [SMALL_STATE(5271)] = 187486, - [SMALL_STATE(5272)] = 187508, - [SMALL_STATE(5273)] = 187528, - [SMALL_STATE(5274)] = 187558, - [SMALL_STATE(5275)] = 187588, - [SMALL_STATE(5276)] = 187612, - [SMALL_STATE(5277)] = 187632, - [SMALL_STATE(5278)] = 187662, - [SMALL_STATE(5279)] = 187689, - [SMALL_STATE(5280)] = 187716, - [SMALL_STATE(5281)] = 187737, - [SMALL_STATE(5282)] = 187760, - [SMALL_STATE(5283)] = 187781, - [SMALL_STATE(5284)] = 187810, - [SMALL_STATE(5285)] = 187829, - [SMALL_STATE(5286)] = 187858, - [SMALL_STATE(5287)] = 187883, - [SMALL_STATE(5288)] = 187906, - [SMALL_STATE(5289)] = 187933, - [SMALL_STATE(5290)] = 187954, - [SMALL_STATE(5291)] = 187975, - [SMALL_STATE(5292)] = 187996, - [SMALL_STATE(5293)] = 188021, - [SMALL_STATE(5294)] = 188040, - [SMALL_STATE(5295)] = 188059, - [SMALL_STATE(5296)] = 188084, - [SMALL_STATE(5297)] = 188109, - [SMALL_STATE(5298)] = 188134, - [SMALL_STATE(5299)] = 188153, - [SMALL_STATE(5300)] = 188178, - [SMALL_STATE(5301)] = 188199, - [SMALL_STATE(5302)] = 188220, - [SMALL_STATE(5303)] = 188245, - [SMALL_STATE(5304)] = 188268, - [SMALL_STATE(5305)] = 188293, - [SMALL_STATE(5306)] = 188318, - [SMALL_STATE(5307)] = 188343, - [SMALL_STATE(5308)] = 188368, - [SMALL_STATE(5309)] = 188393, - [SMALL_STATE(5310)] = 188420, - [SMALL_STATE(5311)] = 188445, - [SMALL_STATE(5312)] = 188470, - [SMALL_STATE(5313)] = 188495, - [SMALL_STATE(5314)] = 188520, - [SMALL_STATE(5315)] = 188545, - [SMALL_STATE(5316)] = 188570, - [SMALL_STATE(5317)] = 188595, - [SMALL_STATE(5318)] = 188620, - [SMALL_STATE(5319)] = 188645, - [SMALL_STATE(5320)] = 188670, - [SMALL_STATE(5321)] = 188695, - [SMALL_STATE(5322)] = 188720, - [SMALL_STATE(5323)] = 188745, - [SMALL_STATE(5324)] = 188770, - [SMALL_STATE(5325)] = 188795, - [SMALL_STATE(5326)] = 188820, - [SMALL_STATE(5327)] = 188845, - [SMALL_STATE(5328)] = 188870, - [SMALL_STATE(5329)] = 188895, - [SMALL_STATE(5330)] = 188920, - [SMALL_STATE(5331)] = 188945, - [SMALL_STATE(5332)] = 188970, - [SMALL_STATE(5333)] = 188995, - [SMALL_STATE(5334)] = 189020, - [SMALL_STATE(5335)] = 189045, - [SMALL_STATE(5336)] = 189070, - [SMALL_STATE(5337)] = 189095, - [SMALL_STATE(5338)] = 189120, - [SMALL_STATE(5339)] = 189145, - [SMALL_STATE(5340)] = 189170, - [SMALL_STATE(5341)] = 189195, - [SMALL_STATE(5342)] = 189220, - [SMALL_STATE(5343)] = 189243, - [SMALL_STATE(5344)] = 189270, - [SMALL_STATE(5345)] = 189289, - [SMALL_STATE(5346)] = 189314, - [SMALL_STATE(5347)] = 189333, - [SMALL_STATE(5348)] = 189354, - [SMALL_STATE(5349)] = 189379, - [SMALL_STATE(5350)] = 189400, - [SMALL_STATE(5351)] = 189423, - [SMALL_STATE(5352)] = 189444, - [SMALL_STATE(5353)] = 189463, - [SMALL_STATE(5354)] = 189490, - [SMALL_STATE(5355)] = 189517, - [SMALL_STATE(5356)] = 189542, - [SMALL_STATE(5357)] = 189563, - [SMALL_STATE(5358)] = 189590, - [SMALL_STATE(5359)] = 189615, - [SMALL_STATE(5360)] = 189636, - [SMALL_STATE(5361)] = 189663, - [SMALL_STATE(5362)] = 189682, - [SMALL_STATE(5363)] = 189703, - [SMALL_STATE(5364)] = 189724, - [SMALL_STATE(5365)] = 189749, - [SMALL_STATE(5366)] = 189776, - [SMALL_STATE(5367)] = 189801, - [SMALL_STATE(5368)] = 189828, - [SMALL_STATE(5369)] = 189855, - [SMALL_STATE(5370)] = 189882, - [SMALL_STATE(5371)] = 189903, - [SMALL_STATE(5372)] = 189928, - [SMALL_STATE(5373)] = 189955, - [SMALL_STATE(5374)] = 189980, - [SMALL_STATE(5375)] = 190005, - [SMALL_STATE(5376)] = 190030, - [SMALL_STATE(5377)] = 190057, - [SMALL_STATE(5378)] = 190084, - [SMALL_STATE(5379)] = 190109, - [SMALL_STATE(5380)] = 190134, - [SMALL_STATE(5381)] = 190159, - [SMALL_STATE(5382)] = 190186, - [SMALL_STATE(5383)] = 190211, - [SMALL_STATE(5384)] = 190238, - [SMALL_STATE(5385)] = 190257, - [SMALL_STATE(5386)] = 190284, - [SMALL_STATE(5387)] = 190309, - [SMALL_STATE(5388)] = 190336, - [SMALL_STATE(5389)] = 190361, - [SMALL_STATE(5390)] = 190388, - [SMALL_STATE(5391)] = 190413, - [SMALL_STATE(5392)] = 190440, - [SMALL_STATE(5393)] = 190467, - [SMALL_STATE(5394)] = 190494, - [SMALL_STATE(5395)] = 190521, - [SMALL_STATE(5396)] = 190548, - [SMALL_STATE(5397)] = 190575, - [SMALL_STATE(5398)] = 190602, - [SMALL_STATE(5399)] = 190629, - [SMALL_STATE(5400)] = 190656, - [SMALL_STATE(5401)] = 190683, - [SMALL_STATE(5402)] = 190710, - [SMALL_STATE(5403)] = 190735, - [SMALL_STATE(5404)] = 190760, - [SMALL_STATE(5405)] = 190785, - [SMALL_STATE(5406)] = 190810, - [SMALL_STATE(5407)] = 190829, - [SMALL_STATE(5408)] = 190854, - [SMALL_STATE(5409)] = 190875, - [SMALL_STATE(5410)] = 190900, - [SMALL_STATE(5411)] = 190919, - [SMALL_STATE(5412)] = 190938, - [SMALL_STATE(5413)] = 190963, - [SMALL_STATE(5414)] = 190988, - [SMALL_STATE(5415)] = 191013, - [SMALL_STATE(5416)] = 191038, - [SMALL_STATE(5417)] = 191063, - [SMALL_STATE(5418)] = 191088, - [SMALL_STATE(5419)] = 191113, - [SMALL_STATE(5420)] = 191140, - [SMALL_STATE(5421)] = 191159, - [SMALL_STATE(5422)] = 191178, - [SMALL_STATE(5423)] = 191197, - [SMALL_STATE(5424)] = 191216, - [SMALL_STATE(5425)] = 191235, - [SMALL_STATE(5426)] = 191254, - [SMALL_STATE(5427)] = 191273, - [SMALL_STATE(5428)] = 191294, - [SMALL_STATE(5429)] = 191313, - [SMALL_STATE(5430)] = 191338, - [SMALL_STATE(5431)] = 191359, - [SMALL_STATE(5432)] = 191380, - [SMALL_STATE(5433)] = 191407, - [SMALL_STATE(5434)] = 191426, - [SMALL_STATE(5435)] = 191444, - [SMALL_STATE(5436)] = 191462, - [SMALL_STATE(5437)] = 191480, - [SMALL_STATE(5438)] = 191498, - [SMALL_STATE(5439)] = 191524, - [SMALL_STATE(5440)] = 191550, - [SMALL_STATE(5441)] = 191568, - [SMALL_STATE(5442)] = 191590, - [SMALL_STATE(5443)] = 191616, - [SMALL_STATE(5444)] = 191634, - [SMALL_STATE(5445)] = 191652, - [SMALL_STATE(5446)] = 191670, - [SMALL_STATE(5447)] = 191694, - [SMALL_STATE(5448)] = 191712, - [SMALL_STATE(5449)] = 191730, - [SMALL_STATE(5450)] = 191754, - [SMALL_STATE(5451)] = 191772, - [SMALL_STATE(5452)] = 191790, - [SMALL_STATE(5453)] = 191808, - [SMALL_STATE(5454)] = 191834, - [SMALL_STATE(5455)] = 191860, - [SMALL_STATE(5456)] = 191886, - [SMALL_STATE(5457)] = 191912, - [SMALL_STATE(5458)] = 191930, - [SMALL_STATE(5459)] = 191948, - [SMALL_STATE(5460)] = 191966, - [SMALL_STATE(5461)] = 191990, - [SMALL_STATE(5462)] = 192008, - [SMALL_STATE(5463)] = 192026, - [SMALL_STATE(5464)] = 192044, - [SMALL_STATE(5465)] = 192062, - [SMALL_STATE(5466)] = 192080, - [SMALL_STATE(5467)] = 192098, - [SMALL_STATE(5468)] = 192116, - [SMALL_STATE(5469)] = 192134, - [SMALL_STATE(5470)] = 192152, - [SMALL_STATE(5471)] = 192172, - [SMALL_STATE(5472)] = 192190, - [SMALL_STATE(5473)] = 192208, - [SMALL_STATE(5474)] = 192226, - [SMALL_STATE(5475)] = 192244, - [SMALL_STATE(5476)] = 192262, - [SMALL_STATE(5477)] = 192280, - [SMALL_STATE(5478)] = 192302, - [SMALL_STATE(5479)] = 192320, - [SMALL_STATE(5480)] = 192346, - [SMALL_STATE(5481)] = 192364, - [SMALL_STATE(5482)] = 192382, - [SMALL_STATE(5483)] = 192408, - [SMALL_STATE(5484)] = 192430, - [SMALL_STATE(5485)] = 192448, - [SMALL_STATE(5486)] = 192466, - [SMALL_STATE(5487)] = 192492, - [SMALL_STATE(5488)] = 192510, - [SMALL_STATE(5489)] = 192528, - [SMALL_STATE(5490)] = 192554, - [SMALL_STATE(5491)] = 192580, - [SMALL_STATE(5492)] = 192606, - [SMALL_STATE(5493)] = 192622, - [SMALL_STATE(5494)] = 192648, - [SMALL_STATE(5495)] = 192674, - [SMALL_STATE(5496)] = 192692, - [SMALL_STATE(5497)] = 192710, - [SMALL_STATE(5498)] = 192728, - [SMALL_STATE(5499)] = 192746, - [SMALL_STATE(5500)] = 192764, - [SMALL_STATE(5501)] = 192790, - [SMALL_STATE(5502)] = 192808, - [SMALL_STATE(5503)] = 192826, - [SMALL_STATE(5504)] = 192844, - [SMALL_STATE(5505)] = 192862, - [SMALL_STATE(5506)] = 192882, - [SMALL_STATE(5507)] = 192904, - [SMALL_STATE(5508)] = 192926, - [SMALL_STATE(5509)] = 192944, - [SMALL_STATE(5510)] = 192962, - [SMALL_STATE(5511)] = 192988, - [SMALL_STATE(5512)] = 193004, - [SMALL_STATE(5513)] = 193030, - [SMALL_STATE(5514)] = 193058, - [SMALL_STATE(5515)] = 193084, - [SMALL_STATE(5516)] = 193112, - [SMALL_STATE(5517)] = 193138, - [SMALL_STATE(5518)] = 193164, - [SMALL_STATE(5519)] = 193190, - [SMALL_STATE(5520)] = 193210, - [SMALL_STATE(5521)] = 193236, - [SMALL_STATE(5522)] = 193258, - [SMALL_STATE(5523)] = 193276, - [SMALL_STATE(5524)] = 193296, - [SMALL_STATE(5525)] = 193318, - [SMALL_STATE(5526)] = 193338, - [SMALL_STATE(5527)] = 193364, - [SMALL_STATE(5528)] = 193390, - [SMALL_STATE(5529)] = 193416, - [SMALL_STATE(5530)] = 193442, - [SMALL_STATE(5531)] = 193468, - [SMALL_STATE(5532)] = 193486, - [SMALL_STATE(5533)] = 193512, - [SMALL_STATE(5534)] = 193536, - [SMALL_STATE(5535)] = 193554, - [SMALL_STATE(5536)] = 193576, - [SMALL_STATE(5537)] = 193594, - [SMALL_STATE(5538)] = 193612, - [SMALL_STATE(5539)] = 193630, - [SMALL_STATE(5540)] = 193648, - [SMALL_STATE(5541)] = 193674, - [SMALL_STATE(5542)] = 193692, - [SMALL_STATE(5543)] = 193710, - [SMALL_STATE(5544)] = 193730, - [SMALL_STATE(5545)] = 193756, - [SMALL_STATE(5546)] = 193774, - [SMALL_STATE(5547)] = 193792, - [SMALL_STATE(5548)] = 193818, - [SMALL_STATE(5549)] = 193836, - [SMALL_STATE(5550)] = 193854, - [SMALL_STATE(5551)] = 193872, - [SMALL_STATE(5552)] = 193896, - [SMALL_STATE(5553)] = 193920, - [SMALL_STATE(5554)] = 193938, - [SMALL_STATE(5555)] = 193956, - [SMALL_STATE(5556)] = 193974, - [SMALL_STATE(5557)] = 193994, - [SMALL_STATE(5558)] = 194020, - [SMALL_STATE(5559)] = 194046, - [SMALL_STATE(5560)] = 194066, - [SMALL_STATE(5561)] = 194084, - [SMALL_STATE(5562)] = 194106, - [SMALL_STATE(5563)] = 194126, - [SMALL_STATE(5564)] = 194144, - [SMALL_STATE(5565)] = 194170, - [SMALL_STATE(5566)] = 194196, - [SMALL_STATE(5567)] = 194214, - [SMALL_STATE(5568)] = 194240, - [SMALL_STATE(5569)] = 194266, - [SMALL_STATE(5570)] = 194288, - [SMALL_STATE(5571)] = 194308, - [SMALL_STATE(5572)] = 194326, - [SMALL_STATE(5573)] = 194344, - [SMALL_STATE(5574)] = 194370, - [SMALL_STATE(5575)] = 194390, - [SMALL_STATE(5576)] = 194407, - [SMALL_STATE(5577)] = 194424, - [SMALL_STATE(5578)] = 194441, - [SMALL_STATE(5579)] = 194458, - [SMALL_STATE(5580)] = 194475, - [SMALL_STATE(5581)] = 194500, - [SMALL_STATE(5582)] = 194517, - [SMALL_STATE(5583)] = 194534, - [SMALL_STATE(5584)] = 194551, - [SMALL_STATE(5585)] = 194570, - [SMALL_STATE(5586)] = 194593, - [SMALL_STATE(5587)] = 194614, - [SMALL_STATE(5588)] = 194637, - [SMALL_STATE(5589)] = 194662, - [SMALL_STATE(5590)] = 194687, - [SMALL_STATE(5591)] = 194706, - [SMALL_STATE(5592)] = 194729, - [SMALL_STATE(5593)] = 194754, - [SMALL_STATE(5594)] = 194779, - [SMALL_STATE(5595)] = 194800, - [SMALL_STATE(5596)] = 194825, - [SMALL_STATE(5597)] = 194846, - [SMALL_STATE(5598)] = 194871, - [SMALL_STATE(5599)] = 194888, - [SMALL_STATE(5600)] = 194913, - [SMALL_STATE(5601)] = 194938, - [SMALL_STATE(5602)] = 194955, - [SMALL_STATE(5603)] = 194980, - [SMALL_STATE(5604)] = 195003, - [SMALL_STATE(5605)] = 195028, - [SMALL_STATE(5606)] = 195053, - [SMALL_STATE(5607)] = 195076, - [SMALL_STATE(5608)] = 195101, - [SMALL_STATE(5609)] = 195126, - [SMALL_STATE(5610)] = 195147, - [SMALL_STATE(5611)] = 195172, - [SMALL_STATE(5612)] = 195195, - [SMALL_STATE(5613)] = 195216, - [SMALL_STATE(5614)] = 195241, - [SMALL_STATE(5615)] = 195266, - [SMALL_STATE(5616)] = 195287, - [SMALL_STATE(5617)] = 195304, - [SMALL_STATE(5618)] = 195321, - [SMALL_STATE(5619)] = 195338, - [SMALL_STATE(5620)] = 195361, - [SMALL_STATE(5621)] = 195386, - [SMALL_STATE(5622)] = 195411, - [SMALL_STATE(5623)] = 195428, - [SMALL_STATE(5624)] = 195451, - [SMALL_STATE(5625)] = 195468, - [SMALL_STATE(5626)] = 195493, - [SMALL_STATE(5627)] = 195510, - [SMALL_STATE(5628)] = 195535, - [SMALL_STATE(5629)] = 195554, - [SMALL_STATE(5630)] = 195573, - [SMALL_STATE(5631)] = 195598, - [SMALL_STATE(5632)] = 195623, - [SMALL_STATE(5633)] = 195640, - [SMALL_STATE(5634)] = 195657, - [SMALL_STATE(5635)] = 195682, - [SMALL_STATE(5636)] = 195705, - [SMALL_STATE(5637)] = 195730, - [SMALL_STATE(5638)] = 195755, - [SMALL_STATE(5639)] = 195772, - [SMALL_STATE(5640)] = 195795, - [SMALL_STATE(5641)] = 195820, - [SMALL_STATE(5642)] = 195845, - [SMALL_STATE(5643)] = 195864, - [SMALL_STATE(5644)] = 195889, - [SMALL_STATE(5645)] = 195914, - [SMALL_STATE(5646)] = 195939, - [SMALL_STATE(5647)] = 195964, - [SMALL_STATE(5648)] = 195987, - [SMALL_STATE(5649)] = 196004, - [SMALL_STATE(5650)] = 196027, - [SMALL_STATE(5651)] = 196052, - [SMALL_STATE(5652)] = 196069, - [SMALL_STATE(5653)] = 196094, - [SMALL_STATE(5654)] = 196119, - [SMALL_STATE(5655)] = 196140, - [SMALL_STATE(5656)] = 196163, - [SMALL_STATE(5657)] = 196186, - [SMALL_STATE(5658)] = 196211, - [SMALL_STATE(5659)] = 196228, - [SMALL_STATE(5660)] = 196253, - [SMALL_STATE(5661)] = 196274, - [SMALL_STATE(5662)] = 196293, - [SMALL_STATE(5663)] = 196316, - [SMALL_STATE(5664)] = 196337, - [SMALL_STATE(5665)] = 196360, - [SMALL_STATE(5666)] = 196385, - [SMALL_STATE(5667)] = 196408, - [SMALL_STATE(5668)] = 196433, - [SMALL_STATE(5669)] = 196458, - [SMALL_STATE(5670)] = 196483, - [SMALL_STATE(5671)] = 196508, - [SMALL_STATE(5672)] = 196533, - [SMALL_STATE(5673)] = 196558, - [SMALL_STATE(5674)] = 196583, - [SMALL_STATE(5675)] = 196604, - [SMALL_STATE(5676)] = 196629, - [SMALL_STATE(5677)] = 196646, - [SMALL_STATE(5678)] = 196671, - [SMALL_STATE(5679)] = 196694, - [SMALL_STATE(5680)] = 196711, - [SMALL_STATE(5681)] = 196736, - [SMALL_STATE(5682)] = 196753, - [SMALL_STATE(5683)] = 196772, - [SMALL_STATE(5684)] = 196791, - [SMALL_STATE(5685)] = 196814, - [SMALL_STATE(5686)] = 196835, - [SMALL_STATE(5687)] = 196852, - [SMALL_STATE(5688)] = 196877, - [SMALL_STATE(5689)] = 196898, - [SMALL_STATE(5690)] = 196917, - [SMALL_STATE(5691)] = 196934, - [SMALL_STATE(5692)] = 196951, - [SMALL_STATE(5693)] = 196968, - [SMALL_STATE(5694)] = 196987, - [SMALL_STATE(5695)] = 197012, - [SMALL_STATE(5696)] = 197029, - [SMALL_STATE(5697)] = 197046, - [SMALL_STATE(5698)] = 197071, - [SMALL_STATE(5699)] = 197088, - [SMALL_STATE(5700)] = 197113, - [SMALL_STATE(5701)] = 197138, - [SMALL_STATE(5702)] = 197163, - [SMALL_STATE(5703)] = 197188, - [SMALL_STATE(5704)] = 197213, - [SMALL_STATE(5705)] = 197236, - [SMALL_STATE(5706)] = 197261, - [SMALL_STATE(5707)] = 197286, - [SMALL_STATE(5708)] = 197311, - [SMALL_STATE(5709)] = 197328, - [SMALL_STATE(5710)] = 197345, - [SMALL_STATE(5711)] = 197370, - [SMALL_STATE(5712)] = 197395, - [SMALL_STATE(5713)] = 197416, - [SMALL_STATE(5714)] = 197431, - [SMALL_STATE(5715)] = 197452, - [SMALL_STATE(5716)] = 197469, - [SMALL_STATE(5717)] = 197486, - [SMALL_STATE(5718)] = 197511, - [SMALL_STATE(5719)] = 197528, - [SMALL_STATE(5720)] = 197545, - [SMALL_STATE(5721)] = 197568, - [SMALL_STATE(5722)] = 197591, - [SMALL_STATE(5723)] = 197616, - [SMALL_STATE(5724)] = 197641, - [SMALL_STATE(5725)] = 197666, - [SMALL_STATE(5726)] = 197691, - [SMALL_STATE(5727)] = 197714, - [SMALL_STATE(5728)] = 197737, - [SMALL_STATE(5729)] = 197762, - [SMALL_STATE(5730)] = 197779, - [SMALL_STATE(5731)] = 197796, - [SMALL_STATE(5732)] = 197813, - [SMALL_STATE(5733)] = 197830, - [SMALL_STATE(5734)] = 197849, - [SMALL_STATE(5735)] = 197874, - [SMALL_STATE(5736)] = 197899, - [SMALL_STATE(5737)] = 197918, - [SMALL_STATE(5738)] = 197935, - [SMALL_STATE(5739)] = 197954, - [SMALL_STATE(5740)] = 197973, - [SMALL_STATE(5741)] = 197992, - [SMALL_STATE(5742)] = 198017, - [SMALL_STATE(5743)] = 198038, - [SMALL_STATE(5744)] = 198055, - [SMALL_STATE(5745)] = 198072, - [SMALL_STATE(5746)] = 198095, - [SMALL_STATE(5747)] = 198118, - [SMALL_STATE(5748)] = 198137, - [SMALL_STATE(5749)] = 198156, - [SMALL_STATE(5750)] = 198181, - [SMALL_STATE(5751)] = 198202, - [SMALL_STATE(5752)] = 198227, - [SMALL_STATE(5753)] = 198250, - [SMALL_STATE(5754)] = 198275, - [SMALL_STATE(5755)] = 198296, - [SMALL_STATE(5756)] = 198321, - [SMALL_STATE(5757)] = 198338, - [SMALL_STATE(5758)] = 198355, - [SMALL_STATE(5759)] = 198372, - [SMALL_STATE(5760)] = 198389, - [SMALL_STATE(5761)] = 198406, - [SMALL_STATE(5762)] = 198431, - [SMALL_STATE(5763)] = 198448, - [SMALL_STATE(5764)] = 198469, - [SMALL_STATE(5765)] = 198490, - [SMALL_STATE(5766)] = 198511, - [SMALL_STATE(5767)] = 198534, - [SMALL_STATE(5768)] = 198553, - [SMALL_STATE(5769)] = 198572, - [SMALL_STATE(5770)] = 198589, - [SMALL_STATE(5771)] = 198608, - [SMALL_STATE(5772)] = 198633, - [SMALL_STATE(5773)] = 198658, - [SMALL_STATE(5774)] = 198675, - [SMALL_STATE(5775)] = 198700, - [SMALL_STATE(5776)] = 198717, - [SMALL_STATE(5777)] = 198734, - [SMALL_STATE(5778)] = 198751, - [SMALL_STATE(5779)] = 198772, - [SMALL_STATE(5780)] = 198795, - [SMALL_STATE(5781)] = 198814, - [SMALL_STATE(5782)] = 198837, - [SMALL_STATE(5783)] = 198862, - [SMALL_STATE(5784)] = 198887, - [SMALL_STATE(5785)] = 198908, - [SMALL_STATE(5786)] = 198933, - [SMALL_STATE(5787)] = 198954, - [SMALL_STATE(5788)] = 198971, - [SMALL_STATE(5789)] = 198996, - [SMALL_STATE(5790)] = 199021, - [SMALL_STATE(5791)] = 199038, - [SMALL_STATE(5792)] = 199063, - [SMALL_STATE(5793)] = 199080, - [SMALL_STATE(5794)] = 199097, - [SMALL_STATE(5795)] = 199122, - [SMALL_STATE(5796)] = 199147, - [SMALL_STATE(5797)] = 199164, - [SMALL_STATE(5798)] = 199189, - [SMALL_STATE(5799)] = 199212, - [SMALL_STATE(5800)] = 199229, - [SMALL_STATE(5801)] = 199246, - [SMALL_STATE(5802)] = 199271, - [SMALL_STATE(5803)] = 199288, - [SMALL_STATE(5804)] = 199313, - [SMALL_STATE(5805)] = 199336, - [SMALL_STATE(5806)] = 199361, - [SMALL_STATE(5807)] = 199378, - [SMALL_STATE(5808)] = 199395, - [SMALL_STATE(5809)] = 199417, - [SMALL_STATE(5810)] = 199431, - [SMALL_STATE(5811)] = 199453, - [SMALL_STATE(5812)] = 199467, - [SMALL_STATE(5813)] = 199481, - [SMALL_STATE(5814)] = 199495, - [SMALL_STATE(5815)] = 199511, - [SMALL_STATE(5816)] = 199525, - [SMALL_STATE(5817)] = 199539, - [SMALL_STATE(5818)] = 199557, - [SMALL_STATE(5819)] = 199579, - [SMALL_STATE(5820)] = 199593, - [SMALL_STATE(5821)] = 199607, - [SMALL_STATE(5822)] = 199621, - [SMALL_STATE(5823)] = 199643, - [SMALL_STATE(5824)] = 199665, - [SMALL_STATE(5825)] = 199687, - [SMALL_STATE(5826)] = 199709, - [SMALL_STATE(5827)] = 199731, - [SMALL_STATE(5828)] = 199745, - [SMALL_STATE(5829)] = 199759, - [SMALL_STATE(5830)] = 199781, - [SMALL_STATE(5831)] = 199795, - [SMALL_STATE(5832)] = 199809, - [SMALL_STATE(5833)] = 199831, - [SMALL_STATE(5834)] = 199853, - [SMALL_STATE(5835)] = 199875, - [SMALL_STATE(5836)] = 199897, - [SMALL_STATE(5837)] = 199911, - [SMALL_STATE(5838)] = 199933, - [SMALL_STATE(5839)] = 199955, - [SMALL_STATE(5840)] = 199977, - [SMALL_STATE(5841)] = 199999, - [SMALL_STATE(5842)] = 200013, - [SMALL_STATE(5843)] = 200027, - [SMALL_STATE(5844)] = 200041, - [SMALL_STATE(5845)] = 200055, - [SMALL_STATE(5846)] = 200069, - [SMALL_STATE(5847)] = 200083, - [SMALL_STATE(5848)] = 200099, - [SMALL_STATE(5849)] = 200121, - [SMALL_STATE(5850)] = 200143, - [SMALL_STATE(5851)] = 200157, - [SMALL_STATE(5852)] = 200179, - [SMALL_STATE(5853)] = 200193, - [SMALL_STATE(5854)] = 200207, - [SMALL_STATE(5855)] = 200221, - [SMALL_STATE(5856)] = 200243, - [SMALL_STATE(5857)] = 200257, - [SMALL_STATE(5858)] = 200275, - [SMALL_STATE(5859)] = 200289, - [SMALL_STATE(5860)] = 200303, - [SMALL_STATE(5861)] = 200317, - [SMALL_STATE(5862)] = 200335, - [SMALL_STATE(5863)] = 200353, - [SMALL_STATE(5864)] = 200369, - [SMALL_STATE(5865)] = 200383, - [SMALL_STATE(5866)] = 200405, - [SMALL_STATE(5867)] = 200427, - [SMALL_STATE(5868)] = 200441, - [SMALL_STATE(5869)] = 200463, - [SMALL_STATE(5870)] = 200483, - [SMALL_STATE(5871)] = 200497, - [SMALL_STATE(5872)] = 200519, - [SMALL_STATE(5873)] = 200533, - [SMALL_STATE(5874)] = 200551, - [SMALL_STATE(5875)] = 200569, - [SMALL_STATE(5876)] = 200583, - [SMALL_STATE(5877)] = 200601, - [SMALL_STATE(5878)] = 200621, - [SMALL_STATE(5879)] = 200643, - [SMALL_STATE(5880)] = 200665, - [SMALL_STATE(5881)] = 200687, - [SMALL_STATE(5882)] = 200705, - [SMALL_STATE(5883)] = 200727, - [SMALL_STATE(5884)] = 200749, - [SMALL_STATE(5885)] = 200771, - [SMALL_STATE(5886)] = 200789, - [SMALL_STATE(5887)] = 200807, - [SMALL_STATE(5888)] = 200829, - [SMALL_STATE(5889)] = 200851, - [SMALL_STATE(5890)] = 200873, - [SMALL_STATE(5891)] = 200895, - [SMALL_STATE(5892)] = 200917, - [SMALL_STATE(5893)] = 200939, - [SMALL_STATE(5894)] = 200961, - [SMALL_STATE(5895)] = 200981, - [SMALL_STATE(5896)] = 201003, - [SMALL_STATE(5897)] = 201023, - [SMALL_STATE(5898)] = 201045, - [SMALL_STATE(5899)] = 201067, - [SMALL_STATE(5900)] = 201089, - [SMALL_STATE(5901)] = 201107, - [SMALL_STATE(5902)] = 201129, - [SMALL_STATE(5903)] = 201145, - [SMALL_STATE(5904)] = 201163, - [SMALL_STATE(5905)] = 201183, - [SMALL_STATE(5906)] = 201201, - [SMALL_STATE(5907)] = 201223, - [SMALL_STATE(5908)] = 201241, - [SMALL_STATE(5909)] = 201263, - [SMALL_STATE(5910)] = 201279, - [SMALL_STATE(5911)] = 201301, - [SMALL_STATE(5912)] = 201317, - [SMALL_STATE(5913)] = 201339, - [SMALL_STATE(5914)] = 201355, - [SMALL_STATE(5915)] = 201377, - [SMALL_STATE(5916)] = 201395, - [SMALL_STATE(5917)] = 201415, - [SMALL_STATE(5918)] = 201437, - [SMALL_STATE(5919)] = 201457, - [SMALL_STATE(5920)] = 201477, - [SMALL_STATE(5921)] = 201499, - [SMALL_STATE(5922)] = 201519, - [SMALL_STATE(5923)] = 201539, - [SMALL_STATE(5924)] = 201561, - [SMALL_STATE(5925)] = 201581, - [SMALL_STATE(5926)] = 201603, - [SMALL_STATE(5927)] = 201623, - [SMALL_STATE(5928)] = 201645, - [SMALL_STATE(5929)] = 201667, - [SMALL_STATE(5930)] = 201689, - [SMALL_STATE(5931)] = 201709, - [SMALL_STATE(5932)] = 201725, - [SMALL_STATE(5933)] = 201747, - [SMALL_STATE(5934)] = 201763, - [SMALL_STATE(5935)] = 201785, - [SMALL_STATE(5936)] = 201807, - [SMALL_STATE(5937)] = 201825, - [SMALL_STATE(5938)] = 201847, - [SMALL_STATE(5939)] = 201869, - [SMALL_STATE(5940)] = 201891, - [SMALL_STATE(5941)] = 201913, - [SMALL_STATE(5942)] = 201935, - [SMALL_STATE(5943)] = 201957, - [SMALL_STATE(5944)] = 201979, - [SMALL_STATE(5945)] = 202001, - [SMALL_STATE(5946)] = 202017, - [SMALL_STATE(5947)] = 202039, - [SMALL_STATE(5948)] = 202061, - [SMALL_STATE(5949)] = 202083, - [SMALL_STATE(5950)] = 202105, - [SMALL_STATE(5951)] = 202127, - [SMALL_STATE(5952)] = 202149, - [SMALL_STATE(5953)] = 202163, - [SMALL_STATE(5954)] = 202177, - [SMALL_STATE(5955)] = 202195, - [SMALL_STATE(5956)] = 202209, - [SMALL_STATE(5957)] = 202223, - [SMALL_STATE(5958)] = 202237, - [SMALL_STATE(5959)] = 202255, - [SMALL_STATE(5960)] = 202277, - [SMALL_STATE(5961)] = 202291, - [SMALL_STATE(5962)] = 202313, - [SMALL_STATE(5963)] = 202327, - [SMALL_STATE(5964)] = 202341, - [SMALL_STATE(5965)] = 202355, - [SMALL_STATE(5966)] = 202369, - [SMALL_STATE(5967)] = 202383, - [SMALL_STATE(5968)] = 202399, - [SMALL_STATE(5969)] = 202421, - [SMALL_STATE(5970)] = 202443, - [SMALL_STATE(5971)] = 202459, - [SMALL_STATE(5972)] = 202481, - [SMALL_STATE(5973)] = 202503, - [SMALL_STATE(5974)] = 202517, - [SMALL_STATE(5975)] = 202539, - [SMALL_STATE(5976)] = 202561, - [SMALL_STATE(5977)] = 202583, - [SMALL_STATE(5978)] = 202601, - [SMALL_STATE(5979)] = 202621, - [SMALL_STATE(5980)] = 202643, - [SMALL_STATE(5981)] = 202657, - [SMALL_STATE(5982)] = 202679, - [SMALL_STATE(5983)] = 202701, - [SMALL_STATE(5984)] = 202719, - [SMALL_STATE(5985)] = 202741, - [SMALL_STATE(5986)] = 202759, - [SMALL_STATE(5987)] = 202781, - [SMALL_STATE(5988)] = 202803, - [SMALL_STATE(5989)] = 202819, - [SMALL_STATE(5990)] = 202835, - [SMALL_STATE(5991)] = 202853, - [SMALL_STATE(5992)] = 202871, - [SMALL_STATE(5993)] = 202889, - [SMALL_STATE(5994)] = 202911, - [SMALL_STATE(5995)] = 202931, - [SMALL_STATE(5996)] = 202953, - [SMALL_STATE(5997)] = 202973, - [SMALL_STATE(5998)] = 202987, - [SMALL_STATE(5999)] = 203005, - [SMALL_STATE(6000)] = 203023, - [SMALL_STATE(6001)] = 203045, - [SMALL_STATE(6002)] = 203067, - [SMALL_STATE(6003)] = 203089, - [SMALL_STATE(6004)] = 203111, - [SMALL_STATE(6005)] = 203133, - [SMALL_STATE(6006)] = 203155, - [SMALL_STATE(6007)] = 203177, - [SMALL_STATE(6008)] = 203199, - [SMALL_STATE(6009)] = 203221, - [SMALL_STATE(6010)] = 203243, - [SMALL_STATE(6011)] = 203265, - [SMALL_STATE(6012)] = 203287, - [SMALL_STATE(6013)] = 203309, - [SMALL_STATE(6014)] = 203323, - [SMALL_STATE(6015)] = 203337, - [SMALL_STATE(6016)] = 203357, - [SMALL_STATE(6017)] = 203379, - [SMALL_STATE(6018)] = 203401, - [SMALL_STATE(6019)] = 203423, - [SMALL_STATE(6020)] = 203445, - [SMALL_STATE(6021)] = 203467, - [SMALL_STATE(6022)] = 203489, - [SMALL_STATE(6023)] = 203503, - [SMALL_STATE(6024)] = 203525, - [SMALL_STATE(6025)] = 203547, - [SMALL_STATE(6026)] = 203569, - [SMALL_STATE(6027)] = 203591, - [SMALL_STATE(6028)] = 203607, - [SMALL_STATE(6029)] = 203623, - [SMALL_STATE(6030)] = 203637, - [SMALL_STATE(6031)] = 203659, - [SMALL_STATE(6032)] = 203681, - [SMALL_STATE(6033)] = 203703, - [SMALL_STATE(6034)] = 203725, - [SMALL_STATE(6035)] = 203739, - [SMALL_STATE(6036)] = 203761, - [SMALL_STATE(6037)] = 203783, - [SMALL_STATE(6038)] = 203805, - [SMALL_STATE(6039)] = 203827, - [SMALL_STATE(6040)] = 203849, - [SMALL_STATE(6041)] = 203871, - [SMALL_STATE(6042)] = 203893, - [SMALL_STATE(6043)] = 203915, - [SMALL_STATE(6044)] = 203937, - [SMALL_STATE(6045)] = 203959, - [SMALL_STATE(6046)] = 203981, - [SMALL_STATE(6047)] = 204003, - [SMALL_STATE(6048)] = 204025, - [SMALL_STATE(6049)] = 204047, - [SMALL_STATE(6050)] = 204063, - [SMALL_STATE(6051)] = 204085, - [SMALL_STATE(6052)] = 204107, - [SMALL_STATE(6053)] = 204129, - [SMALL_STATE(6054)] = 204151, - [SMALL_STATE(6055)] = 204173, - [SMALL_STATE(6056)] = 204195, - [SMALL_STATE(6057)] = 204217, - [SMALL_STATE(6058)] = 204239, - [SMALL_STATE(6059)] = 204261, - [SMALL_STATE(6060)] = 204283, - [SMALL_STATE(6061)] = 204297, - [SMALL_STATE(6062)] = 204319, - [SMALL_STATE(6063)] = 204341, - [SMALL_STATE(6064)] = 204363, - [SMALL_STATE(6065)] = 204385, - [SMALL_STATE(6066)] = 204407, - [SMALL_STATE(6067)] = 204429, - [SMALL_STATE(6068)] = 204443, - [SMALL_STATE(6069)] = 204457, - [SMALL_STATE(6070)] = 204479, - [SMALL_STATE(6071)] = 204493, - [SMALL_STATE(6072)] = 204507, - [SMALL_STATE(6073)] = 204523, - [SMALL_STATE(6074)] = 204537, - [SMALL_STATE(6075)] = 204559, - [SMALL_STATE(6076)] = 204577, - [SMALL_STATE(6077)] = 204590, - [SMALL_STATE(6078)] = 204605, - [SMALL_STATE(6079)] = 204624, - [SMALL_STATE(6080)] = 204639, - [SMALL_STATE(6081)] = 204652, - [SMALL_STATE(6082)] = 204667, - [SMALL_STATE(6083)] = 204684, - [SMALL_STATE(6084)] = 204703, - [SMALL_STATE(6085)] = 204720, - [SMALL_STATE(6086)] = 204737, - [SMALL_STATE(6087)] = 204750, - [SMALL_STATE(6088)] = 204767, - [SMALL_STATE(6089)] = 204786, - [SMALL_STATE(6090)] = 204805, - [SMALL_STATE(6091)] = 204820, - [SMALL_STATE(6092)] = 204839, - [SMALL_STATE(6093)] = 204854, - [SMALL_STATE(6094)] = 204873, - [SMALL_STATE(6095)] = 204892, - [SMALL_STATE(6096)] = 204911, - [SMALL_STATE(6097)] = 204926, - [SMALL_STATE(6098)] = 204945, - [SMALL_STATE(6099)] = 204964, - [SMALL_STATE(6100)] = 204983, - [SMALL_STATE(6101)] = 205002, - [SMALL_STATE(6102)] = 205021, - [SMALL_STATE(6103)] = 205040, - [SMALL_STATE(6104)] = 205059, - [SMALL_STATE(6105)] = 205078, - [SMALL_STATE(6106)] = 205095, - [SMALL_STATE(6107)] = 205110, - [SMALL_STATE(6108)] = 205123, - [SMALL_STATE(6109)] = 205142, - [SMALL_STATE(6110)] = 205155, - [SMALL_STATE(6111)] = 205174, - [SMALL_STATE(6112)] = 205191, - [SMALL_STATE(6113)] = 205206, - [SMALL_STATE(6114)] = 205219, - [SMALL_STATE(6115)] = 205234, - [SMALL_STATE(6116)] = 205247, - [SMALL_STATE(6117)] = 205266, - [SMALL_STATE(6118)] = 205283, - [SMALL_STATE(6119)] = 205298, - [SMALL_STATE(6120)] = 205311, - [SMALL_STATE(6121)] = 205326, - [SMALL_STATE(6122)] = 205341, - [SMALL_STATE(6123)] = 205360, - [SMALL_STATE(6124)] = 205375, - [SMALL_STATE(6125)] = 205390, - [SMALL_STATE(6126)] = 205405, - [SMALL_STATE(6127)] = 205418, - [SMALL_STATE(6128)] = 205431, - [SMALL_STATE(6129)] = 205450, - [SMALL_STATE(6130)] = 205469, - [SMALL_STATE(6131)] = 205488, - [SMALL_STATE(6132)] = 205507, - [SMALL_STATE(6133)] = 205526, - [SMALL_STATE(6134)] = 205545, - [SMALL_STATE(6135)] = 205564, - [SMALL_STATE(6136)] = 205583, - [SMALL_STATE(6137)] = 205596, - [SMALL_STATE(6138)] = 205615, - [SMALL_STATE(6139)] = 205628, - [SMALL_STATE(6140)] = 205641, - [SMALL_STATE(6141)] = 205654, - [SMALL_STATE(6142)] = 205667, - [SMALL_STATE(6143)] = 205684, - [SMALL_STATE(6144)] = 205699, - [SMALL_STATE(6145)] = 205714, - [SMALL_STATE(6146)] = 205727, - [SMALL_STATE(6147)] = 205746, - [SMALL_STATE(6148)] = 205763, - [SMALL_STATE(6149)] = 205782, - [SMALL_STATE(6150)] = 205795, - [SMALL_STATE(6151)] = 205808, - [SMALL_STATE(6152)] = 205827, - [SMALL_STATE(6153)] = 205840, - [SMALL_STATE(6154)] = 205853, - [SMALL_STATE(6155)] = 205870, - [SMALL_STATE(6156)] = 205887, - [SMALL_STATE(6157)] = 205904, - [SMALL_STATE(6158)] = 205921, - [SMALL_STATE(6159)] = 205934, - [SMALL_STATE(6160)] = 205953, - [SMALL_STATE(6161)] = 205972, - [SMALL_STATE(6162)] = 205991, - [SMALL_STATE(6163)] = 206010, - [SMALL_STATE(6164)] = 206029, - [SMALL_STATE(6165)] = 206048, - [SMALL_STATE(6166)] = 206067, - [SMALL_STATE(6167)] = 206086, - [SMALL_STATE(6168)] = 206099, - [SMALL_STATE(6169)] = 206118, - [SMALL_STATE(6170)] = 206131, - [SMALL_STATE(6171)] = 206144, - [SMALL_STATE(6172)] = 206161, - [SMALL_STATE(6173)] = 206178, - [SMALL_STATE(6174)] = 206197, - [SMALL_STATE(6175)] = 206210, - [SMALL_STATE(6176)] = 206229, - [SMALL_STATE(6177)] = 206244, - [SMALL_STATE(6178)] = 206263, - [SMALL_STATE(6179)] = 206280, - [SMALL_STATE(6180)] = 206293, - [SMALL_STATE(6181)] = 206308, - [SMALL_STATE(6182)] = 206327, - [SMALL_STATE(6183)] = 206340, - [SMALL_STATE(6184)] = 206353, - [SMALL_STATE(6185)] = 206372, - [SMALL_STATE(6186)] = 206391, - [SMALL_STATE(6187)] = 206408, - [SMALL_STATE(6188)] = 206427, - [SMALL_STATE(6189)] = 206446, - [SMALL_STATE(6190)] = 206465, - [SMALL_STATE(6191)] = 206484, - [SMALL_STATE(6192)] = 206503, - [SMALL_STATE(6193)] = 206522, - [SMALL_STATE(6194)] = 206541, - [SMALL_STATE(6195)] = 206560, - [SMALL_STATE(6196)] = 206579, - [SMALL_STATE(6197)] = 206592, - [SMALL_STATE(6198)] = 206607, - [SMALL_STATE(6199)] = 206620, - [SMALL_STATE(6200)] = 206633, - [SMALL_STATE(6201)] = 206648, - [SMALL_STATE(6202)] = 206665, - [SMALL_STATE(6203)] = 206684, - [SMALL_STATE(6204)] = 206703, - [SMALL_STATE(6205)] = 206716, - [SMALL_STATE(6206)] = 206729, - [SMALL_STATE(6207)] = 206742, - [SMALL_STATE(6208)] = 206759, - [SMALL_STATE(6209)] = 206772, - [SMALL_STATE(6210)] = 206789, - [SMALL_STATE(6211)] = 206804, - [SMALL_STATE(6212)] = 206823, - [SMALL_STATE(6213)] = 206836, - [SMALL_STATE(6214)] = 206851, - [SMALL_STATE(6215)] = 206870, - [SMALL_STATE(6216)] = 206889, - [SMALL_STATE(6217)] = 206908, - [SMALL_STATE(6218)] = 206927, - [SMALL_STATE(6219)] = 206946, - [SMALL_STATE(6220)] = 206965, - [SMALL_STATE(6221)] = 206984, - [SMALL_STATE(6222)] = 207003, - [SMALL_STATE(6223)] = 207016, - [SMALL_STATE(6224)] = 207029, - [SMALL_STATE(6225)] = 207042, - [SMALL_STATE(6226)] = 207061, - [SMALL_STATE(6227)] = 207078, - [SMALL_STATE(6228)] = 207095, - [SMALL_STATE(6229)] = 207114, - [SMALL_STATE(6230)] = 207133, - [SMALL_STATE(6231)] = 207150, - [SMALL_STATE(6232)] = 207165, - [SMALL_STATE(6233)] = 207180, - [SMALL_STATE(6234)] = 207197, - [SMALL_STATE(6235)] = 207214, - [SMALL_STATE(6236)] = 207233, - [SMALL_STATE(6237)] = 207252, - [SMALL_STATE(6238)] = 207271, - [SMALL_STATE(6239)] = 207290, - [SMALL_STATE(6240)] = 207309, - [SMALL_STATE(6241)] = 207328, - [SMALL_STATE(6242)] = 207347, - [SMALL_STATE(6243)] = 207366, - [SMALL_STATE(6244)] = 207385, - [SMALL_STATE(6245)] = 207400, - [SMALL_STATE(6246)] = 207419, - [SMALL_STATE(6247)] = 207438, - [SMALL_STATE(6248)] = 207451, - [SMALL_STATE(6249)] = 207468, - [SMALL_STATE(6250)] = 207483, - [SMALL_STATE(6251)] = 207502, - [SMALL_STATE(6252)] = 207519, - [SMALL_STATE(6253)] = 207536, - [SMALL_STATE(6254)] = 207555, - [SMALL_STATE(6255)] = 207570, - [SMALL_STATE(6256)] = 207585, - [SMALL_STATE(6257)] = 207600, - [SMALL_STATE(6258)] = 207613, - [SMALL_STATE(6259)] = 207632, - [SMALL_STATE(6260)] = 207651, - [SMALL_STATE(6261)] = 207670, - [SMALL_STATE(6262)] = 207689, - [SMALL_STATE(6263)] = 207708, - [SMALL_STATE(6264)] = 207727, - [SMALL_STATE(6265)] = 207746, - [SMALL_STATE(6266)] = 207765, - [SMALL_STATE(6267)] = 207778, - [SMALL_STATE(6268)] = 207791, - [SMALL_STATE(6269)] = 207810, - [SMALL_STATE(6270)] = 207825, - [SMALL_STATE(6271)] = 207842, - [SMALL_STATE(6272)] = 207857, - [SMALL_STATE(6273)] = 207872, - [SMALL_STATE(6274)] = 207885, - [SMALL_STATE(6275)] = 207902, - [SMALL_STATE(6276)] = 207915, - [SMALL_STATE(6277)] = 207930, - [SMALL_STATE(6278)] = 207949, - [SMALL_STATE(6279)] = 207966, - [SMALL_STATE(6280)] = 207985, - [SMALL_STATE(6281)] = 208004, - [SMALL_STATE(6282)] = 208023, - [SMALL_STATE(6283)] = 208042, - [SMALL_STATE(6284)] = 208061, - [SMALL_STATE(6285)] = 208080, - [SMALL_STATE(6286)] = 208099, - [SMALL_STATE(6287)] = 208118, - [SMALL_STATE(6288)] = 208137, - [SMALL_STATE(6289)] = 208156, - [SMALL_STATE(6290)] = 208175, - [SMALL_STATE(6291)] = 208188, - [SMALL_STATE(6292)] = 208205, - [SMALL_STATE(6293)] = 208222, - [SMALL_STATE(6294)] = 208239, - [SMALL_STATE(6295)] = 208254, - [SMALL_STATE(6296)] = 208271, - [SMALL_STATE(6297)] = 208290, - [SMALL_STATE(6298)] = 208309, - [SMALL_STATE(6299)] = 208328, - [SMALL_STATE(6300)] = 208347, - [SMALL_STATE(6301)] = 208366, - [SMALL_STATE(6302)] = 208385, - [SMALL_STATE(6303)] = 208404, - [SMALL_STATE(6304)] = 208423, - [SMALL_STATE(6305)] = 208442, - [SMALL_STATE(6306)] = 208455, - [SMALL_STATE(6307)] = 208468, - [SMALL_STATE(6308)] = 208485, - [SMALL_STATE(6309)] = 208502, - [SMALL_STATE(6310)] = 208521, - [SMALL_STATE(6311)] = 208538, - [SMALL_STATE(6312)] = 208555, - [SMALL_STATE(6313)] = 208574, - [SMALL_STATE(6314)] = 208593, - [SMALL_STATE(6315)] = 208612, - [SMALL_STATE(6316)] = 208631, - [SMALL_STATE(6317)] = 208650, - [SMALL_STATE(6318)] = 208669, - [SMALL_STATE(6319)] = 208688, - [SMALL_STATE(6320)] = 208707, - [SMALL_STATE(6321)] = 208726, - [SMALL_STATE(6322)] = 208739, - [SMALL_STATE(6323)] = 208756, - [SMALL_STATE(6324)] = 208769, - [SMALL_STATE(6325)] = 208786, - [SMALL_STATE(6326)] = 208805, - [SMALL_STATE(6327)] = 208824, - [SMALL_STATE(6328)] = 208837, - [SMALL_STATE(6329)] = 208854, - [SMALL_STATE(6330)] = 208867, - [SMALL_STATE(6331)] = 208884, - [SMALL_STATE(6332)] = 208903, - [SMALL_STATE(6333)] = 208916, - [SMALL_STATE(6334)] = 208933, - [SMALL_STATE(6335)] = 208952, - [SMALL_STATE(6336)] = 208969, - [SMALL_STATE(6337)] = 208986, - [SMALL_STATE(6338)] = 208999, - [SMALL_STATE(6339)] = 209016, - [SMALL_STATE(6340)] = 209035, - [SMALL_STATE(6341)] = 209052, - [SMALL_STATE(6342)] = 209071, - [SMALL_STATE(6343)] = 209084, - [SMALL_STATE(6344)] = 209101, - [SMALL_STATE(6345)] = 209118, - [SMALL_STATE(6346)] = 209137, - [SMALL_STATE(6347)] = 209150, - [SMALL_STATE(6348)] = 209167, - [SMALL_STATE(6349)] = 209184, - [SMALL_STATE(6350)] = 209203, - [SMALL_STATE(6351)] = 209216, - [SMALL_STATE(6352)] = 209233, - [SMALL_STATE(6353)] = 209250, - [SMALL_STATE(6354)] = 209269, - [SMALL_STATE(6355)] = 209282, - [SMALL_STATE(6356)] = 209299, - [SMALL_STATE(6357)] = 209316, - [SMALL_STATE(6358)] = 209335, - [SMALL_STATE(6359)] = 209348, - [SMALL_STATE(6360)] = 209365, - [SMALL_STATE(6361)] = 209382, - [SMALL_STATE(6362)] = 209401, - [SMALL_STATE(6363)] = 209414, - [SMALL_STATE(6364)] = 209431, - [SMALL_STATE(6365)] = 209448, - [SMALL_STATE(6366)] = 209467, - [SMALL_STATE(6367)] = 209480, - [SMALL_STATE(6368)] = 209497, - [SMALL_STATE(6369)] = 209514, - [SMALL_STATE(6370)] = 209533, - [SMALL_STATE(6371)] = 209546, - [SMALL_STATE(6372)] = 209563, - [SMALL_STATE(6373)] = 209580, - [SMALL_STATE(6374)] = 209593, - [SMALL_STATE(6375)] = 209610, - [SMALL_STATE(6376)] = 209627, - [SMALL_STATE(6377)] = 209640, - [SMALL_STATE(6378)] = 209657, - [SMALL_STATE(6379)] = 209674, - [SMALL_STATE(6380)] = 209687, - [SMALL_STATE(6381)] = 209704, - [SMALL_STATE(6382)] = 209721, - [SMALL_STATE(6383)] = 209734, - [SMALL_STATE(6384)] = 209751, - [SMALL_STATE(6385)] = 209768, - [SMALL_STATE(6386)] = 209781, - [SMALL_STATE(6387)] = 209798, - [SMALL_STATE(6388)] = 209815, - [SMALL_STATE(6389)] = 209834, - [SMALL_STATE(6390)] = 209851, - [SMALL_STATE(6391)] = 209868, - [SMALL_STATE(6392)] = 209885, - [SMALL_STATE(6393)] = 209902, - [SMALL_STATE(6394)] = 209919, - [SMALL_STATE(6395)] = 209936, - [SMALL_STATE(6396)] = 209953, - [SMALL_STATE(6397)] = 209970, - [SMALL_STATE(6398)] = 209987, - [SMALL_STATE(6399)] = 210006, - [SMALL_STATE(6400)] = 210025, - [SMALL_STATE(6401)] = 210038, - [SMALL_STATE(6402)] = 210051, - [SMALL_STATE(6403)] = 210070, - [SMALL_STATE(6404)] = 210083, - [SMALL_STATE(6405)] = 210096, - [SMALL_STATE(6406)] = 210115, - [SMALL_STATE(6407)] = 210134, - [SMALL_STATE(6408)] = 210153, - [SMALL_STATE(6409)] = 210170, - [SMALL_STATE(6410)] = 210189, - [SMALL_STATE(6411)] = 210208, - [SMALL_STATE(6412)] = 210225, - [SMALL_STATE(6413)] = 210244, - [SMALL_STATE(6414)] = 210263, - [SMALL_STATE(6415)] = 210276, - [SMALL_STATE(6416)] = 210295, - [SMALL_STATE(6417)] = 210312, - [SMALL_STATE(6418)] = 210325, - [SMALL_STATE(6419)] = 210344, - [SMALL_STATE(6420)] = 210357, - [SMALL_STATE(6421)] = 210370, - [SMALL_STATE(6422)] = 210389, - [SMALL_STATE(6423)] = 210402, - [SMALL_STATE(6424)] = 210415, - [SMALL_STATE(6425)] = 210428, - [SMALL_STATE(6426)] = 210447, - [SMALL_STATE(6427)] = 210466, - [SMALL_STATE(6428)] = 210485, - [SMALL_STATE(6429)] = 210504, - [SMALL_STATE(6430)] = 210521, - [SMALL_STATE(6431)] = 210534, - [SMALL_STATE(6432)] = 210547, - [SMALL_STATE(6433)] = 210560, - [SMALL_STATE(6434)] = 210577, - [SMALL_STATE(6435)] = 210592, - [SMALL_STATE(6436)] = 210611, - [SMALL_STATE(6437)] = 210630, - [SMALL_STATE(6438)] = 210645, - [SMALL_STATE(6439)] = 210660, - [SMALL_STATE(6440)] = 210673, - [SMALL_STATE(6441)] = 210686, - [SMALL_STATE(6442)] = 210701, - [SMALL_STATE(6443)] = 210716, - [SMALL_STATE(6444)] = 210735, - [SMALL_STATE(6445)] = 210754, - [SMALL_STATE(6446)] = 210767, - [SMALL_STATE(6447)] = 210782, - [SMALL_STATE(6448)] = 210799, - [SMALL_STATE(6449)] = 210816, - [SMALL_STATE(6450)] = 210831, - [SMALL_STATE(6451)] = 210850, - [SMALL_STATE(6452)] = 210865, - [SMALL_STATE(6453)] = 210884, - [SMALL_STATE(6454)] = 210899, - [SMALL_STATE(6455)] = 210916, - [SMALL_STATE(6456)] = 210933, - [SMALL_STATE(6457)] = 210950, - [SMALL_STATE(6458)] = 210969, - [SMALL_STATE(6459)] = 210988, - [SMALL_STATE(6460)] = 211001, - [SMALL_STATE(6461)] = 211020, - [SMALL_STATE(6462)] = 211035, - [SMALL_STATE(6463)] = 211048, - [SMALL_STATE(6464)] = 211063, - [SMALL_STATE(6465)] = 211080, - [SMALL_STATE(6466)] = 211095, - [SMALL_STATE(6467)] = 211110, - [SMALL_STATE(6468)] = 211129, - [SMALL_STATE(6469)] = 211146, - [SMALL_STATE(6470)] = 211165, - [SMALL_STATE(6471)] = 211178, - [SMALL_STATE(6472)] = 211197, - [SMALL_STATE(6473)] = 211212, - [SMALL_STATE(6474)] = 211231, - [SMALL_STATE(6475)] = 211246, - [SMALL_STATE(6476)] = 211263, - [SMALL_STATE(6477)] = 211282, - [SMALL_STATE(6478)] = 211301, - [SMALL_STATE(6479)] = 211320, - [SMALL_STATE(6480)] = 211335, - [SMALL_STATE(6481)] = 211350, - [SMALL_STATE(6482)] = 211369, - [SMALL_STATE(6483)] = 211382, - [SMALL_STATE(6484)] = 211395, - [SMALL_STATE(6485)] = 211410, - [SMALL_STATE(6486)] = 211425, - [SMALL_STATE(6487)] = 211444, - [SMALL_STATE(6488)] = 211463, - [SMALL_STATE(6489)] = 211482, - [SMALL_STATE(6490)] = 211501, - [SMALL_STATE(6491)] = 211520, - [SMALL_STATE(6492)] = 211539, - [SMALL_STATE(6493)] = 211552, - [SMALL_STATE(6494)] = 211565, - [SMALL_STATE(6495)] = 211578, - [SMALL_STATE(6496)] = 211597, - [SMALL_STATE(6497)] = 211610, - [SMALL_STATE(6498)] = 211625, - [SMALL_STATE(6499)] = 211642, - [SMALL_STATE(6500)] = 211655, - [SMALL_STATE(6501)] = 211668, - [SMALL_STATE(6502)] = 211687, - [SMALL_STATE(6503)] = 211706, - [SMALL_STATE(6504)] = 211725, - [SMALL_STATE(6505)] = 211740, - [SMALL_STATE(6506)] = 211753, - [SMALL_STATE(6507)] = 211770, - [SMALL_STATE(6508)] = 211787, - [SMALL_STATE(6509)] = 211806, - [SMALL_STATE(6510)] = 211819, - [SMALL_STATE(6511)] = 211832, - [SMALL_STATE(6512)] = 211851, - [SMALL_STATE(6513)] = 211868, - [SMALL_STATE(6514)] = 211881, - [SMALL_STATE(6515)] = 211896, - [SMALL_STATE(6516)] = 211911, - [SMALL_STATE(6517)] = 211928, - [SMALL_STATE(6518)] = 211947, - [SMALL_STATE(6519)] = 211962, - [SMALL_STATE(6520)] = 211979, - [SMALL_STATE(6521)] = 211994, - [SMALL_STATE(6522)] = 212007, - [SMALL_STATE(6523)] = 212026, - [SMALL_STATE(6524)] = 212041, - [SMALL_STATE(6525)] = 212060, - [SMALL_STATE(6526)] = 212073, - [SMALL_STATE(6527)] = 212088, - [SMALL_STATE(6528)] = 212105, - [SMALL_STATE(6529)] = 212124, - [SMALL_STATE(6530)] = 212137, - [SMALL_STATE(6531)] = 212156, - [SMALL_STATE(6532)] = 212175, - [SMALL_STATE(6533)] = 212190, - [SMALL_STATE(6534)] = 212203, - [SMALL_STATE(6535)] = 212216, - [SMALL_STATE(6536)] = 212231, - [SMALL_STATE(6537)] = 212246, - [SMALL_STATE(6538)] = 212259, - [SMALL_STATE(6539)] = 212276, - [SMALL_STATE(6540)] = 212295, - [SMALL_STATE(6541)] = 212310, - [SMALL_STATE(6542)] = 212323, - [SMALL_STATE(6543)] = 212338, - [SMALL_STATE(6544)] = 212351, - [SMALL_STATE(6545)] = 212370, - [SMALL_STATE(6546)] = 212383, - [SMALL_STATE(6547)] = 212398, - [SMALL_STATE(6548)] = 212417, - [SMALL_STATE(6549)] = 212434, - [SMALL_STATE(6550)] = 212449, - [SMALL_STATE(6551)] = 212464, - [SMALL_STATE(6552)] = 212483, - [SMALL_STATE(6553)] = 212496, - [SMALL_STATE(6554)] = 212515, - [SMALL_STATE(6555)] = 212534, - [SMALL_STATE(6556)] = 212553, - [SMALL_STATE(6557)] = 212572, - [SMALL_STATE(6558)] = 212591, - [SMALL_STATE(6559)] = 212610, - [SMALL_STATE(6560)] = 212629, - [SMALL_STATE(6561)] = 212648, - [SMALL_STATE(6562)] = 212667, - [SMALL_STATE(6563)] = 212686, - [SMALL_STATE(6564)] = 212705, - [SMALL_STATE(6565)] = 212724, - [SMALL_STATE(6566)] = 212743, - [SMALL_STATE(6567)] = 212758, - [SMALL_STATE(6568)] = 212775, - [SMALL_STATE(6569)] = 212788, - [SMALL_STATE(6570)] = 212801, - [SMALL_STATE(6571)] = 212814, - [SMALL_STATE(6572)] = 212833, - [SMALL_STATE(6573)] = 212850, - [SMALL_STATE(6574)] = 212869, - [SMALL_STATE(6575)] = 212882, - [SMALL_STATE(6576)] = 212897, - [SMALL_STATE(6577)] = 212910, - [SMALL_STATE(6578)] = 212929, - [SMALL_STATE(6579)] = 212948, - [SMALL_STATE(6580)] = 212961, - [SMALL_STATE(6581)] = 212978, - [SMALL_STATE(6582)] = 212993, - [SMALL_STATE(6583)] = 213008, - [SMALL_STATE(6584)] = 213025, - [SMALL_STATE(6585)] = 213040, - [SMALL_STATE(6586)] = 213059, - [SMALL_STATE(6587)] = 213078, - [SMALL_STATE(6588)] = 213091, - [SMALL_STATE(6589)] = 213104, - [SMALL_STATE(6590)] = 213119, - [SMALL_STATE(6591)] = 213132, - [SMALL_STATE(6592)] = 213151, - [SMALL_STATE(6593)] = 213170, - [SMALL_STATE(6594)] = 213189, - [SMALL_STATE(6595)] = 213208, - [SMALL_STATE(6596)] = 213227, - [SMALL_STATE(6597)] = 213242, - [SMALL_STATE(6598)] = 213257, - [SMALL_STATE(6599)] = 213270, - [SMALL_STATE(6600)] = 213285, - [SMALL_STATE(6601)] = 213298, - [SMALL_STATE(6602)] = 213311, - [SMALL_STATE(6603)] = 213330, - [SMALL_STATE(6604)] = 213349, - [SMALL_STATE(6605)] = 213368, - [SMALL_STATE(6606)] = 213387, - [SMALL_STATE(6607)] = 213402, - [SMALL_STATE(6608)] = 213421, - [SMALL_STATE(6609)] = 213440, - [SMALL_STATE(6610)] = 213459, - [SMALL_STATE(6611)] = 213478, - [SMALL_STATE(6612)] = 213493, - [SMALL_STATE(6613)] = 213508, - [SMALL_STATE(6614)] = 213521, - [SMALL_STATE(6615)] = 213540, - [SMALL_STATE(6616)] = 213559, - [SMALL_STATE(6617)] = 213578, - [SMALL_STATE(6618)] = 213593, - [SMALL_STATE(6619)] = 213612, - [SMALL_STATE(6620)] = 213625, - [SMALL_STATE(6621)] = 213644, - [SMALL_STATE(6622)] = 213659, - [SMALL_STATE(6623)] = 213674, - [SMALL_STATE(6624)] = 213693, - [SMALL_STATE(6625)] = 213712, - [SMALL_STATE(6626)] = 213731, - [SMALL_STATE(6627)] = 213744, - [SMALL_STATE(6628)] = 213757, - [SMALL_STATE(6629)] = 213770, - [SMALL_STATE(6630)] = 213787, - [SMALL_STATE(6631)] = 213803, - [SMALL_STATE(6632)] = 213819, - [SMALL_STATE(6633)] = 213835, - [SMALL_STATE(6634)] = 213851, - [SMALL_STATE(6635)] = 213867, - [SMALL_STATE(6636)] = 213879, - [SMALL_STATE(6637)] = 213895, - [SMALL_STATE(6638)] = 213911, - [SMALL_STATE(6639)] = 213927, - [SMALL_STATE(6640)] = 213943, - [SMALL_STATE(6641)] = 213957, - [SMALL_STATE(6642)] = 213973, - [SMALL_STATE(6643)] = 213989, - [SMALL_STATE(6644)] = 214003, - [SMALL_STATE(6645)] = 214017, - [SMALL_STATE(6646)] = 214031, - [SMALL_STATE(6647)] = 214047, - [SMALL_STATE(6648)] = 214063, - [SMALL_STATE(6649)] = 214077, - [SMALL_STATE(6650)] = 214089, - [SMALL_STATE(6651)] = 214103, - [SMALL_STATE(6652)] = 214119, - [SMALL_STATE(6653)] = 214133, - [SMALL_STATE(6654)] = 214147, - [SMALL_STATE(6655)] = 214159, - [SMALL_STATE(6656)] = 214175, - [SMALL_STATE(6657)] = 214187, - [SMALL_STATE(6658)] = 214203, - [SMALL_STATE(6659)] = 214219, - [SMALL_STATE(6660)] = 214235, - [SMALL_STATE(6661)] = 214251, - [SMALL_STATE(6662)] = 214267, - [SMALL_STATE(6663)] = 214279, - [SMALL_STATE(6664)] = 214295, - [SMALL_STATE(6665)] = 214311, - [SMALL_STATE(6666)] = 214327, - [SMALL_STATE(6667)] = 214343, - [SMALL_STATE(6668)] = 214359, - [SMALL_STATE(6669)] = 214371, - [SMALL_STATE(6670)] = 214387, - [SMALL_STATE(6671)] = 214403, - [SMALL_STATE(6672)] = 214419, - [SMALL_STATE(6673)] = 214431, - [SMALL_STATE(6674)] = 214447, - [SMALL_STATE(6675)] = 214463, - [SMALL_STATE(6676)] = 214475, - [SMALL_STATE(6677)] = 214491, - [SMALL_STATE(6678)] = 214507, - [SMALL_STATE(6679)] = 214523, - [SMALL_STATE(6680)] = 214539, - [SMALL_STATE(6681)] = 214555, - [SMALL_STATE(6682)] = 214571, - [SMALL_STATE(6683)] = 214585, - [SMALL_STATE(6684)] = 214601, - [SMALL_STATE(6685)] = 214615, - [SMALL_STATE(6686)] = 214631, - [SMALL_STATE(6687)] = 214643, - [SMALL_STATE(6688)] = 214659, - [SMALL_STATE(6689)] = 214673, - [SMALL_STATE(6690)] = 214689, - [SMALL_STATE(6691)] = 214705, - [SMALL_STATE(6692)] = 214721, - [SMALL_STATE(6693)] = 214735, - [SMALL_STATE(6694)] = 214751, - [SMALL_STATE(6695)] = 214765, - [SMALL_STATE(6696)] = 214781, - [SMALL_STATE(6697)] = 214797, - [SMALL_STATE(6698)] = 214813, - [SMALL_STATE(6699)] = 214829, - [SMALL_STATE(6700)] = 214843, - [SMALL_STATE(6701)] = 214855, - [SMALL_STATE(6702)] = 214867, - [SMALL_STATE(6703)] = 214881, - [SMALL_STATE(6704)] = 214897, - [SMALL_STATE(6705)] = 214909, - [SMALL_STATE(6706)] = 214921, - [SMALL_STATE(6707)] = 214937, - [SMALL_STATE(6708)] = 214949, - [SMALL_STATE(6709)] = 214961, - [SMALL_STATE(6710)] = 214973, - [SMALL_STATE(6711)] = 214985, - [SMALL_STATE(6712)] = 214999, - [SMALL_STATE(6713)] = 215011, - [SMALL_STATE(6714)] = 215023, - [SMALL_STATE(6715)] = 215039, - [SMALL_STATE(6716)] = 215053, - [SMALL_STATE(6717)] = 215069, - [SMALL_STATE(6718)] = 215081, - [SMALL_STATE(6719)] = 215095, - [SMALL_STATE(6720)] = 215111, - [SMALL_STATE(6721)] = 215127, - [SMALL_STATE(6722)] = 215143, - [SMALL_STATE(6723)] = 215157, - [SMALL_STATE(6724)] = 215173, - [SMALL_STATE(6725)] = 215189, - [SMALL_STATE(6726)] = 215205, - [SMALL_STATE(6727)] = 215221, - [SMALL_STATE(6728)] = 215237, - [SMALL_STATE(6729)] = 215253, - [SMALL_STATE(6730)] = 215269, - [SMALL_STATE(6731)] = 215281, - [SMALL_STATE(6732)] = 215297, - [SMALL_STATE(6733)] = 215311, - [SMALL_STATE(6734)] = 215327, - [SMALL_STATE(6735)] = 215343, - [SMALL_STATE(6736)] = 215357, - [SMALL_STATE(6737)] = 215369, - [SMALL_STATE(6738)] = 215385, - [SMALL_STATE(6739)] = 215399, - [SMALL_STATE(6740)] = 215415, - [SMALL_STATE(6741)] = 215431, - [SMALL_STATE(6742)] = 215447, - [SMALL_STATE(6743)] = 215463, - [SMALL_STATE(6744)] = 215477, - [SMALL_STATE(6745)] = 215493, - [SMALL_STATE(6746)] = 215509, - [SMALL_STATE(6747)] = 215523, - [SMALL_STATE(6748)] = 215539, - [SMALL_STATE(6749)] = 215553, - [SMALL_STATE(6750)] = 215567, - [SMALL_STATE(6751)] = 215583, - [SMALL_STATE(6752)] = 215599, - [SMALL_STATE(6753)] = 215611, - [SMALL_STATE(6754)] = 215623, - [SMALL_STATE(6755)] = 215639, - [SMALL_STATE(6756)] = 215651, - [SMALL_STATE(6757)] = 215667, - [SMALL_STATE(6758)] = 215681, - [SMALL_STATE(6759)] = 215697, - [SMALL_STATE(6760)] = 215713, - [SMALL_STATE(6761)] = 215727, - [SMALL_STATE(6762)] = 215743, - [SMALL_STATE(6763)] = 215757, - [SMALL_STATE(6764)] = 215773, - [SMALL_STATE(6765)] = 215789, - [SMALL_STATE(6766)] = 215805, - [SMALL_STATE(6767)] = 215817, - [SMALL_STATE(6768)] = 215833, - [SMALL_STATE(6769)] = 215849, - [SMALL_STATE(6770)] = 215865, - [SMALL_STATE(6771)] = 215881, - [SMALL_STATE(6772)] = 215893, - [SMALL_STATE(6773)] = 215909, - [SMALL_STATE(6774)] = 215925, - [SMALL_STATE(6775)] = 215941, - [SMALL_STATE(6776)] = 215953, - [SMALL_STATE(6777)] = 215965, - [SMALL_STATE(6778)] = 215981, - [SMALL_STATE(6779)] = 215997, - [SMALL_STATE(6780)] = 216013, - [SMALL_STATE(6781)] = 216029, - [SMALL_STATE(6782)] = 216043, - [SMALL_STATE(6783)] = 216057, - [SMALL_STATE(6784)] = 216073, - [SMALL_STATE(6785)] = 216087, - [SMALL_STATE(6786)] = 216103, - [SMALL_STATE(6787)] = 216119, - [SMALL_STATE(6788)] = 216131, - [SMALL_STATE(6789)] = 216147, - [SMALL_STATE(6790)] = 216163, - [SMALL_STATE(6791)] = 216179, - [SMALL_STATE(6792)] = 216195, - [SMALL_STATE(6793)] = 216207, - [SMALL_STATE(6794)] = 216223, - [SMALL_STATE(6795)] = 216239, - [SMALL_STATE(6796)] = 216251, - [SMALL_STATE(6797)] = 216265, - [SMALL_STATE(6798)] = 216281, - [SMALL_STATE(6799)] = 216293, - [SMALL_STATE(6800)] = 216309, - [SMALL_STATE(6801)] = 216321, - [SMALL_STATE(6802)] = 216333, - [SMALL_STATE(6803)] = 216345, - [SMALL_STATE(6804)] = 216361, - [SMALL_STATE(6805)] = 216377, - [SMALL_STATE(6806)] = 216391, - [SMALL_STATE(6807)] = 216405, - [SMALL_STATE(6808)] = 216421, - [SMALL_STATE(6809)] = 216437, - [SMALL_STATE(6810)] = 216453, - [SMALL_STATE(6811)] = 216469, - [SMALL_STATE(6812)] = 216483, - [SMALL_STATE(6813)] = 216499, - [SMALL_STATE(6814)] = 216515, - [SMALL_STATE(6815)] = 216531, - [SMALL_STATE(6816)] = 216547, - [SMALL_STATE(6817)] = 216561, - [SMALL_STATE(6818)] = 216577, - [SMALL_STATE(6819)] = 216593, - [SMALL_STATE(6820)] = 216609, - [SMALL_STATE(6821)] = 216623, - [SMALL_STATE(6822)] = 216639, - [SMALL_STATE(6823)] = 216655, - [SMALL_STATE(6824)] = 216669, - [SMALL_STATE(6825)] = 216683, - [SMALL_STATE(6826)] = 216699, - [SMALL_STATE(6827)] = 216715, - [SMALL_STATE(6828)] = 216731, - [SMALL_STATE(6829)] = 216743, - [SMALL_STATE(6830)] = 216759, - [SMALL_STATE(6831)] = 216771, - [SMALL_STATE(6832)] = 216787, - [SMALL_STATE(6833)] = 216803, - [SMALL_STATE(6834)] = 216819, - [SMALL_STATE(6835)] = 216835, - [SMALL_STATE(6836)] = 216851, - [SMALL_STATE(6837)] = 216867, - [SMALL_STATE(6838)] = 216883, - [SMALL_STATE(6839)] = 216899, - [SMALL_STATE(6840)] = 216915, - [SMALL_STATE(6841)] = 216929, - [SMALL_STATE(6842)] = 216945, - [SMALL_STATE(6843)] = 216961, - [SMALL_STATE(6844)] = 216977, - [SMALL_STATE(6845)] = 216993, - [SMALL_STATE(6846)] = 217009, - [SMALL_STATE(6847)] = 217021, - [SMALL_STATE(6848)] = 217035, - [SMALL_STATE(6849)] = 217049, - [SMALL_STATE(6850)] = 217065, - [SMALL_STATE(6851)] = 217079, - [SMALL_STATE(6852)] = 217093, - [SMALL_STATE(6853)] = 217109, - [SMALL_STATE(6854)] = 217121, - [SMALL_STATE(6855)] = 217135, - [SMALL_STATE(6856)] = 217151, - [SMALL_STATE(6857)] = 217167, - [SMALL_STATE(6858)] = 217183, - [SMALL_STATE(6859)] = 217195, - [SMALL_STATE(6860)] = 217211, - [SMALL_STATE(6861)] = 217227, - [SMALL_STATE(6862)] = 217243, - [SMALL_STATE(6863)] = 217257, - [SMALL_STATE(6864)] = 217273, - [SMALL_STATE(6865)] = 217285, - [SMALL_STATE(6866)] = 217299, - [SMALL_STATE(6867)] = 217315, - [SMALL_STATE(6868)] = 217331, - [SMALL_STATE(6869)] = 217345, - [SMALL_STATE(6870)] = 217361, - [SMALL_STATE(6871)] = 217377, - [SMALL_STATE(6872)] = 217389, - [SMALL_STATE(6873)] = 217405, - [SMALL_STATE(6874)] = 217417, - [SMALL_STATE(6875)] = 217433, - [SMALL_STATE(6876)] = 217445, - [SMALL_STATE(6877)] = 217457, - [SMALL_STATE(6878)] = 217473, - [SMALL_STATE(6879)] = 217489, - [SMALL_STATE(6880)] = 217505, - [SMALL_STATE(6881)] = 217521, - [SMALL_STATE(6882)] = 217537, - [SMALL_STATE(6883)] = 217551, - [SMALL_STATE(6884)] = 217567, - [SMALL_STATE(6885)] = 217579, - [SMALL_STATE(6886)] = 217595, - [SMALL_STATE(6887)] = 217611, - [SMALL_STATE(6888)] = 217627, - [SMALL_STATE(6889)] = 217643, - [SMALL_STATE(6890)] = 217659, - [SMALL_STATE(6891)] = 217675, - [SMALL_STATE(6892)] = 217691, - [SMALL_STATE(6893)] = 217707, - [SMALL_STATE(6894)] = 217723, - [SMALL_STATE(6895)] = 217739, - [SMALL_STATE(6896)] = 217755, - [SMALL_STATE(6897)] = 217771, - [SMALL_STATE(6898)] = 217787, - [SMALL_STATE(6899)] = 217803, - [SMALL_STATE(6900)] = 217819, - [SMALL_STATE(6901)] = 217835, - [SMALL_STATE(6902)] = 217851, - [SMALL_STATE(6903)] = 217867, - [SMALL_STATE(6904)] = 217883, - [SMALL_STATE(6905)] = 217897, - [SMALL_STATE(6906)] = 217913, - [SMALL_STATE(6907)] = 217929, - [SMALL_STATE(6908)] = 217945, - [SMALL_STATE(6909)] = 217961, - [SMALL_STATE(6910)] = 217977, - [SMALL_STATE(6911)] = 217993, - [SMALL_STATE(6912)] = 218009, - [SMALL_STATE(6913)] = 218025, - [SMALL_STATE(6914)] = 218041, - [SMALL_STATE(6915)] = 218057, - [SMALL_STATE(6916)] = 218073, - [SMALL_STATE(6917)] = 218085, - [SMALL_STATE(6918)] = 218101, - [SMALL_STATE(6919)] = 218115, - [SMALL_STATE(6920)] = 218131, - [SMALL_STATE(6921)] = 218147, - [SMALL_STATE(6922)] = 218163, - [SMALL_STATE(6923)] = 218179, - [SMALL_STATE(6924)] = 218195, - [SMALL_STATE(6925)] = 218207, - [SMALL_STATE(6926)] = 218223, - [SMALL_STATE(6927)] = 218239, - [SMALL_STATE(6928)] = 218255, - [SMALL_STATE(6929)] = 218271, - [SMALL_STATE(6930)] = 218287, - [SMALL_STATE(6931)] = 218303, - [SMALL_STATE(6932)] = 218317, - [SMALL_STATE(6933)] = 218331, - [SMALL_STATE(6934)] = 218347, - [SMALL_STATE(6935)] = 218363, - [SMALL_STATE(6936)] = 218379, - [SMALL_STATE(6937)] = 218395, - [SMALL_STATE(6938)] = 218409, - [SMALL_STATE(6939)] = 218421, - [SMALL_STATE(6940)] = 218437, - [SMALL_STATE(6941)] = 218453, - [SMALL_STATE(6942)] = 218469, - [SMALL_STATE(6943)] = 218483, - [SMALL_STATE(6944)] = 218495, - [SMALL_STATE(6945)] = 218507, - [SMALL_STATE(6946)] = 218523, - [SMALL_STATE(6947)] = 218535, - [SMALL_STATE(6948)] = 218547, - [SMALL_STATE(6949)] = 218561, - [SMALL_STATE(6950)] = 218575, - [SMALL_STATE(6951)] = 218591, - [SMALL_STATE(6952)] = 218603, - [SMALL_STATE(6953)] = 218617, - [SMALL_STATE(6954)] = 218631, - [SMALL_STATE(6955)] = 218643, - [SMALL_STATE(6956)] = 218657, - [SMALL_STATE(6957)] = 218669, - [SMALL_STATE(6958)] = 218683, - [SMALL_STATE(6959)] = 218699, - [SMALL_STATE(6960)] = 218713, - [SMALL_STATE(6961)] = 218725, - [SMALL_STATE(6962)] = 218737, - [SMALL_STATE(6963)] = 218749, - [SMALL_STATE(6964)] = 218765, - [SMALL_STATE(6965)] = 218781, - [SMALL_STATE(6966)] = 218797, - [SMALL_STATE(6967)] = 218813, - [SMALL_STATE(6968)] = 218825, - [SMALL_STATE(6969)] = 218841, - [SMALL_STATE(6970)] = 218857, - [SMALL_STATE(6971)] = 218873, - [SMALL_STATE(6972)] = 218887, - [SMALL_STATE(6973)] = 218901, - [SMALL_STATE(6974)] = 218915, - [SMALL_STATE(6975)] = 218931, - [SMALL_STATE(6976)] = 218945, - [SMALL_STATE(6977)] = 218961, - [SMALL_STATE(6978)] = 218977, - [SMALL_STATE(6979)] = 218991, - [SMALL_STATE(6980)] = 219007, - [SMALL_STATE(6981)] = 219023, - [SMALL_STATE(6982)] = 219037, - [SMALL_STATE(6983)] = 219053, - [SMALL_STATE(6984)] = 219069, - [SMALL_STATE(6985)] = 219083, - [SMALL_STATE(6986)] = 219099, - [SMALL_STATE(6987)] = 219115, - [SMALL_STATE(6988)] = 219131, - [SMALL_STATE(6989)] = 219147, - [SMALL_STATE(6990)] = 219163, - [SMALL_STATE(6991)] = 219179, - [SMALL_STATE(6992)] = 219195, - [SMALL_STATE(6993)] = 219207, - [SMALL_STATE(6994)] = 219223, - [SMALL_STATE(6995)] = 219239, - [SMALL_STATE(6996)] = 219255, - [SMALL_STATE(6997)] = 219267, - [SMALL_STATE(6998)] = 219279, - [SMALL_STATE(6999)] = 219295, - [SMALL_STATE(7000)] = 219309, - [SMALL_STATE(7001)] = 219325, - [SMALL_STATE(7002)] = 219341, - [SMALL_STATE(7003)] = 219353, - [SMALL_STATE(7004)] = 219367, - [SMALL_STATE(7005)] = 219381, - [SMALL_STATE(7006)] = 219397, - [SMALL_STATE(7007)] = 219409, - [SMALL_STATE(7008)] = 219425, - [SMALL_STATE(7009)] = 219441, - [SMALL_STATE(7010)] = 219457, - [SMALL_STATE(7011)] = 219471, - [SMALL_STATE(7012)] = 219487, - [SMALL_STATE(7013)] = 219503, - [SMALL_STATE(7014)] = 219519, - [SMALL_STATE(7015)] = 219535, - [SMALL_STATE(7016)] = 219551, - [SMALL_STATE(7017)] = 219565, - [SMALL_STATE(7018)] = 219579, - [SMALL_STATE(7019)] = 219591, - [SMALL_STATE(7020)] = 219603, - [SMALL_STATE(7021)] = 219619, - [SMALL_STATE(7022)] = 219631, - [SMALL_STATE(7023)] = 219643, - [SMALL_STATE(7024)] = 219655, - [SMALL_STATE(7025)] = 219667, - [SMALL_STATE(7026)] = 219679, - [SMALL_STATE(7027)] = 219691, - [SMALL_STATE(7028)] = 219703, - [SMALL_STATE(7029)] = 219715, - [SMALL_STATE(7030)] = 219729, - [SMALL_STATE(7031)] = 219743, - [SMALL_STATE(7032)] = 219755, - [SMALL_STATE(7033)] = 219767, - [SMALL_STATE(7034)] = 219779, - [SMALL_STATE(7035)] = 219795, - [SMALL_STATE(7036)] = 219807, - [SMALL_STATE(7037)] = 219823, - [SMALL_STATE(7038)] = 219835, - [SMALL_STATE(7039)] = 219851, - [SMALL_STATE(7040)] = 219863, - [SMALL_STATE(7041)] = 219877, - [SMALL_STATE(7042)] = 219893, - [SMALL_STATE(7043)] = 219905, - [SMALL_STATE(7044)] = 219921, - [SMALL_STATE(7045)] = 219935, - [SMALL_STATE(7046)] = 219947, - [SMALL_STATE(7047)] = 219961, - [SMALL_STATE(7048)] = 219975, - [SMALL_STATE(7049)] = 219989, - [SMALL_STATE(7050)] = 220003, - [SMALL_STATE(7051)] = 220019, - [SMALL_STATE(7052)] = 220035, - [SMALL_STATE(7053)] = 220051, - [SMALL_STATE(7054)] = 220063, - [SMALL_STATE(7055)] = 220079, - [SMALL_STATE(7056)] = 220095, - [SMALL_STATE(7057)] = 220111, - [SMALL_STATE(7058)] = 220123, - [SMALL_STATE(7059)] = 220139, - [SMALL_STATE(7060)] = 220153, - [SMALL_STATE(7061)] = 220169, - [SMALL_STATE(7062)] = 220181, - [SMALL_STATE(7063)] = 220193, - [SMALL_STATE(7064)] = 220209, - [SMALL_STATE(7065)] = 220221, - [SMALL_STATE(7066)] = 220237, - [SMALL_STATE(7067)] = 220253, - [SMALL_STATE(7068)] = 220265, - [SMALL_STATE(7069)] = 220281, - [SMALL_STATE(7070)] = 220297, - [SMALL_STATE(7071)] = 220313, - [SMALL_STATE(7072)] = 220327, - [SMALL_STATE(7073)] = 220343, - [SMALL_STATE(7074)] = 220357, - [SMALL_STATE(7075)] = 220369, - [SMALL_STATE(7076)] = 220383, - [SMALL_STATE(7077)] = 220399, - [SMALL_STATE(7078)] = 220415, - [SMALL_STATE(7079)] = 220431, - [SMALL_STATE(7080)] = 220443, - [SMALL_STATE(7081)] = 220459, - [SMALL_STATE(7082)] = 220475, - [SMALL_STATE(7083)] = 220491, - [SMALL_STATE(7084)] = 220507, - [SMALL_STATE(7085)] = 220521, - [SMALL_STATE(7086)] = 220533, - [SMALL_STATE(7087)] = 220549, - [SMALL_STATE(7088)] = 220563, - [SMALL_STATE(7089)] = 220579, - [SMALL_STATE(7090)] = 220595, - [SMALL_STATE(7091)] = 220611, - [SMALL_STATE(7092)] = 220627, - [SMALL_STATE(7093)] = 220641, - [SMALL_STATE(7094)] = 220655, - [SMALL_STATE(7095)] = 220671, - [SMALL_STATE(7096)] = 220687, - [SMALL_STATE(7097)] = 220703, - [SMALL_STATE(7098)] = 220719, - [SMALL_STATE(7099)] = 220735, - [SMALL_STATE(7100)] = 220749, - [SMALL_STATE(7101)] = 220765, - [SMALL_STATE(7102)] = 220779, - [SMALL_STATE(7103)] = 220791, - [SMALL_STATE(7104)] = 220807, - [SMALL_STATE(7105)] = 220823, - [SMALL_STATE(7106)] = 220839, - [SMALL_STATE(7107)] = 220855, - [SMALL_STATE(7108)] = 220871, - [SMALL_STATE(7109)] = 220885, - [SMALL_STATE(7110)] = 220899, - [SMALL_STATE(7111)] = 220911, - [SMALL_STATE(7112)] = 220927, - [SMALL_STATE(7113)] = 220943, - [SMALL_STATE(7114)] = 220959, - [SMALL_STATE(7115)] = 220975, - [SMALL_STATE(7116)] = 220991, - [SMALL_STATE(7117)] = 221005, - [SMALL_STATE(7118)] = 221019, - [SMALL_STATE(7119)] = 221033, - [SMALL_STATE(7120)] = 221045, - [SMALL_STATE(7121)] = 221057, - [SMALL_STATE(7122)] = 221073, - [SMALL_STATE(7123)] = 221085, - [SMALL_STATE(7124)] = 221101, - [SMALL_STATE(7125)] = 221117, - [SMALL_STATE(7126)] = 221131, - [SMALL_STATE(7127)] = 221143, - [SMALL_STATE(7128)] = 221157, - [SMALL_STATE(7129)] = 221171, - [SMALL_STATE(7130)] = 221183, - [SMALL_STATE(7131)] = 221199, - [SMALL_STATE(7132)] = 221215, - [SMALL_STATE(7133)] = 221229, - [SMALL_STATE(7134)] = 221245, - [SMALL_STATE(7135)] = 221261, - [SMALL_STATE(7136)] = 221275, - [SMALL_STATE(7137)] = 221289, - [SMALL_STATE(7138)] = 221303, - [SMALL_STATE(7139)] = 221319, - [SMALL_STATE(7140)] = 221335, - [SMALL_STATE(7141)] = 221351, - [SMALL_STATE(7142)] = 221367, - [SMALL_STATE(7143)] = 221383, - [SMALL_STATE(7144)] = 221397, - [SMALL_STATE(7145)] = 221413, - [SMALL_STATE(7146)] = 221427, - [SMALL_STATE(7147)] = 221443, - [SMALL_STATE(7148)] = 221459, - [SMALL_STATE(7149)] = 221473, - [SMALL_STATE(7150)] = 221489, - [SMALL_STATE(7151)] = 221505, - [SMALL_STATE(7152)] = 221519, - [SMALL_STATE(7153)] = 221531, - [SMALL_STATE(7154)] = 221547, - [SMALL_STATE(7155)] = 221561, - [SMALL_STATE(7156)] = 221577, - [SMALL_STATE(7157)] = 221593, - [SMALL_STATE(7158)] = 221609, - [SMALL_STATE(7159)] = 221625, - [SMALL_STATE(7160)] = 221639, - [SMALL_STATE(7161)] = 221653, - [SMALL_STATE(7162)] = 221669, - [SMALL_STATE(7163)] = 221685, - [SMALL_STATE(7164)] = 221701, - [SMALL_STATE(7165)] = 221717, - [SMALL_STATE(7166)] = 221733, - [SMALL_STATE(7167)] = 221747, - [SMALL_STATE(7168)] = 221761, - [SMALL_STATE(7169)] = 221773, - [SMALL_STATE(7170)] = 221789, - [SMALL_STATE(7171)] = 221805, - [SMALL_STATE(7172)] = 221821, - [SMALL_STATE(7173)] = 221837, - [SMALL_STATE(7174)] = 221851, - [SMALL_STATE(7175)] = 221865, - [SMALL_STATE(7176)] = 221881, - [SMALL_STATE(7177)] = 221897, - [SMALL_STATE(7178)] = 221913, - [SMALL_STATE(7179)] = 221929, - [SMALL_STATE(7180)] = 221945, - [SMALL_STATE(7181)] = 221959, - [SMALL_STATE(7182)] = 221973, - [SMALL_STATE(7183)] = 221987, - [SMALL_STATE(7184)] = 222003, - [SMALL_STATE(7185)] = 222019, - [SMALL_STATE(7186)] = 222031, - [SMALL_STATE(7187)] = 222047, - [SMALL_STATE(7188)] = 222063, - [SMALL_STATE(7189)] = 222075, - [SMALL_STATE(7190)] = 222087, - [SMALL_STATE(7191)] = 222099, - [SMALL_STATE(7192)] = 222115, - [SMALL_STATE(7193)] = 222129, - [SMALL_STATE(7194)] = 222145, - [SMALL_STATE(7195)] = 222159, - [SMALL_STATE(7196)] = 222173, - [SMALL_STATE(7197)] = 222185, - [SMALL_STATE(7198)] = 222199, - [SMALL_STATE(7199)] = 222213, - [SMALL_STATE(7200)] = 222229, - [SMALL_STATE(7201)] = 222243, - [SMALL_STATE(7202)] = 222259, - [SMALL_STATE(7203)] = 222275, - [SMALL_STATE(7204)] = 222289, - [SMALL_STATE(7205)] = 222305, - [SMALL_STATE(7206)] = 222321, - [SMALL_STATE(7207)] = 222333, - [SMALL_STATE(7208)] = 222349, - [SMALL_STATE(7209)] = 222365, - [SMALL_STATE(7210)] = 222377, - [SMALL_STATE(7211)] = 222390, - [SMALL_STATE(7212)] = 222403, - [SMALL_STATE(7213)] = 222416, - [SMALL_STATE(7214)] = 222429, - [SMALL_STATE(7215)] = 222440, - [SMALL_STATE(7216)] = 222453, - [SMALL_STATE(7217)] = 222466, - [SMALL_STATE(7218)] = 222479, - [SMALL_STATE(7219)] = 222492, - [SMALL_STATE(7220)] = 222505, - [SMALL_STATE(7221)] = 222518, - [SMALL_STATE(7222)] = 222531, - [SMALL_STATE(7223)] = 222544, - [SMALL_STATE(7224)] = 222557, - [SMALL_STATE(7225)] = 222570, - [SMALL_STATE(7226)] = 222583, - [SMALL_STATE(7227)] = 222596, - [SMALL_STATE(7228)] = 222609, - [SMALL_STATE(7229)] = 222622, - [SMALL_STATE(7230)] = 222635, - [SMALL_STATE(7231)] = 222648, - [SMALL_STATE(7232)] = 222661, - [SMALL_STATE(7233)] = 222674, - [SMALL_STATE(7234)] = 222687, - [SMALL_STATE(7235)] = 222700, - [SMALL_STATE(7236)] = 222713, - [SMALL_STATE(7237)] = 222726, - [SMALL_STATE(7238)] = 222739, - [SMALL_STATE(7239)] = 222752, - [SMALL_STATE(7240)] = 222763, - [SMALL_STATE(7241)] = 222776, - [SMALL_STATE(7242)] = 222789, - [SMALL_STATE(7243)] = 222802, - [SMALL_STATE(7244)] = 222815, - [SMALL_STATE(7245)] = 222828, - [SMALL_STATE(7246)] = 222839, - [SMALL_STATE(7247)] = 222852, - [SMALL_STATE(7248)] = 222865, - [SMALL_STATE(7249)] = 222878, - [SMALL_STATE(7250)] = 222891, - [SMALL_STATE(7251)] = 222904, - [SMALL_STATE(7252)] = 222917, - [SMALL_STATE(7253)] = 222930, - [SMALL_STATE(7254)] = 222943, - [SMALL_STATE(7255)] = 222956, - [SMALL_STATE(7256)] = 222969, - [SMALL_STATE(7257)] = 222980, - [SMALL_STATE(7258)] = 222993, - [SMALL_STATE(7259)] = 223006, - [SMALL_STATE(7260)] = 223017, - [SMALL_STATE(7261)] = 223030, - [SMALL_STATE(7262)] = 223043, - [SMALL_STATE(7263)] = 223056, - [SMALL_STATE(7264)] = 223069, - [SMALL_STATE(7265)] = 223082, - [SMALL_STATE(7266)] = 223095, - [SMALL_STATE(7267)] = 223108, - [SMALL_STATE(7268)] = 223121, - [SMALL_STATE(7269)] = 223134, - [SMALL_STATE(7270)] = 223147, - [SMALL_STATE(7271)] = 223160, - [SMALL_STATE(7272)] = 223173, - [SMALL_STATE(7273)] = 223186, - [SMALL_STATE(7274)] = 223199, - [SMALL_STATE(7275)] = 223210, - [SMALL_STATE(7276)] = 223221, - [SMALL_STATE(7277)] = 223234, - [SMALL_STATE(7278)] = 223247, - [SMALL_STATE(7279)] = 223260, - [SMALL_STATE(7280)] = 223273, - [SMALL_STATE(7281)] = 223286, - [SMALL_STATE(7282)] = 223297, - [SMALL_STATE(7283)] = 223310, - [SMALL_STATE(7284)] = 223323, - [SMALL_STATE(7285)] = 223336, - [SMALL_STATE(7286)] = 223349, - [SMALL_STATE(7287)] = 223362, - [SMALL_STATE(7288)] = 223375, - [SMALL_STATE(7289)] = 223388, - [SMALL_STATE(7290)] = 223401, - [SMALL_STATE(7291)] = 223414, - [SMALL_STATE(7292)] = 223427, - [SMALL_STATE(7293)] = 223440, - [SMALL_STATE(7294)] = 223453, - [SMALL_STATE(7295)] = 223466, - [SMALL_STATE(7296)] = 223479, - [SMALL_STATE(7297)] = 223492, - [SMALL_STATE(7298)] = 223505, - [SMALL_STATE(7299)] = 223518, - [SMALL_STATE(7300)] = 223531, - [SMALL_STATE(7301)] = 223544, - [SMALL_STATE(7302)] = 223557, - [SMALL_STATE(7303)] = 223570, - [SMALL_STATE(7304)] = 223583, - [SMALL_STATE(7305)] = 223596, - [SMALL_STATE(7306)] = 223609, - [SMALL_STATE(7307)] = 223622, - [SMALL_STATE(7308)] = 223635, - [SMALL_STATE(7309)] = 223648, - [SMALL_STATE(7310)] = 223661, - [SMALL_STATE(7311)] = 223674, - [SMALL_STATE(7312)] = 223687, - [SMALL_STATE(7313)] = 223700, - [SMALL_STATE(7314)] = 223713, - [SMALL_STATE(7315)] = 223726, - [SMALL_STATE(7316)] = 223739, - [SMALL_STATE(7317)] = 223752, - [SMALL_STATE(7318)] = 223765, - [SMALL_STATE(7319)] = 223778, - [SMALL_STATE(7320)] = 223791, - [SMALL_STATE(7321)] = 223804, - [SMALL_STATE(7322)] = 223817, - [SMALL_STATE(7323)] = 223830, - [SMALL_STATE(7324)] = 223843, - [SMALL_STATE(7325)] = 223856, - [SMALL_STATE(7326)] = 223869, - [SMALL_STATE(7327)] = 223882, - [SMALL_STATE(7328)] = 223895, - [SMALL_STATE(7329)] = 223908, - [SMALL_STATE(7330)] = 223921, - [SMALL_STATE(7331)] = 223934, - [SMALL_STATE(7332)] = 223947, - [SMALL_STATE(7333)] = 223960, - [SMALL_STATE(7334)] = 223973, - [SMALL_STATE(7335)] = 223984, - [SMALL_STATE(7336)] = 223997, - [SMALL_STATE(7337)] = 224010, - [SMALL_STATE(7338)] = 224023, - [SMALL_STATE(7339)] = 224036, - [SMALL_STATE(7340)] = 224049, - [SMALL_STATE(7341)] = 224062, - [SMALL_STATE(7342)] = 224075, - [SMALL_STATE(7343)] = 224088, - [SMALL_STATE(7344)] = 224101, - [SMALL_STATE(7345)] = 224114, - [SMALL_STATE(7346)] = 224127, - [SMALL_STATE(7347)] = 224138, - [SMALL_STATE(7348)] = 224151, - [SMALL_STATE(7349)] = 224164, - [SMALL_STATE(7350)] = 224177, - [SMALL_STATE(7351)] = 224190, - [SMALL_STATE(7352)] = 224203, - [SMALL_STATE(7353)] = 224216, - [SMALL_STATE(7354)] = 224229, - [SMALL_STATE(7355)] = 224242, - [SMALL_STATE(7356)] = 224255, - [SMALL_STATE(7357)] = 224268, - [SMALL_STATE(7358)] = 224281, - [SMALL_STATE(7359)] = 224294, - [SMALL_STATE(7360)] = 224307, - [SMALL_STATE(7361)] = 224320, - [SMALL_STATE(7362)] = 224333, - [SMALL_STATE(7363)] = 224346, - [SMALL_STATE(7364)] = 224359, - [SMALL_STATE(7365)] = 224372, - [SMALL_STATE(7366)] = 224385, - [SMALL_STATE(7367)] = 224398, - [SMALL_STATE(7368)] = 224411, - [SMALL_STATE(7369)] = 224424, - [SMALL_STATE(7370)] = 224437, - [SMALL_STATE(7371)] = 224450, - [SMALL_STATE(7372)] = 224463, - [SMALL_STATE(7373)] = 224476, - [SMALL_STATE(7374)] = 224489, - [SMALL_STATE(7375)] = 224502, - [SMALL_STATE(7376)] = 224515, - [SMALL_STATE(7377)] = 224528, - [SMALL_STATE(7378)] = 224538, - [SMALL_STATE(7379)] = 224548, - [SMALL_STATE(7380)] = 224558, - [SMALL_STATE(7381)] = 224568, - [SMALL_STATE(7382)] = 224578, - [SMALL_STATE(7383)] = 224588, - [SMALL_STATE(7384)] = 224598, - [SMALL_STATE(7385)] = 224608, - [SMALL_STATE(7386)] = 224618, - [SMALL_STATE(7387)] = 224628, - [SMALL_STATE(7388)] = 224638, - [SMALL_STATE(7389)] = 224648, - [SMALL_STATE(7390)] = 224658, - [SMALL_STATE(7391)] = 224668, - [SMALL_STATE(7392)] = 224678, - [SMALL_STATE(7393)] = 224688, - [SMALL_STATE(7394)] = 224698, - [SMALL_STATE(7395)] = 224708, - [SMALL_STATE(7396)] = 224718, - [SMALL_STATE(7397)] = 224728, - [SMALL_STATE(7398)] = 224738, - [SMALL_STATE(7399)] = 224748, - [SMALL_STATE(7400)] = 224758, - [SMALL_STATE(7401)] = 224768, - [SMALL_STATE(7402)] = 224778, - [SMALL_STATE(7403)] = 224788, - [SMALL_STATE(7404)] = 224798, - [SMALL_STATE(7405)] = 224808, - [SMALL_STATE(7406)] = 224818, - [SMALL_STATE(7407)] = 224828, - [SMALL_STATE(7408)] = 224838, - [SMALL_STATE(7409)] = 224848, - [SMALL_STATE(7410)] = 224858, - [SMALL_STATE(7411)] = 224868, - [SMALL_STATE(7412)] = 224878, - [SMALL_STATE(7413)] = 224888, - [SMALL_STATE(7414)] = 224898, - [SMALL_STATE(7415)] = 224908, - [SMALL_STATE(7416)] = 224918, - [SMALL_STATE(7417)] = 224928, - [SMALL_STATE(7418)] = 224938, - [SMALL_STATE(7419)] = 224948, - [SMALL_STATE(7420)] = 224958, - [SMALL_STATE(7421)] = 224968, - [SMALL_STATE(7422)] = 224978, - [SMALL_STATE(7423)] = 224988, - [SMALL_STATE(7424)] = 224998, - [SMALL_STATE(7425)] = 225008, - [SMALL_STATE(7426)] = 225018, - [SMALL_STATE(7427)] = 225028, - [SMALL_STATE(7428)] = 225038, - [SMALL_STATE(7429)] = 225048, - [SMALL_STATE(7430)] = 225058, - [SMALL_STATE(7431)] = 225068, - [SMALL_STATE(7432)] = 225078, - [SMALL_STATE(7433)] = 225088, - [SMALL_STATE(7434)] = 225098, - [SMALL_STATE(7435)] = 225108, - [SMALL_STATE(7436)] = 225118, - [SMALL_STATE(7437)] = 225128, - [SMALL_STATE(7438)] = 225138, - [SMALL_STATE(7439)] = 225148, - [SMALL_STATE(7440)] = 225158, - [SMALL_STATE(7441)] = 225168, - [SMALL_STATE(7442)] = 225178, - [SMALL_STATE(7443)] = 225188, - [SMALL_STATE(7444)] = 225198, - [SMALL_STATE(7445)] = 225208, - [SMALL_STATE(7446)] = 225218, - [SMALL_STATE(7447)] = 225228, - [SMALL_STATE(7448)] = 225238, - [SMALL_STATE(7449)] = 225248, - [SMALL_STATE(7450)] = 225258, - [SMALL_STATE(7451)] = 225268, - [SMALL_STATE(7452)] = 225278, - [SMALL_STATE(7453)] = 225288, - [SMALL_STATE(7454)] = 225298, - [SMALL_STATE(7455)] = 225308, - [SMALL_STATE(7456)] = 225318, - [SMALL_STATE(7457)] = 225328, - [SMALL_STATE(7458)] = 225338, - [SMALL_STATE(7459)] = 225348, - [SMALL_STATE(7460)] = 225358, - [SMALL_STATE(7461)] = 225368, - [SMALL_STATE(7462)] = 225378, - [SMALL_STATE(7463)] = 225388, - [SMALL_STATE(7464)] = 225398, - [SMALL_STATE(7465)] = 225408, - [SMALL_STATE(7466)] = 225418, - [SMALL_STATE(7467)] = 225428, - [SMALL_STATE(7468)] = 225438, - [SMALL_STATE(7469)] = 225448, - [SMALL_STATE(7470)] = 225458, - [SMALL_STATE(7471)] = 225468, - [SMALL_STATE(7472)] = 225478, - [SMALL_STATE(7473)] = 225488, - [SMALL_STATE(7474)] = 225498, - [SMALL_STATE(7475)] = 225508, - [SMALL_STATE(7476)] = 225518, - [SMALL_STATE(7477)] = 225528, - [SMALL_STATE(7478)] = 225538, - [SMALL_STATE(7479)] = 225548, - [SMALL_STATE(7480)] = 225558, - [SMALL_STATE(7481)] = 225568, - [SMALL_STATE(7482)] = 225578, - [SMALL_STATE(7483)] = 225588, - [SMALL_STATE(7484)] = 225598, - [SMALL_STATE(7485)] = 225608, - [SMALL_STATE(7486)] = 225618, - [SMALL_STATE(7487)] = 225628, - [SMALL_STATE(7488)] = 225638, - [SMALL_STATE(7489)] = 225648, - [SMALL_STATE(7490)] = 225658, - [SMALL_STATE(7491)] = 225668, - [SMALL_STATE(7492)] = 225678, - [SMALL_STATE(7493)] = 225688, - [SMALL_STATE(7494)] = 225698, - [SMALL_STATE(7495)] = 225708, - [SMALL_STATE(7496)] = 225718, - [SMALL_STATE(7497)] = 225728, - [SMALL_STATE(7498)] = 225738, - [SMALL_STATE(7499)] = 225748, - [SMALL_STATE(7500)] = 225758, - [SMALL_STATE(7501)] = 225768, - [SMALL_STATE(7502)] = 225778, - [SMALL_STATE(7503)] = 225788, - [SMALL_STATE(7504)] = 225798, - [SMALL_STATE(7505)] = 225808, - [SMALL_STATE(7506)] = 225818, - [SMALL_STATE(7507)] = 225828, - [SMALL_STATE(7508)] = 225838, - [SMALL_STATE(7509)] = 225848, - [SMALL_STATE(7510)] = 225858, - [SMALL_STATE(7511)] = 225868, - [SMALL_STATE(7512)] = 225878, - [SMALL_STATE(7513)] = 225888, - [SMALL_STATE(7514)] = 225898, - [SMALL_STATE(7515)] = 225908, - [SMALL_STATE(7516)] = 225918, - [SMALL_STATE(7517)] = 225928, - [SMALL_STATE(7518)] = 225938, - [SMALL_STATE(7519)] = 225948, - [SMALL_STATE(7520)] = 225958, - [SMALL_STATE(7521)] = 225968, - [SMALL_STATE(7522)] = 225978, - [SMALL_STATE(7523)] = 225988, - [SMALL_STATE(7524)] = 225998, - [SMALL_STATE(7525)] = 226008, - [SMALL_STATE(7526)] = 226018, - [SMALL_STATE(7527)] = 226028, - [SMALL_STATE(7528)] = 226038, - [SMALL_STATE(7529)] = 226048, - [SMALL_STATE(7530)] = 226058, - [SMALL_STATE(7531)] = 226068, - [SMALL_STATE(7532)] = 226078, - [SMALL_STATE(7533)] = 226088, - [SMALL_STATE(7534)] = 226098, - [SMALL_STATE(7535)] = 226108, - [SMALL_STATE(7536)] = 226118, - [SMALL_STATE(7537)] = 226128, - [SMALL_STATE(7538)] = 226138, - [SMALL_STATE(7539)] = 226148, - [SMALL_STATE(7540)] = 226158, - [SMALL_STATE(7541)] = 226168, - [SMALL_STATE(7542)] = 226178, - [SMALL_STATE(7543)] = 226188, - [SMALL_STATE(7544)] = 226198, - [SMALL_STATE(7545)] = 226208, - [SMALL_STATE(7546)] = 226218, - [SMALL_STATE(7547)] = 226228, - [SMALL_STATE(7548)] = 226238, - [SMALL_STATE(7549)] = 226248, - [SMALL_STATE(7550)] = 226258, - [SMALL_STATE(7551)] = 226268, - [SMALL_STATE(7552)] = 226278, - [SMALL_STATE(7553)] = 226288, - [SMALL_STATE(7554)] = 226298, - [SMALL_STATE(7555)] = 226308, - [SMALL_STATE(7556)] = 226318, - [SMALL_STATE(7557)] = 226328, - [SMALL_STATE(7558)] = 226338, - [SMALL_STATE(7559)] = 226348, - [SMALL_STATE(7560)] = 226358, - [SMALL_STATE(7561)] = 226368, - [SMALL_STATE(7562)] = 226378, - [SMALL_STATE(7563)] = 226388, - [SMALL_STATE(7564)] = 226398, - [SMALL_STATE(7565)] = 226408, - [SMALL_STATE(7566)] = 226418, - [SMALL_STATE(7567)] = 226428, - [SMALL_STATE(7568)] = 226438, - [SMALL_STATE(7569)] = 226448, - [SMALL_STATE(7570)] = 226458, - [SMALL_STATE(7571)] = 226468, - [SMALL_STATE(7572)] = 226478, - [SMALL_STATE(7573)] = 226488, - [SMALL_STATE(7574)] = 226498, - [SMALL_STATE(7575)] = 226508, - [SMALL_STATE(7576)] = 226518, - [SMALL_STATE(7577)] = 226528, - [SMALL_STATE(7578)] = 226538, - [SMALL_STATE(7579)] = 226548, - [SMALL_STATE(7580)] = 226558, - [SMALL_STATE(7581)] = 226568, - [SMALL_STATE(7582)] = 226578, - [SMALL_STATE(7583)] = 226588, - [SMALL_STATE(7584)] = 226598, - [SMALL_STATE(7585)] = 226608, - [SMALL_STATE(7586)] = 226618, - [SMALL_STATE(7587)] = 226628, - [SMALL_STATE(7588)] = 226638, - [SMALL_STATE(7589)] = 226648, - [SMALL_STATE(7590)] = 226658, - [SMALL_STATE(7591)] = 226668, - [SMALL_STATE(7592)] = 226678, - [SMALL_STATE(7593)] = 226688, - [SMALL_STATE(7594)] = 226698, - [SMALL_STATE(7595)] = 226708, - [SMALL_STATE(7596)] = 226718, - [SMALL_STATE(7597)] = 226728, - [SMALL_STATE(7598)] = 226738, - [SMALL_STATE(7599)] = 226748, - [SMALL_STATE(7600)] = 226758, - [SMALL_STATE(7601)] = 226768, - [SMALL_STATE(7602)] = 226778, - [SMALL_STATE(7603)] = 226788, - [SMALL_STATE(7604)] = 226798, - [SMALL_STATE(7605)] = 226808, - [SMALL_STATE(7606)] = 226818, - [SMALL_STATE(7607)] = 226828, - [SMALL_STATE(7608)] = 226838, - [SMALL_STATE(7609)] = 226848, - [SMALL_STATE(7610)] = 226858, - [SMALL_STATE(7611)] = 226868, - [SMALL_STATE(7612)] = 226878, - [SMALL_STATE(7613)] = 226888, - [SMALL_STATE(7614)] = 226898, - [SMALL_STATE(7615)] = 226908, - [SMALL_STATE(7616)] = 226918, - [SMALL_STATE(7617)] = 226928, - [SMALL_STATE(7618)] = 226938, - [SMALL_STATE(7619)] = 226948, - [SMALL_STATE(7620)] = 226958, - [SMALL_STATE(7621)] = 226968, - [SMALL_STATE(7622)] = 226978, - [SMALL_STATE(7623)] = 226988, - [SMALL_STATE(7624)] = 226998, - [SMALL_STATE(7625)] = 227008, - [SMALL_STATE(7626)] = 227018, - [SMALL_STATE(7627)] = 227028, - [SMALL_STATE(7628)] = 227038, - [SMALL_STATE(7629)] = 227048, - [SMALL_STATE(7630)] = 227058, - [SMALL_STATE(7631)] = 227068, - [SMALL_STATE(7632)] = 227078, - [SMALL_STATE(7633)] = 227088, - [SMALL_STATE(7634)] = 227098, - [SMALL_STATE(7635)] = 227108, - [SMALL_STATE(7636)] = 227118, - [SMALL_STATE(7637)] = 227128, - [SMALL_STATE(7638)] = 227138, - [SMALL_STATE(7639)] = 227148, - [SMALL_STATE(7640)] = 227158, - [SMALL_STATE(7641)] = 227168, - [SMALL_STATE(7642)] = 227178, - [SMALL_STATE(7643)] = 227188, - [SMALL_STATE(7644)] = 227198, - [SMALL_STATE(7645)] = 227208, - [SMALL_STATE(7646)] = 227218, - [SMALL_STATE(7647)] = 227228, - [SMALL_STATE(7648)] = 227238, - [SMALL_STATE(7649)] = 227248, - [SMALL_STATE(7650)] = 227258, - [SMALL_STATE(7651)] = 227268, - [SMALL_STATE(7652)] = 227278, - [SMALL_STATE(7653)] = 227288, - [SMALL_STATE(7654)] = 227298, - [SMALL_STATE(7655)] = 227308, - [SMALL_STATE(7656)] = 227318, - [SMALL_STATE(7657)] = 227328, - [SMALL_STATE(7658)] = 227338, - [SMALL_STATE(7659)] = 227348, - [SMALL_STATE(7660)] = 227358, - [SMALL_STATE(7661)] = 227368, - [SMALL_STATE(7662)] = 227378, - [SMALL_STATE(7663)] = 227388, - [SMALL_STATE(7664)] = 227398, - [SMALL_STATE(7665)] = 227408, - [SMALL_STATE(7666)] = 227418, - [SMALL_STATE(7667)] = 227428, - [SMALL_STATE(7668)] = 227438, - [SMALL_STATE(7669)] = 227448, - [SMALL_STATE(7670)] = 227458, - [SMALL_STATE(7671)] = 227468, - [SMALL_STATE(7672)] = 227478, - [SMALL_STATE(7673)] = 227488, - [SMALL_STATE(7674)] = 227498, - [SMALL_STATE(7675)] = 227508, - [SMALL_STATE(7676)] = 227518, - [SMALL_STATE(7677)] = 227528, - [SMALL_STATE(7678)] = 227538, - [SMALL_STATE(7679)] = 227548, - [SMALL_STATE(7680)] = 227558, - [SMALL_STATE(7681)] = 227568, - [SMALL_STATE(7682)] = 227578, - [SMALL_STATE(7683)] = 227588, - [SMALL_STATE(7684)] = 227598, - [SMALL_STATE(7685)] = 227608, - [SMALL_STATE(7686)] = 227618, - [SMALL_STATE(7687)] = 227628, - [SMALL_STATE(7688)] = 227638, - [SMALL_STATE(7689)] = 227648, - [SMALL_STATE(7690)] = 227658, - [SMALL_STATE(7691)] = 227668, - [SMALL_STATE(7692)] = 227678, - [SMALL_STATE(7693)] = 227688, - [SMALL_STATE(7694)] = 227698, - [SMALL_STATE(7695)] = 227708, - [SMALL_STATE(7696)] = 227718, - [SMALL_STATE(7697)] = 227728, - [SMALL_STATE(7698)] = 227738, - [SMALL_STATE(7699)] = 227748, - [SMALL_STATE(7700)] = 227758, - [SMALL_STATE(7701)] = 227768, - [SMALL_STATE(7702)] = 227778, - [SMALL_STATE(7703)] = 227788, - [SMALL_STATE(7704)] = 227798, - [SMALL_STATE(7705)] = 227808, - [SMALL_STATE(7706)] = 227818, - [SMALL_STATE(7707)] = 227828, - [SMALL_STATE(7708)] = 227838, - [SMALL_STATE(7709)] = 227848, - [SMALL_STATE(7710)] = 227858, - [SMALL_STATE(7711)] = 227868, - [SMALL_STATE(7712)] = 227878, - [SMALL_STATE(7713)] = 227888, - [SMALL_STATE(7714)] = 227898, - [SMALL_STATE(7715)] = 227908, - [SMALL_STATE(7716)] = 227918, - [SMALL_STATE(7717)] = 227928, - [SMALL_STATE(7718)] = 227938, - [SMALL_STATE(7719)] = 227948, - [SMALL_STATE(7720)] = 227958, - [SMALL_STATE(7721)] = 227968, - [SMALL_STATE(7722)] = 227978, - [SMALL_STATE(7723)] = 227988, - [SMALL_STATE(7724)] = 227998, - [SMALL_STATE(7725)] = 228008, - [SMALL_STATE(7726)] = 228018, - [SMALL_STATE(7727)] = 228028, - [SMALL_STATE(7728)] = 228038, - [SMALL_STATE(7729)] = 228048, - [SMALL_STATE(7730)] = 228058, - [SMALL_STATE(7731)] = 228068, - [SMALL_STATE(7732)] = 228078, - [SMALL_STATE(7733)] = 228088, - [SMALL_STATE(7734)] = 228098, - [SMALL_STATE(7735)] = 228108, - [SMALL_STATE(7736)] = 228118, - [SMALL_STATE(7737)] = 228128, - [SMALL_STATE(7738)] = 228138, - [SMALL_STATE(7739)] = 228148, - [SMALL_STATE(7740)] = 228158, - [SMALL_STATE(7741)] = 228168, - [SMALL_STATE(7742)] = 228178, - [SMALL_STATE(7743)] = 228188, - [SMALL_STATE(7744)] = 228198, - [SMALL_STATE(7745)] = 228208, - [SMALL_STATE(7746)] = 228218, - [SMALL_STATE(7747)] = 228228, - [SMALL_STATE(7748)] = 228238, - [SMALL_STATE(7749)] = 228248, - [SMALL_STATE(7750)] = 228258, - [SMALL_STATE(7751)] = 228268, - [SMALL_STATE(7752)] = 228278, - [SMALL_STATE(7753)] = 228288, - [SMALL_STATE(7754)] = 228298, - [SMALL_STATE(7755)] = 228308, - [SMALL_STATE(7756)] = 228318, - [SMALL_STATE(7757)] = 228328, - [SMALL_STATE(7758)] = 228338, - [SMALL_STATE(7759)] = 228348, - [SMALL_STATE(7760)] = 228358, - [SMALL_STATE(7761)] = 228368, - [SMALL_STATE(7762)] = 228378, - [SMALL_STATE(7763)] = 228388, - [SMALL_STATE(7764)] = 228398, - [SMALL_STATE(7765)] = 228408, - [SMALL_STATE(7766)] = 228418, - [SMALL_STATE(7767)] = 228428, - [SMALL_STATE(7768)] = 228438, - [SMALL_STATE(7769)] = 228448, - [SMALL_STATE(7770)] = 228458, - [SMALL_STATE(7771)] = 228468, - [SMALL_STATE(7772)] = 228478, - [SMALL_STATE(7773)] = 228488, - [SMALL_STATE(7774)] = 228498, - [SMALL_STATE(7775)] = 228508, + [SMALL_STATE(1692)] = 0, + [SMALL_STATE(1693)] = 73, + [SMALL_STATE(1694)] = 146, + [SMALL_STATE(1695)] = 249, + [SMALL_STATE(1696)] = 322, + [SMALL_STATE(1697)] = 395, + [SMALL_STATE(1698)] = 468, + [SMALL_STATE(1699)] = 541, + [SMALL_STATE(1700)] = 614, + [SMALL_STATE(1701)] = 687, + [SMALL_STATE(1702)] = 762, + [SMALL_STATE(1703)] = 837, + [SMALL_STATE(1704)] = 910, + [SMALL_STATE(1705)] = 1017, + [SMALL_STATE(1706)] = 1090, + [SMALL_STATE(1707)] = 1165, + [SMALL_STATE(1708)] = 1238, + [SMALL_STATE(1709)] = 1311, + [SMALL_STATE(1710)] = 1384, + [SMALL_STATE(1711)] = 1457, + [SMALL_STATE(1712)] = 1532, + [SMALL_STATE(1713)] = 1607, + [SMALL_STATE(1714)] = 1680, + [SMALL_STATE(1715)] = 1755, + [SMALL_STATE(1716)] = 1828, + [SMALL_STATE(1717)] = 1903, + [SMALL_STATE(1718)] = 2006, + [SMALL_STATE(1719)] = 2081, + [SMALL_STATE(1720)] = 2154, + [SMALL_STATE(1721)] = 2227, + [SMALL_STATE(1722)] = 2302, + [SMALL_STATE(1723)] = 2405, + [SMALL_STATE(1724)] = 2478, + [SMALL_STATE(1725)] = 2585, + [SMALL_STATE(1726)] = 2658, + [SMALL_STATE(1727)] = 2733, + [SMALL_STATE(1728)] = 2806, + [SMALL_STATE(1729)] = 2879, + [SMALL_STATE(1730)] = 2952, + [SMALL_STATE(1731)] = 3025, + [SMALL_STATE(1732)] = 3098, + [SMALL_STATE(1733)] = 3179, + [SMALL_STATE(1734)] = 3252, + [SMALL_STATE(1735)] = 3325, + [SMALL_STATE(1736)] = 3400, + [SMALL_STATE(1737)] = 3473, + [SMALL_STATE(1738)] = 3546, + [SMALL_STATE(1739)] = 3653, + [SMALL_STATE(1740)] = 3726, + [SMALL_STATE(1741)] = 3799, + [SMALL_STATE(1742)] = 3872, + [SMALL_STATE(1743)] = 3945, + [SMALL_STATE(1744)] = 4018, + [SMALL_STATE(1745)] = 4091, + [SMALL_STATE(1746)] = 4164, + [SMALL_STATE(1747)] = 4237, + [SMALL_STATE(1748)] = 4310, + [SMALL_STATE(1749)] = 4383, + [SMALL_STATE(1750)] = 4456, + [SMALL_STATE(1751)] = 4529, + [SMALL_STATE(1752)] = 4602, + [SMALL_STATE(1753)] = 4677, + [SMALL_STATE(1754)] = 4750, + [SMALL_STATE(1755)] = 4823, + [SMALL_STATE(1756)] = 4896, + [SMALL_STATE(1757)] = 4969, + [SMALL_STATE(1758)] = 5042, + [SMALL_STATE(1759)] = 5115, + [SMALL_STATE(1760)] = 5188, + [SMALL_STATE(1761)] = 5261, + [SMALL_STATE(1762)] = 5334, + [SMALL_STATE(1763)] = 5407, + [SMALL_STATE(1764)] = 5480, + [SMALL_STATE(1765)] = 5553, + [SMALL_STATE(1766)] = 5626, + [SMALL_STATE(1767)] = 5699, + [SMALL_STATE(1768)] = 5780, + [SMALL_STATE(1769)] = 5853, + [SMALL_STATE(1770)] = 5926, + [SMALL_STATE(1771)] = 5999, + [SMALL_STATE(1772)] = 6072, + [SMALL_STATE(1773)] = 6145, + [SMALL_STATE(1774)] = 6218, + [SMALL_STATE(1775)] = 6291, + [SMALL_STATE(1776)] = 6364, + [SMALL_STATE(1777)] = 6437, + [SMALL_STATE(1778)] = 6510, + [SMALL_STATE(1779)] = 6583, + [SMALL_STATE(1780)] = 6656, + [SMALL_STATE(1781)] = 6729, + [SMALL_STATE(1782)] = 6804, + [SMALL_STATE(1783)] = 6877, + [SMALL_STATE(1784)] = 6950, + [SMALL_STATE(1785)] = 7023, + [SMALL_STATE(1786)] = 7096, + [SMALL_STATE(1787)] = 7169, + [SMALL_STATE(1788)] = 7242, + [SMALL_STATE(1789)] = 7315, + [SMALL_STATE(1790)] = 7388, + [SMALL_STATE(1791)] = 7461, + [SMALL_STATE(1792)] = 7534, + [SMALL_STATE(1793)] = 7607, + [SMALL_STATE(1794)] = 7680, + [SMALL_STATE(1795)] = 7755, + [SMALL_STATE(1796)] = 7828, + [SMALL_STATE(1797)] = 7901, + [SMALL_STATE(1798)] = 7976, + [SMALL_STATE(1799)] = 8049, + [SMALL_STATE(1800)] = 8122, + [SMALL_STATE(1801)] = 8197, + [SMALL_STATE(1802)] = 8270, + [SMALL_STATE(1803)] = 8343, + [SMALL_STATE(1804)] = 8416, + [SMALL_STATE(1805)] = 8489, + [SMALL_STATE(1806)] = 8562, + [SMALL_STATE(1807)] = 8635, + [SMALL_STATE(1808)] = 8707, + [SMALL_STATE(1809)] = 8779, + [SMALL_STATE(1810)] = 8921, + [SMALL_STATE(1811)] = 8997, + [SMALL_STATE(1812)] = 9069, + [SMALL_STATE(1813)] = 9141, + [SMALL_STATE(1814)] = 9213, + [SMALL_STATE(1815)] = 9285, + [SMALL_STATE(1816)] = 9357, + [SMALL_STATE(1817)] = 9429, + [SMALL_STATE(1818)] = 9501, + [SMALL_STATE(1819)] = 9573, + [SMALL_STATE(1820)] = 9645, + [SMALL_STATE(1821)] = 9725, + [SMALL_STATE(1822)] = 9797, + [SMALL_STATE(1823)] = 9869, + [SMALL_STATE(1824)] = 9941, + [SMALL_STATE(1825)] = 10013, + [SMALL_STATE(1826)] = 10085, + [SMALL_STATE(1827)] = 10157, + [SMALL_STATE(1828)] = 10229, + [SMALL_STATE(1829)] = 10305, + [SMALL_STATE(1830)] = 10377, + [SMALL_STATE(1831)] = 10449, + [SMALL_STATE(1832)] = 10521, + [SMALL_STATE(1833)] = 10593, + [SMALL_STATE(1834)] = 10735, + [SMALL_STATE(1835)] = 10807, + [SMALL_STATE(1836)] = 10879, + [SMALL_STATE(1837)] = 10951, + [SMALL_STATE(1838)] = 11023, + [SMALL_STATE(1839)] = 11095, + [SMALL_STATE(1840)] = 11167, + [SMALL_STATE(1841)] = 11239, + [SMALL_STATE(1842)] = 11311, + [SMALL_STATE(1843)] = 11383, + [SMALL_STATE(1844)] = 11463, + [SMALL_STATE(1845)] = 11535, + [SMALL_STATE(1846)] = 11611, + [SMALL_STATE(1847)] = 11683, + [SMALL_STATE(1848)] = 11755, + [SMALL_STATE(1849)] = 11827, + [SMALL_STATE(1850)] = 11899, + [SMALL_STATE(1851)] = 11975, + [SMALL_STATE(1852)] = 12047, + [SMALL_STATE(1853)] = 12123, + [SMALL_STATE(1854)] = 12199, + [SMALL_STATE(1855)] = 12275, + [SMALL_STATE(1856)] = 12347, + [SMALL_STATE(1857)] = 12419, + [SMALL_STATE(1858)] = 12495, + [SMALL_STATE(1859)] = 12567, + [SMALL_STATE(1860)] = 12643, + [SMALL_STATE(1861)] = 12715, + [SMALL_STATE(1862)] = 12787, + [SMALL_STATE(1863)] = 12859, + [SMALL_STATE(1864)] = 12935, + [SMALL_STATE(1865)] = 13007, + [SMALL_STATE(1866)] = 13079, + [SMALL_STATE(1867)] = 13151, + [SMALL_STATE(1868)] = 13227, + [SMALL_STATE(1869)] = 13303, + [SMALL_STATE(1870)] = 13379, + [SMALL_STATE(1871)] = 13451, + [SMALL_STATE(1872)] = 13523, + [SMALL_STATE(1873)] = 13595, + [SMALL_STATE(1874)] = 13667, + [SMALL_STATE(1875)] = 13743, + [SMALL_STATE(1876)] = 13815, + [SMALL_STATE(1877)] = 13887, + [SMALL_STATE(1878)] = 14029, + [SMALL_STATE(1879)] = 14101, + [SMALL_STATE(1880)] = 14173, + [SMALL_STATE(1881)] = 14249, + [SMALL_STATE(1882)] = 14321, + [SMALL_STATE(1883)] = 14393, + [SMALL_STATE(1884)] = 14465, + [SMALL_STATE(1885)] = 14537, + [SMALL_STATE(1886)] = 14617, + [SMALL_STATE(1887)] = 14689, + [SMALL_STATE(1888)] = 14761, + [SMALL_STATE(1889)] = 14833, + [SMALL_STATE(1890)] = 14905, + [SMALL_STATE(1891)] = 14977, + [SMALL_STATE(1892)] = 15049, + [SMALL_STATE(1893)] = 15125, + [SMALL_STATE(1894)] = 15201, + [SMALL_STATE(1895)] = 15277, + [SMALL_STATE(1896)] = 15349, + [SMALL_STATE(1897)] = 15421, + [SMALL_STATE(1898)] = 15493, + [SMALL_STATE(1899)] = 15565, + [SMALL_STATE(1900)] = 15637, + [SMALL_STATE(1901)] = 15709, + [SMALL_STATE(1902)] = 15781, + [SMALL_STATE(1903)] = 15853, + [SMALL_STATE(1904)] = 15925, + [SMALL_STATE(1905)] = 15997, + [SMALL_STATE(1906)] = 16073, + [SMALL_STATE(1907)] = 16145, + [SMALL_STATE(1908)] = 16217, + [SMALL_STATE(1909)] = 16293, + [SMALL_STATE(1910)] = 16365, + [SMALL_STATE(1911)] = 16437, + [SMALL_STATE(1912)] = 16509, + [SMALL_STATE(1913)] = 16585, + [SMALL_STATE(1914)] = 16657, + [SMALL_STATE(1915)] = 16733, + [SMALL_STATE(1916)] = 16805, + [SMALL_STATE(1917)] = 16877, + [SMALL_STATE(1918)] = 16953, + [SMALL_STATE(1919)] = 17025, + [SMALL_STATE(1920)] = 17101, + [SMALL_STATE(1921)] = 17173, + [SMALL_STATE(1922)] = 17245, + [SMALL_STATE(1923)] = 17317, + [SMALL_STATE(1924)] = 17389, + [SMALL_STATE(1925)] = 17461, + [SMALL_STATE(1926)] = 17533, + [SMALL_STATE(1927)] = 17607, + [SMALL_STATE(1928)] = 17683, + [SMALL_STATE(1929)] = 17759, + [SMALL_STATE(1930)] = 17831, + [SMALL_STATE(1931)] = 17903, + [SMALL_STATE(1932)] = 17975, + [SMALL_STATE(1933)] = 18051, + [SMALL_STATE(1934)] = 18123, + [SMALL_STATE(1935)] = 18195, + [SMALL_STATE(1936)] = 18337, + [SMALL_STATE(1937)] = 18479, + [SMALL_STATE(1938)] = 18621, + [SMALL_STATE(1939)] = 18693, + [SMALL_STATE(1940)] = 18772, + [SMALL_STATE(1941)] = 18849, + [SMALL_STATE(1942)] = 18926, + [SMALL_STATE(1943)] = 19003, + [SMALL_STATE(1944)] = 19080, + [SMALL_STATE(1945)] = 19157, + [SMALL_STATE(1946)] = 19234, + [SMALL_STATE(1947)] = 19311, + [SMALL_STATE(1948)] = 19388, + [SMALL_STATE(1949)] = 19465, + [SMALL_STATE(1950)] = 19542, + [SMALL_STATE(1951)] = 19619, + [SMALL_STATE(1952)] = 19696, + [SMALL_STATE(1953)] = 19773, + [SMALL_STATE(1954)] = 19850, + [SMALL_STATE(1955)] = 19927, + [SMALL_STATE(1956)] = 20004, + [SMALL_STATE(1957)] = 20081, + [SMALL_STATE(1958)] = 20158, + [SMALL_STATE(1959)] = 20235, + [SMALL_STATE(1960)] = 20312, + [SMALL_STATE(1961)] = 20389, + [SMALL_STATE(1962)] = 20466, + [SMALL_STATE(1963)] = 20543, + [SMALL_STATE(1964)] = 20620, + [SMALL_STATE(1965)] = 20695, + [SMALL_STATE(1966)] = 20774, + [SMALL_STATE(1967)] = 20853, + [SMALL_STATE(1968)] = 20932, + [SMALL_STATE(1969)] = 21011, + [SMALL_STATE(1970)] = 21090, + [SMALL_STATE(1971)] = 21167, + [SMALL_STATE(1972)] = 21244, + [SMALL_STATE(1973)] = 21321, + [SMALL_STATE(1974)] = 21398, + [SMALL_STATE(1975)] = 21473, + [SMALL_STATE(1976)] = 21550, + [SMALL_STATE(1977)] = 21627, + [SMALL_STATE(1978)] = 21704, + [SMALL_STATE(1979)] = 21781, + [SMALL_STATE(1980)] = 21858, + [SMALL_STATE(1981)] = 21935, + [SMALL_STATE(1982)] = 22012, + [SMALL_STATE(1983)] = 22089, + [SMALL_STATE(1984)] = 22166, + [SMALL_STATE(1985)] = 22245, + [SMALL_STATE(1986)] = 22324, + [SMALL_STATE(1987)] = 22403, + [SMALL_STATE(1988)] = 22482, + [SMALL_STATE(1989)] = 22561, + [SMALL_STATE(1990)] = 22640, + [SMALL_STATE(1991)] = 22719, + [SMALL_STATE(1992)] = 22792, + [SMALL_STATE(1993)] = 22865, + [SMALL_STATE(1994)] = 22944, + [SMALL_STATE(1995)] = 23023, + [SMALL_STATE(1996)] = 23102, + [SMALL_STATE(1997)] = 23181, + [SMALL_STATE(1998)] = 23256, + [SMALL_STATE(1999)] = 23335, + [SMALL_STATE(2000)] = 23416, + [SMALL_STATE(2001)] = 23495, + [SMALL_STATE(2002)] = 23570, + [SMALL_STATE(2003)] = 23647, + [SMALL_STATE(2004)] = 23724, + [SMALL_STATE(2005)] = 23801, + [SMALL_STATE(2006)] = 23872, + [SMALL_STATE(2007)] = 23949, + [SMALL_STATE(2008)] = 24020, + [SMALL_STATE(2009)] = 24097, + [SMALL_STATE(2010)] = 24174, + [SMALL_STATE(2011)] = 24251, + [SMALL_STATE(2012)] = 24322, + [SMALL_STATE(2013)] = 24393, + [SMALL_STATE(2014)] = 24470, + [SMALL_STATE(2015)] = 24541, + [SMALL_STATE(2016)] = 24612, + [SMALL_STATE(2017)] = 24683, + [SMALL_STATE(2018)] = 24760, + [SMALL_STATE(2019)] = 24837, + [SMALL_STATE(2020)] = 24914, + [SMALL_STATE(2021)] = 24991, + [SMALL_STATE(2022)] = 25062, + [SMALL_STATE(2023)] = 25133, + [SMALL_STATE(2024)] = 25204, + [SMALL_STATE(2025)] = 25275, + [SMALL_STATE(2026)] = 25352, + [SMALL_STATE(2027)] = 25423, + [SMALL_STATE(2028)] = 25494, + [SMALL_STATE(2029)] = 25565, + [SMALL_STATE(2030)] = 25636, + [SMALL_STATE(2031)] = 25707, + [SMALL_STATE(2032)] = 25778, + [SMALL_STATE(2033)] = 25849, + [SMALL_STATE(2034)] = 25920, + [SMALL_STATE(2035)] = 25991, + [SMALL_STATE(2036)] = 26070, + [SMALL_STATE(2037)] = 26141, + [SMALL_STATE(2038)] = 26212, + [SMALL_STATE(2039)] = 26283, + [SMALL_STATE(2040)] = 26422, + [SMALL_STATE(2041)] = 26493, + [SMALL_STATE(2042)] = 26564, + [SMALL_STATE(2043)] = 26635, + [SMALL_STATE(2044)] = 26706, + [SMALL_STATE(2045)] = 26777, + [SMALL_STATE(2046)] = 26848, + [SMALL_STATE(2047)] = 26919, + [SMALL_STATE(2048)] = 26990, + [SMALL_STATE(2049)] = 27061, + [SMALL_STATE(2050)] = 27132, + [SMALL_STATE(2051)] = 27203, + [SMALL_STATE(2052)] = 27274, + [SMALL_STATE(2053)] = 27345, + [SMALL_STATE(2054)] = 27484, + [SMALL_STATE(2055)] = 27563, + [SMALL_STATE(2056)] = 27644, + [SMALL_STATE(2057)] = 27723, + [SMALL_STATE(2058)] = 27862, + [SMALL_STATE(2059)] = 28001, + [SMALL_STATE(2060)] = 28082, + [SMALL_STATE(2061)] = 28159, + [SMALL_STATE(2062)] = 28236, + [SMALL_STATE(2063)] = 28306, + [SMALL_STATE(2064)] = 28380, + [SMALL_STATE(2065)] = 28450, + [SMALL_STATE(2066)] = 28520, + [SMALL_STATE(2067)] = 28594, + [SMALL_STATE(2068)] = 28664, + [SMALL_STATE(2069)] = 28734, + [SMALL_STATE(2070)] = 28804, + [SMALL_STATE(2071)] = 28874, + [SMALL_STATE(2072)] = 28944, + [SMALL_STATE(2073)] = 29014, + [SMALL_STATE(2074)] = 29088, + [SMALL_STATE(2075)] = 29160, + [SMALL_STATE(2076)] = 29234, + [SMALL_STATE(2077)] = 29308, + [SMALL_STATE(2078)] = 29378, + [SMALL_STATE(2079)] = 29452, + [SMALL_STATE(2080)] = 29588, + [SMALL_STATE(2081)] = 29658, + [SMALL_STATE(2082)] = 29728, + [SMALL_STATE(2083)] = 29798, + [SMALL_STATE(2084)] = 29868, + [SMALL_STATE(2085)] = 29942, + [SMALL_STATE(2086)] = 30012, + [SMALL_STATE(2087)] = 30086, + [SMALL_STATE(2088)] = 30156, + [SMALL_STATE(2089)] = 30226, + [SMALL_STATE(2090)] = 30296, + [SMALL_STATE(2091)] = 30370, + [SMALL_STATE(2092)] = 30444, + [SMALL_STATE(2093)] = 30518, + [SMALL_STATE(2094)] = 30592, + [SMALL_STATE(2095)] = 30662, + [SMALL_STATE(2096)] = 30732, + [SMALL_STATE(2097)] = 30802, + [SMALL_STATE(2098)] = 30872, + [SMALL_STATE(2099)] = 30942, + [SMALL_STATE(2100)] = 31012, + [SMALL_STATE(2101)] = 31082, + [SMALL_STATE(2102)] = 31152, + [SMALL_STATE(2103)] = 31222, + [SMALL_STATE(2104)] = 31292, + [SMALL_STATE(2105)] = 31362, + [SMALL_STATE(2106)] = 31436, + [SMALL_STATE(2107)] = 31572, + [SMALL_STATE(2108)] = 31642, + [SMALL_STATE(2109)] = 31712, + [SMALL_STATE(2110)] = 31782, + [SMALL_STATE(2111)] = 31918, + [SMALL_STATE(2112)] = 31988, + [SMALL_STATE(2113)] = 32058, + [SMALL_STATE(2114)] = 32128, + [SMALL_STATE(2115)] = 32198, + [SMALL_STATE(2116)] = 32268, + [SMALL_STATE(2117)] = 32338, + [SMALL_STATE(2118)] = 32416, + [SMALL_STATE(2119)] = 32486, + [SMALL_STATE(2120)] = 32556, + [SMALL_STATE(2121)] = 32626, + [SMALL_STATE(2122)] = 32696, + [SMALL_STATE(2123)] = 32766, + [SMALL_STATE(2124)] = 32836, + [SMALL_STATE(2125)] = 32906, + [SMALL_STATE(2126)] = 33042, + [SMALL_STATE(2127)] = 33112, + [SMALL_STATE(2128)] = 33182, + [SMALL_STATE(2129)] = 33252, + [SMALL_STATE(2130)] = 33326, + [SMALL_STATE(2131)] = 33400, + [SMALL_STATE(2132)] = 33474, + [SMALL_STATE(2133)] = 33610, + [SMALL_STATE(2134)] = 33746, + [SMALL_STATE(2135)] = 33816, + [SMALL_STATE(2136)] = 33890, + [SMALL_STATE(2137)] = 33964, + [SMALL_STATE(2138)] = 34100, + [SMALL_STATE(2139)] = 34236, + [SMALL_STATE(2140)] = 34372, + [SMALL_STATE(2141)] = 34508, + [SMALL_STATE(2142)] = 34580, + [SMALL_STATE(2143)] = 34650, + [SMALL_STATE(2144)] = 34721, + [SMALL_STATE(2145)] = 34792, + [SMALL_STATE(2146)] = 34863, + [SMALL_STATE(2147)] = 34934, + [SMALL_STATE(2148)] = 35005, + [SMALL_STATE(2149)] = 35076, + [SMALL_STATE(2150)] = 35147, + [SMALL_STATE(2151)] = 35218, + [SMALL_STATE(2152)] = 35289, + [SMALL_STATE(2153)] = 35360, + [SMALL_STATE(2154)] = 35431, + [SMALL_STATE(2155)] = 35508, + [SMALL_STATE(2156)] = 35579, + [SMALL_STATE(2157)] = 35650, + [SMALL_STATE(2158)] = 35721, + [SMALL_STATE(2159)] = 35792, + [SMALL_STATE(2160)] = 35863, + [SMALL_STATE(2161)] = 35934, + [SMALL_STATE(2162)] = 36005, + [SMALL_STATE(2163)] = 36076, + [SMALL_STATE(2164)] = 36147, + [SMALL_STATE(2165)] = 36218, + [SMALL_STATE(2166)] = 36289, + [SMALL_STATE(2167)] = 36360, + [SMALL_STATE(2168)] = 36431, + [SMALL_STATE(2169)] = 36502, + [SMALL_STATE(2170)] = 36571, + [SMALL_STATE(2171)] = 36642, + [SMALL_STATE(2172)] = 36713, + [SMALL_STATE(2173)] = 36784, + [SMALL_STATE(2174)] = 36853, + [SMALL_STATE(2175)] = 36924, + [SMALL_STATE(2176)] = 36995, + [SMALL_STATE(2177)] = 37066, + [SMALL_STATE(2178)] = 37137, + [SMALL_STATE(2179)] = 37208, + [SMALL_STATE(2180)] = 37279, + [SMALL_STATE(2181)] = 37350, + [SMALL_STATE(2182)] = 37419, + [SMALL_STATE(2183)] = 37490, + [SMALL_STATE(2184)] = 37561, + [SMALL_STATE(2185)] = 37630, + [SMALL_STATE(2186)] = 37701, + [SMALL_STATE(2187)] = 37772, + [SMALL_STATE(2188)] = 37843, + [SMALL_STATE(2189)] = 37914, + [SMALL_STATE(2190)] = 37985, + [SMALL_STATE(2191)] = 38056, + [SMALL_STATE(2192)] = 38127, + [SMALL_STATE(2193)] = 38198, + [SMALL_STATE(2194)] = 38269, + [SMALL_STATE(2195)] = 38340, + [SMALL_STATE(2196)] = 38411, + [SMALL_STATE(2197)] = 38482, + [SMALL_STATE(2198)] = 38553, + [SMALL_STATE(2199)] = 38624, + [SMALL_STATE(2200)] = 38695, + [SMALL_STATE(2201)] = 38766, + [SMALL_STATE(2202)] = 38837, + [SMALL_STATE(2203)] = 38908, + [SMALL_STATE(2204)] = 38979, + [SMALL_STATE(2205)] = 39050, + [SMALL_STATE(2206)] = 39121, + [SMALL_STATE(2207)] = 39192, + [SMALL_STATE(2208)] = 39263, + [SMALL_STATE(2209)] = 39334, + [SMALL_STATE(2210)] = 39405, + [SMALL_STATE(2211)] = 39476, + [SMALL_STATE(2212)] = 39547, + [SMALL_STATE(2213)] = 39618, + [SMALL_STATE(2214)] = 39689, + [SMALL_STATE(2215)] = 39760, + [SMALL_STATE(2216)] = 39831, + [SMALL_STATE(2217)] = 39902, + [SMALL_STATE(2218)] = 39989, + [SMALL_STATE(2219)] = 40060, + [SMALL_STATE(2220)] = 40131, + [SMALL_STATE(2221)] = 40204, + [SMALL_STATE(2222)] = 40277, + [SMALL_STATE(2223)] = 40350, + [SMALL_STATE(2224)] = 40423, + [SMALL_STATE(2225)] = 40496, + [SMALL_STATE(2226)] = 40569, + [SMALL_STATE(2227)] = 40642, + [SMALL_STATE(2228)] = 40713, + [SMALL_STATE(2229)] = 40786, + [SMALL_STATE(2230)] = 40859, + [SMALL_STATE(2231)] = 40932, + [SMALL_STATE(2232)] = 41005, + [SMALL_STATE(2233)] = 41078, + [SMALL_STATE(2234)] = 41151, + [SMALL_STATE(2235)] = 41222, + [SMALL_STATE(2236)] = 41293, + [SMALL_STATE(2237)] = 41364, + [SMALL_STATE(2238)] = 41435, + [SMALL_STATE(2239)] = 41506, + [SMALL_STATE(2240)] = 41577, + [SMALL_STATE(2241)] = 41646, + [SMALL_STATE(2242)] = 41715, + [SMALL_STATE(2243)] = 41786, + [SMALL_STATE(2244)] = 41857, + [SMALL_STATE(2245)] = 41928, + [SMALL_STATE(2246)] = 41999, + [SMALL_STATE(2247)] = 42070, + [SMALL_STATE(2248)] = 42141, + [SMALL_STATE(2249)] = 42210, + [SMALL_STATE(2250)] = 42287, + [SMALL_STATE(2251)] = 42358, + [SMALL_STATE(2252)] = 42429, + [SMALL_STATE(2253)] = 42500, + [SMALL_STATE(2254)] = 42571, + [SMALL_STATE(2255)] = 42670, + [SMALL_STATE(2256)] = 42741, + [SMALL_STATE(2257)] = 42812, + [SMALL_STATE(2258)] = 42883, + [SMALL_STATE(2259)] = 42954, + [SMALL_STATE(2260)] = 43053, + [SMALL_STATE(2261)] = 43124, + [SMALL_STATE(2262)] = 43195, + [SMALL_STATE(2263)] = 43266, + [SMALL_STATE(2264)] = 43337, + [SMALL_STATE(2265)] = 43408, + [SMALL_STATE(2266)] = 43485, + [SMALL_STATE(2267)] = 43556, + [SMALL_STATE(2268)] = 43627, + [SMALL_STATE(2269)] = 43700, + [SMALL_STATE(2270)] = 43773, + [SMALL_STATE(2271)] = 43872, + [SMALL_STATE(2272)] = 43943, + [SMALL_STATE(2273)] = 44014, + [SMALL_STATE(2274)] = 44085, + [SMALL_STATE(2275)] = 44156, + [SMALL_STATE(2276)] = 44229, + [SMALL_STATE(2277)] = 44302, + [SMALL_STATE(2278)] = 44373, + [SMALL_STATE(2279)] = 44444, + [SMALL_STATE(2280)] = 44515, + [SMALL_STATE(2281)] = 44586, + [SMALL_STATE(2282)] = 44657, + [SMALL_STATE(2283)] = 44728, + [SMALL_STATE(2284)] = 44801, + [SMALL_STATE(2285)] = 44874, + [SMALL_STATE(2286)] = 44947, + [SMALL_STATE(2287)] = 45020, + [SMALL_STATE(2288)] = 45093, + [SMALL_STATE(2289)] = 45166, + [SMALL_STATE(2290)] = 45239, + [SMALL_STATE(2291)] = 45338, + [SMALL_STATE(2292)] = 45409, + [SMALL_STATE(2293)] = 45480, + [SMALL_STATE(2294)] = 45553, + [SMALL_STATE(2295)] = 45626, + [SMALL_STATE(2296)] = 45697, + [SMALL_STATE(2297)] = 45768, + [SMALL_STATE(2298)] = 45841, + [SMALL_STATE(2299)] = 45911, + [SMALL_STATE(2300)] = 46001, + [SMALL_STATE(2301)] = 46075, + [SMALL_STATE(2302)] = 46167, + [SMALL_STATE(2303)] = 46241, + [SMALL_STATE(2304)] = 46333, + [SMALL_STATE(2305)] = 46427, + [SMALL_STATE(2306)] = 46525, + [SMALL_STATE(2307)] = 46601, + [SMALL_STATE(2308)] = 46675, + [SMALL_STATE(2309)] = 46775, + [SMALL_STATE(2310)] = 46871, + [SMALL_STATE(2311)] = 46965, + [SMALL_STATE(2312)] = 47061, + [SMALL_STATE(2313)] = 47145, + [SMALL_STATE(2314)] = 47243, + [SMALL_STATE(2315)] = 47339, + [SMALL_STATE(2316)] = 47411, + [SMALL_STATE(2317)] = 47483, + [SMALL_STATE(2318)] = 47551, + [SMALL_STATE(2319)] = 47635, + [SMALL_STATE(2320)] = 47729, + [SMALL_STATE(2321)] = 47807, + [SMALL_STATE(2322)] = 47901, + [SMALL_STATE(2323)] = 47997, + [SMALL_STATE(2324)] = 48085, + [SMALL_STATE(2325)] = 48159, + [SMALL_STATE(2326)] = 48235, + [SMALL_STATE(2327)] = 48305, + [SMALL_STATE(2328)] = 48383, + [SMALL_STATE(2329)] = 48459, + [SMALL_STATE(2330)] = 48533, + [SMALL_STATE(2331)] = 48631, + [SMALL_STATE(2332)] = 48721, + [SMALL_STATE(2333)] = 48819, + [SMALL_STATE(2334)] = 48901, + [SMALL_STATE(2335)] = 48993, + [SMALL_STATE(2336)] = 49089, + [SMALL_STATE(2337)] = 49189, + [SMALL_STATE(2338)] = 49271, + [SMALL_STATE(2339)] = 49369, + [SMALL_STATE(2340)] = 49445, + [SMALL_STATE(2341)] = 49517, + [SMALL_STATE(2342)] = 49619, + [SMALL_STATE(2343)] = 49705, + [SMALL_STATE(2344)] = 49793, + [SMALL_STATE(2345)] = 49881, + [SMALL_STATE(2346)] = 49981, + [SMALL_STATE(2347)] = 50071, + [SMALL_STATE(2348)] = 50171, + [SMALL_STATE(2349)] = 50245, + [SMALL_STATE(2350)] = 50317, + [SMALL_STATE(2351)] = 50389, + [SMALL_STATE(2352)] = 50485, + [SMALL_STATE(2353)] = 50569, + [SMALL_STATE(2354)] = 50667, + [SMALL_STATE(2355)] = 50767, + [SMALL_STATE(2356)] = 50849, + [SMALL_STATE(2357)] = 50947, + [SMALL_STATE(2358)] = 51047, + [SMALL_STATE(2359)] = 51119, + [SMALL_STATE(2360)] = 51211, + [SMALL_STATE(2361)] = 51299, + [SMALL_STATE(2362)] = 51393, + [SMALL_STATE(2363)] = 51481, + [SMALL_STATE(2364)] = 51583, + [SMALL_STATE(2365)] = 51679, + [SMALL_STATE(2366)] = 51761, + [SMALL_STATE(2367)] = 51861, + [SMALL_STATE(2368)] = 51961, + [SMALL_STATE(2369)] = 52041, + [SMALL_STATE(2370)] = 52117, + [SMALL_STATE(2371)] = 52219, + [SMALL_STATE(2372)] = 52309, + [SMALL_STATE(2373)] = 52389, + [SMALL_STATE(2374)] = 52481, + [SMALL_STATE(2375)] = 52577, + [SMALL_STATE(2376)] = 52671, + [SMALL_STATE(2377)] = 52773, + [SMALL_STATE(2378)] = 52863, + [SMALL_STATE(2379)] = 52951, + [SMALL_STATE(2380)] = 53039, + [SMALL_STATE(2381)] = 53117, + [SMALL_STATE(2382)] = 53207, + [SMALL_STATE(2383)] = 53299, + [SMALL_STATE(2384)] = 53395, + [SMALL_STATE(2385)] = 53467, + [SMALL_STATE(2386)] = 53547, + [SMALL_STATE(2387)] = 53621, + [SMALL_STATE(2388)] = 53705, + [SMALL_STATE(2389)] = 53775, + [SMALL_STATE(2390)] = 53869, + [SMALL_STATE(2391)] = 53965, + [SMALL_STATE(2392)] = 54063, + [SMALL_STATE(2393)] = 54149, + [SMALL_STATE(2394)] = 54227, + [SMALL_STATE(2395)] = 54315, + [SMALL_STATE(2396)] = 54405, + [SMALL_STATE(2397)] = 54497, + [SMALL_STATE(2398)] = 54579, + [SMALL_STATE(2399)] = 54667, + [SMALL_STATE(2400)] = 54753, + [SMALL_STATE(2401)] = 54845, + [SMALL_STATE(2402)] = 54929, + [SMALL_STATE(2403)] = 55013, + [SMALL_STATE(2404)] = 55107, + [SMALL_STATE(2405)] = 55197, + [SMALL_STATE(2406)] = 55267, + [SMALL_STATE(2407)] = 55339, + [SMALL_STATE(2408)] = 55419, + [SMALL_STATE(2409)] = 55513, + [SMALL_STATE(2410)] = 55599, + [SMALL_STATE(2411)] = 55697, + [SMALL_STATE(2412)] = 55775, + [SMALL_STATE(2413)] = 55861, + [SMALL_STATE(2414)] = 55957, + [SMALL_STATE(2415)] = 56047, + [SMALL_STATE(2416)] = 56123, + [SMALL_STATE(2417)] = 56211, + [SMALL_STATE(2418)] = 56307, + [SMALL_STATE(2419)] = 56403, + [SMALL_STATE(2420)] = 56473, + [SMALL_STATE(2421)] = 56569, + [SMALL_STATE(2422)] = 56641, + [SMALL_STATE(2423)] = 56721, + [SMALL_STATE(2424)] = 56805, + [SMALL_STATE(2425)] = 56901, + [SMALL_STATE(2426)] = 56997, + [SMALL_STATE(2427)] = 57093, + [SMALL_STATE(2428)] = 57189, + [SMALL_STATE(2429)] = 57271, + [SMALL_STATE(2430)] = 57353, + [SMALL_STATE(2431)] = 57437, + [SMALL_STATE(2432)] = 57519, + [SMALL_STATE(2433)] = 57595, + [SMALL_STATE(2434)] = 57687, + [SMALL_STATE(2435)] = 57783, + [SMALL_STATE(2436)] = 57850, + [SMALL_STATE(2437)] = 57939, + [SMALL_STATE(2438)] = 58006, + [SMALL_STATE(2439)] = 58097, + [SMALL_STATE(2440)] = 58164, + [SMALL_STATE(2441)] = 58231, + [SMALL_STATE(2442)] = 58298, + [SMALL_STATE(2443)] = 58365, + [SMALL_STATE(2444)] = 58432, + [SMALL_STATE(2445)] = 58499, + [SMALL_STATE(2446)] = 58566, + [SMALL_STATE(2447)] = 58633, + [SMALL_STATE(2448)] = 58700, + [SMALL_STATE(2449)] = 58767, + [SMALL_STATE(2450)] = 58836, + [SMALL_STATE(2451)] = 58903, + [SMALL_STATE(2452)] = 58974, + [SMALL_STATE(2453)] = 59043, + [SMALL_STATE(2454)] = 59112, + [SMALL_STATE(2455)] = 59181, + [SMALL_STATE(2456)] = 59248, + [SMALL_STATE(2457)] = 59315, + [SMALL_STATE(2458)] = 59396, + [SMALL_STATE(2459)] = 59477, + [SMALL_STATE(2460)] = 59558, + [SMALL_STATE(2461)] = 59625, + [SMALL_STATE(2462)] = 59692, + [SMALL_STATE(2463)] = 59759, + [SMALL_STATE(2464)] = 59826, + [SMALL_STATE(2465)] = 59893, + [SMALL_STATE(2466)] = 59960, + [SMALL_STATE(2467)] = 60027, + [SMALL_STATE(2468)] = 60094, + [SMALL_STATE(2469)] = 60161, + [SMALL_STATE(2470)] = 60228, + [SMALL_STATE(2471)] = 60295, + [SMALL_STATE(2472)] = 60362, + [SMALL_STATE(2473)] = 60447, + [SMALL_STATE(2474)] = 60514, + [SMALL_STATE(2475)] = 60581, + [SMALL_STATE(2476)] = 60648, + [SMALL_STATE(2477)] = 60715, + [SMALL_STATE(2478)] = 60782, + [SMALL_STATE(2479)] = 60863, + [SMALL_STATE(2480)] = 60930, + [SMALL_STATE(2481)] = 60997, + [SMALL_STATE(2482)] = 61064, + [SMALL_STATE(2483)] = 61131, + [SMALL_STATE(2484)] = 61200, + [SMALL_STATE(2485)] = 61267, + [SMALL_STATE(2486)] = 61334, + [SMALL_STATE(2487)] = 61403, + [SMALL_STATE(2488)] = 61470, + [SMALL_STATE(2489)] = 61537, + [SMALL_STATE(2490)] = 61604, + [SMALL_STATE(2491)] = 61671, + [SMALL_STATE(2492)] = 61738, + [SMALL_STATE(2493)] = 61823, + [SMALL_STATE(2494)] = 61890, + [SMALL_STATE(2495)] = 61957, + [SMALL_STATE(2496)] = 62024, + [SMALL_STATE(2497)] = 62091, + [SMALL_STATE(2498)] = 62158, + [SMALL_STATE(2499)] = 62237, + [SMALL_STATE(2500)] = 62304, + [SMALL_STATE(2501)] = 62389, + [SMALL_STATE(2502)] = 62456, + [SMALL_STATE(2503)] = 62529, + [SMALL_STATE(2504)] = 62596, + [SMALL_STATE(2505)] = 62677, + [SMALL_STATE(2506)] = 62760, + [SMALL_STATE(2507)] = 62827, + [SMALL_STATE(2508)] = 62896, + [SMALL_STATE(2509)] = 62963, + [SMALL_STATE(2510)] = 63056, + [SMALL_STATE(2511)] = 63123, + [SMALL_STATE(2512)] = 63190, + [SMALL_STATE(2513)] = 63257, + [SMALL_STATE(2514)] = 63324, + [SMALL_STATE(2515)] = 63391, + [SMALL_STATE(2516)] = 63458, + [SMALL_STATE(2517)] = 63525, + [SMALL_STATE(2518)] = 63592, + [SMALL_STATE(2519)] = 63659, + [SMALL_STATE(2520)] = 63726, + [SMALL_STATE(2521)] = 63793, + [SMALL_STATE(2522)] = 63860, + [SMALL_STATE(2523)] = 63927, + [SMALL_STATE(2524)] = 63994, + [SMALL_STATE(2525)] = 64061, + [SMALL_STATE(2526)] = 64128, + [SMALL_STATE(2527)] = 64223, + [SMALL_STATE(2528)] = 64290, + [SMALL_STATE(2529)] = 64357, + [SMALL_STATE(2530)] = 64454, + [SMALL_STATE(2531)] = 64521, + [SMALL_STATE(2532)] = 64588, + [SMALL_STATE(2533)] = 64673, + [SMALL_STATE(2534)] = 64740, + [SMALL_STATE(2535)] = 64807, + [SMALL_STATE(2536)] = 64880, + [SMALL_STATE(2537)] = 64947, + [SMALL_STATE(2538)] = 65014, + [SMALL_STATE(2539)] = 65081, + [SMALL_STATE(2540)] = 65158, + [SMALL_STATE(2541)] = 65229, + [SMALL_STATE(2542)] = 65296, + [SMALL_STATE(2543)] = 65383, + [SMALL_STATE(2544)] = 65450, + [SMALL_STATE(2545)] = 65517, + [SMALL_STATE(2546)] = 65584, + [SMALL_STATE(2547)] = 65650, + [SMALL_STATE(2548)] = 65724, + [SMALL_STATE(2549)] = 65794, + [SMALL_STATE(2550)] = 65884, + [SMALL_STATE(2551)] = 65950, + [SMALL_STATE(2552)] = 66016, + [SMALL_STATE(2553)] = 66082, + [SMALL_STATE(2554)] = 66148, + [SMALL_STATE(2555)] = 66238, + [SMALL_STATE(2556)] = 66304, + [SMALL_STATE(2557)] = 66370, + [SMALL_STATE(2558)] = 66436, + [SMALL_STATE(2559)] = 66502, + [SMALL_STATE(2560)] = 66568, + [SMALL_STATE(2561)] = 66650, + [SMALL_STATE(2562)] = 66716, + [SMALL_STATE(2563)] = 66806, + [SMALL_STATE(2564)] = 66876, + [SMALL_STATE(2565)] = 66958, + [SMALL_STATE(2566)] = 67026, + [SMALL_STATE(2567)] = 67116, + [SMALL_STATE(2568)] = 67186, + [SMALL_STATE(2569)] = 67252, + [SMALL_STATE(2570)] = 67328, + [SMALL_STATE(2571)] = 67418, + [SMALL_STATE(2572)] = 67492, + [SMALL_STATE(2573)] = 67558, + [SMALL_STATE(2574)] = 67648, + [SMALL_STATE(2575)] = 67736, + [SMALL_STATE(2576)] = 67826, + [SMALL_STATE(2577)] = 67916, + [SMALL_STATE(2578)] = 68006, + [SMALL_STATE(2579)] = 68096, + [SMALL_STATE(2580)] = 68186, + [SMALL_STATE(2581)] = 68276, + [SMALL_STATE(2582)] = 68342, + [SMALL_STATE(2583)] = 68424, + [SMALL_STATE(2584)] = 68494, + [SMALL_STATE(2585)] = 68560, + [SMALL_STATE(2586)] = 68628, + [SMALL_STATE(2587)] = 68702, + [SMALL_STATE(2588)] = 68784, + [SMALL_STATE(2589)] = 68849, + [SMALL_STATE(2590)] = 68936, + [SMALL_STATE(2591)] = 69023, + [SMALL_STATE(2592)] = 69088, + [SMALL_STATE(2593)] = 69153, + [SMALL_STATE(2594)] = 69218, + [SMALL_STATE(2595)] = 69305, + [SMALL_STATE(2596)] = 69370, + [SMALL_STATE(2597)] = 69435, + [SMALL_STATE(2598)] = 69500, + [SMALL_STATE(2599)] = 69587, + [SMALL_STATE(2600)] = 69652, + [SMALL_STATE(2601)] = 69719, + [SMALL_STATE(2602)] = 69806, + [SMALL_STATE(2603)] = 69871, + [SMALL_STATE(2604)] = 69958, + [SMALL_STATE(2605)] = 70025, + [SMALL_STATE(2606)] = 70090, + [SMALL_STATE(2607)] = 70155, + [SMALL_STATE(2608)] = 70228, + [SMALL_STATE(2609)] = 70315, + [SMALL_STATE(2610)] = 70380, + [SMALL_STATE(2611)] = 70447, + [SMALL_STATE(2612)] = 70534, + [SMALL_STATE(2613)] = 70621, + [SMALL_STATE(2614)] = 70708, + [SMALL_STATE(2615)] = 70773, + [SMALL_STATE(2616)] = 70838, + [SMALL_STATE(2617)] = 70903, + [SMALL_STATE(2618)] = 70990, + [SMALL_STATE(2619)] = 71077, + [SMALL_STATE(2620)] = 71164, + [SMALL_STATE(2621)] = 71251, + [SMALL_STATE(2622)] = 71316, + [SMALL_STATE(2623)] = 71381, + [SMALL_STATE(2624)] = 71468, + [SMALL_STATE(2625)] = 71555, + [SMALL_STATE(2626)] = 71626, + [SMALL_STATE(2627)] = 71713, + [SMALL_STATE(2628)] = 71778, + [SMALL_STATE(2629)] = 71865, + [SMALL_STATE(2630)] = 71952, + [SMALL_STATE(2631)] = 72039, + [SMALL_STATE(2632)] = 72126, + [SMALL_STATE(2633)] = 72191, + [SMALL_STATE(2634)] = 72278, + [SMALL_STATE(2635)] = 72365, + [SMALL_STATE(2636)] = 72452, + [SMALL_STATE(2637)] = 72539, + [SMALL_STATE(2638)] = 72604, + [SMALL_STATE(2639)] = 72669, + [SMALL_STATE(2640)] = 72742, + [SMALL_STATE(2641)] = 72807, + [SMALL_STATE(2642)] = 72876, + [SMALL_STATE(2643)] = 72949, + [SMALL_STATE(2644)] = 73036, + [SMALL_STATE(2645)] = 73123, + [SMALL_STATE(2646)] = 73210, + [SMALL_STATE(2647)] = 73297, + [SMALL_STATE(2648)] = 73384, + [SMALL_STATE(2649)] = 73471, + [SMALL_STATE(2650)] = 73558, + [SMALL_STATE(2651)] = 73625, + [SMALL_STATE(2652)] = 73712, + [SMALL_STATE(2653)] = 73799, + [SMALL_STATE(2654)] = 73886, + [SMALL_STATE(2655)] = 73973, + [SMALL_STATE(2656)] = 74038, + [SMALL_STATE(2657)] = 74103, + [SMALL_STATE(2658)] = 74190, + [SMALL_STATE(2659)] = 74255, + [SMALL_STATE(2660)] = 74323, + [SMALL_STATE(2661)] = 74395, + [SMALL_STATE(2662)] = 74459, + [SMALL_STATE(2663)] = 74523, + [SMALL_STATE(2664)] = 74587, + [SMALL_STATE(2665)] = 74651, + [SMALL_STATE(2666)] = 74723, + [SMALL_STATE(2667)] = 74795, + [SMALL_STATE(2668)] = 74863, + [SMALL_STATE(2669)] = 74927, + [SMALL_STATE(2670)] = 74991, + [SMALL_STATE(2671)] = 75109, + [SMALL_STATE(2672)] = 75179, + [SMALL_STATE(2673)] = 75243, + [SMALL_STATE(2674)] = 75315, + [SMALL_STATE(2675)] = 75379, + [SMALL_STATE(2676)] = 75447, + [SMALL_STATE(2677)] = 75511, + [SMALL_STATE(2678)] = 75575, + [SMALL_STATE(2679)] = 75639, + [SMALL_STATE(2680)] = 75711, + [SMALL_STATE(2681)] = 75833, + [SMALL_STATE(2682)] = 75897, + [SMALL_STATE(2683)] = 75969, + [SMALL_STATE(2684)] = 76039, + [SMALL_STATE(2685)] = 76103, + [SMALL_STATE(2686)] = 76171, + [SMALL_STATE(2687)] = 76239, + [SMALL_STATE(2688)] = 76303, + [SMALL_STATE(2689)] = 76369, + [SMALL_STATE(2690)] = 76441, + [SMALL_STATE(2691)] = 76513, + [SMALL_STATE(2692)] = 76629, + [SMALL_STATE(2693)] = 76701, + [SMALL_STATE(2694)] = 76773, + [SMALL_STATE(2695)] = 76845, + [SMALL_STATE(2696)] = 76917, + [SMALL_STATE(2697)] = 76989, + [SMALL_STATE(2698)] = 77059, + [SMALL_STATE(2699)] = 77129, + [SMALL_STATE(2700)] = 77197, + [SMALL_STATE(2701)] = 77319, + [SMALL_STATE(2702)] = 77391, + [SMALL_STATE(2703)] = 77455, + [SMALL_STATE(2704)] = 77519, + [SMALL_STATE(2705)] = 77583, + [SMALL_STATE(2706)] = 77701, + [SMALL_STATE(2707)] = 77765, + [SMALL_STATE(2708)] = 77829, + [SMALL_STATE(2709)] = 77899, + [SMALL_STATE(2710)] = 77963, + [SMALL_STATE(2711)] = 78035, + [SMALL_STATE(2712)] = 78099, + [SMALL_STATE(2713)] = 78171, + [SMALL_STATE(2714)] = 78235, + [SMALL_STATE(2715)] = 78299, + [SMALL_STATE(2716)] = 78363, + [SMALL_STATE(2717)] = 78427, + [SMALL_STATE(2718)] = 78491, + [SMALL_STATE(2719)] = 78555, + [SMALL_STATE(2720)] = 78627, + [SMALL_STATE(2721)] = 78701, + [SMALL_STATE(2722)] = 78777, + [SMALL_STATE(2723)] = 78849, + [SMALL_STATE(2724)] = 78921, + [SMALL_STATE(2725)] = 78985, + [SMALL_STATE(2726)] = 79057, + [SMALL_STATE(2727)] = 79129, + [SMALL_STATE(2728)] = 79201, + [SMALL_STATE(2729)] = 79265, + [SMALL_STATE(2730)] = 79337, + [SMALL_STATE(2731)] = 79401, + [SMALL_STATE(2732)] = 79473, + [SMALL_STATE(2733)] = 79537, + [SMALL_STATE(2734)] = 79601, + [SMALL_STATE(2735)] = 79665, + [SMALL_STATE(2736)] = 79731, + [SMALL_STATE(2737)] = 79797, + [SMALL_STATE(2738)] = 79861, + [SMALL_STATE(2739)] = 79933, + [SMALL_STATE(2740)] = 80049, + [SMALL_STATE(2741)] = 80116, + [SMALL_STATE(2742)] = 80187, + [SMALL_STATE(2743)] = 80300, + [SMALL_STATE(2744)] = 80371, + [SMALL_STATE(2745)] = 80434, + [SMALL_STATE(2746)] = 80505, + [SMALL_STATE(2747)] = 80568, + [SMALL_STATE(2748)] = 80631, + [SMALL_STATE(2749)] = 80702, + [SMALL_STATE(2750)] = 80765, + [SMALL_STATE(2751)] = 80836, + [SMALL_STATE(2752)] = 80907, + [SMALL_STATE(2753)] = 80978, + [SMALL_STATE(2754)] = 81049, + [SMALL_STATE(2755)] = 81120, + [SMALL_STATE(2756)] = 81191, + [SMALL_STATE(2757)] = 81262, + [SMALL_STATE(2758)] = 81333, + [SMALL_STATE(2759)] = 81404, + [SMALL_STATE(2760)] = 81475, + [SMALL_STATE(2761)] = 81546, + [SMALL_STATE(2762)] = 81617, + [SMALL_STATE(2763)] = 81688, + [SMALL_STATE(2764)] = 81759, + [SMALL_STATE(2765)] = 81832, + [SMALL_STATE(2766)] = 81897, + [SMALL_STATE(2767)] = 81962, + [SMALL_STATE(2768)] = 82077, + [SMALL_STATE(2769)] = 82144, + [SMALL_STATE(2770)] = 82211, + [SMALL_STATE(2771)] = 82276, + [SMALL_STATE(2772)] = 82341, + [SMALL_STATE(2773)] = 82408, + [SMALL_STATE(2774)] = 82475, + [SMALL_STATE(2775)] = 82588, + [SMALL_STATE(2776)] = 82663, + [SMALL_STATE(2777)] = 82778, + [SMALL_STATE(2778)] = 82891, + [SMALL_STATE(2779)] = 82958, + [SMALL_STATE(2780)] = 83027, + [SMALL_STATE(2781)] = 83094, + [SMALL_STATE(2782)] = 83157, + [SMALL_STATE(2783)] = 83222, + [SMALL_STATE(2784)] = 83287, + [SMALL_STATE(2785)] = 83400, + [SMALL_STATE(2786)] = 83463, + [SMALL_STATE(2787)] = 83526, + [SMALL_STATE(2788)] = 83589, + [SMALL_STATE(2789)] = 83654, + [SMALL_STATE(2790)] = 83735, + [SMALL_STATE(2791)] = 83806, + [SMALL_STATE(2792)] = 83876, + [SMALL_STATE(2793)] = 83938, + [SMALL_STATE(2794)] = 84002, + [SMALL_STATE(2795)] = 84064, + [SMALL_STATE(2796)] = 84142, + [SMALL_STATE(2797)] = 84204, + [SMALL_STATE(2798)] = 84266, + [SMALL_STATE(2799)] = 84328, + [SMALL_STATE(2800)] = 84390, + [SMALL_STATE(2801)] = 84452, + [SMALL_STATE(2802)] = 84522, + [SMALL_STATE(2803)] = 84592, + [SMALL_STATE(2804)] = 84662, + [SMALL_STATE(2805)] = 84732, + [SMALL_STATE(2806)] = 84802, + [SMALL_STATE(2807)] = 84872, + [SMALL_STATE(2808)] = 84936, + [SMALL_STATE(2809)] = 85006, + [SMALL_STATE(2810)] = 85076, + [SMALL_STATE(2811)] = 85146, + [SMALL_STATE(2812)] = 85216, + [SMALL_STATE(2813)] = 85286, + [SMALL_STATE(2814)] = 85356, + [SMALL_STATE(2815)] = 85418, + [SMALL_STATE(2816)] = 85482, + [SMALL_STATE(2817)] = 85544, + [SMALL_STATE(2818)] = 85606, + [SMALL_STATE(2819)] = 85668, + [SMALL_STATE(2820)] = 85736, + [SMALL_STATE(2821)] = 85802, + [SMALL_STATE(2822)] = 85870, + [SMALL_STATE(2823)] = 85934, + [SMALL_STATE(2824)] = 85998, + [SMALL_STATE(2825)] = 86060, + [SMALL_STATE(2826)] = 86126, + [SMALL_STATE(2827)] = 86190, + [SMALL_STATE(2828)] = 86258, + [SMALL_STATE(2829)] = 86320, + [SMALL_STATE(2830)] = 86388, + [SMALL_STATE(2831)] = 86458, + [SMALL_STATE(2832)] = 86520, + [SMALL_STATE(2833)] = 86588, + [SMALL_STATE(2834)] = 86656, + [SMALL_STATE(2835)] = 86724, + [SMALL_STATE(2836)] = 86792, + [SMALL_STATE(2837)] = 86860, + [SMALL_STATE(2838)] = 86922, + [SMALL_STATE(2839)] = 86986, + [SMALL_STATE(2840)] = 87048, + [SMALL_STATE(2841)] = 87118, + [SMALL_STATE(2842)] = 87188, + [SMALL_STATE(2843)] = 87250, + [SMALL_STATE(2844)] = 87312, + [SMALL_STATE(2845)] = 87374, + [SMALL_STATE(2846)] = 87454, + [SMALL_STATE(2847)] = 87520, + [SMALL_STATE(2848)] = 87586, + [SMALL_STATE(2849)] = 87652, + [SMALL_STATE(2850)] = 87714, + [SMALL_STATE(2851)] = 87782, + [SMALL_STATE(2852)] = 87852, + [SMALL_STATE(2853)] = 87922, + [SMALL_STATE(2854)] = 87986, + [SMALL_STATE(2855)] = 88056, + [SMALL_STATE(2856)] = 88126, + [SMALL_STATE(2857)] = 88190, + [SMALL_STATE(2858)] = 88260, + [SMALL_STATE(2859)] = 88324, + [SMALL_STATE(2860)] = 88402, + [SMALL_STATE(2861)] = 88466, + [SMALL_STATE(2862)] = 88528, + [SMALL_STATE(2863)] = 88598, + [SMALL_STATE(2864)] = 88666, + [SMALL_STATE(2865)] = 88732, + [SMALL_STATE(2866)] = 88802, + [SMALL_STATE(2867)] = 88868, + [SMALL_STATE(2868)] = 88929, + [SMALL_STATE(2869)] = 88994, + [SMALL_STATE(2870)] = 89059, + [SMALL_STATE(2871)] = 89124, + [SMALL_STATE(2872)] = 89185, + [SMALL_STATE(2873)] = 89250, + [SMALL_STATE(2874)] = 89311, + [SMALL_STATE(2875)] = 89376, + [SMALL_STATE(2876)] = 89437, + [SMALL_STATE(2877)] = 89498, + [SMALL_STATE(2878)] = 89559, + [SMALL_STATE(2879)] = 89620, + [SMALL_STATE(2880)] = 89691, + [SMALL_STATE(2881)] = 89752, + [SMALL_STATE(2882)] = 89813, + [SMALL_STATE(2883)] = 89874, + [SMALL_STATE(2884)] = 89935, + [SMALL_STATE(2885)] = 90000, + [SMALL_STATE(2886)] = 90065, + [SMALL_STATE(2887)] = 90130, + [SMALL_STATE(2888)] = 90191, + [SMALL_STATE(2889)] = 90256, + [SMALL_STATE(2890)] = 90317, + [SMALL_STATE(2891)] = 90378, + [SMALL_STATE(2892)] = 90443, + [SMALL_STATE(2893)] = 90506, + [SMALL_STATE(2894)] = 90567, + [SMALL_STATE(2895)] = 90628, + [SMALL_STATE(2896)] = 90689, + [SMALL_STATE(2897)] = 90750, + [SMALL_STATE(2898)] = 90813, + [SMALL_STATE(2899)] = 90876, + [SMALL_STATE(2900)] = 90941, + [SMALL_STATE(2901)] = 91006, + [SMALL_STATE(2902)] = 91071, + [SMALL_STATE(2903)] = 91136, + [SMALL_STATE(2904)] = 91197, + [SMALL_STATE(2905)] = 91262, + [SMALL_STATE(2906)] = 91327, + [SMALL_STATE(2907)] = 91392, + [SMALL_STATE(2908)] = 91457, + [SMALL_STATE(2909)] = 91518, + [SMALL_STATE(2910)] = 91579, + [SMALL_STATE(2911)] = 91640, + [SMALL_STATE(2912)] = 91701, + [SMALL_STATE(2913)] = 91778, + [SMALL_STATE(2914)] = 91843, + [SMALL_STATE(2915)] = 91904, + [SMALL_STATE(2916)] = 91965, + [SMALL_STATE(2917)] = 92026, + [SMALL_STATE(2918)] = 92093, + [SMALL_STATE(2919)] = 92154, + [SMALL_STATE(2920)] = 92219, + [SMALL_STATE(2921)] = 92282, + [SMALL_STATE(2922)] = 92345, + [SMALL_STATE(2923)] = 92408, + [SMALL_STATE(2924)] = 92471, + [SMALL_STATE(2925)] = 92532, + [SMALL_STATE(2926)] = 92595, + [SMALL_STATE(2927)] = 92656, + [SMALL_STATE(2928)] = 92719, + [SMALL_STATE(2929)] = 92782, + [SMALL_STATE(2930)] = 92859, + [SMALL_STATE(2931)] = 92928, + [SMALL_STATE(2932)] = 92993, + [SMALL_STATE(2933)] = 93058, + [SMALL_STATE(2934)] = 93118, + [SMALL_STATE(2935)] = 93178, + [SMALL_STATE(2936)] = 93238, + [SMALL_STATE(2937)] = 93298, + [SMALL_STATE(2938)] = 93360, + [SMALL_STATE(2939)] = 93420, + [SMALL_STATE(2940)] = 93480, + [SMALL_STATE(2941)] = 93540, + [SMALL_STATE(2942)] = 93600, + [SMALL_STATE(2943)] = 93660, + [SMALL_STATE(2944)] = 93720, + [SMALL_STATE(2945)] = 93780, + [SMALL_STATE(2946)] = 93840, + [SMALL_STATE(2947)] = 93900, + [SMALL_STATE(2948)] = 93962, + [SMALL_STATE(2949)] = 94022, + [SMALL_STATE(2950)] = 94088, + [SMALL_STATE(2951)] = 94154, + [SMALL_STATE(2952)] = 94214, + [SMALL_STATE(2953)] = 94278, + [SMALL_STATE(2954)] = 94338, + [SMALL_STATE(2955)] = 94398, + [SMALL_STATE(2956)] = 94458, + [SMALL_STATE(2957)] = 94518, + [SMALL_STATE(2958)] = 94580, + [SMALL_STATE(2959)] = 94640, + [SMALL_STATE(2960)] = 94702, + [SMALL_STATE(2961)] = 94762, + [SMALL_STATE(2962)] = 94822, + [SMALL_STATE(2963)] = 94882, + [SMALL_STATE(2964)] = 94948, + [SMALL_STATE(2965)] = 95010, + [SMALL_STATE(2966)] = 95070, + [SMALL_STATE(2967)] = 95130, + [SMALL_STATE(2968)] = 95196, + [SMALL_STATE(2969)] = 95262, + [SMALL_STATE(2970)] = 95322, + [SMALL_STATE(2971)] = 95382, + [SMALL_STATE(2972)] = 95448, + [SMALL_STATE(2973)] = 95514, + [SMALL_STATE(2974)] = 95574, + [SMALL_STATE(2975)] = 95634, + [SMALL_STATE(2976)] = 95700, + [SMALL_STATE(2977)] = 95766, + [SMALL_STATE(2978)] = 95826, + [SMALL_STATE(2979)] = 95886, + [SMALL_STATE(2980)] = 95946, + [SMALL_STATE(2981)] = 96006, + [SMALL_STATE(2982)] = 96066, + [SMALL_STATE(2983)] = 96126, + [SMALL_STATE(2984)] = 96190, + [SMALL_STATE(2985)] = 96250, + [SMALL_STATE(2986)] = 96310, + [SMALL_STATE(2987)] = 96370, + [SMALL_STATE(2988)] = 96430, + [SMALL_STATE(2989)] = 96492, + [SMALL_STATE(2990)] = 96556, + [SMALL_STATE(2991)] = 96616, + [SMALL_STATE(2992)] = 96690, + [SMALL_STATE(2993)] = 96756, + [SMALL_STATE(2994)] = 96816, + [SMALL_STATE(2995)] = 96876, + [SMALL_STATE(2996)] = 96938, + [SMALL_STATE(2997)] = 97000, + [SMALL_STATE(2998)] = 97062, + [SMALL_STATE(2999)] = 97124, + [SMALL_STATE(3000)] = 97184, + [SMALL_STATE(3001)] = 97244, + [SMALL_STATE(3002)] = 97304, + [SMALL_STATE(3003)] = 97364, + [SMALL_STATE(3004)] = 97426, + [SMALL_STATE(3005)] = 97486, + [SMALL_STATE(3006)] = 97546, + [SMALL_STATE(3007)] = 97606, + [SMALL_STATE(3008)] = 97672, + [SMALL_STATE(3009)] = 97738, + [SMALL_STATE(3010)] = 97798, + [SMALL_STATE(3011)] = 97858, + [SMALL_STATE(3012)] = 97918, + [SMALL_STATE(3013)] = 97978, + [SMALL_STATE(3014)] = 98038, + [SMALL_STATE(3015)] = 98102, + [SMALL_STATE(3016)] = 98162, + [SMALL_STATE(3017)] = 98222, + [SMALL_STATE(3018)] = 98282, + [SMALL_STATE(3019)] = 98346, + [SMALL_STATE(3020)] = 98406, + [SMALL_STATE(3021)] = 98466, + [SMALL_STATE(3022)] = 98528, + [SMALL_STATE(3023)] = 98588, + [SMALL_STATE(3024)] = 98647, + [SMALL_STATE(3025)] = 98706, + [SMALL_STATE(3026)] = 98767, + [SMALL_STATE(3027)] = 98826, + [SMALL_STATE(3028)] = 98887, + [SMALL_STATE(3029)] = 98946, + [SMALL_STATE(3030)] = 99005, + [SMALL_STATE(3031)] = 99064, + [SMALL_STATE(3032)] = 99123, + [SMALL_STATE(3033)] = 99182, + [SMALL_STATE(3034)] = 99241, + [SMALL_STATE(3035)] = 99300, + [SMALL_STATE(3036)] = 99359, + [SMALL_STATE(3037)] = 99420, + [SMALL_STATE(3038)] = 99479, + [SMALL_STATE(3039)] = 99538, + [SMALL_STATE(3040)] = 99597, + [SMALL_STATE(3041)] = 99656, + [SMALL_STATE(3042)] = 99715, + [SMALL_STATE(3043)] = 99774, + [SMALL_STATE(3044)] = 99833, + [SMALL_STATE(3045)] = 99892, + [SMALL_STATE(3046)] = 99951, + [SMALL_STATE(3047)] = 100010, + [SMALL_STATE(3048)] = 100073, + [SMALL_STATE(3049)] = 100132, + [SMALL_STATE(3050)] = 100191, + [SMALL_STATE(3051)] = 100250, + [SMALL_STATE(3052)] = 100311, + [SMALL_STATE(3053)] = 100370, + [SMALL_STATE(3054)] = 100429, + [SMALL_STATE(3055)] = 100490, + [SMALL_STATE(3056)] = 100549, + [SMALL_STATE(3057)] = 100608, + [SMALL_STATE(3058)] = 100667, + [SMALL_STATE(3059)] = 100726, + [SMALL_STATE(3060)] = 100785, + [SMALL_STATE(3061)] = 100844, + [SMALL_STATE(3062)] = 100903, + [SMALL_STATE(3063)] = 100962, + [SMALL_STATE(3064)] = 101021, + [SMALL_STATE(3065)] = 101080, + [SMALL_STATE(3066)] = 101139, + [SMALL_STATE(3067)] = 101198, + [SMALL_STATE(3068)] = 101257, + [SMALL_STATE(3069)] = 101318, + [SMALL_STATE(3070)] = 101379, + [SMALL_STATE(3071)] = 101438, + [SMALL_STATE(3072)] = 101497, + [SMALL_STATE(3073)] = 101556, + [SMALL_STATE(3074)] = 101617, + [SMALL_STATE(3075)] = 101678, + [SMALL_STATE(3076)] = 101737, + [SMALL_STATE(3077)] = 101796, + [SMALL_STATE(3078)] = 101855, + [SMALL_STATE(3079)] = 101914, + [SMALL_STATE(3080)] = 101973, + [SMALL_STATE(3081)] = 102032, + [SMALL_STATE(3082)] = 102091, + [SMALL_STATE(3083)] = 102150, + [SMALL_STATE(3084)] = 102209, + [SMALL_STATE(3085)] = 102270, + [SMALL_STATE(3086)] = 102329, + [SMALL_STATE(3087)] = 102388, + [SMALL_STATE(3088)] = 102447, + [SMALL_STATE(3089)] = 102506, + [SMALL_STATE(3090)] = 102565, + [SMALL_STATE(3091)] = 102628, + [SMALL_STATE(3092)] = 102687, + [SMALL_STATE(3093)] = 102748, + [SMALL_STATE(3094)] = 102809, + [SMALL_STATE(3095)] = 102872, + [SMALL_STATE(3096)] = 102931, + [SMALL_STATE(3097)] = 102992, + [SMALL_STATE(3098)] = 103051, + [SMALL_STATE(3099)] = 103110, + [SMALL_STATE(3100)] = 103171, + [SMALL_STATE(3101)] = 103232, + [SMALL_STATE(3102)] = 103293, + [SMALL_STATE(3103)] = 103366, + [SMALL_STATE(3104)] = 103425, + [SMALL_STATE(3105)] = 103488, + [SMALL_STATE(3106)] = 103551, + [SMALL_STATE(3107)] = 103610, + [SMALL_STATE(3108)] = 103673, + [SMALL_STATE(3109)] = 103732, + [SMALL_STATE(3110)] = 103790, + [SMALL_STATE(3111)] = 103848, + [SMALL_STATE(3112)] = 103906, + [SMALL_STATE(3113)] = 103964, + [SMALL_STATE(3114)] = 104022, + [SMALL_STATE(3115)] = 104080, + [SMALL_STATE(3116)] = 104138, + [SMALL_STATE(3117)] = 104198, + [SMALL_STATE(3118)] = 104256, + [SMALL_STATE(3119)] = 104316, + [SMALL_STATE(3120)] = 104374, + [SMALL_STATE(3121)] = 104432, + [SMALL_STATE(3122)] = 104490, + [SMALL_STATE(3123)] = 104548, + [SMALL_STATE(3124)] = 104606, + [SMALL_STATE(3125)] = 104664, + [SMALL_STATE(3126)] = 104722, + [SMALL_STATE(3127)] = 104780, + [SMALL_STATE(3128)] = 104838, + [SMALL_STATE(3129)] = 104896, + [SMALL_STATE(3130)] = 104954, + [SMALL_STATE(3131)] = 105012, + [SMALL_STATE(3132)] = 105070, + [SMALL_STATE(3133)] = 105128, + [SMALL_STATE(3134)] = 105186, + [SMALL_STATE(3135)] = 105244, + [SMALL_STATE(3136)] = 105302, + [SMALL_STATE(3137)] = 105360, + [SMALL_STATE(3138)] = 105418, + [SMALL_STATE(3139)] = 105476, + [SMALL_STATE(3140)] = 105534, + [SMALL_STATE(3141)] = 105592, + [SMALL_STATE(3142)] = 105650, + [SMALL_STATE(3143)] = 105708, + [SMALL_STATE(3144)] = 105766, + [SMALL_STATE(3145)] = 105824, + [SMALL_STATE(3146)] = 105882, + [SMALL_STATE(3147)] = 105940, + [SMALL_STATE(3148)] = 105998, + [SMALL_STATE(3149)] = 106056, + [SMALL_STATE(3150)] = 106114, + [SMALL_STATE(3151)] = 106172, + [SMALL_STATE(3152)] = 106230, + [SMALL_STATE(3153)] = 106288, + [SMALL_STATE(3154)] = 106346, + [SMALL_STATE(3155)] = 106404, + [SMALL_STATE(3156)] = 106462, + [SMALL_STATE(3157)] = 106528, + [SMALL_STATE(3158)] = 106586, + [SMALL_STATE(3159)] = 106644, + [SMALL_STATE(3160)] = 106702, + [SMALL_STATE(3161)] = 106760, + [SMALL_STATE(3162)] = 106822, + [SMALL_STATE(3163)] = 106880, + [SMALL_STATE(3164)] = 106938, + [SMALL_STATE(3165)] = 106996, + [SMALL_STATE(3166)] = 107054, + [SMALL_STATE(3167)] = 107112, + [SMALL_STATE(3168)] = 107170, + [SMALL_STATE(3169)] = 107232, + [SMALL_STATE(3170)] = 107290, + [SMALL_STATE(3171)] = 107348, + [SMALL_STATE(3172)] = 107408, + [SMALL_STATE(3173)] = 107466, + [SMALL_STATE(3174)] = 107524, + [SMALL_STATE(3175)] = 107582, + [SMALL_STATE(3176)] = 107640, + [SMALL_STATE(3177)] = 107698, + [SMALL_STATE(3178)] = 107756, + [SMALL_STATE(3179)] = 107814, + [SMALL_STATE(3180)] = 107872, + [SMALL_STATE(3181)] = 107930, + [SMALL_STATE(3182)] = 107988, + [SMALL_STATE(3183)] = 108047, + [SMALL_STATE(3184)] = 108104, + [SMALL_STATE(3185)] = 108163, + [SMALL_STATE(3186)] = 108220, + [SMALL_STATE(3187)] = 108285, + [SMALL_STATE(3188)] = 108342, + [SMALL_STATE(3189)] = 108399, + [SMALL_STATE(3190)] = 108456, + [SMALL_STATE(3191)] = 108521, + [SMALL_STATE(3192)] = 108597, + [SMALL_STATE(3193)] = 108673, + [SMALL_STATE(3194)] = 108737, + [SMALL_STATE(3195)] = 108801, + [SMALL_STATE(3196)] = 108877, + [SMALL_STATE(3197)] = 108953, + [SMALL_STATE(3198)] = 109029, + [SMALL_STATE(3199)] = 109105, + [SMALL_STATE(3200)] = 109161, + [SMALL_STATE(3201)] = 109237, + [SMALL_STATE(3202)] = 109313, + [SMALL_STATE(3203)] = 109389, + [SMALL_STATE(3204)] = 109465, + [SMALL_STATE(3205)] = 109541, + [SMALL_STATE(3206)] = 109617, + [SMALL_STATE(3207)] = 109677, + [SMALL_STATE(3208)] = 109743, + [SMALL_STATE(3209)] = 109819, + [SMALL_STATE(3210)] = 109875, + [SMALL_STATE(3211)] = 109935, + [SMALL_STATE(3212)] = 110011, + [SMALL_STATE(3213)] = 110087, + [SMALL_STATE(3214)] = 110143, + [SMALL_STATE(3215)] = 110207, + [SMALL_STATE(3216)] = 110263, + [SMALL_STATE(3217)] = 110339, + [SMALL_STATE(3218)] = 110396, + [SMALL_STATE(3219)] = 110461, + [SMALL_STATE(3220)] = 110518, + [SMALL_STATE(3221)] = 110577, + [SMALL_STATE(3222)] = 110636, + [SMALL_STATE(3223)] = 110692, + [SMALL_STATE(3224)] = 110762, + [SMALL_STATE(3225)] = 110820, + [SMALL_STATE(3226)] = 110878, + [SMALL_STATE(3227)] = 110932, + [SMALL_STATE(3228)] = 110990, + [SMALL_STATE(3229)] = 111044, + [SMALL_STATE(3230)] = 111098, + [SMALL_STATE(3231)] = 111154, + [SMALL_STATE(3232)] = 111212, + [SMALL_STATE(3233)] = 111266, + [SMALL_STATE(3234)] = 111324, + [SMALL_STATE(3235)] = 111382, + [SMALL_STATE(3236)] = 111436, + [SMALL_STATE(3237)] = 111490, + [SMALL_STATE(3238)] = 111544, + [SMALL_STATE(3239)] = 111602, + [SMALL_STATE(3240)] = 111660, + [SMALL_STATE(3241)] = 111718, + [SMALL_STATE(3242)] = 111775, + [SMALL_STATE(3243)] = 111828, + [SMALL_STATE(3244)] = 111885, + [SMALL_STATE(3245)] = 111942, + [SMALL_STATE(3246)] = 111997, + [SMALL_STATE(3247)] = 112050, + [SMALL_STATE(3248)] = 112107, + [SMALL_STATE(3249)] = 112164, + [SMALL_STATE(3250)] = 112221, + [SMALL_STATE(3251)] = 112274, + [SMALL_STATE(3252)] = 112327, + [SMALL_STATE(3253)] = 112384, + [SMALL_STATE(3254)] = 112437, + [SMALL_STATE(3255)] = 112494, + [SMALL_STATE(3256)] = 112551, + [SMALL_STATE(3257)] = 112618, + [SMALL_STATE(3258)] = 112682, + [SMALL_STATE(3259)] = 112732, + [SMALL_STATE(3260)] = 112782, + [SMALL_STATE(3261)] = 112832, + [SMALL_STATE(3262)] = 112896, + [SMALL_STATE(3263)] = 112950, + [SMALL_STATE(3264)] = 113000, + [SMALL_STATE(3265)] = 113050, + [SMALL_STATE(3266)] = 113120, + [SMALL_STATE(3267)] = 113184, + [SMALL_STATE(3268)] = 113252, + [SMALL_STATE(3269)] = 113314, + [SMALL_STATE(3270)] = 113384, + [SMALL_STATE(3271)] = 113442, + [SMALL_STATE(3272)] = 113522, + [SMALL_STATE(3273)] = 113604, + [SMALL_STATE(3274)] = 113688, + [SMALL_STATE(3275)] = 113760, + [SMALL_STATE(3276)] = 113826, + [SMALL_STATE(3277)] = 113900, + [SMALL_STATE(3278)] = 113976, + [SMALL_STATE(3279)] = 114054, + [SMALL_STATE(3280)] = 114118, + [SMALL_STATE(3281)] = 114184, + [SMALL_STATE(3282)] = 114252, + [SMALL_STATE(3283)] = 114312, + [SMALL_STATE(3284)] = 114374, + [SMALL_STATE(3285)] = 114442, + [SMALL_STATE(3286)] = 114512, + [SMALL_STATE(3287)] = 114568, + [SMALL_STATE(3288)] = 114626, + [SMALL_STATE(3289)] = 114704, + [SMALL_STATE(3290)] = 114784, + [SMALL_STATE(3291)] = 114864, + [SMALL_STATE(3292)] = 114946, + [SMALL_STATE(3293)] = 115028, + [SMALL_STATE(3294)] = 115112, + [SMALL_STATE(3295)] = 115182, + [SMALL_STATE(3296)] = 115254, + [SMALL_STATE(3297)] = 115318, + [SMALL_STATE(3298)] = 115384, + [SMALL_STATE(3299)] = 115456, + [SMALL_STATE(3300)] = 115530, + [SMALL_STATE(3301)] = 115604, + [SMALL_STATE(3302)] = 115680, + [SMALL_STATE(3303)] = 115756, + [SMALL_STATE(3304)] = 115834, + [SMALL_STATE(3305)] = 115902, + [SMALL_STATE(3306)] = 115964, + [SMALL_STATE(3307)] = 116034, + [SMALL_STATE(3308)] = 116092, + [SMALL_STATE(3309)] = 116172, + [SMALL_STATE(3310)] = 116254, + [SMALL_STATE(3311)] = 116338, + [SMALL_STATE(3312)] = 116410, + [SMALL_STATE(3313)] = 116484, + [SMALL_STATE(3314)] = 116560, + [SMALL_STATE(3315)] = 116638, + [SMALL_STATE(3316)] = 116704, + [SMALL_STATE(3317)] = 116764, + [SMALL_STATE(3318)] = 116832, + [SMALL_STATE(3319)] = 116888, + [SMALL_STATE(3320)] = 116966, + [SMALL_STATE(3321)] = 117046, + [SMALL_STATE(3322)] = 117128, + [SMALL_STATE(3323)] = 117198, + [SMALL_STATE(3324)] = 117262, + [SMALL_STATE(3325)] = 117334, + [SMALL_STATE(3326)] = 117408, + [SMALL_STATE(3327)] = 117484, + [SMALL_STATE(3328)] = 117550, + [SMALL_STATE(3329)] = 117618, + [SMALL_STATE(3330)] = 117678, + [SMALL_STATE(3331)] = 117740, + [SMALL_STATE(3332)] = 117808, + [SMALL_STATE(3333)] = 117878, + [SMALL_STATE(3334)] = 117934, + [SMALL_STATE(3335)] = 117992, + [SMALL_STATE(3336)] = 118070, + [SMALL_STATE(3337)] = 118150, + [SMALL_STATE(3338)] = 118230, + [SMALL_STATE(3339)] = 118312, + [SMALL_STATE(3340)] = 118394, + [SMALL_STATE(3341)] = 118478, + [SMALL_STATE(3342)] = 118548, + [SMALL_STATE(3343)] = 118620, + [SMALL_STATE(3344)] = 118684, + [SMALL_STATE(3345)] = 118750, + [SMALL_STATE(3346)] = 118822, + [SMALL_STATE(3347)] = 118896, + [SMALL_STATE(3348)] = 118970, + [SMALL_STATE(3349)] = 119046, + [SMALL_STATE(3350)] = 119122, + [SMALL_STATE(3351)] = 119200, + [SMALL_STATE(3352)] = 119266, + [SMALL_STATE(3353)] = 119326, + [SMALL_STATE(3354)] = 119394, + [SMALL_STATE(3355)] = 119450, + [SMALL_STATE(3356)] = 119528, + [SMALL_STATE(3357)] = 119608, + [SMALL_STATE(3358)] = 119690, + [SMALL_STATE(3359)] = 119760, + [SMALL_STATE(3360)] = 119832, + [SMALL_STATE(3361)] = 119906, + [SMALL_STATE(3362)] = 119982, + [SMALL_STATE(3363)] = 120046, + [SMALL_STATE(3364)] = 120104, + [SMALL_STATE(3365)] = 120170, + [SMALL_STATE(3366)] = 120224, + [SMALL_STATE(3367)] = 120300, + [SMALL_STATE(3368)] = 120378, + [SMALL_STATE(3369)] = 120458, + [SMALL_STATE(3370)] = 120526, + [SMALL_STATE(3371)] = 120588, + [SMALL_STATE(3372)] = 120658, + [SMALL_STATE(3373)] = 120730, + [SMALL_STATE(3374)] = 120804, + [SMALL_STATE(3375)] = 120858, + [SMALL_STATE(3376)] = 120922, + [SMALL_STATE(3377)] = 120972, + [SMALL_STATE(3378)] = 121038, + [SMALL_STATE(3379)] = 121099, + [SMALL_STATE(3380)] = 121172, + [SMALL_STATE(3381)] = 121225, + [SMALL_STATE(3382)] = 121286, + [SMALL_STATE(3383)] = 121347, + [SMALL_STATE(3384)] = 121414, + [SMALL_STATE(3385)] = 121475, + [SMALL_STATE(3386)] = 121536, + [SMALL_STATE(3387)] = 121587, + [SMALL_STATE(3388)] = 121638, + [SMALL_STATE(3389)] = 121699, + [SMALL_STATE(3390)] = 121758, + [SMALL_STATE(3391)] = 121819, + [SMALL_STATE(3392)] = 121886, + [SMALL_STATE(3393)] = 121947, + [SMALL_STATE(3394)] = 122010, + [SMALL_STATE(3395)] = 122067, + [SMALL_STATE(3396)] = 122132, + [SMALL_STATE(3397)] = 122185, + [SMALL_STATE(3398)] = 122254, + [SMALL_STATE(3399)] = 122329, + [SMALL_STATE(3400)] = 122406, + [SMALL_STATE(3401)] = 122485, + [SMALL_STATE(3402)] = 122556, + [SMALL_STATE(3403)] = 122623, + [SMALL_STATE(3404)] = 122684, + [SMALL_STATE(3405)] = 122745, + [SMALL_STATE(3406)] = 122814, + [SMALL_STATE(3407)] = 122875, + [SMALL_STATE(3408)] = 122961, + [SMALL_STATE(3409)] = 123015, + [SMALL_STATE(3410)] = 123069, + [SMALL_STATE(3411)] = 123135, + [SMALL_STATE(3412)] = 123201, + [SMALL_STATE(3413)] = 123267, + [SMALL_STATE(3414)] = 123353, + [SMALL_STATE(3415)] = 123419, + [SMALL_STATE(3416)] = 123474, + [SMALL_STATE(3417)] = 123537, + [SMALL_STATE(3418)] = 123600, + [SMALL_STATE(3419)] = 123655, + [SMALL_STATE(3420)] = 123738, + [SMALL_STATE(3421)] = 123793, + [SMALL_STATE(3422)] = 123848, + [SMALL_STATE(3423)] = 123899, + [SMALL_STATE(3424)] = 123950, + [SMALL_STATE(3425)] = 124003, + [SMALL_STATE(3426)] = 124056, + [SMALL_STATE(3427)] = 124111, + [SMALL_STATE(3428)] = 124166, + [SMALL_STATE(3429)] = 124221, + [SMALL_STATE(3430)] = 124276, + [SMALL_STATE(3431)] = 124359, + [SMALL_STATE(3432)] = 124414, + [SMALL_STATE(3433)] = 124477, + [SMALL_STATE(3434)] = 124532, + [SMALL_STATE(3435)] = 124587, + [SMALL_STATE(3436)] = 124650, + [SMALL_STATE(3437)] = 124713, + [SMALL_STATE(3438)] = 124776, + [SMALL_STATE(3439)] = 124839, + [SMALL_STATE(3440)] = 124888, + [SMALL_STATE(3441)] = 124943, + [SMALL_STATE(3442)] = 124998, + [SMALL_STATE(3443)] = 125053, + [SMALL_STATE(3444)] = 125108, + [SMALL_STATE(3445)] = 125163, + [SMALL_STATE(3446)] = 125218, + [SMALL_STATE(3447)] = 125273, + [SMALL_STATE(3448)] = 125328, + [SMALL_STATE(3449)] = 125383, + [SMALL_STATE(3450)] = 125438, + [SMALL_STATE(3451)] = 125493, + [SMALL_STATE(3452)] = 125548, + [SMALL_STATE(3453)] = 125603, + [SMALL_STATE(3454)] = 125658, + [SMALL_STATE(3455)] = 125713, + [SMALL_STATE(3456)] = 125768, + [SMALL_STATE(3457)] = 125823, + [SMALL_STATE(3458)] = 125875, + [SMALL_STATE(3459)] = 125923, + [SMALL_STATE(3460)] = 125975, + [SMALL_STATE(3461)] = 126023, + [SMALL_STATE(3462)] = 126071, + [SMALL_STATE(3463)] = 126133, + [SMALL_STATE(3464)] = 126181, + [SMALL_STATE(3465)] = 126231, + [SMALL_STATE(3466)] = 126283, + [SMALL_STATE(3467)] = 126333, + [SMALL_STATE(3468)] = 126385, + [SMALL_STATE(3469)] = 126437, + [SMALL_STATE(3470)] = 126489, + [SMALL_STATE(3471)] = 126537, + [SMALL_STATE(3472)] = 126588, + [SMALL_STATE(3473)] = 126635, + [SMALL_STATE(3474)] = 126684, + [SMALL_STATE(3475)] = 126735, + [SMALL_STATE(3476)] = 126782, + [SMALL_STATE(3477)] = 126831, + [SMALL_STATE(3478)] = 126878, + [SMALL_STATE(3479)] = 126927, + [SMALL_STATE(3480)] = 126974, + [SMALL_STATE(3481)] = 127021, + [SMALL_STATE(3482)] = 127072, + [SMALL_STATE(3483)] = 127120, + [SMALL_STATE(3484)] = 127168, + [SMALL_STATE(3485)] = 127214, + [SMALL_STATE(3486)] = 127260, + [SMALL_STATE(3487)] = 127306, + [SMALL_STATE(3488)] = 127360, + [SMALL_STATE(3489)] = 127414, + [SMALL_STATE(3490)] = 127460, + [SMALL_STATE(3491)] = 127504, + [SMALL_STATE(3492)] = 127549, + [SMALL_STATE(3493)] = 127602, + [SMALL_STATE(3494)] = 127651, + [SMALL_STATE(3495)] = 127696, + [SMALL_STATE(3496)] = 127745, + [SMALL_STATE(3497)] = 127794, + [SMALL_STATE(3498)] = 127847, + [SMALL_STATE(3499)] = 127892, + [SMALL_STATE(3500)] = 127945, + [SMALL_STATE(3501)] = 127990, + [SMALL_STATE(3502)] = 128039, + [SMALL_STATE(3503)] = 128087, + [SMALL_STATE(3504)] = 128133, + [SMALL_STATE(3505)] = 128179, + [SMALL_STATE(3506)] = 128227, + [SMALL_STATE(3507)] = 128273, + [SMALL_STATE(3508)] = 128319, + [SMALL_STATE(3509)] = 128367, + [SMALL_STATE(3510)] = 128415, + [SMALL_STATE(3511)] = 128458, + [SMALL_STATE(3512)] = 128501, + [SMALL_STATE(3513)] = 128544, + [SMALL_STATE(3514)] = 128591, + [SMALL_STATE(3515)] = 128634, + [SMALL_STATE(3516)] = 128723, + [SMALL_STATE(3517)] = 128766, + [SMALL_STATE(3518)] = 128813, + [SMALL_STATE(3519)] = 128856, + [SMALL_STATE(3520)] = 128903, + [SMALL_STATE(3521)] = 128946, + [SMALL_STATE(3522)] = 128993, + [SMALL_STATE(3523)] = 129040, + [SMALL_STATE(3524)] = 129087, + [SMALL_STATE(3525)] = 129130, + [SMALL_STATE(3526)] = 129175, + [SMALL_STATE(3527)] = 129222, + [SMALL_STATE(3528)] = 129269, + [SMALL_STATE(3529)] = 129316, + [SMALL_STATE(3530)] = 129363, + [SMALL_STATE(3531)] = 129410, + [SMALL_STATE(3532)] = 129455, + [SMALL_STATE(3533)] = 129500, + [SMALL_STATE(3534)] = 129547, + [SMALL_STATE(3535)] = 129594, + [SMALL_STATE(3536)] = 129645, + [SMALL_STATE(3537)] = 129690, + [SMALL_STATE(3538)] = 129779, + [SMALL_STATE(3539)] = 129826, + [SMALL_STATE(3540)] = 129873, + [SMALL_STATE(3541)] = 129920, + [SMALL_STATE(3542)] = 129967, + [SMALL_STATE(3543)] = 130010, + [SMALL_STATE(3544)] = 130059, + [SMALL_STATE(3545)] = 130103, + [SMALL_STATE(3546)] = 130145, + [SMALL_STATE(3547)] = 130219, + [SMALL_STATE(3548)] = 130275, + [SMALL_STATE(3549)] = 130317, + [SMALL_STATE(3550)] = 130367, + [SMALL_STATE(3551)] = 130409, + [SMALL_STATE(3552)] = 130451, + [SMALL_STATE(3553)] = 130509, + [SMALL_STATE(3554)] = 130557, + [SMALL_STATE(3555)] = 130605, + [SMALL_STATE(3556)] = 130651, + [SMALL_STATE(3557)] = 130697, + [SMALL_STATE(3558)] = 130739, + [SMALL_STATE(3559)] = 130781, + [SMALL_STATE(3560)] = 130825, + [SMALL_STATE(3561)] = 130871, + [SMALL_STATE(3562)] = 130919, + [SMALL_STATE(3563)] = 130987, + [SMALL_STATE(3564)] = 131057, + [SMALL_STATE(3565)] = 131099, + [SMALL_STATE(3566)] = 131143, + [SMALL_STATE(3567)] = 131187, + [SMALL_STATE(3568)] = 131245, + [SMALL_STATE(3569)] = 131297, + [SMALL_STATE(3570)] = 131357, + [SMALL_STATE(3571)] = 131405, + [SMALL_STATE(3572)] = 131475, + [SMALL_STATE(3573)] = 131547, + [SMALL_STATE(3574)] = 131591, + [SMALL_STATE(3575)] = 131665, + [SMALL_STATE(3576)] = 131727, + [SMALL_STATE(3577)] = 131783, + [SMALL_STATE(3578)] = 131847, + [SMALL_STATE(3579)] = 131919, + [SMALL_STATE(3580)] = 131985, + [SMALL_STATE(3581)] = 132053, + [SMALL_STATE(3582)] = 132113, + [SMALL_STATE(3583)] = 132167, + [SMALL_STATE(3584)] = 132229, + [SMALL_STATE(3585)] = 132293, + [SMALL_STATE(3586)] = 132359, + [SMALL_STATE(3587)] = 132415, + [SMALL_STATE(3588)] = 132473, + [SMALL_STATE(3589)] = 132529, + [SMALL_STATE(3590)] = 132587, + [SMALL_STATE(3591)] = 132637, + [SMALL_STATE(3592)] = 132689, + [SMALL_STATE(3593)] = 132747, + [SMALL_STATE(3594)] = 132797, + [SMALL_STATE(3595)] = 132857, + [SMALL_STATE(3596)] = 132903, + [SMALL_STATE(3597)] = 132951, + [SMALL_STATE(3598)] = 133019, + [SMALL_STATE(3599)] = 133089, + [SMALL_STATE(3600)] = 133159, + [SMALL_STATE(3601)] = 133231, + [SMALL_STATE(3602)] = 133303, + [SMALL_STATE(3603)] = 133377, + [SMALL_STATE(3604)] = 133437, + [SMALL_STATE(3605)] = 133499, + [SMALL_STATE(3606)] = 133553, + [SMALL_STATE(3607)] = 133609, + [SMALL_STATE(3608)] = 133661, + [SMALL_STATE(3609)] = 133709, + [SMALL_STATE(3610)] = 133751, + [SMALL_STATE(3611)] = 133811, + [SMALL_STATE(3612)] = 133859, + [SMALL_STATE(3613)] = 133905, + [SMALL_STATE(3614)] = 133967, + [SMALL_STATE(3615)] = 134031, + [SMALL_STATE(3616)] = 134079, + [SMALL_STATE(3617)] = 134127, + [SMALL_STATE(3618)] = 134195, + [SMALL_STATE(3619)] = 134243, + [SMALL_STATE(3620)] = 134307, + [SMALL_STATE(3621)] = 134373, + [SMALL_STATE(3622)] = 134421, + [SMALL_STATE(3623)] = 134491, + [SMALL_STATE(3624)] = 134557, + [SMALL_STATE(3625)] = 134625, + [SMALL_STATE(3626)] = 134667, + [SMALL_STATE(3627)] = 134725, + [SMALL_STATE(3628)] = 134795, + [SMALL_STATE(3629)] = 134867, + [SMALL_STATE(3630)] = 134939, + [SMALL_STATE(3631)] = 135013, + [SMALL_STATE(3632)] = 135059, + [SMALL_STATE(3633)] = 135119, + [SMALL_STATE(3634)] = 135181, + [SMALL_STATE(3635)] = 135227, + [SMALL_STATE(3636)] = 135281, + [SMALL_STATE(3637)] = 135337, + [SMALL_STATE(3638)] = 135399, + [SMALL_STATE(3639)] = 135463, + [SMALL_STATE(3640)] = 135527, + [SMALL_STATE(3641)] = 135593, + [SMALL_STATE(3642)] = 135659, + [SMALL_STATE(3643)] = 135727, + [SMALL_STATE(3644)] = 135783, + [SMALL_STATE(3645)] = 135833, + [SMALL_STATE(3646)] = 135891, + [SMALL_STATE(3647)] = 135937, + [SMALL_STATE(3648)] = 136005, + [SMALL_STATE(3649)] = 136075, + [SMALL_STATE(3650)] = 136147, + [SMALL_STATE(3651)] = 136193, + [SMALL_STATE(3652)] = 136253, + [SMALL_STATE(3653)] = 136307, + [SMALL_STATE(3654)] = 136369, + [SMALL_STATE(3655)] = 136433, + [SMALL_STATE(3656)] = 136499, + [SMALL_STATE(3657)] = 136551, + [SMALL_STATE(3658)] = 136613, + [SMALL_STATE(3659)] = 136669, + [SMALL_STATE(3660)] = 136739, + [SMALL_STATE(3661)] = 136803, + [SMALL_STATE(3662)] = 136869, + [SMALL_STATE(3663)] = 136937, + [SMALL_STATE(3664)] = 137009, + [SMALL_STATE(3665)] = 137055, + [SMALL_STATE(3666)] = 137115, + [SMALL_STATE(3667)] = 137173, + [SMALL_STATE(3668)] = 137246, + [SMALL_STATE(3669)] = 137289, + [SMALL_STATE(3670)] = 137372, + [SMALL_STATE(3671)] = 137455, + [SMALL_STATE(3672)] = 137538, + [SMALL_STATE(3673)] = 137621, + [SMALL_STATE(3674)] = 137694, + [SMALL_STATE(3675)] = 137777, + [SMALL_STATE(3676)] = 137860, + [SMALL_STATE(3677)] = 137943, + [SMALL_STATE(3678)] = 138026, + [SMALL_STATE(3679)] = 138109, + [SMALL_STATE(3680)] = 138192, + [SMALL_STATE(3681)] = 138275, + [SMALL_STATE(3682)] = 138358, + [SMALL_STATE(3683)] = 138441, + [SMALL_STATE(3684)] = 138524, + [SMALL_STATE(3685)] = 138607, + [SMALL_STATE(3686)] = 138680, + [SMALL_STATE(3687)] = 138763, + [SMALL_STATE(3688)] = 138808, + [SMALL_STATE(3689)] = 138891, + [SMALL_STATE(3690)] = 138964, + [SMALL_STATE(3691)] = 139047, + [SMALL_STATE(3692)] = 139130, + [SMALL_STATE(3693)] = 139203, + [SMALL_STATE(3694)] = 139286, + [SMALL_STATE(3695)] = 139369, + [SMALL_STATE(3696)] = 139452, + [SMALL_STATE(3697)] = 139525, + [SMALL_STATE(3698)] = 139608, + [SMALL_STATE(3699)] = 139691, + [SMALL_STATE(3700)] = 139774, + [SMALL_STATE(3701)] = 139857, + [SMALL_STATE(3702)] = 139902, + [SMALL_STATE(3703)] = 139948, + [SMALL_STATE(3704)] = 139992, + [SMALL_STATE(3705)] = 140034, + [SMALL_STATE(3706)] = 140076, + [SMALL_STATE(3707)] = 140120, + [SMALL_STATE(3708)] = 140164, + [SMALL_STATE(3709)] = 140206, + [SMALL_STATE(3710)] = 140258, + [SMALL_STATE(3711)] = 140312, + [SMALL_STATE(3712)] = 140354, + [SMALL_STATE(3713)] = 140418, + [SMALL_STATE(3714)] = 140484, + [SMALL_STATE(3715)] = 140552, + [SMALL_STATE(3716)] = 140608, + [SMALL_STATE(3717)] = 140658, + [SMALL_STATE(3718)] = 140718, + [SMALL_STATE(3719)] = 140780, + [SMALL_STATE(3720)] = 140822, + [SMALL_STATE(3721)] = 140864, + [SMALL_STATE(3722)] = 140906, + [SMALL_STATE(3723)] = 140948, + [SMALL_STATE(3724)] = 140990, + [SMALL_STATE(3725)] = 141042, + [SMALL_STATE(3726)] = 141088, + [SMALL_STATE(3727)] = 141142, + [SMALL_STATE(3728)] = 141184, + [SMALL_STATE(3729)] = 141248, + [SMALL_STATE(3730)] = 141314, + [SMALL_STATE(3731)] = 141382, + [SMALL_STATE(3732)] = 141426, + [SMALL_STATE(3733)] = 141482, + [SMALL_STATE(3734)] = 141532, + [SMALL_STATE(3735)] = 141590, + [SMALL_STATE(3736)] = 141650, + [SMALL_STATE(3737)] = 141712, + [SMALL_STATE(3738)] = 141770, + [SMALL_STATE(3739)] = 141837, + [SMALL_STATE(3740)] = 141904, + [SMALL_STATE(3741)] = 141971, + [SMALL_STATE(3742)] = 142038, + [SMALL_STATE(3743)] = 142115, + [SMALL_STATE(3744)] = 142160, + [SMALL_STATE(3745)] = 142237, + [SMALL_STATE(3746)] = 142314, + [SMALL_STATE(3747)] = 142381, + [SMALL_STATE(3748)] = 142458, + [SMALL_STATE(3749)] = 142535, + [SMALL_STATE(3750)] = 142612, + [SMALL_STATE(3751)] = 142689, + [SMALL_STATE(3752)] = 142766, + [SMALL_STATE(3753)] = 142843, + [SMALL_STATE(3754)] = 142920, + [SMALL_STATE(3755)] = 142987, + [SMALL_STATE(3756)] = 143064, + [SMALL_STATE(3757)] = 143141, + [SMALL_STATE(3758)] = 143179, + [SMALL_STATE(3759)] = 143233, + [SMALL_STATE(3760)] = 143277, + [SMALL_STATE(3761)] = 143328, + [SMALL_STATE(3762)] = 143381, + [SMALL_STATE(3763)] = 143432, + [SMALL_STATE(3764)] = 143483, + [SMALL_STATE(3765)] = 143533, + [SMALL_STATE(3766)] = 143573, + [SMALL_STATE(3767)] = 143623, + [SMALL_STATE(3768)] = 143671, + [SMALL_STATE(3769)] = 143719, + [SMALL_STATE(3770)] = 143759, + [SMALL_STATE(3771)] = 143815, + [SMALL_STATE(3772)] = 143863, + [SMALL_STATE(3773)] = 143911, + [SMALL_STATE(3774)] = 143961, + [SMALL_STATE(3775)] = 144000, + [SMALL_STATE(3776)] = 144047, + [SMALL_STATE(3777)] = 144090, + [SMALL_STATE(3778)] = 144137, + [SMALL_STATE(3779)] = 144184, + [SMALL_STATE(3780)] = 144231, + [SMALL_STATE(3781)] = 144284, + [SMALL_STATE(3782)] = 144331, + [SMALL_STATE(3783)] = 144368, + [SMALL_STATE(3784)] = 144421, + [SMALL_STATE(3785)] = 144474, + [SMALL_STATE(3786)] = 144529, + [SMALL_STATE(3787)] = 144568, + [SMALL_STATE(3788)] = 144605, + [SMALL_STATE(3789)] = 144643, + [SMALL_STATE(3790)] = 144679, + [SMALL_STATE(3791)] = 144713, + [SMALL_STATE(3792)] = 144747, + [SMALL_STATE(3793)] = 144785, + [SMALL_STATE(3794)] = 144819, + [SMALL_STATE(3795)] = 144853, + [SMALL_STATE(3796)] = 144905, + [SMALL_STATE(3797)] = 144947, + [SMALL_STATE(3798)] = 144997, + [SMALL_STATE(3799)] = 145049, + [SMALL_STATE(3800)] = 145101, + [SMALL_STATE(3801)] = 145137, + [SMALL_STATE(3802)] = 145175, + [SMALL_STATE(3803)] = 145221, + [SMALL_STATE(3804)] = 145271, + [SMALL_STATE(3805)] = 145321, + [SMALL_STATE(3806)] = 145371, + [SMALL_STATE(3807)] = 145409, + [SMALL_STATE(3808)] = 145446, + [SMALL_STATE(3809)] = 145495, + [SMALL_STATE(3810)] = 145528, + [SMALL_STATE(3811)] = 145561, + [SMALL_STATE(3812)] = 145598, + [SMALL_STATE(3813)] = 145645, + [SMALL_STATE(3814)] = 145680, + [SMALL_STATE(3815)] = 145715, + [SMALL_STATE(3816)] = 145748, + [SMALL_STATE(3817)] = 145783, + [SMALL_STATE(3818)] = 145820, + [SMALL_STATE(3819)] = 145869, + [SMALL_STATE(3820)] = 145904, + [SMALL_STATE(3821)] = 145939, + [SMALL_STATE(3822)] = 145988, + [SMALL_STATE(3823)] = 146041, + [SMALL_STATE(3824)] = 146074, + [SMALL_STATE(3825)] = 146123, + [SMALL_STATE(3826)] = 146160, + [SMALL_STATE(3827)] = 146192, + [SMALL_STATE(3828)] = 146224, + [SMALL_STATE(3829)] = 146256, + [SMALL_STATE(3830)] = 146302, + [SMALL_STATE(3831)] = 146334, + [SMALL_STATE(3832)] = 146384, + [SMALL_STATE(3833)] = 146424, + [SMALL_STATE(3834)] = 146474, + [SMALL_STATE(3835)] = 146512, + [SMALL_STATE(3836)] = 146548, + [SMALL_STATE(3837)] = 146588, + [SMALL_STATE(3838)] = 146620, + [SMALL_STATE(3839)] = 146656, + [SMALL_STATE(3840)] = 146690, + [SMALL_STATE(3841)] = 146724, + [SMALL_STATE(3842)] = 146756, + [SMALL_STATE(3843)] = 146792, + [SMALL_STATE(3844)] = 146824, + [SMALL_STATE(3845)] = 146858, + [SMALL_STATE(3846)] = 146890, + [SMALL_STATE(3847)] = 146926, + [SMALL_STATE(3848)] = 146966, + [SMALL_STATE(3849)] = 147004, + [SMALL_STATE(3850)] = 147054, + [SMALL_STATE(3851)] = 147086, + [SMALL_STATE(3852)] = 147120, + [SMALL_STATE(3853)] = 147167, + [SMALL_STATE(3854)] = 147204, + [SMALL_STATE(3855)] = 147235, + [SMALL_STATE(3856)] = 147266, + [SMALL_STATE(3857)] = 147299, + [SMALL_STATE(3858)] = 147330, + [SMALL_STATE(3859)] = 147363, + [SMALL_STATE(3860)] = 147396, + [SMALL_STATE(3861)] = 147433, + [SMALL_STATE(3862)] = 147464, + [SMALL_STATE(3863)] = 147495, + [SMALL_STATE(3864)] = 147530, + [SMALL_STATE(3865)] = 147561, + [SMALL_STATE(3866)] = 147600, + [SMALL_STATE(3867)] = 147635, + [SMALL_STATE(3868)] = 147680, + [SMALL_STATE(3869)] = 147717, + [SMALL_STATE(3870)] = 147752, + [SMALL_STATE(3871)] = 147783, + [SMALL_STATE(3872)] = 147818, + [SMALL_STATE(3873)] = 147859, + [SMALL_STATE(3874)] = 147906, + [SMALL_STATE(3875)] = 147953, + [SMALL_STATE(3876)] = 147984, + [SMALL_STATE(3877)] = 148031, + [SMALL_STATE(3878)] = 148066, + [SMALL_STATE(3879)] = 148105, + [SMALL_STATE(3880)] = 148144, + [SMALL_STATE(3881)] = 148177, + [SMALL_STATE(3882)] = 148207, + [SMALL_STATE(3883)] = 148239, + [SMALL_STATE(3884)] = 148269, + [SMALL_STATE(3885)] = 148299, + [SMALL_STATE(3886)] = 148329, + [SMALL_STATE(3887)] = 148361, + [SMALL_STATE(3888)] = 148391, + [SMALL_STATE(3889)] = 148421, + [SMALL_STATE(3890)] = 148471, + [SMALL_STATE(3891)] = 148505, + [SMALL_STATE(3892)] = 148535, + [SMALL_STATE(3893)] = 148565, + [SMALL_STATE(3894)] = 148601, + [SMALL_STATE(3895)] = 148641, + [SMALL_STATE(3896)] = 148671, + [SMALL_STATE(3897)] = 148703, + [SMALL_STATE(3898)] = 148733, + [SMALL_STATE(3899)] = 148767, + [SMALL_STATE(3900)] = 148805, + [SMALL_STATE(3901)] = 148837, + [SMALL_STATE(3902)] = 148875, + [SMALL_STATE(3903)] = 148907, + [SMALL_STATE(3904)] = 148941, + [SMALL_STATE(3905)] = 148975, + [SMALL_STATE(3906)] = 149007, + [SMALL_STATE(3907)] = 149037, + [SMALL_STATE(3908)] = 149067, + [SMALL_STATE(3909)] = 149099, + [SMALL_STATE(3910)] = 149131, + [SMALL_STATE(3911)] = 149161, + [SMALL_STATE(3912)] = 149191, + [SMALL_STATE(3913)] = 149229, + [SMALL_STATE(3914)] = 149267, + [SMALL_STATE(3915)] = 149297, + [SMALL_STATE(3916)] = 149329, + [SMALL_STATE(3917)] = 149361, + [SMALL_STATE(3918)] = 149393, + [SMALL_STATE(3919)] = 149425, + [SMALL_STATE(3920)] = 149457, + [SMALL_STATE(3921)] = 149495, + [SMALL_STATE(3922)] = 149525, + [SMALL_STATE(3923)] = 149559, + [SMALL_STATE(3924)] = 149591, + [SMALL_STATE(3925)] = 149628, + [SMALL_STATE(3926)] = 149665, + [SMALL_STATE(3927)] = 149702, + [SMALL_STATE(3928)] = 149739, + [SMALL_STATE(3929)] = 149776, + [SMALL_STATE(3930)] = 149813, + [SMALL_STATE(3931)] = 149850, + [SMALL_STATE(3932)] = 149887, + [SMALL_STATE(3933)] = 149916, + [SMALL_STATE(3934)] = 149947, + [SMALL_STATE(3935)] = 149984, + [SMALL_STATE(3936)] = 150021, + [SMALL_STATE(3937)] = 150050, + [SMALL_STATE(3938)] = 150081, + [SMALL_STATE(3939)] = 150118, + [SMALL_STATE(3940)] = 150147, + [SMALL_STATE(3941)] = 150176, + [SMALL_STATE(3942)] = 150213, + [SMALL_STATE(3943)] = 150244, + [SMALL_STATE(3944)] = 150281, + [SMALL_STATE(3945)] = 150318, + [SMALL_STATE(3946)] = 150347, + [SMALL_STATE(3947)] = 150384, + [SMALL_STATE(3948)] = 150413, + [SMALL_STATE(3949)] = 150444, + [SMALL_STATE(3950)] = 150473, + [SMALL_STATE(3951)] = 150502, + [SMALL_STATE(3952)] = 150531, + [SMALL_STATE(3953)] = 150568, + [SMALL_STATE(3954)] = 150601, + [SMALL_STATE(3955)] = 150630, + [SMALL_STATE(3956)] = 150659, + [SMALL_STATE(3957)] = 150696, + [SMALL_STATE(3958)] = 150733, + [SMALL_STATE(3959)] = 150770, + [SMALL_STATE(3960)] = 150799, + [SMALL_STATE(3961)] = 150836, + [SMALL_STATE(3962)] = 150865, + [SMALL_STATE(3963)] = 150896, + [SMALL_STATE(3964)] = 150927, + [SMALL_STATE(3965)] = 150958, + [SMALL_STATE(3966)] = 150987, + [SMALL_STATE(3967)] = 151018, + [SMALL_STATE(3968)] = 151049, + [SMALL_STATE(3969)] = 151078, + [SMALL_STATE(3970)] = 151113, + [SMALL_STATE(3971)] = 151144, + [SMALL_STATE(3972)] = 151175, + [SMALL_STATE(3973)] = 151206, + [SMALL_STATE(3974)] = 151235, + [SMALL_STATE(3975)] = 151266, + [SMALL_STATE(3976)] = 151297, + [SMALL_STATE(3977)] = 151328, + [SMALL_STATE(3978)] = 151361, + [SMALL_STATE(3979)] = 151392, + [SMALL_STATE(3980)] = 151425, + [SMALL_STATE(3981)] = 151454, + [SMALL_STATE(3982)] = 151483, + [SMALL_STATE(3983)] = 151512, + [SMALL_STATE(3984)] = 151543, + [SMALL_STATE(3985)] = 151580, + [SMALL_STATE(3986)] = 151617, + [SMALL_STATE(3987)] = 151654, + [SMALL_STATE(3988)] = 151685, + [SMALL_STATE(3989)] = 151716, + [SMALL_STATE(3990)] = 151747, + [SMALL_STATE(3991)] = 151778, + [SMALL_STATE(3992)] = 151809, + [SMALL_STATE(3993)] = 151838, + [SMALL_STATE(3994)] = 151867, + [SMALL_STATE(3995)] = 151896, + [SMALL_STATE(3996)] = 151925, + [SMALL_STATE(3997)] = 151958, + [SMALL_STATE(3998)] = 151995, + [SMALL_STATE(3999)] = 152032, + [SMALL_STATE(4000)] = 152069, + [SMALL_STATE(4001)] = 152100, + [SMALL_STATE(4002)] = 152131, + [SMALL_STATE(4003)] = 152168, + [SMALL_STATE(4004)] = 152201, + [SMALL_STATE(4005)] = 152238, + [SMALL_STATE(4006)] = 152271, + [SMALL_STATE(4007)] = 152308, + [SMALL_STATE(4008)] = 152341, + [SMALL_STATE(4009)] = 152377, + [SMALL_STATE(4010)] = 152405, + [SMALL_STATE(4011)] = 152435, + [SMALL_STATE(4012)] = 152463, + [SMALL_STATE(4013)] = 152493, + [SMALL_STATE(4014)] = 152525, + [SMALL_STATE(4015)] = 152555, + [SMALL_STATE(4016)] = 152603, + [SMALL_STATE(4017)] = 152647, + [SMALL_STATE(4018)] = 152695, + [SMALL_STATE(4019)] = 152731, + [SMALL_STATE(4020)] = 152759, + [SMALL_STATE(4021)] = 152791, + [SMALL_STATE(4022)] = 152823, + [SMALL_STATE(4023)] = 152861, + [SMALL_STATE(4024)] = 152889, + [SMALL_STATE(4025)] = 152925, + [SMALL_STATE(4026)] = 152953, + [SMALL_STATE(4027)] = 152981, + [SMALL_STATE(4028)] = 153011, + [SMALL_STATE(4029)] = 153047, + [SMALL_STATE(4030)] = 153083, + [SMALL_STATE(4031)] = 153111, + [SMALL_STATE(4032)] = 153141, + [SMALL_STATE(4033)] = 153169, + [SMALL_STATE(4034)] = 153197, + [SMALL_STATE(4035)] = 153225, + [SMALL_STATE(4036)] = 153257, + [SMALL_STATE(4037)] = 153295, + [SMALL_STATE(4038)] = 153343, + [SMALL_STATE(4039)] = 153379, + [SMALL_STATE(4040)] = 153415, + [SMALL_STATE(4041)] = 153459, + [SMALL_STATE(4042)] = 153503, + [SMALL_STATE(4043)] = 153539, + [SMALL_STATE(4044)] = 153571, + [SMALL_STATE(4045)] = 153599, + [SMALL_STATE(4046)] = 153635, + [SMALL_STATE(4047)] = 153667, + [SMALL_STATE(4048)] = 153695, + [SMALL_STATE(4049)] = 153727, + [SMALL_STATE(4050)] = 153757, + [SMALL_STATE(4051)] = 153789, + [SMALL_STATE(4052)] = 153833, + [SMALL_STATE(4053)] = 153865, + [SMALL_STATE(4054)] = 153901, + [SMALL_STATE(4055)] = 153937, + [SMALL_STATE(4056)] = 153973, + [SMALL_STATE(4057)] = 154009, + [SMALL_STATE(4058)] = 154045, + [SMALL_STATE(4059)] = 154073, + [SMALL_STATE(4060)] = 154109, + [SMALL_STATE(4061)] = 154141, + [SMALL_STATE(4062)] = 154169, + [SMALL_STATE(4063)] = 154199, + [SMALL_STATE(4064)] = 154227, + [SMALL_STATE(4065)] = 154255, + [SMALL_STATE(4066)] = 154283, + [SMALL_STATE(4067)] = 154313, + [SMALL_STATE(4068)] = 154341, + [SMALL_STATE(4069)] = 154369, + [SMALL_STATE(4070)] = 154405, + [SMALL_STATE(4071)] = 154435, + [SMALL_STATE(4072)] = 154471, + [SMALL_STATE(4073)] = 154507, + [SMALL_STATE(4074)] = 154543, + [SMALL_STATE(4075)] = 154571, + [SMALL_STATE(4076)] = 154599, + [SMALL_STATE(4077)] = 154643, + [SMALL_STATE(4078)] = 154679, + [SMALL_STATE(4079)] = 154715, + [SMALL_STATE(4080)] = 154751, + [SMALL_STATE(4081)] = 154783, + [SMALL_STATE(4082)] = 154813, + [SMALL_STATE(4083)] = 154841, + [SMALL_STATE(4084)] = 154869, + [SMALL_STATE(4085)] = 154897, + [SMALL_STATE(4086)] = 154933, + [SMALL_STATE(4087)] = 154969, + [SMALL_STATE(4088)] = 155005, + [SMALL_STATE(4089)] = 155041, + [SMALL_STATE(4090)] = 155077, + [SMALL_STATE(4091)] = 155113, + [SMALL_STATE(4092)] = 155141, + [SMALL_STATE(4093)] = 155177, + [SMALL_STATE(4094)] = 155209, + [SMALL_STATE(4095)] = 155257, + [SMALL_STATE(4096)] = 155288, + [SMALL_STATE(4097)] = 155315, + [SMALL_STATE(4098)] = 155346, + [SMALL_STATE(4099)] = 155377, + [SMALL_STATE(4100)] = 155408, + [SMALL_STATE(4101)] = 155437, + [SMALL_STATE(4102)] = 155466, + [SMALL_STATE(4103)] = 155497, + [SMALL_STATE(4104)] = 155522, + [SMALL_STATE(4105)] = 155553, + [SMALL_STATE(4106)] = 155588, + [SMALL_STATE(4107)] = 155615, + [SMALL_STATE(4108)] = 155640, + [SMALL_STATE(4109)] = 155669, + [SMALL_STATE(4110)] = 155698, + [SMALL_STATE(4111)] = 155723, + [SMALL_STATE(4112)] = 155758, + [SMALL_STATE(4113)] = 155793, + [SMALL_STATE(4114)] = 155824, + [SMALL_STATE(4115)] = 155849, + [SMALL_STATE(4116)] = 155874, + [SMALL_STATE(4117)] = 155905, + [SMALL_STATE(4118)] = 155936, + [SMALL_STATE(4119)] = 155961, + [SMALL_STATE(4120)] = 155986, + [SMALL_STATE(4121)] = 156017, + [SMALL_STATE(4122)] = 156042, + [SMALL_STATE(4123)] = 156075, + [SMALL_STATE(4124)] = 156110, + [SMALL_STATE(4125)] = 156137, + [SMALL_STATE(4126)] = 156168, + [SMALL_STATE(4127)] = 156195, + [SMALL_STATE(4128)] = 156226, + [SMALL_STATE(4129)] = 156261, + [SMALL_STATE(4130)] = 156292, + [SMALL_STATE(4131)] = 156325, + [SMALL_STATE(4132)] = 156360, + [SMALL_STATE(4133)] = 156395, + [SMALL_STATE(4134)] = 156422, + [SMALL_STATE(4135)] = 156451, + [SMALL_STATE(4136)] = 156480, + [SMALL_STATE(4137)] = 156505, + [SMALL_STATE(4138)] = 156530, + [SMALL_STATE(4139)] = 156557, + [SMALL_STATE(4140)] = 156584, + [SMALL_STATE(4141)] = 156613, + [SMALL_STATE(4142)] = 156642, + [SMALL_STATE(4143)] = 156675, + [SMALL_STATE(4144)] = 156708, + [SMALL_STATE(4145)] = 156743, + [SMALL_STATE(4146)] = 156774, + [SMALL_STATE(4147)] = 156805, + [SMALL_STATE(4148)] = 156832, + [SMALL_STATE(4149)] = 156859, + [SMALL_STATE(4150)] = 156892, + [SMALL_STATE(4151)] = 156919, + [SMALL_STATE(4152)] = 156946, + [SMALL_STATE(4153)] = 156973, + [SMALL_STATE(4154)] = 157008, + [SMALL_STATE(4155)] = 157035, + [SMALL_STATE(4156)] = 157062, + [SMALL_STATE(4157)] = 157097, + [SMALL_STATE(4158)] = 157124, + [SMALL_STATE(4159)] = 157157, + [SMALL_STATE(4160)] = 157188, + [SMALL_STATE(4161)] = 157215, + [SMALL_STATE(4162)] = 157246, + [SMALL_STATE(4163)] = 157279, + [SMALL_STATE(4164)] = 157312, + [SMALL_STATE(4165)] = 157345, + [SMALL_STATE(4166)] = 157380, + [SMALL_STATE(4167)] = 157407, + [SMALL_STATE(4168)] = 157434, + [SMALL_STATE(4169)] = 157465, + [SMALL_STATE(4170)] = 157492, + [SMALL_STATE(4171)] = 157519, + [SMALL_STATE(4172)] = 157546, + [SMALL_STATE(4173)] = 157571, + [SMALL_STATE(4174)] = 157606, + [SMALL_STATE(4175)] = 157635, + [SMALL_STATE(4176)] = 157664, + [SMALL_STATE(4177)] = 157693, + [SMALL_STATE(4178)] = 157722, + [SMALL_STATE(4179)] = 157753, + [SMALL_STATE(4180)] = 157784, + [SMALL_STATE(4181)] = 157819, + [SMALL_STATE(4182)] = 157850, + [SMALL_STATE(4183)] = 157881, + [SMALL_STATE(4184)] = 157912, + [SMALL_STATE(4185)] = 157943, + [SMALL_STATE(4186)] = 157974, + [SMALL_STATE(4187)] = 158001, + [SMALL_STATE(4188)] = 158032, + [SMALL_STATE(4189)] = 158063, + [SMALL_STATE(4190)] = 158094, + [SMALL_STATE(4191)] = 158125, + [SMALL_STATE(4192)] = 158152, + [SMALL_STATE(4193)] = 158187, + [SMALL_STATE(4194)] = 158214, + [SMALL_STATE(4195)] = 158243, + [SMALL_STATE(4196)] = 158270, + [SMALL_STATE(4197)] = 158301, + [SMALL_STATE(4198)] = 158328, + [SMALL_STATE(4199)] = 158359, + [SMALL_STATE(4200)] = 158386, + [SMALL_STATE(4201)] = 158413, + [SMALL_STATE(4202)] = 158444, + [SMALL_STATE(4203)] = 158475, + [SMALL_STATE(4204)] = 158506, + [SMALL_STATE(4205)] = 158541, + [SMALL_STATE(4206)] = 158570, + [SMALL_STATE(4207)] = 158603, + [SMALL_STATE(4208)] = 158636, + [SMALL_STATE(4209)] = 158663, + [SMALL_STATE(4210)] = 158694, + [SMALL_STATE(4211)] = 158725, + [SMALL_STATE(4212)] = 158752, + [SMALL_STATE(4213)] = 158779, + [SMALL_STATE(4214)] = 158814, + [SMALL_STATE(4215)] = 158845, + [SMALL_STATE(4216)] = 158874, + [SMALL_STATE(4217)] = 158907, + [SMALL_STATE(4218)] = 158936, + [SMALL_STATE(4219)] = 158963, + [SMALL_STATE(4220)] = 158994, + [SMALL_STATE(4221)] = 159023, + [SMALL_STATE(4222)] = 159054, + [SMALL_STATE(4223)] = 159081, + [SMALL_STATE(4224)] = 159108, + [SMALL_STATE(4225)] = 159135, + [SMALL_STATE(4226)] = 159166, + [SMALL_STATE(4227)] = 159201, + [SMALL_STATE(4228)] = 159232, + [SMALL_STATE(4229)] = 159261, + [SMALL_STATE(4230)] = 159296, + [SMALL_STATE(4231)] = 159323, + [SMALL_STATE(4232)] = 159350, + [SMALL_STATE(4233)] = 159385, + [SMALL_STATE(4234)] = 159418, + [SMALL_STATE(4235)] = 159453, + [SMALL_STATE(4236)] = 159488, + [SMALL_STATE(4237)] = 159517, + [SMALL_STATE(4238)] = 159548, + [SMALL_STATE(4239)] = 159579, + [SMALL_STATE(4240)] = 159614, + [SMALL_STATE(4241)] = 159645, + [SMALL_STATE(4242)] = 159672, + [SMALL_STATE(4243)] = 159703, + [SMALL_STATE(4244)] = 159734, + [SMALL_STATE(4245)] = 159761, + [SMALL_STATE(4246)] = 159792, + [SMALL_STATE(4247)] = 159829, + [SMALL_STATE(4248)] = 159860, + [SMALL_STATE(4249)] = 159891, + [SMALL_STATE(4250)] = 159920, + [SMALL_STATE(4251)] = 159951, + [SMALL_STATE(4252)] = 159986, + [SMALL_STATE(4253)] = 160021, + [SMALL_STATE(4254)] = 160048, + [SMALL_STATE(4255)] = 160081, + [SMALL_STATE(4256)] = 160108, + [SMALL_STATE(4257)] = 160139, + [SMALL_STATE(4258)] = 160172, + [SMALL_STATE(4259)] = 160205, + [SMALL_STATE(4260)] = 160240, + [SMALL_STATE(4261)] = 160269, + [SMALL_STATE(4262)] = 160302, + [SMALL_STATE(4263)] = 160337, + [SMALL_STATE(4264)] = 160370, + [SMALL_STATE(4265)] = 160401, + [SMALL_STATE(4266)] = 160432, + [SMALL_STATE(4267)] = 160463, + [SMALL_STATE(4268)] = 160496, + [SMALL_STATE(4269)] = 160527, + [SMALL_STATE(4270)] = 160562, + [SMALL_STATE(4271)] = 160593, + [SMALL_STATE(4272)] = 160620, + [SMALL_STATE(4273)] = 160653, + [SMALL_STATE(4274)] = 160688, + [SMALL_STATE(4275)] = 160719, + [SMALL_STATE(4276)] = 160754, + [SMALL_STATE(4277)] = 160789, + [SMALL_STATE(4278)] = 160820, + [SMALL_STATE(4279)] = 160851, + [SMALL_STATE(4280)] = 160878, + [SMALL_STATE(4281)] = 160909, + [SMALL_STATE(4282)] = 160944, + [SMALL_STATE(4283)] = 160971, + [SMALL_STATE(4284)] = 161000, + [SMALL_STATE(4285)] = 161027, + [SMALL_STATE(4286)] = 161054, + [SMALL_STATE(4287)] = 161081, + [SMALL_STATE(4288)] = 161113, + [SMALL_STATE(4289)] = 161141, + [SMALL_STATE(4290)] = 161171, + [SMALL_STATE(4291)] = 161197, + [SMALL_STATE(4292)] = 161227, + [SMALL_STATE(4293)] = 161251, + [SMALL_STATE(4294)] = 161303, + [SMALL_STATE(4295)] = 161355, + [SMALL_STATE(4296)] = 161381, + [SMALL_STATE(4297)] = 161407, + [SMALL_STATE(4298)] = 161459, + [SMALL_STATE(4299)] = 161511, + [SMALL_STATE(4300)] = 161563, + [SMALL_STATE(4301)] = 161589, + [SMALL_STATE(4302)] = 161615, + [SMALL_STATE(4303)] = 161645, + [SMALL_STATE(4304)] = 161671, + [SMALL_STATE(4305)] = 161699, + [SMALL_STATE(4306)] = 161729, + [SMALL_STATE(4307)] = 161755, + [SMALL_STATE(4308)] = 161783, + [SMALL_STATE(4309)] = 161811, + [SMALL_STATE(4310)] = 161839, + [SMALL_STATE(4311)] = 161869, + [SMALL_STATE(4312)] = 161899, + [SMALL_STATE(4313)] = 161931, + [SMALL_STATE(4314)] = 161957, + [SMALL_STATE(4315)] = 161987, + [SMALL_STATE(4316)] = 162015, + [SMALL_STATE(4317)] = 162045, + [SMALL_STATE(4318)] = 162071, + [SMALL_STATE(4319)] = 162123, + [SMALL_STATE(4320)] = 162175, + [SMALL_STATE(4321)] = 162199, + [SMALL_STATE(4322)] = 162229, + [SMALL_STATE(4323)] = 162257, + [SMALL_STATE(4324)] = 162287, + [SMALL_STATE(4325)] = 162317, + [SMALL_STATE(4326)] = 162347, + [SMALL_STATE(4327)] = 162371, + [SMALL_STATE(4328)] = 162401, + [SMALL_STATE(4329)] = 162427, + [SMALL_STATE(4330)] = 162457, + [SMALL_STATE(4331)] = 162483, + [SMALL_STATE(4332)] = 162507, + [SMALL_STATE(4333)] = 162535, + [SMALL_STATE(4334)] = 162561, + [SMALL_STATE(4335)] = 162591, + [SMALL_STATE(4336)] = 162621, + [SMALL_STATE(4337)] = 162645, + [SMALL_STATE(4338)] = 162675, + [SMALL_STATE(4339)] = 162705, + [SMALL_STATE(4340)] = 162729, + [SMALL_STATE(4341)] = 162759, + [SMALL_STATE(4342)] = 162789, + [SMALL_STATE(4343)] = 162813, + [SMALL_STATE(4344)] = 162843, + [SMALL_STATE(4345)] = 162895, + [SMALL_STATE(4346)] = 162925, + [SMALL_STATE(4347)] = 162949, + [SMALL_STATE(4348)] = 162975, + [SMALL_STATE(4349)] = 163003, + [SMALL_STATE(4350)] = 163055, + [SMALL_STATE(4351)] = 163081, + [SMALL_STATE(4352)] = 163111, + [SMALL_STATE(4353)] = 163137, + [SMALL_STATE(4354)] = 163161, + [SMALL_STATE(4355)] = 163189, + [SMALL_STATE(4356)] = 163215, + [SMALL_STATE(4357)] = 163243, + [SMALL_STATE(4358)] = 163295, + [SMALL_STATE(4359)] = 163319, + [SMALL_STATE(4360)] = 163349, + [SMALL_STATE(4361)] = 163377, + [SMALL_STATE(4362)] = 163407, + [SMALL_STATE(4363)] = 163431, + [SMALL_STATE(4364)] = 163477, + [SMALL_STATE(4365)] = 163507, + [SMALL_STATE(4366)] = 163531, + [SMALL_STATE(4367)] = 163561, + [SMALL_STATE(4368)] = 163591, + [SMALL_STATE(4369)] = 163619, + [SMALL_STATE(4370)] = 163647, + [SMALL_STATE(4371)] = 163671, + [SMALL_STATE(4372)] = 163697, + [SMALL_STATE(4373)] = 163727, + [SMALL_STATE(4374)] = 163752, + [SMALL_STATE(4375)] = 163777, + [SMALL_STATE(4376)] = 163806, + [SMALL_STATE(4377)] = 163831, + [SMALL_STATE(4378)] = 163860, + [SMALL_STATE(4379)] = 163885, + [SMALL_STATE(4380)] = 163914, + [SMALL_STATE(4381)] = 163943, + [SMALL_STATE(4382)] = 163968, + [SMALL_STATE(4383)] = 163991, + [SMALL_STATE(4384)] = 164016, + [SMALL_STATE(4385)] = 164041, + [SMALL_STATE(4386)] = 164066, + [SMALL_STATE(4387)] = 164095, + [SMALL_STATE(4388)] = 164118, + [SMALL_STATE(4389)] = 164145, + [SMALL_STATE(4390)] = 164170, + [SMALL_STATE(4391)] = 164195, + [SMALL_STATE(4392)] = 164224, + [SMALL_STATE(4393)] = 164251, + [SMALL_STATE(4394)] = 164280, + [SMALL_STATE(4395)] = 164305, + [SMALL_STATE(4396)] = 164334, + [SMALL_STATE(4397)] = 164359, + [SMALL_STATE(4398)] = 164384, + [SMALL_STATE(4399)] = 164409, + [SMALL_STATE(4400)] = 164436, + [SMALL_STATE(4401)] = 164461, + [SMALL_STATE(4402)] = 164492, + [SMALL_STATE(4403)] = 164517, + [SMALL_STATE(4404)] = 164542, + [SMALL_STATE(4405)] = 164567, + [SMALL_STATE(4406)] = 164592, + [SMALL_STATE(4407)] = 164637, + [SMALL_STATE(4408)] = 164666, + [SMALL_STATE(4409)] = 164691, + [SMALL_STATE(4410)] = 164716, + [SMALL_STATE(4411)] = 164745, + [SMALL_STATE(4412)] = 164772, + [SMALL_STATE(4413)] = 164801, + [SMALL_STATE(4414)] = 164830, + [SMALL_STATE(4415)] = 164855, + [SMALL_STATE(4416)] = 164880, + [SMALL_STATE(4417)] = 164909, + [SMALL_STATE(4418)] = 164938, + [SMALL_STATE(4419)] = 164967, + [SMALL_STATE(4420)] = 164994, + [SMALL_STATE(4421)] = 165019, + [SMALL_STATE(4422)] = 165048, + [SMALL_STATE(4423)] = 165073, + [SMALL_STATE(4424)] = 165102, + [SMALL_STATE(4425)] = 165127, + [SMALL_STATE(4426)] = 165156, + [SMALL_STATE(4427)] = 165181, + [SMALL_STATE(4428)] = 165206, + [SMALL_STATE(4429)] = 165231, + [SMALL_STATE(4430)] = 165256, + [SMALL_STATE(4431)] = 165281, + [SMALL_STATE(4432)] = 165310, + [SMALL_STATE(4433)] = 165335, + [SMALL_STATE(4434)] = 165360, + [SMALL_STATE(4435)] = 165385, + [SMALL_STATE(4436)] = 165410, + [SMALL_STATE(4437)] = 165439, + [SMALL_STATE(4438)] = 165464, + [SMALL_STATE(4439)] = 165493, + [SMALL_STATE(4440)] = 165518, + [SMALL_STATE(4441)] = 165547, + [SMALL_STATE(4442)] = 165574, + [SMALL_STATE(4443)] = 165601, + [SMALL_STATE(4444)] = 165626, + [SMALL_STATE(4445)] = 165651, + [SMALL_STATE(4446)] = 165676, + [SMALL_STATE(4447)] = 165705, + [SMALL_STATE(4448)] = 165730, + [SMALL_STATE(4449)] = 165775, + [SMALL_STATE(4450)] = 165800, + [SMALL_STATE(4451)] = 165825, + [SMALL_STATE(4452)] = 165854, + [SMALL_STATE(4453)] = 165883, + [SMALL_STATE(4454)] = 165908, + [SMALL_STATE(4455)] = 165937, + [SMALL_STATE(4456)] = 165962, + [SMALL_STATE(4457)] = 165987, + [SMALL_STATE(4458)] = 166018, + [SMALL_STATE(4459)] = 166043, + [SMALL_STATE(4460)] = 166074, + [SMALL_STATE(4461)] = 166099, + [SMALL_STATE(4462)] = 166126, + [SMALL_STATE(4463)] = 166151, + [SMALL_STATE(4464)] = 166176, + [SMALL_STATE(4465)] = 166199, + [SMALL_STATE(4466)] = 166230, + [SMALL_STATE(4467)] = 166255, + [SMALL_STATE(4468)] = 166284, + [SMALL_STATE(4469)] = 166313, + [SMALL_STATE(4470)] = 166340, + [SMALL_STATE(4471)] = 166369, + [SMALL_STATE(4472)] = 166398, + [SMALL_STATE(4473)] = 166427, + [SMALL_STATE(4474)] = 166452, + [SMALL_STATE(4475)] = 166477, + [SMALL_STATE(4476)] = 166502, + [SMALL_STATE(4477)] = 166527, + [SMALL_STATE(4478)] = 166552, + [SMALL_STATE(4479)] = 166577, + [SMALL_STATE(4480)] = 166602, + [SMALL_STATE(4481)] = 166627, + [SMALL_STATE(4482)] = 166652, + [SMALL_STATE(4483)] = 166677, + [SMALL_STATE(4484)] = 166702, + [SMALL_STATE(4485)] = 166727, + [SMALL_STATE(4486)] = 166752, + [SMALL_STATE(4487)] = 166781, + [SMALL_STATE(4488)] = 166806, + [SMALL_STATE(4489)] = 166831, + [SMALL_STATE(4490)] = 166856, + [SMALL_STATE(4491)] = 166879, + [SMALL_STATE(4492)] = 166908, + [SMALL_STATE(4493)] = 166933, + [SMALL_STATE(4494)] = 166962, + [SMALL_STATE(4495)] = 166989, + [SMALL_STATE(4496)] = 167014, + [SMALL_STATE(4497)] = 167039, + [SMALL_STATE(4498)] = 167068, + [SMALL_STATE(4499)] = 167097, + [SMALL_STATE(4500)] = 167126, + [SMALL_STATE(4501)] = 167151, + [SMALL_STATE(4502)] = 167176, + [SMALL_STATE(4503)] = 167205, + [SMALL_STATE(4504)] = 167230, + [SMALL_STATE(4505)] = 167253, + [SMALL_STATE(4506)] = 167278, + [SMALL_STATE(4507)] = 167307, + [SMALL_STATE(4508)] = 167334, + [SMALL_STATE(4509)] = 167359, + [SMALL_STATE(4510)] = 167384, + [SMALL_STATE(4511)] = 167409, + [SMALL_STATE(4512)] = 167434, + [SMALL_STATE(4513)] = 167459, + [SMALL_STATE(4514)] = 167484, + [SMALL_STATE(4515)] = 167511, + [SMALL_STATE(4516)] = 167540, + [SMALL_STATE(4517)] = 167569, + [SMALL_STATE(4518)] = 167598, + [SMALL_STATE(4519)] = 167627, + [SMALL_STATE(4520)] = 167650, + [SMALL_STATE(4521)] = 167679, + [SMALL_STATE(4522)] = 167702, + [SMALL_STATE(4523)] = 167727, + [SMALL_STATE(4524)] = 167752, + [SMALL_STATE(4525)] = 167777, + [SMALL_STATE(4526)] = 167802, + [SMALL_STATE(4527)] = 167827, + [SMALL_STATE(4528)] = 167852, + [SMALL_STATE(4529)] = 167881, + [SMALL_STATE(4530)] = 167910, + [SMALL_STATE(4531)] = 167939, + [SMALL_STATE(4532)] = 167980, + [SMALL_STATE(4533)] = 168005, + [SMALL_STATE(4534)] = 168034, + [SMALL_STATE(4535)] = 168063, + [SMALL_STATE(4536)] = 168088, + [SMALL_STATE(4537)] = 168112, + [SMALL_STATE(4538)] = 168136, + [SMALL_STATE(4539)] = 168160, + [SMALL_STATE(4540)] = 168184, + [SMALL_STATE(4541)] = 168208, + [SMALL_STATE(4542)] = 168232, + [SMALL_STATE(4543)] = 168256, + [SMALL_STATE(4544)] = 168280, + [SMALL_STATE(4545)] = 168304, + [SMALL_STATE(4546)] = 168328, + [SMALL_STATE(4547)] = 168370, + [SMALL_STATE(4548)] = 168394, + [SMALL_STATE(4549)] = 168418, + [SMALL_STATE(4550)] = 168442, + [SMALL_STATE(4551)] = 168466, + [SMALL_STATE(4552)] = 168506, + [SMALL_STATE(4553)] = 168530, + [SMALL_STATE(4554)] = 168554, + [SMALL_STATE(4555)] = 168578, + [SMALL_STATE(4556)] = 168602, + [SMALL_STATE(4557)] = 168626, + [SMALL_STATE(4558)] = 168650, + [SMALL_STATE(4559)] = 168696, + [SMALL_STATE(4560)] = 168720, + [SMALL_STATE(4561)] = 168766, + [SMALL_STATE(4562)] = 168812, + [SMALL_STATE(4563)] = 168836, + [SMALL_STATE(4564)] = 168860, + [SMALL_STATE(4565)] = 168884, + [SMALL_STATE(4566)] = 168906, + [SMALL_STATE(4567)] = 168932, + [SMALL_STATE(4568)] = 168956, + [SMALL_STATE(4569)] = 168990, + [SMALL_STATE(4570)] = 169014, + [SMALL_STATE(4571)] = 169038, + [SMALL_STATE(4572)] = 169062, + [SMALL_STATE(4573)] = 169086, + [SMALL_STATE(4574)] = 169108, + [SMALL_STATE(4575)] = 169132, + [SMALL_STATE(4576)] = 169156, + [SMALL_STATE(4577)] = 169178, + [SMALL_STATE(4578)] = 169202, + [SMALL_STATE(4579)] = 169226, + [SMALL_STATE(4580)] = 169250, + [SMALL_STATE(4581)] = 169274, + [SMALL_STATE(4582)] = 169300, + [SMALL_STATE(4583)] = 169338, + [SMALL_STATE(4584)] = 169362, + [SMALL_STATE(4585)] = 169386, + [SMALL_STATE(4586)] = 169410, + [SMALL_STATE(4587)] = 169432, + [SMALL_STATE(4588)] = 169456, + [SMALL_STATE(4589)] = 169478, + [SMALL_STATE(4590)] = 169500, + [SMALL_STATE(4591)] = 169524, + [SMALL_STATE(4592)] = 169548, + [SMALL_STATE(4593)] = 169572, + [SMALL_STATE(4594)] = 169596, + [SMALL_STATE(4595)] = 169620, + [SMALL_STATE(4596)] = 169644, + [SMALL_STATE(4597)] = 169668, + [SMALL_STATE(4598)] = 169692, + [SMALL_STATE(4599)] = 169716, + [SMALL_STATE(4600)] = 169738, + [SMALL_STATE(4601)] = 169760, + [SMALL_STATE(4602)] = 169784, + [SMALL_STATE(4603)] = 169806, + [SMALL_STATE(4604)] = 169852, + [SMALL_STATE(4605)] = 169884, + [SMALL_STATE(4606)] = 169908, + [SMALL_STATE(4607)] = 169932, + [SMALL_STATE(4608)] = 169978, + [SMALL_STATE(4609)] = 170016, + [SMALL_STATE(4610)] = 170040, + [SMALL_STATE(4611)] = 170062, + [SMALL_STATE(4612)] = 170086, + [SMALL_STATE(4613)] = 170110, + [SMALL_STATE(4614)] = 170134, + [SMALL_STATE(4615)] = 170156, + [SMALL_STATE(4616)] = 170180, + [SMALL_STATE(4617)] = 170204, + [SMALL_STATE(4618)] = 170228, + [SMALL_STATE(4619)] = 170252, + [SMALL_STATE(4620)] = 170276, + [SMALL_STATE(4621)] = 170300, + [SMALL_STATE(4622)] = 170324, + [SMALL_STATE(4623)] = 170348, + [SMALL_STATE(4624)] = 170374, + [SMALL_STATE(4625)] = 170398, + [SMALL_STATE(4626)] = 170422, + [SMALL_STATE(4627)] = 170446, + [SMALL_STATE(4628)] = 170470, + [SMALL_STATE(4629)] = 170494, + [SMALL_STATE(4630)] = 170518, + [SMALL_STATE(4631)] = 170542, + [SMALL_STATE(4632)] = 170566, + [SMALL_STATE(4633)] = 170590, + [SMALL_STATE(4634)] = 170632, + [SMALL_STATE(4635)] = 170656, + [SMALL_STATE(4636)] = 170680, + [SMALL_STATE(4637)] = 170704, + [SMALL_STATE(4638)] = 170728, + [SMALL_STATE(4639)] = 170750, + [SMALL_STATE(4640)] = 170774, + [SMALL_STATE(4641)] = 170798, + [SMALL_STATE(4642)] = 170822, + [SMALL_STATE(4643)] = 170846, + [SMALL_STATE(4644)] = 170870, + [SMALL_STATE(4645)] = 170894, + [SMALL_STATE(4646)] = 170918, + [SMALL_STATE(4647)] = 170942, + [SMALL_STATE(4648)] = 170966, + [SMALL_STATE(4649)] = 170990, + [SMALL_STATE(4650)] = 171014, + [SMALL_STATE(4651)] = 171038, + [SMALL_STATE(4652)] = 171062, + [SMALL_STATE(4653)] = 171086, + [SMALL_STATE(4654)] = 171110, + [SMALL_STATE(4655)] = 171134, + [SMALL_STATE(4656)] = 171180, + [SMALL_STATE(4657)] = 171204, + [SMALL_STATE(4658)] = 171228, + [SMALL_STATE(4659)] = 171252, + [SMALL_STATE(4660)] = 171276, + [SMALL_STATE(4661)] = 171300, + [SMALL_STATE(4662)] = 171324, + [SMALL_STATE(4663)] = 171348, + [SMALL_STATE(4664)] = 171372, + [SMALL_STATE(4665)] = 171396, + [SMALL_STATE(4666)] = 171420, + [SMALL_STATE(4667)] = 171444, + [SMALL_STATE(4668)] = 171468, + [SMALL_STATE(4669)] = 171492, + [SMALL_STATE(4670)] = 171516, + [SMALL_STATE(4671)] = 171540, + [SMALL_STATE(4672)] = 171564, + [SMALL_STATE(4673)] = 171588, + [SMALL_STATE(4674)] = 171612, + [SMALL_STATE(4675)] = 171636, + [SMALL_STATE(4676)] = 171662, + [SMALL_STATE(4677)] = 171686, + [SMALL_STATE(4678)] = 171710, + [SMALL_STATE(4679)] = 171752, + [SMALL_STATE(4680)] = 171776, + [SMALL_STATE(4681)] = 171798, + [SMALL_STATE(4682)] = 171822, + [SMALL_STATE(4683)] = 171846, + [SMALL_STATE(4684)] = 171870, + [SMALL_STATE(4685)] = 171894, + [SMALL_STATE(4686)] = 171918, + [SMALL_STATE(4687)] = 171942, + [SMALL_STATE(4688)] = 171966, + [SMALL_STATE(4689)] = 171990, + [SMALL_STATE(4690)] = 172014, + [SMALL_STATE(4691)] = 172038, + [SMALL_STATE(4692)] = 172062, + [SMALL_STATE(4693)] = 172086, + [SMALL_STATE(4694)] = 172110, + [SMALL_STATE(4695)] = 172134, + [SMALL_STATE(4696)] = 172162, + [SMALL_STATE(4697)] = 172190, + [SMALL_STATE(4698)] = 172218, + [SMALL_STATE(4699)] = 172246, + [SMALL_STATE(4700)] = 172274, + [SMALL_STATE(4701)] = 172302, + [SMALL_STATE(4702)] = 172330, + [SMALL_STATE(4703)] = 172358, + [SMALL_STATE(4704)] = 172382, + [SMALL_STATE(4705)] = 172406, + [SMALL_STATE(4706)] = 172434, + [SMALL_STATE(4707)] = 172462, + [SMALL_STATE(4708)] = 172490, + [SMALL_STATE(4709)] = 172512, + [SMALL_STATE(4710)] = 172536, + [SMALL_STATE(4711)] = 172560, + [SMALL_STATE(4712)] = 172584, + [SMALL_STATE(4713)] = 172612, + [SMALL_STATE(4714)] = 172636, + [SMALL_STATE(4715)] = 172660, + [SMALL_STATE(4716)] = 172684, + [SMALL_STATE(4717)] = 172730, + [SMALL_STATE(4718)] = 172754, + [SMALL_STATE(4719)] = 172778, + [SMALL_STATE(4720)] = 172800, + [SMALL_STATE(4721)] = 172824, + [SMALL_STATE(4722)] = 172848, + [SMALL_STATE(4723)] = 172872, + [SMALL_STATE(4724)] = 172894, + [SMALL_STATE(4725)] = 172918, + [SMALL_STATE(4726)] = 172942, + [SMALL_STATE(4727)] = 172966, + [SMALL_STATE(4728)] = 172990, + [SMALL_STATE(4729)] = 173012, + [SMALL_STATE(4730)] = 173056, + [SMALL_STATE(4731)] = 173088, + [SMALL_STATE(4732)] = 173112, + [SMALL_STATE(4733)] = 173136, + [SMALL_STATE(4734)] = 173180, + [SMALL_STATE(4735)] = 173204, + [SMALL_STATE(4736)] = 173228, + [SMALL_STATE(4737)] = 173250, + [SMALL_STATE(4738)] = 173274, + [SMALL_STATE(4739)] = 173298, + [SMALL_STATE(4740)] = 173322, + [SMALL_STATE(4741)] = 173346, + [SMALL_STATE(4742)] = 173368, + [SMALL_STATE(4743)] = 173392, + [SMALL_STATE(4744)] = 173416, + [SMALL_STATE(4745)] = 173440, + [SMALL_STATE(4746)] = 173462, + [SMALL_STATE(4747)] = 173486, + [SMALL_STATE(4748)] = 173510, + [SMALL_STATE(4749)] = 173534, + [SMALL_STATE(4750)] = 173558, + [SMALL_STATE(4751)] = 173582, + [SMALL_STATE(4752)] = 173606, + [SMALL_STATE(4753)] = 173630, + [SMALL_STATE(4754)] = 173654, + [SMALL_STATE(4755)] = 173678, + [SMALL_STATE(4756)] = 173702, + [SMALL_STATE(4757)] = 173726, + [SMALL_STATE(4758)] = 173750, + [SMALL_STATE(4759)] = 173796, + [SMALL_STATE(4760)] = 173820, + [SMALL_STATE(4761)] = 173844, + [SMALL_STATE(4762)] = 173868, + [SMALL_STATE(4763)] = 173892, + [SMALL_STATE(4764)] = 173916, + [SMALL_STATE(4765)] = 173940, + [SMALL_STATE(4766)] = 173964, + [SMALL_STATE(4767)] = 174010, + [SMALL_STATE(4768)] = 174056, + [SMALL_STATE(4769)] = 174080, + [SMALL_STATE(4770)] = 174104, + [SMALL_STATE(4771)] = 174128, + [SMALL_STATE(4772)] = 174150, + [SMALL_STATE(4773)] = 174174, + [SMALL_STATE(4774)] = 174196, + [SMALL_STATE(4775)] = 174220, + [SMALL_STATE(4776)] = 174244, + [SMALL_STATE(4777)] = 174266, + [SMALL_STATE(4778)] = 174288, + [SMALL_STATE(4779)] = 174312, + [SMALL_STATE(4780)] = 174336, + [SMALL_STATE(4781)] = 174374, + [SMALL_STATE(4782)] = 174398, + [SMALL_STATE(4783)] = 174420, + [SMALL_STATE(4784)] = 174444, + [SMALL_STATE(4785)] = 174468, + [SMALL_STATE(4786)] = 174492, + [SMALL_STATE(4787)] = 174516, + [SMALL_STATE(4788)] = 174540, + [SMALL_STATE(4789)] = 174564, + [SMALL_STATE(4790)] = 174588, + [SMALL_STATE(4791)] = 174612, + [SMALL_STATE(4792)] = 174633, + [SMALL_STATE(4793)] = 174654, + [SMALL_STATE(4794)] = 174677, + [SMALL_STATE(4795)] = 174700, + [SMALL_STATE(4796)] = 174739, + [SMALL_STATE(4797)] = 174760, + [SMALL_STATE(4798)] = 174787, + [SMALL_STATE(4799)] = 174810, + [SMALL_STATE(4800)] = 174833, + [SMALL_STATE(4801)] = 174854, + [SMALL_STATE(4802)] = 174875, + [SMALL_STATE(4803)] = 174896, + [SMALL_STATE(4804)] = 174917, + [SMALL_STATE(4805)] = 174938, + [SMALL_STATE(4806)] = 174977, + [SMALL_STATE(4807)] = 175004, + [SMALL_STATE(4808)] = 175025, + [SMALL_STATE(4809)] = 175046, + [SMALL_STATE(4810)] = 175085, + [SMALL_STATE(4811)] = 175124, + [SMALL_STATE(4812)] = 175163, + [SMALL_STATE(4813)] = 175184, + [SMALL_STATE(4814)] = 175225, + [SMALL_STATE(4815)] = 175246, + [SMALL_STATE(4816)] = 175269, + [SMALL_STATE(4817)] = 175310, + [SMALL_STATE(4818)] = 175333, + [SMALL_STATE(4819)] = 175356, + [SMALL_STATE(4820)] = 175379, + [SMALL_STATE(4821)] = 175402, + [SMALL_STATE(4822)] = 175425, + [SMALL_STATE(4823)] = 175448, + [SMALL_STATE(4824)] = 175471, + [SMALL_STATE(4825)] = 175494, + [SMALL_STATE(4826)] = 175517, + [SMALL_STATE(4827)] = 175540, + [SMALL_STATE(4828)] = 175563, + [SMALL_STATE(4829)] = 175586, + [SMALL_STATE(4830)] = 175615, + [SMALL_STATE(4831)] = 175638, + [SMALL_STATE(4832)] = 175661, + [SMALL_STATE(4833)] = 175684, + [SMALL_STATE(4834)] = 175707, + [SMALL_STATE(4835)] = 175734, + [SMALL_STATE(4836)] = 175757, + [SMALL_STATE(4837)] = 175780, + [SMALL_STATE(4838)] = 175803, + [SMALL_STATE(4839)] = 175826, + [SMALL_STATE(4840)] = 175849, + [SMALL_STATE(4841)] = 175872, + [SMALL_STATE(4842)] = 175895, + [SMALL_STATE(4843)] = 175918, + [SMALL_STATE(4844)] = 175941, + [SMALL_STATE(4845)] = 175964, + [SMALL_STATE(4846)] = 175985, + [SMALL_STATE(4847)] = 176006, + [SMALL_STATE(4848)] = 176033, + [SMALL_STATE(4849)] = 176054, + [SMALL_STATE(4850)] = 176095, + [SMALL_STATE(4851)] = 176118, + [SMALL_STATE(4852)] = 176139, + [SMALL_STATE(4853)] = 176180, + [SMALL_STATE(4854)] = 176203, + [SMALL_STATE(4855)] = 176226, + [SMALL_STATE(4856)] = 176267, + [SMALL_STATE(4857)] = 176306, + [SMALL_STATE(4858)] = 176327, + [SMALL_STATE(4859)] = 176366, + [SMALL_STATE(4860)] = 176387, + [SMALL_STATE(4861)] = 176408, + [SMALL_STATE(4862)] = 176435, + [SMALL_STATE(4863)] = 176458, + [SMALL_STATE(4864)] = 176481, + [SMALL_STATE(4865)] = 176504, + [SMALL_STATE(4866)] = 176527, + [SMALL_STATE(4867)] = 176566, + [SMALL_STATE(4868)] = 176589, + [SMALL_STATE(4869)] = 176610, + [SMALL_STATE(4870)] = 176631, + [SMALL_STATE(4871)] = 176652, + [SMALL_STATE(4872)] = 176673, + [SMALL_STATE(4873)] = 176694, + [SMALL_STATE(4874)] = 176715, + [SMALL_STATE(4875)] = 176736, + [SMALL_STATE(4876)] = 176757, + [SMALL_STATE(4877)] = 176796, + [SMALL_STATE(4878)] = 176829, + [SMALL_STATE(4879)] = 176870, + [SMALL_STATE(4880)] = 176891, + [SMALL_STATE(4881)] = 176912, + [SMALL_STATE(4882)] = 176933, + [SMALL_STATE(4883)] = 176954, + [SMALL_STATE(4884)] = 176975, + [SMALL_STATE(4885)] = 176996, + [SMALL_STATE(4886)] = 177037, + [SMALL_STATE(4887)] = 177058, + [SMALL_STATE(4888)] = 177079, + [SMALL_STATE(4889)] = 177106, + [SMALL_STATE(4890)] = 177129, + [SMALL_STATE(4891)] = 177170, + [SMALL_STATE(4892)] = 177197, + [SMALL_STATE(4893)] = 177218, + [SMALL_STATE(4894)] = 177239, + [SMALL_STATE(4895)] = 177260, + [SMALL_STATE(4896)] = 177281, + [SMALL_STATE(4897)] = 177302, + [SMALL_STATE(4898)] = 177339, + [SMALL_STATE(4899)] = 177360, + [SMALL_STATE(4900)] = 177381, + [SMALL_STATE(4901)] = 177402, + [SMALL_STATE(4902)] = 177423, + [SMALL_STATE(4903)] = 177444, + [SMALL_STATE(4904)] = 177465, + [SMALL_STATE(4905)] = 177486, + [SMALL_STATE(4906)] = 177521, + [SMALL_STATE(4907)] = 177542, + [SMALL_STATE(4908)] = 177577, + [SMALL_STATE(4909)] = 177612, + [SMALL_STATE(4910)] = 177647, + [SMALL_STATE(4911)] = 177668, + [SMALL_STATE(4912)] = 177689, + [SMALL_STATE(4913)] = 177710, + [SMALL_STATE(4914)] = 177731, + [SMALL_STATE(4915)] = 177752, + [SMALL_STATE(4916)] = 177791, + [SMALL_STATE(4917)] = 177828, + [SMALL_STATE(4918)] = 177855, + [SMALL_STATE(4919)] = 177876, + [SMALL_STATE(4920)] = 177897, + [SMALL_STATE(4921)] = 177918, + [SMALL_STATE(4922)] = 177939, + [SMALL_STATE(4923)] = 177960, + [SMALL_STATE(4924)] = 177981, + [SMALL_STATE(4925)] = 178002, + [SMALL_STATE(4926)] = 178023, + [SMALL_STATE(4927)] = 178044, + [SMALL_STATE(4928)] = 178065, + [SMALL_STATE(4929)] = 178086, + [SMALL_STATE(4930)] = 178107, + [SMALL_STATE(4931)] = 178128, + [SMALL_STATE(4932)] = 178149, + [SMALL_STATE(4933)] = 178170, + [SMALL_STATE(4934)] = 178191, + [SMALL_STATE(4935)] = 178222, + [SMALL_STATE(4936)] = 178243, + [SMALL_STATE(4937)] = 178264, + [SMALL_STATE(4938)] = 178287, + [SMALL_STATE(4939)] = 178310, + [SMALL_STATE(4940)] = 178337, + [SMALL_STATE(4941)] = 178378, + [SMALL_STATE(4942)] = 178405, + [SMALL_STATE(4943)] = 178444, + [SMALL_STATE(4944)] = 178471, + [SMALL_STATE(4945)] = 178498, + [SMALL_STATE(4946)] = 178525, + [SMALL_STATE(4947)] = 178552, + [SMALL_STATE(4948)] = 178579, + [SMALL_STATE(4949)] = 178606, + [SMALL_STATE(4950)] = 178633, + [SMALL_STATE(4951)] = 178660, + [SMALL_STATE(4952)] = 178687, + [SMALL_STATE(4953)] = 178714, + [SMALL_STATE(4954)] = 178753, + [SMALL_STATE(4955)] = 178780, + [SMALL_STATE(4956)] = 178807, + [SMALL_STATE(4957)] = 178828, + [SMALL_STATE(4958)] = 178849, + [SMALL_STATE(4959)] = 178890, + [SMALL_STATE(4960)] = 178913, + [SMALL_STATE(4961)] = 178940, + [SMALL_STATE(4962)] = 178961, + [SMALL_STATE(4963)] = 178988, + [SMALL_STATE(4964)] = 179018, + [SMALL_STATE(4965)] = 179054, + [SMALL_STATE(4966)] = 179086, + [SMALL_STATE(4967)] = 179114, + [SMALL_STATE(4968)] = 179152, + [SMALL_STATE(4969)] = 179184, + [SMALL_STATE(4970)] = 179208, + [SMALL_STATE(4971)] = 179246, + [SMALL_STATE(4972)] = 179272, + [SMALL_STATE(4973)] = 179304, + [SMALL_STATE(4974)] = 179328, + [SMALL_STATE(4975)] = 179360, + [SMALL_STATE(4976)] = 179386, + [SMALL_STATE(4977)] = 179418, + [SMALL_STATE(4978)] = 179450, + [SMALL_STATE(4979)] = 179476, + [SMALL_STATE(4980)] = 179508, + [SMALL_STATE(4981)] = 179546, + [SMALL_STATE(4982)] = 179572, + [SMALL_STATE(4983)] = 179602, + [SMALL_STATE(4984)] = 179628, + [SMALL_STATE(4985)] = 179654, + [SMALL_STATE(4986)] = 179690, + [SMALL_STATE(4987)] = 179714, + [SMALL_STATE(4988)] = 179744, + [SMALL_STATE(4989)] = 179770, + [SMALL_STATE(4990)] = 179800, + [SMALL_STATE(4991)] = 179826, + [SMALL_STATE(4992)] = 179856, + [SMALL_STATE(4993)] = 179886, + [SMALL_STATE(4994)] = 179916, + [SMALL_STATE(4995)] = 179946, + [SMALL_STATE(4996)] = 179976, + [SMALL_STATE(4997)] = 180006, + [SMALL_STATE(4998)] = 180036, + [SMALL_STATE(4999)] = 180066, + [SMALL_STATE(5000)] = 180096, + [SMALL_STATE(5001)] = 180126, + [SMALL_STATE(5002)] = 180156, + [SMALL_STATE(5003)] = 180186, + [SMALL_STATE(5004)] = 180216, + [SMALL_STATE(5005)] = 180246, + [SMALL_STATE(5006)] = 180276, + [SMALL_STATE(5007)] = 180306, + [SMALL_STATE(5008)] = 180336, + [SMALL_STATE(5009)] = 180374, + [SMALL_STATE(5010)] = 180400, + [SMALL_STATE(5011)] = 180424, + [SMALL_STATE(5012)] = 180460, + [SMALL_STATE(5013)] = 180496, + [SMALL_STATE(5014)] = 180522, + [SMALL_STATE(5015)] = 180548, + [SMALL_STATE(5016)] = 180572, + [SMALL_STATE(5017)] = 180604, + [SMALL_STATE(5018)] = 180628, + [SMALL_STATE(5019)] = 180664, + [SMALL_STATE(5020)] = 180688, + [SMALL_STATE(5021)] = 180712, + [SMALL_STATE(5022)] = 180734, + [SMALL_STATE(5023)] = 180764, + [SMALL_STATE(5024)] = 180790, + [SMALL_STATE(5025)] = 180826, + [SMALL_STATE(5026)] = 180856, + [SMALL_STATE(5027)] = 180877, + [SMALL_STATE(5028)] = 180906, + [SMALL_STATE(5029)] = 180929, + [SMALL_STATE(5030)] = 180958, + [SMALL_STATE(5031)] = 180987, + [SMALL_STATE(5032)] = 181016, + [SMALL_STATE(5033)] = 181045, + [SMALL_STATE(5034)] = 181074, + [SMALL_STATE(5035)] = 181103, + [SMALL_STATE(5036)] = 181132, + [SMALL_STATE(5037)] = 181161, + [SMALL_STATE(5038)] = 181190, + [SMALL_STATE(5039)] = 181219, + [SMALL_STATE(5040)] = 181248, + [SMALL_STATE(5041)] = 181277, + [SMALL_STATE(5042)] = 181306, + [SMALL_STATE(5043)] = 181335, + [SMALL_STATE(5044)] = 181364, + [SMALL_STATE(5045)] = 181385, + [SMALL_STATE(5046)] = 181406, + [SMALL_STATE(5047)] = 181427, + [SMALL_STATE(5048)] = 181456, + [SMALL_STATE(5049)] = 181491, + [SMALL_STATE(5050)] = 181518, + [SMALL_STATE(5051)] = 181541, + [SMALL_STATE(5052)] = 181572, + [SMALL_STATE(5053)] = 181597, + [SMALL_STATE(5054)] = 181632, + [SMALL_STATE(5055)] = 181663, + [SMALL_STATE(5056)] = 181692, + [SMALL_STATE(5057)] = 181713, + [SMALL_STATE(5058)] = 181734, + [SMALL_STATE(5059)] = 181769, + [SMALL_STATE(5060)] = 181800, + [SMALL_STATE(5061)] = 181821, + [SMALL_STATE(5062)] = 181856, + [SMALL_STATE(5063)] = 181887, + [SMALL_STATE(5064)] = 181922, + [SMALL_STATE(5065)] = 181957, + [SMALL_STATE(5066)] = 181992, + [SMALL_STATE(5067)] = 182027, + [SMALL_STATE(5068)] = 182062, + [SMALL_STATE(5069)] = 182097, + [SMALL_STATE(5070)] = 182132, + [SMALL_STATE(5071)] = 182161, + [SMALL_STATE(5072)] = 182196, + [SMALL_STATE(5073)] = 182231, + [SMALL_STATE(5074)] = 182266, + [SMALL_STATE(5075)] = 182287, + [SMALL_STATE(5076)] = 182322, + [SMALL_STATE(5077)] = 182357, + [SMALL_STATE(5078)] = 182390, + [SMALL_STATE(5079)] = 182411, + [SMALL_STATE(5080)] = 182446, + [SMALL_STATE(5081)] = 182481, + [SMALL_STATE(5082)] = 182514, + [SMALL_STATE(5083)] = 182549, + [SMALL_STATE(5084)] = 182584, + [SMALL_STATE(5085)] = 182619, + [SMALL_STATE(5086)] = 182654, + [SMALL_STATE(5087)] = 182679, + [SMALL_STATE(5088)] = 182714, + [SMALL_STATE(5089)] = 182749, + [SMALL_STATE(5090)] = 182784, + [SMALL_STATE(5091)] = 182819, + [SMALL_STATE(5092)] = 182854, + [SMALL_STATE(5093)] = 182889, + [SMALL_STATE(5094)] = 182924, + [SMALL_STATE(5095)] = 182959, + [SMALL_STATE(5096)] = 182994, + [SMALL_STATE(5097)] = 183029, + [SMALL_STATE(5098)] = 183064, + [SMALL_STATE(5099)] = 183097, + [SMALL_STATE(5100)] = 183126, + [SMALL_STATE(5101)] = 183161, + [SMALL_STATE(5102)] = 183196, + [SMALL_STATE(5103)] = 183221, + [SMALL_STATE(5104)] = 183248, + [SMALL_STATE(5105)] = 183283, + [SMALL_STATE(5106)] = 183318, + [SMALL_STATE(5107)] = 183343, + [SMALL_STATE(5108)] = 183368, + [SMALL_STATE(5109)] = 183403, + [SMALL_STATE(5110)] = 183426, + [SMALL_STATE(5111)] = 183461, + [SMALL_STATE(5112)] = 183496, + [SMALL_STATE(5113)] = 183525, + [SMALL_STATE(5114)] = 183560, + [SMALL_STATE(5115)] = 183581, + [SMALL_STATE(5116)] = 183612, + [SMALL_STATE(5117)] = 183633, + [SMALL_STATE(5118)] = 183666, + [SMALL_STATE(5119)] = 183695, + [SMALL_STATE(5120)] = 183716, + [SMALL_STATE(5121)] = 183737, + [SMALL_STATE(5122)] = 183772, + [SMALL_STATE(5123)] = 183797, + [SMALL_STATE(5124)] = 183832, + [SMALL_STATE(5125)] = 183855, + [SMALL_STATE(5126)] = 183884, + [SMALL_STATE(5127)] = 183919, + [SMALL_STATE(5128)] = 183940, + [SMALL_STATE(5129)] = 183971, + [SMALL_STATE(5130)] = 183992, + [SMALL_STATE(5131)] = 184027, + [SMALL_STATE(5132)] = 184048, + [SMALL_STATE(5133)] = 184083, + [SMALL_STATE(5134)] = 184108, + [SMALL_STATE(5135)] = 184131, + [SMALL_STATE(5136)] = 184152, + [SMALL_STATE(5137)] = 184187, + [SMALL_STATE(5138)] = 184210, + [SMALL_STATE(5139)] = 184245, + [SMALL_STATE(5140)] = 184274, + [SMALL_STATE(5141)] = 184303, + [SMALL_STATE(5142)] = 184332, + [SMALL_STATE(5143)] = 184355, + [SMALL_STATE(5144)] = 184390, + [SMALL_STATE(5145)] = 184420, + [SMALL_STATE(5146)] = 184450, + [SMALL_STATE(5147)] = 184480, + [SMALL_STATE(5148)] = 184510, + [SMALL_STATE(5149)] = 184538, + [SMALL_STATE(5150)] = 184558, + [SMALL_STATE(5151)] = 184582, + [SMALL_STATE(5152)] = 184612, + [SMALL_STATE(5153)] = 184632, + [SMALL_STATE(5154)] = 184662, + [SMALL_STATE(5155)] = 184684, + [SMALL_STATE(5156)] = 184704, + [SMALL_STATE(5157)] = 184728, + [SMALL_STATE(5158)] = 184758, + [SMALL_STATE(5159)] = 184778, + [SMALL_STATE(5160)] = 184798, + [SMALL_STATE(5161)] = 184828, + [SMALL_STATE(5162)] = 184850, + [SMALL_STATE(5163)] = 184872, + [SMALL_STATE(5164)] = 184892, + [SMALL_STATE(5165)] = 184918, + [SMALL_STATE(5166)] = 184940, + [SMALL_STATE(5167)] = 184970, + [SMALL_STATE(5168)] = 184994, + [SMALL_STATE(5169)] = 185014, + [SMALL_STATE(5170)] = 185044, + [SMALL_STATE(5171)] = 185066, + [SMALL_STATE(5172)] = 185090, + [SMALL_STATE(5173)] = 185114, + [SMALL_STATE(5174)] = 185144, + [SMALL_STATE(5175)] = 185168, + [SMALL_STATE(5176)] = 185188, + [SMALL_STATE(5177)] = 185218, + [SMALL_STATE(5178)] = 185240, + [SMALL_STATE(5179)] = 185266, + [SMALL_STATE(5180)] = 185288, + [SMALL_STATE(5181)] = 185318, + [SMALL_STATE(5182)] = 185348, + [SMALL_STATE(5183)] = 185372, + [SMALL_STATE(5184)] = 185402, + [SMALL_STATE(5185)] = 185432, + [SMALL_STATE(5186)] = 185462, + [SMALL_STATE(5187)] = 185492, + [SMALL_STATE(5188)] = 185522, + [SMALL_STATE(5189)] = 185552, + [SMALL_STATE(5190)] = 185582, + [SMALL_STATE(5191)] = 185612, + [SMALL_STATE(5192)] = 185642, + [SMALL_STATE(5193)] = 185672, + [SMALL_STATE(5194)] = 185702, + [SMALL_STATE(5195)] = 185732, + [SMALL_STATE(5196)] = 185762, + [SMALL_STATE(5197)] = 185792, + [SMALL_STATE(5198)] = 185822, + [SMALL_STATE(5199)] = 185846, + [SMALL_STATE(5200)] = 185868, + [SMALL_STATE(5201)] = 185898, + [SMALL_STATE(5202)] = 185928, + [SMALL_STATE(5203)] = 185958, + [SMALL_STATE(5204)] = 185988, + [SMALL_STATE(5205)] = 186018, + [SMALL_STATE(5206)] = 186048, + [SMALL_STATE(5207)] = 186078, + [SMALL_STATE(5208)] = 186108, + [SMALL_STATE(5209)] = 186138, + [SMALL_STATE(5210)] = 186168, + [SMALL_STATE(5211)] = 186198, + [SMALL_STATE(5212)] = 186228, + [SMALL_STATE(5213)] = 186258, + [SMALL_STATE(5214)] = 186288, + [SMALL_STATE(5215)] = 186318, + [SMALL_STATE(5216)] = 186348, + [SMALL_STATE(5217)] = 186378, + [SMALL_STATE(5218)] = 186406, + [SMALL_STATE(5219)] = 186436, + [SMALL_STATE(5220)] = 186462, + [SMALL_STATE(5221)] = 186492, + [SMALL_STATE(5222)] = 186522, + [SMALL_STATE(5223)] = 186552, + [SMALL_STATE(5224)] = 186582, + [SMALL_STATE(5225)] = 186612, + [SMALL_STATE(5226)] = 186642, + [SMALL_STATE(5227)] = 186668, + [SMALL_STATE(5228)] = 186698, + [SMALL_STATE(5229)] = 186718, + [SMALL_STATE(5230)] = 186742, + [SMALL_STATE(5231)] = 186766, + [SMALL_STATE(5232)] = 186786, + [SMALL_STATE(5233)] = 186806, + [SMALL_STATE(5234)] = 186834, + [SMALL_STATE(5235)] = 186864, + [SMALL_STATE(5236)] = 186892, + [SMALL_STATE(5237)] = 186920, + [SMALL_STATE(5238)] = 186948, + [SMALL_STATE(5239)] = 186976, + [SMALL_STATE(5240)] = 187004, + [SMALL_STATE(5241)] = 187034, + [SMALL_STATE(5242)] = 187062, + [SMALL_STATE(5243)] = 187090, + [SMALL_STATE(5244)] = 187120, + [SMALL_STATE(5245)] = 187148, + [SMALL_STATE(5246)] = 187176, + [SMALL_STATE(5247)] = 187204, + [SMALL_STATE(5248)] = 187232, + [SMALL_STATE(5249)] = 187260, + [SMALL_STATE(5250)] = 187288, + [SMALL_STATE(5251)] = 187316, + [SMALL_STATE(5252)] = 187344, + [SMALL_STATE(5253)] = 187364, + [SMALL_STATE(5254)] = 187392, + [SMALL_STATE(5255)] = 187420, + [SMALL_STATE(5256)] = 187440, + [SMALL_STATE(5257)] = 187460, + [SMALL_STATE(5258)] = 187488, + [SMALL_STATE(5259)] = 187516, + [SMALL_STATE(5260)] = 187536, + [SMALL_STATE(5261)] = 187564, + [SMALL_STATE(5262)] = 187592, + [SMALL_STATE(5263)] = 187612, + [SMALL_STATE(5264)] = 187632, + [SMALL_STATE(5265)] = 187662, + [SMALL_STATE(5266)] = 187689, + [SMALL_STATE(5267)] = 187714, + [SMALL_STATE(5268)] = 187739, + [SMALL_STATE(5269)] = 187764, + [SMALL_STATE(5270)] = 187789, + [SMALL_STATE(5271)] = 187812, + [SMALL_STATE(5272)] = 187833, + [SMALL_STATE(5273)] = 187856, + [SMALL_STATE(5274)] = 187881, + [SMALL_STATE(5275)] = 187906, + [SMALL_STATE(5276)] = 187931, + [SMALL_STATE(5277)] = 187956, + [SMALL_STATE(5278)] = 187981, + [SMALL_STATE(5279)] = 188002, + [SMALL_STATE(5280)] = 188027, + [SMALL_STATE(5281)] = 188046, + [SMALL_STATE(5282)] = 188071, + [SMALL_STATE(5283)] = 188096, + [SMALL_STATE(5284)] = 188123, + [SMALL_STATE(5285)] = 188148, + [SMALL_STATE(5286)] = 188169, + [SMALL_STATE(5287)] = 188196, + [SMALL_STATE(5288)] = 188215, + [SMALL_STATE(5289)] = 188240, + [SMALL_STATE(5290)] = 188265, + [SMALL_STATE(5291)] = 188290, + [SMALL_STATE(5292)] = 188311, + [SMALL_STATE(5293)] = 188336, + [SMALL_STATE(5294)] = 188363, + [SMALL_STATE(5295)] = 188392, + [SMALL_STATE(5296)] = 188419, + [SMALL_STATE(5297)] = 188444, + [SMALL_STATE(5298)] = 188469, + [SMALL_STATE(5299)] = 188490, + [SMALL_STATE(5300)] = 188517, + [SMALL_STATE(5301)] = 188536, + [SMALL_STATE(5302)] = 188561, + [SMALL_STATE(5303)] = 188586, + [SMALL_STATE(5304)] = 188611, + [SMALL_STATE(5305)] = 188638, + [SMALL_STATE(5306)] = 188663, + [SMALL_STATE(5307)] = 188688, + [SMALL_STATE(5308)] = 188707, + [SMALL_STATE(5309)] = 188728, + [SMALL_STATE(5310)] = 188747, + [SMALL_STATE(5311)] = 188774, + [SMALL_STATE(5312)] = 188793, + [SMALL_STATE(5313)] = 188818, + [SMALL_STATE(5314)] = 188845, + [SMALL_STATE(5315)] = 188868, + [SMALL_STATE(5316)] = 188893, + [SMALL_STATE(5317)] = 188920, + [SMALL_STATE(5318)] = 188941, + [SMALL_STATE(5319)] = 188960, + [SMALL_STATE(5320)] = 188979, + [SMALL_STATE(5321)] = 189000, + [SMALL_STATE(5322)] = 189027, + [SMALL_STATE(5323)] = 189046, + [SMALL_STATE(5324)] = 189065, + [SMALL_STATE(5325)] = 189086, + [SMALL_STATE(5326)] = 189111, + [SMALL_STATE(5327)] = 189138, + [SMALL_STATE(5328)] = 189163, + [SMALL_STATE(5329)] = 189184, + [SMALL_STATE(5330)] = 189205, + [SMALL_STATE(5331)] = 189232, + [SMALL_STATE(5332)] = 189257, + [SMALL_STATE(5333)] = 189282, + [SMALL_STATE(5334)] = 189309, + [SMALL_STATE(5335)] = 189334, + [SMALL_STATE(5336)] = 189359, + [SMALL_STATE(5337)] = 189386, + [SMALL_STATE(5338)] = 189405, + [SMALL_STATE(5339)] = 189432, + [SMALL_STATE(5340)] = 189451, + [SMALL_STATE(5341)] = 189478, + [SMALL_STATE(5342)] = 189503, + [SMALL_STATE(5343)] = 189530, + [SMALL_STATE(5344)] = 189549, + [SMALL_STATE(5345)] = 189576, + [SMALL_STATE(5346)] = 189603, + [SMALL_STATE(5347)] = 189628, + [SMALL_STATE(5348)] = 189655, + [SMALL_STATE(5349)] = 189674, + [SMALL_STATE(5350)] = 189695, + [SMALL_STATE(5351)] = 189722, + [SMALL_STATE(5352)] = 189749, + [SMALL_STATE(5353)] = 189776, + [SMALL_STATE(5354)] = 189803, + [SMALL_STATE(5355)] = 189830, + [SMALL_STATE(5356)] = 189855, + [SMALL_STATE(5357)] = 189878, + [SMALL_STATE(5358)] = 189903, + [SMALL_STATE(5359)] = 189930, + [SMALL_STATE(5360)] = 189955, + [SMALL_STATE(5361)] = 189980, + [SMALL_STATE(5362)] = 190005, + [SMALL_STATE(5363)] = 190024, + [SMALL_STATE(5364)] = 190043, + [SMALL_STATE(5365)] = 190064, + [SMALL_STATE(5366)] = 190089, + [SMALL_STATE(5367)] = 190114, + [SMALL_STATE(5368)] = 190135, + [SMALL_STATE(5369)] = 190160, + [SMALL_STATE(5370)] = 190179, + [SMALL_STATE(5371)] = 190204, + [SMALL_STATE(5372)] = 190229, + [SMALL_STATE(5373)] = 190254, + [SMALL_STATE(5374)] = 190273, + [SMALL_STATE(5375)] = 190298, + [SMALL_STATE(5376)] = 190325, + [SMALL_STATE(5377)] = 190350, + [SMALL_STATE(5378)] = 190375, + [SMALL_STATE(5379)] = 190396, + [SMALL_STATE(5380)] = 190421, + [SMALL_STATE(5381)] = 190446, + [SMALL_STATE(5382)] = 190471, + [SMALL_STATE(5383)] = 190496, + [SMALL_STATE(5384)] = 190521, + [SMALL_STATE(5385)] = 190546, + [SMALL_STATE(5386)] = 190571, + [SMALL_STATE(5387)] = 190596, + [SMALL_STATE(5388)] = 190621, + [SMALL_STATE(5389)] = 190646, + [SMALL_STATE(5390)] = 190671, + [SMALL_STATE(5391)] = 190696, + [SMALL_STATE(5392)] = 190721, + [SMALL_STATE(5393)] = 190746, + [SMALL_STATE(5394)] = 190773, + [SMALL_STATE(5395)] = 190798, + [SMALL_STATE(5396)] = 190817, + [SMALL_STATE(5397)] = 190842, + [SMALL_STATE(5398)] = 190867, + [SMALL_STATE(5399)] = 190892, + [SMALL_STATE(5400)] = 190911, + [SMALL_STATE(5401)] = 190936, + [SMALL_STATE(5402)] = 190961, + [SMALL_STATE(5403)] = 190988, + [SMALL_STATE(5404)] = 191009, + [SMALL_STATE(5405)] = 191034, + [SMALL_STATE(5406)] = 191059, + [SMALL_STATE(5407)] = 191080, + [SMALL_STATE(5408)] = 191109, + [SMALL_STATE(5409)] = 191134, + [SMALL_STATE(5410)] = 191159, + [SMALL_STATE(5411)] = 191186, + [SMALL_STATE(5412)] = 191211, + [SMALL_STATE(5413)] = 191230, + [SMALL_STATE(5414)] = 191255, + [SMALL_STATE(5415)] = 191278, + [SMALL_STATE(5416)] = 191303, + [SMALL_STATE(5417)] = 191330, + [SMALL_STATE(5418)] = 191351, + [SMALL_STATE(5419)] = 191372, + [SMALL_STATE(5420)] = 191399, + [SMALL_STATE(5421)] = 191425, + [SMALL_STATE(5422)] = 191451, + [SMALL_STATE(5423)] = 191469, + [SMALL_STATE(5424)] = 191487, + [SMALL_STATE(5425)] = 191513, + [SMALL_STATE(5426)] = 191539, + [SMALL_STATE(5427)] = 191557, + [SMALL_STATE(5428)] = 191575, + [SMALL_STATE(5429)] = 191601, + [SMALL_STATE(5430)] = 191619, + [SMALL_STATE(5431)] = 191637, + [SMALL_STATE(5432)] = 191655, + [SMALL_STATE(5433)] = 191673, + [SMALL_STATE(5434)] = 191691, + [SMALL_STATE(5435)] = 191713, + [SMALL_STATE(5436)] = 191735, + [SMALL_STATE(5437)] = 191753, + [SMALL_STATE(5438)] = 191771, + [SMALL_STATE(5439)] = 191789, + [SMALL_STATE(5440)] = 191815, + [SMALL_STATE(5441)] = 191833, + [SMALL_STATE(5442)] = 191851, + [SMALL_STATE(5443)] = 191869, + [SMALL_STATE(5444)] = 191889, + [SMALL_STATE(5445)] = 191907, + [SMALL_STATE(5446)] = 191925, + [SMALL_STATE(5447)] = 191943, + [SMALL_STATE(5448)] = 191961, + [SMALL_STATE(5449)] = 191987, + [SMALL_STATE(5450)] = 192005, + [SMALL_STATE(5451)] = 192031, + [SMALL_STATE(5452)] = 192057, + [SMALL_STATE(5453)] = 192083, + [SMALL_STATE(5454)] = 192109, + [SMALL_STATE(5455)] = 192129, + [SMALL_STATE(5456)] = 192151, + [SMALL_STATE(5457)] = 192171, + [SMALL_STATE(5458)] = 192191, + [SMALL_STATE(5459)] = 192209, + [SMALL_STATE(5460)] = 192235, + [SMALL_STATE(5461)] = 192261, + [SMALL_STATE(5462)] = 192279, + [SMALL_STATE(5463)] = 192297, + [SMALL_STATE(5464)] = 192323, + [SMALL_STATE(5465)] = 192349, + [SMALL_STATE(5466)] = 192375, + [SMALL_STATE(5467)] = 192401, + [SMALL_STATE(5468)] = 192427, + [SMALL_STATE(5469)] = 192453, + [SMALL_STATE(5470)] = 192479, + [SMALL_STATE(5471)] = 192505, + [SMALL_STATE(5472)] = 192523, + [SMALL_STATE(5473)] = 192545, + [SMALL_STATE(5474)] = 192567, + [SMALL_STATE(5475)] = 192587, + [SMALL_STATE(5476)] = 192613, + [SMALL_STATE(5477)] = 192633, + [SMALL_STATE(5478)] = 192655, + [SMALL_STATE(5479)] = 192677, + [SMALL_STATE(5480)] = 192695, + [SMALL_STATE(5481)] = 192721, + [SMALL_STATE(5482)] = 192739, + [SMALL_STATE(5483)] = 192757, + [SMALL_STATE(5484)] = 192775, + [SMALL_STATE(5485)] = 192793, + [SMALL_STATE(5486)] = 192811, + [SMALL_STATE(5487)] = 192829, + [SMALL_STATE(5488)] = 192847, + [SMALL_STATE(5489)] = 192865, + [SMALL_STATE(5490)] = 192883, + [SMALL_STATE(5491)] = 192901, + [SMALL_STATE(5492)] = 192919, + [SMALL_STATE(5493)] = 192945, + [SMALL_STATE(5494)] = 192965, + [SMALL_STATE(5495)] = 192981, + [SMALL_STATE(5496)] = 192999, + [SMALL_STATE(5497)] = 193021, + [SMALL_STATE(5498)] = 193039, + [SMALL_STATE(5499)] = 193057, + [SMALL_STATE(5500)] = 193075, + [SMALL_STATE(5501)] = 193095, + [SMALL_STATE(5502)] = 193113, + [SMALL_STATE(5503)] = 193137, + [SMALL_STATE(5504)] = 193155, + [SMALL_STATE(5505)] = 193183, + [SMALL_STATE(5506)] = 193201, + [SMALL_STATE(5507)] = 193219, + [SMALL_STATE(5508)] = 193237, + [SMALL_STATE(5509)] = 193253, + [SMALL_STATE(5510)] = 193279, + [SMALL_STATE(5511)] = 193297, + [SMALL_STATE(5512)] = 193323, + [SMALL_STATE(5513)] = 193341, + [SMALL_STATE(5514)] = 193359, + [SMALL_STATE(5515)] = 193383, + [SMALL_STATE(5516)] = 193409, + [SMALL_STATE(5517)] = 193435, + [SMALL_STATE(5518)] = 193453, + [SMALL_STATE(5519)] = 193471, + [SMALL_STATE(5520)] = 193489, + [SMALL_STATE(5521)] = 193507, + [SMALL_STATE(5522)] = 193525, + [SMALL_STATE(5523)] = 193543, + [SMALL_STATE(5524)] = 193561, + [SMALL_STATE(5525)] = 193579, + [SMALL_STATE(5526)] = 193601, + [SMALL_STATE(5527)] = 193619, + [SMALL_STATE(5528)] = 193637, + [SMALL_STATE(5529)] = 193655, + [SMALL_STATE(5530)] = 193673, + [SMALL_STATE(5531)] = 193691, + [SMALL_STATE(5532)] = 193709, + [SMALL_STATE(5533)] = 193727, + [SMALL_STATE(5534)] = 193753, + [SMALL_STATE(5535)] = 193779, + [SMALL_STATE(5536)] = 193807, + [SMALL_STATE(5537)] = 193825, + [SMALL_STATE(5538)] = 193851, + [SMALL_STATE(5539)] = 193877, + [SMALL_STATE(5540)] = 193903, + [SMALL_STATE(5541)] = 193921, + [SMALL_STATE(5542)] = 193941, + [SMALL_STATE(5543)] = 193961, + [SMALL_STATE(5544)] = 193985, + [SMALL_STATE(5545)] = 194011, + [SMALL_STATE(5546)] = 194029, + [SMALL_STATE(5547)] = 194047, + [SMALL_STATE(5548)] = 194073, + [SMALL_STATE(5549)] = 194097, + [SMALL_STATE(5550)] = 194123, + [SMALL_STATE(5551)] = 194141, + [SMALL_STATE(5552)] = 194167, + [SMALL_STATE(5553)] = 194187, + [SMALL_STATE(5554)] = 194211, + [SMALL_STATE(5555)] = 194235, + [SMALL_STATE(5556)] = 194261, + [SMALL_STATE(5557)] = 194283, + [SMALL_STATE(5558)] = 194301, + [SMALL_STATE(5559)] = 194327, + [SMALL_STATE(5560)] = 194345, + [SMALL_STATE(5561)] = 194363, + [SMALL_STATE(5562)] = 194380, + [SMALL_STATE(5563)] = 194397, + [SMALL_STATE(5564)] = 194414, + [SMALL_STATE(5565)] = 194437, + [SMALL_STATE(5566)] = 194454, + [SMALL_STATE(5567)] = 194479, + [SMALL_STATE(5568)] = 194504, + [SMALL_STATE(5569)] = 194529, + [SMALL_STATE(5570)] = 194554, + [SMALL_STATE(5571)] = 194579, + [SMALL_STATE(5572)] = 194596, + [SMALL_STATE(5573)] = 194615, + [SMALL_STATE(5574)] = 194632, + [SMALL_STATE(5575)] = 194657, + [SMALL_STATE(5576)] = 194674, + [SMALL_STATE(5577)] = 194699, + [SMALL_STATE(5578)] = 194716, + [SMALL_STATE(5579)] = 194741, + [SMALL_STATE(5580)] = 194766, + [SMALL_STATE(5581)] = 194783, + [SMALL_STATE(5582)] = 194804, + [SMALL_STATE(5583)] = 194829, + [SMALL_STATE(5584)] = 194854, + [SMALL_STATE(5585)] = 194871, + [SMALL_STATE(5586)] = 194888, + [SMALL_STATE(5587)] = 194905, + [SMALL_STATE(5588)] = 194922, + [SMALL_STATE(5589)] = 194939, + [SMALL_STATE(5590)] = 194964, + [SMALL_STATE(5591)] = 194981, + [SMALL_STATE(5592)] = 194998, + [SMALL_STATE(5593)] = 195015, + [SMALL_STATE(5594)] = 195038, + [SMALL_STATE(5595)] = 195055, + [SMALL_STATE(5596)] = 195080, + [SMALL_STATE(5597)] = 195105, + [SMALL_STATE(5598)] = 195126, + [SMALL_STATE(5599)] = 195151, + [SMALL_STATE(5600)] = 195174, + [SMALL_STATE(5601)] = 195199, + [SMALL_STATE(5602)] = 195220, + [SMALL_STATE(5603)] = 195237, + [SMALL_STATE(5604)] = 195262, + [SMALL_STATE(5605)] = 195283, + [SMALL_STATE(5606)] = 195304, + [SMALL_STATE(5607)] = 195325, + [SMALL_STATE(5608)] = 195342, + [SMALL_STATE(5609)] = 195359, + [SMALL_STATE(5610)] = 195376, + [SMALL_STATE(5611)] = 195401, + [SMALL_STATE(5612)] = 195418, + [SMALL_STATE(5613)] = 195441, + [SMALL_STATE(5614)] = 195456, + [SMALL_STATE(5615)] = 195481, + [SMALL_STATE(5616)] = 195506, + [SMALL_STATE(5617)] = 195531, + [SMALL_STATE(5618)] = 195554, + [SMALL_STATE(5619)] = 195579, + [SMALL_STATE(5620)] = 195596, + [SMALL_STATE(5621)] = 195621, + [SMALL_STATE(5622)] = 195646, + [SMALL_STATE(5623)] = 195667, + [SMALL_STATE(5624)] = 195690, + [SMALL_STATE(5625)] = 195713, + [SMALL_STATE(5626)] = 195738, + [SMALL_STATE(5627)] = 195763, + [SMALL_STATE(5628)] = 195786, + [SMALL_STATE(5629)] = 195811, + [SMALL_STATE(5630)] = 195836, + [SMALL_STATE(5631)] = 195861, + [SMALL_STATE(5632)] = 195878, + [SMALL_STATE(5633)] = 195903, + [SMALL_STATE(5634)] = 195920, + [SMALL_STATE(5635)] = 195937, + [SMALL_STATE(5636)] = 195960, + [SMALL_STATE(5637)] = 195985, + [SMALL_STATE(5638)] = 196010, + [SMALL_STATE(5639)] = 196033, + [SMALL_STATE(5640)] = 196058, + [SMALL_STATE(5641)] = 196075, + [SMALL_STATE(5642)] = 196092, + [SMALL_STATE(5643)] = 196117, + [SMALL_STATE(5644)] = 196134, + [SMALL_STATE(5645)] = 196157, + [SMALL_STATE(5646)] = 196182, + [SMALL_STATE(5647)] = 196207, + [SMALL_STATE(5648)] = 196230, + [SMALL_STATE(5649)] = 196251, + [SMALL_STATE(5650)] = 196276, + [SMALL_STATE(5651)] = 196295, + [SMALL_STATE(5652)] = 196320, + [SMALL_STATE(5653)] = 196337, + [SMALL_STATE(5654)] = 196360, + [SMALL_STATE(5655)] = 196385, + [SMALL_STATE(5656)] = 196410, + [SMALL_STATE(5657)] = 196433, + [SMALL_STATE(5658)] = 196458, + [SMALL_STATE(5659)] = 196475, + [SMALL_STATE(5660)] = 196500, + [SMALL_STATE(5661)] = 196523, + [SMALL_STATE(5662)] = 196548, + [SMALL_STATE(5663)] = 196573, + [SMALL_STATE(5664)] = 196596, + [SMALL_STATE(5665)] = 196621, + [SMALL_STATE(5666)] = 196646, + [SMALL_STATE(5667)] = 196671, + [SMALL_STATE(5668)] = 196688, + [SMALL_STATE(5669)] = 196711, + [SMALL_STATE(5670)] = 196736, + [SMALL_STATE(5671)] = 196761, + [SMALL_STATE(5672)] = 196784, + [SMALL_STATE(5673)] = 196809, + [SMALL_STATE(5674)] = 196830, + [SMALL_STATE(5675)] = 196847, + [SMALL_STATE(5676)] = 196872, + [SMALL_STATE(5677)] = 196893, + [SMALL_STATE(5678)] = 196910, + [SMALL_STATE(5679)] = 196927, + [SMALL_STATE(5680)] = 196950, + [SMALL_STATE(5681)] = 196975, + [SMALL_STATE(5682)] = 197000, + [SMALL_STATE(5683)] = 197023, + [SMALL_STATE(5684)] = 197048, + [SMALL_STATE(5685)] = 197069, + [SMALL_STATE(5686)] = 197094, + [SMALL_STATE(5687)] = 197119, + [SMALL_STATE(5688)] = 197140, + [SMALL_STATE(5689)] = 197163, + [SMALL_STATE(5690)] = 197186, + [SMALL_STATE(5691)] = 197211, + [SMALL_STATE(5692)] = 197236, + [SMALL_STATE(5693)] = 197257, + [SMALL_STATE(5694)] = 197280, + [SMALL_STATE(5695)] = 197303, + [SMALL_STATE(5696)] = 197328, + [SMALL_STATE(5697)] = 197345, + [SMALL_STATE(5698)] = 197370, + [SMALL_STATE(5699)] = 197387, + [SMALL_STATE(5700)] = 197410, + [SMALL_STATE(5701)] = 197433, + [SMALL_STATE(5702)] = 197458, + [SMALL_STATE(5703)] = 197483, + [SMALL_STATE(5704)] = 197504, + [SMALL_STATE(5705)] = 197529, + [SMALL_STATE(5706)] = 197548, + [SMALL_STATE(5707)] = 197573, + [SMALL_STATE(5708)] = 197590, + [SMALL_STATE(5709)] = 197607, + [SMALL_STATE(5710)] = 197632, + [SMALL_STATE(5711)] = 197651, + [SMALL_STATE(5712)] = 197676, + [SMALL_STATE(5713)] = 197701, + [SMALL_STATE(5714)] = 197722, + [SMALL_STATE(5715)] = 197739, + [SMALL_STATE(5716)] = 197760, + [SMALL_STATE(5717)] = 197777, + [SMALL_STATE(5718)] = 197796, + [SMALL_STATE(5719)] = 197815, + [SMALL_STATE(5720)] = 197834, + [SMALL_STATE(5721)] = 197855, + [SMALL_STATE(5722)] = 197880, + [SMALL_STATE(5723)] = 197899, + [SMALL_STATE(5724)] = 197924, + [SMALL_STATE(5725)] = 197949, + [SMALL_STATE(5726)] = 197974, + [SMALL_STATE(5727)] = 197993, + [SMALL_STATE(5728)] = 198010, + [SMALL_STATE(5729)] = 198035, + [SMALL_STATE(5730)] = 198052, + [SMALL_STATE(5731)] = 198077, + [SMALL_STATE(5732)] = 198102, + [SMALL_STATE(5733)] = 198119, + [SMALL_STATE(5734)] = 198136, + [SMALL_STATE(5735)] = 198153, + [SMALL_STATE(5736)] = 198170, + [SMALL_STATE(5737)] = 198189, + [SMALL_STATE(5738)] = 198208, + [SMALL_STATE(5739)] = 198231, + [SMALL_STATE(5740)] = 198248, + [SMALL_STATE(5741)] = 198265, + [SMALL_STATE(5742)] = 198282, + [SMALL_STATE(5743)] = 198303, + [SMALL_STATE(5744)] = 198326, + [SMALL_STATE(5745)] = 198351, + [SMALL_STATE(5746)] = 198376, + [SMALL_STATE(5747)] = 198395, + [SMALL_STATE(5748)] = 198418, + [SMALL_STATE(5749)] = 198437, + [SMALL_STATE(5750)] = 198456, + [SMALL_STATE(5751)] = 198475, + [SMALL_STATE(5752)] = 198494, + [SMALL_STATE(5753)] = 198519, + [SMALL_STATE(5754)] = 198544, + [SMALL_STATE(5755)] = 198565, + [SMALL_STATE(5756)] = 198582, + [SMALL_STATE(5757)] = 198599, + [SMALL_STATE(5758)] = 198618, + [SMALL_STATE(5759)] = 198637, + [SMALL_STATE(5760)] = 198662, + [SMALL_STATE(5761)] = 198683, + [SMALL_STATE(5762)] = 198700, + [SMALL_STATE(5763)] = 198725, + [SMALL_STATE(5764)] = 198742, + [SMALL_STATE(5765)] = 198761, + [SMALL_STATE(5766)] = 198780, + [SMALL_STATE(5767)] = 198805, + [SMALL_STATE(5768)] = 198822, + [SMALL_STATE(5769)] = 198839, + [SMALL_STATE(5770)] = 198864, + [SMALL_STATE(5771)] = 198889, + [SMALL_STATE(5772)] = 198914, + [SMALL_STATE(5773)] = 198937, + [SMALL_STATE(5774)] = 198956, + [SMALL_STATE(5775)] = 198981, + [SMALL_STATE(5776)] = 198998, + [SMALL_STATE(5777)] = 199023, + [SMALL_STATE(5778)] = 199044, + [SMALL_STATE(5779)] = 199061, + [SMALL_STATE(5780)] = 199078, + [SMALL_STATE(5781)] = 199095, + [SMALL_STATE(5782)] = 199112, + [SMALL_STATE(5783)] = 199135, + [SMALL_STATE(5784)] = 199152, + [SMALL_STATE(5785)] = 199177, + [SMALL_STATE(5786)] = 199202, + [SMALL_STATE(5787)] = 199219, + [SMALL_STATE(5788)] = 199236, + [SMALL_STATE(5789)] = 199261, + [SMALL_STATE(5790)] = 199284, + [SMALL_STATE(5791)] = 199309, + [SMALL_STATE(5792)] = 199326, + [SMALL_STATE(5793)] = 199347, + [SMALL_STATE(5794)] = 199368, + [SMALL_STATE(5795)] = 199388, + [SMALL_STATE(5796)] = 199408, + [SMALL_STATE(5797)] = 199428, + [SMALL_STATE(5798)] = 199442, + [SMALL_STATE(5799)] = 199456, + [SMALL_STATE(5800)] = 199478, + [SMALL_STATE(5801)] = 199492, + [SMALL_STATE(5802)] = 199506, + [SMALL_STATE(5803)] = 199522, + [SMALL_STATE(5804)] = 199544, + [SMALL_STATE(5805)] = 199558, + [SMALL_STATE(5806)] = 199578, + [SMALL_STATE(5807)] = 199598, + [SMALL_STATE(5808)] = 199616, + [SMALL_STATE(5809)] = 199630, + [SMALL_STATE(5810)] = 199644, + [SMALL_STATE(5811)] = 199662, + [SMALL_STATE(5812)] = 199680, + [SMALL_STATE(5813)] = 199702, + [SMALL_STATE(5814)] = 199716, + [SMALL_STATE(5815)] = 199730, + [SMALL_STATE(5816)] = 199752, + [SMALL_STATE(5817)] = 199766, + [SMALL_STATE(5818)] = 199780, + [SMALL_STATE(5819)] = 199798, + [SMALL_STATE(5820)] = 199812, + [SMALL_STATE(5821)] = 199834, + [SMALL_STATE(5822)] = 199848, + [SMALL_STATE(5823)] = 199862, + [SMALL_STATE(5824)] = 199884, + [SMALL_STATE(5825)] = 199906, + [SMALL_STATE(5826)] = 199928, + [SMALL_STATE(5827)] = 199946, + [SMALL_STATE(5828)] = 199964, + [SMALL_STATE(5829)] = 199978, + [SMALL_STATE(5830)] = 199992, + [SMALL_STATE(5831)] = 200010, + [SMALL_STATE(5832)] = 200032, + [SMALL_STATE(5833)] = 200048, + [SMALL_STATE(5834)] = 200070, + [SMALL_STATE(5835)] = 200084, + [SMALL_STATE(5836)] = 200102, + [SMALL_STATE(5837)] = 200124, + [SMALL_STATE(5838)] = 200146, + [SMALL_STATE(5839)] = 200160, + [SMALL_STATE(5840)] = 200182, + [SMALL_STATE(5841)] = 200204, + [SMALL_STATE(5842)] = 200224, + [SMALL_STATE(5843)] = 200246, + [SMALL_STATE(5844)] = 200260, + [SMALL_STATE(5845)] = 200282, + [SMALL_STATE(5846)] = 200304, + [SMALL_STATE(5847)] = 200326, + [SMALL_STATE(5848)] = 200340, + [SMALL_STATE(5849)] = 200362, + [SMALL_STATE(5850)] = 200376, + [SMALL_STATE(5851)] = 200394, + [SMALL_STATE(5852)] = 200416, + [SMALL_STATE(5853)] = 200438, + [SMALL_STATE(5854)] = 200460, + [SMALL_STATE(5855)] = 200482, + [SMALL_STATE(5856)] = 200504, + [SMALL_STATE(5857)] = 200522, + [SMALL_STATE(5858)] = 200544, + [SMALL_STATE(5859)] = 200564, + [SMALL_STATE(5860)] = 200578, + [SMALL_STATE(5861)] = 200592, + [SMALL_STATE(5862)] = 200614, + [SMALL_STATE(5863)] = 200628, + [SMALL_STATE(5864)] = 200642, + [SMALL_STATE(5865)] = 200664, + [SMALL_STATE(5866)] = 200680, + [SMALL_STATE(5867)] = 200702, + [SMALL_STATE(5868)] = 200724, + [SMALL_STATE(5869)] = 200746, + [SMALL_STATE(5870)] = 200764, + [SMALL_STATE(5871)] = 200786, + [SMALL_STATE(5872)] = 200808, + [SMALL_STATE(5873)] = 200830, + [SMALL_STATE(5874)] = 200844, + [SMALL_STATE(5875)] = 200862, + [SMALL_STATE(5876)] = 200876, + [SMALL_STATE(5877)] = 200894, + [SMALL_STATE(5878)] = 200908, + [SMALL_STATE(5879)] = 200930, + [SMALL_STATE(5880)] = 200946, + [SMALL_STATE(5881)] = 200968, + [SMALL_STATE(5882)] = 200988, + [SMALL_STATE(5883)] = 201010, + [SMALL_STATE(5884)] = 201024, + [SMALL_STATE(5885)] = 201040, + [SMALL_STATE(5886)] = 201056, + [SMALL_STATE(5887)] = 201078, + [SMALL_STATE(5888)] = 201092, + [SMALL_STATE(5889)] = 201114, + [SMALL_STATE(5890)] = 201136, + [SMALL_STATE(5891)] = 201156, + [SMALL_STATE(5892)] = 201172, + [SMALL_STATE(5893)] = 201194, + [SMALL_STATE(5894)] = 201208, + [SMALL_STATE(5895)] = 201222, + [SMALL_STATE(5896)] = 201244, + [SMALL_STATE(5897)] = 201266, + [SMALL_STATE(5898)] = 201288, + [SMALL_STATE(5899)] = 201302, + [SMALL_STATE(5900)] = 201324, + [SMALL_STATE(5901)] = 201338, + [SMALL_STATE(5902)] = 201356, + [SMALL_STATE(5903)] = 201378, + [SMALL_STATE(5904)] = 201400, + [SMALL_STATE(5905)] = 201414, + [SMALL_STATE(5906)] = 201430, + [SMALL_STATE(5907)] = 201452, + [SMALL_STATE(5908)] = 201474, + [SMALL_STATE(5909)] = 201490, + [SMALL_STATE(5910)] = 201508, + [SMALL_STATE(5911)] = 201526, + [SMALL_STATE(5912)] = 201548, + [SMALL_STATE(5913)] = 201570, + [SMALL_STATE(5914)] = 201588, + [SMALL_STATE(5915)] = 201610, + [SMALL_STATE(5916)] = 201624, + [SMALL_STATE(5917)] = 201646, + [SMALL_STATE(5918)] = 201668, + [SMALL_STATE(5919)] = 201686, + [SMALL_STATE(5920)] = 201702, + [SMALL_STATE(5921)] = 201722, + [SMALL_STATE(5922)] = 201744, + [SMALL_STATE(5923)] = 201766, + [SMALL_STATE(5924)] = 201780, + [SMALL_STATE(5925)] = 201796, + [SMALL_STATE(5926)] = 201816, + [SMALL_STATE(5927)] = 201830, + [SMALL_STATE(5928)] = 201852, + [SMALL_STATE(5929)] = 201866, + [SMALL_STATE(5930)] = 201888, + [SMALL_STATE(5931)] = 201902, + [SMALL_STATE(5932)] = 201922, + [SMALL_STATE(5933)] = 201936, + [SMALL_STATE(5934)] = 201950, + [SMALL_STATE(5935)] = 201964, + [SMALL_STATE(5936)] = 201986, + [SMALL_STATE(5937)] = 202000, + [SMALL_STATE(5938)] = 202018, + [SMALL_STATE(5939)] = 202040, + [SMALL_STATE(5940)] = 202058, + [SMALL_STATE(5941)] = 202074, + [SMALL_STATE(5942)] = 202088, + [SMALL_STATE(5943)] = 202110, + [SMALL_STATE(5944)] = 202128, + [SMALL_STATE(5945)] = 202146, + [SMALL_STATE(5946)] = 202168, + [SMALL_STATE(5947)] = 202182, + [SMALL_STATE(5948)] = 202204, + [SMALL_STATE(5949)] = 202218, + [SMALL_STATE(5950)] = 202240, + [SMALL_STATE(5951)] = 202256, + [SMALL_STATE(5952)] = 202272, + [SMALL_STATE(5953)] = 202294, + [SMALL_STATE(5954)] = 202316, + [SMALL_STATE(5955)] = 202338, + [SMALL_STATE(5956)] = 202360, + [SMALL_STATE(5957)] = 202382, + [SMALL_STATE(5958)] = 202396, + [SMALL_STATE(5959)] = 202418, + [SMALL_STATE(5960)] = 202432, + [SMALL_STATE(5961)] = 202452, + [SMALL_STATE(5962)] = 202474, + [SMALL_STATE(5963)] = 202496, + [SMALL_STATE(5964)] = 202518, + [SMALL_STATE(5965)] = 202540, + [SMALL_STATE(5966)] = 202562, + [SMALL_STATE(5967)] = 202580, + [SMALL_STATE(5968)] = 202602, + [SMALL_STATE(5969)] = 202624, + [SMALL_STATE(5970)] = 202646, + [SMALL_STATE(5971)] = 202668, + [SMALL_STATE(5972)] = 202690, + [SMALL_STATE(5973)] = 202704, + [SMALL_STATE(5974)] = 202726, + [SMALL_STATE(5975)] = 202748, + [SMALL_STATE(5976)] = 202770, + [SMALL_STATE(5977)] = 202792, + [SMALL_STATE(5978)] = 202806, + [SMALL_STATE(5979)] = 202828, + [SMALL_STATE(5980)] = 202850, + [SMALL_STATE(5981)] = 202864, + [SMALL_STATE(5982)] = 202886, + [SMALL_STATE(5983)] = 202908, + [SMALL_STATE(5984)] = 202930, + [SMALL_STATE(5985)] = 202952, + [SMALL_STATE(5986)] = 202974, + [SMALL_STATE(5987)] = 202996, + [SMALL_STATE(5988)] = 203018, + [SMALL_STATE(5989)] = 203040, + [SMALL_STATE(5990)] = 203062, + [SMALL_STATE(5991)] = 203082, + [SMALL_STATE(5992)] = 203096, + [SMALL_STATE(5993)] = 203116, + [SMALL_STATE(5994)] = 203138, + [SMALL_STATE(5995)] = 203160, + [SMALL_STATE(5996)] = 203182, + [SMALL_STATE(5997)] = 203204, + [SMALL_STATE(5998)] = 203226, + [SMALL_STATE(5999)] = 203248, + [SMALL_STATE(6000)] = 203266, + [SMALL_STATE(6001)] = 203288, + [SMALL_STATE(6002)] = 203310, + [SMALL_STATE(6003)] = 203332, + [SMALL_STATE(6004)] = 203354, + [SMALL_STATE(6005)] = 203376, + [SMALL_STATE(6006)] = 203398, + [SMALL_STATE(6007)] = 203414, + [SMALL_STATE(6008)] = 203436, + [SMALL_STATE(6009)] = 203458, + [SMALL_STATE(6010)] = 203480, + [SMALL_STATE(6011)] = 203496, + [SMALL_STATE(6012)] = 203512, + [SMALL_STATE(6013)] = 203534, + [SMALL_STATE(6014)] = 203556, + [SMALL_STATE(6015)] = 203578, + [SMALL_STATE(6016)] = 203600, + [SMALL_STATE(6017)] = 203622, + [SMALL_STATE(6018)] = 203644, + [SMALL_STATE(6019)] = 203666, + [SMALL_STATE(6020)] = 203688, + [SMALL_STATE(6021)] = 203710, + [SMALL_STATE(6022)] = 203726, + [SMALL_STATE(6023)] = 203748, + [SMALL_STATE(6024)] = 203770, + [SMALL_STATE(6025)] = 203792, + [SMALL_STATE(6026)] = 203814, + [SMALL_STATE(6027)] = 203836, + [SMALL_STATE(6028)] = 203858, + [SMALL_STATE(6029)] = 203880, + [SMALL_STATE(6030)] = 203902, + [SMALL_STATE(6031)] = 203924, + [SMALL_STATE(6032)] = 203946, + [SMALL_STATE(6033)] = 203966, + [SMALL_STATE(6034)] = 203988, + [SMALL_STATE(6035)] = 204010, + [SMALL_STATE(6036)] = 204024, + [SMALL_STATE(6037)] = 204046, + [SMALL_STATE(6038)] = 204068, + [SMALL_STATE(6039)] = 204090, + [SMALL_STATE(6040)] = 204112, + [SMALL_STATE(6041)] = 204134, + [SMALL_STATE(6042)] = 204156, + [SMALL_STATE(6043)] = 204178, + [SMALL_STATE(6044)] = 204198, + [SMALL_STATE(6045)] = 204216, + [SMALL_STATE(6046)] = 204234, + [SMALL_STATE(6047)] = 204256, + [SMALL_STATE(6048)] = 204278, + [SMALL_STATE(6049)] = 204292, + [SMALL_STATE(6050)] = 204314, + [SMALL_STATE(6051)] = 204328, + [SMALL_STATE(6052)] = 204350, + [SMALL_STATE(6053)] = 204364, + [SMALL_STATE(6054)] = 204386, + [SMALL_STATE(6055)] = 204408, + [SMALL_STATE(6056)] = 204430, + [SMALL_STATE(6057)] = 204452, + [SMALL_STATE(6058)] = 204474, + [SMALL_STATE(6059)] = 204492, + [SMALL_STATE(6060)] = 204514, + [SMALL_STATE(6061)] = 204528, + [SMALL_STATE(6062)] = 204550, + [SMALL_STATE(6063)] = 204569, + [SMALL_STATE(6064)] = 204584, + [SMALL_STATE(6065)] = 204599, + [SMALL_STATE(6066)] = 204614, + [SMALL_STATE(6067)] = 204629, + [SMALL_STATE(6068)] = 204644, + [SMALL_STATE(6069)] = 204659, + [SMALL_STATE(6070)] = 204674, + [SMALL_STATE(6071)] = 204689, + [SMALL_STATE(6072)] = 204704, + [SMALL_STATE(6073)] = 204719, + [SMALL_STATE(6074)] = 204734, + [SMALL_STATE(6075)] = 204749, + [SMALL_STATE(6076)] = 204764, + [SMALL_STATE(6077)] = 204777, + [SMALL_STATE(6078)] = 204792, + [SMALL_STATE(6079)] = 204807, + [SMALL_STATE(6080)] = 204822, + [SMALL_STATE(6081)] = 204835, + [SMALL_STATE(6082)] = 204852, + [SMALL_STATE(6083)] = 204869, + [SMALL_STATE(6084)] = 204886, + [SMALL_STATE(6085)] = 204903, + [SMALL_STATE(6086)] = 204920, + [SMALL_STATE(6087)] = 204935, + [SMALL_STATE(6088)] = 204954, + [SMALL_STATE(6089)] = 204973, + [SMALL_STATE(6090)] = 204990, + [SMALL_STATE(6091)] = 205005, + [SMALL_STATE(6092)] = 205022, + [SMALL_STATE(6093)] = 205041, + [SMALL_STATE(6094)] = 205058, + [SMALL_STATE(6095)] = 205071, + [SMALL_STATE(6096)] = 205090, + [SMALL_STATE(6097)] = 205109, + [SMALL_STATE(6098)] = 205122, + [SMALL_STATE(6099)] = 205141, + [SMALL_STATE(6100)] = 205160, + [SMALL_STATE(6101)] = 205179, + [SMALL_STATE(6102)] = 205194, + [SMALL_STATE(6103)] = 205213, + [SMALL_STATE(6104)] = 205230, + [SMALL_STATE(6105)] = 205245, + [SMALL_STATE(6106)] = 205264, + [SMALL_STATE(6107)] = 205281, + [SMALL_STATE(6108)] = 205300, + [SMALL_STATE(6109)] = 205313, + [SMALL_STATE(6110)] = 205326, + [SMALL_STATE(6111)] = 205341, + [SMALL_STATE(6112)] = 205360, + [SMALL_STATE(6113)] = 205379, + [SMALL_STATE(6114)] = 205398, + [SMALL_STATE(6115)] = 205417, + [SMALL_STATE(6116)] = 205436, + [SMALL_STATE(6117)] = 205449, + [SMALL_STATE(6118)] = 205462, + [SMALL_STATE(6119)] = 205481, + [SMALL_STATE(6120)] = 205496, + [SMALL_STATE(6121)] = 205509, + [SMALL_STATE(6122)] = 205524, + [SMALL_STATE(6123)] = 205537, + [SMALL_STATE(6124)] = 205550, + [SMALL_STATE(6125)] = 205563, + [SMALL_STATE(6126)] = 205576, + [SMALL_STATE(6127)] = 205589, + [SMALL_STATE(6128)] = 205608, + [SMALL_STATE(6129)] = 205621, + [SMALL_STATE(6130)] = 205640, + [SMALL_STATE(6131)] = 205659, + [SMALL_STATE(6132)] = 205678, + [SMALL_STATE(6133)] = 205697, + [SMALL_STATE(6134)] = 205716, + [SMALL_STATE(6135)] = 205735, + [SMALL_STATE(6136)] = 205754, + [SMALL_STATE(6137)] = 205773, + [SMALL_STATE(6138)] = 205786, + [SMALL_STATE(6139)] = 205805, + [SMALL_STATE(6140)] = 205818, + [SMALL_STATE(6141)] = 205831, + [SMALL_STATE(6142)] = 205846, + [SMALL_STATE(6143)] = 205865, + [SMALL_STATE(6144)] = 205884, + [SMALL_STATE(6145)] = 205901, + [SMALL_STATE(6146)] = 205920, + [SMALL_STATE(6147)] = 205939, + [SMALL_STATE(6148)] = 205958, + [SMALL_STATE(6149)] = 205971, + [SMALL_STATE(6150)] = 205984, + [SMALL_STATE(6151)] = 206003, + [SMALL_STATE(6152)] = 206016, + [SMALL_STATE(6153)] = 206035, + [SMALL_STATE(6154)] = 206050, + [SMALL_STATE(6155)] = 206063, + [SMALL_STATE(6156)] = 206076, + [SMALL_STATE(6157)] = 206093, + [SMALL_STATE(6158)] = 206106, + [SMALL_STATE(6159)] = 206119, + [SMALL_STATE(6160)] = 206136, + [SMALL_STATE(6161)] = 206155, + [SMALL_STATE(6162)] = 206168, + [SMALL_STATE(6163)] = 206185, + [SMALL_STATE(6164)] = 206198, + [SMALL_STATE(6165)] = 206217, + [SMALL_STATE(6166)] = 206236, + [SMALL_STATE(6167)] = 206251, + [SMALL_STATE(6168)] = 206264, + [SMALL_STATE(6169)] = 206281, + [SMALL_STATE(6170)] = 206294, + [SMALL_STATE(6171)] = 206307, + [SMALL_STATE(6172)] = 206326, + [SMALL_STATE(6173)] = 206345, + [SMALL_STATE(6174)] = 206364, + [SMALL_STATE(6175)] = 206377, + [SMALL_STATE(6176)] = 206396, + [SMALL_STATE(6177)] = 206413, + [SMALL_STATE(6178)] = 206426, + [SMALL_STATE(6179)] = 206445, + [SMALL_STATE(6180)] = 206464, + [SMALL_STATE(6181)] = 206479, + [SMALL_STATE(6182)] = 206492, + [SMALL_STATE(6183)] = 206509, + [SMALL_STATE(6184)] = 206522, + [SMALL_STATE(6185)] = 206539, + [SMALL_STATE(6186)] = 206556, + [SMALL_STATE(6187)] = 206575, + [SMALL_STATE(6188)] = 206594, + [SMALL_STATE(6189)] = 206613, + [SMALL_STATE(6190)] = 206632, + [SMALL_STATE(6191)] = 206651, + [SMALL_STATE(6192)] = 206670, + [SMALL_STATE(6193)] = 206689, + [SMALL_STATE(6194)] = 206708, + [SMALL_STATE(6195)] = 206727, + [SMALL_STATE(6196)] = 206742, + [SMALL_STATE(6197)] = 206757, + [SMALL_STATE(6198)] = 206770, + [SMALL_STATE(6199)] = 206789, + [SMALL_STATE(6200)] = 206806, + [SMALL_STATE(6201)] = 206819, + [SMALL_STATE(6202)] = 206836, + [SMALL_STATE(6203)] = 206849, + [SMALL_STATE(6204)] = 206862, + [SMALL_STATE(6205)] = 206875, + [SMALL_STATE(6206)] = 206888, + [SMALL_STATE(6207)] = 206901, + [SMALL_STATE(6208)] = 206914, + [SMALL_STATE(6209)] = 206931, + [SMALL_STATE(6210)] = 206948, + [SMALL_STATE(6211)] = 206967, + [SMALL_STATE(6212)] = 206984, + [SMALL_STATE(6213)] = 206997, + [SMALL_STATE(6214)] = 207010, + [SMALL_STATE(6215)] = 207029, + [SMALL_STATE(6216)] = 207048, + [SMALL_STATE(6217)] = 207067, + [SMALL_STATE(6218)] = 207086, + [SMALL_STATE(6219)] = 207105, + [SMALL_STATE(6220)] = 207124, + [SMALL_STATE(6221)] = 207143, + [SMALL_STATE(6222)] = 207162, + [SMALL_STATE(6223)] = 207181, + [SMALL_STATE(6224)] = 207194, + [SMALL_STATE(6225)] = 207211, + [SMALL_STATE(6226)] = 207226, + [SMALL_STATE(6227)] = 207243, + [SMALL_STATE(6228)] = 207262, + [SMALL_STATE(6229)] = 207277, + [SMALL_STATE(6230)] = 207296, + [SMALL_STATE(6231)] = 207309, + [SMALL_STATE(6232)] = 207328, + [SMALL_STATE(6233)] = 207347, + [SMALL_STATE(6234)] = 207366, + [SMALL_STATE(6235)] = 207385, + [SMALL_STATE(6236)] = 207404, + [SMALL_STATE(6237)] = 207423, + [SMALL_STATE(6238)] = 207442, + [SMALL_STATE(6239)] = 207461, + [SMALL_STATE(6240)] = 207474, + [SMALL_STATE(6241)] = 207487, + [SMALL_STATE(6242)] = 207504, + [SMALL_STATE(6243)] = 207523, + [SMALL_STATE(6244)] = 207542, + [SMALL_STATE(6245)] = 207557, + [SMALL_STATE(6246)] = 207574, + [SMALL_STATE(6247)] = 207591, + [SMALL_STATE(6248)] = 207608, + [SMALL_STATE(6249)] = 207621, + [SMALL_STATE(6250)] = 207636, + [SMALL_STATE(6251)] = 207649, + [SMALL_STATE(6252)] = 207664, + [SMALL_STATE(6253)] = 207683, + [SMALL_STATE(6254)] = 207696, + [SMALL_STATE(6255)] = 207715, + [SMALL_STATE(6256)] = 207734, + [SMALL_STATE(6257)] = 207753, + [SMALL_STATE(6258)] = 207772, + [SMALL_STATE(6259)] = 207791, + [SMALL_STATE(6260)] = 207810, + [SMALL_STATE(6261)] = 207829, + [SMALL_STATE(6262)] = 207848, + [SMALL_STATE(6263)] = 207867, + [SMALL_STATE(6264)] = 207882, + [SMALL_STATE(6265)] = 207895, + [SMALL_STATE(6266)] = 207908, + [SMALL_STATE(6267)] = 207925, + [SMALL_STATE(6268)] = 207938, + [SMALL_STATE(6269)] = 207951, + [SMALL_STATE(6270)] = 207968, + [SMALL_STATE(6271)] = 207981, + [SMALL_STATE(6272)] = 208000, + [SMALL_STATE(6273)] = 208019, + [SMALL_STATE(6274)] = 208038, + [SMALL_STATE(6275)] = 208057, + [SMALL_STATE(6276)] = 208076, + [SMALL_STATE(6277)] = 208095, + [SMALL_STATE(6278)] = 208114, + [SMALL_STATE(6279)] = 208133, + [SMALL_STATE(6280)] = 208146, + [SMALL_STATE(6281)] = 208163, + [SMALL_STATE(6282)] = 208180, + [SMALL_STATE(6283)] = 208193, + [SMALL_STATE(6284)] = 208212, + [SMALL_STATE(6285)] = 208231, + [SMALL_STATE(6286)] = 208250, + [SMALL_STATE(6287)] = 208269, + [SMALL_STATE(6288)] = 208288, + [SMALL_STATE(6289)] = 208307, + [SMALL_STATE(6290)] = 208326, + [SMALL_STATE(6291)] = 208345, + [SMALL_STATE(6292)] = 208358, + [SMALL_STATE(6293)] = 208375, + [SMALL_STATE(6294)] = 208392, + [SMALL_STATE(6295)] = 208411, + [SMALL_STATE(6296)] = 208424, + [SMALL_STATE(6297)] = 208437, + [SMALL_STATE(6298)] = 208450, + [SMALL_STATE(6299)] = 208469, + [SMALL_STATE(6300)] = 208488, + [SMALL_STATE(6301)] = 208507, + [SMALL_STATE(6302)] = 208526, + [SMALL_STATE(6303)] = 208545, + [SMALL_STATE(6304)] = 208564, + [SMALL_STATE(6305)] = 208583, + [SMALL_STATE(6306)] = 208602, + [SMALL_STATE(6307)] = 208621, + [SMALL_STATE(6308)] = 208636, + [SMALL_STATE(6309)] = 208649, + [SMALL_STATE(6310)] = 208666, + [SMALL_STATE(6311)] = 208685, + [SMALL_STATE(6312)] = 208702, + [SMALL_STATE(6313)] = 208717, + [SMALL_STATE(6314)] = 208736, + [SMALL_STATE(6315)] = 208755, + [SMALL_STATE(6316)] = 208768, + [SMALL_STATE(6317)] = 208787, + [SMALL_STATE(6318)] = 208806, + [SMALL_STATE(6319)] = 208825, + [SMALL_STATE(6320)] = 208844, + [SMALL_STATE(6321)] = 208863, + [SMALL_STATE(6322)] = 208882, + [SMALL_STATE(6323)] = 208901, + [SMALL_STATE(6324)] = 208920, + [SMALL_STATE(6325)] = 208939, + [SMALL_STATE(6326)] = 208954, + [SMALL_STATE(6327)] = 208967, + [SMALL_STATE(6328)] = 208984, + [SMALL_STATE(6329)] = 209001, + [SMALL_STATE(6330)] = 209018, + [SMALL_STATE(6331)] = 209031, + [SMALL_STATE(6332)] = 209050, + [SMALL_STATE(6333)] = 209069, + [SMALL_STATE(6334)] = 209088, + [SMALL_STATE(6335)] = 209107, + [SMALL_STATE(6336)] = 209126, + [SMALL_STATE(6337)] = 209145, + [SMALL_STATE(6338)] = 209164, + [SMALL_STATE(6339)] = 209183, + [SMALL_STATE(6340)] = 209196, + [SMALL_STATE(6341)] = 209215, + [SMALL_STATE(6342)] = 209228, + [SMALL_STATE(6343)] = 209245, + [SMALL_STATE(6344)] = 209258, + [SMALL_STATE(6345)] = 209271, + [SMALL_STATE(6346)] = 209288, + [SMALL_STATE(6347)] = 209301, + [SMALL_STATE(6348)] = 209320, + [SMALL_STATE(6349)] = 209333, + [SMALL_STATE(6350)] = 209346, + [SMALL_STATE(6351)] = 209365, + [SMALL_STATE(6352)] = 209384, + [SMALL_STATE(6353)] = 209403, + [SMALL_STATE(6354)] = 209422, + [SMALL_STATE(6355)] = 209441, + [SMALL_STATE(6356)] = 209460, + [SMALL_STATE(6357)] = 209479, + [SMALL_STATE(6358)] = 209498, + [SMALL_STATE(6359)] = 209517, + [SMALL_STATE(6360)] = 209530, + [SMALL_STATE(6361)] = 209547, + [SMALL_STATE(6362)] = 209564, + [SMALL_STATE(6363)] = 209583, + [SMALL_STATE(6364)] = 209602, + [SMALL_STATE(6365)] = 209621, + [SMALL_STATE(6366)] = 209640, + [SMALL_STATE(6367)] = 209659, + [SMALL_STATE(6368)] = 209678, + [SMALL_STATE(6369)] = 209697, + [SMALL_STATE(6370)] = 209716, + [SMALL_STATE(6371)] = 209731, + [SMALL_STATE(6372)] = 209748, + [SMALL_STATE(6373)] = 209765, + [SMALL_STATE(6374)] = 209784, + [SMALL_STATE(6375)] = 209803, + [SMALL_STATE(6376)] = 209822, + [SMALL_STATE(6377)] = 209841, + [SMALL_STATE(6378)] = 209860, + [SMALL_STATE(6379)] = 209879, + [SMALL_STATE(6380)] = 209898, + [SMALL_STATE(6381)] = 209917, + [SMALL_STATE(6382)] = 209936, + [SMALL_STATE(6383)] = 209955, + [SMALL_STATE(6384)] = 209970, + [SMALL_STATE(6385)] = 209983, + [SMALL_STATE(6386)] = 210000, + [SMALL_STATE(6387)] = 210017, + [SMALL_STATE(6388)] = 210036, + [SMALL_STATE(6389)] = 210055, + [SMALL_STATE(6390)] = 210074, + [SMALL_STATE(6391)] = 210093, + [SMALL_STATE(6392)] = 210112, + [SMALL_STATE(6393)] = 210131, + [SMALL_STATE(6394)] = 210150, + [SMALL_STATE(6395)] = 210169, + [SMALL_STATE(6396)] = 210188, + [SMALL_STATE(6397)] = 210207, + [SMALL_STATE(6398)] = 210226, + [SMALL_STATE(6399)] = 210239, + [SMALL_STATE(6400)] = 210256, + [SMALL_STATE(6401)] = 210275, + [SMALL_STATE(6402)] = 210292, + [SMALL_STATE(6403)] = 210311, + [SMALL_STATE(6404)] = 210330, + [SMALL_STATE(6405)] = 210349, + [SMALL_STATE(6406)] = 210368, + [SMALL_STATE(6407)] = 210387, + [SMALL_STATE(6408)] = 210406, + [SMALL_STATE(6409)] = 210425, + [SMALL_STATE(6410)] = 210444, + [SMALL_STATE(6411)] = 210457, + [SMALL_STATE(6412)] = 210474, + [SMALL_STATE(6413)] = 210491, + [SMALL_STATE(6414)] = 210510, + [SMALL_STATE(6415)] = 210523, + [SMALL_STATE(6416)] = 210536, + [SMALL_STATE(6417)] = 210553, + [SMALL_STATE(6418)] = 210570, + [SMALL_STATE(6419)] = 210583, + [SMALL_STATE(6420)] = 210600, + [SMALL_STATE(6421)] = 210617, + [SMALL_STATE(6422)] = 210630, + [SMALL_STATE(6423)] = 210647, + [SMALL_STATE(6424)] = 210664, + [SMALL_STATE(6425)] = 210683, + [SMALL_STATE(6426)] = 210696, + [SMALL_STATE(6427)] = 210713, + [SMALL_STATE(6428)] = 210730, + [SMALL_STATE(6429)] = 210743, + [SMALL_STATE(6430)] = 210760, + [SMALL_STATE(6431)] = 210777, + [SMALL_STATE(6432)] = 210790, + [SMALL_STATE(6433)] = 210807, + [SMALL_STATE(6434)] = 210824, + [SMALL_STATE(6435)] = 210837, + [SMALL_STATE(6436)] = 210854, + [SMALL_STATE(6437)] = 210871, + [SMALL_STATE(6438)] = 210888, + [SMALL_STATE(6439)] = 210901, + [SMALL_STATE(6440)] = 210918, + [SMALL_STATE(6441)] = 210935, + [SMALL_STATE(6442)] = 210954, + [SMALL_STATE(6443)] = 210967, + [SMALL_STATE(6444)] = 210984, + [SMALL_STATE(6445)] = 211001, + [SMALL_STATE(6446)] = 211014, + [SMALL_STATE(6447)] = 211031, + [SMALL_STATE(6448)] = 211048, + [SMALL_STATE(6449)] = 211061, + [SMALL_STATE(6450)] = 211078, + [SMALL_STATE(6451)] = 211095, + [SMALL_STATE(6452)] = 211108, + [SMALL_STATE(6453)] = 211125, + [SMALL_STATE(6454)] = 211142, + [SMALL_STATE(6455)] = 211155, + [SMALL_STATE(6456)] = 211172, + [SMALL_STATE(6457)] = 211189, + [SMALL_STATE(6458)] = 211202, + [SMALL_STATE(6459)] = 211219, + [SMALL_STATE(6460)] = 211236, + [SMALL_STATE(6461)] = 211249, + [SMALL_STATE(6462)] = 211266, + [SMALL_STATE(6463)] = 211283, + [SMALL_STATE(6464)] = 211300, + [SMALL_STATE(6465)] = 211317, + [SMALL_STATE(6466)] = 211334, + [SMALL_STATE(6467)] = 211351, + [SMALL_STATE(6468)] = 211368, + [SMALL_STATE(6469)] = 211385, + [SMALL_STATE(6470)] = 211402, + [SMALL_STATE(6471)] = 211419, + [SMALL_STATE(6472)] = 211436, + [SMALL_STATE(6473)] = 211453, + [SMALL_STATE(6474)] = 211472, + [SMALL_STATE(6475)] = 211485, + [SMALL_STATE(6476)] = 211502, + [SMALL_STATE(6477)] = 211517, + [SMALL_STATE(6478)] = 211536, + [SMALL_STATE(6479)] = 211555, + [SMALL_STATE(6480)] = 211568, + [SMALL_STATE(6481)] = 211581, + [SMALL_STATE(6482)] = 211598, + [SMALL_STATE(6483)] = 211617, + [SMALL_STATE(6484)] = 211630, + [SMALL_STATE(6485)] = 211643, + [SMALL_STATE(6486)] = 211656, + [SMALL_STATE(6487)] = 211669, + [SMALL_STATE(6488)] = 211682, + [SMALL_STATE(6489)] = 211701, + [SMALL_STATE(6490)] = 211720, + [SMALL_STATE(6491)] = 211733, + [SMALL_STATE(6492)] = 211748, + [SMALL_STATE(6493)] = 211767, + [SMALL_STATE(6494)] = 211782, + [SMALL_STATE(6495)] = 211797, + [SMALL_STATE(6496)] = 211816, + [SMALL_STATE(6497)] = 211835, + [SMALL_STATE(6498)] = 211850, + [SMALL_STATE(6499)] = 211863, + [SMALL_STATE(6500)] = 211876, + [SMALL_STATE(6501)] = 211895, + [SMALL_STATE(6502)] = 211914, + [SMALL_STATE(6503)] = 211933, + [SMALL_STATE(6504)] = 211952, + [SMALL_STATE(6505)] = 211971, + [SMALL_STATE(6506)] = 211984, + [SMALL_STATE(6507)] = 212003, + [SMALL_STATE(6508)] = 212022, + [SMALL_STATE(6509)] = 212041, + [SMALL_STATE(6510)] = 212060, + [SMALL_STATE(6511)] = 212079, + [SMALL_STATE(6512)] = 212098, + [SMALL_STATE(6513)] = 212117, + [SMALL_STATE(6514)] = 212136, + [SMALL_STATE(6515)] = 212155, + [SMALL_STATE(6516)] = 212174, + [SMALL_STATE(6517)] = 212193, + [SMALL_STATE(6518)] = 212212, + [SMALL_STATE(6519)] = 212231, + [SMALL_STATE(6520)] = 212250, + [SMALL_STATE(6521)] = 212267, + [SMALL_STATE(6522)] = 212284, + [SMALL_STATE(6523)] = 212297, + [SMALL_STATE(6524)] = 212312, + [SMALL_STATE(6525)] = 212331, + [SMALL_STATE(6526)] = 212350, + [SMALL_STATE(6527)] = 212369, + [SMALL_STATE(6528)] = 212386, + [SMALL_STATE(6529)] = 212399, + [SMALL_STATE(6530)] = 212412, + [SMALL_STATE(6531)] = 212431, + [SMALL_STATE(6532)] = 212446, + [SMALL_STATE(6533)] = 212461, + [SMALL_STATE(6534)] = 212478, + [SMALL_STATE(6535)] = 212493, + [SMALL_STATE(6536)] = 212508, + [SMALL_STATE(6537)] = 212521, + [SMALL_STATE(6538)] = 212536, + [SMALL_STATE(6539)] = 212551, + [SMALL_STATE(6540)] = 212566, + [SMALL_STATE(6541)] = 212579, + [SMALL_STATE(6542)] = 212592, + [SMALL_STATE(6543)] = 212611, + [SMALL_STATE(6544)] = 212624, + [SMALL_STATE(6545)] = 212637, + [SMALL_STATE(6546)] = 212650, + [SMALL_STATE(6547)] = 212663, + [SMALL_STATE(6548)] = 212676, + [SMALL_STATE(6549)] = 212689, + [SMALL_STATE(6550)] = 212706, + [SMALL_STATE(6551)] = 212721, + [SMALL_STATE(6552)] = 212738, + [SMALL_STATE(6553)] = 212757, + [SMALL_STATE(6554)] = 212774, + [SMALL_STATE(6555)] = 212787, + [SMALL_STATE(6556)] = 212802, + [SMALL_STATE(6557)] = 212817, + [SMALL_STATE(6558)] = 212832, + [SMALL_STATE(6559)] = 212847, + [SMALL_STATE(6560)] = 212862, + [SMALL_STATE(6561)] = 212877, + [SMALL_STATE(6562)] = 212894, + [SMALL_STATE(6563)] = 212913, + [SMALL_STATE(6564)] = 212926, + [SMALL_STATE(6565)] = 212943, + [SMALL_STATE(6566)] = 212958, + [SMALL_STATE(6567)] = 212971, + [SMALL_STATE(6568)] = 212986, + [SMALL_STATE(6569)] = 213005, + [SMALL_STATE(6570)] = 213018, + [SMALL_STATE(6571)] = 213033, + [SMALL_STATE(6572)] = 213046, + [SMALL_STATE(6573)] = 213061, + [SMALL_STATE(6574)] = 213076, + [SMALL_STATE(6575)] = 213091, + [SMALL_STATE(6576)] = 213106, + [SMALL_STATE(6577)] = 213121, + [SMALL_STATE(6578)] = 213136, + [SMALL_STATE(6579)] = 213151, + [SMALL_STATE(6580)] = 213166, + [SMALL_STATE(6581)] = 213181, + [SMALL_STATE(6582)] = 213196, + [SMALL_STATE(6583)] = 213211, + [SMALL_STATE(6584)] = 213226, + [SMALL_STATE(6585)] = 213245, + [SMALL_STATE(6586)] = 213264, + [SMALL_STATE(6587)] = 213283, + [SMALL_STATE(6588)] = 213302, + [SMALL_STATE(6589)] = 213321, + [SMALL_STATE(6590)] = 213336, + [SMALL_STATE(6591)] = 213355, + [SMALL_STATE(6592)] = 213370, + [SMALL_STATE(6593)] = 213385, + [SMALL_STATE(6594)] = 213400, + [SMALL_STATE(6595)] = 213419, + [SMALL_STATE(6596)] = 213438, + [SMALL_STATE(6597)] = 213457, + [SMALL_STATE(6598)] = 213476, + [SMALL_STATE(6599)] = 213491, + [SMALL_STATE(6600)] = 213510, + [SMALL_STATE(6601)] = 213529, + [SMALL_STATE(6602)] = 213544, + [SMALL_STATE(6603)] = 213559, + [SMALL_STATE(6604)] = 213572, + [SMALL_STATE(6605)] = 213587, + [SMALL_STATE(6606)] = 213600, + [SMALL_STATE(6607)] = 213615, + [SMALL_STATE(6608)] = 213630, + [SMALL_STATE(6609)] = 213649, + [SMALL_STATE(6610)] = 213666, + [SMALL_STATE(6611)] = 213683, + [SMALL_STATE(6612)] = 213700, + [SMALL_STATE(6613)] = 213713, + [SMALL_STATE(6614)] = 213729, + [SMALL_STATE(6615)] = 213743, + [SMALL_STATE(6616)] = 213759, + [SMALL_STATE(6617)] = 213771, + [SMALL_STATE(6618)] = 213787, + [SMALL_STATE(6619)] = 213803, + [SMALL_STATE(6620)] = 213819, + [SMALL_STATE(6621)] = 213835, + [SMALL_STATE(6622)] = 213851, + [SMALL_STATE(6623)] = 213867, + [SMALL_STATE(6624)] = 213883, + [SMALL_STATE(6625)] = 213899, + [SMALL_STATE(6626)] = 213913, + [SMALL_STATE(6627)] = 213925, + [SMALL_STATE(6628)] = 213941, + [SMALL_STATE(6629)] = 213955, + [SMALL_STATE(6630)] = 213971, + [SMALL_STATE(6631)] = 213983, + [SMALL_STATE(6632)] = 213999, + [SMALL_STATE(6633)] = 214011, + [SMALL_STATE(6634)] = 214027, + [SMALL_STATE(6635)] = 214043, + [SMALL_STATE(6636)] = 214055, + [SMALL_STATE(6637)] = 214067, + [SMALL_STATE(6638)] = 214083, + [SMALL_STATE(6639)] = 214097, + [SMALL_STATE(6640)] = 214111, + [SMALL_STATE(6641)] = 214125, + [SMALL_STATE(6642)] = 214141, + [SMALL_STATE(6643)] = 214155, + [SMALL_STATE(6644)] = 214171, + [SMALL_STATE(6645)] = 214187, + [SMALL_STATE(6646)] = 214203, + [SMALL_STATE(6647)] = 214219, + [SMALL_STATE(6648)] = 214235, + [SMALL_STATE(6649)] = 214251, + [SMALL_STATE(6650)] = 214267, + [SMALL_STATE(6651)] = 214283, + [SMALL_STATE(6652)] = 214299, + [SMALL_STATE(6653)] = 214315, + [SMALL_STATE(6654)] = 214331, + [SMALL_STATE(6655)] = 214347, + [SMALL_STATE(6656)] = 214363, + [SMALL_STATE(6657)] = 214379, + [SMALL_STATE(6658)] = 214395, + [SMALL_STATE(6659)] = 214411, + [SMALL_STATE(6660)] = 214423, + [SMALL_STATE(6661)] = 214435, + [SMALL_STATE(6662)] = 214451, + [SMALL_STATE(6663)] = 214467, + [SMALL_STATE(6664)] = 214479, + [SMALL_STATE(6665)] = 214491, + [SMALL_STATE(6666)] = 214507, + [SMALL_STATE(6667)] = 214523, + [SMALL_STATE(6668)] = 214537, + [SMALL_STATE(6669)] = 214553, + [SMALL_STATE(6670)] = 214569, + [SMALL_STATE(6671)] = 214581, + [SMALL_STATE(6672)] = 214593, + [SMALL_STATE(6673)] = 214607, + [SMALL_STATE(6674)] = 214623, + [SMALL_STATE(6675)] = 214635, + [SMALL_STATE(6676)] = 214647, + [SMALL_STATE(6677)] = 214663, + [SMALL_STATE(6678)] = 214679, + [SMALL_STATE(6679)] = 214695, + [SMALL_STATE(6680)] = 214711, + [SMALL_STATE(6681)] = 214727, + [SMALL_STATE(6682)] = 214739, + [SMALL_STATE(6683)] = 214755, + [SMALL_STATE(6684)] = 214767, + [SMALL_STATE(6685)] = 214783, + [SMALL_STATE(6686)] = 214799, + [SMALL_STATE(6687)] = 214811, + [SMALL_STATE(6688)] = 214827, + [SMALL_STATE(6689)] = 214839, + [SMALL_STATE(6690)] = 214853, + [SMALL_STATE(6691)] = 214867, + [SMALL_STATE(6692)] = 214879, + [SMALL_STATE(6693)] = 214891, + [SMALL_STATE(6694)] = 214903, + [SMALL_STATE(6695)] = 214919, + [SMALL_STATE(6696)] = 214933, + [SMALL_STATE(6697)] = 214945, + [SMALL_STATE(6698)] = 214959, + [SMALL_STATE(6699)] = 214973, + [SMALL_STATE(6700)] = 214989, + [SMALL_STATE(6701)] = 215005, + [SMALL_STATE(6702)] = 215019, + [SMALL_STATE(6703)] = 215035, + [SMALL_STATE(6704)] = 215051, + [SMALL_STATE(6705)] = 215067, + [SMALL_STATE(6706)] = 215083, + [SMALL_STATE(6707)] = 215099, + [SMALL_STATE(6708)] = 215113, + [SMALL_STATE(6709)] = 215129, + [SMALL_STATE(6710)] = 215145, + [SMALL_STATE(6711)] = 215161, + [SMALL_STATE(6712)] = 215173, + [SMALL_STATE(6713)] = 215189, + [SMALL_STATE(6714)] = 215201, + [SMALL_STATE(6715)] = 215217, + [SMALL_STATE(6716)] = 215233, + [SMALL_STATE(6717)] = 215249, + [SMALL_STATE(6718)] = 215263, + [SMALL_STATE(6719)] = 215277, + [SMALL_STATE(6720)] = 215289, + [SMALL_STATE(6721)] = 215305, + [SMALL_STATE(6722)] = 215319, + [SMALL_STATE(6723)] = 215331, + [SMALL_STATE(6724)] = 215347, + [SMALL_STATE(6725)] = 215363, + [SMALL_STATE(6726)] = 215379, + [SMALL_STATE(6727)] = 215391, + [SMALL_STATE(6728)] = 215407, + [SMALL_STATE(6729)] = 215423, + [SMALL_STATE(6730)] = 215435, + [SMALL_STATE(6731)] = 215451, + [SMALL_STATE(6732)] = 215467, + [SMALL_STATE(6733)] = 215483, + [SMALL_STATE(6734)] = 215499, + [SMALL_STATE(6735)] = 215515, + [SMALL_STATE(6736)] = 215531, + [SMALL_STATE(6737)] = 215547, + [SMALL_STATE(6738)] = 215563, + [SMALL_STATE(6739)] = 215579, + [SMALL_STATE(6740)] = 215595, + [SMALL_STATE(6741)] = 215611, + [SMALL_STATE(6742)] = 215627, + [SMALL_STATE(6743)] = 215643, + [SMALL_STATE(6744)] = 215655, + [SMALL_STATE(6745)] = 215667, + [SMALL_STATE(6746)] = 215679, + [SMALL_STATE(6747)] = 215695, + [SMALL_STATE(6748)] = 215711, + [SMALL_STATE(6749)] = 215725, + [SMALL_STATE(6750)] = 215741, + [SMALL_STATE(6751)] = 215753, + [SMALL_STATE(6752)] = 215769, + [SMALL_STATE(6753)] = 215785, + [SMALL_STATE(6754)] = 215801, + [SMALL_STATE(6755)] = 215817, + [SMALL_STATE(6756)] = 215833, + [SMALL_STATE(6757)] = 215847, + [SMALL_STATE(6758)] = 215863, + [SMALL_STATE(6759)] = 215879, + [SMALL_STATE(6760)] = 215895, + [SMALL_STATE(6761)] = 215911, + [SMALL_STATE(6762)] = 215927, + [SMALL_STATE(6763)] = 215939, + [SMALL_STATE(6764)] = 215955, + [SMALL_STATE(6765)] = 215967, + [SMALL_STATE(6766)] = 215983, + [SMALL_STATE(6767)] = 215999, + [SMALL_STATE(6768)] = 216011, + [SMALL_STATE(6769)] = 216027, + [SMALL_STATE(6770)] = 216041, + [SMALL_STATE(6771)] = 216057, + [SMALL_STATE(6772)] = 216073, + [SMALL_STATE(6773)] = 216087, + [SMALL_STATE(6774)] = 216099, + [SMALL_STATE(6775)] = 216113, + [SMALL_STATE(6776)] = 216125, + [SMALL_STATE(6777)] = 216139, + [SMALL_STATE(6778)] = 216155, + [SMALL_STATE(6779)] = 216171, + [SMALL_STATE(6780)] = 216183, + [SMALL_STATE(6781)] = 216199, + [SMALL_STATE(6782)] = 216215, + [SMALL_STATE(6783)] = 216229, + [SMALL_STATE(6784)] = 216245, + [SMALL_STATE(6785)] = 216261, + [SMALL_STATE(6786)] = 216277, + [SMALL_STATE(6787)] = 216293, + [SMALL_STATE(6788)] = 216309, + [SMALL_STATE(6789)] = 216323, + [SMALL_STATE(6790)] = 216339, + [SMALL_STATE(6791)] = 216355, + [SMALL_STATE(6792)] = 216371, + [SMALL_STATE(6793)] = 216387, + [SMALL_STATE(6794)] = 216403, + [SMALL_STATE(6795)] = 216417, + [SMALL_STATE(6796)] = 216433, + [SMALL_STATE(6797)] = 216449, + [SMALL_STATE(6798)] = 216463, + [SMALL_STATE(6799)] = 216479, + [SMALL_STATE(6800)] = 216495, + [SMALL_STATE(6801)] = 216509, + [SMALL_STATE(6802)] = 216525, + [SMALL_STATE(6803)] = 216541, + [SMALL_STATE(6804)] = 216555, + [SMALL_STATE(6805)] = 216567, + [SMALL_STATE(6806)] = 216583, + [SMALL_STATE(6807)] = 216599, + [SMALL_STATE(6808)] = 216613, + [SMALL_STATE(6809)] = 216625, + [SMALL_STATE(6810)] = 216641, + [SMALL_STATE(6811)] = 216653, + [SMALL_STATE(6812)] = 216665, + [SMALL_STATE(6813)] = 216679, + [SMALL_STATE(6814)] = 216691, + [SMALL_STATE(6815)] = 216707, + [SMALL_STATE(6816)] = 216723, + [SMALL_STATE(6817)] = 216735, + [SMALL_STATE(6818)] = 216751, + [SMALL_STATE(6819)] = 216767, + [SMALL_STATE(6820)] = 216783, + [SMALL_STATE(6821)] = 216799, + [SMALL_STATE(6822)] = 216813, + [SMALL_STATE(6823)] = 216829, + [SMALL_STATE(6824)] = 216845, + [SMALL_STATE(6825)] = 216861, + [SMALL_STATE(6826)] = 216877, + [SMALL_STATE(6827)] = 216893, + [SMALL_STATE(6828)] = 216905, + [SMALL_STATE(6829)] = 216917, + [SMALL_STATE(6830)] = 216929, + [SMALL_STATE(6831)] = 216945, + [SMALL_STATE(6832)] = 216959, + [SMALL_STATE(6833)] = 216973, + [SMALL_STATE(6834)] = 216987, + [SMALL_STATE(6835)] = 217001, + [SMALL_STATE(6836)] = 217017, + [SMALL_STATE(6837)] = 217033, + [SMALL_STATE(6838)] = 217045, + [SMALL_STATE(6839)] = 217061, + [SMALL_STATE(6840)] = 217077, + [SMALL_STATE(6841)] = 217093, + [SMALL_STATE(6842)] = 217109, + [SMALL_STATE(6843)] = 217125, + [SMALL_STATE(6844)] = 217141, + [SMALL_STATE(6845)] = 217155, + [SMALL_STATE(6846)] = 217171, + [SMALL_STATE(6847)] = 217183, + [SMALL_STATE(6848)] = 217197, + [SMALL_STATE(6849)] = 217213, + [SMALL_STATE(6850)] = 217227, + [SMALL_STATE(6851)] = 217239, + [SMALL_STATE(6852)] = 217253, + [SMALL_STATE(6853)] = 217269, + [SMALL_STATE(6854)] = 217285, + [SMALL_STATE(6855)] = 217297, + [SMALL_STATE(6856)] = 217313, + [SMALL_STATE(6857)] = 217325, + [SMALL_STATE(6858)] = 217341, + [SMALL_STATE(6859)] = 217357, + [SMALL_STATE(6860)] = 217373, + [SMALL_STATE(6861)] = 217389, + [SMALL_STATE(6862)] = 217405, + [SMALL_STATE(6863)] = 217421, + [SMALL_STATE(6864)] = 217437, + [SMALL_STATE(6865)] = 217453, + [SMALL_STATE(6866)] = 217467, + [SMALL_STATE(6867)] = 217481, + [SMALL_STATE(6868)] = 217497, + [SMALL_STATE(6869)] = 217511, + [SMALL_STATE(6870)] = 217527, + [SMALL_STATE(6871)] = 217539, + [SMALL_STATE(6872)] = 217555, + [SMALL_STATE(6873)] = 217569, + [SMALL_STATE(6874)] = 217585, + [SMALL_STATE(6875)] = 217601, + [SMALL_STATE(6876)] = 217617, + [SMALL_STATE(6877)] = 217633, + [SMALL_STATE(6878)] = 217649, + [SMALL_STATE(6879)] = 217665, + [SMALL_STATE(6880)] = 217681, + [SMALL_STATE(6881)] = 217697, + [SMALL_STATE(6882)] = 217713, + [SMALL_STATE(6883)] = 217725, + [SMALL_STATE(6884)] = 217741, + [SMALL_STATE(6885)] = 217757, + [SMALL_STATE(6886)] = 217773, + [SMALL_STATE(6887)] = 217785, + [SMALL_STATE(6888)] = 217801, + [SMALL_STATE(6889)] = 217817, + [SMALL_STATE(6890)] = 217831, + [SMALL_STATE(6891)] = 217847, + [SMALL_STATE(6892)] = 217863, + [SMALL_STATE(6893)] = 217879, + [SMALL_STATE(6894)] = 217895, + [SMALL_STATE(6895)] = 217911, + [SMALL_STATE(6896)] = 217927, + [SMALL_STATE(6897)] = 217943, + [SMALL_STATE(6898)] = 217959, + [SMALL_STATE(6899)] = 217975, + [SMALL_STATE(6900)] = 217991, + [SMALL_STATE(6901)] = 218007, + [SMALL_STATE(6902)] = 218023, + [SMALL_STATE(6903)] = 218037, + [SMALL_STATE(6904)] = 218053, + [SMALL_STATE(6905)] = 218069, + [SMALL_STATE(6906)] = 218083, + [SMALL_STATE(6907)] = 218099, + [SMALL_STATE(6908)] = 218115, + [SMALL_STATE(6909)] = 218131, + [SMALL_STATE(6910)] = 218147, + [SMALL_STATE(6911)] = 218163, + [SMALL_STATE(6912)] = 218179, + [SMALL_STATE(6913)] = 218195, + [SMALL_STATE(6914)] = 218211, + [SMALL_STATE(6915)] = 218227, + [SMALL_STATE(6916)] = 218243, + [SMALL_STATE(6917)] = 218259, + [SMALL_STATE(6918)] = 218275, + [SMALL_STATE(6919)] = 218291, + [SMALL_STATE(6920)] = 218307, + [SMALL_STATE(6921)] = 218323, + [SMALL_STATE(6922)] = 218339, + [SMALL_STATE(6923)] = 218355, + [SMALL_STATE(6924)] = 218371, + [SMALL_STATE(6925)] = 218387, + [SMALL_STATE(6926)] = 218403, + [SMALL_STATE(6927)] = 218419, + [SMALL_STATE(6928)] = 218431, + [SMALL_STATE(6929)] = 218447, + [SMALL_STATE(6930)] = 218461, + [SMALL_STATE(6931)] = 218473, + [SMALL_STATE(6932)] = 218489, + [SMALL_STATE(6933)] = 218503, + [SMALL_STATE(6934)] = 218519, + [SMALL_STATE(6935)] = 218535, + [SMALL_STATE(6936)] = 218549, + [SMALL_STATE(6937)] = 218563, + [SMALL_STATE(6938)] = 218575, + [SMALL_STATE(6939)] = 218587, + [SMALL_STATE(6940)] = 218603, + [SMALL_STATE(6941)] = 218615, + [SMALL_STATE(6942)] = 218627, + [SMALL_STATE(6943)] = 218641, + [SMALL_STATE(6944)] = 218653, + [SMALL_STATE(6945)] = 218665, + [SMALL_STATE(6946)] = 218677, + [SMALL_STATE(6947)] = 218689, + [SMALL_STATE(6948)] = 218703, + [SMALL_STATE(6949)] = 218719, + [SMALL_STATE(6950)] = 218735, + [SMALL_STATE(6951)] = 218751, + [SMALL_STATE(6952)] = 218765, + [SMALL_STATE(6953)] = 218777, + [SMALL_STATE(6954)] = 218789, + [SMALL_STATE(6955)] = 218803, + [SMALL_STATE(6956)] = 218815, + [SMALL_STATE(6957)] = 218827, + [SMALL_STATE(6958)] = 218843, + [SMALL_STATE(6959)] = 218859, + [SMALL_STATE(6960)] = 218871, + [SMALL_STATE(6961)] = 218887, + [SMALL_STATE(6962)] = 218903, + [SMALL_STATE(6963)] = 218919, + [SMALL_STATE(6964)] = 218935, + [SMALL_STATE(6965)] = 218949, + [SMALL_STATE(6966)] = 218965, + [SMALL_STATE(6967)] = 218979, + [SMALL_STATE(6968)] = 218995, + [SMALL_STATE(6969)] = 219011, + [SMALL_STATE(6970)] = 219025, + [SMALL_STATE(6971)] = 219037, + [SMALL_STATE(6972)] = 219053, + [SMALL_STATE(6973)] = 219067, + [SMALL_STATE(6974)] = 219081, + [SMALL_STATE(6975)] = 219097, + [SMALL_STATE(6976)] = 219109, + [SMALL_STATE(6977)] = 219123, + [SMALL_STATE(6978)] = 219139, + [SMALL_STATE(6979)] = 219155, + [SMALL_STATE(6980)] = 219171, + [SMALL_STATE(6981)] = 219187, + [SMALL_STATE(6982)] = 219203, + [SMALL_STATE(6983)] = 219219, + [SMALL_STATE(6984)] = 219231, + [SMALL_STATE(6985)] = 219247, + [SMALL_STATE(6986)] = 219263, + [SMALL_STATE(6987)] = 219279, + [SMALL_STATE(6988)] = 219293, + [SMALL_STATE(6989)] = 219307, + [SMALL_STATE(6990)] = 219319, + [SMALL_STATE(6991)] = 219335, + [SMALL_STATE(6992)] = 219351, + [SMALL_STATE(6993)] = 219367, + [SMALL_STATE(6994)] = 219383, + [SMALL_STATE(6995)] = 219399, + [SMALL_STATE(6996)] = 219411, + [SMALL_STATE(6997)] = 219423, + [SMALL_STATE(6998)] = 219435, + [SMALL_STATE(6999)] = 219451, + [SMALL_STATE(7000)] = 219467, + [SMALL_STATE(7001)] = 219483, + [SMALL_STATE(7002)] = 219499, + [SMALL_STATE(7003)] = 219513, + [SMALL_STATE(7004)] = 219527, + [SMALL_STATE(7005)] = 219541, + [SMALL_STATE(7006)] = 219557, + [SMALL_STATE(7007)] = 219569, + [SMALL_STATE(7008)] = 219581, + [SMALL_STATE(7009)] = 219595, + [SMALL_STATE(7010)] = 219607, + [SMALL_STATE(7011)] = 219623, + [SMALL_STATE(7012)] = 219635, + [SMALL_STATE(7013)] = 219651, + [SMALL_STATE(7014)] = 219667, + [SMALL_STATE(7015)] = 219683, + [SMALL_STATE(7016)] = 219699, + [SMALL_STATE(7017)] = 219711, + [SMALL_STATE(7018)] = 219725, + [SMALL_STATE(7019)] = 219741, + [SMALL_STATE(7020)] = 219755, + [SMALL_STATE(7021)] = 219769, + [SMALL_STATE(7022)] = 219785, + [SMALL_STATE(7023)] = 219801, + [SMALL_STATE(7024)] = 219817, + [SMALL_STATE(7025)] = 219833, + [SMALL_STATE(7026)] = 219849, + [SMALL_STATE(7027)] = 219865, + [SMALL_STATE(7028)] = 219881, + [SMALL_STATE(7029)] = 219897, + [SMALL_STATE(7030)] = 219913, + [SMALL_STATE(7031)] = 219929, + [SMALL_STATE(7032)] = 219945, + [SMALL_STATE(7033)] = 219959, + [SMALL_STATE(7034)] = 219973, + [SMALL_STATE(7035)] = 219985, + [SMALL_STATE(7036)] = 219999, + [SMALL_STATE(7037)] = 220011, + [SMALL_STATE(7038)] = 220027, + [SMALL_STATE(7039)] = 220041, + [SMALL_STATE(7040)] = 220053, + [SMALL_STATE(7041)] = 220065, + [SMALL_STATE(7042)] = 220077, + [SMALL_STATE(7043)] = 220089, + [SMALL_STATE(7044)] = 220103, + [SMALL_STATE(7045)] = 220119, + [SMALL_STATE(7046)] = 220131, + [SMALL_STATE(7047)] = 220143, + [SMALL_STATE(7048)] = 220159, + [SMALL_STATE(7049)] = 220173, + [SMALL_STATE(7050)] = 220189, + [SMALL_STATE(7051)] = 220205, + [SMALL_STATE(7052)] = 220219, + [SMALL_STATE(7053)] = 220233, + [SMALL_STATE(7054)] = 220249, + [SMALL_STATE(7055)] = 220263, + [SMALL_STATE(7056)] = 220279, + [SMALL_STATE(7057)] = 220295, + [SMALL_STATE(7058)] = 220309, + [SMALL_STATE(7059)] = 220325, + [SMALL_STATE(7060)] = 220341, + [SMALL_STATE(7061)] = 220357, + [SMALL_STATE(7062)] = 220371, + [SMALL_STATE(7063)] = 220385, + [SMALL_STATE(7064)] = 220401, + [SMALL_STATE(7065)] = 220415, + [SMALL_STATE(7066)] = 220431, + [SMALL_STATE(7067)] = 220443, + [SMALL_STATE(7068)] = 220459, + [SMALL_STATE(7069)] = 220475, + [SMALL_STATE(7070)] = 220491, + [SMALL_STATE(7071)] = 220507, + [SMALL_STATE(7072)] = 220521, + [SMALL_STATE(7073)] = 220535, + [SMALL_STATE(7074)] = 220551, + [SMALL_STATE(7075)] = 220565, + [SMALL_STATE(7076)] = 220581, + [SMALL_STATE(7077)] = 220597, + [SMALL_STATE(7078)] = 220613, + [SMALL_STATE(7079)] = 220629, + [SMALL_STATE(7080)] = 220645, + [SMALL_STATE(7081)] = 220659, + [SMALL_STATE(7082)] = 220675, + [SMALL_STATE(7083)] = 220689, + [SMALL_STATE(7084)] = 220701, + [SMALL_STATE(7085)] = 220717, + [SMALL_STATE(7086)] = 220733, + [SMALL_STATE(7087)] = 220749, + [SMALL_STATE(7088)] = 220765, + [SMALL_STATE(7089)] = 220781, + [SMALL_STATE(7090)] = 220795, + [SMALL_STATE(7091)] = 220807, + [SMALL_STATE(7092)] = 220819, + [SMALL_STATE(7093)] = 220833, + [SMALL_STATE(7094)] = 220845, + [SMALL_STATE(7095)] = 220861, + [SMALL_STATE(7096)] = 220877, + [SMALL_STATE(7097)] = 220893, + [SMALL_STATE(7098)] = 220909, + [SMALL_STATE(7099)] = 220923, + [SMALL_STATE(7100)] = 220937, + [SMALL_STATE(7101)] = 220949, + [SMALL_STATE(7102)] = 220963, + [SMALL_STATE(7103)] = 220975, + [SMALL_STATE(7104)] = 220989, + [SMALL_STATE(7105)] = 221005, + [SMALL_STATE(7106)] = 221021, + [SMALL_STATE(7107)] = 221037, + [SMALL_STATE(7108)] = 221053, + [SMALL_STATE(7109)] = 221069, + [SMALL_STATE(7110)] = 221083, + [SMALL_STATE(7111)] = 221097, + [SMALL_STATE(7112)] = 221109, + [SMALL_STATE(7113)] = 221123, + [SMALL_STATE(7114)] = 221139, + [SMALL_STATE(7115)] = 221155, + [SMALL_STATE(7116)] = 221169, + [SMALL_STATE(7117)] = 221185, + [SMALL_STATE(7118)] = 221201, + [SMALL_STATE(7119)] = 221215, + [SMALL_STATE(7120)] = 221229, + [SMALL_STATE(7121)] = 221241, + [SMALL_STATE(7122)] = 221257, + [SMALL_STATE(7123)] = 221273, + [SMALL_STATE(7124)] = 221289, + [SMALL_STATE(7125)] = 221305, + [SMALL_STATE(7126)] = 221319, + [SMALL_STATE(7127)] = 221331, + [SMALL_STATE(7128)] = 221345, + [SMALL_STATE(7129)] = 221361, + [SMALL_STATE(7130)] = 221377, + [SMALL_STATE(7131)] = 221393, + [SMALL_STATE(7132)] = 221409, + [SMALL_STATE(7133)] = 221425, + [SMALL_STATE(7134)] = 221441, + [SMALL_STATE(7135)] = 221455, + [SMALL_STATE(7136)] = 221469, + [SMALL_STATE(7137)] = 221483, + [SMALL_STATE(7138)] = 221499, + [SMALL_STATE(7139)] = 221515, + [SMALL_STATE(7140)] = 221529, + [SMALL_STATE(7141)] = 221545, + [SMALL_STATE(7142)] = 221561, + [SMALL_STATE(7143)] = 221575, + [SMALL_STATE(7144)] = 221589, + [SMALL_STATE(7145)] = 221603, + [SMALL_STATE(7146)] = 221619, + [SMALL_STATE(7147)] = 221635, + [SMALL_STATE(7148)] = 221649, + [SMALL_STATE(7149)] = 221665, + [SMALL_STATE(7150)] = 221681, + [SMALL_STATE(7151)] = 221695, + [SMALL_STATE(7152)] = 221709, + [SMALL_STATE(7153)] = 221725, + [SMALL_STATE(7154)] = 221741, + [SMALL_STATE(7155)] = 221757, + [SMALL_STATE(7156)] = 221773, + [SMALL_STATE(7157)] = 221787, + [SMALL_STATE(7158)] = 221801, + [SMALL_STATE(7159)] = 221815, + [SMALL_STATE(7160)] = 221831, + [SMALL_STATE(7161)] = 221847, + [SMALL_STATE(7162)] = 221859, + [SMALL_STATE(7163)] = 221875, + [SMALL_STATE(7164)] = 221891, + [SMALL_STATE(7165)] = 221905, + [SMALL_STATE(7166)] = 221919, + [SMALL_STATE(7167)] = 221935, + [SMALL_STATE(7168)] = 221951, + [SMALL_STATE(7169)] = 221967, + [SMALL_STATE(7170)] = 221983, + [SMALL_STATE(7171)] = 221997, + [SMALL_STATE(7172)] = 222009, + [SMALL_STATE(7173)] = 222021, + [SMALL_STATE(7174)] = 222037, + [SMALL_STATE(7175)] = 222053, + [SMALL_STATE(7176)] = 222067, + [SMALL_STATE(7177)] = 222079, + [SMALL_STATE(7178)] = 222095, + [SMALL_STATE(7179)] = 222111, + [SMALL_STATE(7180)] = 222123, + [SMALL_STATE(7181)] = 222137, + [SMALL_STATE(7182)] = 222151, + [SMALL_STATE(7183)] = 222163, + [SMALL_STATE(7184)] = 222179, + [SMALL_STATE(7185)] = 222193, + [SMALL_STATE(7186)] = 222205, + [SMALL_STATE(7187)] = 222219, + [SMALL_STATE(7188)] = 222233, + [SMALL_STATE(7189)] = 222249, + [SMALL_STATE(7190)] = 222261, + [SMALL_STATE(7191)] = 222275, + [SMALL_STATE(7192)] = 222291, + [SMALL_STATE(7193)] = 222303, + [SMALL_STATE(7194)] = 222316, + [SMALL_STATE(7195)] = 222329, + [SMALL_STATE(7196)] = 222342, + [SMALL_STATE(7197)] = 222355, + [SMALL_STATE(7198)] = 222368, + [SMALL_STATE(7199)] = 222381, + [SMALL_STATE(7200)] = 222394, + [SMALL_STATE(7201)] = 222407, + [SMALL_STATE(7202)] = 222418, + [SMALL_STATE(7203)] = 222431, + [SMALL_STATE(7204)] = 222444, + [SMALL_STATE(7205)] = 222457, + [SMALL_STATE(7206)] = 222470, + [SMALL_STATE(7207)] = 222483, + [SMALL_STATE(7208)] = 222494, + [SMALL_STATE(7209)] = 222507, + [SMALL_STATE(7210)] = 222518, + [SMALL_STATE(7211)] = 222531, + [SMALL_STATE(7212)] = 222544, + [SMALL_STATE(7213)] = 222557, + [SMALL_STATE(7214)] = 222568, + [SMALL_STATE(7215)] = 222581, + [SMALL_STATE(7216)] = 222594, + [SMALL_STATE(7217)] = 222607, + [SMALL_STATE(7218)] = 222620, + [SMALL_STATE(7219)] = 222631, + [SMALL_STATE(7220)] = 222644, + [SMALL_STATE(7221)] = 222657, + [SMALL_STATE(7222)] = 222670, + [SMALL_STATE(7223)] = 222683, + [SMALL_STATE(7224)] = 222696, + [SMALL_STATE(7225)] = 222709, + [SMALL_STATE(7226)] = 222722, + [SMALL_STATE(7227)] = 222735, + [SMALL_STATE(7228)] = 222748, + [SMALL_STATE(7229)] = 222761, + [SMALL_STATE(7230)] = 222774, + [SMALL_STATE(7231)] = 222787, + [SMALL_STATE(7232)] = 222800, + [SMALL_STATE(7233)] = 222813, + [SMALL_STATE(7234)] = 222826, + [SMALL_STATE(7235)] = 222839, + [SMALL_STATE(7236)] = 222852, + [SMALL_STATE(7237)] = 222865, + [SMALL_STATE(7238)] = 222878, + [SMALL_STATE(7239)] = 222891, + [SMALL_STATE(7240)] = 222904, + [SMALL_STATE(7241)] = 222915, + [SMALL_STATE(7242)] = 222928, + [SMALL_STATE(7243)] = 222941, + [SMALL_STATE(7244)] = 222954, + [SMALL_STATE(7245)] = 222967, + [SMALL_STATE(7246)] = 222980, + [SMALL_STATE(7247)] = 222993, + [SMALL_STATE(7248)] = 223006, + [SMALL_STATE(7249)] = 223019, + [SMALL_STATE(7250)] = 223032, + [SMALL_STATE(7251)] = 223045, + [SMALL_STATE(7252)] = 223058, + [SMALL_STATE(7253)] = 223071, + [SMALL_STATE(7254)] = 223084, + [SMALL_STATE(7255)] = 223097, + [SMALL_STATE(7256)] = 223110, + [SMALL_STATE(7257)] = 223123, + [SMALL_STATE(7258)] = 223136, + [SMALL_STATE(7259)] = 223149, + [SMALL_STATE(7260)] = 223162, + [SMALL_STATE(7261)] = 223175, + [SMALL_STATE(7262)] = 223188, + [SMALL_STATE(7263)] = 223201, + [SMALL_STATE(7264)] = 223214, + [SMALL_STATE(7265)] = 223225, + [SMALL_STATE(7266)] = 223238, + [SMALL_STATE(7267)] = 223251, + [SMALL_STATE(7268)] = 223264, + [SMALL_STATE(7269)] = 223277, + [SMALL_STATE(7270)] = 223290, + [SMALL_STATE(7271)] = 223303, + [SMALL_STATE(7272)] = 223316, + [SMALL_STATE(7273)] = 223327, + [SMALL_STATE(7274)] = 223340, + [SMALL_STATE(7275)] = 223353, + [SMALL_STATE(7276)] = 223366, + [SMALL_STATE(7277)] = 223379, + [SMALL_STATE(7278)] = 223392, + [SMALL_STATE(7279)] = 223405, + [SMALL_STATE(7280)] = 223418, + [SMALL_STATE(7281)] = 223431, + [SMALL_STATE(7282)] = 223444, + [SMALL_STATE(7283)] = 223457, + [SMALL_STATE(7284)] = 223470, + [SMALL_STATE(7285)] = 223483, + [SMALL_STATE(7286)] = 223496, + [SMALL_STATE(7287)] = 223509, + [SMALL_STATE(7288)] = 223522, + [SMALL_STATE(7289)] = 223535, + [SMALL_STATE(7290)] = 223548, + [SMALL_STATE(7291)] = 223561, + [SMALL_STATE(7292)] = 223574, + [SMALL_STATE(7293)] = 223587, + [SMALL_STATE(7294)] = 223600, + [SMALL_STATE(7295)] = 223613, + [SMALL_STATE(7296)] = 223626, + [SMALL_STATE(7297)] = 223639, + [SMALL_STATE(7298)] = 223652, + [SMALL_STATE(7299)] = 223665, + [SMALL_STATE(7300)] = 223678, + [SMALL_STATE(7301)] = 223691, + [SMALL_STATE(7302)] = 223704, + [SMALL_STATE(7303)] = 223717, + [SMALL_STATE(7304)] = 223730, + [SMALL_STATE(7305)] = 223743, + [SMALL_STATE(7306)] = 223756, + [SMALL_STATE(7307)] = 223769, + [SMALL_STATE(7308)] = 223782, + [SMALL_STATE(7309)] = 223795, + [SMALL_STATE(7310)] = 223808, + [SMALL_STATE(7311)] = 223821, + [SMALL_STATE(7312)] = 223834, + [SMALL_STATE(7313)] = 223847, + [SMALL_STATE(7314)] = 223860, + [SMALL_STATE(7315)] = 223873, + [SMALL_STATE(7316)] = 223886, + [SMALL_STATE(7317)] = 223899, + [SMALL_STATE(7318)] = 223912, + [SMALL_STATE(7319)] = 223925, + [SMALL_STATE(7320)] = 223938, + [SMALL_STATE(7321)] = 223951, + [SMALL_STATE(7322)] = 223964, + [SMALL_STATE(7323)] = 223977, + [SMALL_STATE(7324)] = 223990, + [SMALL_STATE(7325)] = 224003, + [SMALL_STATE(7326)] = 224016, + [SMALL_STATE(7327)] = 224029, + [SMALL_STATE(7328)] = 224042, + [SMALL_STATE(7329)] = 224055, + [SMALL_STATE(7330)] = 224068, + [SMALL_STATE(7331)] = 224081, + [SMALL_STATE(7332)] = 224094, + [SMALL_STATE(7333)] = 224107, + [SMALL_STATE(7334)] = 224120, + [SMALL_STATE(7335)] = 224133, + [SMALL_STATE(7336)] = 224146, + [SMALL_STATE(7337)] = 224157, + [SMALL_STATE(7338)] = 224170, + [SMALL_STATE(7339)] = 224181, + [SMALL_STATE(7340)] = 224194, + [SMALL_STATE(7341)] = 224207, + [SMALL_STATE(7342)] = 224220, + [SMALL_STATE(7343)] = 224233, + [SMALL_STATE(7344)] = 224246, + [SMALL_STATE(7345)] = 224259, + [SMALL_STATE(7346)] = 224272, + [SMALL_STATE(7347)] = 224285, + [SMALL_STATE(7348)] = 224298, + [SMALL_STATE(7349)] = 224311, + [SMALL_STATE(7350)] = 224324, + [SMALL_STATE(7351)] = 224337, + [SMALL_STATE(7352)] = 224350, + [SMALL_STATE(7353)] = 224363, + [SMALL_STATE(7354)] = 224376, + [SMALL_STATE(7355)] = 224389, + [SMALL_STATE(7356)] = 224402, + [SMALL_STATE(7357)] = 224415, + [SMALL_STATE(7358)] = 224428, + [SMALL_STATE(7359)] = 224441, + [SMALL_STATE(7360)] = 224454, + [SMALL_STATE(7361)] = 224464, + [SMALL_STATE(7362)] = 224474, + [SMALL_STATE(7363)] = 224484, + [SMALL_STATE(7364)] = 224494, + [SMALL_STATE(7365)] = 224504, + [SMALL_STATE(7366)] = 224514, + [SMALL_STATE(7367)] = 224524, + [SMALL_STATE(7368)] = 224534, + [SMALL_STATE(7369)] = 224544, + [SMALL_STATE(7370)] = 224554, + [SMALL_STATE(7371)] = 224564, + [SMALL_STATE(7372)] = 224574, + [SMALL_STATE(7373)] = 224584, + [SMALL_STATE(7374)] = 224594, + [SMALL_STATE(7375)] = 224604, + [SMALL_STATE(7376)] = 224614, + [SMALL_STATE(7377)] = 224624, + [SMALL_STATE(7378)] = 224634, + [SMALL_STATE(7379)] = 224644, + [SMALL_STATE(7380)] = 224654, + [SMALL_STATE(7381)] = 224664, + [SMALL_STATE(7382)] = 224674, + [SMALL_STATE(7383)] = 224684, + [SMALL_STATE(7384)] = 224694, + [SMALL_STATE(7385)] = 224704, + [SMALL_STATE(7386)] = 224714, + [SMALL_STATE(7387)] = 224724, + [SMALL_STATE(7388)] = 224734, + [SMALL_STATE(7389)] = 224744, + [SMALL_STATE(7390)] = 224754, + [SMALL_STATE(7391)] = 224764, + [SMALL_STATE(7392)] = 224774, + [SMALL_STATE(7393)] = 224784, + [SMALL_STATE(7394)] = 224794, + [SMALL_STATE(7395)] = 224804, + [SMALL_STATE(7396)] = 224814, + [SMALL_STATE(7397)] = 224824, + [SMALL_STATE(7398)] = 224834, + [SMALL_STATE(7399)] = 224844, + [SMALL_STATE(7400)] = 224854, + [SMALL_STATE(7401)] = 224864, + [SMALL_STATE(7402)] = 224874, + [SMALL_STATE(7403)] = 224884, + [SMALL_STATE(7404)] = 224894, + [SMALL_STATE(7405)] = 224904, + [SMALL_STATE(7406)] = 224914, + [SMALL_STATE(7407)] = 224924, + [SMALL_STATE(7408)] = 224934, + [SMALL_STATE(7409)] = 224944, + [SMALL_STATE(7410)] = 224954, + [SMALL_STATE(7411)] = 224964, + [SMALL_STATE(7412)] = 224974, + [SMALL_STATE(7413)] = 224984, + [SMALL_STATE(7414)] = 224994, + [SMALL_STATE(7415)] = 225004, + [SMALL_STATE(7416)] = 225014, + [SMALL_STATE(7417)] = 225024, + [SMALL_STATE(7418)] = 225034, + [SMALL_STATE(7419)] = 225044, + [SMALL_STATE(7420)] = 225054, + [SMALL_STATE(7421)] = 225064, + [SMALL_STATE(7422)] = 225074, + [SMALL_STATE(7423)] = 225084, + [SMALL_STATE(7424)] = 225094, + [SMALL_STATE(7425)] = 225104, + [SMALL_STATE(7426)] = 225114, + [SMALL_STATE(7427)] = 225124, + [SMALL_STATE(7428)] = 225134, + [SMALL_STATE(7429)] = 225144, + [SMALL_STATE(7430)] = 225154, + [SMALL_STATE(7431)] = 225164, + [SMALL_STATE(7432)] = 225174, + [SMALL_STATE(7433)] = 225184, + [SMALL_STATE(7434)] = 225194, + [SMALL_STATE(7435)] = 225204, + [SMALL_STATE(7436)] = 225214, + [SMALL_STATE(7437)] = 225224, + [SMALL_STATE(7438)] = 225234, + [SMALL_STATE(7439)] = 225244, + [SMALL_STATE(7440)] = 225254, + [SMALL_STATE(7441)] = 225264, + [SMALL_STATE(7442)] = 225274, + [SMALL_STATE(7443)] = 225284, + [SMALL_STATE(7444)] = 225294, + [SMALL_STATE(7445)] = 225304, + [SMALL_STATE(7446)] = 225314, + [SMALL_STATE(7447)] = 225324, + [SMALL_STATE(7448)] = 225334, + [SMALL_STATE(7449)] = 225344, + [SMALL_STATE(7450)] = 225354, + [SMALL_STATE(7451)] = 225364, + [SMALL_STATE(7452)] = 225374, + [SMALL_STATE(7453)] = 225384, + [SMALL_STATE(7454)] = 225394, + [SMALL_STATE(7455)] = 225404, + [SMALL_STATE(7456)] = 225414, + [SMALL_STATE(7457)] = 225424, + [SMALL_STATE(7458)] = 225434, + [SMALL_STATE(7459)] = 225444, + [SMALL_STATE(7460)] = 225454, + [SMALL_STATE(7461)] = 225464, + [SMALL_STATE(7462)] = 225474, + [SMALL_STATE(7463)] = 225484, + [SMALL_STATE(7464)] = 225494, + [SMALL_STATE(7465)] = 225504, + [SMALL_STATE(7466)] = 225514, + [SMALL_STATE(7467)] = 225524, + [SMALL_STATE(7468)] = 225534, + [SMALL_STATE(7469)] = 225544, + [SMALL_STATE(7470)] = 225554, + [SMALL_STATE(7471)] = 225564, + [SMALL_STATE(7472)] = 225574, + [SMALL_STATE(7473)] = 225584, + [SMALL_STATE(7474)] = 225594, + [SMALL_STATE(7475)] = 225604, + [SMALL_STATE(7476)] = 225614, + [SMALL_STATE(7477)] = 225624, + [SMALL_STATE(7478)] = 225634, + [SMALL_STATE(7479)] = 225644, + [SMALL_STATE(7480)] = 225654, + [SMALL_STATE(7481)] = 225664, + [SMALL_STATE(7482)] = 225674, + [SMALL_STATE(7483)] = 225684, + [SMALL_STATE(7484)] = 225694, + [SMALL_STATE(7485)] = 225704, + [SMALL_STATE(7486)] = 225714, + [SMALL_STATE(7487)] = 225724, + [SMALL_STATE(7488)] = 225734, + [SMALL_STATE(7489)] = 225744, + [SMALL_STATE(7490)] = 225754, + [SMALL_STATE(7491)] = 225764, + [SMALL_STATE(7492)] = 225774, + [SMALL_STATE(7493)] = 225784, + [SMALL_STATE(7494)] = 225794, + [SMALL_STATE(7495)] = 225804, + [SMALL_STATE(7496)] = 225814, + [SMALL_STATE(7497)] = 225824, + [SMALL_STATE(7498)] = 225834, + [SMALL_STATE(7499)] = 225844, + [SMALL_STATE(7500)] = 225854, + [SMALL_STATE(7501)] = 225864, + [SMALL_STATE(7502)] = 225874, + [SMALL_STATE(7503)] = 225884, + [SMALL_STATE(7504)] = 225894, + [SMALL_STATE(7505)] = 225904, + [SMALL_STATE(7506)] = 225914, + [SMALL_STATE(7507)] = 225924, + [SMALL_STATE(7508)] = 225934, + [SMALL_STATE(7509)] = 225944, + [SMALL_STATE(7510)] = 225954, + [SMALL_STATE(7511)] = 225964, + [SMALL_STATE(7512)] = 225974, + [SMALL_STATE(7513)] = 225984, + [SMALL_STATE(7514)] = 225994, + [SMALL_STATE(7515)] = 226004, + [SMALL_STATE(7516)] = 226014, + [SMALL_STATE(7517)] = 226024, + [SMALL_STATE(7518)] = 226034, + [SMALL_STATE(7519)] = 226044, + [SMALL_STATE(7520)] = 226054, + [SMALL_STATE(7521)] = 226064, + [SMALL_STATE(7522)] = 226074, + [SMALL_STATE(7523)] = 226084, + [SMALL_STATE(7524)] = 226094, + [SMALL_STATE(7525)] = 226104, + [SMALL_STATE(7526)] = 226114, + [SMALL_STATE(7527)] = 226124, + [SMALL_STATE(7528)] = 226134, + [SMALL_STATE(7529)] = 226144, + [SMALL_STATE(7530)] = 226154, + [SMALL_STATE(7531)] = 226164, + [SMALL_STATE(7532)] = 226174, + [SMALL_STATE(7533)] = 226184, + [SMALL_STATE(7534)] = 226194, + [SMALL_STATE(7535)] = 226204, + [SMALL_STATE(7536)] = 226214, + [SMALL_STATE(7537)] = 226224, + [SMALL_STATE(7538)] = 226234, + [SMALL_STATE(7539)] = 226244, + [SMALL_STATE(7540)] = 226254, + [SMALL_STATE(7541)] = 226264, + [SMALL_STATE(7542)] = 226274, + [SMALL_STATE(7543)] = 226284, + [SMALL_STATE(7544)] = 226294, + [SMALL_STATE(7545)] = 226304, + [SMALL_STATE(7546)] = 226314, + [SMALL_STATE(7547)] = 226324, + [SMALL_STATE(7548)] = 226334, + [SMALL_STATE(7549)] = 226344, + [SMALL_STATE(7550)] = 226354, + [SMALL_STATE(7551)] = 226364, + [SMALL_STATE(7552)] = 226374, + [SMALL_STATE(7553)] = 226384, + [SMALL_STATE(7554)] = 226394, + [SMALL_STATE(7555)] = 226404, + [SMALL_STATE(7556)] = 226414, + [SMALL_STATE(7557)] = 226424, + [SMALL_STATE(7558)] = 226434, + [SMALL_STATE(7559)] = 226444, + [SMALL_STATE(7560)] = 226454, + [SMALL_STATE(7561)] = 226464, + [SMALL_STATE(7562)] = 226474, + [SMALL_STATE(7563)] = 226484, + [SMALL_STATE(7564)] = 226494, + [SMALL_STATE(7565)] = 226504, + [SMALL_STATE(7566)] = 226514, + [SMALL_STATE(7567)] = 226524, + [SMALL_STATE(7568)] = 226534, + [SMALL_STATE(7569)] = 226544, + [SMALL_STATE(7570)] = 226554, + [SMALL_STATE(7571)] = 226564, + [SMALL_STATE(7572)] = 226574, + [SMALL_STATE(7573)] = 226584, + [SMALL_STATE(7574)] = 226594, + [SMALL_STATE(7575)] = 226604, + [SMALL_STATE(7576)] = 226614, + [SMALL_STATE(7577)] = 226624, + [SMALL_STATE(7578)] = 226634, + [SMALL_STATE(7579)] = 226644, + [SMALL_STATE(7580)] = 226654, + [SMALL_STATE(7581)] = 226664, + [SMALL_STATE(7582)] = 226674, + [SMALL_STATE(7583)] = 226684, + [SMALL_STATE(7584)] = 226694, + [SMALL_STATE(7585)] = 226704, + [SMALL_STATE(7586)] = 226714, + [SMALL_STATE(7587)] = 226724, + [SMALL_STATE(7588)] = 226734, + [SMALL_STATE(7589)] = 226744, + [SMALL_STATE(7590)] = 226754, + [SMALL_STATE(7591)] = 226764, + [SMALL_STATE(7592)] = 226774, + [SMALL_STATE(7593)] = 226784, + [SMALL_STATE(7594)] = 226794, + [SMALL_STATE(7595)] = 226804, + [SMALL_STATE(7596)] = 226814, + [SMALL_STATE(7597)] = 226824, + [SMALL_STATE(7598)] = 226834, + [SMALL_STATE(7599)] = 226844, + [SMALL_STATE(7600)] = 226854, + [SMALL_STATE(7601)] = 226864, + [SMALL_STATE(7602)] = 226874, + [SMALL_STATE(7603)] = 226884, + [SMALL_STATE(7604)] = 226894, + [SMALL_STATE(7605)] = 226904, + [SMALL_STATE(7606)] = 226914, + [SMALL_STATE(7607)] = 226924, + [SMALL_STATE(7608)] = 226934, + [SMALL_STATE(7609)] = 226944, + [SMALL_STATE(7610)] = 226954, + [SMALL_STATE(7611)] = 226964, + [SMALL_STATE(7612)] = 226974, + [SMALL_STATE(7613)] = 226984, + [SMALL_STATE(7614)] = 226994, + [SMALL_STATE(7615)] = 227004, + [SMALL_STATE(7616)] = 227014, + [SMALL_STATE(7617)] = 227024, + [SMALL_STATE(7618)] = 227034, + [SMALL_STATE(7619)] = 227044, + [SMALL_STATE(7620)] = 227054, + [SMALL_STATE(7621)] = 227064, + [SMALL_STATE(7622)] = 227074, + [SMALL_STATE(7623)] = 227084, + [SMALL_STATE(7624)] = 227094, + [SMALL_STATE(7625)] = 227104, + [SMALL_STATE(7626)] = 227114, + [SMALL_STATE(7627)] = 227124, + [SMALL_STATE(7628)] = 227134, + [SMALL_STATE(7629)] = 227144, + [SMALL_STATE(7630)] = 227154, + [SMALL_STATE(7631)] = 227164, + [SMALL_STATE(7632)] = 227174, + [SMALL_STATE(7633)] = 227184, + [SMALL_STATE(7634)] = 227194, + [SMALL_STATE(7635)] = 227204, + [SMALL_STATE(7636)] = 227214, + [SMALL_STATE(7637)] = 227224, + [SMALL_STATE(7638)] = 227234, + [SMALL_STATE(7639)] = 227244, + [SMALL_STATE(7640)] = 227254, + [SMALL_STATE(7641)] = 227264, + [SMALL_STATE(7642)] = 227274, + [SMALL_STATE(7643)] = 227284, + [SMALL_STATE(7644)] = 227294, + [SMALL_STATE(7645)] = 227304, + [SMALL_STATE(7646)] = 227314, + [SMALL_STATE(7647)] = 227324, + [SMALL_STATE(7648)] = 227334, + [SMALL_STATE(7649)] = 227344, + [SMALL_STATE(7650)] = 227354, + [SMALL_STATE(7651)] = 227364, + [SMALL_STATE(7652)] = 227374, + [SMALL_STATE(7653)] = 227384, + [SMALL_STATE(7654)] = 227394, + [SMALL_STATE(7655)] = 227404, + [SMALL_STATE(7656)] = 227414, + [SMALL_STATE(7657)] = 227424, + [SMALL_STATE(7658)] = 227434, + [SMALL_STATE(7659)] = 227444, + [SMALL_STATE(7660)] = 227454, + [SMALL_STATE(7661)] = 227464, + [SMALL_STATE(7662)] = 227474, + [SMALL_STATE(7663)] = 227484, + [SMALL_STATE(7664)] = 227494, + [SMALL_STATE(7665)] = 227504, + [SMALL_STATE(7666)] = 227514, + [SMALL_STATE(7667)] = 227524, + [SMALL_STATE(7668)] = 227534, + [SMALL_STATE(7669)] = 227544, + [SMALL_STATE(7670)] = 227554, + [SMALL_STATE(7671)] = 227564, + [SMALL_STATE(7672)] = 227574, + [SMALL_STATE(7673)] = 227584, + [SMALL_STATE(7674)] = 227594, + [SMALL_STATE(7675)] = 227604, + [SMALL_STATE(7676)] = 227614, + [SMALL_STATE(7677)] = 227624, + [SMALL_STATE(7678)] = 227634, + [SMALL_STATE(7679)] = 227644, + [SMALL_STATE(7680)] = 227654, + [SMALL_STATE(7681)] = 227664, + [SMALL_STATE(7682)] = 227674, + [SMALL_STATE(7683)] = 227684, + [SMALL_STATE(7684)] = 227694, + [SMALL_STATE(7685)] = 227704, + [SMALL_STATE(7686)] = 227714, + [SMALL_STATE(7687)] = 227724, + [SMALL_STATE(7688)] = 227734, + [SMALL_STATE(7689)] = 227744, + [SMALL_STATE(7690)] = 227754, + [SMALL_STATE(7691)] = 227764, + [SMALL_STATE(7692)] = 227774, + [SMALL_STATE(7693)] = 227784, + [SMALL_STATE(7694)] = 227794, + [SMALL_STATE(7695)] = 227804, + [SMALL_STATE(7696)] = 227814, + [SMALL_STATE(7697)] = 227824, + [SMALL_STATE(7698)] = 227834, + [SMALL_STATE(7699)] = 227844, + [SMALL_STATE(7700)] = 227854, + [SMALL_STATE(7701)] = 227864, + [SMALL_STATE(7702)] = 227874, + [SMALL_STATE(7703)] = 227884, + [SMALL_STATE(7704)] = 227894, + [SMALL_STATE(7705)] = 227904, + [SMALL_STATE(7706)] = 227914, + [SMALL_STATE(7707)] = 227924, + [SMALL_STATE(7708)] = 227934, + [SMALL_STATE(7709)] = 227944, + [SMALL_STATE(7710)] = 227954, + [SMALL_STATE(7711)] = 227964, + [SMALL_STATE(7712)] = 227974, + [SMALL_STATE(7713)] = 227984, + [SMALL_STATE(7714)] = 227994, + [SMALL_STATE(7715)] = 228004, + [SMALL_STATE(7716)] = 228014, + [SMALL_STATE(7717)] = 228024, + [SMALL_STATE(7718)] = 228034, + [SMALL_STATE(7719)] = 228044, + [SMALL_STATE(7720)] = 228054, + [SMALL_STATE(7721)] = 228064, + [SMALL_STATE(7722)] = 228074, + [SMALL_STATE(7723)] = 228084, + [SMALL_STATE(7724)] = 228094, + [SMALL_STATE(7725)] = 228104, + [SMALL_STATE(7726)] = 228114, + [SMALL_STATE(7727)] = 228124, + [SMALL_STATE(7728)] = 228134, + [SMALL_STATE(7729)] = 228144, + [SMALL_STATE(7730)] = 228154, + [SMALL_STATE(7731)] = 228164, + [SMALL_STATE(7732)] = 228174, + [SMALL_STATE(7733)] = 228184, + [SMALL_STATE(7734)] = 228194, + [SMALL_STATE(7735)] = 228204, + [SMALL_STATE(7736)] = 228214, + [SMALL_STATE(7737)] = 228224, + [SMALL_STATE(7738)] = 228234, + [SMALL_STATE(7739)] = 228244, + [SMALL_STATE(7740)] = 228254, + [SMALL_STATE(7741)] = 228264, + [SMALL_STATE(7742)] = 228274, + [SMALL_STATE(7743)] = 228284, + [SMALL_STATE(7744)] = 228294, + [SMALL_STATE(7745)] = 228304, + [SMALL_STATE(7746)] = 228314, + [SMALL_STATE(7747)] = 228324, + [SMALL_STATE(7748)] = 228334, + [SMALL_STATE(7749)] = 228344, + [SMALL_STATE(7750)] = 228354, + [SMALL_STATE(7751)] = 228364, + [SMALL_STATE(7752)] = 228374, + [SMALL_STATE(7753)] = 228384, + [SMALL_STATE(7754)] = 228394, + [SMALL_STATE(7755)] = 228404, + [SMALL_STATE(7756)] = 228414, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), - [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7683), + [3] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7414), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 0, 0, 0), - [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5910), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4592), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4592), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2350), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7272), - [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6521), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7432), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7438), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4921), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4925), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6289), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7367), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), - [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4807), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2103), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1236), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1134), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5628), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2618), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5870), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4572), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2417), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7312), + [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2594), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2742), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7657), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7726), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4911), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4912), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6087), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7323), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2110), + [57] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2125), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), + [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5173), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7279), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1122), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3419), [75] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2619), - [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5139), - [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), - [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3697), - [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), - [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5164), - [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2485), - [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2557), - [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(789), - [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), - [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), - [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), - [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2504), - [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2504), - [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2399), - [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), - [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), - [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6310), - [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), - [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), - [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5611), - [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7398), - [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), - [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), - [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7454), - [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5515), - [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2587), - [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5699), - [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5700), - [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), - [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4457), - [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4457), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5136), + [79] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6562), + [81] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), + [83] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4965), + [85] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), + [87] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2522), + [89] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2524), + [91] = {.entry = {.count = 1, .reusable = false}}, SHIFT(784), + [93] = {.entry = {.count = 1, .reusable = true}}, SHIFT(784), + [95] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), + [97] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), + [99] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2448), + [101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2448), + [103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2326), + [105] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7528), + [107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2510), + [109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1780), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5738), + [117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1717), + [121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4423), + [123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7736), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5535), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2575), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), + [131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5724), + [133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5725), + [135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4464), + [137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4464), [139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4334), - [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2277), - [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6980), - [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2588), - [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2589), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(861), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), - [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7252), - [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7246), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), - [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), - [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), - [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7468), - [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6985), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4344), + [145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2290), + [147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6957), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2576), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2577), + [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6448), + [161] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7226), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7227), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4630), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4631), + [169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5899), + [171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6963), [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2057), - [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4633), [179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2058), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1220), - [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2766), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6989), - [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), - [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2747), - [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), - [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2591), - [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5020), - [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), - [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3710), - [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), - [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7430), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5244), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2088), - [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2153), - [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), - [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(785), - [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(807), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(797), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1703), - [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1932), - [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7464), - [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2131), - [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6464), - [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), - [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5666), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4329), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7540), - [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5513), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), - [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5641), - [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), - [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), - [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7193), - [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), - [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2748), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6459), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7293), - [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4575), - [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4583), - [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5895), - [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6655), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1976), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4603), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1977), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1213), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1978), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7043), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), - [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3423), + [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1209), + [183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2775), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6967), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2705), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3413), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), + [199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), + [201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3669), + [205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), + [207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7590), + [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2083), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2118), + [217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), + [219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(768), + [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(768), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(790), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(777), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1682), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), + [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1926), + [233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7447), + [235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2134), + [237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6208), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1410), + [241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5973), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1694), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4315), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7414), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7523), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5504), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5583), + [263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2259), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6694), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2554), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2562), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2691), + [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6207), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7199), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4538), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5866), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7514), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2039), + [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4546), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2053), + [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1211), + [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3218), + [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7106), + [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1078), + [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2670), + [305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3407), [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2570), - [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), - [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5950), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7391), + [309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4970), + [311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5902), + [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7626), [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5486), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3227), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1677), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5161), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1510), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4051), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2705), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5171), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4292), - [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5143), - [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5029), - [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5610), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5927), - [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), - [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), - [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4543), - [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2443), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7257), - [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2635), - [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2629), - [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), - [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7551), - [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7721), - [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), - [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4705), - [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6623), - [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7294), - [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2144), - [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4870), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2145), - [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), - [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1905), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7348), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1135), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), - [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2630), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5066), - [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6203), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(791), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), - [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), - [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4391), - [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4342), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5735), - [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2650), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), - [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5826), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1697), - [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4894), - [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4895), - [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1826), - [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6187), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), - [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2451), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(794), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), - [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3853), - [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4498), - [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1753), - [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2605), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3157), - [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3926), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), - [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), - [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2028), - [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), - [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(760), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(631), - [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5116), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6735), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4780), - [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1353), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1892), - [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4555), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), - [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2092), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4259), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1789), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3853), - [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3960), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1853), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7521), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4360), - [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2813), - [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7496), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(727), - [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(473), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(659), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2392), - [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4081), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2291), - [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), - [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1697), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1666), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7514), - [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4023), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), - [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1575), - [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5796), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), - [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), - [583] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5789), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2656), - [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6000), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6001), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6002), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2148), + [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5533), + [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3207), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1690), + [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5178), + [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), + [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2725), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3952), + [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5235), + [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1440), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4105), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5139), + [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5022), + [347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(492), + [349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(417), + [351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2054), + [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5753), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2633), + [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5963), + [359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5967), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5968), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4501), + [365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4501), + [367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2424), + [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7238), + [373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2634), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2657), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), + [379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7526), + [381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7703), + [383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4680), + [385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4708), + [387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6608), + [389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7288), + [391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2132), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4856), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2133), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1222), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1816), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7296), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1121), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2776), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3430), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), + [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5058), + [413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6142), + [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(781), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(803), + [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(789), + [423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1715), + [425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4387), + [427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4365), + [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5567), + [431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), + [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5929), + [435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5958), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5965), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(340), + [441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4881), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4882), + [445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), + [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1809), + [449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), + [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1123), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3537), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(654), + [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(775), + [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(775), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(804), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(794), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1722), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), + [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6776), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2495), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(698), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1327), + [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1736), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1911), + [489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3832), + [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4496), + [493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4604), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2005), + [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2642), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3165), + [501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3878), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4536), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4550), + [509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2547), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7537), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4241), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2415), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7629), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3926), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1494), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2887), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2249), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3110), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(489), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2839), + [549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3032), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(499), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(693), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1640), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4604), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1573), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1665), + [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4069), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1358), + [573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1871), + [575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2114), + [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5791), + [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 1, 0, 0), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5784), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2645), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5954), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2138), + [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 1, 0, 0), [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 1, 0, 0), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5791), - [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2661), - [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6016), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6017), - [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6018), - [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4543), - [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4543), - [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2443), - [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7257), - [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2635), - [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2629), - [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2759), - [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(861), - [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(49), - [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6459), - [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7551), - [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7721), - [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4684), - [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4705), - [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6623), - [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7294), - [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2144), - [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4870), - [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2151), - [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1229), - [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5230), - [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7348), - [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1144), - [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2762), - [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3444), - [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2630), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5066), - [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6203), - [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3710), - [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), - [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), - [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2088), - [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2153), - [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(800), - [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(800), - [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5785), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2647), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5982), + [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5983), + [611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5984), + [614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4501), + [617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4501), + [620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2424), + [623] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7238), + [626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2634), + [629] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2657), + [632] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2774), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [638] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6207), + [644] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7526), + [647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7703), + [650] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4680), + [653] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4708), + [656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6608), + [659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7288), + [662] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2132), + [665] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4856), + [668] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2140), + [671] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1222), + [674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), + [677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), + [680] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7296), + [683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1127), + [686] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), + [689] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3430), + [692] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2644), + [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5058), + [698] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6142), + [701] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3669), + [704] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), + [707] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5225), + [710] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2083), + [713] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2118), + [716] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(796), + [719] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(796), + [722] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(820), [725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(817), - [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1932), - [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7464), - [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2131), - [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6464), - [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1420), - [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5865), - [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5666), - [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7398), - [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1802), - [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4329), - [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7540), - [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5805), - [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2666), - [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6061), - [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6062), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6063), - [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4543), - [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4543), - [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2443), - [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7257), - [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2635), - [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2629), - [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2759), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(861), - [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(49), - [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6459), - [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7551), - [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7721), - [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4894), - [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4895), - [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6623), - [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7294), - [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2144), - [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5829), - [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1950), - [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1229), - [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(8), - [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5230), - [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6187), - [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1144), - [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2762), - [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3444), - [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2630), - [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5066), - [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6203), - [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3525), - [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4987), - [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5244), - [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2088), - [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2153), - [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(800), - [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(800), - [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [728] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), + [731] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), + [734] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1926), + [737] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7447), + [740] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2134), + [743] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6208), + [746] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1410), + [749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5973), + [752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5593), + [755] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7542), + [758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1694), + [761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4315), + [764] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7523), + [767] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5788), + [770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2652), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6037), + [776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6038), + [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6039), + [782] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4501), + [785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4501), + [788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2424), + [791] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7238), + [794] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2634), + [797] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2657), + [800] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2774), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(835), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(55), + [809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6207), + [812] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7526), + [815] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7703), + [818] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4881), + [821] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4882), + [824] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6608), + [827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7288), + [830] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2132), + [833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6014), + [836] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1937), + [839] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1222), + [842] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6), + [845] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5223), + [848] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6358), + [851] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1127), + [854] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2776), + [857] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3430), + [860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2644), + [863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5058), + [866] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6142), + [869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(3537), + [872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4972), + [875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5225), + [878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2083), + [881] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2118), + [884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(796), + [887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(796), + [890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(820), [893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(817), - [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1703), - [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1932), - [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7464), - [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2131), - [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6464), - [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1420), - [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5865), - [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5666), - [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7398), - [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1713), - [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4507), - [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7540), + [896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), + [899] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1682), + [902] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1926), + [905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7447), + [908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(2134), + [911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(6208), + [914] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1410), + [917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5973), + [920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(5593), + [923] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7542), + [926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(1722), + [929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(4446), + [932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), SHIFT_REPEAT(7523), [935] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 2, 0, 21), [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 2, 0, 21), - [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5398), + [939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), [941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), - [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5398), + [945] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5351), [948] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cell_path, 1, 0, 0), [950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cell_path, 1, 0, 0), [952] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 102), @@ -431678,7 +430710,7 @@ static const TSParseActionEntry ts_parse_actions[] = { [956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), [958] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 101), [960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 101), - [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), [964] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_string, 1, 0, 0), [966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_string, 1, 0, 0), [968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__str_double_quotes, 2, 0, 0), @@ -431689,107 +430721,107 @@ static const TSParseActionEntry ts_parse_actions[] = { [978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__str_double_quotes, 3, 0, 0), [980] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 148), [982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 148), - [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), - [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), - [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), - [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), - [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), + [984] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [986] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 1, 0, 0), + [988] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 3, 0, 147), + [990] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 3, 0, 147), + [992] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [998] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), [1000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), - [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(724), + [1002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), [1004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), - [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1349), - [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1402), - [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [1009] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__value, 1, 0, 0), REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), + [1012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1337), + [1014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1377), + [1016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), [1018] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_variable, 3, 0, 21), [1020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_variable, 3, 0, 21), - [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), - [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6140), - [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1950), - [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), - [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(800), - [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), - [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(835), + [1022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6291), + [1024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6240), + [1026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1937), + [1028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1127), + [1030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), + [1032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(796), + [1034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(820), [1036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(817), - [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2151), - [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), - [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), - [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), - [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), - [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4684), - [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4705), - [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4870), - [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2150), - [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5230), - [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7348), - [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), - [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3710), - [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), - [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7464), - [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), - [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), - [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), - [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1802), - [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4329), - [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), - [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), - [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4543), - [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(861), - [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), - [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7721), - [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4894), - [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4895), - [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5829), - [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1948), - [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1229), - [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(8), - [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5230), - [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6187), - [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1147), - [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3525), - [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4987), - [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5244), - [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2088), - [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2153), - [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(814), - [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(862), - [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(831), - [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7464), - [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2131), - [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), - [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5865), - [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5666), - [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1713), - [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4507), - [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), + [1038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2140), + [1040] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4501), + [1043] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4501), + [1046] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1052] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6240), + [1055] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7703), + [1058] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4881), + [1061] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4882), + [1064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6014), + [1067] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1935), + [1070] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [1073] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1076] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5223), + [1079] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6358), + [1082] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1139), + [1085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(3537), + [1088] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [1091] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [1094] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), + [1097] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), + [1100] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [1112] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [1115] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [1118] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [1121] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7447), + [1124] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [1127] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(6208), + [1130] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), + [1133] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5973), + [1136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [1139] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7542), + [1142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(1722), + [1145] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(4446), + [1148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), + [1151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4501), + [1154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4501), + [1157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(835), + [1160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [1163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6240), + [1166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7703), + [1169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4680), + [1172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4708), + [1175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4856), + [1178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2139), + [1181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1222), + [1184] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [1187] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5223), + [1190] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7296), + [1193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1139), + [1196] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(3669), + [1199] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4972), + [1202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5225), + [1205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2083), + [1208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2118), + [1211] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1214] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(799), + [1217] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(831), + [1220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(823), + [1223] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [1226] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [1229] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [1232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7447), + [1235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(2134), + [1238] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(6208), + [1241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), + [1244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5973), + [1247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(5593), + [1250] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7542), + [1253] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(1694), + [1256] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(4315), + [1259] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), [1262] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), [1265] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), [1268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), @@ -431798,5405 +430830,5390 @@ static const TSParseActionEntry ts_parse_actions[] = { [1274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), [1276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), [1278] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(191), - [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(764), - [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6306), - [1287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3512), - [1289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), - [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3546), - [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), - [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), - [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3916), - [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), - [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), - [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(431), - [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(472), - [1307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), - [1309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6346), - [1311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5446), - [1313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [1315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), - [1317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [1319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2809), - [1321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5552), - [1323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), - [1325] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7658), - [1328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4457), - [1331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4457), - [1334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(86), - [1337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6346), - [1340] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7430), - [1343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), - [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(81), - [1348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7460), - [1351] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3512), - [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3512), - [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3546), - [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3516), - [1363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1703), - [1366] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1703), - [1369] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6209), - [1372] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3916), - [1375] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(195), - [1378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7547), - [1381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), - [1385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), - [1387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), - [1391] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(279), - [1394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), - [1396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), - [1398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7577), - [1401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4457), - [1404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4457), - [1407] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(86), - [1410] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6306), - [1413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7430), - [1416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(90), - [1419] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7391), - [1422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3512), - [1425] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3512), - [1428] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3546), - [1431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3516), - [1434] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1703), - [1437] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1703), - [1440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6209), - [1443] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3916), - [1446] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(193), - [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7547), - [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), - [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1156), - [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), - [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), - [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1177), - [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1948), - [1466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1182), - [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), - [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1235), - [1472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1227), - [1474] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(298), - [1477] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(292), - [1480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), - [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), - [1484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), - [1486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1207), - [1488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), - [1492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [1495] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(306), - [1498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), - [1500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), - [1504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), - [1506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), - [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), - [1512] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), - [1519] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), - [1523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), - [1527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), - [1529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1165), - [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1165), - [1535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), - [1537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1175), - [1539] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), - [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6382), - [1543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [1545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(503), - [1547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), - [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), - [1553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), - [1555] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), - [1557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(814), - [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(814), - [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), - [1563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), - [1565] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), - [1569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), - [1573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2150), - [1575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), - [1579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1162), - [1581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), - [1583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), - [1585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), - [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), - [1591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(319), - [1593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), - [1595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), - [1599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), - [1601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(340), - [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6376), - [1605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [1607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(593), - [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(360), - [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), - [1613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), - [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(365), - [1617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6385), - [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [1621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(391), - [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(524), - [1625] = {.entry = {.count = 1, .reusable = false}}, SHIFT(456), - [1627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), - [1629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), - [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), - [1633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), - [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(606), - [1637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), - [1639] = {.entry = {.count = 1, .reusable = false}}, SHIFT(447), - [1641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), - [1643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), - [1645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6379), - [1647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [1649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), - [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(464), - [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(572), - [1655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(519), - [1657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), - [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(502), - [1661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(675), - [1663] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), - [1665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), - [1667] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), - [1671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(345), - [1675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), - [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(328), - [1679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), - [1681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), - [1683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [1689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(531), - [1691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(533), - [1693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), - [1695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), - [1697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(747), - [1699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), - [1701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(390), - [1703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(534), - [1705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(486), - [1707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), - [1709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), - [1711] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), - [1713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), - [1715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5401), - [1717] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), - [1719] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), + [1283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [1285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6398), + [1287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(480), + [1289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3501), + [1291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), + [1293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), + [1295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3503), + [1297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6144), + [1299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), + [1301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), + [1303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), + [1305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), + [1307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7628), + [1310] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4464), + [1313] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(4464), + [1316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(82), + [1319] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6428), + [1322] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7590), + [1325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), + [1327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(71), + [1330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7555), + [1333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3501), + [1336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3501), + [1339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3511), + [1342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3503), + [1345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1682), + [1348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(1682), + [1351] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(6144), + [1354] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(3895), + [1357] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(192), + [1360] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 53), SHIFT_REPEAT(7518), + [1363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7628), + [1365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6428), + [1367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), + [1369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [1371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), + [1373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [1375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5548), + [1377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2862), + [1379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2805), + [1381] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7514), + [1384] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4464), + [1387] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4464), + [1390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(82), + [1393] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6398), + [1396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7590), + [1399] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(57), + [1402] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7626), + [1405] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3501), + [1408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3501), + [1411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3511), + [1414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3503), + [1417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1682), + [1420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(1682), + [1423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6144), + [1426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(3895), + [1429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(193), + [1432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7518), + [1435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat2, 2, 0, 0), + [1439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 2, 0, 0), + [1441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 3, 0, 0), + [1443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body, 4, 0, 0), + [1445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), + [1449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(256), + [1452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1151), + [1454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [1456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), + [1458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), + [1460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1184), + [1462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1162), + [1464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), + [1466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1159), + [1468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1198), + [1470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1173), + [1472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), + [1474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1935), + [1476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1172), + [1478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1172), + [1480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1216), + [1482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1202), + [1484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), + [1488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(1903), + [1491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 2, 0, 0), SHIFT_REPEAT(312), + [1494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [1497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 2, 0, 0), + [1501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [1503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [1505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(292), + [1508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 3, 0, 0), + [1510] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 3, 0, 0), + [1512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shebang, 2, 0, 0), + [1514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shebang, 2, 0, 0), + [1516] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1520] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 1, 0, 0), REDUCE(aux_sym__parenthesized_body_repeat1, 1, 0, 0), + [1523] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__parenthesized_body_repeat2, 3, 0, 0), + [1527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [1529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 39), + [1531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6457), + [1533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [1535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(507), + [1537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), + [1539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), + [1541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(361), + [1543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 39), + [1545] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 2, 0, 0), + [1547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 38), + [1549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(645), + [1551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), + [1553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(464), + [1555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), + [1557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 38), + [1559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), + [1561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [1563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(578), + [1565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), + [1567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(364), + [1569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), + [1571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(376), + [1573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1575] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 4, 0, 0), + [1577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6460), + [1579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [1581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), + [1583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), + [1585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(462), + [1587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 134), + [1589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 134), + [1591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 4, 0, 0), + [1593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 2, 0, 0), + [1597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 2, 0, 0), + [1601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(330), + [1603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [1605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 1, 0, 0), + [1609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), + [1611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), + [1613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(799), + [1615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), + [1617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(831), + [1619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), + [1621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), + [1623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1147), + [1625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1147), + [1627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), + [1629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1163), + [1631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_pipes, 3, 0, 0), + [1635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1148), + [1637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1148), + [1639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1189), + [1641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1156), + [1643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2139), + [1645] = {.entry = {.count = 1, .reusable = false}}, SHIFT(729), + [1647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), + [1649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(423), + [1651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(518), + [1653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(453), + [1655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(350), + [1657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(359), + [1659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(326), + [1661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(352), + [1663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number, 1, 0, 0), + [1665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [1667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [1671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(508), + [1673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(509), + [1675] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number, 1, 0, 0), + [1677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(569), + [1679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), + [1681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(656), + [1683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(573), + [1685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 3, 0, 0), + [1689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(344), + [1691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [1693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(468), + [1695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(468), + [1697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(554), + [1699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(516), + [1701] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 131), + [1703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 131), + [1705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 132), + [1707] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 132), + [1709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 133), + [1711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 133), + [1713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(571), + [1715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(571), + [1717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), + [1719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(670), [1721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), [1723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 2, 0, 0), - [1725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), - [1729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), - [1731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(384), - [1733] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), - [1737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), - [1739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [1741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(599), - [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(580), - [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(680), - [1747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(355), - [1749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(598), - [1751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(598), - [1753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(748), - [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(669), - [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), - [1761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), - [1763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(379), - [1765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), - [1769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(370), - [1771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5400), - [1773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(364), - [1775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(427), - [1777] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5401), - [1780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(374), - [1782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), - [1784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), - [1786] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), - [1788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), - [1790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), - [1792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5242), - [1794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), - [1796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(401), - [1798] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(848), - [1805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [1807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6247), - [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4284), - [1811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4297), - [1813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [1815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5080), - [1817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [1819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), - [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4198), - [1823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), - [1825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7601), - [1827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3802), - [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3858), - [1831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3834), - [1833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4441), - [1835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), - [1837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4349), - [1839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), - [1841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), - [1843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6082), - [1845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3922), - [1847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5897), - [1849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5766), - [1851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(860), - [1853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [1855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7005), - [1857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4358), - [1859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7582), - [1861] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), - [1865] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), - [1867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), - [1869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(322), - [1871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), - [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), - [1877] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5400), - [1880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(430), - [1882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), - [1884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(457), - [1886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5392), - [1888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(377), - [1890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(455), - [1892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), - [1894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), - [1896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), - [1898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), - [1900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), - [1902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(511), - [1904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), - [1906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(436), - [1908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(542), - [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), - [1912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), - [1914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5392), - [1917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [1919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), - [1921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(449), - [1923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(450), - [1925] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), - [1927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), - [1929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5240), - [1931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5240), - [1933] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), - [1935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), - [1937] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), - [1939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), - [1941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [1943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), - [1945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), - [1947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), - [1949] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), - [1951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), - [1953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), - [1955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), - [1957] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), - [1959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), - [1961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), - [1963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), - [1965] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), - [1967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), - [1969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), - [1971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), - [1973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), - [1975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), - [1977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 215), - [1979] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 215), - [1981] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), - [1983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), - [1985] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), - [1987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), - [1989] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 216), - [1991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 216), - [1993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 217), - [1995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 217), - [1997] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 215), - [1999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 215), - [2001] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 216), - [2003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 216), - [2005] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 236), - [2007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 236), - [2009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 217), - [2011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 217), - [2013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), - [2015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), - [2017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), - [2021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), - [2025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), - [2029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(845), - [2031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [2033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), - [2035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4305), - [2037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4373), - [2039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [2041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5135), - [2043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [2045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), - [2047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4331), - [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), - [2051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7481), - [2053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), - [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), - [2057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3862), - [2059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), - [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4540), - [2063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4394), - [2065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7542), - [2067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), - [2069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6527), - [2071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), - [2073] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5878), - [2075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5721), - [2077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(839), - [2079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), - [2081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4453), - [2083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7555), - [2085] = {.entry = {.count = 1, .reusable = false}}, SHIFT(491), - [2087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(543), - [2089] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 236), - [2091] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 236), - [2093] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), - [2095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), - [2097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), - [2099] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5399), - [2102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2104] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), - [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), - [2108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), - [2110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(506), - [2112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(507), - [2114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), - [2116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), - [2120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), - [2124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), - [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(323), - [2128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), - [2130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), - [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(501), - [2134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), - [2136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), - [2138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), - [2140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 164), - [2142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 164), - [2144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), - [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), - [2148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), - [2150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), - [2152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), - [2154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), - [2156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), - [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), - [2162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [2164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), - [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(546), - [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), - [2172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5237), - [2174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), - [2176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), - [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), - [2180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), - [2182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(676), - [2184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), - [2186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), - [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), - [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), - [2192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), - [2194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 174), - [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), - [2198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 174), - [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), - [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), - [2206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), - [2208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(346), - [2210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(574), - [2212] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5393), - [2215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(577), - [2217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), - [2221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), - [2225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), - [2229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), - [2235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), - [2237] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2239] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), - [2243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), - [2245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), - [2247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), - [2249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(347), - [2251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(347), - [2253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(348), - [2255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), - [2257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(349), - [2259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), - [2261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), - [2263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), - [2265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), - [2267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), - [2269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(582), - [2271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(678), - [2273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), - [2277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), - [2281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), - [2285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1200), - [2287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2289] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(662), - [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), - [2294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2296] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), - [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), - [2300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), - [2302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), - [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), - [2306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), - [2308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(657), - [2310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(679), - [2312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(658), - [2314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(670), - [2316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(750), - [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6874), - [2322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), - [2324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), - [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 1, 0, 19), - [2330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(587), - [2332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(749), - [2334] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(764), - [2337] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), - [2339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), - [2341] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), - [2343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), - [2345] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), - [2347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), - [2349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), - [2351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), - [2353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), - [2355] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), - [2357] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), - [2359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), - [2361] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), - [2363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), - [2365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), - [2367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), - [2369] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 165), - [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 165), - [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), - [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), - [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), - [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), - [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), - [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), - [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), - [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), - [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), - [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), - [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), - [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), - [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), - [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [1725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), + [1727] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_number_decimal, 4, 0, 0), + [1731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 2, 0, 0), + [1735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(363), + [1737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(380), + [1739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [1743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(575), + [1745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(576), + [1747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(632), + [1749] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 1, 0, 0), + [1753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [1755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), + [1757] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 3, 0, 0), + [1761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(360), + [1763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), + [1765] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), + [1768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(379), + [1770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(409), + [1772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 3, 0, 0), + [1776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(381), + [1778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(362), + [1780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), + [1782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(382), + [1784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), + [1786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(386), + [1788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(387), + [1790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5353), + [1793] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 87), + [1795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 3, 0, 0), + [1797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [1799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [1801] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 87), + [1803] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 3, 0, 0), + [1805] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 23), + [1807] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 2, 0, 0), + [1809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), + [1811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), + [1813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 23), + [1815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(410), + [1817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__immediate_decimal, 4, 0, 0), + [1821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), + [1823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(466), + [1825] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 3, 0, 0), + [1827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 3, 0, 0), + [1829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5352), + [1831] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 185), + [1833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 185), + [1835] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 183), + [1837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 183), + [1839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 212), + [1841] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 212), + [1843] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 184), + [1845] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 184), + [1847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 185), + [1849] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 185), + [1851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 213), + [1853] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 213), + [1855] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 214), + [1857] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 214), + [1859] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 212), + [1861] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 212), + [1863] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 213), + [1865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 213), + [1867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 233), + [1869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 233), + [1871] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 3, 0, 0), + [1873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 3, 0, 0), + [1875] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 214), + [1877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 214), + [1879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 233), + [1881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 233), + [1883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5345), + [1885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 4, 0, 103), + [1887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 4, 0, 103), + [1889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(332), + [1891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [1893] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 149), + [1895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 149), + [1897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(455), + [1899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(527), + [1901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 152), + [1903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 152), + [1905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [1910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(827), + [1912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [1914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6359), + [1916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4097), + [1918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), + [1920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), + [1922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5067), + [1924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [1926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5073), + [1928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4189), + [1930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4157), + [1932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7570), + [1934] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), + [1936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3828), + [1938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3813), + [1940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4415), + [1942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4354), + [1944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4356), + [1946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7553), + [1948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4190), + [1950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), + [1952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3891), + [1954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5914), + [1956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5635), + [1958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(840), + [1960] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [1962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6978), + [1964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), + [1966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7565), + [1968] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 149), + [1970] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 149), + [1972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(458), + [1974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(459), + [1976] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 2, 0, 0), + [1978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 2, 0, 0), + [1980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(493), + [1982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), + [1984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), + [1986] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 183), + [1988] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 183), + [1990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), + [1992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(547), + [1994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), + [1996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(500), + [1998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 184), + [2000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 184), + [2002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 1, 0, 0), + [2004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 2, 0, 0), + [2006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 2, 0, 0), + [2008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 2, 0, 0), + [2010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 2, 0, 0), + [2012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 3, 0, 0), + [2016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), + [2018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), + [2020] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 2, 0, 0), + [2024] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 2, 0, 21), + [2028] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 3, 0, 0), + [2030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 3, 0, 0), + [2032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5345), + [2035] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 2, 0, 0), + [2039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_parenthesized_immediate, 3, 0, 0), + [2043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_parenthesized, 4, 0, 0), + [2047] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 84), + [2049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(333), + [2051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(333), + [2053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 84), + [2055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(517), + [2057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(568), + [2059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 2, 0, 22), + [2061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), + [2063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), + [2065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 2, 0, 22), + [2067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(529), + [2069] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5352), + [2072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 86), + [2074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(335), + [2076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), + [2078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 86), + [2080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 85), + [2082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(334), + [2084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(334), + [2086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 85), + [2088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [2090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [2092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), + [2094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), + [2096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 1, 0, 0), + [2100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(844), + [2102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [2104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6326), + [2106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4338), + [2108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4335), + [2110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(10), + [2112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), + [2114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [2116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5126), + [2118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4302), + [2120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4300), + [2122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7658), + [2124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), + [2126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3870), + [2128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3851), + [2130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4591), + [2132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4388), + [2134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4469), + [2136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7525), + [2138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4311), + [2140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), + [2142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), + [2144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5839), + [2146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5612), + [2148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(832), + [2150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6725), + [2152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4510), + [2154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7538), + [2156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 114), + [2158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 114), + [2160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 3, 0, 119), + [2162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 3, 0, 119), + [2164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 4, 0, 164), + [2166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 4, 0, 164), + [2168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(503), + [2170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 123), + [2172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 4, 0, 0), + [2174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 123), + [2176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), + [2178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(563), + [2180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 174), + [2182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__val_range_with_end, 5, 0, 0), + [2184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 174), + [2186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__val_range, 5, 0, 0), + [2188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 39), + [2190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 39), + [2192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 2, 0, 40), + [2198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 2, 0, 50), + [2200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_duration, 2, 0, 40), + [2202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_duration, 2, 0, 40), + [2204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(579), + [2206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(664), + [2208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 14), + [2212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(510), + [2214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(662), + [2216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_bool, 1, 0, 0), + [2218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_bool, 1, 0, 0), + [2220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(570), + [2222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), + [2224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(338), + [2226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 1, 0, 0), + [2232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_anonymous_prefix, 1, 0, 0), + [2234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), + [2236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5209), + [2238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(555), + [2240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 0), + [2244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 3, 0, 104), + [2248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 0), + [2252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record_with_expr, 4, 0, 104), + [2256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), + [2258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(337), + [2260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), + [2262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(351), + [2264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(351), + [2266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), + [2268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [2270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(631), + [2272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(694), + [2274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(748), + [2276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 1, 0, 19), + [2278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(680), + [2280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6871), + [2284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_filesize, 1, 0, 0), + [2286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 1, 0, 0), + [2290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_record, 2, 0, 0), + [2294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(562), + [2296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), + [2298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), + [2300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 169), + [2302] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 169), + [2304] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 170), + [2306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 170), + [2308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 171), + [2310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 171), + [2312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), + [2314] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), + [2316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 19), + [2320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_record_body_repeat1, 2, 0, 19), + [2322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), + [2326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), + [2330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 172), + [2332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 172), + [2334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), + [2336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), + [2338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), + [2340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), + [2342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), + [2344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), + [2346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), + [2348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), + [2350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), + [2352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), + [2354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 51), + [2356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 52), + [2358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), + [2360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), + [2362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), + [2364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), + [2366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2368] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(680), + [2371] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), + [2373] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 212), + [2375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 212), + [2377] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 213), + [2379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 213), + [2381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 214), + [2383] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 214), + [2385] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 233), + [2387] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 233), + [2389] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 173), + [2391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 173), + [2393] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), + [2395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), + [2397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), + [2399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), [2401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6852), - [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), - [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), - [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), - [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), - [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), - [2415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), - [2419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), - [2423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), - [2427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 3, 0, 0), - [2429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 3, 0, 0), - [2431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 3, 0, 71), - [2435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 3, 0, 71), - [2439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_binary, 4, 0, 128), - [2441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_binary, 4, 0, 128), - [2443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 5, 0, 103), - [2445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 5, 0, 103), - [2447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 6, 0, 152), - [2449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 6, 0, 152), - [2451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 7, 0, 149), - [2453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 7, 0, 149), - [2455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), - [2459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 184), - [2461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 184), - [2463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 185), - [2465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 185), - [2467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 215), - [2469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 215), - [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 216), - [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 216), - [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 9, 0, 217), - [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 9, 0, 217), - [2479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 10, 0, 236), - [2481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 10, 0, 236), - [2483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), - [2487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 17), - [2489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 17), - [2491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_entry, 1, 0, 18), - [2493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_record_entry, 1, 0, 18), - [2495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(751), - [2497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), - [2499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), - [2501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), - [2505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_table, 8, 0, 183), - [2507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_table, 8, 0, 183), - [2509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record_variable, 2, 0, 0), - [2513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), - [2517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(783), - [2519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(776), - [2521] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), - [2525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(781), - [2527] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), - [2531] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1941), - [2534] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(776), - [2537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2745), - [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(767), - [2541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), - [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), - [2547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6354), - [2549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [2551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4865), - [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), - [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2941), - [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), - [2559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2389), - [2561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2389), - [2563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), - [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2466), - [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3045), - [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2963), - [2571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2977), - [2573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7622), - [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2917), - [2577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6338), - [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), - [2581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5941), - [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5745), - [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), - [2587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7345), - [2589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7345), - [2591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2965), - [2593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), - [2595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), - [2597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), - [2601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(782), - [2603] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(783), - [2606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), - [2608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(850), - [2611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(46), - [2614] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6332), - [2617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1611), - [2620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1609), - [2623] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(16), - [2626] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5093), - [2629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5097), - [2632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1598), - [2635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1605), - [2638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1241), - [2641] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1241), - [2644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1327), - [2647] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1300), - [2650] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1750), - [2653] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1704), - [2656] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1648), - [2659] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7774), - [2662] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1604), - [2665] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6201), - [2668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1786), - [2671] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5923), - [2674] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5619), - [2677] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7251), - [2680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7251), - [2683] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1643), - [2686] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7634), - [2689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(795), - [2691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(811), - [2693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), - [2695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(850), - [2697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [2699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6332), - [2701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1611), - [2703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), - [2705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [2707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5093), - [2709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5097), - [2711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), - [2713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), - [2715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1241), - [2717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), - [2719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1327), - [2721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1300), - [2723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), - [2725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1704), - [2727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), - [2729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7774), - [2731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), - [2733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6201), - [2735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1786), - [2737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5923), - [2739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5619), - [2741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7251), - [2743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7251), - [2745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1643), - [2747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7634), - [2749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), - [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), - [2753] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), - [2757] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2904), - [2760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), - [2762] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2904), - [2765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), - [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2904), - [2770] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [2772] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(850), - [2775] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(46), - [2778] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6332), - [2781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1611), - [2784] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1609), - [2787] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(16), - [2790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5093), - [2793] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5097), - [2796] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1598), - [2799] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1605), - [2802] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), - [2805] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1241), - [2808] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1327), - [2811] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1300), - [2814] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1750), - [2817] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1704), - [2820] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1648), - [2823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7774), - [2826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1604), - [2829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6201), - [2832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1786), - [2835] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5923), - [2838] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5619), - [2841] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7251), - [2844] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7251), - [2847] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1643), - [2850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7634), - [2853] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2855] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), - [2857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2904), - [2860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), - [2862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(771), - [2864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), - [2866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(844), - [2869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(55), - [2872] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6076), - [2875] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1675), - [2878] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1641), - [2881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(11), - [2884] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5133), - [2887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5144), - [2890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1698), - [2893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1701), - [2896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [2899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1255), - [2902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1342), - [2905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1326), - [2908] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1944), - [2911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1805), - [2914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1765), - [2917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7522), - [2920] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1669), - [2923] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6111), - [2926] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1945), - [2929] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5906), - [2932] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5798), - [2935] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1710), - [2938] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7595), - [2941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), - [2943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [2945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), - [2947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), - [2949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), - [2951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [2953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), - [2955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5144), - [2957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1698), - [2959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), - [2961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1255), - [2963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), - [2965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), - [2967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), - [2969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1944), - [2971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), - [2973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1765), - [2975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), - [2977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1669), - [2979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), - [2981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1945), - [2983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5906), - [2985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5798), - [2987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1710), - [2989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), - [2991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(798), - [2993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(813), - [2995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(792), - [2997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), - [2999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), - [3001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), - [3003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(796), - [3005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), - [3007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(799), - [3009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(808), - [3011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), - [3013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), - [3015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), - [3017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(801), - [3019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), - [3021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), - [3023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(832), - [3025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7755), - [3027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7755), - [3029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), - [3031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), - [3033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), - [3035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(869), - [3037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(870), - [3039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), - [3041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(823), - [3043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), - [3045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(826), - [3047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), - [3049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7386), - [3051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7386), - [3053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4778), - [3055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), - [3057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), - [3059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(868), - [3061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(865), - [3063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), - [3065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7479), - [3067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7479), - [3069] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4532), - [3071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(866), - [3073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(867), - [3075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(871), - [3077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(864), - [3079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), - [3081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(855), - [3083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(879), - [3085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(877), - [3087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(840), - [3089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), - [3091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), - [3093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [3095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6179), - [3097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [3099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), - [3101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), - [3103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6093), - [3105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), - [3107] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4900), - [3109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4900), - [3111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), - [3113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), - [3115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7071), - [3117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7014), - [3119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6411), - [3121] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7561), - [3123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6108), - [3125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6186), - [3127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), - [3129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7047), - [3131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), - [3133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4031), - [3135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), - [3137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5855), - [3139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5567), - [3141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), - [3143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4100), - [3145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5449), - [3147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2711), - [3149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3974), - [3151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), - [3153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), - [3155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4283), - [3157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5078), - [3159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4997), - [3161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2026), - [3163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(467), - [3165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(398), - [3167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(893), - [3169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(892), - [3171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), - [3173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), - [3175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5848), - [3177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7507), - [3179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7507), - [3181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4437), - [3183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), - [3185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), - [3187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4590), - [3189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7769), - [3191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7769), - [3193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4547), - [3195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), - [3197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), - [3199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5101), - [3201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5104), - [3203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3252), - [3205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), - [3207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2934), - [3209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2934), - [3211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), - [3213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), - [3215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3267), - [3217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), - [3219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), - [3221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5085), - [3223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), - [3225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2091), - [3227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), - [3229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), - [3231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), - [3233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1597), - [3235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1536), - [3237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2298), - [3239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2096), - [3241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), - [3243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5094), - [3245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), - [3247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), - [3249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), - [3251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3421), - [3253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), - [3255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3439), - [3257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3567), - [3259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), - [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(843), - [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(53), - [3267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6179), - [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6), - [3273] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5122), - [3276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(90), - [3279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5128), - [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6093), - [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6210), - [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7391), - [3291] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4900), - [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4900), - [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5124), - [3300] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5026), - [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7071), - [3306] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7014), - [3309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6411), - [3312] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7561), - [3315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6108), - [3318] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6186), - [3321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5129), - [3324] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5941), - [3327] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5745), - [3330] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(838), - [3333] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7345), - [3336] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7345), - [3339] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7047), - [3342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7519), - [3345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2904), - [3347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), - [3349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), - [3351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2176), - [3353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2281), - [3355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), - [3357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1528), - [3359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1662), - [3361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), - [3363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2422), - [3365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2218), - [3367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2222), - [3369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5096), - [3371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5100), - [3373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3256), - [3375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3268), - [3377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3024), - [3379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3024), - [3381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), - [3383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), - [3385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3274), - [3387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), - [3389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5105), - [3391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), - [3393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3630), - [3395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3672), - [3397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), - [3399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3441), - [3401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), - [3403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), - [3405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), - [3407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3670), - [3409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), - [3411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4870), - [3413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2145), - [3415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1229), - [3417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7348), - [3419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2088), - [3421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2153), - [3423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2948), - [3425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2948), - [3427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2900), - [3429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2861), - [3431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), - [3433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), - [3435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4807), - [3437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2103), - [3439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), - [3441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7230), - [3443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2485), - [3445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), - [3447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2148), - [3449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6525), - [3451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5103), - [3453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), - [3455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5106), - [3457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), - [3459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3982), - [3461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3782), - [3463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), - [3465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), - [3467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), - [3469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), - [3471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4002), - [3473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1152), - [3477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), - [3479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), - [3481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6400), - [3483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5156), - [3485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), - [3487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5102), - [3489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4107), - [3491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), - [3493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), - [3495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), - [3497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3829), - [3499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3817), - [3501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4295), - [3503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4035), - [3505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), - [3510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1152), - [3513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), - [3515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2151), - [3517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1158), - [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), - [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2150), - [3525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1158), - [3530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), - [3532] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7398), - [3535] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1160), - [3538] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7398), - [3541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), - [3543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3175), - [3545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1211), - [3547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6570), - [3549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [3551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4631), - [3553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6674), - [3555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), - [3557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5079), - [3559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6454), - [3561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6272), - [3563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), - [3565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5037), - [3567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), - [3569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5039), - [3571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6106), - [3573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6433), - [3575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), - [3577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), - [3579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), - [3581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1167), - [3583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), - [3585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3097), - [3587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), - [3589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [3591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6350), - [3593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [3595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5089), - [3597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), - [3599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4519), - [3601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4398), - [3603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3844), - [3605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), - [3607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3924), - [3609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3893), - [3611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4672), - [3613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4679), - [3615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), - [3617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7583), - [3619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4397), - [3621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6226), - [3623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4074), - [3625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5917), - [3627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5603), - [3629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7354), - [3631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7354), - [3633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4682), - [3635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7647), - [3637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3639] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), - [3641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1180), - [3643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), - [3645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4668), - [3647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1159), - [3649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1201), - [3651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1154), - [3653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), - [3655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4827), - [3657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), - [3659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1197), - [3661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), - [3663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1212), - [3665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), - [3667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1217), - [3669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1192), - [3671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), - [3673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), - [3675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1198), - [3677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), - [3679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(857), - [3681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [3683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [3685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), - [3687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), - [3689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(530), - [3691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), - [3693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(318), - [3695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [3697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(350), - [3699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), - [3701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(627), - [3703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(555), - [3705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(594), - [3707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7671), - [3709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(510), - [3711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6386), - [3713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), - [3715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5946), - [3717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), - [3719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(556), - [3721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7714), - [3723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5115), - [3725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), - [3727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6578), - [3729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6589), - [3731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), - [3733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5033), - [3735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5270), - [3737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), - [3739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), - [3741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6457), - [3743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6949), - [3745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), - [3747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [3749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6376), - [3751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), - [3753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5114), - [3755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5118), - [3757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(561), - [3759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(576), - [3761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), - [3763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), - [3765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(354), - [3767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), - [3769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), - [3771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(671), - [3773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(624), - [3775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7661), - [3777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(583), - [3779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), - [3781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(730), - [3783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5942), - [3785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), - [3787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(672), - [3789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7706), - [3791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), - [3793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1209), - [3795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), - [3797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1336), - [3799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1337), - [3801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1341), - [3803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1325), - [3805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), - [3807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1332), - [3809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1232), - [3811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1941), - [3813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(766), - [3815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7064), - [3817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [3819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), - [3821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [3823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4971), - [3825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5140), - [3827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3053), - [3829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3086), - [3831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), - [3833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2586), - [3835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2674), - [3837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), - [3839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), - [3841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3058), - [3843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3056), - [3845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7609), - [3847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3047), - [3849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6322), - [3851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), - [3853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3167), - [3855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), - [3857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), - [3859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [3861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6109), - [3863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [3865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5112), - [3867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), - [3869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7229), - [3871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), - [3873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), - [3875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), - [3877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), - [3879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5301), - [3881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), - [3883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7261), - [3885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), - [3887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4901), - [3889] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1211), - [3892] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [3895] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6570), - [3898] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [3901] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6674), - [3904] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5077), - [3907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5079), - [3910] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6454), - [3913] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6272), - [3916] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), - [3919] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5037), - [3922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5262), - [3925] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5039), - [3928] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1703), - [3931] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6106), - [3934] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1932), - [3937] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7464), - [3940] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6433), - [3943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6464), - [3946] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1420), - [3949] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), - [3952] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7251), - [3955] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1893), - [3958] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7540), - [3961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1358), - [3963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), - [3965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), - [3967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1395), - [3969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [3971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1589), - [3973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), - [3975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1333), - [3977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1381), - [3979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), - [3981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [3983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1634), - [3985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1355), - [3987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), - [3989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1457), - [3991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), - [3993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5367), - [3995] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6290), - [3997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [3999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), - [4001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), - [4003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1596), - [4005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1548), - [4007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1733), - [4009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1397), - [4011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), - [4013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1526), - [4015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), - [4017] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1242), - [4019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1324), - [4021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1272), - [4023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), - [4025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), - [4027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7771), - [4029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [4031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), - [4033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5803), - [4035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4331), - [4037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), - [4039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), - [4041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3888), - [4043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), - [4045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4797), - [4047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4540), - [4049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), - [4051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), - [4053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3997), - [4055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5878), - [4057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), - [4059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), - [4061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7378), - [4063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6327), - [4065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [4067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5749), - [4069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5751), - [4071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5628), - [4073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), - [4075] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4972), - [4077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4972), - [4079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5126), - [4081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), - [4083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5992), - [4085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5629), - [4087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), - [4089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), - [4091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), - [4093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5771), - [4095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), - [4097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), - [4099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1799), - [4101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1320), - [4103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), - [4105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), - [4107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), - [4109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), - [4111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1793), - [4113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1849), - [4115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6337), - [4117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), - [4119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), - [4121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), - [4123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5021), - [4125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5954), - [4127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1833), - [4129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), - [4131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1448), - [4133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1629), - [4135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1533), - [4137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7434), - [4139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), - [4141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), - [4143] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5367), - [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [4148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), - [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1512), - [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1667), - [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), - [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), - [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), - [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6200), - [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6613), - [4164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), - [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4998), - [4168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5245), - [4170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5073), - [4172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6468), - [4174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6599), - [4176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1318), - [4178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1374), - [4180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1261), - [4182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), - [4184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), - [4186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), - [4188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [4190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5588), - [4192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5589), - [4194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6885), - [4196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6652), - [4198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5065), - [4200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), - [4202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), - [4204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5261), - [4206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), - [4208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7072), - [4210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6799), - [4212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6082), - [4214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3922), - [4216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5897), - [4218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5766), - [4220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), - [4222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7677), - [4224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6321), - [4226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [4228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5723), - [4230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5724), - [4232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2945), - [4234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), - [4236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2338), - [4238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2338), - [4240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2575), - [4242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2533), - [4244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3026), - [4246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2932), - [4248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2908), - [4250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7556), - [4252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2936), - [4254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6142), - [4256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3030), - [4258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5912), - [4260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), - [4262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2949), - [4264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), - [4266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), - [4268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4198), - [4270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4128), - [4272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3802), - [4274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), - [4276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3834), - [4278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), - [4280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4132), - [4282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7741), - [4284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5604), - [4286] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), - [4288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1655), - [4290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), - [4292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1262), - [4294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), - [4296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1364), - [4298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1316), - [4300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1689), - [4302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), - [4304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), - [4306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(852), - [4308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), - [4310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6362), - [4312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [4314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), - [4316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5621), - [4318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5505), - [4320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5542), - [4322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4465), - [4324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4465), - [4326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4834), - [4328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4570), - [4330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), - [4332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), - [4334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), - [4336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7635), - [4338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5523), - [4340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6347), - [4342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5406), - [4344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), - [4346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), - [4348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), - [4350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), - [4352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), - [4354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7594), - [4356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6366), - [4358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [4360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), - [4362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), - [4364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5347), - [4366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5423), - [4368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4321), - [4370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4321), - [4372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4695), - [4374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4466), - [4376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5531), - [4378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5408), - [4380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5351), - [4382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7648), - [4384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5291), - [4386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6355), - [4388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), - [4390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5939), - [4392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5647), - [4394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5534), - [4396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), - [4398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), - [4400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7129), - [4402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4868), - [4404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1555), - [4406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1555), - [4408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1806), - [4410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1700), - [4412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [4414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1234), - [4416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), - [4418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), - [4420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1562), - [4422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1690), - [4424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3123), - [4426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4903), - [4428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), - [4430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1365), - [4432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5385), - [4434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), - [4436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), - [4438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1642), - [4440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1876), - [4442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1795), - [4444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), - [4446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1384), - [4448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1344), - [4450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), - [4452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1375), - [4454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5419), - [4456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(1218), - [4459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), - [4461] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(47), - [4464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6342), - [4467] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(198), - [4470] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5120), - [4473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(5140), - [4476] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3053), - [4479] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3086), - [4482] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2586), - [4485] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2586), - [4488] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2674), - [4491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(2660), - [4494] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3144), - [4497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3058), - [4500] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3056), - [4503] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7609), - [4506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3047), - [4509] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(6322), - [4512] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3154), - [4515] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7345), - [4518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7345), - [4521] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(3167), - [4524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 197), SHIFT_REPEAT(7698), - [4527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1340), - [4529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1416), - [4531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1368), - [4533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1369), - [4535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1237), - [4537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), - [4539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1657), - [4541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), - [4543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), - [4545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1352), - [4547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), - [4549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5377), - [4551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [4553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2031), - [4555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), - [4557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1656), - [4559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1566), - [4561] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5385), - [4564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2080), - [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), - [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), - [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), - [4572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5432), - [4574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2155), - [4576] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5419), - [4579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1404), - [4581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), - [4583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), - [4585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), - [4587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6671), - [4589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6732), - [4591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5134), - [4593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), - [4595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5293), - [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5159), - [4599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), - [4601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6695), - [4603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1417), - [4605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5558), - [4607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5720), - [4609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), - [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), - [4613] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1783), - [4615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5377), - [4618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1875), - [4620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), - [4622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), - [4624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5226), - [4626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5226), - [4628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1473), - [4630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), - [4632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1451), - [4634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1452), - [4636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1796), - [4638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1797), - [4640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), - [4642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), - [4644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1540), - [4646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1239), - [4648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), - [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1419), - [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), - [4654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5432), - [4657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6140), - [4659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [4661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2301), - [4663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), - [4665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1887), - [4667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), - [4669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), - [4671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), - [4673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5381), - [4675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), - [4677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), - [4679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1538), - [4681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), - [4683] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), - [4685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1549), - [4687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5263), - [4689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), - [4691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), - [4693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), - [4695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), - [4697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), - [4699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1489), - [4701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1186), - [4703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1986), - [4705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2309), - [4707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2152), - [4709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1260), - [4711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), - [4713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), - [4715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), - [4717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1425), - [4719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), - [4721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1483), - [4723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1545), - [4725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2526), - [4727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), - [4729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2274), - [4731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5368), - [4733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [4735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [4737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1478), - [4739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1500), - [4741] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5381), - [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1577), - [4746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), - [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1613), - [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1240), - [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), - [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), - [4756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1649), - [4758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4760] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), - [4762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1535), - [4764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), - [4766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [4768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [4770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1306), - [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), - [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1290), - [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), - [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1297), - [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), - [4782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), - [4784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1531), - [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), - [4788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5223), - [4790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5223), - [4792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), - [4794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), - [4796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), - [4798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), - [4800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), - [4802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1351), - [4804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), - [4806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2086), - [4808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2087), - [4810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1906), - [4812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [4814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [4816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5432), - [4818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1248), - [4820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1339), - [4822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), - [4824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), - [4826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), - [4828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1807), - [4830] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), - [4832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4834] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), - [4836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), - [4838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), - [4840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1312), - [4842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), - [4844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), - [4846] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4848] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), - [4850] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), - [4854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), - [4856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), - [4858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), - [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), - [4866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [4868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1696), - [4872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), - [4874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [4878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), - [4880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), - [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), - [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1645), - [4886] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1640), - [4888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), - [4890] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), - [4892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), - [4894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1633), - [4896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5368), - [4899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4901] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), - [4903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1664), - [4905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1411), - [4907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1455), - [4909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2197), - [4911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2204), - [4913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2227), - [4915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1695), - [4917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1808), - [4919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5357), - [4921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1725), - [4923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1851), - [4925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), - [4927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), - [4929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), - [4931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), - [4933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1811), - [4935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1670), - [4937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1880), - [4939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), - [4941] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), - [4943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), - [4945] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), - [4947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), - [4949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6731), - [4951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [4953] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), - [4955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1637), - [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1951), - [4959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3955), - [4961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3955), - [4963] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), - [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2175), - [4967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6499), - [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3517), - [4971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3675), - [4973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3547), - [4975] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5357), - [4978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1798), - [4980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), - [4982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), - [4984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1707), - [4986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), - [4988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), - [4990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), - [4992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4994] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), - [4996] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), - [4998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), - [5000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), - [5002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1809), - [5004] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1941), - [5007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1258), - [5009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), - [5011] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), - [5013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6169), - [5015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6169), - [5017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2160), - [5019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7168), - [5021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), - [5023] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), - [5025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [5027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), - [5029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), - [5031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), - [5033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), - [5035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [5037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), - [5039] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), - [5041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), - [5043] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), - [5045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1868), - [5047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5220), - [5049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5220), - [5051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), - [5053] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), - [5055] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), - [5057] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), - [5059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1378), - [5061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), - [5063] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), - [5065] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), - [5067] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), - [5069] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), - [5071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7051), - [5073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), - [5075] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), - [5077] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), - [5079] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), - [5081] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), - [5083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), - [5085] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5088] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), - [5091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1898), - [5093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), - [5095] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), - [5097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1398), - [5099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5214), - [5101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5214), - [5103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1469), - [5105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1469), - [5107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1985), - [5109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), - [5111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), - [5113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), - [5115] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), - [5117] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), - [5121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), - [5123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5274), - [5125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5274), - [5127] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), - [5131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), - [5133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1418), - [5135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), - [5137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5168), - [5139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), - [5141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1386), - [5143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1386), - [5145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), - [5147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), - [5149] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5154] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), - [5158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), - [5160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), - [5164] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5166] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), - [5168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2119), - [5170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), - [5172] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5174] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), - [5176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1498), - [5178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5357), - [5180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), - [5182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1957), - [5184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2210), - [5186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), - [5190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), - [5192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), - [5194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3491), - [5196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), - [5198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), - [5200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), - [5202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5211), - [5204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5211), - [5206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), - [5210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), - [5214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), - [5218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2171), - [5220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), - [5224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1537), - [5226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1537), - [5228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1492), - [5230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1492), - [5232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1480), - [5234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1480), - [5236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1520), - [5238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1520), - [5240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), - [5244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6862), - [5246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6862), - [5248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3016), - [5250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6800), - [5252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), - [5256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), - [5258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5372), - [5260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), - [5264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6198), - [5266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), - [5270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5272] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), - [5274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), - [5278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), - [5282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [5284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2896), - [5286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2566), - [5288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), - [5290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2637), - [5292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), - [5296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), - [5300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), - [5304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), - [5306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5308] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), - [5310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5312] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), - [5314] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1941), - [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(899), - [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), - [5321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(899), - [5323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(895), - [5325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(897), - [5327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(898), - [5329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(900), - [5331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), - [5333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(895), - [5335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), - [5337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(897), - [5339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), - [5341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), - [5343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), - [5345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), - [5347] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1941), - [5350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1033), - [5352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(978), - [5354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), - [5356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(978), - [5358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1033), - [5360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), - [5362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(902), - [5364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(902), - [5366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2450), - [5368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2599), - [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), - [5372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), - [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), - [5376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), - [5378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), - [5380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(901), - [5382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6373), - [5384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [5386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), - [5388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), - [5390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2823), - [5392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(969), - [5394] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(1941), - [5397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2322), - [5399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2585), - [5401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1941), - [5404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2470), - [5406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2576), - [5408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2388), - [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2573), - [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5354), - [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7153), - [5416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), - [5418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1061), - [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), - [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), - [5424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1059), - [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), - [5428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1058), - [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), - [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), - [5434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), - [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), - [5438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), - [5440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), - [5442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), - [5444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), - [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), - [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3055), - [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2694), - [5452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), - [5454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2867), - [5456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), - [5458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3052), - [5460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), - [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2848), - [5464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2788), - [5466] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5372), - [5469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2569), - [5471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2577), - [5473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [5475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2238), - [5477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2325), - [5479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), - [5481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2944), - [5483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), - [5485] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5354), - [5488] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), - [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1076), - [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), - [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), - [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1074), - [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), - [5500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1073), - [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), - [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), - [5506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), - [5508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), - [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), - [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1132), - [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), - [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2593), - [5518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2594), - [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), - [5522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), - [5524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2796), - [5526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), - [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2922), - [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2834), - [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6358), - [5534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [5536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2913), - [5538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2913), - [5540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3076), - [5542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2966), - [5544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), - [5546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3101), - [5548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3027), - [5550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2671), - [5552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2651), - [5554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2698), - [5556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5394), - [5558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), - [5560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2561), - [5562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2697), - [5564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), - [5566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2946), - [5568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3169), - [5570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3060), - [5572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2654), - [5574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2654), - [5576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6572), - [5578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), - [5580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7569), - [5582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2893), - [5584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2895), - [5586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2981), - [5588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2613), - [5590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), - [5592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6862), - [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6862), - [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3517), - [5601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3675), - [5604] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3547), - [5607] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6186), - [5610] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5129), - [5613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7519), - [5616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2581), - [5618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2675), - [5620] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5394), - [5623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5389), - [5625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), - [5627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), - [5629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), - [5631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2692), - [5633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), - [5635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6233), - [5637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2723), - [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7461), - [5641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5643] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), - [5645] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), - [5649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), - [5653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), - [5655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), - [5659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), - [5663] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), - [5665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), - [5667] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5383), - [5669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), - [5671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5239), - [5673] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2329), - [5675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2329), - [5677] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [5679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), - [5681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), - [5683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7311), - [5685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7355), - [5687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), - [5689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2803), - [5691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), - [5693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2688), - [5695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), - [5697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), - [5699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), - [5701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), - [5703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), - [5705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), - [5707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2851), - [5709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5389), - [5712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), - [5716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), - [5718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), - [5720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), - [5722] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5724] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), - [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5360), - [5729] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), - [5731] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2772), - [5734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), - [5736] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), - [5738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2792), - [5740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), - [5742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2415), - [5744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2532), - [5746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3061), - [5748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3062), - [5750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), - [5752] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [5757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [5759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6224), - [5761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5783), - [5763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5785), - [5765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7455), - [5767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5887), - [5769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5746), - [5771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2611), - [5773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5395), - [5775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), - [5777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3075), - [5779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3201), - [5781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), - [5783] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5785] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [5788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), - [5790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), - [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2906), - [5794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [5796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), - [5798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5613), - [5800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), - [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7676), - [5804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5935), - [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5704), - [5808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), - [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5383), - [5813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5387), - [5815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2827), - [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), - [5819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2865), - [5821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2866), - [5823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2842), - [5825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2925), - [5827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2855), - [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2779), - [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), - [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [5835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5710), - [5837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5711), - [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), - [5841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2784), - [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2924), - [5845] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2824), - [5848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), - [5850] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6149), - [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2919), - [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), - [5858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2551), - [5860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), - [5862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), - [5866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2852), - [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5391), - [5871] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2904), - [5874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 198), - [5876] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 198), - [5878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6755), - [5880] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2921), - [5883] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5885] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), - [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), - [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2539), - [5891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), - [5893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), - [5895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), - [5897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), - [5899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), - [5901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2927), - [5903] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5905] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), - [5908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), - [5910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6771), - [5912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2928), - [5914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5229), - [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5229), - [5918] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2919), - [5921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2541), - [5923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2541), - [5925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3257), - [5927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3130), - [5929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3211), - [5931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3200), - [5933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), - [5935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), - [5937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), - [5939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3233), - [5941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2931), - [5943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), - [5945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6257), - [5947] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6273), - [5949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6462), - [5951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), - [5953] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5395), - [5956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), - [5958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), - [5960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2935), - [5962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6956), - [5964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2549), - [5966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2549), - [5968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7120), - [5970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), - [5972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3269), - [5974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), - [5976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5225), - [5978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5225), - [5980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), - [5982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3111), - [5984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), - [5986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2600), - [5988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2970), - [5990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), - [5992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2523), - [5994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), - [5996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), - [5998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), - [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6651), - [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2899), - [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3100), - [6006] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5391), - [6009] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6011] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3198), - [6013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 16), - [6015] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3016), - [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), - [6020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), - [6022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), - [6024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2933), - [6026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), - [6028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), - [6030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3021), - [6032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2578), - [6034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2578), - [6036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3031), - [6038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3112), - [6040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2990), - [6042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), - [6044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), - [6046] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), - [6050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), - [6052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), - [6056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4869), - [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), - [6062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), - [6064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6778), - [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), - [6068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2846), - [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3250), - [6072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3235), - [6074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3069), - [6077] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4898), - [6079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4899), - [6081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), - [6083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), - [6085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3078), - [6087] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4617), - [6089] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4619), - [6091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3080), - [6093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4634), - [6095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), - [6097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), - [6101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4637), - [6103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4926), - [6105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3093), - [6107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3155), - [6109] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), - [6111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), - [6113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4927), - [6115] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3012), - [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3149), - [6119] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4871), - [6121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3113), - [6123] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3097), - [6126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3128), - [6128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3196), - [6130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6132] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), - [6135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), - [6137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6754), - [6139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), - [6141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), - [6143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3258), - [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), - [6147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3043), - [6149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3195), - [6151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3175), - [6154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3194), - [6156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), - [6158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 196), - [6160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 196), - [6162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3245), - [6164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3244), - [6166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3202), - [6168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3173), - [6170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3212), - [6172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3198), - [6174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), - [6178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), - [6182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 227), - [6184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 227), - [6186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 198), - [6188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 198), - [6190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3203), - [6192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), - [6194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 194), - [6196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 194), - [6198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2844), - [6200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), - [6202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), - [6204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 195), - [6206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5233), - [6208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), - [6210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), - [6212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3234), - [6214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3249), - [6216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3378), - [6218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3248), - [6220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5867), - [6222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5676), - [6224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), - [6226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [6228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5228), - [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), - [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2880), - [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), - [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3204), - [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3247), - [6240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), - [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), - [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [6246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [6249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3243), - [6251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3265), - [6253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), - [6255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), - [6257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), - [6259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), - [6261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3501), - [6263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7603), - [6265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1086), - [6267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), - [6269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), - [6271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1089), - [6273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), - [6275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), - [6277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), - [6279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1087), - [6281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), - [6283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), - [6285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), - [6287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1133), - [6289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5870), - [6291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2622), - [6293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), - [6295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4599), - [6297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), - [6299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), - [6301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), - [6303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(894), - [6305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), - [6307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), - [6309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), - [6311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(894), - [6313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), - [6315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(981), - [6317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(981), - [6319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(982), - [6321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), - [6323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), - [6325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), - [6327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), - [6329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), - [6331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), - [6333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6124), - [6335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1007), - [6337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), - [6339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), - [6341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), - [6343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1007), - [6345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), - [6347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1006), - [6349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1006), - [6351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1008), - [6353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), - [6355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), - [6357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), - [6359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), - [6361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), - [6363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), - [6365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), - [6367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), - [6369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), - [6371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), - [6373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3499), - [6375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3492), - [6377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), - [6379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), - [6381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), - [6383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1077), - [6385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), - [6387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), - [6389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1119), - [6391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), - [6393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1123), - [6395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), - [6397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1119), - [6399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1084), - [6401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), - [6403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), - [6405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), - [6407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1130), - [6409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), - [6411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3554), - [6413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), - [6415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), - [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1121), - [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4572), - [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4446), - [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4448), - [6425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3671), - [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), - [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), - [6431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), - [6433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5867), - [6436] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5676), - [6439] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5679), - [6442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3515), - [6444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3598), - [6446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3529), - [6448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), - [6450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), - [6452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6109), - [6454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), - [6456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), - [6458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), - [6460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5905), - [6462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5907), - [6464] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3477), - [6467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3379), - [6469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3405), - [6471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3539), - [6473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), - [6475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3590), - [6477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), - [6479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), - [6481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3487), - [6483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), - [6485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), - [6487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6400), - [6489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7645), - [6491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), - [6493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), - [6495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7427), - [6497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3403), - [6499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3420), - [6501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3588), - [6503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3589), - [6505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), - [6507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), - [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3488), - [6511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3476), - [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), - [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7559), - [6517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7589), - [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3497), - [6521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3501), - [6524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), - [6526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), - [6528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), - [6530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), - [6532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3511), - [6534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3394), - [6536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3394), - [6538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), - [6540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), - [6542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), - [6544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), - [6546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3519), - [6548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), - [6550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5241), - [6552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), - [6554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), - [6556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3432), - [6558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), - [6560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3543), - [6562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3422), - [6564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), - [6566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), - [6568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), - [6570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3521), - [6572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3601), - [6574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), - [6576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3563), - [6578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3528), - [6580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3530), - [6582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3535), - [6584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3610), - [6586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), - [6588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3603), - [6590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4052), - [6592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), - [6594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [6596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6170), - [6598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [6600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4130), - [6602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4130), - [6604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3731), - [6606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3731), - [6608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3604), - [6610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3660), - [6612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), - [6614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3450), - [6616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), - [6618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), - [6620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5232), - [6622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), - [6624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), - [6626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3451), - [6628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), - [6630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3452), - [6632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), - [6634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3453), - [6636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), - [6638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), - [6640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7679), - [6642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7679), - [6644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6086), - [6646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3735), - [6648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3735), - [6650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(914), - [6652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), - [6654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(916), - [6656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(917), - [6658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), - [6660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(921), - [6662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(922), - [6664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(917), - [6666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(915), - [6668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(923), - [6670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(924), - [6672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(925), - [6674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), - [6676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(940), - [6678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(941), - [6680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(942), - [6682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(943), - [6684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(944), - [6686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(940), - [6688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(947), - [6690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(948), - [6692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(943), - [6694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(941), - [6696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(949), - [6698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(950), - [6700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(951), - [6702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), - [6704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(918), - [6706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(945), - [6708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(919), - [6710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), - [6712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3715), - [6714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3715), - [6716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), - [6718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7630), - [6720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2663), - [6722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3741), - [6724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3741), - [6726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3747), - [6728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), - [6730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), - [6732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7696), - [6734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7194), - [6736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3717), - [6738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3717), - [6740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7451), - [6742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7451), - [6744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3986), - [6746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3740), - [6748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3740), - [6750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), - [6752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7488), - [6754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2706), - [6756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3743), - [6758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3743), - [6760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), - [6762] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), - [6764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7550), - [6766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7550), - [6768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [6770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(970), - [6772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(920), - [6774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(946), - [6776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), - [6778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), - [6780] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), - [6782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), - [6784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7415), - [6786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7415), - [6788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6760), - [6790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1101), - [6792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), - [6794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), - [6796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1104), - [6798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), - [6800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), - [6802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), - [6804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1102), - [6806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), - [6808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), - [6810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), - [6812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), - [6814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), - [6816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), - [6818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), - [6820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), - [6822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1078), - [6824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), - [6826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), - [6828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), - [6830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), - [6832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), - [6834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), - [6836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1081), - [6838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), - [6840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), - [6842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), - [6844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), - [6846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), - [6848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7619), - [6850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7619), - [6852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7422), - [6854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7422), - [6856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), - [6858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), - [6860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), - [6862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), - [6864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), - [6866] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), - [6868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), - [6870] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7694), - [6872] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2627), - [6874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7426), - [6876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7426), - [6878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), - [6880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1122), - [6882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), - [6884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), - [6886] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), - [6888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1143), - [6890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1138), - [6892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1143), - [6894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1137), - [6896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), - [6898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), - [6900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), - [6902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1145), - [6904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1141), - [6906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), - [6908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), - [6910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), - [6912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3967), - [6914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3814), - [6916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3848), - [6918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), - [6920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), - [6922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3948), - [6924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3914), - [6926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4049), - [6928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), - [6930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), - [6932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), - [6934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [6936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4299), - [6938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), - [6940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3861), - [6942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), - [6944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3890), - [6946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), - [6948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3801), - [6950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3781), - [6952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), - [6954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3913), - [6956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4038), - [6958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4000), - [6960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4004), - [6962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4004), - [6964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4139), - [6966] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4028), - [6968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4488), - [6970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), - [6972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3832), - [6974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3790), - [6976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), - [6978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), - [6980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3772), - [6982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), - [6984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), - [6986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), - [6988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [6990] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4378), - [6992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), - [6994] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), - [6996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3978), - [6998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3920), - [7000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), - [7002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), - [7004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4242), - [7006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4242), - [7008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3822), - [7010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), - [7012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), - [7014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), - [7016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), - [7018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), - [7020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4037), - [7022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4319), - [7024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4112), - [7026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3810), - [7028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3849), - [7030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), - [7032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), - [7034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), - [7036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4072), - [7038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), - [7040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4336), - [7042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4336), - [7044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), - [7046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), - [7048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3836), - [7050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), - [7052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), - [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), - [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4172), - [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4231), - [7060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4315), - [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), - [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), - [7066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), - [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3856), - [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), - [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3867), - [7074] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), - [7077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6350), - [7079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [7081] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4474), - [7083] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3895), - [7085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3895), - [7087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), - [7089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), - [7091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), - [7093] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), - [7095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3871), - [7097] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), - [7099] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3894), - [7101] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5376), - [7103] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4164), - [7105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4164), - [7107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4468), - [7109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4312), - [7111] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4843), - [7113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5236), - [7115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), - [7117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3878), - [7119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3929), - [7121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), - [7123] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), - [7125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3774), - [7127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3855), - [7129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), - [7131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3800), - [7133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3812), - [7135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4385), - [7137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4310), - [7139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4539), - [7141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4512), - [7143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4512), - [7145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5369), - [7147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), - [7149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5231), - [7151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), - [7153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), - [7155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3915), - [7157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), - [7159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), - [7161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3988), - [7163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), - [7165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), - [7167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), - [7169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), - [7171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4012), - [7173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), - [7175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5376), - [7178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), - [7180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), - [7182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4530), - [7184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4535), - [7186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4585), - [7188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3918), - [7190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), - [7192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5343), - [7194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), - [7196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), - [7198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), - [7200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), - [7202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1157), - [7204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4952), - [7206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3404), - [7208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7333), - [7210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), - [7212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), - [7214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4041), - [7216] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5369), - [7219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3958), - [7221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3965), - [7223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3906), - [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), - [7227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3954), - [7229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3789), - [7231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), - [7233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), - [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), - [7237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5217), - [7239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5217), - [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), - [7243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), - [7245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5254), - [7247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), - [7249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3785), - [7251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), - [7253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), - [7255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), - [7257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), - [7259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), - [7261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4067), - [7263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), - [7265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), - [7267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), - [7269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), - [7271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), - [7273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), - [7275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), - [7277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), - [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3815), - [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), - [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), - [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4091), - [7287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4279), - [7289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), - [7291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5260), - [7293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), - [7295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3796), - [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3795), - [7299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), - [7301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3797), - [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), - [7305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4103), - [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4104), - [7309] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5343), - [7312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3980), - [7314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4203), - [7316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4042), - [7318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4079), - [7320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), - [7322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), - [7324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4561), - [7326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), - [7328] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), - [7330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), - [7332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), - [7334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5238), - [7336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), - [7338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), - [7340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), - [7342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3854), - [7344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), - [7346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), - [7350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4209), - [7352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), - [7354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), - [7356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), - [7358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), - [7360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), - [7362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), - [7366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), - [7368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4173), - [7370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), - [7372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3806), - [7374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), - [7376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), - [7378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), - [7380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), - [7384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4251), - [7386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), - [7388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), - [7390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), - [7392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), - [7394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), - [7396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), - [7398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), - [7400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4872), - [7402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5216), - [7404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5216), - [7406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), - [7408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), - [7410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), - [7412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), - [7414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 226), - [7416] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), SHIFT(1941), - [7419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 226), - [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3689), - [7423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3684), - [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), - [7427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), - [7429] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), - [7431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3685), - [7433] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1941), - [7436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1157), - [7441] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3863), - [7444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3404), - [7447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), - [7449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3714), - [7451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2769), - [7453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3690), - [7455] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1941), - [7458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), - [7460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), - [7462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4210), - [7464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4472), - [7466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), - [7468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), - [7470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), - [7472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1941), - [7475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), - [7477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3695), - [7479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3818), - [7481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), - [7483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3762), - [7485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), - [7487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), - [7489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), - [7493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4318), - [7495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4476), - [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3754), - [7499] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), - [7501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3686), - [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3701), - [7505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), - [7507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), - [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), - [7511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7031), - [7513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(369), - [7515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), - [7517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1205), - [7519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3831), - [7521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), - [7523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1188), - [7525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), - [7527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), - [7529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), - [7531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), - [7533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3757), - [7535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), - [7539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), - [7541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), - [7543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), - [7545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), - [7547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), - [7549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4347), - [7551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), - [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), - [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3759), - [7559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), - [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), - [7563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4638), - [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5251), - [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3329), - [7569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), - [7571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7270), - [7573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7490), - [7575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), - [7577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), - [7579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), - [7581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3761), - [7583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), - [7585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), - [7587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5227), - [7589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5227), - [7591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), - [7593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4777), - [7595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4478), - [7597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4313), - [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4723), - [7601] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1941), - [7604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), - [7606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), - [7608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3884), - [7610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3889), - [7612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3889), - [7614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6139), - [7616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), - [7618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3865), - [7620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3365), - [7622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [7624] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), - [7626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), - [7628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4638), - [7631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), - [7633] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7389), - [7636] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7270), - [7639] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7490), - [7642] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7513), - [7645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), - [7647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), - [7649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), - [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), - [7653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3278), - [7655] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1941), - [7658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), - [7660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6126), - [7662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), - [7664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), - [7666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), - [7668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6680), - [7670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3273), - [7672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [7674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 228), - [7676] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 228), - [7678] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), - [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), - [7682] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7684] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(383), - [7687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6588), - [7689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 201), - [7691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 201), - [7693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), - [7695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4428), - [7697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6204), - [7699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5575), - [7701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5575), - [7703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6524), - [7705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6435), - [7707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [7709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), - [7711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(435), - [7714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), - [7716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7199), - [7718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(1941), - [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), - [7723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [7725] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1941), - [7728] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), - [7730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [7732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1941), - [7735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), - [7737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), - [7739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), - [7741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(394), - [7743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), - [7745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), - [7747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), - [7749] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1941), - [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), - [7754] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1941), - [7757] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), - [7759] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), - [7761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), - [7765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), - [7769] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7771] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), - [7773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), - [7775] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), - [7779] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), - [7783] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1941), - [7786] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), - [7788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [7790] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1941), - [7793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), - [7795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [7797] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), - [7799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4890), - [7801] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), - [7803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), - [7805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4837), - [7807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3275), - [7809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), - [7811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), - [7813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), - [7815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(234), - [7818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1941), - [7821] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), - [7823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [7825] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1941), - [7828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), - [7830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [7832] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(1941), - [7835] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), - [7837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), - [7839] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5645), - [7842] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), - [7844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), - [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4836), - [7848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4802), - [7850] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5707), - [7853] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1941), - [7856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), - [7858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [7860] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1941), - [7863] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), - [7865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5607), - [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1941), - [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), - [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), - [7874] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(243), - [7877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), - [7879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), - [7881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1941), - [7884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), - [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5602), - [7888] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), - [7890] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(394), - [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(394), - [7896] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), - [7898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), - [7900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), - [7902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(276), - [7905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), - [7907] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), - [7910] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), - [7912] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), - [7914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), - [7916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), - [7918] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), - [7920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6706), - [7922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), - [7924] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), - [7926] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), - [7928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6484), - [7930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), - [7932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5566), - [7934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5431), - [7936] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 205), - [7938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 205), - [7940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), - [7942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), - [7944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), - [7946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), - [7948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), - [7950] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), - [7952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), - [7954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5778), - [7956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6480), - [7958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5936), - [7960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), - [7962] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), - [7964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3277), - [7966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), - [7968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), - [7970] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), - [7972] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), - [7974] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), - [7976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6757), - [7978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), - [7980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5598), - [7982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), - [7984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6290), - [7986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5765), - [7988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), - [7990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [7992] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), - [7994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7996] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), - [7998] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8000] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), - [8002] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 205), - [8004] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 205), - [8006] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 207), - [8008] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 207), - [8010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 210), - [8012] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 210), - [8014] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 211), - [8016] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 211), - [8018] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), - [8020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6116), - [8022] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), - [8024] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), - [8026] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), - [8028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [8030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), - [8032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), - [8034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), - [8036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5563), - [8038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5300), - [8040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6127), - [8042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6136), - [8044] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), - [8046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), - [8048] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), - [8050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), - [8054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), - [8056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), - [8058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4830), - [8060] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), - [8062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), - [8064] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), - [8066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 207), - [8068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 207), - [8070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 230), - [8072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 230), - [8074] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), - [8076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), - [8078] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 231), - [8080] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 231), - [8082] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 232), - [8084] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 232), - [8086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 233), - [8088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 233), - [8090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6959), - [8092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), - [8094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5063), - [8096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5346), - [8098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5162), - [8100] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 234), - [8102] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 234), - [8104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), - [8106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5359), - [8108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5571), - [8110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), - [8112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4838), - [8114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), - [8116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), - [8118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), - [8120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [8122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), - [8124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), - [8126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 247), - [8128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 247), - [8130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 249), - [8132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 249), - [8134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [8136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [8138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [8140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [8142] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(256), - [8145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [8147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [8149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [8151] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(264), - [8154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(266), - [8157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [8159] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(272), - [8162] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 230), - [8164] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 230), - [8166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 231), - [8168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 231), - [8170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 251), - [8172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 251), - [8174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 252), - [8176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 252), - [8178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 232), - [8180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 232), - [8182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 233), - [8184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 233), - [8186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [8188] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 262), - [8190] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 262), - [8192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 247), - [8194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 247), - [8196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 264), - [8198] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 264), - [8200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 249), - [8202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 249), - [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 266), - [8206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 266), - [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 267), - [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 267), - [8212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 251), - [8214] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 251), - [8216] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 252), - [8218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 252), - [8220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 268), - [8222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 268), - [8224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 269), - [8226] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 269), - [8228] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 262), - [8230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 262), - [8232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 264), - [8234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 264), - [8236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), - [8238] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), - [8240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), - [8242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), - [8244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), - [8246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), - [8248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 267), - [8250] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 267), - [8252] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), - [8254] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), - [8256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 279), - [8258] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 279), - [8260] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 280), - [8262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 280), - [8264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 268), - [8266] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 268), - [8268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 281), - [8270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 281), - [8272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 269), - [8274] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 269), - [8276] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 276), - [8278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 276), - [8280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 277), - [8282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 277), - [8284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 284), - [8286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 284), - [8288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), - [8290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), - [8292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 285), - [8294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 285), - [8296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 279), - [8298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 279), - [8300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 280), - [8302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 280), - [8304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 281), - [8306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 281), - [8308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 284), - [8310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 284), - [8312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 285), - [8314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 285), - [8316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3276), - [8318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), - [8322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), - [8324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), - [8326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6080), - [8328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [8330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), - [8332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5068), - [8334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), - [8336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5074), - [8338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), - [8340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), - [8342] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), - [8344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), - [8346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), - [8348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), - [8350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), - [8352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7314), - [8354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5441), - [8356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), - [8358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5661), - [8360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), - [8362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), - [8364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5996), - [8366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5586), - [8368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5586), - [8370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6485), - [8372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5886), - [8374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), - [8376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), - [8378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), - [8380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), - [8382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), - [8384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), - [8386] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), - [8388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), - [8390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), - [8392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), - [8394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8396] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), - [8398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8400] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), - [8402] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), - [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), - [8406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5278), - [8409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7350), - [8411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), - [8415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3189), - [8417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7517), - [8419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2566), - [8421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), - [8425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6960), - [8427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6342), - [8429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2867), - [8431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2799), - [8433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8435] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), - [8437] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 212), - [8439] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 212), - [8441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), - [8443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), - [8445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5997), - [8447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), - [8449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), - [8451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), - [8453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), - [8455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), - [8457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 221), - [8459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 222), - [8461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 223), - [8463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 224), - [8465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 225), - [8467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5556), - [8469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), - [8471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), - [8473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), - [8475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4598), - [8477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5712), - [8479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5712), - [8481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6125), - [8483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), - [8485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), - [8487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), - [8489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), - [8491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4904), - [8493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5152), - [8495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3145), - [8497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4983), - [8499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), - [8501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), - [8503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), - [8505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), - [8507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 238), - [8509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5919), - [8511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), - [8513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6548), - [8515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), - [8517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), - [8519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), - [8521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 242), - [8523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 243), - [8525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 244), - [8527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 245), - [8529] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 246), - [8531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), - [8533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5857), - [8535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6553), - [8537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), - [8539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), - [8541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), - [8543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), - [8545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), - [8547] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), - [8549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 258), - [8551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 259), - [8553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 260), - [8555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 261), - [8557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), - [8559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), - [8561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 272), - [8563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 273), - [8565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 274), - [8567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 275), - [8569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 282), - [8571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 283), - [8573] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), - [8575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [8577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [8579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(216), - [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [8590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [8592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(224), - [8595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(226), - [8598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [8600] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(232), - [8603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5030), - [8605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), - [8607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7067), - [8609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4968), - [8611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), - [8613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [8615] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8617] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5121), - [8620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), - [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5397), - [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7438), - [8626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), - [8628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5259), - [8631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5209), - [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5082), - [8636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), - [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), - [8640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5209), - [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [2403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 3, 0, 0), + [2405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 3, 0, 0), + [2407] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 118), + [2409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 118), + [2411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_record, 4, 0, 0), + [2413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_record, 4, 0, 0), + [2415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(695), + [2417] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_record, 4, 0, 0), + [2419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_record, 4, 0, 0), + [2421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 4, 0, 0), + [2423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 4, 0, 0), + [2425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 120), + [2427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 120), + [2429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_list, 4, 0, 0), + [2431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_list, 4, 0, 0), + [2433] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 121), + [2435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 121), + [2437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 4, 0, 122), + [2439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 4, 0, 122), + [2441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 3, 0, 38), + [2443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 3, 0, 38), + [2445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_closure, 5, 0, 165), + [2447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_closure, 5, 0, 165), + [2449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_number, 1, 0, 0), + [2451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_number, 1, 0, 0), + [2453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_interpolated, 1, 0, 6), + [2457] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 167), + [2459] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 167), + [2461] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_nothing, 2, 0, 0), + [2465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_range, 5, 0, 168), + [2467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_range, 5, 0, 168), + [2469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 4, 0, 105), + [2471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_variable, 3, 0, 21), + [2475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2477] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_parenthesized, 4, 0, 0), + [2479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1194), + [2481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_single_quotes, 2, 0, 0), + [2485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__inter_double_quotes, 2, 0, 0), + [2489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 1, 0, 0), + [2493] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(750), + [2496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 19), + [2498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_record_repeat1, 2, 0, 19), + [2500] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 2, 0, 0), + [2504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(771), + [2506] = {.entry = {.count = 1, .reusable = true}}, SHIFT(763), + [2508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 2, 0, 0), + [2512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(762), + [2514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), + [2518] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(1903), + [2521] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 2, 0, 0), SHIFT_REPEAT(763), + [2524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(762), + [2527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), + [2529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(754), + [2531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2721), + [2533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [2535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5119), + [2537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), + [2539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [2541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4852), + [2543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5063), + [2545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2901), + [2547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2881), + [2549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2316), + [2551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2316), + [2553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2552), + [2555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2452), + [2557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), + [2559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2937), + [2561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2947), + [2563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7605), + [2565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2930), + [2567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6422), + [2569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3083), + [2571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6003), + [2573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5772), + [2575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(849), + [2577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7242), + [2579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7242), + [2581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2939), + [2583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7684), + [2585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2764), + [2587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_parenthesized_repeat1, 3, 0, 0), + [2591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(770), + [2593] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), SHIFT(2871), + [2596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 3, 0, 0), + [2598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(842), + [2600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [2602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), + [2604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1571), + [2606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1542), + [2608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [2610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5082), + [2612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5085), + [2614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1604), + [2616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1572), + [2618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1230), + [2620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1230), + [2622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1318), + [2624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1244), + [2626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1727), + [2628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1684), + [2630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1666), + [2632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7579), + [2634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1615), + [2636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6327), + [2638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1713), + [2640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5799), + [2642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), + [2644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7335), + [2646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), + [2648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), + [2650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7617), + [2652] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), SHIFT(2871), + [2655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 4, 0, 0), + [2657] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 3, 0, 0), + [2659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), + [2661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(842), + [2664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(48), + [2667] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6418), + [2670] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1571), + [2673] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1542), + [2676] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(14), + [2679] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5082), + [2682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5085), + [2685] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1604), + [2688] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1572), + [2691] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), + [2694] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1230), + [2697] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1318), + [2700] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1244), + [2703] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1727), + [2706] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1684), + [2709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1666), + [2712] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7579), + [2715] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1615), + [2718] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6327), + [2721] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1713), + [2724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5799), + [2727] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5668), + [2730] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7335), + [2733] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7335), + [2736] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1667), + [2739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7617), + [2742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__pipe_separator, 1, 0, 0), + [2746] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 4, 0, 0), + [2748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), SHIFT(2871), + [2751] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do_parenthesized, 5, 0, 0), + [2753] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(2871), + [2756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [2758] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(842), + [2761] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(48), + [2764] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6418), + [2767] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1571), + [2770] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1542), + [2773] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(14), + [2776] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5082), + [2779] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5085), + [2782] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1604), + [2785] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1572), + [2788] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1230), + [2791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1230), + [2794] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1318), + [2797] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1244), + [2800] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1727), + [2803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1684), + [2806] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1666), + [2809] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7579), + [2812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1615), + [2815] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(6327), + [2818] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1713), + [2821] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5799), + [2824] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(5668), + [2827] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7335), + [2830] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7335), + [2833] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(1667), + [2836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), SHIFT_REPEAT(7617), + [2839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_do, 2, 0, 0), + [2841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(769), + [2843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(791), + [2845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(778), + [2847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(788), + [2849] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipeline_repeat1, 3, 0, 0), + [2853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(830), + [2855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [2857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), + [2859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1673), + [2861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1633), + [2863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [2865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5108), + [2867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5111), + [2869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1685), + [2871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1645), + [2873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1233), + [2875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1233), + [2877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1355), + [2879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1326), + [2881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1929), + [2883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1735), + [2885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1781), + [2887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7505), + [2889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1688), + [2891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6280), + [2893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), + [2895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6061), + [2897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5644), + [2899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1759), + [2901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7578), + [2903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(776), + [2905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(812), + [2907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(798), + [2909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(810), + [2911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(792), + [2913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(793), + [2915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(805), + [2917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(779), + [2919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(802), + [2921] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(830), + [2924] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(49), + [2927] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6612), + [2930] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1673), + [2933] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1633), + [2936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(9), + [2939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5108), + [2942] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5111), + [2945] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1685), + [2948] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1645), + [2951] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1233), + [2954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1233), + [2957] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1355), + [2960] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1326), + [2963] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1929), + [2966] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1735), + [2969] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1781), + [2972] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7505), + [2975] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1688), + [2978] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6280), + [2981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1814), + [2984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(6061), + [2987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(5644), + [2990] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(1759), + [2993] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 2, 0, 0), SHIFT_REPEAT(7578), + [2996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(785), + [2998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(816), + [3000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(787), + [3002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(800), + [3004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7731), + [3006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7731), + [3008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4490), + [3010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1331), + [3012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1396), + [3014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(857), + [3016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(851), + [3018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(815), + [3020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(806), + [3022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(797), + [3024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(821), + [3026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(809), + [3028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(818), + [3030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(801), + [3032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(811), + [3034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(841), + [3036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7577), + [3038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7577), + [3040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4543), + [3042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), + [3044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1505), + [3046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(852), + [3048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(853), + [3050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(824), + [3052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(822), + [3054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(829), + [3056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), + [3058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7704), + [3060] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4390), + [3062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(855), + [3064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(854), + [3066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(858), + [3068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(856), + [3070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(861), + [3072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(862), + [3074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(848), + [3076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(845), + [3078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5896), + [3080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [3082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6174), + [3084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [3086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5132), + [3088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5066), + [3090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6099), + [3092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6077), + [3094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4888), + [3096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4888), + [3098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5026), + [3100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5019), + [3102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7062), + [3104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6658), + [3106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6199), + [3108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7531), + [3110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6105), + [3112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6176), + [3114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5129), + [3116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6707), + [3118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7502), + [3120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(880), + [3122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(879), + [3124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(846), + [3126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3957), + [3128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5070), + [3130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1530), + [3132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), + [3134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4982), + [3136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), + [3138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1679), + [3140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5233), + [3142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(442), + [3144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(428), + [3146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5945), + [3148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3928), + [3150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1465), + [3152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2719), + [3154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4039), + [3156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5502), + [3158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4229), + [3160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5721), + [3162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1984), + [3164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7753), + [3166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7753), + [3168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4521), + [3170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7675), + [3172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7675), + [3174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4632), + [3176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7382), + [3178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7382), + [3180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4427), + [3182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2814), + [3184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2916), + [3186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5090), + [3188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5093), + [3190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3231), + [3192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3229), + [3194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2885), + [3196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), + [3198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3066), + [3200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2957), + [3202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3245), + [3204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3225), + [3206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1916), + [3208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5072), + [3210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5080), + [3212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2129), + [3214] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), + [3216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1429), + [3218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), + [3220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1559), + [3222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1534), + [3224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2250), + [3226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2135), + [3228] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(845), + [3231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(45), + [3234] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6174), + [3237] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4), + [3240] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5132), + [3243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(57), + [3246] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5066), + [3249] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6099), + [3252] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6077), + [3255] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7626), + [3258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4888), + [3261] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(4888), + [3264] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5026), + [3267] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5019), + [3270] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7062), + [3273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6658), + [3276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6199), + [3279] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7531), + [3282] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6105), + [3285] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6176), + [3288] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5129), + [3291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6003), + [3294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(5772), + [3297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(849), + [3300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7242), + [3303] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7242), + [3306] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(6707), + [3309] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 53), SHIFT_REPEAT(7502), + [3312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5079), + [3314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), + [3316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3523), + [3318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3510), + [3320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3408), + [3322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3408), + [3324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3470), + [3326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3422), + [3328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3559), + [3330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3534), + [3332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), + [3334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5138), + [3336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5068), + [3338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2288), + [3340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2240), + [3342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1491), + [3344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1491), + [3346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1643), + [3348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1541), + [3350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2405), + [3352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2289), + [3354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2241), + [3356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), + [3358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5088), + [3360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3241), + [3362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3251), + [3364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2989), + [3366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2989), + [3368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3181), + [3370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3036), + [3372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3262), + [3374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3255), + [3376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 1, 0, 0), + [3378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4856), + [3380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2133), + [3382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1222), + [3384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7296), + [3386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2083), + [3388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), + [3390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3014), + [3392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3014), + [3394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2903), + [3396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), + [3398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1181), + [3400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5094), + [3402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5096), + [3404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3565), + [3406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3557), + [3408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3424), + [3410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3424), + [3412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3475), + [3414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3464), + [3416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3668), + [3418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3544), + [3420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1179), + [3422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4795), + [3424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2125), + [3426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1220), + [3428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7279), + [3430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2522), + [3432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2524), + [3434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2138), + [3436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6223), + [3438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), + [3440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5016), + [3442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5095), + [3444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4003), + [3446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), + [3448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3769), + [3450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3769), + [3452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3794), + [3454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3787), + [3456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), + [3458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3979), + [3460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), + [3462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5087), + [3464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4974), + [3466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5091), + [3468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4046), + [3470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4083), + [3472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3786), + [3474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3786), + [3476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3823), + [3478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3789), + [3480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4150), + [3482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4048), + [3484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2140), + [3486] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3488] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1136), + [3491] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(1136), + [3494] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), + [3496] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1136), + [3500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1136), + [3502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), + [3504] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1151), + [3507] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), + [3511] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat2, 2, 0, 0), SHIFT_REPEAT(7542), + [3514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3516] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), SHIFT_REPEAT(1142), + [3519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 2, 0, 0), + [3521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 1, 0, 0), + [3523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1142), + [3525] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_pipe_element_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(7542), + [3528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), + [3530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3145), + [3532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1199), + [3534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6240), + [3536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [3538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4814), + [3540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6916), + [3542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5069), + [3544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5071), + [3546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6209), + [3548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6086), + [3550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4990), + [3552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4990), + [3554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5252), + [3556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5134), + [3558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6104), + [3560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6159), + [3562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1160), + [3564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1187), + [3566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3568] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_pipe_element_repeat1, 1, 0, 0), + [3570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1141), + [3572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1185), + [3574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1167), + [3576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1195), + [3578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4728), + [3580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), + [3582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1178), + [3584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1146), + [3586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1170), + [3588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1144), + [3590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1191), + [3592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), + [3594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3048), + [3596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(847), + [3598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [3600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6431), + [3602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [3604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5143), + [3606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5089), + [3608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4377), + [3610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4376), + [3612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3846), + [3614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3846), + [3616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3907), + [3618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3858), + [3620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4784), + [3622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4566), + [3624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4461), + [3626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), + [3628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4386), + [3630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6342), + [3632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4068), + [3634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6036), + [3636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5660), + [3638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7317), + [3640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7317), + [3642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4567), + [3644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7630), + [3646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4812), + [3648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1176), + [3650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1205), + [3652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1158), + [3654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1203), + [3656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1188), + [3658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), + [3660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1169), + [3662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1204), + [3664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1218), + [3666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1171), + [3668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1219), + [3670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(837), + [3672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [3674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6454), + [3676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [3678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5104), + [3680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5105), + [3682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(551), + [3684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(550), + [3686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), + [3688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(327), + [3690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(357), + [3692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [3694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(677), + [3696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(621), + [3698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(620), + [3700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7644), + [3702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(581), + [3704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6439), + [3706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), + [3708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5842), + [3710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5693), + [3712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(622), + [3714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), + [3716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1325), + [3718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1306), + [3720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), + [3722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(838), + [3724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [3726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [3728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5075), + [3730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5076), + [3732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(521), + [3734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(515), + [3736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), + [3738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [3740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), + [3742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), + [3744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(648), + [3746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(566), + [3748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(565), + [3750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7654), + [3752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(512), + [3754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6461), + [3756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), + [3758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5853), + [3760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5699), + [3762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(567), + [3764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7696), + [3766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), + [3768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5061), + [3770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6478), + [3772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6121), + [3774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4975), + [3776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4975), + [3778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5263), + [3780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5142), + [3782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6727), + [3784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6210), + [3786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6847), + [3788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1305), + [3790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), + [3792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1302), + [3794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), + [3796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), + [3798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1350), + [3800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1903), + [3802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(755), + [3804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7045), + [3806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [3808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), + [3810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [3812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4958), + [3814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5130), + [3816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3069), + [3818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3098), + [3820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2548), + [3822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2548), + [3824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2715), + [3826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2650), + [3828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3146), + [3830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), + [3832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3025), + [3834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7592), + [3836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3084), + [3838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6411), + [3840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3127), + [3842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3120), + [3844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7681), + [3846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1221), + [3848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1199), + [3851] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(55), + [3854] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6240), + [3857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(199), + [3860] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6916), + [3863] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5069), + [3866] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5071), + [3869] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6209), + [3872] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6086), + [3875] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4990), + [3878] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(4990), + [3881] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5252), + [3884] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(5134), + [3887] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1682), + [3890] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6104), + [3893] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1926), + [3896] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7447), + [3899] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6159), + [3902] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(6208), + [3905] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1410), + [3908] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7335), + [3911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7335), + [3914] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(1916), + [3917] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), SHIFT_REPEAT(7523), + [3920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(839), + [3922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [3924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6279), + [3926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [3928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5110), + [3930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5121), + [3932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), + [3934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7291), + [3936] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5167), + [3938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), + [3940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5490), + [3942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5418), + [3944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7295), + [3946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7332), + [3948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3164), + [3950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4885), + [3952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [3954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1582), + [3956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1311), + [3958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1311), + [3960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1392), + [3962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1357), + [3964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1369), + [3966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1362), + [3968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6384), + [3970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [3972] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), + [3974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1438), + [3976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1594), + [3978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1486), + [3980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1245), + [3982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1322), + [3984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [3986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1648), + [3988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1359), + [3990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1359), + [3992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), + [3994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1376), + [3996] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5304), + [3998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1725), + [4000] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1388), + [4002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1388), + [4004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), + [4006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1443), + [4008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1225), + [4010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1320), + [4012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7394), + [4014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6264), + [4016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5636), + [4018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5637), + [4020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1794), + [4022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1749), + [4024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1296), + [4026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1296), + [4028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1383), + [4030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1353), + [4032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1752), + [4034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1716), + [4036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1924), + [4038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1295), + [4040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1345), + [4042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1232), + [4044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1361), + [4046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7744), + [4048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5595), + [4050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), + [4052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [4054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1217), + [4056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1226), + [4058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1605), + [4060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1607), + [4062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1669), + [4064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(836), + [4066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), + [4068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), + [4070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [4072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), + [4074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5626), + [4076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5717), + [4078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5577), + [4080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4962), + [4082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4962), + [4084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5057), + [4086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4973), + [4088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5830), + [4090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5718), + [4092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5891), + [4094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(843), + [4096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), + [4098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6410), + [4100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [4102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), + [4104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5615), + [4106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2920), + [4108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2926), + [4110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2406), + [4112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2406), + [4114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2551), + [4116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), + [4118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2961), + [4120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2923), + [4122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2892), + [4124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7539), + [4126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2921), + [4128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6292), + [4130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2958), + [4132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5978), + [4134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5653), + [4136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2942), + [4138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7591), + [4140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6415), + [4142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4960), + [4144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4960), + [4146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5116), + [4148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5015), + [4150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), + [4152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1323), + [4154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [4156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1474), + [4158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1474), + [4160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1646), + [4162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1543), + [4164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1215), + [4166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6767), + [4168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4855), + [4170] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5304), + [4173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1603), + [4175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), + [4177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1763), + [4179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1686), + [4181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), + [4183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6571), + [4185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4988), + [4187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), + [4189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5228), + [4191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5028), + [4193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6527), + [4195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6604), + [4197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1294), + [4199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), + [4201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3122), + [4203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4890), + [4205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(844), + [4207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7509), + [4209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [4211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5645), + [4213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5646), + [4215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4302), + [4217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4300), + [4219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3825), + [4221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3870), + [4223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3851), + [4225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4591), + [4227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4388), + [4229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4311), + [4231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6224), + [4233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3939), + [4235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5839), + [4237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5612), + [4239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(827), + [4241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7664), + [4243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [4245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5654), + [4247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5655), + [4249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6645), + [4251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6689), + [4253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5107), + [4255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5107), + [4257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5395), + [4259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5165), + [4261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4415), + [4263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7081), + [4265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7178), + [4267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6266), + [4269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3891), + [4271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5914), + [4273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5635), + [4275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4189), + [4277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4157), + [4279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3806), + [4281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3828), + [4283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3813), + [4285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4354), + [4287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4190), + [4289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7609), + [4291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), + [4293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5662), + [4295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1635), + [4297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1650), + [4299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1257), + [4301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), + [4303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1342), + [4305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1307), + [4307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1671), + [4309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1618), + [4311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1698), + [4313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(828), + [4315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7752), + [4317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), + [4319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [4321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5669), + [4323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5670), + [4325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), + [4327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5524), + [4329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4506), + [4331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4506), + [4333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4817), + [4335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4623), + [4337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5580), + [4339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5476), + [4341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5474), + [4343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7618), + [4345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5454), + [4347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6429), + [4349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5412), + [4351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5815), + [4353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5679), + [4355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5591), + [4357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7686), + [4359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(833), + [4361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7559), + [4363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6445), + [4365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), + [4367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), + [4369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5681), + [4371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5328), + [4373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5311), + [4375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4359), + [4377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4359), + [4379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4717), + [4381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4507), + [4383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5482), + [4385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5308), + [4387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5285), + [4389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7631), + [4391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), + [4393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6435), + [4395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5149), + [4397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5831), + [4399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5688), + [4401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5458), + [4403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7688), + [4405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1836), + [4407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1427), + [4409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1427), + [4411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1608), + [4413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1532), + [4415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1309), + [4417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1354), + [4419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1348), + [4421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), + [4423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1400), + [4425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5338), + [4427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5393), + [4429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1621), + [4431] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1621), + [4433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1847), + [4435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1800), + [4437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1356), + [4439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1339), + [4441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1371), + [4443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), + [4445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), + [4447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1343), + [4449] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(1215), + [4452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), + [4454] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(52), + [4457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(6425), + [4460] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(201), + [4463] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(5113), + [4466] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(5130), + [4469] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3069), + [4472] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3098), + [4475] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2548), + [4478] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2548), + [4481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2715), + [4484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(2650), + [4487] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3146), + [4490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3101), + [4493] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3025), + [4496] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7592), + [4499] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3084), + [4502] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(6411), + [4505] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3127), + [4508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7242), + [4511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7242), + [4514] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(3120), + [4517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 53), SHIFT_REPEAT(7681), + [4520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1352), + [4522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1329), + [4524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), + [4526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1227), + [4528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1246), + [4530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1622), + [4532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1623), + [4534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1703), + [4536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1389), + [4538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [4540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2112), + [4542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1477), + [4544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1641), + [4546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1614), + [4548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5330), + [4550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1366), + [4552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), + [4554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2073), + [4556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), + [4558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1397), + [4560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5064), + [4562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5065), + [4564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6742), + [4566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6844), + [4568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5122), + [4570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5122), + [4572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5339), + [4574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5177), + [4576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7187), + [4578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6931), + [4580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5492), + [4582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5623), + [4584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1637), + [4586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1638), + [4588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1799), + [4590] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5393), + [4593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5358), + [4595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1333), + [4597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1430), + [4599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5338), + [4602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1845), + [4604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2065), + [4606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1991), + [4608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5358), + [4611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1435), + [4613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1407), + [4615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1466), + [4617] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), + [4619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5201), + [4621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1964), + [4623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), + [4625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [4627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2284), + [4629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1676), + [4631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1933), + [4633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1721), + [4635] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1224), + [4637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1224), + [4639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1445), + [4641] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5330), + [4644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1398), + [4646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1518), + [4648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), + [4650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1522), + [4652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1701), + [4654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), + [4656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1934), + [4658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1441), + [4660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1509), + [4662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1470), + [4664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1579), + [4666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5333), + [4668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1503), + [4670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1468), + [4672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1502), + [4674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1580), + [4676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1182), + [4678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5157), + [4680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5157), + [4682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1418), + [4684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1612), + [4686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2435), + [4688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), + [4690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1587), + [4692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1508), + [4694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), + [4696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1601), + [4698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1997), + [4700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2169), + [4702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), + [4704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1288), + [4706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), + [4708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2445), + [4710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), + [4712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1599), + [4714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1523), + [4716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2224), + [4718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5310), + [4720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1616), + [4722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1600), + [4724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1680), + [4726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [4728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [4730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), + [4732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1484), + [4734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1499), + [4736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), + [4738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1229), + [4740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), + [4742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1472), + [4744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1678), + [4746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1335), + [4748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1363), + [4750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2063), + [4752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2066), + [4754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), + [4756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1263), + [4758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), + [4760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1264), + [4762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1264), + [4764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1265), + [4766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), + [4768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 0), + [4772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1610), + [4774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), + [4776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [4778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1493), + [4780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1647), + [4782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5195), + [4784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5195), + [4786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1556), + [4788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1652), + [4790] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5333), + [4793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1565), + [4795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1691), + [4797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1592), + [4799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [4801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [4803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1313), + [4805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1313), + [4807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1293), + [4809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), + [4811] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4813] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 104), + [4815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4817] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 0), + [4819] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 1, 0, 0), + [4821] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 1, 0, 0), + [4823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1275), + [4825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1631), + [4827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 4, 0, 104), + [4831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5358), + [4833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1314), + [4835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1314), + [4837] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4839] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 0), + [4841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1675), + [4843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), + [4845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5180), + [4847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1315), + [4849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1315), + [4851] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 0), + [4853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1661), + [4855] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5310), + [4858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1663), + [4860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1628), + [4862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 1, 0, 0), + [4864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 1, 0, 0), + [4866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1278), + [4868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [4870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [4872] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4874] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat2, 1, 0, 31), + [4876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1672), + [4878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), + [4880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [4882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1681), + [4884] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1379), + [4886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), + [4888] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2293), + [4890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2294), + [4892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2248), + [4894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1613), + [4896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1798), + [4898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4900] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_with_expr, 3, 0, 0), + [4902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1689), + [4904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1801), + [4906] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4908] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 1, 0, 31), + [4910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), + [4912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1886), + [4914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 2, 0, 21), + [4916] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 2, 0, 21), + [4918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), + [4920] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 2, 0, 21), + [4922] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 2, 0, 21), + [4924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1277), + [4926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1239), + [4928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1718), + [4930] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), + [4932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3968), + [4934] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 43), + [4936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2254), + [4938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), + [4940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3505), + [4942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3625), + [4944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3531), + [4946] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5295), + [4949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5295), + [4951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1714), + [4953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1910), + [4955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1720), + [4957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1692), + [4959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4961] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat3, 2, 0, 186), + [4963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1706), + [4965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1881), + [4967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 2, 0, 15), + [4969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6723), + [4971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 1, 0, 0), + [4973] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 1, 0, 0), + [4975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted, 2, 0, 0), + [4977] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted, 2, 0, 0), + [4979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1712), + [4981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1253), + [4983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1660), + [4985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1823), + [4987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 2, 0, 29), + [4989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1803), + [4991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 97), + [4993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 97), + [4995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [4997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6076), + [4999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6076), + [5001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2270), + [5003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7172), + [5005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1931), + [5007] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5010] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 3, 0, 0), REDUCE(sym_val_closure, 3, 0, 0), + [5013] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(1903), + [5016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1255), + [5018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), + [5020] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), + [5022] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), + [5024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [5026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1231), + [5028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1872), + [5030] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 10, 0), + [5032] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 10, 0), + [5034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5192), + [5036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5192), + [5038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__blosure, 1, 0, 0), + [5040] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__blosure, 1, 0, 0), + [5042] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 141), + [5044] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 141), + [5046] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 4, 0, 142), + [5048] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 4, 0, 142), + [5050] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 96), + [5052] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 96), + [5054] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 3, 0, 97), + [5056] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 3, 0, 97), + [5058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), + [5060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1390), + [5062] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 141), + [5064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 141), + [5066] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_long_flag, 4, 0, 142), + [5068] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_long_flag, 4, 0, 142), + [5070] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flag, 1, 0, 0), + [5072] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flag, 1, 0, 0), + [5074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6960), + [5076] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_short_flag, 3, 0, 96), + [5078] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_short_flag, 3, 0, 96), + [5080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1846), + [5082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), + [5084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5187), + [5086] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5088] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 83), + [5090] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression, 1, 0, 0), + [5092] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression, 1, 0, 0), + [5096] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression, 1, 0, 0), + [5098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1894), + [5100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2069), + [5102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5221), + [5104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), + [5106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), + [5108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1385), + [5110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1439), + [5112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), + [5114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1992), + [5116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2071), + [5118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1391), + [5120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1391), + [5122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1393), + [5124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1393), + [5126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5264), + [5128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), + [5130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6805), + [5132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1394), + [5134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1394), + [5136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5295), + [5138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 156), + [5142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5144] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 158), + [5146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1472), + [5148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5150] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 193), + [5152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2074), + [5154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2181), + [5156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2072), + [5158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1974), + [5160] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2173), + [5162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5167] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_binary_expression_parenthesized, 1, 0, 0), + [5171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expression_parenthesized, 1, 0, 0), + [5173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 83), + [5177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2184), + [5179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 1, 0, 0), + [5183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_unary, 2, 0, 0), + [5187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1501), + [5189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1501), + [5191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1467), + [5193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1467), + [5195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1504), + [5197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1504), + [5199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), + [5201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1506), + [5203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary, 3, 0, 82), + [5207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5145), + [5209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5146), + [5211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3471), + [5213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3471), + [5215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expr_unary_minus, 4, 0, 0), + [5219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), + [5221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5183), + [5223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), + [5225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5184), + [5227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 156), + [5231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 82), + [5235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5321), + [5237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 155), + [5241] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5243] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 158), + [5245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 83), + [5249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5251] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), + [5253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 157), + [5257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), + [5261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 193), + [5265] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5267] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 6, 0, 192), + [5269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [5271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2902), + [5273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2567), + [5275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), + [5277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2600), + [5279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1660), + [5281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6951), + [5283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6951), + [5285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2953), + [5287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6183), + [5289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), + [5293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), + [5295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6870), + [5297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), + [5301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(903), + [5303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(904), + [5305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(905), + [5307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(906), + [5309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(903), + [5311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(910), + [5313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(911), + [5315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(906), + [5317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(904), + [5319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(912), + [5321] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 5, 0, 192), SHIFT(1903), + [5324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(884), + [5326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1034), + [5328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1035), + [5330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1036), + [5332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1037), + [5334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1034), + [5336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(883), + [5338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1037), + [5340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1035), + [5342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(885), + [5344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(913), + [5346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(914), + [5348] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 155), SHIFT(1903), + [5351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(886), + [5353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(887), + [5355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(888), + [5357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5286), + [5359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(907), + [5361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(908), + [5363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(915), + [5365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 4, 0, 157), SHIFT(1903), + [5368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2454), + [5370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2558), + [5372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2315), + [5374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2557), + [5376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_expr_binary_parenthesized, 3, 0, 82), SHIFT(1903), + [5379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6780), + [5381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1038), + [5383] = {.entry = {.count = 1, .reusable = true}}, SHIFT(964), + [5385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [5387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3099), + [5389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2699), + [5391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2699), + [5393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2816), + [5395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2765), + [5397] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5321), + [5400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2486), + [5402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2555), + [5404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1080), + [5406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1082), + [5408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1086), + [5410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1082), + [5412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1080), + [5414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1087), + [5416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1079), + [5418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1079), + [5420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1081), + [5422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1085), + [5424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1088), + [5426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1089), + [5428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1090), + [5430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1083), + [5432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1084), + [5434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), + [5436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [5438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2772), + [5440] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), + [5442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2853), + [5444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2384), + [5446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2553), + [5448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3026), + [5450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), + [5452] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2794), + [5454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2770), + [5456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1091), + [5458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1092), + [5460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1041), + [5462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1042), + [5464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1091), + [5466] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1072), + [5468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1073), + [5470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1042), + [5472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1092), + [5474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1074), + [5476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1075), + [5478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1076), + [5480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2546), + [5482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2568), + [5484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2559), + [5486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2891), + [5488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3034), + [5490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2997), + [5492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6438), + [5494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [5496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2872), + [5498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2872), + [5500] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3082), + [5502] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), + [5504] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2556), + [5506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3157), + [5508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), + [5510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2773), + [5512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2878), + [5514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2858), + [5516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [5518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2217), + [5520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2401), + [5522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2870), + [5524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), + [5526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2946), + [5528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1077), + [5530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1043), + [5532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1044), + [5534] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5286), + [5537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5347), + [5539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2583), + [5541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2734), + [5543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3018), + [5545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3018), + [5547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3109), + [5549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3051), + [5551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2604), + [5553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2661), + [5555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), + [5557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), + [5559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2733), + [5561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2922), + [5563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2925), + [5565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2956), + [5567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2621), + [5569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), + [5571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6241), + [5573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), + [5575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7552), + [5577] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6951), + [5580] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6951), + [5583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3505), + [5586] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3625), + [5589] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(3531), + [5592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(6176), + [5595] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(5129), + [5598] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 146), SHIFT_REPEAT(7502), + [5601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2610), + [5603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2677), + [5605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2627), + [5607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 0), + [5611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 3, 0, 50), + [5615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2663), + [5617] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 2, 0, 0), + [5621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5342), + [5623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5625] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 4, 0, 50), + [5627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2678), + [5629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 7), + [5631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 7), + [5633] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_name, 1, 0, 8), + [5635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__command_name, 1, 0, 8), + [5637] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), + [5639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2709), + [5641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6081), + [5643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2664), + [5645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), + [5647] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_identifier, 1, 0, 0), + [5651] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5347), + [5654] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), + [5657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5336), + [5659] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 1, 0, 0), REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5662] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [5664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7646), + [5666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7730), + [5668] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 52), + [5672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2781), + [5674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_list_body_repeat1, 2, 0, 19), + [5676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2766), + [5678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2824), + [5680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [5682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), + [5684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5186), + [5686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7269), + [5688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), + [5690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7103), + [5692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 4, 0, 105), + [5694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2771), + [5696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2798), + [5698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2685), + [5700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2796), + [5702] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2781), + [5705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [5707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6341), + [5709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), + [5711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5776), + [5713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), + [5715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5871), + [5717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), + [5719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2616), + [5721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 51), + [5723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2675), + [5725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2818), + [5727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5213), + [5729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5213), + [5731] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 19), + [5733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2343), + [5735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2472), + [5737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), + [5739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3074), + [5741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3176), + [5743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_list, 2, 0, 0), REDUCE(sym_val_list, 2, 0, 0), + [5748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5293), + [5750] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 2, 0, 0), + [5752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2402), + [5754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2402), + [5756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2786), + [5758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2787), + [5760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5265), + [5762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [5764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6080), + [5766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), + [5768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5582), + [5770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7527), + [5772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6007), + [5774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5782), + [5776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), + [5778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5340), + [5780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2828), + [5782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [5784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5576), + [5786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), + [5788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), + [5790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2856), + [5792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2876), + [5794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2793), + [5796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2882), + [5798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2799), + [5800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2768), + [5802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2875), + [5804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2769), + [5806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2880), + [5808] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5810] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [5813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 2, 0, 0), + [5815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2838), + [5817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2890), + [5819] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5336), + [5822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2843), + [5824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2844), + [5826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2814), + [5829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3227), + [5831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3107), + [5833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3187), + [5835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3171), + [5837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5344), + [5839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2883), + [5841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3210), + [5843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3232), + [5845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3219), + [5847] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5849] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 0), REDUCE(sym__value, 1, 0, 0), + [5852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2423), + [5854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2478), + [5856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 0), + [5858] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 195), + [5860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 195), + [5862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2896), + [5864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2871), + [5867] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7066), + [5871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2893), + [5873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_list_repeat1, 2, 0, 145), + [5875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2897), + [5877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1250), + [5879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), + [5881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5160), + [5883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2894), + [5885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2895), + [5887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5204), + [5889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5204), + [5891] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(2893), + [5894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2492), + [5896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2492), + [5898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6346), + [5900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), + [5902] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6505), + [5904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6540), + [5906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7093), + [5908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7161), + [5910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2918), + [5912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3244), + [5914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3168), + [5916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3213), + [5918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3184), + [5920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2457), + [5922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2457), + [5924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2458), + [5926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2458), + [5928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2459), + [5930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2459), + [5932] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), + [5934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2877), + [5936] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2916), + [5939] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5265), + [5942] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5944] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 16), + [5946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 16), + [5948] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_expression, 1, 0, 0), + [5950] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5952] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), + [5954] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 2, 0, 0), SHIFT_REPEAT(2820), + [5957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2500), + [5959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2587), + [5961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2998), + [5963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), + [5965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2869), + [5967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3028), + [5969] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), + [5971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3183), + [5973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 1, 0, 19), + [5975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2964), + [5977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3088), + [5979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2884), + [5981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3079), + [5983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3003), + [5985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), + [5987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2888), + [5989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3059), + [5991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6641), + [5993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1240), + [5995] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(2953), + [5998] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2582), + [6000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2582), + [6002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2560), + [6004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2560), + [6006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5197), + [6008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), + [6010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3220), + [6012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3242), + [6014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3230), + [6016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2564), + [6018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2564), + [6020] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5344), + [6023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3015), + [6025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3016), + [6027] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 1, 0, 0), + [6031] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list, 2, 0, 0), + [6035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6777), + [6037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4913), + [6041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3095), + [6043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_match_repeat1, 2, 0, 0), + [6045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4914), + [6047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3096), + [6049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3152), + [6051] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_decl_def_repeat1, 1, 0, 0), + [6055] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3048), + [6058] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4859), + [6060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3091), + [6062] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), + [6064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4745), + [6066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4771), + [6068] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4773), + [6070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), + [6072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4777), + [6074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), + [6076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3144), + [6078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2983), + [6080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3124), + [6082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), + [6084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2859), + [6086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3238), + [6088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3239), + [6090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4857), + [6092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3040), + [6094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3041), + [6096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3055), + [6098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3070), + [6100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4886), + [6102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4887), + [6104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2778), + [6106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2952), + [6108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3143), + [6110] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3095), + [6113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6749), + [6115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3116), + [6117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3188), + [6119] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3145), + [6122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3153), + [6124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym__match_pattern_record, 3, 0, 0), REDUCE(sym_val_record, 3, 0, 0), + [6129] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 3, 0, 0), + [6131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3154), + [6133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), + [6135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2912), + [6137] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3248), + [6139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3254), + [6141] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3047), + [6143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3185), + [6145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), + [6147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3183), + [6149] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 194), + [6151] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 194), + [6153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 3, 0, 195), + [6155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 3, 0, 195), + [6157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_list, 4, 0, 224), + [6159] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_list, 4, 0, 224), + [6161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_record, 4, 0, 195), + [6163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_record, 4, 0, 195), + [6165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3235), + [6167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3237), + [6169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3182), + [6171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3209), + [6173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3161), + [6175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3215), + [6177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 111), + [6181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__match_pattern_value, 1, 0, 112), + [6185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3199), + [6187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 19), + [6189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__match_pattern_list_repeat1, 2, 0, 19), + [6191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), + [6193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), + [6195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2795), + [6197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2795), + [6199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3261), + [6201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3223), + [6203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5816), + [6205] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5608), + [6207] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), + [6209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [6211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [6213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2929), + [6215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2929), + [6217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5203), + [6219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5203), + [6221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3217), + [6223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3226), + [6225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [6228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3206), + [6230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3236), + [6232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3386), + [6234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3387), + [6236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3228), + [6238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3221), + [6240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3246), + [6242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3222), + [6244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3253), + [6246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3250), + [6248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3490), + [6250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), + [6252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1010), + [6254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1012), + [6256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1017), + [6258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1012), + [6260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1010), + [6262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 3, 0, 0), + [6264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 2, 0, 0), + [6266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 2, 0, 0), + [6268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 4, 0, 0), + [6270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_parens, 4, 0, 0), + [6272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3526), + [6274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3459), + [6276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3486), + [6278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3478), + [6280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), + [6282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2626), + [6284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(984), + [6286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(986), + [6288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(991), + [6290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(986), + [6292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(984), + [6294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(992), + [6296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(983), + [6298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(983), + [6300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(985), + [6302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(990), + [6304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(993), + [6306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(994), + [6308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(995), + [6310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(987), + [6312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(988), + [6314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6325), + [6316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1018), + [6318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1009), + [6320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1009), + [6322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1011), + [6324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1016), + [6326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1019), + [6328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1020), + [6330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1021), + [6332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1013), + [6334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1014), + [6336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1094), + [6338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1096), + [6340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1101), + [6342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1096), + [6344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1094), + [6346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1102), + [6348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1093), + [6350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1093), + [6352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1095), + [6354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1100), + [6356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1103), + [6358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1104), + [6360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1105), + [6362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1097), + [6364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1098), + [6366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5800), + [6368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_bracks, 3, 0, 0), + [6370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4753), + [6372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4441), + [6374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4442), + [6376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1049), + [6378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1050), + [6380] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1051), + [6382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1052), + [6384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1049), + [6386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1056), + [6388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1057), + [6390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1052), + [6392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1050), + [6394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1058), + [6396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1059), + [6398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1060), + [6400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3493), + [6402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3518), + [6404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3504), + [6406] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5816), + [6409] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5608), + [6412] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 179), SHIFT_REPEAT(5609), + [6415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3560), + [6417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3481), + [6419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3494), + [6421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3482), + [6423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1061), + [6425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1053), + [6427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1054), + [6429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6279), + [6431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3409), + [6433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3458), + [6435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3423), + [6437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3460), + [6439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3508), + [6441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3545), + [6443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3525), + [6445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6119), + [6447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), + [6449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5876), + [6451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3650), + [6453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6474), + [6455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3461), + [6457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3425), + [6459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3477), + [6461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3466), + [6463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3479), + [6465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3265), + [6467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3391), + [6469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3519), + [6471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3522), + [6473] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(3463), + [6476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3473), + [6478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3485), + [6480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), + [6482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3489), + [6484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3397), + [6486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3414), + [6488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3566), + [6490] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3573), + [6492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7499), + [6494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__multiple_types_repeat2, 2, 0, 98), + [6496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3463), + [6498] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3480), + [6500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7465), + [6502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7532), + [6504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7489), + [6506] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3490), + [6509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3484), + [6511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3483), + [6513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3491), + [6515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3474), + [6517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3498), + [6519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3500), + [6521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3383), + [6523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3383), + [6525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5194), + [6527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5194), + [6529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3412), + [6531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3412), + [6533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3496), + [6535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3512), + [6537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3507), + [6539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3520), + [6541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3506), + [6543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3514), + [6545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3411), + [6547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3416), + [6549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), + [6551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), + [6553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3495), + [6555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3524), + [6557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3536), + [6559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3558), + [6561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3502), + [6563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3564), + [6565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3516), + [6567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3542), + [6569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3509), + [6571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3548), + [6573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3532), + [6575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3550), + [6577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4036), + [6579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), + [6581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [6583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6308), + [6585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), + [6587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4168), + [6589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4168), + [6591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3410), + [6593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), + [6595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5222), + [6597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5222), + [6599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3417), + [6601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3417), + [6603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3551), + [6605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3721), + [6607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3721), + [6609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3609), + [6611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5207), + [6613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5207), + [6615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3436), + [6617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3436), + [6619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), + [6621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3437), + [6623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3438), + [6625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), + [6627] = {.entry = {.count = 1, .reusable = false}}, SHIFT(926), + [6629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(927), + [6631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(928), + [6633] = {.entry = {.count = 1, .reusable = false}}, SHIFT(929), + [6635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(930), + [6637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(931), + [6639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(926), + [6641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(933), + [6643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(934), + [6645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(929), + [6647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(927), + [6649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(935), + [6651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(936), + [6653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(937), + [6655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(938), + [6657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(953), + [6659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(955), + [6661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(960), + [6663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(955), + [6665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(953), + [6667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(961), + [6669] = {.entry = {.count = 1, .reusable = false}}, SHIFT(952), + [6671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(952), + [6673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), + [6675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7449), + [6677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6097), + [6679] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3723), + [6681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3723), + [6683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7409), + [6685] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7409), + [6687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2703), + [6689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3704), + [6691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3704), + [6693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7402), + [6695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7402), + [6697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3954), + [6699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3705), + [6701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3705), + [6703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(954), + [6705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(959), + [6707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(962), + [6709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(963), + [6711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1039), + [6713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(956), + [6715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(957), + [6717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3708), + [6719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3708), + [6721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7548), + [6723] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7548), + [6725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2606), + [6727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3719), + [6729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3719), + [6731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3720), + [6733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3720), + [6735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7596), + [6737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7596), + [6739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6872), + [6741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3722), + [6743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3722), + [6745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3474), + [6747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(989), + [6749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(882), + [6751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [6753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(909), + [6755] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 0), + [6757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7599), + [6759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7599), + [6761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(932), + [6763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(958), + [6765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1015), + [6767] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 2, 0, 0), + [6769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1109), + [6771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1114), + [6773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1109), + [6775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7389), + [6777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7389), + [6779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7620), + [6781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7620), + [6783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2713), + [6785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7678), + [6787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7678), + [6789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3936), + [6791] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 0), + [6793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1107), + [6795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1107), + [6797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1115), + [6799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1106), + [6801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1106), + [6803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1108), + [6805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1113), + [6807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1116), + [6809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1117), + [6811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1118), + [6813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1110), + [6815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1111), + [6817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7588), + [6819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7588), + [6821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2599), + [6823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7738), + [6825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7738), + [6827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6639), + [6829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), + [6831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7659), + [6833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6126), + [6835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1047), + [6837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1062), + [6839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1067), + [6841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1062), + [6843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1047), + [6845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1068), + [6847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1046), + [6849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1046), + [6851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1048), + [6853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1066), + [6855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1069), + [6857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1070), + [6859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1071), + [6861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1063), + [6863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1064), + [6865] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 0), + [6867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1120), + [6869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1065), + [6871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1055), + [6873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1045), + [6875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 1, 0, 0), + [6877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1128), + [6879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1129), + [6881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1128), + [6883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1124), + [6885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1112), + [6887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1099), + [6889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6223), + [6891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), + [6893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3792), + [6895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3830), + [6897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3820), + [6899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1131), + [6901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1126), + [6903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1131), + [6905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1125), + [6907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3869), + [6909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3947), + [6911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3923), + [6913] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4070), + [6915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3807), + [6917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3864), + [6919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3840), + [6921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3782), + [6923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3791), + [6925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3904), + [6927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4044), + [6929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3933), + [6931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3765), + [6933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3790), + [6935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [6937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4278), + [6939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3835), + [6941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3835), + [6943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), + [6945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3880), + [6947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3800), + [6949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3815), + [6951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4447), + [6953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3758), + [6955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3763), + [6957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4007), + [6959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3996), + [6961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3793), + [6963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4005), + [6965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4005), + [6967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4200), + [6969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4062), + [6971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [6973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4329), + [6975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3877), + [6977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), + [6979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3961), + [6981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3902), + [6983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3774), + [6985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3809), + [6987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3819), + [6989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3850), + [6991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3788), + [6993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3826), + [6995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4060), + [6997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), + [6999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4301), + [7001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4194), + [7003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4120), + [7005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4120), + [7007] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4744), + [7009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3810), + [7011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3816), + [7013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3841), + [7015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3761), + [7017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3766), + [7019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4020), + [7021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4021), + [7023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3801), + [7025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3837), + [7027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3817), + [7029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3855), + [7031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4351), + [7033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4351), + [7035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3839), + [7037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3854), + [7039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3770), + [7041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3783), + [7043] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4099), + [7045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4102), + [7047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4317), + [7049] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [7052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3843), + [7054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3844), + [7056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3861), + [7058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3827), + [7060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6431), + [7062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [7064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4516), + [7066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3898), + [7068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3898), + [7070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4058), + [7072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3962), + [7074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3811), + [7076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3857), + [7078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3785), + [7080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3795), + [7082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4314), + [7084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4316), + [7086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4479), + [7088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4227), + [7090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4227), + [7092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4508), + [7094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4332), + [7096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5326), + [7098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5210), + [7100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5210), + [7102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3838), + [7104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3887), + [7106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3859), + [7108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3911), + [7110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3875), + [7112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3856), + [7114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3881), + [7116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3862), + [7118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3842), + [7120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3906), + [7122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3760), + [7124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3760), + [7126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4830), + [7128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4379), + [7130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4379), + [7132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3773), + [7134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3773), + [7136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3884), + [7138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3885), + [7140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), + [7142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3950), + [7144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5316), + [7146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3886), + [7148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3965), + [7150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3822), + [7152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3831), + [7154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4393), + [7156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4410), + [7158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), + [7160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), + [7162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5206), + [7164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3863), + [7166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3949), + [7168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5326), + [7171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3866), + [7173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3994), + [7175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3992), + [7177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3940), + [7179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 62), + [7181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1152), + [7183] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4939), + [7185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3392), + [7187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7273), + [7189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 62), + [7191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3937), + [7193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4025), + [7195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3993), + [7197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), + [7199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4061), + [7201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), + [7203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5190), + [7205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 82), + [7207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3762), + [7209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3772), + [7211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5402), + [7213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), + [7215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4063), + [7217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), + [7219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4011), + [7221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3951), + [7223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5234), + [7225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5234), + [7227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3771), + [7229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3771), + [7231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3767), + [7233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3767), + [7235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3768), + [7237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3768), + [7239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3784), + [7241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3784), + [7243] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5316), + [7246] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 2, 0, 0), + [7248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 2, 0, 0), + [7250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4026), + [7252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3764), + [7254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3775), + [7256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4027), + [7258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4166), + [7260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 3, 0, 0), + [7262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 3, 0, 0), + [7264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), + [7266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3798), + [7268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), + [7270] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__predicate, 3, 0, 83), + [7272] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), + [7274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4033), + [7276] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5402), + [7279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5153), + [7281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), + [7283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3777), + [7285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3777), + [7287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3778), + [7289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3778), + [7291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3779), + [7293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3779), + [7295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), + [7297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4023), + [7299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), + [7301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5151), + [7303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3953), + [7305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4218), + [7307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3804), + [7309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3804), + [7311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4443), + [7313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 1, 0, 59), + [7315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 1, 0, 59), + [7317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), + [7319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 0), + [7323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4204), + [7325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4211), + [7327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3833), + [7329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3833), + [7331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 74), + [7335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3780), + [7337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3797), + [7339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 1, 0, 31), + [7343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4239), + [7345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4599), + [7347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 59), + [7349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 59), + [7351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 117), + [7353] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 117), + [7355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), + [7357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5191), + [7359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3805), + [7361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3805), + [7363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 117), + [7365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 117), + [7367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4220), + [7369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4371), + [7371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5212), + [7373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5212), + [7375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4052), + [7377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4313), + [7379] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 2, 0, 62), + [7381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 2, 0, 62), + [7383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), + [7385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3803), + [7387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4860), + [7389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 126), + [7391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3691), + [7393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3693), + [7395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 6, 0, 223), + [7397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4309), + [7399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1274), + [7401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4348), + [7403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4524), + [7405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 190), + [7407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3699), + [7409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 191), + [7411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), + [7413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4308), + [7415] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 32), + [7417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3680), + [7419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3681), + [7421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3682), + [7423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), + [7425] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5189), + [7427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), SHIFT(1903), + [7430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 5, 0, 223), + [7432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3677), + [7434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate, 3, 0, 126), + [7436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3838), + [7438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), + [7440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3678), + [7442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3700), + [7444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3747), + [7446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), + [7448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3751), + [7450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3749), + [7452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3742), + [7454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 32), + [7456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3753), + [7458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 191), SHIFT(1903), + [7461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2778), + [7463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6688), + [7465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), + [7467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 1, 0, 3), + [7469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1181), + [7471] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 4, 0, 190), SHIFT(1903), + [7474] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 80), + [7478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), + [7480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3799), + [7482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3818), + [7484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym__binary_predicate_parenthesized, 3, 0, 126), SHIFT(1903), + [7487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 0), + [7491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1179), + [7493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 32), + [7495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3694), + [7497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4355), + [7499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4098), + [7501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), + [7503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3679), + [7505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 2, 0, 31), + [7509] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7511] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(1152), + [7514] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3845), + [7517] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), SHIFT_REPEAT(3392), + [7520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 2, 0, 0), + [7522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3750), + [7524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3683), + [7526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 107), + [7528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 107), + [7530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3808), + [7532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3808), + [7534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3821), + [7536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3821), + [7538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), + [7540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3824), + [7542] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), SHIFT(1903), + [7545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 1, 0, 0), + [7547] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 3, 0, 73), + [7549] = {.entry = {.count = 1, .reusable = true}}, SHIFT(426), + [7551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4581), + [7553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5232), + [7555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6148), + [7557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), + [7559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7228), + [7561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), + [7563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7529), + [7565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6149), + [7567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3748), + [7569] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7571] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(426), + [7574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3259), + [7576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3260), + [7578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6163), + [7580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3744), + [7582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3755), + [7584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3752), + [7586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), + [7588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1276), + [7590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3756), + [7592] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), SHIFT(1903), + [7595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline, 2, 0, 0), + [7597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [7599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3376), + [7601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 36), + [7603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5202), + [7605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5202), + [7607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3852), + [7609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3852), + [7611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), + [7613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3873), + [7615] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3874), + [7617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3874), + [7619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1260), + [7621] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4419), + [7623] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4494), + [7625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1266), + [7627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 4, 0, 225), + [7629] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 4, 0, 225), + [7631] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3849), + [7633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3876), + [7635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 3, 0, 198), + [7637] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 3, 0, 198), + [7639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [7641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4527), + [7643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3258), + [7645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3866), + [7647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3, 0, 0), + [7649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6666), + [7651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6161), + [7653] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4367), + [7655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), + [7657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_command, 2, 0, 37), + [7659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3745), + [7661] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(4581), + [7664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), + [7666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7366), + [7669] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7228), + [7672] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7533), + [7675] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 2, 0, 0), SHIFT_REPEAT(7529), + [7678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_value, 2, 0, 163), + [7680] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_value, 2, 0, 163), + [7682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4514), + [7684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4737), + [7686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(474), + [7688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), + [7690] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 37), + [7692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__spread_list, 4, 0, 0), + [7694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spread_list, 4, 0, 0), + [7696] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(474), + [7699] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), SHIFT_REPEAT(474), + [7702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 81), + [7704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 178), + [7706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2589), + [7708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 178), + [7710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), + [7712] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 81), SHIFT_REPEAT(479), + [7715] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 75), + [7719] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 76), + [7723] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_command_repeat1, 2, 0, 77), + [7727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5780), + [7729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5780), + [7731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), + [7733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), + [7735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [7737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 78), + [7741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7743] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__cmd_arg, 1, 0, 79), + [7745] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), SHIFT(1903), + [7748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 3, 0, 57), + [7750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [7752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 36), + [7754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(479), + [7756] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), SHIFT(1903), + [7759] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 24), + [7761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5570), + [7763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), SHIFT(1903), + [7766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 3, 0, 106), + [7768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5574), + [7770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1262), + [7772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 2, 0, 37), + [7774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 1, 0, 3), + [7776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command, 3, 0, 73), + [7778] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(236), + [7781] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(253), + [7784] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), SHIFT(1903), + [7787] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 153), + [7789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [7791] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), SHIFT(1903), + [7794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 154), + [7796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [7798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flat_type, 1, 0, 93), + [7800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), + [7802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flat_type, 1, 0, 93), + [7804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3266), + [7806] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_redirection, 3, 0, 130), + [7808] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_redirection, 3, 0, 130), + [7810] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 1, 0, 3), + [7812] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), SHIFT(1903), + [7815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 2, 0, 24), + [7817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5744), + [7819] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), SHIFT(1903), + [7822] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 187), + [7824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [7826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5770), + [7829] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), SHIFT(1903), + [7832] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 1, 0, 0), + [7834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), + [7836] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), SHIFT(1903), + [7839] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipeline_parenthesized, 2, 0, 0), + [7841] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), SHIFT(1903), + [7844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 57), + [7846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [7848] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), SHIFT(1903), + [7851] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 153), + [7853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [7855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7177), + [7857] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), SHIFT(1903), + [7860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 4, 0, 154), + [7862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [7864] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(5745), + [7867] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), SHIFT(1903), + [7870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 106), + [7872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5771), + [7874] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 2, 0, 24), + [7876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6194), + [7878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 2, 0, 94), + [7880] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 2, 0, 94), + [7882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4675), + [7884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), + [7886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), + [7888] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(245), + [7891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 3, 0, 73), + [7893] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(247), + [7896] = {.entry = {.count = 2, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), SHIFT(1903), + [7899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 187), + [7901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [7903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4493), + [7905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4820), + [7907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4761), + [7909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 139), + [7911] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 139), + [7913] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__command_parenthesized, 2, 0, 36), + [7915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), + [7917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5150), + [7919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5559), + [7921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5417), + [7923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 2), + [7925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6384), + [7927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5648), + [7929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5760), + [7931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [7933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6935), + [7935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), + [7937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5631), + [7939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5493), + [7941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 202), + [7943] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 202), + [7945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 204), + [7947] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 204), + [7949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 227), + [7951] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 227), + [7953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3263), + [7955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3264), + [7957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 113), + [7959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5364), + [7961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5367), + [7963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5461), + [7965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 228), + [7967] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 228), + [7969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 229), + [7971] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 229), + [7973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 1, 0, 5), + [7975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 0), + [7977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 5, 0, 230), + [7979] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 5, 0, 230), + [7981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 5, 0, 231), + [7983] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 5, 0, 231), + [7985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 3, 0, 57), + [7987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [7989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 58), + [7991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4818), + [7993] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 58), + [7995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 160), + [7997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if, 5, 0, 161), + [7999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 110), + [8001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), + [8003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5713), + [8005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6195), + [8007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5818), + [8009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 5, 0, 113), + [8011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8013] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_long_flag, 2, 0, 0), + [8015] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 2, 0, 33), + [8017] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 33), + [8019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 244), + [8021] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 244), + [8023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 246), + [8025] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 246), + [8027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 227), + [8029] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 227), + [8031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 228), + [8033] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 228), + [8035] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 248), + [8037] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 248), + [8039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 249), + [8041] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 249), + [8043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 229), + [8045] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 229), + [8047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 6, 0, 230), + [8049] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 6, 0, 230), + [8051] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression, 1, 0, 1), + [8053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 259), + [8055] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 259), + [8057] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 244), + [8059] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 244), + [8061] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 261), + [8063] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 261), + [8065] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 246), + [8067] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 246), + [8069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 263), + [8071] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 263), + [8073] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 264), + [8075] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 264), + [8077] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 248), + [8079] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 248), + [8081] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 249), + [8083] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 249), + [8085] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 265), + [8087] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 265), + [8089] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 7, 0, 266), + [8091] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 7, 0, 266), + [8093] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 3, 0, 108), + [8095] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 259), + [8097] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 259), + [8099] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 261), + [8101] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 261), + [8103] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 273), + [8105] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 273), + [8107] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 263), + [8109] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 263), + [8111] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 264), + [8113] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 264), + [8115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4825), + [8117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [8119] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 275), + [8121] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 275), + [8123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [8125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6936), + [8127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5052), + [8129] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), + [8131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5399), + [8133] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), + [8135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 276), + [8137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 276), + [8139] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 277), + [8141] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 277), + [8143] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 265), + [8145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 265), + [8147] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 278), + [8149] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 278), + [8151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 266), + [8153] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 266), + [8155] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 273), + [8157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 273), + [8159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 274), + [8161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 274), + [8163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 281), + [8165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 281), + [8167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 275), + [8169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 275), + [8171] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 282), + [8173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 282), + [8175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 276), + [8177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 276), + [8179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 277), + [8181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 277), + [8183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 9, 0, 278), + [8185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 9, 0, 278), + [8187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), + [8189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [8191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [8193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [8195] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(213), + [8198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [8200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [8202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [8204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 281), + [8206] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 281), + [8208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 10, 0, 282), + [8210] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 10, 0, 282), + [8212] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(257), + [8215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(262), + [8218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [8220] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(269), + [8223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element, 3, 0, 0), + [8225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command, 2, 0, 33), + [8227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 3, 0, 0), + [8229] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 3, 0, 0), + [8231] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 3, 0, 0), + [8233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 3, 0, 0), + [8235] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 4, 0, 110), + [8237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6252), + [8239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), + [8241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5172), + [8243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), + [8245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5329), + [8247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6489), + [8249] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_return, 2, 0, 0), + [8251] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 110), + [8253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 6, 0, 113), + [8255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [8257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), + [8259] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 202), + [8261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 202), + [8263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__type_annotation, 1, 0, 95), + [8267] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 4, 0, 204), + [8269] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 4, 0, 204), + [8271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 207), + [8273] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 207), + [8275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_type, 4, 0, 208), + [8277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_type, 4, 0, 208), + [8279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6330), + [8281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6339), + [8283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_where_command_parenthesized, 4, 0, 108), + [8285] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 110), + [8287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 7, 0, 113), + [8289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6107), + [8291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8293] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_cmd, 2, 0, 13), + [8295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 110), + [8297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_match, 8, 0, 113), + [8299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__command_parenthesized_repeat1, 2, 0, 77), + [8303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try, 4, 0, 124), + [8305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_collection_type, 8, 0, 274), + [8307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_collection_type, 8, 0, 274), + [8309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 3, 0, 162), + [8311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 3, 0, 162), + [8313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6264), + [8315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [8317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4986), + [8319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), + [8321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 4, 0, 177), + [8323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 4, 0, 177), + [8325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 2, 0, 54), + [8327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 160), + [8329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 5, 0, 161), + [8331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 188), + [8333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 5, 0, 189), + [8335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7230), + [8337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), + [8339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), + [8341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5719), + [8343] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 3, 0, 0), + [8345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6032), + [8347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6032), + [8349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5622), + [8351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5622), + [8353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6263), + [8355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5869), + [8357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 60), + [8359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 60), + [8361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_opt, 2, 0, 115), + [8363] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_opt, 2, 0, 115), + [8365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 2, 0, 116), + [8367] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 2, 0, 116), + [8369] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_rest, 2, 0, 21), + [8371] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_rest, 2, 0, 21), + [8373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 61), + [8375] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 61), + [8377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8379] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_short_flag, 2, 0, 21), + [8381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8383] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat1, 1, 0, 0), + [8385] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__param_name, 1, 0, 63), + [8387] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__param_name, 1, 0, 63), + [8389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5410), + [8392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7223), + [8394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 31), + [8398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3121), + [8400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7668), + [8402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2567), + [8404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8406] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__where_predicate_lhs, 3, 0, 0), + [8408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6850), + [8410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6425), + [8412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), + [8414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), + [8416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8418] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag_capsule, 3, 0, 0), + [8420] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 5, 0, 209), + [8422] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 5, 0, 209), + [8424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6222), + [8426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5613), + [8428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5957), + [8430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param_type, 3, 0, 138), + [8432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param_type, 3, 0, 138), + [8434] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 215), + [8436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 216), + [8438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 217), + [8440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 218), + [8442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 219), + [8444] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 6, 0, 220), + [8446] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 221), + [8448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 6, 0, 222), + [8450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), + [8452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), + [8454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5456), + [8456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5457), + [8458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), + [8460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5742), + [8462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5742), + [8464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6153), + [8466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), + [8468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 1), + [8470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 2), + [8472] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 4, 0, 124), + [8474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), + [8476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5114), + [8478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3134), + [8480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4969), + [8482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5044), + [8484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 5), + [8486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_expression_parenthesized, 1, 0, 0), + [8488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 234), + [8490] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 235), + [8492] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5925), + [8494] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6797), + [8496] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6084), + [8498] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 236), + [8500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 237), + [8502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 238), + [8504] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 239), + [8506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 240), + [8508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 7, 0, 241), + [8510] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 242), + [8512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5807), + [8514] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 7, 0, 243), + [8516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_pipe_element_parenthesized, 1, 0, 20), + [8518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6111), + [8520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6312), + [8522] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 250), + [8524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 251), + [8526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 252), + [8528] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 253), + [8530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 254), + [8532] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 255), + [8534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 256), + [8536] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 8, 0, 257), + [8538] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_try_parenthesized, 8, 0, 258), + [8540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 267), + [8542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 268), + [8544] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 269), + [8546] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 270), + [8548] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 271), + [8550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 9, 0, 272), + [8552] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 279), + [8554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_if_parenthesized, 10, 0, 280), + [8556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 1, 0, 0), + [8558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [8560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [8562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [8564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [8566] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(281), + [8569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [8571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), + [8573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [8575] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(217), + [8578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(219), + [8581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [8583] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT(259), + [8586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5020), + [8588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5127), + [8590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6750), + [8592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [8594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4955), + [8596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5120), + [8598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4797), + [8600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), + [8602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5350), + [8604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7726), + [8606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), + [8608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5156), + [8611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5182), + [8614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), + [8616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5156), + [8618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), + [8620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2620), + [8622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5074), + [8624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), + [8626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5673), + [8628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), + [8630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), + [8632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), + [8634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7703), + [8636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), + [8638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5256), + [8640] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 67), + [8642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), [8644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 4, 0, 125), - [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2641), - [8648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5070), - [8650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7721), - [8652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6202), - [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7232), - [8656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6964), - [8658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6341), - [8660] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), - [8662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), - [8664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5149), - [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), - [8668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 62), - [8670] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 62), - [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), - [8674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), - [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5511), - [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5596), - [8680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5615), - [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5132), - [8684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5221), - [8686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), - [8688] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), - [8690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6277), - [8692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 125), - [8694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), - [8696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5141), - [8698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6083), - [8700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [8702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), - [8704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5272), - [8706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5148), - [8708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5266), - [8710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), - [8712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), - [8714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), - [8716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5264), - [8718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5396), - [8720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5267), - [8722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), - [8724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5683), - [8726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5689), - [8728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), - [8730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5251), - [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6654), - [8735] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), - [8737] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5689), - [8739] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5113), - [8741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), - [8743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7009), - [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5057), - [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), - [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4699), - [8751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), - [8753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6425), - [8755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), - [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6715), - [8759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5342), - [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5281), - [8763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2645), - [8765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2794), - [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5365), - [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5350), - [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5598), - [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5574), - [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5919), - [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6942), - [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6548), - [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5160), - [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5566), - [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5431), - [8787] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5778), - [8789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6480), - [8791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), - [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), - [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2309), - [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2152), - [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1506), - [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1656), - [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), - [8805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), - [8807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), - [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4060), - [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3968), - [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3480), - [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3499), - [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3492), - [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1875), - [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2106), - [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1984), - [8825] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), - [8827] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1361), - [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3514), - [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3554), - [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3522), - [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4468), - [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4312), - [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3130), - [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3211), - [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3200), - [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1596), - [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1548), - [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), - [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3269), - [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), - [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3075), - [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3201), - [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), - [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3913), - [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), - [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), - [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3814), - [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3848), - [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3825), - [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3217), - [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3246), - [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3233), - [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), - [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3510), - [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3498), - [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3877), - [8887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3948), - [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), - [8891] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3515), - [8893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3598), - [8895] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3529), - [8897] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5397), - [8900] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5342), - [8903] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5281), - [8906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5441), - [8908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5945), - [8910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5661), - [8912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5197), - [8914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5294), - [8916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(424), - [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(365), - [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7046), - [8922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6379), - [8924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(572), - [8926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(519), - [8928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), - [8930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4826), - [8932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6211), - [8934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), - [8936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5163), - [8938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5361), - [8940] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6202), - [8942] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7232), - [8944] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6964), - [8946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5276), - [8948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), - [8950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1390), - [8952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5123), - [8954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5352), - [8956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6358), - [8958] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3076), - [8960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2966), - [8962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1667), - [8964] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1610), - [8966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), - [8968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), - [8970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2659), - [8972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5268), - [8974] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5256), - [8976] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1658), - [8978] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1887), - [8980] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1800), - [8982] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3824), - [8984] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3873), - [8986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3841), - [8988] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5275), - [8990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), - [8992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5278), - [8994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), - [8996] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5396), - [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5279), - [9001] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5365), - [9004] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), - [9006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5445), - [9008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6199), - [9010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4319), - [9012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4112), - [9014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5298), - [9016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5206), - [9018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), - [9020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5349), - [9022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), - [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5363), - [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), - [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6179), - [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5346), - [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5162), - [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), - [9036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5430), - [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3978), - [9040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3920), - [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6247), - [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4139), - [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4028), - [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3936), - [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3890), - [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6485), - [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5886), - [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6373), - [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), - [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3101), - [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3027), - [9064] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4542), - [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4792), - [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), - [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6507), - [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), - [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(502), - [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(675), - [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(575), - [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2915), - [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2823), - [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(524), - [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(456), - [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6125), - [9090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5817), - [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6357), - [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6288), - [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6477), - [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), - [9100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7068), - [9103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(6186), - [9106] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(5129), - [9109] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 209), SHIFT_REPEAT(7519), - [9112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), - [9114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6544), - [9116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5290), - [9118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), - [9120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), - [9122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6081), - [9124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5420), - [9126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5344), - [9128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5384), - [9130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5370), - [9132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5522), - [9134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1444), - [9136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), - [9138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5501), - [9140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1280), - [9142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5543), - [9144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5461), - [9146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9148] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), - [9150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6657), - [9152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6660), - [9154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5279), - [9157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5502), - [9159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1288), - [9161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), - [9163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6014), - [9165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5541), - [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 248), - [9169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), - [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6029), - [9173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 250), - [9175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), - [9177] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), - [9179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), - [9181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), - [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), - [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 208), - [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5960), - [9189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), - [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5811), - [9193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 263), - [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5525), - [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5624), - [9199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), - [9201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5812), - [9203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 265), - [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5815), - [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), - [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5830), - [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5836), - [9213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4601), - [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4910), - [9217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6758), - [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6773), - [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6434), - [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6441), - [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), - [9227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5842), - [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), - [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6514), - [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6520), - [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), - [9237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6566), - [9239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), - [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), - [9243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6597), - [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6612), - [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6622), - [9249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), - [9251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5853), - [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6271), - [9255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), - [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6143), - [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6176), - [9261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6461), - [9263] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6474), - [9265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6479), - [9267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6542), - [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6550), - [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6596), - [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6092), - [9275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6114), - [9277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6118), - [9279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6123), - [9281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5858), - [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), - [9285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), - [9287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), - [9289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5962), - [9291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5973), - [9293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5467), - [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5303), - [9297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5616), - [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6827), - [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6248), - [9303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2583), - [9305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2559), - [9307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7660), - [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4549), - [9311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1817), - [9313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4648), - [9315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6270), - [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6068), - [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6027), - [9321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7670), - [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5448), - [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5536), - [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), - [9329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5280), - [9331] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5765), - [9334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5685), - [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6291), - [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1308), - [9341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1334), - [9343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7680), - [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), - [9347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1702), - [9349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1682), - [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7689), - [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3994), - [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), - [9357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4728), - [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6328), - [9361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2534), - [9363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2502), - [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), - [9367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4736), - [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4739), - [9371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4741), - [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3909), - [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6333), - [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1434), - [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1475), - [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), - [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4748), - [9385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4750), - [9387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4753), - [9389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6343), - [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1558), - [9393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), - [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7702), - [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4754), - [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6351), - [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2871), - [9403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2829), - [9405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7704), - [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6363), - [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), - [9411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1385), - [9413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7707), - [9415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4758), - [9417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6367), - [9419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), - [9421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7003), - [9423] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), - [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), - [9427] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), - [9429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2768), - [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2780), - [9433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7709), - [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4761), - [9437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6374), - [9439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2980), - [9441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2991), - [9443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7710), - [9445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6377), - [9447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(460), - [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(466), - [9451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7711), - [9453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6380), - [9455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(584), - [9457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(581), - [9459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7712), - [9461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6383), - [9463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2679), - [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), - [9467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7713), - [9469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6629), - [9471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2885), - [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2937), - [9475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7715), - [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5362), - [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5269), - [9481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6390), - [9483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7716), - [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6392), - [9491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(544), - [9493] = {.entry = {.count = 1, .reusable = false}}, SHIFT(514), - [9495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7717), - [9497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6394), - [9499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(405), - [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), - [9503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7718), - [9505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6396), - [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(373), - [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(366), - [9511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7719), - [9513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), - [9515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4767), - [9517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4772), - [9519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4776), - [9521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4782), - [9523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4784), - [9525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4786), - [9527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4787), - [9529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5850), - [9531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5854), - [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4788), - [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4789), - [9537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), - [9539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6172), - [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1408), - [9543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1389), - [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7621), - [9547] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5541), - [9550] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5596), - [9553] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5615), - [9556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), - [9558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7303), - [9560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7306), - [9562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5569), - [9564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6072), - [9566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5243), - [9568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5243), - [9570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), - [9572] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), - [9574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4829), - [9576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4829), - [9578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), - [9580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5224), - [9582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5224), - [9584] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5713), - [9587] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), - [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2638), - [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5937), - [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2444), - [9595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), - [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2632), - [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2763), - [9601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4891), - [9603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4891), - [9605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5069), - [9607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5994), - [9609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5990), - [9611] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), - [9614] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5575), - [9617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7011), - [9619] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6950), - [9621] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [9623] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5632), - [9625] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5035), - [9627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5147), - [9629] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4862), - [9631] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), - [9633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7284), - [9635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7286), - [9637] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5994), - [9640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5990), - [9643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), - [9645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4582), - [9647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), - [9649] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [9651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), - [9653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9655] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), - [9657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4818), - [9659] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4988), - [9661] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7546), - [9663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6807), - [9665] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), - [9667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5158), - [9669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5642), - [9671] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5909), - [9673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(859), - [9675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3945), - [9677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4795), - [9679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4920), - [9681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [9683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6472), - [9685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7136), - [9687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), - [9689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6269), - [9691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2992), - [9693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2962), - [9695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5174), - [9697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1553), - [9699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7734), - [9701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), - [9703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), - [9705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), - [9707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1252), - [9709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), - [9711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [9713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4703), - [9715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4732), - [9717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1433), - [9719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5874), - [9721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6466), - [9723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2530), - [9725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4928), - [9727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4928), - [9729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1439), - [9731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1247), - [9733] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), - [9735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1782), - [9737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1785), - [9739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2807), - [9741] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6824), - [9743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [9745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), - [9747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2820), - [9749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5633), - [9751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5583), - [9753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4160), - [9755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5902), - [9757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), - [9759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5555), - [9761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5437), - [9763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2791), - [9765] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2786), - [9767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5885), - [9769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6526), - [9771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), - [9773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(690), - [9775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5136), - [9777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5153), - [9779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4822), - [9781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4822), - [9783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(633), - [9785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5273), - [9787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5273), - [9789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(636), - [9791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5000), - [9793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2118), - [9795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5003), - [9797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1627), - [9799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(496), - [9801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(465), - [9803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(438), - [9805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4879), - [9807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), - [9809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2078), - [9811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3272), - [9813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5948), - [9815] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), - [9817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1245), - [9819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5903), - [9821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5979), - [9823] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(104), - [9826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6472), - [9829] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), - [9831] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), - [9833] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), - [9835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3942), - [9837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2701), - [9839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1973), - [9841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2037), - [9843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5654), - [9845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6180), - [9847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4724), - [9849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2642), - [9851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5884), - [9853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2414), - [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2610), - [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2614), - [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2785), - [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4647), - [9863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2713), - [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1493), - [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), - [9869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1513), - [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2618), - [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6020), - [9875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5277), - [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5277), - [9879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4922), - [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4922), - [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4923), - [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4923), - [9887] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4924), - [9889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4924), - [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5491), - [9893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6978), - [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), - [9897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), - [9899] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), - [9901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4824), - [9903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), - [9905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5215), - [9907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5215), - [9909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), - [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4106), - [9913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5958), - [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), - [9917] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4823), - [9919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4823), - [9921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5999), - [9923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1294), - [9925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4467), - [9927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), - [9929] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5360), - [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5439), - [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5609), - [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6249), - [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2483), - [9940] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), - [9942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4483), - [9944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), - [9946] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2625), - [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4661), - [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4955), - [9952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2716), - [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2658), - [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6004), - [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), - [9960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6019), - [9962] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), - [9965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1902), - [9967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1909), - [9969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), - [9971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6064), - [9973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6497), - [9975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), - [9977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6504), - [9979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6617), - [9981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6621), - [9983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), - [9985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6112), - [9987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6213), - [9989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6231), - [9991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [9993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3413), - [9995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5387), - [9997] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5953), - [9999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5957), - [10001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5275), - [10003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [10005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6711), - [10007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2113), - [10009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [10011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2147), - [10013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2529), - [10015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6294), - [10017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4716), - [10019] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4706), - [10021] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4707), - [10023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1367), - [10025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2081), - [10027] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), - [10029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4645), - [10031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6120), - [10033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2652), - [10035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4751), - [10037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4752), - [10039] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), - [10041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4755), - [10043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4756), - [10045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6567), - [10047] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6953), - [10049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), - [10051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5036), - [10053] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4460), - [10055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4764), - [10057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4765), - [10059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4482), - [10061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1303), - [10063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5208), - [10065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5208), - [10067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4930), - [10069] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), - [10071] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3292), - [10073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1908), - [10075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2959), - [10077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2955), - [10079] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5255), - [10081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), - [10083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4702), - [10085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5894), - [10087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), - [10089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4727), - [10091] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), - [10093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4994), - [10095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1781), - [10097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1784), - [10099] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 199), - [10101] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 199), - [10103] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 200), - [10105] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 200), - [10107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5762), - [10109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), - [10111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), - [10113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [10115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5554), - [10117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5436), - [10119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), - [10121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(739), - [10123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [10125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(689), - [10127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(632), - [10129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), - [10131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7132), - [10133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5527), - [10135] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6403), - [10137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2667), - [10139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2669), - [10141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2712), - [10143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6536), - [10145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6034), - [10147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), - [10149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), - [10151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [10153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), - [10155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1304), - [10157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [10160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5575), - [10163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), - [10165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1257), - [10167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6498), - [10169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1298), - [10171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6519), - [10173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1263), - [10175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5113), - [10177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1295), - [10179] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(101), - [10182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6711), - [10185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), - [10187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [10189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6598), - [10191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6600), - [10193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5820), - [10195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), - [10197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1347), - [10199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1505), - [10201] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3903), - [10203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6699), - [10205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), - [10207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6442), - [10209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4978), - [10211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5064), - [10213] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), - [10215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3921), - [10217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3464), - [10219] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6446), - [10221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4303), - [10223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4330), - [10225] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6828), - [10228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), - [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4016), - [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3963), - [10234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3937), - [10236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), - [10238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), - [10240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3949), - [10242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3964), - [10244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4001), - [10246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6828), - [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), - [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4947), - [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1823), - [10254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), - [10256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1828), - [10260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4343), - [10262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4326), - [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5177), - [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), - [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5183), - [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5184), - [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5187), - [10274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), - [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5190), - [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5191), - [10280] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), - [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1665), - [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3028), - [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3465), - [10288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6449), - [10290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2964), - [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3466), - [10294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6451), - [10296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), - [10298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), - [10300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6729), - [10302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7304), - [10304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), - [10306] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), - [10308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5083), - [10310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5083), - [10312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5084), - [10314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5084), - [10316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5092), - [10318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5092), - [10320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1440), - [10322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1479), - [10324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), - [10326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), - [10328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), - [10330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), - [10332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1470), - [10334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1447), - [10336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4271), - [10338] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5387), - [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), - [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3469), - [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5964), - [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2004), - [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1410), - [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5142), - [10353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), - [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), - [10357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5966), - [10359] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), - [10361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5099), - [10363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), - [10365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2847), - [10367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2850), - [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), - [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2864), - [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), - [10375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2816), - [10377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2821), - [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), - [10381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), - [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3876), - [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1787), - [10387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6151), - [10389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7325), - [10391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 202), - [10393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 203), - [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1790), - [10397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), - [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3927), - [10401] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 204), - [10403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4218), - [10405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4229), - [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4243), - [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4253), - [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4274), - [10413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), - [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), - [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4285), - [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2413), - [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2220), - [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4076), - [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5127), - [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4084), - [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), - [10431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5219), - [10433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), - [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2006), - [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2798), - [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2775), - [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2767), - [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2774), - [10445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), - [10447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), - [10449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2765), - [10451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2773), - [10453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3860), - [10455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2563), - [10457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), - [10459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5684), - [10461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5684), - [10463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2598), - [10465] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(7031), - [10468] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), - [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), - [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5044), - [10474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5046), - [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5047), - [10478] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), - [10480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5051), - [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5053), - [10484] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5054), - [10486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 214), - [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5479), - [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5956), - [10492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), - [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5827), - [10496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), - [10498] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), - [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), - [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4649), - [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2730), - [10508] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3457), - [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4654), - [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), - [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5008), - [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5010), - [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5011), - [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5014), - [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5015), - [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5017), - [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5018), - [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3458), - [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4657), - [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), - [10534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1317), - [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1810), - [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1330), - [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3897), - [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), - [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4659), - [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(452), - [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(484), - [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), - [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(497), - [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(442), - [10556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(500), - [10558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(453), - [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(454), - [10562] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), - [10564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), - [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1636), - [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), - [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3437), - [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5952), - [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1816), - [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(413), - [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(417), - [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(419), - [10582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(420), - [10584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(423), - [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), - [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(428), - [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(437), - [10592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5986), - [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), - [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3178), - [10598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), - [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3192), - [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6003), - [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5353), - [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2536), - [10608] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), - [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2543), - [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6006), - [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1310), - [10616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1435), - [10618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6008), - [10620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1438), - [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1183), - [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5288), - [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3070), - [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6024), - [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3081), - [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), - [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), - [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), - [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), - [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1564), - [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), - [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5860), - [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(381), - [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5410), - [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5422), - [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3905), - [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2873), - [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2875), - [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6041), - [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2590), - [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5199), - [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5201), - [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), - [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5864), - [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2845), - [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(731), - [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(734), - [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), - [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5056), - [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), - [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1409), - [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), - [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5019), - [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7209), - [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6649), - [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), - [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5872), - [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), - [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2789), - [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), - [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3033), - [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2953), - [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(356), - [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(461), - [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(463), - [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(443), - [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), - [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(596), - [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(336), - [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2680), - [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), - [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), - [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(664), - [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(666), - [10732] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [10734] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), - [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2889), - [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(545), - [10744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(550), - [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(406), - [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), - [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), - [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(380), - [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), - [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5526), - [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3803), - [10760] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), - [10762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1168), - [10764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3400), - [10766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), - [10768] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), - [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2007), - [10772] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [10774] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), - [10776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1153), - [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5532), - [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), - [10782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6703), - [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5922), - [10786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5922), - [10788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), - [10790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), - [10792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 229), - [10794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [10796] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), - [10798] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), - [10800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), - [10802] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), - [10804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), - [10806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), - [10808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1268), - [10810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6646), - [10812] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), - [10814] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), - [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1196), - [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1190), - [10820] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), - [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), - [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1238), - [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2011), - [10828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 214), - [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1428), - [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), - [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4612), - [10836] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), - [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), - [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4613), - [10842] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), - [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2012), - [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1432), - [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), - [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), - [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3460), - [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4737), - [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2074), - [10860] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3461), - [10862] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4738), - [10864] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5442), - [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5517), - [10868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6938), - [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2612), - [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), - [10874] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), - [10876] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), - [10878] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), - [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), - [10882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1546), - [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), - [10886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), - [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), - [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), - [10892] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1547), - [10894] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1482), - [10896] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1485), - [10898] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), - [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1487), - [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), - [10904] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), - [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1488), - [10908] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), - [10910] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), - [10912] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6699), - [10915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), - [10917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(863), - [10919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), - [10923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1265), - [10925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1321), - [10927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5573), - [10929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7041), - [10931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1271), - [10933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3798), - [10935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), - [10937] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5454), - [10939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), - [10941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), - [10943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), - [10945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3976), - [10947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), - [10949] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3467), - [10951] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6523), - [10953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), - [10955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2015), - [10957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), - [10959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), - [10961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3462), - [10963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6232), - [10965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4064), - [10967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3463), - [10969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6244), - [10971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4085), - [10973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1557), - [10975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1587), - [10977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), - [10979] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4087), - [10981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4099), - [10983] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4065), - [10985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4043), - [10987] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), - [10989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3468), - [10991] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), - [10993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6955), - [10995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), - [10997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), - [10999] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1377), - [11001] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2647), - [11003] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1979), - [11005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), - [11007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), - [11009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1571), - [11011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), - [11013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2615), - [11015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1184), - [11017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [11019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), - [11021] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), - [11023] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), - [11025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), - [11027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), - [11029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2714), - [11031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2739), - [11033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2740), - [11035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2686), - [11037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), - [11039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2708), - [11041] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), - [11043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2709), - [11045] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), - [11047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), - [11049] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), - [11051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2886), - [11053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4769), - [11055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1515), - [11057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), - [11059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1524), - [11061] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1541), - [11063] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), - [11065] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1481), - [11067] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4783), - [11069] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1367), - [11072] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), - [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), - [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4785), - [11078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), - [11080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2952), - [11082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6806), - [11084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), - [11086] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4102), - [11088] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4027), - [11090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4022), - [11092] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4025), - [11094] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), - [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), - [11098] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4093), - [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4026), - [11102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2683), - [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4974), - [11106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4480), - [11108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7641), - [11110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), - [11112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4544), - [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), - [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2672), - [11118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), - [11120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2704), - [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), - [11124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2744), - [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2684), - [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), - [11130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11132] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), - [11134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), - [11136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6694), - [11138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4640), - [11140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11142] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), - [11144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4596), - [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), - [11148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4017), - [11150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3939), - [11152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), - [11154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3966), - [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4009), - [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4010), - [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3957), - [11162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3397), - [11164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7268), - [11166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), - [11168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1756), - [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4896), - [11172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1758), - [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5175), - [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5178), - [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5179), - [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5180), - [11182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5182), - [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5185), - [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5186), - [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5189), - [11190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2030), - [11192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7566), - [11194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3129), - [11196] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3193), - [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1437), - [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1441), - [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1442), - [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1443), - [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), - [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), - [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), - [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6013), - [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1466), - [11216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2041), - [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3071), - [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6022), - [11222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1618), - [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3092), - [11226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6984), - [11228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2819), - [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2825), - [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), - [11234] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2839), - [11236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2849), - [11238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2860), - [11240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2862), - [11242] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), - [11246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), - [11248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), - [11250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7346), - [11252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5793), - [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2013), - [11256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5757), - [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4191), - [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4219), - [11262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4220), - [11264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4223), - [11266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), - [11268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4255), - [11270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4256), - [11272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4277), - [11274] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6432), - [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6884), - [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5512), - [11280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), - [11282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5443), - [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1624), - [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), - [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), - [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1552), - [11292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), - [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), - [11296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), - [11298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2764), - [11300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2783), - [11302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), - [11304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2501), - [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), - [11308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(688), - [11310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(692), - [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5151), - [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7649), - [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), - [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), - [11320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), - [11322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), - [11324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), - [11326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), - [11328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), - [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5048), - [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5049), - [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5052), - [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7377), - [11338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4032), - [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(634), - [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(637), - [11344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), - [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), - [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), - [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), - [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5009), - [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5012), - [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5013), - [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4577), - [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4584), - [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5016), - [11364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6254), - [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(499), - [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1586), - [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), - [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), - [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), - [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7037), - [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(487), - [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1593), - [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(440), - [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(441), - [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1550), - [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), - [11390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(451), - [11392] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), - [11394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7061), - [11396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2005), - [11398] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7673), - [11400] = {.entry = {.count = 1, .reusable = false}}, SHIFT(411), - [11402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5816), - [11404] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), - [11406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), - [11408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), - [11410] = {.entry = {.count = 1, .reusable = false}}, SHIFT(416), - [11412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(418), - [11414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(421), - [11416] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), - [11418] = {.entry = {.count = 1, .reusable = false}}, SHIFT(426), - [11420] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6150), - [11422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6152), - [11424] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), - [11426] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5482), - [11428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5490), - [11430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5831), - [11432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5540), - [11434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5963), - [11436] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1980), - [11438] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1981), - [11440] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(859), - [11443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1982), - [11445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), - [11447] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), - [11449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), - [11451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), - [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), - [11455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7369), - [11457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), - [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5845), - [11461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), - [11463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6611), - [11465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5741), - [11467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6090), - [11469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6144), - [11471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4614), - [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6437), - [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6465), - [11477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6266), - [11479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1969), - [11481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6546), - [11483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5568), - [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), - [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5510), - [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5500), - [11491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), - [11493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), - [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2008), - [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5774), - [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2009), - [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), - [11503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7274), - [11505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7275), - [11507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4059), - [11509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), - [11511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5569), - [11513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7267), - [11515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1249), - [11517] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), - [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5705), - [11521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), - [11523] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), - [11525] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), - [11527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1273), - [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5593), - [11531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5668), - [11533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6766), - [11535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1831), - [11537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5530), - [11539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), - [11541] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), - [11543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1852), - [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), - [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), - [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), - [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5680), - [11553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), - [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5687), - [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5987), - [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5993), - [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5728), - [11563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), - [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5995), - [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5734), - [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5755), - [11571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5761), - [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6005), - [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5782), - [11577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), - [11579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5788), - [11581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), - [11583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6012), - [11585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5703), - [11587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5580), - [11589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), - [11591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6047), - [11593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5592), - [11595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5597), - [11597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), - [11599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5608), - [11601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5614), - [11603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5625), - [11605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5630), - [11607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), - [11609] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5640), - [11611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5643), - [11613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7259), - [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5650), - [11618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), - [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5652), - [11622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), - [11624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), - [11626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4747), - [11628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), - [11630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5667), - [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5671), - [11634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5673), - [11636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4749), - [11638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), - [11640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5677), - [11642] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), - [11644] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6806), - [11647] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4565), - [11649] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4760), - [11651] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), - [11653] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4726), - [11655] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4766), - [11657] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), - [11659] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), - [11661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), - [11663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7287), - [11666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1847), - [11668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1580), - [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), - [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(589), - [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(590), - [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1653), - [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4384), - [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4374), - [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1663), - [11684] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7217), - [11687] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), - [11689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4505), - [11691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), - [11693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [11695] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7541), - [11697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1584), - [11699] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6388), - [11701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5520), - [11703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6407), - [11705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6586), - [11707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), - [11711] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), - [11713] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6421), - [11715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4832), - [11717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7724), - [11719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1843), - [11721] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), - [11723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), - [11725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6418), - [11727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7226), - [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1673), - [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4509), - [11734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4511), - [11736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2256), - [11738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2257), - [11740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1678), - [11742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4286), - [11744] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4288), - [11746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4225), - [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4291), - [11750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(553), - [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(526), - [11754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6228), - [11756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(527), - [11758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(528), - [11760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7513), - [11762] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), - [11764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), - [11766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1844), - [11768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6467), - [11770] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11772] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), - [11774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4363), - [11776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4364), - [11778] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), - [11780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), - [11782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), - [11784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(586), - [11786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(588), - [11788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1846), - [11790] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 199), - [11792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 199), - [11794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), - [11796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6245), - [11798] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 200), - [11800] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 200), - [11802] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), - [11804] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), - [11806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), - [11808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [11810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1379), - [11812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6011), - [11814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(732), - [11816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4757), - [11818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3896), - [11820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(746), - [11822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4831), - [11824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7484), - [11826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5494), - [11828] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), - [11830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5060), - [11832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [11834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [11836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4412), - [11838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7335), - [11840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1399), - [11842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1424), - [11844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4722), - [11846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4262), - [11848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2621), - [11850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(687), - [11852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), - [11854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2077), - [11856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5625), - [11858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6635), - [11860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(711), - [11862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1791), - [11864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5797), - [11866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), - [11868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6882), - [11870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(765), - [11872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(715), - [11874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3435), - [11876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), - [11878] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), - [11880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5692), - [11882] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6440), - [11884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2776), - [11886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3125), - [11888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), - [11890] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), - [11892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 235), - [11894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4403), - [11896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5544), - [11898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2950), - [11900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), - [11902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3163), - [11904] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [11906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [11908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6743), - [11910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), - [11912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2525), - [11914] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3022), - [11916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1436), - [11918] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5514), - [11920] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), - [11922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [11924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(595), - [11926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(505), - [11928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3969), - [11930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [11932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), - [11934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4662), - [11936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), - [11938] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), - [11940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(481), - [11942] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7535), - [11944] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), - [11946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1372), - [11948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), - [11950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4077), - [11952] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1827), - [11954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5167), - [11956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), - [11958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4232), - [11960] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2562), - [11962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5617), - [11964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(605), - [11966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), - [11968] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2142), - [11970] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4400), - [11972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(665), - [11974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4024), - [11976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [11978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), - [11980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [11982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(475), - [11984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(482), - [11986] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), - [11988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(610), - [11990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4800), - [11992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3291), - [11994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(612), - [11996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2898), - [11998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [12000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5551), - [12002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1839), - [12004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1841), - [12006] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7067), - [12008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1651), - [12010] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5593), - [12012] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [12014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2888), - [12016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4528), - [12018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(616), - [12020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7197), - [12022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1832), - [12024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [12026] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4835), - [12028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5565), - [12030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2016), - [12032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7425), - [12034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(548), - [12036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7447), - [12038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3073), - [12040] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3189), - [12042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(407), - [12044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [12046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4335), - [12048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), - [12050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2453), - [12052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1855), - [12054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1824), - [12056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(378), - [12058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4054), - [12060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2728), - [12062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3985), - [12064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), - [12066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), - [12068] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), - [12070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1346), - [12072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1755), - [12074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5173), - [12076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7650), - [12078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1525), - [12080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [12082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4096), - [12084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3415), - [12086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6644), - [12088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2565), - [12090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), - [12092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(660), - [12094] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), - [12096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5110), - [12098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), - [12100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1631), - [12102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), - [12104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [12106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 235), - [12108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), - [12110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7483), - [12112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2685), - [12114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5708), - [12116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), - [12118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3908), - [12120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3151), - [12122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(474), - [12124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4731), - [12126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5875), - [12128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7574), - [12130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4030), - [12132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6276), - [12134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4701), - [12136] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 213), - [12138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), - [12140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4098), - [12142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2172), - [12144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4470), - [12146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), - [12148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7532), - [12150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4404), - [12152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2736), - [12154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2397), - [12156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), - [12158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), - [12160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), - [12162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5504), - [12164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), - [12166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4693), - [12168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5668), - [12170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1161), - [12172] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5809), - [12174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4999), - [12176] = {.entry = {.count = 1, .reusable = true}}, SHIFT(337), - [12178] = {.entry = {.count = 1, .reusable = true}}, SHIFT(403), - [12180] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4097), - [12182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1724), - [12184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7381), - [12186] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4615), - [12188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), - [12190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1687), - [12192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2547), - [12194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4304), - [12196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2626), - [12198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5965), - [12200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5072), - [12202] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7770), - [12204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5411), - [12206] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3845), - [12208] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), - [12210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4573), - [12212] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [12214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [12216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3438), - [12218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6453), - [12220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), - [12222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7466), - [12224] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), - [12226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3925), - [12228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2136), - [12230] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), - [12232] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1714), - [12234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(386), - [12236] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3001), - [12238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3003), - [12240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), - [12242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1196), - [12244] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2874), - [12246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7554), - [12248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [12250] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2538), - [12252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6722), - [12254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1319), - [12256] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), - [12258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7615), - [12260] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7428), - [12262] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 213), - [12264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2863), - [12266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6256), - [12268] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3023), - [12270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6748), - [12272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6167), - [12274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), - [12276] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [12278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2994), - [12280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7775), - [12282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4876), - [12284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [12286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), - [12288] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7723), - [12290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5172), - [12292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1309), - [12294] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5730), - [12296] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1426), - [12298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2644), - [12300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5200), - [12302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6746), - [12304] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), - [12306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), - [12308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), - [12310] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7444), - [12312] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7520), - [12314] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7573), - [12316] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7636), - [12318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7659), - [12320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), - [12322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), - [12324] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7400), - [12326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7410), - [12328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7423), - [12330] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7433), - [12332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7441), - [12334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7449), - [12336] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7465), - [12338] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), - [12340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7506), - [12342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), - [12344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7518), - [12346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7524), - [12348] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7533), - [12350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2121), - [12352] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2023), - [12354] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1632), - [12356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4805), - [12358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(404), - [12360] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5697), - [12362] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3970), - [12364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2139), - [12366] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3971), - [12368] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2146), - [12370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1166), - [12372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2449), - [12374] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1429), - [12376] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3065), - [12378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), - [12380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), - [12382] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1495), - [12384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), - [12386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5518), - [12388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3892), - [12390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4639), - [12392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4796), - [12394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1542), - [12396] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [12398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [12400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2100), - [12402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3952), - [12404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1814), - [12406] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4537), - [12408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2988), - [12410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(434), - [12412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), - [12414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2141), - [12416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7366), - [12418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4056), - [12420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5578), - [12422] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7733), - [12424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1718), - [12426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), - [12428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1603), - [12430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [12432] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4421), - [12434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1788), - [12436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4768), - [12438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1857), - [12440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), + [8646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2613), + [8648] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 4, 0, 117), + [8650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 4, 0, 117), + [8652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 3, 0, 67), + [8654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2598), + [8656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5050), + [8658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5158), + [8660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6515), + [8662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7285), + [8664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7027), + [8666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5078), + [8668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4984), + [8670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5231), + [8672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5023), + [8674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5255), + [8676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5124), + [8678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5175), + [8680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6506), + [8682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6173), + [8684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter, 3, 0, 59), + [8686] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter, 3, 0, 59), + [8688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), SHIFT_REPEAT(5119), + [8693] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_repeat2, 2, 0, 0), + [8695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6129), + [8697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5131), + [8699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [8701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5137), + [8703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5259), + [8705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5419), + [8707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5299), + [8709] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6800), + [8711] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5356), + [8714] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5314), + [8717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5163), + [8719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5356), + [8721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5314), + [8723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2643), + [8725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5133), + [8727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5362), + [8729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4729), + [8731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4813), + [8733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6516), + [8735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6519), + [8737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2631), + [8739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2649), + [8741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5736), + [8743] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5737), + [8745] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5802), + [8747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2772), + [8749] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5272), + [8751] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5631), + [8753] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5493), + [8755] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5925), + [8757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6797), + [8759] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6084), + [8761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6748), + [8763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1997), + [8765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2169), + [8767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2141), + [8769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5150), + [8771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5559), + [8773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5417), + [8775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5713), + [8777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6195), + [8779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5818), + [8781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1477), + [8783] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1641), + [8785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1614), + [8787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(348), + [8789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(424), + [8791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6958), + [8793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3459), + [8795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3486), + [8797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3478), + [8799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1845), + [8801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2065), + [8803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1991), + [8805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1392), + [8807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1357), + [8809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3493), + [8811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3518), + [8813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3504), + [8815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3168), + [8817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3213), + [8819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3184), + [8821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1594), + [8823] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1486), + [8825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5199), + [8827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5318), + [8829] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3807), + [8831] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3864), + [8833] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3840), + [8835] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3220), + [8837] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3242), + [8839] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3230), + [8841] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4508), + [8843] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4332), + [8845] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3107), + [8847] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3187), + [8849] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3171), + [8851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3904), + [8853] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4044), + [8855] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3933), + [8857] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3792), + [8859] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3830), + [8861] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3820), + [8863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3210), + [8865] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3232), + [8867] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3219), + [8869] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3481), + [8871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3494), + [8873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3482), + [8875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3869), + [8877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3947), + [8879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3923), + [8881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3508), + [8883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3545), + [8885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3525), + [8887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6674), + [8889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4733), + [8891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4940), + [8893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6502), + [8895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6503), + [8897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5170), + [8899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5300), + [8901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(404), + [8903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(376), + [8905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6428), + [8907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(554), + [8909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(516), + [8911] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5350), + [8914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5102), + [8916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5280), + [8918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1426), + [8920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1376), + [8922] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5232), + [8925] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5525), + [8927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5885), + [8929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5719), + [8931] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1646), + [8933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1543), + [8935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5736), + [8937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5737), + [8939] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6515), + [8941] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7285), + [8943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7027), + [8945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5086), + [8947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5307), + [8949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5168), + [8951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2623), + [8953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6438), + [8955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3082), + [8957] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2988), + [8959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5154), + [8961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5287), + [8963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5262), + [8965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1676), + [8967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1933), + [8969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1721), + [8971] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4058), + [8973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3962), + [8975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6078), + [8977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6079), + [8979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6504), + [8981] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), SHIFT_REPEAT(7013), + [8984] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), SHIFT_REPEAT(6176), + [8987] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), SHIFT_REPEAT(5129), + [8990] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 206), SHIFT_REPEAT(7502), + [8993] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5198), + [8995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5481), + [8997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6326), + [8999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4301), + [9001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4194), + [9003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5322), + [9005] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5298), + [9007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1286), + [9009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5337), + [9011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5343), + [9013] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5174), + [9015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5532), + [9017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5309), + [9019] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5299), + [9022] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5230), + [9024] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5510), + [9026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5324), + [9028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5546), + [9030] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6174), + [9032] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5399), + [9034] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5179), + [9036] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5410), + [9038] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1283), + [9040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5403), + [9042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3961), + [9044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3902), + [9046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6359), + [9048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4200), + [9050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4062), + [9052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3921), + [9054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3880), + [9056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6263), + [9058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5869), + [9060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5378), + [9062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5484), + [9064] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5319), + [9066] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6451), + [9068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2891), + [9070] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3034), + [9072] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2997), + [9074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6460), + [9076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(514), + [9078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(656), + [9080] = {.entry = {.count = 1, .reusable = true}}, SHIFT(573), + [9082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2873), + [9084] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2853), + [9086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(497), + [9088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(462), + [9090] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4531), + [9092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4780), + [9094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6245), + [9096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6246), + [9098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6153), + [9100] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5850), + [9102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6178), + [9104] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6508), + [9106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6525), + [9108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5419), + [9111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5320), + [9113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5540), + [9115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5375), + [9117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6131), + [9119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6146), + [9121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6463), + [9123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2909), + [9125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2927), + [9127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7697), + [9129] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 203), + [9131] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4622), + [9133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5550), + [9135] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 203), + [9137] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 205), + [9139] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4624), + [9141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 2, 0, 205), + [9143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4628), + [9145] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4629), + [9147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5500), + [9149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5652), + [9151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5545), + [9153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5270), + [9155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5643), + [9157] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 245), + [9159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4644), + [9161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 245), + [9163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 247), + [9165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4646), + [9167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 4, 0, 247), + [9169] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4651), + [9171] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4652), + [9173] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 260), + [9175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4664), + [9177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 260), + [9179] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5436), + [9181] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 262), + [9183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4666), + [9185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_collection_type_repeat1, 5, 0, 262), + [9187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4670), + [9189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4674), + [9191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4683), + [9193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6830), + [9195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6360), + [9197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2581), + [9199] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2585), + [9201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7643), + [9203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4685), + [9205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4686), + [9207] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4688), + [9209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5437), + [9211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4690), + [9213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6371), + [9215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5904), + [9217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6010), + [9219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7653), + [9221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1797), + [9223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4692), + [9225] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4693), + [9227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1287), + [9229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5278), + [9231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4694), + [9233] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4703), + [9235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5829), + [9237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6385), + [9239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1297), + [9241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1312), + [9243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7663), + [9245] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5797), + [9247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4704), + [9249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6399), + [9251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1634), + [9253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1655), + [9255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7672), + [9257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5923), + [9259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4551), + [9261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4897), + [9263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6848), + [9265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6853), + [9267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1279), + [9269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5552), + [9271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5798), + [9273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4000), + [9275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5426), + [9277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5429), + [9279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6416), + [9281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2519), + [9283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2449), + [9285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7682), + [9287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_parameter_parens_repeat1, 1, 0, 0), + [9291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5438), + [9293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5804), + [9295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3882), + [9297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5915), + [9299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6419), + [9301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1420), + [9303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1431), + [9305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7683), + [9307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5843), + [9309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5849), + [9311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6426), + [9313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1557), + [9315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1595), + [9317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7685), + [9319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6531), + [9321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6532), + [9323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6432), + [9325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2831), + [9327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2822), + [9329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7687), + [9331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6443), + [9333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1382), + [9335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1367), + [9337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7690), + [9339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6446), + [9341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6975), + [9343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6782), + [9345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7691), + [9347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5972), + [9349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6449), + [9351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2744), + [9353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2782), + [9355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7692), + [9357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6452), + [9359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3005), + [9361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2995), + [9363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7693), + [9365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6455), + [9367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(525), + [9369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(504), + [9371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7694), + [9373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5936), + [9375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6458), + [9377] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2730), + [9379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2735), + [9381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7695), + [9383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5161), + [9385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6465), + [9387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [9389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [9391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7698), + [9393] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6467), + [9395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(520), + [9397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(535), + [9399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7699), + [9401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6469), + [9403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(391), + [9405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(415), + [9407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7700), + [9409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6471), + [9411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(372), + [9413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(367), + [9415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7701), + [9417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6035), + [9419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5541), + [9421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1282), + [9423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6560), + [9425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1416), + [9427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6565), + [9429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6572), + [9431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6573), + [9433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5873), + [9435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4552), + [9437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5648), + [9440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5760), + [9443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4553), + [9445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6575), + [9447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6577), + [9449] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6580), + [9451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3974), + [9453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6581), + [9455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5875), + [9457] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5430), + [9459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6589), + [9461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6591), + [9463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6593), + [9465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6602), + [9467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6063), + [9469] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6065), + [9471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5887), + [9473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6066), + [9475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6067), + [9477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6069), + [9479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6071), + [9481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6072), + [9483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6073), + [9485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6074), + [9487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6309), + [9489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1404), + [9491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1405), + [9493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7604), + [9495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6075), + [9497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5898), + [9499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5933), + [9501] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5934), + [9503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5808), + [9505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6048), + [9507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1285), + [9509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5900), + [9511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5980), + [9513] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__multiple_types_repeat1, 2, 0, 0), SHIFT_REPEAT(5550), + [9516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6965), + [9518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6998), + [9520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5926), + [9522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5991), + [9524] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5673), + [9527] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5687), + [9530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5375), + [9533] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6052), + [9535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5271), + [9537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6961), + [9539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6613), + [9541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [9543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [9545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4979), + [9547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5794), + [9549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5937), + [9551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4816), + [9553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4816), + [9555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4977), + [9557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4608), + [9559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4608), + [9561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6809), + [9563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7522), + [9565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 9), + [9567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5572), + [9569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5832), + [9571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5658), + [9573] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2635), + [9575] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6046), + [9577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2425), + [9579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2636), + [9581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2603), + [9583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2777), + [9585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__variable_name, 1, 0, 11), + [9587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5218), + [9589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5218), + [9591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5402), + [9593] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5128), + [9595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4849), + [9597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4967), + [9599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7194), + [9601] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7196), + [9603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9605] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 1, 0, 0), + [9607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5496), + [9609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5865), + [9611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(5613), + [9614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4878), + [9616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4878), + [9618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5059), + [9620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1284), + [9622] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5780), + [9625] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(5780), + [9628] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5794), + [9631] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_repeat1, 2, 0, 0), SHIFT_REPEAT(5937), + [9634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5196), + [9636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5196), + [9638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7302), + [9640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7309), + [9642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1281), + [9644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4805), + [9646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4985), + [9648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5166), + [9650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5166), + [9652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6137), + [9654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2601), + [9656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5996), + [9658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2716), + [9660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [9662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5940), + [9664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(834), + [9666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1546), + [9668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4916), + [9670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4916), + [9672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5425), + [9674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [9676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6225), + [9678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2124), + [9680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7667), + [9682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6625), + [9684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(295), + [9686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2127), + [9688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5995), + [9690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5971), + [9692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5910), + [9694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6244), + [9696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5827), + [9698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6555), + [9700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4866), + [9702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3375), + [9704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4636), + [9706] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 3, 0, 0), + [9708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4743), + [9710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1485), + [9712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1497), + [9714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5606), + [9716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6523), + [9718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2595), + [9720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2656), + [9722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2628), + [9724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5892), + [9726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2413), + [9728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2629), + [9730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2630), + [9732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2784), + [9734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4085), + [9736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4087), + [9738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4487), + [9740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4458), + [9742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2692), + [9744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2694), + [9746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1862), + [9748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1900), + [9750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5966), + [9752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1251), + [9754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3930), + [9756] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 2, 0, 13), + [9758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3986), + [9760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2987), + [9762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2943), + [9764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5238), + [9766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5241), + [9768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4542), + [9770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4577), + [9772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1446), + [9774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1449), + [9776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5549), + [9778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1805), + [9780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1719), + [9782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2852), + [9784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5939), + [9786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1236), + [9788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2854), + [9790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4810), + [9792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4810), + [9794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5594), + [9796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5641), + [9798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4180), + [9800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4811), + [9802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4811), + [9804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4235), + [9806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1290), + [9808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5909), + [9810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5489), + [9812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5497), + [9814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2743), + [9816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2748), + [9818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4678), + [9820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4953), + [9822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(674), + [9824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(683), + [9826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5125), + [9828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5027), + [9830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(668), + [9832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(591), + [9834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4989), + [9836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5025), + [9838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5188), + [9840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5188), + [9842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(445), + [9844] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 88), + [9846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(447), + [9848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(406), + [9850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(412), + [9852] = {.entry = {.count = 2, .reusable = false}}, REDUCE(sym_block, 2, 0, 0), REDUCE(sym_val_record, 2, 0, 0), + [9855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5715), + [9857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6090), + [9859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5918), + [9861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6141), + [9863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5176), + [9865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5176), + [9867] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 27), + [9869] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 2, 0, 28), + [9871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2056), + [9873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2000), + [9875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2442), + [9877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5605), + [9879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6196), + [9881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2668), + [9883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5193), + [9885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5193), + [9887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2482), + [9889] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4907), + [9891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4907), + [9893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4908), + [9895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4908), + [9897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4909), + [9899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4909), + [9901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 42), + [9903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 3, 0, 44), + [9905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1242), + [9907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5856), + [9909] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4582), + [9911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4905), + [9913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 2, 0, 0), + [9915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7115), + [9917] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5293), + [9920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2622), + [9922] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2681), + [9924] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2646), + [9926] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5956), + [9928] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2648), + [9930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5985), + [9932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2653), + [9934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6040), + [9936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6772), + [9938] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1606), + [9940] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(112), + [9943] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6225), + [9946] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 2, 0, 72), + [9948] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4809), + [9950] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4809), + [9952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6549), + [9954] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1259), + [9956] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6085), + [9958] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6849), + [9960] = {.entry = {.count = 1, .reusable = false}}, SHIFT(108), + [9962] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6942), + [9964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1802), + [9966] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1737), + [9968] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5169), + [9970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5169), + [9972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5198), + [9974] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5592), + [9976] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5640), + [9978] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6557), + [9980] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5488), + [9982] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5560), + [9984] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4635), + [9986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2662), + [9988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(673), + [9990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(682), + [9992] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5340), + [9994] = {.entry = {.count = 1, .reusable = true}}, SHIFT(666), + [9996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4742), + [9998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(590), + [10000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1243), + [10002] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6558), + [10004] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2611), + [10006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5181), + [10008] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5181), + [10010] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6578), + [10012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6579), + [10014] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4620), + [10016] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2640), + [10018] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6582), + [10020] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4915), + [10022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3279), + [10024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4621), + [10026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2655), + [10028] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6583), + [10030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6559), + [10032] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(108), + [10035] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), SHIFT_REPEAT(6942), + [10038] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 2, 0, 72), + [10040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5928), + [10042] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2464), + [10044] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5428), + [10046] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6486), + [10048] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2617), + [10050] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2624), + [10052] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [10054] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3381), + [10056] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1238), + [10058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6307), + [10060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4484), + [10062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6228), + [10064] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), + [10067] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 2, 0, 0), SHIFT_REPEAT(5780), + [10070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5821), + [10072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5813), + [10074] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5795), + [10076] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6834), + [10078] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4439), + [10080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5834), + [10082] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1254), + [10084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6533), + [10086] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [10088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1241), + [10090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [10092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1883), + [10094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1341), + [10096] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2106), + [10098] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 1, 0, 0), + [10100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4980), + [10102] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4980), + [10104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5838), + [10106] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1292), + [10108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4647), + [10110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4650), + [10112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2123), + [10114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6606), + [10116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4656), + [10118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2986), + [10120] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6607), + [10122] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [10124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4658), + [10126] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3013), + [10128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 0, 196), + [10130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 0, 196), + [10132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5024), + [10134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5024), + [10136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [10138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7110), + [10140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2676), + [10142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6603), + [10144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6605), + [10146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [10148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5133), + [10150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5877), + [10152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4677), + [10154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4541), + [10156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5930), + [10158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 0, 197), + [10160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 0, 197), + [10162] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4575), + [10164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2126), + [10166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2481), + [10168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5948), + [10170] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6769), + [10172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4679), + [10174] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1861), + [10176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 150), + [10178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1511), + [10180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2328), + [10182] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2717), + [10184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6932), + [10186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2718), + [10188] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6865), + [10190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1177), + [10192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1192), + [10194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6810), + [10196] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern, 3, 0, 82), + [10198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4297), + [10200] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4298), + [10202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1549), + [10204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__block_body_repeat1, 2, 0, 0), SHIFT_REPEAT(6810), + [10207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_cell_path_repeat1, 2, 0, 0), SHIFT_REPEAT(5340), + [10210] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [10212] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 4, 0, 89), + [10214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 4, 0, 90), + [10216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expr_interpolated, 3, 0, 0), + [10220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3449), + [10222] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6491), + [10224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3450), + [10226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6493), + [10228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1545), + [10230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1566), + [10232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1568), + [10234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 4, 0, 91), + [10236] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 3, 0, 92), + [10238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6948), + [10240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7216), + [10242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_new, 3, 0, 69), + [10244] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias, 5, 0, 135), + [10246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 136), + [10248] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 5, 0, 137), + [10250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3451), + [10252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6534), + [10254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3452), + [10256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6535), + [10258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3453), + [10260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6537), + [10262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3454), + [10264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6538), + [10266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1574), + [10268] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1575), + [10270] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1578), + [10272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5514), + [10274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern, 4, 0, 140), + [10276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3910), + [10278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3415), + [10280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6567), + [10282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3455), + [10284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6570), + [10286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1581), + [10288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 5, 0, 143), + [10290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 3, 0, 144), + [10292] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3914), + [10294] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat2, 2, 0, 0), SHIFT_REPEAT(6688), + [10297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 4, 0, 99), + [10299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1705), + [10301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_for, 5, 0, 159), + [10303] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1985), + [10305] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3431), + [10307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5959), + [10309] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5140), + [10311] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3433), + [10313] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5941), + [10315] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5060), + [10317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_extern, 4, 0, 100), + [10319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3434), + [10321] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5809), + [10323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3426), + [10325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5859), + [10327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5045), + [10329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 2, 0, 0), + [10331] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1193), + [10333] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1174), + [10335] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5823), + [10337] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5911), + [10339] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5976), + [10341] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6020), + [10343] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5824), + [10345] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5844), + [10347] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5861), + [10349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5888), + [10351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1987), + [10353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6924), + [10355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5841), + [10357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5841), + [10359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement, 1, 0, 0), + [10361] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration, 1, 0, 0), + [10363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement, 1, 0, 0), + [10365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment, 1, 0, 4), + [10367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__ctrl_statement, 1, 0, 0), + [10369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1228), + [10371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1412), + [10373] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1415), + [10375] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_hide, 1, 0, 0), + [10377] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stmt_overlay, 1, 0, 0), + [10379] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1993), + [10381] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1498), + [10383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1514), + [10385] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1516), + [10387] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1521), + [10389] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1526), + [10391] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1528), + [10393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1529), + [10395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3420), + [10397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5863), + [10399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3776), + [10401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3995), + [10403] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10405] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 0), + [10407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3959), + [10409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1994), + [10411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1996), + [10413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 64), + [10415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4078), + [10417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4008), + [10419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4056), + [10421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4072), + [10423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4092), + [10425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4045), + [10427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4042), + [10429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4059), + [10431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 5, 0, 166), + [10433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1373), + [10435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2602), + [10437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3421), + [10439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5946), + [10441] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1988), + [10443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2592), + [10445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), + [10447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 2, 0, 0), SHIFT_REPEAT(6932), + [10450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10452] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_double_quotes_repeat1, 1, 0, 34), + [10454] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let, 2, 0, 10), + [10456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2710), + [10458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2729), + [10460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2738), + [10462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2665), + [10464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2682), + [10466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2689), + [10468] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2695), + [10470] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2696), + [10472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1476), + [10474] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut, 2, 0, 10), + [10476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3892), + [10478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_hide, 3, 0, 68), + [10480] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 2, 0, 10), + [10482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3888), + [10484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_export, 2, 0, 12), + [10486] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3997), + [10488] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4006), + [10490] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3929), + [10492] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3931), + [10494] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3938), + [10496] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3941), + [10498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3944), + [10500] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3924), + [10502] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4934), + [10504] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1837), + [10506] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1858), + [10508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 175), + [10510] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5242), + [10512] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5247), + [10514] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5249), + [10516] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5250), + [10518] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5254), + [10520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5257), + [10522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5260), + [10524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5261), + [10526] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1644), + [10528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2973), + [10530] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2993), + [10532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5450), + [10534] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 6, 0, 176), + [10536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1450), + [10538] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1454), + [10540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1456), + [10542] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1457), + [10544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1460), + [10546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1461), + [10548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1463), + [10550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1464), + [10552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4111), + [10554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1402), + [10556] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10558] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 0), + [10560] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1375), + [10562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1965), + [10564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_loop, 2, 0, 12), + [10566] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2830), + [10568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2801), + [10570] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2804), + [10572] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2806), + [10574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2809), + [10576] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2810), + [10578] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2812), + [10580] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2813), + [10582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [10584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 4, 0, 104), + [10586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3865), + [10588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1792), + [10590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1751), + [10592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_list_body, 1, 0, 0), + [10594] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4251), + [10596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4275), + [10598] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4281), + [10600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4128), + [10602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4165), + [10604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4144), + [10606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4156), + [10608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4226), + [10610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2154), + [10612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4074), + [10614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4082), + [10616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 144), + [10618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 181), + [10620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 4, 0, 182), + [10622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2750), + [10624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2754), + [10626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2756), + [10628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2757), + [10630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2760), + [10632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2761), + [10634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2763), + [10636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2790), + [10638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3847), + [10640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2550), + [10642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2572), + [10644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5029), + [10646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5033), + [10648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5035), + [10650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5036), + [10652] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5039), + [10654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5040), + [10656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5042), + [10658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5043), + [10660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5977), + [10662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5814), + [10664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3441), + [10666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4759), + [10668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3442), + [10670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4762), + [10672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4992), + [10674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4996), + [10676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4998), + [10678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4999), + [10680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5002), + [10682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5003), + [10684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5005), + [10686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5006), + [10688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1414), + [10690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1298), + [10692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1300), + [10694] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5459), + [10696] = {.entry = {.count = 1, .reusable = false}}, SHIFT(448), + [10698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(471), + [10700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(473), + [10702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(475), + [10704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(478), + [10706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(481), + [10708] = {.entry = {.count = 1, .reusable = false}}, SHIFT(483), + [10710] = {.entry = {.count = 1, .reusable = false}}, SHIFT(485), + [10712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5463), + [10714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5955), + [10716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1642), + [10718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5464), + [10720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1619), + [10722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(414), + [10724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(385), + [10726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(390), + [10728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(395), + [10730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(398), + [10732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(399), + [10734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(402), + [10736] = {.entry = {.count = 1, .reusable = false}}, SHIFT(403), + [10738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2673), + [10740] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3131), + [10742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3139), + [10744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 4, 0, 109), + [10746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5283), + [10748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2520), + [10750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2527), + [10752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1324), + [10754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1421), + [10756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1423), + [10758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5416), + [10760] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3086), + [10762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3089), + [10764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2607), + [10766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1560), + [10768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1567), + [10770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(405), + [10772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5363), + [10774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5373), + [10776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3912), + [10778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2800), + [10780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2797), + [10782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2586), + [10784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5152), + [10786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5159), + [10788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2857), + [10790] = {.entry = {.count = 1, .reusable = false}}, SHIFT(715), + [10792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(721), + [10794] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5118), + [10796] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1381), + [10798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1370), + [10800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5007), + [10802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6996), + [10804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7007), + [10806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [10808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2746), + [10810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2749), + [10812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2741), + [10814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3010), + [10816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3019), + [10818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(353), + [10820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(530), + [10822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(541), + [10824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [10826] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2724), + [10828] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2687), + [10830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(388), + [10832] = {.entry = {.count = 1, .reusable = false}}, SHIFT(639), + [10834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(643), + [10836] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2910), + [10838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2915), + [10840] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [10842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [10844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(495), + [10846] = {.entry = {.count = 1, .reusable = false}}, SHIFT(498), + [10848] = {.entry = {.count = 1, .reusable = false}}, SHIFT(392), + [10850] = {.entry = {.count = 1, .reusable = false}}, SHIFT(394), + [10852] = {.entry = {.count = 1, .reusable = false}}, SHIFT(373), + [10854] = {.entry = {.count = 1, .reusable = false}}, SHIFT(375), + [10856] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3796), + [10858] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5564), + [10860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5564), + [10862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 25), + [10864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_source, 2, 0, 26), + [10866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1145), + [10868] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4964), + [10870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5117), + [10872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4357), + [10874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4299), + [10876] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 199), + [10878] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 6, 0, 200), + [10880] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 2, 0, 30), + [10882] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_list, 2, 0, 0), + [10884] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_def, 7, 0, 201), + [10886] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10888] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 0), + [10890] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 181), + [10892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 211), + [10894] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10896] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__unquoted_in_list_with_expr, 3, 0, 104), + [10898] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3456), + [10900] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5828), + [10902] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 5, 0, 182), + [10904] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3443), + [10906] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4554), + [10908] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3444), + [10910] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4570), + [10912] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3445), + [10914] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4571), + [10916] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3446), + [10918] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4578), + [10920] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3427), + [10922] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5862), + [10924] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5467), + [10926] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5468), + [10928] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5470), + [10930] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1267), + [10932] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7128), + [10934] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6118), + [10936] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7350), + [10938] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5205), + [10940] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5205), + [10942] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__parenthesized_body, 4, 0, 0), + [10944] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_register, 3, 0, 65), + [10946] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1154), + [10948] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3384), + [10950] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3447), + [10952] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4625), + [10954] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3448), + [10956] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4627), + [10958] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const, 3, 0, 41), + [10960] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_overlay_use, 7, 0, 226), + [10962] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5480), + [10964] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1256), + [10966] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_command_list, 6, 0, 211), + [10968] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_module, 3, 0, 45), + [10970] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7023), + [10972] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1270), + [10974] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_mod, 3, 0, 29), + [10976] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_wild_card, 1, 0, 0), + [10978] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 46), + [10980] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_use, 3, 0, 47), + [10982] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 48), + [10984] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_scope_pattern, 1, 0, 49), + [10986] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1261), + [10988] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1155), + [10990] = {.entry = {.count = 1, .reusable = true}}, SHIFT(825), + [10992] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1723), + [10994] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_hide_env, 3, 0, 66), + [10996] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5515), + [10998] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6930), + [11000] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2608), + [11002] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2651), + [11004] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_error, 3, 0, 55), + [11006] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1304), + [11008] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1998), + [11010] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_ctrl_while, 3, 0, 56), + [11012] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5077), + [11014] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5077), + [11016] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5081), + [11018] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5081), + [11020] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5098), + [11022] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5098), + [11024] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1332), + [11026] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1237), + [11028] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7222), + [11030] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1490), + [11032] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1500), + [11034] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1507), + [11036] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1510), + [11038] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6158), + [11040] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1512), + [11042] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1517), + [11044] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1519), + [11046] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1527), + [11048] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1583), + [11050] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5547), + [11052] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1585), + [11054] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1588), + [11056] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 1, 0, 70), + [11058] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7207), + [11060] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2940), + [11062] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6640), + [11064] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 51), + [11066] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1995), + [11068] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2999), + [11070] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4086), + [11072] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4079), + [11074] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4029), + [11076] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4038), + [11078] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4053), + [11080] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4073), + [11082] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4089), + [11084] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4090), + [11086] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 2, 0, 52), + [11088] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2521), + [11090] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7575), + [11092] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7240), + [11094] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4426), + [11096] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1989), + [11098] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4435), + [11100] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2693), + [11102] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1990), + [11104] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2712), + [11106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2722), + [11108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2727), + [11110] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2731), + [11112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2666), + [11114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2679), + [11116] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2690), + [11118] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 5, 0, 135), + [11120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4590), + [11122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7535), + [11124] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4594), + [11126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7637), + [11128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4600), + [11130] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3985), + [11132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4610), + [11134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3998), + [11136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3999), + [11138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4002), + [11140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3925), + [11142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3934), + [11144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3935), + [11146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3943), + [11148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1748), + [11150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6494), + [11152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4017), + [11154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1757), + [11156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5239), + [11158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5244), + [11160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5245), + [11162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5246), + [11164] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1562), + [11166] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5248), + [11168] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5251), + [11170] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5253), + [11172] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1569), + [11174] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1570), + [11176] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5258), + [11178] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6348), + [11180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6349), + [11182] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3126), + [11184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5451), + [11186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5452), + [11188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5453), + [11190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7102), + [11192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3173), + [11194] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5731), + [11196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7182), + [11198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1448), + [11200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1451), + [11202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1452), + [11204] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1453), + [11206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1455), + [11208] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1458), + [11210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1459), + [11212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1462), + [11214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5801), + [11216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 1, 0, 19), + [11218] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3067), + [11220] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5817), + [11222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2469), + [11224] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7213), + [11226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1966), + [11228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3103), + [11230] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1967), + [11232] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2851), + [11234] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_table_repeat1, 2, 0, 151), SHIFT_REPEAT(834), + [11237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2840), + [11239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2841), + [11241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2855), + [11243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2802), + [11245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), + [11247] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 129), SHIFT_REPEAT(6640), + [11250] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2791), + [11252] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2808), + [11254] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2811), + [11256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5822), + [11258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5847), + [11260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1968), + [11262] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__all_type, 1, 0, 95), + [11264] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__all_type, 1, 0, 95), + [11266] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2011), + [11268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_decl_alias_parenthesized, 4, 0, 91), + [11270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5634), + [11272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 3, 0, 92), + [11274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5707), + [11276] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4234), + [11278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4252), + [11280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4262), + [11282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4273), + [11284] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4276), + [11286] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4131), + [11288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4132), + [11290] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4153), + [11292] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3385), + [11294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1577), + [11296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__assignment_pattern_parenthesized, 4, 0, 140), + [11298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5495), + [11300] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7218), + [11302] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5499), + [11304] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2745), + [11306] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2751), + [11308] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2752), + [11310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2753), + [11312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2755), + [11314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2758), + [11316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2759), + [11318] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2762), + [11320] = {.entry = {.count = 1, .reusable = true}}, SHIFT(681), + [11322] = {.entry = {.count = 1, .reusable = true}}, SHIFT(696), + [11324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5141), + [11326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5030), + [11328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5031), + [11330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5032), + [11332] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5034), + [11334] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5037), + [11336] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5038), + [11338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5041), + [11340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(588), + [11342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(593), + [11344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4764), + [11346] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4963), + [11348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7513), + [11350] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4993), + [11352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4994), + [11354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4995), + [11356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4997), + [11358] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6574), + [11360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5000), + [11362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5001), + [11364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6576), + [11366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5004), + [11368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6499), + [11370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(446), + [11372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5460), + [11374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(457), + [11376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(469), + [11378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(470), + [11380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5883), + [11382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(472), + [11384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(476), + [11386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(477), + [11388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6592), + [11390] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), SHIFT_REPEAT(1341), + [11393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_match_pattern_repeat1, 2, 0, 0), + [11395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(482), + [11397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6601), + [11399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6370), + [11401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6064), + [11403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5465), + [11405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5466), + [11407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(408), + [11409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(422), + [11411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(425), + [11413] = {.entry = {.count = 1, .reusable = false}}, SHIFT(384), + [11415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(389), + [11417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2680), + [11419] = {.entry = {.count = 1, .reusable = false}}, SHIFT(396), + [11421] = {.entry = {.count = 1, .reusable = false}}, SHIFT(397), + [11423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6068), + [11425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(400), + [11427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6070), + [11429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6745), + [11431] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4961), + [11433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6812), + [11435] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5894), + [11437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2024), + [11439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 0), + [11441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__str_double_quotes_repeat1, 1, 0, 0), + [11445] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1609), + [11447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_record_body, 3, 0, 105), + [11449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 0), + [11453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7250), + [11455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6060), + [11457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern, 1, 0, 31), + [11459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5589), + [11461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5496), + [11463] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__mutable_assignment_pattern_parenthesized, 3, 0, 82), + [11465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1834), + [11467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7198), + [11469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1234), + [11471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5819), + [11473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1939), + [11475] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5666), + [11477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4015), + [11479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 3, 0, 105), + [11481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1921), + [11483] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 3, 0, 41), + [11485] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6054), + [11487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1986), + [11489] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5469), + [11491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__block_body_statement_parenthesized, 1, 0, 0), + [11493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5860), + [11495] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4792), + [11497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5730), + [11499] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5825), + [11501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__declaration_parenthesized, 1, 0, 0), + [11503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5837), + [11505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5846), + [11507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3428), + [11509] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3429), + [11511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 51), + [11513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5790), + [11515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5917), + [11517] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5579), + [11519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6056), + [11521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6059), + [11523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1272), + [11525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4643), + [11527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5852), + [11529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4645), + [11531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6690), + [11533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__statement_parenthesized, 1, 0, 0), + [11535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_list_body, 2, 0, 52), + [11537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_assignment_parenthesized, 1, 0, 4), + [11539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4668), + [11541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4790), + [11543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5600), + [11545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5603), + [11547] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4681), + [11549] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5618), + [11551] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4684), + [11553] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5620), + [11555] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7469), + [11557] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5629), + [11559] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5632), + [11561] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4689), + [11563] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4691), + [11565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5639), + [11567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5642), + [11569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5649), + [11571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_let_parenthesized, 2, 0, 10), + [11573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5651), + [11575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5657), + [11577] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shebang_repeat1, 2, 0, 0), SHIFT_REPEAT(7240), + [11580] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_mut_parenthesized, 2, 0, 10), + [11582] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5659), + [11584] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5664), + [11586] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5665), + [11588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5672), + [11590] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5675), + [11592] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5683), + [11594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stmt_const_parenthesized, 2, 0, 10), + [11596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5685), + [11598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1269), + [11600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7111), + [11602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5690), + [11604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5691), + [11606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5695), + [11608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5697), + [11610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5701), + [11612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5702), + [11614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5704), + [11616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5706), + [11618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5709), + [11620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(5711), + [11622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_pattern, 2, 0, 0), + [11624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4740), + [11626] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11628] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__inter_single_quotes_repeat1, 1, 0, 34), + [11630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4755), + [11632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1627), + [11634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1289), + [11636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5424), + [11638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7215), + [11641] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6413), + [11643] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6424), + [11645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_val_binary_repeat1, 2, 0, 127), + [11647] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7347), + [11650] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 18), + [11652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 18), + [11654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6165), + [11656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1291), + [11658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4366), + [11660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4289), + [11662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [11664] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7748), + [11666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4821), + [11668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7595), + [11670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6310), + [11672] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6488), + [11674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1854), + [11676] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6164), + [11678] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1625), + [11680] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6324), + [11682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1892), + [11684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4533), + [11686] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4534), + [11688] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4181), + [11690] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4182), + [11692] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1893), + [11694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__flags_parenthesized, 2, 0, 0), + [11698] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2275), + [11700] = {.entry = {.count = 1, .reusable = false}}, SHIFT(559), + [11702] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6500), + [11704] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2276), + [11706] = {.entry = {.count = 1, .reusable = false}}, SHIFT(561), + [11708] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_val_entry, 1, 0, 17), + [11710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_val_entry, 1, 0, 17), + [11712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(557), + [11714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(558), + [11716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4187), + [11718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7529), + [11720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4188), + [11722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(536), + [11724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(537), + [11726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1626), + [11728] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1544), + [11730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(538), + [11732] = {.entry = {.count = 1, .reusable = false}}, SHIFT(539), + [11734] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__one_type, 3, 0, 180), + [11736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__one_type, 3, 0, 180), + [11738] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_var, 2, 0, 35), + [11740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_var, 2, 0, 35), + [11742] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_arm, 3, 10, 196), + [11744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_arm, 3, 10, 196), + [11746] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4337), + [11748] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4340), + [11750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1850), + [11752] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4518), + [11754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4520), + [11756] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_match_arm, 3, 10, 197), + [11758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_arm, 3, 10, 197), + [11760] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), SHIFT_REPEAT(7293), + [11763] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1611), + [11765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1539), + [11767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_ctrl_do_parenthesized_repeat1, 1, 0, 0), + [11771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2268), + [11773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2269), + [11775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1540), + [11777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(1632), + [11779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5790), + [11781] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2080), + [11783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(484), + [11785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5369), + [11787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [11789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4819), + [11791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(513), + [11793] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3138), + [11795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1896), + [11797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1899), + [11799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2792), + [11801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1659), + [11803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4473), + [11805] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6854), + [11807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [11809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [11811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1750), + [11813] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2439), + [11815] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [11817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4444), + [11819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2079), + [11821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2122), + [11823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5155), + [11825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5579), + [11827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1710), + [11829] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_list_with_expr_repeat1, 2, 0, 0), + [11831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4094), + [11833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1378), + [11835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5672), + [11837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [11839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5851), + [11841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3901), + [11843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4579), + [11845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7190), + [11847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(728), + [11849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5675), + [11851] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3932), + [11853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(717), + [11855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5055), + [11857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [11859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2637), + [11861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7019), + [11863] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2702), + [11865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2082), + [11867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5571), + [11869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1387), + [11871] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7756), + [11873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [11875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1815), + [11877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(735), + [11879] = {.entry = {.count = 1, .reusable = true}}, SHIFT(737), + [11881] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2732), + [11883] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1707), + [11885] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1411), + [11887] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6997), + [11889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2639), + [11891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5433), + [11893] = {.entry = {.count = 1, .reusable = true}}, SHIFT(741), + [11895] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2497), + [11897] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4123), + [11899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2747), + [11901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4353), + [11903] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2660), + [11905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4055), + [11907] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3011), + [11909] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4057), + [11911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3836), + [11913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2523), + [11915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(540), + [11917] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4757), + [11919] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3440), + [11921] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7421), + [11923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5537), + [11925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2737), + [11927] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2512), + [11929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6122), + [11931] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3958), + [11933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [11935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [11937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4018), + [11939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6539), + [11941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(640), + [11943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [11945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(697), + [11947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 139), + [11949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2265), + [11951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2911), + [11953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6614), + [11955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 232), + [11957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1844), + [11959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3946), + [11961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7459), + [11963] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3956), + [11965] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2700), + [11967] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [11969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4075), + [11971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3879), + [11973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5135), + [11975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4192), + [11977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2571), + [11979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(623), + [11981] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5893), + [11983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4991), + [11985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4402), + [11987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6110), + [11989] = {.entry = {.count = 1, .reusable = true}}, SHIFT(494), + [11991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 5, 0, 210), + [11993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [11995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3984), + [11997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1347), + [11999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(626), + [12001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(635), + [12003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2889), + [12005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1746), + [12007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 94), + [12009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1422), + [12011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(393), + [12013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7480), + [12015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5237), + [12017] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_in_record_with_expr_repeat1, 2, 0, 0), + [12019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6750), + [12021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2726), + [12023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(649), + [12025] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 2, 0, 94), + [12027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(374), + [12029] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 139), + [12031] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_returns, 1, 0, 98), + [12033] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_nu_script, 2, 0, 0), + [12035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7581), + [12037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2115), + [12039] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_match_guard, 2, 0, 0), + [12041] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7705), + [12043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4824), + [12045] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5440), + [12047] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 6, 0, 232), + [12049] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4611), + [12051] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4863), + [12053] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 4, 0, 210), + [12055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4709), + [12057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7665), + [12059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(439), + [12061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7292), + [12063] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4715), + [12065] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5442), + [12067] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4047), + [12069] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__match_pattern_rest, 3, 0, 0), + [12071] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2597), + [12073] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2561), + [12075] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5099), + [12077] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7407), + [12079] = {.entry = {.count = 1, .reusable = true}}, SHIFT(358), + [12081] = {.entry = {.count = 1, .reusable = true}}, SHIFT(490), + [12083] = {.entry = {.count = 1, .reusable = true}}, SHIFT(435), + [12085] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6497), + [12087] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [12089] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5487), + [12091] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3121), + [12093] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5728), + [12095] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3119), + [12097] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7608), + [12099] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5836), + [12101] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1351), + [12103] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4648), + [12105] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3927), + [12107] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1709), + [12109] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1149), + [12111] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__unquoted_with_expr_repeat1, 2, 0, 0), + [12113] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [12115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6905), + [12117] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4653), + [12119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7470), + [12121] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4382), + [12123] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3883), + [12125] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1535), + [12127] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2981), + [12129] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2933), + [12131] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7563), + [12133] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4752), + [12135] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2609), + [12137] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1901), + [12139] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7638), + [12141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1882), + [12143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [12145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4793), + [12147] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7170), + [12149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5219), + [12151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4037), + [12153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6050), + [12155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4987), + [12157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(349), + [12159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7390), + [12161] = {.entry = {.count = 1, .reusable = true}}, SHIFT(401), + [12163] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2514), + [12165] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3897), + [12167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3087), + [12169] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2089), + [12171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1624), + [12173] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7186), + [12175] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5447), + [12177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3380), + [12179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7387), + [12181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4333), + [12183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2711), + [12185] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1747), + [12187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1471), + [12189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4765), + [12191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5534), + [12193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5047), + [12195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1193), + [12197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7477), + [12199] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [12201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1904), + [12203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3000), + [12205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 2, 0, 0), + [12207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__multiple_types, 3, 0, 94), + [12209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2984), + [12211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2990), + [12213] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4428), + [12215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7549), + [12217] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5236), + [12219] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1301), + [12221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5741), + [12223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(663), + [12225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5630), + [12227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1299), + [12229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7601), + [12231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(443), + [12233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1444), + [12235] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5421), + [12237] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4071), + [12239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6197), + [12241] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1969), + [12243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2842), + [12245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7652), + [12247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3981), + [12249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5553), + [12251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7547), + [12253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4430), + [12255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5558), + [12257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4286), + [12259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7722), + [12261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2462), + [12263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2306), + [12265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4763), + [12267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3973), + [12269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5755), + [12271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5763), + [12273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7735), + [12275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7439), + [12277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7500), + [12279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7610), + [12281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7708), + [12283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7363), + [12285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7372), + [12287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7385), + [12289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7403), + [12291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7413), + [12293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7424), + [12295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7430), + [12297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7435), + [12299] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7440), + [12301] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7446), + [12303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7460), + [12305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7467), + [12307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7476), + [12309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7488), + [12311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7501), + [12313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7512), + [12315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7519), + [12317] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4422), + [12319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1413), + [12321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [12323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4616), + [12325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1561), + [12327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1658), + [12329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2068), + [12331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2137), + [12333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(383), + [12335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [12337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3012), + [12339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(432), + [12341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5475), + [12343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4088), + [12345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4730), + [12347] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1654), + [12349] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4735), + [12351] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1479), + [12353] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [12355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [12357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(433), + [12359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5932), + [12361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2035), + [12363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4519), + [12365] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3038), + [12367] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5562), + [12369] = {.entry = {.count = 1, .reusable = true}}, SHIFT(429), + [12371] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3133), + [12373] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7623), + [12375] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1140), + [12377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(6807), + [12379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(491), + [12381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1630), + [12383] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [12385] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7259), + [12387] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3418), + [12389] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [12391] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1695), + [12393] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__record_key, 2, 0, 0), + [12395] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1708), + [12397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3374), + [12399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(1598), + [12401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5587), + [12403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4504), + [12405] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [12407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4669), + [12409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, 0, 0), }; enum ts_external_scanner_symbol_identifiers { diff --git a/test/corpus/ctrl/match.nu b/test/corpus/ctrl/match.nu index 1d93454..b3535f8 100644 --- a/test/corpus/ctrl/match.nu +++ b/test/corpus/ctrl/match.nu @@ -283,6 +283,7 @@ match $x { {$y} => {} {$foo, $bar} => {} {$a, b: c} => {} + {a: b, b: c} => {} } ----- @@ -315,6 +316,16 @@ match $x { (record_entry (identifier) (val_string)))) + (block)) + (match_arm + (match_pattern + (val_record + (record_entry + (identifier) + (val_string)) + (record_entry + (identifier) + (val_string)))) (block)))))) =====